diff --git a/.dockerignore b/.dockerignore index a4b8a25cdc8c..9b60b4e3e8bb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -17,11 +17,11 @@ cfg data SQL node_modules -tgstation.dmb -tgstation.int -tgstation.rsc -tgstation.lk -tgstation.dyn.rsc +white.dmb +white.int +white.rsc +white.lk +white.dyn.rsc *.dll Dockerfile tools/bootstrap/.cache diff --git a/.gitattributes b/.gitattributes index 7f6509c8605c..d378d9d851ab 100644 --- a/.gitattributes +++ b/.gitattributes @@ -41,6 +41,3 @@ ## Force tab indents on dm files *.dm whitespace=indent-with-non-tab - -## Force changelog merging to use union -html/changelog.html text eol=lf merge=union diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 9c22d60f128c..000000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1,89 +0,0 @@ -# This list auto requests reviews from the specified org members -# when a PR that modifies the file in question is opened -# This list is alphabetized by User -> Filename KEEP IT THAT WAY -# In the event that multiple org members are to be informed of changes -# to the same file or dir, add them to the end under Multiple Owners - -# Cobby -/code/modules/reagents/ @ExcessiveUseOfCobblestone -/code/modules/research/designs/medical_designs.dm @ExcessiveUseOfCobblestone -/code/modules/surgery/ @ExcessiveUseOfCobblestone -/code/game/objects/items/storage/firstaid.dm @ExcessiveUseOfCobblestone -/code/modules/jobs/job_types/chief_medical_officer.dm @ExcessiveUseOfCobblestone -/code/modules/jobs/job_types/medical_doctor.dm @ExcessiveUseOfCobblestone - -# Cyberboss - -/code/__HELPERS/jatum.dm @Cyberboss -/code/controllers/subsystem/atoms.dm @Cyberboss -/code/controllers/subsystem/mapping.dm @Cyberboss -/code/controllers/globals.dm @Cyberboss -/code/datums/helper_datums/getrev.dm @Cyberboss -/code/datums/map_config.dm @Cyberboss -/code/datums/forced_movement.dm @Cyberboss -/code/datums/holocall.dm @Cyberboss -/code/modules/admin/verbs/adminhelp.dm @Cyberboss -/code/modules/admin/verbs/adminpm.dm @Cyberboss -/code/modules/mapping/ @Cyberboss -/tools/LinuxOneShot/ @Cyberboss -/tools/tgs4_scripts/ @Cyberboss - -# Jared-Fogle - -/code/modules/unit_tests/ @Jared-Fogle - -# Jordie0608 - -/SQL/ @Jordie0608 -/code/controllers/subsystem/dbcore.dm @Jordie0608 -/tools/SQLAlertEmail/ @Jordie0608 - -# LemonInTheDark - -/code/__DEFINES/atmospherics.dm @LemonInTheDark -/code/modules/atmospherics/ @LemonInTheDark - -# MrStonedOne - -/SQL/database_changelog.txt @MrStonedOne -/code/__DEFINES/MC.dm @MrStonedOne -/code/controllers/admin.dm @MrStonedOne -/code/controllers/master.dm @MrStonedOne -/code/controllers/failsafe.dm @MrStonedOne -/code/controllers/subsystem.dm @MrStonedOne -/code/controllers/subsystem/timer.dm @MrStonedOne -/code/controllers/configuration/entries @MrStonedOne -/config/ @MrStonedOne - -# ninjanomnom - -/code/__DEFINES/dcs/ @ninjanomnom -/code/controllers/subsystem/dcs.dm @ninjanomnom -/code/controllers/subsystem/shuttle.dm @ninjanomnom -/code/datums/components/ @ninjanomnom -/code/datums/elements/ @ninjanomnom -/code/modules/shuttle/ @ninjanomnom - -# ShizCalev - -/sound/ @ShizCalev - -# stylemistake - -/code/__DEFINES/chat.dm @stylemistake -/code/__DEFINES/tgui.dm @stylemistake -/code/controllers/subsystem/chat.dm @stylemistake -/code/controllers/subsystem/tgui.dm @stylemistake -/code/modules/tgchat @stylemistake -/code/modules/tgui @stylemistake -/code/modules/tgui_panel @stylemistake -/tgui @stylemistake - -# Multiple Owners - -/icons/ @Twaticus @ShizCalev -/code/controllers/subsystem/air.dm @LemonInTheDark @MrStonedOne -/_maps/ @EOBGames @ShizCalev - -#SIC SEMPER TYRANNIS -/code/modules/hydroponics/grown/citrus.dm @optimumtact diff --git a/.github/HARDDEL_GUIDE.md b/.github/HARDDEL_GUIDE.md new file mode 100644 index 000000000000..da12648889e9 --- /dev/null +++ b/.github/HARDDEL_GUIDE.md @@ -0,0 +1,253 @@ +# Hard Deletes +1. [What is hard deletion](#What-is-hard-deletion) +2. [Causes of hard deletes](#causes-of-hard-deletes) +3. [Detecting hard deletes](#detecting-hard-deletes) +4. [Techniques for fixing hard deletes](#techniques-for-fixing-hard-deletes) +5. [Help my code is erroring how fix](#help-my-code-is-erroring-how-fix) + +## What is Hard Deletion +Hard deletion is a very expensive operation that basically clears all references to some "thing" from memory. Objects that undergo this process are referred to as hard deletes, or simply harddels + +What follows is a discussion of the theory behind this, why we would ever do it, and the what we do to avoid doing it as often as possible + +I'm gonna be using words like references and garbage collection, but don't worry, it's not complex, just a bit hard to pierce + +### Why do we need to Hard Delete? + +Ok so let's say you're some guy called Jerry, and you're writing a programming language + +You want your coders to be able to pass around objects without doing a full copy. So you'll store the pack of data somewhere in memory + +```dm +/someobject + var/id = 42 + var/name = "some shit" +``` + +Then you want them to be able to pass that object into say a proc, without doing a full copy. So you let them pass in the object's location in memory instead +This is called passing something by reference + +```dm +someshit(someobject) //This isn't making a copy of someobject, it's passing in a reference to it +``` + +This of course means they can store that location in memory in another object's vars, or in a list, or whatever + +```dm +/datum + var/reference +/proc/someshit(mem_location) + var/datum/some_obj = new() + some_obj.reference = mem_location +``` + +But what happens when you get rid of the object we're passing around references to? If we just cleared it out from memory, everything that holds a reference to it would suddenly be pointing to nowhere, or worse, something totally different! + +So then, you've gotta do something to clean up these references when you want to delete an object + +We could hold a list of references to everything that references us, but god, that'd get really expensive wouldn't it + +Why not keep count of how many times we're referenced then? If an object's ref count is ever 0, nothing whatsoever cares about it, so we can freely get rid of it + +But if something's holding onto a reference to us, we're not gonna have any idea where or what it is + +So I guess you should scan all of memory for that reference? + +```dm +del(someobject) //We now need to scan memory until we find the thing holding a ref to us, and clear it +``` + +This pattern is about how BYOND handles this problem of hanging references, or Garbage Collection + +It's not a broken system, but as you can imagine scanning all of memory gets expensive fast + +What can we do to help that? + +### How we can avoid hard deletes + +If hard deletion is so slow, we're gonna need to clean up all our references ourselves + +In our codebase we do this with `/datum/proc/Destroy()`, a proc called by `qdel()`, whose purpose I will explain later + +This procs only job is cleaning up references to the object it's called on. Nothing more, nothing else. Don't let me catch you giving it side effects + +There's a long long list of things this does, since we use it a TON. So I can't really give you a short description. It will always move the object to nullspace though + +## Causes Of Hard Deletes + +Now that you know the theory, let's go over what can actually cause hard deletes. Some of this is obvious, some of it's much less so. + +The BYOND reference has a list [Here](https://secure.byond.com/docs/ref/#/DM/garbage), but it's not a complete one + +* Stored in a var +* An item in a list, or associated with a list item +* Has a tag +* Is on the map (always true for turfs) +* Inside another atom's contents +* Inside an atom's vis_contents +* A temporary value in a still-running proc +* Is a mob with a key +* Is an image object attached to an atom + +Let's briefly go over the more painful ones yeah? + +### Sleeping procs + +Any proc that calls `sleep()`, `spawn()`, or anything that creates a seperate "thread" (not technically a thread, but it's the same in these terms. Not gonna cause any race conditions tho) will hang references to any var inside it. This includes the usr it started from, the src it was called on, and any vars created as a part of processing + +### Static vars + +`/static` and `/global` vars count for this too, they'll hang references just as well as anything. Be wary of this, these suckers can be a pain to solve + +### Range() and View() like procs + +Some internal BYOND procs will hold references to objects passed into them for a time after the proc is finished doing work, because they cache the returned info to make some code faster. You should never run into this issue, since we wait for what should be long enough to avoid this issue as a part of garbage collection + +This is what `qdel()` does by the by, it literally just means queue deletion. A reference to the object gets put into a queue, and if it still exists after 5 minutes or so, we hard delete it + +### Walk() procs + +Calling `walk()` on something will put it in an internal queue, which it'll remain in until `walk(thing, 0)` is called on it, which removes it from the queue + +This sort is very cheap to harddel, since BYOND prioritizes checking this queue first when it's clearing refs, but it should be avoided since it causes false positives + +You can read more about how BYOND prioritizes these things [Here](https://www.patreon.com/posts/diving-for-35855766) + +## Detecting Hard Deletes + +For very simple hard deletes, simple inspection should be enough to find them. Look at what the object does during `Initialize()`, and see if it's doing anything it doesn't undo later. +If that fails, search the object's typepath, and look and see if anything is holding a reference to it without regard for the object deleting + +BYOND currently doesn't have the capability to give us information about where a hard delete is. Fortunately we can search for most all of then ourselves. +The procs to perform this search are hidden behind compile time defines, since they'd be way too risky to expose to admin button pressing + +If you're having issues solving a harddel and want to perform this check yourself, go to `_compile_options.dm` and uncomment `TESTING`, `REFERENCE_TRACKING`, and `GC_FAILURE_HARD_LOOKUP` + +You can read more about what each of these do in that file, but the long and short of it is if something would hard delete our code will search for the reference (This will look like your game crashing, just hold out) and print information about anything it finds to the runtime log, which you can find inside the round folder inside `/data/logs/year/month/day` + +It'll tell you what object is holding the ref if it's in an object, or what pattern of list transversal was required to find the ref if it's hiding in a list of some sort + +## Techniques For Fixing Hard Deletes + +Once you've found the issue, it becomes a matter of making sure the ref is cleared as a part of Destroy(). I'm gonna walk you through a few patterns and discuss how you might go about fixing them + +### Our Tools + +First and simplest we have `Destroy()`. Use this to clean up after yourself for simple cases + +```dm +/someobject/Initialize() + . = ..() + GLOB.somethings += src //We add ourselves to some global list +/someobject/Destroy() + GLOB.somethings -= src //So when we Destroy() clean yourself from the list + return ..() +``` + +Next, and slightly more complex, pairs of objects that reference each other + +This is helpful when for cases where both objects "own" each other + +```dm +/someobject + var/someotherobject/buddy +/someotherobject + var/someobject/friend +/someobject/Initialize() + if(!buddy) + buddy = new() + buddy.friend = src +/someotherobject/Initialize() + if(!friend) + friend = new() + friend.buddy = src +/someobject/Destroy() + if(buddy) + buddy.friend = null //Make sure to clear their ref to you + buddy = null //We clear our ref to them to make sure nothing goes wrong +/someotherobject/Destroy() + if(friend) + friend.buddy = null //Make sure to clear their ref to you + friend = null //We clear our ref to them to make sure nothing goes wrong +``` + +Something similar can be accomplished with `QDELETED()`, a define that checks to see if something has started being `Destroy()`'d yet, and `QDEL_NULL()`, a define that `qdel()`'s a var and then sets it to null + +Now let's discuss something a bit more complex, weakrefs + +You'll need a bit of context, so let's do that now + +BYOND has an internal bit of behavior that looks like this + +`var/string = "\ref[someobject]"` + +This essentially gets that object's position in memory directly. Unlike normal references, this doesn't count for hard deletes. You can retrieve the object in question by using `locate()` + +`var/someobject/someobj = locate(string)` + +This has some flaws however, since the bit of memory we're pointing to might change, which would cause issues. Fortunately we've developed a datum to handle worrying about this for you, `/datum/weakref` + +You can create one using the `WEAKREF()` proc, and use weakref.resolve() to retrieve the actual object + +This should be used for things that your object doesn't "own", but still cares about + +For instance, a paper bin would own the paper inside it, but the paper inside it would just hold a weakref to the bin + +There's no need to clean these up, just make sure you account for it being null, since it'll return that if the object doesn't exist or has been queued for deletion + +```dm +/someobject + var/datum/weakref/our_coin +/someobject/proc/set_coin(/obj/item/coin/new_coin) + our_coin = WEAKREF(new_coin) +/someobject/proc/get_value() + if(!our_coin) + return 0 + var/obj/item/coin/potential_coin = our_coin.resolve() + if(!potential_coin) + our_coin = null //Remember to clear the weakref if we get nothing + return 0 + return potential_coin.value +``` + +Now, for the worst case scenario + +Let's say you've got a var that's used too often to be weakref'd without making the code too expensive + +You can't hold a paired reference to it because it's not like it would ever care about you outside of just clearing the ref + +So then, we want to temporarily remember to clear a reference when it's deleted + +This is where I might lose you, but we're gonna use signals + +`qdel()`, the proc that sets off this whole deletion business, sends a signal called `COMSIG_PARENT_QDELETING` + +We can listen for that signal, and if we hear it clear whatever reference we may have + +Here's an example + +```dm +/somemob + var/mob/target +/somemob/proc/set_target(new_target) + if(target) + UnregisterSignal(target, COMSIG_PARENT_QDELETING) //We need to make sure any old signals are cleared + target = new_target + if(target) + RegisterSignal(target, COMSIG_PARENT_QDELETING, .proc/clear_target) //Call clear_target if target is ever qdel()'d +/somemob/proc/clear_target(datum/source) + SIGNAL_HANDLER + set_target(null) +``` + +This really should be your last resort, since signals have some limitations. If some subtype of somemob also registered for parent_qdeleting on the same target you'd get a runtime, since signals don't support it + +But if you can't do anything else for reasons of conversion ease, or hot code, this will work + +## Help My Code Is Erroring How Fix + +First, do a quick check. + +Are you doing anything to the object in `Initialize()` that you don't undo in `Destroy()`? I don't mean like, setting its name, but are you adding it to any lists, stuff like that + +If this fails, you're just gonna have to read over this doc. You can skip the theory if you'd like, but it's all pretty important for having an understanding of this problem diff --git a/.github/RUNNING_A_SERVER.md b/.github/RUNNING_A_SERVER.md index c2805b7606b4..06580f2311b3 100644 --- a/.github/RUNNING_A_SERVER.md +++ b/.github/RUNNING_A_SERVER.md @@ -8,8 +8,8 @@ Double-click `BUILD.bat` in the root directory of the source code. This'll take a little while, and if everything's done right you'll get a message like this: ``` -saving tgstation.dmb (DEBUG mode) -tgstation.dmb - 0 errors, 0 warnings +saving white.dmb (DEBUG mode) +white.dmb - 0 errors, 0 warnings ``` If you see any errors or warnings, something has gone wrong - possibly a corrupt @@ -43,7 +43,7 @@ and install it themselves. Directions can be found at the [rust-g repo](https://github.com/tgstation/rust-g). Finally, to start the server, run Dream Daemon and enter the path to your -compiled tgstation.dmb file. Make sure to set the port to the one you +compiled white.dmb file. Make sure to set the port to the one you specified in the config.txt, and set the Security box to 'Safe'. Then press GO and the server should start up and be ready to join. It is also recommended that you set up the SQL backend (see below). diff --git a/.github/alternate_byond_versions.txt b/.github/alternate_byond_versions.txt new file mode 100644 index 000000000000..877afb1d3726 --- /dev/null +++ b/.github/alternate_byond_versions.txt @@ -0,0 +1,10 @@ +# This file contains extra tests to run for specific BYOND versions. +# This is useful for making sure we maintain compatibility with both older and newer versions, +# while still having our main tests run on a guaranteed pinned version. + +# Format is version: map +# Example: +# 500.1337: runtimestation + +# AnturK uncomment this and then remove this line +# 515.1594: runtimestation diff --git a/.github/workflows/autowiki.yml b/.github/workflows/autowiki.yml new file mode 100644 index 000000000000..5d7d1fea4373 --- /dev/null +++ b/.github/workflows/autowiki.yml @@ -0,0 +1,46 @@ +name: Autowiki +on: + schedule: + - cron: "5 4 * * *" + workflow_dispatch: +jobs: + autowiki: + runs-on: ubuntu-latest + steps: + - name: "Check for AUTOWIKI_USERNAME" + id: secrets_set + env: + ENABLER_SECRET: ${{ secrets.AUTOWIKI_USERNAME }} + run: | + unset SECRET_EXISTS + if [ -n "$ENABLER_SECRET" ]; then SECRET_EXISTS=true ; fi + echo "SECRETS_ENABLED=$SECRET_EXISTS" >> $GITHUB_OUTPUT + - name: Checkout + if: steps.secrets_set.outputs.SECRETS_ENABLED + uses: actions/checkout@v3 + - name: Restore BYOND cache + if: steps.secrets_set.outputs.SECRETS_ENABLED + uses: actions/cache@v3 + with: + path: ~/BYOND + key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }} + - name: Install rust-g + if: steps.secrets_set.outputs.SECRETS_ENABLED + run: | + bash tools/ci/install_rust_g.sh + - name: Compile and generate Autowiki files + if: steps.secrets_set.outputs.SECRETS_ENABLED + run: | + bash tools/ci/install_byond.sh + source $HOME/BYOND/byond/bin/byondsetup + tools/build/build --ci autowiki + - name: Run Autowiki + if: steps.secrets_set.outputs.SECRETS_ENABLED + env: + USERNAME: ${{ secrets.AUTOWIKI_USERNAME }} + PASSWORD: ${{ secrets.AUTOWIKI_PASSWORD }} + run: | + cd tools/autowiki + npm install + cd ../.. + node tools/autowiki/autowiki.js data/autowiki_edits.txt data/autowiki_files/ diff --git a/.github/workflows/ci_suite.yml b/.github/workflows/ci_suite.yml index 050caa6a2384..8bb83cbdb938 100644 --- a/.github/workflows/ci_suite.yml +++ b/.github/workflows/ci_suite.yml @@ -11,13 +11,25 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" name: Run Linters runs-on: ubuntu-20.04 + concurrency: + group: run_linters-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v2 - - name: Setup cache - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - name: Restore SpacemanDMM cache + uses: actions/cache@v3 with: - path: $HOME/SpacemanDMM - key: ${{ runner.os }}-spacemandmm + path: ~/SpacemanDMM + key: ${{ runner.os }}-spacemandmm-${{ secrets.CACHE_PURGE_KEY }} + - name: Restore Yarn cache + uses: actions/cache@v3 + with: + path: tgui/.yarn/cache + key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-build-${{ secrets.CACHE_PURGE_KEY }}- + ${{ runner.os }}-build- + ${{ runner.os }}- - name: Install Tools run: | pip3 install setuptools @@ -26,19 +38,17 @@ jobs: tools/bootstrap/python -c '' - name: Run Linters run: | - bash tools/ci/check_filedirs.sh tgstation.dme - bash tools/ci/check_changelogs.sh - find . -name "*.php" -print0 | xargs -0 -n1 php -l - find . -name "*.json" -not -path "*/node_modules/*" -print0 | xargs -0 python3 ./tools/json_verifier.py - tgui/bin/tgui --lint - tgui/bin/tgui --test + bash tools/ci/check_filedirs.sh white.dme bash tools/ci/check_grep.sh + bash tools/ci/check_misc.sh + tools/bootstrap/python tools/validate_dme.py ${GITHUB_WORKSPACE}/output-annotations.txt 2>&1 - name: Annotate Lints - uses: yogstation13/DreamAnnotate@v1 - if: always() + uses: yogstation13/DreamAnnotate@v2 + if: success() || failure() with: outputFile: output-annotations.txt @@ -46,75 +56,95 @@ jobs: if: "!contains(github.event.head_commit.message, '[ci skip]')" name: Compile Maps runs-on: ubuntu-20.04 + concurrency: + group: compile_all_maps-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v2 - - name: Setup cache - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - name: Restore BYOND cache + uses: actions/cache@v3 with: - path: $HOME/BYOND - key: ${{ runner.os }}-byond + path: ~/BYOND + key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }} - name: Compile All Maps run: | bash tools/ci/install_byond.sh source $HOME/BYOND/byond/bin/byondsetup - python3 tools/ci/template_dm_generator.py - tools/build/build dm -DCIBUILDING -DCITESTING -DALL_MAPS + tools/build/build --ci dm -DCIBUILDING -DCITESTING -DALL_MAPS - run_all_tests: + find_all_maps: if: "!contains(github.event.head_commit.message, '[ci skip]')" - name: Integration Tests + name: Find Maps to Test runs-on: ubuntu-20.04 - services: - mysql: - image: mysql:latest - env: - MYSQL_ROOT_PASSWORD: root - ports: - - 3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + outputs: + maps: ${{ steps.map_finder.outputs.maps }} + alternate_tests: ${{ steps.alternate_test_finder.outputs.alternate_tests }} + concurrency: + group: find_all_maps-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v2 - - name: Setup cache - uses: actions/cache@v2 - with: - path: $HOME/BYOND - key: ${{ runner.os }}-byond - - name: Setup database - run: | - sudo systemctl start mysql - mysql -u root -proot -e 'CREATE DATABASE tg_ci;' - mysql -u root -proot tg_ci < SQL/tgstation_schema.sql - mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;' - mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql - - name: Install rust-g + - uses: actions/checkout@v3 + - name: Find Maps + id: map_finder run: | - sudo dpkg --add-architecture i386 - sudo apt update || true - sudo apt install -o APT::Immediate-Configure=false libssl1.1:i386 - bash tools/ci/install_rust_g.sh - - name: Compile and run tests + echo "$(ls -mw0 _maps/*.json)" > maps_output.txt + sed -i -e s+_maps/+\"+g -e s+.json+\"+g maps_output.txt + echo "Maps: $(cat maps_output.txt)" + echo "maps={\"paths\":[$(cat maps_output.txt)]}" >> $GITHUB_OUTPUT + - name: Find Alternate Tests + id: alternate_test_finder run: | - bash tools/ci/install_byond.sh - source $HOME/BYOND/byond/bin/byondsetup - tools/build/build -DCIBUILDING - bash tools/ci/run_server.sh - + ALTERNATE_TESTS_JSON=$(jq -nRc '[inputs | capture("^(?[0-9]+)\\.(?[0-9]+): (?.+)$")]' .github/alternate_byond_versions.txt) + echo "alternate_tests=$ALTERNATE_TESTS_JSON" >> $GITHUB_OUTPUT + run_all_tests: + if: "!contains(github.event.head_commit.message, '[ci skip]')" + name: Integration Tests + needs: [find_all_maps] + strategy: + fail-fast: false + matrix: + map: ${{ fromJSON(needs.find_all_maps.outputs.maps).paths }} + concurrency: + group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.map }} + cancel-in-progress: true + uses: ./.github/workflows/run_integration_tests.yml + with: + map: ${{ matrix.map }} + run_alternate_tests: + if: "!contains(github.event.head_commit.message, '[ci skip]') && needs.find_all_maps.outputs.alternate_tests != '[]'" + name: Alternate Tests + needs: [find_all_maps] + strategy: + fail-fast: false + matrix: + setup: ${{ fromJSON(needs.find_all_maps.outputs.alternate_tests) }} + concurrency: + group: run_all_tests-${{ github.head_ref || github.run_id }}-${{ matrix.setup.major }}.${{ matrix.setup.minor }}-${{ matrix.setup.map }} + cancel-in-progress: true + uses: ./.github/workflows/run_integration_tests.yml + with: + map: ${{ matrix.setup.map }} + major: ${{ matrix.setup.major }} + minor: ${{ matrix.setup.minor }} test_windows: if: "!contains(github.event.head_commit.message, '[ci skip]')" name: Windows Build runs-on: windows-latest + concurrency: + group: test_windows-${{ github.head_ref || github.run_id }} + cancel-in-progress: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + - name: Restore Yarn cache + uses: actions/cache@v3 + with: + path: tgui/.yarn/cache + key: ${{ runner.os }}-yarn-${{ secrets.CACHE_PURGE_KEY }}-${{ hashFiles('tgui/yarn.lock') }} + restore-keys: | + ${{ runner.os }}-build-${{ secrets.CACHE_PURGE_KEY }}- + ${{ runner.os }}-build- + ${{ runner.os }}- - name: Compile run: pwsh tools/ci/build.ps1 env: DM_EXE: "C:\\byond\\bin\\dm.exe" - - name: Create artifact - run: | - md deploy - bash tools/deploy.sh ./deploy - - name: Deploy artifact - uses: actions/upload-artifact@v2 - with: - name: deploy - path: deploy diff --git a/.github/workflows/compile_changelogs.yml b/.github/workflows/compile_changelogs.yml deleted file mode 100644 index c8756f0d2896..000000000000 --- a/.github/workflows/compile_changelogs.yml +++ /dev/null @@ -1,55 +0,0 @@ -name: Compile changelogs - -on: - schedule: - - cron: "0 0 * * *" - -jobs: - compile: - name: "Compile changelogs" - runs-on: ubuntu-latest - steps: - - name: "Check for CHANGELOG_ENABLER secret and pass true to output if it exists to be checked by later steps" - id: value_holder - env: - CHANGELOG_ENABLER: ${{ secrets.CHANGELOG_ENABLER }} - run: | - unset SECRET_EXISTS - if [ -n $CHANGELOG_ENABLER ]; then SECRET_EXISTS='true' ; fi - echo ::set-output name=CL_ENABLED::${SECRET_EXISTS} - - name: "Setup python" - if: steps.value_holder.outputs.CL_ENABLED - uses: actions/setup-python@v1 - with: - python-version: '3.x' - - name: "Install deps" - if: steps.value_holder.outputs.CL_ENABLED - run: | - python -m pip install --upgrade pip - python -m pip install pyyaml - sudo apt-get install dos2unix - - name: "Checkout" - if: steps.value_holder.outputs.CL_ENABLED - uses: actions/checkout@v1 - with: - fetch-depth: 25 - - name: "Compile" - if: steps.value_holder.outputs.CL_ENABLED - run: | - python tools/ss13_genchangelog.py html/changelog.html html/changelogs - - name: "Convert Lineendings" - if: steps.value_holder.outputs.CL_ENABLED - run: | - unix2dos html/changelogs/.all_changelog.yml - - name: Commit - if: steps.value_holder.outputs.CL_ENABLED - run: | - git config --local user.email "action@github.com" - git config --local user.name "Changelogs" - git pull origin master - git commit -m "Automatic changelog compile [ci skip]" -a || true - - name: "Push" - if: steps.value_holder.outputs.CL_ENABLED - uses: ad-m/github-push-action@master - with: - github_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml new file mode 100644 index 000000000000..f41ed4c57c30 --- /dev/null +++ b/.github/workflows/run_integration_tests.yml @@ -0,0 +1,60 @@ +# This is a reusable workflow to run integration tests on a single map. +# This is run for every single map in ci_suite.yml. You might want to edit that instead. +name: Run Integration Tests +on: + workflow_call: + inputs: + map: + required: true + type: string + major: + required: false + type: string + minor: + required: false + type: string +jobs: + run_integration_tests: + runs-on: ubuntu-latest + services: + mysql: + image: mysql:latest + env: + MYSQL_ROOT_PASSWORD: root + ports: + - 3306 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + steps: + - uses: actions/checkout@v3 + - name: Restore BYOND cache + uses: actions/cache@v3 + with: + path: ~/BYOND + key: ${{ runner.os }}-byond-${{ secrets.CACHE_PURGE_KEY }} + - name: Setup database + run: | + sudo systemctl start mysql + mysql -u root -proot -e 'CREATE DATABASE tg_ci;' + mysql -u root -proot tg_ci < SQL/tgstation_schema.sql + mysql -u root -proot -e 'CREATE DATABASE tg_ci_prefixed;' + mysql -u root -proot tg_ci_prefixed < SQL/tgstation_schema_prefixed.sql + - name: Install rust-g + run: | + bash tools/ci/install_rust_g.sh + - name: Install auxlua + run: | + bash tools/ci/install_auxlua.sh + - name: Configure version + run: | + echo "BYOND_MAJOR=${{ inputs.major }}" >> $GITHUB_ENV + echo "BYOND_MINOR=${{ inputs.minor }}" >> $GITHUB_ENV + if: ${{ inputs.major }} + - name: Compile Tests + run: | + bash tools/ci/install_byond.sh + source $HOME/BYOND/byond/bin/byondsetup + tools/build/build --ci dm -DCIBUILDING -DANSICOLORS + - name: Run Tests + run: | + source $HOME/BYOND/byond/bin/byondsetup + bash tools/ci/run_server.sh ${{ inputs.map }} diff --git a/.github/workflows/update_tgs_dmapi.yml b/.github/workflows/update_tgs_dmapi.yml deleted file mode 100644 index d9ecc55d8f8e..000000000000 --- a/.github/workflows/update_tgs_dmapi.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: Update TGS DMAPI - -on: - schedule: - - cron: "0 0 * * *" - workflow_dispatch: - -jobs: - update-dmapi: - runs-on: ubuntu-20.04 - name: Update the TGS DMAPI - steps: - - name: Clone - uses: actions/checkout@v2 - - - name: Branch - run: | - git branch -f tgs-dmapi-update - git checkout tgs-dmapi-update - git reset --hard master - - - name: Apply DMAPI update - uses: tgstation/tgs-dmapi-updater@v2 - with: - header-path: 'code/__DEFINES/tgs.dm' - library-path: 'code/modules/tgs' - - - name: Commit and Push - continue-on-error: true - run: | - git config user.name tgstation-server - git config user.email tgstation-server@users.noreply.github.com - git add . - git commit -m 'Update TGS DMAPI' - git push -f -u origin tgs-dmapi-update diff --git a/.gitignore b/.gitignore index c260d09bac1b..df36b6e1d90a 100644 --- a/.gitignore +++ b/.gitignore @@ -5,18 +5,18 @@ /tmp/**/* #Ignore byond config folder. -cfg/**/* -config/**/* - - +/cfg/**/* # Ignore compiled linux libs in the root folder, e.g. librust_g.so /*.so #Ignore compiled files and other files generated during compilation. *.mdme +*.mdme.* *.dmb *.rsc +*.m.dme +*.test.dme *.lk *.int *.backup @@ -55,27 +55,6 @@ __pycache__/ *.py[cod] *$py.class -# C extensions -#*.so - -# Distribution / packaging -.Python -env/ -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -*.egg-info/ -.installed.cfg -*.egg - # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. @@ -83,8 +62,7 @@ var/ *.spec # Installer logs -pip-log.txt -pip-delete-this-directory.txt +pip-*.txt # Unit test / coverage reports htmlcov/ @@ -94,7 +72,6 @@ htmlcov/ .cache nosetests.xml coverage.xml -*,cover .hypothesis/ # Translations @@ -103,10 +80,6 @@ coverage.xml # Django stuff: *.log -local_settings.py - -# Flask instance folder -instance/ # Scrapy stuff: .scrapy @@ -114,9 +87,6 @@ instance/ # Sphinx documentation docs/_build/ -# PyBuilder -target/ - # IPython Notebook .ipynb_checkpoints @@ -129,10 +99,6 @@ celerybeat-schedule # dotenv .env -# virtualenv -venv/ -ENV/ - # IntelliJ IDEA / PyCharm (with plugin) .idea @@ -155,12 +121,6 @@ Desktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ -# Windows Installer files -#*.cab -#*.msi -#*.msm -#*.msp - # Windows shortcuts *.lnk @@ -201,15 +161,13 @@ Temporary Items #Visual studio stuff *.vscode/* -!/.vscode/extensions.json -tools/MapAtmosFixer/MapAtmosFixer/obj/* -tools/MapAtmosFixer/MapAtmosFixer/bin/* -tools/CreditsTool/bin/* -tools/CreditsTool/obj/* +/tools/MapAtmosFixer/MapAtmosFixer/obj/* +/tools/MapAtmosFixer/MapAtmosFixer/bin/* +/tools/CreditsTool/bin/* +/tools/CreditsTool/obj/* #GitHub Atom .atom-build.json -config/game_options.txt #KDevelop and Kate *.kdev4* @@ -231,16 +189,16 @@ config/game_options.txt !/config/title_screens/images/exclude #Linux docker -tools/LinuxOneShot/SetupProgram/obj/* -tools/LinuxOneShot/SetupProgram/bin/* -tools/LinuxOneShot/SetupProgram/.vs -tools/LinuxOneShot/Database -tools/LinuxOneShot/TGS_Config -tools/LinuxOneShot/TGS_Instances -tools/LinuxOneShot/TGS_Logs - -# Common build tooling -!/tools/build - -# Crap -tools/findunusedicons +/tools/LinuxOneShot/SetupProgram/obj/* +/tools/LinuxOneShot/SetupProgram/bin/* +/tools/LinuxOneShot/SetupProgram/.vs +/tools/LinuxOneShot/Database +/tools/LinuxOneShot/TGS_Config +/tools/LinuxOneShot/TGS_Instances +/tools/LinuxOneShot/TGS_Logs + +# Autowiki +/tools/autowiki/node_modules + +# Cryptosafe Project Entry +/white/valtos/protocol_C.dm diff --git a/.vscode/extensions.json b/.vscode/extensions.json index cb19c0308df3..d384c4535bbe 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,11 +1,11 @@ { "recommendations": [ - "arcanis.vscode-zipfs", - "dbaeumer.vscode-eslint", - "Donkie.vscode-tgstation-test-adapter", - "EditorConfig.EditorConfig", "gbasood.byond-dm-language-support", "platymuus.dm-langclient", - "stylemistake.auto-comment-blocks" + "EditorConfig.EditorConfig", + "arcanis.vscode-zipfs", + "dbaeumer.vscode-eslint", + "stylemistake.auto-comment-blocks", + "Donkie.vscode-tgstation-test-adapter" ] } diff --git a/.vscode/launch.json b/.vscode/launch.json index 7a60ead554c5..4ca6f1de0506 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,21 +1,39 @@ { - "version": "0.2.0", - "configurations": [ - { - "type": "byond", - "request": "attach", - "name": "Attach to Debugger", - "port": 2448 - }, - { - "type": "byond", - "request": "launch", - "name": "Launch DreamSeeker", - "preLaunchTask": "Build All", - "dmb": "${workspaceFolder}/${command:CurrentDMB}", - "env": { - "AUXTOOLS_DEBUG_DLL": "./debug_server.dll" - } - } - ] -} \ No newline at end of file + "version": "0.2.0", + "configurations": [ + { + "type": "opendream", + "request": "launch", + "name": "OpenDream", + "preLaunchTask": "OpenDream: compile ${command:CurrentDME}", + "json_path": "${workspaceFolder}/${command:CurrentJson}" + }, + { + "type": "byond", + "request": "launch", + "name": "Launch DreamSeeker", + "preLaunchTask": "Build All", + "dmb": "${workspaceFolder}/${command:CurrentDMB}" + }, + { + "type": "byond", + "request": "launch", + "name": "Launch DreamDaemon", + "preLaunchTask": "Build All", + "dmb": "${workspaceFolder}/${command:CurrentDMB}", + "dreamDaemon": true + }, + { + "name": "Debug External Libraries", + "type": "cppvsdbg", + "request": "launch", + "program": "${command:dreammaker.returnDreamDaemonPath}", + "cwd": "${workspaceRoot}", + "args": [ + "${command:dreammaker.getFilenameDmb}", + "-trusted" + ], + "preLaunchTask": "Build All" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json index bfce9bda7c28..1883a3fe415e 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -13,9 +13,10 @@ "source.fixAll.eslint": true }, "workbench.editorAssociations": { - "*.dmi": "imagePreview.previewEditor" + "*.dmi": "dmiEditor.dmiEditor" }, "files.eol": "\n", + "files.insertFinalNewline": true, "gitlens.advanced.blame.customArguments": ["-w"], "tgstationTestExplorer.project.resultsType": "json", "[javascript]": { @@ -26,5 +27,6 @@ }, "[scss]": { "editor.rulers": [80] - } + }, + "Lua.diagnostics.enable": false } diff --git a/.vscode/tasks.json b/.vscode/tasks.json index af1283d3a79e..711a13c7846c 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -21,6 +21,7 @@ "kind": "build", "isDefault": true }, + "dependsOn": "dm: reparse", "label": "Build All" }, { @@ -32,11 +33,16 @@ "group": "build", "label": "dm: build - tgstation.dme" }, + { + "command": "${command:dreammaker.reparse}", + "group": "build", + "label": "dm: reparse" + }, { "type": "shell", - "command": "tgui/bin/tgui", + "command": "bin/tgui-build", "windows": { - "command": ".\\tgui\\bin\\tgui.bat" + "command": ".\\bin\\tgui-build.cmd" }, "problemMatcher": [ "$tsc", @@ -44,6 +50,58 @@ ], "group": "build", "label": "tgui: build" + }, + { + "type": "shell", + "command": "bin/tgui-dev", + "windows": { + "command": ".\\bin\\tgui-dev.cmd" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: dev server" + }, + { + "type": "shell", + "command": "bin/tgui-bench", + "windows": { + "command": ".\\bin\\tgui-bench.cmd" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: bench" + }, + { + "type": "shell", + "command": "bin/tgui-sonar", + "windows": { + "command": ".\\bin\\tgui-sonar.cmd" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: sonar" + }, + { + "type": "shell", + "command": "bin/tgfont", + "windows": { + "command": ".\\bin\\tgfont.cmd" + }, + "problemMatcher": [ + "$tsc", + "$eslint-stylish" + ], + "group": "build", + "label": "tgui: rebuild tgfont" } ] } diff --git a/BUILD.bat b/BUILD.bat deleted file mode 100644 index 68eaef0c2d35..000000000000 --- a/BUILD.bat +++ /dev/null @@ -1,3 +0,0 @@ -@echo off -call "%~dp0\tools\build\build.bat" %* -pause diff --git a/BUILD.cmd b/BUILD.cmd new file mode 100644 index 000000000000..dc791f60c9b7 --- /dev/null +++ b/BUILD.cmd @@ -0,0 +1,2 @@ +@echo off +call "%~dp0\tools\build\build.bat" --wait-on-error build %* diff --git a/Dockerfile b/Dockerfile index 0ae4f82be803..01dd52577c73 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,9 +31,9 @@ RUN . ./dependencies.sh \ && cd .. \ && rm -rf byond byond.zip -# build = byond + tgstation compiled and deployed to /deploy +# build = byond + white compiled and deployed to /deploy FROM byond AS build -WORKDIR /tgstation +WORKDIR /white RUN apt-get install -y --no-install-recommends \ curl @@ -69,9 +69,12 @@ RUN . ./dependencies.sh \ && git checkout FETCH_HEAD \ && env PKG_CONFIG_ALLOW_CROSS=1 ~/.cargo/bin/cargo build --release --target i686-unknown-linux-gnu +# Required to satisfy our compile_options +COPY --from=auxmos /build/target/i686-unknown-linux-gnu/release/libauxmos.so /dm-build/auxtools/libauxmos.so + # final = byond + runtime deps + rust_g + build FROM byond -WORKDIR /tgstation +WORKDIR /white RUN apt-get install -y --no-install-recommends \ libssl1.0.0:i386 \ @@ -80,6 +83,6 @@ RUN apt-get install -y --no-install-recommends \ COPY --from=build /deploy ./ COPY --from=rust_g /rust_g/target/i686-unknown-linux-gnu/release/librust_g.so ./librust_g.so -VOLUME [ "/tgstation/config", "/tgstation/data" ] -ENTRYPOINT [ "DreamDaemon", "tgstation.dmb", "-port", "1337", "-trusted", "-close", "-verbose" ] +VOLUME [ "/white/config", "/white/data" ] +ENTRYPOINT [ "DreamDaemon", "white.dmb", "-port", "1337", "-trusted", "-close", "-verbose" ] EXPOSE 1337 diff --git a/GPLv3.txt b/GPLv3.txt new file mode 100644 index 000000000000..94a9ed024d38 --- /dev/null +++ b/GPLv3.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/LICENSE b/LICENSE new file mode 100644 index 000000000000..dbbe3558157f --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU Affero General Public License is a free, copyleft license for +software and other kinds of works, specifically designed to ensure +cooperation with the community in the case of network server software. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +our General Public Licenses are intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + Developers that use our General Public Licenses protect your rights +with two steps: (1) assert copyright on the software, and (2) offer +you this License which gives you legal permission to copy, distribute +and/or modify the software. + + A secondary benefit of defending all users' freedom is that +improvements made in alternate versions of the program, if they +receive widespread use, become available for other developers to +incorporate. Many developers of free software are heartened and +encouraged by the resulting cooperation. However, in the case of +software used on network servers, this result may fail to come about. +The GNU General Public License permits making a modified version and +letting the public access it on a server without ever releasing its +source code to the public. + + The GNU Affero General Public License is designed specifically to +ensure that, in such cases, the modified source code becomes available +to the community. It requires the operator of a network server to +provide the source code of the modified version running there to the +users of that server. Therefore, public use of a modified version, on +a publicly accessible server, gives the public access to the source +code of the modified version. + + An older license, called the Affero General Public License and +published by Affero, was designed to accomplish similar goals. This is +a different license, not a version of the Affero GPL, but Affero has +released a new version of the Affero GPL which permits relicensing under +this license. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU Affero General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Remote Network Interaction; Use with the GNU General Public License. + + Notwithstanding any other provision of this License, if you modify the +Program, your modified version must prominently offer all users +interacting with it remotely through a computer network (if your version +supports such interaction) an opportunity to receive the Corresponding +Source of your version by providing access to the Corresponding Source +from a network server at no charge, through some standard or customary +means of facilitating copying of software. This Corresponding Source +shall include the Corresponding Source for any work covered by version 3 +of the GNU General Public License that is incorporated pursuant to the +following paragraph. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the work with which it is combined will remain governed by version +3 of the GNU General Public License. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU Affero General Public License from time to time. Such new versions +will be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU Affero General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU Affero General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU Affero General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If your software can interact with users remotely through a computer +network, you should also make sure that it provides a way for users to +get its source. For example, if your program is a web application, its +interface could display a "Source" link that leads users to an archive +of the code. There are many ways you could offer source, and different +solutions will be better for different programs; see section 13 for the +specific requirements. + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU AGPL, see +. diff --git a/README.md b/README.md index f25684a54cc4..3b075e4b314c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,33 @@ -[![White Dream](https://i.imgur.com/Fwih1xN.gif)](#) -### Это основной репозиторий White Dream по игре [Space Station 13](https://station13.ru/). - -## Развёртывание +![Aleph](https://github.com/frosty-dev/white/assets/10297716/bbe4608c-d65d-46ef-9d02-99a60f375db3) + +### Это основной репозиторий Aleph (old White Dream) по игре [Space Station 13](https://station13.ru/). + +## Быстрый старт +1. Требования + * Для сборки проекта необходим [BYOND](https://www.byond.com/download/). +2. Сборка и запуск + * Отклонировать/скачать данный репозиторий и запустить `BUILD.cmd`. + * Скопировать содержимое из папки `config` в рабочую папку `cfg`. + * Для поднятия локального сервера, запустите `server.cmd` из директории `bin`. + +* Пользователям Ubuntu/Debian: + ```bash + git clone https://github.com/frosty-dev/white && cd white + + # Сборка библиотеки rust-g и auxmos + sudo dpkg --add-architecture i386 + sudo apt update || true + sudo apt install -o libssl1.1:i386 + bash tools/ci/install_rust_g.sh + + # Установка BYOND и запуск сервера + bash tools/ci/install_byond.sh + source $HOME/BYOND/byond/bin/byondsetup + tools/build/build + bash tools/ci/run_server.sh + ``` + +## Среда разработки [Старт](https://hackmd.io/@fdev/SJDYI8iR8) **Работаешь с кодом впервые?**
Попробуй этот гайд, он обязательно тебя научит чему-нибудь, если будет в настроении! @@ -14,12 +40,15 @@ [Wiki](https://wiki.station13.ru) **Ваш путеводитель по вселенной Space Station 13.**
Практически всегда актуальна. - + +[Discord](https://discord.station13.ru/) +**Наш Discord-сервер.**
Общение космонавтов. Основная конференция посвящённая White Dream SS13. -[Discord](https://discord.gg/9uJ7dmM) -**Наш Discord-сервер.**
Обязательно возьмите роль **SS 13** в канале `#▸роли`. +[CR34T1V3](https://discord.gg/fRsn7RxdQp) +**Альтернативный кодербас для русскоговорящих господ.**
Ничего личного, только копипаста. Место, где можно обсудить код и не только. ## Полезное [Upstream](https://github.com/tgstation/tgstation) @@ -42,7 +71,7 @@ Весь код после [коммита 333c566b88108de218d882840e61928a9b759d8f на 2014/31/12 в 4:38 PM PST](https://github.com/frosty-dev/white-dream-main/commit/333c566b88108de218d882840e61928a9b759d8f) лицензирован под [GNU AGPL v3](https://www.gnu.org/licenses/agpl-3.0.html). -Весь код до [commit 333c566b88108de218d882840e61928a9b759d8f на 2014/31/12 в 4:38 PM PST](https://github.com/frosty-dev/white-dream-main/commit/333c566b88108de218d882840e61928a9b759d8f) лицензирован под [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). +Весь код до [коммита 333c566b88108de218d882840e61928a9b759d8f на 2014/31/12 в 4:38 PM PST](https://github.com/frosty-dev/white-dream-main/commit/333c566b88108de218d882840e61928a9b759d8f) лицензирован под [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html). (Включая папку tools, но только если их readme не сообщает обратное) Смотрите LICENSE и GPLv3.txt за подробностями. diff --git a/SpacemanDMM.toml b/SpacemanDMM.toml index b1c71c30062d..50b5b800450c 100644 --- a/SpacemanDMM.toml +++ b/SpacemanDMM.toml @@ -1,3 +1,5 @@ +environment = "white.dme" + [langserver] dreamchecker = true diff --git a/_maps/CityGeneration/10x10_road_fuck.dmm b/_maps/CityGeneration/10x10_road_fuck.dmm deleted file mode 100644 index 0926a7d8c5b2..000000000000 --- a/_maps/CityGeneration/10x10_road_fuck.dmm +++ /dev/null @@ -1,372 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"A" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"U" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -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 -"} -(3,1,1) = {" -a -a -a -A -A -A -A -A -A -A -A -A -A -A -A -a -a -a -"} -(4,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(5,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(6,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(7,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -"} -(8,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -"} -(9,1,1) = {" -A -A -A -U -U -U -A -A -A -A -A -A -U -U -U -A -A -A -"} -(10,1,1) = {" -A -A -A -U -U -U -A -A -A -A -A -A -U -U -U -A -A -A -"} -(11,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -"} -(12,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -A -"} -(13,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(14,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(15,1,1) = {" -A -A -A -A -A -A -A -A -U -U -A -A -A -A -A -A -A -A -"} -(16,1,1) = {" -a -a -a -A -A -A -A -A -A -A -A -A -A -A -A -a -a -a -"} -(17,1,1) = {" -a -a -a -A -A -A -A -A -A -A -A -A -A -A -A -a -a -a -"} -(18,1,1) = {" -a -a -a -A -A -A -A -A -A -A -A -A -A -A -A -a -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_cross.dmm b/_maps/CityGeneration/5x5_road_cross.dmm deleted file mode 100644 index b0a6c827b579..000000000000 --- a/_maps/CityGeneration/5x5_road_cross.dmm +++ /dev/null @@ -1,73 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"b" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"g" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"n" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"v" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"B" = ( -/obj/effect/abstract/open_area_marker, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"Q" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -a -b -g -b -a -"} -(2,1,1) = {" -b -b -Q -b -b -"} -(3,1,1) = {" -v -Q -Q -Q -B -"} -(4,1,1) = {" -b -b -Q -b -b -"} -(5,1,1) = {" -a -b -n -b -a -"} diff --git a/_maps/CityGeneration/5x5_road_eastcap.dmm b/_maps/CityGeneration/5x5_road_eastcap.dmm deleted file mode 100644 index 005079e6f867..000000000000 --- a/_maps/CityGeneration/5x5_road_eastcap.dmm +++ /dev/null @@ -1,159 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"m" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"I" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"T" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -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 -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -T -T -T -T -T -T -T -T -T -T -T -T -a -a -a -"} -(5,1,1) = {" -a -a -a -T -T -T -T -T -m -m -T -T -T -T -T -a -a -a -"} -(6,1,1) = {" -a -a -a -T -T -T -T -T -m -m -T -T -T -T -T -a -a -a -"} -(7,1,1) = {" -a -a -a -T -T -T -T -T -I -m -T -T -T -T -T -a -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_hor.dmm b/_maps/CityGeneration/5x5_road_hor.dmm deleted file mode 100644 index d71589739732..000000000000 --- a/_maps/CityGeneration/5x5_road_hor.dmm +++ /dev/null @@ -1,135 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"e" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"i" = ( -/obj/effect/abstract/doorway_marker{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"H" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"P" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"R" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"W" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -a -a -a -e -e -e -e -e -H -P -e -e -e -e -e -a -a -a -"} -(2,1,1) = {" -a -a -a -e -e -e -e -e -P -P -e -e -e -e -e -a -a -a -"} -(3,1,1) = {" -i -a -a -e -e -e -e -e -P -P -e -e -e -e -e -a -a -R -"} -(4,1,1) = {" -a -a -a -e -e -e -e -e -e -e -e -e -e -e -e -a -a -a -"} -(5,1,1) = {" -a -a -a -e -e -e -e -e -W -e -e -e -e -e -e -a -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_northcap.dmm b/_maps/CityGeneration/5x5_road_northcap.dmm deleted file mode 100644 index 11041fc7b5a5..000000000000 --- a/_maps/CityGeneration/5x5_road_northcap.dmm +++ /dev/null @@ -1,197 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"o" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"x" = ( -/obj/effect/abstract/open_area_marker, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"R" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -R -R -R -R -R -"} -(5,1,1) = {" -a -a -a -R -R -R -R -R -"} -(6,1,1) = {" -a -a -a -R -R -R -R -R -"} -(7,1,1) = {" -a -a -a -R -R -R -R -R -"} -(8,1,1) = {" -a -a -a -R -R -R -R -R -"} -(9,1,1) = {" -a -a -a -R -R -o -o -o -"} -(10,1,1) = {" -a -a -a -R -R -o -o -x -"} -(11,1,1) = {" -a -a -a -R -R -R -R -R -"} -(12,1,1) = {" -a -a -a -R -R -R -R -R -"} -(13,1,1) = {" -a -a -a -R -R -R -R -R -"} -(14,1,1) = {" -a -a -a -R -R -R -R -R -"} -(15,1,1) = {" -a -a -a -R -R -R -R -R -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_southcap.dmm b/_maps/CityGeneration/5x5_road_southcap.dmm deleted file mode 100644 index 3cf413fbcf7f..000000000000 --- a/_maps/CityGeneration/5x5_road_southcap.dmm +++ /dev/null @@ -1,174 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"d" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"V" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -"} -(4,1,1) = {" -V -V -V -V -a -a -a -"} -(5,1,1) = {" -V -V -V -V -a -a -a -"} -(6,1,1) = {" -V -V -V -V -a -a -a -"} -(7,1,1) = {" -V -V -V -V -a -a -a -"} -(8,1,1) = {" -V -V -V -V -a -a -a -"} -(9,1,1) = {" -d -d -d -V -a -a -a -"} -(10,1,1) = {" -d -d -d -V -a -a -a -"} -(11,1,1) = {" -V -V -V -V -a -a -a -"} -(12,1,1) = {" -V -V -V -V -a -a -a -"} -(13,1,1) = {" -V -V -V -V -a -a -a -"} -(14,1,1) = {" -V -V -V -V -a -a -a -"} -(15,1,1) = {" -V -V -V -V -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_vert.dmm b/_maps/CityGeneration/5x5_road_vert.dmm deleted file mode 100644 index f41e120c79bc..000000000000 --- a/_maps/CityGeneration/5x5_road_vert.dmm +++ /dev/null @@ -1,161 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"e" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"g" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"h" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"r" = ( -/obj/effect/abstract/doorway_marker{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"w" = ( -/obj/effect/abstract/open_area_marker, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"P" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) - -(1,1,1) = {" -a -a -P -a -a -"} -(2,1,1) = {" -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -"} -(4,1,1) = {" -h -h -h -h -h -"} -(5,1,1) = {" -h -h -h -h -h -"} -(6,1,1) = {" -h -h -h -h -h -"} -(7,1,1) = {" -h -h -h -h -h -"} -(8,1,1) = {" -h -h -h -h -h -"} -(9,1,1) = {" -h -h -g -g -g -"} -(10,1,1) = {" -e -h -g -g -w -"} -(11,1,1) = {" -h -h -h -h -h -"} -(12,1,1) = {" -h -h -h -h -h -"} -(13,1,1) = {" -h -h -h -h -h -"} -(14,1,1) = {" -h -h -h -h -h -"} -(15,1,1) = {" -h -h -h -h -h -"} -(16,1,1) = {" -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -"} -(18,1,1) = {" -a -a -r -a -a -"} diff --git a/_maps/CityGeneration/5x5_road_westcap.dmm b/_maps/CityGeneration/5x5_road_westcap.dmm deleted file mode 100644 index 18fec391f9a9..000000000000 --- a/_maps/CityGeneration/5x5_road_westcap.dmm +++ /dev/null @@ -1,54 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/tile/monofloor/alt2, -/area/ruin/unpowered) -"h" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"N" = ( -/turf/open/floor/asphalt, -/area/ruin/unpowered) -"Y" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/ruin/unpowered) - -(1,1,1) = {" -a -N -Y -N -a -"} -(2,1,1) = {" -a -N -h -N -a -"} -(3,1,1) = {" -a -N -h -N -a -"} -(4,1,1) = {" -a -N -N -N -a -"} -(5,1,1) = {" -a -a -a -a -a -"} diff --git a/_maps/CityGeneration/test_map.dmm b/_maps/CityGeneration/test_map.dmm deleted file mode 100644 index a78d79ae836a..000000000000 --- a/_maps/CityGeneration/test_map.dmm +++ /dev/null @@ -1,689 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/indestructible/black, -/area/partyhard/outdoors) -"h" = ( -/turf/open/genturf, -/area/partyhard/outdoors) -"I" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"U" = ( -/turf/closed/wall/cataclysmdda/redbrick, -/area/partyhard/indoors) - -(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 -"} -(2,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(3,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(4,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -U -U -U -U -U -U -U -h -h -a -"} -(5,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -I -I -I -I -I -I -U -h -h -a -"} -(6,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -I -I -I -I -I -I -U -h -h -a -"} -(7,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -I -I -I -I -I -I -I -I -h -h -a -"} -(8,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -I -I -I -I -I -I -I -I -h -h -a -"} -(9,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -I -I -I -I -I -I -U -h -h -a -"} -(10,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -I -I -I -I -I -I -U -h -h -a -"} -(11,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -U -U -U -I -I -U -U -U -h -h -a -"} -(12,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(13,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(14,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(15,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(16,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(17,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(18,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(19,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(20,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(21,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(22,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(23,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(24,1,1) = {" -a -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -h -a -"} -(25,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 -"} diff --git a/_maps/RandomRooms/10x10/sk_rdm130_benoegg.dmm b/_maps/RandomRooms/10x10/sk_rdm130_benoegg.dmm deleted file mode 100644 index 7acca452e952..000000000000 --- a/_maps/RandomRooms/10x10/sk_rdm130_benoegg.dmm +++ /dev/null @@ -1,202 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/alien/weeds, -/turf/open/floor/plating, -/area/template_noop) -"b" = ( -/obj/structure/alien/weeds, -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/plating, -/area/template_noop) -"c" = ( -/obj/structure/alien/resin/wall, -/turf/open/floor/plating, -/area/template_noop) -"d" = ( -/obj/structure/alien/weeds, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/plating, -/area/template_noop) -"e" = ( -/turf/open/floor/plating, -/area/template_noop) -"f" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/plating, -/area/template_noop) -"g" = ( -/turf/closed/wall, -/area/template_noop) -"h" = ( -/obj/structure/alien/weeds, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/template_noop) -"i" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/template_noop) -"j" = ( -/obj/structure/alien/weeds/node, -/turf/open/floor/plating, -/area/template_noop) -"m" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/template_noop) -"n" = ( -/obj/structure/alien/weeds, -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/obj/structure/rack, -/turf/open/floor/plating, -/area/template_noop) -"o" = ( -/obj/structure/alien/weeds, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/template_noop) -"q" = ( -/obj/structure/alien/weeds, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/template_noop) -"r" = ( -/obj/structure/alien/weeds, -/obj/structure/bed/nest, -/obj/item/flamethrower, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/plating, -/area/template_noop) -"s" = ( -/obj/structure/alien/weeds, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/template_noop) - -(1,1,1) = {" -e -e -i -g -e -e -g -a -e -e -"} -(2,1,1) = {" -e -e -e -g -m -a -g -b -c -e -"} -(3,1,1) = {" -e -g -b -g -c -a -c -j -r -e -"} -(4,1,1) = {" -e -g -j -a -c -a -b -a -c -g -"} -(5,1,1) = {" -e -g -a -a -c -j -a -c -c -e -"} -(6,1,1) = {" -e -g -c -a -h -a -a -d -g -e -"} -(7,1,1) = {" -e -g -g -a -c -c -c -b -g -e -"} -(8,1,1) = {" -e -i -c -a -c -f -c -g -g -e -"} -(9,1,1) = {" -e -i -g -a -n -o -c -q -s -e -"} -(10,1,1) = {" -e -i -g -e -e -e -e -e -e -e -"} diff --git a/_maps/RandomRooms/3x3/sk_rdm027_hullbreach.dmm b/_maps/RandomRooms/3x3/sk_rdm027_hullbreach.dmm deleted file mode 100644 index 4faa58b57d91..000000000000 --- a/_maps/RandomRooms/3x3/sk_rdm027_hullbreach.dmm +++ /dev/null @@ -1,46 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/template_noop) -"b" = ( -/turf/open/floor/plating/airless, -/area/template_noop) -"c" = ( -/obj/item/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/template_noop) -"d" = ( -/obj/item/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/space/basic, -/area/template_noop) -"e" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/template_noop) -"f" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/template_noop) - -(1,1,1) = {" -a -b -e -"} -(2,1,1) = {" -b -d -f -"} -(3,1,1) = {" -c -a -e -"} diff --git a/_maps/RandomRooms/3x3/sk_rdm053_metaclutter2.dmm b/_maps/RandomRooms/3x3/sk_rdm053_metaclutter2.dmm deleted file mode 100644 index c15d5c179949..000000000000 --- a/_maps/RandomRooms/3x3/sk_rdm053_metaclutter2.dmm +++ /dev/null @@ -1,58 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"c" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/template_noop) -"d" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/template_noop) -"e" = ( -/turf/open/floor/plating, -/area/template_noop) -"f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/template_noop) -"g" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/template_noop) -"h" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) -"i" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/template_noop) - -(1,1,1) = {" -a -d -g -"} -(2,1,1) = {" -e -e -h -"} -(3,1,1) = {" -c -f -i -"} diff --git a/_maps/RandomRooms/5x3/sk_rdm104_pills.dmm b/_maps/RandomRooms/5x3/sk_rdm104_pills.dmm deleted file mode 100644 index a89b0dcd9591..000000000000 --- a/_maps/RandomRooms/5x3/sk_rdm104_pills.dmm +++ /dev/null @@ -1,101 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/template_noop) -"d" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/mob_spawn/human/corpse/assistant, -/obj/item/storage/pill_bottle, -/turf/open/floor/plating, -/area/template_noop) -"f" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -6 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = 13; - pixel_y = 13 - }, -/turf/open/floor/plating, -/area/template_noop) -"k" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/template_noop) -"r" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/pill/floorpill{ - pixel_y = -5 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = 4 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/template_noop) -"C" = ( -/turf/open/floor/plating, -/area/template_noop) -"I" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/pill/floorpill, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = 14; - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_y = 7 - }, -/obj/item/reagent_containers/pill/floorpill{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/template_noop) - -(1,1,1) = {" -C -k -a -"} -(2,1,1) = {" -a -f -k -"} -(3,1,1) = {" -C -r -d -"} -(4,1,1) = {" -C -I -C -"} -(5,1,1) = {" -C -C -C -"} diff --git a/_maps/RandomRooms/5x4/sk_rdm067_pubbysurgery.dmm b/_maps/RandomRooms/5x4/sk_rdm067_pubbysurgery.dmm deleted file mode 100644 index edfa1d14b546..000000000000 --- a/_maps/RandomRooms/5x4/sk_rdm067_pubbysurgery.dmm +++ /dev/null @@ -1,143 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plating, -/area/template_noop) -"b" = ( -/obj/structure/frame/computer, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"c" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/template_noop) -"d" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"e" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"f" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"g" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/surgical_drapes, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"h" = ( -/obj/item/wrench, -/turf/open/floor/plating, -/area/template_noop) -"i" = ( -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"j" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/template_noop) -"k" = ( -/turf/open/floor/plating{ - luminosity = 2 - }, -/area/template_noop) -"l" = ( -/obj/item/ectoplasm, -/turf/open/floor/plating{ - luminosity = 2 - }, -/area/template_noop) -"m" = ( -/turf/open/floor/plating, -/area/template_noop) -"n" = ( -/obj/structure/table/glass, -/obj/item/hemostat, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/template_noop) -"o" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/template_noop) -"p" = ( -/obj/structure/table/glass, -/obj/item/weldingtool/mini, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/template_noop) -"r" = ( -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) - -(1,1,1) = {" -a -f -k -n -"} -(2,1,1) = {" -b -g -l -o -"} -(3,1,1) = {" -c -h -m -m -"} -(4,1,1) = {" -d -i -m -p -"} -(5,1,1) = {" -e -j -j -r -"} diff --git a/_maps/RandomRooms/5x4/sk_rdm124_oldcryoroom.dmm b/_maps/RandomRooms/5x4/sk_rdm124_oldcryoroom.dmm deleted file mode 100644 index 08308779111f..000000000000 --- a/_maps/RandomRooms/5x4/sk_rdm124_oldcryoroom.dmm +++ /dev/null @@ -1,148 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"b" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/obj/effect/turf_decal/stripes/end, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"c" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"d" = ( -/obj/structure/showcase/machinery/cloning_pod, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/template_noop) -"e" = ( -/obj/structure/showcase/horrific_experiment, -/obj/effect/turf_decal/bot_red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"f" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"g" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) -"i" = ( -/obj/item/wrench/medical, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/template_noop) -"j" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"k" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/end{ - dir = 4; - icon_state = "warn_end" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"l" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"m" = ( -/obj/machinery/stasis, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plating, -/area/template_noop) -"n" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"o" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"p" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"q" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/template_noop) -"s" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/template_noop) - -(1,1,1) = {" -a -f -k -n -"} -(2,1,1) = {" -b -g -l -o -"} -(3,1,1) = {" -c -s -f -f -"} -(4,1,1) = {" -d -i -s -q -"} -(5,1,1) = {" -e -j -m -p -"} diff --git a/_maps/RandomRuins/GenRuins/gensokyo_shrine.dmm b/_maps/RandomRuins/GenRuins/gensokyo_shrine.dmm deleted file mode 100644 index 89ffbf8de328..000000000000 --- a/_maps/RandomRuins/GenRuins/gensokyo_shrine.dmm +++ /dev/null @@ -1,136 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-1" - }, -/area/mine/unexplored/gensokyo) -"c" = ( -/turf/closed/mineral/random/high_chance/gensokyo, -/area/mine/unexplored/gensokyo) -"d" = ( -/turf/open/floor/holofloor/beach/water, -/area/mine/unexplored/gensokyo) - -(1,1,1) = {" -a -a -c -c -c -c -b -b -a -a -"} -(2,1,1) = {" -a -c -c -c -c -c -c -c -b -a -"} -(3,1,1) = {" -b -c -c -c -c -c -c -c -c -b -"} -(4,1,1) = {" -b -c -c -c -c -c -c -c -c -c -"} -(5,1,1) = {" -c -c -c -c -d -d -c -c -c -c -"} -(6,1,1) = {" -c -c -c -c -d -d -c -c -c -c -"} -(7,1,1) = {" -c -c -c -c -c -c -c -c -c -c -"} -(8,1,1) = {" -c -c -c -c -c -c -c -c -c -b -"} -(9,1,1) = {" -a -b -c -c -c -c -c -c -c -a -"} -(10,1,1) = {" -a -a -b -c -c -c -c -b -a -a -"} diff --git a/_maps/RandomRuins/LavaRuins/lavaland_yohei_base.dmm b/_maps/RandomRuins/LavaRuins/lavaland_yohei_base.dmm deleted file mode 100644 index eb70744e6472..000000000000 --- a/_maps/RandomRuins/LavaRuins/lavaland_yohei_base.dmm +++ /dev/null @@ -1,281 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"f" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"i" = ( -/obj/machinery/card_button{ - id = "yohei"; - pixel_y = 4; - req_access = list(220) - }, -/turf/closed/indestructible/reinforced, -/area/ruin/powered/yohei_base) -"k" = ( -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"l" = ( -/obj/machinery/door/veryblastdoor{ - id = "yohei" - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/fans/tiny/invisible, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"m" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/grenade/barrier{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/grenade/barrier{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/grenade/barrier{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/grenade/barrier{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/structure/table/abductor, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"n" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 12 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/structure/table/abductor, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"o" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"q" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"r" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"s" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"u" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/pickaxe/silver{ - pixel_y = 8 - }, -/obj/item/pickaxe/silver, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"v" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 12 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/structure/table/abductor, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"x" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"z" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"C" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"I" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"M" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "yohei_base" - }, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"N" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/reagent_dispensers/plumbed/fuel, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"P" = ( -/turf/closed/mineral/random/high_chance/volcanic, -/area/template_noop) -"R" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) -"T" = ( -/turf/closed/indestructible/reinforced, -/area/ruin/powered/yohei_base) -"W" = ( -/turf/template_noop, -/area/template_noop) -"Y" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 12 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/structure/table/abductor, -/turf/open/indestructible/labfloor, -/area/ruin/powered/yohei_base) - -(1,1,1) = {" -W -W -W -W -W -W -W -W -W -"} -(2,1,1) = {" -W -W -T -T -T -T -T -W -W -"} -(3,1,1) = {" -W -T -T -u -m -N -T -T -W -"} -(4,1,1) = {" -W -T -x -I -k -r -f -i -W -"} -(5,1,1) = {" -W -T -R -k -M -k -q -l -P -"} -(6,1,1) = {" -W -T -s -C -k -z -o -T -W -"} -(7,1,1) = {" -W -T -T -n -Y -v -T -T -W -"} -(8,1,1) = {" -W -W -T -T -T -T -T -W -W -"} -(9,1,1) = {" -W -W -W -W -W -W -W -W -W -"} diff --git a/_maps/RandomRuins/SpaceRuins/DJstation.dmm b/_maps/RandomRuins/SpaceRuins/DJstation.dmm deleted file mode 100644 index 768ec0049bb7..000000000000 --- a/_maps/RandomRuins/SpaceRuins/DJstation.dmm +++ /dev/null @@ -1,820 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/ruin/space/djstation/solars) -"ac" = ( -/obj/machinery/power/solar/fake, -/turf/open/floor/plasteel/airless/solarpanel, -/area/ruin/space/djstation/solars) -"ad" = ( -/turf/open/floor/plating/airless, -/area/ruin/space/djstation/solars) -"ae" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"af" = ( -/turf/closed/wall, -/area/ruin/space/djstation) -"ag" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"ah" = ( -/turf/open/floor/plating, -/area/ruin/space/djstation) -"ai" = ( -/obj/machinery/telecomms/relay/preset/ruskie, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"aj" = ( -/obj/machinery/power/terminal, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"ak" = ( -/obj/item/multitool, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"al" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"am" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"an" = ( -/obj/machinery/power/smes/magical{ - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; - name = "power storage unit" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"ao" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"ap" = ( -/obj/machinery/power/apc{ - name = "Worn-out APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"aq" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"as" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"at" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"au" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"av" = ( -/obj/machinery/vending/snack, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aw" = ( -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"ax" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"ay" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"az" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aB" = ( -/obj/effect/spawner/lootdrop/crate_spawner, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aC" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aD" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aE" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aF" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Kitchen" - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aH" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Pirate Radio Listening Channel" - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aI" = ( -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aJ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Rest Room" - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aK" = ( -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aL" = ( -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aM" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aN" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/djstation) -"aP" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aQ" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - freerange = 1; - listening = 0; - name = "Pirate Radio Broadcast Channel" - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aR" = ( -/obj/structure/table, -/obj/item/paper/fluff/ruins/djstation, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aS" = ( -/obj/structure/frame/computer{ - anchored = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aT" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aU" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aV" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/djstation) -"aW" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/ruin/space/djstation) -"aX" = ( -/obj/machinery/door/airlock/hatch{ - name = "Washroom" - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/djstation) -"aY" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"aZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/template_noop) -"ba" = ( -/turf/open/floor/plasteel/freezer, -/area/ruin/space/djstation) -"bb" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"bc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"bd" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/under/costume/soviet, -/obj/item/clothing/head/ushanka, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"be" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/djstation) -"bf" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/ruin/space/djstation) -"bg" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"bh" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/ruin/space/djstation) -"bi" = ( -/obj/machinery/door/airlock/external{ - name = "Ruskie DJ Station" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ruin/space/djstation) -"bj" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating/airless, -/area/template_noop) -"Co" = ( -/obj/machinery/door/airlock/external{ - name = "Ruskie DJ Station" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/djstation) - -(1,1,1) = {" -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -af -ag -ag -ag -af -aa -ae -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -ab -ac -ad -ac -ad -ac -ab -aa -af -az -aF -aM -aW -aZ -aZ -aZ -bj -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -ab -ac -ad -ac -ad -ac -ab -aa -af -aA -aA -aN -af -ae -ae -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -ae -ab -ac -ad -ac -ad -ac -ab -aa -af -aA -aA -aO -af -af -af -af -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -ae -ae -ab -ac -ad -ac -ad -ac -ab -aa -af -aA -aA -aA -aX -ba -be -af -aa -aa -"} -(6,1,1) = {" -ab -ab -ab -ab -ab -af -ag -ag -af -ag -ag -af -af -af -ag -aG -ag -af -af -bf -af -aa -aa -"} -(7,1,1) = {" -ab -ac -ac -ac -ac -ag -ah -ah -ah -am -ah -ap -af -au -aw -aw -aw -aw -af -af -af -aa -aa -"} -(8,1,1) = {" -ab -ad -ad -ad -ad -ag -ah -ah -ah -ah -ah -aq -af -av -aw -aH -aP -aw -bb -bg -af -aa -aa -"} -(9,1,1) = {" -ab -ac -ac -ac -ac -af -ai -ah -aj -an -ao -ao -at -aw -aw -aI -aQ -aw -aw -aw -af -aa -aa -"} -(10,1,1) = {" -ab -ad -ad -ad -ad -ag -ah -ah -ak -ah -ah -ah -af -ax -aw -aH -aR -aw -bc -bh -af -af -af -"} -(11,1,1) = {" -ab -ac -ac -ac -ac -ag -ah -ah -al -ah -ah -as -af -ay -aw -aw -aw -aY -bd -aw -bi -ah -Co -"} -(12,1,1) = {" -ab -ab -ab -ab -ab -af -ag -ag -af -ag -ag -af -af -af -ag -aJ -ag -af -af -af -af -af -af -"} -(13,1,1) = {" -aa -aa -ae -ae -ae -ab -ac -ad -ac -ad -ac -ab -aa -af -aB -aK -aS -af -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -ae -ab -ac -ad -ac -ad -ac -ab -aa -af -aC -aK -aT -af -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -ae -ab -ac -ad -ac -ad -ac -ab -aa -af -aD -aK -aU -af -ae -ae -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -ab -ac -ad -ac -ad -ac -ab -aa -af -aE -aL -aV -af -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aa -af -ag -ag -ag -af -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -ae -aa -ae -aa -aa -ae -aa -aa -aa -aa -aa -aa -"} diff --git a/_maps/RandomRuins/SpaceRuins/bseruin.dmm b/_maps/RandomRuins/SpaceRuins/bseruin.dmm deleted file mode 100644 index d85b8a8a54a5..000000000000 --- a/_maps/RandomRuins/SpaceRuins/bseruin.dmm +++ /dev/null @@ -1,2859 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ad" = ( -/obj/machinery/door/airlock/shuttle/glass, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"aG" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"aW" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/ten_k, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"aZ" = ( -/obj/item/flashlight, -/obj/item/wrench, -/obj/item/crowbar, -/obj/structure/rack, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"bc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "floor3-old" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"bC" = ( -/obj/structure/bed/pod, -/obj/item/bedsheet/black, -/turf/open/floor/pod, -/area/survivalpod) -"cb" = ( -/turf/closed/mineral/random/high_chance, -/area/ruin/space/has_grav/bseruin/asteroid) -"cd" = ( -/obj/effect/mapping_helpers/dead_body_placer_custom{ - bodycount = 3; - species = /datum/species/ethereal - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle) -"cz" = ( -/obj/structure/mineral_door/sandstone, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"cV" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"cX" = ( -/obj/machinery/smartfridge/survival_pod, -/turf/open/floor/pod, -/area/survivalpod) -"dt" = ( -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"dT" = ( -/obj/machinery/door/airlock/shuttle, -/turf/open/floor/plasteel/freezer, -/area/shuttle) -"eJ" = ( -/obj/structure/closet/crate/freezer, -/obj/item/seeds/tower, -/obj/structure/cable, -/obj/item/defibrillator/loaded, -/obj/item/seeds/tower, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"fc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"fo" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/ten_k{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"fU" = ( -/obj/structure/cable, -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"gx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"gD" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"ht" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/potion/flight{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"hQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/item/radio, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"hU" = ( -/obj/item/paper/fluff/instruction_ecrys_bse, -/obj/effect/decal/cleanable/blood{ - icon_state = "floor3-old" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"ii" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman/ecrys{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"iH" = ( -/obj/structure/cable, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"iJ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/card/id/away/old/apc{ - access = list(11,24); - pixel_y = 6 - }, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"iW" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"jl" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"jA" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/printer/mini, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"jF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"kr" = ( -/obj/structure/cable, -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"ks" = ( -/obj/item/pickaxe, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"lj" = ( -/obj/item/pickaxe/drill, -/obj/item/shovel, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"lo" = ( -/obj/machinery/door/airlock, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"lB" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/shuttle) -"mP" = ( -/obj/structure/closet/crate, -/obj/item/stack/rods/fifty, -/obj/item/pipe_dispenser, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"mX" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 30 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"ou" = ( -/obj/item/stack/cable_coil, -/obj/item/stack/rods/twentyfive, -/obj/item/wirecutters, -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"pm" = ( -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"pn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"pF" = ( -/obj/machinery/door/airlock, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"qn" = ( -/obj/effect/turf_decal/mining, -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"qs" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/ten_k, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"qG" = ( -/obj/structure/cable, -/obj/structure/mineral_door/sandstone, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"rA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"sk" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"sp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"sC" = ( -/obj/effect/mob_spawn/human/smuggler, -/turf/open/floor/pod, -/area/survivalpod) -"sN" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/pill/hyperpsy, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"tb" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/medical{ - pixel_x = -2 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"uk" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/shuttle/glass, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"up" = ( -/obj/machinery/vending/modularpc, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"uv" = ( -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"uS" = ( -/obj/effect/turf_decal/mining/survival, -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"wr" = ( -/obj/machinery/power/port_gen/pacman/ecrys, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"wT" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"xK" = ( -/obj/effect/spawner/structure/window/shuttle, -/obj/structure/cable, -/turf/open/floor/plating, -/area/shuttle) -"za" = ( -/obj/structure/cable, -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"Ab" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/bseruin/backyard) -"AS" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/stack/sheet/mineral/wood/fifty, -/obj/item/hatchet, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"Bi" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman/ecrys{ - anchored = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"Bl" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating, -/area/shuttle) -"Bo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"BY" = ( -/obj/machinery/door/airlock/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Ch" = ( -/obj/machinery/door/airlock/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Cn" = ( -/turf/closed/mineral/random/low_chance, -/area/ruin/space/has_grav/bseruin/asteroid) -"CJ" = ( -/obj/structure/foamedmetal/iron, -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"CN" = ( -/obj/machinery/computer/shuttle_flight, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"Dk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Do" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"EI" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/survival_pod/glass, -/turf/open/floor/pod, -/area/survivalpod) -"EL" = ( -/obj/structure/mineral_door/sandstone, -/obj/structure/cable, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"ET" = ( -/obj/machinery/power/bs_emitter{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"EZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"FE" = ( -/obj/structure/tubes, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/pod, -/area/survivalpod) -"FJ" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"FX" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Gg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"GA" = ( -/obj/machinery/autolathe, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"GB" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Hm" = ( -/obj/structure/cable, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"HQ" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/mapping_helpers/dead_body_placer_custom{ - bodycount = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle) -"HW" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"Ia" = ( -/turf/open/floor/pod, -/area/survivalpod) -"IO" = ( -/obj/item/grenade/chem_grenade/metalfoam, -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"IW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"Jn" = ( -/obj/structure/table/reinforced, -/obj/item/computer_hardware/recharger/apc_recharger, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Jz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, -/area/shuttle) -"JD" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/bseruin/shop) -"Kc" = ( -/obj/structure/table/survival_pod, -/obj/item/flashlight/seclite, -/obj/item/crowbar, -/obj/item/card/id/away/old/apc{ - access = list(11,24); - pixel_y = 6 - }, -/turf/open/floor/pod, -/area/survivalpod) -"Kg" = ( -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"KA" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/pod, -/area/survivalpod) -"KS" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"LS" = ( -/obj/machinery/vending/wardrobe, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Mb" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"Ob" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Os" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"OZ" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/drinks/waterbottle/large/empty, -/obj/item/stack/sheet/mineral/silver, -/obj/item/circuitboard/machine/stasis, -/obj/item/circuitboard/machine/chem_dispenser, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"PE" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"Qc" = ( -/obj/machinery/power/floodlight, -/turf/closed/mineral/random/low_chance, -/area/ruin/space/has_grav/bseruin/asteroid) -"Qf" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"Qu" = ( -/turf/closed/wall/mineral/titanium, -/area/shuttle) -"Rx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"RH" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Sp" = ( -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"Tb" = ( -/obj/effect/turf_decal/mining/survival{ - dir = 1 - }, -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"Tv" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle) -"TC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/bseruin/shop) -"TF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"TJ" = ( -/obj/structure/fans, -/turf/open/floor/pod, -/area/survivalpod) -"TO" = ( -/obj/machinery/computer/bs_emitter{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/backyard) -"UF" = ( -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"UQ" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/shuttle) -"US" = ( -/obj/effect/turf_decal/mining/survival{ - dir = 4 - }, -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"Ve" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"Vh" = ( -/obj/structure/cable, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"VJ" = ( -/obj/machinery/iv_drip, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle) -"VT" = ( -/obj/structure/cable, -/turf/open/floor/plating/foam, -/area/ruin/space/has_grav/bseruin/foam) -"Ws" = ( -/obj/structure/cable, -/obj/machinery/door/airlock, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Wx" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"Wz" = ( -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/bseruin/asteroid) -"WX" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"Xe" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/laptop/preset/bse, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"XY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "floor4-old" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"Yd" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plating, -/area/ruin/space/has_grav/bseruin/shop) -"Zn" = ( -/obj/effect/turf_decal/mining/survival{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium/survival/pod, -/area/survivalpod) -"Zt" = ( -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/bseruin/shop) -"ZX" = ( -/turf/template_noop, -/area/template_noop) - -(1,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(2,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(3,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(4,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(5,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(6,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(7,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(8,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -"} -(9,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Qc -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(10,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -"} -(11,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -uv -uv -Zn -uv -uv -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -"} -(12,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -uv -TJ -sC -Kc -uS -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -Cn -ZX -ZX -"} -(13,1,1) = {" -ZX -ZX -ZX -ZX -Cn -Cn -Cn -ZX -ZX -Cn -Cn -Cn -Tb -cX -Ia -Ia -EI -Wz -Wz -Wz -Wz -Wz -lj -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -"} -(14,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -ZX -Cn -Cn -Cn -uv -bC -KA -FE -qn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -"} -(15,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -CJ -Cn -Cn -Cn -uv -uv -US -uv -uv -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -HW -Cn -Cn -Cn -ZX -"} -(16,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -CJ -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Ve -Wz -Wz -Wz -Wz -Wz -za -Hm -Wz -Wz -Wz -EZ -Cn -Cn -Cn -ZX -"} -(17,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -CJ -CJ -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -"} -(18,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -"} -(19,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Wz -gx -Cn -Cn -Cn -ZX -"} -(20,1,1) = {" -ZX -ZX -Cn -Cn -Cn -CJ -Sp -Sp -IO -IO -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Wz -gx -Cn -Cn -ZX -ZX -"} -(21,1,1) = {" -ZX -ZX -ZX -ZX -CJ -CJ -Sp -Sp -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -"} -(22,1,1) = {" -ZX -ZX -ZX -ZX -CJ -CJ -CJ -Sp -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Hm -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -"} -(23,1,1) = {" -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Sp -Sp -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -qG -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -"} -(24,1,1) = {" -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Sp -ou -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -kr -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -"} -(25,1,1) = {" -ZX -ZX -Cn -Cn -Cn -cb -cb -cb -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -EL -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(26,1,1) = {" -ZX -Cn -Cn -cb -cb -cb -cb -cb -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -cz -Wz -Wz -Wz -Wz -Wz -Hm -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(27,1,1) = {" -ZX -Cn -Cn -cb -cb -cb -cb -cb -Sp -Sp -Sp -Qu -lB -lB -Qu -xK -xK -xK -xK -Qu -Qu -Qu -Sp -VT -CJ -CJ -ZX -ZX -ZX -ZX -ZX -ZX -"} -(28,1,1) = {" -ZX -Cn -cb -cb -cb -cb -cb -cb -cb -Sp -Qu -Tv -mX -Vh -uk -Vh -dt -dt -Mb -Mb -Jz -Bl -Sp -VT -CJ -CJ -ZX -ZX -ZX -ZX -ZX -ZX -"} -(29,1,1) = {" -Cn -Cn -cb -cb -cb -cb -cb -cb -cb -Sp -lB -tb -dt -Vh -Qu -VJ -Vh -eJ -Qf -Qf -Jz -Bl -Sp -VT -CJ -CJ -ZX -ZX -ZX -ZX -ZX -ZX -"} -(30,1,1) = {" -Cn -Cn -cb -cb -cb -cb -cb -cb -cb -Sp -lB -CN -aG -iH -Qu -OZ -aW -Tv -Qu -Qu -Jz -Bl -Sp -VT -CJ -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(31,1,1) = {" -Cn -Cn -cb -cb -cb -cb -cb -cb -cb -Sp -lB -cV -dt -Vh -Qu -AS -Vh -dT -HQ -UQ -Jz -Bl -Sp -VT -Sp -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(32,1,1) = {" -ZX -Cn -Cn -cb -cb -cb -cb -cb -cb -Sp -Qu -Tv -GA -Bi -Qu -mP -Vh -Qu -cd -UQ -Jz -Bl -Sp -VT -Sp -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(33,1,1) = {" -ZX -Cn -Cn -cb -cb -cb -cb -Cn -Cn -CJ -CJ -Qu -lB -Qu -Qu -ad -uk -Qu -Qu -Qu -Qu -Qu -Sp -VT -Sp -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(34,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -CJ -CJ -CJ -Sp -Sp -Sp -Sp -Sp -VT -VT -VT -VT -VT -VT -VT -VT -VT -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(35,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Cn -CJ -CJ -CJ -CJ -CJ -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -Sp -VT -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(36,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -CJ -CJ -CJ -Cn -Cn -Wz -Wz -Wz -Wz -JD -BY -JD -Cn -Cn -Sp -Sp -Sp -fU -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(37,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -JD -IW -IW -IW -IW -JD -Dk -JD -Cn -Cn -Cn -Cn -Sp -Sp -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(38,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -JD -Zt -Zt -Jn -jA -JD -Ch -JD -JD -Wz -Cn -Cn -Cn -Cn -CJ -CJ -ZX -ZX -ZX -ZX -ZX -"} -(39,1,1) = {" -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -JD -JD -JD -JD -pm -Zt -Zt -sp -Zt -Zt -Ob -JD -Wz -Wz -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(40,1,1) = {" -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Wz -JD -ii -wr -JD -up -Zt -bc -pn -Zt -Zt -GB -JD -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(41,1,1) = {" -ZX -ZX -ZX -Cn -Cn -Cn -Wz -Wz -JD -PE -WX -JD -FX -KS -Xe -hQ -ht -Zt -sN -JD -Wz -Wz -Wz -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(42,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Wz -Wz -Wz -JD -jl -Wx -Ws -fc -fc -FJ -TF -fc -fc -qs -JD -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(43,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Wz -Wz -Wz -JD -sk -Rx -TC -Do -XY -Do -rA -hU -RH -LS -JD -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(44,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -JD -iJ -UF -JD -JD -JD -JD -JD -JD -JD -JD -JD -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(45,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -JD -aZ -Wx -lo -Yd -pF -Os -iW -fo -Kg -Kg -Kg -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(46,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -JD -JD -JD -JD -JD -JD -Gg -Kg -Os -Os -Os -Os -Hm -Hm -Hm -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(47,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Kg -Kg -Kg -Os -Kg -Kg -Kg -Wz -Wz -Hm -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(48,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Hm -Hm -Hm -Os -Os -Os -Os -wT -Kg -Kg -Wz -Wz -Hm -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(49,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Kg -Kg -gD -gD -TO -Kg -ks -Hm -Hm -Hm -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(50,1,1) = {" -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Hm -Wz -Wz -Ab -Bo -Bo -Bo -Bo -jF -Ab -Hm -Wz -za -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(51,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -za -Wz -Wz -Wz -Wz -Wz -ET -Hm -Hm -Hm -Hm -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -"} -(52,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(53,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(54,1,1) = {" -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -"} -(55,1,1) = {" -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -"} -(56,1,1) = {" -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -"} -(57,1,1) = {" -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -"} -(58,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Wz -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(59,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(60,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(61,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -Cn -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(62,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(63,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} -(64,1,1) = {" -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -ZX -"} diff --git a/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm b/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm deleted file mode 100644 index 43521d902379..000000000000 --- a/_maps/RandomRuins/SpaceRuins/hilbertshoteltestingsite.dmm +++ /dev/null @@ -1,1004 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/space/basic, -/area/template_noop) -"b" = ( -/turf/open/floor/plating/asteroid/airless, -/area/ruin/unpowered/no_grav) -"c" = ( -/turf/closed/wall/r_wall/rust, -/area/ruin/space/has_grav/hilbertresearchfacility) -"d" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/hilbertresearchfacility) -"e" = ( -/obj/machinery/porta_turret/syndicate{ - desc = "A ballistic machine gun auto-turret that fires bluespace bullets."; - lethal_projectile = /obj/projectile/magic/teleport; - name = "displacement turret"; - stun_projectile = /obj/projectile/magic/teleport - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"f" = ( -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"g" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"h" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/bluespace_crystal{ - amount = 37; - pixel_x = 2; - pixel_y = 1 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"i" = ( -/obj/structure/table/glass, -/obj/item/bodybag/bluespace{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"j" = ( -/turf/open/floor/plasteel/stairs/left, -/area/ruin/space/has_grav/hilbertresearchfacility) -"k" = ( -/turf/open/floor/plasteel/stairs/medium, -/area/ruin/space/has_grav/hilbertresearchfacility) -"l" = ( -/turf/open/floor/plasteel/stairs/right, -/area/ruin/space/has_grav/hilbertresearchfacility) -"m" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe/bluespace{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"n" = ( -/obj/structure/table/glass, -/obj/item/stock_parts/matter_bin/bluespace{ - pixel_y = 7 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"o" = ( -/turf/open/floor/plasteel/vaporwave, -/area/ruin/space/has_grav/hilbertresearchfacility) -"p" = ( -/obj/structure/table/glass, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"q" = ( -/obj/structure/table/glass, -/obj/item/raw_anomaly_core/bluespace{ - pixel_y = 7 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"r" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/bluespace{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"s" = ( -/obj/structure/table/glass, -/obj/item/stock_parts/subspace/crystal{ - pixel_y = 3 - }, -/obj/item/stock_parts/subspace/transmitter{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"t" = ( -/obj/structure/displaycase{ - start_showpiece_type = /obj/item/hilbertshotel - }, -/turf/open/floor/plasteel/vaporwave, -/area/ruin/space/has_grav/hilbertresearchfacility) -"u" = ( -/obj/structure/table/glass, -/obj/item/analyzer{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"v" = ( -/obj/structure/table/glass, -/obj/item/stock_parts/subspace/amplifier{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"w" = ( -/obj/item/paper/crumpled/docslogs, -/obj/item/pen, -/turf/open/floor/plasteel/vaporwave, -/area/ruin/space/has_grav/hilbertresearchfacility) -"x" = ( -/obj/structure/table/glass, -/obj/item/assembly/signaler{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"y" = ( -/obj/structure/table/glass, -/obj/item/slimecross/industrial/bluespace{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"z" = ( -/obj/machinery/door/airlock/vault{ - name = "secured door"; - req_access = 207 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"A" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"B" = ( -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"C" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"D" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"E" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"F" = ( -/obj/machinery/door/window/eastleft, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"G" = ( -/obj/structure/table/reinforced, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"H" = ( -/obj/structure/table/reinforced, -/obj/item/paper/crumpled/robertsworkjournal, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"I" = ( -/obj/machinery/door/airlock/highsecurity{ - req_access = 207 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/grimy, -/area/ruin/space/has_grav/hilbertresearchfacility) -"J" = ( -/turf/closed/mineral/random, -/area/ruin/unpowered/no_grav) -"K" = ( -/turf/open/floor/plasteel/stairs/right{ - initial_gas_mix = "TEMP=2.7" - }, -/area/ruin/unpowered/no_grav) -"Q" = ( -/obj/structure/table/glass, -/obj/item/bag_of_holding_inert{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/grimy{ - icon_state = "engine" - }, -/area/ruin/space/has_grav/hilbertresearchfacility) -"U" = ( -/turf/open/floor/plasteel/stairs/medium{ - initial_gas_mix = "TEMP=2.7" - }, -/area/ruin/unpowered/no_grav) -"X" = ( -/turf/open/floor/plasteel/stairs/left{ - initial_gas_mix = "TEMP=2.7" - }, -/area/ruin/unpowered/no_grav) - -(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 -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -b -J -J -J -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -J -b -J -b -b -a -b -J -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -b -J -J -J -b -J -b -J -b -b -J -J -J -b -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -b -c -c -c -c -c -d -d -c -d -d -c -d -d -b -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -b -d -e -f -f -m -r -g -g -f -f -f -e -c -b -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -b -d -f -f -f -f -f -f -f -f -f -f -f -d -J -b -b -b -b -b -a -a -a -a -"} -(9,1,1) = {" -a -a -J -d -f -f -f -f -f -f -f -f -f -f -f -c -J -b -b -J -b -b -b -a -a -a -"} -(10,1,1) = {" -a -a -J -c -f -f -f -f -f -f -f -f -f -f -f -c -J -b -J -b -b -J -b -a -a -a -"} -(11,1,1) = {" -a -a -J -c -g -f -f -n -s -v -f -f -f -f -f -c -J -J -J -J -J -J -b -a -a -a -"} -(12,1,1) = {" -a -a -J -c -g -f -j -o -o -o -j -f -f -f -c -d -d -c -c -d -c -J -b -a -a -a -"} -(13,1,1) = {" -a -a -J -c -h -f -k -o -t -o -k -f -f -f -c -A -B -C -B -D -c -J -J -a -a -a -"} -(14,1,1) = {" -a -a -J -c -g -f -l -o -o -w -l -f -f -f -d -B -B -G -B -B -c -J -b -b -a -a -"} -(15,1,1) = {" -a -a -J -c -i -f -f -p -u -x -f -f -f -f -d -B -E -H -B -B -c -J -J -J -a -a -"} -(16,1,1) = {" -a -b -J -c -f -f -f -f -f -f -f -f -f -f -c -B -B -C -B -B -c -b -J -b -a -a -"} -(17,1,1) = {" -a -b -J -d -f -f -f -f -f -f -f -f -f -f -c -C -F -C -B -B -c -b -b -b -a -a -"} -(18,1,1) = {" -a -b -J -d -f -f -f -f -f -f -f -f -f -f -d -B -B -B -B -B -d -b -b -b -b -a -"} -(19,1,1) = {" -a -b -J -d -f -f -f -f -f -f -f -f -f -f -z -B -B -B -B -B -d -b -b -b -b -a -"} -(20,1,1) = {" -a -a -b -c -e -f -q -g -Q -y -g -f -e -f -c -B -B -B -B -B -d -b -b -b -b -a -"} -(21,1,1) = {" -a -a -b -c -c -c -c -c -c -d -d -c -c -c -d -B -B -B -B -B -d -X -b -b -b -a -"} -(22,1,1) = {" -a -a -b -b -J -J -b -b -J -J -J -J -J -J -d -D -B -B -B -B -I -U -b -b -b -a -"} -(23,1,1) = {" -a -a -a -b -b -J -J -b -b -b -b -J -b -J -c -d -d -c -d -c -d -K -b -b -b -a -"} -(24,1,1) = {" -a -a -a -a -b -b -J -J -J -b -b -b -b -J -b -b -J -J -J -J -b -b -b -b -b -a -"} -(25,1,1) = {" -a -a -a -a -a -b -b -b -J -J -J -J -b -b -b -b -b -b -a -J -J -J -b -J -b -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -b -b -b -a -b -b -b -b -b -a -a -a -J -J -J -J -J -a -"} -(27,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 -"} diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm b/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm deleted file mode 100644 index 433977ea2b0e..000000000000 --- a/_maps/RandomRuins/SpaceRuins/whiteshipdock.dmm +++ /dev/null @@ -1,849 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/obj/docking_port/stationary/picked/whiteship, -/turf/template_noop, -/area/template_noop) - -(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 -"} -(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 -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -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 -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -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 -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -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 -"} -(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 -"} -(24,1,1) = {" -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -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 -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 -"} diff --git a/_maps/RandomRuins/SpaceRuins/wruin1.dmm b/_maps/RandomRuins/SpaceRuins/wruin1.dmm deleted file mode 100644 index 809965873ac6..000000000000 --- a/_maps/RandomRuins/SpaceRuins/wruin1.dmm +++ /dev/null @@ -1,1184 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/turf/closed/mineral/random, -/area/ruin/space/has_grav/telepadovo) -"ac" = ( -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/telepadovo) -"ad" = ( -/turf/closed/wall/partyhard, -/area/ruin/space/has_grav/telepadovo) -"af" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"ag" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/autolathe/hacked, -/obj/item/stack/sheet/iron/five, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"ah" = ( -/obj/structure/table, -/obj/item/storage/toolbox/syndicate, -/obj/item/gps/science, -/obj/item/gps/science, -/obj/item/gps/science, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"ai" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"aj" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"ak" = ( -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/ruin/space/has_grav/telepadovo) -"al" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/ruin/space/has_grav/telepadovo) -"am" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, -/area/ruin/space/has_grav/telepadovo) -"an" = ( -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/ruin/space/has_grav/telepadovo) -"ao" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"ap" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aq" = ( -/obj/machinery/telepad, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"ar" = ( -/obj/machinery/computer/telescience{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/ruin/space/has_grav/telepadovo) -"as" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/ruin/space/has_grav/telepadovo) -"at" = ( -/obj/machinery/computer/camera_advanced/syndie{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/ruin/space/has_grav/telepadovo) -"au" = ( -/obj/effect/spawner/structure/window/reinforced/partyhard, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"av" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"aw" = ( -/obj/item/flashlight, -/obj/structure/closet/cabinet, -/obj/item/radio, -/obj/item/crowbar/red, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"ax" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/ruin/space/has_grav/telepadovo) -"ay" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, -/area/ruin/space/has_grav/telepadovo) -"az" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, -/area/ruin/space/has_grav/telepadovo) -"aA" = ( -/obj/machinery/sleeper/syndie/fullupgrade{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"aB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/mob_spawn/human/syndicate{ - desc = "Там кто-то есть. И он смотрит на меня не очень мило."; - dir = 8; - flavour_text = "Я заведующий этой космоостановкой. В мои обязанности входит переправка прибывающих агентов на станцию."; - important_info = "И мне нельзя покидать это место, если только ему совсем не придут кранты."; - short_desc = "Я телепадовец" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"aC" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"aD" = ( -/obj/machinery/vending/games, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aE" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aF" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aG" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aI" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/melee/baton/loaded/german, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"aJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aK" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"aL" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aN" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"aO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"aP" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"aQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aR" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aS" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aT" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/radio, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aV" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"aW" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"aX" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/hypospray/combat/nanites, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"aY" = ( -/obj/structure/table/wood/fancy/royalblack, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"ba" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"bb" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"bc" = ( -/obj/machinery/light/small, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"bd" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"be" = ( -/obj/machinery/vending/cigarette/syndicate, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bf" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bg" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bh" = ( -/obj/structure/table/reinforced, -/obj/item/phone, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bi" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bj" = ( -/obj/machinery/status_display, -/turf/closed/wall/partyhard, -/area/ruin/space/has_grav/telepadovo) -"bk" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bm" = ( -/obj/machinery/light/small, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bn" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"bo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bp" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"bq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"br" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bs" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bt" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bu" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"iP" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/restraints/handcuffs/cable/zipties, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) - -(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 -"} -(2,1,1) = {" -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -"} -(3,1,1) = {" -aa -aa -ac -ab -ab -ab -ab -aa -ab -ac -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(4,1,1) = {" -aa -ac -ac -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -ad -ad -bj -ad -ad -ad -ad -aa -aa -"} -(5,1,1) = {" -aa -ac -ab -ab -ab -ab -ab -ab -ab -ab -aa -ac -aa -aa -aa -ab -ad -be -aK -aK -bn -bo -bp -aa -aa -"} -(6,1,1) = {" -aa -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -ab -ab -ad -bf -aK -bk -ad -ad -ad -aa -aa -"} -(7,1,1) = {" -aa -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -bg -aK -bk -ad -ab -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -bh -aK -bl -ad -ab -aa -aa -aa -"} -(9,1,1) = {" -aa -ab -ab -ad -bs -bt -br -bq -bq -bq -ad -aD -aE -aC -aK -aK -aC -aK -aK -bk -ad -ab -ab -aa -aa -"} -(10,1,1) = {" -ab -ab -ab -ad -af -ak -an -as -ax -aK -au -aE -aE -ad -aN -aV -ad -aK -aK -bm -ad -ab -ab -aa -aa -"} -(11,1,1) = {" -aa -ab -ab -ad -aK -al -ao -ap -ay -aK -ad -aE -aJ -ad -aO -aW -au -aK -aK -ad -ad -ab -ab -aa -aa -"} -(12,1,1) = {" -aa -aa -ab -ad -bu -al -ap -ap -ay -aK -aC -aE -aE -ad -aP -aP -au -bi -bi -ad -ab -ab -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -ab -ad -ag -al -aq -ap -ay -aK -aC -aE -aE -ad -aC -ad -ad -ad -ad -ad -ab -ab -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -ab -ad -ah -al -ap -ap -ay -aK -ad -aF -aE -aE -aQ -aQ -aE -ad -ab -ab -ab -ab -aa -aa -aa -"} -(15,1,1) = {" -aa -ab -ab -ad -ai -am -ar -at -az -aK -au -aE -aE -aE -aR -aX -bb -ad -ab -ab -ab -ab -aa -aa -aa -"} -(16,1,1) = {" -aa -ab -ab -ad -aj -aK -aK -aK -aK -aK -ad -aG -aE -aL -aS -aY -bc -ad -ab -ab -ab -ab -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -ab -ad -ad -ad -ad -au -au -au -ad -aE -aE -aE -aT -aY -bd -ad -ab -ab -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -ab -ab -ab -ab -ad -av -av -av -aC -aH -aH -aH -aU -ba -aE -ad -ab -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -ab -ab -ab -ab -ad -aw -aA -aB -ad -aI -iP -iP -ad -ad -ad -ad -ab -ab -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -ab -ab -ab -ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -ab -ab -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,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 -"} diff --git a/_maps/RandomRuins/StationRuins/bridge_default_bottom.dmm b/_maps/RandomRuins/StationRuins/bridge_default_bottom.dmm deleted file mode 100644 index 0c073b4e0108..000000000000 --- a/_maps/RandomRuins/StationRuins/bridge_default_bottom.dmm +++ /dev/null @@ -1,1472 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/template_noop, -/area/template_noop) -"gf" = ( -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"jH" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"lr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"lH" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/meeting_room) -"oH" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"xZ" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"BR" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"DF" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints) -"Pc" = ( -/turf/closed/wall/r_wall, -/area/cargo/meeting_room) -"UY" = ( -/turf/open/floor/plating, -/area/cargo/meeting_room) -"Ws" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/north) -"YS" = ( -/turf/open/space/basic, -/area/space) -"Zl" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -jH -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -Pc -UY -Pc -Zl -YS -YS -ab -ab -ab -"} -(2,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -jH -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -Pc -lH -Pc -Zl -YS -YS -ab -ab -ab -"} -(3,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -jH -YS -YS -YS -YS -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -ab -ab -ab -"} -(4,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -YS -Zl -YS -YS -ab -ab -ab -"} -(5,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -YS -Zl -YS -YS -ab -ab -ab -"} -(6,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -YS -Zl -YS -YS -ab -ab -ab -"} -(7,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -YS -Zl -YS -YS -ab -ab -ab -"} -(8,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -Zl -jH -Zl -Zl -Zl -Zl -Zl -Zl -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -Zl -Zl -Zl -Zl -ab -ab -ab -"} -(9,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -Zl -YS -Zl -YS -YS -ab -ab -ab -"} -(10,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -ab -ab -ab -"} -(11,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -Zl -jH -jH -jH -jH -jH -jH -jH -jH -jH -jH -Zl -YS -YS -ab -ab -ab -"} -(12,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -YS -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -ab -ab -ab -"} -(13,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -Zl -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -ab -ab -ab -"} -(14,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -YS -YS -YS -Zl -YS -YS -YS -YS -jH -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -Zl -Zl -ab -ab -ab -"} -(15,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -YS -YS -YS -YS -ab -"} -(16,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(17,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(18,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(19,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(20,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(21,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -Zl -Zl -Zl -Zl -Zl -ab -"} -(22,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(23,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(24,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -YS -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -"} -(25,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -ab -"} -(26,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -DF -xZ -ab -"} -(27,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -DF -DF -BR -ab -"} -(28,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -Zl -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -DF -gf -BR -ab -"} -(29,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -DF -oH -BR -ab -"} -(30,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(31,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(32,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -jH -jH -jH -jH -jH -jH -jH -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -Zl -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(33,1,1) = {" -ab -ab -ab -ab -ab -ab -Ws -lr -lr -lr -lr -lr -lr -lr -Ws -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(34,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(35,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(36,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ws -Zl -YS -YS -YS -YS -YS -YS -Zl -YS -YS -YS -YS -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(37,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ws -Ws -Ws -Ws -Ws -Ws -Ws -Ws -Ws -lr -Ws -Ws -Ws -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} diff --git a/_maps/RandomRuins/StationRuins/bridge_hall.dmm b/_maps/RandomRuins/StationRuins/bridge_hall.dmm deleted file mode 100644 index b243435609d1..000000000000 --- a/_maps/RandomRuins/StationRuins/bridge_hall.dmm +++ /dev/null @@ -1,4972 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ag" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "AIW" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"al" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/command"; - name = "Bridge APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"ar" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ax" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"aH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "capblast"; - name = "captains blast door" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"aM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"aP" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"bk" = ( -/obj/structure/chair/office{ - dir = 1; - name = "Security Station" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"bp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"bt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bx" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"bT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"bW" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"ch" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"cv" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/hallway/primary/central) -"cw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"cD" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"cP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"db" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"dk" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"dm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_x = -31; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -31; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -31; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/bluespace_beacon, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"dK" = ( -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command) -"dW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHE"; - location = "AIE" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"el" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"eo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"er" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"eu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"eC" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"eI" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"eJ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/openspace, -/area/hallway/primary/central) -"fc" = ( -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"fi" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fy" = ( -/obj/structure/lattice, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/hallway/primary/central) -"fD" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"fI" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fL" = ( -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"gc" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/freeform, -/obj/structure/sign/plaques/kiddie{ - pixel_x = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload East"; - dir = 8; - network = list("aiupload") - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"gh" = ( -/obj/machinery/light, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Stbd"; - location = "HOP" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"gE" = ( -/obj/structure/lattice, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"gL" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/openspace, -/area/hallway/primary/central) -"gX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"ha" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/hallway/primary/central) -"hi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"hn" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"hy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"hO" = ( -/obj/machinery/computer/upload/ai, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"ie" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"im" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/command) -"ip" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iq" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"iu" = ( -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"iw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"iA" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/light, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -15 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"iC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iF" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"iS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iU" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"ja" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"jp" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai_upload) -"jr" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"jD" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"jG" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"kf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ky" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/quarantine, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -21 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"kO" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/openspace, -/area/hallway/primary/central) -"kR" = ( -/obj/structure/ladder, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"kT" = ( -/turf/open/openspace, -/area/command) -"kZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"lf" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"lk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"ln" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating, -/area/command/teleporter) -"lF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"lM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/primary/central) -"lR" = ( -/obj/structure/lattice, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/openspace, -/area/hallway/primary/central) -"lT" = ( -/obj/structure/lattice, -/obj/machinery/light, -/turf/open/openspace, -/area/hallway/primary/central) -"me" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood, -/area/command/meeting_room) -"mf" = ( -/obj/structure/table, -/obj/item/ai_module/reset, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ml" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"mo" = ( -/obj/structure/cable, -/obj/structure/railing, -/turf/open/floor/plating, -/area/hallway/primary/central) -"mp" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ms" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command) -"my" = ( -/obj/structure/lattice, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"mK" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"nc" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ng" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"ni" = ( -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"nl" = ( -/obj/structure/closet/crate, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"nn" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"no" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/openspace, -/area/hallway/primary/central) -"nu" = ( -/turf/closed/wall/r_wall, -/area/command/meeting_room) -"nB" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"nQ" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"nS" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"nT" = ( -/turf/open/openspace, -/area/hallway/primary/central) -"oe" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/command/meeting_room) -"os" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"oA" = ( -/obj/machinery/light, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"oC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"oJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/landmark/event_spawn, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"oQ" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"oW" = ( -/obj/structure/table, -/obj/item/beacon, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"oX" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/hallway/primary/central) -"pa" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"pd" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command) -"pq" = ( -/obj/machinery/button/door{ - id = "heads_meeting"; - name = "Security Shutters"; - pixel_y = 24 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"pC" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"pL" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"pM" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"pO" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai_upload) -"pV" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/openspace, -/area/hallway/primary/central) -"pW" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pZ" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"qk" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"qw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"qA" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qI" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"qU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rh" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"rl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rE" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"rF" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/command) -"rH" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"rJ" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/meeting_room) -"rS" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/ids, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"sp" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/meeting_room) -"sz" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = -32; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"sC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"sJ" = ( -/obj/structure/chair/office{ - dir = 8; - name = "Crew Station" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"sV" = ( -/turf/template_noop, -/area/template_noop) -"sX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tc" = ( -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"th" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tN" = ( -/obj/machinery/light, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tP" = ( -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ub" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uh" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ut" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/command) -"uP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/shutters{ - id = "aquaprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"va" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"vk" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"vu" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vJ" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command) -"vU" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/oxygen, -/obj/item/ai_module/zeroth/onehuman, -/obj/machinery/door/window{ - dir = 1; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/item/ai_module/reset/purge, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/ai_module/supplied/protect_station, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"vX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "privacy shutters" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/meeting_room) -"wl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"ww" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"wJ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wN" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/assembly/timer, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"wT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"wZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"xg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xj" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/primary/central) -"xo" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xv" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"xC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/dark, -/area/command) -"xD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA2"; - location = "Dorm" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"xG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"xH" = ( -/obj/structure/chair/office{ - dir = 8; - name = "Command Station" - }, -/obj/machinery/keycard_auth{ - pixel_x = -25; - pixel_y = -25 - }, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = -39; - pixel_y = -25; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"xI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"xL" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"xP" = ( -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"xQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"xU" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"yb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yg" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command) -"yq" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"yu" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"yx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"yK" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"yU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yY" = ( -/obj/structure/lattice, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai_upload) -"zF" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"zO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"zQ" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ao" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor{ - id = "capblast"; - name = "captains blast door" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/captain) -"As" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"AG" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"AJ" = ( -/obj/structure/lattice, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"AL" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"AQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/command) -"Bf" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/hallway/primary/central) -"Bk" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Bq" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Bt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "privacy shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/meeting_room) -"BA" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"BG" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"BR" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/meeting_room) -"BU" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"BY" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/multitool, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"Cf" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Cg" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "EVA" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Cl" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Cz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"CO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "aquaprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"CV" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/primary/central) -"CZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Dg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Dm" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Du" = ( -/turf/open/openspace, -/area/command/meeting_room) -"DE" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"DG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"DL" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"DN" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Ea" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ee" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Ew" = ( -/obj/structure/displaycase/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"EQ" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"ES" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"EW" = ( -/obj/structure/railing/corner, -/turf/template_noop, -/area/template_noop) -"EX" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Fe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Fk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Fm" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ft" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"FK" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"FL" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/command/teleporter) -"FQ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Gb" = ( -/obj/structure/table, -/obj/item/ai_module/core/full/asimov, -/obj/item/ai_module/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ai_module/core/full/custom, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"Gf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/meeting_room) -"Gk" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai_upload) -"Gn" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"Gp" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Gr" = ( -/turf/closed/wall/r_wall, -/area/command) -"Gy" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"GD" = ( -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"GN" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - name = "AI Upload turret control"; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"GY" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Hb" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"Hf" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Hk" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command) -"Hl" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = -23 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Hq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"HI" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Id" = ( -/obj/machinery/computer/shuttle_flight/labor, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"In" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Ir" = ( -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor{ - id = "capblast"; - name = "captains blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/captain) -"It" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"Iv" = ( -/turf/open/floor/plating, -/area/hallway/primary/central) -"IE" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"IO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"IY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Je" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Js" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"Ju" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Jv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"JJ" = ( -/obj/machinery/light, -/turf/open/openspace, -/area/hallway/primary/central) -"JK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"JT" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"JV" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Kf" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/open/floor/plating, -/area/command/teleporter) -"Kt" = ( -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"KD" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"KG" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command) -"KJ" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"KN" = ( -/obj/structure/cable, -/obj/structure/railing, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/primary/central) -"KU" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Lu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"LP" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai_upload) -"LQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=QM"; - location = "CHW" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"LR" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/command/teleporter) -"LV" = ( -/obj/structure/cable, -/obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"LZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ma" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"MO" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"MU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"MX" = ( -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = -24 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"MZ" = ( -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"Nh" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"No" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ny" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Nz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"NA" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"NB" = ( -/obj/structure/lattice, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"NC" = ( -/obj/structure/dresser, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"NE" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Oc" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"Os" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/storage/firstaid/regular{ - pixel_x = -15 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"OB" = ( -/obj/structure/chair/office{ - name = "Engineering Station" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"OP" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"OW" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/openspace, -/area/command) -"Pa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/ladder, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Pe" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Pg" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ph" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Pi" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Pq" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/turret_protected/ai_upload"; - name = "Upload APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"PC" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"PF" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"PR" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"PU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Qb" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Qn" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/command) -"Qs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Qu" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Qw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"QD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"QE" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"QF" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"QL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"QX" = ( -/obj/structure/closet/crate, -/obj/item/crowbar, -/obj/machinery/camera/autoname, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Ra" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/central) -"Rh" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Rn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"RV" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"RW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Sa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Sd" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/meeting_room) -"Sf" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Sh" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/command/meeting_room) -"Sp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Sr" = ( -/obj/item/beacon, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/landmark/blobstart, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"Ss" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"SV" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"SZ" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Tc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Tk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Tq" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/hallway/primary/central) -"TD" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command) -"Ui" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"Un" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"UL" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"UV" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"Vx" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"VM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"VU" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/command/meeting_room) -"Wo" = ( -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"WA" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"WH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/command) -"WK" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/button/door{ - id = "captains blast"; - name = "Captains Blast Door Control"; - pixel_x = -39; - pixel_y = -25; - req_access_txt = "19" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"WO" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"WT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"WW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Xa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Xr" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/openspace, -/area/hallway/primary/central) -"Yh" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Ym" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Yq" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/power/apc{ - areastring = "/area/command/meeting_room"; - dir = 4; - name = "Conference Room APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/meeting_room) -"YR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Dorm"; - location = "HOP2" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"YS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"YX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Zj" = ( -/obj/structure/railing/corner, -/obj/structure/chair/office{ - dir = 8; - name = "Logistics Station" - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"Zk" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "EVA2" - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Zl" = ( -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27 - }, -/obj/machinery/light_switch/directional/south, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/command/meeting_room) -"Zn" = ( -/obj/machinery/camera/motion{ - c_tag = "AI Upload West"; - dir = 4; - network = list("aiupload") - }, -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ZC" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 36 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 32; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) - -(1,1,1) = {" -sV -sV -sV -FQ -NE -FQ -sV -sV -sV -sV -sV -Cf -WW -ww -xQ -Qu -Fm -sV -sV -sV -sV -sV -sV -sV -sV -sV -It -EW -sV -sV -sV -sV -sV -sV -sV -sV -"} -(2,1,1) = {" -sV -sV -sV -bC -cX -dm -Tk -nT -nT -nT -eo -pa -Nh -iu -Bq -Bq -Bq -rH -rh -rh -rh -rh -Je -pa -ax -pa -JT -BU -pa -pa -pa -Qb -Ju -lk -lk -sV -"} -(3,1,1) = {" -sV -sV -sV -bC -LQ -MO -Oc -Oc -Oc -Oc -yu -nT -Nh -rE -nT -yq -nT -nT -pa -nT -nT -yq -nT -nT -kO -nT -nB -BU -nS -BR -nu -nu -Bt -VU -nu -nu -"} -(4,1,1) = {" -sV -sV -sV -bC -Rn -eu -Oc -oW -hy -Kf -Oc -nT -Nh -rE -lT -WO -lf -lf -lf -lf -lf -lf -lf -lf -WO -no -JT -BU -oA -nu -pq -Js -Sd -Sh -MZ -nu -"} -(5,1,1) = {" -sV -sV -sV -tc -Qs -ip -Oc -qI -pG -ln -Oc -nT -Rh -rE -nT -lf -NC -Hl -lf -Qw -bG -WK -xL -Wo -lf -nT -ms -BU -nT -Gf -Du -Du -rJ -oe -nQ -nu -"} -(6,1,1) = {" -sV -sV -sV -bC -cX -pi -yD -nl -dx -FL -Oc -Vx -Nh -rE -nT -lf -mp -tP -lf -In -Ma -Ma -PU -xP -Ir -nT -fI -BU -nT -Gf -Du -Du -rJ -me -iU -nu -"} -(7,1,1) = {" -sV -sV -sV -bC -cX -Gp -Oc -QX -Pa -LR -Oc -nT -Nh -rE -nT -lf -pZ -jG -lf -db -Yh -IE -RW -kR -Ir -nT -JT -th -JJ -nu -Yq -bp -cD -ie -Zl -nu -"} -(8,1,1) = {" -sV -sV -sV -hn -wl -nc -Oc -Oc -Oc -Oc -yu -nT -Nh -rE -lT -lf -uh -lf -lf -fL -Cl -Cl -xI -Ew -Ao -Bf -fi -th -pa -BR -nu -nu -vX -sp -nu -nu -"} -(9,1,1) = {" -sV -sV -sV -bC -cX -wZ -Tk -pa -va -pa -pL -pa -pM -rE -nT -Ir -sC -sC -sC -sC -sC -vz -Pe -GN -lf -nT -xo -zQ -pa -ax -pa -nT -Fe -Iv -Ee -bW -"} -(10,1,1) = {" -sV -sV -sV -bC -cX -tN -bx -pa -pa -lT -PF -eo -Hf -QF -QD -WO -Ir -Ir -WO -aH -aH -lf -Ir -Ir -lf -CZ -ar -UL -eo -PF -Vx -pa -Fe -Iv -Ee -bW -"} -(11,1,1) = {" -sV -sV -sV -bC -cX -MO -Tk -pa -nT -pa -eo -pa -nT -nT -VM -nT -nT -nT -DE -nT -nT -Xr -nT -nT -nT -zF -nT -nT -pa -eo -pa -nT -Fe -wT -oX -bW -"} -(12,1,1) = {" -sV -sV -sV -bC -cX -wZ -Tk -pa -nT -pa -eo -pa -nT -nT -VM -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -zF -nT -nT -pa -eo -pa -nT -Fe -Tq -iA -bW -"} -(13,1,1) = {" -sV -sV -uP -bC -cX -MO -Tk -pa -nT -pa -eo -pa -nT -nT -VM -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -zF -nT -nT -pa -eo -pa -nT -Fe -hd -CV -bW -"} -(14,1,1) = {" -sV -sV -uP -ES -cX -MO -Tk -pa -nT -pa -eo -pa -nT -nT -VM -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -zF -nT -nT -pa -eo -pa -pa -Fe -Tc -lM -bW -"} -(15,1,1) = {" -sV -CO -As -eI -cX -iC -Tk -pa -nT -pa -eo -pa -nT -nT -VM -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -zF -nT -nT -pa -eo -pa -nT -Fe -Iv -Bk -bW -"} -(16,1,1) = {" -sV -KU -No -EX -DN -MO -Tk -pa -pa -pa -eo -pa -nT -nT -VM -nT -nT -pa -iq -iq -iq -iq -pa -nT -nT -zF -nT -nT -pa -eo -pa -nT -Sa -gX -xj -bW -"} -(17,1,1) = {" -sV -Ea -No -DL -eC -PR -bx -eo -eo -ml -bx -no -pa -pa -VM -VM -VM -pO -hq -mf -ky -hq -LP -pa -eJ -zF -pa -pa -lT -PF -eo -eo -bx -fh -bx -bW -"} -(18,1,1) = {" -Sf -No -No -ja -Cg -No -qA -nT -nT -pa -eo -pa -nT -nT -iw -nT -nT -Gk -Zn -WA -WA -Gb -jp -nT -nT -zF -nT -nT -pa -eo -pa -nT -pV -ag -sz -yb -"} -(19,1,1) = {" -BG -ni -MU -Pi -aP -ni -RV -nT -nT -pa -eo -pa -nT -nT -pa -nT -nT -Gk -hO -Sr -GD -Hb -jp -nT -nT -zF -nT -nT -pa -eo -pa -nT -nT -oJ -Xa -qw -"} -(20,1,1) = {" -Ny -Pg -No -fD -Zk -No -PC -nT -nT -pa -eo -pa -nT -nT -pa -nT -nT -Gk -gc -WA -Jv -vU -jp -nT -nT -zF -nT -nT -pa -eo -pa -nT -nT -dW -DG -sX -"} -(21,1,1) = {" -sV -ub -No -AL -HI -os -bx -eo -eo -eo -PF -Vx -pa -pa -pa -pa -gL -pO -hq -lF -Pq -hq -yY -fy -fy -my -bT -pa -gE -bx -eo -eo -bx -bx -Ph -sV -"} -(22,1,1) = {" -sV -LZ -No -Dm -OP -bt -Tk -pa -pa -pa -eo -pa -nT -nT -pa -nT -nT -VM -vk -vk -lR -lR -fy -nT -nT -my -nT -nT -pa -eo -pa -nT -Tk -ut -rv -sV -"} -(23,1,1) = {" -sV -Ui -Ui -rl -cX -Hq -Tk -pa -nT -pa -eo -pa -nT -nT -pa -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -my -nT -nT -pa -eo -pa -nT -Tk -pd -kf -sV -"} -(24,1,1) = {" -sV -sV -Ui -IO -cX -Hq -Tk -pa -nT -pa -eo -pa -nT -nT -pa -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -my -nT -nT -pa -eo -pa -nT -bx -pW -Sp -sV -"} -(25,1,1) = {" -sV -sV -Ui -rl -cX -Dg -Tk -pa -nT -pa -eo -pa -nT -nT -pa -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -my -nT -nT -pa -eo -pa -nT -Tk -No -Cz -sV -"} -(26,1,1) = {" -sV -NA -NA -vu -cX -Hq -Tk -pa -nT -pa -eo -pa -nT -nT -pa -nT -nT -nT -pa -nT -nT -pa -nT -nT -nT -my -nT -nT -pa -eo -pa -nT -Tk -Fk -Ym -sV -"} -(27,1,1) = {" -sV -SZ -EQ -rl -cX -Hq -Tk -pa -nT -pa -eo -pa -nT -nT -pa -nT -nT -nT -yq -nT -nT -yq -nT -nT -nT -my -nT -nT -pa -eo -pa -nT -bx -LV -cw -sV -"} -(28,1,1) = {" -sV -Nz -Nz -No -cX -Kt -bx -eo -eo -eo -bx -eo -eo -eo -PF -eo -eo -eo -bx -eo -eo -TD -mw -mw -mw -WH -uM -mw -mw -Gr -mw -mw -Gr -mo -UV -sV -"} -(29,1,1) = {" -sV -wJ -vI -Lu -cX -Hq -Tk -pa -pa -pa -DE -pa -pa -pa -DE -pa -eo -pa -Ra -pa -pa -mw -rF -ch -FK -xC -BY -vJ -KG -dK -yg -Hk -im -KN -BA -sV -"} -(30,1,1) = {" -sV -sV -sV -bD -cX -Hq -Tk -pa -nT -nT -pa -nT -nT -nT -pa -nT -eo -nT -pa -nT -nT -mw -xv -Zj -Gn -iF -AG -xH -QL -zO -sJ -al -Gr -Gr -kZ -sV -"} -(31,1,1) = {" -sV -sV -sV -bC -cX -Dg -Tk -pa -nT -nT -pa -nT -nT -nT -pa -nT -eo -nT -pa -nT -nT -Gr -pn -Gr -kT -kT -SV -nn -wN -Id -el -xc -fc -Gr -kZ -sV -"} -(32,1,1) = {" -sV -sV -sV -bC -cX -Hq -Tk -pa -pa -pa -AJ -pa -pa -pa -pa -pa -eo -pa -qk -pa -pa -pa -NB -Gr -OW -kT -yK -ng -Un -Ss -bk -Ft -xU -Gr -jr -sV -"} -(33,1,1) = {" -sV -sV -sV -pC -qU -gh -bx -Tk -Tk -Tk -bx -Tk -Tk -Tk -bx -Tk -Tk -Tk -bx -Tk -xG -bx -er -Gr -Gr -Gr -Gr -Gy -Os -dk -oC -OB -Qn -Gr -oQ -sV -"} -(34,1,1) = {" -sV -sV -sV -bC -cX -No -YX -Hq -Dg -YS -WT -Hq -Dg -Hq -IY -Hq -Dg -Hq -wL -rp -JK -ha -NB -nT -nT -pa -Gr -KD -rS -jD -hi -AQ -KJ -Gr -nT -JV -"} -(35,1,1) = {" -sV -sV -sV -cP -xD -cX -cX -cX -cX -cX -cX -Rn -Qs -cX -cX -YR -cX -gA -aM -aM -aM -ha -pa -nT -nT -lT -Gr -Gr -Gr -Gr -Gr -Gr -Gr -Gr -nT -cv -"} -(36,1,1) = {" -sV -sV -sV -yx -bC -bC -bC -xg -bC -bC -bC -bC -bC -bC -bC -ZC -cX -MX -yU -qB -kt -iS -pa -pa -pa -pa -pa -pa -mK -DE -pa -pa -pa -pa -pa -QE -"} -(37,1,1) = {" -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -FQ -GY -FQ -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -sV -"} diff --git a/_maps/RandomRuins/StationRuins/bridge_hall_bottom.dmm b/_maps/RandomRuins/StationRuins/bridge_hall_bottom.dmm deleted file mode 100644 index 8b6dda836806..000000000000 --- a/_maps/RandomRuins/StationRuins/bridge_hall_bottom.dmm +++ /dev/null @@ -1,4682 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"at" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"av" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ax" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"aG" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"aH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aM" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"aV" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bu" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/item/storage/secure/safe{ - pixel_x = -23 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"bG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bU" = ( -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ca" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/stairs/south{ - dir = 8 - }, -/obj/structure/railing, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"cx" = ( -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/structure/ladder, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"cz" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"cB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"cL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"cX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"df" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"dj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"do" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"dC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"dL" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"dO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"dU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"dV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ea" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"ed" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ee" = ( -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"eu" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ex" = ( -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"eD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"eH" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"eK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"fp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"fx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"fz" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/melee/chainofcommand, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"fE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"fI" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"fY" = ( -/obj/structure/cable, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"gb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"gc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"gj" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/south{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"gv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"gA" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"gG" = ( -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"gO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"gY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"hi" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/engineering/gravity_generator"; - dir = 8; - name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"hs" = ( -/obj/structure/chair/sofa/corp{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"hG" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"hH" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/captain"; - dir = 1; - name = "Captain's Office APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"hN" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"hO" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"hW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/stairs/south{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"hZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"im" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"iD" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"iH" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"iM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"jc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"jd" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"ji" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/floor, -/obj/machinery/light/floor/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"jo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"kg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"km" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ks" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"kv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"kz" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"kN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"kX" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"lg" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/light, -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"lF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"lJ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"lL" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/meeting_room) -"lN" = ( -/obj/structure/stairs/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"lP" = ( -/obj/effect/decal/cleanable/vomit/old{ - icon_state = "vomit_4-old" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ma" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"md" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"mm" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"mq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"mH" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"mK" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"mN" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"mX" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"ne" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"nk" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/folder/blue, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"no" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"ny" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"nD" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"nX" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"ob" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"oq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ot" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/south{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"oS" = ( -/obj/machinery/ticket_machine{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"pa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"pb" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/blazaam{ - pixel_x = -12; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/gin{ - pixel_y = 17 - }, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"pg" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints) -"pv" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"pN" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"qh" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"qj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ql" = ( -/obj/effect/decal/cleanable/vomit/old{ - icon_state = "vomit_2-old" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"qm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"qp" = ( -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/ian{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"qB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"qU" = ( -/obj/machinery/camera/autoname, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"rc" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"rn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"rt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"rz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"rL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"se" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"si" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"sj" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"ss" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"sw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"sx" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"sA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"sD" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"sF" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"sZ" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"tf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"tw" = ( -/obj/structure/stairs/south{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"tK" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/hallway/primary/central) -"tL" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"tR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"tV" = ( -/obj/structure/closet/firecloset, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"tX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"ub" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"uq" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"uy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"uz" = ( -/obj/machinery/pdapainter, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"uD" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"uE" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"uI" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"uK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"uN" = ( -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 36 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"uO" = ( -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"uX" = ( -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"vk" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"vq" = ( -/obj/structure/table/wood, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vH" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vK" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"vS" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"vV" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/storage/photo_album{ - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"vY" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"vZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"we" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"wr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"ww" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"wy" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"wN" = ( -/obj/machinery/holopad, -/obj/effect/mapping_helpers/ianbirthday, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"wW" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "57" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"xT" = ( -/obj/machinery/holopad, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"xX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIW"; - location = "QM" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"yp" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"ys" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"yz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"yC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"yJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"yQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"yU" = ( -/obj/machinery/camera/autoname, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"yV" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"zb" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"zH" = ( -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"zS" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"zT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/floor/directional/north, -/obj/machinery/light/floor/directional/west, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"zW" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "CHE" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"zY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"An" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/central"; - cell_type = /obj/item/stock_parts/cell/bluespace; - dir = 8; - name = "Central Hall APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Ar" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"AE" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"AI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"AU" = ( -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"AV" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Bh" = ( -/obj/structure/chair/sofa/corp/corner{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Bs" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"BD" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"BN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"BX" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ck" = ( -/turf/closed/wall/r_wall, -/area/command/meeting_room/council) -"Cl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"Cm" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Cr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"Cv" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"CK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"CM" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"CS" = ( -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Dg" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"Dh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Dj" = ( -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Ds" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"DI" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"DJ" = ( -/obj/machinery/light/floor/directional/north, -/obj/machinery/light/floor/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Eg" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Ek" = ( -/obj/structure/stairs/south{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"El" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"Er" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"EN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"Fv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"FG" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"FI" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"FJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"FT" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"FZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Gg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Gr" = ( -/obj/structure/ladder, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Gw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"GR" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"GV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"GY" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/obj/machinery/accounting{ - pixel_y = 11 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"Hh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"HD" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"HV" = ( -/obj/structure/closet/emcloset, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"HW" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ix" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints/north) -"IG" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"IS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"IU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"IX" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"IY" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Jb" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"Jf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"Js" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"JH" = ( -/obj/machinery/door/airlock/external{ - req_one_access_txt = "19" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"JI" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"JK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"JO" = ( -/obj/machinery/computer/communications, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"JW" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Kd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Kj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Kn" = ( -/obj/effect/decal/cleanable/vomit/old{ - icon_state = "vomit_1-old" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Kp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Kq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"KA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Lw" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Lx" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/computer/price_controller{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"LD" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"LG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"LJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/cognac{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/grappa{ - pixel_x = 6; - pixel_y = 21 - }, -/obj/item/reagent_containers/food/drinks/bottle/grenadine{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -16; - pixel_y = 2 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"LL" = ( -/obj/structure/cable, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/vomit/old{ - icon_state = "vomit_4-old" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"LP" = ( -/turf/closed/wall/r_wall, -/area/command/meeting_room) -"LQ" = ( -/obj/machinery/vending/cart, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"LU" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Mf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 28 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Mx" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"MK" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"MN" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Nh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Nv" = ( -/obj/machinery/light, -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Nz" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"ND" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"NF" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"NH" = ( -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Od" = ( -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/hop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"Os" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"Oy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"OF" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"OK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"OP" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"OY" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Pb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hop) -"Pd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Pf" = ( -/obj/machinery/door/airlock/external{ - req_one_access_txt = "19" - }, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"Ph" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hop"; - name = "Head of Personnel APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Pq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Pu" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"PP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"PQ" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/coin/plasma, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"PV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Qc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Qj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"Qk" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"QC" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"QH" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"QP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"QY" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"Ri" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Rk" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ro" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"RG" = ( -/obj/structure/stairs/south{ - dir = 8 - }, -/obj/structure/railing, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"RQ" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"RR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Si" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Sm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Sq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"SD" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"SF" = ( -/obj/machinery/holopad/secure, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"SH" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"SI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Tm" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Tn" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"Ts" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Tv" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"TL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"TV" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"TY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ue" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Uj" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Ur" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel/monofloor/dark, -/area/command) -"UD" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"UJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"UL" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"UP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Vc" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 3; - pixel_y = 11 - }, -/obj/item/reagent_containers/food/drinks/bottle/hcider{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/kahlua{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Vf" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Vh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/gravity_generator) -"Vj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Vo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"Vv" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"VB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"VH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"VN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"VS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"VV" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"VW" = ( -/turf/open/floor/plating, -/area/command/meeting_room/council) -"VX" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall/r_wall, -/area/command/meeting_room/council) -"VY" = ( -/turf/template_noop, -/area/template_noop) -"Wb" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/candycornliquor{ - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = -14; - pixel_y = 20 - }, -/obj/item/reagent_containers/food/drinks/bottle/fernet{ - pixel_x = 11; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -13; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -13 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Wd" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Wf" = ( -/obj/machinery/door/airlock/command{ - name = "Conference Room"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room) -"Wo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Wv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/observer_start, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"WL" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/machinery/camera/autoname, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"WM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"WW" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Xh" = ( -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"Xn" = ( -/obj/structure/cable, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Xt" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Xw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"XB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"XD" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints) -"XG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"XU" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"XW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Yb" = ( -/obj/machinery/light/floor, -/obj/machinery/light/floor/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Yf" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_x = 30 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"Yk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"Yq" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/north) -"YC" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"YE" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"YH" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/command/teleporter"; - dir = 8; - name = "Teleporter APC"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/teleporter) -"YL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"YV" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Za" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Zb" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"Ze" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"Zf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"Zg" = ( -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"Zs" = ( -/obj/structure/chair/office, -/obj/machinery/button/ticket_machine{ - pixel_x = 32; - pixel_y = 38 - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = 32; - pixel_y = 25; - req_access_txt = "57" - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 32; - pixel_y = 12; - req_access_txt = "57" - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"Zv" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"Zw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/meeting_room/council) -"ZC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) -"ZW" = ( -/turf/closed/wall/r_wall, -/area/command) -"ZX" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) - -(1,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -Ck -Xw -Xw -Xw -Ck -Xw -Xw -Xw -Xw -Ck -Ck -Xw -Xw -Xw -Xw -Ck -Xw -Ck -Mx -Ck -Ck -Ck -Ck -VY -VY -VY -"} -(2,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -Xw -MN -MN -Oy -Za -MN -MN -av -MN -hZ -MN -Qc -MN -MN -ny -vS -MN -Qc -Pd -Pf -Tn -VW -JH -VY -VY -VY -"} -(3,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -mN -mN -mN -Tv -Cv -qj -qj -qj -qj -Xn -OY -Sm -qj -qj -qj -OY -qj -do -qj -qj -qj -bU -lL -LP -LP -LP -VY -VY -VY -"} -(4,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -Vo -YH -CS -mN -Zg -LG -lP -CM -OF -Vv -Vv -Vv -Vv -Eg -Vv -Vv -Vv -OF -Si -MN -MN -qj -LP -Os -lg -LP -VY -VY -VY -"} -(5,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -yU -Nh -kv -uO -qj -xT -Vc -nD -Vv -UD -Wd -uD -iD -XG -vq -bu -vV -Vv -HV -av -FT -qj -Qk -fE -AE -LP -VY -VY -VY -"} -(6,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -Ar -XB -zS -mN -qj -Kn -pb -kz -Vv -JO -Ue -ub -iD -XG -iD -iD -iD -Vv -WL -ed -Er -qj -Wf -Qj -AE -LP -VY -VY -VY -"} -(7,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -IY -Gr -iH -mN -LL -ql -Wb -Nv -Vv -fz -pv -Xt -iD -SF -ww -Zw -cx -Vv -sZ -Gg -MN -qj -LP -hO -Lx -LP -VY -VY -VY -"} -(8,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -mN -mN -mN -Tv -qj -MN -LJ -nD -Vv -hH -qB -vH -vI -UJ -iD -iD -Vf -Vv -LU -ne -MN -uE -LP -LP -LP -LP -VY -VY -VY -"} -(9,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -fI -qj -qj -FJ -qj -wy -hs -Bh -Vv -PQ -Bs -kX -se -iD -HD -Zv -eK -Vv -km -ZA -df -cX -gO -Kp -Za -Ck -VY -VY -VY -"} -(10,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -MN -qj -gG -UL -UL -UL -UL -UL -OF -Vv -Vv -Vv -Vv -vk -Vv -Vv -Vv -OF -UL -UL -UL -UL -UL -dV -Kp -Ck -VY -VY -VY -"} -(11,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -we -qj -MN -UL -kN -hW -ca -QH -IX -yp -jc -VS -Hh -Hh -An -jo -IG -IX -zb -tw -RG -Yk -UL -KA -fY -Ck -VY -VY -VY -"} -(12,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -Er -qj -MN -UL -ys -gv -gv -gb -IX -Cm -zY -Hh -Hh -Hh -rL -Hh -cL -QP -IX -Cm -Gw -bL -UL -MN -oq -Ck -VY -VY -VY -"} -(13,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -ND -md -av -UL -bG -gv -gv -gv -cL -TL -vZ -IX -IX -mq -rL -Hh -Hh -Hh -Hh -Hh -xX -bL -UL -Er -Dj -Ck -VY -VY -VY -"} -(14,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -MN -qj -eD -UL -XW -gv -gv -gv -gv -gb -VV -IX -IX -IX -tL -PP -Hh -Hh -Hh -Hh -Hh -bL -UL -av -Sq -Ck -VY -VY -VY -"} -(15,1,1) = {" -VY -VY -VY -VY -VY -VY -Yq -VB -qj -MN -UL -IX -pa -gv -gv -gv -gv -gb -IX -IX -IX -tL -IX -PP -Hh -Hh -Hh -Hh -TL -UL -MN -NH -Ck -XD -XD -XD -"} -(16,1,1) = {" -VY -VY -VY -VY -VY -VY -Yq -MN -qj -MN -UL -IX -IX -pa -gv -gv -gv -zT -gb -IX -IX -tL -Yb -IX -PP -Hh -Hh -TL -IX -UL -MN -Sq -ZX -JW -JW -VY -"} -(17,1,1) = {" -VY -VY -VY -VY -VY -VY -UL -Ck -Pu -Ck -FG -TY -IX -IX -pa -si -gv -gv -gv -gb -IX -tL -IX -IX -no -mq -mq -IX -ax -FG -Ck -WW -VX -Ck -JW -VY -"} -(18,1,1) = {" -VY -VY -VY -VY -VY -VY -UL -Ek -rn -WM -YC -WM -WM -WM -WM -Pq -ss -ss -ss -ss -gc -Ts -WM -WM -WM -WM -WM -WM -WM -IU -iM -yz -Lw -UL -JW -VY -"} -(19,1,1) = {" -VY -VY -VY -VY -VY -VY -UL -mH -Zf -SI -Vj -tL -tL -tL -tL -tL -vW -qm -qm -dC -Wv -tf -uK -uK -uK -uK -uK -uK -uK -AV -VH -ZC -lN -UL -JW -VY -"} -(20,1,1) = {" -VY -VY -VY -VY -VY -VY -UL -nX -rn -YL -rz -FZ -FZ -FZ -FZ -FZ -FZ -Kj -PV -PV -yQ -PV -GV -FZ -FZ -FZ -FZ -FZ -FZ -dj -FZ -yz -Lw -UL -QC -VY -"} -(21,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -Ck -Pu -Ck -FG -RR -QP -QP -IX -fx -IX -IX -pa -gv -Ro -gv -gv -gb -fx -IX -IX -IX -ax -UL -uq -gj -UL -UL -JW -VY -"} -(22,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -tV -qj -MN -UL -gv -gv -gv -gv -AI -IX -DJ -Cm -TL -Ro -gv -ji -gv -gb -IX -IX -IX -IX -UL -IX -yz -Tm -XD -JW -VY -"} -(23,1,1) = {" -VY -VY -VY -VY -VY -VY -cz -MN -qj -eD -UL -XW -gv -gv -gv -gv -AI -Cm -TL -IX -aH -gv -gv -gv -gv -cL -AI -IX -IX -UL -BX -yz -Uj -XD -JW -VY -"} -(24,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -qU -md -Ri -UL -IX -pa -gv -gv -gv -gv -TL -IX -IX -dU -pa -gv -gv -gv -gv -CK -cL -QP -UL -rt -zH -XD -XD -JW -VY -"} -(25,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -YV -qj -Ph -UL -IX -IX -pa -gv -gv -gv -gv -AI -IX -dU -IX -pa -gv -gv -gv -CK -Dh -vZ -UL -zW -Js -tK -Kd -ks -VY -"} -(26,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -ma -qj -MN -UL -IX -IX -IX -pa -gv -gv -gv -gv -IX -dU -IX -IX -pa -IS -bL -Dh -IX -IX -UL -UP -SH -XD -RQ -OK -VY -"} -(27,1,1) = {" -VY -VY -VY -VY -VY -VY -Ck -eu -qj -MN -UL -MK -IX -IX -IX -IX -vl -CK -ea -IX -dU -dL -IX -Rk -pa -lF -IX -IX -IX -UL -IX -rn -XD -RQ -OK -VY -"} -(28,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -Jb -hN -Jb -UL -UL -tX -tX -tX -UL -UL -FG -UL -UL -sx -UL -UL -FG -UL -UL -UL -UL -UL -UL -pg -sD -XD -JW -OK -VY -"} -(29,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -Pb -Kq -gY -mK -Kq -Kq -kg -tR -uy -yV -GR -LD -gA -yz -rn -rn -aG -Wo -Wo -Wo -Wo -Wo -Wo -Wo -Wo -JW -JW -OK -VY -"} -(30,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -uN -EN -BN -vK -eH -Od -JK -LQ -aV -sA -rc -yC -oS -at -IX -ot -ZW -ZW -ZW -ZW -FI -VY -VY -VY -VY -VY -VY -Fv -VY -"} -(31,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -GY -ob -VN -wN -hG -nk -ob -uz -pN -sA -rc -yC -IX -HW -UP -rn -Nz -ex -Ur -ZW -VY -VY -VY -VY -VY -VY -VY -Fv -VY -"} -(32,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -Xh -qp -Yf -mm -im -AU -yJ -Jf -Zs -Mf -lJ -sF -cB -XU -dO -rn -sj -uX -Ur -ZW -VY -VY -VY -VY -VY -VY -VY -Fv -VY -"} -(33,1,1) = {" -VY -VY -VY -VY -VY -VY -Jb -Jb -Jb -Jb -wW -Jb -Jb -Jb -ee -ee -ee -ee -ee -ee -ee -BD -qh -ZW -ZW -ZW -ZW -VY -VY -VY -VY -VY -VY -VY -vY -VY -"} -(34,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -ee -JI -jd -NF -wr -hi -TV -ee -sw -El -Ix -Ds -OP -VY -VY -VY -VY -VY -VY -VY -VY -VY -"} -(35,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -ee -Zb -fp -QY -aM -fp -Vh -Dg -sw -Cr -DI -uI -uI -VY -VY -VY -VY -VY -VY -VY -VY -VY -"} -(36,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -ee -NF -Ze -JI -wr -mX -SD -ee -Cl -DI -uI -uI -uI -VY -VY -VY -VY -VY -VY -VY -VY -VY -"} -(37,1,1) = {" -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -VY -ee -ee -ee -ee -ee -ee -ee -ee -Yq -Yq -YE -Yq -Yq -VY -VY -VY -VY -VY -VY -VY -VY -VY -"} diff --git a/_maps/RandomRuins/StationRuins/brig_armored.dmm b/_maps/RandomRuins/StationRuins/brig_armored.dmm deleted file mode 100644 index a5b7be11c2a0..000000000000 --- a/_maps/RandomRuins/StationRuins/brig_armored.dmm +++ /dev/null @@ -1,6171 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/floor/plating, -/area/security/main) -"ab" = ( -/turf/template_noop, -/area/template_noop) -"ac" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"ag" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) -"ah" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"ar" = ( -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"aM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"aR" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aS" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory - External"; - dir = 1 - }, -/turf/template_noop, -/area/template_noop) -"aW" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"be" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"bg" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/engine, -/area/security/main) -"bh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bi" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/engine, -/area/security/main) -"bn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"bo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/engine, -/area/security/brig) -"bu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"bw" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/security/main) -"bx" = ( -/turf/open/floor/engine, -/area/security/main) -"by" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/security/main) -"bA" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -31 - }, -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/deputy, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -26; - pixel_y = 34 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bB" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bC" = ( -/obj/machinery/computer/security/hos, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bD" = ( -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bE" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bI" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bL" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"bM" = ( -/obj/structure/closet/bombcloset/security, -/turf/open/floor/engine, -/area/security/main) -"bN" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/security/main) -"bO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/security/main) -"bQ" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bR" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "3" - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bS" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bT" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bU" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 10 - }, -/obj/structure/table/wood, -/obj/item/radio/off, -/obj/item/taperecorder, -/obj/item/reagent_containers/food/drinks/flask/gold/soviet, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"bV" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"cd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"ce" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"ch" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/porta_turret/armory, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ci" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cj" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/item/gun/ballistic/automatic/M41A, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/obj/item/ammo_box/magazine/m41a, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"ck" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cl" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cm" = ( -/obj/structure/rack, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/gun/energy/ionrifle, -/obj/item/clothing/suit/hooded/ablative, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cn" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 6 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"co" = ( -/obj/machinery/porta_turret/armory, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cp" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room"; - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"cq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"cr" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/security/main) -"cs" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"ct" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cu" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cv" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cw" = ( -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/hos, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cA" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"cJ" = ( -/obj/item/grenade/barrier{ - pixel_x = 16; - pixel_y = 9 - }, -/obj/item/grenade/barrier{ - pixel_x = 11; - pixel_y = 9 - }, -/obj/item/grenade/barrier{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/firingpins{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/storage/box/firingpins{ - pixel_x = 9 - }, -/obj/item/key/security, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cM" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/security/armory"; - dir = 4; - name = "Armory APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/turretid{ - lethal = 1; - name = "Armory Turret Control"; - pixel_x = 27; - pixel_y = 32; - req_one_access_txt = "3" - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"cN" = ( -/obj/machinery/vending/security, -/turf/open/floor/engine, -/area/security/main) -"cO" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/security/main) -"cP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cS" = ( -/mob/living/simple_animal/pet/dog/shepherd, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"cY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"db" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dc" = ( -/obj/item/storage/toolbox/drone, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dd" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/shield/riot/military, -/obj/item/shield/riot/military, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"de" = ( -/obj/effect/turf_decal/bot, -/obj/item/gun/ballistic/shotgun/sniper, -/obj/structure/guncase/shotgun{ - anchored = 1; - can_be_unanchored = 1 - }, -/obj/item/gun/ballistic/shotgun/sniper, -/obj/item/gun/ballistic/shotgun/sniper, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"df" = ( -/obj/effect/turf_decal/bot, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/guncase/ecase{ - anchored = 1; - can_be_unanchored = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dg" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "Armory Rack"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/ammo_box/magazine/fallout/r20, -/obj/item/ammo_box/magazine/fallout/r20, -/obj/item/ammo_box/magazine/fallout/r20, -/obj/item/gun/ballistic/automatic/fallout/assaultrifle/infiltrator, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dh" = ( -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"di" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "armory"; - name = "Armoury Shutter" - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dk" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"dm" = ( -/obj/item/storage/secure/safe/hos{ - pixel_x = 35 - }, -/obj/structure/closet/secure_closet/hos, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"dn" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hos"; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/pdapainter/security, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"do" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"dp" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"dv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"dI" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dO" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dP" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dQ" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"dR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/main) -"dS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/engine, -/area/security/main) -"dT" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/pen, -/turf/open/floor/engine, -/area/security/main) -"dU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/main) -"dV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"dW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"dX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"dY" = ( -/obj/machinery/camera{ - c_tag = "Security Escape Pod"; - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"ea" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/brig) -"el" = ( -/obj/vehicle/sealed/mecha/working/ripley/buran, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"em" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"en" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/hex/neutral, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"eo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"ep" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"eq" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"er" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/engine, -/area/security/main) -"es" = ( -/obj/machinery/recharger, -/obj/structure/table, -/turf/open/floor/engine, -/area/security/main) -"et" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"eu" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/engine, -/area/security/main) -"ev" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/structure/sign/plaques/robust{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/security/main) -"ex" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"ey" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/security/main) -"ez" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"eA" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"eB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"eC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"eD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"eE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"eH" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #4 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/security/main) -"eI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/floor/plating, -/area/security/main) -"eW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"eX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"eY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"fb" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"fc" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/timer, -/turf/open/floor/engine, -/area/security/main) -"fd" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) -"fe" = ( -/obj/structure/reagent_dispensers/peppertank, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"ff" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/engine, -/area/security/main) -"fg" = ( -/obj/effect/landmark/start/head_of_security, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"fi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/security/main) -"fj" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/engine, -/area/security/main) -"fk" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"fl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"fm" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/main) -"fn" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"fo" = ( -/obj/effect/landmark/start/field_medic, -/turf/open/floor/engine, -/area/security/brig) -"fs" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Wing" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"ft" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Wing" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"fu" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Brig Control Room"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/engine, -/area/security/warden) -"fv" = ( -/obj/machinery/computer/prisoner/management, -/turf/open/floor/engine, -/area/security/warden) -"fw" = ( -/obj/machinery/computer/security, -/turf/open/floor/engine, -/area/security/warden) -"fx" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/engine, -/area/security/warden) -"fy" = ( -/turf/open/floor/engine, -/area/security/warden) -"fz" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"fB" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/engine, -/area/security/warden) -"fC" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/warden) -"fD" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/gun/energy/laser/practice, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"fE" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"fF" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"fG" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/security/main) -"fH" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"fI" = ( -/obj/structure/table, -/obj/item/assembly/flash/handheld, -/turf/open/floor/engine, -/area/security/main) -"fJ" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/bot/secbot/ed209{ - arrest_type = 1; - idcheck = 1; - name = "Castratus"; - weaponscheck = 1 - }, -/turf/open/floor/engine, -/area/security/main) -"fK" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/engine, -/area/security/main) -"fL" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/security/main) -"fO" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"fP" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"fQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"fS" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/warden) -"fT" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/warden) -"fU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"fV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"fW" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"fX" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"fY" = ( -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"fZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"ga" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"gb" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/engine, -/area/security/warden) -"gc" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/engine, -/area/security/warden) -"gd" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"ge" = ( -/obj/effect/landmark/start/security_officer, -/turf/open/floor/engine, -/area/security/main) -"gf" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/engine, -/area/security/main) -"gg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/main) -"gi" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"gj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/engine, -/area/security/main) -"gk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"gl" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/security/main) -"gm" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"gn" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/security/main) -"go" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"gp" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/engine, -/area/security/brig) -"gr" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/warden"; - dir = 8; - name = "Brig Control APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/warden) -"gt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"gu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/warden) -"gw" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/warden) -"gx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/main) -"gy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/main) -"gz" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"gA" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"gB" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"gC" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Brig Infirmary"; - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"gD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"gE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"gF" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"gG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"gH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/engine, -/area/security/main) -"gI" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/main) -"gJ" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/main"; - dir = 4; - name = "Security Office APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/security/main) -"gK" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/turf/open/floor/engine, -/area/security/brig) -"gL" = ( -/obj/machinery/camera{ - c_tag = "Brig Interrogation"; - dir = 8; - network = list("interrogation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"gM" = ( -/obj/structure/closet/secure_closet/warden, -/obj/structure/cable, -/obj/item/shield/riot/kevlar, -/turf/open/floor/engine, -/area/security/warden) -"gN" = ( -/obj/structure/table, -/turf/open/floor/engine, -/area/security/warden) -"gO" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/warden, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2 - }, -/turf/open/floor/engine, -/area/security/warden) -"gP" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/warden) -"gQ" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/engine, -/area/security/warden) -"gR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/warden) -"gS" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/engine, -/area/security/warden) -"gT" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"gU" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"gV" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"gW" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/engine, -/area/security/brig) -"gX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/engine, -/area/security/warden) -"gY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"gZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/main) -"ha" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hb" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hc" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hd" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"he" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hf" = ( -/obj/machinery/camera{ - c_tag = "Security Office"; - dir = 1 - }, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hg" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hh" = ( -/obj/structure/filingcabinet, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/main) -"hi" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/main) -"hj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"hk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/main) -"hn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"ho" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/warden) -"hp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southleft{ - name = "Reception Desk"; - req_access_txt = "63" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/engine, -/area/security/warden) -"hq" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/warden) -"hr" = ( -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = null; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/main) -"hs" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"ht" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"hu" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hw" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/security/brig) -"hx" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"hy" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"hz" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hA" = ( -/obj/machinery/door/airlock/security{ - name = "Labor Shuttle"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"hB" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/security/brig) -"hC" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"hD" = ( -/obj/machinery/camera{ - c_tag = "Brig East" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"hE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"hI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hJ" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/brig"; - dir = 1; - name = "Brig APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/brig) -"hK" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"hM" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - pixel_y = 30 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"hT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"hW" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"hY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/engine, -/area/security/brig) -"hZ" = ( -/obj/machinery/camera{ - c_tag = "Brig West"; - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"ia" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"id" = ( -/obj/machinery/light, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"ie" = ( -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"if" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"ig" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security"; - req_access_txt = "58" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/command/heads_quarters/hos) -"ih" = ( -/obj/machinery/camera{ - c_tag = "Brig Central"; - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"ii" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"ij" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/security/brig) -"il" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"im" = ( -/obj/machinery/light, -/turf/open/floor/engine, -/area/security/brig) -"io" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"ip" = ( -/obj/machinery/button/flasher{ - id = "cell4"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/security/brig) -"iq" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Evidence Storage"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"is" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iu" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iv" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iw" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"ix" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/brig) -"iy" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iz" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"iA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iB" = ( -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/engine, -/area/security/brig) -"iC" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"iD" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"iE" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"iF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/brig) -"iG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"iH" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/brig) -"iI" = ( -/obj/machinery/button/door{ - id = "briggate"; - name = "Desk Shutters"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -28; - pixel_y = -8 - }, -/turf/open/floor/engine, -/area/security/brig) -"iJ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/engine, -/area/security/brig) -"iK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/engine, -/area/security/brig) -"iL" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/security/brig) -"iM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"iN" = ( -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"iO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"iP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"iQ" = ( -/obj/machinery/flasher{ - id = "cell4"; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/turf/open/floor/engine, -/area/security/brig) -"iR" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"iS" = ( -/turf/open/floor/engine, -/area/security/brig) -"iT" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"iU" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"iV" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"iW" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"iX" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"iY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"iZ" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/security/brig) -"ja" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = -5; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "63" - }, -/turf/open/floor/engine, -/area/security/brig) -"jb" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"jc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/obj/item/restraints/handcuffs, -/obj/item/radio/off, -/turf/open/floor/engine, -/area/security/brig) -"jd" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/security/brig) -"je" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"jf" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"jg" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"jh" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine, -/area/security/brig) -"ji" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"jj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/brig) -"jk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/engine, -/area/security/brig) -"jl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/engine, -/area/security/brig) -"jm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/turf/open/floor/engine, -/area/security/brig) -"jn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"jo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/turf/open/floor/engine, -/area/security/brig) -"jp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig) -"jD" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig) -"kL" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/template_noop, -/area/space/nearstation) -"mp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig) -"tR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"TC" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/engine, -/area/ai_monitored/security/armory) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(3,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(4,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(5,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(6,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(7,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(8,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(9,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(10,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(11,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(12,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(13,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(14,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(15,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(16,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(17,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(18,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -iz -iz -iz -iz -iz -ab -ab -ab -ab -ab -ab -ab -"} -(19,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -mp -iS -iS -ce -iz -iz -hA -iz -iz -iz -iz -ab -"} -(20,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -bn -go -go -dv -iz -hI -hX -iz -iC -iR -jg -iz -"} -(21,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fO -gp -gK -dv -iz -hJ -hY -iq -bL -iS -jh -iz -"} -(22,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fP -jD -jD -dv -iz -hK -hZ -iz -iD -iT -ji -iz -"} -(23,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -bo -aM -gL -hn -hs -hL -ia -iz -iz -iz -iz -iz -"} -(24,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -iz -iz -iz -iz -iz -hM -gA -ix -iE -iU -jj -ab -"} -(25,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fW -gz -gC -gW -iz -hN -io -is -ea -iF -jj -ab -"} -(26,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fX -gA -gU -hx -iz -hT -ie -ix -iG -iV -jj -ab -"} -(27,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fY -iS -fo -hy -iz -hT -id -iz -iz -iz -iz -ab -"} -(28,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -fZ -gB -gV -hz -iz -hT -gA -ix -iE -iW -jj -ab -"} -(29,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fs -fQ -fQ -fQ -fQ -ht -io -io -iu -ea -iF -jj -ab -"} -(30,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ft -iN -iN -iN -iN -hu -hT -ie -ix -iG -iX -jj -ab -"} -(31,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -aR -aR -aR -aR -aR -aR -fz -fS -fz -fS -fz -hC -hT -if -iz -iz -iz -iz -ab -"} -(32,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -ch -cJ -db -dI -dI -aR -fu -fT -gr -gM -ho -hw -hU -gA -ix -iE -iY -jj -ab -"} -(33,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -ci -cK -dc -dJ -el -aR -fv -fy -fT -gN -fS -hC -cY -io -iv -iH -iF -jj -ab -"} -(34,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ag -ag -ab -kL -ab -ab -ab -aR -cj -cL -dd -dK -em -fd -fw -fU -fT -gO -hp -hC -hT -ie -ix -iG -iZ -jj -ab -"} -(35,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ab -ag -ab -kL -ab -ab -ab -aR -ck -cL -de -dL -en -fd -fx -fV -fT -gP -fS -hC -hT -ih -iz -iz -iz -iz -ab -"} -(36,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -ab -kL -ab -ab -ab -aR -cl -cL -df -dM -eo -eW -fy -fV -gt -gQ -fS -hC -hT -ar -iw -iI -ja -jk -ab -"} -(37,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -ab -kL -ab -ab -ab -aR -cm -cL -dg -dN -ep -eX -gR -ga -gu -gR -hq -cA -io -ii -ix -iJ -jb -jl -ab -"} -(38,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -ab -kL -ab -ab -ab -aR -cn -cL -dh -dO -eq -fd -fB -fy -fT -gS -fS -hC -hT -ar -iz -iK -jc -jm -ab -"} -(39,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -ab -kL -ab -ab -ab -aR -co -cM -di -dP -TC -fe -fC -gb -fT -gT -fz -hB -hV -ij -iy -iL -iL -jn -ab -"} -(40,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ag -ag -ag -kL -aS -be -bi -aR -aR -aR -dj -dQ -aR -aR -fz -gc -gw -gX -fz -hC -hT -iM -ix -iM -iM -jo -ab -"} -(41,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ag -kL -ab -be -bw -bM -cp -cN -bx -bx -er -ff -fD -gd -gx -gY -be -hD -dV -il -iA -il -jd -jp -ab -"} -(42,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ab -kL -ab -bi -bx -bx -bx -bx -bx -bx -es -bg -ex -ge -gy -gZ -hr -hE -io -im -iz -iz -iz -iz -ab -"} -(43,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ab -kL -ab -be -bx -bN -bN -bN -bN -dR -et -eY -fE -et -gD -ha -be -hC -hT -iS -ix -iO -iO -iz -ab -"} -(44,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ag -ag -ag -kL -ag -bi -bx -bO -cq -cq -cq -dS -eu -bg -fF -bx -gE -hb -be -hC -cY -io -iB -iP -je -iz -ab -"} -(45,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ab -ab -kL -be -by -bw -bw -bw -bw -be -be -be -fG -cq -bu -hc -be -iN -hW -ip -ix -iQ -jf -iz -ab -"} -(46,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ag -ag -ag -ag -ag -aW -aW -aW -cs -cs -aW -aW -ev -fb -fH -ge -gE -hd -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(47,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ab -ab -ag -aW -bA -bQ -ct -cP -dn -cs -ex -fc -fI -gf -gE -he -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(48,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ag -ag -ag -ag -ag -bI -bB -bR -cu -cQ -bh -aW -ex -bx -bx -gg -gF -hf -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(49,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ab -ab -ab -ag -bI -bC -bS -cv -cR -do -ig -ey -fg -fJ -gD -gG -hg -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(50,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -kL -kL -kL -kL -ag -ag -bI -bD -bT -cw -cS -dp -aW -ez -fi -fi -gi -gE -hh -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(51,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -aW -bE -bU -cx -dm -dW -dX -eA -fj -fK -gj -gH -hi -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(52,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ag -ag -aW -aW -aW -aW -aW -aW -aW -ex -fk -fk -gk -gI -hj -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(53,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -ab -ag -ab -ab -ab -ab -ag -bi -dT -eB -fl -fL -gl -gJ -hk -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(54,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kL -kL -kL -kL -kL -kL -kL -ag -bi -dU -eC -fm -be -gm -be -cd -be -ab -ab -ab -ab -ab -ab -ab -ab -"} -(55,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bV -be -be -be -be -eD -be -be -gn -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(56,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -cr -cO -dk -dY -bx -fn -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(57,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -be -be -be -be -eE -be -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(58,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -tR -aa -eH -aa -tR -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(59,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -aa -aa -aa -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(60,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -aa -aa -aa -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(61,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -aa -aa -aa -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(62,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -tR -eI -tR -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} diff --git a/_maps/RandomRuins/StationRuins/brig_default.dmm b/_maps/RandomRuins/StationRuins/brig_default.dmm deleted file mode 100644 index 28ec1cd1fc27..000000000000 --- a/_maps/RandomRuins/StationRuins/brig_default.dmm +++ /dev/null @@ -1,6212 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ae" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"ag" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) -"aR" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aS" = ( -/turf/template_noop, -/area/template_noop) -"aZ" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/template_noop, -/area/space/nearstation) -"ba" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"bb" = ( -/turf/closed/wall, -/area/security/main) -"bc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"be" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -26; - pixel_y = 34 - }, -/obj/machinery/pdapainter/security, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"bp" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bq" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"br" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bs" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/radio/intercom{ - pixel_x = -29; - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"bt" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"bu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"bv" = ( -/obj/structure/chair/comfy/black, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"bw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"bC" = ( -/obj/structure/closet/bombcloset/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bD" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bF" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = -2 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/cartridge/detective, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"bG" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"bH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bI" = ( -/obj/structure/table/wood, -/obj/item/stamp/hos, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bJ" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bK" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"bU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/porta_turret/armory, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bV" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bW" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bX" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bY" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bZ" = ( -/obj/structure/rack, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/gun/energy/ionrifle, -/obj/item/clothing/suit/hooded/ablative, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ca" = ( -/obj/item/shield/riot/military, -/obj/item/shield/riot/military, -/obj/structure/closet/ammunitionlocker, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"cb" = ( -/obj/vehicle/ridden/secway, -/obj/machinery/turretid{ - lethal = 1; - name = "Armory Turret Control"; - pixel_x = 27; - req_one_access_txt = "3" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"cc" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room"; - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cf" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"cg" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"ch" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"ci" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_security, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cj" = ( -/obj/structure/cable, -/mob/living/simple_animal/hostile/retaliate/bat/sgt_araneus, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cp" = ( -/obj/effect/landmark/carpspawn, -/turf/template_noop, -/area/template_noop) -"cs" = ( -/obj/item/grenade/barrier{ - pixel_x = 16; - pixel_y = 9 - }, -/obj/item/grenade/barrier{ - pixel_x = 11; - pixel_y = 9 - }, -/obj/item/grenade/barrier{ - pixel_x = 5; - pixel_y = 9 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/firingpins{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/storage/box/firingpins{ - pixel_x = 9 - }, -/obj/item/key/security, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ct" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cv" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/security/armory"; - dir = 4; - name = "Armory APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cw" = ( -/obj/machinery/vending/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cx" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -20 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"cy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"cz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"cG" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"cH" = ( -/obj/item/storage/toolbox/drone, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cI" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cJ" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cK" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cL" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cM" = ( -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cN" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"cO" = ( -/obj/machinery/door/window/eastleft{ - name = "armoury desk"; - req_access_txt = "1" - }, -/obj/machinery/door/window/westleft{ - name = "armoury desk"; - req_access_txt = "3" - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cS" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"cV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"dh" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"di" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dn" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"do" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ds" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"du" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"dv" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"dw" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dE" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dF" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"dI" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dJ" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dK" = ( -/obj/machinery/recharger, -/obj/structure/table, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dM" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"dQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"dR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/main) -"dT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dV" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"eg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"eh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"ei" = ( -/obj/machinery/door/window/southleft{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"ej" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/security/armory) -"ek" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"el" = ( -/obj/structure/reagent_dispensers/peppertank, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"em" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) -"en" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"eo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"ep" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"er" = ( -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"es" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"et" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"eu" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"ev" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"ew" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ex" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ez" = ( -/turf/closed/wall, -/area/security/brig) -"eC" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"eD" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Brig Control Room"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eE" = ( -/obj/machinery/computer/prisoner/management, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eF" = ( -/obj/machinery/computer/security, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eG" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eH" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eJ" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eK" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eL" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/gun/energy/laser/practice, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eO" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eQ" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"eR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"eS" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"eT" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"eV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"eW" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"eX" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"eY" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"eZ" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fa" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fb" = ( -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/item/reagent_containers/blood, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"fe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ff" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"fg" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fj" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fk" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"fm" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"fo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/security/main) -"fr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"ft" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fw" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"fx" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fy" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"fz" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fA" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fB" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fC" = ( -/obj/item/storage/box/bodybags, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/reagent_containers/syringe{ - name = "steel point" - }, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fE" = ( -/turf/open/floor/plasteel/white, -/area/security/brig) -"fF" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"fG" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/warden"; - dir = 8; - name = "Brig Control APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"fI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"fL" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"fN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fQ" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fS" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fT" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"fU" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/main"; - dir = 4; - name = "Security Office APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"fW" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fX" = ( -/obj/machinery/camera{ - c_tag = "Brig Interrogation"; - dir = 8; - network = list("interrogation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fY" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Brig Infirmary"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ga" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"gb" = ( -/obj/structure/closet/secure_closet/warden, -/obj/structure/cable, -/obj/item/shield/riot/kevlar, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gc" = ( -/obj/structure/table, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gd" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/warden, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ge" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gf" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gh" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gi" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"gk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"gm" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gn" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"go" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gq" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gr" = ( -/obj/machinery/camera{ - c_tag = "Security Office"; - dir = 1 - }, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gs" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gt" = ( -/obj/structure/filingcabinet, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gD" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"gF" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"gG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"gH" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"gI" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southleft{ - name = "Reception Desk"; - req_access_txt = "63" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gJ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gK" = ( -/obj/machinery/door/airlock/security{ - name = "Security Office"; - req_access_txt = null; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/main) -"gO" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gP" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"gQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"gS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"gT" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"gU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"gV" = ( -/obj/machinery/camera{ - c_tag = "Brig East" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"gY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hl" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hm" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/brig"; - dir = 1; - name = "Brig APC"; - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hn" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ho" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"hp" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"hw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"hx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"hy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hJ" = ( -/obj/machinery/door/airlock/security{ - name = "Labor Shuttle"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"hM" = ( -/obj/machinery/camera{ - c_tag = "Brig West"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"hN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hQ" = ( -/obj/machinery/light, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hR" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"hS" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hT" = ( -/obj/machinery/camera{ - c_tag = "Brig Central"; - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"hX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"hY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/brig) -"ia" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/brig) -"ib" = ( -/obj/machinery/button/flasher{ - id = "cell4"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ij" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"ik" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Evidence Storage"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"im" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"io" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"ip" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"iq" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ir" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"is" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"it" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"iu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iB" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iC" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iD" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"iF" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iG" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iH" = ( -/obj/machinery/button/door{ - id = "briggate"; - name = "Desk Shutters"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -28; - pixel_y = -8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iI" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"iL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"iM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"iN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iP" = ( -/obj/machinery/flasher{ - id = "cell4"; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/security/brig) -"iR" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/main) -"iS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) -"iT" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"iU" = ( -/obj/machinery/camera{ - c_tag = "Security Escape Pod"; - dir = 4 - }, -/turf/open/floor/plating, -/area/security/main) -"iV" = ( -/turf/open/floor/plating, -/area/security/main) -"iW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"iX" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/main) -"iY" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iZ" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"ja" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jb" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jc" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jd" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"je" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jf" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jg" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jh" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = -5; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ji" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/obj/item/restraints/handcuffs, -/obj/item/radio/off, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jk" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"jl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jm" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jn" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #4 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/security/main) -"jo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/floor/plating, -/area/security/main) -"jp" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory - External"; - dir = 1 - }, -/turf/template_noop, -/area/template_noop) -"jt" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ju" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jv" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"jx" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jy" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jz" = ( -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"jB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"le" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"nI" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Prison Wing" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"nJ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Wing" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"oi" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"pO" = ( -/obj/effect/landmark/start/field_medic, -/turf/open/floor/plasteel/white, -/area/security/brig) -"qL" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/machinery/computer/med_data/laptop, -/obj/item/storage/secure/safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"tt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"ur" = ( -/obj/machinery/computer/prisoner/management, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"uS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 29 - }, -/obj/machinery/suit_storage_unit/hos, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"wc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"xU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/cable, -/obj/item/reagent_containers/food/drinks/flask/gold/soviet, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"Fi" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/hos) -"Hn" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/pen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"Lf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"Oi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"Ok" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/obj/item/radio/off{ - pixel_y = 3 - }, -/obj/structure/cable, -/obj/item/storage/box/deputy, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"Po" = ( -/obj/structure/table, -/obj/item/assembly/timer, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"RG" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"Sg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/sign/plaques/robust{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/main) -"Vh" = ( -/obj/machinery/photocopier, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hos"; - dir = 4; - name = "Head of Security's Office APC"; - pixel_x = 24 - }, -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"WN" = ( -/obj/machinery/computer/security/hos, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"XW" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/turf/open/floor/plasteel/monofloor, -/area/security/main) -"Yy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"YS" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/monofloor, -/area/security/main) - -(1,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(2,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(3,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(4,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(5,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(6,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(7,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(8,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(9,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(10,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(11,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(12,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(13,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(14,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(15,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(16,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(17,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(18,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -ij -ij -ij -ij -ij -aS -aS -aS -aS -aS -aS -aS -"} -(19,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -eU -eY -eY -gz -ij -ij -hJ -ij -ij -ij -ij -aS -"} -(20,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -eV -fz -fz -gB -ez -hl -hK -ez -iB -iY -jt -ij -"} -(21,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -eW -fA -fW -gB -ez -hm -hL -ik -gU -iZ -ju -ij -"} -(22,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -eX -fB -fB -gB -ez -hn -hM -ez -iC -ja -jv -ij -"} -(23,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -le -cT -ds -fX -gC -gO -ho -hN -ez -ez -ez -ij -ij -"} -(24,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -ez -ez -ez -ez -ez -hp -hO -ir -iD -jb -jw -aS -"} -(25,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -eZ -fC -fY -gD -ez -hq -ia -im -fK -iE -jw -aS -"} -(26,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -fa -fD -fZ -gE -ez -hr -hR -ir -iF -jc -jw -aS -"} -(27,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -fb -fE -pO -gF -ez -hv -hQ -ez -ez -ez -ij -aS -"} -(28,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ij -fc -fF -ga -gG -ez -hv -hO -ir -iD -jd -jw -aS -"} -(29,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -nI -fd -fd -fd -fd -gP -ia -ia -io -fK -iE -jw -aS -"} -(30,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -nJ -fe -fe -fe -fe -gQ -hv -hR -ir -iF -je -jw -aS -"} -(31,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aR -aR -aR -aR -aR -aR -aR -eC -ff -eC -ff -eC -gU -hv -hS -ez -ez -ez -ij -aS -"} -(32,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aR -bU -cs -cG -dh -dh -aR -eD -fg -fG -gb -gH -gS -hw -hO -ir -iD -jf -jw -aS -"} -(33,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aR -bV -ct -cH -di -dh -aR -eE -eH -fg -gc -ff -gU -eo -ia -ip -iG -iE -jw -aS -"} -(34,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -ag -ag -ag -ag -ag -ag -ag -aZ -aS -aS -aS -aR -bW -cu -cI -dj -dE -ek -eF -fh -fg -gd -gI -gU -hv -hR -ir -iF -jg -jw -aS -"} -(35,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aZ -aS -aS -aS -aR -bX -cu -cJ -dk -dF -ek -eG -fi -fg -ge -ff -gU -hv -hT -ez -ez -ez -ij -aS -"} -(36,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aZ -aS -aS -aS -aR -bY -cu -cK -dl -dG -ei -eH -fi -fI -gf -ff -gU -hv -hN -iq -iH -jh -jx -aS -"} -(37,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aZ -aS -aS -aS -aR -bZ -cu -cL -dm -dH -ej -gg -fj -fJ -gg -gJ -eh -ia -hU -ir -iI -ji -jy -aS -"} -(38,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aZ -aS -aS -aS -aR -ca -cu -cM -dn -dI -ek -eJ -eH -fg -gh -ff -gU -hv -hN -ez -iJ -jj -jz -aS -"} -(39,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aZ -aS -aS -aS -aR -cb -cv -cN -do -dI -el -eK -fk -fg -gi -eC -gT -hx -iK -is -iK -iK -oi -aS -"} -(40,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -ag -aZ -jp -ba -fq -aR -aR -aR -cO -dp -aR -aR -eC -fl -fL -gj -eC -gU -hv -iL -ir -iL -iL -ir -aS -"} -(41,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aZ -aS -bb -bp -bC -cc -cw -bq -bq -dJ -em -eL -fm -fM -gk -ba -gV -fH -hX -it -iM -jk -jB -aS -"} -(42,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aZ -aS -fq -bq -bq -bq -bq -bq -bq -dK -bc -eN -er -fN -gl -gK -ho -ia -hY -ez -ez -ez -ij -aS -"} -(43,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aZ -aS -bb -bq -bD -bD -bD -bD -dq -dL -en -eM -fo -fO -gm -ba -gU -hv -iZ -ir -iN -iN -ij -aS -"} -(44,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -aZ -ag -fq -bq -bE -cd -cd -cd -dr -dM -bc -eN -er -fP -gn -ba -gU -eo -ia -iu -iO -jl -ij -aS -"} -(45,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aZ -bb -br -bp -bp -bp -ba -bb -bb -bb -eO -cV -dO -go -ba -gY -hy -ib -ir -iP -jm -ij -aS -"} -(46,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -ag -ag -ag -dv -dv -du -dv -dv -dv -Hn -dN -ep -eP -er -fP -gp -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(47,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -dv -dv -bs -bF -cf -cx -dv -dv -Sg -eQ -eQ -er -fP -gq -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(48,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -ag -ag -dv -be -bt -bG -cg -cy -cD -du -dS -XW -Po -fr -fQ -gr -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(49,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -fn -ur -bu -bH -ch -cz -cS -du -dQ -es -eR -fs -fR -gs -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(50,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -cp -aS -aS -aS -ae -ag -ag -ag -ag -ag -fn -WN -bv -bI -ci -tt -cR -Lf -dR -et -wc -ft -fP -gt -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(51,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -fn -RG -bw -bJ -cj -cS -cS -du -dS -eu -eS -fv -fS -gu -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(52,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -dv -qL -Fi -bG -cg -bG -Yy -du -dS -ev -YS -fv -fT -gv -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(53,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -dv -dv -uS -xU -Ok -Vh -dv -dv -dT -ew -eT -fw -fU -gw -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(54,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -dv -dv -Oi -dv -dv -dv -dw -dU -ex -bb -fx -bb -eg -bb -aS -aS -aS -aS -aS -aS -aS -aS -"} -(55,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -bK -bb -bb -ba -bb -dV -bb -ba -fy -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(56,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ae -iR -iS -iT -iU -iV -iX -bb -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(57,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ae -bb -bb -ba -bb -iW -bb -ba -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(58,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -ag -ae -ae -ae -ae -ag -ag -ag -ag -bc -iV -jn -iV -bc -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(59,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ag -aS -aS -ba -iV -iV -iV -ba -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(60,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ba -iV -iV -iV -ba -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(61,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ba -iV -iV -iV -ba -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} -(62,1,1) = {" -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -ba -bc -jo -bc -ba -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -aS -"} diff --git a/_maps/RandomRuins/StationRuins/brig_loose.dmm b/_maps/RandomRuins/StationRuins/brig_loose.dmm deleted file mode 100644 index efeaeb626f93..000000000000 --- a/_maps/RandomRuins/StationRuins/brig_loose.dmm +++ /dev/null @@ -1,6015 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/template_noop, -/area/template_noop) -"ac" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"ad" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) -"ag" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/template_noop, -/area/space/nearstation) -"am" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"an" = ( -/obj/machinery/light/small, -/obj/structure/lattice, -/turf/open/openspace, -/area/security/brig) -"aB" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"aC" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aD" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"aF" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/carbon/human/species/monkey/angry, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aG" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -31 - }, -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/deputy, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -26; - pixel_y = 34 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"aH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aJ" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/surgicaldrill, -/obj/item/surgical_drapes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aL" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"aN" = ( -/obj/structure/table, -/obj/item/switchblade, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aO" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Brig Infirmary" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aP" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"aR" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aS" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory - External"; - dir = 1 - }, -/turf/template_noop, -/area/template_noop) -"aT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"aU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aV" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"aW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aZ" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"ba" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"bb" = ( -/obj/machinery/camera{ - c_tag = "Brig East" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"be" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"bf" = ( -/turf/closed/wall, -/area/security/main) -"bg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"bh" = ( -/turf/closed/wall, -/area/command/heads_quarters/hos) -"bi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"bk" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"bm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"bn" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/brig"; - dir = 1; - name = "Brig APC"; - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bo" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"bq" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"br" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bw" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bx" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"by" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bA" = ( -/obj/machinery/computer/secure_data, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bB" = ( -/obj/machinery/computer/security/hos, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bC" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bD" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bE" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Head of Security's Office"; - dir = 4 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bF" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bG" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"bH" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bK" = ( -/obj/machinery/door/airlock/security{ - name = "Labor Shuttle"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bM" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bN" = ( -/obj/structure/closet/l3closet/security, -/obj/machinery/camera{ - c_tag = "Brig Equipment Room"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bO" = ( -/obj/machinery/camera{ - c_tag = "Brig West"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"bQ" = ( -/obj/structure/chair/comfy/black, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bR" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bS" = ( -/obj/machinery/holopad/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bT" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 10 - }, -/obj/structure/table/wood, -/obj/item/radio/off, -/obj/item/taperecorder, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/flask/gold/soviet, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"bU" = ( -/obj/structure/table, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bV" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/space/nearstation) -"bX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"bY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"ca" = ( -/obj/machinery/light, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cg" = ( -/obj/machinery/camera{ - c_tag = "Brig Central"; - dir = 1 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"ch" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"ci" = ( -/obj/structure/table, -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cj" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/hooded/ablative, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ck" = ( -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/guncase/ecase{ - anchored = 1; - can_be_unanchored = 1 - }, -/obj/item/gun/energy/e_gun/mini, -/obj/item/gun/energy/e_gun/mini, -/obj/item/gun/energy/e_gun/mini, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/guncase/shotgun{ - anchored = 1; - can_be_unanchored = 1 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cm" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/energy/ionrifle, -/obj/structure/guncase/ecase{ - anchored = 1; - can_be_unanchored = 1 - }, -/obj/item/gun/energy/e_gun/mini, -/obj/item/gun/energy/e_gun/mini, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cn" = ( -/obj/structure/closet/secure_closet, -/obj/effect/decal/cleanable/dirt, -/obj/item/shield/riot/military, -/obj/item/shield/riot/military, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"co" = ( -/obj/vehicle/ridden/secway, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - on = 0; - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cq" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"cs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"ct" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cu" = ( -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/table/wood, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/hos, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cx" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cy" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/main) -"cA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"cI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cM" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/ai_monitored/security/armory"; - dir = 4; - name = "Armory APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cN" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/pdapainter/security, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cO" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"cP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cQ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cR" = ( -/obj/item/storage/secure/safe/hos{ - pixel_x = 35 - }, -/obj/structure/closet/secure_closet/hos, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"cS" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cT" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) -"cU" = ( -/obj/machinery/button/flasher{ - id = "cell4"; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"cV" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Evidence Storage"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cW" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"cX" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"dc" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"dd" = ( -/obj/item/storage/toolbox/drone, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"de" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"df" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"dg" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"dh" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"di" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"dj" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dk" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dl" = ( -/obj/machinery/door/window/eastleft{ - name = "armoury desk"; - req_access_txt = "1" - }, -/obj/machinery/door/window/westleft{ - name = "armoury desk"; - req_access_txt = "3" - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dm" = ( -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hos"; - dir = 8; - name = "Head of Security's Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/structure/bed/dogbed/lia, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"dn" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"do" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"dp" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"dq" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"dr" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"ds" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"du" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dx" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dy" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dz" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dD" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"dE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"dF" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, -/area/security/brig) -"dG" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dH" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dL" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dM" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dN" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/plaques/robust{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dP" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"dQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"dR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"dS" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "Armoury Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"dT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dU" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"dV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"dW" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Head of Security"; - req_access_txt = "58" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"dX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"dY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"dZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ea" = ( -/obj/machinery/camera{ - c_tag = "Security Escape Pod"; - dir = 4 - }, -/turf/open/floor/plating, -/area/security/main) -"eb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ec" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ed" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/timer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ee" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ef" = ( -/obj/effect/landmark/start/head_of_security, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"eh" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ei" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ej" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ek" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"en" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Brig Control Room"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eo" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ep" = ( -/obj/machinery/computer/security, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eq" = ( -/obj/machinery/computer/secure_data, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"er" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"es" = ( -/obj/machinery/recharger, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"et" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"eu" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/vending/cola/pwr_game, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"ew" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ex" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ey" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/item/gun/energy/laser/practice, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ez" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"eB" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eC" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"eD" = ( -/obj/structure/table, -/obj/item/assembly/flash/handheld, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"eE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"eF" = ( -/turf/open/floor/plating, -/area/security/main) -"eG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - shuttledocked = 1 - }, -/turf/open/floor/plating, -/area/security/main) -"eH" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #4 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/security/main) -"eI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/floor/plating, -/area/security/main) -"eJ" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eK" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"eL" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"eM" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eP" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eR" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eS" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"eZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fb" = ( -/obj/machinery/door/window/southleft{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"fc" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Armory"; - req_access_txt = "3" - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"fd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"fe" = ( -/obj/structure/reagent_dispensers/peppertank, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"ff" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/main) -"fg" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/main) -"fh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fi" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fj" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"fm" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fp" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fr" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/main) -"fs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ft" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"fu" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/warden"; - dir = 8; - name = "Brig Control APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"fw" = ( -/turf/closed/wall, -/area/security/brig) -"fx" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fy" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fz" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"fA" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"fB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fF" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fI" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fJ" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/main"; - dir = 4; - name = "Security Office APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"fK" = ( -/obj/structure/closet/secure_closet/warden, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/item/shield/riot/kevlar, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fL" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fM" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/warden, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = -27; - pixel_y = 8; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "Secure Gate"; - name = "Cell Shutters"; - pixel_x = -27; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fN" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fO" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fP" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fQ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fT" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fU" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fV" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"fW" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"fY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"fZ" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ga" = ( -/obj/machinery/light_switch{ - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gb" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"gd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"ge" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gf" = ( -/obj/machinery/camera{ - c_tag = "Security Office"; - dir = 1 - }, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gg" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gh" = ( -/obj/structure/filingcabinet, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/main) -"gi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"gj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"gn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"go" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"gp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"gq" = ( -/obj/machinery/flasher{ - id = "brigentry"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"gr" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"gs" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"gu" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gv" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"gw" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gx" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gy" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gI" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gS" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"gT" = ( -/obj/machinery/camera{ - c_tag = "Brig Interrogation"; - dir = 8; - network = list("interrogation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"hf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"ht" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"hv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"hw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"hB" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"hC" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Armory Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southleft{ - name = "Reception Desk"; - req_access_txt = "63" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"hD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"hF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hG" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"iz" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"iF" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/brig) -"iG" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"iN" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"iP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iQ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iR" = ( -/obj/machinery/button/door{ - id = "briggate"; - name = "Desk Shutters"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/machinery/button/flasher{ - id = "brigentry"; - pixel_x = -28; - pixel_y = -8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iS" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iZ" = ( -/obj/machinery/flasher{ - id = "cell4"; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/security/brig) -"jd" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"je" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jh" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"ji" = ( -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"jj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "outerbrig"; - name = "Brig Exterior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = -5; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "innerbrig"; - name = "Brig Interior Doors Control"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = 5; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jk" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jl" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/eastright{ - name = "Brig Desk"; - req_access_txt = "2" - }, -/obj/item/restraints/handcuffs, -/obj/item/radio/off, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jo" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = 25; - pixel_y = -2; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"js" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"jt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ju" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briggate"; - name = "security shutters" - }, -/obj/machinery/door/window/southleft{ - base_state = "right"; - icon_state = "right"; - name = "Brig Desk"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "briggate"; - name = "security blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"mK" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/brig) -"pH" = ( -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plasteel, -/area/security/brig) -"xN" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, -/area/security/brig) -"BQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/field_medic, -/turf/open/floor/plasteel/white, -/area/security/brig) -"Xp" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, -/area/security/brig) -"Zw" = ( -/turf/open/openspace, -/area/security/brig) -"ZQ" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, -/area/security/brig) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(3,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(4,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(5,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(6,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(7,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(8,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(9,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(10,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(11,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(12,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(13,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(14,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(15,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(16,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(17,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(18,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iz -iz -iz -iz -iz -iz -ab -ab -ab -ab -ab -ab -ab -"} -(19,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -fR -fV -fV -ht -iz -iz -bK -iz -iz -iz -iz -ab -"} -(20,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -fS -gw -gw -hv -fw -bm -bL -fw -cX -df -dh -iz -"} -(21,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -fT -gx -gS -hv -fw -bn -bM -cV -ba -am -di -iz -"} -(22,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -fU -gy -gy -hv -fw -bo -bO -fw -dc -dg -dr -iz -"} -(23,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hG -dV -fa -gT -hw -mK -bp -cf -fw -fw -fw -iz -iz -"} -(24,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -fw -fw -fw -fw -fw -bq -bX -iH -iN -jd -js -ab -"} -(25,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -aC -aJ -aN -aP -fw -br -cO -cW -hF -iO -js -ab -"} -(26,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -aH -aH -aH -aF -fw -bs -bY -iH -iP -je -js -ab -"} -(27,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -aH -BQ -aH -aH -fw -bw -ca -fw -fw -fw -iz -ab -"} -(28,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -fw -aI -aL -aO -aI -fw -bw -cc -fw -ZQ -Xp -iz -ab -"} -(29,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aB -aT -aT -aT -aT -aV -cO -cd -pH -xN -an -iz -ab -"} -(30,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aQ -aU -aU -aU -aU -aW -bw -cf -fw -Zw -dF -iz -ab -"} -(31,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -aR -aR -aR -aR -aR -aR -fz -gc -fz -gc -fz -ba -bw -cf -fw -fw -fw -iz -ab -"} -(32,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -bU -cx -cS -ds -ds -aR -en -eM -fu -fK -hB -aY -bF -bX -iH -iN -jh -js -ab -"} -(33,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aR -ci -cK -dd -dt -ds -aR -eo -er -eM -fL -gc -ba -bH -cO -iF -iQ -iO -js -ab -"} -(34,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -cj -cL -de -du -dG -fd -ep -eN -eM -fM -hC -ba -bw -bY -iH -iP -ji -js -ab -"} -(35,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -ck -cL -de -dv -dH -fd -eq -eO -eM -fN -gc -ba -bw -cg -fw -fw -fw -iz -ab -"} -(36,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -cl -cL -de -dw -dK -fb -er -eO -fx -fO -gc -ba -bw -cf -iG -iR -jj -jt -ab -"} -(37,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -cm -cL -de -dx -dL -fc -fP -eP -fy -fP -hD -fv -cO -ch -iH -iS -jk -ju -ab -"} -(38,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -cn -cL -dj -dy -dM -fd -ew -er -eM -fQ -gc -ba -bw -cf -fw -iT -jl -jv -ab -"} -(39,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ag -ab -ab -ab -aR -co -cM -dk -dz -dM -fe -ex -eR -eM -fW -fz -aZ -bG -go -eS -go -go -gr -ab -"} -(40,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ad -ag -aS -be -bg -aR -aR -aR -dl -dS -aR -aR -fz -gi -gI -hf -fz -ba -bw -cA -iH -iH -iH -iH -ab -"} -(41,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ag -ab -bf -aD -by -bN -cq -aE -aE -dU -ff -ey -fi -fB -fX -be -bb -fA -cB -gm -gp -gq -gs -ab -"} -(42,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ab -bg -aE -aE -aE -aE -aE -aE -es -bg -dP -fj -fC -fY -aM -bp -cO -cI -fw -fw -fw -iz -ab -"} -(43,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ab -bf -aE -aE -aE -aE -aE -cr -et -fg -ez -fk -fD -fZ -be -ba -bw -am -iH -iX -iX -iz -ab -"} -(44,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ag -ad -bg -aE -bz -bP -bP -bP -dT -eu -bg -eA -ee -fE -ga -be -ba -bH -cO -gn -iY -jn -iz -ab -"} -(45,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -bf -bx -aD -aD -aD -aD -bf -bf -bf -eB -eZ -fh -gb -be -bl -bJ -cU -iH -iZ -jo -iz -ab -"} -(46,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ad -ad -ad -bh -bh -bh -cs -cs -bh -bh -dN -ec -eC -fj -fE -gd -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(47,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -bh -aG -bE -cp -cN -dm -cs -dP -ed -eD -fm -fE -ge -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(48,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ad -ad -ad -bi -bA -bQ -ct -cP -bk -bh -dP -ee -ee -fn -fF -gf -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(49,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -bi -bB -bR -cu -cQ -dn -dW -dQ -ef -eJ -fD -fG -gg -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(50,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -bi -bC -bS -cv -cv -do -bh -dR -eg -eg -fp -fE -gh -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(51,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -bh -bD -bT -cw -cR -dp -dX -dY -eh -eK -fq -fH -gj -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(52,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bh -bh -bh -bh -bh -bh -bh -dP -ei -ei -fs -fI -gk -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(53,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -bg -dD -dZ -ej -eL -ft -fJ -gl -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(54,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ad -bg -dE -eb -ek -bf -gu -bf -fl -bf -ab -ab -ab -ab -ab -ab -ab -ab -"} -(55,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bV -bf -bf -be -bf -eE -bf -be -gv -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(56,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -cy -cT -dq -ea -eF -fr -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(57,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -bf -bf -bf -bf -eG -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(58,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -eF -eH -eF -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(59,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -eF -eF -eF -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(60,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -eF -eF -eF -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(61,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -eF -eF -eF -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(62,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -be -bg -eI -bg -be -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} diff --git a/_maps/RandomRuins/StationRuins/maint_sw_arena.dmm b/_maps/RandomRuins/StationRuins/maint_sw_arena.dmm deleted file mode 100644 index 4c998159d218..000000000000 --- a/_maps/RandomRuins/StationRuins/maint_sw_arena.dmm +++ /dev/null @@ -1,498 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"c" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"e" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/under/victorian/reddress, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"g" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/maintenance/port/aft) -"h" = ( -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 8; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"i" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/maintenance/port/aft) -"j" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, -/area/maintenance/port/aft) -"k" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"l" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/maintenance/port/aft) -"m" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"n" = ( -/obj/item/clothing/under/victorian/vest, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"o" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/maintenance/port/aft) -"p" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/maintenance/port/aft) -"q" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/maintenance/port/aft) -"r" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, -/area/maintenance/port/aft) -"t" = ( -/obj/structure/chair/sofa, -/turf/open/floor/partyhard/steel{ - icon_state = "w-2" - }, -/area/maintenance/port/aft) -"u" = ( -/obj/structure/chair/sofa, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"v" = ( -/obj/structure/chair/sofa, -/turf/open/floor/partyhard/steel{ - icon_state = "s-2" - }, -/area/maintenance/port/aft) -"w" = ( -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"x" = ( -/turf/template_noop, -/area/template_noop) -"y" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"z" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, -/area/maintenance/port/aft) -"A" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"B" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"C" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"D" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"E" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"F" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"G" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"H" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 10; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"I" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"J" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 6; - icon_state = "trimline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"K" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/clothing/under/victorian/vest, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"L" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/under/victorian/blackdress, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"M" = ( -/obj/item/clothing/under/victorian/blred, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/maintenance/port/aft) -"N" = ( -/obj/structure/chair/sofa, -/turf/open/floor/partyhard/steel{ - icon_state = "w-3" - }, -/area/maintenance/port/aft) -"O" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"P" = ( -/obj/structure/chair/sofa/left{ - dir = 1; - icon_state = "sofaend_left" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"Q" = ( -/obj/structure/chair/sofa{ - dir = 1; - icon_state = "sofamiddle" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "s-2" - }, -/area/maintenance/port/aft) -"R" = ( -/obj/structure/chair/sofa{ - dir = 1; - icon_state = "sofamiddle" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "w-3" - }, -/area/maintenance/port/aft) -"S" = ( -/obj/structure/chair/sofa{ - dir = 1; - icon_state = "sofamiddle" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"T" = ( -/obj/structure/chair/sofa{ - dir = 1; - icon_state = "sofamiddle" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "w-2" - }, -/area/maintenance/port/aft) -"U" = ( -/obj/structure/chair/sofa/right{ - dir = 1; - icon_state = "sofaend_right" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "s-3" - }, -/area/maintenance/port/aft) -"V" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"W" = ( -/turf/closed/wall, -/area/maintenance/port/aft) - -(1,1,1) = {" -W -W -W -W -W -k -W -W -c -W -W -W -W -W -"} -(2,1,1) = {" -W -y -V -y -y -y -W -x -x -x -x -x -x -c -"} -(3,1,1) = {" -W -y -W -W -W -W -W -W -W -W -W -W -x -c -"} -(4,1,1) = {" -b -y -W -m -g -l -p -l -l -q -P -W -x -c -"} -(5,1,1) = {" -W -y -W -t -i -C -F -F -H -r -Q -W -x -c -"} -(6,1,1) = {" -W -y -W -u -i -D -n -M -I -r -R -W -x -c -"} -(7,1,1) = {" -W -y -W -v -i -D -K -M -I -r -S -W -x -c -"} -(8,1,1) = {" -c -y -W -N -i -E -G -G -J -r -T -W -x -c -"} -(9,1,1) = {" -c -y -W -O -j -o -o -o -o -z -U -W -x -W -"} -(10,1,1) = {" -c -y -W -e -A -B -A -A -A -A -L -W -x -W -"} -(11,1,1) = {" -W -y -W -W -W -W -w -h -W -W -W -W -W -W -"} diff --git a/_maps/RandomRuins/StationRuins/maint_sw_default.dmm b/_maps/RandomRuins/StationRuins/maint_sw_default.dmm deleted file mode 100644 index 4aecb3bcc456..000000000000 --- a/_maps/RandomRuins/StationRuins/maint_sw_default.dmm +++ /dev/null @@ -1,245 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"b" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"c" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"f" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"g" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"i" = ( -/turf/template_noop, -/area/template_noop) -"j" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/space/nearstation) -"k" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"l" = ( -/obj/item/stack/tile/plasteel, -/turf/template_noop, -/area/template_noop) -"n" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"o" = ( -/obj/item/weldingtool, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"p" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"q" = ( -/obj/item/stack/cable_coil{ - amount = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"r" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/plating/airless, -/area/space/nearstation) - -(1,1,1) = {" -a -a -a -a -a -k -a -a -c -a -a -a -a -a -"} -(2,1,1) = {" -a -f -g -f -f -f -c -j -i -i -i -i -i -c -"} -(3,1,1) = {" -a -f -c -c -c -c -c -i -i -i -i -i -j -c -"} -(4,1,1) = {" -b -f -c -i -i -i -i -i -i -i -i -i -i -c -"} -(5,1,1) = {" -a -f -c -i -i -i -l -j -n -r -i -i -i -c -"} -(6,1,1) = {" -a -f -c -j -j -i -i -n -p -n -j -j -j -c -"} -(7,1,1) = {" -a -f -c -i -i -i -i -o -q -n -i -i -i -c -"} -(8,1,1) = {" -c -f -c -i -i -i -i -i -n -j -i -i -i -c -"} -(9,1,1) = {" -c -f -c -j -j -i -i -i -n -i -i -j -j -a -"} -(10,1,1) = {" -c -f -c -i -i -i -i -i -j -i -i -i -i -a -"} -(11,1,1) = {" -a -f -a -a -a -a -c -c -c -c -a -a -a -a -"} diff --git a/_maps/RandomRuins/StationRuins/medbay_psych_v1.dmm b/_maps/RandomRuins/StationRuins/medbay_psych_v1.dmm deleted file mode 100644 index ea40f0a15169..000000000000 --- a/_maps/RandomRuins/StationRuins/medbay_psych_v1.dmm +++ /dev/null @@ -1,6893 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"af" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/medbay/central) -"ag" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/machinery/sheetifier, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"an" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"aq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/medical_kiosk, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ax" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"aA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/item/toy/cards/deck/tarot, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"aJ" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/psychology"; - name = "Psychology APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"aQ" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"aR" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"aU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"bd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"bi" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"bk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "durkaCells"; - name = "Durka Cell" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bn" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"bv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"bK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"bM" = ( -/obj/effect/turf_decal/trimline/yellow/end{ - dir = 8 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"bQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"bT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"bX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"cl" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"cn" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/medicine, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/blood_filter, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"cp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"cv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"cy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_y = 32 - }, -/obj/item/radio/intercom{ - pixel_x = -25; - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 6; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"cG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"cL" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"cN" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"cQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"cU" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"cX" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30 - }, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"dd" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"dm" = ( -/obj/machinery/stasis, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = 4; - pixel_y = -26 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"dp" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"dt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/storage/box/pillpack/haloperidol, -/obj/item/storage/box/pillpack/haloperidol, -/obj/item/storage/box/pillpack/haloperidol, -/obj/item/storage/box/pillpack/haloperidol, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"du" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"dv" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external{ - req_access_txt = "5" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/medbay/central) -"dI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"dN" = ( -/obj/machinery/stasis, -/obj/machinery/button/door{ - id = "surgery"; - name = "Surgery Shutter Control"; - pixel_x = -4; - pixel_y = -26 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"dO" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/medical/pharmacy) -"dP" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"dU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"dY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/toy/plush/goatplushie, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ed" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ee" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"ef" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"ei" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"eo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ep" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eq" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"eu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stamp/cmo, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"eA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/structure/sign/warning/coldtemp{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"eJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"eP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/chem_dispenser, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"fe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"fm" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"fn" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"fw" = ( -/obj/structure/chair/sofa/corp{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/machinery/button/door{ - id = "durkaLockdown"; - name = "Durka Lockdown"; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"fx" = ( -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"fF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"fT" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"gb" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"ge" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 10 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"gl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"gm" = ( -/turf/open/floor/plating, -/area/medical/medbay/central) -"gG" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/suit_storage_unit/cmo, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"gM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 8 - }, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"gN" = ( -/turf/template_noop, -/area/template_noop) -"gP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/pharmacy) -"gQ" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Durka Cell"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"hm" = ( -/turf/closed/wall, -/area/medical/medbay/aft) -"hs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"hP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"ib" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ie" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ir" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"ix" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) -"iN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jb" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) -"jc" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"jr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"ju" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"jE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"jN" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"jV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kg" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"kk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"kp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kv" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"ky" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - name = "Durka Showers"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"kP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"lm" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ln" = ( -/obj/structure/rack, -/obj/item/gun/syringe/rapidsyringe{ - pixel_y = 8 - }, -/obj/item/gun/syringe/rapidsyringe{ - pixel_y = 4 - }, -/obj/item/gun/syringe/rapidsyringe, -/obj/item/melee/classic_baton/german, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"ly" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"lE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/item/toy/plush/snakeplushie, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"lX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"mZ" = ( -/obj/item/toy/plush/beeplushie{ - desc = "XOXOJI"; - name = "CTAC" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"nb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"nf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"nA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"nB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"nO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"om" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"op" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ow" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/secure_closet/chemical, -/obj/item/radio/headset/headset_med, -/obj/machinery/power/apc{ - areastring = "/area/medical/pharmacy"; - dir = 1; - name = "Pharmacy APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"oz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/bodycontainer/crematorium{ - dir = 1; - id = "crematoriumMed" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"oE" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/obj/item/reagent_containers/hypospray/medipen/survival/luxury, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"oF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"oH" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing, -/turf/open/openspace, -/area/medical/medbay/central) -"oQ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oV" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"pe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"pg" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall{ - light_color = "#FFFF00" - }, -/area/medical/pharmacy) -"pp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"pq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pw" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pB" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"pN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/screwdriver, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/structure/cable, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"pS" = ( -/obj/structure/sign/departments/chemistry/pharmacy{ - pixel_x = 32 - }, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"qe" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"qj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"qs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"qz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"qH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer"; - req_access = null; - req_access_txt = "40" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"qM" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/medical/medbay) -"qN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"qS" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"rb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"rf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/computer/med_data, -/obj/machinery/button/door{ - id = "durkaLockdown"; - name = "Durka Lockdown"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"rh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"rj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"rk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/medbay) -"rv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/chem_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"rE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"rH" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/fork/plastic, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"rN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"rQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"sc" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay) -"sf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/virology) -"sp" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"su" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery B"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"sy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/table/rolling, -/obj/item/storage/box/pillpack/haloperidol{ - pixel_y = 16 - }, -/obj/item/storage/box/pillpack/haloperidol{ - pixel_y = 8 - }, -/obj/item/storage/box/pillpack/haloperidol, -/obj/item/storage/box/pillpack/haloperidol{ - pixel_y = 14 - }, -/obj/item/storage/box/pillpack/haloperidol{ - pixel_y = 6 - }, -/obj/item/storage/box/pillpack/haloperidol{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"sB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/item/checkers_kit, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter" - }, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/window/eastright{ - dir = 2; - name = "Pharmacy Desk"; - req_access_txt = "69" - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"sY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"sZ" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/psychologist, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"tf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"tk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"tn" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"tI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/mob_spawn/human/dukra, -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"tJ" = ( -/obj/machinery/smartfridge/chemistry, -/turf/closed/wall/r_wall, -/area/medical/medbay) -"tM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"ub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"ui" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"uj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"uk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"ul" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ur" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ut" = ( -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"uw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"uz" = ( -/turf/closed/wall, -/area/medical/psychology) -"uE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"uP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/chief_medical_officer, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/cmo) -"uR" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"uS" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"uV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"uX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"uZ" = ( -/obj/machinery/door/airlock/medical{ - name = "Surgery A"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ve" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"vl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/medical/medbay/central) -"vC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"vE" = ( -/obj/effect/turf_decal/siding/blue, -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"vF" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/pharmacy) -"vI" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"vM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"vQ" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"wi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy"; - req_access_txt = "69" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"wy" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"wC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"wL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"wP" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/rxglasses, -/obj/item/hand_labeler, -/obj/item/gun/syringe, -/obj/item/gun/syringe, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"wT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters{ - id = "durkaLockdown"; - name = "Durka Lockdown" - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"wU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"xj" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"xk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"xn" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"xo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"xq" = ( -/obj/structure/bed, -/obj/structure/curtain, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"xK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"ym" = ( -/obj/effect/turf_decal/trimline/blue/filled/end, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"yr" = ( -/obj/effect/spawner/lootdrop/armory_contraband, -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"yu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"yz" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"yD" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/closet/secure_closet/security/med, -/obj/item/radio/headset/headset_med, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"yF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"yN" = ( -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"yU" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"zb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"zm" = ( -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "durkaCells"; - name = "Durka Cell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"zI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"zL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"zS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/pipe_dispenser, -/obj/item/wrench/medical, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"zW" = ( -/turf/closed/wall/r_wall{ - light_color = "#FFFF00" - }, -/area/medical/medbay/central) -"Aa" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/reagentgrinder, -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Ao" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Aw" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"AO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"AX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Bd" = ( -/turf/closed/wall/r_wall{ - light_color = "#FFFF00" - }, -/area/medical/virology) -"Bk" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Bx" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "durkaLockdown"; - name = "Durka Lockdown" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"BB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"BM" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"BQ" = ( -/obj/structure/bed, -/obj/effect/mob_spawn/human/dukra, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/item/bedsheet/blue, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"BV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"BY" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"Cc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) -"Cd" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Ce" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "durkaLockdown"; - name = "Durka Lockdown" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"Ch" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ci" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Cn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Durka Psych"; - req_access_txt = "5" - }, -/obj/structure/sign/departments/psychology{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"Cq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"CB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"CC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"CD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"CI" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"CS" = ( -/obj/machinery/medical_kiosk, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"Dl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Dm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"Do" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Dr" = ( -/obj/structure/sign/warning/securearea, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/medbay/zone2) -"DA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/storage/pill_bottle/mannitol{ - pixel_y = 10 - }, -/obj/item/wrench/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"DH" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/closed/wall/r_wall, -/area/medical/medbay/aft) -"DR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"DT" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/medical/medbay/central) -"Ek" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Em" = ( -/mob/living/simple_animal/chicken{ - name = "Epicus" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 6 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"Eo" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Ev" = ( -/obj/structure/closet/secure_closet/psychology, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"Ez" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"EG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"EL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"EM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"EO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Pharmacy"; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"EQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"ER" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"ES" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ET" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"EW" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"EZ" = ( -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Fo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ft" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Fw" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter Control"; - pixel_x = 6; - pixel_y = 24; - req_one_access_txt = "69" - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Fz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "durkaLockdown"; - name = "Durka Lockdown" - }, -/turf/open/floor/plating, -/area/medical/medbay/zone2) -"FD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"FL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"FR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Ga" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/aft) -"Gl" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Gn" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Gv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Gx" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "right"; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"Gy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Gz" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumMed"; - pixel_y = -32; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"GF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"Hg" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Hj" = ( -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ho" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"Hp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/aft) -"Ht" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Hv" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = -32 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"HE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"HK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ib" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/limbgrower, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Il" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"It" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/zone2) -"IJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"IM" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"IR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"IU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"IX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ja" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Jb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Jd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Js" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/bot/left, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Jy" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"JK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"JT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Kb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/cmo"; - dir = 1; - name = "CMO Office APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"Kj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ko" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/medical/medbay/central) -"Kr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter Control"; - pixel_x = 6; - pixel_y = 24; - req_one_access_txt = "69" - }, -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Kt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Kw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Kx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"KG" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"KI" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"KJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"KK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"KL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"KM" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Lf" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "durkaLockdown"; - name = "Durka Lockdown" - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "5" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/medical/medbay/central) -"Ll" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"LF" = ( -/obj/machinery/defibrillator_mount{ - pixel_y = 28 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"LG" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) -"LI" = ( -/obj/effect/turf_decal/stripes/full, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical{ - name = "Durka Arsenal"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"LK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"LN" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = -30 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"LP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"LW" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "durkaCells"; - name = "Durka Cells"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Mb" = ( -/obj/structure/table/glass, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Mh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Ml" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Mq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"Mr" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Mt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"My" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical{ - name = "Durka Procedures"; - req_access_txt = "5" - }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"Mz" = ( -/obj/structure/table/glass, -/obj/machinery/microwave, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"MC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"MQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Nf" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Ng" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Nh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/virology) -"Ni" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"Nu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Nz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"NG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"NN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) -"NO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/toy/plush/slimeplushie, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"NP" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"NT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"NW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Durka HQ"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Oe" = ( -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"Oq" = ( -/obj/effect/landmark/start/depsec/medical, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"Ov" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Ow" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"OC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"OG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"OI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"OK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"OY" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"OZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Pc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Pm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/item/restraints/handcuffs/cable/pink, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Pp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Pq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall{ - light_color = "#FFFF00" - }, -/area/medical/medbay/central) -"Pv" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Px" = ( -/turf/closed/wall/r_wall, -/area/medical/psychology) -"PL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"PT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"PV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Qm" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Qs" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Qt" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Qy" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"QC" = ( -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"QF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"QM" = ( -/obj/machinery/vending/games, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"QN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"QO" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/medical/medbay/central) -"QP" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"QU" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"QX" = ( -/obj/structure/table/glass, -/obj/item/storage/box/syringes, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"QZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Rn" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ro" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/syringes{ - pixel_y = -4 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"Rw" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"RA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"RB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"RL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"RN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clipboard, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"RR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"RT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Sg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/turf_decal/stripes/full, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical{ - name = "Gasen Stock"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Si" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Sj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"Sk" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/effect/turf_decal/bot/left, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Sl" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/medical/medbay/aft) -"Sr" = ( -/obj/structure/table/reinforced, -/obj/item/instrument/harmonica, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"Sw" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/medical/medbay/central) -"Sz" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Gasen"; - req_access_txt = "5" - }, -/obj/structure/fans/tiny, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/full, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"SH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"SI" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"SM" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 16 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 14 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 12 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 10 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 6 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 4 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/contraband/morphine, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -4 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -6 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -8 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -10 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -12 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -14 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -16 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"SR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Tc" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/item/storage/firstaid/emergency, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Tf" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Tj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Ty" = ( -/obj/machinery/shower{ - pixel_y = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"TA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"TB" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/full, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"TI" = ( -/obj/structure/bed, -/obj/effect/mob_spawn/human/dukra, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/bedsheet/blue, -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"TK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = -7 - }, -/obj/item/toy/cards/deck/cas, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"TO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/item/storage/secure/safe{ - pixel_x = 5; - pixel_y = 29 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"TP" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"TQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"TR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"TS" = ( -/turf/open/openspace, -/area/medical/medbay/central) -"Ue" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Ul" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Us" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Durka"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Uz" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -27; - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"UF" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/medbay/central) -"UP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/medbay/central) -"US" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/carpet/blue, -/area/medical/psychology) -"UZ" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay) -"Vh" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"Vk" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Vr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Vs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Vt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/openspace, -/area/medical/medbay/central) -"Vu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Vw" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/machinery/firealarm{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"VD" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"VJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"VM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"VN" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"VY" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"Wi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Wm" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"Wr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Wu" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Wv" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Wx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"WH" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"WJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"WK" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"WQ" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 16 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 14 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 12 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 10 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 6 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 4 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/contraband/morphine, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -4 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -6 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -8 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -10 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -12 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -14 - }, -/obj/item/reagent_containers/syringe/contraband/morphine{ - pixel_y = -16 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) -"WV" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"WW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - name = "Durka Staff"; - req_access_txt = "5" - }, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"WY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Xb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay/aft) -"Xd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Xh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/structure/bookcase/random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Xr" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/medical/medbay/central) -"Xt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) -"Xu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay) -"Xz" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/vending/chetverochka/pharma, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"XA" = ( -/obj/machinery/door/window/eastleft{ - name = "Medbay Delivery"; - req_access_txt = "5" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"XL" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"XM" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"XP" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"XR" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/medical/medbay/aft) -"XS" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"XX" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ya" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Yn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Yr" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"Yt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"Yv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"YD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"YI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"YJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "surgery"; - name = "Surgery Shutter" - }, -/turf/open/floor/plating, -/area/medical/medbay) -"YR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"YX" = ( -/turf/closed/wall, -/area/medical/medbay) -"YZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay) -"Zb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) -"Zg" = ( -/turf/open/floor/mineral/titanium, -/area/medical/medbay/central) -"Zh" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/turf/open/floor/wood, -/area/medical/medbay/central) -"Zi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/light, -/obj/structure/table/glass, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Zk" = ( -/obj/machinery/defibrillator_mount{ - pixel_y = 28 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Zn" = ( -/turf/closed/wall/r_wall{ - light_color = "#FFFF00" - }, -/area/medical/pharmacy) -"Zt" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/zone2) -"Zu" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/openspace, -/area/medical/medbay/central) -"ZJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2) -"ZM" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"ZX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) - -(1,1,1) = {" -ZM -ZM -ZM -af -af -af -af -af -af -ZM -ZM -ZM -ZM -ZM -ZM -ZM -ZM -ZM -kv -dv -ZM -ZM -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(2,1,1) = {" -ZM -TS -Vt -CD -vM -vM -vM -vM -CD -CD -CD -CD -CD -DR -VJ -Ko -Ko -Ko -Ko -oJ -TS -TS -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(3,1,1) = {" -ZM -Zu -cv -TS -TS -TS -TS -TS -TS -TS -TS -TS -TS -zW -zW -Pq -Lf -zW -zW -zW -TS -TS -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(4,1,1) = {" -ZM -TS -wU -Zn -Zn -Zn -Zn -gP -Bd -Mq -Mq -Mq -Mq -ZM -Sk -Js -Ci -wC -KK -zW -Ce -Ce -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(5,1,1) = {" -ZM -kv -Xr -zW -MC -ut -uX -pN -Bd -Pv -aQ -Ao -Nf -ZM -Ul -eP -Vr -ge -Gl -ky -jE -tn -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(6,1,1) = {" -ZM -QO -UP -zW -fb -dO -rv -mk -Bd -cy -Nh -sf -Hv -ZM -Sw -Sw -Sw -Sw -Sw -ZM -gf -Yt -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(7,1,1) = {" -ZM -vl -UP -zW -jN -dO -QX -ur -Bd -TO -Wx -Aa -EZ -ZM -Sw -lT -bX -TI -Sw -ZM -JK -ep -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(8,1,1) = {" -ZM -gm -UP -zW -Fw -dO -Mb -mk -Bd -Bd -Sj -Bd -Bd -ZM -Sw -vC -Zg -tI -Sw -ZM -Gn -Yt -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(9,1,1) = {" -ZM -UF -UP -zW -ow -vF -vF -mk -wi -ed -WY -BV -Ib -ZM -Sw -HE -Zg -tI -Sw -ZM -EW -pp -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(10,1,1) = {" -ZM -ZM -Wm -pS -QN -dO -bM -rb -pg -Hg -OG -QP -Nu -ZM -Sw -IR -Zg -tI -Sw -ZM -PL -Jd -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(11,1,1) = {" -hP -cG -oQ -Zn -EO -dO -Tj -fm -Zn -IX -EL -CC -Do -ZM -Sw -NO -Ni -BQ -Sw -ZM -rE -ix -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(12,1,1) = {" -bv -Ov -uE -sK -ve -dO -VY -rb -Zn -vI -Ch -Mt -Qt -ZM -Sw -DT -gQ -DT -Sw -ZM -Qm -FR -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(13,1,1) = {" -hP -NT -ul -Zn -Kr -Gy -VN -gM -Zn -Xu -lX -Xu -Xu -ZM -Xh -KM -KM -KM -PV -ZM -Wu -qz -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(14,1,1) = {" -uS -uS -QC -uS -uS -tJ -YJ -uS -uS -fx -iT -BV -xq -ZM -cJ -LG -LG -LG -Jd -ZM -Qm -Jd -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(15,1,1) = {" -YX -eA -XA -Oe -YX -Uz -LK -dd -uS -tk -ju -QP -AX -ZM -Mr -iM -Zh -gk -nr -bk -XP -Jd -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(16,1,1) = {" -YX -Ty -uM -uV -YX -Zk -Fo -dm -uS -XL -sY -QP -AX -ZM -Ng -LG -gb -vE -qz -ZM -Mh -pe -ZM -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(17,1,1) = {" -YX -lm -WJ -op -YX -YJ -uZ -YJ -uS -XL -sY -QP -oH -ZM -TP -LG -rH -vE -Jd -ZM -Qm -Jd -ZM -DH -Ga -Ga -Ga -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -gN -"} -(18,1,1) = {" -Xu -DA -KI -dP -Kj -sp -sp -ym -uw -tf -cK -CS -Zi -ZM -KG -LG -zI -vE -rk -ZM -Qm -Jd -ZM -LN -fw -pB -Ga -Ga -Ga -Ga -Ga -Ga -gN -gN -gN -gN -gN -gN -gN -gN -"} -(19,1,1) = {" -YX -EM -OG -HK -YX -YJ -su -YJ -uS -jV -OG -Dm -om -ZM -SI -LG -Sr -vE -Jd -ZM -cI -qz -ZM -yD -oF -wy -Ga -SM -WQ -Ro -dp -Ga -gN -gN -gN -gN -gN -gN -gN -gN -"} -(20,1,1) = {" -sc -Cq -OG -Pc -YX -LF -SR -dN -uS -XL -sY -FD -AX -ZM -Xz -LG -cN -Em -VD -ZM -LW -Jd -ZM -IM -vQ -tM -LI -Cd -cQ -Ll -Ow -Ga -gN -gN -gN -gN -gN -gN -gN -gN -"} -(21,1,1) = {" -ax -rQ -jH -xn -YX -uR -QZ -Jy -uS -kp -xK -YI -AX -ZM -LP -LG -LG -NN -iN -zm -Pp -Wi -ZM -Mz -Oq -aR -Ga -ln -ln -ln -ln -Ga -Ga -Ga -Ga -Ga -Ga -gN -gN -gN -"} -(22,1,1) = {" -YX -aq -lM -hg -YX -YX -YX -YX -uS -rj -Ch -Mt -QF -ZM -QM -jb -LG -Cc -AO -ZM -IJ -sI -ZM -XR -cp -yU -Ga -Ga -Ga -Ga -Ga -Ga -TB -TB -TB -TB -Ga -Ga -gN -gN -"} -(23,1,1) = {" -YX -Xu -bn -xo -YX -cn -cX -oE -uS -uS -Nz -Hj -uS -ZM -ZM -yr -sB -TK -aA -ZM -Xd -lE -ZM -hm -WW -hm -hm -BM -cL -Ga -ER -zS -Vs -kN -NG -Kw -Pm -Ga -gN -gN -"} -(24,1,1) = {" -Xu -ET -ui -QU -bK -WK -ES -BB -an -eo -iT -BV -Rn -RR -ZM -ZM -ZM -ZM -ZM -ZM -Ht -SH -ZM -bQ -hs -GF -Rw -RB -PT -Ga -oV -Vu -qs -ef -qs -qs -oz -Sl -gN -gN -"} -(25,1,1) = {" -YX -UZ -rQ -ie -bT -Mt -Qy -TR -an -XL -sY -QP -QP -wE -Fz -rh -Aw -jr -KJ -CI -RT -kk -It -RL -fF -eJ -zb -dU -BY -My -aU -ZX -Wr -RA -MQ -Gz -Ga -Ga -Ga -Ga -"} -(26,1,1) = {" -YX -bi -yu -FL -YX -cB -wP -ee -uS -XL -sY -QP -QP -wE -Fz -Yv -XM -XM -XM -Wv -YD -Ja -NW -Xb -EG -aD -Zb -TA -xj -Ga -ag -jc -kP -yz -jc -eq -Ga -NP -ir -Ga -"} -(27,1,1) = {" -YX -YX -YJ -ib -YX -YX -YX -YX -uS -XL -sY -OI -QP -wE -Bx -Yv -nA -Wv -Wv -Wv -Ek -Jb -It -WV -nv -ly -uk -sy -CB -Ga -Vw -TQ -JT -JT -JT -Gv -Sg -OC -Xt -Ga -"} -(28,1,1) = {" -gN -YX -rf -nf -cl -cU -Gx -ei -uS -jV -rG -YZ -VM -YR -wT -nB -wL -Ml -Ml -Ml -Ue -yF -Px -uz -Cn -uz -Vh -Vh -qH -Vh -Vh -qN -Hp -Sz -Hp -qN -Ga -nb -nO -Ga -"} -(29,1,1) = {" -gN -YX -pw -Vk -fe -LK -Kx -fn -uS -XL -QP -QP -sY -wE -Fz -Yv -Tc -Zt -rN -Wv -Wv -uj -Px -Ev -Il -du -Vh -dt -xk -eu -Vh -Tf -Bk -Kt -Bk -Tf -Ga -Ga -Ga -Ga -"} -(30,1,1) = {" -gN -YX -qS -IU -gl -XS -Si -fT -qM -pq -Ya -Ya -XX -Ft -Fz -qj -ZJ -Yr -OY -qe -qe -Qs -Px -sZ -dI -aJ -Vh -Kb -uP -Ez -Vh -OZ -mZ -ub -Bk -WH -Ga -gN -gN -gN -"} -(31,1,1) = {" -gN -YX -YX -YX -YX -YX -rn -uS -uS -Dl -Yn -zL -OK -dY -It -It -It -It -It -It -EQ -RN -Px -yN -Ho -US -Vh -KL -bd -gG -Vh -kg -kg -Eo -kg -kg -Ga -gN -gN -gN -"} -(32,1,1) = {" -gN -gN -gN -gN -gN -gN -gN -uS -uS -It -It -It -Us -Dr -It -gN -gN -gN -gN -It -It -It -Px -Px -Px -Px -Vh -Vh -Vh -Vh -Vh -Ga -Ga -Ga -Ga -Ga -Ga -gN -gN -gN -"} diff --git a/_maps/RandomZLevels/Academy.dmm b/_maps/RandomZLevels/Academy.dmm deleted file mode 100644 index 8fca9c6f773b..000000000000 --- a/_maps/RandomZLevels/Academy.dmm +++ /dev/null @@ -1,19978 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/space/basic, -/area/space) -"ab" = ( -/turf/closed/wall/r_wall, -/area/awaymission/academy/headmaster) -"ac" = ( -/mob/living/simple_animal/hostile/carp/ranged{ - faction = list("wizard") - }, -/turf/open/space/basic, -/area/space/nearstation) -"ad" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ae" = ( -/obj/structure/frame/computer{ - anchored = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"af" = ( -/obj/structure/table/reinforced, -/obj/item/pen/red, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ag" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ah" = ( -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ai" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aj" = ( -/obj/machinery/power/apc/unlocked{ - dir = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ak" = ( -/obj/structure/table/reinforced, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"al" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"am" = ( -/obj/machinery/light/small, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aq" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ar" = ( -/obj/structure/table/reinforced, -/obj/item/paper/fluff/awaymissions/academy/console_maint, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"as" = ( -/turf/closed/wall, -/area/awaymission/academy/headmaster) -"at" = ( -/obj/machinery/door/airlock/wood{ - name = "Headmaster Room" - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aw" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ax" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ay" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/mirror/magic/lesser{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"az" = ( -/obj/item/stack/sheet/animalhide/monkey, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aB" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aC" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/tea, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aE" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aF" = ( -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aG" = ( -/turf/closed/indestructible/rock, -/area/space/nearstation) -"aH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aI" = ( -/obj/structure/table/reinforced, -/obj/item/laser_pointer/upgraded, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aJ" = ( -/obj/structure/destructible/cult/tome, -/obj/item/dice/d20/fate, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aK" = ( -/mob/living/simple_animal/hostile/morph{ - faction = list("skeleton") - }, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"aL" = ( -/turf/closed/wall/mineral/wood, -/area/awaymission/academy/academycellar) -"aM" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aN" = ( -/obj/structure/table/reinforced, -/obj/item/coin/plasma, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aO" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aP" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aQ" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/gold, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aR" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/gold, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aS" = ( -/turf/closed/mineral/random/high_chance, -/area/awaymission/academy) -"aT" = ( -/obj/structure/noticeboard, -/turf/closed/wall, -/area/awaymission/academy/headmaster) -"aU" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aV" = ( -/obj/structure/chair/office, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aX" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"aY" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"aZ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"ba" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bb" = ( -/obj/structure/table/wood, -/obj/item/staff, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bc" = ( -/obj/structure/table/wood, -/obj/item/hand_labeler, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bd" = ( -/obj/structure/table/wood, -/obj/item/pen/invisible, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"be" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bf" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bg" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bh" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bi" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/tea, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bj" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bk" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bl" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bm" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bn" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bo" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bp" = ( -/obj/machinery/door/airlock/gold, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"bq" = ( -/obj/machinery/door/airlock/gold, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"br" = ( -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"bs" = ( -/turf/closed/wall/r_wall, -/area/awaymission/academy/classrooms) -"bt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "AcademyAuto" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"bu" = ( -/obj/machinery/door/poddoor/shutters{ - id = "AcademyAuto" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bv" = ( -/obj/machinery/door/poddoor/shutters{ - id = "AcademyAuto" - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "AcademyAuto" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bx" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/awaymission/academy/headmaster) -"by" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/awaymission/academy/headmaster) -"bz" = ( -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"bA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bB" = ( -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"bD" = ( -/obj/machinery/button/door{ - id = "AcademyAuto"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"bE" = ( -/turf/closed/wall, -/area/awaymission/academy/classrooms) -"bF" = ( -/turf/closed/wall/mineral/titanium, -/area/awaymission/academy/classrooms) -"bI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"bJ" = ( -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/awaymission/academy/headmaster) -"bK" = ( -/turf/open/floor/plasteel/chapel, -/area/awaymission/academy/headmaster) -"bL" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"bM" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"bQ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"bR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/headmaster) -"bS" = ( -/obj/structure/academy_wizard_spawner, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"bT" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/academy/headmaster) -"bU" = ( -/obj/machinery/autolathe, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"bV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"bX" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/engine, -/area/awaymission/academy/classrooms) -"bY" = ( -/obj/structure/training_machine, -/turf/open/floor/engine, -/area/awaymission/academy/classrooms) -"bZ" = ( -/turf/open/floor/engine, -/area/awaymission/academy/classrooms) -"ca" = ( -/obj/structure/training_machine, -/obj/item/target/alien, -/turf/open/floor/engine, -/area/awaymission/academy/classrooms) -"cb" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"cc" = ( -/obj/structure/table, -/obj/item/lighter/greyscale, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"cd" = ( -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"ce" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"cg" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/academy/headmaster) -"ch" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/academy/headmaster) -"ci" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cj" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"ck" = ( -/obj/machinery/door/airlock/plasma, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"cl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"co" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plating, -/area/awaymission/academy/headmaster) -"cp" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/academy/headmaster) -"cr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ct" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"cu" = ( -/turf/open/floor/carpet/lone, -/area/awaymission/academy/headmaster) -"cv" = ( -/obj/machinery/door/window{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/headmaster) -"cw" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/headmaster) -"cx" = ( -/obj/machinery/door/window{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/headmaster) -"cy" = ( -/obj/structure/table, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/academy/headmaster) -"cz" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cB" = ( -/obj/item/target, -/turf/open/floor/engine, -/area/awaymission/academy/classrooms) -"cC" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cD" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"cF" = ( -/obj/machinery/door/airlock/plasma, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"cH" = ( -/obj/structure/sign/warning/nosmoking/circle, -/turf/closed/wall, -/area/awaymission/academy/headmaster) -"cI" = ( -/obj/structure/trap/damage, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"cJ" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"cK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cL" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"cN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"cO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"cP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"cT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"cU" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen/red, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"cV" = ( -/obj/structure/closet/crate, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"db" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"dc" = ( -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"dd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"de" = ( -/turf/open/floor/circuit/green, -/area/awaymission/academy/classrooms) -"df" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"dg" = ( -/obj/structure/table/wood, -/obj/item/gun/magic/wand/fireball, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"dh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"di" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dk" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dl" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dm" = ( -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"dn" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"dp" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/awaymission/academy/classrooms) -"dq" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/awaymission/academy/classrooms) -"dr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ds" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"dt" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"du" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dv" = ( -/obj/item/seeds/eggplant/eggy, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dw" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dx" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dy" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/headmaster) -"dz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/awaymission/academy/classrooms) -"dC" = ( -/turf/open/floor/grass, -/area/awaymission/academy/headmaster) -"dD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dE" = ( -/obj/structure/closet/crate/hydroponics, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dF" = ( -/obj/machinery/door/airlock/freezer, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"dG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"dH" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"dI" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/awaymission/academy/classrooms) -"dJ" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/replicapod, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dK" = ( -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"dL" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dM" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/tomato/blue/bluespace, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dS" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"dT" = ( -/obj/structure/mineral_door/iron, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dU" = ( -/obj/structure/mineral_door/iron, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dV" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"dW" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"dY" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"ea" = ( -/obj/machinery/igniter/on, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"eb" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ec" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ed" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ee" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ef" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eg" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper/fluff/awaymissions/academy/class/automotive, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"eh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"ei" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper/fluff/awaymissions/academy/class/pyromancy, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"ej" = ( -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"ek" = ( -/obj/machinery/power/apc/unlocked{ - dir = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"el" = ( -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"em" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"en" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eo" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ep" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eq" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"er" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"es" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"et" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eu" = ( -/obj/singularity/academy, -/turf/open/space/basic, -/area/space/nearstation) -"ev" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ew" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"ex" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ez" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/awaymission/academy) -"eA" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"eB" = ( -/obj/machinery/door/airlock/public/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"eC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"eE" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"eF" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"eG" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"eH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"eJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/awaymission/academy) -"eK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eM" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/awaymission/academy/classrooms) -"eN" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/awaymission/academy/classrooms) -"eO" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/awaymission/academy/classrooms) -"eP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"eQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"eR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"eS" = ( -/obj/machinery/processor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"eT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eV" = ( -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/awaymission/academy/classrooms) -"eW" = ( -/turf/open/floor/plasteel/chapel, -/area/awaymission/academy/classrooms) -"eX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/awaymission/academy/classrooms) -"eY" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"eZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"fa" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/food/burger/spell, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"fb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/awaymission/academy) -"fc" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fn" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"fo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"fr" = ( -/obj/structure/table, -/obj/item/trash/semki, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"fs" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"ft" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/classrooms) -"fu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fv" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fy" = ( -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/item/paper/fluff/awaymissions/academy/class/biology, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/classrooms) -"fC" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"fD" = ( -/turf/closed/wall, -/area/awaymission/academy/academyaft) -"fF" = ( -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"fH" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/academy/classrooms) -"fK" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/academy/classrooms) -"fL" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"fM" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"fN" = ( -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/academyaft) -"fO" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/academyaft) -"fP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"fR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fS" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fT" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fU" = ( -/obj/item/target, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fV" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fW" = ( -/obj/structure/training_machine, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"fX" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"fY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ga" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gb" = ( -/obj/structure/table, -/obj/item/pen/red, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gc" = ( -/obj/structure/table, -/obj/item/lazarus_injector, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/academy/classrooms) -"gd" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"ge" = ( -/obj/item/candle/infinite, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"gf" = ( -/obj/structure/holohoop, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"gh" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/academyaft) -"gk" = ( -/obj/machinery/recharger, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gl" = ( -/obj/structure/table/reinforced, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gm" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gn" = ( -/obj/machinery/door/window{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"go" = ( -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gp" = ( -/obj/machinery/door/window{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gq" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gr" = ( -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/academy/classrooms) -"gu" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/academy/classrooms) -"gx" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"gy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/awaymission/academy/academyaft) -"gz" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gA" = ( -/obj/machinery/door/window{ - dir = 4 - }, -/obj/item/ammo_casing, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gB" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gD" = ( -/obj/structure/table, -/obj/item/scalpel, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gH" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/academy/grade/aplus, -/obj/item/gun/ballistic/shotgun/automatic/combat, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gI" = ( -/obj/structure/table, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/paper/fluff/awaymissions/academy/grade/bminus, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gK" = ( -/obj/structure/window/reinforced, -/obj/item/ammo_casing, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gL" = ( -/mob/living/simple_animal/hostile/bear, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gM" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"gN" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"gO" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"gQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/mob/living/simple_animal/hostile/bear, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"gR" = ( -/obj/structure/mineral_door/iron, -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"gT" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/gold, -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"gW" = ( -/obj/structure/table, -/obj/item/gun/energy/floragun, -/obj/item/paper/fluff/awaymissions/academy/grade/dminus, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"gX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass, -/obj/item/target, -/obj/item/target, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"ha" = ( -/turf/open/floor/plasteel/white/side, -/area/awaymission/academy/classrooms) -"hb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white/side, -/area/awaymission/academy/classrooms) -"hc" = ( -/turf/closed/wall/r_wall, -/area/awaymission/academy/academyaft) -"hd" = ( -/obj/structure/mineral_door/wood, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"he" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"hf" = ( -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hl" = ( -/obj/machinery/power/apc/unlocked{ - dir = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hm" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hn" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ho" = ( -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hp" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hq" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hr" = ( -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hz" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hB" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hE" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hF" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hH" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hK" = ( -/obj/structure/cable, -/obj/item/clothing/suit/caution, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hL" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"hN" = ( -/obj/structure/frame/machine, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hR" = ( -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"hS" = ( -/obj/structure/closet, -/obj/item/candle, -/obj/item/candle, -/obj/item/storage/box/matches, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hT" = ( -/obj/structure/closet, -/obj/item/storage/belt/soulstone, -/obj/item/clothing/under/costume/schoolgirl, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hU" = ( -/obj/structure/closet, -/obj/item/clothing/under/dress/skirt, -/obj/item/clothing/glasses/regular, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hV" = ( -/obj/structure/closet, -/obj/item/clothing/under/color/lightpurple, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hW" = ( -/obj/structure/closet, -/obj/item/lipstick/random, -/obj/item/clothing/under/costume/schoolgirl, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hX" = ( -/turf/open/floor/wood, -/area/awaymission/academy/academyaft) -"hY" = ( -/obj/structure/closet, -/obj/item/clothing/under/color/lightpurple, -/obj/item/staff, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"hZ" = ( -/obj/structure/closet, -/obj/item/storage/wallet/random, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ia" = ( -/obj/structure/closet, -/obj/item/clothing/head/wizard/fake, -/obj/item/clothing/suit/wizrobe/fake, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ib" = ( -/obj/structure/closet, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/clothing/under/color/lightpurple, -/obj/item/poster/random_contraband, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ic" = ( -/obj/structure/closet, -/obj/item/storage/box/snappops, -/obj/item/storage/backpack, -/obj/item/paper/fluff/awaymissions/academy/grade/failure, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"id" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ie" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ih" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/plasma{ - amount = 50 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ii" = ( -/turf/open/floor/grass, -/area/awaymission/academy/academyaft) -"ij" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/item/circuitboard/machine/telecomms/receiver, -/obj/item/circuitboard/machine/telecomms/relay, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"il" = ( -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"im" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"in" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"io" = ( -/obj/structure/rack, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ip" = ( -/obj/machinery/power/smes/magical, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"iq" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"ir" = ( -/obj/structure/mineral_door/iron, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"is" = ( -/obj/structure/rack, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/ansible, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"it" = ( -/obj/item/stock_parts/manipulator, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iu" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"ix" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyaft) -"iy" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyaft) -"iz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iA" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iB" = ( -/obj/structure/rack, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iC" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"iD" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/stack/sheet/iron, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iF" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iG" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iH" = ( -/obj/item/paper, -/turf/open/floor/wood, -/area/awaymission/academy/academyaft) -"iI" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iJ" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"iK" = ( -/obj/item/multitool, -/turf/open/floor/engine, -/area/awaymission/academy/academyaft) -"iL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/awaymission/academy/academyaft) -"iM" = ( -/turf/open/floor/engine, -/area/awaymission/academy/academyaft) -"iN" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"iO" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/academy/academyaft) -"iP" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/engine, -/area/awaymission/academy/academyaft) -"iQ" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"iR" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/toy/beach_ball/holoball, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"iT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"iW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/airless/white{ - dir = 4 - }, -/area/awaymission/academy/academyaft) -"iX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/obj/item/soulstone, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/academy/academyaft) -"iY" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/space/basic, -/area/awaymission/academy/academyaft) -"iZ" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/space/basic, -/area/awaymission/academy/academyaft) -"ja" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/space/basic, -/area/awaymission/academy/academyaft) -"jc" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jf" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/airless/white{ - dir = 4 - }, -/area/awaymission/academy/academyaft) -"jg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/academy/academyaft) -"ji" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson/truesight, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jk" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jl" = ( -/obj/structure/noticeboard, -/turf/closed/wall, -/area/awaymission/academy/academyaft) -"jm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jn" = ( -/turf/open/floor/plasteel/airless/white{ - dir = 4 - }, -/area/awaymission/academy/academyaft) -"jo" = ( -/obj/structure/table, -/obj/item/organ/brain{ - name = "The preserved brain of Harry Houdini" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/academy/academyaft) -"jp" = ( -/obj/item/weldingtool, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/awaymission/academy/classrooms) -"jq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jt" = ( -/obj/structure/grille, -/obj/item/shard, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/awaymission/academy/academyaft) -"ju" = ( -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jv" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jw" = ( -/obj/structure/destructible/cult/pylon, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jy" = ( -/obj/structure/destructible/cult/pylon, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jz" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/airless/white{ - dir = 4 - }, -/area/awaymission/academy/academyaft) -"jA" = ( -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/item/batterer, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/academy/academyaft) -"jB" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/space/basic, -/area/space/nearstation) -"jC" = ( -/obj/machinery/igniter/on, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"jD" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jK" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jM" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jN" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"jP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"jQ" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jR" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"jS" = ( -/turf/closed/wall/r_wall, -/area/awaymission/academy/academygate) -"jT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/grass, -/area/awaymission/academy/academygate) -"jU" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"jV" = ( -/turf/open/floor/grass, -/area/awaymission/academy/academygate) -"jW" = ( -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"jX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"jY" = ( -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/awaymission/academy/academygate) -"jZ" = ( -/obj/machinery/door/window, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"ka" = ( -/obj/machinery/door/window, -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"ke" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"kf" = ( -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"kh" = ( -/obj/machinery/power/apc/unlocked{ - dir = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"ki" = ( -/obj/item/stack/cable_coil, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"kq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"kv" = ( -/obj/machinery/light, -/turf/open/floor/carpet, -/area/awaymission/academy/academygate) -"kx" = ( -/turf/open/floor/carpet/lone, -/area/awaymission/academy/academygate) -"ky" = ( -/obj/machinery/door/poddoor/shutters{ - id = "AcademyGate" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"kz" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/carpet, -/area/awaymission/academy/classrooms) -"kA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel/white/corner, -/area/awaymission/academy/classrooms) -"kB" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/classrooms) -"kC" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"kD" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"kG" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/academy/academyaft) -"kI" = ( -/obj/machinery/gateway/away, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"kJ" = ( -/obj/structure/mecha_wreckage/honker, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"kK" = ( -/obj/structure/table, -/obj/item/book/manual/ripley_build_and_repair, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"kL" = ( -/obj/item/bikehorn, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"kM" = ( -/obj/structure/trap/chill, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"kN" = ( -/obj/structure/trap/fire, -/turf/open/floor/engine, -/area/awaymission/academy/academyaft) -"kO" = ( -/mob/living/simple_animal/hostile/clown, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kP" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kQ" = ( -/mob/living/simple_animal/hostile/syndicate, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kR" = ( -/obj/effect/rune/malformed, -/mob/living/simple_animal/hostile/skeleton, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kS" = ( -/obj/structure/table/wood, -/obj/item/candle/infinite, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kT" = ( -/obj/structure/table/wood, -/obj/item/kitchen/knife/ritual, -/obj/item/candle/infinite, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kU" = ( -/obj/effect/decal/remains/human, -/obj/effect/rune/malformed, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kW" = ( -/obj/structure/ladder/unbreakable/rune{ - id = "academy_cellar" - }, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kX" = ( -/obj/structure/bookcase/random, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kY" = ( -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"kZ" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"la" = ( -/obj/structure/trap/damage, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lb" = ( -/mob/living/simple_animal/hostile/retaliate/bat, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lc" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/mineral/uranium, -/area/awaymission/academy/academycellar) -"ld" = ( -/turf/open/floor/mineral/uranium, -/area/awaymission/academy/academycellar) -"le" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lf" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lg" = ( -/obj/structure/table/wood, -/obj/item/guardiancreator/choose, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lh" = ( -/obj/structure/falsewall/wood, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"li" = ( -/mob/living/simple_animal/hostile/retaliate/bat, -/turf/open/floor/mineral/uranium, -/area/awaymission/academy/academycellar) -"lj" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/engine/cult, -/area/awaymission/academy/academycellar) -"lk" = ( -/obj/structure/safe/floor, -/obj/item/voodoo, -/obj/item/gun/magic/wand/fireball, -/obj/item/clothing/suit/space/hardsuit/wizard, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"ll" = ( -/turf/closed/indestructible/riveted, -/area/awaymission/academy/academyengine) -"lm" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"ln" = ( -/obj/structure/cable, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"lp" = ( -/obj/machinery/power/apc{ - dir = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"lq" = ( -/turf/closed/wall/rust, -/area/awaymission/academy/academyengine) -"ls" = ( -/obj/machinery/power/smes/magical, -/obj/structure/cable, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"lt" = ( -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"lu" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lv" = ( -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lw" = ( -/obj/item/ectoplasm, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lx" = ( -/obj/effect/rune/malformed, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"ly" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/table, -/obj/item/staff, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lA" = ( -/obj/structure/table, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lB" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lC" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lD" = ( -/obj/structure/table, -/obj/item/weldingtool, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lE" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lF" = ( -/turf/closed/indestructible/fakeglass, -/area/awaymission/academy/academyengine) -"lI" = ( -/obj/structure/ladder/unbreakable/rune{ - id = "academy_engine" - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lJ" = ( -/obj/structure/mineral_door/iron, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lK" = ( -/obj/effect/immovablerod{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lL" = ( -/mob/living/simple_animal/hostile/imp/slaughter/engine_demon, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lM" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lN" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lQ" = ( -/obj/structure/table, -/obj/item/gun/magic/wand/polymorph, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lR" = ( -/obj/structure/table, -/obj/item/stack/sheet/animalhide/monkey, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lS" = ( -/obj/structure/table, -/obj/item/stack/sheet/runed_metal, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lT" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/sheet/xenochitin, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lU" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lV" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"lW" = ( -/obj/structure/ladder/unbreakable/rune{ - height = 1; - id = "academy_storage" - }, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"lX" = ( -/obj/structure/ladder/unbreakable/rune{ - height = 1; - id = "academy_coldroom" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/academy/classrooms) -"lY" = ( -/obj/structure/table/wood, -/obj/item/seeds/kudzu, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"lZ" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"ma" = ( -/obj/structure/ladder/unbreakable/rune{ - height = 1; - id = "academy_cellar" - }, -/turf/open/floor/wood, -/area/awaymission/academy/classrooms) -"mb" = ( -/obj/structure/ladder/unbreakable/rune{ - height = 1; - id = "academy_engine" - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"mc" = ( -/turf/closed/wall, -/area/awaymission/academy/academyengine) -"md" = ( -/turf/closed/wall/r_wall, -/area/awaymission/academy/academyengine) -"me" = ( -/obj/structure/constructshell, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"mf" = ( -/obj/structure/constructshell, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"mg" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"mh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"mi" = ( -/obj/machinery/door/airlock/vault, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"mj" = ( -/obj/structure/rack, -/obj/item/book/granter/spell/summonitem, -/obj/item/pen/fourcolor, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"mk" = ( -/obj/structure/rack, -/obj/item/claymore, -/obj/item/toy/figure/wizard, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"ml" = ( -/mob/living/simple_animal/hostile/netherworld, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"mm" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"mn" = ( -/obj/structure/rack, -/obj/item/gun/magic/wand/nothing, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"mo" = ( -/obj/structure/rack, -/obj/item/staff, -/turf/open/floor/plating, -/area/awaymission/academy/academyengine) -"mp" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mq" = ( -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mr" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"ms" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/light, -/area/awaymission/academy/academyengine) -"mt" = ( -/turf/open/floor/light, -/area/awaymission/academy/academyengine) -"mu" = ( -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mv" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mw" = ( -/obj/item/target, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mx" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/light, -/area/awaymission/academy/academyengine) -"my" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mz" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mA" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mB" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mC" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mD" = ( -/turf/closed/mineral/random, -/area/awaymission/academy/academycellar) -"mE" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"mF" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"mG" = ( -/mob/living/simple_animal/hostile/skeleton, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"mH" = ( -/obj/effect/decal/remains/robot, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"mI" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mJ" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/gin, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mK" = ( -/obj/machinery/vending/magivend, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mL" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mM" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/academy/academyengine) -"mN" = ( -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mO" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mP" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/awaymission/academy/academygate) -"mQ" = ( -/obj/structure/ladder/unbreakable/rune{ - id = "academy_storage" - }, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mR" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyengine) -"mS" = ( -/obj/structure/ladder/unbreakable/rune{ - id = "academy_coldroom" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mT" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mU" = ( -/obj/item/food/meat/slab, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mV" = ( -/obj/item/clothing/gloves/combat, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mX" = ( -/obj/item/clothing/under/syndicate, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"mY" = ( -/turf/closed/mineral/random, -/area/space/nearstation) -"nb" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "AcademyGate"; - name = "Skeleton Storage Control"; - pixel_y = -24 - }, -/turf/open/floor/wood, -/area/awaymission/academy/headmaster) -"nc" = ( -/turf/closed/indestructible/fakeglass, -/area/awaymission/academy/headmaster) -"nj" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"nk" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"nl" = ( -/obj/item/clothing/mask/gas/syndicate, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"nm" = ( -/mob/living/simple_animal/hostile/bear, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/academy/academycellar) -"nn" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"no" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/academy/headmaster) -"np" = ( -/obj/item/stack/cable_coil, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/academyaft) -"sw" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/vault, -/area/awaymission/academy/academyengine) -"AA" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/academy/academyaft) -"CD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/classrooms) -"Dy" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/awaymission/academy/headmaster) -"DX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/side, -/area/awaymission/academy/classrooms) -"In" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/awaymission/academy/classrooms) -"LW" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) -"Tk" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/academy/academyaft) - -(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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(3,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,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 -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 -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 -aa -aa -aa -aa -aa -aa -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,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 -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 -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 -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,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 -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 -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 -aa -aa -aa -aa -aa -aG -aG -mD -mD -mD -mD -mD -mD -mD -aG -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,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 -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 -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 -aa -aa -aa -aa -aa -aG -mD -mD -mN -mN -nj -nj -nj -mD -mD -aG -aa -aa -aa -aa -aa -aa -aa -"} -(11,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 -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 -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 -aa -aa -aa -aa -aa -aG -mD -mN -mN -mN -mN -mN -mU -mN -mD -aG -aa -aa -aa -aa -aa -aa -aa -"} -(12,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 -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 -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 -aa -aa -aa -aa -aa -aG -mD -mN -mS -mN -mT -mN -mN -mN -mD -mD -aG -aa -aa -aa -aa -aa -aa -"} -(13,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 -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 -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 -aa -aa -aa -aa -aa -aG -mD -mN -mN -mN -mU -mN -mN -mN -mN -mD -aG -aa -aa -aa -aa -aa -aa -"} -(14,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 -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 -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 -aa -aa -aa -aa -aG -aG -mD -mN -mN -mU -mN -mU -mT -mN -mN -mD -aG -aa -aa -aa -aa -aa -aa -"} -(15,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 -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 -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 -aa -aa -aa -aa -aG -mD -mD -mN -mN -mN -mU -mN -mN -mN -mN -mD -mD -aG -aa -aa -aa -aa -aa -"} -(16,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 -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 -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 -aa -aa -aa -aa -aG -mD -mN -mN -mT -mN -mN -mN -mN -mU -mN -mN -mD -aG -aa -aa -aa -aa -aa -"} -(17,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 -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 -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 -aa -aa -aa -aa -aG -mD -mN -mN -mN -mN -mN -mN -mN -mN -mN -mN -mD -aG -aa -aa -aa -aa -aa -"} -(18,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 -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 -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 -aa -aa -aa -aa -aG -mD -mO -mO -mO -mN -mN -mD -mD -mN -mN -mN -mD -aG -aa -aa -aa -aa -aa -"} -(19,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 -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 -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 -aa -aa -aa -aa -aG -mD -mO -mO -mO -mD -mD -mD -mD -mN -mN -mN -mD -aG -aa -aa -aa -aa -aa -"} -(20,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 -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 -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 -aa -aa -aa -aa -aG -mD -mD -mD -mD -mD -mD -mD -mD -mN -mN -mD -mD -aG -aa -aa -aa -aa -aa -"} -(21,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 -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 -aa -ac -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 -aa -aa -aG -aG -aG -mD -mD -mD -mN -mN -mN -mN -mN -mD -mY -aa -aa -aa -aa -aa -aa -"} -(22,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 -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 -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 -aa -aa -aa -aa -aa -aG -aG -mD -mD -mN -mN -mN -nm -mN -mN -mD -aG -aa -aa -aa -aa -aa -aa -"} -(23,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 -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 -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 -aa -aa -aa -aa -aa -aG -aG -aG -mD -mV -nk -mN -mN -mU -mT -mD -aG -aa -aa -aa -aa -aa -aa -"} -(24,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 -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 -aa -aa -aa -aa -aa -aa -aS -aS -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 -aG -aG -mD -mX -nl -mN -mN -mN -mN -mD -aG -aa -aa -aa -aa -aa -aa -"} -(25,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 -aa -aS -aS -aS -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 -aa -aS -aS -aS -aS -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 -aG -mD -mD -mN -nm -mN -nm -mN -mD -aG -aa -aa -aa -aa -aa -aa -"} -(26,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 -aS -aS -aS -aS -aS -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 -aS -aS -aS -aS -aS -aS -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 -aG -aG -mD -mN -mN -mN -mN -mD -mD -aG -aa -aa -aa -aa -aa -aa -"} -(27,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 -aS -aS -aS -aS -aS -aa -aa -aS -aS -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 -aS -aS -aS -aS -aS -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 -aG -mD -mD -mD -mD -mD -mD -aG -aa -aa -aa -aa -aa -aa -aa -"} -(28,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 -aS -aS -aS -aS -aS -aa -aa -aS -aS -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 -aS -aS -aS -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 -aa -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,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 -aa -aa -aa -aS -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,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 -aS -aS -aa -aa -aa -ac -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,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 -aS -aS -aS -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 -aS -aS -aS -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,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 -aS -aS -aa -aa -aa -aa -aa -aS -aS -aS -aS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -aS -aS -aS -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,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 -aa -aa -aS -aS -aS -aS -aS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -aS -aS -aS -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,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 -aa -aS -aS -aS -aS -aS -aS -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 -aS -aS -aS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -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 -aa -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 -aa -aS -aS -aS -aS -aS -aS -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 -aS -aS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -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 -aa -aa -aa -aa -aa -aa -"} -(36,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 -aa -aS -aS -aS -aS -aS -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -aa -aa -aS -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 -aa -aa -aa -"} -(37,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -aS -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 -aa -aa -"} -(38,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aS -aS -aS -aS -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 -aa -aa -"} -(39,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aS -aS -aS -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 -aa -aa -aa -"} -(40,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ez -eJ -eJ -fb -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 -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 -"} -(44,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -bs -bs -eA -bs -bs -eA -bs -bs -bs -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 -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 -"} -(45,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 -aa -aa -aa -aa -aa -aa -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -bs -ea -es -bB -bB -bB -bB -es -ea -bs -bs -bs -bs -bs -bs -bs -bs -bs -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,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 -aa -aa -aa -aa -aa -bs -bs -bU -ci -gb -cz -kK -bz -bz -de -dH -jp -dH -de -bs -ea -es -bB -bB -bB -bB -es -ea -bs -bB -fX -go -gu -gC -bB -gQ -bB -hc -hf -hf -hf -hf -hf -hf -hf -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,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 -aa -aa -aa -aa -aa -bt -bz -bz -bz -bV -bz -bz -bz -bz -de -dp -dz -dp -de -bs -bs -bs -eB -es -es -eB -bs -bs -bs -bB -bB -bB -gu -gC -gL -bB -bB -hc -hf -ip -hE -ip -hE -ip -hE -hB -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,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 -aa -aa -aa -aa -aa -bu -bA -bB -bB -bB -kJ -kL -cN -bV -de -dq -dz -dI -de -bE -eb -et -bz -eK -eT -bz -fo -fu -bs -bB -bB -bB -gu -gC -bB -bB -gL -hc -hf -hz -hf -hz -hf -hz -hf -hB -ho -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,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 -aa -aa -aa -aa -aa -bv -bB -bB -cj -bB -bB -bB -bB -bV -bV -bV -dX -bV -bz -bE -ec -eu -eC -kq -eT -fc -eu -fv -bs -CD -CD -gp -CD -CD -gp -CD -CD -hc -hf -hf -hf -hf -hf -hf -hf -np -ho -ho -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -"} -(50,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 -aa -aa -aa -aa -aa -bv -bB -bB -hL -bB -lW -cJ -bB -bV -bV -bz -dX -bz -bV -bE -ed -ev -bz -eK -eT -bz -fp -fw -bE -fH -ga -ga -In -ga -ga -ga -fH -hc -ho -ho -ho -ho -ho -ho -kD -hB -mb -ho -hc -iK -kN -iQ -iY -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 -aa -aa -aa -aa -aa -"} -(51,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 -aa -aa -aa -aa -aa -bw -bC -bB -bB -bB -bB -bB -cO -bV -bz -bz -dX -bz -bz -dT -ee -ee -bz -eL -eU -bz -ee -ee -dT -fI -dX -dX -dX -dX -dX -dX -DX -hc -ho -ho -ho -iI -ho -ho -ho -hB -ho -ho -hc -iL -kN -iQ -iZ -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 -aa -aa -aa -aa -aa -"} -(52,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 -aa -aa -aa -aa -aa -bt -bz -bV -bz -bz -bz -bz -bz -bz -bz -bz -dX -dX -dX -dU -ef -ef -ef -ef -ef -ef -ef -ef -dU -fI -bz -gq -du -gD -du -gq -hb -hc -ho -hB -hB -hB -hB -hB -hB -hB -ho -ho -iJ -iM -kN -iQ -iZ -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 -aa -aa -aa -aa -aa -"} -(53,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 -aa -aa -aa -aa -aa -bs -bD -bz -bz -cr -bz -bV -bV -bz -bz -dr -bz -bz -bz -bE -eg -ej -ej -ej -ej -ew -ej -fy -bE -fK -bz -bz -bz -bz -bz -bz -ha -hc -hl -hB -hQ -ih -ih -iq -iu -hQ -iF -ho -hc -iM -kN -iQ -ja -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 -aa -aa -aa -aa -aa -"} -(54,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 -aa -aa -aa -aa -aa -bs -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -eh -ej -el -el -el -em -ej -ej -bE -fK -gb -bz -bz -gq -du -gq -hb -hc -hc -LW -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -"} -(55,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 -aa -aa -aa -aa -aa -bs -bF -bF -bF -bF -cA -cA -cP -db -dc -dc -dc -dc -dc -bE -ei -ej -el -eM -eV -em -ej -ej -bE -fL -gc -gr -gv -gr -gr -gr -dm -hc -hR -hE -hR -hc -ac -aa -aa -aa -aa -aP -aa -aP -aP -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 -aa -aa -aa -aa -aa -aa -aa -"} -(56,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 -aa -aa -aa -aa -aa -bs -bF -bX -bZ -bZ -cB -cK -cQ -dc -dc -dc -dc -dc -dc -dV -ej -ej -el -eN -eW -em -ej -ej -bE -bE -bE -bE -bE -bE -bE -bE -bE -hc -hc -Tk -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -"} -(57,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 -aa -aa -aa -aa -aP -bs -bF -bY -bZ -bZ -bZ -cK -fY -dc -df -ds -dc -dc -dc -dV -ej -ej -el -el -kz -em -ej -ej -bE -fM -dc -dc -db -dc -dc -dc -ma -fD -hn -hF -hn -fD -il -il -iv -il -iv -il -iv -il -hc -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 -aa -aa -aa -aa -aa -aa -aa -"} -(58,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 -aa -aa -aa -aP -aP -bs -bF -bZ -bZ -bZ -bZ -cK -cQ -dc -dc -dc -dc -dc -dc -bE -ej -ej -el -eM -eV -em -ej -ej -CD -dc -gd -df -ds -gd -df -ds -dc -fD -ho -hB -hS -fD -il -il -il -il -il -il -il -il -hc -hc -iT -hc -iT -hc -hc -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 -aa -"} -(59,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 -aa -aa -aP -aP -aa -bs -bF -bZ -bX -bZ -bZ -cK -cQ -dc -df -ds -df -ds -dc -bE -ej -ej -el -eN -eW -em -ej -ej -CD -dc -dc -dc -dc -dc -dc -dc -dc -fD -ho -hB -hT -fD -il -il -il -il -il -il -kG -il -fD -iR -hB -ji -hB -ju -hc -hc -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 -"} -(60,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 -aa -aP -ab -aP -aP -bs -bF -ca -bZ -bZ -bZ -fR -cQ -dc -dc -dc -dc -dc -dc -bE -ej -ej -el -el -el -em -ew -ew -CD -dc -lZ -dc -lZ -dc -lZ -dc -dc -fD -hp -hB -hU -fD -im -il -iw -il -il -il -iw -il -fD -iS -jc -jj -jc -jv -jC -hc -hc -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 -"} -(61,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 -aP -aP -aP -aa -aa -bs -bF -bZ -bZ -bZ -bZ -cK -cQ -dc -dg -ds -df -ds -dc -bE -ek -ew -em -eO -eX -em -ej -ej -CD -dc -lZ -dc -lZ -dc -lZ -dc -dc -fD -ho -hB -hV -fD -il -il -fD -ir -fD -ir -fD -ir -fD -iT -iT -iT -iT -iT -iT -iT -hc -hc -hc -hc -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 -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -nc -nc -nc -nc -nc -nc -nc -ab -aP -aP -aP -aP -aP -aP -aa -aP -aa -aa -bs -bF -bF -bF -bF -cC -cC -cR -dd -dc -dc -dc -dc -dc -bE -ej -ej -el -eN -eW -em -ej -ej -bE -dc -dc -dc -dc -dc -dc -dc -dc -fD -ho -hB -hW -fD -in -il -fD -iG -fD -iG -fD -iN -fD -gh -fN -fN -fN -fN -fN -fN -fN -fN -fN -jP -aa -aa -aa -aa -aa -jS -jS -jS -jS -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ak -ar -nn -aC -nn -aM -aN -ab -ab -ab -ab -nc -ab -ab -nc -ab -ab -ab -ab -as -as -as -as -as -as -as -as -as -as -as -as -as -as -eh -ej -el -el -el -em -ej -ej -bE -bE -CD -CD -CD -CD -bE -gR -bE -fD -hq -hH -fD -fD -fD -ir -fD -fD -fD -fD -fD -fD -fD -AA -AA -jk -AA -AA -AA -jF -AA -fN -jL -hc -jS -aa -aa -aa -jS -jS -jW -jW -jW -jW -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ah -ah -ah -ax -ah -ax -ah -ah -ah -ab -aT -aF -aF -aX -bd -aF -aF -as -br -br -bI -br -br -br -br -br -bI -br -br -aF -aF -aF -aF -as -ej -ej -el -eM -eV -em -ej -ej -fD -fN -fN -fN -fN -gh -fN -fF -fN -fD -fF -AA -hX -hX -hX -hX -ix -hX -hX -iH -hX -hX -fD -AA -fF -fD -fF -fF -jD -eu -jJ -fN -jM -hc -jS -jX -jX -jX -jS -jW -jW -kf -kf -jW -kv -jS -jS -jS -jS -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -nc -ad -ah -ah -ah -ah -aD -ah -ah -ah -ah -ab -aF -aF -ah -ah -ah -ah -bn -as -br -bx -bJ -cb -br -ct -cD -cL -bx -bJ -br -aF -dC -dC -dC -as -ej -ej -el -eN -eW -em -ej -el -fF -fF -fF -fF -fF -AA -fF -fF -fF -fD -kC -AA -hX -ii -ii -ii -ii -ii -ii -ii -ii -hX -fD -AA -fF -fD -jq -jw -fF -jG -AA -fN -fN -hc -jT -jV -jV -jY -jW -jW -ki -ke -ke -ke -jU -kx -jS -mE -kf -kf -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ae -ai -ah -as -as -as -as -as -ah -ah -ab -aF -aF -ah -ah -be -ah -aF -as -br -by -bK -cc -br -ct -cD -br -by -bK -br -aF -dC -dC -dC -as -ej -ej -el -kz -el -em -ew -em -AA -AA -AA -AA -AA -AA -AA -AA -AA -hd -AA -AA -hX -hX -hX -hX -hX -hX -hX -hX -hX -iO -hd -AA -fF -jl -kD -jx -fF -fF -AA -AA -AA -jQ -jU -jU -jU -jZ -jU -ke -ke -kf -kf -kf -ke -kf -ky -kf -mG -mF -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -af -ah -ah -as -ay -aE -aJ -as -ah -ah -aQ -cI -ah -ah -aY -bf -ah -aF -as -br -br -br -br -br -dy -br -br -br -br -br -aF -aF -aF -aF -as -ej -ej -el -eM -eV -em -ej -ej -fD -fN -fN -fN -fN -fN -fN -fN -fN -fD -fF -AA -AA -AA -AA -AA -AA -AA -AA -AA -AA -AA -fD -AA -fF -fD -ho -jx -fF -fF -fF -fF -fF -hc -jV -jV -jV -jY -jU -jW -kf -kf -kI -ke -ke -kf -ky -mF -kf -mG -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ae -ah -al -at -az -aF -nb -as -aO -ah -ab -aF -aF -aV -aZ -bg -ah -ah -bp -ah -ah -ah -ah -ah -ah -ah -ah -iC -ah -ah -ah -ah -ah -ah -ah -el -ej -el -eN -eW -em -ej -ej -fD -fN -fN -fN -fN -fN -fN -fN -fN -fD -fF -fF -fF -fF -kC -fF -fF -fF -fF -fF -fF -fF -fD -AA -fF -fD -ho -jx -fF -fF -fF -fF -fF -hc -jV -jV -jV -jY -jU -jW -kf -kf -kf -kf -kf -kf -ky -kf -mP -kf -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ae -ah -am -as -aA -aF -bS -as -ah -ah -ab -aF -aU -al -ba -bh -bk -al -bq -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -em -ew -em -em -el -em -ej -el -fF -fF -fF -fF -fF -fF -fF -fF -fF -he -fF -fF -hX -hX -hX -hX -hX -hX -hX -hX -hX -hX -he -AA -kC -jl -ho -jx -fF -fF -fF -fF -fF -jR -jW -jW -jW -ka -jU -kf -kf -kf -kf -kf -kf -kf -ky -mG -mF -mG -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ag -ai -al -as -aB -lk -lm -as -al -al -aR -al -al -ah -bb -bi -bl -aF -as -br -br -br -br -ah -cu -al -br -br -br -br -aF -aF -aF -aF -as -ej -ej -el -eM -eV -el -ej -el -fF -fF -fF -fF -fF -fF -fF -fF -fF -fD -fF -fF -hX -ii -ii -ii -ii -ii -ii -ii -ii -hX -fD -AA -fF -fD -jr -jy -fF -jH -fF -fN -fN -hc -jT -jV -jV -jY -jU -jU -kf -kf -kf -kf -jW -kx -jS -mH -kf -kf -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ae -ah -al -as -as -as -as -as -al -ah -ab -aF -aF -ah -ah -ah -ah -aF -as -br -bx -bJ -dy -ah -ah -al -dy -bx -bJ -br -aF -dC -dC -dC -as -ej -ej -el -eN -eW -el -ej -ej -fD -fO -fN -fN -gy -fN -fN -fF -fN -fD -fF -fF -hX -hX -hX -hX -iy -hX -hX -hX -hX -hX -fD -AA -fF -fD -fF -fF -jD -eu -jK -fN -jN -hc -jS -jX -jX -jX -jS -kh -jW -kf -kf -jW -kv -jS -jS -jS -jS -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -nc -ah -ah -al -al -al -aH -al -al -al -ah -ab -aF -aF -ah -ah -ah -ah -bn -as -br -by -bK -br -ah -cu -al -br -by -bK -br -aF -dC -dC -dC -as -ej -ej -el -el -el -el -ej -ej -bE -bE -bE -bE -bE -bE -bE -gT -bE -fD -hn -hn -fD -fD -fD -ir -fD -fD -fD -fD -fD -fD -fD -AA -fF -jm -fF -fF -fF -jG -fF -fN -jO -hc -jS -aa -aa -aa -jS -jS -jW -jW -jW -jW -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aj -al -ah -ax -ah -ax -ah -ah -ah -ab -as -aF -aW -bc -bj -bm -bo -as -br -br -bL -br -ah -ah -al -br -bL -br -br -aF -aF -aF -aF -as -ej -ej -ej -eP -ej -ej -ej -ej -bE -fP -fP -fP -gz -fP -fP -fP -fP -fD -ho -ho -hY -fD -il -il -fD -iD -fD -iD -fD -iD -fD -gh -fN -fN -fN -fN -fN -fN -fN -fN -fN -jP -aa -aa -aa -aa -aa -jS -jS -jS -jS -jS -jS -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aq -aw -no -aI -no -ak -af -ab -ab -ab -ab -nc -ab -ab -nc -ab -ab -ab -ab -as -ab -ck -ab -cF -ab -as -as -as -as -as -as -as -as -bE -bE -bE -bE -eY -eY -bE -bE -bE -fP -gk -fP -fP -fP -fP -fP -fP -fD -ho -ho -hZ -fD -il -il -fD -ir -fD -ir -fD -ir -fD -iT -iT -iT -iT -iT -iT -iT -hc -hc -hc -hc -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 -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -nc -nc -nc -nc -nc -nc -nc -ab -aP -aP -aP -aP -aP -aP -aa -aP -aa -aa -ab -bM -cd -cl -cd -ce -cd -cT -as -dh -dt -dt -dt -dt -dt -en -bE -eD -eD -eD -eD -eD -eD -bE -kB -gl -fP -fP -gH -gO -gJ -gO -fD -hp -ho -ia -fD -im -il -iz -il -il -il -iz -il -fD -iW -jf -jn -jf -jz -jC -hc -hc -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 -"} -(76,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 -aP -aP -aP -aa -aa -ab -cd -cl -cd -ce -Dy -cl -cd -as -di -du -bz -du -bz -du -eo -bE -eD -eD -eD -eD -fq -eD -bE -fP -gm -fP -fP -gI -gO -gJ -gO -fD -ho -ho -ib -fD -il -il -il -il -il -il -il -il -fD -iX -jg -jo -jg -jA -hc -hc -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 -"} -(77,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 -aa -aP -ab -aP -aP -ab -cl -cd -cl -Dy -cl -cd -cl -as -dj -dv -bz -dw -bz -dw -eo -bE -eD -eD -eD -eD -fr -eD -bE -fP -fP -fP -fP -gJ -gO -gW -gO -fD -ho -ho -ic -fD -il -il -il -il -il -il -kG -il -hc -hc -iT -hc -jt -hc -hc -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 -aa -"} -(78,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 -aa -aa -aP -aP -aa -ab -cd -as -as -cv -cH -cl -cU -as -dk -bz -bz -bz -bz -bz -eo -bE -eE -eQ -eZ -eD -fs -eD -bE -cA -cA -cA -cA -cA -cA -cA -cA -fD -hr -hK -hq -fD -il -il -iA -il -iA -il -iA -il -hc -aa -aa -aa -aa -jB -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 -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aP -aP -ab -bQ -as -co -cw -as -cd -cV -as -di -du -bz -du -bz -bz -eo -bE -eF -eD -eD -eD -eD -fC -bE -fS -bz -fS -bz -gK -bz -gX -bs -hc -hc -iJ -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -"} -(80,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 -aa -aa -aa -aa -aP -ab -bR -bR -bR -cx -bR -bR -bR -as -di -dw -bz -dJ -bz -dW -eo -bE -eD -kA -eE -eQ -eZ -eD -bE -fT -gn -fT -gA -fT -gP -bs -bs -hc -hm -kM -hm -hc -aa -aa -aa -aa -aa -aP -aa -aP -aP -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 -aa -aa -aa -aa -aa -aa -aa -"} -(81,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 -aa -aa -aa -aa -aa -ab -bT -bT -bT -bT -bT -cg -bT -as -di -bz -bz -bz -bz -bz -bz -ex -eD -eD -eD -eD -eD -eD -bE -fU -bz -bz -bz -fW -bs -bs -aP -hc -hc -iJ -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -"} -(82,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 -aa -aa -aa -aa -aa -ab -bT -cg -bT -bT -bT -bT -bT -as -dj -bz -dD -lY -dM -bz -bz -ex -eD -eD -eD -eD -kA -eD -bE -fV -bz -bz -gB -bs -bs -aP -aa -hc -ho -ho -id -ij -io -is -iB -iE -ho -ho -hc -iM -kN -iQ -iY -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 -aa -aa -aa -aa -aa -"} -(83,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 -aa -aa -aa -aa -aa -ab -ab -ch -cp -cy -cp -ch -ab -ab -di -bz -dE -dL -bz -bz -ep -bE -eD -eD -eD -eD -eD -eD -bE -bz -bz -fW -bs -bs -aP -aa -aa -hc -ho -ho -ie -ho -ho -it -ho -ho -ho -ho -iJ -iM -kN -iQ -iZ -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 -aa -aa -aa -aa -aa -"} -(84,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 -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -bs -dl -dx -dx -dx -dx -dx -eq -bE -eG -eR -eG -eG -eG -eG -bE -bz -bz -bs -bs -aP -aa -aa -aa -hc -ho -ho -ho -ho -kD -ho -kD -ho -ho -ho -hc -iL -kN -iQ -iZ -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 -aa -aa -aa -aa -aa -"} -(85,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -bE -bE -dF -bE -dF -bE -bE -bE -eH -eH -eH -eH -eH -eH -bE -fW -bs -bs -aP -aa -aa -aa -aa -hc -ho -ho -ho -ho -ho -ho -ho -ho -ho -ho -hc -iP -kN -iQ -ja -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 -aa -aa -aa -aa -aa -"} -(86,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -lX -dm -dm -dm -dm -dY -dY -bE -eH -eH -eH -eH -eH -eH -bE -bs -bs -aP -aa -aa -aa -aa -aa -hc -hf -hf -hf -hf -hf -hf -hf -ho -ho -iI -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -"} -(87,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -dm -dm -dm -dm -dm -dm -dm -dF -eH -eH -eH -eH -eH -eH -bs -bs -aP -aa -aa -aa -aa -aa -aa -hc -hf -hf -hf -hf -hf -hf -hf -ho -ho -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -dn -dm -dm -dm -dm -dm -dm -bE -eH -eS -fa -fn -ft -bs -bs -aP -aP -aP -aP -aP -aP -aP -aP -hc -hf -hN -hf -hN -hf -hN -hf -ho -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -bs -bs -dm -dG -dm -dS -dS -er -bs -bs -bs -bs -bs -bs -bs -aP -aa -aa -aa -aa -aa -aa -aa -aa -hc -hf -hf -hf -hf -hf -hf -hf -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bs -bs -bs -bs -bs -bs -bs -bs -bs -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -aP -hc -hc -hc -hc -hc -hc -hc -hc -hc -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,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 -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 -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 -aa -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,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 -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 -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 -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aG -mc -mc -mc -mc -mc -mc -mc -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aG -aG -aG -aG -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 -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 -aG -aG -mc -mc -mc -mc -mc -mc -mc -mc -mc -mq -mq -mq -mw -mw -mw -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -aG -mc -me -me -me -lv -mm -mm -mm -mc -mr -mq -mq -mq -mQ -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -aG -mc -mf -me -me -lv -mm -mm -mm -mc -mq -mq -mq -mq -mq -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -aG -mc -lv -lv -lv -lv -lv -lv -lM -mc -mw -mq -mq -mq -mq -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -la -lg -la -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -aG -mc -lv -lv -lv -lv -mn -mo -mo -mc -mw -mq -mq -mq -mq -mR -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -aL -aL -aL -aL -la -la -la -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -mc -lv -lv -lB -lv -mn -mo -mo -mc -mw -mq -mq -mI -mq -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -dK -dK -dK -dK -aK -aL -dK -dK -dK -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -mc -lu -lv -lv -lv -mc -mc -mc -mc -mq -mq -mq -mq -mq -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -dK -kR -dK -dK -kX -aL -aL -lh -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -mc -lv -lv -lv -lv -mc -mp -mq -mq -mq -mq -mq -mq -mq -mq -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -dK -kS -dK -dK -kX -aL -lc -lb -ld -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aG -mc -lv -lv -lv -lv -mc -mq -mc -mc -mc -mc -mc -mc -mc -mc -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -dK -dK -dK -dK -kX -aL -lb -ld -dK -aL -aG -aG -aG -aG -aG -lq -lq -lq -lq -lq -lq -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -mc -lv -lv -lC -lv -mc -mq -mc -mc -mc -mc -mc -mc -mc -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aG -aG -aG -aG -aL -aL -aL -aL -aG -aG -aG -aL -dK -kU -dK -dK -kX -aL -ld -dK -li -aL -aG -aG -aG -aG -aG -lq -lv -lv -lI -lv -lv -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -mc -lu -lv -lv -lv -lJ -mq -mc -mt -mt -mt -mu -mK -mc -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aG -aG -aG -aL -aL -gx -gx -aL -aL -aG -aG -aL -dK -kT -dK -dK -kX -aL -dK -li -dK -aL -aG -aG -aG -aG -aG -lq -lu -lv -lv -lv -lv -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -md -md -mi -md -md -mc -mq -mc -ms -mt -mt -mu -mJ -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aG -aG -aL -aL -dK -dK -dK -dK -aL -aL -aG -aL -aL -aL -gN -aL -aL -aL -ld -lb -ld -aL -aG -aG -aG -aG -aG -lq -lv -lB -lv -lv -lM -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -md -mg -lt -lt -lt -md -mq -mc -mt -mt -mx -mu -mL -mc -aG -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aG -aG -aL -dK -dK -dK -dK -dK -dK -aL -aL -aG -aG -aL -dK -aL -aG -aL -lb -ld -dK -aL -aG -aG -aG -aG -aG -lq -lv -lv -lv -lv -lv -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -md -lt -mj -mk -ml -md -mr -mc -mu -mu -mu -mu -mu -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aG -aG -aL -dK -dK -dK -dK -dK -dK -dK -aL -aL -aG -aL -dK -aL -aG -aL -aL -aL -lh -aL -aG -aG -aG -aG -aG -lq -lv -lv -lv -lB -lR -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -md -mh -lt -lt -lt -md -mq -mc -mu -mu -mu -mA -mu -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aG -aG -aL -ge -dK -dK -ge -dK -dK -dK -ge -aL -aL -ge -dK -ge -aL -aL -le -le -le -aL -aG -aG -aG -aG -aG -lq -lw -lv -lv -lv -lQ -lq -aG -aG -aG -aG -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -md -md -md -md -md -md -mq -mc -mu -mu -my -mz -mM -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aG -aG -aL -gf -dK -dK -dK -gM -dK -dK -dK -gN -dK -dK -kW -dK -dK -gN -dK -dK -le -aL -aG -aG -aG -aG -aG -lq -lx -lC -lv -lv -lT -lq -aG -aG -aG -aG -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 -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aG -aG -aG -aG -aG -aG -mc -mq -lJ -mu -mu -mu -mC -mu -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aG -aG -aL -ge -dK -dK -ge -dK -dK -dK -ge -aL -aL -ge -dK -ge -aL -aL -dK -lj -dK -aL -aG -aG -aG -aG -aG -lq -lv -lw -lv -lv -lS -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -mc -mc -mc -mu -mu -mu -mB -mu -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aG -aG -aL -dK -dK -dK -dK -dK -dK -dK -aL -aL -aG -aL -dK -aL -aG -aL -lf -dK -lj -aL -aG -aG -aG -aG -aG -lq -lu -lv -lv -lv -lv -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -mc -mv -mu -mu -mu -mu -lF -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aG -aG -aL -dK -dK -dK -dK -dK -dK -aL -aL -aG -aG -aL -dK -aL -aG -aL -aL -aL -aL -aL -aG -aG -aG -aG -aG -lq -lv -lv -lv -lB -lM -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -mc -mc -mc -mc -mc -mc -mc -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aG -aG -aL -aL -dK -dK -dK -dK -aL -aL -aG -aL -aL -aL -gN -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lz -lv -lv -lv -lv -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aG -aG -aG -aL -aL -dK -dK -aL -aL -aG -aG -aL -kO -kV -dK -kV -kY -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -ly -lv -lv -lv -lU -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aG -aG -aG -aG -aL -aL -aL -aL -aG -aG -aG -aL -aL -aL -dK -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lA -lD -lv -lv -lV -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -dK -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lq -lq -lJ -lq -lq -lq -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -kP -kV -dK -kV -dK -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lE -lv -lN -lq -aG -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -dK -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lu -lv -lM -lq -aG -aG -aG -aG -aG -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 -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 -aG -aG -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -dK -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -lq -lB -lv -lv -lq -aG -aG -aG -aG -aG -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 -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 -aG -aG -aG -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -kQ -kV -dK -kV -kZ -aL -aG -aG -aG -aG -aG -aG -aG -ll -ll -ll -ll -lF -lF -lF -ll -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -ge -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -ll -ls -sw -ll -lv -lv -lv -ll -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aL -aL -aL -aL -aL -aL -aL -aG -aG -aG -aG -aG -aG -aG -ll -ln -lt -ll -lv -lK -lv -ll -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ll -lp -lt -ll -lv -lL -lv -ll -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -ll -ll -ll -ll -ll -ll -ll -ll -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -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 -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 -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/RandomZLevels/SnowCabin.dmm b/_maps/RandomZLevels/SnowCabin.dmm deleted file mode 100644 index da4ca451a238..000000000000 --- a/_maps/RandomZLevels/SnowCabin.dmm +++ /dev/null @@ -1,70812 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"ab" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/cabin/caves/mountain) -"ac" = ( -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"ad" = ( -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin/lumbermill) -"ae" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"af" = ( -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ag" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"ah" = ( -/obj/structure/fence/door/opened, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"ai" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"aj" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/plaque/static_plaque/golden{ - desc = "Holding the record for about 500 years now."; - name = "The Most Annoying Organization Ever"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"ak" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"al" = ( -/obj/structure/table/wood, -/obj/structure/showcase/machinery/tv{ - desc = "A slightly battered looking TV. Various infomercials play on a loop, accompanied by a jaunty tune."; - name = "Television Screen" - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"am" = ( -/obj/structure/chair/comfy{ - color = "#B22222"; - dir = 8 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"an" = ( -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin) -"ao" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ap" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/wood, -/area/awaymission/cabin) -"aq" = ( -/turf/open/floor/wood, -/area/awaymission/cabin) -"ar" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/command{ - name = "Manager's Office" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"as" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"at" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"au" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/awaymission/cabin) -"av" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aw" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ax" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin) -"ay" = ( -/obj/machinery/light/small, -/obj/item/storage/backpack/bannerpack{ - pixel_y = 7 - }, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/awaymission/cabin) -"az" = ( -/turf/open/floor/carpet, -/area/awaymission/cabin) -"aA" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/awaymission/cabin) -"aB" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"aC" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"aD" = ( -/obj/structure/cable, -/obj/machinery/power/smes/magical{ - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. It seems to be powered just fine without our intervention."; - name = "\improper Nanotrasen power storage unit" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aE" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/baseturf_helper/asteroid/snow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"aF" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "cabin APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aG" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"aH" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"aI" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/cabin) -"aJ" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/obj/item/circular_saw, -/obj/item/cautery, -/obj/item/surgical_drapes, -/obj/item/scalpel, -/obj/item/hemostat, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"aK" = ( -/obj/structure/table/optable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"aL" = ( -/turf/open/floor/plating, -/area/awaymission/cabin) -"aM" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"aN" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"aO" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"aP" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks{ - desc = "Contains a large reservoir of soft drinks so that you can refill your cup. For free."; - name = "free refill dispenser" - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"aQ" = ( -/obj/structure{ - anchored = 1; - density = 1; - desc = "Generates power from lava!"; - dir = 1; - icon = 'icons/obj/atmospherics/pipes/simple.dmi'; - icon_state = "compressor"; - name = "geothermal generator" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"aR" = ( -/obj/machinery/door/window/westright{ - name = "fireplace" - }, -/obj/structure/fireplace, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aS" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/structure/janitorialcart, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/caution, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aT" = ( -/obj/machinery/door/window/eastleft{ - name = "fireplace" - }, -/obj/structure/fireplace, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aU" = ( -/obj/structure/fireplace, -/obj/machinery/door/window/westright{ - name = "fireplace" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aV" = ( -/obj/machinery/space_heater, -/turf/open/floor/wood, -/area/awaymission/cabin) -"aW" = ( -/obj/structure/fireplace, -/obj/machinery/door/window/eastleft{ - name = "fireplace" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"aX" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"aY" = ( -/obj/structure/table/wood, -/obj/item/phone, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"aZ" = ( -/obj/structure/guncase/shotgun, -/obj/item/gun/ballistic/shotgun/riot, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"ba" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/wood/glass{ - name = "Cabin" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bb" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bc" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/britcup, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bd" = ( -/obj/structure/chair/office, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"be" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bg" = ( -/obj/machinery/door/window/westleft{ - name = "manager's desk" - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bh" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bi" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "WheresTheSyndiBalloon"; - name = "Manager's Bedroom" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bj" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bk" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bl" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bm" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "snowdinbutworse5"; - name = "Cabin 5" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bo" = ( -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bp" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"br" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bs" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bt" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"bu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bv" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bw" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"bx" = ( -/obj/machinery/smartfridge, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"by" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"bz" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"bA" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bB" = ( -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bC" = ( -/obj/machinery/gibber, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bD" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bE" = ( -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bF" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bG" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bH" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain, -/obj/item/soap/nanotrasen{ - pixel_x = -1; - pixel_y = -3 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bI" = ( -/turf/open/lava, -/area/awaymission/cabin/caves/mountain) -"bJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bK" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"bL" = ( -/obj/structure/bed, -/obj/item/bedsheet/nanotrasen, -/obj/item/clothing/suit/hooded/wintercoat/captain{ - name = "manager's winter coat" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bM" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bN" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bO" = ( -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"bP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"bS" = ( -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"bT" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/instrument/guitar, -/obj/item/instrument/violin, -/obj/item/instrument/accordion, -/obj/item/instrument/trumpet, -/obj/structure/closet/crate/wooden, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bU" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garage" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"bW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"bX" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"bY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/processor, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"ce" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"cf" = ( -/obj/structure/table/wood, -/obj/item/toy/snowball, -/obj/item/toy/snowball{ - pixel_y = 8 - }, -/obj/item/toy/snowball{ - pixel_x = 8 - }, -/obj/item/toy/snowball{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/toy/snowball{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/toy/snowball{ - pixel_x = -5; - pixel_y = -2 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"cg" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"ch" = ( -/obj/structure/flora/stump{ - desc = "Breaking it should be easy."; - max_integrity = 20; - name = "old stump" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"ci" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cj" = ( -/obj/structure/table, -/obj/item/clothing/suit/hooded/wintercoat/hydro{ - name = "service winter coat"; - pixel_y = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/hydro{ - name = "service winter coat"; - pixel_y = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/hydro{ - name = "service winter coat"; - pixel_y = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"ck" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"cl" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"cm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"co" = ( -/turf/open/chasm{ - desc = "I told you that you can't get past those doors."; - name = "anti-fun pit" - }, -/area/awaymission/cabin/caves/mountain) -"cp" = ( -/obj/machinery/gateway/away, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cr" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin) -"cs" = ( -/obj/structure/table/wood, -/obj/item/wrench, -/obj/item/soap, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ct" = ( -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cu" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"cv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"cx" = ( -/turf/closed/indestructible/riveted, -/area/awaymission/cabin/caves/mountain) -"cy" = ( -/obj/structure/sign/poster/contraband/fun_police, -/turf/closed/indestructible/riveted, -/area/awaymission/cabin/caves/mountain) -"cz" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/musician/piano{ - desc = "Very theatrical."; - icon_state = "piano"; - name = "theatre piano" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cA" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/wood{ - name = "Stage Left" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cB" = ( -/obj/machinery/door/window/eastleft, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cC" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cD" = ( -/obj/structure/sign/barsign{ - pixel_y = -32; - req_access = null - }, -/obj/machinery/door/window/westleft{ - name = "Bar" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cF" = ( -/obj/structure/table, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"cG" = ( -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/obj/item/food/meat/slab/synthmeat, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"cH" = ( -/obj/effect/landmark/awaystart, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cI" = ( -/obj/structure/cable, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"cJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"cK" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/sillycup/smallcarton{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"cM" = ( -/obj/machinery/door/airlock/wood{ - name = "Gateway" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"cN" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"cO" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"cP" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"cQ" = ( -/obj/effect/landmark/awaystart, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"cR" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"cS" = ( -/obj/machinery/button/door{ - id = "garage_cabin"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"cT" = ( -/obj/vehicle/ridden/atv, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/awaymission/cabin) -"cU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"cV" = ( -/obj/vehicle/ridden/atv, -/turf/open/floor/plating, -/area/awaymission/cabin) -"cW" = ( -/obj/item/shovel, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/awaymission/cabin) -"cX" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/cabin) -"cY" = ( -/obj/vehicle/ridden/atv{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"cZ" = ( -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"da" = ( -/obj/structure/chair, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"db" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dc" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - desc = "A fancy bottle of vodka. The name isn't in Galactic Common though."; - name = "Porosha Vodka" - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dd" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/chair/comfy/shuttle{ - desc = "A comfortable, secure seat. It has a more sturdy looking buckling system, for making it harder to get dragged into the ring."; - name = "announcer seat" - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"de" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/hourglass, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"df" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dg" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dh" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"di" = ( -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dj" = ( -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/snowforest) -"dk" = ( -/obj/structure/chair, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dl" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dm" = ( -/obj/structure/table/reinforced, -/obj/item/pda/syndicate{ - background_color = "#0039A6"; - default_cartridge = /obj/item/cartridge/virus/mime; - desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; - name = "soviet PDA"; - note = "TRANSLATED TO GALACTIC COMMON:
My partner has left to help those Nanotrasen fucks three days ago. They said that a distress signal came from down south and they had to check it out. How fucking long does it take to investigate a mining outpost? Either those Nanotrasen fuckers betrayed us or something really did go wrong. Either way, I'm leaving before this becomes an issue for me and anyone else here. That dumb idiot." - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dn" = ( -/obj/structure/table/reinforced, -/obj/item/megaphone/sec{ - name = "soviet megaphone" - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"do" = ( -/obj/structure/table/reinforced, -/obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dp" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dr" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_containers/pill/patch/libital, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ds" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dt" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"du" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"dv" = ( -/obj/structure{ - anchored = 1; - density = 1; - desc = "Generates power from lava!"; - icon = 'icons/obj/atmospherics/pipes/simple.dmi'; - icon_state = "turbine"; - name = "geothermal generator" - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"dw" = ( -/mob/living/simple_animal/hostile/bear/snow{ - desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; - melee_damage_lower = 10; - melee_damage_upper = 20; - name = "fat space polar bear"; - speed = 3 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dx" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"dy" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"dz" = ( -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/snowforest) -"dA" = ( -/turf/closed/wall/ice, -/area/awaymission/cabin/snowforest) -"dB" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin) -"dC" = ( -/obj/structure/fence, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"dD" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"dE" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dG" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dH" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"dI" = ( -/obj/structure/table, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dJ" = ( -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dK" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dL" = ( -/obj/structure/fence/door/opened, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"dM" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dN" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"dO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dP" = ( -/obj/item/shard, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dQ" = ( -/obj/item/lighter/greyscale, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dS" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dT" = ( -/obj/item/broken_bottle, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dU" = ( -/obj/item/chair, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dV" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dW" = ( -/obj/item/reagent_containers/pill/patch/libital, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"dX" = ( -/mob/living/simple_animal/pet/penguin/emperor, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/snowforest) -"dY" = ( -/mob/living/simple_animal/pet/penguin/baby, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/snowforest) -"dZ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/mob/living/simple_animal/hostile/bear/snow{ - desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; - melee_damage_lower = 10; - melee_damage_upper = 20; - name = "fat space polar bear"; - speed = 3 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ea" = ( -/obj/item/food/fishmeat/carp, -/obj/item/food/fishmeat/carp, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/snowforest) -"eb" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ec" = ( -/obj/machinery/light, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"ed" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ee" = ( -/obj/machinery/light, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"ef" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"eg" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"eh" = ( -/obj/machinery/door/airlock/wood/glass, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ei" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ej" = ( -/obj/structure/chair/wood, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"ek" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/snowforest) -"el" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin) -"em" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"en" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin) -"eo" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ep" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin) -"eq" = ( -/obj/machinery/door/poddoor/shutters{ - id = "garage_cabin"; - name = "garage door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin) -"er" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin) -"es" = ( -/obj/structure/fluff/fokoff_sign, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"et" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/cabin) -"eu" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ev" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ew" = ( -/obj/structure/closet/crate/wooden, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ex" = ( -/obj/structure/closet/crate/wooden, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ey" = ( -/obj/structure/sign/warning/nosmoking/circle, -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin/snowforest) -"ez" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eA" = ( -/obj/structure/table/wood, -/obj/item/chainsaw, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"eB" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"eC" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eD" = ( -/obj/structure/bonfire/dense{ - desc = "Multiple logs thrown together into a pile hastily. Let's burn it for fun!."; - name = "pile of logs" - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eE" = ( -/obj/structure/table/wood, -/obj/item/grown/log/tree{ - pixel_x = -7 - }, -/obj/item/grown/log/tree, -/obj/item/grown/log/tree{ - pixel_x = 7 - }, -/obj/item/grown/log/tree{ - pixel_x = 14 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eF" = ( -/obj/structure/table/wood, -/obj/item/grown/log/tree{ - pixel_x = -7 - }, -/obj/item/grown/log/tree, -/obj/item/grown/log/tree{ - pixel_x = 7 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eG" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"eH" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/lumbermill) -"eI" = ( -/obj/effect/turf_decal/stripes/red/corner, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eJ" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eK" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "lumbermill" - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eL" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eM" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eN" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/awaymission/cabin) -"eO" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass3"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"eP" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"eQ" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "If I forgot where the gateway was then I can just call the station with this phone! Wait, where's the phone lines?"; - name = "phone" - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"eR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lumbermill" - }, -/obj/effect/turf_decal/stripes/red/full, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/lumbermill) -"eS" = ( -/obj/machinery/recycler/lumbermill{ - desc = "Is better at killing people than cutting logs, for some reason." - }, -/obj/machinery/conveyor{ - dir = 4; - id = "lumbermill" - }, -/obj/effect/turf_decal/stripes/red/full, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/lumbermill) -"eT" = ( -/obj/structure/closet/crate/wooden{ - anchored = 1 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/lumbermill) -"eU" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eV" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eW" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/item/wrench, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eX" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"eY" = ( -/obj/structure/closet/crate/wooden, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"eZ" = ( -/obj/structure/closet/crate/wooden, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"fa" = ( -/obj/structure/fence, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"fb" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"fc" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"fd" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"fe" = ( -/obj/structure/table/wood, -/obj/item/shovel, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ff" = ( -/obj/structure/table/wood, -/obj/item/key/atv, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"fg" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fh" = ( -/obj/machinery/computer/prisoner{ - desc = "Used to manage tracking implants placed inside criminals and the prison cells."; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fi" = ( -/obj/item/trash/can, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"fk" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fl" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fm" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fn" = ( -/obj/machinery/vending/sustenance{ - desc = "A vending machine which vends food."; - name = "\improper Snack Machine"; - product_ads = "Sufficiently healthy.;Mmm! So good!;Have a meal.;You need food to live!"; - product_slogans = "Enjoy your meal." - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/displaycase{ - start_showpiece_type = /obj/item/dice/d6/space; - trophy_message = "Stolen from dice collector before he could enjoy his day." - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"ft" = ( -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fw" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fx" = ( -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fy" = ( -/turf/closed/indestructible/fakedoor{ - desc = "It looks like there really is no way out this time."; - name = "Cell Block Y8" - }, -/area/awaymission/cabin/caves/mountain) -"fz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fA" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fB" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fC" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fD" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/snowforest) -"fE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/ladder/unbreakable{ - desc = "Who left the grate open?"; - height = 1; - icon_state = "ladder01"; - id = "dealwentoffwithoutahitchBRO"; - name = "Grate"; - pixel_y = -10 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"fH" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"fI" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"fJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fL" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse{ - faction = list("sewer") - }, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"fM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fO" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fP" = ( -/turf/closed/indestructible/fakeglass, -/area/awaymission/cabin/caves/mountain) -"fQ" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7210" - }, -/area/awaymission/cabin/caves/mountain) -"fR" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7211" - }, -/area/awaymission/cabin/caves/mountain) -"fS" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7212" - }, -/area/awaymission/cabin/caves/mountain) -"fT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile{ - desc = "Enjoy the view."; - name = "window" - }, -/turf/open/floor/plating, -/area/awaymission/cabin/caves/mountain) -"fU" = ( -/obj/machinery/door/airlock/centcom{ - desc = "Look at what you have done."; - max_integrity = 2000; - name = "Jail Cell 7213" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"fV" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7214" - }, -/area/awaymission/cabin/caves/mountain) -"fW" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7215" - }, -/area/awaymission/cabin/caves/mountain) -"fX" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7216" - }, -/area/awaymission/cabin/caves/mountain) -"fY" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Jail."; - name = "Jail Cell 7217" - }, -/area/awaymission/cabin/caves/mountain) -"fZ" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"ga" = ( -/mob/living/simple_animal/hostile/bear/snow{ - desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; - melee_damage_lower = 10; - melee_damage_upper = 20; - name = "fat space polar bear"; - speed = 3; - wander = 0 - }, -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/snowforest) -"gb" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"gc" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Eh, I don't think trying to get past it is worth it anyways."; - name = "Flood Gate" - }, -/area/awaymission/cabin/caves/mountain) -"gd" = ( -/turf/open/indestructible/binary{ - density = 1; - desc = "No, I am not going through this."; - icon = 'icons/misc/beach.dmi'; - icon_state = "water"; - name = "dirty water" - }, -/area/awaymission/cabin/caves/mountain) -"ge" = ( -/obj/item/toy/spinningtoy{ - anchored = 1; - desc = "He keeps breaking out somehow due to the help of cultists that utilize cargo shipments or atmospherical sabotage." - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gg" = ( -/obj/item/gun/ballistic/automatic/toy{ - anchored = 1; - desc = "Don't try it."; - name = "\improper Nanotrasen Saber SMG" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gh" = ( -/obj/structure/sign/poster/contraband/free_drone{ - desc = "This poster seems to be meant for a bunch of machines that used to be deployed on space stations." - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gj" = ( -/obj/structure/ladder/unbreakable/rune{ - alpha = 0; - color = "#000000"; - desc = "It is time to bust out of this joint"; - height = 1; - id = "whatkindofnerdusesmapmakertocheattheirwaytoateleportrune"; - mouse_opacity = 0; - name = "\improper secret escape route" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gk" = ( -/obj/structure/easel{ - desc = "An ancient canvas that was used to produce art so fine, the universe can't handle it!"; - name = "Ancient Canvas Art" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/nullrod/claymore/multiverse{ - anchored = 1; - force = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gm" = ( -/obj/structure/fluff/empty_sleeper{ - desc = "An open sleeper. It looks as though it would be awaiting another patient."; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"gn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/showcase/mecha/marauder{ - desc = "Used by vigilantes in the past to fight ruffians causing trouble in neighborhoods and space stations."; - icon_state = "seraph"; - name = "illegally acquired seraph" - }, -/turf/open/indestructible, -/area/awaymission/cabin/caves/mountain) -"go" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"gp" = ( -/obj/structure/sign/poster/contraband/pwr_game{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"gq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gr" = ( -/turf/open/indestructible{ - icon_state = "plating"; - name = "plating" - }, -/area/awaymission/cabin/caves/mountain) -"gs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"gt" = ( -/obj/structure/punching_bag, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/engine, -/area/awaymission/cabin/caves/mountain) -"gu" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/security, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gv" = ( -/obj/structure/ladder/unbreakable{ - desc = "Finally."; - icon_state = "ladder10"; - id = "whyisitcalledladder10andnotladder1"; - name = "Freedom" - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/indestructible{ - icon_state = "plating"; - name = "plating" - }, -/area/awaymission/cabin/caves/mountain) -"gw" = ( -/obj/structure/barricade/wooden/crude{ - desc = "Buffing things is illegal for it causes fun." - }, -/turf/closed/indestructible/fakedoor{ - desc = "The room for buffing things."; - name = "Exercise Room" - }, -/area/awaymission/cabin/caves/mountain) -"gx" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/cabin/caves/mountain) -"gy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/ladder/unbreakable{ - desc = "Yeah, I'll just go back to jail instead of this. It's not like there is an escape out of here, right?"; - icon_state = "ladder10"; - id = "dealwentoffwithoutahitchBRO"; - name = "Sewer Ladder" - }, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gz" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/security, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gC" = ( -/obj/effect/baseturf_helper/asteroid/snow, -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/cabin/caves/mountain) -"gD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/shreds, -/turf/open/indestructible{ - icon_state = "plating"; - name = "plating" - }, -/area/awaymission/cabin/caves/mountain) -"gE" = ( -/turf/closed/indestructible/fakedoor{ - desc = "I think that intercomm could open the door."; - name = "Hallway Y8" - }, -/area/awaymission/cabin/caves/mountain) -"gF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/structure/signpost/salvation{ - density = 0; - desc = "An intercomm. Someone seems to be on the other end. I should use it."; - icon = 'icons/obj/radio.dmi'; - icon_state = "intercom"; - max_integrity = 99999; - name = "\proper Fun Jail intercom"; - pixel_y = 32; - question = "We have a case of fun happening. Get out there and do your job." - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/poster/official/space_cops{ - pixel_y = 32 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/mop, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/food/egg/rainbow{ - desc = "Was an egg really worth this much effort?"; - name = "easter egg" - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/cabin) -"gM" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/dirt, -/obj/item/key/atv, -/obj/item/key/atv, -/obj/item/key/atv, -/obj/item/key/atv, -/obj/item/key/atv, -/obj/item/key/atv, -/turf/open/floor/plating, -/area/awaymission/cabin) -"gN" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/awaymission/cabin) -"gO" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"gP" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"gQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/banhammer{ - desc = "I'm sorry, sir, but fun actions are illegal."; - name = "fun baton" - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gR" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass2"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"gS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/head/helmet/police{ - armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 2, "bomb" = 15, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 20); - desc = "I am the law!" - }, -/obj/structure/closet{ - anchored = 1; - name = "uniform closet" - }, -/obj/item/clothing/under/rank/security/officer/spacepol{ - armor = list("melee" = 2, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 10, "acid" = 10); - desc = "Anyone enjoying their time while working in a megacorporation, planetary government, or band of pirates is under the jurisdiction of the fun police." - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/cabin/caves/mountain) -"gT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"gU" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass_sw"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"gW" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"gX" = ( -/obj/structure/flora/stump{ - desc = "Breaking it should be easy."; - max_integrity = 20; - name = "old stump" - }, -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/snowforest) -"gY" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/head/hardhat, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"gZ" = ( -/obj/item/chair/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ha" = ( -/obj/structure/chair/wood/wings{ - name = "dealer chair" - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hb" = ( -/obj/structure/table/wood/fancy, -/obj/item/coin{ - desc = "Looks old."; - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hc" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hd" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"he" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hf" = ( -/obj/machinery/space_heater, -/obj/effect/decal/remains/robot, -/obj/structure/sign/warning/fire{ - pixel_y = 32 - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "janitor closet" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hh" = ( -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hi" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"hj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hk" = ( -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hl" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hm" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/wood{ - name = "Gateway" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hn" = ( -/obj/structure/sign/poster/official/high_class_martini{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ho" = ( -/obj/item/wrench/medical, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"hp" = ( -/obj/machinery/stasis, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"hq" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"hr" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/generic, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hs" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ht" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hu" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/cold, -/obj/item/clothing/glasses/cold, -/obj/item/clothing/glasses/cold, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hv" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/welding{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hw" = ( -/obj/structure/closet/toolcloset, -/obj/item/lightreplacer, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/awaymission/cabin) -"hx" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/wood{ - name = "Stage Right" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "heater storage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"hz" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/awaymission/cabin) -"hA" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/freezer{ - name = "Freezer" - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"hB" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Backstage" - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hC" = ( -/obj/structure/cable, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hD" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/folder/white, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"hE" = ( -/obj/structure/cable, -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hF" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hG" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"hH" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hI" = ( -/obj/effect/landmark/awaystart, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"hJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/indestructible{ - icon_state = "plating"; - name = "bridge" - }, -/area/awaymission/cabin/caves/mountain) -"hK" = ( -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"hL" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/mineral/snow, -/area/awaymission/cabin/caves/mountain) -"hM" = ( -/turf/closed/wall/mineral/snow, -/area/awaymission/cabin/caves/mountain) -"hN" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"hO" = ( -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"hP" = ( -/obj/item/candle/infinite, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"hQ" = ( -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"hR" = ( -/obj/structure/reagent_dispensers/beerkeg{ - desc = "Hey, CentCom, we located our complimentary case of space beer! The pamphlet didn't lie!"; - name = "complimentary keg of space beer" - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"hS" = ( -/mob/living/simple_animal/hostile/tree{ - desc = "I am death. I will have my vengeance upon my enemies."; - melee_damage_upper = 8; - wander = 0 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"hT" = ( -/obj/structure/statue/snow/snowlegion{ - anchored = 1 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"hU" = ( -/obj/item/toy/figure/clown{ - desc = "Shut up, we don't talk about him."; - name = "exploration squad Clown" - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"hV" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - name = "Who" - }, -/obj/item/clothing/head/helmet/knight/yellow{ - armor = list("melee" = 11, "bullet" = 2, "laser" = 1, "energy" = 1, "bomb" = 5, "bio" = 2, "rad" = 0, "fire" = 0, "acid" = 10); - desc = "A classic metal helmet. The cold has made it unreliable though."; - name = "old medieval helmet"; - pixel_y = 7 - }, -/obj/item/claymore/weak/ceremonial{ - desc = "Brought to you by the guys in charge of making replica katana toys!"; - force = 1; - layer = 3.01; - name = "replica claymore"; - pixel_x = 5; - pixel_y = 8; - throwforce = 2 - }, -/obj/item/shield/riot/roman/fake{ - layer = 3.01; - pixel_x = -7 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"hW" = ( -/obj/item/toy/figure/borg{ - desc = "The robot that was manufactured just for this exploration team."; - name = "exploration squad Cyborg"; - pixel_x = 8; - toysay = "I. AM. ALIVE." - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"hX" = ( -/obj/item/clothing/suit/armor/vest/russian_coat{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"hY" = ( -/obj/effect/decal/cleanable/blood/gibs, -/obj/item/reagent_containers/pill/patch/libital, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"hZ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ia" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/shard/plasma, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ib" = ( -/obj/item/hatchet/wooden, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ic" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/trash/popcorn{ - pixel_y = 12 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"id" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ie" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"if" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ig" = ( -/obj/item/toy/figure/dsquad{ - desc = "The muscle behind the exploration team. May or may not be a secret soldier depending on the mood of Nanotrasen following their own lore."; - name = "exploration squad Officer"; - toysay = "We're top secret until we're not!" - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"ih" = ( -/obj/item/toy/figure/md{ - desc = "The doctor that got volunteered to join the exploration team."; - name = "exploration squad Medic"; - pixel_x = -8; - toysay = "Guess I'll be useless until stuns are involved!" - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"ii" = ( -/turf/closed/indestructible/syndicate, -/area/awaymission/cabin/caves/sovietcave) -"ij" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ik" = ( -/obj/structure/door_assembly/door_assembly_vault{ - anchored = 1; - name = "vault door" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"il" = ( -/obj/item/toy/prize/deathripley{ - desc = "The mining mecha of the exploration team."; - name = "exploraton squad Ripley"; - pixel_y = 15 - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"im" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"in" = ( -/obj/structure/cable, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"io" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ip" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/hatch, -/obj/structure/barricade/wooden, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"iq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/mob/living/simple_animal/hostile/hivebot/range{ - desc = "Looks like he's been left behind."; - faction = list("russian"); - maxHealth = 5; - name = "soviet machine" - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"ir" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/barricade/sandbags, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"is" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"it" = ( -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"iu" = ( -/obj/item/grenade/barrier{ - pixel_x = -14; - pixel_y = 14 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"iv" = ( -/turf/closed/wall/mineral/snow, -/area/awaymission/cabin/caves) -"iw" = ( -/obj/structure/floodlight_frame, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"ix" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"iy" = ( -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"iz" = ( -/turf/closed/wall/ice, -/area/awaymission/cabin/caves) -"iA" = ( -/obj/structure/frame/machine, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iB" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iC" = ( -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iD" = ( -/obj/structure/closet/acloset, -/obj/item/clothing/suit/hooded/bloated_human, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iE" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"iF" = ( -/obj/item/shovel{ - desc = "A large tool for digging and moving snow."; - force = 10; - name = "eskimo shovel" - }, -/obj/effect/decal/remains/human{ - color = "#72e4fa" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"iG" = ( -/obj/structure/fluff/iced_abductor, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iH" = ( -/obj/structure/table/glass, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iI" = ( -/obj/structure/closet/acloset, -/obj/item/toy/foamblade, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iJ" = ( -/obj/structure/bed/alien, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"iK" = ( -/obj/structure/flora/rock/icy{ - desc = "A mountain rock." - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"iL" = ( -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"iM" = ( -/turf/open/floor/wood, -/area/awaymission/cabin/caves) -"iN" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"iO" = ( -/obj/structure/chair, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"iP" = ( -/obj/structure/sign/picture_frame{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin/caves) -"iQ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/cabin/caves) -"iR" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = -7; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iS" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = 7; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iT" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iU" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/mug/coco{ - desc = "Still hot!"; - pixel_x = 7; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iV" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "snowdinbutworse1"; - name = "Cabin 1" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iW" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "snowdinbutworse2"; - name = "Cabin 2" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iX" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "snowdinbutworse3"; - name = "Cabin 3" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iY" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "snowdinbutworse4"; - name = "Cabin 4" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/awaymission/cabin) -"iZ" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity10" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"ja" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity20" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"jb" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity30" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"jc" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity40" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"jd" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity50" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"je" = ( -/obj/structure/window/reinforced/fulltile/ice{ - name = "frozen window" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "fightingcommunity60" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) -"jf" = ( -/obj/machinery/button/door{ - id = "fightingcommunity60"; - name = "shutter button"; - pixel_x = -8; - pixel_y = 30 - }, -/obj/machinery/button/door{ - id = "WheresTheSyndiBalloon"; - name = "airlock button"; - pixel_x = 8; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jg" = ( -/obj/machinery/button/door{ - id = "snowdinbutworse2"; - name = "airlock button"; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jh" = ( -/obj/machinery/button/door{ - id = "snowdinbutworse1"; - name = "airlock button"; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ji" = ( -/obj/machinery/button/door{ - id = "snowdinbutworse3"; - name = "airlock button"; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jj" = ( -/obj/machinery/button/door{ - id = "snowdinbutworse4"; - name = "airlock button"; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jk" = ( -/obj/machinery/button/door{ - id = "snowdinbutworse5"; - name = "airlock button"; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jl" = ( -/obj/machinery/button/door{ - id = "fightingcommunity10"; - name = "shutter button"; - pixel_x = -28; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jm" = ( -/obj/machinery/button/door{ - id = "fightingcommunity20"; - name = "shutter button"; - pixel_x = 28; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jn" = ( -/obj/machinery/button/door{ - id = "fightingcommunity30"; - name = "shutter button"; - pixel_x = -28; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jo" = ( -/obj/machinery/button/door{ - id = "fightingcommunity40"; - name = "shutter button"; - pixel_x = 28; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jp" = ( -/obj/machinery/button/door{ - id = "fightingcommunity50"; - name = "shutter button"; - pixel_x = -28; - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jq" = ( -/obj/item/clothing/suit/hooded/wintercoat/medical{ - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/hooded/wintercoat/medical{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"jr" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - anchored = 1 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/scarf/zebra, -/turf/open/floor/wood, -/area/awaymission/cabin) -"js" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"jt" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - anchored = 1 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/scarf/christmas, -/turf/open/floor/wood, -/area/awaymission/cabin) -"ju" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - anchored = 1 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/stripedbluescarf, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - anchored = 1 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/stripedgreenscarf, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/cabinet{ - anchored = 1 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/stripedredscarf, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jx" = ( -/obj/structure/table/wood/poker, -/obj/item/dice/d6{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"jy" = ( -/obj/structure/table/wood/fancy, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jz" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/red, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jA" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = -7 - }, -/obj/item/folder/blue{ - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jB" = ( -/obj/effect/baseturf_helper/asteroid/snow, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jC" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Generator Room" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/cabin) -"jD" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/gas/explorer, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jE" = ( -/obj/structure/closet/crate/bin, -/obj/item/tank/internals/emergency_oxygen/engi/empty, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"jF" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/tray, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jG" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/pistachios, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jH" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/can, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jI" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jJ" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/cheesie, -/turf/open/floor/wood, -/area/awaymission/cabin) -"jK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mine/stun, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"jL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"jM" = ( -/obj/machinery/space_heater, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"jO" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jP" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jQ" = ( -/obj/structure/table/wood, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = -16; - pixel_y = 32 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jR" = ( -/obj/structure/table/wood, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -3; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 3; - throwforce = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jS" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/brute, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jT" = ( -/obj/structure/table/wood, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jU" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jV" = ( -/mob/living/simple_animal/bot/firebot, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jW" = ( -/obj/structure/table/wood, -/obj/item/gun/energy/floragun, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jX" = ( -/obj/structure/table/wood, -/obj/item/pizzabox/vegetable{ - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jY" = ( -/obj/structure/table/wood, -/obj/item/razor{ - pixel_y = 3 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"jZ" = ( -/obj/structure/table/wood, -/obj/item/extinguisher{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ka" = ( -/obj/structure/table/wood, -/obj/item/extinguisher, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kb" = ( -/obj/structure/table/wood, -/obj/item/flashlight{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kc" = ( -/obj/structure/table/wood, -/obj/item/flashlight{ - pixel_y = 2 - }, -/obj/item/flashlight{ - pixel_y = 15 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/construction{ - pixel_y = 3 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"ke" = ( -/obj/structure/table/wood, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 7 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kf" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kg" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin) -"kh" = ( -/obj/structure/flora/rock/icy{ - desc = "A mountain rock." - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/snowforest) -"ki" = ( -/turf/open/floor/wood/cold, -/area/awaymission/cabin/caves) -"kj" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/awaymission/cabin/caves) -"kk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/wood, -/area/awaymission/cabin) -"kl" = ( -/obj/structure/bonfire, -/turf/open/floor/plating, -/area/awaymission/cabin/caves) -"km" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/cabin/caves) -"kn" = ( -/obj/structure/sign{ - pixel_x = 32 - }, -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"ko" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken" - }, -/area/awaymission/cabin/caves) -"kp" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken4" - }, -/area/awaymission/cabin/caves) -"kq" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken5" - }, -/area/awaymission/cabin/caves) -"kr" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken3" - }, -/area/awaymission/cabin/caves) -"ks" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken2" - }, -/area/awaymission/cabin/caves) -"kt" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"ku" = ( -/turf/open/floor/wood/cold{ - icon_state = "wood-broken7" - }, -/area/awaymission/cabin/caves) -"kv" = ( -/obj/structure/barricade/wooden/snowed, -/obj/structure/barricade/wooden/crude/snow, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kw" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"kx" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ky" = ( -/obj/structure/flora/stump{ - desc = "Breaking it should be easy."; - max_integrity = 20; - name = "old stump" - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kz" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - name = "What" - }, -/obj/item/clothing/head/wizard/fake{ - pixel_x = -1; - pixel_y = 13 - }, -/obj/item/staff{ - layer = 3.01 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kA" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/snowforest) -"kB" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - name = "I Don't Know" - }, -/obj/item/clothing/head/bishopmitre{ - pixel_x = -1; - pixel_y = 16 - }, -/obj/item/gun/magic/wand{ - desc = "It's just a fancy staff so that holy clerics and priests look cool. What? You didn't think someone would leave a REAL magic artifact with a snowman out in the cold, did you?"; - icon_state = "revivewand"; - layer = 3.01; - name = "holy staff"; - pixel_y = -2 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kC" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - name = "Because" - }, -/obj/item/clothing/head/scarecrow_hat{ - desc = "A replica straw hat that isn't actually made out of straw"; - name = "synthetic straw hat"; - pixel_x = -1; - pixel_y = 10 - }, -/obj/item/gun/ballistic/shotgun/toy/unrestricted{ - pixel_y = -2 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kD" = ( -/obj/structure/table/wood, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -7; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = -3; - throwforce = 4 - }, -/obj/item/hatchet{ - desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; - force = 4; - name = "weak hatchet"; - pixel_x = 3; - throwforce = 4 - }, -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = 16; - pixel_y = -32 - }, -/turf/open/floor/wood/cold, -/area/awaymission/cabin/lumbermill) -"kE" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/awaymission/cabin) -"kF" = ( -/obj/structure/barricade/sandbags, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/assembly/infra, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kJ" = ( -/obj/effect/decal/hammerandsickle, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/clothing/head/helmet/rus_ushanka, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/sandbags, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"kN" = ( -/turf/open/floor/plating, -/area/awaymission/cabin/caves/sovietcave) -"kO" = ( -/obj/item/bear_armor, -/turf/open/floor/plating, -/area/awaymission/cabin/caves/sovietcave) -"kP" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - name = "Why" - }, -/obj/item/clothing/head/bandana{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/throwing_star{ - desc = "I better not rely on this being useful."; - force = 1; - name = "frozen throwing star"; - throwforce = 1 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kQ" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mob_spawn/human/corpse/damaged, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"kS" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kT" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kU" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kV" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kW" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"kY" = ( -/obj/effect/decal/remains/human, -/obj/item/shovel, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"kZ" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs, -/mob/living/simple_animal/hostile/skeleton{ - desc = "Oh shit!"; - dir = 1; - faction = list("sewer"); - name = "sewer skeleton"; - wander = 0 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin/caves/mountain) -"la" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/crowbar/large, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lb" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"lc" = ( -/turf/closed/indestructible/fakedoor{ - desc = "I can't get past this."; - name = "Reinforced Soviet Hatch" - }, -/area/awaymission/cabin/caves/sovietcave) -"ld" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"le" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lf" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/structure/statue/snow/snowlegion{ - anchored = 1; - desc = "It's still alive."; - icon_state = "snowlegion_alive" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lg" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lh" = ( -/obj/effect/decal/remains/human, -/obj/item/reagent_containers/spray/pepper/empty, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"li" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lj" = ( -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lk" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ll" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ln" = ( -/obj/item/weldingtool/mini, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lo" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lp" = ( -/obj/structure/statue/snow/snowlegion{ - anchored = 1; - desc = "It's still alive."; - icon_state = "snowlegion_alive" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lq" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/mob/living/simple_animal/hostile/statue{ - desc = "Just a snowman. Just a snowman. Oh god, it's just a snowman."; - faction = list("statue","mining"); - health = 5000; - icon_dead = "snowman"; - icon_living = "snowman"; - icon_state = "snowman"; - loot = list(/obj/item/dnainjector/geladikinesis); - maxHealth = 5000; - melee_damage_lower = 65; - melee_damage_upper = 65; - name = "Frosty" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lr" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/kitchen/knife/shiv/carrot, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ls" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/melee/baseball_bat, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lt" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/structure/statue/snow/snowlegion{ - anchored = 1; - desc = "It's still alive."; - icon_state = "snowlegion_alive" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lu" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lv" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/cleanable/molten_object/large, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lw" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/item/clothing/head/helmet/skull{ - armor = list("melee" = 15, "bullet" = 5, "laser" = 5, "energy" = 2, "bomb" = 10, "bio" = 5, "rad" = 20, "fire" = 20, "acid" = 20); - desc = "It's not bloody for some reason. Dear god."; - name = "human skull" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lx" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/cleanable/plasma, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ly" = ( -/obj/item/chair/stool, -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lz" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"lA" = ( -/obj/effect/decal/cleanable/glitter/blue{ - desc = "It looks like fancy glitter to me."; - name = "icy wind" - }, -/obj/effect/decal/remains/xeno/larva, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lB" = ( -/obj/structure/statue/snow/snowman{ - anchored = 1; - desc = "You didn't seriously examine each snowman to see if their description is different, did you?" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lC" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "lumbermill" - }, -/obj/effect/turf_decal/stripes/red/full, -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/lumbermill) -"lE" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/hatchet/wooden, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lF" = ( -/obj/effect/mine/stun, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lG" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/grenade/chem_grenade/large, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lH" = ( -/obj/effect/decal/remains/human, -/obj/structure/light_construct, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lI" = ( -/obj/structure/light_construct, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lJ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human{ - desc = "They look like human remains. They're covered in scratch marks."; - name = "mangled remains" - }, -/obj/effect/decal/cleanable/shreds, -/obj/effect/decal/cleanable/shreds{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/shreds{ - pixel_x = -3; - pixel_y = -5 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lK" = ( -/obj/item/pickaxe{ - desc = "It's almost broken."; - force = 8; - name = "damaged pickaxe"; - throwforce = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lL" = ( -/obj/effect/decal/remains/human, -/obj/item/pickaxe{ - desc = "It's almost broken."; - force = 8; - name = "damaged pickaxe"; - throwforce = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lM" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/shovel, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lN" = ( -/obj/item/pickaxe/drill, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lP" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/closed/wall/ice, -/area/awaymission/cabin/caves) -"lQ" = ( -/obj/structure/sign/warning/enginesafety{ - desc = "A sign detailing the various safety protocols when working on-site to ensure a safe shift. It seems to particularly focus on how dangerous the sawblade is."; - name = "\improper LUMBERMILL SAFETY" - }, -/turf/closed/wall/mineral/wood, -/area/awaymission/cabin/lumbermill) -"lR" = ( -/obj/structure/closet/crate/wooden{ - desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; - name = "wooden box" - }, -/obj/item/paper{ - info = "Moving these crates through a tunnel that isn't even finished yet is really annoying. It's such a pain in the ass to haul even a single crate to the cabin. It made sense to haul food and other goods however these are fake fucking trophies. Why do they even need these fake artifacts for some asshole's trophy case? We'll just leave the crates in the cave that has all those bones inside. Fuck it."; - name = "Shipment Delivery Note" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"lT" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Seriously, I can't map an entire soviet bunker and new landscape for you. You can't get past this."; - name = "Soviet Hatch" - }, -/area/awaymission/cabin/caves/sovietcave) -"lW" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"lX" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/caves) -"lY" = ( -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/caves) -"lZ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow{ - name = "packed snow"; - slowdown = 0 - }, -/area/awaymission/cabin/caves) -"ma" = ( -/obj/structure/flora/stump{ - desc = "Breaking it should be easy."; - max_integrity = 20; - name = "old stump" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mc" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass2"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"md" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/structure/flora/tree/pine, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"me" = ( -/obj/structure/flora{ - desc = "Looks frozen."; - icon = 'icons/obj/flora/snowflora.dmi'; - icon_state = "snowgrass3"; - name = "frozen flora" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"mg" = ( -/mob/living/simple_animal/hostile/bear/russian{ - desc = "He'll hold the line against you!"; - light_range = 3; - melee_damage_upper = 25; - name = "Artyom"; - speak = list("Blyat!","Rawr!","GRR!","Growl!"); - wander = 0 - }, -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"mh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow{ - floor_variance = 0; - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/cabin/caves) -"mi" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/shreds{ - pixel_x = 10; - pixel_y = -12 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mj" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/generic{ - pixel_x = -17 - }, -/obj/effect/decal/cleanable/shreds{ - pixel_y = -12 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mk" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/structure/sign/nanotrasen, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"ml" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mm" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mn" = ( -/obj/structure/fence/cut/large{ - dir = 4 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mo" = ( -/obj/structure/fence/cut/medium{ - dir = 4 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mp" = ( -/obj/structure/fence/cut/medium{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mq" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/cleanable/generic{ - pixel_x = 11; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/shreds{ - pixel_y = -12 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mr" = ( -/obj/effect/decal/cleanable/shreds{ - pixel_x = -12; - pixel_y = -12 - }, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"ms" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/cabin/caves) -"mt" = ( -/obj/structure/fence, -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mu" = ( -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mv" = ( -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mw" = ( -/obj/structure/sign/warning{ - name = "\improper SAWBLADE WARNING"; - pixel_x = -32 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"my" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/gun/ballistic/automatic/surplus{ - desc = "Uses 10mm ammo and its bulky frame prevents one-hand firing. It has the word CHEKOV engraved on the stock."; - name = "chekov's rifle" - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mz" = ( -/obj/structure/fence/end, -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mA" = ( -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/closed/wall/ice, -/area/awaymission/cabin/caves) -"mB" = ( -/turf/open/floor/plating/snowed/smoothed, -/area/awaymission/cabin/caves) -"mC" = ( -/obj/item/flashlight/flare, -/obj/effect/light_emitter{ - name = "cave light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mD" = ( -/obj/structure/closet/crate/wooden{ - desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; - name = "wooden box" - }, -/obj/item/fakeartefact, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mE" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/closed/indestructible/rock/snow, -/area/awaymission/cabin/caves) -"mF" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow, -/turf/open/floor/plasteel/dark/snowdin, -/area/awaymission/cabin/caves) -"mG" = ( -/obj/effect/turf_decal/weather/snow, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow, -/turf/open/floor/plasteel/dark/snowdin, -/area/awaymission/cabin/caves) -"mH" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - desc = "A reanimated skeleton covered in thick sheet of natural ice. It is obvious to tell that they look really slow."; - maxHealth = 20; - melee_damage_lower = 5; - melee_damage_upper = 5; - name = "frozen skeleton"; - speed = 7; - wander = 0 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"mI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mJ" = ( -/obj/effect/turf_decal/weather/snow, -/turf/open/floor/plasteel/dark/snowdin, -/area/awaymission/cabin/caves) -"mK" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Seriously, You can't get past this."; - name = "Soviet Hatch" - }, -/area/awaymission/cabin/caves/sovietcave) -"mM" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mN" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mP" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/cabin/caves) -"mQ" = ( -/obj/structure/closet/crate/wooden{ - desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; - name = "wooden box" - }, -/obj/item/fakeartefact, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"mR" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mS" = ( -/obj/machinery/door/airlock/vault{ - desc = "Made by the Russians."; - name = "Soviet Door" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"mT" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - desc = "A reanimated skeleton covered in thick sheet of natural ice. It is obvious to tell that they look really slow."; - maxHealth = 20; - melee_damage_lower = 5; - melee_damage_upper = 5; - name = "frozen skeleton"; - speed = 7; - wander = 0 - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"mU" = ( -/obj/effect/turf_decal/weather/snow, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"mV" = ( -/obj/effect/turf_decal/weather/snow, -/obj/item/flashlight/flare, -/turf/open/floor/plasteel/dark/snowdin, -/area/awaymission/cabin/caves) -"mW" = ( -/obj/effect/turf_decal/weather/snow, -/turf/closed/indestructible/rock/snow, -/area/awaymission/cabin/caves) -"mX" = ( -/obj/effect/turf_decal/weather/snow, -/obj/item/flashlight/flare, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"mY" = ( -/obj/effect/turf_decal/weather/snow, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"mZ" = ( -/obj/item/key/atv, -/obj/effect/decal/remains/human{ - color = "#72e4fa" - }, -/turf/open/floor/plating/ice/smooth, -/area/awaymission/cabin/caves) -"na" = ( -/obj/vehicle/ridden/atv{ - dir = 4 - }, -/turf/open/floor/plating/snowed, -/area/awaymission/cabin/caves) -"nb" = ( -/obj/effect/turf_decal/weather/snow, -/obj/item/pda/syndicate{ - background_color = "#0039A6"; - default_cartridge = /obj/item/cartridge/virus/clown; - desc = "A portable microcomputer by Thinktronic Systems, LTD. Seems like it may have useful information on it."; - name = "soviet PDA"; - note = "TRANSLATED TO GALACTIC COMMON:
DO NOT GO SOUTH." - }, -/obj/effect/decal/remains/human{ - color = "#72e4fa" - }, -/turf/open/floor/plasteel/dark/snowdin, -/area/awaymission/cabin/caves) -"nc" = ( -/obj/effect/baseturf_helper/asteroid/snow, -/turf/closed/wall/ice, -/area/awaymission/cabin/caves) -"ng" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/structure/ladder/unbreakable{ - alpha = 0; - desc = "Finally."; - height = 1; - icon_state = ""; - id = "whyisitcalledladder10andnotladder1"; - mouse_opacity = 0; - name = "" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"nh" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"ni" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"nj" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"nk" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest/sovietsurface) -"nl" = ( -/obj/structure/ladder/unbreakable/rune{ - desc = "Get me out of this boring room."; - height = 1; - icon_state = "hierophant"; - id = "GETMEOUTOFHEREYOUFUCKS"; - name = "\improper Return Rune" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"nm" = ( -/obj/structure/ladder/unbreakable/rune{ - desc = "I want out of this spookfest."; - icon_state = "hierophant"; - id = "GETMEOUTOFHEREYOUFUCKS"; - name = "\improper Emergency Escape Rune" - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"nn" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/indestructible/syndicate, -/area/awaymission/cabin/caves/sovietcave) -"no" = ( -/obj/structure/sign/warning, -/turf/closed/indestructible/syndicate, -/area/awaymission/cabin/caves/sovietcave) -"np" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Can you just stop?"; - name = "GO BACK THE WAY YOU CAME" - }, -/area/awaymission/cabin/caves/sovietcave) -"nq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/mine/sound/bwoink, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"nr" = ( -/obj/effect/mine/sound/bwoink{ - name = "explosive mine" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"ns" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2{ - desc = "No, the spider web doesn't have any secrets. For fucksake." - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"nt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/ladder/unbreakable/rune{ - color = "#ff0000"; - desc = "ONE HUNDRED AND TEN PERCENT REAL."; - id = "whatkindofnerdusesmapmakertocheattheirwaytoateleportrune"; - name = "\improper TOTALLY LEGIT PORTAL OF FUN" - }, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"nB" = ( -/obj/structure/table/wood/poker, -/obj/item/dice/d6{ - pixel_x = -8 - }, -/turf/open/floor/carpet, -/area/awaymission/cabin) -"nI" = ( -/obj/effect/rune/malformed{ - color = "#5772E0"; - cultist_desc = "The snowman council will now decide your fate."; - cultist_name = "The Snowman Council Rune"; - desc = "An odd collection of symbols drawn in what seems to be frozen water. Despite the fancy setup, the rune seems quite mundane which makes it unworthy of translation."; - icon_state = "2"; - invocation = "Frosty the Snowman was a jolly happy soul with a corncob pipe and a button nose and his eyes made out of coal!"; - invoke_damage = 60; - name = "ice rune" - }, -/obj/item/clothing/suit/snowman{ - desc = "The dead body of a snowman. There's holes to stick your own body in it."; - name = "snowman corpse" - }, -/obj/item/clothing/head/snowman{ - desc = "The head of a dead snowman. There's enough room inside for your own head."; - pixel_x = -1; - pixel_y = 10 - }, -/turf/open/floor/plating/asteroid/snow, -/area/awaymission/cabin/caves) -"nJ" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"nK" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating/snowed/temperatre, -/area/awaymission/cabin/snowforest) -"nL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/grunge, -/turf/open/floor/mineral/plastitanium/red{ - name = "soviet floor" - }, -/area/awaymission/cabin/caves/sovietcave) -"nM" = ( -/obj/machinery/door/airlock/glass_large{ - name = "Medical Bay" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/awaymission/cabin) -"nN" = ( -/obj/machinery/light/small, -/turf/open/floor/wood, -/area/awaymission/cabin) -"nO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"nR" = ( -/obj/structure/cable, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"nS" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/awaymission/cabin) -"nT" = ( -/obj/structure/window{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/awaymission/cabin) -"nU" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/freezer, -/area/awaymission/cabin) -"nV" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/door/airlock/maintenance{ - name = "Maintenance" - }, -/turf/open/floor/plating, -/area/awaymission/cabin) - -(1,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(3,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(4,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(5,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -"} -(6,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -"} -(7,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -gx -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(8,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -"} -(9,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gC -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -ab -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -"} -(10,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fy -fy -cx -cx -cx -cx -cx -gE -gE -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(11,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fp -fz -fz -fM -fP -ge -cx -cx -gF -fz -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ms -ms -ms -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(12,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fQ -gf -cx -cx -fv -fv -gK -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ab -gx -ms -ms -it -mH -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(13,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -eB -fr -fq -fJ -fN -cx -cx -cx -cx -fv -fv -gQ -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -gx -ms -ms -it -it -ms -ms -ms -ms -gx -gx -gx -gx -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(14,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -eP -fs -fq -fJ -fN -fP -gg -cx -cx -fv -fz -gS -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -gx -gx -ms -it -it -it -it -it -it -mP -ms -ms -gx -gx -gx -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(15,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fR -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -gx -ms -ms -it -it -hO -hO -it -it -it -it -mP -gx -gx -gx -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -"} -(16,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fq -fq -fJ -fN -cx -cx -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -gx -ms -it -it -hO -mQ -hO -it -it -it -it -mP -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(17,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fP -gh -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ms -ms -it -hO -hO -hO -hO -it -it -it -it -mP -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(18,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fq -fE -fJ -fN -fS -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ms -it -it -hO -hO -mT -hO -it -ms -it -it -ms -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(19,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -cx -cx -cx -cx -fv -gJ -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -ms -mD -it -hO -hO -hO -hO -it -it -it -it -ms -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(20,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fg -fr -fq -fJ -fN -fT -gi -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -ms -ms -it -hO -hO -hO -hO -hO -it -it -it -ms -gx -gx -gx -ab -ab -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -"} -(21,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fh -ft -fF -fK -fN -fU -gj -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ms -ms -mH -hO -hO -mQ -hO -hO -mH -it -it -ms -ms -gx -gx -ab -ab -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -"} -(22,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -aj -ft -fF -fK -fN -cx -cx -cx -cx -fv -fz -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ms -it -it -hO -hO -hO -hO -hO -it -it -it -it -ms -gx -gx -gx -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -"} -(23,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fk -ft -fF -fK -fN -fP -gk -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -ms -it -it -it -hO -hO -hO -hO -it -it -ms -it -ms -ms -gx -gx -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -"} -(24,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fl -fs -fq -fJ -fN -fV -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -ms -it -hO -hO -hO -mT -hO -hO -it -it -it -it -it -ms -ms -gx -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -"} -(25,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -cx -cx -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -ab -ms -it -hO -hO -hO -hO -hO -hO -it -it -it -ms -it -it -ms -gx -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -"} -(26,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fq -fq -fJ -fN -fP -gl -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -gx -ms -it -hO -mQ -hO -hO -hO -it -it -it -it -it -it -it -mP -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -"} -(27,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fW -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -ms -ms -it -hO -hO -hO -hO -it -it -ms -it -ms -it -it -it -ms -ms -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -"} -(28,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fq -fq -fJ -fN -cx -cx -cx -cx -gG -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ms -it -it -it -hO -hO -it -it -ms -ms -it -it -it -it -it -it -ms -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -"} -(29,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fP -gm -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ms -ms -it -it -it -it -it -ms -ms -mP -mP -it -it -it -it -lR -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(30,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fm -fr -fq -fJ -fN -fX -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ms -ms -ms -ms -ms -ms -ms -ab -ab -mP -mP -it -ms -it -it -mP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(31,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fn -fs -fq -fJ -fN -cx -cx -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -hS -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -mP -it -it -it -ms -ms -ms -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(32,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cy -fq -fq -fJ -fN -fP -gn -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -gP -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -mP -mP -it -it -ms -ms -it -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(33,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fu -fz -fz -fO -fY -gf -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -ab -gx -gx -gx -mP -it -it -it -it -mH -ms -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(34,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fy -fy -cx -cx -cx -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -gx -gx -gx -gx -mP -mP -it -it -mP -mP -mP -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(35,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fv -fz -cx -fZ -go -gs -gw -fv -fz -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -mP -mP -it -it -mP -mP -mP -ab -ab -ab -ab -ab -ab -ab -ab -"} -(36,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fv -fv -fv -cx -gb -gp -gt -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -mP -it -it -it -it -mP -mP -ab -ab -ab -ab -ab -ab -ab -"} -(37,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -fo -fv -fv -fv -cx -cx -cx -cx -cx -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -ng -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kQ -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -it -kQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -mP -mP -it -it -it -it -mP -mP -ab -ab -ab -ab -ab -ab -"} -(38,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -fv -fv -fv -fv -fv -fv -fz -fv -fv -fv -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -gP -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mP -mP -it -it -ms -it -it -mP -ab -ab -ab -ab -ab -ab -"} -(39,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fz -fv -fv -fv -gq -fv -fv -fv -fz -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -gP -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -me -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -mP -mH -it -it -it -it -ms -mP -ab -ab -ab -ab -ab -ab -"} -(40,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -kx -ac -ac -ac -ac -ac -ac -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -it -kx -kx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ms -ms -ms -it -it -it -ms -ms -ab -ab -ab -ab -ab -ab -"} -(41,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -it -it -it -it -kv -kx -kx -ab -ab -ab -ab -ab -ab -ab -kw -kw -hO -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -gP -kx -kx -kx -lW -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ms -ms -it -it -it -ms -ab -ab -ab -ab -ab -ab -"} -(42,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -gc -gc -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -it -it -it -hO -kw -dj -kx -kx -kx -kx -ab -ab -ab -ab -kw -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -kx -it -kx -kx -ab -ab -ab -ab -kx -kx -kx -kx -ac -ac -ac -gP -ac -kx -kx -ab -ab -kx -kx -kx -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -gW -ac -ac -ac -ac -ac -ac -ac -it -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -iz -iz -mP -mP -mP -mP -mP -iz -iz -iz -iz -nc -ab -ab -ab -ab -ab -"} -(43,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -fI -fG -gd -gd -fG -fG -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -it -it -it -hO -hO -kw -dj -dj -dj -ac -kx -kx -kx -kx -kw -kw -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -gP -ac -kx -kx -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -kx -kx -kx -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -gP -ac -ac -ac -ac -eO -ac -ac -eO -ac -mi -mt -mz -kx -mE -mP -iz -mP -iz -mP -mP -mP -iz -iz -iz -mP -iz -mP -iz -iz -iz -iz -iz -iz -ab -ab -ab -ab -ab -"} -(44,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fH -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -it -it -it -it -hO -hO -kw -dj -dj -dj -dj -dj -ac -ac -gP -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -kx -kx -kx -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ma -kx -ac -ac -ac -ac -ac -ac -eO -aa -eO -ac -eO -ac -mj -mu -lP -mE -mE -iz -iz -mP -iz -iz -iz -mP -mJ -mJ -mJ -mJ -mJ -mJ -mU -mU -mY -mY -mU -mW -ab -ab -ab -ab -ab -"} -(45,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -gy -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -it -it -it -it -hO -hO -hO -kw -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -lW -kx -kx -ac -ac -ac -ac -gR -ac -ac -ac -ac -eO -ac -ac -ac -ac -mk -mu -mA -mA -mA -iz -mJ -mJ -mJ -mJ -mJ -mJ -mJ -mJ -mJ -mW -mW -mW -mX -mY -mY -mY -mW -mW -ab -ab -ab -ab -ab -"} -(46,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fL -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -hO -hO -hO -hO -kw -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -kx -kx -ab -ab -ab -kx -kx -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -gR -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ml -mv -mv -mF -mJ -mJ -mJ -mJ -mU -mU -mU -mJ -iC -iC -mP -mP -mP -hO -iC -mZ -hO -hO -mP -mP -ab -ab -ab -ab -ab -"} -(47,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -hO -hO -hO -hO -hO -kw -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gR -eO -ac -ac -ac -ac -ac -mm -mv -mB -mB -iC -iC -iC -iC -iC -mP -mP -iC -iC -hO -hO -hO -hO -hO -hO -hO -hO -na -mP -mP -ab -ab -ab -ab -ab -"} -(48,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fI -gd -gd -fG -fI -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -hO -it -kv -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -dj -dj -dj -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -kx -kx -kx -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -mn -mv -mC -mB -iC -iC -iC -iC -mP -mP -mP -mP -iC -hO -hO -hO -hO -hO -hO -hO -hO -mP -mP -mP -ab -ab -ab -ab -ab -"} -(49,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -hO -it -kv -kx -ac -ac -ac -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -kx -kx -kx -kx -kx -kx -lW -kx -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -mo -mv -mu -mB -iC -iC -iC -iC -mP -mP -mP -mP -iC -hO -hO -hO -hO -hO -hO -hO -iC -mP -mP -mP -ab -ab -ab -ab -ab -"} -(50,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fH -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -hO -it -it -ab -kx -ac -ac -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -eO -ac -ac -ac -ac -ac -ac -ac -eO -ac -ac -mm -mv -mB -mB -iC -iC -iC -iC -iC -mP -mP -iC -iC -iC -iC -hO -hO -hO -hO -hO -iC -mP -mP -mP -ab -ab -ab -ab -ab -"} -(51,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -it -it -it -hO -hO -hO -hO -hO -it -it -it -ab -kx -ac -ac -dj -dj -dj -dj -ac -ac -iO -iN -ac -ac -ac -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gU -ac -gR -ac -ac -ac -ac -ac -ac -gR -ac -ac -ac -gR -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -mp -mv -mu -mG -mJ -mJ -mJ -mJ -mJ -mJ -mU -mJ -iC -iC -iC -iC -hO -iC -hO -iC -iC -mP -mP -mP -ab -ab -ab -ab -ab -"} -(52,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fH -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -gx -gx -it -it -it -hO -hO -hO -hO -hO -it -it -it -ab -kx -ac -ac -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -mk -mu -mA -mA -mA -iz -mJ -mJ -mJ -mV -mJ -mJ -mW -mW -mW -mU -mU -mU -mU -mU -mJ -nb -mW -mW -ab -ab -ab -ab -ab -"} -(53,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fH -fL -cx -cx -cx -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -it -it -it -ab -kx -ac -ac -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -eO -ac -ch -ac -mq -mu -lP -lP -mE -iz -iz -mP -iz -iz -iz -mP -mW -mW -mW -mW -mJ -mJ -mJ -mW -mW -mW -mW -mW -ab -ab -ab -ab -ab -"} -(54,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -it -it -it -it -hO -hO -hO -hO -it -it -it -ab -ab -kx -ac -ac -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -ac -ac -ac -ac -eO -ac -ac -ac -mr -mt -mz -kx -mE -mP -iz -mP -mP -iz -iz -iz -iz -iz -mP -mP -mP -iz -iz -iz -iz -mP -mP -mP -ab -ab -ab -ab -ab -"} -(55,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fI -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -it -it -it -it -hO -hO -hO -hO -it -it -it -ab -ab -kx -ac -ac -ac -dj -dj -dj -dj -dj -dj -ac -ac -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -eO -mc -kx -kx -mE -mP -ab -ab -ab -ab -ab -ab -ab -iz -iz -iz -mP -mP -mP -mP -mP -iz -iz -iz -iz -ab -ab -ab -ab -ab -"} -(56,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -fG -fG -cx -cx -cx -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -it -it -it -hO -hO -hO -hO -it -it -ab -ab -ab -kx -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(57,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -gz -fG -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -iK -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gU -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -me -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(58,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fH -fG -gd -gd -fG -fG -fG -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -hO -hO -hO -hO -it -it -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -ac -ac -ac -ac -gP -ac -ac -eO -ac -ac -ac -ac -ac -ac -kQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(59,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fI -fG -gH -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -it -hO -hO -hO -hO -it -gx -gx -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gR -ac -ac -ac -ac -ac -ac -ac -gR -ac -ac -ac -eO -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(60,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fI -gd -gd -fG -fG -gu -fG -fG -fG -fG -hK -kR -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -it -hO -hO -hO -hO -hO -it -gx -gx -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(61,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -gd -gd -fG -gA -fL -fG -gT -fH -gT -fG -kX -kZ -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -it -hO -hO -hO -hO -hO -it -it -it -gx -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -eO -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(62,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fL -gd -gd -gu -fG -fG -fI -fG -fG -fG -jL -fG -kR -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -hO -hO -hO -hO -hO -hO -it -it -it -gx -ab -ab -ab -kx -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -gW -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(63,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fH -fG -fG -gd -gd -gd -gd -gd -gd -gd -gd -hJ -hJ -gd -gd -gc -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -ki -ki -kq -ks -ki -ki -ki -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(64,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fH -gd -gd -gd -gd -gd -gd -gd -gd -hJ -hJ -gd -gd -gc -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -ko -ki -ki -ki -ki -ku -ki -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kQ -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(65,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fG -fG -fG -fH -fG -fG -fG -fG -fG -fG -fG -fG -fL -fG -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -hO -hO -hO -hO -hO -hO -it -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gU -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(66,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -fG -fI -fG -fG -fL -fG -fG -fG -fG -fI -fG -fG -fG -fG -fI -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fA -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gW -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -kx -mc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(67,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -fG -fG -fG -fG -fG -gB -fG -fG -fG -fG -fG -fH -fG -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -fw -fB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(68,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -cx -gD -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fw -fC -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kh -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -lW -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(69,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -gr -gr -gr -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -it -it -it -gx -gx -gx -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -hN -ac -ac -em -fx -fx -fB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gR -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(70,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -gr -gr -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -it -it -it -gx -gx -gx -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fw -fx -fx -fD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(71,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -hO -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fw -fx -fC -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(72,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -hO -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cR -ek -ek -ek -ek -ek -ek -fx -fx -fC -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gU -ac -ac -kQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(73,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hO -hO -hO -hO -hO -hO -hO -hO -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cR -bS -ce -ce -ce -bS -bS -bS -fx -fx -fC -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(74,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -cx -cx -cx -cx -gr -gr -cx -cx -cx -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -hO -hO -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -cR -bS -bS -cf -cf -cf -bS -bS -bS -fx -fx -fx -fB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gW -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(75,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -hO -hO -hO -hO -hO -hO -hO -it -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ef -bS -bS -cg -cg -cg -bS -bS -bS -fx -fx -fx -fC -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(76,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -it -hO -hO -hO -hO -hO -hO -hO -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -cr -el -el -en -el -el -el -el -el -ep -ep -ep -er -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(77,1,1) = {" -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -an -an -an -an -an -an -an -ao -ao -an -an -an -an -an -an -an -an -ba -ba -an -eq -eq -eq -eq -an -dB -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(78,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -it -it -it -it -it -ki -ki -ki -ki -ki -kr -it -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aV -jr -au -jk -an -aq -aq -an -bl -bM -ij -bT -cs -bl -an -aq -aq -an -cS -aL -aL -aL -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(79,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -gx -gx -it -it -ki -ki -ki -kp -ki -ki -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dB -iZ -aN -jl -az -bb -bb -eg -bm -eg -nR -an -eg -eg -eg -eg -eg -eg -hB -eg -eg -an -cT -cV -gL -cV -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(80,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -it -gx -it -it -it -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -iZ -jy -jG -az -bb -az -aq -an -aq -ht -an -cA -an -an -an -an -hx -an -aq -eg -an -cU -aL -aL -ec -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(81,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -gx -gx -gx -gx -iK -hO -hO -hO -hO -hO -hO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -iZ -bp -aq -az -az -az -aq -an -aq -eg -an -eg -aq -aq -aq -aq -eg -an -aq -eg -an -cV -gL -cV -cV -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(82,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -it -gx -gx -gx -it -it -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aA -aI -aA -aq -an -br -eg -an -cE -aq -aq -aq -aq -ht -an -aq -ht -an -aL -aL -aL -ed -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(83,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -it -it -gx -it -it -it -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -an -nU -an -an -an -aR -an -aq -eg -an -eg -aq -aq -aq -aq -eg -an -aq -eg -an -cU -cW -aL -gN -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -gW -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(84,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -gx -it -it -hO -hO -hO -hO -hO -hO -hO -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -dB -an -as -aB -aH -an -an -an -aq -eg -an -cz -eg -eg -eg -eg -ht -an -aq -eg -an -ed -aL -aL -kE -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(85,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -dB -an -an -an -an -an -aS -hg -aq -ht -an -nT -bo -bo -bo -bo -cB -an -aq -eg -bV -ed -ed -gM -an -an -dB -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(86,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -at -aC -aH -an -an -an -aq -eg -an -aO -aO -aO -aO -aO -az -az -aq -eg -an -eb -cX -an -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(87,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -an -nU -an -an -an -aT -an -aq -eg -an -az -aq -aq -az -aq -aq -cO -aq -ht -an -an -an -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -gP -ac -ac -ac -ac -md -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(88,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -au -jt -aV -aq -an -bs -eg -eh -bb -eg -bb -hC -bb -hE -he -hG -eg -eN -an -dB -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dX -dj -dj -dj -dj -dj -dX -dj -dj -dj -dj -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(89,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gv -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kC -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -dB -ja -aN -aq -az -az -az -aq -an -aq -eg -an -aP -az -ej -nB -hd -az -aO -aq -eg -aq -an -an -dB -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(90,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -gr -gr -gr -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -kz -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ja -jy -jF -az -bb -bb -aq -an -aq -ht -an -bq -az -ha -hc -hd -az -az -aq -eg -aq -aN -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(91,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -iK -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -ab -ab -kx -it -ac -hV -ac -hT -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -dB -ja -bp -jm -az -az -bb -eg -iY -eg -eg -an -bt -az -ej -jx -hd -az -cO -aq -eg -aq -iR -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(92,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -iK -it -it -gx -gx -gx -gx -ab -ab -ab -kx -kB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aA -aI -aA -jj -an -eg -aq -an -cN -aq -az -aO -az -ci -hF -cC -eg -aq -bp -ao -dB -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dX -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(93,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -cx -cx -cx -cx -cx -cx -cx -cx -cx -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -gx -gx -gx -gx -gx -ab -ab -ab -kx -kP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -dB -dB -an -an -an -an -an -an -an -ct -aq -an -jE -aq -aq -az -aq -aq -aO -aq -eg -aq -an -an -dB -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -ea -dj -dj -dj -dj -dj -dX -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(94,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -dB -an -an -aq -aV -ju -au -ji -an -eg -aq -an -cO -cO -cO -cO -cO -az -az -aq -ht -an -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dY -ea -dY -ea -dY -dj -dj -dj -dj -dj -dj -ac -ac -gW -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(95,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -iK -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jb -aN -jn -az -bb -bb -eg -iX -eg -ht -an -hb -bU -ev -eu -cK -cD -an -aq -eg -aq -an -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -dj -dj -dj -dj -dj -dj -dY -ea -dY -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(96,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jb -jy -jH -az -bb -az -aq -an -aq -eg -an -hn -aq -eg -eg -eg -eg -an -aq -eg -aq -aN -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(97,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -co -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -it -it -it -iK -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -kx -kx -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jb -bp -aq -az -az -az -aq -an -aq -eg -an -bv -bN -nO -aq -ap -eg -an -aq -eg -aq -iU -ao -dB -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(98,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aA -aI -aA -aq -an -br -eg -an -an -an -an -bu -an -eo -an -aq -eg -aq -bp -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -gP -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(99,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -iK -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -kQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -an -nU -an -an -an -aU -an -aq -eg -an -bw -bO -bO -bO -bO -hz -eo -eg -eg -aq -an -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(100,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -bI -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dB -an -as -aB -aH -an -an -an -aq -eg -an -bx -bO -cJ -cF -cJ -hz -an -aq -ht -an -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dX -dj -dj -dj -dj -dj -dj -dj -dj -dX -dj -dj -dj -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(101,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -iK -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -dB -an -an -an -an -an -hf -hy -aq -eg -an -by -bO -bO -bO -bO -hz -an -aq -eg -aq -an -an -dB -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(102,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -ab -ab -it -it -it -it -it -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -hO -it -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -dB -an -at -aC -aH -an -an -an -aq -ht -an -bz -bO -bW -ck -cj -hz -an -aq -eg -aq -aN -ao -dB -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dX -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(103,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -it -it -it -it -it -hO -hO -iL -iL -iL -iL -iL -iL -iL -iL -iL -it -it -it -it -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -an -nU -an -an -an -aW -an -aq -eg -an -an -an -an -an -an -hA -an -aq -eg -aq -iS -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(104,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iK -it -it -it -it -iL -iL -iL -iL -iL -iL -iL -iL -iL -iL -iL -it -it -it -it -it -iK -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dB -an -an -aq -au -jv -aV -aq -an -bs -eg -an -bA -bB -bX -cl -cl -hi -an -aq -eg -aq -bp -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(105,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -it -it -it -it -iL -iL -iL -iL -it -iL -iL -iL -it -it -iL -iL -it -it -iK -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -dB -jc -aN -aq -az -az -az -aq -an -aq -eg -an -bB -bB -bB -bB -hi -hi -an -hh -eg -aq -an -an -dB -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(106,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -it -it -it -it -it -it -it -it -it -iL -iL -iL -it -it -it -iL -iL -it -it -it -it -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jc -jy -jI -az -bb -az -aq -an -aq -eg -an -bC -bB -bY -is -dt -cG -an -aq -ht -an -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -dj -dj -dj -ac -ac -gW -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(107,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -it -iK -it -it -it -it -it -it -it -iL -iL -kn -it -it -it -iL -iL -it -it -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -dB -jc -bp -jo -az -bb -bb -eg -iW -eg -eg -an -an -an -an -an -an -an -an -aq -eg -aq -an -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dj -dj -dj -dj -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(108,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -it -it -it -it -it -it -it -it -iv -iv -kj -iv -iv -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -dB -an -an -au -aA -aI -aA -jg -an -eg -aq -an -aJ -bG -bE -cv -hq -cv -an -aq -eg -aq -aN -ao -dB -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(109,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -it -iv -iv -iM -iM -iM -iv -iv -it -it -iL -iL -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kg -dB -an -an -an -an -an -an -an -ct -bh -an -aK -bE -bE -bE -bE -lz -an -aq -eg -aq -iT -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(110,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -it -it -it -it -it -it -iv -iM -iM -iM -iM -iM -iv -it -it -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aV -jw -au -jh -an -eg -aq -an -bD -bE -bE -cI -hD -cP -nM -eg -eg -aq -bp -ao -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(111,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -it -it -it -it -it -iv -iP -iM -kl -iM -iM -iv -it -it -iL -iL -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jd -aN -jp -az -bb -bb -eg -iV -eg -aq -an -bE -bE -bE -cP -jq -bE -bE -aq -eg -aq -an -an -dB -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(112,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -it -it -it -iK -it -iv -iM -iM -iM -iM -iM -iv -it -it -iL -iL -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -it -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -dB -jd -jy -jJ -az -bb -az -aq -an -eg -aq -an -bF -bP -cm -ho -bE -lz -an -aq -eg -an -an -dB -dB -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(113,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -it -it -it -it -iv -iv -iQ -km -iQ -iv -iv -it -it -iL -iL -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -it -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -jd -bp -aq -az -az -az -aq -an -eg -nS -an -bF -bQ -cu -hp -js -hp -an -aq -eg -an -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(114,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -gx -gx -ab -it -it -it -iv -iv -iv -iv -iv -it -it -it -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -an -aq -aA -aI -aA -aq -an -in -nN -an -an -an -an -an -an -an -an -aq -ht -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(115,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -gx -gx -gx -gx -gx -gx -kt -kt -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -dB -dB -an -nU -an -an -an -aU -an -eg -eg -nV -ei -et -hj -hr -hs -et -nV -eg -eg -an -dB -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(116,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -an -as -aB -aH -an -an -an -ar -an -an -an -an -an -an -an -an -an -cM -hm -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(117,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kt -kt -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -cY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dB -dB -an -an -an -an -an -aX -bf -bb -an -bj -bH -an -kk -aq -aq -aq -io -az -bb -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(118,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ax -an -aF -cL -aw -jC -bb -bb -az -an -bk -bJ -an -aq -aq -aq -eg -cH -cQ -hH -an -dB -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(119,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -it -it -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dD -dH -dH -dH -dH -dH -dN -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ax -av -aw -ed -hu -an -aY -bc -bg -an -nU -an -an -aq -cp -eg -eg -aq -cQ -hI -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(120,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -it -iL -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ad -eG -eG -eH -eG -eG -ad -ad -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ax -aw -ed -ed -hv -an -hl -bd -az -an -jf -ay -an -aq -aq -aq -eg -cH -cQ -ee -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(121,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -it -iL -iL -iL -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ad -ad -jP -af -af -af -af -af -jP -ad -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ax -aD -aM -du -hw -an -aZ -be -az -bi -hk -bL -an -bn -aq -aq -aq -aq -az -az -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(122,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -it -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ad -af -af -af -af -jB -af -af -af -af -ad -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -dB -ax -aE -aQ -dv -an -an -ao -ao -ao -an -an -je -an -an -jD -jD -an -jA -jz -an -an -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(123,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -kx -ac -ch -ac -ac -ac -ac -ac -ac -ac -ad -ew -af -af -al -kf -ff -eQ -ak -af -af -eY -ad -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -ax -ax -ax -ax -ax -dB -dB -dB -dB -dB -dB -dB -dB -an -ao -ao -an -ao -ao -an -dB -dB -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(124,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -iL -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ad -af -af -ak -af -am -af -fe -af -af -ad -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dB -dB -dB -dB -dB -dB -dB -ac -ac -ac -ac -ac -ac -dB -dB -dB -dB -dB -dB -dB -dB -dB -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(125,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -jM -af -af -af -jV -af -af -af -jM -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(126,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -gY -af -af -af -af -af -af -af -jR -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(127,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -iL -iL -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ch -ac -ac -ac -ac -ac -ad -gY -af -af -ak -af -ak -af -af -kD -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(128,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ch -ac -ac -ad -jQ -af -ak -jX -af -ka -ke -af -eA -ad -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dA -dC -dC -gO -dC -gO -dC -dC -dC -dC -lP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(129,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iz -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ad -gY -af -jW -af -af -jU -jT -af -jR -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(130,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iz -iz -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -iL -iL -iL -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ad -jM -af -kb -gZ -af -af -jS -af -jM -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -es -ac -ac -dx -dz -dz -dz -dz -dz -gX -dz -dz -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(131,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iA -iC -gx -gx -iA -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -iL -iL -iL -it -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iK -kx -ac -ac -ac -ac -ac -ac -ac -ad -ad -af -af -ak -ak -af -kd -kc -af -af -ad -ad -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dy -dz -dz -dz -dz -dz -dz -dz -dz -gX -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(132,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iB -iC -iG -iC -iH -gx -gx -gx -gx -gx -gx -gx -gx -iK -it -iL -iL -iL -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ad -ex -af -af -af -jZ -af -jY -af -af -af -eZ -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -ga -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -lX -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(133,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iz -iA -iC -iC -iC -iJ -iz -gx -gx -gx -gx -gx -it -it -it -it -iL -iL -iL -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ad -ad -af -af -af -af -af -af -af -af -af -ad -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dL -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(134,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iz -iz -iD -iH -iI -iz -iz -gx -gx -gx -gx -it -it -it -it -iL -iL -iL -it -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ch -ac -ch -ac -ac -ac -ac -ae -ad -ad -jO -af -af -af -af -af -jO -ad -ad -fb -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(135,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -iz -iz -iz -iz -iz -it -gx -gx -gx -it -it -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -ad -ad -eH -eG -lQ -eG -eH -ad -ad -cZ -fc -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dz -dz -dz -gX -dz -dz -dz -dz -dz -gX -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(136,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -gx -gx -gx -gx -it -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -iK -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -mw -bS -bS -eI -eM -eU -bS -bS -mw -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -gX -dz -dz -dz -dz -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(137,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -gx -gx -gx -it -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ch -ac -ag -cZ -bS -bS -eE -eJ -eR -eV -eE -bS -bS -cZ -fc -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -gX -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(138,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -hO -it -it -it -gx -gx -gx -it -it -iL -iL -iL -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ch -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -bS -eD -eF -eJ -eR -eV -eF -eD -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -dx -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(139,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -hO -hO -it -it -iE -gx -gx -gx -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -bS -eE -cZ -eJ -eR -eV -cZ -eE -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(140,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -hO -hO -it -it -it -gx -gx -it -it -it -iL -iL -iL -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ch -ac -ac -ac -ac -ac -ac -ah -cZ -bS -eF -cZ -eK -eR -eV -cZ -eF -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -gX -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -dz -kA -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(141,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -hO -hO -it -it -it -gx -it -it -it -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -bS -bS -cZ -eJ -lC -eV -cZ -bS -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -aG -dg -dg -dE -dE -dE -dE -dE -dE -hZ -hZ -dg -dg -if -lX -lY -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(142,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -hO -hO -it -it -it -it -it -it -it -it -it -iK -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ch -ac -ac -ac -ag -cZ -bS -bS -cZ -nJ -eS -nK -cZ -bS -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -bK -dh -di -dF -dO -dF -dh -dF -dF -dF -dF -ic -dp -nh -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(143,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -it -hO -it -it -it -it -it -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ch -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -bS -bS -bS -eJ -lC -eV -bS -bS -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -kA -bK -di -di -ds -di -di -dw -di -hY -di -di -di -dh -nh -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(144,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -it -iE -hO -hO -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -bS -bS -bS -eK -eR -eW -bS -bS -bS -cZ -fc -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -da -dk -di -dG -dG -dG -dG -dJ -dG -dI -dG -di -id -ni -lX -lY -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(145,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -it -hO -hO -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ky -ac -ac -ac -ac -ac -ac -ac -ac -ac -ag -cZ -cZ -bS -bS -eL -eT -eX -bS -bS -cZ -cZ -fc -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -kx -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -dx -dz -gX -dz -dz -db -dl -dr -dI -di -di -dU -fi -di -dh -dG -di -id -ni -lZ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(146,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ai -cZ -cZ -cZ -bS -bS -bS -bS -bS -cZ -cZ -cZ -fd -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dc -dm -di -dG -dP -di -dh -dW -dS -ia -dG -di -id -ni -lX -lY -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(147,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -kx -kx -ac -ac -ch -ac -ac -ac -ac -ac -ch -ac -ey -ez -eC -eC -eC -eC -eC -eC -eC -eC -eC -fa -ey -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -it -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dd -dn -di -dG -di -dS -di -hX -di -di -dG -di -ie -ni -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(148,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -ix -hO -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ky -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -ab -ab -ab -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -dx -dz -dz -dz -dz -dd -dn -ds -dG -di -dT -di -dh -di -dh -dG -di -id -ni -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(149,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -kx -kx -kx -kx -kx -kx -kx -ac -ac -ac -ac -ac -gP -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -gP -ac -dx -dz -dz -dz -dz -de -do -di -dG -di -dh -di -di -di -ib -dG -dw -id -nj -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(150,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ch -ac -ac -ac -ch -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -kx -kx -kx -ac -ac -ac -ac -kx -kx -kx -kx -ab -ab -ab -ab -ab -kx -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gP -kx -kx -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -ac -kx -kx -lP -lX -dz -gX -dz -db -dl -di -dJ -dQ -di -dV -di -dU -dV -dI -dh -ie -ni -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(151,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -gP -ac -ac -ac -kx -kx -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -it -kx -ab -ab -lX -lX -dz -dz -da -dk -dw -dG -dI -dG -dG -dG -dG -dG -dG -di -id -ni -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(152,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -gP -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ab -ab -ab -ab -lX -lX -kA -bK -di -di -dh -di -di -dW -ds -di -di -di -di -di -nh -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(153,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lX -lX -bK -dp -dh -dK -dR -dK -dK -dK -dh -dK -dK -di -dp -nh -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(154,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -ix -hO -hO -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -ab -kx -ac -ac -ac -ac -kx -kx -kx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lX -df -dq -dq -dM -dM -dM -dZ -dM -dM -dM -dM -dq -dq -nk -lX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(155,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -it -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ch -ac -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -kx -kx -kx -it -kV -kx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lX -lX -lX -dz -dz -lX -lX -lX -dz -dz -dz -lX -lX -lX -lX -lZ -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(156,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -hO -hO -hO -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kx -kx -kx -kx -kx -kx -kx -ac -ch -ac -ch -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -gx -iv -iv -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lX -lX -lZ -lX -ab -lX -lX -lX -lZ -lX -ab -gx -lX -lY -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(157,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -it -it -iF -it -it -it -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ch -ac -kx -kx -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -gx -gx -gx -iv -iv -gx -gx -gx -gx -it -it -gx -gx -lp -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lY -ab -ab -ab -lY -ab -ab -lY -ab -ab -gx -gx -iL -iL -iL -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(158,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -it -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -ac -gW -ac -ac -ch -ac -ac -ac -ac -ch -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -iK -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -gx -gx -gx -iv -iv -gx -gx -it -it -it -it -it -it -it -it -it -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -it -iL -iL -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(159,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -it -hO -hO -hO -hO -hO -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -ac -ac -ac -ac -ac -ac -ch -ac -ac -ac -ac -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -kU -it -it -gx -gx -nl -it -it -it -it -it -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -iL -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(160,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -hO -hO -hO -hO -hO -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -kx -kx -kx -kx -kx -kx -kx -kx -kx -kx -kx -kx -kx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -it -it -gx -gx -it -it -it -it -it -it -it -gx -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -iL -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(161,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -hO -hO -hO -hO -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -it -kT -it -gx -gx -gx -gx -it -it -it -it -it -it -lu -lu -lu -it -iK -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -iL -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(162,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -gx -gx -gx -gx -gx -it -it -it -it -lu -it -it -it -lu -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(163,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ix -hO -hO -it -it -it -it -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -it -it -kU -it -gx -gx -gx -gx -gx -it -it -it -it -it -nI -it -lu -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -it -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(164,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -kU -it -it -it -gx -gx -gx -gx -gx -gx -lp -gx -lu -it -it -it -lu -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -iL -iL -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(165,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -iy -hO -it -it -it -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -kU -gx -gx -gx -gx -gx -gx -gx -gx -lB -lu -lu -iK -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -it -iL -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(166,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -it -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -gx -it -it -it -hO -hO -hO -ix -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -gx -ab -iL -iL -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(167,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -hL -hO -hO -hO -hO -hO -it -it -it -it -gx -gx -gx -it -it -it -it -gx -gx -hO -ix -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -kS -it -it -gx -it -kU -it -kT -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -ab -gx -gx -ab -iL -iL -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(168,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -hM -hP -hQ -hP -hW -hO -it -gx -it -it -it -it -it -it -it -it -gx -gx -gx -gx -hO -hO -ix -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -gx -ab -iL -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(169,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -hM -hQ -hR -hQ -ig -il -hO -gx -gx -gx -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -kU -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -ab -ab -iL -iL -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(170,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -hM -hP -hQ -hP -ih -hO -hO -gx -gx -gx -iv -iw -iv -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -kT -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -iL -iL -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(171,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -hL -hO -hO -hO -hO -hO -gx -gx -gx -gx -iv -iv -iv -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kU -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -it -iL -iL -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(172,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -kS -gx -it -it -kU -gx -gx -gx -gx -gx -gx -gx -lh -gx -it -it -kU -it -it -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -it -iL -iL -iL -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(173,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -it -it -gx -gx -gx -gx -gx -la -it -it -it -it -gx -gx -it -it -it -kU -gx -it -kS -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -it -iL -iL -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(174,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -ab -gx -gx -gx -it -gx -it -it -it -gx -gx -gx -gx -it -it -it -it -it -it -it -it -it -it -it -it -it -it -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -iL -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(175,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hO -hO -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -it -gx -gx -gx -gx -it -kU -it -gx -gx -kT -gx -it -gx -gx -it -it -it -it -it -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -iL -iL -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(176,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -hO -hU -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -gx -gx -gx -gx -it -it -it -gx -it -it -it -it -kU -gx -gx -lE -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -iL -iL -iL -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(177,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -iK -it -kU -it -gx -gx -gx -it -it -kT -it -it -it -it -kU -it -it -gx -it -it -it -it -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -iL -iL -iL -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(178,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -gx -gx -gx -gx -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -it -gx -it -kT -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -iL -iL -iL -iL -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(179,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -it -gx -gx -gx -gx -it -kU -it -it -ld -gx -lm -ld -gx -gx -gx -it -gx -it -it -it -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -iL -iL -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(180,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -it -gx -gx -gx -it -it -gx -gx -gx -le -le -le -lg -le -lf -gx -it -gx -gx -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(181,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -gx -gx -gx -gx -kU -it -gx -gx -gx -gx -li -ld -lq -lk -lv -gx -it -gx -gx -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -iL -iL -it -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(182,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -kT -it -gx -gx -gx -it -it -gx -gx -gx -lf -li -le -lr -le -ld -gx -it -gx -gx -it -it -kU -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iK -iL -iL -iL -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(183,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kS -gx -it -kU -gx -gx -gx -it -it -gx -gx -gx -gx -lj -le -li -le -lw -gx -it -gx -it -it -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -it -it -it -iL -iL -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(184,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -gx -gx -gx -kW -it -gx -gx -gx -gx -gx -ln -le -ld -lx -gx -it -gx -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -iL -iL -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(185,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -gx -gx -gx -it -it -it -gx -gx -gx -gx -gx -ls -le -ly -gx -kT -gx -it -it -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -ab -ab -ab -iL -iL -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(186,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -gx -gx -gx -it -gx -kU -gx -gx -gx -gx -li -le -le -lo -gx -nm -gx -it -it -gx -it -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -it -iL -iL -it -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(187,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -gx -gx -gx -it -it -it -it -gx -gx -le -lk -le -ld -lA -gx -gx -gx -lF -gx -gx -kU -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -it -it -iL -iL -it -it -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(188,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kU -it -gx -gx -gx -gx -it -iE -it -it -lg -le -le -lg -lt -gx -gx -gx -it -it -it -gx -it -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -iL -iL -ab -it -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(189,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -gx -gx -gx -gx -gx -kU -it -gx -lk -lo -gx -gx -gx -gx -gx -it -gx -gx -gx -it -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -iL -iL -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(190,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -kU -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -gx -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -gx -gx -iL -iL -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(191,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -kT -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -gx -gx -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -gx -ab -ab -iL -iL -ab -ab -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(192,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -gx -gx -kY -it -it -ll -it -kT -it -ll -it -kT -it -it -it -gx -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -ab -gx -ab -it -iL -iL -it -it -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(193,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -kU -it -it -it -it -it -it -gx -gx -gx -gx -gx -gx -it -it -it -kU -gx -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -ab -ab -iL -iL -it -it -it -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(194,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -gx -it -kU -it -it -it -it -gx -it -gx -gx -gx -gx -it -it -gx -gx -gx -kT -it -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -gx -gx -ab -ab -gx -gx -gx -gx -gx -it -iL -iL -it -gx -it -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(195,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kS -it -it -it -it -kU -it -kT -it -it -it -gx -it -it -gx -it -gx -it -it -it -it -it -it -iK -gx -gx -it -it -it -kU -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -ab -gx -gx -gx -ab -ab -gx -gx -gx -ab -ab -gx -it -iL -iL -it -it -it -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(196,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -gx -gx -gx -gx -gx -it -it -gx -it -kU -gx -it -it -it -gx -gx -gx -it -kT -it -gx -it -it -it -gx -it -it -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -iL -iL -ab -ab -it -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(197,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -it -it -iK -it -gx -gx -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -gx -ab -ab -gx -gx -gx -gx -ii -ii -ab -ab -gx -iL -iL -it -ab -ab -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(198,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -gx -it -lp -it -it -it -it -gx -gx -it -kT -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -it -it -ab -it -iL -iL -it -ab -ab -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(199,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kT -it -iu -gx -it -lG -gx -gx -it -lK -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -ii -it -it -it -iL -iL -iL -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(200,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -kY -gx -it -it -it -gx -kU -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -it -it -iL -iL -iL -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(201,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kU -it -gx -gx -gx -it -it -it -it -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -ii -ii -mf -iL -iL -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(202,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -gx -gx -gx -gx -kU -gx -it -it -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ii -ii -ii -ii -ii -iL -mg -mh -it -it -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(203,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -lN -it -it -it -gx -gx -gx -gx -gx -it -it -iK -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -mM -im -mS -iL -iL -ii -it -it -iK -ii -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(204,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kS -it -it -it -lM -it -gx -gx -gx -it -lH -ii -ii -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ii -ii -ii -gx -ii -mO -im -ii -ii -ii -mS -ii -ii -ii -ii -ii -ii -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(205,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -kU -gx -it -it -kU -it -it -it -it -ii -iq -ii -gx -ii -ii -ii -ii -gx -ii -ii -ii -ii -gx -gx -ii -lb -im -ii -ii -ii -im -im -kF -iq -ii -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(206,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kU -it -gx -gx -gx -gx -gx -it -it -ii -ik -ii -ir -ii -ii -ii -kH -im -ii -ii -ii -kH -im -ii -ii -gx -ii -im -im -kF -kH -im -im -im -kF -kF -ii -mM -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(207,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -gx -gx -gx -lJ -it -lp -ik -im -ip -jK -im -im -ir -ir -ir -ir -im -ir -ir -ir -ir -ii -gx -ii -im -kF -kF -im -im -im -im -im -im -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(208,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -it -it -gx -gx -it -it -it -ii -ii -ii -jN -im -im -jK -im -im -jK -im -im -im -im -im -ii -ii -ii -im -my -kF -im -im -im -im -im -im -im -im -ii -gx -gx -gx -gx -gx -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(209,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -lL -it -it -it -it -it -it -it -ik -im -ip -im -im -im -im -im -ir -ir -im -im -im -im -im -ii -kO -ii -im -kF -kF -im -im -kJ -im -im -ii -ii -ii -ii -gx -gx -gx -gx -gx -gx -gx -ab -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(210,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -iK -gx -it -it -kU -it -ii -ik -ii -im -jK -im -im -im -ir -im -im -im -kJ -im -im -ii -ii -ii -im -im -kF -im -im -im -im -mI -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(211,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -kT -it -it -it -it -kU -ii -im -im -im -im -jK -ir -ir -im -im -im -im -im -ir -im -ii -ii -ii -ii -im -im -im -im -kF -ii -ii -gx -gx -gx -gx -gx -ab -gx -ab -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(212,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -it -it -it -lI -ii -ii -ii -kF -kF -kF -im -im -im -im -im -im -im -im -im -nL -kH -im -nL -im -im -im -im -kF -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(213,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -kT -it -gx -gx -ii -ii -kG -ii -ii -ii -ii -kI -im -im -im -ir -im -ii -im -kF -ii -mN -im -im -im -kF -mR -ii -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(214,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -it -gx -gx -gx -gx -ii -ii -ii -gx -gx -ii -ii -ir -ir -ir -ii -ii -ii -im -im -ii -ii -ii -ii -ii -ii -ii -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(215,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ir -im -ir -ii -kN -ii -kF -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(216,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -im -ii -ii -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(217,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -kK -kL -kM -ii -gx -ii -im -kF -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(218,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ii -ii -ii -ii -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(219,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -kF -mI -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(220,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(221,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lc -lc -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(222,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -iq -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(223,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -mI -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(224,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -iq -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(225,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(226,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(227,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(228,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -ab -gx -gx -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(229,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -ab -gx -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(230,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(231,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -iq -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(232,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(233,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -iq -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(234,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -jN -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(235,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -lS -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(236,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -lS -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(237,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -lS -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(238,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lT -mK -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(239,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(240,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -mI -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(241,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -mI -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(242,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(243,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(244,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -lS -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(245,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -nn -im -im -nn -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(246,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -no -jN -im -no -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(247,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -nn -jN -im -nn -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(248,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -no -im -lS -no -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(249,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -np -np -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(250,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -nq -nq -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(251,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -nr -nr -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(252,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(253,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -im -im -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(254,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ns -nt -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(255,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ii -ii -ii -ii -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} diff --git a/_maps/RandomZLevels/TheBeach.dmm b/_maps/RandomZLevels/TheBeach.dmm deleted file mode 100644 index f07fc6d4c62f..000000000000 --- a/_maps/RandomZLevels/TheBeach.dmm +++ /dev/null @@ -1,15461 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/indestructible/sandstone, -/area/awaymission/beach) -"ab" = ( -/turf/open/indestructible/binary{ - density = 1; - desc = "I can't move through this."; - icon = 'icons/misc/beach.dmi'; - icon_state = "water"; - name = "deep ocean water" - }, -/area/awaymission/beach) -"ac" = ( -/turf/open/floor/plating/beach/water, -/area/awaymission/beach) -"ad" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 1 - }, -/area/awaymission/beach) -"ae" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 8 - }, -/area/awaymission/beach) -"af" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 9 - }, -/area/awaymission/beach) -"ag" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 1 - }, -/area/awaymission/beach) -"ah" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 5 - }, -/area/awaymission/beach) -"ai" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 4 - }, -/area/awaymission/beach) -"aj" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 8 - }, -/area/awaymission/beach) -"ak" = ( -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"al" = ( -/obj/effect/overlay/palmtree_r{ - desc = "How did you get here?"; - icon_state = "palm2"; - name = "\proper island palm tree" - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"am" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 4 - }, -/area/awaymission/beach) -"an" = ( -/obj/effect/overlay/coconut{ - pixel_x = 17; - pixel_y = 7 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"ao" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 10 - }, -/area/awaymission/beach) -"ap" = ( -/turf/open/floor/plating/beach/coastline_t, -/area/awaymission/beach) -"aq" = ( -/turf/open/floor/plating/beach/coastline_t{ - dir = 6 - }, -/area/awaymission/beach) -"ar" = ( -/turf/open/floor/plating/beach/coastline_b, -/area/awaymission/beach) -"as" = ( -/obj/structure/flora/rock{ - desc = "A volcanic rock."; - name = "coastal rock" - }, -/obj/structure/flora/ausbushes/stalkybush{ - desc = "It can't be smoked."; - name = "sea weed" - }, -/turf/open/indestructible/binary{ - density = 1; - desc = "I can't move through this."; - icon = 'icons/misc/beach.dmi'; - icon_state = "water"; - name = "deep ocean water" - }, -/area/awaymission/beach) -"at" = ( -/obj/structure/flora/rock{ - desc = "A volcanic rock."; - name = "coastal rock" - }, -/turf/open/indestructible/binary{ - density = 1; - desc = "I can't move through this."; - icon = 'icons/misc/beach.dmi'; - icon_state = "water"; - name = "deep ocean water" - }, -/area/awaymission/beach) -"au" = ( -/obj/structure/closet/crate/wooden{ - desc = "Now this is what island exploration is all about."; - name = "Treasure Chest" - }, -/obj/item/clothing/head/pirate, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/suit/pirate, -/obj/item/melee/sabre{ - desc = "This isn't real however it can trick someone into thinking you have something real.."; - force = 0; - name = "foam pirate's sabre"; - throwforce = 0 - }, -/obj/item/melee/sabre{ - desc = "This isn't real however it can trick someone into thinking you have something real.."; - force = 0; - name = "foam pirate's sabre"; - throwforce = 0 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"av" = ( -/turf/open/floor/plating/beach/water{ - desc = "What's the difference?"; - name = "coastline water" - }, -/area/awaymission/beach) -"aw" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 6 - }, -/area/awaymission/beach) -"ax" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 10 - }, -/area/awaymission/beach) -"ay" = ( -/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ - dir = 4 - }, -/area/awaymission/beach) -"az" = ( -/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ - dir = 1 - }, -/area/awaymission/beach) -"aA" = ( -/obj/effect/overlay/palmtree_l, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aB" = ( -/mob/living/simple_animal/crab/kreb, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aC" = ( -/obj/item/flashlight/flare/torch, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aD" = ( -/obj/effect/overlay/coconut, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aF" = ( -/obj/structure/bonfire/prelit, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aG" = ( -/obj/item/clothing/mask/gas/tiki_mask, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aH" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{ - pixel_x = -17; - pixel_y = 17 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aI" = ( -/obj/item/melee/skateboard{ - color = "#6666ff"; - desc = "Yes, surf boards have wheels. Stop laughing."; - name = "surf board"; - pixel_x = -15; - pixel_y = 1 - }, -/turf/open/floor/plating/beach/water, -/area/awaymission/beach) -"aJ" = ( -/obj/item/reagent_containers/food/drinks/beer/light{ - pixel_x = -14; - pixel_y = 15 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aK" = ( -/mob/living/simple_animal/crab, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aO" = ( -/obj/effect/baseturf_helper/beach/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aQ" = ( -/obj/machinery/gateway/away, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aS" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ - pixel_x = -12; - pixel_y = 14 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"aT" = ( -/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ - dir = 8 - }, -/area/awaymission/beach) -"aX" = ( -/turf/closed/wall/mineral/sandstone, -/area/awaymission/beach) -"aY" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 5 - }, -/area/awaymission/beach) -"aZ" = ( -/obj/effect/overlay/palmtree_r, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"ba" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bb" = ( -/obj/structure/dresser{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bc" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bd" = ( -/turf/open/floor/wood, -/area/awaymission/beach) -"be" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bf" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 9 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bg" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bh" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 5 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bi" = ( -/obj/machinery/button/door{ - id = "changlinhut2"; - name = "changing room lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bj" = ( -/obj/machinery/button/door{ - id = "changlinhut1"; - name = "changing room lock"; - normaldoorcontrol = 1; - pixel_x = -24; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bk" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/glasses/heat, -/turf/open/floor/wood, -/area/awaymission/beach) -"bl" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "theloveshack1"; - name = "door lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/beach) -"bm" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "theloveshack2"; - name = "door lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/beach) -"bn" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "theloveshack3"; - name = "door lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/beach) -"bo" = ( -/turf/open/floor/plating/beach/coastline_t/sandwater_inner, -/area/awaymission/beach) -"bp" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 8 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bq" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/telecomms/relay/preset/mining, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"br" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bs" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "changlinhut2"; - name = "changing room" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bt" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "changlinhut1"; - name = "changing room" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bu" = ( -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/beach) -"bv" = ( -/obj/effect/overlay/palmtree_r, -/obj/effect/overlay/coconut, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bw" = ( -/turf/open/floor/plating/beach/coastline_b{ - dir = 9 - }, -/area/awaymission/beach) -"bx" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 10 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"by" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bz" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/stripes/asteroid/line{ - dir = 6 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bA" = ( -/obj/structure{ - desc = "Bar and beach south, dorms east."; - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "signpost"; - name = "directions signpost" - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bB" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "theloveshack1"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bC" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "theloveshack2"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bD" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "theloveshack3"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bE" = ( -/obj/effect/overlay/palmtree_l{ - pixel_y = 25 - }, -/obj/effect/overlay/coconut{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bF" = ( -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/sand, -/obj/structure/table/wood, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bG" = ( -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sandal, -/obj/structure/closet/crate, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bH" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bI" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "loveshack"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bJ" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "theloveshack4"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bK" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "theloveshack5"; - name = "Beach Hut" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"bL" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bM" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/turf_decal/sand, -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bN" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/turf_decal/sand, -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bO" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/turf/open/floor/wood, -/area/awaymission/beach) -"bP" = ( -/obj/item/trash/chips{ - pixel_x = -18; - pixel_y = 7 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bQ" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bR" = ( -/obj/machinery/button/door{ - id = "toilet1"; - name = "restroom lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bS" = ( -/obj/machinery/button/door{ - id = "toilet2"; - name = "restroom lock"; - normaldoorcontrol = 1; - pixel_x = -24; - specialfunctions = 4 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bT" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "loveshack"; - name = "love shack lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/red, -/turf/open/floor/wood, -/area/awaymission/beach) -"bU" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "theloveshack4"; - name = "door lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/beach) -"bV" = ( -/obj/structure/sign/poster/ripped{ - pixel_x = 32 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"bW" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "theloveshack5"; - name = "door lock"; - normaldoorcontrol = 1; - pixel_x = 24; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/awaymission/beach) -"bX" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "toilet1"; - name = "restroom stall" - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bY" = ( -/obj/machinery/door/airlock/sandstone{ - id_tag = "toilet2"; - name = "restroom stall" - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel/white, -/area/awaymission/beach) -"bZ" = ( -/obj/structure/dresser{ - density = 0 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"ca" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"cb" = ( -/obj/structure/sign/poster/contraband/syndicate_recruitment{ - pixel_x = -28 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cc" = ( -/obj/item/trash/can{ - pixel_x = 14; - pixel_y = 7 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cd" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/vending/cola/starkist, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"ce" = ( -/obj/effect/turf_decal/sand, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cf" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/contraband/smoke{ - pixel_y = -32 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cg" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/vending/cola/space_up, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"ch" = ( -/obj/effect/overlay/palmtree_l, -/obj/effect/overlay/coconut, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"ci" = ( -/obj/structure/closet/gmcloset, -/turf/open/floor/wood, -/area/awaymission/beach) -"cj" = ( -/obj/structure/closet/secure_closet/bar, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood, -/area/awaymission/beach) -"ck" = ( -/obj/effect/mob_spawn/human/bartender/alive, -/turf/open/floor/wood, -/area/awaymission/beach) -"cl" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/awaymission/beach) -"cm" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/sunglasses, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/wood, -/area/awaymission/beach) -"cn" = ( -/obj/machinery/vending/boozeomat/all_access{ - desc = "A technological marvel, supposedly able to mix just the mixture you'd like to drink the moment you ask for one. May not work for bartenders that don't have Nanotrasen bank accounts." - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"co" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/fullupgrade, -/obj/structure/sign/picture_frame{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"cp" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, -/turf/open/floor/wood, -/area/awaymission/beach) -"cq" = ( -/obj/structure/table/wood, -/obj/machinery/microwave, -/turf/open/floor/wood, -/area/awaymission/beach) -"cr" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = list(25) - }, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/wood, -/area/awaymission/beach) -"cs" = ( -/obj/machinery/processor, -/turf/open/floor/wood, -/area/awaymission/beach) -"ct" = ( -/obj/effect/turf_decal/stripes/white/corner, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cu" = ( -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cv" = ( -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cw" = ( -/obj/structure/closet/secure_closet/freezer/meat/open, -/obj/item/food/meat/slab/goliath, -/obj/item/food/meat/slab/xeno, -/obj/item/food/meat/slab/spider, -/obj/item/food/meat/slab/killertomato, -/obj/item/food/meat/slab/bear, -/turf/open/floor/wood, -/area/awaymission/beach) -"cx" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cy" = ( -/obj/effect/turf_decal/stripes/white/full, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cz" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cA" = ( -/obj/structure/mineral_door/wood{ - name = "bar" - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"cB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/ale, -/turf/open/floor/wood, -/area/awaymission/beach) -"cC" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/beach) -"cD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/awaymission/beach) -"cE" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/turf/open/floor/wood, -/area/awaymission/beach) -"cF" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, -/turf/open/floor/wood, -/area/awaymission/beach) -"cG" = ( -/obj/item/toy/beach_ball, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cH" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cI" = ( -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cJ" = ( -/obj/effect/turf_decal/stripes/white/corner, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cK" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cL" = ( -/obj/structure/table, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/head/collectable/petehat{ - pixel_y = 5 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cM" = ( -/obj/structure/table, -/obj/item/food/chips, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cN" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/sodawater, -/obj/item/reagent_containers/food/drinks/soda_cans/shamblers, -/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, -/obj/item/reagent_containers/food/drinks/soda_cans/air, -/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter, -/obj/item/reagent_containers/food/drinks/soda_cans/tonic, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cO" = ( -/obj/structure/chair, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cP" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ - pixel_x = -12 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ - pixel_x = 13 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cQ" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ - pixel_x = -12; - pixel_y = 3 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cR" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = -8; - pixel_y = -4 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cS" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ - pixel_x = -9; - pixel_y = -7 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cT" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cU" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{ - pixel_x = 15 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cV" = ( -/obj/effect/overlay/coconut{ - pixel_x = -5; - pixel_y = 4 - }, -/turf/open/floor/plating/beach/coastline_t/sandwater_inner, -/area/awaymission/beach) -"cW" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ - pixel_x = -12 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cX" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = -5 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cY" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ - pixel_x = -6 - }, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"cZ" = ( -/obj/item/clothing/head/collectable/paper{ - desc = "What looks like an ordinary paper hat is actually a rare and valuable collector's edition paper hat. Keep away from fire, Curators, and ocean waves." - }, -/turf/open/floor/plating/beach/water, -/area/awaymission/beach) -"da" = ( -/mob/living/simple_animal/parrot, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"db" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/turf/open/floor/wood, -/area/awaymission/beach) -"dc" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_syndie, -/turf/open/floor/wood, -/area/awaymission/beach) -"dd" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_red, -/turf/open/floor/wood, -/area/awaymission/beach) -"de" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman, -/turf/open/floor/wood, -/area/awaymission/beach) -"df" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/neck/necklace/dope, -/turf/open/floor/wood, -/area/awaymission/beach) -"dg" = ( -/obj/item/clothing/glasses/heat, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) -"iy" = ( -/obj/item/toy/seashell, -/turf/open/floor/plating/beach/coastline_t, -/area/awaymission/beach) -"MD" = ( -/obj/item/toy/seashell, -/turf/open/floor/plating/beach/sand, -/area/awaymission/beach) - -(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 -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 -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 -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 -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 -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 -"} -(3,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(4,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(5,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(6,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(7,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(8,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(9,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(10,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(11,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(12,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(13,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(14,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(15,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -as -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(16,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(17,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(18,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(19,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(20,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(21,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(22,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(23,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(24,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(25,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(26,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(27,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(28,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(29,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(30,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(31,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(32,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(33,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -aw -af -aj -aj -aj -ao -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(34,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -aw -af -ay -MD -ak -MD -aT -ao -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(35,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -aw -af -ay -MD -ak -ak -ak -ak -aT -ao -aY -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(36,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -aw -af -ay -ak -ak -ak -MD -ak -ak -ak -aT -aj -aj -ao -aY -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(37,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -aw -af -ay -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -aT -aj -aj -aj -aj -ao -aY -ae -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(38,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -af -ay -ak -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aT -aj -ao -aY -ac -ac -ad -af -aj -aj -aj -aj -aj -ao -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(39,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -aA -ak -aD -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aT -ao -aY -ae -aw -ag -MD -aZ -ak -ak -ak -aT -ao -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(40,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -aA -ak -ak -ak -ak -ak -aD -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -MD -aT -aj -aj -aj -ay -ak -ak -ak -ak -ak -MD -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(41,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -ak -aC -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aK -ak -cG -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(42,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -aC -aF -aC -ak -ak -ak -ak -ak -ak -ak -aD -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(43,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -aA -ak -ak -aG -ak -aD -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(44,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -aC -aF -aC -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aA -ak -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(45,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -ak -aC -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aD -ak -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(46,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -aD -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ch -ak -ak -ak -ak -ak -ak -ak -ak -ak -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(47,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -aA -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -aZ -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(48,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aK -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(49,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ak -ak -ak -ak -iy -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(50,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -aX -aX -aX -aX -cA -aX -ba -ba -ak -ak -ak -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(51,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ag -MD -ak -ak -ak -ak -ak -ak -ak -ak -aZ -bf -bp -bx -ak -ak -aX -aX -aX -aX -ak -ba -cd -aX -ci -bd -bd -bd -cB -cH -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(52,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -bg -bq -by -ak -ak -aX -bL -bQ -aX -ak -ba -ce -aX -cj -bd -bd -bd -cB -cH -ba -ak -ak -cP -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(53,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ax -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -bh -br -bz -ak -aA -aX -bM -bR -bX -ba -ba -ba -aX -ck -bd -bd -bd -cC -cH -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(54,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ak -ak -aD -aX -aX -aX -aX -ak -ba -ba -aX -cl -bd -bd -bd -cD -cH -ba -ak -ak -ak -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(55,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ax -ag -ak -ak -ak -ak -bf -bp -bx -ak -ak -ba -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -aX -cm -bd -bd -bd -cC -cH -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(56,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -bg -aQ -by -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -cf -aX -cn -bd -bd -bd -cE -cH -ba -ak -ak -cQ -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(57,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -bh -br -bz -ak -ak -ak -bA -ba -ba -ak -ak -ak -ak -ak -ba -ba -aX -co -bd -bd -bd -cF -cH -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(58,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -aX -aX -aX -aX -ak -ba -ba -aX -cp -bd -bd -bd -cC -cH -ba -ak -ak -cR -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(59,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -aX -bN -bS -bY -ba -ba -ba -aX -cq -bd -bd -bd -cC -cH -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(60,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -aX -bL -bQ -aX -ak -ba -ce -aX -bd -bd -bd -bd -cC -cH -ba -ak -aA -cS -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(61,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -aX -aX -aX -aX -ak -ba -ba -aX -aX -aX -aX -ak -ba -cg -aX -cr -cs -cw -bd -aX -cI -ba -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(62,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -aX -bb -bd -aX -ak -ba -ba -ak -ak -ak -ak -ak -ba -ba -aX -aX -aX -aX -aX -aX -ba -ba -ak -ak -cT -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(63,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -aX -bc -bi -bs -ba -ba -ba -bF -ak -ak -ak -ak -ba -ba -ba -ba -ba -ba -ba -ba -ba -ba -ak -ak -ak -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(64,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ax -ag -ak -ak -ak -ak -ak -aX -aX -aX -aX -ak -ba -ba -bG -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(65,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -bH -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(66,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ad -ag -aE -ak -ak -aA -ak -ak -ak -ak -ak -ak -ba -ba -bG -ak -ak -aZ -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -cK -cM -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(67,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ad -ag -ak -aH -dg -ak -aD -ak -ak -ak -ak -ak -ba -ba -bH -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -cL -cN -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(68,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -ba -ba -bG -ak -ak -ak -ak -ak -ak -aD -ak -ak -ak -ak -cG -ak -ak -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(69,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ax -ag -aE -ak -ak -ak -aX -aX -aX -aX -ak -ba -ba -bH -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aZ -ak -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(70,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ad -ag -ak -aJ -aE -ak -aX -bb -bj -bt -ba -ba -ba -bG -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aD -ak -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(71,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ad -ah -am -az -ak -aS -aX -bc -bd -aX -ak -ba -ba -bH -ak -ak -ak -aA -ak -ak -ak -aA -ak -ak -aA -ak -ak -aK -ak -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(72,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ai -ax -ah -am -az -aX -aX -aX -aX -ak -ba -ba -bG -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(73,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ai -ax -ag -ak -ak -ak -ak -ak -ba -ba -bH -ak -ak -ak -ak -ak -ak -ak -ak -ct -cx -cx -cx -cx -cJ -ak -ak -cU -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(74,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ag -aA -ak -ak -ak -ak -ba -ba -bG -ak -ak -ak -ak -ak -MD -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(75,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ba -ba -bH -ak -ak -ak -ak -ak -bv -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -ak -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(76,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ba -ba -ak -ak -ak -ak -ak -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -aZ -bo -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(77,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -aI -ac -ad -ag -ak -ak -ak -ak -ak -ba -ba -ak -ak -ak -ak -ak -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(78,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ag -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -aK -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(79,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ag -aX -bb -de -bu -aX -ba -ba -aX -bO -db -bZ -aX -ak -ak -ak -ak -cu -cy -cy -cy -cy -cy -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(80,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aw -ag -aX -bd -bd -bd -bB -ba -ba -bI -bd -bd -bd -aX -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -cV -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(81,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -aw -af -ay -aX -be -bl -bd -aX -ba -ba -aX -bd -bT -ca -aX -ak -aZ -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(82,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -aw -af -aj -ay -ak -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -aD -ak -cu -ak -ak -ak -ak -cu -ak -ak -ap -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(83,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ad -af -ay -aA -ak -ak -ak -ak -ak -ak -ak -ba -ba -ak -ak -ak -ak -ak -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -aT -ao -aY -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(84,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -aw -ag -ak -aK -ak -ak -ak -ak -ak -ak -ak -ba -ba -ak -ak -ak -ak -ak -ak -ak -ak -ak -cu -ak -ak -ak -ak -cu -ak -ak -ak -aT -ao -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(85,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -aw -af -ay -ak -ak -ak -ak -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -ak -ak -cv -cz -cz -cz -cz -cz -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(86,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -af -ay -ak -ak -ak -ak -ak -aX -bb -df -bu -aX -ba -ba -aX -bu -dc -bZ -aX -ak -ak -ak -ak -aZ -ak -ak -ak -ak -ak -ak -ak -cW -ak -ap -ar -ac -ac -ac -cZ -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(87,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -aw -ag -MD -ak -ak -ak -ak -ak -aX -bd -bd -bd -bC -ba -ba -bJ -bd -bd -bd -aX -ak -ak -ak -ak -aD -ak -ak -ak -ak -ak -ak -ak -cO -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(88,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -af -ay -ak -MD -ak -ak -ak -ak -aX -be -bm -bd -aX -ba -ba -aX -bd -bU -ca -aX -ak -ak -ak -ak -ak -ak -ak -ak -aZ -ak -ak -ak -cX -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(89,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -cO -ak -iy -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(90,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -ag -aA -aB -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ba -ba -ak -ak -ak -cb -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -cY -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(91,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bv -ak -ba -ba -ak -bP -bV -cc -ak -ak -ak -ak -ak -aA -ak -ak -ak -ak -ak -ak -ak -aK -MD -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(92,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -aO -ak -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ap -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(93,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ax -ag -MD -ak -ak -ak -ak -ak -aX -bb -dd -bu -aX -ba -ba -aX -bu -bk -bZ -aX -ak -ak -ak -ak -ak -ak -aK -ak -ak -ak -ak -ak -MD -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(94,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -aX -bd -bd -bd -bD -ba -ba -bK -bd -bd -bd -aX -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aA -aD -bo -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(95,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ax -ah -az -ak -ak -ak -ak -aX -be -bn -bd -aX -ba -ba -aX -bd -bW -ca -aX -ak -ak -aA -ak -ak -ak -ak -cG -ak -ak -ak -bo -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(96,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ax -ah -az -aK -ak -ak -aX -aX -aX -aX -aX -ba -ba -aX -aX -aX -aX -aX -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(97,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ax -ag -aA -ak -ak -ak -ak -ak -ak -ak -ak -bE -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(98,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -am -am -am -am -am -am -am -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(99,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ax -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -am -aq -bw -ai -ai -ai -ai -ai -ai -ai -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(100,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ax -ah -az -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bo -aq -bw -ai -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(101,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ax -ag -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ap -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(102,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -ah -az -ak -ak -ak -ak -bo -am -am -az -bo -aq -ar -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(103,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ax -ah -az -bo -am -am -aq -bw -ax -ah -aq -bw -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(104,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ax -ah -aq -bw -ai -ai -ac -ac -ai -ai -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(105,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ai -ai -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(106,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(107,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(108,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(109,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(110,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(111,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(112,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(113,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(114,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(115,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(116,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(117,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(118,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(119,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(120,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -av -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(121,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -ab -ab -ab -ab -ab -ab -at -ab -ab -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -at -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -as -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(122,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(123,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(124,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(125,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(126,1,1) = {" -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(127,1,1) = {" -aa -aa -ac -ae -ae -ae -ae -ae -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(128,1,1) = {" -aa -aa -ad -af -aj -aj -aj -ao -ar -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(129,1,1) = {" -aa -aa -ad -ag -ak -ak -da -ap -ar -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(130,1,1) = {" -aa -aa -ad -ag -au -an -ak -ap -ar -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(131,1,1) = {" -aa -aa -ad -ag -al -ak -MD -ap -ar -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(132,1,1) = {" -aa -aa -ad -ah -am -am -am -aq -ar -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(133,1,1) = {" -aa -aa -ac -ai -ai -ai -ai -ai -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -"} -(134,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 -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 -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 -"} -(135,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 -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 -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/RandomZLevels/caves.dmm b/_maps/RandomZLevels/caves.dmm deleted file mode 100644 index 3f7c654c3563..000000000000 --- a/_maps/RandomZLevels/caves.dmm +++ /dev/null @@ -1,67733 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/indestructible/rock, -/area/space/nearstation) -"ab" = ( -/turf/open/space/basic, -/area/space) -"ac" = ( -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid/level_three) -"ad" = ( -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ae" = ( -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"af" = ( -/obj/item/greentext, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"ag" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"ah" = ( -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"ai" = ( -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aj" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"ak" = ( -/turf/closed/mineral/random/high_chance, -/area/awaymission/caves/bmp_asteroid/level_three) -"al" = ( -/obj/effect/forcefield/cult, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"am" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"an" = ( -/obj/structure/destructible/cult/pylon, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ao" = ( -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ap" = ( -/obj/structure/destructible/cult/pylon, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aq" = ( -/obj/item/ectoplasm, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ar" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"as" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"at" = ( -/obj/structure/spawner/skeleton, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"au" = ( -/obj/structure/destructible/cult/talisman, -/obj/effect/decal/remains/human, -/obj/item/stack/sheet/runed_metal{ - amount = 25 - }, -/obj/item/veilrender/honkrender, -/obj/item/clothing/mask/gas/clown_hat, -/obj/item/organ/heart/demon, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"av" = ( -/obj/structure/trap/stun{ - desc = "A rune inscribed in the floor, the air feeling electrified around it."; - name = "shock rune" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aw" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ax" = ( -/turf/closed/wall/mineral/cult, -/area/awaymission/caves/bmp_asteroid/level_four) -"ay" = ( -/obj/structure/destructible/cult/tome, -/obj/item/tome, -/obj/item/stack/sheet/runed_metal{ - amount = 25 - }, -/obj/item/coin/antagtoken, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"az" = ( -/obj/structure/constructshell, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aA" = ( -/obj/structure/girder/cult, -/obj/item/stack/sheet/runed_metal, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aB" = ( -/obj/structure/spawner/skeleton, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aC" = ( -/obj/structure/bed, -/obj/item/bedsheet/cult, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aD" = ( -/obj/item/stack/sheet/runed_metal, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aE" = ( -/obj/structure/destructible/cult/tome, -/obj/item/stack/sheet/runed_metal{ - amount = 25 - }, -/obj/item/coin/antagtoken, -/obj/item/book/granter/spell/summonitem{ - name = "\proper an extremely flamboyant book" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aF" = ( -/obj/structure/barricade/wooden{ - desc = "A forcefield meant to block off areas. Time has aged this forcefield into a weakened state, you could probably smash through it."; - icon = 'icons/effects/effects.dmi'; - icon_state = "m_shield"; - name = "weak forcefield" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aG" = ( -/obj/item/ectoplasm, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aH" = ( -/turf/closed/wall, -/area/awaymission/caves/bmp_asteroid/level_three) -"aI" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aJ" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/bmp_asteroid/level_three) -"aK" = ( -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aM" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "minedeep" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aN" = ( -/obj/effect/mine/explosive{ - desc = "Rusted mines planted out by the miners before, probably to keep the cave monsters at bay."; - name = "rusted mine" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aP" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "dungeon"; - name = "rusty ladder" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aQ" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aR" = ( -/obj/effect/forcefield/cult, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aS" = ( -/obj/structure/girder/cult, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aT" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aU" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/sign/warning/pods{ - desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; - name = "\improper MECH TUNNEL PASSAGE B1 TO A2"; - pixel_x = 32 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aV" = ( -/obj/effect/forcefield/cult, -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aX" = ( -/obj/effect/bump_teleporter{ - icon = 'icons/obj/doors/airlocks/station/overlays.dmi'; - icon_state = "unres_w"; - id = "minedeepup"; - id_target = "minedeepdown"; - invisibility = 0; - mouse_opacity = 0; - name = "light of the tunnel" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"aY" = ( -/obj/structure/trap/fire{ - desc = "An old rune inscribed on the floor, giving off an intense amount of heat."; - name = "flame rune" - }, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"aZ" = ( -/obj/structure/trap/fire{ - desc = "An old rune inscribed on the floor, giving off an intense amount of heat."; - name = "flame rune" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"ba" = ( -/obj/structure/destructible/cult/talisman, -/obj/item/book/granter/martial/plasma_fist/nobomb, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bb" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bc" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"be" = ( -/obj/structure/spawner/mining/goliath, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bf" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bg" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bh" = ( -/mob/living/simple_animal/hostile/skeleton, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bm" = ( -/obj/machinery/gateway/away{ - calibrated = 0 - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bo" = ( -/obj/structure/flora/rock, -/obj/item/soulstone/anybody, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bs" = ( -/obj/structure/trap/stun{ - desc = "A rune inscribed in the floor, the air feeling electrified around it."; - name = "shock rune" - }, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bt" = ( -/obj/structure/spider/stickyweb, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bu" = ( -/obj/structure/spider/cocoon, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bv" = ( -/obj/structure/destructible/cult/pylon, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bw" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/spawner/skeleton, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bx" = ( -/obj/item/organ/brain/alien, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"by" = ( -/obj/item/mjollnir, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bz" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bA" = ( -/obj/structure/destructible/cult/tome, -/obj/item/necromantic_stone, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bB" = ( -/obj/item/clothing/head/collectable/wizard, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bC" = ( -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bD" = ( -/mob/living/simple_animal/hostile/skeleton, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bE" = ( -/obj/structure/destructible/cult/pylon, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bF" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "dungeon"; - name = "rusty ladder" - }, -/turf/open/floor/engine/cult{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_three) -"bG" = ( -/obj/item/gun/ballistic/automatic/pistol/deagle/gold, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bH" = ( -/obj/effect/decal/remains/human, -/obj/item/clothing/under/misc/patriotsuit, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bI" = ( -/obj/item/bedsheet/patriot, -/turf/open/floor/plating/asteroid/basalt/lava{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"bJ" = ( -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bK" = ( -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid/level_two) -"bL" = ( -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid) -"bM" = ( -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid) -"bN" = ( -/turf/closed/mineral/random/high_chance, -/area/awaymission/caves/bmp_asteroid/level_two) -"bO" = ( -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bP" = ( -/obj/structure/sign/warning/pods{ - desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; - name = "\improper MECH TUNNEL PASSAGE A2 TO B1"; - pixel_x = 32 - }, -/obj/machinery/light/small/built{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bQ" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/bmp_asteroid/level_two) -"bR" = ( -/turf/closed/wall, -/area/awaymission/caves/bmp_asteroid/level_two) -"bS" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bT" = ( -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bU" = ( -/obj/effect/bump_teleporter{ - icon = 'icons/obj/doors/airlocks/station/overlays.dmi'; - icon_state = "unres_w"; - id = "minedeepdown"; - id_target = "minedeepup"; - invisibility = 0; - mouse_opacity = 0; - name = "light of the tunnel" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bX" = ( -/obj/structure/table, -/obj/item/paper/crumpled/awaymissions/caves/unsafe_area, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bY" = ( -/mob/living/simple_animal/hostile/skeleton, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"bZ" = ( -/mob/living/simple_animal/hostile/retaliate/bat{ - desc = "A rare breed of bat which roosts deep in caves."; - name = "Cave Bat" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"ca" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cb" = ( -/obj/structure/closet/crate/miningcar{ - name = "Mining cart" - }, -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cd" = ( -/obj/effect/mine/explosive{ - desc = "Rusted mines planted out by the miners before, probably to keep the cave monsters at bay."; - name = "rusted mine" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"ce" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "mineintro" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cf" = ( -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cg" = ( -/turf/closed/wall, -/area/awaymission/caves/research) -"ch" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/research) -"ci" = ( -/obj/item/shard, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cj" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"ck" = ( -/obj/structure/sign/warning/xeno_mining{ - pixel_y = -32 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cm" = ( -/turf/closed/mineral/random/low_chance, -/area/awaymission/caves/bmp_asteroid/level_two) -"cn" = ( -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"co" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet, -/obj/item/paper/fluff/awaymissions/caves/omega, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cp" = ( -/obj/structure/table, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cq" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cr" = ( -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cs" = ( -/obj/item/shard, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"ct" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cu" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cv" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cw" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cx" = ( -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cy" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cz" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cA" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cC" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable, -/obj/item/restraints/handcuffs/cable, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cD" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cE" = ( -/obj/structure/sign/warning/vacuum{ - name = "\improper LOW AIR AREA"; - pixel_x = 32 - }, -/obj/item/stack/rods, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cG" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"cH" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cK" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'HOLY SHIT SWAGMAN WHAT ARE YOU DOING'."; - name = "\improper HOLY SHIT SWAGMAN WHAT ARE YOU DOING" - }, -/turf/closed/wall, -/area/awaymission/caves/bmp_asteroid/level_two) -"cL" = ( -/obj/structure/spawner/mining/basilisk, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cN" = ( -/obj/machinery/door/window/eastleft, -/obj/effect/decal/cleanable/xenoblood/xgibs, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastleft, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cP" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cQ" = ( -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cR" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cS" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cT" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cU" = ( -/mob/living/simple_animal/hostile/retaliate/bat{ - desc = "A rare breed of bat which roosts deep in caves."; - name = "Cave Bat" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"cV" = ( -/obj/effect/decal/cleanable/xenoblood/xgibs, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cX" = ( -/obj/structure/table, -/obj/item/melee/baton, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cY" = ( -/obj/structure/glowshroom/single, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"cZ" = ( -/obj/structure/sign/warning/vacuum{ - name = "\improper LOW AIR AREA"; - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"da" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"db" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/crap, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"dc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/pods{ - desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; - name = "\improper MECH TUNNEL PASSAGE A2 TO A1"; - pixel_x = -32 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"dd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"de" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"df" = ( -/obj/structure/closet/secure_closet/miner{ - name = "weapon equipment" - }, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/research) -"dg" = ( -/obj/effect/bump_teleporter{ - icon = 'icons/obj/doors/airlocks/station/overlays.dmi'; - icon_state = "unres_e"; - id = "mineintrodown"; - id_target = "mineintroup"; - invisibility = 0; - mouse_opacity = 0; - name = "light of the tunnel" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"dh" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid/level_two) -"di" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/caves/magma, -/obj/item/pen, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dj" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "minedeep" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dk" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid/level_two) -"dm" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid/level_two) -"dn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"do" = ( -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dp" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dq" = ( -/obj/machinery/light/small/built{ - dir = 4 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dr" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"ds" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dt" = ( -/turf/closed/wall, -/area/awaymission/caves/northblock) -"du" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/northblock) -"dv" = ( -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dw" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/awaystart, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid/level_two) -"dx" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/cobweb, -/obj/item/sord, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dy" = ( -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dz" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dA" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/gun/energy/kinetic_accelerator, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dB" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dC" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dD" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dE" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dF" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dG" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dH" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/landmark/awaystart, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dI" = ( -/obj/machinery/door/airlock{ - name = "Dorm" - }, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dJ" = ( -/obj/item/stack/rods, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/caves/northblock) -"dK" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/caves/northblock) -"dL" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plating, -/area/awaymission/caves/northblock) -"dM" = ( -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dO" = ( -/mob/living/simple_animal/hostile/retaliate/bat{ - desc = "A rare breed of bat which roosts deep in caves."; - name = "Cave Bat" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dP" = ( -/obj/item/stack/rods, -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dQ" = ( -/obj/machinery/door/airlock/mining{ - name = "Dorm Access" - }, -/turf/open/floor/plating, -/area/awaymission/caves/northblock) -"dR" = ( -/turf/open/floor/plating, -/area/awaymission/caves/northblock) -"dS" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dT" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/northblock) -"dU" = ( -/obj/structure/closet/crate/miningcar{ - name = "Mining cart" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"dW" = ( -/turf/closed/wall, -/area/awaymission/caves/bmp_asteroid) -"dX" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/bmp_asteroid) -"dY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/awaystart, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"dZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"ea" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"eb" = ( -/obj/machinery/light/small/built{ - dir = 8 - }, -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"ec" = ( -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"ed" = ( -/obj/structure/bed, -/obj/effect/landmark/awaystart, -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"ee" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"ef" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"eg" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eh" = ( -/obj/structure/table, -/obj/item/radio, -/obj/item/radio, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ei" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"ej" = ( -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"ek" = ( -/obj/structure/window{ - dir = 8 - }, -/mob/living/simple_animal/hostile/mining_drone, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"el" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/gun/energy/laser/captain/scattershot, -/turf/open/floor/wood, -/area/awaymission/caves/northblock) -"em" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"en" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"eo" = ( -/obj/item/stack/rods, -/turf/open/floor/wood{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"ep" = ( -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"eq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"er" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"es" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window, -/mob/living/simple_animal/hostile/mining_drone, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"et" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/northblock) -"eu" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"ev" = ( -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ew" = ( -/obj/structure/table, -/obj/item/mining_scanner, -/obj/item/mining_scanner, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ex" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/cobweb, -/obj/item/survivalcapsule, -/obj/item/extinguisher/mini, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ey" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ez" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eA" = ( -/obj/structure/table, -/obj/item/paper/fluff/awaymissions/caves/work_notice, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eB" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eC" = ( -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eD" = ( -/obj/structure/closet/secure_closet/miner, -/obj/item/survivalcapsule, -/obj/item/extinguisher/mini, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eE" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eF" = ( -/turf/closed/wall, -/area/awaymission/caves/listeningpost) -"eG" = ( -/turf/closed/wall/rust, -/area/awaymission/caves/listeningpost) -"eH" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eI" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/switchblade, -/obj/item/switchblade, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eJ" = ( -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eK" = ( -/obj/structure/table, -/obj/item/gun/energy/kinetic_accelerator, -/obj/item/gun/energy/kinetic_accelerator, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eL" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eN" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eO" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eP" = ( -/obj/structure/table, -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eQ" = ( -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"eR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eS" = ( -/obj/machinery/light/small/built, -/obj/machinery/suit_storage_unit/mining{ - desc = "An industrial unit made to hold space suits. Age has seemed to rust the sliding door mechanisms, making it difficult to open."; - name = "rusted suit storage unit" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"eU" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eV" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eW" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eX" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eY" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"eZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"fa" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/item/paper/fluff/awaymissions/caves/shipment_notice, -/obj/item/paper/fluff/awaymissions/caves/safety_notice, -/turf/open/floor/plasteel, -/area/awaymission/caves/listeningpost) -"fb" = ( -/obj/structure/spawner/mining/hivelord, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fc" = ( -/obj/structure/closet/crate, -/obj/item/paper/fluff/awaymissions/caves/shipment_receipt, -/obj/item/gun/energy/laser/captain/scattershot, -/obj/item/gun/energy/laser/captain/scattershot, -/obj/item/gun/energy/laser, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/slimepotion/fireproof, -/obj/item/slimepotion/fireproof, -/obj/item/clothing/glasses/thermal, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fd" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fe" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"ff" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fg" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/caves/listeningpost) -"fi" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/caves/listeningpost) -"fj" = ( -/obj/effect/mob_spawn/human/skeleton/alive{ - name = "spooky skeleton remains" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fk" = ( -/obj/item/grenade/syndieminibomb/concussion, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fl" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fm" = ( -/turf/open/floor/plating, -/area/awaymission/caves/listeningpost) -"fn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/paper/fluff/awaymissions/caves/shipment_receipt, -/obj/item/organ/eyes/robotic/thermals, -/obj/item/gun/energy/laser/captain/scattershot, -/obj/item/slimepotion/fireproof, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fo" = ( -/mob/living/simple_animal/hostile/asteroid/fugu, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fp" = ( -/obj/structure/sign/warning/pods{ - desc = "A warning sign which warns of potential mech traffic to and from different levels of the mine."; - name = "\improper MECH TUNNEL PASSAGE A1 TO A2"; - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fq" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fr" = ( -/obj/machinery/light/small/built{ - dir = 1 - }, -/obj/structure/spider/stickyweb, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fs" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ft" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fu" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute, -/obj/item/reagent_containers/blood/o_plus, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fv" = ( -/obj/structure/glowshroom/single, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fw" = ( -/obj/item/gun/energy/laser/captain/scattershot, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fx" = ( -/obj/effect/bump_teleporter{ - icon = 'icons/obj/doors/airlocks/station/overlays.dmi'; - icon_state = "unres_e"; - id = "mineintroup"; - id_target = "mineintrodown"; - invisibility = 0; - mouse_opacity = 0; - name = "light of the tunnel" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fy" = ( -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fz" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fA" = ( -/obj/structure/bed, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fB" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fC" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fD" = ( -/obj/structure/spider/stickyweb, -/obj/machinery/sleeper{ - dir = 8 - }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fE" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fF" = ( -/obj/item/slimepotion/fireproof, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fG" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"fI" = ( -/obj/structure/sign/departments/medbay{ - pixel_x = -32 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fJ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"fK" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fL" = ( -/obj/structure/sign/departments/examroom{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fN" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"fO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fP" = ( -/obj/structure/grille, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fQ" = ( -/turf/open/floor/plasteel/elevatorshaft{ - initial_gas_mix = "n2=23;o2=14"; - name = "elevator flooring" - }, -/area/awaymission/caves/bmp_asteroid) -"fR" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fS" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin, -/obj/item/reagent_containers/blood/o_plus, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fT" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"fU" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plasteel/elevatorshaft{ - initial_gas_mix = "n2=23;o2=14"; - name = "elevator flooring" - }, -/area/awaymission/caves/bmp_asteroid) -"fW" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"fX" = ( -/obj/structure/closet/crate/miningcar{ - name = "Mining cart" - }, -/obj/item/pickaxe/rusted{ - pixel_x = 5 - }, -/obj/item/stack/sheet/mineral/adamantine{ - amount = 15 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"fY" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"ga" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "mineintro" - }, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gb" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gc" = ( -/obj/item/stack/rods, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gd" = ( -/obj/item/toy/beach_ball{ - desc = "Its a beachball with a face crudely drawn onto it with some soot."; - name = "wilson" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"ge" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gf" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gg" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gh" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gi" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gj" = ( -/obj/machinery/door/airlock/mining{ - name = "Kitchen" - }, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gk" = ( -/obj/effect/landmark/awaystart, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"gl" = ( -/obj/item/trash/plate, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gm" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gn" = ( -/obj/item/grown/log, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"go" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gp" = ( -/obj/structure/table_frame, -/turf/open/floor/plating{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gq" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gr" = ( -/obj/structure/table, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gs" = ( -/obj/item/assembly/igniter, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid/level_two) -"gt" = ( -/obj/structure/table_frame, -/obj/item/stack/sheet/iron, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gu" = ( -/obj/item/stack/rods, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gv" = ( -/obj/structure/table_frame, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gw" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gx" = ( -/obj/structure/table, -/obj/item/kitchen/fork, -/obj/item/trash/plate, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gy" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel, -/area/awaymission/caves/bmp_asteroid) -"gz" = ( -/obj/machinery/door/airlock/external{ - name = "Mess Hall" - }, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"gA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gB" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gC" = ( -/obj/vehicle/sealed/mecha/working/ripley/mining, -/turf/open/floor/plasteel/recharge_floor, -/area/awaymission/caves/bmp_asteroid) -"gD" = ( -/obj/structure/spawner/mining/hivelord, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gF" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/material, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gG" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/plasteel/recharge_floor, -/area/awaymission/caves/bmp_asteroid) -"gH" = ( -/obj/structure/table, -/obj/item/mecha_parts/mecha_equipment/drill/diamonddrill, -/obj/item/paper/fluff/awaymissions/caves/mech_notice, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"gI" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gJ" = ( -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gK" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"gL" = ( -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"gM" = ( -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/plasteel/recharge_floor, -/area/awaymission/caves/bmp_asteroid) -"gN" = ( -/obj/structure/holohoop, -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gO" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gP" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gQ" = ( -/obj/structure/spawner/mining/basilisk, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gR" = ( -/obj/structure/closet/crate/miningcar{ - name = "Mining cart" - }, -/obj/item/stack/sheet/mineral/mythril{ - amount = 12 - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gS" = ( -/obj/structure/girder, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/caves/bmp_asteroid) -"gU" = ( -/obj/structure/holohoop{ - dir = 1 - }, -/turf/open/floor/plasteel/dark{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gV" = ( -/obj/effect/mine/explosive{ - desc = "Rusted mines planted out by the miners before, probably to keep the cave monsters at bay."; - name = "rusted mine" - }, -/turf/open/floor/plating/asteroid/basalt{ - initial_gas_mix = "n2=23;o2=14" - }, -/area/awaymission/caves/bmp_asteroid) -"gX" = ( -/obj/effect/baseturf_helper/lava, -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid/level_three) -"gY" = ( -/obj/effect/baseturf_helper/lava, -/turf/open/lava/smooth{ - desc = "Looks hot."; - initial_gas_mix = "n2=23;o2=14"; - luminosity = 5 - }, -/area/awaymission/caves/bmp_asteroid/level_four) -"gZ" = ( -/obj/effect/baseturf_helper/lava, -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid/level_two) -"ha" = ( -/obj/effect/baseturf_helper/lava, -/turf/closed/mineral/volcanic, -/area/awaymission/caves/bmp_asteroid) -"hb" = ( -/obj/effect/baseturf_helper/asteroid/basalt, -/turf/closed/wall, -/area/awaymission/caves/northblock) -"lO" = ( -/turf/open/floor/plating/asteroid/basalt/airless, -/area/awaymission/caves/bmp_asteroid/level_two) -"OX" = ( -/turf/closed/indestructible/oldshuttle{ - desc = "Go through."; - icon = 'icons/turf/floors.dmi'; - icon_state = "black"; - name = "the other side" - }, -/area/space/nearstation) - -(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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(3,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(4,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(5,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(6,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(7,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OX -OX -OX -OX -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -gX -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -ha -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -fx -fx -dX -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -fy -fy -dW -bL -dW -dW -dW -dW -dW -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dW -fy -fy -dW -bL -dW -fy -fy -fy -dX -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bc -bc -bc -bc -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -fy -fy -dX -bL -dX -fy -ga -fy -dX -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -aj -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -bc -bc -ae -bb -bx -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -hb -dt -dt -du -dL -dK -du -dt -dt -du -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dW -fy -fy -dX -bL -dW -fy -fy -fy -dW -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ae -aj -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ae -bc -ae -bg -ae -bc -bc -ae -bc -bc -bc -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dt -dx -dE -dI -dM -dP -dI -dG -dA -du -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dW -fy -fy -dW -bL -dW -eQ -eQ -eQ -dW -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ae -ae -ae -ah -ah -ah -ah -ah -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -bb -ae -ae -ae -ae -bc -ae -bb -ae -ae -bc -bc -bc -bg -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -lO -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -du -dy -dy -dJ -dM -dM -dt -dy -dB -du -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -fz -fz -dW -bL -cG -eQ -eQ -eQ -cG -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -aJ -bc -bb -bc -ae -ac -ac -bc -ae -ae -bt -bc -bc -ae -bc -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -lO -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -du -dz -dF -du -dM -dM -dt -dY -dz -dt -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -fy -fy -dW -eQ -eQ -eQ -eQ -eQ -cj -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ac -ac -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ae -aJ -ac -ac -ac -ac -ac -ac -ae -bc -bc -bc -by -bB -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -lO -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -lO -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -du -du -du -dt -dN -dM -du -du -du -dt -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -fp -eQ -eQ -fp -cj -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -ah -ah -ah -ah -ae -aj -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ae -bc -bc -ae -bt -bc -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -cy -eQ -eQ -eQ -bL -bL -bL -bL -bL -du -dA -dG -dI -dO -dP -dI -dZ -el -dt -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -bM -bM -bM -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ae -bg -bc -bc -bu -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -cz -eQ -eQ -eQ -bL -bL -bL -bL -bL -du -dB -dy -dK -dP -dM -dR -ea -dy -dt -bL -bL -bL -bL -bL -bL -eQ -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -eQ -eQ -eQ -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -bu -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -lO -ab -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cj -bL -bL -bL -bL -bL -dt -dz -dH -dt -dM -dP -dK -dF -dz -dt -bL -bL -bL -eQ -eQ -eQ -eQ -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ae -ae -ac -ac -ac -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -lO -ab -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -lO -ab -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -eQ -cj -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -dt -dt -du -du -dM -dS -dt -dt -dt -du -bL -bL -eQ -eQ -bM -bM -bM -bM -bM -bL -dX -dW -dX -dW -dW -dW -dX -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ak -ak -ak -ac -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -da -bL -bL -bL -bL -dt -dC -dE -dI -dM -dT -dI -eb -em -du -eQ -eQ -eQ -bM -bM -bM -bM -bM -bL -bL -dW -fq -fA -dW -fK -fS -dX -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -aj -ah -ah -ah -ah -ah -ah -ah -ae -ae -aj -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -da -da -bL -bL -bL -dt -dy -dy -dt -dQ -dQ -dt -ec -en -ee -eQ -bL -bL -bM -bM -bM -bL -bL -bL -bL -dW -fr -fB -dW -fL -ev -dX -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ac -ac -ac -ah -ah -ah -ah -ah -ae -aj -ae -ae -ae -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -ab -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -da -bL -bL -bL -dt -dD -dF -dt -dR -dR -dt -ed -eo -ep -ef -bM -bM -bM -bM -bL -bL -bL -bL -bL -dX -fs -fC -fG -fB -fT -dX -bL -bL -cj -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -lO -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -du -du -du -dt -dQ -dQ -du -ee -ep -et -eQ -bM -bM -bM -bL -bL -bL -bL -bL -bL -dW -ft -ev -dW -fM -ev -dW -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -cx -eQ -eQ -ef -eu -bM -bM -bM -bM -eQ -eQ -eQ -bL -bL -bL -dX -fu -fD -dX -ev -fB -dW -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -aj -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -eQ -eQ -eQ -cx -cx -cx -cj -eQ -bM -bM -bM -eQ -eQ -cj -cx -cx -cx -cx -cx -dW -dX -dX -dW -fN -dW -dX -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -eQ -eQ -eQ -eQ -eQ -ef -eQ -bM -bM -bM -eQ -eQ -eQ -eQ -cx -cx -cx -cx -cx -cx -eQ -fH -ej -fH -eQ -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -cg -cg -cg -cg -cg -cg -cg -cg -bL -bL -bM -bM -bM -bM -bM -eQ -bM -bM -bM -bM -bM -bM -bM -bL -bL -eQ -eQ -eQ -eQ -eQ -ff -cx -cx -cx -dW -fN -dX -eQ -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -aj -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ah -ah -ae -ae -ac -ac -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -ch -cr -cA -cM -cR -cV -cr -cg -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dW -eQ -cx -cx -fI -eQ -eQ -eQ -eQ -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -af -ac -ac -ac -ac -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ah -ah -ae -ae -ae -ac -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -ch -cs -cB -cN -cS -cW -cB -cg -bL -bL -bL -bL -bL -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -cj -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ac -ac -ac -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -aj -ac -ac -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ae -ah -ah -ah -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -cg -cg -ct -cC -cO -cT -cX -db -cg -cg -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -bL -dX -dX -dW -dW -dW -dW -dW -bL -bL -bL -fg -eQ -cx -cx -cx -cx -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ac -ac -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ah -ah -ah -ah -ah -ae -ac -ac -ac -ae -ae -ae -ae -ae -ac -ac -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -cg -cn -cu -cD -cu -cn -cY -cn -dd -cg -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -bL -dX -ex -eD -eD -eD -eD -dX -bL -bL -bL -fg -eQ -eQ -cx -cx -cx -cx -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -bL -bL -bL -bL -cx -ej -eQ -bM -bM -eQ -eQ -ej -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ac -ac -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ae -ac -ac -ac -ae -ac -ac -ae -ae -ac -ac -ah -ah -ac -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -ch -co -cv -cv -cn -cn -cn -cn -de -ch -bL -bL -bL -bL -bM -bM -bL -bL -bL -bL -bL -dW -ey -ev -ev -ev -eR -dX -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -eQ -eQ -bL -bL -bL -bL -cx -cx -ej -eQ -bM -eQ -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ac -ak -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -aN -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ah -ah -ah -ah -ah -ae -ac -ac -ae -aj -ac -ac -ae -ae -ae -ae -ah -ah -ae -ae -ae -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -ch -cp -cn -cE -cn -cn -cZ -cn -df -ch -eQ -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -dX -ez -eE -ev -ev -eS -dX -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -cx -cx -cx -cx -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -cj -eQ -bL -bL -bL -dW -gN -cx -ej -eQ -bM -bM -bM -eQ -cx -gU -dW -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ac -ac -ak -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ah -ah -ah -ah -ah -ae -ae -bh -ae -ac -ac -ac -ae -ae -ae -ae -ah -ah -ae -ae -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -ch -cg -cw -cg -cP -cP -cg -cF -cg -cg -eQ -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -dX -eA -ev -ev -ev -eT -dW -bL -eQ -eQ -ff -eQ -eQ -eQ -eQ -fO -cx -cx -cx -cx -eQ -eQ -ff -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -cx -gP -cx -ej -eQ -eQ -eQ -ej -cx -cx -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ac -ac -ak -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ah -ah -ah -ah -ah -ae -ae -ae -ac -ac -ac -ae -bh -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -eQ -eQ -eQ -ci -cF -cr -cr -cF -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -dX -ev -ev -ev -ev -ev -eF -eG -eG -eG -eF -eQ -eQ -eQ -eQ -dW -cx -cx -eQ -eQ -eQ -eQ -dW -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -cx -cx -cx -fO -cx -eQ -gT -cx -cx -cx -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ac -ac -ak -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ae -ac -ac -ac -ac -ac -ae -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -ci -eQ -eQ -ch -cP -cP -ch -eQ -eQ -eQ -bL -bL -bL -bL -bL -eQ -eQ -bL -dW -dX -dX -dX -eB -dW -eH -eL -ev -eW -eN -eJ -eO -fh -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -fP -fP -fP -dW -cx -cx -dW -fP -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ac -ac -ak -ak -ak -ak -ak -ak -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -aH -aJ -aI -aJ -aJ -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ah -ah -ae -ac -ac -ac -ac -ac -ae -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cG -cx -cx -cG -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -eQ -eQ -bL -dW -eg -eq -ev -ev -eF -eF -eF -eG -eG -eX -eJ -eJ -fh -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -cj -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -cj -eQ -eQ -eQ -cG -cx -cx -cG -eQ -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ac -ac -ac -ak -ak -ak -ak -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -aH -aK -aK -aO -aH -aQ -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ah -ah -ae -ae -ac -ac -ac -ae -ae -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -eQ -eQ -bL -dX -eh -ej -eg -ev -eF -eI -eM -eU -eG -eY -eJ -eJ -eF -fh -eF -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -gQ -eQ -eQ -cx -cx -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -eQ -eQ -eQ -eQ -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ac -ac -ac -ak -ak -ak -ak -ac -ae -ae -ae -ae -ae -ah -ae -ae -ae -ae -ah -ah -ae -ae -aI -aK -aM -aK -aI -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ae -ac -ac -ac -ae -ae -ae -ag -aJ -ac -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -bZ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -bZ -eQ -eQ -bL -bL -bL -eQ -eQ -bL -dX -ei -er -ej -ev -eG -eJ -eN -eJ -eF -eZ -eJ -eJ -fi -fm -fi -cx -cx -cx -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -cx -cx -cx -cx -cx -eQ -bL -bL -bL -eQ -eQ -gV -eQ -bM -bM -bM -bM -eQ -eQ -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ae -aj -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aJ -aL -aK -aK -aJ -ae -ae -ae -ae -ae -aN -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ae -ac -ac -ac -bo -bv -ac -ag -ag -aJ -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -eQ -eQ -bL -dX -ej -ej -ev -ev -eG -eJ -eO -eJ -eF -fa -eJ -eJ -eF -fh -eF -eQ -eQ -eQ -cx -cx -cx -cx -cx -cx -cx -cx -eQ -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ag -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -ae -ae -ae -ae -ae -aH -aJ -aI -aH -aH -ae -ae -ae -ah -ah -ah -ae -ae -ae -aj -ae -ae -ae -ae -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ac -ac -ak -ak -ac -ac -aJ -ag -aJ -aJ -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -eQ -eQ -bL -dW -ek -es -ew -eC -eF -eJ -eJ -eJ -eJ -eJ -eJ -eN -fh -eQ -eQ -eQ -eQ -eQ -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -cx -eQ -fg -fg -gR -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ag -ag -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ak -ak -ac -ac -aJ -bC -bC -aJ -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -eQ -eQ -eQ -dW -dW -dX -dX -dW -eF -eK -eP -eV -eF -eJ -eJ -eJ -fh -eQ -eQ -eQ -ff -eQ -cx -cx -eQ -ff -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ag -ag -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ae -ak -ak -ak -ak -ac -ac -aJ -bD -bF -aJ -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -eQ -bZ -eQ -eQ -eQ -cx -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -eF -eF -eF -eG -eG -eF -eF -eF -eG -eQ -eQ -eQ -dW -fP -cx -cx -fJ -dW -eQ -eQ -eQ -cx -cx -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -aj -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ae -ae -ae -ae -ak -ak -ak -ac -ac -ac -aJ -aJ -aJ -aJ -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -eQ -eQ -cj -eQ -cx -cx -eQ -eQ -bZ -eQ -eQ -eQ -eQ -eQ -bL -bL -eQ -eQ -bM -bM -bM -bM -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -eQ -cG -eQ -cj -eQ -fJ -fQ -fQ -fQ -fQ -fJ -eQ -eQ -eQ -cx -cx -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ae -ae -ae -ae -ae -ae -ae -ae -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -eQ -eQ -eQ -bM -bM -bM -bM -bM -bM -eQ -eQ -eQ -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -fJ -fQ -fQ -fQ -fQ -fJ -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -aj -ae -ae -ae -ae -ae -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -aN -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ac -ak -ak -ak -ae -ae -ae -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -eQ -eQ -eQ -eQ -cx -cx -eQ -eQ -eQ -cj -eQ -bL -bL -bL -bL -eQ -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -eQ -eQ -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -fJ -fQ -fU -fQ -fQ -fJ -eQ -eQ -eQ -eQ -cx -cx -cx -cx -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ac -ak -ak -ak -ae -ae -ae -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -eQ -eQ -eQ -cx -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -dW -eQ -eQ -eQ -cj -eQ -eQ -fJ -fQ -fQ -fQ -fQ -fJ -eQ -eQ -eQ -bL -dW -ge -cx -cx -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ae -ae -ae -ah -ah -ah -ah -ah -ae -ae -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ak -ak -ac -ae -ae -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -cG -eQ -eQ -eQ -eQ -eQ -fE -dW -fJ -fJ -fJ -fJ -dW -ge -eQ -eQ -bL -bL -eQ -eQ -cx -cx -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -aj -ae -ae -ae -ak -ak -ae -ae -ac -ac -ac -ak -ak -ak -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bL -bL -bL -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -fg -fg -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -eQ -cx -cx -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ae -ah -ah -ah -ae -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ak -ak -ae -be -ac -ac -ac -ac -ac -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bL -bL -bL -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -cx -cx -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ah -ah -ae -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ak -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ak -ak -ak -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bL -bL -bL -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -dX -dW -dW -dX -dX -dX -dW -dX -dW -dW -cx -cx -eQ -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ak -ak -ak -ak -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bL -bL -bL -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -dX -fY -gb -dX -gl -ev -ev -fN -ej -gz -cx -cx -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ak -ak -ak -ak -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -ca -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -fW -fy -ev -gf -gm -ev -ev -fN -ej -gz -cx -cx -eQ -bL -bL -bL -bM -bM -bL -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ae -ae -ae -ah -ah -ah -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -ca -eQ -eQ -eQ -eQ -cj -eQ -bL -bL -bL -bL -bL -bL -bL -eQ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ca -eQ -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -fy -gc -gg -fy -ev -gm -dW -dX -dW -gA -cx -eQ -eQ -bM -bM -bM -bL -bL -bL -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -aj -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ac -ak -ak -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -ca -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -eQ -eQ -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -fy -gh -bM -go -gq -gw -fH -eQ -eQ -cx -cx -eQ -bM -bM -bM -bM -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ae -ae -ae -ah -ah -ah -ac -ac -ah -ah -ah -ah -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -eQ -eQ -eQ -eQ -cj -eQ -eQ -bL -bL -bL -bL -bL -ca -ca -ca -ca -ca -bL -bM -bM -bM -bM -bL -eQ -eQ -eQ -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -gp -gt -gx -fH -eQ -eQ -cx -cx -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ae -ae -ae -ae -ae -ae -ac -ac -ah -ah -ah -ah -ae -aj -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bM -bM -bM -bM -fy -fy -gi -fy -fy -gq -gy -fH -cj -eQ -eQ -cx -cx -cx -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ah -ah -ah -ae -ae -ae -ae -ac -ac -ac -ah -ah -ah -ah -ae -ae -ac -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ae -ae -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -cj -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -fy -dW -fy -gq -gu -gq -dX -bL -bL -bL -bL -bL -eQ -bM -bM -eQ -fN -fH -bM -bM -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ae -ae -ae -ah -ah -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ae -ae -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -aj -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -cj -eQ -eQ -dU -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -fy -gj -ev -gr -gv -gt -dW -bL -bL -bL -bL -bL -eQ -eQ -fH -ej -ej -fH -bM -bM -bM -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ae -ah -ah -ac -ac -ac -ac -ac -ah -ah -ah -ae -ae -ae -ae -ae -ak -ak -ak -ak -ak -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ae -ae -ae -aU -ak -ac -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -fy -fW -ev -gq -gm -gq -dW -bL -bL -bL -bL -dW -gK -dW -dX -fN -fN -dX -bM -bM -bM -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ae -ah -ah -ah -ah -ac -ac -ac -ah -ah -ah -ae -ae -ae -ae -ac -ac -ak -ak -ak -ak -ak -ak -ac -ac -ac -ak -ak -ak -ak -ac -ac -ac -ah -ah -ah -ae -ae -aU -ae -ae -aJ -ak -ac -ac -ac -ak -ak -ak -ae -ae -ae -ae -ae -ae -ae -ae -ah -ah -ah -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -dW -dX -dW -dW -dX -dX -bL -eQ -dW -dX -dW -gL -ej -ej -eQ -ej -dX -bM -bM -bM -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ak -ak -ak -ak -ak -ak -ak -ak -ak -ac -ac -ac -ah -ah -ah -ae -ae -aJ -ae -aK -aJ -ak -ac -ac -ac -ak -ak -ak -ak -ak -ak -ac -ac -ac -ae -ae -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -eQ -eQ -fy -gF -gH -ej -ej -eQ -eQ -eQ -gS -bM -bM -eQ -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ae -ae -aJ -aW -aW -aJ -ac -ac -ac -ac -ac -ac -ak -ak -ak -ak -ac -ac -ae -ae -ae -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -fy -gI -fy -gD -eu -eu -bM -bM -bM -bM -eQ -cj -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ac -ac -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ae -aT -aJ -aK -aK -aH -ac -ac -ac -ac -ac -ac -ak -ak -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -gD -fy -fy -fy -eQ -eQ -eQ -bM -bM -bM -bM -eQ -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -aj -ae -ae -ae -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ac -ah -ah -ah -ah -ae -ae -ae -ae -aJ -aK -aK -aH -ac -ac -ac -ac -ac -ac -ak -ak -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -fW -gB -fy -gB -gJ -fy -fy -bM -eu -eQ -eQ -bM -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ak -aH -aK -aK -aJ -ac -ac -ac -ac -ac -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dX -gC -gE -gG -gJ -gB -fy -bM -eQ -eu -ej -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ak -ak -ak -aH -aK -aK -aH -ac -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ah -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -dW -dW -dW -dX -gJ -gM -gJ -gO -dX -gK -dW -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ak -ak -ak -aJ -aK -aK -aH -ac -ac -ac -ac -ac -ac -ah -ah -ah -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -dX -dX -dX -dW -dW -dX -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ac -ac -ac -ac -ak -ak -ak -aJ -aK -aK -aJ -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bM -bM -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aH -aK -aK -aJ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bM -bM -bM -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -eQ -eQ -cj -eQ -eQ -eQ -eQ -eQ -eQ -eQ -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aH -aX -aX -aJ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -bL -aa -aa -aa -aa -aa -aa -aa -"} -(73,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OX -OX -OX -OX -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 -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(74,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(75,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(76,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(77,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(78,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(79,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(80,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(81,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(82,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(83,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(84,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(85,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(86,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(87,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(88,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(89,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(90,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(91,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(92,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(93,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(94,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(95,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(96,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(97,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(98,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(99,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(100,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(101,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(102,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(103,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(104,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(105,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(106,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(107,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(108,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(109,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(110,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(111,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(112,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(113,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(114,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(115,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(116,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(117,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(118,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(119,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(120,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(121,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(122,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(123,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(124,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(125,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(126,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(127,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(128,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(129,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(130,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(131,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(132,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(133,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(134,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(135,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(136,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(137,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(138,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(139,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(140,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(141,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(142,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(143,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(144,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(145,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(146,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(147,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(148,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(149,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(150,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(151,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(152,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(153,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(154,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(155,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(156,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(157,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(158,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(159,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(160,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(161,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(162,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(163,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(164,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(165,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(166,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(167,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(168,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(169,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(170,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(171,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(172,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(173,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -gY -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ai -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ai -ai -ad -ai -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -bG -bI -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -bH -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -OX -OX -OX -OX -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 -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 -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -gZ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bQ -dg -dg -bR -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bR -bT -bT -bR -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bR -bR -bR -bR -bR -bK -bK -bK -bK -bK -bQ -bT -bT -bR -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bR -bT -bT -bT -bQ -bK -bK -bK -bK -bK -bQ -bT -bT -bQ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bQ -bT -ce -bT -bQ -bK -bK -bK -bK -bK -bQ -bT -bT -bQ -bN -bN -bN -bK -bN -bN -bN -bN -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bJ -bR -bT -bT -bT -bR -bK -bK -bK -bK -bK -bR -bS -bS -bQ -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bK -bK -bK -bK -bJ -bJ -bJ -fb -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ao -ai -ai -ao -ao -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bJ -bR -bJ -cf -ck -bR -bJ -bK -bK -bK -bK -bR -bT -bT -bR -bJ -bJ -bJ -bJ -bJ -bJ -bN -bN -bN -bN -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bJ -bJ -bJ -gd -bJ -gn -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ao -ao -ai -ai -am -ai -ai -ao -ao -ao -aw -ao -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bJ -bW -bJ -cf -cf -bW -bJ -bJ -bK -bK -bK -dc -bJ -bJ -dc -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bJ -bK -bK -bK -bK -bJ -bK -bK -bK -bK -bK -bJ -bJ -fv -bJ -fl -gn -gn -bJ -bJ -bJ -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ao -ai -ai -ai -ai -ai -ai -at -ai -ai -ai -ai -ai -ao -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bJ -bJ -bJ -cf -cf -cf -cf -cf -bJ -bK -bK -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bJ -bJ -bJ -cq -bJ -bJ -bJ -bK -bK -bJ -bJ -bK -bK -bK -bK -bJ -bK -bK -bK -bK -bJ -bJ -bJ -bJ -cQ -gk -bJ -gs -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ao -ao -ao -ai -ax -ad -ad -ad -ai -am -ai -am -ai -ai -ad -ad -ai -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bX -cb -cf -cf -cf -cf -cf -cf -bK -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -cd -bJ -bJ -bJ -bK -bK -bK -bJ -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -al -al -al -al -al -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ai -ai -ao -am -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -cc -bJ -bJ -bJ -bJ -cf -cf -bK -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -cd -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ai -al -am -am -at -am -ai -al -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ad -ai -ai -ai -ai -ad -ad -ai -ai -ai -ai -ai -ai -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ai -ao -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bK -bQ -cl -cl -bR -cH -cH -bQ -bK -bJ -cq -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -al -am -ao -ao -ap -ao -am -ai -al -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -aV -aV -ax -aA -ao -ax -ax -ai -ai -ai -ax -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bK -bQ -bO -bO -cl -bT -bT -cl -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bK -bK -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -al -am -ao -ar -as -ar -ao -am -al -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ad -ad -ad -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ad -ad -ad -ao -ao -ao -aB -ax -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bK -bQ -cl -cl -bQ -cH -cH -bR -bJ -bO -bO -bO -bO -bO -bO -bJ -bJ -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -al -am -ap -as -au -as -ap -am -al -ad -ad -ad -ad -ad -ad -ad -ad -ao -ad -ao -ad -ad -ad -ad -ad -ao -ao -ao -ap -ad -ad -ad -ao -ao -ap -ao -ad -ad -ao -ao -ao -ap -ao -ax -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -cd -bJ -bJ -bO -bO -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -cm -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -al -am -ao -ar -as -ar -ao -am -al -ad -ad -ad -ad -ad -ad -ad -ad -ao -ad -ad -ao -ad -ad -ad -ad -ao -ao -ad -ad -ao -ao -ad -ad -ao -ao -ao -ad -ad -ao -ao -ao -ao -aR -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ai -am -at -am -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -lO -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -cq -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -al -am -ao -ao -ap -ao -am -ai -al -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ax -ax -ax -ax -ax -ax -ax -aV -aV -ax -aR -ao -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -lO -ab -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bT -bT -bT -bT -bT -bT -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -cU -bJ -bJ -bJ -bO -bO -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ai -al -am -ao -ao -am -ai -al -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ao -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ax -ao -ao -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ao -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bJ -bJ -bJ -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bK -bO -bO -bO -bO -bO -bK -bK -bK -bK -bN -bN -bK -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -al -al -ao -al -al -ai -ad -ad -ad -ad -ax -ax -ax -ax -ax -ao -ao -ao -ad -ad -ai -ai -ai -aq -ai -ad -ai -ad -ad -ai -ax -aR -aR -aR -ax -ad -ai -ax -ao -ao -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -am -ai -ai -ad -ao -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bK -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bN -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bN -bN -bK -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -aq -ai -ao -ai -ai -ad -ad -ad -ad -ad -ax -ay -ao -aD -ax -ao -ao -ao -ad -ad -ai -ai -ai -ai -ax -aR -aR -aR -ax -ai -ax -ao -ao -ao -ax -ad -ai -ax -ao -av -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aR -ao -ao -ao -ao -ai -ao -ao -ao -ao -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -lO -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bN -bK -bK -bK -bK -bK -bK -bK -bK -bJ -cq -bO -bO -bT -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -cm -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -ai -an -av -an -ai -ad -ad -ad -ad -ad -ax -az -ao -ao -ax -ao -ao -ao -ai -ai -ai -ai -ai -ai -ax -ao -ao -ao -ax -ai -ax -ao -ao -ao -ad -ad -ai -ax -ao -ao -ao -ax -ai -ai -ai -ai -ad -ad -ai -ai -ai -aR -aR -aR -aR -ad -ad -ad -ax -ax -ao -ax -ad -ad -ai -ai -ai -ao -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -lO -lO -lO -lO -lO -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bK -bK -bK -cd -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -bR -dl -bR -bQ -bQ -bR -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bT -bO -bO -bO -bO -bK -bK -bK -bK -bK -bN -bK -bK -bK -bK -cm -cm -cm -cm -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -ai -ai -aw -ai -ai -ad -ad -ad -ad -ad -ax -ao -ao -av -aF -ao -ao -ao -ai -ai -ai -aq -ai -ai -ax -ao -ao -ao -ax -ai -ax -ao -ao -aR -ax -ai -ai -ax -ao -ao -ao -ax -ai -ai -ai -ad -ad -ad -ai -ai -ax -ao -ao -ao -ao -aR -aR -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ao -ao -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bN -bN -bJ -bJ -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -dh -dm -dh -do -dv -bR -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bT -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bN -bN -bN -bK -cm -cm -cm -cm -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -an -ai -ai -ao -ai -ai -ai -an -ad -ad -ad -ax -ao -av -ao -ax -ao -ao -ao -ai -ai -ai -ai -ai -ai -ax -ao -ao -aG -ax -ai -ax -ao -ao -ao -ax -ai -ai -ax -ao -aG -ao -ax -ai -ai -ad -ad -ad -ad -ai -aR -ao -ao -bf -ao -ao -ao -ao -aR -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bN -bN -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bQ -bR -dl -bR -dr -do -bR -bK -bK -bK -bJ -bJ -bJ -bJ -bO -bO -bT -bO -bJ -cm -cm -cm -cm -cm -bK -bK -bK -bK -bN -bN -bK -bK -bK -cm -cm -bK -bK -bK -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -ai -ai -ao -ao -ai -ai -ai -ai -ai -ai -ax -aA -ax -ax -ax -ao -ao -ao -ai -ai -ai -ax -ax -ax -ax -ao -ax -ao -ax -ax -ax -ao -ap -ao -ax -ax -ax -ax -ao -ao -aR -ax -ax -ax -ad -ad -ax -ax -aR -ao -ao -bf -ap -bf -ao -ao -ao -ao -ax -ai -ad -ad -ad -ad -ad -ad -ad -aR -ao -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -lO -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bJ -bJ -cc -bR -di -dn -do -do -dr -bQ -bK -bK -bK -bJ -cd -bO -bO -bO -bO -bT -bO -bJ -cm -cm -cm -cm -cm -bK -bK -bK -bK -bN -bN -bK -bK -bK -bK -bK -bK -bN -bN -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ai -ai -ao -ao -ao -ai -ai -ai -ai -ai -ao -ao -ao -ao -ao -ao -ao -ao -ai -ai -ai -ax -ao -ao -ax -ao -ao -av -ad -ad -ad -ad -ao -ao -ao -ao -ao -ad -ad -ao -ao -ao -al -ad -ad -al -ao -ao -ao -ao -bf -ao -ao -ao -aw -ao -bz -ao -aR -am -ai -ad -ad -ad -ad -ad -ad -ax -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -ab -ab -ab -lO -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -cc -bQ -dj -do -do -do -do -bR -bK -bK -cm -bJ -bJ -bO -bO -bO -bJ -bJ -bJ -bJ -cm -cm -cm -cm -cm -bK -bK -cm -cm -bK -bN -bN -bK -bK -bK -bK -bK -bN -bN -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ao -ao -ai -ao -ao -ao -ao -aB -av -ao -ao -ao -ap -ao -ai -ai -ai -ax -aP -aw -aF -ao -ap -ao -ad -ad -ao -ao -ao -ao -ao -ao -ao -ao -ao -ap -ao -al -ad -ad -ad -ad -al -ao -ao -bf -ap -ao -bm -ao -bf -bw -bA -bE -aR -ai -ai -ad -ad -ad -ad -ad -ax -ao -ao -am -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -lO -lO -lO -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -cd -bJ -cm -bQ -dk -dp -dq -ds -dw -bR -bK -bK -cm -bJ -bJ -bO -bO -bO -bJ -bJ -bK -cm -cm -cm -cm -cm -bK -bK -bK -cm -cm -bK -bN -bN -bN -bN -bN -bN -bN -bN -bN -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ao -ao -ao -ai -ai -ao -ao -ao -ao -ao -ao -aG -ao -ai -ai -ai -ax -ao -ao -ax -ao -ao -ao -ao -ao -ao -ao -av -ad -ad -ad -ao -ao -ao -ao -ao -ao -al -ad -ad -al -ao -ao -ao -ao -bf -ao -ao -ao -ao -ao -bz -ao -aR -ai -ai -ad -ad -ad -ad -ad -ax -ao -ao -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -cm -bR -bR -bR -bR -bQ -bQ -bQ -cm -cm -cm -bJ -bJ -bO -bO -bO -bJ -bJ -bK -cm -cm -cm -cm -cm -bK -bJ -bJ -bJ -bJ -cm -bK -bK -bN -bN -bN -bN -bN -bK -bK -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ao -ai -ai -ai -ax -ax -ax -ax -ax -ao -ao -ao -ai -ai -ai -ax -ax -ax -ax -ao -ax -ao -ax -ax -ax -ao -ap -ao -ax -ax -ax -ax -aR -ao -ao -ax -ax -ad -ad -ai -ax -ax -aR -aR -ao -bf -ap -bf -ao -ao -ao -ao -ax -ai -ai -ad -ad -ad -ad -ax -aw -aB -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bO -bO -bJ -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -bJ -bJ -bO -bO -bO -bJ -bK -bK -cm -cm -cm -cm -cm -bK -bJ -bJ -bJ -bJ -cm -bK -bK -bK -bK -bN -bN -bN -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ax -ao -ao -ao -ax -ao -ao -ao -ad -ai -ai -ai -ai -ai -ax -aR -ao -ao -ax -ai -ax -ao -ao -ao -ax -ai -ai -ax -ao -ao -ao -ax -ai -ad -ad -ai -ai -ai -ad -ad -aR -ao -bf -ao -ao -ao -ao -aR -ai -ai -ad -ad -ad -ad -ad -ax -ao -am -ai -bs -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -cm -cm -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -cm -bK -cd -bJ -bO -bO -bO -bJ -cm -cm -cm -cm -cm -bK -bK -bK -bJ -bJ -fv -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ao -ao -aF -ao -ao -ao -ad -ai -ai -ai -ai -ai -ax -ao -ao -ao -ax -ai -ax -ao -ao -aR -ax -ai -ai -ax -ao -ao -ao -ax -ai -ad -ad -ad -ai -ai -ad -ad -aR -ao -ao -ao -ao -ao -aR -ai -ai -ai -ad -ad -ad -ad -ad -aR -ao -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -cm -cm -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bJ -cm -cm -cm -cm -cm -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ao -ao -ao -ax -ao -ao -ao -ai -ai -ai -ai -ai -ai -ax -ao -ao -ao -ax -ai -ax -ao -ao -ao -ax -ad -ad -ax -ao -ao -ao -ax -ai -ai -ad -ad -ai -ad -ad -ad -ai -ax -ao -ao -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -ax -ao -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bO -bJ -cm -cm -bK -bR -bR -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -cm -cm -cm -cm -bK -bK -bK -bJ -bJ -cq -bJ -bJ -bJ -bJ -fR -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -aC -ao -aE -ax -ao -ao -ao -ai -ai -ai -ai -ai -ai -ax -aR -aR -ao -ax -ai -ax -ao -ao -ao -ax -ad -ad -ax -ao -ao -ao -ax -ai -ai -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ao -ao -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bO -bO -bO -bO -bJ -bJ -cm -cm -bR -bJ -bJ -cK -bK -bK -bN -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -cm -cm -cm -cm -bK -bK -bJ -bJ -fj -fd -bK -bK -bJ -bJ -fR -bJ -bJ -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ax -ax -ax -ax -ax -ao -ao -ao -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ax -ao -aR -aR -ax -ad -ai -ax -aw -ao -aR -ax -ai -ai -ai -ad -ad -ad -ad -al -an -ai -ai -ai -al -al -ai -ai -ai -ad -ad -ad -ad -ax -ax -ao -ao -am -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bJ -bJ -bO -bJ -bJ -bJ -bK -bK -bK -bR -bJ -bJ -bR -bK -bK -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bK -cm -cm -cm -bK -bK -bK -bJ -fd -bJ -bJ -bK -bK -bJ -fR -bJ -bJ -bJ -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ao -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ai -ax -ao -aw -ao -ax -ai -ai -ai -ad -ad -ad -ad -ad -ad -al -ao -al -ad -ad -ad -ad -ad -ad -ad -ax -al -ai -ao -ao -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bJ -bK -bK -bK -bK -bR -bJ -bJ -bJ -bJ -bR -bN -bN -bJ -bJ -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bJ -bK -cm -cm -bK -bK -bK -bK -bK -bJ -bJ -bK -bK -bK -bK -bK -fR -bJ -bJ -bJ -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ad -ai -ai -ai -ai -ai -ax -aS -ao -aS -ax -ax -ax -ax -ax -ax -ax -ad -ad -ax -ao -av -ao -ax -ai -ai -ad -ad -ad -ad -ad -ad -ai -ao -ai -ax -ad -ad -ad -ad -ad -ad -ad -ao -ao -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bJ -bK -bK -bK -bK -bR -bJ -cQ -bJ -bJ -bR -bN -bN -bJ -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ao -ao -ad -ad -ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -aG -ao -ao -ad -ad -ad -ao -ao -ao -ax -ai -ai -ad -ad -ad -ad -ad -ad -ai -ao -ai -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bJ -bJ -bJ -bK -bK -bK -cK -bJ -bJ -bR -bN -bK -bK -bJ -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ao -ad -ad -ao -ao -ao -ao -ap -av -ao -ad -ad -ad -ap -ad -ao -ao -ad -ad -ao -ap -ao -ax -ai -ai -ad -ad -ad -ad -ad -ad -ai -ai -aq -ad -al -ax -ax -ai -ad -ax -ai -ao -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bO -bO -bJ -cm -cm -bK -bK -bR -bR -bN -bK -bK -bK -bJ -bJ -bO -bO -bO -bO -cm -bK -bK -bK -bK -bK -bK -bK -bN -bK -bK -bK -bK -bK -bK -bN -bK -bK -bK -bK -bK -bK -bJ -bJ -cq -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ao -ao -ao -ao -ao -ad -ad -ad -ad -ao -ao -ad -ad -ao -ao -ao -ao -ao -aB -ax -ai -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ao -ai -ai -ai -ai -ao -ao -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bO -bO -bJ -cm -cm -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bO -bO -bO -bO -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -fX -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -al -ax -ax -ad -ad -ad -ad -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ai -ao -ao -ao -ao -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -cd -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -cq -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ai -bs -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bO -bO -bO -bO -bO -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bJ -bO -bO -bO -bK -bK -bO -bO -bO -bO -cm -cm -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bO -bO -bO -bJ -cq -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ai -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bJ -bO -bO -bO -bK -bK -bO -bO -bO -bO -cm -cm -bK -bK -bK -bK -cm -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -bK -bO -bO -bO -bO -bO -bO -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -cq -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bK -cm -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bP -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bN -bN -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bJ -bJ -bP -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bJ -bJ -bQ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bK -bK -bK -bK -bK -bK -bK -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bJ -bT -bQ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -cm -cm -cm -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ad -ai -ad -ad -ad -ad -ad -ai -ad -an -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bS -bS -bQ -bJ -bJ -cq -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ad -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ai -ai -aY -ao -aZ -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bT -bY -bR -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -cq -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -an -ao -ba -ao -an -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bT -bT -bR -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bN -bN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -cq -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ad -ad -ad -ad -ad -ad -ai -aZ -ao -aY -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bT -bT -bQ -bK -bK -bJ -bJ -cL -bJ -bJ -bJ -bJ -bJ -bK -bN -bN -bN -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -cU -bJ -bJ -bJ -bJ -bK -bK -bK -fw -bJ -bJ -cq -bJ -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -an -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bT -bT -bQ -bK -bK -bK -bJ -bJ -bJ -cU -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bJ -bJ -bJ -fe -fk -fn -fd -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -cq -bJ -bO -bO -bO -bO -bO -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bT -bT -bQ -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bJ -bJ -fc -bJ -fl -fo -bJ -fF -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bT -bT -bR -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -cq -cU -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -fd -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bQ -bT -bT -bQ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bJ -bJ -bJ -bJ -bJ -bJ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -bK -bK -bR -bU -bU -bQ -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -bK -aa -aa -aa -aa -aa -aa -aa -"} -(249,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -OX -OX -OX -OX -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(251,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(252,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(253,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(254,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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 -"} -(255,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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -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 -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/RandomZLevels/chilly.dmm b/_maps/RandomZLevels/chilly.dmm deleted file mode 100644 index d93a15c0b717..000000000000 --- a/_maps/RandomZLevels/chilly.dmm +++ /dev/null @@ -1,76647 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/bed, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"ab" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ac" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility4) -"ae" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"af" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/wrapping, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ag" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ah" = ( -/obj/structure/closet, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat/coldres2, -/obj/item/clothing/glasses/hud/security, -/obj/item/clothing/under/color/black, -/obj/item/clothing/accessory/armband, -/obj/item/storage/backpack/satchel/sec, -/obj/item/radio/headset/headset_sec/alt/department, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ai" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/cave) -"aj" = ( -/obj/item/trash/can/food/peaches/maint, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ak" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"al" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"am" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 2" - }, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"an" = ( -/obj/item/shard, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"ao" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"ap" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aq" = ( -/obj/effect/turf_decal/dust, -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility3) -"ar" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"as" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/storage/backpack/satchel/leather, -/obj/item/clothing/neck/stripedgreenscarf/black, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"at" = ( -/obj/structure/closet/secure_closet/freezer, -/obj/item/reagent_containers/glass/bucket/wooden{ - pixel_x = -12; - pixel_y = 9 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"au" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"av" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"aw" = ( -/obj/item/kitchen/knife, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ax" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ay" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/engineering/glass{ - name = "Train Control Room" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"az" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"aA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"aB" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/gateway/away, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"aD" = ( -/obj/effect/decal/cleanable/cum, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aE" = ( -/obj/structure/flora/tree/pine, -/mob/living/simple_animal/hostile/asteroid/wolf, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aF" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"aG" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/chilly/cave) -"aH" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"aI" = ( -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"aJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"aK" = ( -/obj/effect/decal/cleanable/poo, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aL" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"aN" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"aO" = ( -/obj/structure/lattice, -/obj/item/flashlight/seclite, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"aP" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"aQ" = ( -/obj/machinery/hydroponics/soil, -/obj/structure/rospilovo/krest{ - desc = "There\'s something written on it: R.I.P Stanislav Zaporov, 2542-2560. Died from salo suffocation."; - pixel_x = 16; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/cum, -/obj/effect/decal/cleanable/poo, -/obj/item/food/poo/cooked{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/food/poo/cooked, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aR" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility5) -"aS" = ( -/obj/structure/lattice, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/effect/turf_decal/weather/side, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"aT" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"aU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/champagne{ - pixel_x = -8 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"aV" = ( -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/manipulator, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"aW" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility4) -"aX" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/hatchet, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"aY" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/cave) -"aZ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"ba" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"bb" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"bc" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"bd" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"be" = ( -/turf/open/space/basic, -/area/awaymission/chilly/mountain) -"bf" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"bg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/security/cell/southleft{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"bh" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rospilovo/shitok/shitok2{ - pixel_y = 18 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"bi" = ( -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"bj" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"bk" = ( -/obj/structure/mineral_door/wood, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"bl" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"bm" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"bo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"bp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"br" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"bt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"bu" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"bv" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility/croom) -"bw" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"bx" = ( -/turf/open/floor/plasteel/stairs/old/chilly, -/area/awaymission/chilly/facility2) -"by" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"bz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"bA" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"bB" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Medical Bay" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"bC" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"bD" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"bE" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"bF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"bG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"bH" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"bI" = ( -/obj/structure/table, -/obj/item/pai_cable, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"bJ" = ( -/obj/item/kitchen/knife/butcher, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"bK" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"bL" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/pistachios, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"bM" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/syndi_cakes, -/obj/structure/trash_pile, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"bN" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"bO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/pluoxium, -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"bP" = ( -/obj/structure/chair/brevno{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"bQ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"bR" = ( -/turf/open/floor/plasteel/stairs/old/chilly/right, -/area/awaymission/chilly/facility2) -"bS" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"bT" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/jacket/puffer, -/obj/item/clothing/under/color/white, -/obj/item/clothing/neck/stripedgreenscarf/grey, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"bU" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"bV" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"bW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"bX" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/partyhard/steel, -/area/awaymission/chilly/facility2) -"bY" = ( -/obj/machinery/computer/secure_data{ - dir = 4; - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"bZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"ca" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"cb" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"cc" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"cd" = ( -/obj/structure/lattice, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/structure/sign/warning/securearea/ntsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"ce" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"cf" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/facility4) -"ch" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ci" = ( -/obj/effect/decal/cleanable/food/plant_smudge, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"cj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"ck" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"cl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin/bluespace, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"cm" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"cn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"co" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/awaymission/chilly/facility4) -"cp" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 4 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = -4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"cq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"cs" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"ct" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/cave) -"cu" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/chilly/mountain) -"cv" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"cw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/structure/rospilovo/radio, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"cx" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"cy" = ( -/obj/machinery/oldvents, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"cz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility2) -"cA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"cB" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"cC" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility) -"cD" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/pod, -/area/awaymission/chilly/facility) -"cE" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"cF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/item/storage/belt/utility{ - pixel_y = 4 - }, -/obj/item/storage/belt/utility{ - pixel_y = -4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"cG" = ( -/obj/machinery/chem_master/condimaster, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/dark, -/area/awaymission/chilly/facility3) -"cH" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/remains/human, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"cI" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/mineral/wood/nonmetal, -/area/awaymission/chilly/facility) -"cJ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"cK" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/structure/closet/crate, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"cL" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"cM" = ( -/obj/structure/chair/sofa/left, -/obj/effect/turf_decal/dust, -/obj/item/boombox, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"cN" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"cO" = ( -/obj/structure/fence/cut/large, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"cP" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"cQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/weldingtool/largetank, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"cR" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"cS" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"cT" = ( -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"cU" = ( -/obj/item/clothing/mask/bandana/black, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"cV" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"cW" = ( -/obj/structure/closet/secure, -/obj/item/storage/backpack/satchel, -/obj/item/radio, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"cX" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Railway Station" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/cave) -"cY" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/mountain) -"cZ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"da" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"db" = ( -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"dc" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/obj/item/food/candy, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"dd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"de" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"df" = ( -/obj/effect/turf_decal/bot, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/gear, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"dg" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"dh" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical/old, -/obj/item/grenade/c4{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/paper/fluff/awaymissions/chilly/base2traitorobj, -/obj/item/grenade/syndieminibomb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"dj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dk" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"dl" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/cave) -"dn" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"do" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/candy, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"dp" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"dq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"ds" = ( -/obj/effect/turf_decal, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"dt" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"du" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"dv" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"dw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"dx" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/trash/boritos, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"dy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/structure/closet/crate, -/obj/item/healthanalyzer, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"dz" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged5"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"dA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"dB" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/mountain) -"dC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate/freezer, -/obj/item/food/bread/plain, -/obj/item/food/bread/plain, -/obj/item/food/canned/peaches, -/obj/item/food/canned/peaches, -/obj/item/food/canned/peaches, -/obj/item/food/canned/beans, -/obj/item/food/bun, -/obj/item/food/bun, -/obj/item/food/bun, -/obj/item/food/grown/carrot, -/obj/item/food/grown/citrus/lemon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/potato, -/obj/item/food/grown/pumpkin, -/obj/item/food/grown/tomato, -/obj/item/food/grown/tomato, -/obj/item/food/grown/wheat, -/obj/item/food/grown/wheat, -/obj/item/food/tortilla, -/obj/item/food/shaurma, -/obj/item/food/grown/banana, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"dD" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"dE" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant2, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"dF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged5"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"dG" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"dH" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dI" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"dJ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"dK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/porta_turret/syndicate/energy{ - dir = 4; - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg'; - shot_delay = 10 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"dL" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"dM" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dN" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/cheesie, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dO" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dP" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"dQ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage{ - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"dR" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"dS" = ( -/obj/item/stack/rods, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"dT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"dV" = ( -/obj/structure/table/wood, -/obj/structure/rospilovo/televizor/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility4) -"dW" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"dX" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"dY" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"dZ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/window{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ea" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"eb" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector K Northern Hallway" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"ec" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ed" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"ee" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"ef" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"eg" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"eh" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"ei" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"ej" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"ek" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"el" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/facility) -"em" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 6" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"en" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"eo" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"ep" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"eq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"er" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"es" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/popcorn, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"et" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"eu" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"ev" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"ew" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"ex" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"ey" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/cave) -"ez" = ( -/obj/structure/table, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"eA" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"eB" = ( -/obj/machinery/light/broken, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/trash/tray, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"eC" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/mask/skull, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"eD" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/awaymission/chilly/cave) -"eE" = ( -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"eF" = ( -/obj/structure/barricade/wooden/snowed, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"eG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"eH" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"eI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"eJ" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"eK" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"eL" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"eM" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/cave) -"eN" = ( -/obj/effect/turf_decal/dust, -/obj/item/cigbutt{ - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"eO" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/facility) -"eP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"eQ" = ( -/obj/structure/flora/bush, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility2) -"eR" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"eS" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"eU" = ( -/obj/structure/statue/snow/snowlegion, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"eV" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"eW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"eX" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"eY" = ( -/obj/item/stack/sheet/bone, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"eZ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"fa" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/head/beanie, -/obj/item/key, -/obj/item/clothing/neck/stripedgreenscarf/black, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"fb" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - name = "TV" - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"fc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"fd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"fe" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"ff" = ( -/obj/item/fireaxe, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"fg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"fh" = ( -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"fi" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Power Control Room" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"fj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Western Hallway" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"fk" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"fl" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"fm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"fn" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"fo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"fp" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/emergency, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility3) -"fq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"fr" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly) -"fs" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"ft" = ( -/obj/item/grown/log/tree, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"fu" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"fv" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"fw" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"fx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"fy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"fz" = ( -/obj/item/gun/ballistic/automatic/m41a2, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"fA" = ( -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"fB" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"fC" = ( -/obj/structure/barricade/sandbags, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"fD" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"fE" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged2" - }, -/area/awaymission/chilly/facility) -"fF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"fG" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"fH" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"fI" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"fJ" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/candy, -/obj/effect/decal/cleanable/molten_object, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"fK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/awaymission/chilly/facility4) -"fL" = ( -/obj/effect/turf_decal/dust, -/obj/item/shard, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"fM" = ( -/mob/living/simple_animal/hostile/asteroid/polarbear{ - health = 400; - melee_damage_upper = 60; - obj_damage = 40 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"fN" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"fO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/engineering, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"fP" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"fQ" = ( -/obj/structure/falsewall/wood, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"fR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"fS" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"fT" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/chilly/facility/croom) -"fU" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"fV" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/light_emitter, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"fW" = ( -/obj/effect/decal/remains/human, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"fX" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"fZ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"ga" = ( -/obj/effect/decal/cleanable/chem_pile, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gb" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"gc" = ( -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gd" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ge" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"gf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/oil, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"gg" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"gh" = ( -/obj/structure/railing, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"gi" = ( -/obj/structure/bonfire, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"gj" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"gk" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"gl" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"gm" = ( -/obj/item/stack/rods, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"go" = ( -/obj/item/toy/snowball, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gp" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"gr" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"gs" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"gu" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"gv" = ( -/obj/effect/light_emitter, -/obj/item/shard, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"gw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/turf/open/floor/partyhard/steel{ - icon_state = "g-2" - }, -/area/awaymission/chilly/facility2) -"gx" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"gy" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"gz" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"gA" = ( -/obj/item/gun/ballistic/automatic/mini_uzi, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility2) -"gB" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"gC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"gD" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/edagger, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 8 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"gE" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"gF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"gG" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"gH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"gI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/xeno/larva{ - pixel_x = -8; - pixel_y = -7 - }, -/obj/effect/decal/remains/xeno/larva, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"gJ" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"gK" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rospilovo/shitok{ - pixel_y = 24 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"gL" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"gM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"gN" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"gO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"gP" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"gQ" = ( -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"gR" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing/corner, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"gS" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/effect/turf_decal/dust, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"gT" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"gU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"gV" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Train Control Room" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"gW" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/tactical, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/brute, -/obj/item/storage/backpack/duffelbag/syndie/med, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"gX" = ( -/obj/structure/girder, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"gY" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/white, -/obj/machinery/door/window/brigdoor/security/cell/northright{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"gZ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"ha" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"hb" = ( -/obj/structure/flora/rock/pile, -/obj/structure/lattice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"hc" = ( -/obj/structure/fence/cut/large{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light/broken, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"he" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"hf" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hg" = ( -/obj/effect/decal/cleanable/wrapping, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/awaymission/chilly/facility4) -"hi" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"hj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/kitchen/knife, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"hk" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly) -"hl" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/chilly/facility) -"hm" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"hn" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ho" = ( -/obj/effect/turf_decal, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"hq" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"hr" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"hs" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/chips, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"ht" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 10" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"hu" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/stack/medical/bruise_pack, -/turf/open/floor/partyhard/steel{ - icon_state = "g-3" - }, -/area/awaymission/chilly/facility2) -"hv" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Central Hallway" - }, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"hw" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"hx" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"hy" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/flashlight/seclite, -/turf/open/floor/partyhard/steel{ - icon_state = "g-3" - }, -/area/awaymission/chilly/facility2) -"hz" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/dust, -/obj/item/trash/tray, -/obj/item/food/cornchips, -/obj/item/food/chips{ - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"hA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"hB" = ( -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility4) -"hC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/rospilovo/radio, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"hD" = ( -/obj/machinery/door/firedoor, -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/manipulator, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"hE" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/item/trash/can, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"hF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/obj/item/stack/teeth/human, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"hG" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/jacket/leather, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/neck/stripedbluescarf, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"hH" = ( -/obj/machinery/plantgenes, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/dark, -/area/awaymission/chilly/facility3) -"hI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/awaymission/chilly/facility4) -"hJ" = ( -/obj/item/stack/sheet/bone, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hK" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"hL" = ( -/obj/item/trash/semki, -/obj/item/broken_bottle, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"hM" = ( -/obj/structure/flora/tree/dead, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hN" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"hO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"hP" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"hQ" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"hR" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"hS" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"hT" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"hU" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"hV" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/remains/human, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"hW" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/turf/open/floor/partyhard/steel{ - icon_state = "g-2" - }, -/area/awaymission/chilly/facility2) -"hX" = ( -/obj/structure/lattice, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"hY" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"hZ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"ia" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"ib" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"ic" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"id" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"ie" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/syndietrain) -"ig" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/science, -/obj/item/dnainjector/lasereyesmut, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"ih" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans{ - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/trash/can/food/beans, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"ii" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"ij" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/tracks, -/obj/effect/decal/cleanable/blood, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"ik" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical/old/clean, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"il" = ( -/obj/machinery/vending/hydroseeds, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"im" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"in" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"io" = ( -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/syndicate, -/obj/item/storage/toolbox/syndicate, -/obj/item/inducer/syndicate, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/engineering, -/obj/item/weldingtool/experimental, -/obj/item/multitool/tricorder, -/obj/item/stock_parts/cell/bluespace, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"ip" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"iq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"ir" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"is" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"it" = ( -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"iu" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/dust, -/obj/item/reagent_containers/food/drinks/colocup/lean{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/colocup/lean, -/obj/item/reagent_containers/food/drinks/colocup/lean{ - pixel_x = -6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"iv" = ( -/obj/structure/lattice, -/obj/effect/decal/remains/human, -/obj/item/clothing/suit/armor/bulletproof, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"iw" = ( -/obj/item/storage/box/matches, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"ix" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"iy" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"iz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"iA" = ( -/obj/effect/light_emitter, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"iB" = ( -/obj/effect/decal/cleanable/food/plant_smudge, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"iC" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"iD" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space/stormtrooper, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly) -"iE" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility2) -"iF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"iG" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"iH" = ( -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"iI" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/highsecurity{ - name = "Armory Equipment"; - req_access_txt = "3" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"iJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"iK" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/weather/side/corner{ - dir = 5 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"iL" = ( -/obj/effect/light_emitter, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"iM" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"iN" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Storage" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"iO" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod, -/area/awaymission/chilly/facility3) -"iP" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"iQ" = ( -/obj/item/trash/can, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"iR" = ( -/obj/structure/door_assembly/door_assembly_hatch{ - anchored = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility5) -"iS" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"iT" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility/croom) -"iU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"iV" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_containers/food/drinks/bottle/cream, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/dust, -/obj/item/food/sausage, -/obj/item/food/sausage, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"iW" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"iX" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"iY" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"iZ" = ( -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ja" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"jb" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/obj/item/trash/can, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"jc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/flora/bush, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility2) -"jd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"je" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/gatewaystart) -"jf" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Canteen" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"jg" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space/stormtrooper, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"jh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/loading_area/white, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"ji" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"jj" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"jk" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"jl" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"jm" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/ore/uranium{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stack/ore/uranium{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/item/stack/ore/uranium, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"jn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/obj/effect/decal/cleanable/cum, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"jo" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Entrance" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"jp" = ( -/obj/structure/rospilovo/painting/lenin{ - pixel_y = 31 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"jq" = ( -/obj/item/pickaxe/rusted, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"jr" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"js" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged4"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"jt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"ju" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"jv" = ( -/obj/machinery/door/airlock/hatch{ - name = "Central Hallway" - }, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"jw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/porta_turret/syndicate/energy{ - dir = 8; - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg'; - shot_delay = 10 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"jx" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"jy" = ( -/obj/structure/table, -/obj/item/radio, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"jz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1 - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"jA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"jB" = ( -/obj/structure/chair/sofa/left, -/obj/item/shard, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"jC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"jD" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/molten_object, -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/item/binoculars, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"jE" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"jF" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"jG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/chair/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/awaymission/chilly/facility4) -"jH" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"jI" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"jJ" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"jK" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"jL" = ( -/obj/effect/turf_decal/weather/side, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"jM" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/item/cigbutt{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"jN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"jO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/ash, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"jP" = ( -/obj/effect/turf_decal/dust, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"jQ" = ( -/turf/open/floor/plasteel/stairs/old/chilly/left, -/area/awaymission/chilly/facility2) -"jR" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/plastic{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"jS" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"jT" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"jU" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"jW" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/window/brigdoor/eastright, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"jX" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility2) -"jY" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"jZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/teeth/human, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"ka" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"kb" = ( -/obj/structure/table, -/obj/item/flashlight/lamp/green, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"kc" = ( -/turf/closed/wall/mineral/wood/nonmetal, -/area/awaymission/chilly/facility) -"kd" = ( -/obj/item/shard, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ke" = ( -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/helmet/skull, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"kf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"kg" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"kh" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"ki" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility) -"kk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/robot_debris, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"kl" = ( -/obj/structure/chair/brevno/log2{ - dir = 1 - }, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"km" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"kn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"ko" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"kp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/mine/shrapnel/sting, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"kq" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"kr" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"ks" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"kt" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"kv" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"kw" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space/stormtrooper, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"kx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_x = 30; - pixel_y = 3 - }, -/obj/structure/sign/directions/vault{ - dir = 1; - pixel_x = 30; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"ky" = ( -/obj/structure/closet, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/obj/item/key, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"kz" = ( -/obj/structure/flora/stump, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"kA" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/pistachios, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"kB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"kC" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility3) -"kD" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/item/cigbutt, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"kF" = ( -/obj/item/shard, -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"kG" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"kH" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"kI" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"kJ" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"kK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/ash{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/cigbutt{ - pixel_x = -5; - pixel_y = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"kL" = ( -/obj/effect/turf_decal/weather/side, -/obj/machinery/power/floodlight, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"kM" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"kN" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"kO" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"kP" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, -/area/awaymission/chilly/syndietrain) -"kQ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"kR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"kS" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"kT" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/item/crowbar/large, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"kU" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/firecloset, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"kV" = ( -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/surface) -"kW" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"kX" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/awaymission/chilly/facility3) -"kY" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"kZ" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"la" = ( -/obj/effect/turf_decal/dust, -/obj/effect/mine/shrapnel/sting, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"lb" = ( -/obj/item/stack/sheet/bone, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ld" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"le" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"lf" = ( -/obj/structure/girder, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"lg" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"lh" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/teeth/human, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"li" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"lj" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/obj/item/gun/ballistic/automatic/wt550, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"lk" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"ll" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"lm" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"ln" = ( -/obj/structure/lattice, -/obj/structure/barricade/sandbags, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"lo" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/awaymission/chilly/syndietrain) -"lp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"lq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"lr" = ( -/obj/structure/fence, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"ls" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"lt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/security/cell/northright{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"lu" = ( -/obj/structure/bonfire, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"lv" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/surface) -"lw" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"lx" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"ly" = ( -/obj/structure/flora/tree/pine, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"lz" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"lA" = ( -/obj/machinery/oldvents, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"lB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/generic, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"lC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"lE" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"lF" = ( -/obj/structure/closet, -/obj/item/clothing/head/helmet/riot/coldres, -/obj/item/melee/classic_baton/german{ - desc = "A compact yet robust personal defense weapon. Can be concealed when folded."; - name = "baton" - }, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/construction/rcd/loaded, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/storage/belt/utility/chief/full, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"lG" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/obj/item/paper/crumpled/awaymissions/chilly/camp3, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"lH" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"lI" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"lJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"lK" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"lL" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"lM" = ( -/obj/structure/girder, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"lN" = ( -/obj/structure/table, -/obj/item/radio/intercom, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"lO" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/facility4) -"lP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"lQ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"lR" = ( -/obj/effect/light_emitter, -/obj/machinery/light/small/broken, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"lS" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"lT" = ( -/obj/machinery/light/broken, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"lU" = ( -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"lV" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"lW" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/wood, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"lX" = ( -/obj/effect/turf_decal/dust, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing" - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"lY" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"lZ" = ( -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/chilly/cave) -"ma" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/obj/item/clothing/mask/skull, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"mb" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/medical/gauze, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"mc" = ( -/obj/effect/turf_decal/dust, -/obj/item/shard, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/cave) -"md" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"me" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"mf" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"mg" = ( -/obj/structure/girder, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/ntcargotrain) -"mh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"mi" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"mj" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"mk" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"ml" = ( -/obj/structure/grille, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"mm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small/broken, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"mn" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"mo" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"mp" = ( -/obj/machinery/light/small/broken, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"mq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"mr" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"ms" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"mu" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"mv" = ( -/obj/structure/grille, -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"mw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"mx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/bot, -/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"my" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/mountain) -"mz" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"mA" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"mB" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"mC" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"mD" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"mE" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"mF" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/item/trash/can, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"mG" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/pod, -/area/awaymission/chilly/facility) -"mH" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/obj/item/storage/fancy/cigarettes/cigpack_robustgold, -/obj/item/lighter{ - pixel_x = 5; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"mI" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/surface) -"mJ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical/old, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"mK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"mL" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"mM" = ( -/obj/effect/turf_decal/dust, -/obj/item/clothing/mask/breath/medical, -/obj/structure/lattice, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"mN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"mO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"mP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research Division Access" - }, -/obj/structure/fans/tiny, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/gatewaystart) -"mQ" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"mR" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"mS" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"mT" = ( -/turf/closed/wall/rust, -/area/awaymission/chilly/ntcargotrain) -"mU" = ( -/obj/structure/bed, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"mV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"mW" = ( -/obj/structure/door_assembly/door_assembly_hatch{ - anchored = 1 - }, -/obj/structure/lattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility5) -"mX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"mY" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"mZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"na" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"nb" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"nc" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/peaches, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"nd" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/syndi_cakes, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"ne" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility2) -"nf" = ( -/obj/effect/turf_decal/bot, -/obj/item/gun/magic/staff/spellblade, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/gear, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"ng" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"ni" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/rods, -/obj/item/trash/candy, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"nj" = ( -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/mountain) -"nk" = ( -/obj/effect/mine/shrapnel/sting, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"nl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"nm" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/decal/prison/pipe/pipea{ - icon_state = "pipe5" - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"no" = ( -/obj/structure/closet, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/clothing/head/helmet/riot/coldres, -/obj/item/melee/classic_baton/german{ - desc = "A compact yet robust personal defense weapon. Can be concealed when folded."; - name = "baton" - }, -/obj/item/flashlight/seclite, -/obj/item/storage/belt/military/assault, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/clothing/mask/gas/sechailer, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"np" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"nq" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"nr" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ns" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/syndi_cakes, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"nt" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"nu" = ( -/obj/structure/closet/crate/secure, -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food/peaches, -/obj/item/trash/can/food/peaches, -/obj/item/trash/can/food/peaches, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"nv" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"nw" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"nx" = ( -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility4) -"ny" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/bot_red/right, -/obj/effect/turf_decal/bot_red/left, -/obj/machinery/porta_turret/syndicate/energy{ - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - shot_delay = 10 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"nA" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"nB" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"nC" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/semki, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"nD" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"nE" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 1" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"nF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"nG" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"nH" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single, -/area/awaymission/chilly/gatewaystart/base2armory) -"nI" = ( -/obj/item/trash/can/food/beans, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"nK" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/under/switer/dark, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/neck/scarf/green, -/obj/item/gun/ballistic/automatic/pistol/makarov, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"nL" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"nM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/gear, -/obj/item/wisp_lantern, -/obj/item/reagent_containers/glass/bottle/potion/flight, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"nN" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"nP" = ( -/obj/structure/sign/warning/securearea/ntsign, -/turf/closed/wall/rust, -/area/awaymission/chilly/ntcargotrain) -"nQ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"nR" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/clothing/neck/scarf/zebra, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"nS" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/candy, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"nT" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"nU" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"nV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure/hydroponics, -/obj/item/seeds/tomato/blue/bluespace, -/obj/item/seeds/lavaland/ember, -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"nW" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"nX" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"nY" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"nZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"oa" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"ob" = ( -/obj/structure/closet/crate/large, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"oc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"od" = ( -/obj/effect/turf_decal/dust, -/obj/item/shard, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"oe" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/ntcargotrain) -"og" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"oh" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"oi" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"oj" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"ok" = ( -/obj/item/crowbar/red, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ol" = ( -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"om" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"on" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/effect/turf_decal/dust, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"oo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"op" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"oq" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"or" = ( -/obj/effect/light_emitter, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"os" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ot" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/surface) -"ou" = ( -/obj/effect/light_emitter, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ov" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rospilovo/apc/open{ - pixel_x = 2; - pixel_y = 21 - }, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"ow" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/gun/ballistic/automatic/wt550, -/obj/item/gun/ballistic/automatic/wt550, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"ox" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"oy" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"oz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"oA" = ( -/obj/structure/closet/mini_fridge, -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"oB" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"oC" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"oD" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"oE" = ( -/turf/open/floor/plasteel/stairs/old/chilly/left{ - dir = 8 - }, -/area/awaymission/chilly/cave) -"oF" = ( -/turf/closed/wall, -/area/awaymission/chilly/facility) -"oG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/poo, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"oH" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"oI" = ( -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"oJ" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/mountain) -"oK" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 9" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"oL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/gatewaystart) -"oM" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"oN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/trash/popcorn, -/obj/item/trash/can, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"oO" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Central Hallway" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"oP" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"oQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/book/bible/booze, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"oR" = ( -/obj/machinery/door/airlock{ - name = "Kitchen" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"oS" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"oT" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"oU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"oV" = ( -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"oW" = ( -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"oX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"oY" = ( -/obj/structure/chair/comfy/shuttle, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"oZ" = ( -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"pa" = ( -/obj/effect/turf_decal/dust, -/obj/structure/mecha_wreckage/gygax, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"pb" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"pc" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"pd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"pe" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"pf" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/machinery/power/floodlight, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"pg" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Central Hallway" - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"ph" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"pi" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"pj" = ( -/obj/structure/fireplace, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"pk" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table_frame, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"pl" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"pm" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"pn" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/item/clothing/under/rank/cargo/tech, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/cave) -"po" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"pp" = ( -/obj/structure/flora/tree/pine, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"pq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"pr" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/clothing/head/hardhat, -/turf/open/floor/partyhard/steel{ - icon_state = "g-2" - }, -/area/awaymission/chilly/facility2) -"ps" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"pt" = ( -/obj/item/flashlight/glowstick, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"pu" = ( -/obj/effect/mine/shrapnel/sting, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"pv" = ( -/obj/structure/lattice, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"pw" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"px" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"py" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"pz" = ( -/obj/structure/sign/warning/securearea/ntsign, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility2) -"pA" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"pB" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"pC" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility5) -"pD" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"pE" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"pF" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"pG" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/dust, -/obj/structure/sign/departments/restroom{ - pixel_x = -31 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"pH" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"pI" = ( -/obj/structure/statue/snow/snowman, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"pJ" = ( -/obj/effect/decal/prison/pipe/pipea, -/obj/item/cane, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"pK" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"pL" = ( -/obj/item/trash/can/food/peaches, -/obj/item/trash/raisins{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"pM" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/shard, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"pN" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/hooded/wintercoat/captain, -/obj/item/clothing/under/color/white, -/obj/item/clothing/neck/stripedbluescarf, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"pO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"pP" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"pQ" = ( -/obj/machinery/camera{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"pR" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"pS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"pT" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"pU" = ( -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly) -"pV" = ( -/obj/structure/door_assembly/door_assembly_hatch{ - anchored = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"pW" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"pX" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/structure/closet/crate, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"pY" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"pZ" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"qa" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/flashlight, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"qb" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"qc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"qd" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"qe" = ( -/obj/effect/light_emitter, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/surface) -"qf" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"qg" = ( -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"qh" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"qi" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"qj" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/head/helmet/skull, -/obj/machinery/light/small/broken, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"qk" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/broken, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ql" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/light_emitter{ - light_color = "#329cd9"; - name = "Base I Engineering Blue" - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility/croom) -"qm" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"qn" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"qo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"qp" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"qq" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"qr" = ( -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"qs" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"qt" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"qu" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Storage" - }, -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"qv" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"qw" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"qx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"qy" = ( -/obj/structure/closet/crate/secure, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/item/storage/toolbox/mechanical/old/clean, -/obj/item/storage/toolbox/mechanical/old/clean, -/obj/item/storage/toolbox/mechanical/old/clean, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"qz" = ( -/obj/structure/door_assembly/door_assembly_hatch{ - anchored = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"qA" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"qB" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, -/area/awaymission/chilly/syndietrain) -"qC" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"qD" = ( -/obj/effect/decal/cleanable/chem_pile, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"qE" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"qF" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"qH" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"qI" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"qJ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 10 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"qK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/structure/rospilovo/apc/open{ - pixel_y = 22 - }, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"qL" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"qM" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"qN" = ( -/obj/structure/lattice, -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"qO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"qP" = ( -/turf/open/floor/plasteel/stairs/old/chilly/right{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"qQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"qR" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"qT" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"qU" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "pile" - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"qV" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"qW" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/cave) -"qX" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"qY" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"qZ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"ra" = ( -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/mineral/plasma/thirty, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/plasma, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"rb" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"rc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"rd" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/bone, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"re" = ( -/obj/effect/decal/cleanable/dirt/dust{ - pixel_y = -2 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8; - pixel_x = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"rf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"rg" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"rh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"ri" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"rj" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility3) -"rl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/reagentgrinder, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod, -/area/awaymission/chilly/facility3) -"rm" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"rn" = ( -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"ro" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"rp" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"rq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"rr" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"rs" = ( -/obj/structure/lattice, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/under/rank/civilian/head_of_personnel, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"rt" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"ru" = ( -/obj/item/trash/tray, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"rv" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"rw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"rx" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"ry" = ( -/turf/open/floor/plasteel/stairs/old/chilly/right{ - dir = 8 - }, -/area/awaymission/chilly/cave) -"rz" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/stock_parts/capacitor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"rA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side, -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"rB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"rC" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"rD" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"rE" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"rF" = ( -/obj/effect/turf_decal, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"rG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"rH" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"rI" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"rJ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"rK" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure, -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/obj/item/quantum_keycard{ - pixel_x = 7 - }, -/obj/item/quantum_keycard, -/obj/item/quantum_keycard{ - pixel_x = -7 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"rL" = ( -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"rM" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"rN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"rO" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility4) -"rP" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"rQ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility5) -"rS" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"rT" = ( -/obj/item/shovel, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"rU" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Storage" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"rV" = ( -/obj/structure/grille/broken, -/obj/item/stack/rods, -/obj/item/stack/sheet/iron, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"rW" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/mountain) -"rX" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"rY" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"rZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"sa" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"sb" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"sc" = ( -/turf/closed/wall, -/area/awaymission/chilly/gatewaystart) -"sd" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"se" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"sf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human{ - pixel_x = 2; - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"sg" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"sh" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/gatewaystart) -"si" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"sj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility2) -"sl" = ( -/obj/item/kirbyplants/dead, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"sm" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"sn" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"so" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"sp" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"sq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/gatewaystart) -"sr" = ( -/obj/structure/closet/secure_closet/freezer, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"ss" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"st" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"su" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"sx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"sy" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/partyhard/steel, -/area/awaymission/chilly/facility2) -"sz" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"sA" = ( -/obj/structure/closet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/helmet/riot/coldres, -/obj/item/melee/classic_baton/german{ - desc = "A compact yet robust personal defense weapon. Can be concealed when folded."; - name = "baton" - }, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/storage/firstaid/medical, -/obj/item/storage/firstaid/advanced, -/obj/item/storage/firstaid/toxin, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/storage/belt/medical/ems/cmo, -/obj/item/roller, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/defibrillator/compact, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"sB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"sC" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"sD" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"sE" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber" - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"sF" = ( -/obj/machinery/computer/monitor/secret{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"sG" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"sH" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate/secure, -/obj/item/clothing/glasses/hud/health/sunglasses, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"sI" = ( -/obj/machinery, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"sJ" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility3) -"sK" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"sL" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/gatewaystart) -"sM" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/item/pickaxe/emergency{ - pixel_x = 2 - }, -/obj/item/pickaxe/emergency{ - pixel_x = -2 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"sN" = ( -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"sO" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/item/radio, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"sQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"sR" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/under/color/white, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/item/clothing/neck/stripedgreenscarf, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"sT" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"sU" = ( -/obj/machinery/door/airlock/hatch{ - req_access_txt = "150" - }, -/obj/machinery/door/poddoor/preopen, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/syndietrain) -"sV" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"sW" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"sY" = ( -/obj/structure/noticeboard, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility2) -"sZ" = ( -/obj/effect/decal/cleanable/food/plant_smudge, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ta" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"tb" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"tc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"td" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/effect/decal/remains/human{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"te" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"tf" = ( -/turf/closed/wall/r_wall/rust, -/area/awaymission/chilly/gatewaystart/base2armory) -"tg" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"th" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"ti" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"tj" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"tl" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"tm" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"tn" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"to" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"tp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_x = -5 - }, -/obj/item/clothing/suit/hooded/wintercoat{ - pixel_x = 5 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"tq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"tr" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"ts" = ( -/obj/structure/rack, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre/protein, -/obj/item/storage/mre/protein, -/obj/item/storage/mre/vegan, -/obj/item/storage/mre/vegan, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"tt" = ( -/obj/effect/mine/shrapnel/sting, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"tu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility/emergencystorage) -"tw" = ( -/obj/structure/mecha_wreckage/durand, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"tx" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 7" - }, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"ty" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/obj/structure/window/reinforced/tinted/fulltile, -/turf/open/floor/partyhard/steel{ - icon_state = "g-2" - }, -/area/awaymission/chilly/facility2) -"tA" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 2 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 9; - pixel_y = -6 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/effect/turf_decal/dust, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -9; - pixel_y = -6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 2; - pixel_y = -9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"tB" = ( -/obj/structure/closet/crate/secure, -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"tC" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 8" - }, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"tD" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"tE" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Elevator" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"tF" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"tG" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"tH" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/structure/closet/crate, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"tI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots{ - pixel_x = -4 - }, -/obj/item/clothing/shoes/winterboots{ - pixel_x = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"tJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"tK" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"tL" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"tM" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"tN" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant3, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility) -"tO" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/obj/item/storage/box/matches, -/obj/item/storage/box/matches, -/obj/item/crowbar/red, -/obj/item/radio, -/obj/item/storage/firstaid/emergency, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"tP" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/porta_turret/syndicate/energy{ - dir = 1; - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg'; - shot_delay = 10 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"tQ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"tR" = ( -/obj/item/storage/belt/chameleon/bomb, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"tS" = ( -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/mineral/plasma/thirty, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/plasma, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"tT" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"tU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"tV" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"tW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/mre, -/obj/item/storage/mre{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"tX" = ( -/obj/effect/decal/cleanable/food/tomato_smudge, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"tY" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"tZ" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector B Arrival Control Room" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"ua" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"ub" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"uc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"ud" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"ue" = ( -/turf/closed/indestructible/rock/snow, -/area/awaymission/chilly/surface) -"uf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/belt/bandolier, -/obj/item/storage/belt/bandolier, -/obj/item/storage/belt/bandolier, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"uh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical/old, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"ui" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"uj" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/awaymission/chilly/facility3) -"uk" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ul" = ( -/obj/structure/mineral_door/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"um" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"un" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"uo" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"up" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"uq" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"ur" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"us" = ( -/obj/effect/light_emitter, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ut" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"uu" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"uv" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bedsheetbin, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"uw" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ux" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"uz" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"uA" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"uB" = ( -/obj/structure/mineral_door/wood, -/obj/structure/barricade/wooden/crude/snow, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"uC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/gatewaystart) -"uD" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"uE" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/toolbox/emergency/old, -/obj/item/radio, -/obj/item/electronics/apc, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"uF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"uG" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"uH" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/awaymission/chilly/facility/emergencystorage) -"uI" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"uK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/ammo, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"uL" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"uM" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"uN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/structure/table, -/obj/item/storage/box/matches, -/obj/item/hatchet, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"uO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/gatewaystart) -"uP" = ( -/obj/structure/barricade/wooden/snowed, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"uQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"uR" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"uS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility2) -"uT" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"uU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"uV" = ( -/obj/machinery/light/broken, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"uW" = ( -/obj/structure/rospilovo/shitok/shitok2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"uX" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"uY" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"uZ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/emergency/old, -/obj/item/hatchet, -/obj/item/pickaxe/emergency, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/awaymission/chilly/facility/emergencystorage) -"va" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"vb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"vc" = ( -/obj/structure/closet/crate, -/obj/item/vending_refill/coffee, -/obj/item/vending_refill/cigarette, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"vd" = ( -/obj/structure/table, -/obj/item/storage/firstaid/emergency, -/obj/item/reagent_containers/hypospray/medipen/survival{ - pixel_y = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"ve" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/structure/railing, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"vf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/pen, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"vg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/obj/machinery/light/small/broken, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"vh" = ( -/obj/structure/girder, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"vi" = ( -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"vj" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/structure/girder, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"vk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"vl" = ( -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/chilly/surface) -"vm" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"vn" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"vo" = ( -/obj/structure/rospilovo/apc/open{ - pixel_x = -1; - pixel_y = 24 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vp" = ( -/obj/machinery/power/floodlight, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vq" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"vr" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"vs" = ( -/obj/item/storage/box/matches, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/obj/machinery/door/poddoor/shutters/preopen, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"vu" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"vv" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility/croom) -"vx" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"vz" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"vA" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/obj/item/food/grown/mushroom/libertycap, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"vB" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"vC" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 5 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"vD" = ( -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"vE" = ( -/obj/machinery/camera{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"vF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility/emergencystorage) -"vG" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vH" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"vI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"vJ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"vK" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"vL" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer/wound, -/obj/item/storage/box/pillpack/potassiodide, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/awaymission/chilly/facility/emergencystorage) -"vM" = ( -/obj/machinery/oldvents/variant2, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"vN" = ( -/obj/structure/closet/crate/secure/science, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/stack/sheet/mineral/plasma{ - amount = 50 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vO" = ( -/obj/machinery, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"vP" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 4" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"vQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility3) -"vR" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"vS" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"vT" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"vW" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"vX" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"vY" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"wa" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"wb" = ( -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/facility) -"wc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"wd" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/engineering, -/obj/item/stack/sheet/mineral/plastitanium{ - amount = 50 - }, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/plastitaniumglass, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"we" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/chilly/gatewaystart) -"wf" = ( -/obj/structure/girder, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"wg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"wh" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/cave) -"wi" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"wj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/toilet{ - dir = 4; - pixel_x = -2 - }, -/obj/effect/decal/cleanable/shreds, -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"wk" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"wl" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"wm" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/sofa/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"wn" = ( -/obj/structure/lattice, -/obj/item/ammo_casing/c46x30mm, -/obj/item/ammo_casing/c46x30mm, -/obj/item/ammo_casing/c46x30mm, -/obj/item/ammo_casing/c46x30mm, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"wo" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"wp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"wq" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"wr" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"ws" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"wt" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/trash/tray, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"wu" = ( -/obj/machinery/door/airlock{ - name = "Male Restroom" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"wv" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/croom) -"ww" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/effect/turf_decal/dust, -/obj/item/storage/box/matches, -/obj/item/trash/plate, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"wx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"wy" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"wz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility3) -"wA" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"wB" = ( -/obj/item/chair, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"wC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"wD" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility2) -"wE" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"wF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/window/brigdoor/security/cell/southleft{ - name = "equipment door" - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"wG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/radio/off, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"wH" = ( -/obj/machinery/door/poddoor/shutters, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility3) -"wJ" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"wL" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"wN" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"wO" = ( -/obj/item/uplink/nuclear/debug{ - icon_state = null; - name = "breathe mask" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"wP" = ( -/obj/effect/turf_decal/dust, -/obj/machinery, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"wQ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"wR" = ( -/obj/machinery/oldvents, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"wS" = ( -/obj/structure/closet/crate/secure/science, -/obj/item/pickaxe/drill, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/structure/lattice, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"wT" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"wU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"wV" = ( -/obj/structure/closet/crate/engineering/electrical, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/computer_hardware/battery, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/stock_parts/cell/empty, -/obj/item/stock_parts/cell/empty, -/obj/item/stock_parts/cell/empty, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"wW" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"wX" = ( -/obj/item/shard, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"wY" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table_frame, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"wZ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"xa" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"xb" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"xc" = ( -/obj/item/gun/ballistic/shotgun/doublebarrel, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xd" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xe" = ( -/obj/structure/table, -/obj/item/flashlight/lamp/green, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"xf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"xg" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"xh" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xi" = ( -/obj/structure/bonfire, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"xj" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"xk" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"xn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"xo" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/ntcargotrain) -"xp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair/comfy/shuttle, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"xq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/chilly/facility) -"xr" = ( -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility3) -"xt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"xu" = ( -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"xv" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1" - }, -/area/awaymission/chilly/facility) -"xw" = ( -/obj/structure/lattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility/emergencystorage) -"xx" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Emergency Storage" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"xy" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"xz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/obj/structure/sign/warning/securearea/deck1{ - pixel_x = 31 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"xA" = ( -/obj/structure/closet/crate/secure/gear, -/obj/item/melee/classic_baton/german{ - desc = "A compact yet robust personal defense weapon. Can be concealed when folded."; - name = "baton" - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"xB" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"xC" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"xE" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"xF" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"xH" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/awaymission/chilly/syndietrain) -"xJ" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/semki, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"xK" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 5 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"xL" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/item/storage/pill_bottle/speedrun, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"xM" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human{ - pixel_x = 6; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"xO" = ( -/obj/structure/mineral_door/wood, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"xP" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/awaymission/chilly/facility/emergencystorage) -"xQ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"xR" = ( -/obj/item/grown/log/tree, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart/base2armory) -"xT" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"xU" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"xV" = ( -/obj/structure/bed/maint{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"xW" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"xY" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/trash/chips, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"xZ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"ya" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bucket{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"yb" = ( -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"yc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"yd" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"ye" = ( -/obj/structure/fence, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"yg" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/oxygen/empty, -/obj/item/tank/internals/oxygen/empty, -/obj/item/tank/internals/oxygen/empty, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"yh" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"yj" = ( -/obj/structure/chair/comfy, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"yk" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency/old, -/obj/item/flashlight/glowstick, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"yl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"ym" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility2) -"yn" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"yo" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/machinery/doorpanel/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"yp" = ( -/obj/structure/table, -/obj/structure/rospilovo/radio, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"yq" = ( -/obj/machinery/oldvents, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1" - }, -/area/awaymission/chilly/facility/emergencystorage) -"yr" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ys" = ( -/obj/effect/turf_decal/dust, -/obj/item/shard, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"yt" = ( -/obj/item/flashlight/seclite, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"yu" = ( -/obj/machinery/computer{ - dir = 8; - pixel_x = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"yv" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"yw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"yx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold4w, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"yy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/garbage{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"yz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"yA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"yB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"yC" = ( -/obj/structure/fence/post{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"yD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/obj/item/disk/surgery/debug, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/gear, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"yE" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"yF" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single, -/area/awaymission/chilly/ntcargotrain) -"yG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"yH" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"yI" = ( -/obj/structure/table/reinforced, -/obj/item/radio, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"yJ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans{ - pixel_y = 5 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"yK" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"yL" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"yM" = ( -/obj/item/reagent_containers/food/drinks/colocup/lean{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/colocup/lean{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"yN" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"yO" = ( -/obj/structure/grille, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"yP" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"yR" = ( -/obj/structure/grille, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"yS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"yT" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"yU" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/plastic, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"yV" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rospilovo/televizor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"yW" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"yX" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 4 - }, -/area/awaymission/chilly/facility/emergencystorage) -"yY" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 4 - }, -/area/awaymission/chilly/facility3) -"yZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility2) -"za" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"zc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"zd" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"ze" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"zf" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/item/wallframe/button{ - pixel_y = 29 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"zg" = ( -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"zh" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"zi" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"zj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"zk" = ( -/obj/structure/table/wood, -/obj/item/mining_thing/nvidia/ntx3090ti, -/obj/machinery/light/small/broken, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"zl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/obj/structure/foamedmetal/iron, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"zm" = ( -/obj/structure/lattice, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"zn" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/gear, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/storage/belt/military, -/obj/item/radio/headset/syndicate/alt, -/obj/item/radio/headset/syndicate/alt, -/obj/item/radio/headset/syndicate/alt, -/obj/item/radio/headset/syndicate/alt, -/obj/item/radio/headset/syndicate/alt, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"zp" = ( -/obj/item/key, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"zq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility/emergencystorage) -"zs" = ( -/obj/machinery/door/airlock, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"zt" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"zu" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans{ - pixel_x = 12; - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"zv" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"zw" = ( -/obj/vehicle/ridden/atv{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"zx" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"zy" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/item/seeds/cannabis, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"zz" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"zA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"zB" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/toggle/brown_jacket, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"zC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"zD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"zE" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"zF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"zG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/awaymission/chilly/facility) -"zH" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"zJ" = ( -/obj/machinery/door/airlock/hatch{ - req_access = "150" - }, -/obj/structure/fans/tiny/invisible, -/obj/machinery/door/poddoor, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/syndietrain) -"zK" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"zL" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"zM" = ( -/obj/effect/turf_decal, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"zN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"zO" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"zP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/wood, -/obj/item/book, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"zQ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"zR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"zS" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"zT" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"zU" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"zV" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"zW" = ( -/obj/structure/table/reinforced, -/obj/item/shard, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"zX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Armory"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"zY" = ( -/obj/structure/rospilovo/shina, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"zZ" = ( -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Aa" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Ab" = ( -/obj/structure/grille, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Ac" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/item/trash/popcorn, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Ae" = ( -/obj/structure/sign/departments/botany{ - pixel_x = -32 - }, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Af" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Ag" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Ai" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"Aj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/obj/structure/foamedmetal/iron, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Ak" = ( -/obj/structure/closet/secure, -/obj/item/storage/backpack/satchel, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/item/shovel/spade/wzzz, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility3) -"Am" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"An" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility/emergencystorage) -"Ao" = ( -/obj/item/ammo_casing/shotgun/buckshot{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ap" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Aq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/trash/plate, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"Ar" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"As" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"At" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"Au" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"Av" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Aw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Ax" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"Ay" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/surface) -"Az" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"AA" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"AB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_y = 13 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/cigbutt/cigarbutt, -/obj/item/trash/bee, -/obj/item/cigbutt{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/cigbutt{ - pixel_x = 4; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"AC" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"AD" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"AE" = ( -/obj/structure/table, -/obj/item/shovel/spade, -/obj/item/hatchet/wooden{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/cultivator{ - pixel_x = -5; - pixel_y = -8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/dark, -/area/awaymission/chilly/facility3) -"AF" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"AG" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"AH" = ( -/obj/effect/mine/stun, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"AI" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"AJ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"AK" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"AL" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"AM" = ( -/obj/structure/closet/crate/secure, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/item/crowbar/large, -/obj/item/multitool, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"AN" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/obj/item/newspaper, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"AO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"AP" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"AQ" = ( -/obj/structure/lattice, -/obj/effect/decal/remains/human, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"AR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"AS" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"AT" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"AU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"AV" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"AW" = ( -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"AX" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/sign/directions/supply{ - pixel_x = -29; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"AY" = ( -/obj/machinery/light/broken, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"AZ" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Ba" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Bb" = ( -/turf/closed/wall/rospilovo/beton_agro, -/area/awaymission/chilly/facility3) -"Bc" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Bd" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Be" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair{ - pixel_x = 18; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Bf" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Bg" = ( -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"Bh" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"Bi" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Bj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/structure/rospilovo/radio, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Bk" = ( -/obj/structure/flora/stump, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Bl" = ( -/obj/machinery/oldvents, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility/emergencystorage) -"Bm" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Bn" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Bo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Bp" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"Bq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Br" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/fork{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/kitchen/fork{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/kitchen/fork{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/item/kitchen/spoon{ - pixel_x = 11; - pixel_y = 1 - }, -/obj/item/kitchen/spoon{ - pixel_x = 7 - }, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"Bs" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Bt" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"Bu" = ( -/obj/structure/sign/warning/securearea/ntsign{ - pixel_y = 32 - }, -/obj/machinery/door/window/southleft{ - name = "Weapons Door"; - req_access_txt = "3" - }, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/box/teargas, -/obj/item/gun/grenadelauncher, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Bv" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Bw" = ( -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Bx" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"By" = ( -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Bz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"BA" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"BB" = ( -/obj/structure/mineral_door/wood, -/obj/structure/barricade/wooden/crude/snow, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"BC" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/item/weldingtool/largetank, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"BD" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/obj/item/storage/box/pillpack/aspirin, -/obj/item/storage/box/pillpack/aspirin, -/obj/item/storage/box/pillpack/potassiodide, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"BE" = ( -/obj/machinery/porta_turret/syndicate/energy{ - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg'; - shot_delay = 10 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/gatewaystart/base2armory) -"BF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"BG" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"BH" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"BI" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"BJ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"BK" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Western Entrance" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"BL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/weapon, -/obj/item/gun/ballistic/automatic/c20r, -/obj/item/gun/ballistic/automatic/c20r, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"BM" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"BN" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"BO" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"BP" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"BQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"BR" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"BS" = ( -/obj/effect/decal/cleanable/plastic, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"BT" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/awaymission/chilly/facility3) -"BU" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"BV" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/pod, -/obj/item/defibrillator/loaded, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"BW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"BX" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/shovel/spade, -/obj/item/cultivator, -/obj/item/cultivator, -/obj/item/cultivator, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"BY" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"BZ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Ca" = ( -/obj/structure/closet/crate/freezer, -/obj/item/storage/box/donkpockets/donkpocketberry, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets/donkpockethonk, -/obj/item/storage/box/donkpockets/donkpocketpizza, -/obj/item/storage/box/donkpockets/donkpocketteriyaki, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Cb" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"Cc" = ( -/obj/structure/table, -/obj/item/flashlight/lamp/green, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Cd" = ( -/obj/effect/turf_decal/bot, -/obj/item/tank/internals/plasma/full{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/tank/internals/plasma/full{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/tank/internals/plasma/full, -/obj/item/tank/internals/plasma/full{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/science, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Ce" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Cf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/sign/warning/docking{ - pixel_x = -31 - }, -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Cg" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Ch" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/sheet/bone, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Ci" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Cj" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Ck" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Cl" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"Cm" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Cn" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 5" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Co" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans{ - pixel_y = 6 - }, -/obj/item/food/canned/beans{ - pixel_x = 8 - }, -/obj/item/food/canned/peaches, -/obj/item/food/canned/peaches{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"Cp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Cq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"Cr" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/ballistic/automatic/carbine, -/obj/item/gun/ballistic/automatic/carbine, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Cs" = ( -/obj/effect/decal/cleanable/dirt/dust{ - pixel_y = -2 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Ct" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Cu" = ( -/obj/effect/light_emitter, -/turf/open/floor/plasteel, -/area/awaymission/chilly/surface) -"Cv" = ( -/obj/effect/turf_decal/dust, -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/cave) -"Cx" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Cy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Cz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"CA" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/sosjerky, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"CB" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/obj/structure/foamedmetal/iron, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"CC" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"CD" = ( -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"CE" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/surface) -"CF" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/stock_parts/micro_laser/high{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"CG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 8 - }, -/obj/item/cigbutt{ - pixel_x = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"CH" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"CI" = ( -/turf/closed/wall/rust, -/area/awaymission/chilly/gatewaystart/base2armory) -"CJ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility2) -"CK" = ( -/turf/open/floor/plasteel/stairs/old/chilly{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"CL" = ( -/obj/effect/turf_decal/bot, -/obj/item/gun/magic/staff/healing, -/obj/structure/closet/crate/secure/gear, -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"CM" = ( -/obj/machinery/door/airlock{ - name = "Janitor Stockroom" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"CN" = ( -/obj/structure/table, -/obj/item/broken_bottle{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"CO" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat/coldres2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/under/rank/engineering/engineer, -/obj/item/clothing/accessory/armband/engine, -/obj/item/storage/backpack/satchel/eng, -/obj/item/radio/headset/headset_sec/alt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"CQ" = ( -/obj/effect/turf_decal/dust, -/obj/item/gun/ballistic/shotgun/spas12, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"CR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"CT" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"CU" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"CV" = ( -/obj/machinery/door/window/northleft{ - dir = 2 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"CW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"CX" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"CY" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"CZ" = ( -/obj/effect/turf_decal/dust, -/obj/item/cigbutt, -/obj/item/cigbutt{ - pixel_x = 7; - pixel_y = -10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Da" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 10 - }, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"Db" = ( -/obj/vehicle/ridden/atv{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Dd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rospilovo/panel/panel2, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"De" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Df" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"Dg" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Dh" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Di" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Dj" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/poddoor/shutters/preopen, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"Dk" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/rospilovo/beton_agro, -/area/awaymission/chilly/facility3) -"Dl" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Central Hallway" - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility) -"Dm" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/awaymission/chilly/facility3) -"Dn" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Do" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/ballistic/automatic/m90/unrestricted/z8, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Dp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Dq" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"Dr" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Ds" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Dt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Du" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Dv" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Dw" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Dx" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Dy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/chem_pile, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Dz" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"DA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/machinery/oldvents, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"DB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"DC" = ( -/obj/structure/rospilovo/shina3, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"DD" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"DE" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"DG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"DH" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"DI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"DJ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"DK" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/rospilovo/panel, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"DL" = ( -/obj/structure/fence/door, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"DM" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant2, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"DN" = ( -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"DO" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"DP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"DR" = ( -/obj/effect/decal/prison/pipe/pipea{ - icon_state = "pipe3" - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"DS" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"DT" = ( -/obj/structure/railing/corner, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"DU" = ( -/obj/item/ammo_casing/shotgun/buckshot, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"DV" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"DX" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/obj/item/shard, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"DY" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"DZ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/ntcargotrain) -"Ea" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Eb" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Ed" = ( -/obj/effect/turf_decal/weather/side, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Ee" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/mountain) -"Eg" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Eh" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"Ei" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sign/warning{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"Ej" = ( -/obj/structure/sign/warning/coldtemp{ - pixel_y = 31 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility4) -"Ek" = ( -/obj/item/trash/cheesie, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility4) -"El" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Syndicate Cargo Storage"; - req_access = null; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/syndietrain) -"Em" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/knife, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"En" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"Eo" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility4) -"Ep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/item/clothing/neck/scarf/black, -/obj/item/clothing/neck/scarf/orange, -/obj/item/clothing/neck/scarf/zebra, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Eq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/obj/item/storage/mre, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"Er" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/obj/item/stack/spacecash/c200, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"Es" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Et" = ( -/obj/structure/bed, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Eu" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/oldvents, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Ev" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Ew" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility3) -"Ex" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Ey" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/security/cell/northright{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Ez" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"EA" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"EB" = ( -/obj/structure/closet/crate/internals, -/obj/item/clothing/mask/breath/cheap, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/ntcargotrain) -"EC" = ( -/obj/structure/chair/plastic, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"ED" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/hatch{ - name = "Sector B Elevator" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"EE" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/awaymission/chilly/facility4) -"EF" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"EG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"EH" = ( -/obj/item/trash/can/food/beans, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"EI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility) -"EJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"EK" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"EL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"EM" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/awaymission/chilly/facility3) -"EN" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"EO" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/cave) -"EP" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_casing/c46x30mm{ - dir = 8; - pixel_x = 5; - pixel_y = -8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"EQ" = ( -/obj/structure/closet/secure, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"ER" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"ES" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"ET" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/awaymission/chilly/surface) -"EX" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"EY" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"EZ" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/turf/open/floor/pod/dark, -/area/awaymission/chilly/facility3) -"Fa" = ( -/obj/item/stack/ore/iron, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Fb" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Fc" = ( -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"Fd" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"Fe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/crate/secure/science, -/obj/item/pickaxe/drill/jackhammer, -/obj/item/stack/sheet/bluespace_crystal, -/obj/item/t_scanner/adv_mining_scanner, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Ff" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Fg" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/facility2) -"Fh" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/chilly/surface) -"Fi" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = -6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"Fj" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/gatewaystart) -"Fk" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Fl" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Fm" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"Fn" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Fo" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/surface) -"Fq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway EVA" - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/gatewaystart) -"Fr" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Fs" = ( -/obj/structure/closet/crate/secure, -/obj/item/electronic_assembly, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/water_recycler, -/obj/item/stock_parts/water_recycler, -/obj/item/stock_parts/water_recycler, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ft" = ( -/turf/closed/wall/rust, -/area/awaymission/chilly/facility2) -"Fu" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Fv" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Fw" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Fx" = ( -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Fy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"Fz" = ( -/obj/effect/turf_decal/dust, -/obj/item/wallframe/firealarm{ - pixel_x = 5; - pixel_y = 28 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"FA" = ( -/obj/item/shard, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"FB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"FC" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"FD" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"FE" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/ntcargotrain) -"FF" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/ntcargotrain) -"FG" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"FH" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/window/brigdoor, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"FJ" = ( -/obj/structure/closet/crate, -/obj/item/seeds/chili/ice, -/obj/effect/turf_decal/dust, -/obj/item/food/grown/mushroom/libertycap, -/obj/item/food/grown/mushroom/libertycap, -/obj/item/food/grown/mushroom/plumphelmet, -/obj/item/food/grown/mushroom/chanterelle, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"FK" = ( -/obj/structure/lattice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"FL" = ( -/turf/open/floor/plasteel/stairs/old/chilly/left{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"FM" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"FN" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/pod, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"FO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"FP" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"FQ" = ( -/obj/item/stack/sheet/bone, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"FR" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"FS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"FT" = ( -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"FU" = ( -/obj/structure/rospilovo/radiation/stop, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"FV" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/ntcargotrain) -"FW" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/geiger_counter{ - pixel_x = 5 - }, -/obj/item/geiger_counter{ - pixel_x = -5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/awaymission/chilly/facility/emergencystorage) -"FX" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/mre/vegan, -/obj/item/storage/mre/vegan, -/obj/item/storage/mre/vegan, -/obj/item/storage/mre/protein, -/obj/item/storage/mre/protein, -/obj/item/storage/mre/protein, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"FZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Ga" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility) -"Gb" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Gc" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Gd" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Ge" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"Gg" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Gh" = ( -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Gi" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Gj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/storage/box/lethalshot, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Gk" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Gl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"Gm" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"Gn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"Go" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Gp" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Gq" = ( -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Gs" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Gt" = ( -/obj/item/caution, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Gv" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"Gw" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Gx" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/effect/turf_decal/dust, -/obj/item/assembly/timer{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Gy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Gz" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"GA" = ( -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing"; - pixel_x = 16 - }, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing" - }, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing"; - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"GB" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"GC" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"GD" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"GE" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ - pixel_x = 31; - pixel_y = 1 - }, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"GF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"GG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/stripes, -/obj/structure/fence/door/opened, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"GH" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"GI" = ( -/obj/structure/flora/tree/pine, -/obj/structure/flora/tree/pine, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"GJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"GK" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/ice, -/area/awaymission/chilly/gatewaystart) -"GM" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"GN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"GO" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility/emergencystorage) -"GP" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"GQ" = ( -/obj/vehicle/ridden/atv, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"GR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"GS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"GT" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"GU" = ( -/obj/structure/bed/maint{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"GV" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"GW" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"GX" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"GY" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"GZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Ha" = ( -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility2) -"Hb" = ( -/obj/structure/chair/sofa/right, -/obj/effect/turf_decal/dust, -/obj/item/food/sosjerky, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Hc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Hd" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"He" = ( -/obj/structure/closet/crate, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Hf" = ( -/obj/effect/turf_decal/dust, -/obj/item/melee/classic_baton/german{ - desc = "Устаревшая полицейская резиновая тонфа, использовавшаяся различными корпорациями вплоть до 23 века, пока не была заменена 'стан-палками'. Почувствуй силу демократии."; - name = "полицейская дубинка"; - pixel_x = 10; - pixel_y = 11 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Hg" = ( -/obj/structure/table, -/obj/structure/rospilovo/oscillograph, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Hh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Hi" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"Hj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/item/trash/can/food/beans, -/obj/item/trash/can, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Hk" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Hl" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Hm" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/obj/effect/light_emitter{ - light_color = "#329cd9"; - name = "Base I Engineering Blue" - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility/croom) -"Hn" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/item/stock_parts/manipulator, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Ho" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/weapon, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/m556, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_box/magazine/smgm45, -/obj/item/ammo_casing/a40mm, -/obj/item/storage/backpack/duffelbag/syndie/ammo/smg, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Hp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/weapon, -/obj/item/gun/ballistic/automatic/m90, -/obj/item/gun/ballistic/automatic/m90, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Hq" = ( -/obj/machinery/seed_extractor, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/pod, -/area/awaymission/chilly/facility3) -"Hr" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/soft/sec, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Hs" = ( -/obj/structure/table/wood, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"Ht" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Hu" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/mechanical/old/clean{ - pixel_y = -4 - }, -/obj/item/storage/toolbox/mechanical/old/clean{ - pixel_y = 4 - }, -/obj/item/stock_parts/cell, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Hv" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"Hw" = ( -/obj/structure/fence/cut/medium{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Hx" = ( -/obj/structure/sink/kitchen{ - pixel_y = 24 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Hy" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Hz" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/chilly/facility) -"HA" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"HB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"HC" = ( -/obj/machinery/door/airlock/hatch, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"HD" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/structure/rospilovo/oscillograph, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"HE" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"HF" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"HG" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"HI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"HJ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"HK" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button{ - id = "strain2"; - pixel_x = -1; - pixel_y = 28 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"HL" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"HM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"HN" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"HO" = ( -/obj/structure/lattice, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/space/swat, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"HP" = ( -/obj/effect/turf_decal/dust, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"HQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"HT" = ( -/obj/structure/bookcase/random, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"HU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"HV" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"HW" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"HX" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"HY" = ( -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Ia" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"Ib" = ( -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"Ic" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/lattice, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Id" = ( -/obj/structure/table, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Ie" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"If" = ( -/obj/structure/toilet{ - dir = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Ig" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Ih" = ( -/obj/item/shard, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/surface) -"Ii" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/peaches/maint, -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food, -/obj/item/trash/semki, -/obj/item/trash/sosjerky, -/obj/item/trash/waffles, -/obj/item/trash/candy, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ij" = ( -/obj/effect/turf_decal/dust, -/obj/item/chair, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/item/stack/sheet/iron, -/obj/item/stack/tile/plasteel, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Ik" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/energybar, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Il" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"Im" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"In" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Io" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_box/magazine/uzim9mm, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Ip" = ( -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Iq" = ( -/obj/effect/turf_decal/dust, -/obj/effect/light_emitter, -/obj/item/stack/tile/wood, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ir" = ( -/obj/structure/rospilovo/apc/open2{ - pixel_x = 1; - pixel_y = 21 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Is" = ( -/obj/structure/table/reinforced, -/obj/item/soap, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"It" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/box/matches, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Iu" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Iv" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Iw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"Ix" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/backpack/satchel/flat/empty, -/obj/item/stack/cable_coil/five{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Iy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/syndietrain) -"Iz" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"IA" = ( -/turf/closed/indestructible/rock/snow/ice, -/area/awaymission/chilly/facility2) -"IB" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/white, -/obj/machinery/door/window/brigdoor/security/cell/southleft{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"IC" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"IE" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"IF" = ( -/obj/item/broken_bottle, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"IG" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"IH" = ( -/obj/effect/turf_decal/dust, -/obj/effect/mine/shrapnel/sting, -/obj/effect/turf_decal/weather/side, -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"II" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"IJ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/cave) -"IK" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"IL" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"IM" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"IN" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"IO" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"IP" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"IQ" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"IR" = ( -/obj/machinery/door/airlock/hatch{ - name = "South Hallway" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/cave) -"IS" = ( -/obj/structure/closet/crate, -/obj/item/vending_refill/cola, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"IT" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/under/m35jacket/officer, -/obj/item/clothing/under/dress/skirt/red, -/obj/item/clothing/neck/stripedredscarf, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"IU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure, -/obj/effect/turf_decal/stripes/line, -/obj/item/documents/syndicate/mining, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"IV" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/light_emitter, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"IW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"IX" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"IY" = ( -/obj/structure/closet/crate/large, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"IZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -9; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"Ja" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Jc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/item/radio/headset, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"Jd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/pod, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Je" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"Jf" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"Jg" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Jh" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Ji" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Jj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Jk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Jl" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"Jn" = ( -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Jo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Jp" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Jq" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/folder/syndicate/red, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Jr" = ( -/obj/effect/turf_decal/weather/side/corner, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Js" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Jt" = ( -/obj/structure/railing, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ju" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Jv" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/item/ammo_box/magazine/a556carbine{ - pixel_x = 6 - }, -/obj/item/ammo_box/magazine/a556carbine{ - pixel_x = 3 - }, -/obj/item/ammo_box/magazine/a556carbine, -/obj/item/ammo_box/magazine/a556carbine{ - pixel_x = -3 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Jx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Jy" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Jz" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"JA" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"JB" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"JC" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"JD" = ( -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"JE" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"JF" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/facility) -"JG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility/emergencystorage) -"JH" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"JI" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"JJ" = ( -/obj/item/trash/energybar, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"JL" = ( -/obj/machinery/door/airlock/prison, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"JM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"JN" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"JO" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"JP" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"JQ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"JR" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/structure/bed/maint, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"JS" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"JT" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"JU" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/pod, -/obj/item/storage/firstaid, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"JW" = ( -/obj/structure/bed, -/obj/effect/turf_decal/dust, -/obj/item/bedsheet/brown, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"JX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/syndietrain) -"JY" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"JZ" = ( -/obj/machinery/oldvents/scrubber, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Ka" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Kb" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Kc" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/poo, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"Kd" = ( -/obj/machinery/door/airlock{ - name = "Tool Storage" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Kf" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/boritos, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Kg" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly) -"Kh" = ( -/obj/structure/closet/crate/secure, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen/red, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/tank/internals/oxygen/yellow, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"Ki" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"Kj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/structure/prison/fence, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Kk" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Kl" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Kn" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility) -"Ko" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility/emergencystorage) -"Kp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Kq" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Kt" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/boritos, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ku" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Kv" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Kw" = ( -/turf/open/floor/plasteel/stairs/old/chilly{ - dir = 8 - }, -/area/awaymission/chilly/cave) -"Kx" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Ky" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Kz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"KA" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"KB" = ( -/obj/effect/turf_decal/dust, -/obj/item/newspaper, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"KC" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"KD" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"KE" = ( -/obj/effect/baseturf_helper/asteroid/snow, -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility3) -"KF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"KG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -27 - }, -/obj/structure/rospilovo/truba, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"KH" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility/emergencystorage) -"KI" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"KJ" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/awaymission/chilly/facility) -"KK" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Equipment Storage" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"KL" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"KM" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"KN" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/obj/item/bedsheet/black, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"KO" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"KP" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"KQ" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/item/flashlight/glowstick{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/flashlight/glowstick{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/flashlight/glowstick{ - pixel_x = -3; - pixel_y = -5 - }, -/obj/item/flashlight/glowstick, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"KR" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/awaymission/chilly/syndietrain) -"KS" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"KT" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"KU" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"KV" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/under/misc/pj/red, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"KW" = ( -/obj/structure/table/wood, -/obj/item/hatchet/wooden, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"KX" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector B Arrival Bay" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"KY" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"KZ" = ( -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/helmet/skull, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"La" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility4) -"Lb" = ( -/obj/effect/light_emitter, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Lc" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Ld" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Le" = ( -/obj/structure/fence, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Lf" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Lg" = ( -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Lh" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"Li" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Lj" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"Lk" = ( -/obj/item/trash/waffles, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ll" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility4) -"Lm" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Ln" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Lo" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Storage" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"Lp" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Lq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Lr" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/obj/structure/lattice, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility2) -"Lt" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Lu" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"Lv" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/neck/scarf/black, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Lw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/awaymission/chilly/facility2) -"Lx" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8; - pixel_x = 4 - }, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Ly" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Lz" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/machinery/oldvents/variant4, -/obj/structure/lattice, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility2) -"LA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"LB" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"LC" = ( -/obj/structure/table/reinforced, -/obj/item/grenade/c4, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"LD" = ( -/obj/item/clothing/head/helmet/alt{ - pixel_x = -7; - pixel_y = -1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"LE" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"LF" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"LG" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"LI" = ( -/obj/effect/light_emitter, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"LJ" = ( -/obj/structure/flora/tree/dead, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"LK" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rospilovo/radio, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"LL" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"LM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"LN" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility2) -"LO" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"LP" = ( -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"LQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"LR" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"LS" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"LT" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"LU" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"LV" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"LX" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"LY" = ( -/obj/machinery/oldvents, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"LZ" = ( -/obj/item/stack/rods, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ma" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Mb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"Mc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Md" = ( -/obj/effect/turf_decal, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Me" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Emergency Storage" - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"Mf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Mg" = ( -/obj/machinery/light/small/broken, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Mh" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/indestructible, -/obj/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/awaymission/chilly/syndietrain) -"Mi" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Mj" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/doorpanel/broken{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Mk" = ( -/turf/open/floor/mineral/plastitanium, -/area/awaymission/chilly/syndietrain) -"Ml" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"Mm" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/item/shard, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Mn" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Mo" = ( -/obj/structure/closet/crate, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"Mp" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility5) -"Mq" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Mr" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Ms" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Mt" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Mu" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"Mv" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Mw" = ( -/obj/machinery/door/airlock/research{ - name = "Gateway Observation" - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/gatewaystart) -"Mx" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Mz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"MA" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"MB" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"MC" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"MD" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"ME" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"MF" = ( -/obj/item/clothing/shoes/winterboots/ice_boots, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"MG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"MH" = ( -/obj/machinery/light/small/broken, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility3) -"MI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"MK" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"ML" = ( -/obj/structure/bonfire, -/obj/item/food/kebab/monkey{ - pixel_x = 5; - pixel_y = -6 - }, -/obj/item/food/kebab/monkey, -/obj/item/food/kebab/monkey{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"MM" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/window/brigdoor/security/cell/southleft{ - name = "equipment door" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"MN" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"MO" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sign/departments/medbay{ - pixel_x = -33 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"MQ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bed/maint, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"MR" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/cobweb, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"MS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"MT" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"MU" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"MV" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/pistachios, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"MX" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"MY" = ( -/obj/structure/closet/crate/wooden, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 5; - pixel_y = -3 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"MZ" = ( -/obj/item/stack/cable_coil, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"Na" = ( -/obj/structure/grille, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "strain2" - }, -/obj/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/awaymission/chilly/syndietrain) -"Nb" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Nc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"Ne" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Nf" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Nh" = ( -/obj/effect/turf_decal/bot, -/obj/item/tank/internals/plasma/full{ - pixel_x = 8; - pixel_y = -8 - }, -/obj/item/tank/internals/plasma/full{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/tank/internals/plasma/full, -/obj/item/tank/internals/plasma/full{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/science, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Ni" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"Nj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Nk" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Nl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Nm" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Nn" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, -/area/awaymission/chilly/syndietrain) -"No" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/effect/decal/remains/human, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Np" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Nq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Nr" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Ns" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"Nt" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"Nu" = ( -/obj/machinery/door/poddoor/shutters/indestructible{ - id = "chillyunderground" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"Nv" = ( -/obj/structure/lattice, -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space/stormtrooper, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Nw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"Nx" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Ny" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Nz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"NA" = ( -/obj/structure/mirror, -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility3) -"NB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"NC" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"ND" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1" - }, -/area/awaymission/chilly/facility) -"NE" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side, -/obj/machinery/door/poddoor/shutters/indestructible, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"NF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"NG" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/item/storage/box/flashbangs, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"NH" = ( -/obj/item/stack/sheet/mineral/wood, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"NI" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"NJ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"NK" = ( -/obj/structure/lattice, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 1; - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"NM" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/engineering/glass{ - name = "Facility Engineering Storage" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"NN" = ( -/obj/item/trash/can{ - pixel_x = 2; - pixel_y = 11 - }, -/obj/item/trash/can{ - pixel_x = -7; - pixel_y = 8 - }, -/obj/item/trash/can, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility) -"NO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"NQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"NR" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"NS" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Central Hallway" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"NT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure, -/obj/item/statuebust, -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"NU" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"NV" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/syndi_cakes, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"NW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"NX" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector D Evacuation Point" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"NY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged2" - }, -/area/awaymission/chilly/facility) -"NZ" = ( -/obj/structure/closet/crate, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Oa" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"Ob" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Oc" = ( -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Oe" = ( -/obj/item/assembly/signaler, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Of" = ( -/obj/effect/turf_decal/dust, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Og" = ( -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"Oh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"Oi" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"Oj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Ok" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Ol" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"Om" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"On" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sign/warning/coldtemp{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Oo" = ( -/obj/machinery/door/airlock{ - name = "Dormitory Cell 3" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Op" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/recharger{ - pixel_x = -9 - }, -/obj/machinery/recharger, -/obj/machinery/recharger{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Or" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Os" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/item/storage/belt/utility/full, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/shovel, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Ou" = ( -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"Ov" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Ow" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Ox" = ( -/obj/structure/girder, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility3) -"Oy" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/effect/decal/cleanable/garbage, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/oldvents/variant4, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"Oz" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"OA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"OB" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/awaymission/chilly/ntcargotrain) -"OC" = ( -/obj/machinery/oldvents/variant3, -/turf/open/floor/plasteel/white/side, -/area/awaymission/chilly/facility/emergencystorage) -"OD" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/awaymission/chilly/facility) -"OE" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"OF" = ( -/turf/open/floor/plasteel/stairs/old/chilly/right{ - dir = 4 - }, -/area/awaymission/chilly/facility) -"OG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/filingcabinet{ - pixel_x = -10 - }, -/obj/structure/filingcabinet{ - pixel_x = 10 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"OH" = ( -/obj/machinery/door/airlock{ - name = "Female Restroom" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"OI" = ( -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"OJ" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"OL" = ( -/obj/structure/closet/crate/secure/gear, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"ON" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"OP" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/gatewaystart) -"OQ" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"OR" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/gatewaystart) -"OT" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/chem_pile, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"OU" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium, -/area/awaymission/chilly/syndietrain) -"OV" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"OW" = ( -/obj/structure/flora/rock/pile, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"OX" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"OY" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"OZ" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility4) -"Pa" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/obj/structure/lattice, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Pb" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/syndietrain) -"Pd" = ( -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Pe" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human{ - pixel_x = 6; - pixel_y = -7 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Pf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Pg" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Ph" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"Pi" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Pj" = ( -/obj/structure/lattice, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"Pk" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Pl" = ( -/obj/item/trash/cheesie, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Pm" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Power Control Room" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"Pn" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/mob/living/simple_animal/hostile/syndicate/ranged/shotgun/space, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Po" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"Pp" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility4) -"Pq" = ( -/obj/effect/light_emitter, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/surface) -"Pr" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/cave) -"Ps" = ( -/obj/item/stack/tile/plasteel, -/obj/machinery, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Pt" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Pu" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Pw" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Py" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"Pz" = ( -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"PA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"PB" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"PC" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"PD" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/remains/human, -/obj/item/clothing/head/helmet/riot/coldres, -/obj/item/gun/ballistic/shotgun/spas12, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"PE" = ( -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"PF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_box/magazine/m45, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"PG" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"PH" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"PI" = ( -/obj/machinery/porta_turret/syndicate/shuttle/chilly, -/turf/closed/indestructible/opshuttle, -/area/awaymission/chilly/syndietrain) -"PJ" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"PK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"PL" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"PM" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/jackboots{ - cold_protection = 120; - min_cold_protection_temperature = 2 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"PN" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/combat, -/obj/item/clothing/shoes/combat/coldres2, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/under/rank/medical/doctor, -/obj/item/clothing/accessory/armband/medblue, -/obj/item/storage/backpack/satchel/med, -/obj/item/radio/headset/headset_sec/alt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"PO" = ( -/turf/open/floor/plasteel/stairs/old/chilly/left{ - dir = 4 - }, -/area/awaymission/chilly/facility) -"PP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"PQ" = ( -/obj/structure/toilet{ - dir = 1; - pixel_y = -5 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"PS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility) -"PT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"PU" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"PV" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/item/clothing/head/helmet/riot, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"PW" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"PX" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"PY" = ( -/obj/structure/closet/crate/wooden, -/obj/effect/turf_decal/dust, -/obj/item/hatchet, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"PZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"Qb" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Qc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Qd" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Qe" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/secure/engineering, -/obj/item/stack/sheet/mineral/gold{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 50 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Qf" = ( -/obj/structure/window, -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Qg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Qh" = ( -/obj/item/shard, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Qi" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/under/color/white, -/obj/item/clothing/neck/scarf/yellow, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Qk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Ql" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility3) -"Qm" = ( -/obj/effect/turf_decal/dust, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Qn" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Qo" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/old/chilly/single, -/area/awaymission/chilly/syndietrain) -"Qp" = ( -/obj/structure/table, -/obj/item/watertank, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod, -/area/awaymission/chilly/facility3) -"Qq" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden/snowed, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"Qr" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Qs" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Qt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Qu" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/det_suit{ - min_cold_protection_temperature = 60 - }, -/obj/item/clothing/head/ushanka{ - cold_protection = 390 - }, -/obj/item/clothing/neck/stripedgreenscarf, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Qv" = ( -/obj/structure/sign/warning/xeno_mining{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/awaymission/chilly/facility/emergencystorage) -"Qw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Qx" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Qy" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Qz" = ( -/obj/effect/turf_decal/dust, -/obj/structure/flora/grass/both, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility2) -"QA" = ( -/obj/item/clothing/suit/space/hardsuit/swat, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"QB" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"QC" = ( -/obj/structure/rospilovo/shina2, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"QD" = ( -/obj/structure/lattice, -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"QE" = ( -/obj/machinery/door/airlock/external{ - name = "Emergency Storage" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"QF" = ( -/obj/effect/turf_decal/dust, -/obj/item/trash/can, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"QG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"QH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/space_heater/improvised_chem_heater, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"QI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"QK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/circuit, -/area/awaymission/chilly/facility) -"QL" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"QM" = ( -/obj/structure/lattice, -/obj/item/clothing/suit/space/swat, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"QN" = ( -/obj/structure/girder, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"QO" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"QP" = ( -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"QQ" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"QR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"QT" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"QU" = ( -/obj/machinery/door/airlock/hatch{ - name = "Restroom" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"QV" = ( -/obj/item/shard{ - pixel_y = 6 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"QW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"QX" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility4) -"QY" = ( -/obj/effect/turf_decal, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"QZ" = ( -/obj/structure/mineral_door/wood, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"Ra" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Rc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Rd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Re" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Rf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate/trashcart, -/obj/item/trash/raisins, -/obj/item/trash/sosjerky, -/obj/item/trash/energybar, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Rg" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant2, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Rh" = ( -/obj/effect/turf_decal/dust, -/obj/structure/fluff/broken_flooring{ - icon_state = "pile" - }, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Ri" = ( -/obj/effect/decal/cleanable/oil, -/obj/item/paper/crumpled/awaymissions/chilly/base1scientist, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Rj" = ( -/obj/item/stack/rods, -/obj/machinery, -/obj/effect/turf_decal/weather/side, -/obj/structure/lattice, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Rk" = ( -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Rm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"Rn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/neck/scarf/green, -/obj/item/clothing/neck/scarf, -/obj/item/clothing/neck/scarf/red, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"Ro" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"Rp" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Medical Bay Storage" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"Rq" = ( -/turf/closed/wall/ice, -/area/awaymission/chilly/facility2) -"Rs" = ( -/obj/structure/closet/secure, -/obj/item/clothing/suit/hooded/wintercoat/security, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/storage/belt/security/webbing, -/obj/item/storage/backpack/security, -/obj/item/gun/ballistic/shotgun/lethal, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"Rt" = ( -/obj/structure/chair, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ru" = ( -/obj/structure/mecha_wreckage/gygax, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Rv" = ( -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Rw" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/dust, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/obj/item/key, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Rx" = ( -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Ry" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Rz" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/awaymission/chilly/facility2) -"RA" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Brig" - }, -/obj/structure/fans/tiny, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"RB" = ( -/obj/item/trash/chips, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"RD" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"RE" = ( -/obj/structure/lattice, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"RF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/bookcase/random, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"RG" = ( -/obj/machinery/door/window/northleft, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"RH" = ( -/obj/machinery/light/broken, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"RI" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"RJ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"RK" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"RL" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/chilly/gatewaystart) -"RM" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"RN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"RO" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"RP" = ( -/obj/structure/fence/door/opened, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"RQ" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"RR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/table, -/obj/machinery/light/broken, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid{ - pixel_x = 6 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"RS" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant4, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"RT" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"RU" = ( -/obj/effect/turf_decal/dust, -/obj/item/circular_saw, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"RV" = ( -/obj/structure/closet/secure, -/obj/item/clothing/suit/hooded/wintercoat/security, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/item/kitchen/knife/combat, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/storage/belt/security/webbing, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"RW" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/energy/e_gun/stun, -/obj/item/gun/energy/e_gun/stun, -/obj/item/gun/energy/e_gun/stun, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"RX" = ( -/obj/effect/turf_decal/dust, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility) -"RY" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/ntcargotrain) -"RZ" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side/corner, -/obj/structure/lattice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Sa" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged4" - }, -/area/awaymission/chilly/facility) -"Sb" = ( -/obj/effect/turf_decal/dust, -/obj/item/cigbutt{ - pixel_x = 8; - pixel_y = -9 - }, -/obj/item/cigbutt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Sc" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Sd" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/facility/croom) -"Se" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Sf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/structure/rospilovo/clocks{ - pixel_x = -32; - pixel_y = 8 - }, -/obj/structure/rospilovo/radio, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Sg" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Sh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Si" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Sj" = ( -/obj/effect/decal/cleanable/food/flour, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Sk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Sl" = ( -/obj/vehicle/ridden/atv{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Sm" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility3) -"Sn" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"So" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Sp" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"Sq" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Sr" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ss" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"St" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Chamber" - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/gatewaystart) -"Su" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/radio, -/obj/item/flashlight/seclite, -/obj/item/ammo_box/magazine/m41a/caseless, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Sv" = ( -/turf/closed/mineral/snowmountain/cavern/oxy, -/area/awaymission/chilly/facility2) -"Sw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"Sx" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"Sy" = ( -/obj/structure/railing, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Sz" = ( -/obj/item/trash/boritos, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"SA" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility) -"SB" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"SC" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/effect/turf_decal/dust, -/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/carbine, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"SD" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/remains/human, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"SE" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/fulltile/ice, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"SF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"SG" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/item/storage/toolbox/ammo/wt550, -/obj/item/storage/toolbox/ammo/wt550{ - pixel_x = 6; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"SH" = ( -/obj/structure/trash_pile, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility4) -"SI" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/machinery/porta_turret/syndicate/shuttle/chilly, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"SJ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"SL" = ( -/obj/structure/closet/crate, -/obj/item/seeds/cannabis/white, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"SM" = ( -/obj/structure/table, -/obj/item/soap, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"SN" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/machinery/power/floodlight, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"SO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"SP" = ( -/obj/structure/flora/tree/dead, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"SQ" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"SR" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/ntcargotrain) -"SS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"ST" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector B Southern Entrance" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"SU" = ( -/obj/machinery/vending/cigarette/beach, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/pod, -/area/awaymission/chilly/facility) -"SV" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots/ice_boots, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/obj/item/stack/spacecash/c500, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/awaymission/chilly/facility) -"SW" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"SX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rospilovo/battery{ - pixel_y = 28 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility4) -"SY" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"SZ" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 31 - }, -/obj/effect/turf_decal/dust, -/obj/item/clothing/head/helmet/swat/nanotrasen, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Ta" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Tb" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/cave) -"Tc" = ( -/obj/structure/fence/post, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Td" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"Te" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Tf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Tg" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Th" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/structure/noticeboard{ - pixel_y = -31 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Ti" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Tj" = ( -/obj/item/cigbutt, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Tl" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Tm" = ( -/obj/effect/mine/shrapnel/sting, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Tn" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"To" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Tp" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Tq" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Tr" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel, -/area/awaymission/chilly/ntcargotrain) -"Ts" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Tt" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/mineral/wood, -/area/awaymission/chilly/facility3) -"Tu" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"Tv" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/item/clothing/under/switer/dark, -/obj/effect/turf_decal/dust, -/obj/item/gun/ballistic/revolver/nagant, -/obj/item/ammo_box/n762, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"Tw" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Tx" = ( -/obj/structure/chair, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Ty" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Tz" = ( -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"TA" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/machinery/power/floodlight, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"TB" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/firedoor, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"TC" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/wood, -/obj/item/book/granter/crafting_recipe/cooking_sweets_101, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"TD" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/ntcargotrain) -"TE" = ( -/obj/item/cigbutt{ - pixel_x = -19; - pixel_y = 12 - }, -/obj/item/cigbutt, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"TF" = ( -/obj/structure/rospilovo/krest, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"TG" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"TH" = ( -/obj/structure/table, -/obj/item/flashlight/lamp/green, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"TI" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/light/small/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"TJ" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"TK" = ( -/obj/structure/closet/crate/engineering, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"TL" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"TM" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/engineering{ - name = "Facility Engine Room" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"TN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"TO" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"TP" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"TQ" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"TR" = ( -/obj/structure/table/reinforced, -/obj/item/mop, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"TS" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/awaymission/chilly/facility3) -"TT" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"TU" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"TV" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Entrance" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"TW" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"TX" = ( -/obj/effect/light_emitter{ - name = "outdoor light"; - set_cap = 3; - set_luminosity = 6 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"TY" = ( -/obj/item/trash/can/food/beans, -/obj/item/trash/can/food/beans{ - pixel_x = 10; - pixel_y = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"TZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/syndietrain) -"Ua" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Ub" = ( -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility) -"Uc" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"Ud" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/awaymission/chilly/facility2) -"Ue" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Uf" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"Ug" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/wall/r_wall/rust, -/area/awaymission/chilly/gatewaystart/base2armory) -"Uh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/ballistic/shotgun/spas12, -/obj/item/gun/ballistic/shotgun/spas12, -/obj/item/gun/ballistic/shotgun/spas12, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Ui" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility3) -"Uj" = ( -/obj/machinery/door/airlock/hatch{ - name = "Facility Entrance" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility) -"Uk" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/mountain) -"Ul" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/reagent_containers/glass/maunamug, -/obj/effect/turf_decal/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Um" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/structure/chair, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Un" = ( -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"Uo" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Up" = ( -/obj/structure/toilet{ - pixel_y = 10 - }, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Us" = ( -/obj/vehicle/ridden/atv{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Ut" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/ntcargotrain) -"Uu" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Uv" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Uw" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/item/clothing/suit/armor/riot, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Ux" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Uy" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/structure/fluff/broken_flooring{ - dir = 1; - icon_state = "singular" - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Uz" = ( -/obj/item/paper/crumpled/awaymissions/chilly/howtoopenfukkendoor, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"UA" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"UB" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"UC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/reagent_containers/glass/bucket/wooden, -/obj/item/reagent_containers/glass/bucket/wooden{ - pixel_x = -12; - pixel_y = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/facility4) -"UD" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"UE" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"UF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"UG" = ( -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UH" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/surface) -"UI" = ( -/obj/machinery/door/airlock{ - name = "Emergency Supplies" - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/gatewaystart) -"UJ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"UL" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UM" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/head/helmet/alt, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UN" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"UO" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/public/glass{ - name = "Sector B Southern Hallway" - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"UP" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/sheet/mineral/wood, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"UQ" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"UR" = ( -/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing" - }, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing"; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing"; - pixel_x = -10; - pixel_y = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"US" = ( -/obj/structure/closet/crate/wooden, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"UT" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UU" = ( -/obj/structure/rospilovo/plita, -/obj/item/reagent_containers/glass/bowl/mushroom_bowl, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility4) -"UV" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"UW" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"UX" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"UY" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"UZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/guncase, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Va" = ( -/obj/structure/bed, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Vb" = ( -/obj/machinery/door/poddoor/shutters{ - name = "Armory" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart/base2armory) -"Vc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Vd" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/chilly/syndietrain) -"Ve" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Vf" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/suit/jacket/leather/overcoat, -/obj/item/clothing/head/ushanka{ - cold_protection = 390; - min_cold_protection_temperature = 120 - }, -/obj/item/kitchen/knife/combat, -/obj/item/clothing/neck/scarf/green, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Vg" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/item/clothing/gloves/color/black, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/obj/item/key, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Vh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Vi" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Vj" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Vk" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"Vl" = ( -/obj/machinery, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Vm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/gatewaystart) -"Vn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Vo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/stock_parts/manipulator{ - pixel_x = -9; - pixel_y = 13 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"Vp" = ( -/obj/effect/decal/cleanable/glass, -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Vq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/railing, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/structure/sign/warning/securearea/deck1{ - pixel_y = 30 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Vr" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/oil, -/obj/structure/lattice, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Vs" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8; - pixel_x = 4 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Vt" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Vu" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/ammo_casing/c46x30mm{ - dir = 5; - pixel_x = -7; - pixel_y = 11 - }, -/obj/item/ammo_casing/c46x30mm{ - dir = 5; - pixel_x = -4; - pixel_y = -6 - }, -/obj/item/ammo_casing/c46x30mm{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/ammo_casing/c46x30mm{ - dir = 10; - pixel_x = 7; - pixel_y = -1 - }, -/obj/item/ammo_casing/c46x30mm{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Vv" = ( -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Vw" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Vx" = ( -/obj/structure/grille, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Vy" = ( -/obj/effect/turf_decal/weather/side/corner, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Vz" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"VA" = ( -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/gatewaystart) -"VB" = ( -/obj/item/trash/can/food/peaches, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"VC" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"VD" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"VE" = ( -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"VF" = ( -/obj/structure/rack, -/obj/effect/turf_decal/dust, -/obj/item/storage/backpack, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"VG" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = 37 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"VH" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility) -"VI" = ( -/obj/effect/light_emitter, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"VJ" = ( -/obj/structure/table, -/obj/item/light/bulb/broken, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"VK" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"VL" = ( -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"VM" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"VN" = ( -/obj/structure/closet/secure_closet/freezer, -/obj/item/reagent_containers/glass/bucket/wooden{ - pixel_x = -12; - pixel_y = 9 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"VO" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/item/stock_parts/micro_laser, -/obj/effect/turf_decal/dust, -/obj/item/shovel, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"VP" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/grenade/smokebomb{ - pixel_x = 10 - }, -/obj/item/grenade/smokebomb{ - pixel_x = -5 - }, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb{ - pixel_x = 5 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"VQ" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/surface) -"VR" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/surface) -"VS" = ( -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"VT" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"VU" = ( -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"VV" = ( -/turf/closed/indestructible/black, -/area/awaymission/chilly/mountain) -"VW" = ( -/obj/structure/lattice, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing" - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"VX" = ( -/obj/structure/flora/tree/pine, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"VY" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"VZ" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"Wa" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/decal/remains/xeno/larva{ - pixel_x = -7; - pixel_y = -5 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility3) -"Wb" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/gatewaystart) -"Wc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Wd" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"We" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/door/airlock/engineering{ - name = "Engineering" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/croom) -"Wf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Wg" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Wh" = ( -/obj/effect/turf_decal/dust, -/obj/item/ammo_casing/spent{ - icon_state = ".50"; - name = ".50 bullet casing"; - pixel_y = 5 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Wi" = ( -/obj/item/grown/log/tree, -/obj/item/toy/snowball, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Wj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Wk" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/item/tank/internals/emergency_oxygen/empty, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Wl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Wm" = ( -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Wn" = ( -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Wo" = ( -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/chilly/mountain) -"Wp" = ( -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"Wq" = ( -/obj/structure/fence/door/opened{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"Wr" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ws" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/vomit/old, -/obj/item/cigbutt, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/awaymission/chilly/facility4) -"Wt" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/brigdoor/security/cell/northright{ - name = "equipment door" - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"Wv" = ( -/obj/effect/decal/prison/pipe/pipea, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"Ww" = ( -/obj/structure/floodlight_frame, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Wx" = ( -/obj/effect/turf_decal/stripes, -/turf/open/floor/mineral/plastitanium, -/area/awaymission/chilly/syndietrain) -"Wy" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Wz" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/clothing/under/suit/black/skirt, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"WA" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"WB" = ( -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/cave) -"WC" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"WD" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"WE" = ( -/obj/effect/decal/cleanable/glass, -/obj/structure/grille/broken, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"WF" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/obj/structure/lattice, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"WG" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes, -/obj/structure/prison/fence, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"WH" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"WI" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"WK" = ( -/obj/structure/table, -/obj/item/broken_bottle, -/obj/item/light/bulb/broken, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"WL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"WN" = ( -/obj/effect/turf_decal/dust, -/obj/item/crowbar/large, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"WO" = ( -/obj/effect/turf_decal/dust, -/obj/item/broken_bottle{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/trash_pile, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"WP" = ( -/obj/structure/closet/crate, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"WQ" = ( -/mob/living/simple_animal/hostile/asteroid/wolf, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"WR" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"WS" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"WT" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/awaymission/chilly/facility3) -"WU" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"WV" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"WW" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/storage/toolbox/infiltrator, -/obj/item/storage/toolbox/infiltrator, -/obj/item/storage/toolbox/infiltrator, -/obj/structure/closet/crate/secure/gear, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"WX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"WY" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood, -/area/awaymission/chilly/facility4) -"WZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Xa" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/obj/item/gun/ballistic/automatic/pistol/makarov, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Xb" = ( -/obj/machinery/door/airlock/hatch, -/obj/effect/turf_decal/dust, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/facility3) -"Xc" = ( -/obj/structure/chair/sofa{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Xd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Xe" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/obj/machinery/porta_turret/syndicate/shuttle/chilly, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Xf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_x = 7 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Xg" = ( -/obj/structure/closet, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/effect/turf_decal/dust, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/spider/stickyweb, -/obj/item/key, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Xh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/material, -/area/awaymission/chilly/facility3) -"Xi" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/awaymission/chilly/facility3) -"Xj" = ( -/obj/effect/turf_decal/dust, -/obj/structure/mecha_wreckage/odysseus, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Xk" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/chilly/gatewaystart) -"Xl" = ( -/obj/structure/closet/cabinet, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"Xm" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"Xn" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Xo" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/boyarka, -/obj/item/reagent_containers/food/drinks/bottle/maltliquor{ - pixel_x = -3 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility4) -"Xp" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Xq" = ( -/obj/structure/closet/secure, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/chilly/facility) -"Xr" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure/science, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/item/pod_parts/armor/syndicate, -/obj/item/pod_parts/armor/syndicate, -/obj/item/pod_parts/armor/syndicate, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Xs" = ( -/obj/effect/turf_decal/dust, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = 31 - }, -/obj/machinery/doorpanel/broken{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"Xt" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Xu" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Xv" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant2, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Xw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"Xx" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Xy" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Xz" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"XA" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 6 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"XB" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"XC" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"XD" = ( -/obj/machinery/door/airlock/hatch{ - name = "Sector D Central Hallway" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"XE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/awaymission/chilly/facility4) -"XF" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"XG" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -7 - }, -/obj/item/radio{ - pixel_x = 8 - }, -/obj/item/radio, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"XH" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"XI" = ( -/turf/closed/indestructible/opshuttle, -/area/awaymission/chilly/syndietrain) -"XJ" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"XK" = ( -/obj/effect/turf_decal/dust, -/obj/item/wallframe/firealarm{ - pixel_x = -29; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"XL" = ( -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"XM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot_red, -/obj/item/ammo_box/magazine/carbine, -/obj/item/ammo_box/magazine/carbine{ - pixel_x = 6 - }, -/obj/item/ammo_box/magazine/carbine{ - pixel_x = -6 - }, -/obj/item/ammo_box/magazine/carbine{ - pixel_x = -10 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/gatewaystart/base2armory) -"XN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"XO" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"XP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/obj/item/key, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"XQ" = ( -/obj/effect/turf_decal/dust, -/obj/item/shard, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/awaymission/chilly/facility4) -"XR" = ( -/obj/machinery/porta_turret/syndicate/energy{ - lethal_projectile = /obj/projectile/beam/laser/heavylaser; - lethal_projectile_sound = 'sound/weapons/lasercannonfire.ogg'; - shot_delay = 10 - }, -/obj/effect/turf_decal/bot_red, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/gatewaystart/base2armory) -"XS" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant3, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"XT" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"XU" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"XV" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/garbage{ - pixel_x = 6; - pixel_y = 8 - }, -/mob/living/simple_animal/hostile/skeleton/ice, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/awaymission/chilly/facility2) -"XW" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/pdas, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"XX" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 10 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/surface) -"XY" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"XZ" = ( -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"Ya" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Yb" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel, -/area/awaymission/chilly/cave) -"Yc" = ( -/obj/effect/turf_decal/dust, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Yd" = ( -/obj/effect/turf_decal/dust, -/obj/structure/rack, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"Ye" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Yf" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/structure/rospilovo/radio, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Yg" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating, -/area/awaymission/chilly/facility) -"Yh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/tracks, -/obj/structure/spider/stickyweb, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/awaymission/chilly/facility) -"Yi" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/scrubber, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Yj" = ( -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Yk" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/awaymission/chilly/syndietrain) -"Yl" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ym" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility3) -"Yn" = ( -/obj/item/shard, -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 9 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/facility4) -"Yo" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"Yp" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rospilovo/vanna{ - density = 0 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility4) -"Yq" = ( -/obj/item/shard, -/obj/item/stack/rods, -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Yr" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"Ys" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/dust, -/obj/item/trash/can/food/beans{ - pixel_x = 10; - pixel_y = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility3) -"Yt" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "chillyunderground"; - name = "underground door button"; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility/croom) -"Yu" = ( -/obj/effect/turf_decal/weather/snow/corner, -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/obj/effect/decal/cleanable/robot_debris, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"Yv" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Yw" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4; - pixel_x = -4 - }, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"Yx" = ( -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Yy" = ( -/obj/structure/girder, -/obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"Yz" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"YA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/gatewaystart) -"YB" = ( -/obj/item/ammo_box/magazine/wt550m9, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"YC" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/light/small/broken{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"YD" = ( -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/obj/structure/lattice/catwalk, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"YE" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"YF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/lattice, -/turf/open/floor/plating, -/area/awaymission/chilly/cave) -"YG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"YH" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged4"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"YI" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/chilly/facility2) -"YJ" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"YK" = ( -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/surface) -"YL" = ( -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/ice/smooth/oxy, -/area/awaymission/chilly/cave) -"YM" = ( -/obj/effect/turf_decal/dust, -/obj/structure/frame/computer{ - anchored = 1; - dir = 8; - pixel_x = 4 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"YN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/remains/human, -/obj/structure/lattice, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/chilly/facility2) -"YO" = ( -/obj/effect/decal/cleanable/glass, -/obj/item/stack/rods, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/wood, -/area/awaymission/chilly/facility3) -"YP" = ( -/obj/structure/table, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/awaymission/chilly/facility3) -"YQ" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"YR" = ( -/obj/effect/turf_decal/dust, -/obj/machinery/oldvents/variant1, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"YS" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/obj/structure/lattice, -/obj/effect/light_emitter, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"YT" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"YU" = ( -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/cave) -"YV" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/dark, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_x = 31; - pixel_y = -24 - }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged4"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/chilly/facility) -"YW" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/awaymission/chilly/facility3) -"YX" = ( -/obj/structure/flora/grass/green, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/facility2) -"YY" = ( -/obj/machinery/vending/chetverochka, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/showroomfloor, -/area/awaymission/chilly/facility) -"YZ" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/stack/sheet/iron, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Za" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility2) -"Zb" = ( -/obj/structure/lattice, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/item/stack/sheet/iron, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/snow/ice/oxy, -/area/awaymission/chilly/facility2) -"Zc" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark, -/turf/open/floor/plasteel/white, -/area/awaymission/chilly/facility2) -"Zd" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Ze" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/awaymission/chilly/facility4) -"Zf" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Zg" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"Zh" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Zi" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/gatewaystart) -"Zj" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"Zk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/lattice, -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/turf/open/floor/plasteel/dark, -/area/awaymission/chilly/facility2) -"Zl" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/obj/effect/turf_decal/dust, -/obj/machinery/light/broken{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Zm" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/awaymission/chilly/facility2) -"Zn" = ( -/obj/effect/turf_decal/dust, -/obj/structure/lattice, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility) -"Zo" = ( -/obj/item/organ/heart/demon, -/obj/structure/closet/crate/secure/gear, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/syndietrain) -"Zp" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/effect/turf_decal/dust, -/obj/effect/mob_spawn/human/corpse/damaged/chilly, -/obj/effect/decal/cleanable/blood/tracks{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Zq" = ( -/obj/effect/turf_decal/dust, -/obj/structure/chair/comfy/shuttle{ - dir = 8; - pixel_x = 5 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/light/broken{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility2) -"Zr" = ( -/obj/structure/bed/maint, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 1 - }, -/turf/open/floor/grass/snow/safe/oxy{ - icon_state = "snow_dug"; - slowdown = 1 - }, -/area/awaymission/chilly/facility) -"Zs" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plating, -/area/awaymission/chilly/facility/emergencystorage) -"Zt" = ( -/obj/effect/turf_decal/dust, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating/rust, -/area/awaymission/chilly/facility) -"Zu" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light/broken, -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/plasteel/airless/white, -/area/awaymission/chilly/facility3) -"Zv" = ( -/mob/living/simple_animal/hostile/skeleton/ice{ - health = 200 - }, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 8 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"Zw" = ( -/obj/effect/turf_decal/dust, -/obj/item/stack/tile/plasteel, -/obj/structure/lattice, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility2) -"Zx" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/partyhard/steel{ - icon_state = "g-3" - }, -/area/awaymission/chilly/facility2) -"Zy" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/floor/grass/snow/safe/oxy - }, -/turf/closed/indestructible/opshuttle, -/area/awaymission/chilly/syndietrain) -"ZA" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/dark{ - heat_capacity = 1e+006 - }, -/area/awaymission/chilly/gatewaystart) -"ZB" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ZC" = ( -/obj/effect/turf_decal/weather/side, -/obj/machinery/light/broken{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility3) -"ZE" = ( -/obj/structure/fluff/broken_flooring{ - dir = 8; - icon_state = "pile" - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/cave) -"ZF" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/glass, -/obj/item/shard, -/obj/effect/turf_decal/weather/snow/corner, -/obj/effect/turf_decal/weather/snow/corner{ - dir = 5 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/cave) -"ZG" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/pen, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/chilly/facility4) -"ZH" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"ZI" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/turf_decal/dust, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre, -/obj/item/storage/mre/protein, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/surface) -"ZJ" = ( -/obj/item/stack/tile/plasteel, -/obj/effect/turf_decal/dust, -/turf/open/floor/plating, -/area/awaymission/chilly/ntcargotrain) -"ZK" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/weather/snow/corner, -/turf/open/floor/engine/hull/oxy, -/area/awaymission/chilly/ntcargotrain) -"ZM" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/awaymission/chilly/facility4) -"ZN" = ( -/obj/effect/turf_decal/dust, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/pod/light, -/area/awaymission/chilly/facility) -"ZO" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/plating/snowed/smoothed/temperatre, -/area/awaymission/chilly/surface) -"ZP" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/flashlight/flare{ - pixel_y = 6 - }, -/obj/item/flashlight/flare, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) -"ZQ" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ZS" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/broken{ - dir = 8 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/igniter, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ZU" = ( -/obj/structure/railing, -/obj/effect/turf_decal/dust, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ZV" = ( -/obj/effect/turf_decal/dust, -/obj/structure/plasticflaps/opaque, -/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, -/turf/open/floor/plating, -/area/awaymission/chilly/facility2) -"ZW" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/light_emitter, -/turf/open/floor/grass/snow/safe/oxy, -/area/awaymission/chilly/surface) -"ZY" = ( -/obj/effect/turf_decal/dust, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/awaymission/chilly/facility) -"ZZ" = ( -/obj/effect/turf_decal/dust, -/obj/structure/table, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare{ - pixel_y = -5 - }, -/obj/item/flashlight/flare{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell, -/obj/item/stock_parts/cell/crap{ - pixel_x = 6 - }, -/turf/open/floor/plating/snowed/oxy, -/area/awaymission/chilly/facility/emergencystorage) - -(1,1,1) = {" -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -"} -(2,1,1) = {" -VV -cY -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -cu -cu -cu -cu -cu -cu -cu -cu -cu -ai -aG -aG -aG -aG -aG -aG -aG -aG -EO -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(3,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -cu -cu -cu -cu -cu -EO -zZ -zZ -aG -zZ -aG -aG -aG -zZ -Pr -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -WB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(4,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -cu -cu -cu -cu -EO -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -EO -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -WB -Un -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(5,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -cu -cu -cu -EO -qM -qM -qM -qM -mk -zZ -zZ -zZ -Pr -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -WB -Un -Un -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(6,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -dB -dB -dB -dB -dB -dB -cu -cu -cu -Pr -Pr -Pr -YU -YU -Gq -qM -mk -zZ -EO -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -dB -dB -VX -dB -dB -dB -SP -dB -dB -dB -VX -dB -dB -dB -Un -Un -Un -dB -dB -dB -VX -Wp -GI -dB -dB -dB -dB -VX -VX -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(7,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -dB -dB -dB -dB -dB -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -cu -cu -EO -YU -Pr -tF -YU -YU -YU -Gq -qM -EO -cu -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -fn -Om -Om -Om -Om -Om -VX -Om -fn -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -Om -Om -Om -fn -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -dB -dB -dB -dB -dB -dB -fn -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -bJ -Om -VX -VX -Om -Om -Om -VX -VX -VX -Om -Om -VX -VX -VX -dB -dB -dB -PE -VX -VX -VX -Om -Wp -Wp -Wp -Wp -VX -Wp -VX -SP -Om -SP -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(8,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -VX -Om -fn -Om -Om -Om -Om -fn -Om -Om -Om -fn -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -cu -cu -Pr -tF -eS -Jh -tF -Pr -YU -tF -YU -Pr -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -fn -Om -gc -Om -Om -Om -gc -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -fn -Om -Om -VX -dB -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -fn -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -Om -SP -Om -SP -Om -Om -VX -Wp -Wp -PE -Wp -Om -SP -Om -VX -SP -Om -Om -Wp -Om -Wp -VX -dB -Om -Om -fn -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(9,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -cu -Pr -tF -YU -YU -YU -Pr -Pr -zm -tF -Pr -cu -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -gc -Om -gc -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -fn -Om -Om -fn -Om -fn -Om -fn -Om -fn -Om -fn -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -SP -Om -Wp -Om -Wp -Om -Wp -Om -Wp -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -GI -Om -Wp -Wp -Om -Wp -Om -PE -PE -Om -Om -VX -Wp -Om -Om -Om -Om -Om -Om -Wp -Om -fn -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(10,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -gc -dB -dB -cu -EO -Pr -Pr -tF -tF -YU -YU -Ag -hN -EO -cu -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -YK -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -gc -Om -Om -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -fM -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -Om -Wp -Wp -Wp -Wp -fn -Om -Om -Om -Wp -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Wp -Om -Om -Om -Wp -Om -VX -Wp -VX -Wp -Om -Om -VX -PE -PE -Om -Om -Om -SP -Wp -Wp -Wp -Wp -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(11,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -VX -Om -Om -fn -Om -Om -Om -fn -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -cu -EO -bH -YU -YU -YU -YU -Aa -fA -Pr -EO -cu -dB -dB -dB -dB -gc -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -YK -Om -YK -YK -Om -Om -Om -YK -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -WQ -Om -fn -Om -Om -Wp -Wp -Om -Om -fn -Om -dB -dB -dB -dB -fn -Om -Wp -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -SP -Om -aF -Om -Om -Om -Om -Wp -Om -VX -Om -PE -PE -PE -Wp -Wp -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Wp -Wp -Om -Om -fM -VX -Om -dB -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(12,1,1) = {" -VV -dB -dB -dB -Om -Om -fn -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -dB -cu -Pr -zL -eV -pM -ca -YU -UN -Ol -Pr -aG -dB -dB -dB -dB -VX -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -SP -VX -Om -VX -Om -Om -VX -Om -Om -Om -SP -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Wp -Wp -Wp -Wp -Bk -Wp -Wp -Om -Om -Wp -Om -Om -SP -PE -Wp -Bk -Wp -Om -Om -Wp -Om -Om -Om -Om -Om -Om -Bk -Om -Om -Wp -Om -Om -Om -fn -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(13,1,1) = {" -VV -dB -dB -ag -VX -Om -Om -Om -Om -UX -Om -Om -Om -Om -gc -gc -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -gc -dB -cu -Pr -cJ -CD -pX -Fr -qm -YU -Yj -tH -aG -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -fn -VX -Om -Om -Om -Om -Om -VX -Om -VX -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -SP -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -VX -Om -Om -Om -Om -ga -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Wp -Bk -Om -Wp -Om -VX -Om -VX -Om -Om -PE -PE -PE -Om -Om -Om -Wp -Bk -Wp -Wp -Om -VX -Om -Om -Om -Wp -Om -Wp -Bk -Om -Om -VX -Om -pp -dB -dB -dB -dB -dB -dB -dB -VV -"} -(14,1,1) = {" -VV -dB -dB -fn -Om -Om -Om -Om -aR -Mp -eq -Mp -Mp -Mp -cb -cb -Mp -Mp -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -VX -Om -Om -dB -dB -EO -Pr -fe -qf -Yu -Ja -Pr -Pr -Un -EO -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -VX -Om -Om -Om -Om -Om -VX -Om -SP -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Vl -kG -Vl -Ju -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Wp -Om -VX -Om -VX -Om -Om -Om -Om -VX -PE -PE -Om -VX -Om -Om -Om -Om -aF -Om -Om -Om -Om -VX -Om -Om -Bk -Wp -Wp -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(15,1,1) = {" -VV -dB -dB -Om -Om -VX -Om -Om -Mp -cs -fs -gL -Mp -kf -fH -fH -fH -Mp -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -dB -dB -Pr -Un -fA -Un -Fr -Jg -Un -Ag -VK -EO -dB -dB -dB -gc -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -fM -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -WQ -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -kG -CN -WK -VJ -Bk -Wp -Om -Om -Om -Om -Om -Om -Om -Om -Wp -Om -Om -Om -Om -Om -Wp -Bk -Wp -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Wp -Bk -Wp -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(16,1,1) = {" -VV -dB -dB -Om -Om -Om -Om -Om -Mp -cA -fG -gO -iR -dO -lq -dO -dO -Mp -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -Pr -cK -fU -qi -Pr -Mm -UQ -CD -dS -Pr -dB -dB -dB -Om -VX -Om -VX -SP -Om -Om -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Bk -hR -ga -Vl -hR -Wp -Om -Om -SP -Om -Om -Wp -Wp -Om -Om -Om -Om -Om -Om -Bk -Wp -Wp -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -gc -gc -gc -Om -Om -Om -Om -Om -Om -SP -Om -Om -Wp -Om -SP -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(17,1,1) = {" -VV -dB -dB -dB -Om -VX -Om -Om -Mp -dj -fH -dO -Mp -dO -lB -mN -oo -Mp -ue -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -Pr -Pr -gg -qm -Aa -Nr -Vj -Pr -Pr -EO -dB -dB -VX -Om -Om -VX -Om -Om -Om -Om -dB -fn -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -VX -Om -VX -Om -Om -VX -VX -Om -Om -Om -VX -Om -VX -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Wp -Wp -Om -Om -Om -xR -Wp -Bk -Wp -Om -Om -Bk -Wp -Om -Om -Om -VX -Om -Om -Wp -Wp -Wp -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(18,1,1) = {" -VV -dB -dB -dB -fn -Om -UX -Om -Mp -Mp -Mp -Mp -Mp -Mp -Mp -mW -Mp -Mp -ue -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -SP -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -dB -dB -EO -Un -gB -qD -Pr -qU -YU -YU -Pr -EO -dB -dB -gc -Om -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Wp -Om -Om -Om -kG -Om -Om -Om -Om -xR -Om -VX -Om -Om -Om -Om -Om -Om -Om -Wp -ft -Wp -Om -Om -PE -xR -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(19,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Mp -dk -fJ -gT -hE -fH -rQ -fH -oG -Mp -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -gc -dB -dB -EO -dt -qp -rX -YU -DG -qp -SQ -Pr -EO -dB -dB -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -VX -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -SP -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Bk -Wp -Om -Om -Om -Om -Om -Om -xR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Wp -Wp -Wp -Wp -Om -Om -PE -li -Om -Om -Dk -Bb -Bb -oX -oX -oX -Bb -Bb -Bb -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(20,1,1) = {" -VV -dB -dB -dB -Om -VX -Om -BI -bf -dx -rQ -ha -dO -kk -dM -nc -fH -Mp -Om -gc -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -EO -Un -hb -Pr -Ag -Pr -VC -SQ -vj -Pr -dB -dB -Om -Om -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -dB -dB -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -VX -Om -Om -Wp -Wp -Wp -Om -Om -vl -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -vl -Wp -Wp -Wp -Om -PE -gc -Om -mp -Bb -fP -FC -hH -ka -iO -cG -Hq -Bb -As -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(21,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Mp -rQ -gf -Mp -Mp -Mp -Mp -rQ -rQ -Mp -Mp -cb -Mp -Mp -Wp -Om -Wp -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -dB -Pr -Un -hq -qp -dS -NU -Un -fA -ey -EO -dB -gc -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -YK -YK -YK -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Wp -Wp -Wp -kz -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -kG -kG -kG -Om -SP -Om -qR -Wp -Wp -Om -PE -PE -gc -Om -UX -XU -zy -de -qt -bZ -kI -kY -Wa -oX -Om -Om -Om -gc -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(22,1,1) = {" -VV -dB -dB -dB -fn -Om -Om -ax -Mp -dH -gb -hm -jn -ko -lI -rQ -rQ -Mp -rQ -gb -rQ -Mp -Wp -Wp -Wp -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -fn -dB -dB -dB -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -dB -Pr -dy -fA -QN -Un -Oe -Mv -OW -ey -Pr -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -SP -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -SP -SP -Om -WQ -Om -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -WQ -Om -VX -Om -Om -Om -VX -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Wp -Wp -Wp -Wp -Om -qR -Om -Om -Dk -Bb -Bb -Bb -Bb -Om -Om -Om -Om -Om -Om -qR -Om -Wp -Om -PE -PE -gc -ch -mp -Bb -Bp -MQ -EZ -rG -rl -AE -Qp -Bb -As -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(23,1,1) = {" -VV -dB -dB -dB -dB -Om -ax -gc -bw -dM -gf -hs -fH -kA -fH -nd -ha -pV -rQ -gb -rQ -qz -Wm -Wp -Wp -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -dB -Pr -Un -hw -sd -ZE -OL -qp -Un -ey -Pr -dB -Om -VX -Om -Om -Om -Om -VX -Om -Om -YK -YK -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -VX -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Wp -Wp -Wp -Wp -Om -qR -Om -ly -vt -sr -sa -cW -vt -gc -Om -SP -Om -Om -Om -qR -Wp -Wp -Om -PE -PE -PE -Wp -Om -Bb -Bb -Bb -Bb -sJ -Bb -Bb -Bb -Bb -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(24,1,1) = {" -VV -dB -dB -dB -dB -Om -VX -Om -Mp -cA -dM -gq -jC -hm -lJ -ni -rQ -Mp -gb -gb -gb -Mp -Wp -Wp -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -dB -Pr -Pr -HW -qp -qp -Un -Un -Tb -BX -EO -dB -dB -dB -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -SP -Om -Om -kG -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -SP -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Bk -Wp -Om -Wp -Wp -qR -Om -gc -vt -jy -kh -EQ -vt -gc -kG -kG -Om -SP -Wp -qR -Om -Om -Om -PE -PE -PE -Wp -Wp -Bb -Oa -hr -lk -Xh -Lj -cV -ya -Bb -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(25,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Mp -dN -fH -Mp -Mp -Mp -Mp -nC -gO -Mp -Mp -Mp -Mp -Mp -Om -Om -Wp -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -WQ -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -dB -EO -Un -CD -sz -Ax -ON -Wg -fA -Ou -EO -dB -dB -fn -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -PE -PE -YJ -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Wp -Wp -Wp -Om -Om -Om -qR -Om -gc -vt -fp -AD -Ak -vt -gc -Om -Om -Om -Om -kG -qR -Om -Om -Om -PE -PE -gc -Wp -Uv -oX -oq -xW -rz -xW -ar -GC -oq -oX -UX -Om -gc -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(26,1,1) = {" -VV -dB -dB -dB -dB -fn -Om -BI -cb -dO -dO -hC -jD -kD -lK -fH -ps -Mp -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Pr -Un -CD -sI -AS -OT -XA -CD -Un -EO -dB -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -WQ -fn -Om -PE -Om -PE -Om -fn -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Bk -Wp -Om -Wp -Wp -Om -Wp -Bk -Om -qR -Om -Bb -Bb -Bb -sJ -Bb -Bb -Bb -Bb -YD -iL -PE -YJ -qR -Om -hR -PE -PE -PE -fh -Om -Wp -oX -oq -Xh -oy -GC -oq -hi -oq -oX -Om -Om -gc -Om -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(27,1,1) = {" -VV -dB -dB -dB -dB -VX -Om -Om -Mp -dQ -gq -hE -gq -kK -mj -nS -pC -Mp -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -EO -Un -hP -Un -Bh -Un -Un -HW -Pd -EO -Om -Om -Om -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -VX -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -dB -dB -Om -PE -fn -PE -dB -dB -ue -VX -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Wp -Om -Wp -Wp -Wp -Om -Wp -Om -Om -qR -Om -Bb -Wv -ji -TS -Ed -AD -iU -wH -dL -fh -kG -Om -qR -kG -Om -YJ -PE -PE -fh -Om -UX -XU -TW -Nt -oq -xW -Dz -oj -Zu -PC -UX -Om -gc -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(28,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Mp -Mp -Mp -hF -jO -kO -mq -Mp -Mp -Mp -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -EO -dS -CD -Un -Un -Un -Un -CD -NZ -EO -Om -Om -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -YJ -dB -dB -dB -dB -fn -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Wp -Om -Wp -Om -Bk -Wp -Wp -Om -Om -qR -gc -vt -pJ -st -Np -xW -xW -iU -wH -mD -TE -PE -PE -DL -YJ -YJ -PE -PE -YJ -fh -Om -UX -XU -NO -sG -AD -bV -IK -Nt -oq -oX -Om -Om -gc -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(29,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Om -Om -Mp -gb -jR -lh -mF -Mp -Om -Om -fn -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -iC -HP -gc -Pq -XW -iC -gc -Om -Om -Om -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -VX -fn -Om -Om -Om -VX -Om -SP -VX -Om -Om -Om -Om -SP -Om -Om -Om -VX -VX -Om -VX -Om -fn -dB -dB -Ko -Ko -pb -Ko -Ko -iN -Ko -pb -dB -dB -dB -dB -dB -fn -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Wp -Om -Wp -Wp -Wp -Om -Om -Wp -qR -Om -Bb -DR -nm -yY -ZC -jS -iU -wH -mD -fh -PE -kG -qR -Om -Om -PE -PE -PE -gc -Wp -Om -XU -NO -gy -QT -xW -AD -dP -fd -XU -UX -Om -gc -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(30,1,1) = {" -VV -dB -dB -dB -dB -fn -VX -Om -VX -Om -Mp -hO -jZ -lm -mK -Mp -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -kt -Om -Om -kG -UD -Om -Om -kG -PE -ti -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -VX -dB -dB -dB -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -VX -dB -dB -dB -Ko -tO -Eq -Zs -Ko -GB -ZP -Ko -dB -dB -dB -dB -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Bk -Om -Om -Wp -Bk -Om -Om -Om -qR -Om -Bb -Bb -Bb -Xb -Bb -Bb -Bb -Bb -Mi -gc -Om -rT -qR -Om -Om -Om -PE -PE -gc -Om -UX -oX -oq -xW -Lj -xW -Lj -Nt -fd -WE -UX -Om -gc -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(31,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Om -Om -Mp -cb -jE -jE -cb -Mp -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -aX -Om -iP -tn -kd -kG -kG -kG -cv -it -Om -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -dB -dB -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -fn -dB -dB -dB -pb -zq -JN -rE -Me -AJ -yk -pb -dB -dB -dB -fn -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Wp -Wp -Om -Om -qR -Om -Bb -CF -bI -gj -Kh -Bb -Om -Om -kG -Om -kG -Om -qR -Om -Om -kG -PE -kG -gc -Om -UX -XU -TW -sG -oq -GC -oq -GC -hd -WE -UX -UX -gc -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(32,1,1) = {" -VV -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -gc -BI -gm -BI -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -bb -He -PE -vB -BD -Ps -XX -LZ -vB -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -VX -dB -dB -pb -pb -Ko -pb -Ko -Ko -Ko -pb -dB -dB -dB -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -VX -Om -Wp -Om -Om -qR -Om -Bb -VO -Fn -oW -qy -Bb -Om -Om -kG -Om -Om -Om -qR -Om -Om -Om -PE -PE -fh -Om -Om -oX -Dz -Nt -oq -GC -oq -Vo -fd -XU -Om -Om -gc -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(33,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -LZ -UX -Om -Om -UX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -dB -fn -Om -Om -Om -Om -bc -eo -PE -vN -BS -Pw -Ya -XT -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -qe -qe -qe -qe -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Bb -MK -AD -Fn -WP -Bb -kG -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -PE -fh -Om -Om -oX -oq -Nt -oq -hi -oq -GC -oq -oX -UX -Om -ly -Om -Om -Om -Om -VX -dB -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(34,1,1) = {" -VV -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -fn -dB -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -Om -Om -VX -SP -Om -ev -kF -et -Ca -mT -Yl -gF -Tu -UX -VX -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Wp -Om -Om -Om -Om -Om -Om -qR -Om -Bb -qa -Fn -Ku -Os -Bb -zB -kG -Om -SP -Om -VX -qR -Om -Om -Om -Om -PE -fh -Om -Om -oX -ng -id -za -Nt -za -Nt -fc -oX -Om -Om -gc -SP -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(35,1,1) = {" -VV -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -bp -LZ -kJ -Om -aB -QV -Yq -KT -Om -gc -Om -Om -Om -Om -Om -Om -VX -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -zg -zg -zg -zg -zg -nx -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Wp -Wp -Wp -Om -Om -Wp -Bk -Om -Om -qR -Om -Bb -KQ -AD -Fn -IY -Bb -kG -Om -Om -Om -Om -Wp -qR -Wp -Om -Om -PE -PE -fh -Wp -mp -Bb -oX -XU -Bb -sJ -Bb -oX -XU -Bb -As -Om -gc -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(36,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -gc -eJ -et -vO -Ct -Re -YS -Ex -Om -gm -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -nx -gD -AB -hz -PY -sl -nx -nx -ZQ -GT -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Wp -Bk -Om -Om -Wp -Wp -Wp -Om -Om -qR -Om -Bb -Wk -Fn -Gt -ob -Bb -Om -Om -Om -Om -Om -Wp -qR -Wp -Om -Om -Om -PE -fh -Om -Om -Om -Om -UX -Ae -PE -VE -UX -UX -Om -Om -Om -gc -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(37,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -gc -eR -PE -wq -Cu -Rj -Zd -mT -kG -gc -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -MY -fv -Ws -fb -US -ns -bM -nx -KS -jL -Rt -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Wp -Wp -Om -Om -Wp -Om -Om -qR -Om -Bb -Bb -oX -Bb -Bb -Bb -Om -Om -Om -Om -aF -Wp -qR -Wp -Wp -Om -PE -PE -gc -Wp -Wp -Om -Om -Om -PE -PE -PE -Om -Om -UX -Om -Om -gc -VX -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(38,1,1) = {" -VV -dB -dB -dB -Om -VX -SP -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -gc -kG -lM -mT -Du -RZ -Dx -mY -Om -gc -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -zg -Hb -yc -hL -Qh -XQ -Kf -Av -nx -Gg -jL -Om -ML -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -gc -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -PE -fh -fh -fh -fh -gc -fh -fh -fh -fh -fh -gc -gc -gc -gc -gc -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(39,1,1) = {" -VV -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -gc -kd -mg -wS -Dx -kV -ZI -mT -Om -BI -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -zg -cM -SH -do -Ek -ys -yc -ZM -mo -mR -fV -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -vl -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -vl -Om -Om -kG -PE -PE -Om -PE -kG -PE -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(40,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -SP -Om -Om -Om -HP -UX -mv -wX -gn -DZ -ZJ -nF -UX -gc -Om -Om -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -nx -nx -Lg -WO -nx -nx -nx -nx -Gg -jL -Om -eK -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -SP -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -Om -YJ -PE -PE -PE -Om -PE -Om -PE -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(41,1,1) = {" -VV -dB -dB -dB -Om -Om -WQ -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -WQ -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -gc -Om -mT -xo -EB -SC -Fc -mT -Om -gc -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -Ik -xY -CA -MV -nx -as -Tv -nx -EE -CU -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -SP -SP -Om -WQ -Om -Om -VX -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -VX -Om -Om -Wp -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(42,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -aE -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -UX -mY -xA -Fc -SR -Vk -nF -kG -gm -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -pj -Of -ac -Lg -mQ -WY -WS -nx -Om -Om -Sr -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -Om -Om -Wp -Om -VX -Om -Om -Wp -Om -VX -aF -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -gc -gc -gc -gc -gc -us -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(43,1,1) = {" -VV -dB -dB -dB -fn -VX -Om -VX -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -SP -Om -VX -Om -gc -kG -mT -Vk -FA -DZ -ZK -mT -wy -gc -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -Sb -av -ww -gl -nx -JW -Hy -nx -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -WQ -SP -Om -Om -Om -Om -SP -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -VX -Om -Wp -Om -VX -Om -Wp -Wp -Wp -hR -Wm -Om -VX -Om -Om -Om -Om -ch -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -HP -Om -Om -VX -Om -Om -Om -Om -Om -Om -gc -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(44,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -Om -Om -Om -SP -Om -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -SP -Om -WQ -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -GI -Om -Om -Om -Om -Om -Om -Om -Om -dB -fn -Om -Om -Om -HP -Om -nF -yg -FE -Tr -wV -mY -Om -gc -Om -Om -VX -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -zg -nx -nx -zg -nx -nx -zg -nx -Om -VX -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -PE -PE -Om -Wp -Wp -Om -VX -Om -kG -Om -Om -Om -kG -Om -Om -Om -Om -SP -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(45,1,1) = {" -VV -dB -dB -dB -Om -Om -VX -Om -WQ -Om -Om -dB -dB -fn -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -dB -dB -Om -Om -VX -gc -Om -nP -xQ -RY -TD -TK -nP -wy -gc -Om -Om -YK -YK -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -fn -dB -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -WQ -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -VX -Tt -xr -xr -xr -xr -xr -oX -xr -oX -xr -xr -kG -Pl -ch -RB -Om -Om -Om -PE -PE -Wp -Wp -Wp -Om -ch -Om -kG -Tt -xr -XU -xr -oX -xr -xr -YW -xr -YW -YW -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(46,1,1) = {" -VV -dB -dB -dB -Om -Om -Om -VX -Om -WQ -Om -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -Om -Om -Om -Om -Om -Om -ch -mT -mT -FF -FF -mT -mT -wy -Om -Om -Om -YK -YK -YK -YK -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -YK -qe -YK -YK -qe -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -Om -VX -Om -Wp -Om -xr -Up -qE -RG -Yy -VN -uR -km -Tx -oi -xr -Om -Om -Om -Om -Om -Om -Om -Om -PE -Wp -Wp -Wp -Om -Om -gc -Om -Yy -wt -Tx -km -xZ -VN -xr -CY -qE -If -YW -Om -Om -dB -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(47,1,1) = {" -VV -dB -dB -dB -fn -Om -Om -Om -Om -Om -fn -Om -Om -dB -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -gc -oe -yF -FV -FV -OB -oe -gc -kG -Om -Om -VX -Om -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -VX -kG -Om -NA -CC -xf -pF -xr -PW -xW -uR -xW -AY -xr -kG -Om -Om -Om -VX -Om -Wp -Wp -PE -PE -Wp -Wp -PE -Om -kG -Om -xr -LL -xZ -xW -rG -PW -xr -Bx -wA -cx -NA -SP -Om -dB -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(48,1,1) = {" -VV -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -fn -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -kG -mT -mT -FF -FF -mT -mT -ch -Om -Om -Om -Om -YK -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -SP -Om -Om -SP -Om -Om -Om -VX -VX -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -kG -xr -xr -nt -xr -xr -uI -NV -xW -xZ -VT -xr -xr -kG -Om -Om -Om -Om -Om -Wp -PE -Om -Om -Wp -Om -Om -Om -xr -xr -VT -xZ -bL -xZ -hj -xr -xr -nt -xr -xr -LZ -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(49,1,1) = {" -VV -dB -dB -dB -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -fM -Om -VX -VX -HP -Om -mT -yI -Gn -Ib -AC -mT -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -gc -Om -oX -yH -WT -xW -fX -Lu -es -xW -yH -xW -qr -xr -PE -Om -PE -Om -PE -Om -PE -PE -Dw -Om -PE -PE -Dw -PE -xr -lx -BT -xW -yH -fX -Es -Ui -mu -kX -wz -ml -UX -gc -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(50,1,1) = {" -VV -dB -dB -dB -dB -fn -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -Om -nF -yW -Ib -Ib -Lh -nF -Om -gc -Om -Om -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -VX -Om -Om -Om -kG -iL -Om -oX -xW -QB -fX -fX -xW -fX -NH -vn -fX -xW -IP -PE -PE -PE -Om -Om -PE -PE -PE -PE -Om -Om -ch -PE -JE -IP -xW -Kz -Eb -xW -yH -fX -fX -xW -QB -pD -oX -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(51,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -SP -Om -Om -gc -Om -mT -mT -oe -oe -mT -mT -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -YK -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -PE -Om -PE -PE -Om -Om -Om -PE -Om -Om -PE -Om -Om -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -VX -Om -VX -Om -SP -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -xr -xr -xr -xr -Yy -xr -fX -xW -YW -xr -YW -xr -xr -xr -Om -Om -PE -KV -PE -PE -PE -Om -Om -UX -xr -xr -xr -xr -xr -xr -Es -qo -YW -xr -xr -xr -xr -xr -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(52,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -kG -Om -nP -zf -IG -TU -Ut -nP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -PE -PE -Om -Om -PE -PE -PE -PE -PE -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -VX -gc -kG -oX -TH -YP -Dt -Va -xr -xW -fX -Yy -aa -UA -uz -Id -oX -Om -gc -Om -aw -PE -PE -PE -Om -gc -Om -yR -lG -Jf -Ym -Ch -xr -eZ -qo -Yy -Et -Lt -Ul -Cc -ml -UX -gc -Om -dB -Om -dB -dB -dB -dB -dB -dB -VV -"} -(53,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Wp -Om -Om -Om -VX -Om -Om -Om -Om -UX -Om -mY -zi -kM -Uf -qw -nF -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -PE -Om -PE -PE -PE -Om -Om -PE -PE -Om -Om -Om -PE -PE -Om -Om -PE -PE -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -gc -Om -oX -jT -fX -by -Ne -YW -Rx -xW -YW -fX -QF -Ne -kS -oX -Om -gc -Om -PE -PE -PE -PE -Om -iA -Om -mX -rH -XC -rd -ke -xr -qo -XL -xr -fX -Bz -BT -XB -oX -Om -gc -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(54,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -zp -Om -Om -Om -Om -Om -SP -Om -gc -kG -nF -nF -zi -zi -nF -nF -Om -HP -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -YK -YK -YK -Om -Om -Om -Om -PE -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -PE -PE -Om -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -VX -Om -Om -Om -gc -Om -oX -Qi -qV -Ne -aT -YW -fX -Xi -xr -oS -Ne -qV -Qu -oX -Om -gc -Om -PE -PE -PE -PE -Om -sW -Om -yR -IT -qV -Ac -VF -xr -ir -XN -xr -vS -fX -qV -Xa -ml -Om -ly -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(55,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Wp -Om -Om -VX -Om -Om -Om -Om -gc -Om -ol -mY -nF -mY -nF -oV -kG -gc -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -YK -Om -Om -Om -Om -PE -PE -PE -PE -Om -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -PE -PE -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -xr -xr -xr -IP -xr -xr -BT -xW -xr -xr -IP -xr -xr -xr -Om -Om -Om -ch -PE -PE -PE -Om -UX -UX -xr -Yy -xr -IP -xr -xr -fX -qo -xr -xr -IP -xr -YW -xr -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(56,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -SP -Ao -Om -Om -VX -Om -Om -Om -Om -gc -kG -oT -UX -Om -UX -Om -oV -Om -gc -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -PE -PE -Om -PE -Om -Om -PE -PE -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -VX -Om -Om -Om -gc -kG -oX -xW -xW -fX -Rk -fX -xW -xW -fX -Ui -xW -xW -fX -oX -Om -gc -Om -Om -PE -PE -PE -Om -gc -Om -yR -Uc -FR -Es -fX -fX -Lu -xW -fX -Jz -xW -fX -YO -ml -UX -gc -Om -pp -dB -dB -dB -dB -dB -dB -dB -VV -"} -(57,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -ch -Db -qJ -Zg -Om -Om -Om -VX -Om -gc -Om -oV -Om -UX -Om -Om -oV -Om -gc -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -fn -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -gc -Om -oX -fX -yH -fX -xW -fX -xW -Xi -xW -fX -fX -uj -fX -oX -Om -gc -Om -Om -Om -PE -PE -Om -HP -Yx -WE -fX -VL -bW -yH -fX -KZ -xW -fX -xW -fX -oj -fX -oX -LZ -gc -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(58,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -oH -FQ -xB -DU -lb -Om -Om -Om -Om -Om -gc -pv -gc -HP -gc -gc -pv -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -VX -PE -Om -Om -PE -Om -PE -PE -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -SP -dB -Om -fn -ue -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -xr -xr -YW -IP -xr -xr -WT -yH -xr -xr -IP -YW -xr -xr -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -xr -Yy -xr -bk -xr -xr -fX -fX -xr -xr -IP -xr -Yy -xr -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(59,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -GH -wi -th -VX -Om -Om -VX -Om -Om -oV -Om -Om -kG -Om -oV -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -pp -dB -dB -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -gc -Om -oX -nK -KC -yH -oS -YW -fX -qr -xr -vS -xW -qV -pN -oX -aj -gc -Om -Om -PE -PE -PE -Om -gc -Om -jU -gJ -qV -Ne -oS -YW -Ni -fX -xr -Dg -Ne -qV -hG -ml -Om -gc -Om -VX -fn -dB -dB -dB -dB -dB -dB -VV -"} -(60,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -SP -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -CT -ch -Wp -Om -Om -ue -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -YK -VX -YK -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -fn -Om -Om -VX -Om -Om -Om -PE -Om -PE -PE -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -fn -Om -Om -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -VX -gc -Om -oX -Bf -vk -Ne -fX -xr -fX -fX -YW -fX -xW -xW -ox -oX -Om -gc -Om -Om -Om -PE -Om -PE -HP -Om -Qw -Bf -kX -bW -Ne -xr -yH -fX -xr -Ne -xJ -oj -Bf -oX -Om -gc -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(61,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -fn -SP -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -SP -SP -Om -Om -Om -VX -Om -Om -VX -ch -eC -Kp -lb -ch -xc -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -gc -Om -oX -Ov -SY -Lt -EA -xr -qA -qA -xr -Et -yP -Gc -Id -oX -Om -gc -Om -Om -Om -PE -PE -Om -gc -Om -jU -Id -Gc -Lt -Et -xr -qA -qA -xr -aa -yP -SY -Ov -oX -Om -ly -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(62,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Zg -ch -Zg -Om -SP -Om -Om -SP -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -fn -dB -Om -Om -VX -Om -Om -VX -Om -PE -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -fn -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -xr -xr -xr -xr -xr -xr -xW -rj -xr -xr -xr -xr -xr -xr -Om -Om -Om -Om -Om -PE -PE -Om -Om -VX -xr -xr -xr -xr -xr -xr -rj -xW -xr -YW -xr -xr -xr -xr -Om -SP -Om -VX -dB -dB -dB -dB -dB -dB -dB -VV -"} -(63,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -oH -Om -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -VX -fn -dB -dB -dB -dB -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -xr -vQ -kC -xW -MH -xr -Om -Om -kG -Om -Om -Om -Wp -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -xr -Sm -xW -kC -kC -YW -Om -Om -Om -Om -Om -Om -Om -Om -Om -pp -dB -dB -dB -dB -dB -VV -"} -(64,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -VX -Om -Om -SP -Zg -Om -MF -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -Fh -Le -Tc -Le -vl -cO -Tc -Le -Fh -cO -Tc -cO -vl -Le -Tc -Le -vl -Le -Tc -Le -Fh -cO -Tc -Le -vl -Le -Tc -Le -vl -Le -Tc -Le -Fh -Le -Tc -Le -vl -Le -Tc -Le -vl -Le -Tc -Le -Fh -Tc -Wq -Wq -Tc -Fh -Le -Tc -Le -vl -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -PE -Om -Om -Om -Om -VX -Om -VX -Om -Om -dB -dB -dB -dB -fn -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -Om -VX -Om -kG -Om -Om -xr -KY -SM -vr -hU -xr -Om -Om -kG -Om -Om -Om -Wp -Om -PE -PE -PE -Om -Om -Om -Om -Om -VX -Om -xr -hU -vr -SM -KY -xr -Om -gc -Om -Om -Om -Om -Om -Om -pp -dB -dB -dB -dB -dB -dB -VV -"} -(65,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -SP -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Ww -Om -Om -Om -Om -Om -fn -fn -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -qR -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -Om -VX -Om -VX -VX -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -xr -xr -xr -xr -xr -xr -Om -Om -Om -VX -Om -VX -Wp -Om -Om -PE -Om -Om -VX -Om -Wp -Om -Om -Om -xr -xr -xr -xr -xr -xr -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(66,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -SP -SP -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -fn -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Wp -Om -Om -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -fn -fn -Om -Om -Kn -xt -xt -Kn -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Ww -Om -Om -PE -PE -PE -PE -kG -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -PE -Om -Om -PE -Om -Om -SP -Om -Om -Om -Om -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -kG -Wp -Om -Om -Wp -Wp -Wp -Wp -Wp -Wp -Om -PE -PE -Om -Sr -Wp -Wp -Wp -Wp -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(67,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -fn -dB -dB -Ee -Ko -Ko -Ko -dB -Om -Om -fn -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Wp -Om -Om -Om -VX -VX -VX -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -Ww -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Kn -xt -xt -Kn -Kn -IN -il -Kn -Kn -xt -xt -Kn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -PE -YJ -Om -Om -Om -VX -hc -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -PE -Om -Om -Om -SP -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -SP -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -Om -Om -Om -kG -Om -VX -Om -aF -Om -Om -VX -Wp -VX -Om -Om -Wp -Wp -Wp -Wp -Wp -PE -Om -Om -Om -Om -Om -Wm -HP -Wm -gc -gc -gc -HP -gc -Om -gc -gc -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(68,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -Ko -uh -MZ -Ko -Ko -dB -dB -dB -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Wp -Om -Wp -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -dB -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Kn -Kn -Xd -Xd -sp -yh -op -ER -yh -Ts -Xd -Xd -Kn -Kn -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -PE -PE -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -gc -Om -Om -Om -ly -Om -Om -VX -gc -Wp -Wm -Wp -Om -Om -Om -Om -Om -Wp -Wp -Wp -Om -PE -ch -Om -Om -VX -gc -Om -Om -Om -wl -ap -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(69,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -vG -Om -Om -fn -dB -dB -dB -dB -pb -in -vJ -ZZ -Ko -dB -dB -dB -dB -Om -fn -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -aF -Om -VX -VX -VX -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -LV -dB -Om -Om -qR -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Kn -MX -ER -VY -VY -CX -ER -fZ -sZ -ER -ER -ER -MX -Kn -Om -Om -Om -Om -Om -kG -kG -kG -Om -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Wp -Wp -VX -Om -Om -PE -IQ -Om -Om -Om -gc -Om -Om -YW -lf -Vp -YW -oX -xr -YW -YW -xr -xr -xr -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(70,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -PE -Om -dB -Ko -pb -Ko -Ee -pb -sM -ub -uE -Ko -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Wp -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -RH -Kn -RQ -ER -fZ -PS -VY -ER -ER -Af -Af -ci -VY -zV -xt -Om -Om -Om -Om -Om -Om -Om -gc -Om -Om -kG -Om -PE -PE -Om -Om -VX -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -VX -Om -Om -Tt -xr -lf -xr -xr -xr -oX -xr -oX -xr -aq -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -gc -db -Om -lf -Hj -jb -Ys -xZ -at -YW -CV -qE -oZ -xr -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(71,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -SP -Om -PE -Om -Dw -PE -qj -Ko -qK -rp -Ko -Ko -Ko -Me -pb -Ko -Ee -dB -dB -dB -dB -dB -dB -fn -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Wp -Wp -Om -Om -oV -Om -Om -Om -Om -oV -Om -VX -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Kn -Xd -VY -VY -VY -fZ -Wd -VY -fZ -VY -op -VY -Xd -Kn -fn -Om -ly -kd -Om -Kn -zl -xt -zl -CB -Om -kG -PE -PE -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -PE -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -Om -Om -xr -Qx -Ny -RG -xr -VN -xZ -nv -uT -oN -xr -kG -Om -Om -Om -Lk -Om -Om -PE -PE -Om -Om -Om -Om -gc -kG -kG -vh -ih -uM -uM -xW -PW -xr -Qf -xZ -cx -NA -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(72,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -SP -SP -Om -Om -Om -Om -Om -Om -Om -PE -PE -TX -qu -qZ -rw -rU -sg -tl -um -uH -vg -Ee -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Kn -Kn -MX -Xd -sp -VY -VY -ER -VY -Vi -MX -Xd -Kn -Kn -Om -Om -Om -YQ -Om -Kn -wm -Xc -wL -ak -gc -PE -YJ -PE -Om -Om -kG -Om -Om -vl -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -NA -CC -TO -pF -xr -PW -xf -xW -xZ -eB -xr -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Zg -YW -lf -yJ -xZ -zu -uR -hj -xr -xr -ul -YW -xr -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(73,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -PE -PE -PE -qk -Ko -rh -rx -Ko -Ko -Ko -Me -Ko -Ko -Ee -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -hc -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Kn -xt -xt -Kn -qY -VY -ZB -Ky -Kn -xt -xt -Kn -Om -Om -Om -Om -kG -kd -Qn -jB -TC -vD -Aj -Om -Om -PE -PE -Om -Om -Om -Om -VX -qR -Om -Om -Om -Om -Om -VX -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -xr -xr -ul -xr -xr -hj -xZ -xZ -xZ -yV -xr -xr -Om -Om -Om -Kt -Om -Om -PE -PE -PE -Om -Om -PE -Om -PE -xr -nG -yH -AA -fX -fX -AA -fX -Dm -fX -yH -oX -Om -gc -Om -VX -dB -dB -dB -dB -dB -dB -dB -VV -"} -(74,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -VX -Om -Om -ok -Om -fn -dB -dB -pb -Ko -Ko -rW -Ko -tp -uq -uN -pb -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -Om -Om -SP -Om -VX -VX -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -VX -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -fn -fn -fn -Kn -md -Qb -Qb -qx -Kn -fn -fn -fn -Om -Om -Om -Om -Om -HP -Vx -Qr -Yg -ER -QU -fh -PE -PE -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -PE -PE -PE -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -gc -Om -oX -qH -by -by -xW -fX -fX -by -xW -fX -FT -xr -kG -Om -PE -Om -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -gE -fX -fX -fX -BA -AA -BA -yH -Ui -QB -fX -oX -Om -LJ -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(75,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -pb -tI -uu -vd -Ko -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -VX -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Kn -Kn -hS -Kv -hS -ER -Kn -Kn -Om -Om -Om -Om -Om -Om -Om -kd -xt -RF -ER -HT -Kn -Om -kG -PE -PE -PE -Om -Om -Om -Om -hc -Om -Om -Om -Om -SP -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -fn -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -gc -Om -oX -xW -cN -ES -by -by -kX -fX -fX -Dm -fX -gE -PE -PE -PE -yr -ch -PE -PE -PE -Om -PE -Om -Om -KE -xr -YW -xr -xr -YW -LT -wZ -xr -xr -YW -xr -xr -xr -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(76,1,1) = {" -VV -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -SP -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -Ko -tW -uv -pb -Ko -dB -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -fn -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -vl -Le -Tc -Tc -Le -Fh -Om -oV -Om -Om -Om -Om -oV -Om -Fh -Le -Tc -Tc -Le -vl -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Kn -hS -CX -hS -Sj -tX -ER -Kn -Om -Om -Om -Om -VX -Om -Om -kG -Kn -JH -yj -zP -xt -gc -kG -PE -PE -Om -Om -Om -Om -Om -Fh -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -xr -YW -xr -xr -wf -gX -Lu -IC -xr -xr -xr -xr -xr -xr -Om -ru -Om -Om -PE -PE -PE -gc -Om -Om -oX -FZ -Sn -Lt -mU -YW -wZ -Om -YW -EA -yP -Tp -xe -oX -Om -Om -gc -pp -dB -dB -dB -dB -dB -dB -dB -VV -"} -(77,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -Ee -pb -Ko -Ko -dB -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Hw -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -Hw -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -xt -Zl -Em -Jj -Jj -Jj -nB -xt -fn -Om -Om -Om -Om -Om -Om -Om -Kn -Aj -xt -Kn -Kn -Om -PE -Om -PE -PE -Om -VX -Om -Om -hc -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -PE -PE -PE -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -gc -Om -oX -kb -BG -UA -EA -gX -fX -fX -YW -aa -ed -aH -mH -oX -Om -gc -kG -kG -Om -PE -ch -gc -Om -Om -oX -pE -fX -xW -Ne -YW -db -sN -dn -fX -yH -xW -pE -oX -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(78,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -SP -Om -Om -SP -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -yC -Om -SP -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -fn -xt -hS -Jj -Nk -Bs -Gs -op -xt -fn -Om -Om -Om -Om -Om -gc -VX -Om -Om -gc -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -yC -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -PE -Om -PE -PE -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -gc -Om -oX -jT -xW -xW -fX -gX -Rx -fX -xr -fX -po -xW -px -oX -Om -gc -Om -Om -PE -PE -PE -gc -Om -Om -oX -gJ -qV -Ne -az -YW -Om -UP -YW -PB -Ne -Xz -gJ -oX -Om -Om -gc -Om -VX -dB -dB -dB -dB -dB -dB -VV -"} -(79,1,1) = {" -VV -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -VX -Om -Om -Ww -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Kn -Hx -iB -OQ -ER -hS -hS -Kn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -Om -VX -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -gc -Om -oX -sR -qV -Ne -Ti -xr -xW -by -xr -To -fX -qV -Vf -oX -Om -gc -Om -Om -Om -PE -Om -Om -VX -Om -xr -xr -xr -gE -YW -YW -Iq -HP -xr -xr -gE -xr -xr -xr -Om -Om -gc -Om -VX -dB -dB -dB -dB -dB -dB -VV -"} -(80,1,1) = {" -VV -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -vl -VX -Om -Ww -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -vl -kG -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Kn -iV -Au -Dn -hS -Td -Td -Kn -vo -Om -gc -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -kG -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -dB -dB -Om -Om -VX -Om -SP -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -SP -Om -Om -Om -PE -Om -PE -PE -PE -Om -Om -Om -SP -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -lf -Ox -xr -gE -xr -YW -xf -Es -xr -xr -gE -xr -xr -xr -Om -Om -Om -Om -Om -PE -PE -gc -Om -kG -oX -fX -AA -Je -kG -In -HP -HP -Qg -Ql -EM -fX -xW -oX -Om -Om -gc -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(81,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -qR -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -VX -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Kn -Kn -oF -oF -oF -oR -oF -oF -Kn -Kn -Om -gc -gc -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -hc -Om -Om -Om -VX -Om -Om -Om -dB -fn -SP -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -PE -Om -PE -PE -PE -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -gc -Om -oX -Ew -UB -Sg -rM -fX -vn -by -Es -WT -by -Dm -fX -oX -Om -gc -Om -Om -PE -PE -PE -gc -Om -Om -oX -xW -QB -fX -Fm -db -lW -fw -Om -mO -AA -fX -fX -oX -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(82,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Kn -cC -dC -yy -lY -FX -wP -ER -CX -YY -Kn -Kn -Kn -xt -Kn -Kn -PE -Om -PE -PE -Om -Om -kG -Om -Om -Om -YJ -Om -VX -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -gc -Om -oX -fX -MS -dY -Kz -fX -fX -kX -xf -fX -xW -cN -fX -oX -EH -gc -Om -Om -Om -PE -PE -Om -Om -Om -xr -xr -xr -gE -xr -xr -Om -bQ -xr -xr -gE -xr -xr -xr -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(83,1,1) = {" -VV -dB -dB -dB -dB -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -fn -Om -Om -fn -Om -Om -fn -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -qR -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -VX -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -xt -IS -hS -CX -ER -ER -CX -CX -ER -CX -vT -oF -Gl -lL -aN -Kn -Lb -PE -PE -Om -PE -Om -PE -PE -PE -YJ -YJ -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -SP -Om -SP -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -Om -Om -xr -xr -xr -gE -xr -xr -fX -xW -xr -xr -gE -xr -xr -xr -Om -Om -Om -Wp -Om -PE -Wp -gc -Om -Om -oX -Lv -qV -Ne -uA -xr -Cb -Ji -xr -PM -xW -qV -Wz -oX -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(84,1,1) = {" -VV -dB -dB -dB -dB -fn -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -gc -xt -vc -hS -hS -CX -hS -hS -hS -Hi -aP -hS -oF -RJ -Ar -lL -Uj -ET -PE -PE -Om -Om -PE -Om -Om -PE -Om -PE -Om -Om -Om -VX -Om -vl -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -gc -Om -oX -Xl -KC -Ne -oS -xr -by -qr -xr -vW -Ne -KC -bT -oX -Om -gc -Om -Om -Wp -PE -PE -gc -Om -Om -oX -Bf -xW -WT -xW -xr -fX -fX -xr -Lu -rG -xW -gk -oX -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(85,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -VX -Om -hc -Om -Om -Om -VX -kG -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -gc -Kn -oF -qL -qL -ls -tA -Aq -Br -Aj -zs -oF -oF -Df -lL -PX -Kn -TQ -PE -Om -Om -PE -PE -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -qR -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -VX -VX -SP -Om -dB -dB -fn -Om -VX -Om -Om -Om -Om -gc -Om -oX -gk -Ne -Xi -yH -xr -fX -fX -xr -Ne -fX -yH -Bf -oX -Om -gc -Om -Om -PE -PE -PE -gc -Om -Om -oX -Id -Gc -Lt -EA -xr -ll -ll -xr -Va -Eu -nR -Ov -oX -Om -Om -gc -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(86,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -yC -Om -Om -VX -Om -kG -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -gc -Kn -JP -VY -zj -uk -CX -rL -OV -Yr -rL -ER -oF -oF -Uj -Kn -Kn -Tj -PE -Om -PE -Om -Om -kG -Om -Om -PE -PE -kG -Om -Om -Om -Om -yC -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -PE -Om -Om -Om -Om -SP -Om -fn -Om -Om -Om -Om -Om -Om -VX -Om -gc -Om -oX -Ov -SY -UA -EA -xr -ll -ll -xr -Et -yP -UY -FZ -oX -Om -gc -kG -Wp -PE -Wp -Om -Om -Om -Om -xr -xr -xr -xr -xr -xr -rj -xW -xr -xr -xr -xr -xr -xr -ue -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -VV -"} -(87,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -qR -VX -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -VX -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -gc -xt -VY -CX -ND -CX -YH -FO -rL -iz -NY -rL -oF -ZH -OD -ZN -Kn -gc -Om -Om -Om -Om -Om -DT -Mn -Bd -PE -PE -DT -HG -kT -Om -Om -qR -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -fn -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -VX -Om -PE -PE -PE -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -xr -xr -xr -xr -xr -xr -xW -rj -xr -xr -xr -xr -xr -xr -Om -Om -kG -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -xr -Sm -xW -kC -kC -xr -ue -ue -ue -ue -ue -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -VV -"} -(88,1,1) = {" -VV -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Fh -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -kG -af -Om -vl -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -xt -zD -OY -jF -WH -nb -OY -NQ -zD -dc -yl -Aj -VY -VY -VY -Kn -Om -Om -Om -Om -Om -kG -Jt -YJ -PE -PE -PE -PE -YJ -mA -kG -Om -Fh -Om -Om -Om -VX -Om -Om -Om -VX -VX -fn -dB -dB -Om -Om -Om -WQ -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -PE -PE -PE -PE -PE -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -xr -kC -kC -xW -MH -xr -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -VX -Om -Om -gc -Om -YW -hU -vr -SM -KY -xr -ue -ue -ue -ue -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(89,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -SP -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -qR -VX -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -hg -Om -Wp -GF -kG -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -UX -Om -Om -UX -Om -gc -xt -wW -XP -IF -DI -qc -Cy -lS -op -Cy -Uy -Aj -ER -Ln -Fk -Kn -dB -Om -Om -VX -Om -Om -ZU -PE -PE -PE -YJ -PE -PE -Xx -Om -Om -qR -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -xr -KY -SM -vr -hU -xr -Om -Om -Om -VX -Om -Om -Om -Om -PE -PE -JJ -Om -Om -Om -Om -VX -Om -Om -xr -xr -xr -xr -xr -xr -ue -ue -Om -kG -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(90,1,1) = {" -VV -dB -dB -dB -dB -SP -Om -Om -Om -Om -SP -Om -Om -fn -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -oV -Om -Om -kG -Om -oV -kG -Om -kG -Om -kG -Om -yC -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -DX -Om -LZ -kd -gc -xt -VY -FO -VY -uD -zj -OV -iz -Qm -al -rL -Aj -VY -VY -ER -Kn -dB -dB -Om -Om -Om -Om -Fo -YJ -PE -YJ -PE -PE -PE -Fo -kG -Om -yC -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -xr -xr -xr -xr -xr -xr -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -YJ -Om -Om -Wr -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(91,1,1) = {" -VV -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -VX -Om -dB -Om -SP -SP -Om -Om -VX -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -fn -Om -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -VX -Hw -Om -Om -Om -Om -Om -Om -oV -kG -Om -Om -Om -oV -Om -Om -Om -hg -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -gc -gc -VI -LI -gc -gc -Kn -nb -OY -pe -ve -fE -fZ -ro -nU -AN -jF -oF -VG -CX -VY -Kn -dB -fn -Om -Om -Om -SP -Fo -YJ -YJ -YJ -PE -PE -PE -Fo -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -Om -Om -Om -PE -PE -YJ -Om -Wp -Om -VX -Om -Om -VX -qF -pf -vR -vR -vR -vR -vR -pf -kZ -Om -Om -kG -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(92,1,1) = {" -VV -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -VX -dB -dB -dB -dB -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -vl -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -kG -oV -Om -Om -kG -kG -Om -PE -vl -Om -kG -Om -Om -Om -YJ -Kn -Kn -Kn -Kn -Kn -Kn -Kn -Kn -xt -MT -zH -Ab -xt -Kn -Kn -Aj -Ux -qx -oF -jf -jf -oF -qx -qx -oF -oF -VY -GY -VY -fm -gc -Om -Om -Om -Om -Om -ZU -PE -PE -YJ -YJ -PE -PE -mA -Om -Om -vl -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -PE -PE -Om -Wp -Om -Om -VX -kG -qF -AI -Yz -tb -tb -aL -aL -aL -Nm -iZ -kZ -kG -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(93,1,1) = {" -VV -dB -dB -dB -dB -dB -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -fn -Om -Om -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -qR -Om -Om -Ww -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -PE -PE -PE -PE -RP -Om -YJ -Om -Om -PE -lR -Kn -aN -lL -BF -oF -GS -rL -fZ -rL -TL -zF -bz -Nc -AX -Dl -fZ -Hz -Hz -PP -Zn -fE -XF -VY -Nc -un -EI -Ck -VY -CX -fm -gc -Om -Om -VX -Om -Om -Jt -Us -PE -Us -zw -YJ -zw -mA -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -nu -Om -Om -Wp -Wp -kG -qF -AI -Yz -gz -YJ -YJ -YJ -YJ -YJ -AF -Nm -iZ -xd -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(94,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -WQ -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -PE -YJ -YJ -YJ -RP -PE -Om -YJ -PE -YJ -YJ -Uj -lL -Ar -lL -Uj -KJ -ER -Sq -pd -Iu -zN -Gy -zN -So -Dl -VY -cB -un -dE -op -vD -Zn -RO -sO -Mc -EI -xj -NW -CX -fm -gc -Om -Om -Om -Om -Om -da -iy -iy -Fo -Fo -iy -iy -PG -Om -Om -yC -VX -Om -Om -VX -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -PE -Wp -PE -uw -PE -Ii -tB -AM -Om -Om -SN -rF -gz -YJ -PE -YJ -PE -PE -PE -YJ -AF -Nm -kL -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(95,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -qR -VX -Om -Om -Om -Om -Om -oV -Om -kG -Om -Om -oV -kG -Om -Om -YJ -YJ -YJ -RP -YJ -PE -Om -Om -YJ -lR -Kn -HE -lL -lL -oF -Fd -ur -Cg -rL -ER -mi -zz -dp -rb -Dl -xq -ER -VY -Hz -rL -VY -JA -nT -Lp -xj -EI -wb -xj -Dq -fm -gc -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -Om -PE -PE -PE -Om -PE -PE -PE -Om -Om -Om -PE -PE -Om -PE -PE -PE -PE -PE -PE -PE -PE -Om -PE -PE -Om -PE -EC -PE -PE -PE -YJ -Om -Om -vp -qF -vR -AI -ds -PE -YJ -YJ -YJ -PE -YJ -YJ -YJ -PE -gh -CU -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(96,1,1) = {" -VV -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Fh -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -PE -PE -vl -Om -Om -Om -Om -Om -PE -Kn -Kn -fm -Kn -Kn -Kn -Kn -Hc -Li -Hc -Dl -Hc -Hc -Hc -oF -Aj -Aj -oF -oF -oF -CM -oF -oF -oF -oF -oF -oF -fi -Kn -Kn -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -vl -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -Om -PE -PE -PE -PE -PE -Om -PE -PE -PE -PE -PE -PE -Om -Om -PE -PE -PE -PE -PE -PE -PE -YJ -PE -PE -PE -PE -PE -PE -PE -xi -PE -PE -PE -aL -aL -aL -aL -aL -zM -PE -YJ -ws -ws -ws -ws -ws -YJ -PE -uQ -CU -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(97,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -aK -aD -Om -Om -Om -Om -Om -Om -VX -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -qR -SP -Om -Om -Om -Om -Om -oV -kG -Om -Om -Om -oV -Om -Om -Om -PE -PE -PE -qR -Om -Om -Om -Om -Om -Om -Om -YJ -or -YJ -kG -gc -Kn -MB -ER -op -xE -rL -ER -At -oF -xL -zs -Kq -ii -wJ -tQ -oF -Gz -zs -PQ -oF -nl -Ow -QG -Kn -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -PE -PE -PE -PE -PE -Om -Om -PE -Om -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -PE -YJ -PE -uX -PE -YJ -Om -PE -PE -PE -PE -PE -PE -YJ -YJ -PE -YJ -YJ -ho -PE -YJ -YJ -PE -ws -YJ -YJ -YJ -PE -gh -CU -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(98,1,1) = {" -VV -dB -dB -dB -dB -dB -aD -aQ -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -oV -Om -kG -Om -Om -oV -Om -hg -Om -Om -Om -Om -yC -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -gc -xt -ER -ER -rL -Iu -ER -Qm -Bo -oF -oF -oF -KD -oF -KL -uV -oF -LO -oF -oF -oF -jz -Be -QK -Kn -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Ww -Om -yC -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -PE -Om -PE -PE -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -Om -PE -Om -Om -VX -gh -rI -PE -YJ -YJ -uX -mA -Om -Om -JT -PE -PE -PE -ze -ze -ze -ze -ze -Md -PE -YJ -ws -ws -ws -ws -ws -PE -PE -uQ -CU -kG -dB -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(99,1,1) = {" -VV -dB -dB -dB -dB -dB -aK -Om -aD -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -SP -VX -Om -Om -Om -VX -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -hc -Om -Om -VX -Om -Om -Om -oV -Om -Om -Om -Om -oV -kG -Om -VX -Om -Om -Om -qR -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -iL -Kn -cE -ur -ER -xv -fE -ur -bm -oF -en -zs -ER -oF -TR -Ub -Aj -Gz -zs -PQ -oF -nl -lU -xj -fm -gc -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -VX -Om -Om -qR -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -SP -Om -PE -PE -PE -PE -PE -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Jt -PE -fS -PE -fS -PE -mA -Om -Om -Om -wB -YJ -Fs -Om -vp -aB -xF -hY -ds -YJ -YJ -YJ -YJ -PE -YJ -YJ -PE -YJ -uQ -CU -Om -fn -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(100,1,1) = {" -VV -dB -dB -dB -dB -dB -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -kG -oV -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Kn -Kn -Kn -Dl -Dl -Dl -oF -AL -oF -oF -oF -XS -oF -gM -Is -Aj -Xv -oF -oF -oF -Nw -CX -sF -fm -gc -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Fh -Om -Om -Om -Om -Om -Om -VX -VX -Om -SP -SP -Om -VX -Om -SP -SP -Om -Om -VX -Om -SP -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Jt -yp -XG -ez -lN -Hg -mA -Om -Om -PE -PE -kG -Om -PE -PE -PE -PE -SN -QY -Ig -PE -YJ -PE -YJ -YJ -YJ -PE -gR -Kb -kL -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(101,1,1) = {" -VV -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -hc -Om -Om -VX -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -kG -kG -Kn -gs -ER -Bo -oF -AL -oF -RT -zs -CX -oF -oF -Aj -Aj -vD -zs -PQ -oF -jm -CX -Ld -fm -gc -Om -SP -Om -Om -VX -hf -Om -Om -Om -kd -Om -Om -Om -VX -Om -qR -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -VX -Om -Om -VX -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -Om -Om -SP -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -da -iy -iy -iy -iy -iy -PG -Om -Om -Om -PE -PE -PE -PE -PE -PE -PE -aB -hY -bD -Ig -PE -PE -YJ -YJ -PE -mf -Kb -xU -Tz -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(102,1,1) = {" -VV -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -yC -Om -Om -Om -Om -SP -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -xt -ge -KA -lT -oF -EY -oF -oF -oF -MD -oF -pG -Xw -Aj -hK -Aj -Aj -oF -dq -CX -mz -fm -gc -Om -Om -Om -Om -Om -Om -gc -gc -gc -VX -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -SP -PE -PE -PE -PE -PE -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -PE -Om -PE -PE -PE -QO -Om -aB -hY -bD -ze -ze -ze -ze -ze -Kb -xU -Tz -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(103,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -hc -Om -VX -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Kn -ge -vD -vD -oF -gC -oF -sm -ER -ER -wu -fZ -rL -OH -Gz -Gz -Mf -Aj -dq -CX -dq -Kn -nj -Om -fn -dB -dB -dB -fn -UX -Om -Om -Om -Om -Om -Om -Om -Om -hc -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -PE -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -aB -TA -xF -xF -xF -xF -xF -TA -Tz -kG -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(104,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -oV -Om -Om -Om -Om -oV -Om -Om -Om -Om -Om -Om -vl -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -gc -Om -Om -Kn -Dl -Dl -Dl -oF -oF -oF -JS -kW -hS -oF -Wn -zK -Kn -Gz -cP -Ml -Kn -dq -CX -dq -Kn -dB -dB -dB -dB -dB -dB -dB -Iz -Iz -fn -fn -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(105,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Hw -Om -Om -Om -Om -Om -PE -oV -PE -Om -Om -PE -oV -PE -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -RH -Kn -xt -Kn -Kn -Kn -Am -Am -Il -ii -SU -mG -oF -oF -oF -oF -hD -ss -Kn -Kn -Kn -eO -Kn -Kn -Pm -el -Kn -ey -EO -EO -EO -EO -EO -EO -Xp -Xp -SE -EO -dB -dB -Om -Om -VX -qR -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -SP -Om -Om -Om -VX -VX -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(106,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -yC -Om -Om -Om -Om -Om -vl -vl -vl -Om -Om -vl -vl -vl -Om -Om -Om -Om -Om -yC -Ww -Om -Om -SP -Om -Om -Om -Om -Om -gc -xt -ik -ZS -ZY -oF -En -is -EJ -zQ -dz -ER -zj -HF -XK -zK -KO -JF -BM -el -el -HF -el -el -HF -el -el -mL -Pr -Pr -Pr -ey -Un -WD -Py -JQ -Py -EO -dB -dB -dB -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -PE -PE -PE -PE -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(107,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -VX -Om -Om -vl -Om -Om -Om -Om -vl -Om -Om -Om -VX -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -xt -nw -fE -Ip -Kd -fE -yL -un -Gp -Pg -QL -fZ -rB -rb -iG -VH -BM -el -el -el -HF -el -el -HF -HF -el -mL -Pr -Pr -Pr -Un -Un -Un -ZF -Un -Wy -EO -dB -dB -dB -dB -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -SP -VX -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(108,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -fn -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -vl -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -vl -Om -Om -VX -Om -Om -Om -VX -Om -Om -gc -xt -Gx -ER -ER -oF -Fz -sb -YV -Gp -ER -fZ -rL -DP -rL -tq -BM -el -el -el -HF -eO -HF -el -el -el -HF -ey -ey -Pr -Pr -Pr -Un -ey -Un -Un -kr -EO -dB -dB -dB -dB -Om -Wo -fn -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -VX -PE -PE -PE -PE -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(109,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -xt -PA -ER -dz -Aj -HU -Mb -wa -Kn -Kn -Kn -Kn -Kn -Kn -aV -ej -Kn -Kn -Kn -Kn -Kn -eO -Kn -Kn -eO -eO -EO -Pr -Pr -Pr -EO -Pr -EO -Un -Un -UF -EO -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(110,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -fn -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -yC -Om -VX -Om -Om -Om -Om -Om -Om -Om -gc -xt -zc -BC -tT -Aj -Rf -rL -Jp -Kn -dB -dB -dB -dB -Kn -wC -ri -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -UJ -pn -tY -ef -mL -SE -Pr -Pr -Un -EO -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -PE -PE -PE -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(111,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -fn -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -vl -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -SP -Om -Om -Om -Om -Om -RH -Kn -xt -Kn -Kn -Kn -oC -zN -MU -Kn -dB -Kn -Kn -Kn -Kn -PO -OF -Kn -Kn -Kn -Kn -dB -dB -dB -dB -dB -dB -EO -Yd -od -FM -mL -mL -SE -Pr -Pr -Pr -EO -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(112,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -qR -Om -mI -Om -Om -Om -VX -Om -Om -Om -fn -Om -Om -Om -Om -VX -Om -fn -Om -Fh -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -gc -Om -Om -Kn -un -VY -Sa -Kn -dB -Kn -DO -Zt -nE -Ri -zj -em -zG -kq -Kn -dB -dB -dB -dB -dB -dB -EO -zW -IJ -vf -mL -EO -EO -Pr -Pr -Pr -EO -dB -dB -Ee -dB -Ee -Ee -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -PE -PE -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(113,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -fn -Om -Om -VX -fn -Om -Om -yC -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -Om -Om -Om -Om -dB -dB -Om -qR -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -gc -gc -gc -xt -dF -js -Jp -Kn -dB -Kn -Kc -Rw -oF -wr -ei -Aj -Vg -LR -Kn -dB -dB -dB -dB -dB -dB -EO -Tl -UL -YF -Pr -mL -EO -Pr -Pr -Pr -EO -dB -dB -dB -dB -dB -dB -Ee -dB -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -PE -PE -PE -PE -PE -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Kp -Om -Om -ch -hJ -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(114,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -hc -Om -fn -Om -Om -Om -fn -dB -Om -dB -dB -dB -Om -Om -Om -Om -fn -dB -Om -yC -Om -Om -fn -Om -Om -Om -Om -Om -Om -fn -Om -gc -Om -Om -Kn -uU -un -Jp -Kn -dB -Kn -oF -oF -oF -Fu -pR -cL -oF -oF -Kn -dB -dB -dB -dB -dB -dB -EO -sH -py -oz -mL -Pr -Pr -Pr -Pr -Pr -EO -dB -dB -dB -dB -dB -dB -Ee -dB -dB -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -VX -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -hJ -Zg -Tg -Om -Om -SP -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(115,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -vl -Pr -dB -ot -ou -ot -dB -Pr -dB -dB -dB -dB -fn -Om -Om -Om -wO -VX -Om -qR -Om -dB -dB -Om -Om -Om -Om -Om -Kn -Kn -Kn -xt -Kn -Kn -Kn -mV -rL -MU -Kn -dB -Kn -Hn -AO -am -fg -ij -tx -Yh -Da -Kn -dB -dB -dB -dB -dB -dB -EO -KP -mL -mc -mL -Pr -Pr -Pr -Pr -Pr -EO -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -WQ -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -PE -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -ch -ma -eY -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(116,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Pr -Fa -YU -Fa -YU -Pr -dB -Pr -dB -dB -dB -Om -Om -Om -fn -Om -Om -Wo -dB -dB -dB -dB -fn -fn -fn -fn -Kn -RV -Rs -Cq -Xq -RV -Kn -CX -rL -CX -Kn -dB -Kn -au -ky -oF -By -aJ -oF -Xg -Zp -Kn -dB -dB -dB -dB -dB -dB -Pr -mL -mL -eM -yn -mL -EO -Pr -Pr -Pr -ey -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -tR -VX -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -ch -Om -eY -Zg -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(117,1,1) = {" -VV -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -YU -Fa -YU -jq -dB -Pr -Pr -dB -dB -dB -Om -dB -Om -dB -dB -dB -dB -dB -dB -dB -Kn -Kn -xt -xt -Kn -Kn -FD -tL -CX -nL -VZ -Kn -mV -CX -pZ -Kn -dB -Kn -oF -oF -oF -MA -rL -oF -oF -oF -Kn -dB -dB -dB -dB -dB -dB -ey -mL -Pr -pK -qW -Pr -EO -Pr -Pr -Pr -Pr -dB -dB -dB -dB -dB -dB -Ee -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -dB -fn -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -PE -Om -PE -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Zg -Om -Om -VX -Zg -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(118,1,1) = {" -VV -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -jq -YU -YU -YU -YU -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Kn -qX -Ga -HF -wx -Kn -oF -xt -KK -xt -Aj -Kn -uU -Gd -Oi -Kn -dB -Kn -om -VS -Oo -Nb -ph -tC -VS -JY -Kn -dB -dB -dB -dB -dB -dB -ey -Pr -Pr -pK -Uu -mL -EO -Pr -Pr -Pr -EO -oJ -dB -dB -dB -dB -dB -Ee -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -VX -Om -Om -pp -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -PE -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(119,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Pr -YU -YU -YU -Fa -YU -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -el -el -RX -tN -uD -OG -Kn -Wj -ER -ER -ER -HF -mn -Dv -xj -HB -Kn -dB -Kn -zh -Er -oF -Ic -AO -oF -JO -ck -Kn -dB -oJ -dB -dB -dB -dB -ey -EO -ey -EO -EO -EO -EO -Pr -Pr -Pr -ey -dB -dB -dB -dB -dB -dB -Ee -dB -dB -dB -Om -Om -Om -Om -Om -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -PE -PE -PE -Om -Om -SP -Om -SP -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -PE -PE -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(120,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Fa -YU -YU -YU -Pr -Pr -dB -Pr -dB -oJ -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Kn -vI -xj -wc -xn -Kn -uK -ER -AU -Ck -VY -Kn -LB -Gk -AK -Kn -dB -Kn -oF -oF -oF -MA -yK -oF -oF -oF -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -Un -Un -Pr -Pr -oJ -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -PE -PE -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -fn -dB -dB -dB -dB -SP -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -vl -Le -Le -Le -Le -Le -Le -Le -Le -Le -Le -Fh -lr -ZO -lr -Fh -Le -Le -vl -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(121,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Pr -YU -Fa -YU -YU -dB -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -eO -xj -vX -xj -xj -Kn -Gj -AK -xj -xj -wc -Kn -xj -Hk -xj -Kn -dB -Kn -kQ -AO -vP -RO -rL -oK -Zt -Oy -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -CD -Un -Un -EO -dB -dB -dB -dB -dB -dB -Ee -dB -dB -dB -Om -Om -Om -Om -Om -SP -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -SP -Om -Om -VX -Om -VX -Om -VX -Om -Om -Om -VX -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -Om -Om -Om -qR -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(122,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -YU -YU -Pr -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -el -vX -xj -eO -el -Kn -xj -xj -Bq -xj -el -Kn -Eg -xj -el -Kn -dB -Kn -ki -gS -oF -vH -DP -oF -mS -SA -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -CD -CD -Un -EO -dB -oJ -dB -dB -dB -dB -Ee -dB -dB -dB -fn -Om -Om -VX -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -Om -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -gc -gc -gc -fh -fh -fh -gc -Om -Om -qR -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(123,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -eO -xj -eO -el -eO -Kn -yz -el -el -eO -el -Kn -xj -xj -eO -el -dB -Kn -oF -oF -oF -AP -Zt -oF -oF -oF -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Pr -Pr -Un -Sh -EO -Pr -Pr -ey -EO -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -SP -fn -Om -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -GK -sL -sL -sL -Om -UX -kd -Pz -PE -PE -OP -Om -hf -Om -qR -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(124,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Ee -Kn -Kn -Kn -eO -Kn -Kn -Kn -el -eO -Kn -Kn -Kn -el -el -eO -el -dB -Kn -om -VS -Cn -DP -Vc -ht -zG -vA -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -Un -Sh -mL -EO -Pr -Un -Pr -Pr -dB -dB -dB -dB -dB -dB -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -Om -PE -PE -PE -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -qR -Om -Om -Om -sL -nZ -fI -sL -sL -yO -yO -sL -mP -mP -sL -sL -Om -Om -qR -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(125,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -eO -eO -eO -eO -Kn -dB -Kn -uG -CH -oF -nQ -SJ -oF -SV -Ai -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -Bt -mL -CW -EO -VD -Un -Un -DJ -oJ -oJ -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -PE -PE -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -Om -sL -ku -vm -UI -je -an -wR -qg -PU -VA -Ep -Qq -UX -gc -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(126,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -Kn -eO -eO -eO -eO -dB -Kn -Kn -Kn -Kn -SU -cD -Kn -Kn -Kn -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -ey -Un -Yb -Un -ao -Un -DJ -Fl -Pr -oJ -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -YK -YK -Om -Om -Om -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -qR -Om -Om -Om -sL -Fj -jK -sc -pO -sh -FG -aZ -HN -FG -Rn -Qq -UX -gv -qR -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(127,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -bv -bv -bv -Sd -cu -cu -Ee -Ee -cu -Ee -cu -cu -cu -hl -eO -eO -eO -eO -dB -dB -dB -dB -Kn -Kn -Kn -Kn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -EO -ey -Un -dX -EO -Un -Fr -Pr -Pr -oJ -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -PE -Om -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -qR -Om -Om -sL -sL -Iw -sc -sc -sc -Mw -sc -Iw -sc -Fq -sc -sL -sL -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(128,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -Hm -Hm -Hm -bv -hl -hl -hl -el -hl -hl -hl -cu -cu -hl -hl -hl -hl -el -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Pr -Pr -mL -Yc -Py -ey -Pr -Pr -Pr -ey -oJ -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -PE -Om -PE -PE -PE -PE -PE -PE -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -VX -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -qR -Om -Om -sL -sn -oB -QR -DA -QR -Bw -sc -Ry -ui -qg -we -lw -sL -Om -qR -Om -VX -SP -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(129,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -Yt -rc -Jc -bv -hl -hl -hl -el -el -hl -hl -cu -cu -Kn -hl -hl -hl -Kn -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Pr -Pr -FM -Py -mL -EO -EO -EO -EO -EO -EO -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -Om -PE -Om -PE -Om -Om -Om -Om -Om -VX -VX -VX -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -qR -fn -dB -sL -LG -oB -Zi -oB -oB -iS -Iw -Ry -Vm -oL -qg -jd -sL -Om -qR -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(130,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -vv -bv -bv -bv -Nz -jW -Nz -bv -hl -hl -hl -hl -el -hl -hl -cu -cu -hl -el -hl -hl -hl -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -Pr -EO -IR -EO -EO -oJ -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -PE -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -qR -dB -Iw -Iw -Lq -Lq -Lq -Lq -Lq -Lq -Iw -sc -Vw -pw -sq -NB -sL -Om -qR -Om -Om -SP -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(131,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -ql -gN -Nz -rf -Hv -Hv -bv -Kn -hl -Kn -el -xj -el -hl -cu -cu -Kn -xj -el -el -Kn -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -EO -FM -mL -ct -EO -Pr -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -SP -SP -Om -VX -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -qR -dB -sL -ZA -EL -Bw -ua -OR -du -IX -rZ -sc -cq -Bm -Rv -HY -sL -Om -qR -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(132,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -ql -zO -FH -jN -ny -qd -wG -Kn -hl -Kn -HF -yA -el -Kn -cu -cu -Kn -xj -xj -el -el -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -aG -Pr -Pr -EO -ct -ct -FM -EO -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -fn -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -PE -PE -PE -PE -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -vl -dB -Iw -Bw -PT -PT -PT -jx -Jl -Wb -ua -sc -dI -FG -uC -WX -sL -Om -qR -Om -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(133,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -ql -cw -Nz -pS -Hv -Hv -bv -Kn -hl -Kn -HJ -Ht -xj -Kn -cu -cu -ii -Ff -yz -el -Kn -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -Pr -Pr -Pr -Pr -EO -FM -ct -ct -EO -dB -dB -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -VX -VX -fn -dB -dB -dB -Iw -ZA -aC -nX -PT -sE -Xk -Xk -iS -St -Rv -Vt -YA -uO -Qq -UX -ZW -SP -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(134,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bv -bv -bv -bv -Nz -ay -Nz -bv -hl -hl -Kn -ab -HF -yA -Kn -cu -hl -ii -HF -Ht -xj -Kn -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -EO -EO -EO -EO -EO -EO -cX -EO -EO -EO -EO -EO -Pr -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -WQ -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -Iw -nX -Wl -PT -Wl -Gi -RL -LQ -jY -sc -Zj -wo -va -Bi -sL -kd -qR -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -Om -Om -Om -Om -Om -VX -Om -fn -Om -dB -dB -dB -dB -dB -VV -"} -(135,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sd -Sd -Sd -bv -Dj -Dj -Dj -bv -Kn -el -el -Kn -NM -ii -ii -el -el -Kn -Kn -jv -Kn -ii -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -EO -Mt -Cv -FM -FM -FM -FM -mL -FM -FM -FM -EO -Pr -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -xR -Om -Om -Om -xR -xR -Om -Om -Om -Om -VX -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -SP -fn -dB -dB -dB -dB -dB -Iw -yS -dT -nX -ua -gH -ea -yS -Ss -sL -Qq -sL -Qq -sL -sL -Om -qR -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(136,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sd -iT -wv -TM -Hv -Hd -Hd -bv -Se -Qc -AR -AR -CX -UK -Qc -CX -ip -Kn -IO -lL -CX -Kn -cu -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -EO -FM -Mt -FM -FM -mL -mL -Rc -FM -FM -FM -EO -Pr -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -ff -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -Om -VX -Om -Om -Om -VX -Om -VX -VX -Om -Om -dB -dB -dB -dB -dB -dB -sL -sL -sL -Iw -Iw -sL -sL -Iw -sL -sL -Om -kd -kd -Om -Om -Om -qR -SP -Om -Om -SP -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -VV -"} -(137,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -fT -wv -bv -Hd -pS -Hd -We -CX -CX -CX -un -mh -DM -un -VY -CX -NI -lL -CX -lL -Kn -aG -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -EO -PL -PL -GJ -GJ -PL -GJ -wU -GJ -PL -rr -EO -Pr -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -xh -Om -Om -Om -Om -VX -Om -SP -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -gc -kd -gc -Om -Om -Om -qR -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(138,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aY -Pr -Pr -Pr -Pr -cu -Pr -cu -Pr -Pr -cu -cu -Pr -cu -cu -Pr -Pr -cu -Pr -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -cu -cu -bv -bv -bv -bv -bv -bv -PK -un -ba -CX -GP -CX -un -mh -Aw -Kn -HE -lL -CX -Kn -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -cu -cu -aG -aG -YE -FM -ry -Kw -Kw -Kw -Kw -Kw -Kw -Kw -Kw -oE -EO -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Rt -Om -iQ -WQ -VB -Om -xR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -vl -ye -Le -Le -Le -Le -Le -Le -Le -vl -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(139,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -aG -EO -EO -EO -aG -EO -Pr -EO -Pr -EO -Pr -EO -Pr -EO -Pr -EO -Pr -Pr -Pr -EO -EO -EO -Pr -EO -EO -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -Pr -aG -aG -aG -Kn -hl -Kn -Kn -sD -sD -sD -sD -sD -sD -sD -el -Kn -Kn -Uj -Kn -Kn -Pr -EO -Pr -Pr -EO -Pr -EO -EO -Pr -EO -EO -EO -EO -EO -Pr -EO -EO -EO -EO -EO -wh -wh -wh -wh -wh -wh -wh -dl -wh -wh -EO -EO -ey -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -lu -Om -bP -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -WQ -WQ -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(140,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -De -De -De -De -De -De -De -De -De -De -De -Lm -oM -uo -YU -vC -YU -YU -Vv -Vv -YU -Vv -fr -pq -gc -gc -gc -cu -cu -cu -cu -cu -lv -gc -up -gc -vY -vE -Vv -Vv -Nu -rn -Vv -pQ -Vv -Vv -Az -Vv -Vv -Bv -Un -Di -Vv -Oc -xF -WV -mL -Vv -Vv -zS -Az -Ty -oM -TJ -Vv -Vv -Vv -Vv -Mz -Un -so -qp -Sh -tr -tr -Vv -zS -Vv -le -mL -Vv -vC -Vv -mL -Vv -Vv -Vv -lZ -Pr -EO -dB -dB -dB -dB -dB -fn -Om -Om -WQ -Om -Om -VX -Om -Om -Om -SP -gc -nI -gc -vs -kl -Om -xR -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -WQ -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -Om -SP -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(141,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -rn -UG -rn -UG -rn -UG -UG -rn -rn -rn -AG -rn -Qs -iW -UG -rn -rn -UG -rn -tF -Dr -FM -rn -pc -hk -qC -nW -wn -rP -gc -lv -cu -lv -gc -Om -Ka -vx -rn -Gw -rn -rn -Nu -rn -UG -UG -rn -Dr -rn -Gw -AT -Dr -rv -Gw -FK -bC -HA -kG -jJ -AT -AT -UG -YL -BP -ek -rn -AG -Lf -AG -Gw -Gw -PJ -UG -PJ -mL -mL -UG -UG -rn -Ty -Qd -oM -DY -rn -rn -Vv -UG -rn -rn -lZ -lZ -Pr -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -gc -Om -Om -eK -vG -Om -gc -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -fn -VX -dB -Om -Om -Om -Om -Om -SP -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(142,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -Fx -zE -lV -YU -vC -YU -tF -YU -YU -Vv -Vv -UV -pU -qh -et -oI -et -Mx -et -GD -jJ -BZ -tr -vC -Vv -Vv -Vv -Vv -Vv -Nu -rn -YU -Vv -Vv -Fv -Vv -Oc -Un -WV -CW -ju -PE -PE -iL -kG -kG -Om -Un -IE -Kl -mL -mL -YL -De -Lm -lV -Vv -Vv -Fv -Vv -Vv -Ty -HV -HV -HV -HV -Fx -Gb -ek -Kl -Vv -Fv -mL -mL -Kl -Vv -lZ -Un -EO -dB -dB -dB -dB -dB -dB -WQ -Om -Om -VX -Om -Om -VX -Om -Om -Om -xR -Om -WQ -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -Om -VX -WQ -Om -SP -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -Om -Om -Om -Om -Om -VX -VX -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(143,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zE -lV -YU -tF -tF -YU -YU -YU -YU -YU -UV -Vv -fr -oI -Ay -LE -Ay -et -jJ -YB -iD -Vv -YL -WC -Vv -tF -YU -Nu -rn -YU -Uz -mL -Vv -Vv -Vv -tr -Oc -Un -kG -kG -gc -fh -gc -Om -kV -kV -CD -aI -WV -mL -mL -Kl -Gq -Ve -nq -mL -Vv -le -mL -Qs -zZ -zZ -zZ -zZ -Gb -ek -UT -qp -WV -Zf -mL -UT -Un -Wy -pq -Pk -aG -dB -dB -dB -dB -dB -dB -Om -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -cU -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(144,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -aG -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zZ -zt -YU -YU -vC -Vv -Vv -tF -Vv -Vv -vC -Vv -mL -UG -Kg -Vv -fr -UG -Gw -mL -mL -mL -Vv -xk -Vv -mL -Vv -Nu -rn -YU -WN -tF -mL -Vv -Vv -Fv -Oc -Om -Om -PE -gc -gc -iL -Om -PE -Om -YU -YU -Vv -Ty -lV -Un -WV -mL -xu -Vv -Ty -Jr -HV -Fx -zZ -zZ -Gb -qM -ek -Vv -Oc -Un -Xu -Un -WV -qp -Zh -pq -Un -Un -EO -dB -dB -dB -dB -dB -dB -fn -Om -Om -VX -Om -Om -Om -xR -Om -Om -cI -uP -WI -eF -cT -kc -Om -Om -Om -Om -SP -Om -Om -SP -Om -Om -dB -dB -dB -dB -my -VX -SP -VX -VX -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -VX -Om -WQ -Om -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(145,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -qM -qM -qM -qM -qM -qM -qM -qM -qM -qM -qM -qM -qM -qM -Ve -TJ -YU -YU -YU -kw -mL -mL -mL -Vv -mL -mL -rn -Vv -Gw -rn -fr -Dr -Vv -YU -mL -Vv -xg -mL -Vv -Vv -Nu -rn -pt -tJ -YU -Vv -dw -Vv -Vv -Oc -Om -Dp -kG -kG -gc -kG -to -PE -YU -YU -YU -YU -Gq -Ve -Lm -lV -Vv -Vv -Vv -Gq -qM -qM -qM -qM -qM -ks -Vv -Vv -Kl -Vv -Xn -Vv -Zv -Vv -pq -Un -Un -lZ -zZ -Pr -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -VX -Om -Om -Om -kc -pL -XO -Sx -Sz -kc -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(146,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -aG -rn -UG -rn -rn -rn -rn -rn -rn -rn -UG -rn -rn -rn -rn -rn -rn -rn -UG -QD -Vv -YU -UG -Dr -UG -Dr -rn -rn -Dr -rn -aO -rn -rn -rn -UG -rn -Dr -iv -hX -Dr -rn -Nu -rn -Vv -UG -Gw -Vv -UG -Vv -Gw -Dr -jj -rn -nr -FK -bC -nr -YU -YU -aG -YU -rn -rn -rn -rn -Gq -Xm -lV -rn -AG -AG -Vv -Vv -AG -AG -rn -UG -UG -Tq -Un -Vz -Un -XH -Un -Vz -Un -Pk -Un -aG -aG -EO -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -pI -xR -kc -GU -xV -NN -Zr -kc -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -hM -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -VX -Om -SP -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -YK -Om -YK -Om -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(147,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -aG -Pr -De -De -De -De -De -De -De -De -De -De -De -De -vq -YU -YU -YU -vC -EF -Vv -YU -Vv -Dr -Dr -Vv -Vv -NK -fC -fC -EF -Vv -Ez -Vv -Vv -UG -ln -Vv -yt -Vv -Vv -Nu -rn -Vv -Vv -mL -tF -mL -zS -Vv -Vv -Vv -et -Vv -Oc -vR -WV -aG -aG -aG -aG -YU -YU -YU -Vv -YU -Gq -Xm -lV -Vv -Vv -zS -Vv -Jy -Vv -Vv -Vv -Vv -Vv -Bv -Un -Pr -aG -Pr -aG -aG -Pr -aG -Pr -aG -aG -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -kc -kc -kc -kc -kc -kc -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -hM -dB -dB -dB -dB -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(148,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -EO -EO -aG -EO -EO -aG -EO -aG -Pr -EO -EO -EO -Pr -EO -Pr -EO -EO -EO -EO -Pr -Vv -Vv -Vv -mL -qN -Vv -UG -Vv -mL -Vv -vC -AG -UV -qN -Vv -EF -EF -EF -EO -Pr -EO -aG -dW -tj -tj -tj -Vv -tj -tj -jM -tj -tj -Dh -Rq -TV -Rq -Rq -aG -aG -aG -EO -Pr -EO -Pr -EO -EO -Gq -Ve -Lm -HV -oM -DY -Pr -Pr -Pr -Pr -Pr -Pr -Pr -Pr -Pr -Pr -EO -EO -Pr -EO -Pr -EO -Pr -Pr -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(149,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -cu -cu -aG -cu -Pr -cu -Pr -cu -Pr -Pr -EO -Vv -Vv -UV -mL -Dr -Dr -mL -vK -xy -Vv -rn -rn -Vv -YU -Vu -Vv -EO -Pr -Pr -Pr -aG -Rq -SF -CG -Jo -gu -Im -SF -ce -SF -SF -Rq -tV -Pu -Ei -Rq -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -aG -Gq -qM -ek -Pr -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -fn -SP -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(150,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -Sv -cu -cu -Pr -Pr -Pr -Pr -Pr -Pr -xK -su -Vv -UG -rn -Vv -YU -mL -Vv -rn -rn -Vv -LD -Mg -Pr -Pr -Pr -cu -cu -cu -Rq -JR -Pu -CZ -Pu -jP -Pu -DS -dv -jP -TV -FP -kN -FP -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -cu -cu -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -VX -VX -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -VX -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Wp -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(151,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Rq -oh -Rq -Rq -Rq -cu -cu -cu -aG -Pr -Pr -EO -Vv -Vv -Vv -rn -vC -Vv -Vv -YU -rn -Vv -rC -Pr -Pr -EO -Pr -aG -aG -cu -cu -Rq -ME -AV -ME -Rq -Dh -Dh -Rq -Rq -Rq -Rq -Mu -FP -Xs -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oJ -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -SP -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Wp -Wp -Wp -lg -Om -Om -kz -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(152,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Sy -qb -qb -qb -xG -oh -Sv -cu -cu -cu -cu -cu -Pr -EO -Vv -Vv -rn -Vv -vC -Vv -Vv -AG -pm -OI -Pr -aG -Pr -cu -cu -cu -cu -cu -Rq -RK -dv -HQ -Rq -cu -cu -cu -cu -cu -Rq -Rq -BK -Rq -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -Om -Om -VX -Om -Om -SP -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Wp -gi -Wp -eE -Om -Om -Om -Om -kz -dB -dB -dB -dB -dB -dB -dB -VV -"} -(153,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -BU -qb -DN -qb -xG -Rq -Sv -Sv -cu -cu -cu -Pr -Pr -Pr -EO -Vv -sK -Vv -Vv -Vv -Vv -rn -xu -Pr -EO -aG -Pr -cu -cu -cu -cu -cu -Rq -cQ -DS -XY -Rq -cu -cu -cu -cu -cu -Rq -ov -Pu -Rz -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Wp -Om -iw -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(154,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oJ -cu -cu -cu -cu -cu -Rq -Vq -pl -DN -DN -xG -Rq -Sv -IA -cu -cu -cu -cu -Pr -Pr -EO -EF -ln -XJ -YU -EP -EF -QD -EF -Pr -Pr -aG -aG -cu -cu -cu -cu -cu -Rq -Rq -Rq -Rq -Rq -cu -Fg -oh -Rq -Rq -Rq -FB -dv -NR -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -SP -WQ -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Wp -JT -Om -kz -Om -Om -Wi -kz -go -go -dB -dB -dB -dB -dB -dB -VV -"} -(155,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oJ -cu -cu -cu -cu -cu -cu -Rq -lP -kx -sQ -eG -TN -Rq -Sv -cu -Sv -cu -cu -cu -cu -cu -Pr -Vv -Vv -XJ -YU -YU -EF -rn -Vv -YU -Pr -aG -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Cs -Sf -fo -Rq -eA -Lc -hV -Rq -Rq -Rq -oh -Rq -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bo -bo -bo -Ko -Ko -dB -dB -dB -dB -dB -dB -Om -VX -Om -WQ -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -WQ -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -VX -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -kG -Om -Om -Om -Om -Om -Om -kz -Om -fn -dB -dB -dB -dB -dB -VV -"} -(156,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Sv -Rq -Rq -oh -Rq -ED -Rq -Rq -Rq -Sv -IA -IA -cu -cu -cu -cu -Pr -EO -xK -AG -EF -dd -dd -EF -Vv -Mg -EO -Pr -aG -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -oa -Ly -sV -KB -sY -gG -Lz -fx -Rq -TT -Cf -EG -EG -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bo -cp -wN -Fi -Ko -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -WQ -Om -WQ -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -YK -Om -Om -HP -Om -kG -Om -HP -Om -QC -dB -dB -dB -dB -dB -dB -VV -"} -(157,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -cj -YX -eL -me -Rq -MR -kH -jl -Rq -Sv -Sv -Sv -IA -cu -cu -cu -cu -aG -Pr -gr -UG -mL -Vv -YU -YU -rn -Vv -Qs -Pr -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -BQ -Ap -mB -HI -RI -Rq -zA -Vr -Tw -Rq -sT -xM -qb -sf -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -cF -wQ -FW -Ko -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -WQ -WQ -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Sl -Om -kG -Om -fN -Om -zY -kG -DC -dB -dB -dB -dB -dB -dB -VV -"} -(158,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Sv -Sv -yw -cz -nN -Rq -Rq -Ki -mB -mC -Rq -Rq -oh -Rq -oh -Rq -Rq -oh -Rq -Rq -Sv -QP -HO -mL -xg -Vv -CQ -UG -Vv -Qs -tw -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oh -oa -rD -YR -xa -ym -gV -Tw -er -dv -tE -qO -qb -BR -qb -pz -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -bo -ts -wT -Ko -Ko -dB -dB -dB -dB -dB -dB -fn -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -nx -uB -nx -nx -nx -Rm -nx -nx -lO -dB -dB -dB -dB -oJ -VV -"} -(159,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -me -pA -pA -zU -Yo -pB -pg -AW -te -ne -UO -wD -Tw -cn -tg -LX -Rq -FP -wk -Pu -Rq -mL -AG -Ta -QA -Vv -GM -QM -YU -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oh -oa -eX -Nl -Tw -Th -Rq -Ki -No -NR -Rq -sT -rS -PV -Pe -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -Ko -xw -Ko -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -SP -Om -VX -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -rO -nx -nx -nx -fK -vb -Hs -dV -Ma -ac -nx -nx -nx -nx -nx -dB -dB -VV -"} -(160,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Sv -me -PD -Za -Tw -HL -oO -IL -zU -AW -Mr -ta -PH -Tw -oc -Pu -ST -FP -kN -FP -TV -Ta -su -YU -fW -UV -QP -AG -YU -Qs -Pr -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oh -Rq -oa -Tf -Pu -gZ -Rq -gK -Pi -ta -Rq -gx -xz -wg -td -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -xx -Ko -Ko -Ko -dB -Ko -Ko -Ko -Ko -dB -Om -PE -Om -Om -VX -Om -PE -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -zg -ew -ZG -nx -fy -vb -YG -Bg -YG -vb -Lg -nx -KG -wj -nx -dB -Ee -VV -"} -(161,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Sv -Sv -me -pA -WR -mr -NS -Ud -te -sj -lC -ux -mB -tg -mB -Tw -Rq -Mu -FP -Pu -Rq -SZ -QD -mL -fz -Vv -mL -rn -AZ -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -IA -Rq -Rq -re -cl -HD -Rq -Rq -fj -Rq -Rq -Rq -Rq -Rq -Rq -Rq -IA -Rq -IA -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -Ko -Ko -xP -Ko -JG -Ko -Ko -Ko -Mq -On -Ko -As -PE -PE -PE -Om -PE -PE -PE -PE -PE -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -nx -LK -JM -nx -SX -Bg -YG -YG -Bg -Bg -hI -QZ -OA -mm -nx -dB -dB -VV -"} -(162,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Sv -bE -dJ -yw -nN -Rq -Rq -LN -OE -bl -Rq -Rq -Sv -Rq -Sv -Rq -Rq -Rq -oh -oh -Rq -EF -ln -YU -Vv -rn -mL -zm -Vv -UE -zZ -EO -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -oh -oh -Rq -Rq -Rq -Rq -Rq -Rq -LS -Pu -LU -Rq -pW -qQ -MO -Pu -Iv -iq -Pu -Sv -IA -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -cd -tu -yq -GO -An -KH -Lo -uH -Nq -OC -QE -PE -PE -PE -PE -PE -PE -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -SP -VX -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -CE -zg -KW -jG -nx -vb -YG -Ns -Ze -JI -YG -JM -nx -Yp -Eh -nx -dB -oJ -VV -"} -(163,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -jX -Qz -ep -eQ -fu -Rq -fF -Pi -pW -Rq -Sv -Sv -cu -cu -cu -cu -cu -cu -Pr -EO -xg -rn -tF -YU -YU -mL -UG -Vv -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -Rq -Nj -rq -Nj -Nj -Nj -Nj -Nj -Nj -WU -pH -kN -FP -fj -Qt -Pu -Rg -Ms -Yi -Pu -Pu -me -Sv -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -Ko -Ko -yX -Ko -Kk -Ko -Ko -Ko -Nx -Qv -Ko -QQ -PE -PE -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -UX -KF -BO -Lg -Ll -YG -Bg -ib -YG -vb -hh -nx -nx -nx -nx -dB -Ee -VV -"} -(164,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Sv -Rq -Rq -Sv -Rq -Xy -mB -sC -Sv -Sv -IA -oh -Rq -Rq -Rq -Rq -cu -EO -zt -mL -UG -Vv -tF -Ru -YU -rn -UV -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -Rq -Sv -rq -Rq -Rq -Rq -oh -oh -Rq -Rq -uY -FP -Mj -Rq -XV -oD -FB -gZ -Lw -me -me -me -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -xx -Ko -Ko -Ko -dB -Ko -Ko -Ko -Ko -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -VQ -Yn -co -Lg -JM -XE -Lg -Lg -nx -Lg -Lg -nx -nx -dB -dB -dB -dB -dB -VV -"} -(165,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -IA -Sv -IA -Sv -Rq -Ki -JD -mC -oh -IA -Sv -Rq -hy -Pu -gw -Rq -cu -EO -zt -Vv -rn -bi -tF -tF -tF -Vv -si -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -IA -Rq -rq -Sv -IA -IA -IA -IA -IA -Rq -Rq -fj -Rq -Rq -Rq -zT -yw -bB -yw -nD -Rq -Rq -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -Ko -xw -Ko -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -VX -Om -WQ -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -SP -Om -WQ -WQ -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -zg -UC -Lg -nx -QH -ac -vb -nx -xO -nx -nx -QX -QX -QX -QX -QX -QX -VV -"} -(166,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -Rq -Sv -Rq -Rq -Rq -GV -te -kn -Rq -Sv -IA -oh -pr -FB -hu -oh -cu -EO -zt -mL -UG -lj -tF -tF -YU -AG -Vv -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -cu -Rq -rq -Rq -IA -cu -cu -cu -cu -Rq -fF -dG -pW -Rq -Zm -mM -Pu -EK -Tw -Ge -fD -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -uZ -An -Ko -Ko -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -Ih -nx -TY -qT -nx -xT -JM -uW -nx -YG -zk -nx -QX -iY -yd -yd -QX -cf -VV -"} -(167,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Rq -Su -Bj -YT -Rq -Rq -Rq -KX -Rq -Rq -Sv -IA -Rq -bX -cy -Zx -Rq -cu -Pr -zt -iH -rn -Vv -mL -tF -Vv -Vv -Vv -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -cu -cu -Rq -rq -Rq -IA -IA -IA -IA -IA -Sv -me -Ok -Sv -Rq -pA -na -mB -bu -Uw -zU -gI -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -vF -Bl -Hu -Ko -dB -dB -dB -dB -dB -dB -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -ec -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -qe -YK -zg -UU -hB -nx -nx -fB -nx -nx -jp -fa -fQ -jo -La -ee -yd -eb -lO -VV -"} -(168,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Tw -Tw -Tw -zU -Tw -Rq -mB -FP -Gm -Rq -Rq -Rq -Rq -hW -Ob -ty -Rq -Rq -Pr -zt -UM -UG -Pn -tF -YU -mL -rn -YU -Qs -zZ -EO -cu -cu -cu -cu -cu -cu -Sv -cu -Rq -rq -Sv -Rq -Sv -IA -IA -IA -Rq -me -Sv -Sv -Rq -Dd -NC -qQ -YN -Hf -Bc -Tw -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -vL -Ci -It -Ko -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -VX -SP -Om -Om -SP -Om -Om -Om -Om -Om -VX -SP -Om -Om -VX -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -nx -nx -nx -nx -Fb -ac -nx -bU -YG -iX -nx -QX -Ej -yd -La -QX -lO -VV -"} -(169,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -bh -Pu -Tw -vM -mB -Pu -tZ -hZ -BJ -uS -YI -Nj -Nj -Nj -fL -rt -FB -Nj -Nj -EO -zt -mL -rn -tF -Vv -mL -Vv -UG -YU -Qs -EO -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -yx -Cm -Cm -Sv -IA -cu -IA -Rq -Sv -me -Sv -Rq -DK -Bc -dR -lz -gZ -Xf -RR -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Ko -Ko -Ko -Ko -Ko -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -SP -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -nx -nx -BB -nx -nx -Rm -nx -nx -QX -QX -jo -QX -QX -QX -VV -"} -(170,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -mB -Ua -Yf -eP -Ua -Rq -qI -Pu -JB -Sv -Rq -Rq -Rq -Rq -Rq -Rq -Rq -pT -Pr -zt -mL -Vv -Vv -YU -EX -UV -rn -Vv -aG -cu -cu -cu -tf -tf -tf -cu -cu -cu -cu -Sv -rq -oh -Sv -IA -IA -cu -IA -Sv -Sv -LF -LF -Rq -TP -RU -Tw -Lr -mB -zT -zT -Rq -Rq -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -VX -VX -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -kG -Om -gp -Om -kG -dB -dB -QX -Og -ee -Og -QX -dB -VV -"} -(171,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Vs -Rq -Lx -YM -Rq -Rq -KX -Rq -Sv -Sv -Sv -Sv -cu -IA -Sv -Rq -me -Pr -zt -Vv -rn -mL -tF -mL -mL -AQ -mL -aG -cu -Ug -tf -tf -dK -tf -tf -tf -Sv -Sv -Sv -rq -oh -IA -cu -cu -cu -IA -Rq -vz -me -Sv -Rq -pk -wY -SW -Bc -jr -zT -JU -Jd -FN -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -SP -VX -SP -Om -SP -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -kG -kG -HP -kG -kG -Om -gc -dB -QX -QX -aW -OZ -IZ -QX -QX -VV -"} -(172,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Rq -Rq -Rq -Rq -Rq -Rq -cR -Pu -Yv -Sv -Sv -Rq -Rq -Rq -Sv -Sv -Rq -Sv -EO -zt -Vv -rn -Vv -tF -tF -Ta -rn -mL -aG -cu -tf -PN -IB -gd -gY -sA -tf -cu -Sv -Rq -ZV -Rq -IA -IA -IA -IA -IA -Rq -me -Sv -Sv -Rq -Sv -Tw -gZ -ut -Tw -HC -iF -mb -Tw -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -IA -IA -IA -IA -IA -IA -IA -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -kG -Om -kG -Om -Om -Om -kz -Om -dB -QX -oA -Ro -QX -lH -iu -QX -VV -"} -(173,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -zU -ix -he -qb -Pu -Pu -Tw -Pu -Pu -Tw -qb -YC -qb -Sv -Sv -Sv -Sv -EO -zt -Vv -Nv -YU -YU -tF -Ta -rn -tt -aG -cu -tf -CI -xS -Jn -xS -CI -tf -cu -cu -Rq -Nj -Rq -IA -IA -Sv -IA -Sv -Sv -Sv -vz -Sv -Rq -Sv -wY -Sc -gZ -Xj -zT -FN -FN -BV -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -IA -Sv -Sv -IA -Sv -IA -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -Om -Om -SP -VX -Om -VX -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -kG -Om -Om -kz -Om -Om -Om -Om -dB -QX -aU -aW -ex -yM -Mo -QX -VV -"} -(174,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Tw -qb -ud -mB -Rh -mB -zU -tg -DE -mB -mB -sx -mB -Pa -zU -Rq -cu -cu -Pr -zt -Vv -Dr -mL -Vv -mL -mL -Dr -DH -aG -cu -tf -ah -bg -lA -lt -no -tf -cu -Rq -Rq -WU -Rq -Rq -Sv -Rq -Rq -Sv -oh -Sv -Sv -vz -Sv -Rq -IA -Rq -Rp -Rq -oh -oh -Rq -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -Sv -Sv -IA -IA -IA -Sv -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -kz -Om -kz -Om -kz -dB -dB -QX -Xo -rg -Eo -aW -KN -QX -VV -"} -(175,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -lE -Ye -Zk -Ev -Ev -Ye -lE -Ev -Ev -Ye -Ev -RM -yZ -Ye -Ev -Rq -cu -cu -EO -zt -mL -Gw -Vv -EX -Vv -mL -Dr -Vv -aG -cu -tf -CI -xS -Jn -xS -CI -tf -cu -Rq -nY -Cp -me -me -Sv -pA -jQ -Js -oh -Sv -me -me -Rq -Sv -Rq -Sv -me -me -Sv -Rq -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -IA -Sv -Sv -Sv -Sv -IA -Sv -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -fM -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -VX -Om -Om -SP -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -kz -Om -Om -Om -Om -Om -Om -dB -dB -QX -on -Pp -rg -Pp -SL -QX -VV -"} -(176,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -qP -CK -CK -CK -CK -CK -CK -CK -CK -CK -CK -CK -CK -CK -FL -Rq -cu -cu -EO -Pr -Fw -rn -tF -tF -mL -mL -AG -aG -cu -cu -tf -ah -bg -Uo -lt -no -tf -cu -Rq -qb -Pu -RD -tK -me -pA -bx -Hl -RA -me -Sv -Sv -Rq -Sv -Sv -Sv -Sv -me -IA -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -IA -IA -cu -Rq -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -fn -SP -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -VX -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -kz -Om -Om -Om -dB -dB -QX -QX -Co -GE -FJ -QX -QX -VV -"} -(177,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -CJ -CJ -CJ -CJ -CJ -CJ -iE -CJ -CJ -CJ -iE -CJ -CJ -CJ -CJ -Rq -Rq -cu -cu -EO -mL -Dr -Vv -tF -YU -YU -YU -aG -tf -tf -tf -tf -tf -iI -tf -tf -tf -tf -tf -tf -tf -tf -HI -Zw -tc -bR -Pu -oh -Sv -Sv -me -Sv -Sv -IA -Sv -Sv -IA -Sv -IA -IA -cu -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -Sv -Sv -cu -Rq -Sv -Sv -Sv -Cj -lQ -Sv -Sv -Rq -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -fn -Om -dB -dB -dB -fn -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -SP -Om -Om -kz -Om -eU -Om -Om -Om -dB -dB -QX -QX -QX -QX -QX -dB -VV -"} -(178,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -pY -lp -Om -kG -Om -kG -kG -Om -kG -kG -rN -Om -kG -kG -kG -kG -dD -Rq -cu -cu -Pr -VU -UG -YU -mL -YU -mL -YU -aG -tf -Uh -Hh -uf -xS -kR -HM -Jn -xS -yB -bY -Ba -LC -tf -Bn -me -Dy -Rq -Rq -Rq -Sv -IA -Rq -Rq -IA -Rq -IA -IA -IA -IA -Rq -IA -cu -cu -cu -cu -cu -cu -cu -cu -Sv -IA -Sv -Sv -IA -cu -Sv -GZ -Sv -ME -KU -KU -me -Sv -Rq -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -SP -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -kz -Om -Om -Om -Om -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(179,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Rq -Rq -Tw -ms -II -HP -HP -HP -HP -HP -gc -gc -fR -II -gc -gc -gc -kG -WA -Rq -cu -cu -Pr -YU -Dr -Vv -YU -Vv -Vv -YU -aG -tf -Cr -wE -XM -xS -Ie -Jn -XR -xS -Wf -oP -Ie -bS -tf -tf -Tw -Tw -ja -Rq -cu -cu -cu -cu -IA -IA -IA -IA -IA -IA -IA -IA -IA -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Sv -Sv -me -Rq -cu -Rq -jA -yb -yb -og -KU -ME -yE -Sv -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -hM -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(180,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -cS -ia -Rq -JC -Om -fR -lp -Om -Om -gU -Om -kG -Om -UH -MC -bG -VR -gc -OX -Pu -Rq -cu -cu -EO -Vv -rn -Vv -tF -mL -YU -YU -aG -tf -UZ -wE -NG -tf -Cx -JZ -nA -xS -WL -Ie -Ie -LM -Vb -tf -me -me -Tw -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -me -me -me -oh -cu -oh -Oj -KU -mE -Sp -Yw -ME -yE -Sv -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -ec -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -fn -Om -VX -VX -Om -SP -Om -Om -VX -Om -Om -Om -VX -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(181,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -eh -Pu -Tw -Tw -qv -iJ -Sw -kG -Om -kG -kG -kG -kG -kG -tm -kG -kG -GN -bC -Tw -Rq -cu -cu -Pr -tt -UG -Vv -YU -Vv -Vv -YU -aG -tf -Bu -uF -Sk -dZ -yN -mw -nH -zX -Qk -LY -Jn -LM -Vb -qs -FS -me -tP -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oh -cc -qq -Gv -Rq -cu -Rq -jA -oh -eg -Tw -Sp -Ft -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -SP -fn -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(182,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -cZ -kU -Rq -eh -MC -Cl -Om -Ia -kG -kG -kG -Om -kG -Om -Om -Om -Om -QW -bC -zv -Rq -cu -cu -Pr -XJ -ln -XJ -Vv -XJ -EF -XJ -aG -tf -RW -wE -VP -tf -yN -LY -pP -xS -Qk -Jn -Ie -LM -Vb -tf -Pu -me -gZ -Rq -cu -cu -cu -cu -cu -cu -Sv -Sv -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -cu -Sv -NX -NX -NX -oh -Rq -oh -Or -Ft -BW -VM -se -oh -yE -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -Om -VX -Om -Om -Om -Om -Om -VX -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -dB -VV -"} -(183,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Rq -Rq -Pu -MC -DB -Om -zR -kG -Om -kG -kG -Om -kG -Om -kG -kG -HP -jt -Pu -Rq -cu -cu -EO -UR -VW -EF -mL -EF -jg -YU -aG -tf -Do -Wc -Jv -xS -Ie -Ie -BE -xS -Vh -Ie -vi -sB -tf -tf -gZ -yv -NF -Rq -cu -cu -cu -cu -cu -Sv -Sv -Rq -Rq -Rq -Rq -oh -IA -Rq -IA -IA -IA -cu -Sv -Sv -Rq -me -BY -SO -Zc -iM -Rq -gA -Ue -Ft -Ft -DD -Ft -Ft -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -SP -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(184,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Pu -PZ -HP -gP -ms -Ph -kG -tU -rY -kG -bt -kG -kB -bG -dA -bC -Pu -Rq -cu -cu -Pr -Wh -GA -tF -Vv -Vv -lX -YU -aG -tf -ow -TI -SG -xS -Cz -MG -Jn -xS -Op -os -mJ -Hr -tf -Tw -Bn -Pu -Rq -Rq -Rq -oh -cu -cu -cu -Sv -Sv -oh -dh -oQ -Ix -oh -Rq -Rq -Sv -IA -IA -cu -Sv -Sv -Sv -pa -LF -RN -gZ -me -Kj -Ha -Ue -KU -fq -PF -yG -Ra -yE -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(185,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Pu -MC -Oh -gc -HP -HP -gc -Fy -gc -gc -IV -HP -HP -HP -HP -jt -Pu -Rq -cu -cu -Pr -mL -FM -tF -YU -ae -Vv -YU -aG -tf -tf -tf -tf -tf -iI -tf -tf -tf -tf -tf -tf -tf -tf -gZ -Yi -hA -LA -Rq -Nj -oh -cu -cu -cu -Sv -Sv -Rq -eN -gQ -sy -WU -pT -me -Sv -Sv -IA -cu -IA -Sv -pA -zU -pA -Rd -HI -bN -Kj -Ha -Ue -Ft -SD -Te -MN -Ft -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -VX -Om -WQ -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -VX -Om -VX -VX -Om -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(186,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -eh -mZ -kG -tU -qv -qv -qv -PZ -kG -Om -GR -qv -Po -kG -OX -bC -Pt -Rq -cu -cu -EO -tF -bK -FU -YU -FU -Vv -FM -aG -aG -cu -tf -ah -wF -Jn -Ey -no -tf -cu -oh -oU -RD -QI -Qy -te -mB -Xt -WU -Nj -Rq -cu -cu -Sv -Sv -Sv -Rq -Rq -WU -Rq -Rq -Rq -Rq -Sv -IA -IA -cu -Sv -oh -Sv -eu -Tw -WF -fl -Tw -Kj -Ha -Ue -KU -Pf -NC -mx -KU -yE -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -VX -Om -Om -Om -VX -YK -YK -YK -YK -YK -YK -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -VX -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(187,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Pu -eW -bj -Tw -Tw -Pu -Pu -rm -eW -Tw -Tw -Pu -rm -Pu -Pu -Rq -Rq -cu -cu -Pr -YU -Gw -Vv -Vv -Vv -YU -rn -mL -aG -cu -tf -CI -xS -Jn -xS -CI -tf -cu -oh -sy -Pu -ud -Pu -qb -qb -Tn -Rq -Nj -Rq -cu -Sv -Sv -Sv -Sv -Sv -Rq -Nj -Rq -cu -cu -cu -cu -cu -cu -cu -cu -Rq -rJ -RD -hT -zU -zC -Tw -WG -Ha -Ue -Ft -bd -FB -pi -oh -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -VX -YK -YK -YK -YK -YK -YK -SP -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(188,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -cu -cu -cu -Pr -AH -rn -Vv -mL -Vv -mL -rn -qh -aG -cu -tf -ah -wF -hn -Ey -no -tf -cu -oh -Rq -XD -Rq -Rq -Rq -Rq -Rq -Rq -Nj -Rq -Rq -Rq -Rq -Rq -Rq -oh -Rq -Nj -Rq -Rq -Rq -oh -oh -oh -Rq -Rq -Rq -Rq -HI -zU -zU -bA -zU -dv -GG -Ha -bF -JL -jh -IM -RE -KU -yE -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -VX -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -VX -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(189,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -Vv -Vv -YU -YU -mL -mL -AG -YU -aG -cu -tf -CI -xS -Jn -xS -CI -tf -cu -Rq -UW -Pu -eI -Rq -cu -cu -cu -Rq -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -Nj -WU -Tw -Xy -RS -eu -mB -Xy -Kj -Ha -Ue -Ft -wp -Tw -aS -Ft -KI -oh -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -VX -VX -Om -Om -Om -Om -Om -VX -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(190,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Vv -UG -mL -mL -Vv -mL -Vv -YU -aG -cu -tf -CO -MM -gd -Wt -lF -tf -cu -Rq -TG -kN -me -oh -Sv -cu -cu -Rq -Nj -oh -Rq -Rq -Rq -oh -Rq -Rq -Rq -Nj -oh -Rq -Rq -oh -Rq -oh -Rq -oh -Rq -Rq -ic -im -Vn -Bn -er -hT -Kj -Ha -Ue -ME -Zq -Io -hQ -KU -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -VX -Om -SP -Om -SP -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -VX -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(191,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -Vv -Vv -Vv -qh -YU -Vv -rn -Vv -aG -cu -tf -tf -tf -jw -tf -tf -tf -cu -oh -yo -WZ -Sv -Sv -Sv -cu -cu -oh -Nj -oh -Sv -cu -cu -cu -cu -cu -Rq -pT -oh -cu -cu -cu -cu -cu -cu -cu -cu -Rq -Si -bN -Si -te -jk -mB -Kj -Ha -Ue -Ft -iK -Tw -rs -Ft -yE -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(192,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -YU -AG -Vv -Vv -YU -mL -rn -YU -aG -cu -cu -cu -tf -tf -tf -cu -cu -cu -oh -oh -hv -oh -Rq -Sv -cu -cu -Rq -Nj -Sv -Sv -cu -cu -cu -cu -cu -Rq -me -Rq -cu -cu -cu -cu -cu -cu -cu -cu -oh -hT -te -Um -Pu -rJ -YZ -Kj -Ha -Ue -KU -dg -cH -Oz -rV -yE -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -WQ -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -VX -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -TF -Om -TF -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(193,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -qh -Vv -Vv -tF -Vv -mL -AG -YU -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -TB -TB -TB -Rq -cu -Sv -cu -Rq -pT -oh -cu -cu -cu -cu -cu -cu -Rq -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -Rq -ld -Ij -rJ -xb -rJ -tG -Rq -Ha -Ue -oh -GW -IM -Zb -oh -OJ -Rq -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -YK -YK -YK -YK -YK -YK -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(194,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -mL -Gw -Vv -Vv -tF -mL -FM -qh -EO -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -Sv -Sv -me -me -Sv -cu -Sv -cu -Sv -me -Sv -cu -cu -cu -cu -cu -cu -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -EN -SB -jH -ME -BH -SB -oh -oh -Vy -KU -Pj -XZ -fk -oh -yE -Rq -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -VX -SP -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -VX -VX -VX -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(195,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -mL -Gw -mL -mL -Vv -mL -Gw -Vv -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -me -Sv -Sv -cu -cu -cu -Sv -Sv -Sv -cu -cu -cu -cu -cu -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Rq -lQ -SS -jX -jc -eQ -Sv -oh -oh -MI -oh -Sv -Sv -xC -zd -Sv -Rq -Sv -IA -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -SP -VX -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(196,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -mL -Dr -mL -Vv -mL -mL -UG -mL -EO -EO -EO -Pr -EO -EO -cu -cu -cu -oJ -cu -Sv -Sv -Sv -Sv -Sv -Sv -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -oh -Rq -Rq -Rq -Rq -Sv -Sv -oh -Rq -Sv -oh -Sv -Sv -kg -Sv -Sv -Rq -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -VX -SP -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(197,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -kp -jI -tF -mL -Vv -Vv -FM -mL -tM -uL -EO -Ir -mL -EO -cu -cu -cu -cu -cu -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -IA -IA -IA -IA -Sv -Sv -Sv -Rq -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -Om -VX -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(198,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -Vv -jI -mL -YU -tF -YU -Dr -mL -Ds -uL -YU -Vv -tF -EO -Ee -Ee -oJ -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Sv -Sv -Sv -Sv -IA -Sv -Sv -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -VX -Om -YK -YK -YK -YK -YK -YK -YK -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -SP -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(199,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -mL -Dr -Ty -lV -tF -YU -AG -tt -EO -qn -aA -eD -br -IW -Uk -Uk -oJ -oJ -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -IA -Sv -IA -IA -IA -IA -IA -IA -Sv -Sv -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -Om -VX -VX -VX -SP -Om -SP -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(200,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Vv -HX -BP -vu -HV -lV -FM -mL -Ea -Vv -mL -YU -mL -mL -Uk -Uk -Uk -Ee -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -fn -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -SP -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(201,1,1) = {" -be -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -mL -tF -Vv -Gq -mk -zE -lV -tt -np -YU -mL -Ty -lV -mL -Uk -Uk -Ee -oJ -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -YK -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(202,1,1) = {" -be -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -tt -YU -YU -YU -Gq -qM -ek -YU -Ea -mL -Ty -Fx -zt -Pr -Ee -Ee -oJ -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(203,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -tF -FM -Vv -Vv -Vv -Vv -FM -Vv -EO -Vv -Qs -zZ -zt -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -Om -PE -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -VX -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(204,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Vv -Iy -XI -XI -XI -XI -Iy -Vv -Ea -tF -Qs -zZ -zt -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -YK -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -Om -Om -Om -kG -kG -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -SP -Om -SP -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -VV -"} -(205,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -cu -cu -cu -Pr -mL -PI -XI -Xe -SI -XI -PI -Vv -Ea -Jx -Gq -qM -ek -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -VX -VX -Om -VX -Om -YK -YK -YK -YK -YK -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -Om -Om -Om -Om -Om -kG -Om -Om -kG -Om -Om -kG -kG -Om -kG -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(206,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -aG -aG -Pr -YU -XI -Zo -KR -xH -CL -XI -Vv -Pr -EO -Pr -EO -Pr -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -VX -Om -Om -Om -VX -SP -Om -SP -Om -Om -SP -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -kG -kG -Om -kG -GX -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(207,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -aG -Pr -EO -mL -Zy -IU -lo -kP -WW -XI -YU -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -VX -Om -WQ -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -kG -Om -NJ -kG -Go -eo -kG -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(208,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -aG -Pr -Pr -aG -YU -XI -Jq -lo -kP -yD -XI -tF -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -SP -Om -Om -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -kG -kG -Kx -yU -Wp -CR -DV -Wp -eo -Om -kG -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -VV -"} -(209,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -zZ -zt -Vv -XI -zn -lo -kP -Ho -XI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -kG -Om -bc -Wp -hR -hR -Wp -eR -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -dB -dB -dB -dB -dB -dB -VV -"} -(210,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -zZ -zt -mL -XI -df -lo -kP -Hp -XI -Vv -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -VX -SP -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -YK -YK -YK -YK -Om -VX -Om -Om -VX -Om -Om -VX -VX -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -GQ -kG -hx -hR -Wp -Jk -kG -Om -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(211,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -aG -Pr -zZ -zt -Vv -XI -gW -lo -kP -nf -XI -YU -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -kG -bc -Jk -Om -kG -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(212,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -Pr -zt -mL -XI -ig -lo -kP -nM -XI -tF -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -VX -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -kG -Om -Om -Om -GX -Om -Om -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -fn -Om -dB -dB -dB -dB -dB -VV -"} -(213,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -zZ -zZ -zt -YU -XI -io -lo -kP -BL -XI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -WQ -Om -Om -SP -Om -VX -Om -Om -Om -VX -SP -Om -SP -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Ce -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -VV -"} -(214,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -zZ -zZ -zt -Vv -XI -kv -qB -Nn -uc -XI -YU -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -VX -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -Om -Om -Om -Om -vB -Om -Om -Om -kG -Om -Om -kG -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(215,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -Pr -zZ -zt -tF -PI -XI -El -El -XI -PI -mL -Qs -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -VX -Om -Om -VX -Om -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -SP -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -VV -"} -(216,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -zZ -zt -Vv -ie -XI -Mk -Mk -XI -JX -mL -Qs -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -Om -dB -dB -dB -dB -dB -VV -"} -(217,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -Pr -zZ -zt -mL -PI -XI -El -El -XI -PI -mL -Qs -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -WQ -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -Om -Om -VX -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -SP -Om -SP -Om -Om -Om -Om -VX -Om -Om -VX -dB -dB -dB -dB -dB -VV -"} -(218,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -zZ -zZ -zt -YU -XI -bO -KR -xH -nV -XI -Vv -Qs -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -VX -VX -Om -Om -YK -YK -YK -YK -Om -VX -Om -Om -VX -Om -Om -VX -VX -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(219,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Pr -Pr -zZ -zt -mL -XI -cm -lo -kP -ra -XI -mL -Pr -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -VX -WQ -Om -VX -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -VX -SP -Om -SP -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(220,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pr -Pr -zZ -EO -mL -XI -fO -lo -kP -Nh -XI -YU -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -Om -VX -Om -Om -Om -VX -SP -Om -SP -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -SP -Om -Om -Om -Om -VX -fn -dB -dB -dB -dB -dB -dB -VV -"} -(221,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -aG -aG -aG -EO -Vv -XI -tS -lo -kP -Qe -XI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -YK -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -SP -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -dB -dB -dB -dB -dB -dB -VV -"} -(222,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -aG -Pr -aG -Pr -la -XI -Cd -lo -kP -Nf -XI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -Om -VX -VX -Om -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -SP -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(223,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -mL -XI -cm -lo -kP -Xr -XI -Vv -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -fn -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -VX -Om -Om -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -VV -"} -(224,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Vv -XI -Fe -lo -kP -wd -XI -tF -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -YK -YK -YK -YK -Om -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -VX -Om -Om -Om -fn -Om -dB -dB -dB -dB -dB -dB -VV -"} -(225,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -mL -XI -tS -lo -kP -Nh -XI -tJ -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -VX -SP -Om -Om -Om -Om -Om -VX -VX -YK -YK -YK -YK -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -VV -"} -(226,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -Vv -XI -NT -qB -Nn -rK -XI -tF -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -Om -Om -VX -Om -Om -Om -VX -Om -Om -Om -Om -VX -Om -VX -Om -Om -Om -Om -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -VX -Om -Om -Om -Om -Om -Om -fn -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(227,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Pb -PI -XI -El -El -XI -PI -TZ -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -fn -Om -VX -Om -Om -Om -Om -Om -Om -fn -Om -Om -Om -YK -YK -YK -YK -Om -Om -Om -Om -Om -Om -Om -VX -Om -Om -fn -Om -Om -Om -Om -Om -fn -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -Om -dB -dB -fn -Om -Om -Om -Om -Om -Om -Om -Om -VX -Om -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -Om -Om -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(228,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Vv -zJ -Qo -OU -Wx -Yk -zJ -Vv -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -VX -dB -dB -dB -dB -dB -dB -Om -fn -Om -Om -Om -dB -dB -dB -VX -YK -YK -YK -YK -Om -Om -VX -Om -fn -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -Om -Om -fn -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -VX -Om -Om -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(229,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -ie -PI -XI -sU -sU -XI -PI -JX -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -YK -YK -YK -YK -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -Om -Om -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(230,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -YU -XI -oY -Mk -Mk -yT -XI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -YK -fn -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(231,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -YU -Mh -xp -Mk -Mk -yT -Mh -mL -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(232,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -mL -XI -XI -sU -sU -XI -XI -Vv -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(233,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -ie -XI -HK -Mk -Mk -Vd -XI -JX -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(234,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -mL -Na -yu -eH -eH -yu -Na -Vv -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(235,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -Vv -PI -Na -yu -yu -Na -PI -mL -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(236,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -Pr -le -rn -XI -Na -Na -XI -AG -Vv -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(237,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -pu -FM -Qs -zZ -nk -zt -AG -IH -aG -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(238,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -aG -tD -FM -Tm -zZ -zZ -zt -AG -BN -Pr -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(239,1,1) = {" -VV -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -EO -NE -LP -rA -Gh -Gh -zx -LP -KM -EO -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -cu -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -dB -VV -"} -(240,1,1) = {" -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -VV -"} diff --git a/_maps/RandomZLevels/dwarf_lustress.dmm b/_maps/RandomZLevels/dwarf_lustress.dmm deleted file mode 100644 index f665b57c386c..000000000000 --- a/_maps/RandomZLevels/dwarf_lustress.dmm +++ /dev/null @@ -1,25735 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aR" = ( -/obj/effect/baseturf_helper/beach/raw_stone, -/turf/closed/mineral/random/dwarf_lustress, -/area/awaymission/vietnam/dwarfgen) -"aX" = ( -/obj/structure/dwarf_altar, -/turf/open/floor/carpet/black, -/area/awaymission/vietnam/dwarf) -"cK" = ( -/obj/effect/turf_decal/stripes{ - dir = 9 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"cU" = ( -/obj/structure/fluff/drake_statue, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"dG" = ( -/obj/structure/table/stone, -/obj/item/flashlight/lantern, -/turf/open/floor/carpet/green, -/area/awaymission/vietnam/dwarf) -"el" = ( -/obj/item/reagent_containers/glass/bucket/wooden, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"eu" = ( -/obj/structure/dwarf_waterbarrel, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"eN" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"eQ" = ( -/obj/structure/chair/comfy/stone/throne{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/awaymission/vietnam/dwarf) -"eV" = ( -/obj/structure/fermenting_barrel, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"fS" = ( -/obj/structure/table/stone, -/obj/item/clothing/mask/cigarette/pipe/cobpipe, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"gc" = ( -/obj/machinery/microwave/furnace, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"gr" = ( -/obj/structure/bed/prison/bed, -/obj/effect/mob_spawn/human/dwarf, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"gW" = ( -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"ha" = ( -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"hk" = ( -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"hL" = ( -/obj/structure/stone_tile/burnt, -/obj/structure/stone_tile/burnt{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"iq" = ( -/obj/structure/closet/crate/wooden, -/obj/item/flashlight/flare/torch, -/obj/item/flashlight/flare/torch, -/obj/item/flashlight/flare/torch, -/obj/item/flashlight/flare/torch, -/obj/item/flashlight/flare/torch, -/obj/item/flashlight/flare/torch, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"jD" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"kb" = ( -/obj/structure/water_source/puddle, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"kg" = ( -/obj/structure/mineral_door/heavystone{ - dir = 1 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"kJ" = ( -/mob/living/simple_animal/pet/cat/female, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"kL" = ( -/obj/item/food/grown/mushroom/plumphelmet, -/obj/item/food/grown/mushroom/plumphelmet, -/obj/structure/table/stone, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"lq" = ( -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"lv" = ( -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"lH" = ( -/turf/open/floor/carpet/green, -/area/awaymission/vietnam/dwarf) -"lP" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"lW" = ( -/obj/structure/closet/crate/wooden, -/obj/item/seeds/tower, -/obj/item/seeds/tower, -/obj/item/seeds/wheat, -/obj/item/seeds/wheat, -/obj/item/seeds/ambrosia/gaia, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"lZ" = ( -/obj/anvil/fullsteel{ - anchored = 1 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"md" = ( -/obj/forge, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"mf" = ( -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarfgen) -"mn" = ( -/obj/item/flashlight/lantern, -/turf/closed/wall/stonewall, -/area/awaymission/vietnam/dwarf) -"nC" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/ingot, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"nG" = ( -/obj/structure/table/stone, -/obj/item/damaz, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"nH" = ( -/obj/furnace, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"oD" = ( -/turf/closed/mineral/random/dwarf_lustress, -/area/awaymission/vietnam/dwarfgen) -"oI" = ( -/obj/structure/table/stone, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"oN" = ( -/obj/structure/bed/prison/bed, -/obj/effect/mob_spawn/human/dwarf, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"qy" = ( -/obj/structure/stone_tile/center/cracked, -/obj/structure/stone_tile/surrounding, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"rb" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"rv" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/smithing_hammer, -/obj/item/blacksmith/tongs, -/obj/item/flashlight/lantern, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"sf" = ( -/obj/machinery/torch_fixture{ - dir = 4; - on = 1; - pixel_x = 32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"st" = ( -/obj/item/storage/bag/plants/portaseeder, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"ux" = ( -/obj/effect/turf_decal/stripes{ - dir = 6 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"vf" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"vx" = ( -/obj/machinery/torch_fixture{ - dir = 1; - on = 1; - pixel_y = 32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"vC" = ( -/obj/structure/closet/crate/wooden, -/obj/item/seeds/plump, -/obj/item/seeds/plump, -/obj/item/seeds/cotton, -/obj/item/seeds/cotton, -/obj/item/seeds/tobacco, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"vK" = ( -/turf/closed/wall/stonewall, -/area/awaymission/vietnam/dwarf) -"wz" = ( -/turf/closed/indestructible/black, -/area/awaymission/vietnam/dwarf) -"wU" = ( -/obj/machinery/torch_fixture{ - dir = 4; - on = 1; - pixel_x = 32 - }, -/obj/structure/table/stone, -/obj/item/pickaxe/rusted, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"xc" = ( -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarfgen) -"yR" = ( -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarfgen) -"zx" = ( -/obj/item/reagent_containers/glass/bucket/wooden, -/obj/structure/table/stone, -/obj/item/flashlight/lantern, -/obj/item/kitchen/knife, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Ak" = ( -/obj/effect/turf_decal/stripes, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"Bg" = ( -/mob/living/simple_animal/pet/cat/male, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Cw" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/ingot, -/obj/item/blacksmith/ingot, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"CE" = ( -/obj/structure/table/stone, -/obj/item/pickaxe/rusted, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"DC" = ( -/turf/open/floor/carpet/black, -/area/awaymission/vietnam/dwarf) -"DI" = ( -/obj/structure/gemcutter, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Gr" = ( -/obj/effect/turf_decal/stripes{ - dir = 10 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"GJ" = ( -/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"GY" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"HG" = ( -/obj/machinery/biogenerator, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"IO" = ( -/obj/machinery/torch_fixture{ - dir = 1; - on = 1; - pixel_y = 32 - }, -/obj/structure/workbench, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"JF" = ( -/obj/structure/table/stone, -/obj/item/cultivator/rake, -/obj/item/shovel/spade/wzzz, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"LG" = ( -/obj/structure/stone_tile/burnt{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Mu" = ( -/obj/machinery/torch_fixture{ - dir = 8; - on = 1; - pixel_x = -32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"MB" = ( -/turf/closed/mineral/random/dwarf_lustress, -/area/awaymission/vietnam/dwarf) -"MV" = ( -/obj/machinery/torch_fixture{ - dir = 2; - on = 1; - pixel_y = 0 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Nl" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"Ny" = ( -/mob/living/simple_animal/hostile/retaliate/frog, -/obj/item/soapstone, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"PL" = ( -/obj/machinery/torch_fixture{ - dir = 1; - on = 1; - pixel_y = 32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"QJ" = ( -/obj/structure/stone_tile/slab/burnt, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"QN" = ( -/obj/structure/stone_tile/slab, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Sc" = ( -/obj/structure/table/stone, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Sj" = ( -/obj/structure/stone_tile/slab/cracked, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"SG" = ( -/obj/structure/fluff/big_chain, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"SX" = ( -/obj/structure/stone_tile/burnt, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Tv" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"TA" = ( -/obj/structure/mineral_door/heavystone{ - dir = 4 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dwarf) -"Ur" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Vs" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/burnt{ - dir = 4 - }, -/obj/structure/stone_tile/block, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Vz" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Wp" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 5 - }, -/obj/structure/stone_tile/block, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"WV" = ( -/obj/machinery/gateway/away, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) -"XI" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/burnt{ - dir = 1 - }, -/obj/structure/stone_tile/block/burnt{ - dir = 8 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"YA" = ( -/obj/structure/stone_tile/block/burnt{ - dir = 4 - }, -/obj/structure/stone_tile/burnt{ - dir = 4 - }, -/obj/structure/stone_tile/burnt{ - dir = 8 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"YP" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 6 - }, -/obj/structure/stone_tile/burnt{ - dir = 1 - }, -/obj/structure/stone_tile/burnt{ - dir = 4 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"YZ" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/lava/smooth, -/area/awaymission/vietnam/dwarf) -"Zf" = ( -/obj/machinery/torch_fixture{ - dir = 4; - on = 1; - pixel_x = 32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dwarf) -"ZM" = ( -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/awaymission/vietnam/dwarf) - -(1,1,1) = {" -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -"} -(2,1,1) = {" -wz -aR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(3,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(4,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(5,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -oD -oD -oD -oD -yR -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(6,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -xc -xc -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(7,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -GJ -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -MB -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -oD -oD -oD -oD -oD -yR -yR -xc -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -wz -"} -(8,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -MB -MB -MB -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -yR -yR -oD -oD -oD -oD -yR -yR -yR -yR -xc -xc -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -wz -"} -(9,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -MB -MB -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -yR -yR -yR -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -wz -"} -(10,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -yR -yR -yR -yR -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -wz -"} -(11,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -yR -oD -oD -oD -yR -yR -lv -lv -lv -lv -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -wz -"} -(12,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -wz -"} -(13,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -xc -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -yR -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -wz -"} -(14,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -yR -yR -xc -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -MB -MB -MB -lv -lv -lv -lv -wz -"} -(15,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -yR -yR -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -lv -lv -lv -lv -lv -lv -wz -"} -(16,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -yR -oD -oD -oD -oD -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(17,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -yR -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -xc -xc -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(18,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -oD -oD -oD -oD -oD -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(19,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(20,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(21,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -yR -yR -yR -lv -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -xc -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(22,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -lv -lv -lv -yR -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -MB -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(23,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -lv -lv -lv -yR -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -MB -MB -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(24,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -lv -lv -lv -lv -yR -yR -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -MB -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(25,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -ha -MB -MB -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(26,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -oD -oD -oD -oD -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -MB -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(27,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(28,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -yR -yR -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(29,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(30,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -ha -ha -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(31,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -yR -yR -yR -yR -ha -ha -ha -ha -ha -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(32,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -GJ -lv -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -ha -ha -ha -ha -ha -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(33,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -yR -lv -yR -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -oD -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -ha -ha -ha -ha -ha -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(34,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -xc -xc -xc -lv -GJ -ha -vK -lv -lv -SG -vK -ha -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -ha -vK -ha -ha -vK -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(35,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -xc -xc -xc -oD -oD -yR -yR -yR -yR -yR -xc -xc -xc -lv -ha -ha -ha -Sj -qy -eN -ha -ha -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -ha -ha -ha -ha -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(36,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -xc -xc -oD -oD -oD -yR -yR -yR -yR -yR -yR -xc -yR -ha -ha -lq -vK -lv -lv -SG -vK -ha -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -ha -ha -ha -ha -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -lv -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(37,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -ha -ha -ha -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -ha -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -MB -MB -MB -lv -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(38,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -GJ -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -ha -ha -ha -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -ha -ha -ha -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(39,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -oD -oD -oD -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -vK -ha -ha -vK -yR -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(40,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -oD -oD -oD -oD -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(41,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -yR -yR -yR -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(42,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -yR -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(43,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -MB -MB -MB -vK -vK -vK -MB -vK -vK -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -oD -oD -oD -oD -oD -oD -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -wz -"} -(44,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -Mu -lq -ha -ha -lq -ha -lq -ha -Mu -MB -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -wz -"} -(45,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -ha -MB -ha -MB -MB -lq -vK -MB -ha -vK -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -MB -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -wz -"} -(46,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -vK -vK -oD -oD -oD -vK -lq -MB -ha -MV -vK -lq -MV -vK -ha -ha -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -yR -yR -yR -lv -lv -lv -MB -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -wz -"} -(47,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -dG -eQ -lH -vK -vK -MB -MB -vK -ha -vK -fS -oN -MB -oI -gr -vK -wU -gr -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -wz -"} -(48,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lq -lH -lH -lH -lq -vK -MB -MB -MB -lq -MB -MB -vK -MB -MB -MB -MB -vK -vK -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -oD -yR -lv -lv -lv -oD -oD -oD -oD -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -lv -lv -lv -yR -yR -lv -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -wz -"} -(49,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vx -lq -lq -lq -MV -vK -MB -MB -MB -lq -MB -CE -gr -vK -Sc -oN -MB -Sc -oN -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -SG -vK -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -yR -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -oD -oD -yR -yR -yR -oD -oD -oD -lv -oD -yR -yR -yR -yR -lv -yR -yR -yR -oD -lv -yR -yR -yR -ha -ha -ha -ha -oD -oD -oD -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -wz -"} -(50,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -lq -lq -lq -lq -lq -vK -MB -MB -vK -ha -vK -lq -sf -vK -ha -MV -vK -lq -sf -MB -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -vK -QJ -Sj -QN -lq -mf -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -xc -xc -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -oD -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -yR -yR -yR -oD -yR -yR -yR -yR -oD -oD -oD -oD -yR -yR -yR -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -cK -rb -Gr -ha -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -wz -"} -(51,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -vK -lq -lq -lq -lq -lq -vK -MB -MB -vK -lq -MB -lq -vK -MB -lq -MB -MB -ha -vK -vK -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -kg -QN -QJ -QN -lq -mf -mf -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -Nl -WV -Ak -ha -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -wz -"} -(52,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -lq -Mu -vK -vK -vK -TA -vK -vK -vK -MB -MB -vK -lq -Zf -lq -lq -lq -ha -lq -ha -ha -Zf -lq -MB -MB -ha -ha -oD -oD -oD -oD -yR -yR -yR -vK -Sj -QN -QJ -lq -mf -mf -mf -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -yR -yR -yR -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -xc -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -yR -yR -yR -oD -oD -yR -yR -yR -lv -lv -lv -lv -yR -oD -oD -yR -yR -oD -oD -oD -yR -yR -oD -yR -yR -oD -lv -lv -lv -oD -oD -yR -yR -oD -oD -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -yR -yR -yR -yR -ha -ZM -jD -ux -ha -yR -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -wz -"} -(53,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -cU -lq -lq -vK -ha -lq -lq -lq -lq -vK -MB -vK -MB -MB -vK -MB -mn -MB -lq -vK -vK -MB -vK -ha -MB -ha -ha -ha -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -SG -vK -yR -yR -yR -yR -mf -mf -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -lv -lv -oD -yR -yR -yR -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -yR -lv -oD -oD -lv -oD -oD -yR -yR -lv -oD -oD -lv -oD -oD -lv -yR -lv -lv -ha -GY -ha -ha -yR -yR -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -wz -"} -(54,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -DC -DC -lq -lq -vK -ha -ha -lq -ha -ha -MB -lq -lq -ha -ha -lq -lq -ha -lq -lq -lq -lP -lP -lq -lq -ha -ha -ha -MB -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -yR -yR -yR -yR -yR -mf -mf -mf -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -wz -"} -(55,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -Ny -vK -aX -DC -nG -lq -kg -lq -lq -ha -lq -ha -ha -ha -ha -lq -lq -ha -ha -ha -lq -ha -lq -lq -lq -ha -lq -ha -ha -ha -MB -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -yR -yR -yR -yR -yR -mf -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -oD -oD -lv -oD -oD -lv -lv -lv -oD -oD -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -wz -"} -(56,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -DC -DC -lq -lq -vK -lq -ha -lq -lq -lq -vK -PL -lq -lq -ha -ha -lq -lq -ha -ha -Zf -lq -ha -lq -ha -ha -MB -MB -MB -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -GJ -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -MB -lv -lv -MB -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -wz -"} -(57,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -cU -lq -lq -vK -ha -lq -Zf -ha -lq -vK -MB -vK -vK -vK -TA -MB -MB -MB -TA -vK -MB -MB -vK -TA -vK -vK -vK -MB -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -wz -"} -(58,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -lq -sf -vK -MB -MB -vK -MB -vK -vK -zx -ha -iq -iq -lq -vK -HG -lq -lq -ha -lW -vK -vK -lq -Mu -lq -vK -vK -oD -oD -oD -oD -oD -oD -oD -vK -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -mf -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -wz -"} -(59,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -vK -MB -MB -MB -MB -MB -vK -gc -ha -lq -ha -ha -vK -JF -lq -ha -ha -vC -vK -lZ -lq -lq -lq -nH -vK -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -mf -mf -mf -yR -yR -oD -oD -oD -oD -lv -lv -lv -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -wz -"} -(60,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -MB -kL -ha -Sc -Sc -ha -MB -lq -st -kb -lq -el -vK -md -lq -lq -lq -eu -vK -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -mf -mf -mf -mf -yR -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -wz -"} -(61,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -vK -ha -lq -lq -ha -ha -vK -vx -lq -lq -lq -ha -vK -DI -lq -lq -lq -lq -vK -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -mf -mf -yR -yR -oD -oD -oD -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(62,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -vK -lq -lq -Zf -Bg -kJ -vK -vf -vf -vf -vf -vf -vK -vK -Cw -nC -lq -vK -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -mf -mf -yR -oD -oD -oD -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(63,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -lq -ha -vK -MB -MB -vK -MB -vK -vK -vK -MB -vK -vK -vK -vK -lq -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lq -lq -ha -yR -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(64,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -eV -lq -ha -MB -MB -MB -MB -MB -MB -MB -MB -MB -MB -vK -IO -lq -lq -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -ha -lq -lq -ha -ha -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(65,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -MB -eV -gW -hk -MB -MB -MB -MB -MB -MB -MB -MB -MB -MB -vK -lq -lq -oN -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -ha -vK -lq -lq -lq -vK -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(66,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -MB -vK -MB -MB -MB -MB -MB -MB -MB -MB -MB -vK -vK -rv -vK -vK -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -ha -ha -lq -QN -YP -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -GJ -lv -lv -lv -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(67,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -vK -vK -vK -MB -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -ha -ha -lq -QJ -YZ -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -GJ -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(68,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -ha -ha -SX -Vz -LG -lv -yR -yR -yR -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -GJ -lv -lv -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(69,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -ha -lv -Sj -Wp -QN -ha -yR -yR -yR -yR -yR -yR -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(70,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -Tv -XI -hL -ha -yR -yR -oD -oD -oD -yR -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -GJ -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(71,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -Ur -YA -lq -ha -yR -yR -oD -oD -oD -yR -lv -lv -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -xc -yR -yR -yR -lv -lv -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(72,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -Vs -lq -lq -ha -yR -yR -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -yR -yR -yR -yR -lv -lv -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -yR -yR -oD -yR -yR -yR -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(73,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -vK -lq -lq -lq -vK -yR -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -lv -xc -yR -yR -oD -oD -lv -lv -oD -oD -oD -yR -yR -yR -yR -yR -xc -xc -lv -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -yR -yR -yR -yR -yR -yR -yR -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(74,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -ha -lq -lq -lq -lq -ha -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -lv -lv -lv -oD -oD -oD -oD -yR -yR -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -yR -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -wz -"} -(75,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -ha -ha -lq -lq -lq -lq -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -oD -oD -yR -yR -yR -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -wz -"} -(76,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -GJ -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lq -lq -lq -lq -yR -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -wz -"} -(77,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -mf -yR -yR -yR -yR -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(78,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(79,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(80,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -xc -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -yR -yR -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(81,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -ha -ha -lv -lv -lv -lv -ha -ha -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(82,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -ha -ha -lv -lv -lv -ha -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -xc -xc -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(83,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -vK -lv -lv -SG -vK -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(84,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -lq -QJ -Wp -QJ -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(85,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -ha -lq -Ur -QN -ha -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(86,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -ha -XI -SX -ha -lq -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(87,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -vK -lv -lv -SG -vK -ha -ha -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(88,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -ha -lv -lv -lv -ha -ha -ha -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(89,1,1) = {" -wz -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -ha -ha -lv -lv -ha -ha -ha -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(90,1,1) = {" -wz -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -ha -ha -lv -lv -ha -ha -ha -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(91,1,1) = {" -wz -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -ha -ha -ha -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(92,1,1) = {" -wz -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -ha -ha -ha -ha -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(93,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -ha -ha -ha -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(94,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -ha -ha -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(95,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(96,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(97,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -lv -lv -lv -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(98,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -lv -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(99,1,1) = {" -wz -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -lv -lv -yR -yR -yR -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -yR -yR -yR -yR -yR -yR -yR -yR -yR -lv -lv -lv -lv -lv -lv -oD -oD -oD -oD -oD -oD -oD -oD -oD -oD -wz -"} -(100,1,1) = {" -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -wz -"} diff --git a/_maps/RandomZLevels/prisonv2.dmm b/_maps/RandomZLevels/prisonv2.dmm deleted file mode 100644 index 23330f6926d2..000000000000 --- a/_maps/RandomZLevels/prisonv2.dmm +++ /dev/null @@ -1,69470 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/indestructible/rock, -/area/prisonv2out) -"ab" = ( -/turf/closed/mineral/random/prison, -/area/prisonv2out) -"ac" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ad" = ( -/mob/living/simple_animal/hostile/faithless, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ae" = ( -/obj/effect/mob_spawn/human/clown/corpse, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"af" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/icewing, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ag" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, -/obj/structure/closet/crate/wooden, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ah" = ( -/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ai" = ( -/obj/machinery/prisonplant, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"aj" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "podv" - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ak" = ( -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"al" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/eastright, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/clothing/head/helmet, -/turf/open/floor/trot, -/area/prisonv2) -"am" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ao" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "church" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ap" = ( -/turf/closed/mineral, -/area/prisonv2) -"aq" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"ar" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"as" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"at" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"au" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"av" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aw" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"ax" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/prisonv2) -"ay" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"az" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/prisonv2) -"aA" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/prisonv2) -"aB" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"aC" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"aD" = ( -/turf/open/floor/beton, -/area/prisonv2) -"aE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/beton, -/area/prisonv2) -"aF" = ( -/obj/machinery/door/poddoor{ - id = "ulitsa"; - name = "ussr door" - }, -/turf/open/floor/beton, -/area/prisonv2) -"aG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/beton, -/area/prisonv2) -"aH" = ( -/obj/structure/sign/poster/contraband/communist_state, -/turf/closed/wall/brick, -/area/prisonv2) -"aI" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"aJ" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aK" = ( -/obj/structure/flora/junglebush/c, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aL" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/westright, -/turf/open/floor/trot, -/area/prisonv2) -"aM" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aN" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/prisonv2) -"aO" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"aP" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aQ" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/southleft, -/obj/item/clothing/mask/gas/sechailer/swat, -/obj/item/clothing/shoes/combat/swat, -/obj/item/clothing/suit/armor/riot, -/obj/item/shield/riot, -/obj/item/clothing/head/helmet/ussr, -/turf/open/floor/trot, -/area/prisonv2) -"aR" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/southright, -/obj/item/grenade/syndieminibomb/concussion, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/turf/open/floor/trot, -/area/prisonv2) -"aS" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/prisonv2) -"aT" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/prisonv2) -"aU" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"aV" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"aW" = ( -/obj/structure/bodycontainer/crematorium/creamatorium{ - id = 2 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"aX" = ( -/obj/machinery/button/crematorium{ - id = 2 - }, -/turf/closed/wall/brick, -/area/prisonv2) -"aY" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"aZ" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/prisonv2) -"ba" = ( -/obj/structure/table/prison, -/obj/item/storage/book/bible, -/turf/open/floor/carpet, -/area/prisonv2) -"bb" = ( -/obj/structure/table/prison, -/obj/item/reagent_containers/food/drinks/mug/tea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bc" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"bd" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, -/obj/structure/closet/crate/wooden, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"be" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/prisonv2) -"bf" = ( -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"bg" = ( -/turf/closed/wall/rospilovo/beton, -/area/prisonv2) -"bh" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/grass, -/area/prisonv2) -"bi" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/prisonv2) -"bj" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/prisonv2) -"bk" = ( -/obj/structure/table/prison, -/obj/item/reagent_containers/food/drinks/soda_cans/shamblers, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bl" = ( -/turf/open/floor/carpet, -/area/prisonv2) -"bm" = ( -/obj/structure/prison/pipe{ - dir = 10; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"bn" = ( -/obj/structure/prison/pipe, -/turf/open/floor/trot, -/area/prisonv2) -"bo" = ( -/obj/structure/prison/pipe{ - dir = 6; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"bp" = ( -/obj/item/trash/can, -/turf/open/floor/beton, -/area/prisonv2) -"bq" = ( -/obj/item/trash/can, -/turf/open/floor/trot, -/area/prisonv2) -"br" = ( -/obj/structure/sign/prison/yannp{ - pixel_y = 32 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bs" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"bt" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"bu" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"bx" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/eastright, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/item/clothing/glasses/night, -/obj/machinery/light_switch{ - name = "ACTIVATE SPEC OPS MODE"; - pixel_x = -32 - }, -/obj/item/clothing/head/helmet/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/item/clothing/head/helmet/ussr, -/turf/open/floor/trot, -/area/prisonv2) -"by" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/westright, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/grenade/chem_grenade/teargas, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/trot, -/area/prisonv2) -"bz" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/grass, -/area/prisonv2) -"bA" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"bB" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"bC" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/prisonv2) -"bD" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"bE" = ( -/turf/closed/wall/brick, -/area/prisonv2) -"bG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bH" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bI" = ( -/obj/structure/table/prison, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bJ" = ( -/obj/structure/chair/comfy/black, -/obj/effect/mob_spawn/human/prison/vertuhai, -/obj/effect/decal/prison/pipe{ - pixel_y = 12 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bK" = ( -/obj/effect/decal/prison/pipe, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bM" = ( -/obj/structure/closet/pcloset, -/obj/effect/decal/prison/pipe/pipeb, -/obj/item/gun/ballistic/revolver/detective, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bN" = ( -/obj/structure/chair/comfy/black, -/obj/effect/mob_spawn/human/prison/vertuhai, -/obj/effect/decal/prison/pipe, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bO" = ( -/obj/structure/chair/prison/wood{ - dir = 1; - icon_state = "chair" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bP" = ( -/obj/effect/bump_teleporter{ - id = "u1d"; - id_target = "u1u" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"bQ" = ( -/obj/effect/bump_teleporter{ - id = "u2d"; - id_target = "u2u" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"bR" = ( -/obj/machinery/prisonplant, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bS" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/grass, -/area/prisonv2) -"bT" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"bV" = ( -/obj/structure/table/wood, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"bW" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/trot, -/area/prisonv2) -"bY" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"bZ" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"ca" = ( -/obj/effect/bump_teleporter{ - id = "b1s"; - id_target = "podval" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"cb" = ( -/obj/effect/bump_teleporter{ - id = "b1d"; - id_target = "b1u" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"cc" = ( -/obj/effect/decal/prison/pipe/pipeb, -/obj/structure/bed/prison/bed, -/obj/effect/mob_spawn/human/prison/prisoner, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cd" = ( -/obj/structure/table/prison, -/obj/item/clothing/head/ushanka, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ce" = ( -/obj/structure/table/wood/fancy/black, -/turf/open/floor/carpet/black, -/area/prisonv2) -"cf" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"cg" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pinpointer/crew, -/obj/item/storage/box/zipties, -/turf/open/floor/carpet/black, -/area/prisonv2) -"ch" = ( -/obj/machinery/vending/sovietvend, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ci" = ( -/obj/machinery/space_heater, -/obj/effect/decal/prison/pipe/piped, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cj" = ( -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"ck" = ( -/obj/machinery/prisonplant, -/mob/living/simple_animal/mouse/white, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cl" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/eastright, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/suppressor, -/obj/item/suppressor, -/obj/item/suppressor, -/obj/item/suppressor, -/obj/item/suppressor, -/turf/open/floor/trot, -/area/prisonv2) -"cm" = ( -/obj/structure/rack, -/obj/machinery/door/window/brigdoor/westright, -/obj/item/gun/ballistic/automatic/ak, -/obj/item/gun/ballistic/automatic/ak, -/obj/item/gun/ballistic/automatic/ak, -/obj/item/ammo_box/magazine/ak762, -/obj/item/ammo_box/magazine/ak762, -/obj/item/ammo_box/magazine/ak762, -/turf/open/floor/trot, -/area/prisonv2) -"cn" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/prisonv2) -"co" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/prisonv2) -"cp" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"cq" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/prisonv2) -"cr" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fullgrass, -/mob/living/simple_animal/pet/penguin/baby, -/turf/open/floor/grass, -/area/prisonv2) -"cs" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"ct" = ( -/obj/structure/table/prison, -/obj/item/clothing/head/tyubet, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cu" = ( -/turf/open/floor/carpet/black, -/area/prisonv2) -"cv" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/fedora, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cw" = ( -/obj/structure/table/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cx" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/grass, -/area/prisonv2) -"cy" = ( -/obj/structure/flora/ausbushes/pointybush, -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/prisonv2) -"cz" = ( -/obj/structure/flora/ausbushes/fullgrass, -/mob/living/simple_animal/pet/dog/pug, -/turf/open/floor/grass, -/area/prisonv2) -"cA" = ( -/obj/structure/table/wood, -/obj/structure/sign/prison/bolt{ - pixel_y = 32 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cB" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cC" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"cD" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"cE" = ( -/obj/structure/prison/fence{ - dir = 4; - icon_state = "fence"; - pixel_x = 16 - }, -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"cF" = ( -/obj/structure/closet/crate/wooden, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cG" = ( -/obj/structure/table/prison, -/obj/item/gun/ballistic/revolver/russian, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cH" = ( -/obj/effect/decal/prison/pipe/pipec, -/obj/structure/bed/prison/bed, -/obj/effect/mob_spawn/human/prison/prisoner, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cI" = ( -/obj/effect/decal/prison/pipe/piped, -/turf/closed/wall/brick, -/area/prisonv2) -"cJ" = ( -/obj/machinery/door/airlock/prison, -/turf/open/floor/carpet, -/area/prisonv2) -"cK" = ( -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cL" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/prisonv2) -"cM" = ( -/obj/structure/flora/ausbushes/pointybush, -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"cN" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/junglebush/b, -/mob/living/simple_animal/pet/cat, -/turf/open/floor/grass, -/area/prisonv2) -"cO" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/mob/living/simple_animal/pet/fox, -/turf/open/floor/grass, -/area/prisonv2) -"cP" = ( -/turf/open/floor/trot, -/area/prisonv2out) -"cQ" = ( -/turf/open/floor/beton, -/area/prisonv2out) -"cR" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"cS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 32 - }, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cT" = ( -/obj/structure/sign/prison/kolesa, -/turf/closed/wall/brick, -/area/prisonv2) -"cU" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cV" = ( -/obj/structure/sign/prison/hitler, -/turf/closed/wall/brick, -/area/prisonv2) -"cW" = ( -/obj/machinery/door/airlock/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cX" = ( -/obj/structure/sign/prison/bolt, -/turf/closed/wall/brick, -/area/prisonv2) -"cY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"cZ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/prison/pipe/piped, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"da" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"db" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dc" = ( -/obj/machinery/door/poddoor{ - id = "armory666"; - name = "armory" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dd" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 5" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"de" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 4" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"df" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 3" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dg" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 2" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dh" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 1" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"di" = ( -/obj/structure/flora/ausbushes/stalkybush, -/mob/living/simple_animal/pet/penguin/emperor/shamebrero, -/turf/open/floor/grass, -/area/prisonv2) -"dj" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"dk" = ( -/obj/structure/flora/junglebush/c, -/obj/structure/flora/ausbushes/stalkybush, -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"dl" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"dm" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/prisonv2) -"dn" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"do" = ( -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"dp" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/prisonv2) -"dr" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ds" = ( -/obj/machinery/flasher/portable, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"du" = ( -/obj/machinery/button/door{ - id = "armory666"; - name = "Armory"; - pixel_x = 0; - pixel_y = 32 - }, -/obj/effect/decal/prison/pipe, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dv" = ( -/obj/item/clothing/suit/hooded/wintercoat/medical, -/obj/item/clothing/under/rank/medical, -/obj/structure/table/wood, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dw" = ( -/obj/machinery/flasher/portable, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dx" = ( -/obj/structure/table, -/obj/item/key, -/obj/item/key, -/obj/effect/decal/prison/pipe/pipeb, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dy" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dz" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"dA" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dB" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dC" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dD" = ( -/obj/structure/closet, -/obj/item/storage/box/syringes, -/obj/item/storage/box/rxglasses, -/obj/item/storage/box/gloves, -/obj/item/storage/box/beakers, -/obj/item/storage/box/syringes, -/obj/effect/decal/prison/pipe, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dE" = ( -/obj/machinery/button/door{ - id = "cell5"; - name = "CELL 5"; - normaldoorcontrol = 1; - pixel_x = -8; - pixel_y = 32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dF" = ( -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dG" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dH" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"dI" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"dJ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"dK" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet, -/area/prisonv2) -"dL" = ( -/obj/structure/sign/poster/contraband/kss13, -/turf/closed/wall/brick, -/area/prisonv2) -"dM" = ( -/obj/machinery/button/door{ - id = "cell4"; - name = "CELL 4"; - normaldoorcontrol = 1; - pixel_x = -8; - pixel_y = 32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dN" = ( -/obj/machinery/button/door{ - id = "cell3"; - name = "CELL 3"; - normaldoorcontrol = 1; - pixel_x = -8; - pixel_y = 32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dO" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dP" = ( -/obj/structure/flora/junglebush/c, -/obj/structure/flora/ausbushes/reedbush, -/obj/structure/flora/ausbushes/stalkybush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dQ" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"dR" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/prisonv2) -"dS" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"dT" = ( -/obj/machinery/iv_drip, -/obj/effect/decal/prison/pipe/pipeb, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dV" = ( -/obj/machinery/vending/sovietsoda, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dW" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "kitch" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dX" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/storage/box/condimentbottles, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/storage/box/drinkingglasses, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"dZ" = ( -/obj/structure/firepit, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ea" = ( -/obj/structure/fluff/arc, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"eb" = ( -/obj/machinery/button/door{ - id = "cell2"; - name = "CELL 2"; - normaldoorcontrol = 1; - pixel_x = -8; - pixel_y = 32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ec" = ( -/obj/machinery/button/door{ - id = "cell1"; - name = "CELL 1"; - normaldoorcontrol = 1; - pixel_x = -8; - pixel_y = 32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ed" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ee" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/prison/pipe/piped, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ef" = ( -/obj/machinery/door/airlock/prison, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eg" = ( -/obj/machinery/door/airlock/prison, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eh" = ( -/obj/structure/chair/prison/wood, -/obj/effect/mob_spawn/human/prison/vertuhai, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ei" = ( -/obj/structure/prison/fence{ - dir = 1; - icon_state = "fence" - }, -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/grass, -/area/prisonv2) -"ej" = ( -/obj/structure/prison/fence{ - dir = 1; - icon_state = "fence" - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"ek" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/trot, -/area/prisonv2out) -"el" = ( -/obj/structure/fluff/bus, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"em" = ( -/obj/structure/prison/fence{ - dir = 1; - icon_state = "fence" - }, -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/grass, -/area/prisonv2) -"en" = ( -/obj/structure/sign/prison/tablo, -/turf/closed/wall/brick, -/area/prisonv2) -"eo" = ( -/obj/structure/prison/fence, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"ep" = ( -/obj/structure/prison/fence, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"eq" = ( -/obj/structure/prison/fence, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/prisonv2) -"er" = ( -/obj/item/trash/semki, -/turf/open/floor/beton, -/area/prisonv2) -"es" = ( -/obj/structure/prison/fence, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/prisonv2) -"et" = ( -/obj/structure/prison/fence, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/prisonv2) -"eu" = ( -/obj/structure/sign/prison/tablo, -/obj/structure/sign/prison/blok1, -/turf/closed/wall/brick, -/area/prisonv2) -"ev" = ( -/obj/effect/bump_teleporter{ - id = "down22"; - id_target = null - }, -/turf/closed/wall/brick, -/area/prisonv2) -"ew" = ( -/obj/structure/sign/prison/tablo, -/obj/structure/sign/prison/uprava, -/turf/closed/wall/brick, -/area/prisonv2) -"ex" = ( -/obj/machinery/door/airlock/prison, -/turf/open/floor/wood, -/area/prisonv2) -"ey" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "vorota"; - name = "Keep Calm" - }, -/turf/open/floor/beton, -/area/prisonv2) -"ez" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/trot, -/area/prisonv2) -"eA" = ( -/obj/machinery/door/poddoor{ - id = "zone1"; - name = "zone door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/trot, -/area/prisonv2) -"eB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/trot, -/area/prisonv2) -"eC" = ( -/obj/machinery/door/poddoor{ - id = "zone2"; - name = "zone door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/trot, -/area/prisonv2) -"eE" = ( -/obj/machinery/door/poddoor{ - id = "zone1"; - name = "zone door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/beton, -/area/prisonv2) -"eH" = ( -/obj/machinery/door/poddoor{ - id = "zone2"; - name = "zone door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/beton, -/area/prisonv2) -"eI" = ( -/obj/structure/sign/prison/pyan, -/turf/closed/wall/brick, -/area/prisonv2) -"eJ" = ( -/obj/machinery/door/airlock/prison, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/trot, -/area/prisonv2) -"eK" = ( -/obj/structure/sign/prison/pobeda, -/turf/closed/wall/brick, -/area/prisonv2) -"eL" = ( -/obj/structure/sign/prison/net, -/turf/closed/wall/brick, -/area/prisonv2) -"eM" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/space_heater, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eN" = ( -/obj/structure/table/prison, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eO" = ( -/obj/structure/table/prison, -/obj/item/toy/cards/deck, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eP" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/trot, -/area/prisonv2) -"eQ" = ( -/obj/structure/punching_bag, -/turf/open/floor/trot, -/area/prisonv2) -"eR" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"eS" = ( -/obj/structure/table/wood, -/obj/item/razor, -/obj/item/storage/box/bodybags, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eT" = ( -/obj/structure/bed/roller, -/obj/effect/mob_spawn/human/prison/doctor, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eU" = ( -/obj/structure/chair/prison/wood, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eV" = ( -/obj/structure/sink/kitchen{ - dir = 4; - pixel_x = -14 - }, -/obj/machinery/button/door{ - id = "kuhnya"; - name = "Zakrit' Ebala"; - pixel_x = -32; - pixel_y = 0 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eW" = ( -/obj/machinery/food_cart, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eX" = ( -/obj/machinery/prisonplant, -/obj/item/storage/secure/safe{ - pixel_x = -32 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eY" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/ointment, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"eZ" = ( -/obj/item/reagent_containers/food/drinks/dry_ramen, -/obj/structure/table/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fa" = ( -/obj/structure/table/prison, -/obj/item/dice/d20, -/obj/item/toy/cards/deck/cas, -/obj/item/toy/cards/deck/cas/black, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kuhnya"; - name = "zakrito" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fc" = ( -/obj/machinery/gibber, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fd" = ( -/obj/structure/chair/prison/wood{ - dir = 4; - icon_state = "chair" - }, -/turf/open/floor/carpet, -/area/prisonv2) -"fe" = ( -/obj/structure/prison/pipe, -/turf/open/floor/beton, -/area/prisonv2) -"ff" = ( -/obj/structure/table/prison, -/obj/item/food/bearsteak, -/turf/open/floor/carpet, -/area/prisonv2) -"fg" = ( -/obj/structure/chair/prison/wood{ - dir = 8; - icon_state = "chair" - }, -/turf/open/floor/carpet, -/area/prisonv2) -"fh" = ( -/obj/structure/table/prison, -/obj/item/food/fuegoburrito, -/turf/open/floor/carpet, -/area/prisonv2) -"fi" = ( -/turf/open/floor/trot, -/area/prisonv2) -"fj" = ( -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"fk" = ( -/obj/machinery/light/streetlight{ - no_emergency = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"fl" = ( -/obj/machinery/space_heater, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fm" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/gauze, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fn" = ( -/obj/structure/sign/poster/official/safety_internals, -/turf/closed/wall/brick, -/area/prisonv2) -"fo" = ( -/obj/structure/sign/prison/yannp, -/turf/closed/wall/brick, -/area/prisonv2) -"fp" = ( -/obj/effect/holodeck_effect/cards, -/obj/structure/table/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kuhnya"; - name = "zakrito" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/beton, -/area/prisonv2) -"fs" = ( -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/beton, -/area/prisonv2) -"ft" = ( -/obj/structure/holohoop{ - dir = 4; - icon_state = "hoop" - }, -/turf/open/floor/trot, -/area/prisonv2) -"fv" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/beton, -/area/prisonv2) -"fw" = ( -/obj/structure/holohoop{ - dir = 8; - icon_state = "hoop" - }, -/turf/open/floor/trot, -/area/prisonv2) -"fx" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fy" = ( -/obj/effect/decal/hammerandsickle, -/turf/open/floor/beton, -/area/prisonv2) -"fz" = ( -/obj/structure/bookcase/random, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fA" = ( -/obj/structure/table/prison, -/obj/item/food/onionrings, -/turf/open/floor/carpet, -/area/prisonv2) -"fB" = ( -/obj/structure/table/prison, -/obj/item/food/stuffedlegion, -/turf/open/floor/carpet, -/area/prisonv2) -"fC" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/epinephrine, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/storage/pill_bottle/mutadone, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fD" = ( -/obj/machinery/chem_dispenser/drinks{ - density = 0; - pixel_x = -32 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fE" = ( -/obj/structure/closet/crate/miningcar, -/obj/item/pickaxe, -/obj/item/clothing/head/hardhat/orange, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/trot, -/area/prisonv2) -"fF" = ( -/obj/structure/table/prison, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/prisonv2) -"fG" = ( -/obj/structure/table/prison, -/obj/item/toy/cards/deck/cas, -/turf/open/floor/carpet, -/area/prisonv2) -"fH" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fI" = ( -/obj/structure/table/wood, -/obj/item/scalpel, -/obj/item/retractor, -/obj/item/surgicaldrill, -/obj/item/surgical_drapes, -/obj/item/circular_saw, -/obj/item/cautery, -/obj/item/hemostat, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fJ" = ( -/obj/structure/table/optable, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fK" = ( -/obj/structure/table/prison, -/obj/item/food/cubancarp, -/turf/open/floor/carpet, -/area/prisonv2) -"fL" = ( -/obj/structure/table/prison, -/obj/item/food/dankpocket, -/turf/open/floor/carpet, -/area/prisonv2) -"fM" = ( -/obj/structure/table/wood, -/obj/item/storage/backpack/duffelbag/syndie/med, -/obj/item/storage/pill_bottle/mining, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fN" = ( -/obj/machinery/iv_drip, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"fP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"fQ" = ( -/obj/structure/bed/roller, -/obj/effect/mob_spawn/human/prison/doctor, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fR" = ( -/obj/structure/chair/prison/wood{ - dir = 1; - icon_state = "chair" - }, -/turf/open/floor/carpet, -/area/prisonv2) -"fS" = ( -/obj/machinery/chem_dispenser, -/obj/effect/decal/prison/pipe/piped, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"fT" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, -/obj/structure/closet/crate/wooden, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"fU" = ( -/obj/structure/statue/silver/md{ - anchored = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"fW" = ( -/obj/structure/table/prison, -/turf/open/floor/carpet, -/area/prisonv2) -"fX" = ( -/obj/structure/statue/sandstone/venus{ - anchored = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"fY" = ( -/obj/structure/statue/sandstone/venus{ - anchored = 1; - dir = 1; - icon_state = "venus" - }, -/turf/open/floor/trot, -/area/prisonv2) -"fZ" = ( -/obj/machinery/light, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ga" = ( -/obj/effect/turf_decal/mining, -/turf/closed/wall/brick, -/area/prisonv2) -"gb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/spawner/randomarcade, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gc" = ( -/obj/structure/table/prison, -/obj/item/toy/cards/deck/cas/black, -/turf/open/floor/carpet, -/area/prisonv2) -"gd" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer{ - pixel_x = -32 - }, -/obj/machinery/deepfryer, -/obj/machinery/light, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ge" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/storage/box/beakers, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gf" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gg" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gh" = ( -/obj/structure/kitchenspike, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gi" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "kitch" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gj" = ( -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/prison, -/turf/open/floor/trot, -/area/prisonv2) -"gk" = ( -/obj/machinery/light, -/turf/open/floor/trot, -/area/prisonv2) -"gl" = ( -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gm" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/bear, -/obj/item/food/meat/slab/human/mutant/slime, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gn" = ( -/obj/effect/mob_spawn/human/cook, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"go" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human, -/obj/item/food/meat/slab/human/mutant/slime, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gp" = ( -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gq" = ( -/obj/structure/mineral_door/wood, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/trot, -/area/prisonv2) -"gr" = ( -/obj/structure/prison/pipe{ - dir = 5; - icon_state = "trubas" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gs" = ( -/obj/machinery/bookbinder, -/turf/open/floor/carpet, -/area/prisonv2) -"gt" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gu" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor_switch/oneway{ - id = "ussr"; - name = "mining conveyor" - }, -/turf/open/floor/trot, -/area/prisonv2) -"gw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/trot, -/area/prisonv2) -"gx" = ( -/obj/machinery/mineral/processing_unit_console{ - machinedir = 2 - }, -/turf/closed/wall/brick, -/area/prisonv2) -"gy" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/door/window/southright, -/obj/machinery/door/window/northright, -/turf/open/floor/trot, -/area/prisonv2) -"gz" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/trot, -/area/prisonv2) -"gA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gB" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "ussr"; - name = "WORK HARD" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gC" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "ussr"; - name = "WORK HARD" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gD" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "ussr"; - name = "WORK HARD" - }, -/obj/machinery/mineral/processing_unit{ - dir = 4; - input_dir = 4; - output_dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gE" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "ussr"; - name = "WORK HARD" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/trot, -/area/prisonv2) -"gF" = ( -/obj/effect/bump_teleporter{ - id = "street2"; - id_target = "hydro" - }, -/obj/machinery/light, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"gG" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human/mutant, -/obj/item/food/meat/slab/human/mutant/slime, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gH" = ( -/obj/structure/rack, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gI" = ( -/obj/structure/table, -/obj/item/food/meat/slab/human/mutant/zombie, -/obj/item/food/meat/slab/xeno, -/obj/effect/mob_spawn/human/corpse/damaged, -/obj/machinery/reagentgrinder, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gJ" = ( -/obj/structure/rack, -/obj/item/kitchen/knife/butcher, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gK" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human/mutant/fly, -/obj/item/food/meat/slab/human/mutant/golem, -/obj/item/food/meat/slab/human/mutant/golem, -/obj/item/food/meat/slab/human/mutant/golem/adamantine, -/obj/item/food/meat/slab/human/mutant/lizard, -/obj/item/food/meat/slab/human/mutant/skeleton, -/obj/item/food/meat/slab/human/mutant/zombie, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gL" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human/mutant/fly, -/obj/item/food/meat/slab/human/mutant/golem, -/obj/item/food/meat/slab/human/mutant/golem/adamantine, -/obj/item/food/meat/slab/human/mutant/lizard, -/obj/item/food/meat/slab/human/mutant/shadow, -/obj/item/food/meat/slab/human/mutant/skeleton, -/obj/item/food/meat/slab/human/mutant/zombie, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gM" = ( -/obj/machinery/processor, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human/mutant/fly, -/obj/item/food/meat/slab/human/mutant/lizard, -/obj/item/food/meat/slab/human/mutant/plant, -/obj/item/food/meat/slab/human/mutant/shadow, -/obj/item/food/meat/slab/human/mutant/skeleton, -/obj/item/food/meat/slab/human/mutant/zombie, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gO" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gP" = ( -/obj/structure/closet/crate/freezer, -/obj/item/food/meat/slab/human/mutant/fly, -/obj/item/food/meat/slab/human/mutant/lizard, -/obj/item/food/meat/slab/human/mutant/plant, -/obj/item/food/meat/slab/human/mutant/skeleton, -/obj/item/food/meat/slab/human/mutant/zombie, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gQ" = ( -/obj/structure/chair/prison/wood{ - dir = 4; - icon_state = "chair" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gR" = ( -/obj/structure/chair/prison/wood{ - dir = 8; - icon_state = "chair" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gS" = ( -/obj/machinery/computer/slot_machine, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gT" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gU" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "zone1"; - name = "Inner Door"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "zone2"; - name = "Outter Door"; - pixel_x = -6; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "cells"; - name = "LOCKDOWN"; - pixel_x = 6; - pixel_y = -2 - }, -/obj/machinery/button/door{ - id = "ulitsa"; - name = "Street Doors"; - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gV" = ( -/obj/structure/table, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gW" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "vorota"; - name = "Zakrit Ebala"; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gX" = ( -/obj/structure/table, -/obj/item/clothing/mask/balaclava, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"gY" = ( -/obj/machinery/computer/crew, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ha" = ( -/obj/structure/closet/crate/miningcar, -/turf/open/floor/trot, -/area/prisonv2out) -"hb" = ( -/mob/living/simple_animal/hostile/megafauna/dragon, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hc" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, -/obj/structure/closet/crate/wooden, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hd" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/semki, -/turf/open/floor/trot, -/area/prisonv2) -"he" = ( -/obj/effect/spawner/lootdrop/crate_spawner, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hf" = ( -/obj/item/trash/candy, -/turf/open/floor/trot, -/area/prisonv2) -"hg" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/turf/open/floor/trot, -/area/prisonv2) -"hh" = ( -/obj/structure/statue/sandstone/assistant{ - anchored = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"hi" = ( -/obj/machinery/door/airlock/prison, -/obj/effect/turf_decal/delivery, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"hj" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hk" = ( -/mob/living/simple_animal/hostile/asteroid/fugu, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hl" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/prisonv2out) -"hm" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/prisonv2out) -"hn" = ( -/mob/living/simple_animal/hostile/wizard, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ho" = ( -/mob/living/simple_animal/hostile/asteroid/curseblob, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hp" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hq" = ( -/obj/machinery/wish_granter, -/turf/closed/mineral/random/prison, -/area/prisonv2out) -"hr" = ( -/turf/open/floor/pod, -/area/prisonv2out) -"hs" = ( -/turf/closed/wall/brick, -/area/prisonv2out) -"ht" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/wood, -/area/prisonv2out) -"hu" = ( -/obj/structure/table/wood, -/obj/item/storage/backpack/satchel/explorer, -/turf/open/floor/wood, -/area/prisonv2out) -"hv" = ( -/obj/structure/table/wood, -/obj/item/tank/internals/oxygen/yellow, -/turf/open/floor/wood, -/area/prisonv2out) -"hw" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, -/obj/structure/closet/crate/wooden, -/turf/open/floor/wood, -/area/prisonv2out) -"hx" = ( -/obj/structure/bed, -/obj/item/bedsheet/nanotrasen, -/turf/open/floor/wood, -/area/prisonv2out) -"hy" = ( -/obj/structure/table/wood, -/obj/item/kitchen/knife/combat, -/turf/open/floor/wood, -/area/prisonv2out) -"hz" = ( -/turf/open/floor/wood, -/area/prisonv2out) -"hA" = ( -/obj/machinery/prisonplant, -/turf/open/floor/wood, -/area/prisonv2out) -"hB" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/wood, -/area/prisonv2out) -"hC" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/ancient, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/wood, -/area/prisonv2out) -"hD" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/tactical, -/obj/item/storage/firstaid/fire, -/turf/open/floor/wood, -/area/prisonv2out) -"hE" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/brute, -/turf/open/floor/wood, -/area/prisonv2out) -"hF" = ( -/obj/effect/mob_spawn/human/syndicate/battlecruiser/assault, -/turf/open/floor/wood, -/area/prisonv2out) -"hG" = ( -/mob/living/simple_animal/hostile/megafauna/dragon, -/turf/open/lava/smooth/lava_land_surface, -/area/prisonv2out) -"hH" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk/watcher/icewing, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/prisonv2out) -"hI" = ( -/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/prisonv2out) -"hJ" = ( -/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, -/turf/closed/mineral/random/prison, -/area/prisonv2out) -"hK" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/prisonv2out) -"hL" = ( -/obj/machinery/light, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hM" = ( -/turf/closed/mineral/random/high_chance, -/area/prisonv2out) -"hN" = ( -/turf/closed/wall/mineral/titanium/survival, -/area/prisonv2out) -"hO" = ( -/obj/machinery/door/airlock/survival_pod, -/turf/open/floor/pod, -/area/prisonv2out) -"hP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/pod, -/area/prisonv2out) -"hQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/pod, -/area/prisonv2out) -"hS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/pod, -/area/prisonv2out) -"hT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"hU" = ( -/obj/machinery/door/airlock/prison, -/turf/open/floor/trot, -/area/prisonv2) -"hV" = ( -/obj/machinery/gateway, -/turf/open/floor/pod, -/area/prisonv2out) -"hW" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/trot, -/area/prisonv2) -"hX" = ( -/obj/machinery/door/airlock/prison/cell, -/turf/open/floor/trot, -/area/prisonv2) -"hY" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/trot, -/area/prisonv2) -"hZ" = ( -/turf/closed/indestructible/rock, -/area/prisonv2) -"ia" = ( -/turf/closed/mineral/random/prison, -/area/prisonv2) -"ib" = ( -/obj/structure/toilet{ - dir = 4 - }, -/mob/living/simple_animal/slime/random, -/turf/open/floor/trot, -/area/prisonv2) -"ic" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/trot, -/area/prisonv2) -"id" = ( -/obj/machinery/light, -/turf/open/floor/pod, -/area/prisonv2out) -"ie" = ( -/obj/structure/rospilovo/okno{ - icon_state = "okno1" - }, -/turf/closed/wall/brick, -/area/prisonv2) -"if" = ( -/obj/effect/flora_spawner, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"ig" = ( -/obj/structure/table/prison, -/obj/item/reagent_containers/food/drinks/mug/tea, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ih" = ( -/obj/structure/table/prison, -/obj/item/reagent_containers/food/drinks/soda_cans/shamblers, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ii" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/beton, -/area/prisonv2) -"ij" = ( -/obj/machinery/power/apc{ - areastring = "/area/prisonv2"; - cell_type = /obj/item/stock_parts/cell/high/plus; - dir = 8; - name = "Prison APC"; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/beton, -/area/prisonv2) -"ik" = ( -/obj/machinery/prisonplant, -/obj/effect/decal/prison/pipe/pipec, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"il" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"im" = ( -/obj/machinery/prisonplant, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"in" = ( -/obj/structure/prison/tv, -/obj/structure/table/prison, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"io" = ( -/obj/effect/bump_teleporter{ - id = "hydro"; - id_target = "street2" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"ip" = ( -/obj/machinery/door/airlock/prison/cell, -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/trot, -/area/prisonv2) -"iq" = ( -/obj/structure/toilet{ - dir = 8 - }, -/mob/living/simple_animal/slime, -/turf/open/floor/trot, -/area/prisonv2) -"ir" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"is" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"it" = ( -/obj/machinery/prisonplant, -/obj/item/storage/secure/safe{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iv" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iw" = ( -/obj/machinery/gibber, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ix" = ( -/obj/machinery/hydroponics, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iy" = ( -/obj/machinery/hydroponics, -/obj/effect/decal/prison/pipe, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iz" = ( -/obj/machinery/hydroponics, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iA" = ( -/obj/machinery/vending/hydroseeds, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/beton, -/area/prisonv2) -"iC" = ( -/obj/structure/table/wood, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/beton, -/area/prisonv2) -"iD" = ( -/obj/structure/table/wood, -/obj/effect/decal/prison/pipe/pipea, -/obj/item/shovel/spade, -/obj/item/cultivator, -/turf/open/floor/beton, -/area/prisonv2) -"iE" = ( -/obj/structure/fireaxecabinet, -/turf/closed/wall/brick, -/area/prisonv2) -"iF" = ( -/obj/machinery/door/airlock/prison, -/obj/structure/cable, -/turf/open/floor/trot, -/area/prisonv2) -"iG" = ( -/obj/structure/sign/poster/contraband/tools, -/turf/closed/wall/brick, -/area/prisonv2) -"iH" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/beton, -/area/prisonv2) -"iI" = ( -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2) -"iJ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency/old, -/turf/open/floor/trot, -/area/prisonv2) -"iK" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical/old, -/turf/open/floor/trot, -/area/prisonv2) -"iL" = ( -/obj/structure/cable, -/turf/open/floor/trot, -/area/prisonv2) -"iM" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/trot, -/area/prisonv2) -"iN" = ( -/obj/structure/table, -/obj/item/storage/toolbox/artistic, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/trot, -/area/prisonv2) -"iO" = ( -/obj/structure/table, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/cell_charger, -/turf/open/floor/trot, -/area/prisonv2) -"iP" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/beton, -/area/prisonv2) -"iQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 2; - min_temperature = 80; - on = 1; - target_temperature = 80 - }, -/turf/open/floor/beton, -/area/prisonv2) -"iR" = ( -/obj/machinery/hydroponics, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iS" = ( -/obj/machinery/biogenerator, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"iT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/beton, -/area/prisonv2) -"iU" = ( -/obj/structure/closet/crate/hydroponics, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/mask/bandana/green, -/turf/open/floor/beton, -/area/prisonv2) -"iV" = ( -/obj/item/pickaxe/mini, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2) -"iW" = ( -/mob/living/simple_animal/crab/kreb{ - name = "Mehanik Zhora" - }, -/turf/open/floor/beton, -/area/prisonv2) -"iX" = ( -/obj/structure/cable, -/turf/open/floor/beton, -/area/prisonv2) -"iY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/beton, -/area/prisonv2) -"iZ" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ja" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, -/area/prisonv2) -"jb" = ( -/obj/machinery/door/window/northleft, -/obj/structure/flora/ausbushes/brflowers, -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/prisonv2) -"jc" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/flora/grass/jungle/b, -/mob/living/simple_animal/chicken, -/turf/open/floor/grass, -/area/prisonv2) -"jd" = ( -/turf/open/floor/vault, -/area/prisonv2) -"je" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/vault, -/area/prisonv2) -"jf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/vault, -/area/prisonv2) -"jg" = ( -/obj/effect/mob_spawn/human/prison/mehanik, -/obj/effect/mob_spawn/human/prison/mehanik, -/obj/effect/mob_spawn/human/prison/mehanik, -/turf/open/floor/trot, -/area/prisonv2) -"jh" = ( -/obj/machinery/door/airlock/prison, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/trot, -/area/prisonv2) -"ji" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/trot, -/area/prisonv2) -"jj" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/junglebush/c, -/turf/open/floor/grass, -/area/prisonv2) -"jk" = ( -/obj/structure/flora/junglebush, -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/prisonv2) -"jl" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/flora/ausbushes/grassybush, -/mob/living/simple_animal/chicken, -/turf/open/floor/grass, -/area/prisonv2) -"jm" = ( -/obj/structure/prison/pipe, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"jn" = ( -/obj/structure/sign/prison/tok, -/turf/closed/wall/brick, -/area/prisonv2) -"jp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/prison/pipe{ - dir = 6; - icon_state = "trubas" - }, -/turf/open/floor/vault, -/area/prisonv2) -"jq" = ( -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/prisonv2) -"jr" = ( -/turf/open/floor/pod/light, -/area/prisonv2) -"js" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/vault, -/area/prisonv2) -"jt" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/bulbs, -/obj/item/storage/box/lights/tubes, -/obj/item/storage/box/lights/tubes, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/trot, -/area/prisonv2) -"ju" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jv" = ( -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jz" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/prisonv2) -"jA" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/prisonv2) -"jB" = ( -/obj/effect/bump_teleporter{ - id = "podval"; - id_target = "b1s" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"jC" = ( -/obj/machinery/door/airlock/survival_pod{ - dir = 4 - }, -/turf/open/floor/pod, -/area/prisonv2out) -"jD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/vault, -/area/prisonv2) -"jE" = ( -/obj/machinery/power/port_gen/pacman/coal{ - active = 1; - bound_height = 64; - bound_width = 64; - icon_state = "portgen0_1"; - layer = 5; - max_integrity = 2000; - sheets = 25 - }, -/obj/structure/cable, -/turf/open/floor/pod/light, -/area/prisonv2) -"jF" = ( -/obj/structure/table, -/obj/item/storage/box/matches, -/turf/open/floor/trot, -/area/prisonv2) -"jG" = ( -/obj/machinery/telecomms/bus/preset_one/birdstation, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jI" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jJ" = ( -/obj/machinery/seed_extractor, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"jK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"jL" = ( -/obj/structure/flora/junglebush/c, -/turf/open/floor/grass, -/area/prisonv2) -"jM" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/prisonv2) -"jN" = ( -/obj/machinery/vending/engineering{ - req_access_txt = "150" - }, -/turf/closed/wall/brick, -/area/prisonv2) -"jO" = ( -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/obj/item/stack/tile/trot, -/turf/open/floor/beton, -/area/prisonv2) -"jP" = ( -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/vault, -/area/prisonv2) -"jQ" = ( -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/vault, -/area/prisonv2) -"jR" = ( -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/item/stack/sheet/mineral/coal, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/vault, -/area/prisonv2) -"jS" = ( -/obj/structure/table, -/obj/item/storage/box/mousetraps, -/turf/open/floor/trot, -/area/prisonv2) -"jT" = ( -/obj/machinery/telecomms/server/presets/common/birdstation, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jV" = ( -/obj/machinery/telecomms/processor/preset_one/birdstation, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"jX" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/prisonv2) -"jZ" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/item/mop, -/obj/item/mop, -/obj/item/mop, -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/obj/item/storage/bag/trash, -/obj/item/storage/bag/trash, -/turf/open/floor/trot, -/area/prisonv2) -"ka" = ( -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/obj/item/stack/tile/beton, -/turf/open/floor/trot, -/area/prisonv2) -"kb" = ( -/obj/item/storage/box/rndboards, -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kc" = ( -/obj/machinery/autolathe{ - name = "sovietlathe" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kd" = ( -/obj/structure/table, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/trot, -/area/prisonv2) -"ke" = ( -/obj/structure/table, -/obj/item/extinguisher, -/obj/item/extinguisher, -/turf/open/floor/trot, -/area/prisonv2) -"kf" = ( -/obj/structure/table, -/obj/item/storage/box/emptysandbags, -/obj/item/storage/box/emptysandbags, -/turf/open/floor/trot, -/area/prisonv2) -"kg" = ( -/obj/machinery/telecomms/receiver/preset_left/birdstation, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"kh" = ( -/obj/machinery/telecomms/broadcaster/preset_left/birdstation, -/turf/open/floor/circuit/red/telecomms, -/area/prisonv2) -"ki" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kj" = ( -/obj/machinery/light, -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, -/area/prisonv2) -"kk" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, -/area/prisonv2) -"kl" = ( -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/turf/closed/wall/brick, -/area/prisonv2) -"km" = ( -/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner/hunter, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2out) -"kn" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "podv" - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2) -"ko" = ( -/obj/effect/decal/tuman, -/turf/open/floor/trot, -/area/prisonv2) -"kp" = ( -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"kq" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/machinery/light/streetlight{ - no_emergency = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"kr" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/turf/open/floor/trot, -/area/prisonv2) -"ks" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 10; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kt" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"ku" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/obj/machinery/light/streetlight{ - no_emergency = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"kv" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/obj/structure/prison/pipe{ - dir = 6; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kw" = ( -/obj/effect/decal/tuman, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/beton, -/area/prisonv2) -"kx" = ( -/obj/item/trash/can, -/obj/effect/decal/tuman, -/obj/structure/prison/pipe{ - dir = 1; - icon_state = "trubas" - }, -/turf/open/floor/beton, -/area/prisonv2) -"ky" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 6; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kz" = ( -/obj/item/trash/can, -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/turf/open/floor/trot, -/area/prisonv2) -"kA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"kB" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat{ - desc = "Согреет твою жопу на улице."; - name = "bushlat" - }, -/obj/item/clothing/suit/hooded/wintercoat{ - desc = "Согреет твою жопу на улице."; - name = "bushlat" - }, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/delivery, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kD" = ( -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kE" = ( -/obj/effect/decal/prison/pipe{ - pixel_y = 12 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kF" = ( -/obj/machinery/prisonplant, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kG" = ( -/obj/structure/chair/prison/wood{ - dir = 4; - icon_state = "chair" - }, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kH" = ( -/obj/structure/table/prison, -/obj/item/toy/xmas_cracker, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kI" = ( -/obj/structure/chair/prison/wood{ - dir = 8; - icon_state = "chair" - }, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kJ" = ( -/obj/structure/table/prison, -/obj/item/storage/pill_bottle/dice, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kK" = ( -/obj/structure/table/prison, -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/obj/effect/decal/prison/pipe/pipea, -/obj/effect/spawner/bundle/costume/nyangirl, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kL" = ( -/obj/structure/table/prison, -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kM" = ( -/obj/effect/decal/prison/pipe/pipea, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kN" = ( -/obj/machinery/prisonplant, -/obj/effect/decal/prison/pipe/pipeb, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kO" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/turf/closed/wall/brick, -/area/prisonv2) -"kP" = ( -/obj/machinery/door/poddoor{ - id = "ulitsa"; - name = "ussr door" - }, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"kQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kR" = ( -/obj/structure/table/prison, -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"kT" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kU" = ( -/obj/effect/bump_teleporter{ - id = "u1u"; - id_target = "u1d" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"kV" = ( -/obj/effect/bump_teleporter{ - id = "u2u"; - id_target = "u2d" - }, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"kW" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/reagent_containers/food/drinks/bottle/tomatojuice, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kX" = ( -/obj/effect/bump_teleporter{ - id = "b1u"; - id_target = "b1d" - }, -/obj/machinery/light, -/turf/open/floor/plasteel/stairs, -/area/prisonv2) -"kY" = ( -/obj/structure/showcase/perfect_employee, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"kZ" = ( -/obj/machinery/button/door{ - id = "cells"; - name = "LOCKDOWN"; - pixel_x = 6; - pixel_y = 6 - }, -/turf/closed/wall/brick, -/area/prisonv2) -"la" = ( -/obj/structure/showcase/machinery/signal_decrypter, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lb" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lc" = ( -/obj/machinery/button/door{ - id = "cell6"; - name = "CELL 6"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ld" = ( -/obj/machinery/button/door{ - id = "cell7"; - name = "CELL 7"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"le" = ( -/obj/machinery/button/door{ - id = "cell8"; - name = "CELL 8"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lf" = ( -/obj/machinery/button/door{ - id = "cell9"; - name = "CELL 9"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lg" = ( -/obj/machinery/button/door{ - id = "cell10"; - name = "CELL 10"; - normaldoorcontrol = 1; - pixel_x = 8; - pixel_y = -32; - req_access_txt = "150"; - req_one_access_txt = "150"; - specialfunctions = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lh" = ( -/obj/machinery/prisonplant, -/obj/effect/decal/prison/pipe/piped, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"li" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lj" = ( -/obj/structure/fireplace{ - pixel_x = 0 - }, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lk" = ( -/obj/item/trash/can, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"ll" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 6" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lm" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 7" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ln" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 8" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lo" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 9" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lp" = ( -/obj/machinery/door/airlock/prison/cell{ - name = "CELL 10" - }, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lq" = ( -/mob/living/simple_animal/pet/gondola, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lr" = ( -/obj/structure/falsewall/brick, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2) -"ls" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lt" = ( -/obj/effect/decal/prison/pipe/pipec, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lu" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/pinpointer/crew, -/obj/item/pinpointer/crew, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lv" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lw" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/closet/pcloset{ - name = "armband cabinet" - }, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/engine, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/accessory/armband/med, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/accessory/armband/science, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/clothing/accessory/armband/cargo, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lx" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/turf/open/floor/beton, -/area/prisonv2) -"ly" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "church" - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lz" = ( -/obj/machinery/prisonplant, -/turf/open/floor/carpet, -/area/prisonv2) -"lA" = ( -/obj/item/bedsheet/patriot, -/obj/effect/mob_spawn/human/prison/chaplain, -/turf/open/floor/carpet, -/area/prisonv2) -"lB" = ( -/obj/structure/table/prison, -/obj/item/clothing/mask/joy, -/obj/effect/spawner/bundle/costume/highlander, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lC" = ( -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = -14 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lD" = ( -/obj/effect/decal/prison/pipe/pipec, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lE" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/gun/ballistic/shotgun/riot, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lF" = ( -/obj/item/bedsheet/yellow, -/obj/structure/bed, -/obj/effect/mob_spawn/human/prison/vertuhai, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lG" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lH" = ( -/obj/machinery/space_heater, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lI" = ( -/obj/structure/closet/wardrobe/chaplain_black, -/turf/open/floor/carpet, -/area/prisonv2) -"lJ" = ( -/obj/structure/table/prison, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prisonv2) -"lK" = ( -/obj/structure/table/prison, -/obj/item/storage/bag/trash, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lL" = ( -/obj/structure/bed/prison/bed, -/obj/effect/mob_spawn/human/prison/prisoner, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lM" = ( -/obj/item/trash/semki, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"lN" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/storage/box/zipties, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lO" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lP" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lQ" = ( -/obj/structure/bookcase/random, -/turf/open/floor/carpet/black, -/area/prisonv2) -"lR" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/storage/box/zipties, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lS" = ( -/obj/structure/mineral_door/wood, -/turf/open/floor/carpet, -/area/prisonv2) -"lT" = ( -/obj/effect/decal/prison/pipe/piped, -/obj/structure/table/prison, -/obj/item/toy/cards/deck, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lU" = ( -/obj/effect/decal/prison/pipe/piped, -/obj/structure/table/prison, -/obj/item/clothing/mask/cigarette/cigar/havana, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lV" = ( -/obj/effect/decal/prison/pipe/piped, -/obj/structure/table/prison, -/obj/item/storage/fancy/cigarettes/cigpack_carp, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lW" = ( -/obj/effect/decal/prison/pipe/piped, -/obj/structure/table/prison, -/obj/item/storage/fancy/rollingpapers, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lX" = ( -/obj/effect/decal/prison/pipe/piped, -/obj/structure/table/prison, -/obj/item/food/salad/validsalad, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lY" = ( -/obj/structure/dresser, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"lZ" = ( -/obj/structure/closet/pcloset, -/obj/item/gun/ballistic/revolver/nagant, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"ma" = ( -/obj/structure/mirror/magic/lesser{ - desc = "A collab of the Wizard Federation and the Syndicate, a specialized mirror to help our operatives personalize themselves while stuck in this icy hell-hole."; - pixel_x = -32 - }, -/obj/machinery/prisonplant, -/obj/machinery/light, -/turf/open/floor/carpet/black, -/area/prisonv2) -"mb" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/mob_spawn/human/prison/nachalnik, -/turf/open/floor/carpet/black, -/area/prisonv2) -"mc" = ( -/obj/item/gun/grenadelauncher, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/obj/machinery/light, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/structure/closet/pcloset, -/obj/item/card/id/keys, -/obj/item/card/id/keys, -/obj/item/card/id/keys, -/turf/open/floor/carpet/black, -/area/prisonv2) -"md" = ( -/obj/effect/decal/tuman, -/turf/closed/wall/brick, -/area/prisonv2) -"me" = ( -/obj/machinery/vending/cola/shamblers, -/turf/open/floor/carpet, -/area/prisonv2) -"mf" = ( -/obj/structure/table/prison, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/carpet, -/area/prisonv2) -"mg" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 9; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"mh" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe, -/turf/open/floor/trot, -/area/prisonv2) -"mi" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe, -/obj/machinery/light/streetlight{ - no_emergency = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"mj" = ( -/obj/effect/decal/tuman, -/obj/effect/bump_teleporter/prison{ - id = "up22"; - id_target = "down22" - }, -/obj/structure/prison/pipe{ - dir = 5; - icon_state = "trubas" - }, -/turf/open/floor/trot, -/area/prisonv2) -"mk" = ( -/obj/effect/decal/tuman, -/obj/machinery/light/streetlight{ - no_emergency = 1 - }, -/turf/open/floor/trot, -/area/prisonv2) -"ml" = ( -/obj/structure/closet/crate/wooden, -/turf/open/floor/carpet, -/area/prisonv2) -"mm" = ( -/obj/structure/table/prison, -/obj/item/nullrod, -/turf/open/floor/carpet, -/area/prisonv2) -"mn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"mo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"mp" = ( -/obj/effect/decal/hammerandsickle, -/obj/effect/decal/tuman, -/turf/open/floor/beton, -/area/prisonv2) -"pH" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/trot, -/area/prisonv2) -"rE" = ( -/obj/item/bedsheet/yellow, -/obj/structure/bed, -/obj/effect/mob_spawn/human/prison/vertuhai, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"uU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/boxplanet/caves, -/area/prisonv2) -"Ru" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/prisonv2) -"UV" = ( -/obj/structure/prison/pipe{ - dir = 4; - icon_state = "trubas" - }, -/obj/machinery/light, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"Wi" = ( -/obj/item/bedsheet/yellow, -/obj/structure/bed, -/obj/effect/mob_spawn/human/prison/vertuhai, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka, -/area/prisonv2) -"Wt" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/beton, -/area/prisonv2) -"WN" = ( -/obj/structure/chair/prison/wood{ - dir = 8; - icon_state = "chair" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/prisonv2) - -(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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(3,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(4,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(5,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(6,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -bg -fk -fi -fi -fi -fk -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(7,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -ae -bf -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -aq -aq -aS -aU -bh -aw -aU -cn -cx -aU -di -dj -au -dO -ei -fi -aD -aD -aD -fi -aD -aD -aD -bE -bE -ie -bE -ie -bE -ie -bE -bE -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(8,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -ad -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -ar -aI -av -aM -bi -bz -bS -co -cn -cL -dj -dj -cx -dP -ej -fi -aD -aD -aD -fi -aD -fU -aD -bE -ai -ak -ak -ak -ak -ak -ai -bE -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(9,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -as -aJ -av -aN -bj -av -bT -cp -cy -cM -dk -dj -dC -dQ -ei -fi -aD -aD -aD -fi -aD -aD -aD -bE -dU -fz -fH -fz -fz -fz -fZ -bE -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -hm -ab -hm -ab -hm -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(10,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -at -aK -aT -aV -aU -av -aU -aq -cz -aq -dl -dj -dF -cx -em -fi -aD -aD -aD -gk -bE -bE -bE -fo -ak -bl -bl -bl -bl -bl -ak -ie -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(11,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -au -at -aU -bE -bE -ie -bE -bE -aU -cN -aZ -dy -dG -aK -em -fi -aD -aD -aD -fi -ie -ai -eN -bO -ai -bl -bl -bl -bl -bl -ai -ie -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ag -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(12,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -av -aU -bE -bE -ig -bb -bb -bE -bE -aq -aU -aq -aU -aU -em -fi -aD -aD -aD -fi -cJ -bl -bl -bl -bl -fz -fz -fz -gg -fz -ak -bE -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(13,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -aw -bE -bE -ao -ak -bl -bO -bO -bE -bE -ie -bE -ie -bE -bE -fi -aD -aD -aD -fi -cJ -bl -bl -bl -bl -bl -bl -bl -bl -bl -ak -ie -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -hm -hm -ab -hm -ab -hm -ab -hm -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(14,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -ax -bE -ai -ak -ak -bl -bO -bO -im -ak -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -ie -ai -eO -bO -ai -bl -bl -bl -bl -bl -ai -ie -fi -bg -bg -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ag -bf -bf -if -bf -ag -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(15,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -av -ac -ak -ba -bl -bl -bl -bl -bl -bl -bl -bl -bl -ak -ac -fi -aD -aD -aD -gk -bE -bE -bE -bE -ak -fz -fz -gg -fz -fz -ak -bE -fi -bg -bg -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ag -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(16,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -ax -bE -ai -ak -ak -bl -bO -bO -ck -ak -ak -ak -ak -ai -en -fi -aD -aD -aD -fi -aD -aD -aD -bE -ak -bl -bl -bl -bl -bl -ak -ie -fi -bg -bg -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(17,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -aw -bE -aX -aW -ak -bl -bO -bO -bE -bE -ie -bE -ie -bE -bE -fi -aD -aD -aD -fi -aD -fX -aD -ie -ak -bl -bl -bl -bl -bl -ak -ie -fi -bg -bg -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -hm -ab -ab -ab -hm -ab -hm -ab -hm -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ag -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(18,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -ay -aO -bE -bE -ih -bk -bk -bE -bE -ay -cn -ay -av -au -eo -fi -aD -aD -aD -fi -aD -aD -aD -bE -dU -fz -fz -fz -fz -fz -fZ -bE -fi -bg -bg -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(19,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -aj -ab -ab -ab -bg -bg -az -az -ay -bE -bE -ie -bE -bE -aq -az -dm -dz -av -au -ep -fi -aD -aD -aD -fi -fi -fi -fi -ie -bl -bl -bl -bl -ak -ak -ai -bE -fi -bg -bg -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(20,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -bg -bg -aA -au -au -bc -bs -bA -aq -cq -ay -cO -dn -dA -dH -dR -eq -fi -aD -aD -aD -fi -fi -fi -fi -bE -fF -bl -bl -gs -bE -bE -bE -bE -fi -bg -bg -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -cf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -cf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -km -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -aa -"} -(21,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -aB -au -aY -be -aU -bB -aU -cr -cC -aS -do -dB -dI -dS -es -fi -aD -aD -aD -fi -aD -aD -aD -ie -fg -bl -bl -bl -bE -aD -aD -aD -fi -bg -bg -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -am -am -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -aa -"} -(22,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -aB -ar -aZ -ay -bt -bC -bY -cs -cD -cR -dp -dC -dJ -cn -et -fi -aD -aD -aD -fi -aD -fY -aD -en -fG -fR -gc -fR -bE -aD -hh -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -am -am -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -aa -"} -(23,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -bg -aC -aP -aP -aC -bu -bD -bZ -bD -cE -bD -bD -bu -bD -bu -bg -fi -aD -aD -aD -fi -aD -aD -aD -bE -bE -ie -ie -bE -bE -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ag -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -fT -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -aa -"} -(24,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fk -fi -fi -fi -fk -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fk -fi -fi -fi -fk -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -aa -"} -(25,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -aa -"} -(26,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ho -ho -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -aa -"} -(27,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(28,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fk -aD -aD -aD -fk -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(29,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fi -aE -aE -aE -fi -bE -bE -bE -bE -bE -bE -bE -ie -ie -bE -bE -fj -fr -fr -fr -fj -bE -bE -ie -bE -bE -ie -bE -bE -fi -aE -aE -aE -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -aa -"} -(30,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -bg -aF -aF -aF -bg -bE -bE -ca -cj -cW -ak -ai -ak -ak -ai -bE -bg -aF -aF -aF -bg -bE -dv -eS -it -fl -fC -fI -bE -bg -aF -aF -aF -bg -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -aa -"} -(31,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bg -bg -fi -aG -aG -aG -bm -bE -bE -bE -bE -bE -dU -ak -ak -ak -ak -ie -fi -aG -aG -aG -fi -bE -bV -ak -ak -ak -ak -fJ -ie -fi -aG -aG -aG -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -aa -"} -(32,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -bn -bE -bE -bE -bE -aH -ak -ak -ak -ak -ak -ie -fi -aD -aD -aD -fi -cW -ak -ak -ak -ak -ak -fM -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -aa -"} -(33,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -bn -bE -bE -cb -cj -cW -ak -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -cW -ak -ak -ak -ak -ak -fN -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ag -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -aa -"} -(34,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -bo -bE -bE -bE -bE -bE -bE -ak -ak -ak -ak -aH -fi -aD -aD -aD -fi -eI -dD -ak -ak -ak -ak -fQ -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -aa -"} -(35,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bI -ak -ak -cY -bE -ak -ak -ak -gQ -bE -fi -aD -er -aD -fi -bE -dT -eT -eY -fm -bR -fS -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ag -ag -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(36,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bK -ak -ak -ak -dd -ak -ak -ak -cw -bE -fk -aD -aD -aD -fk -bE -bE -ie -ie -ie -ie -bE -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ag -ag -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(37,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cc -cH -cS -cZ -bE -dE -ak -ak -gR -bE -fi -aD -aD -aD -fi -aH -eP -fi -ft -fi -fi -gj -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(38,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -cT -dU -ak -ak -ak -bE -fi -aD -aD -aD -fi -bE -fi -aD -aD -aD -aD -fi -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -ab -bf -ab -ab -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -aa -"} -(39,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cd -ak -ak -cY -bE -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -ie -eQ -aD -aD -aD -aD -eQ -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -ag -ab -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -aa -"} -(40,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bK -cK -ak -ak -de -ak -ak -ak -ak -ie -fi -aD -aD -aD -fi -bE -fi -aD -er -aD -aD -fi -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -aa -"} -(41,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cc -cH -cS -cZ -bE -dM -ak -ak -ak -ie -fi -aD -aD -aD -fi -ie -eQ -aD -aD -aD -aD -eQ -ie -fk -aD -aD -aD -fk -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(42,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -fk -aD -aD -aD -fk -bE -bE -bE -bE -cI -cV -dU -ak -ak -ai -bE -fi -er -aD -aD -fi -bE -eR -aD -aD -aD -aD -gk -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -aa -"} -(43,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -ct -ak -ak -cY -bE -ak -ak -ak -gQ -bE -fi -aD -aD -aD -fi -ie -eQ -aD -aD -aD -aD -eQ -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(44,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bK -ak -ak -ak -df -ak -ak -ak -bI -bE -fk -aD -aD -aD -fk -bE -fi -aD -fv -aD -aD -fi -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(45,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cc -cH -cS -cZ -bE -dN -ak -ak -gR -bE -fi -aD -aD -aD -fi -eJ -fi -fi -fw -fi -fi -fi -eJ -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(46,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -cX -dU -ak -ak -ak -bE -fi -aD -aD -aD -fi -eJ -fi -fi -fi -fi -fi -fi -eJ -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -fT -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -aa -"} -(47,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cw -ak -ak -in -bE -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -eK -ak -ak -ak -ak -ak -ak -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -af -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -aa -"} -(48,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bK -ak -ak -ak -dg -ak -ak -ak -ak -ie -fi -aD -aD -aD -fi -ie -ak -ak -ak -ak -ak -ak -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(49,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cc -cH -cS -cZ -bE -eb -ak -ak -ak -ie -fi -bp -aD -aD -fi -bE -dU -ak -gQ -gQ -ak -fZ -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -am -am -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(50,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -bE -dU -ak -ak -ai -bE -fi -aD -aD -er -fi -ie -ak -eU -eZ -fp -gQ -ak -ie -fk -aD -aD -aD -fk -bg -bg -bg -bg -bg -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -cf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -am -am -am -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(51,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cG -ak -ak -cY -bE -ak -ak -ak -gQ -bE -fi -aD -aD -aD -fi -bE -ak -eU -cw -eZ -gQ -ak -bE -fi -aD -aD -aD -fi -bg -bg -bg -bg -bg -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -am -am -am -am -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(52,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bK -ak -ak -ak -dh -ak -ak -ak -cw -bE -fi -aD -aD -aD -fi -ie -ak -eU -fa -cw -gQ -ak -ie -fi -aD -aD -aD -fi -bg -bE -bE -bg -bg -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -am -am -am -bf -if -bf -bf -hM -bf -bf -hM -hM -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(53,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -cc -cH -cS -cZ -bE -ec -ak -ak -gR -bE -fi -aD -aD -aD -fi -bE -ak -ak -gR -gR -ak -ak -bE -fi -aD -aD -aD -fi -eJ -gF -bE -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hM -hM -bf -hM -hM -bf -hM -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(54,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -bE -ed -ak -ak -ai -eu -fi -aD -aD -aD -fi -bE -dV -ak -ak -ak -ak -gb -bE -fi -aD -er -aD -fi -bg -bE -bE -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ho -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hM -hM -bf -hM -hM -bf -hM -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(55,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bW -fi -fi -fi -bE -bE -ef -ef -bE -ev -fi -aD -aD -aD -fi -bE -bE -ie -ie -ie -ie -bE -bE -fi -aD -aD -aD -fi -bg -bg -bg -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ah -bf -ah -bf -bf -bf -ho -ho -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ag -bf -bf -bf -bf -hQ -bf -hQ -bf -bf -bf -bf -hM -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(56,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fi -fi -bn -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fk -aD -aD -aD -fk -bg -bg -bg -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hN -hN -jC -hN -hN -bf -bf -bf -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(57,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fe -aD -er -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ho -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hN -hN -hR -hr -hR -hN -hN -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(58,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -bp -aD -aD -er -aD -fe -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hN -hN -hr -hr -hr -hr -hr -hN -hN -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(59,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -bp -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fe -aD -aD -aD -bp -aD -aD -aD -er -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hL -hN -hP -hr -hr -hr -hr -hr -id -hN -ir -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(60,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -bp -aD -fe -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -er -aD -fi -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hO -hr -hr -hr -hV -hr -hr -hr -hO -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(61,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -bq -fi -bn -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fk -aD -aD -aD -fk -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hL -hN -hP -hr -hr -hr -hr -hr -id -hN -ir -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(62,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -aH -ie -bE -bE -bE -ie -ie -ie -bE -bE -fi -aD -aD -aD -fi -bE -bE -ie -bE -bE -ie -bE -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hN -hN -hr -hr -hr -hr -hr -hN -hN -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(63,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -br -ak -ak -bE -ai -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -bE -ai -ak -cY -ak -ak -ai -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ag -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hN -hN -hS -hr -hS -hN -hN -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(64,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -ak -ce -cu -bE -ak -bl -bl -dK -bV -ie -fi -aD -aD -aD -fi -ie -ak -fd -fd -fd -fd -ak -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hM -bf -bf -hN -hN -jC -hN -hN -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(65,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bJ -cg -cu -cW -ak -bl -bl -dK -cB -ie -fi -aD -er -aD -fi -bE -ak -ff -fA -fK -fW -ak -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -hM -bf -bf -hT -bf -hT -bf -bf -hM -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(66,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bM -ik -ci -bE -ak -is -bl -ak -cF -bE -fi -aD -aD -aD -fi -eL -ak -fg -fg -fg -fg -ak -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -cf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -hM -hM -hM -bf -bf -bf -bf -hM -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(67,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -bE -bE -cJ -dL -bE -ew -fi -aD -aD -aD -fi -ie -ai -ak -ak -ak -ak -ai -aH -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -hM -bf -bf -bf -bf -hM -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(68,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -il -ak -bE -cv -cY -bl -ak -ai -bE -fk -aD -aD -aD -fk -bE -ak -fd -fd -fd -fd -ak -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -am -am -am -am -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(69,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bP -cj -bl -cJ -bl -bl -bl -bl -bl -ex -fi -aD -bp -aD -fi -ef -ak -fh -fB -fL -fW -ak -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -am -am -am -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(70,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bQ -cj -bl -cJ -bl -bl -bl -bl -bl -ex -fi -aD -aD -aD -fi -ef -ak -fg -fg -fg -fg -ak -bE -fk -aD -aD -aD -fk -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(71,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -bq -bE -bE -ch -ak -bE -cA -is -bl -ak -ed -aH -fk -aD -aD -aD -fk -en -ed -is -ak -ak -ak -ai -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(72,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -bE -bE -cJ -bE -bE -bE -fi -aD -bp -aD -fi -bE -aH -bE -fb -fq -bE -bE -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(73,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -ak -cY -ak -bE -ai -cY -bl -ak -ai -bE -fi -aD -aD -aD -fi -bE -dW -eV -ak -ak -fD -gd -bE -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(74,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -ak -ce -cu -cW -ak -bl -bl -dK -da -ie -fi -aD -aD -aD -fi -ie -dX -ak -ak -ak -ak -ge -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(75,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bg -bg -fi -aD -aD -aD -fi -ie -bN -cg -cu -bE -ak -bl -bl -dK -db -ie -fi -aD -aD -aD -fi -ie -dY -ak -ak -ak -ak -gf -ie -fi -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(76,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bM -bR -ci -bE -ak -ak -bl -ak -ai -bE -fj -fs -fs -fs -fj -bE -eM -eW -fc -fx -ak -gf -bE -hf -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(77,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -fi -aD -aD -aD -fi -bE -bE -ie -bE -bE -bE -bE -cW -bE -bE -bE -fi -aD -aD -aD -fi -bE -bE -bE -bE -bE -cW -bE -bE -hg -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(78,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fk -fi -fi -fi -fi -bn -fk -aD -er -aD -fk -fi -fi -fi -fi -fi -fi -fi -hd -fk -aD -aD -aD -fk -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(79,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fe -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -ag -hJ -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(80,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -bp -aD -aD -aD -aD -aD -fe -aD -bp -fy -aD -er -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(81,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -fi -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fe -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -fi -bg -bg -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -cf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(82,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bg -fk -fi -fi -fi -fk -fi -fi -fi -fi -fi -fk -fi -fi -fi -fi -bn -fk -aD -aD -aD -fk -fi -fi -fi -fi -fi -fi -fi -fi -fk -fi -fi -bW -fk -bg -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(83,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -cW -bE -bE -aH -ez -aE -aE -aE -ez -aH -bE -bE -bE -bE -bE -bE -bE -bE -bE -hi -bE -bE -bE -bg -bg -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(84,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -ap -ap -ap -ap -ap -ap -ap -ap -ap -bE -dr -cY -ak -ak -gS -bE -eA -eE -eE -eE -eA -bE -ap -ap -ap -ap -ap -ap -ap -ap -bE -gB -bE -ap -bE -bg -bg -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(85,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -ap -ap -bE -bE -bE -bE -bE -bE -bE -aH -ds -ak -ak -ak -gT -ey -eB -aG -aG -aG -eB -bE -ap -bE -bE -bE -bE -bE -bE -bE -bE -gC -bE -ap -bE -bg -bg -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(86,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -bE -ap -bE -bE -al -bE -bx -bE -cl -bE -bE -ak -ak -ak -eh -gU -ey -fi -aD -aD -aD -gk -bE -ap -bE -fE -fO -aD -aD -aD -gt -gw -gC -bE -ap -bE -bg -bg -ab -ab -ab -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ho -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(87,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -ap -aH -aQ -ak -bG -ak -bG -ak -cU -dc -dt -ak -ak -ak -gV -ey -fi -aD -aD -aD -fi -bE -ap -bE -fE -fP -aD -aD -aD -gu -gw -gC -bE -ap -bE -bg -bg -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(88,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -bE -ap -bE -aR -ak -bH -ak -bH -ak -cU -dc -dt -ak -ak -ak -gW -ey -fi -aD -aD -aD -fi -bE -ap -bE -fE -fP -aD -aD -aD -gu -gw -gC -bE -ap -bE -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(89,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -ap -bE -bE -aL -bE -by -bE -cm -bE -bE -du -ak -ak -eh -gX -ey -fi -aD -aD -aD -gk -bE -ap -fn -fE -fP -aD -aD -aD -gv -gx -gD -aH -ap -bE -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(90,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bg -bg -bE -ap -ap -bE -bE -bE -bE -bE -bE -bE -bE -dw -ak -ak -ak -gT -ey -ez -aE -aE -aE -ez -bE -ap -bE -fE -fP -aD -aD -aD -gu -gy -gC -bE -ap -bE -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -ag -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(91,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -ap -ap -ap -ap -ap -ap -ap -ap -ap -bE -dx -ee -ak -gA -gY -bE -eC -eH -eH -eH -eC -bE -ap -bE -fE -fP -aD -aD -aD -gu -gz -gE -bE -ap -bE -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -fT -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(92,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bg -bg -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -ie -eg -bE -aH -bE -eB -aG -aG -aG -eB -bE -aH -bE -bE -bE -ga -gq -bE -bE -bE -bE -bE -bE -bE -bg -bg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -hc -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(93,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cP -cP -cP -fi -ek -fi -cP -cP -cP -cQ -cQ -cQ -cP -cP -cP -cP -cP -ha -fi -ek -fi -cP -cP -cP -cP -cP -cP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(94,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(95,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -cQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(96,1,1) = {" -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cP -cP -cP -cP -cP -cP -cP -fk -cQ -cQ -cQ -fk -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(97,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -cP -cQ -cQ -cQ -cP -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(98,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -cP -cQ -cQ -cQ -cP -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ag -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(99,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -cP -cQ -cQ -cQ -cP -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(100,1,1) = {" -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -cP -cQ -cQ -cQ -cP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hl -hl -hm -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(101,1,1) = {" -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -am -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -cP -cQ -cQ -cQ -cP -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(102,1,1) = {" -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -am -am -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -cP -cQ -cQ -cQ -cP -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(103,1,1) = {" -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -am -am -am -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -cP -cQ -cQ -cQ -cP -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(104,1,1) = {" -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -ab -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -cP -cQ -cQ -cQ -cP -am -am -am -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -if -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(105,1,1) = {" -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -fk -cQ -cQ -cQ -fk -am -am -am -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hc -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(106,1,1) = {" -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(107,1,1) = {" -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -el -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(108,1,1) = {" -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(109,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -dZ -bf -bf -if -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -hl -hl -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(110,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ea -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(111,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(112,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(113,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -am -am -bf -bf -bf -bf -bf -bf -bf -bf -af -he -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(114,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -am -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(115,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -cf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(116,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(117,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(118,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(119,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(120,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(121,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(122,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(123,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hK -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(124,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(125,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hk -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ag -fT -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(126,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -cf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(127,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -cf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(128,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(129,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(130,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(131,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(132,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(133,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(134,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hl -hl -hl -hm -hm -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(135,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -hl -hm -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(136,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hm -hm -hl -hl -hl -hl -hl -hl -bf -bf -hl -hl -hl -hl -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(137,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hc -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(138,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(139,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hG -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ag -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(140,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hl -hl -hl -hl -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(141,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hj -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hl -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(142,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(143,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -hq -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(144,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -cf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(145,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -ho -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(146,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(147,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(148,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(149,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(150,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -cf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hl -hl -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(151,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hH -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -hl -hl -hl -hl -hl -hl -hm -hm -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(152,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(153,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(154,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(155,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hm -hm -hm -hm -hm -hm -hm -hm -hm -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(156,1,1) = {" -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hm -hm -hm -hr -hr -hr -hr -hr -hr -hr -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(157,1,1) = {" -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hr -hs -hs -hs -ht -hs -hs -hs -hr -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(158,1,1) = {" -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hr -hs -hu -hy -hA -hC -hD -hs -hr -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(159,1,1) = {" -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -cf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hr -ht -hv -hz -hz -hz -hE -ht -hr -hl -hl -hl -hI -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(160,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hr -ht -hw -hz -hz -hz -hz -ht -hr -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(161,1,1) = {" -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ho -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -hk -bf -bf -bf -ab -ab -ab -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hr -ht -hw -hz -hz -hz -hz -ht -hr -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(162,1,1) = {" -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hr -hs -hx -hz -hz -hz -hF -hs -hr -hl -hl -hl -hl -hl -hl -hl -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(163,1,1) = {" -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ah -ah -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hr -hs -hs -hs -hB -hs -hs -hs -hr -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(164,1,1) = {" -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ah -ah -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -hj -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hr -hr -hr -hr -hr -hr -hr -hr -hr -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(165,1,1) = {" -ab -ab -ab -ab -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -fT -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(166,1,1) = {" -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -if -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(167,1,1) = {" -ab -ab -ab -ab -bf -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(168,1,1) = {" -ab -ab -ab -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(169,1,1) = {" -ab -ab -ab -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(170,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -hl -hl -hl -hl -hl -hl -hl -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(171,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(172,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(173,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -fT -hc -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(174,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(175,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(176,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(177,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -ab -ab -ab -ab -bf -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(178,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(179,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -ab -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -hp -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ho -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -bE -bE -bE -bE -bE -bE -bE -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -hc -fT -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ly -ak -cY -ak -ak -cw -bE -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bd -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -bE -bE -bE -bE -ac -bE -bE -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -lz -lI -bE -me -bl -ml -bE -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -bl -bl -bE -bl -bl -bl -bE -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -bE -bE -lA -bl -lS -bl -mf -mm -bE -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -iI -lr -lz -lJ -bE -bl -WN -lz -bE -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -ab -ab -aa -ab -ab -ab -ab -ab -ab -aa -bE -kn -iI -iI -iI -iI -iI -iI -iI -iI -iI -iI -bE -bE -bE -bE -bE -bE -bE -bE -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -hZ -hZ -hZ -ia -ia -ia -ia -ia -ia -ia -ia -ia -hZ -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -kl -bE -bE -aa -aa -aa -aa -"} -(195,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -hZ -ia -ia -hZ -hZ -ia -ia -ia -ia -ia -ia -hZ -hZ -kl -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -bE -aa -aa -aa -aa -"} -(196,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -hZ -hZ -kl -ko -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(197,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -hZ -hZ -kl -ko -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(198,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -hZ -hZ -kl -ko -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(199,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -ab -ia -hZ -ia -ia -ia -ia -iI -iV -uU -hZ -hZ -hZ -hZ -kl -ko -kp -kp -kp -kq -kr -kr -kr -kr -kr -kr -kr -kr -kr -kr -kr -kq -kp -kp -kp -mk -bE -aa -aa -aa -aa -"} -(200,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hn -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -ab -bE -bE -bE -bE -bE -hU -bE -bE -bE -bE -kl -kl -ko -kp -kp -kp -kr -bE -bE -ie -ie -ie -bE -ie -ie -ie -bE -bE -kr -mn -mn -mn -ko -bE -aa -aa -aa -aa -"} -(201,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -aD -aD -bE -iJ -fi -pH -jm -jB -bE -jZ -kl -ko -kp -kp -kp -kr -bE -kB -kB -kB -kB -kB -kB -kB -kB -kB -bE -kO -kP -kP -kP -md -bE -aa -aa -aa -aa -"} -(202,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -aD -aD -bE -iJ -fi -fi -jn -bE -jN -hU -kl -ko -kp -kp -kp -kr -bE -kC -kQ -kC -kC -kC -kC -kC -kQ -kC -bE -kr -mo -mo -mo -ko -bE -aa -aa -aa -aa -"} -(203,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -bf -ab -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -aD -aD -iE -iK -aD -aD -fe -aD -jO -ka -kl -ko -kp -kp -kp -kr -bE -ef -bE -bE -bE -bE -bE -cJ -bE -bE -bE -kr -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(204,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -ii -aD -bE -iK -iW -jd -jp -jD -jP -kb -kl -ko -kp -kp -kp -kr -ie -ak -ak -kX -bE -bE -ak -ak -ak -bE -bE -mg -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(205,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -ij -iX -iF -iL -iX -je -jq -jE -jQ -kc -kl -ko -kp -kp -kp -ks -bE -kD -bE -bE -bE -bE -cw -lB -lK -bE -bE -mh -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(206,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -aD -aD -bE -iM -aD -jf -jr -jr -jR -kd -kl -ko -kp -kp -kp -mh -bE -ak -ak -ak -lb -bE -bE -bE -bE -bE -bE -mh -kp -lM -kp -ko -bE -aa -aa -aa -aa -"} -(207,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -aD -aD -iG -iN -aD -jd -js -js -jd -ke -kl -ko -kp -kp -kp -kt -bE -kE -ak -ak -lc -bE -ls -lC -lL -lL -bE -mi -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(208,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -aD -aD -bE -iO -fi -jg -jt -jF -jS -kf -kl -ko -kp -kp -kp -kt -ie -kF -ak -ak -ak -ll -ak -ak -ak -ak -ie -mh -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(209,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -aD -aD -bE -bE -hU -bE -bE -bE -bE -bE -kl -ko -kp -kp -kp -kt -bE -kG -ak -ak -ak -bE -lt -lD -lD -lT -bE -mh -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(210,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -bE -bE -bE -iP -aD -gw -ju -jG -jT -kg -kl -ko -kp -kp -kp -kt -bE -kH -ak -ak -fZ -bE -bE -bE -bE -bE -bE -mh -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(211,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iP -aD -gw -jv -jv -jv -jv -kl -ko -kp -kp -kp -kt -bE -kI -ak -ak -ld -bE -ls -lC -lL -lL -bE -mh -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(212,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iP -aD -jh -jw -jH -jU -jv -kl -ko -kp -kp -kp -kt -ie -kF -ak -ak -ak -lm -ak -ak -ak -ak -ie -mh -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(213,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -if -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iQ -iY -ji -jx -jI -jV -kh -kl -ko -kp -kp -kp -ku -bE -kG -ak -ak -ak -bE -lt -lD -lD -lU -bE -mh -lM -kp -kp -ko -bE -aa -aa -aa -aa -"} -(214,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -kl -bE -ko -kp -kp -kp -kt -bE -kJ -ak -ak -fZ -bE -bE -bE -bE -bE -bE -mh -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(215,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -bE -kI -ak -ak -le -bE -ls -lC -lL -lL -bE -mh -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(216,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -ab -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -ie -kF -ak -ak -ak -ln -ak -ak -ak -ak -ie -mi -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(217,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -bE -kG -ak -ak -ak -bE -lt -lD -lD -lV -bE -mh -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(218,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kv -bE -kK -gl -gl -UV -bE -bE -bE -bE -bE -bE -mj -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(219,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ho -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -bE -kI -ak -ak -lf -bE -ls -lC -lL -lL -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(220,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ho -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -ie -kF -ak -ak -ak -lo -ak -ak -ak -ak -ie -kr -lk -kp -kp -ko -bE -aa -aa -aa -aa -"} -(221,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -bE -kG -ak -ak -ak -bE -lt -lD -lD -lW -bE -kr -kp -kp -lM -ko -bE -aa -aa -aa -aa -"} -(222,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -fT -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kt -bE -kL -ak -ak -fZ -bE -bE -bE -bE -bE -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(223,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ag -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -fT -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -bE -bE -kl -bE -ko -kp -kp -kp -kt -bE -kI -ak -ak -lg -bE -ls -lC -lL -lL -bE -kr -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(224,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -fT -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -gr -ix -iR -ix -ix -ix -iR -ix -ak -kl -ko -kp -kp -kp -kt -ie -kM -ak -ak -ak -lp -ak -ak -ak -ak -ie -kr -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(225,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ag -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -ix -ak -ak -ak -ak -ak -ak -ak -ix -kl -ko -kp -kp -kp -kt -bE -kN -kR -kR -lh -bE -lt -lD -lD -lX -bE -kr -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(226,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ag -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -io -ak -ak -ak -ak -ak -ak -ak -ak -ix -kl -ko -kp -kp -kp -kt -bE -bE -ie -ie -bE -bE -bE -bE -bE -bE -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(227,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -iy -ak -ak -ak -ak -ak -ak -ak -ix -kl -ko -kp -kp -kp -ku -kr -kO -kr -kr -kr -kr -kr -lx -lx -lx -kr -kq -kp -kp -kp -mk -bE -aa -aa -aa -aa -"} -(228,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iz -ak -ak -ak -ak -ak -ak -ak -ix -kl -ko -kp -kp -kp -kw -kA -kP -kS -kp -kp -kp -kp -kp -kp -kp -kp -kp -lM -kp -kp -kp -bE -aa -aa -aa -aa -"} -(229,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -bE -iA -ak -iS -iZ -ak -iZ -jJ -ak -ki -kl -ko -kp -kp -kp -kw -kA -kP -kS -kp -kp -lk -kp -kp -lM -kp -kp -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(230,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -cW -bE -bE -bE -bE -bE -bE -bE -kl -ko -kp -kp -kp -kx -kA -kP -kS -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -lk -kp -bE -aa -aa -aa -aa -"} -(231,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iB -aD -iT -ja -jj -aS -jK -aw -kj -kl -ko -kp -kp -kp -kw -kA -kP -kS -kp -kp -kp -kp -kp -lk -kp -kp -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(232,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iC -aD -aD -jb -jk -jz -jL -jz -aS -kl -ko -kp -kp -kp -ku -kr -kO -kr -kr -kr -kr -kr -kr -kz -kr -kr -kq -kp -kp -kp -mk -bE -aa -aa -aa -aa -"} -(233,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ag -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iD -aD -aD -jc -jl -jA -jM -jX -kk -kl -ko -kp -kp -kp -kt -bE -bE -ie -bE -bE -bE -ie -ie -ie -bE -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(234,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -af -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -hb -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iD -aD -aD -aD -aD -aD -aD -aD -aD -kl -ko -kp -kp -kp -kt -bE -fl -kT -kW -ai -bE -lu -lE -lN -lY -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(235,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -iD -iH -iU -aD -aD -aD -iU -iH -aD -kl -ko -kp -kp -kp -kt -ie -bl -bl -bl -fZ -bE -lv -bl -bl -ai -ie -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(236,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ah -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -hU -kl -ko -kp -kp -kp -kt -ie -bl -bl -bl -bl -cJ -bl -bl -bl -lZ -ie -kr -kp -lM -kp -ko -bE -aa -aa -aa -aa -"} -(237,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -hW -bE -ib -bE -hW -bE -hW -bE -hZ -hZ -hZ -hZ -bE -aD -kl -ko -kp -kp -kp -kt -bE -bl -ai -kY -bl -bE -ai -rE -lF -ai -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(238,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -fi -bE -fi -bE -fi -bE -fi -bE -hZ -hZ -hZ -hZ -bE -aD -kl -ko -kp -kp -kp -ky -bE -cJ -bE -bE -cJ -bE -bE -bE -bE -bE -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(239,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -hX -bE -hX -bE -ip -bE -hX -bE -bE -bE -bE -bE -bE -aD -kl -ko -kp -kp -kp -kr -bE -Ru -bE -bE -li -cu -cu -cu -cu -ma -bE -lx -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(240,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -if -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -bE -gh -gn -gp -iv -gJ -gH -gM -ak -hU -aD -Wt -aD -aD -aD -aD -aD -aD -aD -aD -Wt -aD -aD -aD -kl -ko -kp -kp -kp -kr -ie -bl -kU -bE -lj -lq -cu -lG -lO -cu -ie -lx -kp -lk -kp -kp -bE -aa -aa -aa -aa -"} -(241,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -bE -gh -ak -gp -ak -ak -ak -ak -ak -bE -hX -bE -hX -bE -hX -bE -hX -bE -bE -bE -bE -bE -bE -kl -bE -ko -kp -kp -kp -kr -ie -bl -kV -bE -cu -cu -cu -lG -lP -mb -ie -lx -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(242,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -bE -gh -ak -gp -ak -ak -ak -ak -ak -bE -fi -bE -fi -bE -fi -bE -fi -bE -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kz -bE -Ru -bE -kZ -li -cu -lw -lH -lQ -mc -bE -lx -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(243,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -bE -gh -ak -gp -ak -ak -ak -ak -ak -bE -hY -bE -ic -bE -iq -bE -hY -bE -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -bE -cJ -bE -bE -cJ -bE -bE -bE -bE -bE -bE -kr -kp -lk -kp -ko -bE -aa -aa -aa -aa -"} -(244,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -af -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -gh -ak -gp -ak -ak -ak -ak -ak -bE -bE -bE -bE -bE -bE -bE -bE -bE -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -bE -bl -ai -la -bl -bE -ai -Wi -lF -eX -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(245,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -bE -gi -ak -gp -gI -gI -gI -ak -gO -bE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -ie -bl -bl -bl -bl -cJ -bl -bl -bl -lZ -ie -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(246,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -gl -gl -gr -ak -ak -ak -ak -ak -bE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -ie -bl -bl -bl -fZ -bE -lv -bl -bl -ai -ie -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(247,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -gm -go -gG -iw -gK -gL -gN -gP -bE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -bE -fl -kW -kT -ai -bE -lu -lE -lR -lY -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(248,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bE -ko -kp -kp -kp -kr -bE -bE -ie -bE -bE -bE -ie -ie -ie -bE -bE -kr -kp -kp -kp -ko -bE -aa -aa -aa -aa -"} -(249,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -ab -bf -bf -ab -ab -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ko -kp -kp -kp -kq -kr -kr -kr -kr -kr -kq -lx -lx -lx -kO -kr -kq -kp -lM -kp -mk -bE -aa -aa -aa -aa -"} -(250,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -bf -bf -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ko -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kA -kP -kS -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(251,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bf -bf -bf -bf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ko -kp -kp -kp -kp -kp -kp -kp -kp -lk -kp -kp -kp -kA -kP -kS -kp -lk -mp -kp -lM -bE -aa -aa -aa -aa -"} -(252,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ko -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kp -kA -kP -kS -kp -kp -kp -kp -kp -bE -aa -aa -aa -aa -"} -(253,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -ko -kp -kp -kp -md -ko -mk -kp -kp -kp -mk -bE -aa -aa -aa -aa -"} -(254,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -bE -aa -aa -aa -aa -"} -(255,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/_maps/RandomZLevels/rospilovo.dmm b/_maps/RandomZLevels/rospilovo.dmm deleted file mode 100644 index 6051d0bb1f88..000000000000 --- a/_maps/RandomZLevels/rospilovo.dmm +++ /dev/null @@ -1,17396 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/rospilovo/tree, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"ab" = ( -/turf/closed/dz/normal/cyber, -/area/awaymission/rospilovo) -"ac" = ( -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"ad" = ( -/obj/structure/rospilovo/painting/gorbachev, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"ae" = ( -/obj/structure/rospilovo/rozetka, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"af" = ( -/obj/structure/rospilovo/okno{ - icon_state = "okno4" - }, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"ag" = ( -/obj/structure/rospilovo/cover, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"ah" = ( -/obj/structure/rospilovo/painting/stalin, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"ai" = ( -/obj/structure/rospilovo/lift, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aj" = ( -/obj/effect/bump_teleporter{ - id = "b1d"; - id_target = "b1u" - }, -/turf/open/floor/plasteel/stairs/left, -/area/awaymission/rospilovo) -"ak" = ( -/obj/structure/rospilovo/televizor/broken, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"al" = ( -/obj/structure/rospilovo/broke_table, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"am" = ( -/obj/structure/rospilovo/broke_table/right, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"an" = ( -/obj/structure/rospilovo/komod, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"ao" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"ap" = ( -/obj/structure/toilet/greyscale, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"aq" = ( -/obj/structure/sink{ - pixel_y = 32 - }, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"ar" = ( -/obj/structure/rospilovo/porog{ - dir = 1; - icon_state = "porog1" - }, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"as" = ( -/obj/structure/rospilovo/polka, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"at" = ( -/obj/structure/table/rospilovo, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"au" = ( -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"av" = ( -/obj/item/chair/wood, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aw" = ( -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"ax" = ( -/obj/structure/rospilovo/vanna, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"ay" = ( -/obj/structure/chair/wood{ - dir = 1; - icon_state = "wooden_chair" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"az" = ( -/obj/structure/rospilovo/battery{ - dir = 4; - icon_state = "gazovaya_truba" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aA" = ( -/obj/structure/rospilovo/doski/doski4, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aB" = ( -/obj/machinery/shower{ - dir = 1; - icon_state = "shower" - }, -/obj/structure/curtain, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"aC" = ( -/obj/structure/rospilovo/polka{ - dir = 8; - icon_state = "polka" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aD" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"aE" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aF" = ( -/obj/structure/rospilovo/switcher, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aG" = ( -/obj/structure/rospilovo/painting/lenin, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aH" = ( -/obj/structure/rospilovo/pech, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aI" = ( -/obj/structure/rospilovo/plita, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aJ" = ( -/obj/structure/rospilovo/truba, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aK" = ( -/obj/structure/table/rospilovo, -/obj/structure/rospilovo/televizor, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aL" = ( -/obj/structure/rospilovo/shkaf64, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aM" = ( -/obj/structure/rospilovo/clocks, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aN" = ( -/obj/structure/rospilovo/doski, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aO" = ( -/obj/structure/rospilovo/battery{ - dir = 8; - icon_state = "gazovaya_truba" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aP" = ( -/obj/structure/chair/wood{ - dir = 4; - icon_state = "wooden_chair" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aQ" = ( -/obj/structure/rospilovo/doski/doski3, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aR" = ( -/obj/structure/rospilovo/apc, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aS" = ( -/obj/structure/rospilovo/apc/open, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aT" = ( -/obj/structure/rospilovo/porog, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"aU" = ( -/obj/structure/rospilovo/porog, -/obj/effect/step_trigger/r3b0lut10n, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"aV" = ( -/obj/structure/rospilovo/apc, -/obj/structure/rospilovo/apc/open2, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"aW" = ( -/obj/structure/chair/wood, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aX" = ( -/obj/structure/rospilovo/shina, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aY" = ( -/obj/structure/rospilovo/vanna, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"aZ" = ( -/obj/structure/rospilovo/doski/doski2, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"ba" = ( -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"bb" = ( -/obj/structure/rospilovo/bochka, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bc" = ( -/turf/open/floor/dz/cyber, -/area/awaymission/rospilovo/deathtrap) -"bd" = ( -/obj/structure/rospilovo/polka{ - dir = 4; - icon_state = "polka" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"be" = ( -/obj/structure/rospilovo/doski/doski4, -/obj/structure/rospilovo/doski, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bf" = ( -/obj/structure/rospilovo/yashik/yaskik_a, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"bg" = ( -/obj/structure/rospilovo/bochka/red, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bh" = ( -/obj/structure/rospilovo/yashik/yaskik_a/big, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"bi" = ( -/obj/effect/bump_teleporter{ - id = "b1d"; - id_target = "b1u" - }, -/turf/open/floor/plasteel/stairs/right, -/area/awaymission/rospilovo) -"bj" = ( -/obj/structure/rospilovo/doski, -/obj/structure/rospilovo/polka{ - dir = 4; - icon_state = "polka" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bk" = ( -/obj/structure/rospilovo/yashik, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"bl" = ( -/obj/structure/rospilovo/water/bochka/kap, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"bm" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "floor3" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bn" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gib4" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bo" = ( -/obj/effect/rune/narsie, -/obj/projectile/magic/wipe, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bp" = ( -/obj/structure/rospilovo/intercom, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"bq" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "drip2" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"br" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/obj/effect/step_trigger/r3b0lut10n/deathtrap, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bs" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gib6-old" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bt" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "drip1" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bu" = ( -/obj/item/candle/infinite, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bv" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "trails_2" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bw" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "floor2" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bx" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "splatter5" - }, -/obj/item/candle/infinite, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"by" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gibbl1" - }, -/obj/item/candle/infinite, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bz" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "splatter2" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bA" = ( -/obj/effect/decal/cleanable/blood/bubblegum, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bB" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "u_guilty_l" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bC" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "floor6" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bD" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gib1" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bE" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gibbl4" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bF" = ( -/obj/effect/decal/cleanable/blood/bubblegum{ - icon_state = "gibbear1" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"bG" = ( -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bH" = ( -/obj/structure/rospilovo/tree, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bI" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bJ" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bK" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bL" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo2" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bM" = ( -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"bN" = ( -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"bO" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"bP" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"bQ" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"bR" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo2" - }, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"bS" = ( -/turf/closed/wall/rospilovo/beton_agro, -/area/awaymission/rospilovo) -"bT" = ( -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"bU" = ( -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"bV" = ( -/obj/structure/fluff/rospilovo{ - icon_state = "armygruz" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"bW" = ( -/obj/structure/fluff/rospilovo, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"bX" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "|6" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"bY" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "|2" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"bZ" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "-|1" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ca" = ( -/obj/structure/grille/rospilovo/beton, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cb" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "-|" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cc" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cd" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ce" = ( -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1; - icon_state = "trimline" - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cf" = ( -/turf/closed/dz/normal, -/area/awaymission/rospilovo) -"cg" = ( -/turf/open/floor/rospilovo/cyber{ - color = "#883388" - }, -/area/awaymission/rospilovo) -"ch" = ( -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"ci" = ( -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-2" - }, -/area/awaymission/rospilovo) -"cj" = ( -/obj/structure/mineral_door/wood{ - color = "#aa22aa"; - name = "кибердверь" - }, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"ck" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"cl" = ( -/obj/structure/rospilovo/okno{ - icon_state = "okno4" - }, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"cm" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "|6" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cn" = ( -/obj/structure/grille/rospilovo/beton, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"co" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cp" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"cq" = ( -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1; - icon_state = "trimline" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cr" = ( -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cs" = ( -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1; - icon_state = "trimline" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ct" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/obj/structure/grille/rospilovo/beton, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cu" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/obj/structure/rospilovo/musor_yashik/red/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cv" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/obj/structure/rospilovo/musor_yashik/green/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cw" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/obj/structure/rospilovo/musor_yashik/green/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cx" = ( -/obj/structure/rospilovo/musor_yashik/red/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cy" = ( -/obj/structure/rospilovo/shitok, -/turf/closed/wall/rospilovo/beton_agro, -/area/awaymission/rospilovo) -"cz" = ( -/obj/structure/rospilovo/shina2, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cA" = ( -/obj/structure/rospilovo/shina3, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cB" = ( -/obj/structure/rospilovo/musor_yashik/red/full, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cC" = ( -/obj/structure/rospilovo/musor_yashik/green/full, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cD" = ( -/obj/structure/rospilovo/musor_yashik/red, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cE" = ( -/obj/structure/rospilovo/shina2, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cF" = ( -/obj/structure/rospilovo/shina3, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cG" = ( -/obj/structure/rospilovo/shitok, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"cH" = ( -/obj/structure/rospilovo/shitok, -/turf/closed/wall/rospilovo/bricks, -/area/awaymission/rospilovo) -"cI" = ( -/obj/structure/rospilovo/musor_yashik/green, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cJ" = ( -/obj/structure/rospilovo/musor_yashik/green/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cK" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/obj/structure/rospilovo/shina2, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cL" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/rospilovo/musor_yashik/red/full, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cM" = ( -/obj/structure/rospilovo/stolb, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cN" = ( -/obj/structure/rospilovo/propane/dual, -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"cO" = ( -/obj/structure/grille/rospilovo/beton{ - icon_state = "|2" - }, -/obj/structure/rospilovo/propane/dual, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"cP" = ( -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"cQ" = ( -/obj/structure/rospilovo/trubas{ - dir = 10; - icon_state = "trubas" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cR" = ( -/obj/structure/rospilovo/trubas{ - dir = 8; - icon_state = "trubas" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cS" = ( -/obj/structure/rospilovo/trubas{ - dir = 9; - icon_state = "trubas" - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cT" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"cU" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/rospilovo/stolb, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cV" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/obj/structure/rospilovo/stolb, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cW" = ( -/obj/structure/rospilovo/yashik, -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"cX" = ( -/obj/structure/rospilovo/water/bochka/kap, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cY" = ( -/obj/structure/rospilovo/yashik, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"cZ" = ( -/obj/structure/rospilovo/water/luzha, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"da" = ( -/obj/structure/rospilovo/water/bochka, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"db" = ( -/obj/structure/rospilovo/water/luzha, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dc" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dd" = ( -/obj/structure/rospilovo/stolb, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"de" = ( -/obj/structure/rospilovo/truba, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"df" = ( -/obj/structure/rospilovo/yashik/yaskik_a/big, -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"dg" = ( -/obj/structure/rospilovo/yashik/yaskik_a/big, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dh" = ( -/obj/structure/rospilovo/vanna, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"di" = ( -/obj/structure/rospilovo/yashik/yaskik_a, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dj" = ( -/obj/structure/rospilovo/shitok/shitok2, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dk" = ( -/obj/structure/rospilovo/luk, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dl" = ( -/obj/structure/rospilovo/doski/doski2, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dm" = ( -/obj/structure/rospilovo/doski/doski4, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dn" = ( -/obj/structure/rospilovo/tree, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"do" = ( -/obj/structure/rospilovo/doski/doski3, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dp" = ( -/obj/structure/rospilovo/apc/open2, -/turf/closed/wall/rospilovo/bricks_white, -/area/awaymission/rospilovo) -"dq" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/rospilovo/bochka/red, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dr" = ( -/obj/structure/rospilovo/bochka, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ds" = ( -/obj/structure/rospilovo/doski, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dt" = ( -/obj/structure/rospilovo/pen, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"du" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/obj/structure/rospilovo/pen, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dv" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo3" - }, -/obj/structure/rospilovo/pen, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dw" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/rospilovo/pen, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dx" = ( -/obj/structure/rospilovo/radiation/stop, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"dy" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo2" - }, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dz" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dB" = ( -/obj/structure/rospilovo/water/bochka/kap, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dC" = ( -/obj/structure/rospilovo/yashik, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dD" = ( -/obj/structure/rospilovo/yashik/yaskik_a/big, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dF" = ( -/obj/structure/rospilovo/water/bochka, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dG" = ( -/obj/structure/rospilovo/shina2, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dI" = ( -/obj/structure/rospilovo/water/luzha, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dJ" = ( -/obj/structure/rospilovo/shina3, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dL" = ( -/obj/structure/rospilovo/bochka/red, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dM" = ( -/obj/structure/rospilovo/musor_yashik/green, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dO" = ( -/obj/structure/rospilovo/truba/vert, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dP" = ( -/obj/structure/rospilovo/propane/dual, -/turf/open/floor/rospilovo/plitka{ - icon_state = "plita4" - }, -/area/awaymission/rospilovo) -"dQ" = ( -/obj/effect/baseturf_helper/beach/raw_stone, -/turf/closed/dz/normal/cyber, -/area/awaymission/rospilovo) -"dR" = ( -/obj/structure/rospilovo/shina, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"dS" = ( -/obj/effect/baseturf_helper/beach/raw_stone, -/turf/open/floor/dz/cyber, -/area/awaymission/rospilovo/deathtrap) -"es" = ( -/obj/structure/rospilovo/musor_yashik/green, -/obj/item/storage/firstaid/brute, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"fb" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/landmark/awaystart, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"fc" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"fg" = ( -/obj/item/storage/firstaid/fire, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"fr" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"fV" = ( -/obj/effect/bump_teleporter{ - id = "b1u"; - id_target = "b1d" - }, -/turf/open/floor/plasteel/stairs/left, -/area/awaymission/rospilovo) -"hi" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"hD" = ( -/mob/living/carbon/human/combat_ai/smg, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"hH" = ( -/obj/effect/mine/pickup/healing, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"jo" = ( -/mob/living/carbon/human/combat_ai/sniper, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-2" - }, -/area/awaymission/rospilovo) -"jx" = ( -/obj/effect/bump_teleporter{ - id = "u2u"; - id_target = "u2d" - }, -/obj/item/food/cake/birthday, -/turf/open/floor/dz/cyber, -/area/awaymission/rospilovo/deathtrap) -"jE" = ( -/obj/machinery/gateway/away{ - calibrated = 0 - }, -/turf/open/floor/dz/exit, -/area/awaymission/rospilovo) -"jM" = ( -/mob/living/carbon/human/combat_ai/magnum, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"kE" = ( -/obj/structure/table/rospilovo, -/obj/item/storage/firstaid/ancient, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"lB" = ( -/obj/structure/table/rospilovo, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"lT" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"mb" = ( -/mob/living/carbon/human/combat_ai/sniper, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"nY" = ( -/obj/item/shield/riot/military, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"oG" = ( -/obj/structure/rospilovo/stolb, -/obj/structure/barricade/wooden, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"pb" = ( -/obj/structure/table/rospilovo, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"qg" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"tS" = ( -/mob/living/carbon/human/combat_ai/magnum, -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"um" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"uo" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/obj/effect/bump_teleporter{ - id = "ass"; - id_target = "blast" - }, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"uq" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"wS" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/dz/cyber, -/area/awaymission/rospilovo/deathtrap) -"xw" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"yC" = ( -/mob/living/carbon/human/combat_ai/smg, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-2" - }, -/area/awaymission/rospilovo) -"yO" = ( -/obj/item/storage/firstaid/emergency, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ze" = ( -/obj/machinery/cyberdeck, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"zp" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"Ab" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"Af" = ( -/obj/item/storage/firstaid/emergency, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"Aq" = ( -/obj/structure/barricade/wooden/crude, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"Bm" = ( -/obj/effect/mine/pickup/healing, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) -"CG" = ( -/obj/structure/table/rospilovo, -/obj/item/storage/firstaid/regular, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"CQ" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"CS" = ( -/turf/open/floor/dz/pre_exit, -/area/awaymission/rospilovo) -"Dj" = ( -/obj/machinery/cyberdeck, -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"Ds" = ( -/obj/structure/rospilovo/doski/doski3, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"DU" = ( -/obj/structure/rospilovo/doski/doski4, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"EJ" = ( -/obj/effect/bump_teleporter{ - id = "b1u"; - id_target = "b1d" - }, -/turf/open/floor/plasteel/stairs/right, -/area/awaymission/rospilovo) -"EP" = ( -/obj/effect/bump_teleporter{ - id = "blast"; - id_target = null - }, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"FE" = ( -/obj/effect/turf_decal/trimline/white/line, -/obj/effect/turf_decal/trimline/white/line{ - dir = 1; - icon_state = "trimline" - }, -/mob/living/carbon/human/combat_ai/smg, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"FW" = ( -/obj/structure/rospilovo/doski, -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/turf/open/floor/rospilovo/wood, -/area/awaymission/rospilovo) -"FX" = ( -/obj/structure/mineral_door/wood{ - color = "#aaaaaa"; - name = "деревянная дверь" - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"Gg" = ( -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"Gx" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"GD" = ( -/obj/structure/rospilovo/doski, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"GH" = ( -/obj/structure/table/rospilovo, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"HR" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"IA" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"JG" = ( -/obj/item/clothing/glasses/hud/hacker_rig, -/obj/item/clothing/head/helmet/space/chronos/hacker, -/obj/item/clothing/suit/space/hacker_rig, -/obj/item/clothing/gloves/combat/guard, -/obj/item/clothing/shoes/combat, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"KF" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/item/shield/riot/military, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"Lh" = ( -/obj/item/melee/baseball_bat/ablative, -/obj/item/melee/baseball_bat/ablative{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"LE" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"LS" = ( -/mob/living/carbon/human/combat_ai/smg, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"Ne" = ( -/obj/structure/table/rospilovo, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"Nj" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"NF" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"NH" = ( -/obj/effect/bump_teleporter{ - id = "u2d" - }, -/turf/closed/dz/normal, -/area/awaymission/rospilovo) -"NY" = ( -/mob/living/carbon/human/combat_ai/sniper, -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"ON" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo4" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"OP" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo/plitka/old, -/area/awaymission/rospilovo) -"OT" = ( -/obj/structure/rospilovo/tree, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"Pd" = ( -/obj/effect/mine/pickup/healing, -/turf/open/floor/rospilovo/cyber{ - color = "#883388" - }, -/area/awaymission/rospilovo) -"RN" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8; - icon_state = "trimline" - }, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/structure/rospilovo/shina3, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"RR" = ( -/obj/item/storage/firstaid/ancient, -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"SE" = ( -/obj/item/shield/trayshield, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"SF" = ( -/mob/living/carbon/human/combat_ai/smg, -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"SN" = ( -/mob/living/carbon/human/combat_ai/magnum, -/turf/open/floor/rospilovo/cyber{ - color = "#883388" - }, -/area/awaymission/rospilovo) -"Tp" = ( -/mob/living/carbon/human/combat_ai/pistol, -/turf/open/floor/rospilovo/cyber{ - color = "#883388" - }, -/area/awaymission/rospilovo) -"TC" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/dz/corruption, -/area/awaymission/rospilovo) -"US" = ( -/turf/open/floor/dz/cyber, -/area/awaymission/rospilovo) -"Wh" = ( -/obj/structure/rospilovo/tree{ - icon_state = "derevo5" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"Wt" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"WT" = ( -/obj/structure/rospilovo/doski/doski2, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"Xu" = ( -/mob/living/carbon/human/combat_ai/magnum, -/turf/open/floor/grass/rospilovo, -/area/awaymission/rospilovo) -"Yb" = ( -/mob/living/carbon/human/combat_ai/shotgun, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-2" - }, -/area/awaymission/rospilovo) -"Yi" = ( -/obj/effect/mine/pickup/healing, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-2" - }, -/area/awaymission/rospilovo) -"Ys" = ( -/turf/open/floor/dz/normal, -/area/awaymission/rospilovo) -"Yt" = ( -/obj/item/storage/firstaid/advanced, -/turf/open/floor/rospilovo/plitka/full, -/area/awaymission/rospilovo) -"YV" = ( -/obj/item/shield/riot/kevlar{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/shield/riot/kevlar{ - pixel_x = -2 - }, -/turf/open/floor/rospilovo, -/area/awaymission/rospilovo) -"ZM" = ( -/obj/structure/rospilovo/lift{ - pixel_x = 32 - }, -/turf/open/floor/rospilovo/plitka, -/area/awaymission/rospilovo) -"ZW" = ( -/obj/item/shield/riot/kevlar, -/obj/structure/table/wood/fancy/black, -/obj/item/katana, -/obj/item/clothing/under/syndicate, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/suit/armor/vest/leather/tailcoat, -/turf/open/floor/rospilovo/cyber{ - icon_state = "bfloor-3" - }, -/area/awaymission/rospilovo) - -(1,1,1) = {" -dQ -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(2,1,1) = {" -ab -bN -bN -bN -bN -bN -bN -bP -bN -bQ -bN -bN -bN -bN -bQ -bN -bN -bN -bN -bN -bN -bN -bP -bN -bQ -bN -bM -bM -ce -bM -bM -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bO -bN -bN -bN -bP -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -ab -ab -bc -ab -ab -jx -ab -ab -ab -ab -ab -ab -bc -bc -bc -ab -ab -ab -ab -"} -(3,1,1) = {" -ab -bN -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bH -bG -bG -bG -bG -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -dS -bc -bc -bc -bc -bc -ab -bc -ab -ab -ab -bc -bc -bc -bc -ab -ab -bc -bc -bc -bc -bc -bc -ab -ab -ab -bc -ab -ab -ab -ab -"} -(4,1,1) = {" -ab -aa -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bI -cP -bM -bM -ce -bM -bM -cP -bG -bG -bH -bG -bG -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bL -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bN -ab -ab -ac -ac -af -ac -ac -ac -ac -aM -af -ac -ac -ab -ab -ac -ac -af -ac -ac -ac -ac -ac -af -ac -ac -ab -ab -jx -ab -ab -ab -ab -bc -bc -bc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -bc -bc -bc -bc -bc -ab -ab -"} -(5,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bH -bG -bG -bN -ab -ab -ad -ak -au -az -au -ac -aI -au -aP -au -ac -ab -ab -ac -au -aA -au -au -ac -bb -bd -bd -bj -ac -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -ab -bc -bc -bc -wS -bc -bc -bc -bc -bc -bc -ab -ab -bc -ab -ab -bc -ab -ab -ab -bc -ab -ab -"} -(6,1,1) = {" -ab -bO -bG -bG -bL -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bI -bG -bG -bL -bG -bI -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bN -ab -ab -ae -al -au -au -au -ae -at -au -at -ay -ac -ab -ab -ac -aW -at -at -au -ac -ak -be -au -bg -ac -ab -ab -bc -bc -ab -ab -bc -bc -bc -bc -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -bc -bc -bc -bc -bc -ab -bc -bc -bc -ab -ab -"} -(7,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bH -bJ -bG -bK -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bN -ab -ab -af -am -av -aA -au -aE -au -au -at -au -ac -ab -ab -ac -au -at -at -au -aE -au -au -au -au -af -ab -ab -ab -bc -ab -bc -bc -ab -ab -bc -bc -bc -bc -bc -bc -bc -ab -ab -ab -ab -bc -ab -ab -ab -ab -ab -bc -ab -bc -ab -bc -ab -ab -"} -(8,1,1) = {" -ab -bN -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bN -ab -ab -ag -an -au -au -au -aF -au -au -aQ -au -ac -ab -ab -ac -aQ -au -au -au -ac -au -aZ -au -bb -ac -ab -ab -ab -bc -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -ab -ab -bc -bc -bc -bc -bc -bc -bc -bc -US -ab -bc -ab -ab -"} -(9,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bJ -bG -bK -bG -bG -bK -bG -bG -bH -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bJ -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bN -ab -ab -ac -ao -au -au -aC -ac -aJ -au -au -au -ac -ac -ac -aF -au -aY -au -au -ac -bb -an -bg -an -ac -ab -bc -ab -bc -ab -bc -bc -bc -ab -ab -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ab -ab -ab -bc -ab -ab -ab -ab -ab -bc -ab -ab -"} -(10,1,1) = {" -ab -bN -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bI -cP -bM -bM -ce -bM -bM -cT -bG -bG -bH -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bN -ab -ab -ac -ac -ac -ac -ac -aG -au -au -au -au -ac -aw -aw -ac -au -aZ -au -au -ac -ac -ac -ac -ac -ac -ab -bc -ab -bc -ab -ab -ab -bc -ab -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -bc -bc -bc -bc -bc -ab -ab -"} -(11,1,1) = {" -ab -bN -bH -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bK -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bN -ab -ab -ah -ap -aw -aw -aD -au -au -aN -au -au -aE -ar -aT -aE -au -aQ -aZ -au -au -aD -aw -aw -bk -ac -ab -bc -ab -bc -ab -bc -bc -bc -ab -ab -bc -ab -bc -bc -bc -ab -ab -bc -bc -ab -bc -bc -bc -bc -wS -ab -ab -bc -ab -ab -ab -ab -ab -"} -(12,1,1) = {" -ab -bN -bG -bJ -bG -bK -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bK -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bL -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bJ -bG -bK -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bN -ab -ab -ac -aq -ax -aB -ac -aH -au -aO -au -au -ac -aw -aw -ac -aX -au -au -au -aH -ac -bf -bh -bl -ac -ab -bc -ab -bc -ab -bc -ab -bc -ab -ab -bc -ab -bc -ab -bc -bc -ab -bc -ab -ab -bc -ab -ab -ab -ab -ab -ab -bc -ab -ab -jx -ab -ab -"} -(13,1,1) = {" -ab -bN -bI -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bI -bG -bG -bG -cP -bM -bM -ce -bM -bM -cp -bG -bK -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bK -bG -bG -bN -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aR -aw -aw -aR -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -bc -ab -bc -ab -bc -ab -bc -ab -ab -bc -bc -bc -ab -ab -bc -ab -bc -ab -ab -bc -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -ab -ab -"} -(14,1,1) = {" -ab -bP -bG -bK -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bH -bG -bI -bG -bG -bG -bG -bG -bG -bJ -bG -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bI -bG -bG -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -aw -aw -aj -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -wS -ab -bc -bc -bc -bc -ab -jx -ab -bc -bc -ab -bc -bc -bc -bc -bc -ab -ab -bc -bc -bc -bc -ab -bc -ab -ab -ab -"} -(15,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -cP -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bG -bJ -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bH -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bp -aw -aw -bi -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -ab -ab -ab -bc -ab -ab -ab -ab -ab -bc -ab -ab -bc -ab -ab -ab -ab -bc -ab -ab -ab -"} -(16,1,1) = {" -ab -bN -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bK -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bN -ab -ab -ac -ac -ac -ac -ac -ac -ac -aM -ac -ac -aS -aw -aw -aV -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ab -bc -bc -bc -bc -ab -bc -bc -bc -bc -bc -ab -ab -bc -ab -bc -bc -ab -bc -bc -bc -ab -"} -(17,1,1) = {" -ab -bN -bH -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bN -ab -ab -ac -as -au -az -au -ac -aI -au -aP -au -ac -aw -aw -ac -bm -bt -bw -au -bB -ac -ab -ab -ab -ab -bc -bc -ab -ab -ab -bc -ab -ab -ab -ab -ab -ab -wS -ab -ab -bc -ab -bc -ab -ab -ab -ab -ab -ab -bc -bc -ab -bc -ab -ab -ab -bc -ab -"} -(18,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bI -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bN -ab -ab -ae -at -au -au -au -ae -aK -au -kE -av -ac -aw -aw -ac -au -bu -bx -bu -au -ac -ab -ab -ab -bc -bc -ab -ab -bc -bc -bc -bc -ab -bc -bc -bc -ab -bc -ab -ab -bc -ab -bc -bc -bc -bc -bc -ab -ab -ab -bc -ab -bc -ab -bc -ab -bc -ab -"} -(19,1,1) = {" -ab -bN -bI -bG -bG -bL -bG -bG -bG -bG -bG -bH -bJ -bG -bG -bG -bG -bH -bJ -bG -bL -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bH -bJ -bG -bK -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bI -bG -bG -bL -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bN -ab -ab -af -at -ay -aA -au -aE -au -au -kE -ay -ac -aw -aw -ac -bn -bu -bo -bu -au -aE -au -bc -bc -bc -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -ab -ab -ab -bc -bc -bc -bc -ab -ab -ab -ab -ab -ab -ab -bc -ab -bc -bc -bc -bc -bc -ab -"} -(20,1,1) = {" -ab -bQ -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bL -cP -bM -bM -ce -bM -bM -dy -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bN -ab -ab -ag -an -au -au -au -ac -au -au -aQ -au -ac -aw -aw -ac -au -bu -by -bu -bC -ac -ab -ab -ab -bc -bc -bc -bc -bc -bc -bc -bc -ab -bc -ab -ab -ab -bc -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -bc -ab -ab -ab -ab -"} -(21,1,1) = {" -ab -bN -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bI -bG -bG -bK -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -dd -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bN -ab -ab -ac -ao -au -au -aC -ac -aJ -au -au -au -ac -aw -aw -ac -bq -bv -bz -au -au -ac -ab -ab -ab -ab -ab -bc -ab -bc -ab -ab -bc -ab -bc -ab -bc -bc -bc -ab -bc -bc -bc -bc -bc -bc -bc -ab -bc -bc -bc -bc -ab -ab -bc -ab -ab -ab -ab -"} -(22,1,1) = {" -ab -bN -bG -bI -bG -bG -bG -bJ -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -cP -bM -bM -ce -bM -bM -cP -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bH -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bN -ab -ab -ac -ac -ac -ac -ac -ac -aL -au -au -au -ac -aw -aw -ac -au -au -bA -au -bD -ac -ab -ab -ab -ab -ab -ab -ab -jx -ab -bc -bc -ab -bc -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -bc -ab -ab -bc -bc -bc -bc -bc -ab -ab -"} -(23,1,1) = {" -ab -bN -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bN -ab -ab -ac -ap -aw -aw -aD -au -au -aN -au -au -aE -ar -aU -br -bF -bw -au -au -au -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -ab -bc -bc -bc -bc -jx -ab -ab -bc -bc -ab -ab -bc -ab -ab -bc -ab -bc -ab -ab -ab -ab -"} -(24,1,1) = {" -ab -bN -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bI -bG -bG -bL -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bK -bG -bG -bN -ab -ab -ac -aq -aw -aB -ac -aH -au -aO -au -au -ac -aw -aw -ac -bs -au -au -au -bE -ac -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -ab -bc -ab -bc -ab -bc -ab -bc -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -bc -bc -ab -bc -bc -bc -ab -ab -"} -(25,1,1) = {" -ab -bN -bG -bG -bG -bI -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bI -bG -bG -bN -ab -ab -ac -ac -ac -ac -ac -ac -af -aF -af -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -ab -ab -bc -ab -bc -bc -bc -ab -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ab -ab -ab -ab -ab -ab -bc -ab -ab -"} -(26,1,1) = {" -ab -bN -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bH -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bc -bc -bc -bc -bc -bc -ab -ab -"} -(27,1,1) = {" -ab -bR -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(28,1,1) = {" -ab -bN -bG -bI -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bI -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bM -bM -ce -bM -bM -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -ab -"} -(29,1,1) = {" -ab -bN -bK -bG -bG -bH -bG -bI -bG -bG -bG -bG -bG -bH -bG -bI -bG -bG -bG -bG -bH -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -ZW -ZW -ZW -ZW -cf -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cf -ab -"} -(30,1,1) = {" -ab -bN -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bJ -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -dc -bG -bG -bG -bG -bG -bJ -bG -bK -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -NH -ch -ch -ch -ch -cj -ch -ch -ch -ch -ch -ch -ch -Bm -ch -ch -ch -ch -ch -um -ch -ch -ch -ch -ch -ch -ch -ch -cg -cf -ab -"} -(31,1,1) = {" -ab -bN -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -bM -bM -ce -bM -bM -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -bN -ab -cf -ZW -ZW -ZW -ZW -cf -cg -cg -Tp -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -ch -cg -cg -cg -cg -cg -ch -cg -cf -ab -"} -(32,1,1) = {" -ab -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 -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 -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cj -cf -cf -cf -cf -cg -ch -cg -cf -ab -"} -(33,1,1) = {" -ab -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 -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -HR -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -cg -cg -cg -cg -cf -cg -cg -cg -ch -cg -cg -cg -cf -cg -ch -cg -cf -ab -"} -(34,1,1) = {" -ab -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -bM -bM -bM -bM -bM -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -bM -bM -bM -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -Yb -ci -ci -cg -cf -cg -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -cf -ab -"} -(35,1,1) = {" -ab -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 -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 -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -ci -ci -ci -cg -cf -cg -ci -ci -Yb -ci -ci -cg -cf -cg -ch -cg -cf -ab -"} -(36,1,1) = {" -ab -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 -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 -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -ci -ci -ci -cg -cf -cg -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -cf -ab -"} -(37,1,1) = {" -ab -bN -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -bM -bM -bM -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dc -cP -cP -cp -cP -cT -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -cg -ch -cg -cg -cf -cg -cg -cg -cg -cg -cg -cg -cf -cg -um -cg -cf -ab -"} -(38,1,1) = {" -ab -bN -cm -cm -cm -cm -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bX -bX -bX -bX -bX -bZ -dz -co -co -cq -co -co -dz -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -cl -bN -bN -cl -bN -bN -bN -bN -bN -bN -cP -bM -bM -bM -cP -ac -ac -ac -af -ac -af -ac -ac -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bH -cP -bM -bM -ce -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cf -cf -cj -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cg -ch -cg -cf -ab -"} -(39,1,1) = {" -ab -bN -bI -bG -bG -bL -bS -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bS -RR -bM -bM -bM -bM -ca -ba -cr -cr -cs -co -co -dz -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -cP -bM -bM -bM -cP -ac -cf -cf -cf -cf -cf -cf -ac -bG -bG -bG -bG -bG -bJ -bG -cU -bG -bI -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -cg -ch -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -ch -cg -cf -ab -"} -(40,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dz -co -co -cq -co -co -dz -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Ys -Ys -Ys -cf -ac -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -cF -bG -bG -bG -bG -cF -bG -bI -cP -bM -bM -ce -bM -bM -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cg -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -cg -cf -ab -"} -(41,1,1) = {" -ab -bN -bG -bG -bI -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dz -co -co -cq -co -co -ba -bN -cf -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -cf -bN -cP -bM -dr -bM -cP -ac -cf -Gg -Gg -Ys -Ys -cf -af -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bG -bL -bG -bI -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cf -cg -ch -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -ch -cg -cg -ch -cg -cf -ab -"} -(42,1,1) = {" -ab -bN -bG -bK -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -cf -cl -cP -bM -bM -bM -cP -ac -cf -Gg -Gg -Ys -Ys -cf -ac -bL -bG -bG -bG -bG -cY -bG -bG -bG -bG -bG -bG -bG -bG -bG -cY -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -Yi -ci -ci -ci -ci -jo -cg -ch -cg -cg -ch -cg -cf -ab -"} -(43,1,1) = {" -ab -bQ -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -cN -bM -bM -bM -bM -ca -cP -cA -bM -FE -bM -bM -cP -bN -cf -Ys -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -cf -bN -cP -bM -bM -bM -cP -ac -cf -Gg -Gg -Gg -Ys -cf -ac -bG -bG -bI -cF -bG -bJ -bG -bK -dt -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -ch -cg -cg -Bm -cg -cf -ab -"} -(44,1,1) = {" -ab -bO -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -bU -bM -cA -bM -bM -bM -bM -bM -bM -ce -bM -bM -cP -cl -cf -Gg -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -cf -bN -dC -bM -bM -bM -cP -af -cf -Ys -Gg -Gg -Ys -cf -cH -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -ch -cg -cg -ch -cg -cf -ab -"} -(45,1,1) = {" -ab -bN -bG -cu -bG -bK -bS -cf -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -bU -bM -bM -bM -bM -bM -bM -bM -bM -ce -bM -bM -cP -bN -cf -Gg -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Ys -Gg -Ys -cf -ac -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bG -bG -bJ -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -jo -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -ch -cg -cg -ch -cg -cf -ab -"} -(46,1,1) = {" -ab -bN -bG -bG -bI -bG -bS -cf -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -bU -bM -bM -dl -bM -bM -bM -bM -bM -ce -bM -bM -cP -bN -cf -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Ys -Ys -Ys -cf -ac -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bH -bG -bG -bJ -bG -dw -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -ch -cj -ch -ch -cg -ci -ci -yC -ci -ci -ci -ci -ci -cg -ch -cg -cg -ch -cg -cf -ab -"} -(47,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -cZ -cP -bN -cf -Gg -Gg -Gg -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -ac -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bH -dd -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -Yi -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -ch -SN -cg -ch -cg -cf -ab -"} -(48,1,1) = {" -ab -bN -bG -bI -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -cf -dp -cP -bM -bM -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -ac -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -ch -cg -cg -ch -cg -cf -ab -"} -(49,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -cf -cl -cP -bM -bM -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -af -bG -bG -bG -bG -bI -bG -bG -bG -bG -cM -bG -cK -bG -bG -bL -bG -bI -bG -bG -bI -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -ch -cg -cg -ch -cg -cf -ab -"} -(50,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -dd -cl -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -cf -bN -cP -bM -bM -bM -cP -af -cf -Ys -Gg -Gg -Ys -cf -ac -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -ci -ci -ci -ci -ci -ci -ci -ci -cg -cf -cg -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -cg -cf -ab -"} -(51,1,1) = {" -ab -bN -bG -bG -bL -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -cB -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -Ys -cf -bN -dM -bM -cA -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -ac -bL -bG -bG -bG -bG -bG -bG -bG -bG -cY -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cf -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -ch -cg -cf -ab -"} -(52,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -cC -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -ac -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -Xu -bG -bG -bL -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cg -ch -cg -cf -ab -"} -(53,1,1) = {" -ab -bN -bJ -bG -bG -bK -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -cz -bM -bM -cD -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Gg -Gg -Ys -cf -ac -de -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bG -bG -bJ -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -cg -ch -cg -cf -ab -"} -(54,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -cD -ca -dd -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -ac -cf -Ys -Ys -Ys -Ys -cf -ac -bG -bG -bI -cx -bG -bG -dv -bG -bG -bH -bG -bG -bG -bG -bG -bG -dt -bI -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cg -ch -cg -cf -ab -"} -(55,1,1) = {" -ab -bP -bG -bK -bG -bG -bS -cf -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -cD -ca -dB -bM -bM -ce -bM -bM -cP -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cG -dB -bM -bM -bM -cP -ac -cf -cf -cf -cf -cf -cf -ac -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -cP -bM -dl -ce -bM -bM -bN -ab -cf -ch -ch -ch -ch -cf -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -Bm -cg -cf -ab -"} -(56,1,1) = {" -ab -bN -bG -bG -bG -bJ -bS -cf -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -cl -bN -cl -bN -bN -bN -bN -cP -bM -bM -bM -cP -ac -ac -af -ac -ac -ac -ac -ac -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bI -bG -bG -bL -bG -bI -cY -bG -bG -bG -bG -cP -bM -dk -ce -bM -bM -bN -ab -cf -ch -uo -ch -ch -cj -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -ch -zp -ch -ch -ch -ch -ch -ch -ch -ch -ch -cg -cf -ab -"} -(57,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Gg -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -dk -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bJ -bG -bK -bG -cF -bG -bG -bG -bI -bG -bG -NF -Aq -NF -bI -NF -NF -bG -cP -bM -bM -bM -cP -NF -Aq -oG -dj -bG -bG -cI -bG -bG -cY -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -cE -bG -bG -bG -bG -bG -bG -bI -cP -bM -bM -ce -bM -bM -bN -ab -cf -ch -ch -ch -ch -cf -cg -cg -cg -cg -cg -cg -Pd -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -cg -SN -cg -cg -cf -ab -"} -(58,1,1) = {" -ab -bO -bG -bG -bL -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dC -bM -bM -ce -bM -bM -dF -cP -dI -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dz -cP -dz -ba -dz -dz -cP -dd -bM -bM -bM -cP -NF -CQ -ON -bG -cF -bL -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -cP -bM -bM -ce -bM -bM -bN -ab -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -ab -"} -(59,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -co -bM -co -co -co -co -bM -bM -bM -bM -bM -bM -co -co -co -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -dt -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -bN -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(60,1,1) = {" -ab -bN -bG -bJ -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -co -co -co -co -co -bM -bM -bM -mb -bM -bM -bM -bM -co -co -bG -bJ -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -cM -bG -bJ -bG -bG -bG -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -ab -"} -(61,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -bM -bM -bM -bM -bM -bM -bM -cZ -bM -bM -bM -bM -bM -bM -bM -bM -co -co -bM -co -do -bM -bM -bM -dk -bM -bM -bM -co -co -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -cP -do -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(62,1,1) = {" -ab -bN -bG -bG -cw -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dC -dm -bM -ce -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -co -bM -co -co -bM -bM -HR -bM -bM -cZ -bM -co -co -co -di -bG -bJ -bG -cF -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bK -bG -bG -cE -bI -bG -bG -bG -cP -cZ -bM -ce -bM -bM -dd -bG -cF -bJ -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bH -bG -bG -bG -bN -ab -"} -(63,1,1) = {" -ab -bN -bH -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -cZ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -co -co -bM -co -co -bM -bM -bM -bM -bM -bM -bM -co -co -co -bH -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -cP -bH -bG -bG -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bL -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bN -ab -"} -(64,1,1) = {" -ab -bN -bG -bJ -bG -bK -bS -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -cP -dJ -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dz -dz -cP -dz -dz -cP -cP -cP -bM -bM -bM -cP -NF -NF -NF -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -cY -bG -bG -bG -bG -bG -bH -cP -bM -bM -ce -bM -bM -cP -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bH -bG -bN -ab -"} -(65,1,1) = {" -ab -bO -bG -bG -bL -bG -bS -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -dl -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -cQ -cR -cR -cR -cR -cR -cR -cS -bG -bG -bG -bG -cx -bG -NF -NF -NF -Aq -NF -bG -bG -cP -bM -bM -bM -cP -NF -Wh -ON -bG -bG -bL -bG -bI -bG -bG -bG -cX -bG -bJ -bG -bK -bG -bI -bG -bG -bL -bG -bI -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bN -ab -"} -(66,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -bN -bN -cl -bN -bN -cl -bN -bN -bN -cl -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -cP -bM -dm -bM -cP -bN -bN -bN -bN -cl -bN -bN -bN -bN -cl -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -bG -bG -bG -bG -bG -bG -bI -cP -bM -cD -ce -bM -bM -cP -bG -bK -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bI -bG -bN -ab -"} -(67,1,1) = {" -ab -bN -bG -bJ -bG -bG -bS -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dD -bM -bM -ce -bM -bM -cP -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -cP -bM -bM -bM -cP -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -bG -bG -bG -bG -bH -bJ -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -db -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bN -ab -"} -(68,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -LS -bM -ca -cP -bM -bM -ce -bM -bM -dd -bN -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -cl -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -bG -bG -bL -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bJ -bG -bK -bG -bG -bK -bG -bG -bH -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bJ -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bN -ab -"} -(69,1,1) = {" -ab -bN -bG -bG -bJ -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -dd -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -cl -bG -bG -bG -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -cP -bH -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -dt -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bN -ab -"} -(70,1,1) = {" -ab -bN -bH -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -cl -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -cf -cl -dd -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -cf -bN -bG -bG -bG -bK -bG -bG -bH -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bN -ab -"} -(71,1,1) = {" -ab -bN -bG -bJ -bG -bK -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -cf -bN -bK -bK -bG -bG -bG -bG -bG -dd -bM -bM -ce -bM -bM -cP -bI -bG -bG -bL -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bJ -bG -bK -bG -bG -bG -dv -bG -bK -bG -bG -bG -bG -bG -bI -bN -ab -"} -(72,1,1) = {" -ab -bN -bI -bG -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -cf -bS -cW -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bN -bG -bI -bG -bG -bG -bG -bI -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -Wt -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bK -bG -bN -ab -"} -(73,1,1) = {" -ab -bP -bG -bK -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -cf -bS -Yt -bM -bM -cz -bM -ca -cP -bM -bM -ce -bM -cz -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -cG -cP -bM -bM -bM -cP -cl -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -cl -bG -bG -bG -bJ -bG -bK -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -uq -bG -bG -bG -bG -bH -bG -bG -bG -bI -bG -bN -ab -"} -(74,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -cl -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bN -Af -bG -bG -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bJ -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -dt -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bN -ab -"} -(75,1,1) = {" -ab -bN -bG -bJ -bG -bK -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Gg -Gg -Gg -Ys -Ys -cf -bN -dO -bM -bM -bM -cP -bN -cf -Ys -Ys -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bN -bK -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bH -bG -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bN -ab -"} -(76,1,1) = {" -ab -bN -bH -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -cf -bS -bU -bM -bM -bM -bM -bM -bM -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bN -bG -bG -bG -bI -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bJ -bG -bK -fg -cE -bK -bG -bG -bH -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bN -ab -"} -(77,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -df -bM -bM -bM -bM -bM -bM -bM -bM -ce -bM -bM -cP -cl -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Gg -Gg -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -cf -bN -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bI -bG -bN -ab -"} -(78,1,1) = {" -ab -bN -bI -bG -bG -bL -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -bM -bM -bM -bM -ce -bM -bM -cP -bN -cf -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Ys -cf -cl -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Gg -Gg -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bN -bL -bG -bG -bG -bG -bG -bH -cP -bM -bM -ce -bM -bM -cP -bJ -bG -bK -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bI -bG -bG -bL -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bN -ab -"} -(79,1,1) = {" -ab -bQ -bG -bG -bG -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -cy -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -bM -cP -cG -cf -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bN -bG -bG -bG -bG -bL -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bN -ab -"} -(80,1,1) = {" -ab -bN -bG -bG -bJ -bG -bS -cf -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bV -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Gg -Gg -Ys -cf -bN -dP -bM -bM -bM -cP -cl -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -cl -bG -bG -bG -bG -bG -bG -bI -cP -bM -ds -ce -bM -bM -cP -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bN -ab -"} -(81,1,1) = {" -ab -bN -bG -bI -bG -bG -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Ys -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Ys -Ys -cf -bN -bG -bG -bJ -bG -bG -bK -bG -cP -bM -bM -ce -bM -bM -cP -bG -bH -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bH -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bN -ab -"} -(82,1,1) = {" -ab -bN -bG -bG -bG -bH -bS -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bS -bU -bM -bM -bM -bV -ca -cP -bM -bM -ce -bM -bM -dd -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -bM -cP -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -bN -bH -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -db -bG -bG -bG -bH -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bI -bN -ab -"} -(83,1,1) = {" -ab -bN -bG -bG -bG -bG -bS -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bS -bU -bM -bM -bM -bM -ca -cP -bM -bM -ce -bM -bM -dF -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -cP -bM -bM -bM -cP -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -bG -bJ -bG -bK -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bL -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bK -bG -bN -ab -"} -(84,1,1) = {" -ab -bN -bG -bG -bG -bI -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -bS -cO -bY -bY -bY -bY -cb -dd -bM -bM -ce -bM -bM -cP -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -cl -bN -bN -bN -cP -bM -bM -bM -cP -bN -bN -cl -bN -bN -bN -cl -bN -bN -bN -cl -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -bI -bG -bG -bG -bG -bJ -bG -cP -bM -bM -ce -bM -bM -cP -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bI -bG -bN -ab -"} -(85,1,1) = {" -ab -bN -bG -bH -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -cP -cP -cP -cP -dd -cP -cP -dD -cP -cP -dL -cP -cP -cP -cP -cP -dz -cP -cP -dz -dz -cP -dL -bM -bM -bM -cP -dz -cP -dz -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -cP -bG -cM -bG -bJ -bG -bG -bG -bG -bG -bH -bJ -bG -bK -dx -bG -bG -bG -cM -bJ -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bN -ab -"} -(86,1,1) = {" -ab -bN -bG -bG -cP -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 -co -bM -co -co -co -bM -bM -bM -bM -bM -bM -cr -cA -co -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 -dR -bM -YV -cD -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ab -"} -(87,1,1) = {" -ab -bN -bG -cv -cP -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -LS -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -co -Ds -co -co -co -bM -bM -bM -bM -bM -bM -co -bM -co -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -dk -bM -bM -bM -bM -bM -bM -bM -HR -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 -cz -Lh -yO -bM -bM -dk -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ab -"} -(88,1,1) = {" -ab -bN -bK -bG -cP -bM -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cd -cd -bM -bM -bM -bM -bM -cd -cd -cd -cd -cd -cd -cd -cc -cc -cc -cd -cd -cd -cd -cd -cd -LE -LE -LE -LE -cd -cd -cd -bM -bM -bM -IA -cc -IA -fc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cc -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -bM -bM -bM -bM -bM -cc -cc -cc -cc -cc -cc -cc -cc -cc -RN -cc -cc -cc -cc -cc -cc -KF -cc -fb -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -cd -ab -"} -(89,1,1) = {" -ab -bN -bG -bG -cP -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 -co -co -co -bM -dk -bM -bM -bM -bM -cr -dR -bM -co -co -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ds -bM -bM -cD -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -dR -bM -SE -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ab -"} -(90,1,1) = {" -ab -bN -bH -bG -cP -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 -dl -bM -co -co -co -bM -bM -bM -bM -bM -bM -co -bM -co -cA -co -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 -cZ -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -dR -nY -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -bM -ab -"} -(91,1,1) = {" -ab -bN -bG -bJ -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -cP -cP -cP -cP -cP -cP -cP -cP -bM -bM -ce -bM -bM -dG -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -cP -dd -cP -dz -dz -dz -cP -cP -cP -cP -dd -cP -dz -cP -dz -cP -dz -cP -cP -cP -cP -cP -cP -cP -dd -cP -dF -cP -cP -cP -cP -dC -cP -dB -cP -cP -cP -dd -cP -cP -cP -cP -bM -bM -ce -bM -bM -cP -bH -bJ -bG -bK -bG -bG -bG -bG -cV -bG -bK -bG -bG -dx -bG -bI -bG -bG -bG -bG -bG -bG -bK -bG -cM -bG -bJ -bG -bK -bG -bN -ab -"} -(92,1,1) = {" -ab -bN -bI -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -ac -ac -af -ac -ac -ac -ac -ac -xw -ac -ac -ac -ac -ac -ac -af -ac -ac -ac -ac -bG -bI -bG -cY -bG -bN -bN -bN -bN -cl -bN -bN -bN -cG -bN -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bN -ab -"} -(93,1,1) = {" -ab -bN -bG -bK -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bH -bJ -bG -bG -bG -bG -bG -bH -bJ -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -aw -aw -aw -ac -bT -bT -qg -ac -au -au -au -ac -bT -bT -lB -Ne -ac -bJ -bG -bG -bG -bG -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bH -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bN -ab -"} -(94,1,1) = {" -ab -bN -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -af -aw -aw -aw -Ab -aw -aw -xw -bT -bT -bT -ac -au -hD -au -ck -bT -bT -bT -bT -af -bG -bG -bG -bG -bG -bN -cf -Gg -Gg -Gg -Ys -Ys -Ys -Ys -Ys -hi -Ys -Ys -Ys -Ys -Ys -Ys -Gg -Gg -Gg -Gg -Ys -Gg -Gg -Gg -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bH -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bN -ab -"} -(95,1,1) = {" -ab -bN -bG -bJ -bG -bK -bG -bG -bI -cx -bG -bJ -bG -bK -bG -bG -bI -bG -bG -bG -bK -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -GD -aw -aw -aw -ac -bT -ZM -bT -ac -au -au -au -ac -bT -bT -bT -bT -ac -dg -es -bG -bG -bK -bN -cf -Ys -Gg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hi -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bI -bN -ab -"} -(96,1,1) = {" -ab -bN -bH -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bK -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -ac -ac -ac -ac -ac -ac -ac -ac -aE -ac -ac -ac -bT -bT -bT -ac -cY -bG -bG -db -bG -cl -cf -Ys -Gg -ab -Gg -Gg -Gg -Gg -Gg -Gg -Ys -Ys -lT -Gg -Gg -Gg -Gg -Gg -Ys -Ys -Gg -Gg -Ys -Ys -Ys -cf -cl -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bL -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bN -ab -"} -(97,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -au -au -aA -au -au -ac -au -au -au -au -au -ac -bT -bT -bT -ac -bG -bI -cJ -bG -bG -bN -cf -Ys -Gg -ab -Gg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bL -bG -bG -bG -bG -bN -ab -"} -(98,1,1) = {" -ab -bN -bI -bG -bG -bL -bG -bG -bG -bG -bI -bG -bG -bL -bI -bG -bG -bI -bG -bG -bL -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -fV -aw -OP -aw -au -aE -au -aZ -at -at -au -ac -bT -WT -bT -ac -dq -bG -bG -bG -bL -bN -cf -Ys -Ys -ab -Gg -ab -Dj -Gg -ab -Gg -Gg -Gg -ab -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -ab -Ys -Ys -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bJ -bG -bK -bG -bG -bG -bL -bG -bG -bG -bI -bG -bG -bN -ab -"} -(99,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -DU -aw -aw -ac -EJ -aw -aw -aw -au -FW -au -CG -hD -at -au -ac -bT -bT -bT -ac -bG -bG -bG -bG -bG -bN -cf -Ys -Ys -ab -Ys -ab -ze -Ys -ab -Ys -ab -hi -ab -Ys -ab -Ys -Gg -SF -Gg -ab -Gg -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bI -cE -bG -bG -bJ -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(100,1,1) = {" -ab -bN -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bI -bG -bG -bJ -cP -bM -bM -ce -bM -bM -cP -af -aw -aw -aw -ac -au -au -aw -aw -au -ac -au -au -au -au -au -ac -bT -Nj -bT -ac -da -bH -cE -bG -bI -bN -cf -jM -Ys -ab -Ys -ab -ze -Ys -ab -Ys -ab -Gg -ab -Gg -ab -ab -ab -TC -Gg -ab -Gg -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bI -bG -bG -bG -bG -bG -bI -bN -ab -"} -(101,1,1) = {" -ab -bN -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -ac -ac -pb -GH -ac -bp -au -au -au -aN -au -ac -bT -bT -bT -ac -bG -bG -bG -bK -bG -bN -cf -Ys -Gg -ab -Gg -ab -Dj -Gg -Gg -Gg -ab -Gg -Gg -Gg -ab -Gg -Gg -Gg -Gg -ab -Gg -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bI -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bG -bG -bK -bG -bG -bG -bJ -bG -bK -bG -bN -ab -"} -(102,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bL -bK -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -dd -ac -aw -GH -GH -ac -au -au -aw -aw -au -ac -au -au -au -au -au -ac -Ne -Ne -Ne -af -bG -du -bG -bG -bG -bN -cf -Ys -Gg -ab -SF -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Gg -ab -Ys -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bL -bG -bG -bJ -bG -bI -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bN -ab -"} -(103,1,1) = {" -ab -bN -bG -bG -bG -bG -bI -bG -bG -bL -bG -bJ -bG -bK -bG -bG -bG -bG -bI -bG -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -au -au -aw -aw -au -ac -au -au -au -au -au -ac -bT -bT -bT -ac -bG -bG -bJ -bG -bG -bN -cf -Ys -Ys -ab -Gg -Gg -Gg -Ys -Ys -Ys -hH -Ys -Ys -Gg -Gg -ab -Gg -Gg -Gg -ab -hi -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bI -bG -bG -dt -bJ -bG -bI -bG -bG -bG -bJ -bG -dt -bG -bG -bG -bG -bG -bH -bN -ab -"} -(104,1,1) = {" -ab -bN -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bJ -bG -bK -bG -bG -dd -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -fr -aA -aw -aw -au -ac -au -au -au -au -au -ac -bT -bT -bT -cH -bH -bG -dh -bG -bG -bN -cf -Ys -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ys -ab -Ys -Ys -Ys -ab -Gg -ab -Ys -ab -Ys -cf -cl -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bH -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bN -ab -"} -(105,1,1) = {" -ab -bN -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -cp -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -ac -au -au -aw -aw -au -ac -au -au -au -au -au -ac -bT -bT -bT -ac -bG -bJ -bG -bK -bK -bN -cf -Ys -ab -Ys -Ys -hi -Ys -ab -JG -Ys -Ys -CS -CS -CS -Ys -ab -Ys -Gg -Ys -ab -Gg -ab -Ys -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bJ -bG -bG -bL -bG -bG -bJ -bG -bG -bG -bG -uq -bH -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bK -bG -bG -bG -bG -bG -bI -bN -ab -"} -(106,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bG -dn -bM -bM -ce -bM -bM -cP -af -aw -aw -aw -ac -ac -ac -FX -FX -ac -ac -ac -ac -ac -ac -ac -ac -bT -bT -bT -ac -bI -bG -bG -bG -bG -cl -cf -Ys -ab -EP -hH -ab -Ys -ab -JG -Ys -CS -CS -jE -CS -CS -ab -Gg -Ys -Ys -ab -Ys -ab -Ys -ab -NY -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bH -bG -bI -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bN -ab -"} -(107,1,1) = {" -ab -bN -bG -bI -bG -bG -bG -bG -bG -bJ -bI -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -aw -aw -aw -aw -aw -aw -aw -aw -bT -bT -bT -bT -Ne -bT -bT -bT -bT -bT -bT -af -bG -bG -bJ -bG -bG -bN -cf -Ys -ab -Ys -Ys -ab -Gg -ab -JG -Ys -Ys -CS -CS -CS -Ys -ab -lT -hH -Ys -ab -Ys -ab -Gg -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bJ -bG -db -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bL -bG -bG -bG -bG -bN -ab -"} -(108,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -dc -bM -bM -ce -bM -bM -cP -ac -aw -OP -aw -aw -aw -aw -aw -aw -bT -bT -bT -bT -Ne -bT -bT -bT -bT -bT -bT -ac -bH -bG -bG -bG -bL -bN -cf -Ys -ab -Ys -Ys -ab -Ys -ab -JG -hi -Ys -Ys -CS -hi -Ys -ab -Gg -Ys -Ys -ab -Ys -ab -Gg -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -dt -bG -bG -bH -bG -bG -bG -bL -bG -bG -bG -bI -bG -bG -bN -ab -"} -(109,1,1) = {" -ab -bN -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -cP -bM -bM -ce -bM -bM -cp -ac -aw -aw -aw -aw -aw -aw -aw -aw -bT -bT -WT -bT -bT -bT -bT -bT -bT -bT -bT -ac -bG -bJ -bG -bK -bG -bN -cf -Ys -ab -Ys -Ys -ab -Gg -ab -JG -Ys -Ys -hH -Ys -Ys -Ys -ab -Gg -Gg -Gg -ab -Gx -Gg -Gg -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bK -bG -bG -bG -bW -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(110,1,1) = {" -ab -bN -bG -bG -bL -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -ac -ac -ac -af -ac -ac -ac -ac -af -ac -ac -af -ac -ac -ac -ac -af -ac -ac -ac -ac -bI -bG -bG -bG -bI -bN -cf -Ys -ab -Gg -Gg -ab -Gg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bK -bG -bG -bG -bI -bG -bG -bG -bI -bG -bG -bG -bG -bG -bI -bN -ab -"} -(111,1,1) = {" -ab -bN -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bN -cf -Ys -ab -ab -ab -ab -Gg -Gg -Ys -Ys -Ys -Ys -Ys -Ys -Gx -Gg -Gg -Gg -Gg -Ys -Ys -Ys -Gg -Ys -Ys -cf -cl -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -OT -bJ -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bN -ab -"} -(112,1,1) = {" -ab -bN -bJ -bG -bG -bK -bG -bG -bH -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bJ -bG -bG -bK -bG -bG -dn -bM -bM -ce -bM -bM -cP -bH -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bN -cf -Ys -ab -Gg -Gg -ab -Ys -Ys -Gg -Gg -Gg -lT -Gg -Gg -Ys -Gg -Gg -Gg -Gg -Gg -Gg -Gg -Gg -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bN -ab -"} -(113,1,1) = {" -ab -bN -bG -bI -bG -bG -bG -bG -bG -bJ -bI -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bJ -bG -bK -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bN -cf -Ys -ab -Gg -Gg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bL -bG -bG -bI -bG -bN -ab -"} -(114,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bG -bG -bG -dc -bM -bM -ce -bM -bM -cP -bI -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bL -bN -cf -Gg -ab -tS -Gg -Gg -Ys -hH -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -hi -Gg -Gg -Ys -Ys -Ys -Gg -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bG -bG -bG -bG -bG -bH -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bN -ab -"} -(115,1,1) = {" -ab -bN -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -cP -bM -bM -ce -bM -bM -cp -bG -bK -bG -bG -bI -bG -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bN -cf -Ys -ab -Gg -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bI -bG -bG -bK -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(116,1,1) = {" -ab -bN -bG -bG -bL -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bK -bG -bG -bG -bI -bG -bG -bG -bI -bN -cf -Ys -ab -Gg -Ys -Gg -Gg -Gg -Ys -Gg -Gg -Gg -Ys -Ys -Gg -lT -Ys -Ys -Ys -Gg -Gg -Ys -Ys -Ys -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bG -bK -bG -bG -bG -bI -bG -bG -bG -bI -bG -bG -bG -bG -bG -bL -bN -ab -"} -(117,1,1) = {" -ab -bN -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bG -bG -bI -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bN -cf -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ys -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bK -bG -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bH -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(118,1,1) = {" -ab -bN -bJ -bG -bG -bK -bG -bG -bH -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bJ -bG -bG -bK -bG -bG -dn -bM -bM -ce -bM -bM -cP -bH -bG -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bN -cf -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -hi -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -Ys -cf -cl -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bN -ab -"} -(119,1,1) = {" -ab -bN -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bL -bG -bI -bG -bG -bJ -bG -bK -bG -bN -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -cf -bN -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bK -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bL -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bN -ab -"} -(120,1,1) = {" -ab -bN -bG -bK -bG -bG -bG -bG -bI -bG -bI -bG -bG -bG -bG -bI -bG -bG -bJ -bG -bK -bG -bG -bG -bG -dc -bM -bM -ce -bM -bM -cP -bI -bG -bG -bL -bG -bI -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bN -bN -bN -cl -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -cl -bN -bN -bN -bN -bN -bN -cP -bM -bM -ce -bM -bM -cP -bG -bL -bG -bI -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bG -bK -bG -bG -bH -bG -bG -bG -bG -bI -bG -bJ -bG -bK -bG -bN -ab -"} -(121,1,1) = {" -ab -bN -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -cP -bM -bM -ce -bM -bM -cT -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bG -bJ -cn -cL -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bK -bG -bG -bG -bG -bG -bG -bN -ab -"} -(122,1,1) = {" -ab -bN -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bK -bG -bG -bG -bG -bI -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bJ -bG -bG -bG -bG -bL -bG -bG -bG -bG -bI -bG -bG -bL -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bK -bG -bG -bG -bG -bI -bG -bG -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bK -bG -bG -bG -bG -ct -bG -bG -bG -cP -bM -bM -ce -bM -bM -cP -bJ -bG -bG -bG -bG -bL -bG -bG -bG -bG -bI -bG -bG -bL -bI -bG -bG -bG -bG -bI -bG -bG -bL -bG -bG -bG -bK -bG -bG -bG -bN -ab -"} -(123,1,1) = {" -ab -bN -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -bG -bG -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bI -bG -bG -bG -bJ -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bG -bI -cn -cJ -bG -bJ -cP -bM -bM -ce -bM -bM -cP -bG -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bJ -bG -bK -bG -bG -bG -bG -bG -bG -bL -bG -bG -bG -bG -bN -ab -"} -(124,1,1) = {" -ab -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bM -bM -ce -bM -bM -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bM -bM -ce -bM -bM -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -bN -ab -"} -(125,1,1) = {" -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} diff --git a/_maps/RuinGeneration/11x11_2_room_cafeteria.dmm b/_maps/RuinGeneration/11x11_2_room_cafeteria.dmm deleted file mode 100644 index df985351d14f..000000000000 --- a/_maps/RuinGeneration/11x11_2_room_cafeteria.dmm +++ /dev/null @@ -1,214 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"l" = ( -/obj/effect/decal/cleanable/food/salt, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"m" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"p" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"q" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"z" = ( -/obj/structure/table_frame, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"F" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"G" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"I" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/pizzaparty, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"K" = ( -/obj/effect/spawner/lootdrop/glowstick, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"M" = ( -/obj/effect/spawner/lootdrop/glowstick, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"U" = ( -/obj/effect/abstract/doorway_marker{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Y" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -u -u -u -u -u -p -u -u -u -u -u -"} -(2,1,1) = {" -u -Y -Y -Y -Y -Y -Y -Y -Y -Y -u -"} -(3,1,1) = {" -u -Y -K -q -F -Y -m -q -F -Y -u -"} -(4,1,1) = {" -u -Y -m -z -F -Y -m -q -F -Y -u -"} -(5,1,1) = {" -G -Y -m -z -F -Y -m -q -F -Y -u -"} -(6,1,1) = {" -b -Y -Y -Y -Y -Y -l -Y -Y -Y -u -"} -(7,1,1) = {" -I -Y -m -q -F -Y -m -z -F -Y -u -"} -(8,1,1) = {" -u -Y -m -q -F -Y -m -q -M -Y -u -"} -(9,1,1) = {" -u -Y -m -q -F -Y -m -q -F -Y -u -"} -(10,1,1) = {" -u -Y -Y -Y -Y -Y -Y -Y -Y -Y -u -"} -(11,1,1) = {" -u -u -u -u -u -U -u -u -u -u -u -"} diff --git a/_maps/RuinGeneration/13x13_corgrobotics.dmm b/_maps/RuinGeneration/13x13_corgrobotics.dmm deleted file mode 100644 index 4746335235c1..000000000000 --- a/_maps/RuinGeneration/13x13_corgrobotics.dmm +++ /dev/null @@ -1,594 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/closet/secure_closet/medical2{ - req_access = list(29) - }, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"b" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"c" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"d" = ( -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Robotics Deliveries"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"e" = ( -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"f" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"g" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 40; - pixel_x = 3; - pixel_y = -4 - }, -/obj/machinery/requests_console{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"h" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"i" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/vending/wardrobe/robo_wardrobe{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"j" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/ruin/unpowered) -"k" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/item/paper_bin, -/turf/open/floor/plating, -/area/ruin/unpowered) -"l" = ( -/obj/effect/spawner/lootdrop/glowstick, -/turf/open/floor/plating, -/area/ruin/unpowered) -"m" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"n" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"o" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"p" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"q" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/ruinloot/science, -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"r" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/hatch, -/turf/open/floor/plating, -/area/ruin/unpowered) -"s" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"t" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/cautery, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"u" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/obj/machinery/cell_charger, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/spawner/lootdrop/ruinloot/science, -/obj/effect/spawner/lootdrop/ruinloot/science, -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"v" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"w" = ( -/obj/effect/spawner/lootdrop/glowstick, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"x" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"y" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"z" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"A" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"C" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"D" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"E" = ( -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"F" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/ruin/unpowered) -"G" = ( -/turf/template_noop, -/area/template_noop) -"I" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"J" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"K" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"L" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"M" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light, -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"N" = ( -/obj/effect/abstract/doorway_marker{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"O" = ( -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"P" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Q" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"R" = ( -/obj/effect/spawner/lootdrop/crate_spawner, -/turf/open/floor/plating, -/area/ruin/unpowered) -"S" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"T" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"U" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"V" = ( -/obj/structure/table, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"W" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"X" = ( -/obj/structure/curtain, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Y" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) -"Z" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white, -/area/ruin/unpowered) - -(1,1,1) = {" -U -A -J -A -U -U -U -U -U -U -A -A -A -"} -(2,1,1) = {" -U -p -x -E -u -A -Y -W -s -U -x -w -x -"} -(3,1,1) = {" -N -x -I -x -x -X -h -m -Z -U -x -x -c -"} -(4,1,1) = {" -z -x -e -x -x -X -D -P -S -U -x -x -x -"} -(5,1,1) = {" -k -x -x -x -n -A -a -t -V -U -A -r -A -"} -(6,1,1) = {" -U -Q -q -K -T -A -A -U -U -U -o -R -A -"} -(7,1,1) = {" -U -g -C -h -h -h -L -U -o -o -o -o -A -"} -(8,1,1) = {" -U -v -f -y -O -y -M -U -o -A -A -A -A -"} -(9,1,1) = {" -U -b -f -O -O -O -d -F -o -A -R -A -G -"} -(10,1,1) = {" -U -v -f -y -O -y -i -U -o -o -o -A -G -"} -(11,1,1) = {" -U -j -A -z -z -z -A -U -l -o -o -A -G -"} -(12,1,1) = {" -A -o -o -o -o -o -R -o -o -o -o -A -G -"} -(13,1,1) = {" -A -A -A -A -A -A -A -A -A -A -A -A -G -"} diff --git a/_maps/RuinGeneration/13x13_shotelroom.dmm b/_maps/RuinGeneration/13x13_shotelroom.dmm deleted file mode 100644 index 0b73a3462008..000000000000 --- a/_maps/RuinGeneration/13x13_shotelroom.dmm +++ /dev/null @@ -1,462 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 16 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"b" = ( -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"d" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"f" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"g" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/item/toy/plush/slimeplushie, -/turf/open/floor/wood, -/area/ruin/unpowered) -"h" = ( -/turf/open/floor/wood, -/area/ruin/unpowered) -"i" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/ruin/unpowered) -"j" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"k" = ( -/obj/structure/falsewall, -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"m" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"n" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/food/pizzabread, -/obj/item/food/egg{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/food/egg{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"o" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/storage/fancy/egg_box{ - pixel_y = 12 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"q" = ( -/obj/machinery/door/airlock/wood, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"r" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/food/cake/chocolate, -/obj/item/kitchen/knife, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"t" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"v" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/ruin/unpowered) -"x" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"z" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"A" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/ruin/unpowered) -"C" = ( -/obj/item/dnainjector/mindread, -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"D" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"F" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"G" = ( -/obj/structure/table/glass, -/obj/item/dnainjector/mindread, -/turf/open/floor/wood, -/area/ruin/unpowered) -"H" = ( -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"I" = ( -/obj/structure/table/glass, -/obj/item/storage/pill_bottle/mutadone, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"J" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/reagent_containers/food/drinks/drinkingglass/filled/soda{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"K" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/turf/open/floor/wood, -/area/ruin/unpowered) -"L" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"M" = ( -/obj/structure/table/glass, -/obj/item/chromosome/power{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"N" = ( -/obj/machinery/door/airlock/wood, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/wood, -/area/ruin/unpowered) -"O" = ( -/obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet/escape{ - info = "lol"; - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/pen/fountain/captain{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = -8; - pixel_y = -1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"P" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) -"Q" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"R" = ( -/obj/structure/falsewall, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"S" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"T" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"U" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/under/dress/skirt/purple, -/obj/item/clothing/under/dress/sundress, -/obj/item/clothing/under/pants/classicjeans, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/turf/open/floor/wood, -/area/ruin/unpowered) -"V" = ( -/obj/item/flashlight/lamp/green, -/obj/structure/table/glass, -/turf/open/floor/wood, -/area/ruin/unpowered) -"W" = ( -/obj/structure/table/glass, -/obj/item/food/grown/harebell, -/turf/open/floor/wood, -/area/ruin/unpowered) -"X" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Y" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Z" = ( -/obj/structure/table/wood/fancy/purple, -/obj/item/reagent_containers/food/drinks/bottle/applejack{ - pixel_y = 2 - }, -/turf/open/floor/carpet/orange, -/area/ruin/unpowered) - -(1,1,1) = {" -j -m -X -m -j -j -j -j -j -j -j -j -j -"} -(2,1,1) = {" -j -m -m -m -T -S -j -V -G -h -U -W -j -"} -(3,1,1) = {" -j -m -m -m -m -Y -j -K -Q -h -h -h -j -"} -(4,1,1) = {" -j -m -m -m -m -Y -j -O -h -h -h -h -j -"} -(5,1,1) = {" -j -m -m -m -f -F -j -v -h -h -g -i -j -"} -(6,1,1) = {" -j -j -j -q -j -j -j -j -N -j -j -j -j -"} -(7,1,1) = {" -j -v -h -h -h -h -h -h -h -j -C -M -j -"} -(8,1,1) = {" -j -h -h -h -h -h -h -h -h -j -m -m -j -"} -(9,1,1) = {" -j -h -H -H -H -H -h -h -h -R -m -m -j -"} -(10,1,1) = {" -j -h -L -Z -n -P -h -u -D -j -x -m -j -"} -(11,1,1) = {" -j -h -L -J -o -P -h -h -h -j -b -t -k -"} -(12,1,1) = {" -j -h -L -r -d -P -v -A -a -j -z -I -j -"} -(13,1,1) = {" -j -j -j -j -j -j -j -j -j -j -j -j -j -"} diff --git a/_maps/RuinGeneration/13x17_shuttledock.dmm b/_maps/RuinGeneration/13x17_shuttledock.dmm deleted file mode 100644 index 32534266f5f8..000000000000 --- a/_maps/RuinGeneration/13x17_shuttledock.dmm +++ /dev/null @@ -1,346 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"e" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"j" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"l" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"o" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"t" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"v" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/ruin/unpowered) -"C" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"D" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"H" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"I" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"J" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"O" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"R" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"S" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"W" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"X" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Y" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Z" = ( -/turf/template_noop, -/area/template_noop) - -(1,1,1) = {" -I -I -I -I -I -I -I -I -I -I -I -I -I -e -J -e -I -"} -(2,1,1) = {" -R -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -I -"} -(3,1,1) = {" -R -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -S -"} -(4,1,1) = {" -R -R -o -o -o -o -o -o -o -o -o -R -R -D -e -e -I -"} -(5,1,1) = {" -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -o -t -D -e -I -"} -(6,1,1) = {" -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -o -o -o -X -e -I -"} -(7,1,1) = {" -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Y -v -O -u -e -I -"} -(8,1,1) = {" -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -l -R -R -X -e -I -"} -(9,1,1) = {" -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -Z -R -H -C -e -I -"} -(10,1,1) = {" -R -R -o -o -o -o -o -o -o -o -o -R -R -C -e -e -e -"} -(11,1,1) = {" -R -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -W -"} -(12,1,1) = {" -R -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -e -"} -(13,1,1) = {" -I -I -I -I -I -I -I -I -I -I -I -I -I -e -j -e -I -"} diff --git a/_maps/RuinGeneration/13x9_cratestorage.dmm b/_maps/RuinGeneration/13x9_cratestorage.dmm deleted file mode 100644 index 4ed21920631c..000000000000 --- a/_maps/RuinGeneration/13x9_cratestorage.dmm +++ /dev/null @@ -1,269 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"d" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/stack/sheet/plasteel/twenty, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"e" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/o2, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"g" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"l" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/engineering, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"m" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"o" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/pda/clear, -/obj/effect/spawner/lootdrop/ruinloot/important, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"p" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/storage/pill_bottle/stimulant, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"q" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"s" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/effect/spawner/lootdrop/ruinloot/medical, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/stack/sheet/cardboard/fifty, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"x" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/engineering, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"D" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/paicard, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"E" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire, -/obj/effect/spawner/lootdrop/ruinloot/science, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"G" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"M" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/internals, -/obj/item/storage/firstaid/toxin, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"O" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"U" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"Y" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/secure/loot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Z" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/syndicate, -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -U -U -U -U -U -U -U -U -U -"} -(2,1,1) = {" -U -g -g -p -Y -Y -g -M -U -"} -(3,1,1) = {" -U -O -g -g -g -g -g -u -U -"} -(4,1,1) = {" -U -O -g -g -g -g -g -g -U -"} -(5,1,1) = {" -U -g -g -U -s -g -d -l -U -"} -(6,1,1) = {" -g -g -g -U -x -g -g -g -g -"} -(7,1,1) = {" -G -g -g -U -g -g -g -g -q -"} -(8,1,1) = {" -g -g -g -U -Z -E -g -g -g -"} -(9,1,1) = {" -U -g -g -U -g -g -g -g -U -"} -(10,1,1) = {" -U -g -g -g -g -g -g -g -U -"} -(11,1,1) = {" -U -g -g -g -g -g -g -g -U -"} -(12,1,1) = {" -U -Y -Y -D -g -m -e -o -U -"} -(13,1,1) = {" -U -U -U -U -U -U -U -U -U -"} diff --git a/_maps/RuinGeneration/17x11_2_room_corgbar.dmm b/_maps/RuinGeneration/17x11_2_room_corgbar.dmm deleted file mode 100644 index 09291beb3764..000000000000 --- a/_maps/RuinGeneration/17x11_2_room_corgbar.dmm +++ /dev/null @@ -1,494 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"b" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"c" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"d" = ( -/turf/open/floor/wood, -/area/ruin/unpowered) -"e" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"f" = ( -/obj/structure/chair/stool/bar, -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/ruin/unpowered) -"g" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"h" = ( -/obj/item/beacon, -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/ruin/unpowered) -"i" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"j" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/item/food/pizzaslice/pineapple{ - pixel_x = -2; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"k" = ( -/obj/item/kirbyplants/random, -/obj/item/radio/intercom{ - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"l" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"m" = ( -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"n" = ( -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"o" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"p" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -9; - pixel_y = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"q" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/ruin/unpowered) -"r" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet{ - pixel_x = -30 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"t" = ( -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"v" = ( -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"w" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"x" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"y" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"z" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"B" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/ruin/unpowered) -"C" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"D" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"E" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"F" = ( -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/machinery/firealarm{ - pixel_y = -24 - }, -/obj/machinery/vending/cola, -/turf/open/floor/wood, -/area/ruin/unpowered) -"G" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/wood, -/area/ruin/unpowered) -"H" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = -1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"I" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"J" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/ruin/unpowered) -"M" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"N" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/carpet/green, -/area/ruin/unpowered) -"O" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"S" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"T" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"U" = ( -/obj/structure/chair/sofa/right, -/obj/item/radio/intercom{ - pixel_x = -28; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"V" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"W" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ruin/unpowered) -"Y" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/ruin/unpowered) -"Z" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/wood, -/area/ruin/unpowered) - -(1,1,1) = {" -M -M -M -M -M -M -M -M -M -M -"} -(2,1,1) = {" -Z -B -U -p -i -r -w -o -l -t -"} -(3,1,1) = {" -T -d -G -c -O -d -w -o -l -I -"} -(4,1,1) = {" -Z -d -d -d -d -d -w -o -l -l -"} -(5,1,1) = {" -M -d -d -d -d -d -M -M -M -M -"} -(6,1,1) = {" -M -v -d -d -d -d -d -z -D -M -"} -(7,1,1) = {" -M -m -d -d -d -d -d -x -n -M -"} -(8,1,1) = {" -M -W -d -d -d -d -d -b -a -M -"} -(9,1,1) = {" -Y -f -d -h -j -V -d -u -g -M -"} -(10,1,1) = {" -Y -f -d -d -d -d -d -N -C -M -"} -(11,1,1) = {" -Y -f -d -q -H -V -d -b -e -M -"} -(12,1,1) = {" -Y -f -d -d -d -d -d -d -d -M -"} -(13,1,1) = {" -M -v -d -d -d -d -d -d -d -E -"} -(14,1,1) = {" -M -k -d -d -y -d -S -J -F -M -"} -(15,1,1) = {" -M -M -M -M -M -M -M -M -M -M -"} diff --git a/_maps/RuinGeneration/19x19_abandonedzoo.dmm b/_maps/RuinGeneration/19x19_abandonedzoo.dmm deleted file mode 100644 index 0ecd8bf0da83..000000000000 --- a/_maps/RuinGeneration/19x19_abandonedzoo.dmm +++ /dev/null @@ -1,1092 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/obj/machinery/power/shieldwallgen/anchored, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"ac" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"ag" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"ah" = ( -/turf/closed/mineral/random, -/area/ruin/space/has_grav/abandonedzoo) -"ai" = ( -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"aj" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"al" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"am" = ( -/mob/living/simple_animal/hostile/poison/bees, -/mob/living/simple_animal/hostile/poison/bees, -/mob/living/simple_animal/hostile/poison/bees, -/mob/living/simple_animal/hostile/poison/bees, -/mob/living/simple_animal/hostile/poison/bees, -/mob/living/simple_animal/hostile/poison/bees, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"an" = ( -/mob/living/simple_animal/hostile/poison/bees, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"ao" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"ap" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub{ - will_burrow = 0 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"aq" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"ar" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"as" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"at" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/abandonedzoo) -"au" = ( -/obj/structure/flora/ausbushes/leafybush, -/mob/living/simple_animal/hostile/poison/bees, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"av" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"aw" = ( -/obj/structure/flora/rock, -/obj/machinery/light, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/abandonedzoo) -"ax" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/mask/surgical, -/obj/item/razor, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"ay" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"az" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/box/beakers, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aA" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"aB" = ( -/obj/machinery/light, -/mob/living/simple_animal/hostile/poison/bees, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"aC" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/ruin/space/has_grav/abandonedzoo) -"aD" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Bio Containment"; - req_one_access_txt = "47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"aE" = ( -/obj/machinery/power/shieldwallgen/anchored, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"aG" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/floragun, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aI" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"aL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"aN" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/gps/spaceruin, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aO" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"aP" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/random_virus, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"aR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"aS" = ( -/obj/machinery/power/apc/unlocked{ - dir = 8; - environ = 0; - lighting = 0; - name = "Worn-out APC"; - pixel_x = -25 - }, -/obj/structure/rack, -/obj/item/melee/baton/cattleprod, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aT" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/eva, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/item/clothing/head/helmet/space/eva, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aU" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/shield/riot, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aV" = ( -/obj/machinery/smartfridge/chemistry, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aW" = ( -/obj/structure/table/reinforced, -/obj/item/gun/syringe, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aX" = ( -/obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/antiweed{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/grenade/chem_grenade/antiweed{ - pixel_x = 4 - }, -/obj/item/grenade/chem_grenade/antiweed{ - pixel_x = -3; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aY" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/temperature{ - pin = /obj/item/firing_pin - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"aZ" = ( -/obj/structure/table/reinforced, -/obj/item/cultivator, -/obj/item/shovel, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"ba" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"bb" = ( -/obj/machinery/door/airlock/hatch{ - name = "Bio-Research Station" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"bd" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"be" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bf" = ( -/obj/structure/cable, -/obj/machinery/power/smes/engineering, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bh" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bi" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/hypospray/medipen/stimpack, -/obj/item/reagent_containers/glass/bottle/mutagen, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bj" = ( -/obj/structure/table/reinforced, -/obj/item/surgicaldrill, -/obj/item/hemostat, -/obj/item/scalpel, -/obj/item/surgical_drapes, -/obj/item/retractor, -/obj/item/cautery, -/obj/item/circular_saw, -/obj/machinery/light, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bk" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bl" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bm" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bn" = ( -/obj/structure/table/reinforced, -/obj/item/food/carrotfries, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bp" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"br" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bs" = ( -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/anchored, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bt" = ( -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/anchored, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bu" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bv" = ( -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bw" = ( -/obj/machinery/light{ - dir = 1 - }, -/mob/living/simple_animal/hostile/carp, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bx" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"by" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/abandonedzoo) -"bz" = ( -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bA" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/dark/side, -/area/ruin/space/has_grav/abandonedzoo) -"bB" = ( -/obj/structure/alien/weeds, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bC" = ( -/obj/structure/alien/weeds/node, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bD" = ( -/obj/item/clothing/mask/facehugger/dead, -/obj/structure/alien/weeds, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bE" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bF" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/abandonedzoo) -"bG" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"bH" = ( -/obj/structure/alien/resin/wall, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bI" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bJ" = ( -/mob/living/simple_animal/crab{ - faction = list("carp") - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"bK" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/template_noop) -"bL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"bM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"bN" = ( -/obj/structure/grille/broken, -/obj/item/stack/cable_coil/cut, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bO" = ( -/obj/item/shard, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bP" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"bR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating/airless, -/area/template_noop) -"bT" = ( -/obj/structure/grille, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bU" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"bV" = ( -/obj/machinery/power/shieldwallgen, -/turf/template_noop, -/area/template_noop) -"bW" = ( -/obj/item/shard, -/turf/template_noop, -/area/template_noop) -"bX" = ( -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"lo" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"rY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/stack/cable_coil/cut, -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/wirecutters, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) -"wF" = ( -/obj/machinery/door/airlock/hatch{ - name = "Bio-Research Station" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"Ck" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/abandonedzoo) -"Ng" = ( -/obj/structure/alien/weeds, -/obj/structure/alien/weeds/node, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/abandonedzoo) -"Vt" = ( -/obj/effect/abstract/doorway_marker{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/abandonedzoo) - -(1,1,1) = {" -ab -ac -ac -ac -ac -ab -aa -aa -aa -aa -aa -aa -ab -ac -ac -ac -ac -ab -aa -"} -(2,1,1) = {" -ac -ah -ai -ar -ah -ac -aK -aK -aK -aK -aK -aK -ac -bu -bv -bI -bv -ac -aa -"} -(3,1,1) = {" -ac -ah -ap -ai -ai -aD -aL -aR -aL -aL -aR -aL -aD -bv -bv -bJ -bv -ac -aa -"} -(4,1,1) = {" -ac -ai -ah -ai -aw -ac -at -at -bb -wF -at -at -ac -bw -bv -bv -bv -ac -aa -"} -(5,1,1) = {" -ac -aj -ai -as -ar -ac -at -aS -Ck -Ck -be -at -ac -bx -bE -bv -bv -ac -aa -"} -(6,1,1) = {" -ab -ac -ac -ac -ac -aE -at -aT -ay -bd -bf -at -aE -ac -ac -ac -ac -ab -aa -"} -(7,1,1) = {" -aa -aa -aa -at -at -at -at -aU -ay -Ck -bg -at -at -by -bF -bK -bK -bR -aa -"} -(8,1,1) = {" -aa -aa -aa -ag -ax -aG -aN -aV -ay -Ck -bh -bm -bp -bz -at -at -at -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -ag -ay -ay -aO -ay -ay -Ck -ay -ay -ay -ay -bG -bL -lo -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -ag -ay -ay -ay -ay -ay -Ck -ay -ay -ay -ay -bG -bM -lo -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -ag -az -aI -aP -aW -ay -Ck -bi -bn -br -bA -at -at -at -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -at -at -at -at -aX -ay -Ck -bj -at -at -at -at -aa -aa -aa -aa -"} -(13,1,1) = {" -ab -ac -ac -ac -ac -aE -at -aY -ay -Ck -bk -at -bs -ac -ac -ac -ac -bt -aa -"} -(14,1,1) = {" -ac -al -an -an -aA -ac -at -aZ -ay -Ck -bl -at -ac -bB -Ng -bD -bH -ac -aa -"} -(15,1,1) = {" -at -am -am -ao -aB -ac -at -at -bb -wF -at -at -ac -bC -bH -bH -bB -bT -aa -"} -(16,1,1) = {" -Vt -an -aq -au -am -aD -aL -ba -aL -aL -rY -aL -aD -bD -bB -Ng -bO -bU -bW -"} -(17,1,1) = {" -at -ao -an -av -aC -ac -aQ -aQ -aQ -aQ -aQ -aQ -ac -bB -bB -bB -bX -bP -aa -"} -(18,1,1) = {" -ab -ac -ac -ac -ac -ab -aa -aa -aa -aa -aa -aa -bt -ac -ac -bN -bP -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -bV -aa -"} diff --git a/_maps/RuinGeneration/21x17_shuttledock.dmm b/_maps/RuinGeneration/21x17_shuttledock.dmm deleted file mode 100644 index b9e7b08bc92b..000000000000 --- a/_maps/RuinGeneration/21x17_shuttledock.dmm +++ /dev/null @@ -1,449 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"c" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"h" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"i" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"k" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"q" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"v" = ( -/obj/machinery/door/airlock/external/glass, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"A" = ( -/turf/template_noop, -/area/template_noop) -"F" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"W" = ( -/obj/machinery/door/poddoor/shutters{ - id = "exploration" - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -F -F -F -F -F -F -F -F -F -F -F -F -F -k -h -k -F -"} -(2,1,1) = {" -F -q -k -k -k -k -k -k -k -k -k -k -k -k -k -k -F -"} -(3,1,1) = {" -F -u -k -k -k -k -k -k -k -k -k -k -k -k -k -k -F -"} -(4,1,1) = {" -F -c -k -k -F -F -i -i -i -i -i -F -F -k -k -k -F -"} -(5,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(6,1,1) = {" -F -k -k -k -i -A -A -A -A -A -A -A -i -k -k -k -F -"} -(7,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(8,1,1) = {" -F -k -k -k -W -A -A -A -A -A -A -A -W -k -k -k -F -"} -(9,1,1) = {" -F -k -k -k -W -A -A -A -A -A -A -A -W -k -k -k -F -"} -(10,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(11,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(12,1,1) = {" -F -k -k -k -v -A -A -A -A -A -A -A -v -k -k -k -F -"} -(13,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(14,1,1) = {" -F -k -k -k -i -A -A -A -A -A -A -A -i -k -k -k -F -"} -(15,1,1) = {" -F -k -k -k -i -A -A -A -A -A -A -A -i -k -k -k -F -"} -(16,1,1) = {" -F -k -k -k -i -A -A -A -A -A -A -A -i -k -k -k -F -"} -(17,1,1) = {" -F -k -k -k -F -A -A -A -A -A -A -A -F -k -k -k -F -"} -(18,1,1) = {" -F -k -k -k -F -F -i -i -i -i -i -F -F -k -k -k -F -"} -(19,1,1) = {" -F -k -k -k -k -k -k -k -k -k -k -k -k -k -k -k -F -"} -(20,1,1) = {" -F -k -k -k -k -k -k -k -k -k -k -k -k -k -k -c -F -"} -(21,1,1) = {" -F -k -b -k -F -F -F -F -F -F -F -F -F -F -F -F -F -"} diff --git a/_maps/RuinGeneration/21x19_solars.dmm b/_maps/RuinGeneration/21x19_solars.dmm deleted file mode 100644 index e7793d8aa66a..000000000000 --- a/_maps/RuinGeneration/21x19_solars.dmm +++ /dev/null @@ -1,899 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"c" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/template_noop, -/area/template_noop) -"f" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"g" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/template_noop) -"i" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/template_noop, -/area/template_noop) -"j" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"k" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/template_noop, -/area/template_noop) -"l" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plating, -/area/ruin/unpowered) -"m" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/template_noop) -"n" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/space/basic, -/area/template_noop) -"o" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/template_noop, -/area/template_noop) -"p" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"q" = ( -/turf/template_noop, -/area/template_noop) -"s" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"t" = ( -/obj/item/stack/rods, -/turf/template_noop, -/area/template_noop) -"u" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"v" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/space/basic, -/area/template_noop) -"w" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/template_noop) -"x" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/template_noop) -"z" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"B" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"E" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"F" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/item/multitool, -/turf/open/floor/plating, -/area/ruin/unpowered) -"G" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/template_noop, -/area/template_noop) -"I" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"J" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space, -/area/template_noop) -"K" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"L" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/template_noop) -"N" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/template_noop, -/area/template_noop) -"O" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"P" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/template_noop) -"S" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/smes, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"U" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"W" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"Z" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) - -(1,1,1) = {" -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -z -z -q -q -q -q -"} -(2,1,1) = {" -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -z -z -q -q -q -q -q -"} -(3,1,1) = {" -q -q -q -q -q -W -o -W -W -W -W -W -W -W -W -W -W -W -W -W -q -z -z -q -q -q -q -q -q -"} -(4,1,1) = {" -q -q -q -q -q -W -q -z -q -z -q -z -q -z -q -z -q -z -q -W -z -z -q -q -q -q -q -q -q -"} -(5,1,1) = {" -q -q -q -q -q -W -q -w -n -L -q -w -n -L -q -w -n -L -q -W -z -q -q -q -q -q -q -q -q -"} -(6,1,1) = {" -q -q -q -q -q -W -z -w -v -L -q -w -v -L -q -w -v -L -z -z -q -q -q -q -q -q -q -q -q -"} -(7,1,1) = {" -q -q -q -q -q -W -q -w -v -L -z -w -v -L -z -w -v -L -q -z -q -q -q -q -q -q -q -q -q -"} -(8,1,1) = {" -q -q -q -q -q -z -z -w -v -L -q -w -v -L -q -w -v -L -z -z -z -z -z -z -z -z -z -q -q -"} -(9,1,1) = {" -q -q -W -W -W -z -q -w -v -L -q -w -v -L -q -w -v -L -q -z -q -q -q -q -f -b -b -b -b -"} -(10,1,1) = {" -q -q -W -q -z -q -q -q -i -q -q -q -i -q -q -q -i -q -q -z -q -q -f -f -f -K -Z -j -b -"} -(11,1,1) = {" -q -q -W -z -P -N -N -x -m -m -m -m -m -m -m -m -m -m -m -m -k -N -B -s -I -U -E -j -l -"} -(12,1,1) = {" -q -q -W -q -z -q -q -q -c -q -q -q -c -q -q -q -c -q -q -z -q -q -f -b -b -F -p -S -O -"} -(13,1,1) = {" -q -q -W -o -W -G -q -w -g -L -q -w -g -L -q -w -g -L -q -z -q -q -q -q -b -b -b -b -b -"} -(14,1,1) = {" -q -q -q -q -q -z -z -w -g -L -q -w -g -L -q -w -g -L -z -z -z -z -z -z -z -z -z -b -q -"} -(15,1,1) = {" -q -q -q -q -q -W -q -w -g -L -z -w -g -L -z -w -g -L -q -z -q -q -q -z -q -q -q -b -q -"} -(16,1,1) = {" -q -q -q -q -q -W -z -w -g -L -q -w -g -L -q -w -g -L -z -z -q -q -q -z -q -q -q -b -q -"} -(17,1,1) = {" -q -q -q -q -q -W -q -w -J -L -q -w -J -L -q -w -J -L -q -W -z -z -z -z -u -u -u -u -u -"} -(18,1,1) = {" -q -q -q -q -q -W -q -z -q -z -q -z -q -z -q -z -q -t -q -W -q -q -q -q -f -j -j -j -u -"} -(19,1,1) = {" -q -q -q -q -q -W -W -W -W -W -W -W -W -W -W -W -W -o -W -W -z -q -q -z -f -j -j -j -l -"} -(20,1,1) = {" -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -z -z -q -q -q -f -j -j -j -u -"} -(21,1,1) = {" -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -q -z -z -q -q -u -u -u -u -u -"} diff --git a/_maps/RuinGeneration/21x21_singularity.dmm b/_maps/RuinGeneration/21x21_singularity.dmm deleted file mode 100644 index 7a0273d15885..000000000000 --- a/_maps/RuinGeneration/21x21_singularity.dmm +++ /dev/null @@ -1,576 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"c" = ( -/turf/open/floor/plasteel, -/area/ruin) -"d" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin) -"g" = ( -/turf/closed/wall, -/area/ruin) -"j" = ( -/obj/structure/sign/warning/radiation{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ruin) -"l" = ( -/obj/machinery/the_singularitygen, -/turf/open/floor/plating, -/area/template_noop) -"o" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/template_noop) -"p" = ( -/obj/machinery/power/rad_collector, -/turf/open/floor/plasteel, -/area/ruin) -"q" = ( -/obj/structure/sign/warning/radiation{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/ruin) -"x" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/ruin) -"z" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/ruin) -"A" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin) -"C" = ( -/turf/closed/wall/r_wall, -/area/ruin) -"E" = ( -/obj/machinery/computer, -/turf/open/floor/plasteel, -/area/ruin) -"F" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin) -"G" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin) -"N" = ( -/obj/effect/decal/fakelattice, -/turf/template_noop, -/area/template_noop) -"R" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/ruin) -"S" = ( -/turf/open/floor/plating, -/area/template_noop) -"W" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin) -"X" = ( -/turf/template_noop, -/area/template_noop) - -(1,1,1) = {" -X -X -X -X -X -g -g -g -g -c -G -c -g -g -g -g -X -X -X -X -X -"} -(2,1,1) = {" -X -X -g -g -g -g -z -c -c -c -c -c -c -c -z -g -g -g -g -X -X -"} -(3,1,1) = {" -X -g -g -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -g -g -X -"} -(4,1,1) = {" -X -g -j -c -c -c -c -c -p -c -c -c -c -c -c -c -c -c -q -g -X -"} -(5,1,1) = {" -X -g -c -c -c -c -c -c -c -c -c -p -c -p -c -c -c -c -c -g -X -"} -(6,1,1) = {" -g -g -c -c -c -C -C -R -R -R -C -R -R -R -C -C -c -c -c -g -g -"} -(7,1,1) = {" -g -c -c -c -c -C -X -N -X -N -X -N -X -N -X -C -x -c -c -c -g -"} -(8,1,1) = {" -g -c -c -c -c -R -N -o -X -S -S -S -X -o -N -R -E -c -c -c -g -"} -(9,1,1) = {" -g -c -c -c -c -R -X -X -X -a -X -a -X -X -X -R -E -W -c -c -g -"} -(10,1,1) = {" -c -c -c -c -c -R -N -S -a -S -S -S -a -S -N -R -E -c -c -c -c -"} -(11,1,1) = {" -d -c -c -c -c -C -X -S -X -S -l -S -X -S -X -C -x -c -c -c -A -"} -(12,1,1) = {" -c -c -c -c -c -R -N -S -a -S -S -S -a -S -N -R -E -c -c -c -c -"} -(13,1,1) = {" -g -c -c -c -c -R -X -X -X -a -X -a -X -X -X -R -E -W -c -c -g -"} -(14,1,1) = {" -g -c -c -c -c -R -N -o -X -S -S -S -X -o -N -R -E -c -c -c -g -"} -(15,1,1) = {" -g -c -c -c -c -C -X -N -X -N -X -N -X -N -X -C -x -c -c -c -g -"} -(16,1,1) = {" -g -g -c -c -c -C -C -R -R -R -C -R -R -R -C -C -c -c -c -g -g -"} -(17,1,1) = {" -X -g -c -c -c -c -c -c -p -p -c -c -c -c -c -c -c -c -c -g -X -"} -(18,1,1) = {" -X -g -j -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -q -g -X -"} -(19,1,1) = {" -X -g -g -c -c -c -c -c -c -c -c -c -c -c -c -c -c -c -g -g -X -"} -(20,1,1) = {" -X -X -g -g -g -g -z -c -c -c -c -c -c -c -z -g -g -g -g -X -X -"} -(21,1,1) = {" -X -X -X -X -X -g -g -g -g -c -F -c -g -g -g -g -X -X -X -X -X -"} diff --git a/_maps/RuinGeneration/23x21_telepadovo.dmm b/_maps/RuinGeneration/23x21_telepadovo.dmm deleted file mode 100644 index 317d6c9a3ed4..000000000000 --- a/_maps/RuinGeneration/23x21_telepadovo.dmm +++ /dev/null @@ -1,1018 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ac" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bw" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"bA" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"da" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"dc" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, -/area/ruin/space/has_grav/telepadovo) -"dS" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"dV" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"ea" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"eE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"eP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"fv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"gj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"hp" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"iL" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/ruin/space/has_grav/telepadovo) -"kd" = ( -/turf/template_noop, -/area/template_noop) -"mX" = ( -/turf/closed/wall/partyhard, -/area/ruin/space/has_grav/telepadovo) -"om" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/reagent_containers/hypospray/combat/nanites, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"oD" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"oS" = ( -/obj/machinery/computer/telescience{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/ruin/space/has_grav/telepadovo) -"qE" = ( -/obj/effect/spawner/structure/window/reinforced/partyhard, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"rd" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"rE" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"rG" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"sf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/mob_spawn/human/syndicate{ - desc = "Там кто-то есть. И он смотрит на меня не очень мило."; - dir = 8; - flavour_text = "Я заведующий этой космоостановкой. В мои обязанности входит переправка прибывающих агентов на станцию."; - important_info = "И мне нельзя покидать это место, если только ему совсем не придут кранты."; - short_desc = "Я телепадовец" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"ta" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"tJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"uq" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"uR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"vN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"wl" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"wr" = ( -/obj/machinery/vending/games, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"wC" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"xT" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/melee/baton/loaded/german, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Ac" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Av" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/radio, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"Az" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"AG" = ( -/obj/structure/table/reinforced, -/obj/item/phone, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Br" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"Bs" = ( -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/telepadovo) -"Bz" = ( -/obj/machinery/door/airlock/hatch, -/turf/open/floor/partyhard/steel{ - icon_state = "st-6" - }, -/area/ruin/space/has_grav/telepadovo) -"BT" = ( -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/ruin/space/has_grav/telepadovo) -"BY" = ( -/obj/machinery/sleeper/syndie/fullupgrade{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"CU" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"CV" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"DR" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, -/area/ruin/space/has_grav/telepadovo) -"Eq" = ( -/obj/machinery/vending/cigarette/syndicate, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"EC" = ( -/obj/structure/table/wood/fancy/royalblack, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"FJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"GX" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Il" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/autolathe/hacked, -/obj/item/stack/sheet/iron/five, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Ip" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "st-7" - }, -/area/ruin/space/has_grav/telepadovo) -"JT" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"KK" = ( -/obj/machinery/computer/camera_advanced/syndie{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/ruin/space/has_grav/telepadovo) -"Mq" = ( -/obj/structure/table/wood/fancy/royalblack, -/obj/item/restraints/handcuffs/cable/zipties, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Nb" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, -/area/ruin/space/has_grav/telepadovo) -"Nq" = ( -/obj/machinery/light/small, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Qf" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/ruin/space/has_grav/telepadovo) -"RJ" = ( -/obj/structure/table, -/obj/item/storage/toolbox/syndicate, -/obj/item/gps/science, -/obj/item/gps/science, -/obj/item/gps/science, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"Sb" = ( -/obj/machinery/status_display, -/turf/closed/wall/partyhard, -/area/ruin/space/has_grav/telepadovo) -"Si" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"Sw" = ( -/obj/machinery/light/small, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"Ui" = ( -/turf/closed/mineral/random, -/area/ruin/space/has_grav/telepadovo) -"Vm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "st-2" - }, -/area/ruin/space/has_grav/telepadovo) -"WZ" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/ruin/space/has_grav/telepadovo) -"Xj" = ( -/obj/machinery/telepad, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/telepadovo) -"Xl" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) -"XP" = ( -/obj/structure/cable, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/ruin/space/has_grav/telepadovo) -"Ys" = ( -/obj/item/flashlight, -/obj/structure/closet/cabinet, -/obj/item/radio, -/obj/item/crowbar/red, -/turf/open/floor/partyhard/steel{ - icon_state = "st-12" - }, -/area/ruin/space/has_grav/telepadovo) -"ZY" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/ruin/space/has_grav/telepadovo) - -(1,1,1) = {" -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -"} -(2,1,1) = {" -kd -kd -Bs -Bs -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -kd -Bs -Bs -Bs -"} -(3,1,1) = {" -kd -kd -Bs -Ui -Ui -Ui -Ui -kd -Ui -Bs -kd -kd -kd -kd -kd -Ui -Ui -Ui -Ui -Ui -Ui -"} -(4,1,1) = {" -kd -Bs -Bs -Ui -Ui -Ui -Ui -Ui -Ui -Ui -kd -kd -kd -kd -kd -Ui -mX -mX -Sb -mX -mX -"} -(5,1,1) = {" -kd -Bs -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -kd -Bs -kd -kd -kd -Ui -mX -Eq -Ac -Ac -rG -"} -(6,1,1) = {" -kd -Bs -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -kd -Ui -Ui -mX -tJ -Ac -GX -mX -"} -(7,1,1) = {" -kd -Bs -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -mX -uq -Ac -GX -mX -"} -(8,1,1) = {" -kd -kd -Ui -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -mX -AG -Ac -vN -mX -"} -(9,1,1) = {" -kd -Ui -Ui -mX -ZY -wC -gj -Xl -Xl -Xl -mX -wr -rd -Bz -Ac -Ac -Bz -Ac -Ac -GX -mX -"} -(10,1,1) = {" -Ui -Ui -Ui -mX -bw -BT -XP -Qf -WZ -Ac -qE -rd -rd -mX -CU -da -mX -Ac -Ac -Nq -mX -"} -(11,1,1) = {" -kd -Ui -Ui -mX -Ac -iL -Br -Si -Nb -Ac -mX -rd -eP -mX -bA -fv -qE -Ac -Ac -mX -mX -"} -(12,1,1) = {" -kd -kd -Ui -mX -ea -iL -Si -Si -Nb -Ac -Bz -rd -rd -mX -Ip -Ip -qE -rE -rE -mX -Ui -"} -(13,1,1) = {" -kd -kd -Ui -mX -Il -iL -Xj -Si -Nb -Ac -Bz -rd -rd -mX -Bz -mX -mX -mX -mX -mX -Ui -"} -(14,1,1) = {" -kd -kd -Ui -mX -RJ -iL -Si -Si -Nb -Ac -mX -eE -rd -rd -ta -ta -rd -mX -Ui -Ui -Ui -"} -(15,1,1) = {" -kd -Ui -Ui -mX -ac -DR -oS -KK -dc -Ac -qE -rd -rd -rd -dS -om -uR -mX -Ui -Ui -Ui -"} -(16,1,1) = {" -kd -Ui -Ui -mX -CV -Ac -Ac -Ac -Ac -Ac -mX -JT -rd -wl -hp -EC -Sw -mX -Ui -Ui -Ui -"} -(17,1,1) = {" -kd -kd -Ui -mX -mX -mX -mX -qE -qE -qE -mX -rd -rd -rd -Av -EC -dV -mX -Ui -Ui -kd -"} -(18,1,1) = {" -kd -kd -Ui -Ui -Ui -Ui -mX -oD -oD -oD -Bz -Vm -Vm -Vm -FJ -Az -rd -mX -Ui -kd -kd -"} -(19,1,1) = {" -kd -kd -Ui -Ui -Ui -Ui -mX -Ys -BY -sf -mX -xT -Mq -Mq -mX -mX -mX -mX -Ui -Ui -kd -"} -(20,1,1) = {" -kd -kd -Ui -Ui -Ui -Ui -mX -mX -mX -mX -mX -mX -mX -mX -mX -Ui -Ui -Ui -Ui -Ui -kd -"} -(21,1,1) = {" -kd -kd -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -kd -"} -(22,1,1) = {" -kd -kd -kd -Ui -Ui -kd -kd -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -Ui -kd -kd -"} -(23,1,1) = {" -kd -kd -kd -kd -kd -kd -kd -Ui -kd -kd -kd -Ui -Ui -Ui -Ui -Ui -Ui -kd -kd -kd -kd -"} diff --git a/_maps/RuinGeneration/40x34_bigderelict.dmm b/_maps/RuinGeneration/40x34_bigderelict.dmm deleted file mode 100644 index d7e4d241920f..000000000000 --- a/_maps/RuinGeneration/40x34_bigderelict.dmm +++ /dev/null @@ -1,3132 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ag" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"an" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"aC" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"aK" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"bx" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/alien/gelpod, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"bE" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"bZ" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"ce" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"cy" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"cQ" = ( -/obj/machinery/button/door{ - name = "tradepost entry doors"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"cV" = ( -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"dd" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"dh" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"dq" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"dO" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"dV" = ( -/obj/structure/alien/weeds/creature, -/mob/living/simple_animal/hostile/netherworld{ - name = "Miss Tiggles" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"dY" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"ea" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"eo" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"ev" = ( -/obj/structure/alien/weeds/creature, -/obj/item/shard, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"ew" = ( -/obj/structure/closet/crate, -/obj/item/target/syndicate, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/alien, -/obj/item/target, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"eH" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"eI" = ( -/obj/machinery/door/airlock/maintenance, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"eM" = ( -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"fi" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"fC" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"gh" = ( -/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{ - head = null; - name = "Tradeport Officer"; - random = 1 - }, -/obj/item/paper/crumpled/ruins/bigderelict1/coward, -/obj/effect/decal/cleanable/blood/old{ - name = "dried blood splatter"; - pixel_x = -29 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"gk" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"gq" = ( -/turf/open/floor/engine, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"hf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"hF" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating{ - icon_state = "wall_thermite"; - name = "melted wall" - }, -/area/ruin/space/has_grav/derelictoutpost) -"hT" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"ik" = ( -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"in" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"it" = ( -/obj/structure/alien/weeds/creature, -/mob/living/simple_animal/hostile/netherworld{ - desc = "Awh its so sm-OH GOD WHAT THE FUCK."; - health = 25; - maxHealth = 25; - name = "hatchling"; - resize = 0.85 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"iw" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"iH" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/space/fancytool, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"iQ" = ( -/obj/item/clothing/head/helmet, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"iT" = ( -/obj/structure/closet/crate/engineering/electrical, -/obj/item/storage/toolbox/electrical, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"jJ" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"jN" = ( -/obj/structure/janitorialcart, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"ks" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"kF" = ( -/obj/structure/table, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"kS" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/hyper, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"ll" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"ls" = ( -/obj/structure/alien/resin/membrane/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"lB" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 9; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"lI" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 9; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"lY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"mm" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 10; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"mZ" = ( -/turf/closed/wall/mineral/titanium, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"na" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/plasteel/twenty, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"nh" = ( -/obj/structure/alien/resin/wall/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"nl" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"nL" = ( -/obj/item/shard, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"oh" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/storage/firstaid/toxin, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"oz" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/o2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"oA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"pe" = ( -/obj/structure/alien/weeds/creature, -/mob/living/simple_animal/hostile/netherworld{ - desc = "Awh its so sm-OH GOD WHAT THE FUCK."; - health = 25; - maxHealth = 25; - name = "hatchling"; - resize = 0.85 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"pl" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"pv" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"pA" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/door_assembly/door_assembly_mai{ - density = 0; - desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; - name = "pried-open airlock" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"pK" = ( -/obj/structure/closet/crate/engineering/electrical, -/obj/item/storage/toolbox/electrical, -/obj/item/stock_parts/cell/hyper, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"pL" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 10; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"qe" = ( -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"qh" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"qi" = ( -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"qn" = ( -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"qy" = ( -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 - }, -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"qM" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 9; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"qV" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"rp" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"rD" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"rH" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"rL" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"sg" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"sp" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"sr" = ( -/obj/structure/closet/crate, -/obj/item/storage/pill_bottle/stimulant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"sD" = ( -/obj/structure/alien/weeds/creature, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"tg" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"tC" = ( -/obj/item/crowbar{ - pixel_x = -16; - pixel_y = -6 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"tF" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"tN" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/resin/membrane/creature, -/turf/open/floor/plating{ - icon_state = "wall_thermite"; - name = "melted wall" - }, -/area/ruin/space/has_grav/derelictoutpost) -"tU" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"tV" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/closed/wall/mineral/iron, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"ub" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"ug" = ( -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/engineering{ - name = "Power Storage"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"ui" = ( -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"uN" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/derelictoutpost) -"vb" = ( -/obj/item/ammo_casing/c45{ - caliber = null; - desc = "A .45 bullet casing. This one is spent."; - name = "spent bullet casing" - }, -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"vn" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"vP" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"wm" = ( -/obj/item/chair, -/obj/structure/alien/weeds/creature, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"wp" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"wq" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"wu" = ( -/obj/machinery/door/poddoor{ - id = "bigderelictshipdock" - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"wx" = ( -/obj/item/ammo_casing/c45{ - caliber = null; - desc = "A .45 bullet casing. This one is spent."; - name = "spent bullet casing" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"wA" = ( -/obj/machinery/door/poddoor{ - id = "bigderelictship" - }, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"wM" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"wS" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 10; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"xd" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"xg" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"xl" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"xI" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"xJ" = ( -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"yh" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Bay APC"; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"yl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"ys" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"yt" = ( -/obj/structure/table, -/obj/item/clothing/gloves/fingerless, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"yx" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"yC" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"yK" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"yZ" = ( -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"zH" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"zL" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"zX" = ( -/obj/structure/table_frame, -/obj/item/stack/sheet/iron, -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Aj" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Br" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Bw" = ( -/obj/structure/closet/crate/critter{ - name = "critter crate - mr.tiggles"; - opened = 1 - }, -/obj/item/paper/crumpled/ruins/bigderelict1/manifest, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"BQ" = ( -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Ca" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"Cz" = ( -/obj/machinery/button/door{ - id = "bigderelictship"; - name = "shuttle cargo doors"; - pixel_x = 24 - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"CA" = ( -/obj/structure/alien/resin/wall/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"CB" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"CC" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 10; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Db" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/cardboard/fifty, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Dg" = ( -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Dj" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"Dk" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Ds" = ( -/obj/structure/grille/broken, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"DB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"DO" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/o2, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"DP" = ( -/turf/open/floor/plating/asteroid/airless, -/area/ruin/unpowered/no_grav) -"DQ" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/poddoor{ - id = "bigderelictcheckpoint"; - name = "checkpoint security doors" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"DY" = ( -/obj/effect/decal/cleanable/xenoblood/xsplatter, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Er" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Ez" = ( -/obj/effect/decal/cleanable/blood/old{ - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"EO" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/alien/gelpod, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"ER" = ( -/obj/item/ammo_casing/c45{ - caliber = null; - desc = "A .45 bullet casing. This one is spent."; - name = "spent bullet casing" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Fa" = ( -/obj/structure/closet/crate/radiation, -/obj/item/clothing/head/radiation, -/obj/item/clothing/suit/radiation, -/obj/item/geiger_counter, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Fz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"FG" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 10; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/mob/living/simple_animal/hostile/netherworld{ - desc = "Awh its so sm-OH GOD WHAT THE FUCK."; - health = 25; - maxHealth = 25; - name = "hatchling"; - resize = 0.85 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Gb" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Gc" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Ge" = ( -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Gh" = ( -/obj/item/gps/spaceruin, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Gq" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Gu" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"GE" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"GK" = ( -/obj/structure/alien/weeds/creature, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 - }, -/obj/item/ammo_box/magazine/m45, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Ha" = ( -/obj/machinery/computer{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"He" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Hp" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"HI" = ( -/obj/structure/closet/crate/engineering/electrical, -/obj/item/storage/toolbox/electrical, -/obj/item/stock_parts/cell/hyper, -/obj/item/stock_parts/cell/high, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"HP" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Ig" = ( -/obj/effect/gibspawner/human, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"IG" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/cloth/ten, -/obj/item/stack/sheet/cloth/ten, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"II" = ( -/turf/closed/mineral/random, -/area/ruin/unpowered/no_grav) -"IK" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Ju" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Jx" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/old{ - dir = 1; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"JJ" = ( -/obj/machinery/door/poddoor{ - id = "bigderelictshipdock" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Kj" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Power Storage APC"; - pixel_x = 24; - pixel_y = 2; - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Km" = ( -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Kq" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"KH" = ( -/obj/structure/closet/crate/secure/loot, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"KK" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Ln" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Storage APC"; - pixel_x = 24; - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Lx" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"LD" = ( -/obj/structure/closet/crate/engineering, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"LF" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"LL" = ( -/obj/structure/closet/crate/secure/loot, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"LO" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Ml" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"Mn" = ( -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"MD" = ( -/obj/item/shard, -/obj/item/stack/cable_coil{ - amount = 2 - }, -/obj/structure/alien/weeds/creature, -/obj/structure/table_frame, -/obj/item/stack/sheet/iron, -/obj/item/stack/sheet/plasteel, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"MO" = ( -/obj/structure/alien/resin/membrane/creature, -/turf/open/floor/plating/asteroid/airless, -/area/ruin/space/has_grav/derelictoutpost) -"MQ" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"MV" = ( -/obj/item/shard, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Nj" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/button/door{ - id = "bigderelictcheckpoint"; - name = "security checkpoint control"; - pixel_y = -24 - }, -/obj/structure/alien/weeds/creature, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"Nq" = ( -/turf/closed/wall, -/area/ruin/space/has_grav/derelictoutpost) -"NK" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"On" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Ph" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Pn" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Pu" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"PB" = ( -/obj/machinery/door/airlock/engineering{ - name = "Power Storage"; - req_access_txt = "10" - }, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Qg" = ( -/obj/machinery/power/apc{ - name = "Tradepost APC"; - pixel_y = -23; - start_charge = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Qh" = ( -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"Qn" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/space/fancytech, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Qt" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Qv" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 8; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"QI" = ( -/obj/structure/closet/crate/internals, -/obj/item/storage/toolbox/emergency, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"QM" = ( -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"QS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"QV" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Rh" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Rx" = ( -/obj/item/shard, -/obj/structure/alien/weeds/creature, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"Sf" = ( -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"SF" = ( -/obj/structure/closet/crate/engineering, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"SN" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 6; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"SQ" = ( -/obj/structure/closet/crate/engineering, -/obj/item/multitool, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"SU" = ( -/obj/structure/alien/weeds/creature, -/obj/item/mop, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"TI" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"TT" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"TW" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/space/has_grav/derelictoutpost) -"Uf" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Uh" = ( -/obj/structure/closet/crate/engineering, -/obj/item/storage/toolbox/mechanical, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Un" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"Uo" = ( -/turf/closed/mineral/random, -/area/ruin/space/has_grav/derelictoutpost) -"Uq" = ( -/turf/closed/wall/mineral/titanium/interior, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"Ur" = ( -/turf/template_noop, -/area/template_noop) -"UD" = ( -/obj/structure/closet/crate, -/obj/item/pda/clear, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"UU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost) -"Ve" = ( -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Vf" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) -"Vp" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Vz" = ( -/obj/item/ammo_casing/c45{ - caliber = null; - desc = "A .45 bullet casing. This one is spent."; - name = "spent bullet casing" - }, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"VO" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"WF" = ( -/obj/item/chair, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/alien/weeds/creature, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"XJ" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"XK" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"XP" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/alien/weeds/creature, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"XS" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/brute, -/turf/open/floor/mineral/titanium/yellow, -/area/ruin/space/has_grav/derelictoutpost/dockedship) -"XY" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Yd" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"Ym" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"YG" = ( -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"YK" = ( -/obj/structure/alien/weeds/creature, -/obj/structure/glowshroom/single, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"YT" = ( -/obj/structure/alien/weeds/creature, -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost) -"Za" = ( -/obj/effect/decal/cleanable/blood/old{ - dir = 5; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/alien/weeds/creature, -/turf/open/floor/plating/asteroid, -/area/ruin/space/has_grav/derelictoutpost) -"Zu" = ( -/obj/structure/door_assembly/door_assembly_mai{ - density = 0; - desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; - name = "pried-open airlock" - }, -/obj/effect/decal/cleanable/blood/old{ - dir = 4; - icon_state = "trails_1"; - name = "dried blood trail" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ruin/space/has_grav/derelictoutpost/cargostorage) -"ZN" = ( -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/cargobay) -"ZV" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/mineral/titanium/blue, -/area/ruin/space/has_grav/derelictoutpost/dockedship) - -(1,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dd -Vf -dd -Ur -Ur -Ur -Ur -Ur -DP -DP -DP -DP -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(2,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dd -ug -dd -dd -dd -dd -dd -DP -DP -II -DP -II -DP -DP -DP -DP -DP -DP -DP -DP -Ur -DP -Ur -Ur -Ur -"} -(3,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dd -iQ -gh -wx -Ge -dO -dd -DP -II -II -II -II -II -II -II -DP -DP -DP -DP -DP -DP -DP -Ur -Ur -Ur -"} -(4,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dd -qV -ea -QM -Gh -HP -wq -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -Nq -Nq -DP -DP -Ur -Ur -"} -(5,1,1) = {" -Ur -Ur -Ur -DP -DP -DP -DP -II -II -dd -kS -nl -nl -nl -Ge -wq -ER -ZN -Fz -ER -qn -qy -qn -qn -Fz -ZN -ZN -eI -Qh -Nq -DP -DP -Ur -Ur -"} -(6,1,1) = {" -Ur -DP -DP -DP -DP -DP -DP -II -II -dd -qV -ea -Ge -Kj -xJ -wq -ER -qn -DY -qn -qn -vb -an -BQ -BQ -mm -ZN -pl -Qh -Nq -DP -Ur -Ur -Ur -"} -(7,1,1) = {" -Ur -pl -pl -pl -pl -pl -pl -pl -pl -wq -wq -wq -wq -wq -PB -wq -Yd -Pu -pl -pl -pl -xg -xg -yx -yx -rD -xg -xg -Qh -Nq -DP -Ur -Ur -Ur -"} -(8,1,1) = {" -Ur -pl -zH -vn -dq -Vp -fC -fC -Rh -QS -yt -kF -dY -Ve -GE -DB -ZN -Vz -pl -lI -EO -xg -Aj -eM -eM -rH -aC -xg -Qh -Nq -DP -DP -Ur -Ur -"} -(9,1,1) = {" -pl -pl -pl -cQ -ZN -ZN -ZN -ZN -ZN -ZN -ZN -ZN -ZN -ZN -GE -ll -Dg -sD -pl -NK -XY -xg -rL -eM -eM -rH -Qn -xg -Qh -Nq -DP -DP -Ur -Ur -"} -(10,1,1) = {" -JJ -Mn -wu -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -GE -qn -qn -pl -He -CA -xg -tg -IG -in -rH -UD -xg -Qh -Nq -II -DP -Ur -Ur -"} -(11,1,1) = {" -JJ -Mn -wu -Mn -gq -Uq -mZ -wA -wA -wA -mZ -ZV -mZ -Uq -Mn -jN -qn -Dg -pl -ce -Uo -xg -eM -eM -eM -rH -eM -xg -Qh -Nq -II -DP -Ur -Ur -"} -(12,1,1) = {" -JJ -Mn -wu -Mn -gq -KK -Er -DO -LL -LL -ik -yZ -ik -mZ -Mn -SU -qn -ZN -pl -Za -wS -xg -KH -eM -eM -rH -Gu -xg -Qh -Nq -II -DP -Ur -Ur -"} -(13,1,1) = {" -JJ -Mn -wu -Mn -gq -VO -oA -Ph -QI -QI -jJ -ik -Pn -rp -Mn -zL -sg -IK -pl -Uo -sp -xg -KH -eM -iT -Qv -oh -xg -Qh -Nq -II -II -DP -Ur -"} -(14,1,1) = {" -JJ -Mn -wu -Mn -gq -mZ -mZ -XS -Fa -Bw -ik -WF -Ha -rp -Mn -zL -IK -Rh -pl -Uo -sp -xg -na -eM -iH -rH -eM -xg -Qh -Nq -II -II -DP -Ur -"} -(15,1,1) = {" -JJ -Mn -wu -Mn -gq -KK -Er -SF -SF -Uh -gk -Ju -zX -tV -Ez -CC -IK -IK -pl -lI -ag -xg -Ym -eM -eM -rH -KH -xg -Qh -Nq -II -II -DP -Ur -"} -(16,1,1) = {" -JJ -Mn -wu -Mn -gq -VO -oA -HI -HI -pK -Cz -ik -nL -mZ -Km -XP -Gb -mm -pl -He -Uo -xg -sr -Db -Un -rH -KH -xg -Qh -Nq -II -II -DP -Ur -"} -(17,1,1) = {" -JJ -Mn -wu -Mn -gq -Uq -mZ -wA -wA -wA -mZ -ZV -mZ -Uq -Mn -eH -qn -MQ -pl -Uf -Uo -xg -eM -eM -eM -rH -wM -xg -Qh -Nq -II -II -DP -DP -"} -(18,1,1) = {" -JJ -Mn -wu -Mn -Mn -Mn -Mn -Mn -Mn -Mn -Mn -tC -Mn -Mn -Km -zL -qn -MQ -pl -Uf -CA -xg -ew -eM -LD -rH -Gc -xg -Qh -Nq -II -II -DP -DP -"} -(19,1,1) = {" -pl -pl -pl -cQ -GE -GE -GE -GE -GE -GE -GE -GE -GE -zL -zL -zL -zL -yK -pl -Uf -YG -xg -Gq -eM -XJ -Qv -SQ -xg -Qh -Nq -II -II -DP -DP -"} -(20,1,1) = {" -Ur -pl -tF -ZN -yh -Kq -kF -yt -Rh -sg -Kq -qn -Ig -qn -zL -ZN -ZN -Lx -pl -He -YG -xg -oz -Ln -On -TT -pL -xg -Qh -Nq -II -DP -DP -DP -"} -(21,1,1) = {" -Ur -pl -pl -pl -pl -pl -pl -pl -pl -pl -pl -qn -qn -ZN -GE -ZN -pl -pA -pl -hF -Nq -xg -xg -xg -xg -xg -Zu -xg -Qh -Nq -II -DP -DP -DP -"} -(22,1,1) = {" -Ur -Ur -Ur -Ur -Ur -DP -DP -DP -DP -DP -Nq -fi -uN -uN -DQ -uN -Nq -ks -ui -bZ -Ml -lB -cV -cV -cV -cV -Hp -Qh -Qh -Nq -DP -DP -DP -DP -"} -(23,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -Ur -ys -UU -hf -Ca -uN -XK -wp -Nq -Nq -Nq -Nq -Nq -tN -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Nq -DP -DP -Ur -Ur -"} -(24,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -ys -UU -hf -Rx -TW -XK -MV -UU -YG -Uo -YG -YG -ub -MO -II -II -II -II -DP -DP -DP -DP -DP -Ur -Ur -"} -(25,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -ys -UU -Dj -wm -MD -LO -qi -Ds -ev -YK -YG -YG -ub -MO -II -II -II -II -DP -DP -DP -Ur -Ur -Ur -Ur -"} -(26,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -ys -UU -aK -Nj -uN -XK -LF -UU -YG -YG -Uo -Uo -ub -MO -DP -DP -DP -DP -DP -Ur -Ur -Ur -Ur -Ur -Ur -"} -(27,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -ys -Nq -uN -hF -uN -DQ -uN -Nq -Nq -Nq -Nq -Nq -tN -Nq -CA -CA -CA -DP -DP -Ur -Ur -Ur -Ur -Ur -Ur -"} -(28,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -Nq -Nq -lY -YT -yl -LO -nh -qi -Qt -qi -qi -qi -pv -YG -YG -YG -CA -CA -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(29,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -UU -UU -Nq -TI -Sf -YT -Sf -XK -nh -yC -qi -EO -eo -eo -SN -pe -YG -YG -YG -CA -CA -CA -Ur -Ur -Ur -Ur -Ur -"} -(30,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dh -Qh -hT -Sf -qi -YT -yC -LO -nh -qi -qi -nh -nh -nh -nh -YG -YG -bx -QV -YG -YG -CA -Ur -Ur -Ur -Ur -Ur -"} -(31,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -UU -UU -Nq -xI -qi -YT -XK -XK -nh -qi -dV -nh -qi -yC -qi -YG -QV -qi -YG -pe -YG -ls -Ur -Ur -Ur -Ur -Ur -"} -(32,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -Nq -qi -qi -Dk -Qg -Nq -nh -nh -nh -nh -it -qi -it -QV -CA -CA -CA -CA -YG -ls -Ur -Ur -Ur -Ur -Ur -"} -(33,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -Nq -qM -qe -vP -Sf -nh -nh -yC -qi -nh -nh -nh -qi -YG -CA -YG -YG -YG -YG -CA -Ur -Ur -Ur -Ur -Ur -"} -(34,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -Nq -YT -nh -Nq -nh -nh -qi -qi -Qt -it -qi -nh -qi -qi -CA -YK -CA -CA -CA -CA -Ur -Ur -Ur -Ur -Ur -"} -(35,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -UU -UU -Nq -CB -nh -qi -nh -it -qi -nh -nh -nh -qi -nh -Qt -YG -CA -YG -CA -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(36,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -dh -Qh -hT -YT -nh -qi -nh -nh -nh -nh -yC -nh -qi -nh -qi -CA -CA -pe -ls -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(37,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -UU -UU -Nq -bE -Jx -Br -iw -FG -YG -CA -EO -CA -QV -CA -CA -CA -YG -qi -ls -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(38,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -Nq -Nq -Nq -Nq -Nq -xd -YG -CA -ub -GK -YG -YK -YG -YG -YG -bx -CA -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(39,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -II -II -II -CA -tU -xl -cy -qh -YG -CA -CA -ls -ls -ls -CA -CA -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} -(40,1,1) = {" -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -DP -DP -DP -II -CA -CA -CA -CA -CA -CA -CA -Ur -DP -DP -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -Ur -"} diff --git a/_maps/RuinGeneration/41x41_corgasteroid.dmm b/_maps/RuinGeneration/41x41_corgasteroid.dmm deleted file mode 100644 index fde89949aa6c..000000000000 --- a/_maps/RuinGeneration/41x41_corgasteroid.dmm +++ /dev/null @@ -1,2389 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aH" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"bw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"cl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/ruin/unpowered) -"cP" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"eq" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"fN" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"ge" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ruin/unpowered) -"gp" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"he" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"hn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"ie" = ( -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"jk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"jG" = ( -/obj/item/pickaxe, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"jZ" = ( -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"kN" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Escape Pod Charlie" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating, -/area/ruin/unpowered) -"kS" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"lc" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ruin/unpowered) -"lO" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"mf" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"mj" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"mE" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/space/basic, -/area/space) -"nz" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"oT" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/transit_tube/station/reverse{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"po" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"qf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"qq" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"qs" = ( -/obj/machinery/power/port_gen/pacman, -/obj/item/wrench, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"rp" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"sq" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"tH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"uX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"vc" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/transit_tube/curved, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"vN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"vY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ruin/unpowered) -"vZ" = ( -/turf/open/space/basic, -/area/space) -"wg" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"wl" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"wr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"wS" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/unpowered) -"xE" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"xY" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"ym" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"zc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/unpowered) -"zL" = ( -/turf/closed/mineral/random, -/area/ruin/unpowered) -"Ai" = ( -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"As" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"AC" = ( -/turf/closed/wall/mineral/plastitanium, -/area/ruin/unpowered) -"AQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"BA" = ( -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Cj" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x5, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Co" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"Cr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"CX" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Dq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Dx" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/transit_tube/diagonal, -/turf/open/space/basic, -/area/space) -"EC" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"EF" = ( -/obj/structure/transit_tube/diagonal/crossing, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Fv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Fw" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"FX" = ( -/obj/item/crowbar/red, -/turf/open/floor/plating, -/area/ruin/unpowered) -"FY" = ( -/obj/structure/transit_tube/diagonal, -/turf/open/space/basic, -/area/space) -"GM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Hc" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Hf" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"If" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"IL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"IX" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Jn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/ruin/unpowered) -"JK" = ( -/obj/structure/bonfire, -/obj/effect/spawner/lootdrop/ruinloot/important, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"JL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plating, -/area/ruin/unpowered) -"JP" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x4, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Ln" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"LM" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Nz" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"Ok" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Ov" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Oz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"OX" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x5, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Pk" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"PF" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x10, -/turf/open/floor/plating, -/area/ruin/unpowered) -"PY" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"QD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"QV" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"Ri" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Rq" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"RG" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"RT" = ( -/obj/structure/window/reinforced/spawner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"SC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Tt" = ( -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"Ue" = ( -/obj/structure/window/reinforced/spawner{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Uo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"UB" = ( -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/ruinloot/basic, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Vd" = ( -/obj/structure/transit_tube, -/turf/open/space/basic, -/area/space) -"Vn" = ( -/obj/structure/window/reinforced/spawner{ - dir = 1 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Vo" = ( -/obj/structure/table/wood, -/obj/item/candle, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) -"VQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset/full, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"Xy" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"YT" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating/asteroid, -/area/ruin/unpowered) - -(1,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(2,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -mE -IX -RT -Fw -"} -(3,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Ri -Pk -Pk -mE -Vn -If -Ov -"} -(4,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Ri -vZ -vZ -vZ -vZ -vZ -Pk -xY -PY -If -Fw -"} -(5,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -vZ -vZ -vZ -vZ -vZ -Pk -Dx -Ue -CX -Fw -"} -(6,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Ri -Pk -Pk -Pk -Pk -Pk -Pk -Pk -Pk -aH -Pk -Co -Fw -Fw -"} -(7,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -SC -SC -SC -SC -SC -SC -Fw -SC -Fw -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -vZ -vZ -vZ -vZ -FY -Pk -vZ -vZ -vZ -vZ -"} -(8,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -SC -Ai -Ai -jk -AQ -IL -rp -Cr -rp -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -vZ -vZ -vZ -EF -Pk -Pk -Pk -Pk -Pk -vZ -"} -(9,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Ri -Pk -SC -Ai -Ai -Fv -po -Dq -Fw -wr -SC -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -Ri -RG -vZ -vZ -Pk -vZ -vZ -vZ -vZ -"} -(10,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Fw -SC -Fw -Fw -Fw -GM -Fw -Fw -Fw -Hf -Hf -Hf -Hf -vc -Vd -Xy -Vd -Xy -Vd -Xy -Vd -Xy -Xy -he -Ri -Pk -Pk -Pk -Pk -Ri -vZ -vZ -"} -(11,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -vZ -Fw -Rq -Rq -Rq -Rq -OX -Fw -qq -cP -oT -fN -qq -Fw -Fw -eq -eq -Fw -Fw -vZ -Pk -vZ -vZ -Ri -vZ -vZ -Pk -vZ -vZ -vZ -vZ -"} -(12,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Ri -Pk -Pk -zL -Fw -Rq -Rq -Rq -Rq -Rq -Fw -po -UB -po -BA -po -Fw -Rq -Rq -Rq -JP -Fw -Fw -Fw -SC -Fw -Ri -Pk -vZ -Ri -vZ -vZ -vZ -vZ -"} -(13,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -Pk -zL -Fw -Rq -Rq -Rq -Rq -Rq -Fw -VQ -po -LM -po -vN -Fw -Rq -Rq -Rq -Rq -Fw -Rq -wg -Rq -wg -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(14,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -Fw -Rq -Rq -Rq -Rq -Rq -Fw -hn -po -po -po -qf -Fw -Rq -Rq -Rq -Rq -Oz -Rq -Fw -Fw -Fw -Ri -Pk -vZ -vZ -vZ -vZ -vZ -vZ -"} -(15,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Fw -ym -Fw -Fw -Fw -Fw -Rq -Rq -Rq -Rq -Fw -Rq -eq -vZ -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(16,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -QV -zL -zL -jZ -Fw -Rq -Rq -Rq -Rq -Rq -Oz -wS -Rq -mf -Rq -Rq -eq -Rq -Rq -Rq -Rq -Fw -Rq -eq -Pk -Ri -Ri -Pk -vZ -vZ -vZ -vZ -vZ -vZ -"} -(17,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -QV -kS -jZ -jZ -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Fw -Fw -Fw -Fw -Jn -Fw -Fw -Fw -Fw -Fw -Fw -Rq -Fw -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(18,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -kS -jZ -Tt -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -PF -Fw -Rq -eq -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(19,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -jZ -jZ -jZ -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -FX -eq -Ri -Ri -Pk -Pk -Ri -vZ -vZ -vZ -vZ -vZ -"} -(20,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -jZ -jZ -jZ -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -Rq -eq -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(21,1,1) = {" -vZ -Ri -Pk -Pk -Pk -Pk -zL -vY -jZ -Ok -qs -Fw -Fw -Fw -ym -Fw -Fw -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Fw -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(22,1,1) = {" -vZ -vZ -vZ -Pk -vZ -zL -Fw -ge -jZ -Uo -EC -Fw -Rq -Rq -Rq -Rq -Cj -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Oz -Rq -eq -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(23,1,1) = {" -vZ -AC -Fw -Fw -Fw -zL -zL -tH -jZ -QD -lc -Fw -Rq -Rq -Rq -Rq -Rq -Oz -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Oz -Rq -eq -Ri -Ri -Pk -Pk -Ri -vZ -vZ -vZ -vZ -vZ -"} -(24,1,1) = {" -vZ -vZ -vZ -vZ -vZ -zL -Hc -jZ -jZ -ie -gp -Fw -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -Rq -eq -vZ -Ri -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(25,1,1) = {" -vZ -vZ -vZ -vZ -vZ -kN -Hc -jZ -jZ -jZ -jZ -Fw -Fw -Fw -Jn -Fw -Fw -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -Rq -Fw -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(26,1,1) = {" -vZ -vZ -vZ -vZ -vZ -zL -Hc -jZ -JL -bw -bw -bw -Fw -Rq -Rq -Rq -JP -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -Rq -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(27,1,1) = {" -vZ -AC -Fw -Fw -Fw -zL -zL -jZ -Ln -Rq -Rq -Rq -SC -Rq -Rq -Rq -Rq -Fw -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Rq -Fw -zc -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(28,1,1) = {" -vZ -vZ -vZ -Pk -vZ -zL -zL -jZ -uX -As -As -As -Fw -Rq -Rq -Rq -Rq -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Fw -Rq -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(29,1,1) = {" -vZ -Ri -Pk -Pk -Pk -zL -zL -jZ -jZ -jZ -jZ -jZ -Fw -Rq -Rq -Rq -Rq -cl -jZ -jZ -uX -As -tH -jZ -jZ -Ln -Rq -Rq -Oz -Rq -Fw -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(30,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -jZ -jZ -jZ -jZ -jZ -Fw -Rq -Rq -Rq -Rq -Fw -Fw -jZ -jZ -jZ -jZ -jZ -jZ -zL -zL -zL -Fw -Fw -Fw -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(31,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -jZ -jZ -jZ -jZ -Fw -Fw -Fw -Fw -Fw -Fw -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -zL -zL -vZ -Pk -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(32,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -YT -YT -YT -jZ -jZ -zL -zL -vZ -vZ -Pk -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(33,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -xE -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -zL -zL -vZ -vZ -Pk -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(34,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -Fw -zL -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -JK -jZ -jZ -jZ -sq -zL -zL -Pk -Pk -Pk -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(35,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -zL -jZ -jZ -jZ -nz -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -jZ -nz -zL -zL -vZ -Pk -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(36,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -zL -zL -zL -sq -jZ -jZ -jZ -YT -YT -YT -jZ -jZ -jZ -wl -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(37,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -zL -zL -zL -zL -xE -jG -jZ -jZ -jZ -jZ -jZ -jZ -jZ -Vo -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(38,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -Fw -zL -jZ -jZ -jZ -jZ -jZ -jZ -jZ -mj -eq -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(39,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -nz -nz -Nz -Vo -lO -zL -zL -zL -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(40,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -zL -zL -eq -eq -eq -zL -zL -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} -(41,1,1) = {" -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -zL -zL -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -vZ -"} diff --git a/_maps/RuinGeneration/5x5_14_hallway-end-east.dmm b/_maps/RuinGeneration/5x5_14_hallway-end-east.dmm deleted file mode 100644 index c3a85bac220c..000000000000 --- a/_maps/RuinGeneration/5x5_14_hallway-end-east.dmm +++ /dev/null @@ -1,67 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"n" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"o" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"F" = ( -/turf/template_noop, -/area/template_noop) -"M" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"Q" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"R" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -a -R -o -R -a -"} -(2,1,1) = {" -a -R -R -R -a -"} -(3,1,1) = {" -a -Q -Q -M -a -"} -(4,1,1) = {" -F -n -F -n -F -"} -(5,1,1) = {" -F -F -F -F -F -"} diff --git a/_maps/RuinGeneration/5x5_14_hallway-end-north.dmm b/_maps/RuinGeneration/5x5_14_hallway-end-north.dmm deleted file mode 100644 index 2532496cf531..000000000000 --- a/_maps/RuinGeneration/5x5_14_hallway-end-north.dmm +++ /dev/null @@ -1,59 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"f" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"N" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"O" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"R" = ( -/turf/template_noop, -/area/template_noop) -"T" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"X" = ( -/turf/closed/wall, -/area/ruin/unpowered) - -(1,1,1) = {" -R -R -X -X -X -"} -(2,1,1) = {" -R -O -T -f -f -"} -(3,1,1) = {" -R -R -T -f -N -"} -(4,1,1) = {" -R -O -T -f -f -"} -(5,1,1) = {" -R -R -X -X -X -"} diff --git a/_maps/RuinGeneration/5x5_14_hallway-end-south.dmm b/_maps/RuinGeneration/5x5_14_hallway-end-south.dmm deleted file mode 100644 index a902ea8557aa..000000000000 --- a/_maps/RuinGeneration/5x5_14_hallway-end-south.dmm +++ /dev/null @@ -1,61 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"c" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"g" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"j" = ( -/turf/template_noop, -/area/template_noop) -"C" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"P" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Q" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -g -g -g -j -j -"} -(2,1,1) = {" -P -P -C -c -j -"} -(3,1,1) = {" -Q -P -C -j -j -"} -(4,1,1) = {" -P -P -C -c -j -"} -(5,1,1) = {" -g -g -g -j -j -"} diff --git a/_maps/RuinGeneration/5x5_14_hallway-end-west.dmm b/_maps/RuinGeneration/5x5_14_hallway-end-west.dmm deleted file mode 100644 index b6fd202e7019..000000000000 --- a/_maps/RuinGeneration/5x5_14_hallway-end-west.dmm +++ /dev/null @@ -1,61 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"g" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"y" = ( -/turf/template_noop, -/area/template_noop) -"z" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"O" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"P" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"V" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ruin/unpowered) - -(1,1,1) = {" -y -y -y -y -y -"} -(2,1,1) = {" -y -z -y -z -y -"} -(3,1,1) = {" -g -V -V -V -g -"} -(4,1,1) = {" -g -P -P -P -g -"} -(5,1,1) = {" -g -P -O -P -g -"} diff --git a/_maps/RuinGeneration/5x6_arsenal.dmm b/_maps/RuinGeneration/5x6_arsenal.dmm deleted file mode 100644 index 2a5fd0d8402c..000000000000 --- a/_maps/RuinGeneration/5x6_arsenal.dmm +++ /dev/null @@ -1,164 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"b" = ( -/obj/effect/abstract/doorway_marker{ - dir = 1 - }, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered) -"l" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k/empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/unpowered) -"q" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered) -"t" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/unpowered) -"v" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k/empty, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/ruin/unpowered) -"C" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k/scope, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/unpowered) -"H" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/unpowered) -"I" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/ruin/unpowered) -"N" = ( -/turf/open/floor/plating/catwalk_floor, -/area/ruin/unpowered) -"T" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/ussr, -/obj/item/clothing/head/helmet/ussr, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/ruin/unpowered) - -(1,1,1) = {" -a -a -a -a -a -a -"} -(2,1,1) = {" -a -v -l -C -t -a -"} -(3,1,1) = {" -b -N -N -N -N -q -"} -(4,1,1) = {" -a -T -I -I -H -a -"} -(5,1,1) = {" -a -a -a -a -a -a -"} diff --git a/_maps/RuinGeneration/5x9_northernairlock.dmm b/_maps/RuinGeneration/5x9_northernairlock.dmm deleted file mode 100644 index fabc33099926..000000000000 --- a/_maps/RuinGeneration/5x9_northernairlock.dmm +++ /dev/null @@ -1,89 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"q" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"s" = ( -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"E" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"M" = ( -/turf/template_noop, -/area/template_noop) -"O" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"S" = ( -/obj/effect/abstract/open_area_marker, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"T" = ( -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ruin/unpowered) -"V" = ( -/turf/closed/wall, -/area/ruin/unpowered) - -(1,1,1) = {" -M -M -M -M -M -V -V -V -V -"} -(2,1,1) = {" -M -M -M -q -q -q -O -O -O -"} -(3,1,1) = {" -M -M -M -T -E -s -O -O -S -"} -(4,1,1) = {" -M -M -M -q -q -q -O -O -O -"} -(5,1,1) = {" -M -M -M -M -M -V -V -V -V -"} diff --git a/_maps/RuinGeneration/5x9_southernairlock.dmm b/_maps/RuinGeneration/5x9_southernairlock.dmm deleted file mode 100644 index dfa04ae9722b..000000000000 --- a/_maps/RuinGeneration/5x9_southernairlock.dmm +++ /dev/null @@ -1,91 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"h" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"n" = ( -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/ruin/unpowered) -"t" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"y" = ( -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"T" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"U" = ( -/turf/template_noop, -/area/template_noop) -"V" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"Y" = ( -/obj/effect/abstract/open_area_marker{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -V -V -V -V -U -U -U -U -U -"} -(2,1,1) = {" -T -T -T -t -t -t -U -U -U -"} -(3,1,1) = {" -Y -T -T -n -h -y -U -U -U -"} -(4,1,1) = {" -T -T -T -t -t -t -U -U -U -"} -(5,1,1) = {" -V -V -V -V -U -U -U -U -U -"} diff --git a/_maps/RuinGeneration/9x13_medstorage.dmm b/_maps/RuinGeneration/9x13_medstorage.dmm deleted file mode 100644 index f65c013722b8..000000000000 --- a/_maps/RuinGeneration/9x13_medstorage.dmm +++ /dev/null @@ -1,343 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"b" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/space) -"d" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/space) -"e" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/space) -"g" = ( -/obj/effect/abstract/open_area_marker{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/space) -"h" = ( -/obj/structure/frame/machine, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"i" = ( -/obj/structure/window/reinforced, -/obj/structure/frame/computer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"n" = ( -/obj/structure/table/glass, -/obj/machinery/door/window{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/ruinloot/medical, -/obj/effect/spawner/lootdrop/ruinloot/medical, -/turf/open/floor/plasteel/white, -/area/space) -"s" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/ruinloot/medical, -/turf/open/floor/plasteel/white, -/area/space) -"t" = ( -/turf/closed/wall, -/area/space) -"u" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/space) -"y" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plasteel/white, -/area/space) -"z" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/space) -"A" = ( -/obj/machinery/door/airlock/medical/glass, -/turf/open/floor/plasteel/white, -/area/space) -"G" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"J" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"K" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/ruinloot/medical, -/turf/open/floor/plasteel/white, -/area/space) -"P" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/space) -"Q" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/closed/wall, -/area/space) -"R" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"V" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) -"X" = ( -/turf/open/floor/plasteel/white, -/area/space) -"Y" = ( -/obj/structure/table/glass, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/item/storage/firstaid, -/turf/open/floor/plasteel/white, -/area/space) -"Z" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/space) - -(1,1,1) = {" -t -X -e -X -t -t -t -t -t -t -t -Q -t -"} -(2,1,1) = {" -t -X -X -G -t -a -R -i -K -n -K -z -t -"} -(3,1,1) = {" -t -X -X -Z -d -u -u -u -u -u -u -b -y -"} -(4,1,1) = {" -t -X -X -Z -A -u -X -X -X -X -X -G -t -"} -(5,1,1) = {" -t -X -X -Z -d -u -X -d -t -d -X -G -t -"} -(6,1,1) = {" -t -X -X -Z -A -u -X -X -X -X -X -G -t -"} -(7,1,1) = {" -t -X -X -Z -d -b -G -G -G -G -G -G -t -"} -(8,1,1) = {" -t -X -X -P -t -h -V -J -s -Y -s -z -t -"} -(9,1,1) = {" -t -X -g -X -t -t -t -t -t -t -t -t -t -"} diff --git a/_maps/RuinGeneration/9x13_teleporter.dmm b/_maps/RuinGeneration/9x13_teleporter.dmm deleted file mode 100644 index 4efa45b94925..000000000000 --- a/_maps/RuinGeneration/9x13_teleporter.dmm +++ /dev/null @@ -1,196 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/unpowered) -"c" = ( -/obj/structure/table, -/obj/item/stock_parts/cell{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"e" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"g" = ( -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"q" = ( -/turf/template_noop, -/area/template_noop) -"y" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"z" = ( -/obj/machinery/door/airlock/vault, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"I" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"L" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plasteel/airless, -/area/ruin/unpowered) -"P" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"Q" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"T" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/unpowered) -"X" = ( -/turf/open/floor/plating/airless, -/area/ruin/unpowered) - -(1,1,1) = {" -q -q -q -q -q -P -L -P -q -q -q -q -q -"} -(2,1,1) = {" -q -q -q -Q -q -P -g -P -q -Q -q -q -q -"} -(3,1,1) = {" -q -q -q -P -P -P -z -P -P -P -q -q -q -"} -(4,1,1) = {" -q -q -P -P -c -b -X -g -g -X -X -q -q -"} -(5,1,1) = {" -q -Q -P -g -g -g -g -g -g -g -X -Q -q -"} -(6,1,1) = {" -q -q -P -g -g -e -y -I -g -X -P -q -q -"} -(7,1,1) = {" -q -Q -X -T -X -g -g -g -g -X -P -Q -q -"} -(8,1,1) = {" -q -q -X -X -T -X -g -g -g -P -P -q -q -"} -(9,1,1) = {" -q -q -q -X -X -P -P -P -P -P -q -q -q -"} diff --git a/_maps/RuinGeneration/9x5_3_seperation.dmm b/_maps/RuinGeneration/9x5_3_seperation.dmm deleted file mode 100644 index c78cb3101057..000000000000 --- a/_maps/RuinGeneration/9x5_3_seperation.dmm +++ /dev/null @@ -1,97 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"b" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"f" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/ruin/unpowered) -"j" = ( -/obj/effect/abstract/doorway_marker{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ruin/unpowered) -"s" = ( -/obj/structure/lattice/catwalk, -/turf/template_noop, -/area/template_noop) -"t" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"E" = ( -/turf/open/floor/plating, -/area/ruin/unpowered) -"L" = ( -/obj/effect/abstract/open_area_marker{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Y" = ( -/turf/template_noop, -/area/template_noop) - -(1,1,1) = {" -t -b -L -b -t -"} -(2,1,1) = {" -t -b -b -b -t -"} -(3,1,1) = {" -t -f -f -f -t -"} -(4,1,1) = {" -Y -s -Y -s -Y -"} -(5,1,1) = {" -Y -s -Y -s -Y -"} -(6,1,1) = {" -Y -s -Y -s -Y -"} -(7,1,1) = {" -t -f -f -f -t -"} -(8,1,1) = {" -t -E -E -E -t -"} -(9,1,1) = {" -t -t -j -t -t -"} diff --git a/_maps/RuinGeneration/9x9_checkpoint.dmm b/_maps/RuinGeneration/9x9_checkpoint.dmm deleted file mode 100644 index 3b2a51dac01a..000000000000 --- a/_maps/RuinGeneration/9x9_checkpoint.dmm +++ /dev/null @@ -1,258 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/trimline/red/filled/warning, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"b" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"c" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/techstorage/security, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"e" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"i" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"n" = ( -/obj/structure/sign/warning/radiation{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"s" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"t" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"u" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin/unpowered) -"w" = ( -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"x" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"z" = ( -/obj/machinery/computer{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"B" = ( -/obj/effect/turf_decal/trimline/red/filled/warning, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"C" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"D" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"K" = ( -/obj/effect/turf_decal/trimline/red/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"N" = ( -/obj/machinery/computer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"S" = ( -/obj/effect/spawner/lootdrop/glowstick, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"T" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"U" = ( -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"V" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/unpowered) -"X" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/plasteel, -/area/ruin/unpowered) - -(1,1,1) = {" -C -C -C -C -s -s -T -s -s -"} -(2,1,1) = {" -C -b -N -N -s -D -w -w -s -"} -(3,1,1) = {" -C -K -x -K -s -n -w -w -s -"} -(4,1,1) = {" -C -i -S -i -u -w -w -w -s -"} -(5,1,1) = {" -U -i -X -e -u -w -w -w -s -"} -(6,1,1) = {" -C -i -B -z -u -w -w -w -s -"} -(7,1,1) = {" -C -i -a -c -s -n -w -w -s -"} -(8,1,1) = {" -C -i -B -t -s -D -w -w -s -"} -(9,1,1) = {" -C -C -C -C -s -s -V -s -s -"} diff --git a/_maps/RuinGeneration/9x9_teleporter.dmm b/_maps/RuinGeneration/9x9_teleporter.dmm deleted file mode 100644 index 50f6294a9358..000000000000 --- a/_maps/RuinGeneration/9x9_teleporter.dmm +++ /dev/null @@ -1,221 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"d" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"e" = ( -/obj/structure/closet, -/obj/item/gps/spaceruin, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"g" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"i" = ( -/obj/item/shard, -/obj/item/electronics/apc, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"l" = ( -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"m" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"n" = ( -/obj/effect/abstract/doorway_marker{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"p" = ( -/obj/effect/decal/cleanable/robot_debris/old, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"s" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"y" = ( -/turf/closed/wall/r_wall, -/area/ruin/space/abandoned_tele) -"z" = ( -/obj/structure/lattice, -/turf/template_noop, -/area/template_noop) -"A" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"C" = ( -/obj/structure/closet/crate, -/obj/item/aicard, -/obj/item/multitool, -/obj/item/weldingtool, -/obj/item/wrench, -/obj/item/circuitboard/computer/teleporter, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"D" = ( -/obj/item/stock_parts/cell, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"I" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"J" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"K" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"L" = ( -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"N" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"P" = ( -/obj/effect/abstract/doorway_marker{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"Q" = ( -/obj/effect/abstract/doorway_marker, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"S" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"V" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"W" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) -"Z" = ( -/obj/effect/spawner/lootdrop/crate_spawner, -/turf/open/floor/plating/airless, -/area/ruin/space/abandoned_tele) - -(1,1,1) = {" -a -z -y -y -n -y -y -z -a -"} -(2,1,1) = {" -a -y -y -l -l -m -y -y -a -"} -(3,1,1) = {" -y -y -N -D -I -K -l -y -y -"} -(4,1,1) = {" -y -s -l -d -p -l -l -C -y -"} -(5,1,1) = {" -y -S -l -l -J -g -d -l -Q -"} -(6,1,1) = {" -y -A -l -p -l -l -l -V -y -"} -(7,1,1) = {" -y -y -W -d -l -i -L -y -y -"} -(8,1,1) = {" -z -y -y -Z -m -e -y -y -z -"} -(9,1,1) = {" -a -a -y -y -P -y -y -a -a -"} diff --git a/_maps/RuinGeneration/9x9_toxinstorage.dmm b/_maps/RuinGeneration/9x9_toxinstorage.dmm deleted file mode 100644 index fae21f8e09b0..000000000000 --- a/_maps/RuinGeneration/9x9_toxinstorage.dmm +++ /dev/null @@ -1,229 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"d" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"e" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"i" = ( -/obj/machinery/door/airlock/highsecurity{ - req_access_txt = "200" - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"k" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"l" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"p" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"q" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"r" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"t" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"v" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"z" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"C" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"D" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"F" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"I" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"K" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"N" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"O" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"Q" = ( -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"R" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"T" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"U" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ruin/unpowered) -"V" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) - -(1,1,1) = {" -V -V -V -V -V -V -V -V -V -"} -(2,1,1) = {" -V -k -I -N -U -z -z -e -V -"} -(3,1,1) = {" -i -k -t -v -U -z -z -p -V -"} -(4,1,1) = {" -V -a -O -O -O -O -O -O -V -"} -(5,1,1) = {" -V -Q -Q -Q -Q -Q -Q -Q -V -"} -(6,1,1) = {" -V -D -R -r -r -r -R -R -V -"} -(7,1,1) = {" -V -k -t -d -F -C -T -T -V -"} -(8,1,1) = {" -V -k -I -q -l -C -C -K -V -"} -(9,1,1) = {" -V -V -V -V -V -V -V -V -V -"} diff --git a/_maps/_basemap.dm b/_maps/_basemap.dm index 5f95d8d01adb..5a793963fe70 100644 --- a/_maps/_basemap.dm +++ b/_maps/_basemap.dm @@ -1,12 +1,19 @@ //#define LOWMEMORYMODE //uncomment this to load centcom and runtime station and thats it. -#include "map_files\protocol_c\endpoint.dmm" +#include "endpoint.dmm" #ifndef LOWMEMORYMODE #ifdef ALL_MAPS - #include "map_files\Mining\Lavaland.dmm" - #include "map_files\BoxStation\BoxStationWhite.dmm" - #include "map_files\BoxStation\BoxStationWhite_under.dmm" + #include "mining\lavaland.dmm" + #include "stations\boxstation.dmm" + #include "stations\blueshift.dmm" + #include "stations\construction.dmm" + #include "stations\dawn.dmm" + #include "stations\delta.dmm" + #include "stations\kilo.dmm" + #include "stations\meta.dmm" + #include "stations\null.dmm" + #include "stations\tram.dmm" #ifdef CIBUILDING #include "templates.dm" #endif diff --git a/_maps/away/academy.dmm b/_maps/away/academy.dmm new file mode 100644 index 000000000000..27e2003c4d0b --- /dev/null +++ b/_maps/away/academy.dmm @@ -0,0 +1,19979 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/space/basic, +/area/space) +"ab" = ( +/turf/closed/wall/r_wall, +/area/awaymission/academy/headmaster) +"ac" = ( +/mob/living/simple_animal/hostile/carp/ranged{ + faction = list("wizard") + }, +/turf/open/space/basic, +/area/space/nearstation) +"ad" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ae" = ( +/obj/structure/frame/computer{ + anchored = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"af" = ( +/obj/structure/table/reinforced, +/obj/item/pen/red, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ag" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ah" = ( +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ai" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aj" = ( +/obj/machinery/power/apc/unlocked{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ak" = ( +/obj/structure/table/reinforced, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"al" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"am" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aq" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ar" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/academy/console_maint, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"as" = ( +/turf/closed/wall, +/area/awaymission/academy/headmaster) +"at" = ( +/obj/machinery/door/airlock/wood{ + name = "Headmaster Room" + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aw" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ax" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ay" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/mirror/magic/lesser{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"az" = ( +/obj/item/stack/sheet/animalhide/monkey, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aB" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aC" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/mug/tea, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aE" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aF" = ( +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aG" = ( +/turf/closed/indestructible/rock, +/area/space/nearstation) +"aH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aI" = ( +/obj/structure/table/reinforced, +/obj/item/laser_pointer/upgraded, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aJ" = ( +/obj/structure/destructible/cult/tome, +/obj/item/dice/d20/fate, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aK" = ( +/mob/living/simple_animal/hostile/morph{ + faction = list("skeleton") + }, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"aL" = ( +/turf/closed/wall/mineral/wood, +/area/awaymission/academy/academycellar) +"aM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aN" = ( +/obj/structure/table/reinforced, +/obj/item/coin/plasma, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aP" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aQ" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aR" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aS" = ( +/turf/closed/mineral/random/high_chance, +/area/awaymission/academy) +"aT" = ( +/obj/structure/noticeboard, +/turf/closed/wall, +/area/awaymission/academy/headmaster) +"aU" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aV" = ( +/obj/structure/chair/office, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aX" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"aY" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"aZ" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"ba" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bb" = ( +/obj/structure/table/wood, +/obj/item/staff, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bc" = ( +/obj/structure/table/wood, +/obj/item/hand_labeler, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bd" = ( +/obj/structure/table/wood, +/obj/item/pen/invisible, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"be" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bf" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bg" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bh" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bi" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/tea, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bj" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bk" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bl" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bm" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bn" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bo" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bp" = ( +/obj/machinery/door/airlock/gold, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"bq" = ( +/obj/machinery/door/airlock/gold, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"br" = ( +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"bs" = ( +/turf/closed/wall/r_wall, +/area/awaymission/academy/classrooms) +"bt" = ( +/obj/machinery/door/poddoor/shutters{ + id = "AcademyAuto" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"bu" = ( +/obj/machinery/door/poddoor/shutters{ + id = "AcademyAuto" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bv" = ( +/obj/machinery/door/poddoor/shutters{ + id = "AcademyAuto" + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bw" = ( +/obj/machinery/door/poddoor/shutters{ + id = "AcademyAuto" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bx" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/awaymission/academy/headmaster) +"by" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/awaymission/academy/headmaster) +"bz" = ( +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"bA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bB" = ( +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"bD" = ( +/obj/machinery/button/door{ + id = "AcademyAuto"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"bE" = ( +/turf/closed/wall, +/area/awaymission/academy/classrooms) +"bF" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/academy/classrooms) +"bI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"bJ" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/awaymission/academy/headmaster) +"bK" = ( +/turf/open/floor/plasteel/chapel, +/area/awaymission/academy/headmaster) +"bL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"bM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"bQ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"bR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/headmaster) +"bS" = ( +/obj/structure/academy_wizard_spawner, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"bT" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/academy/headmaster) +"bU" = ( +/obj/machinery/autolathe, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"bX" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/engine, +/area/awaymission/academy/classrooms) +"bY" = ( +/obj/structure/training_machine, +/turf/open/floor/engine, +/area/awaymission/academy/classrooms) +"bZ" = ( +/turf/open/floor/engine, +/area/awaymission/academy/classrooms) +"ca" = ( +/obj/structure/training_machine, +/obj/item/target/alien, +/turf/open/floor/engine, +/area/awaymission/academy/classrooms) +"cb" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"cc" = ( +/obj/structure/table, +/obj/item/lighter/greyscale, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"cd" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"ce" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"cg" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/academy/headmaster) +"ch" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/academy/headmaster) +"ci" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"ck" = ( +/obj/machinery/door/airlock/plasma, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"cl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"co" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plating, +/area/awaymission/academy/headmaster) +"cp" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/academy/headmaster) +"cr" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ct" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"cu" = ( +/turf/open/floor/carpet/lone, +/area/awaymission/academy/headmaster) +"cv" = ( +/obj/machinery/door/window{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/headmaster) +"cw" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/headmaster) +"cx" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/headmaster) +"cy" = ( +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/academy/headmaster) +"cz" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cB" = ( +/obj/item/target, +/turf/open/floor/engine, +/area/awaymission/academy/classrooms) +"cC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cD" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"cF" = ( +/obj/machinery/door/airlock/plasma, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"cH" = ( +/obj/structure/sign/warning/nosmoking/circle, +/turf/closed/wall, +/area/awaymission/academy/headmaster) +"cI" = ( +/obj/structure/trap/damage, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"cJ" = ( +/obj/item/stack/sheet/iron, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"cK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cL" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"cN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"cO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"cP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"cT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"cU" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen/red, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"cV" = ( +/obj/structure/closet/crate, +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"db" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"dc" = ( +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"dd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"de" = ( +/turf/open/floor/circuit/green, +/area/awaymission/academy/classrooms) +"df" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"dg" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand/fireball, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"dh" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"di" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dk" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dl" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dm" = ( +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"dn" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"dp" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/awaymission/academy/classrooms) +"dq" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/awaymission/academy/classrooms) +"dr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ds" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"dt" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"du" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dv" = ( +/obj/item/seeds/eggplant/eggy, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dw" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dx" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dy" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/headmaster) +"dz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/awaymission/academy/classrooms) +"dC" = ( +/turf/open/floor/grass, +/area/awaymission/academy/headmaster) +"dD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dE" = ( +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dF" = ( +/obj/machinery/door/airlock/freezer, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"dG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"dH" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"dI" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/awaymission/academy/classrooms) +"dJ" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/replicapod, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dK" = ( +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"dL" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dM" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/tomato/blue/bluespace, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dS" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"dT" = ( +/obj/structure/mineral_door/iron, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dU" = ( +/obj/structure/mineral_door/iron, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dV" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"dW" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"dY" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"ea" = ( +/obj/machinery/igniter/on, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"eb" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ec" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ed" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ee" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ef" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eg" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper/fluff/awaymissions/academy/class/automotive, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"eh" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"ei" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/item/paper/fluff/awaymissions/academy/class/pyromancy, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"ej" = ( +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"ek" = ( +/obj/machinery/power/apc/unlocked{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"el" = ( +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"em" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"en" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eo" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ep" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eq" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"er" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"es" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"et" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eu" = ( +/obj/singularity/academy, +/turf/open/space/basic, +/area/space/nearstation) +"ev" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ew" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"ex" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ez" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/awaymission/academy) +"eA" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"eB" = ( +/obj/machinery/door/airlock/public/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"eC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"eE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"eF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"eG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"eH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"eJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/awaymission/academy) +"eK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eM" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/awaymission/academy/classrooms) +"eN" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/awaymission/academy/classrooms) +"eO" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/awaymission/academy/classrooms) +"eP" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"eQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"eR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"eS" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"eT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"eV" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/awaymission/academy/classrooms) +"eW" = ( +/turf/open/floor/plasteel/chapel, +/area/awaymission/academy/classrooms) +"eX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/awaymission/academy/classrooms) +"eY" = ( +/obj/structure/mineral_door/wood, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"eZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"fa" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/food/burger/spell, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"fb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/awaymission/academy) +"fc" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fn" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"fo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fq" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"fr" = ( +/obj/structure/table, +/obj/item/trash/semki, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"fs" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"ft" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/classrooms) +"fu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fy" = ( +/obj/structure/noticeboard{ + pixel_y = -32 + }, +/obj/item/paper/fluff/awaymissions/academy/class/biology, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/classrooms) +"fC" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"fD" = ( +/turf/closed/wall, +/area/awaymission/academy/academyaft) +"fF" = ( +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"fH" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fI" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/awaymission/academy/classrooms) +"fK" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/awaymission/academy/classrooms) +"fL" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"fM" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"fN" = ( +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/academyaft) +"fO" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/academyaft) +"fP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"fR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fS" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fT" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fU" = ( +/obj/item/target, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fW" = ( +/obj/structure/training_machine, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"fX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"fY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ga" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gb" = ( +/obj/structure/table, +/obj/item/pen/red, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gc" = ( +/obj/structure/table, +/obj/item/lazarus_injector, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/awaymission/academy/classrooms) +"gd" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"ge" = ( +/obj/item/candle/infinite, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"gf" = ( +/obj/structure/holohoop, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"gh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/academyaft) +"gk" = ( +/obj/machinery/recharger, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gl" = ( +/obj/structure/table/reinforced, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gm" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gn" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"go" = ( +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gp" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gq" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gr" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/awaymission/academy/classrooms) +"gu" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gv" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/awaymission/academy/classrooms) +"gx" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"gy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/academy/academyaft) +"gz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gA" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/obj/item/ammo_casing, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gD" = ( +/obj/structure/table, +/obj/item/scalpel, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gH" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/academy/grade/aplus, +/obj/item/gun/ballistic/shotgun/automatic/combat, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gI" = ( +/obj/structure/table, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/paper/fluff/awaymissions/academy/grade/bminus, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gK" = ( +/obj/structure/window/reinforced, +/obj/item/ammo_casing, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gL" = ( +/mob/living/simple_animal/hostile/bear, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gM" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"gN" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"gO" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"gQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/mob/living/simple_animal/hostile/bear, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"gR" = ( +/obj/structure/mineral_door/iron, +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"gT" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/gold, +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"gW" = ( +/obj/structure/table, +/obj/item/gun/energy/floragun, +/obj/item/paper/fluff/awaymissions/academy/grade/dminus, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"gX" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass, +/obj/item/target, +/obj/item/target, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"ha" = ( +/turf/open/floor/plasteel/white/side, +/area/awaymission/academy/classrooms) +"hb" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white/side, +/area/awaymission/academy/classrooms) +"hc" = ( +/turf/closed/wall/r_wall, +/area/awaymission/academy/academyaft) +"hd" = ( +/obj/structure/mineral_door/wood, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"he" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"hf" = ( +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hl" = ( +/obj/machinery/power/apc/unlocked{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hm" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hn" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ho" = ( +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hr" = ( +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hz" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hE" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hH" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hK" = ( +/obj/structure/cable, +/obj/item/clothing/suit/caution, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hL" = ( +/obj/structure/mecha_wreckage/durand, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"hN" = ( +/obj/structure/frame/machine, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hR" = ( +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"hS" = ( +/obj/structure/closet, +/obj/item/candle, +/obj/item/candle, +/obj/item/storage/box/matches, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hT" = ( +/obj/structure/closet, +/obj/item/storage/belt/soulstone, +/obj/item/clothing/under/costume/schoolgirl, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hU" = ( +/obj/structure/closet, +/obj/item/clothing/under/dress/skirt, +/obj/item/clothing/glasses/regular, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hV" = ( +/obj/structure/closet, +/obj/item/clothing/under/color/lightpurple, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hW" = ( +/obj/structure/closet, +/obj/item/lipstick/random, +/obj/item/clothing/under/costume/schoolgirl, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hX" = ( +/turf/open/floor/wood, +/area/awaymission/academy/academyaft) +"hY" = ( +/obj/structure/closet, +/obj/item/clothing/under/color/lightpurple, +/obj/item/staff, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"hZ" = ( +/obj/structure/closet, +/obj/item/storage/wallet/random, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ia" = ( +/obj/structure/closet, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ib" = ( +/obj/structure/closet, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/clothing/under/color/lightpurple, +/obj/item/poster/random_contraband, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ic" = ( +/obj/structure/closet, +/obj/item/storage/box/snappops, +/obj/item/storage/backpack, +/obj/item/paper/fluff/awaymissions/academy/grade/failure, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"id" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ie" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ih" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma{ + amount = 50 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ii" = ( +/turf/open/floor/grass, +/area/awaymission/academy/academyaft) +"ij" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/item/circuitboard/machine/telecomms/receiver, +/obj/item/circuitboard/machine/telecomms/relay, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"il" = ( +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"im" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"in" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"io" = ( +/obj/structure/rack, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ip" = ( +/obj/machinery/power/smes/magical, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"iq" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"ir" = ( +/obj/structure/mineral_door/iron, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"is" = ( +/obj/structure/rack, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/ansible, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"it" = ( +/obj/item/stock_parts/manipulator, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iv" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"ix" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyaft) +"iy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyaft) +"iz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iA" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iB" = ( +/obj/structure/rack, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iC" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"iD" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/stack/sheet/iron, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iF" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iG" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iH" = ( +/obj/item/paper, +/turf/open/floor/wood, +/area/awaymission/academy/academyaft) +"iI" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iJ" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"iK" = ( +/obj/item/multitool, +/turf/open/floor/engine, +/area/awaymission/academy/academyaft) +"iL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/academy/academyaft) +"iM" = ( +/turf/open/floor/engine, +/area/awaymission/academy/academyaft) +"iN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"iO" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/academy/academyaft) +"iP" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/engine, +/area/awaymission/academy/academyaft) +"iQ" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"iR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/toy/beach_ball/holoball, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"iT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"iW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/airless/white{ + dir = 4 + }, +/area/awaymission/academy/academyaft) +"iX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/soulstone, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/airless/white, +/area/awaymission/academy/academyaft) +"iY" = ( +/obj/structure/shuttle/engine/propulsion/left, +/turf/open/space/basic, +/area/awaymission/academy/academyaft) +"iZ" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/space/basic, +/area/awaymission/academy/academyaft) +"ja" = ( +/obj/structure/shuttle/engine/propulsion/right, +/turf/open/space/basic, +/area/awaymission/academy/academyaft) +"jc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/airless/white{ + dir = 4 + }, +/area/awaymission/academy/academyaft) +"jg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/white, +/area/awaymission/academy/academyaft) +"ji" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson/truesight, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jl" = ( +/obj/structure/noticeboard, +/turf/closed/wall, +/area/awaymission/academy/academyaft) +"jm" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jn" = ( +/turf/open/floor/plasteel/airless/white{ + dir = 4 + }, +/area/awaymission/academy/academyaft) +"jo" = ( +/obj/structure/table, +/obj/item/organ/brain{ + name = "The preserved brain of Harry Houdini" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/airless/white, +/area/awaymission/academy/academyaft) +"jp" = ( +/obj/item/weldingtool, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/awaymission/academy/classrooms) +"jq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jt" = ( +/obj/structure/grille, +/obj/item/shard, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/awaymission/academy/academyaft) +"ju" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jv" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jw" = ( +/obj/structure/destructible/cult/pylon, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jy" = ( +/obj/structure/destructible/cult/pylon, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jz" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/airless/white{ + dir = 4 + }, +/area/awaymission/academy/academyaft) +"jA" = ( +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/item/batterer, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/airless/white, +/area/awaymission/academy/academyaft) +"jB" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/space/basic, +/area/space/nearstation) +"jC" = ( +/obj/machinery/igniter/on, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"jD" = ( +/obj/structure/window/reinforced, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jM" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jN" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"jP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"jQ" = ( +/obj/machinery/door/airlock/hatch, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jR" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"jS" = ( +/turf/closed/wall/r_wall, +/area/awaymission/academy/academygate) +"jT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/grass, +/area/awaymission/academy/academygate) +"jU" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"jV" = ( +/turf/open/floor/grass, +/area/awaymission/academy/academygate) +"jW" = ( +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"jX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"jY" = ( +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/awaymission/academy/academygate) +"jZ" = ( +/obj/machinery/door/window, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"ka" = ( +/obj/machinery/door/window, +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"ke" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"kf" = ( +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"kh" = ( +/obj/machinery/power/apc/unlocked{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"ki" = ( +/obj/item/stack/cable_coil, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"kq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"kv" = ( +/obj/machinery/light, +/turf/open/floor/carpet, +/area/awaymission/academy/academygate) +"kx" = ( +/turf/open/floor/carpet/lone, +/area/awaymission/academy/academygate) +"ky" = ( +/obj/machinery/door/poddoor/shutters{ + id = "AcademyGate" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"kz" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/carpet, +/area/awaymission/academy/classrooms) +"kA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"kB" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/classrooms) +"kC" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"kD" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"kG" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/academy/academyaft) +"kI" = ( +/obj/machinery/gateway/away, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"kJ" = ( +/obj/structure/mecha_wreckage/honker, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"kK" = ( +/obj/structure/table, +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"kL" = ( +/obj/item/bikehorn, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"kM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"kN" = ( +/obj/structure/trap/fire, +/turf/open/floor/engine, +/area/awaymission/academy/academyaft) +"kO" = ( +/mob/living/simple_animal/hostile/clown, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kP" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kQ" = ( +/mob/living/simple_animal/hostile/syndicate, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kR" = ( +/obj/effect/rune/malformed, +/mob/living/simple_animal/hostile/skeleton, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kS" = ( +/obj/structure/table/wood, +/obj/item/candle/infinite, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kT" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/ritual, +/obj/item/candle/infinite, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kU" = ( +/obj/effect/decal/remains/human, +/obj/effect/rune/malformed, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kW" = ( +/obj/structure/ladder/unbreakable/rune{ + id = "academy_cellar" + }, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kX" = ( +/obj/structure/bookcase/random, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kY" = ( +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"kZ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"la" = ( +/obj/structure/trap/damage, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lb" = ( +/mob/living/simple_animal/hostile/retaliate/bat, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lc" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/mineral/uranium, +/area/awaymission/academy/academycellar) +"ld" = ( +/turf/open/floor/mineral/uranium, +/area/awaymission/academy/academycellar) +"le" = ( +/obj/structure/spider/stickyweb, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lf" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lg" = ( +/obj/structure/table/wood, +/obj/item/guardiancreator/choose, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lh" = ( +/obj/structure/falsewall/wood, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"li" = ( +/mob/living/simple_animal/hostile/retaliate/bat, +/turf/open/floor/mineral/uranium, +/area/awaymission/academy/academycellar) +"lj" = ( +/mob/living/simple_animal/hostile/giant_spider/hunter, +/turf/open/floor/engine/cult, +/area/awaymission/academy/academycellar) +"lk" = ( +/obj/structure/safe/floor, +/obj/item/gun/magic/wand/fireball, +/obj/item/clothing/suit/space/hardsuit/wizard, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"ll" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/academy/academyengine) +"lm" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"ln" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"lp" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"lq" = ( +/turf/closed/wall/rust, +/area/awaymission/academy/academyengine) +"ls" = ( +/obj/machinery/power/smes/magical, +/obj/structure/cable, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"lt" = ( +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"lu" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lv" = ( +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lw" = ( +/obj/item/ectoplasm, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lx" = ( +/obj/effect/rune/malformed, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"ly" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/table, +/obj/item/staff, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lz" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lA" = ( +/obj/structure/table, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lB" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lC" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lD" = ( +/obj/structure/table, +/obj/item/weldingtool, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lE" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lF" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/academy/academyengine) +"lI" = ( +/obj/structure/ladder/unbreakable/rune{ + id = "academy_engine" + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lJ" = ( +/obj/structure/mineral_door/iron, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lK" = ( +/obj/effect/immovablerod{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lL" = ( +/mob/living/simple_animal/hostile/imp/slaughter/engine_demon, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lM" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lN" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lQ" = ( +/obj/structure/table, +/obj/item/gun/magic/wand/polymorph, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lR" = ( +/obj/structure/table, +/obj/item/stack/sheet/animalhide/monkey, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lS" = ( +/obj/structure/table, +/obj/item/stack/sheet/runed_metal, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lT" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/xenochitin, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lU" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lV" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"lW" = ( +/obj/structure/ladder/unbreakable/rune{ + height = 1; + id = "academy_storage" + }, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"lX" = ( +/obj/structure/ladder/unbreakable/rune{ + height = 1; + id = "academy_coldroom" + }, +/turf/open/floor/plasteel/white, +/area/awaymission/academy/classrooms) +"lY" = ( +/obj/structure/table/wood, +/obj/item/seeds/kudzu, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"lZ" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"ma" = ( +/obj/structure/ladder/unbreakable/rune{ + height = 1; + id = "academy_cellar" + }, +/turf/open/floor/wood, +/area/awaymission/academy/classrooms) +"mb" = ( +/obj/structure/ladder/unbreakable/rune{ + height = 1; + id = "academy_engine" + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"mc" = ( +/turf/closed/wall, +/area/awaymission/academy/academyengine) +"md" = ( +/turf/closed/wall/r_wall, +/area/awaymission/academy/academyengine) +"me" = ( +/obj/structure/constructshell, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"mf" = ( +/obj/structure/constructshell, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"mg" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"mh" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"mi" = ( +/obj/machinery/door/airlock/vault, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"mj" = ( +/obj/structure/rack, +/obj/item/book/granter/action/spell/random, +/obj/item/pen/fourcolor, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"mk" = ( +/obj/structure/rack, +/obj/item/claymore, +/obj/item/toy/figure/wizard, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"ml" = ( +/mob/living/simple_animal/hostile/netherworld, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"mm" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"mn" = ( +/obj/structure/rack, +/obj/item/gun/magic/wand/nothing, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"mo" = ( +/obj/structure/rack, +/obj/item/staff, +/turf/open/floor/plating, +/area/awaymission/academy/academyengine) +"mp" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mq" = ( +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mr" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"ms" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/light, +/area/awaymission/academy/academyengine) +"mt" = ( +/turf/open/floor/light, +/area/awaymission/academy/academyengine) +"mu" = ( +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mv" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mw" = ( +/obj/item/target, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mx" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/light, +/area/awaymission/academy/academyengine) +"my" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mz" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mA" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mB" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mC" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mD" = ( +/turf/closed/mineral/random, +/area/awaymission/academy/academycellar) +"mE" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"mF" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"mG" = ( +/mob/living/simple_animal/hostile/skeleton, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"mH" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"mI" = ( +/mob/living/simple_animal/hostile/wizard, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mJ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/gin, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mK" = ( +/obj/machinery/vending/magivend, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mL" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mM" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/academy/academyengine) +"mN" = ( +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mO" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mP" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/awaymission/academy/academygate) +"mQ" = ( +/obj/structure/ladder/unbreakable/rune{ + id = "academy_storage" + }, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mR" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyengine) +"mS" = ( +/obj/structure/ladder/unbreakable/rune{ + id = "academy_coldroom" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mU" = ( +/obj/item/food/meat/slab, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mV" = ( +/obj/item/clothing/gloves/combat, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mX" = ( +/obj/item/clothing/under/syndicate, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"mY" = ( +/turf/closed/mineral/random, +/area/space/nearstation) +"nb" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "AcademyGate"; + name = "Skeleton Storage Control"; + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/awaymission/academy/headmaster) +"nc" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/academy/headmaster) +"nj" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"nk" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"nl" = ( +/obj/item/clothing/mask/gas/syndicate, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"nm" = ( +/mob/living/simple_animal/hostile/bear, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/academy/academycellar) +"nn" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"no" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/academy/headmaster) +"np" = ( +/obj/item/stack/cable_coil, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/academyaft) +"sw" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault, +/area/awaymission/academy/academyengine) +"AA" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/academy/academyaft) +"CD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/classrooms) +"Dy" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/academy/headmaster) +"DX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/awaymission/academy/classrooms) +"In" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/academy/classrooms) +"LW" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) +"Tk" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/academy/academyaft) + +(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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +aa +aa +aa +aa +aa +aa +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +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 +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 +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +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 +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 +aa +aa +aa +aa +aa +aG +aG +mD +mD +mD +mD +mD +mD +mD +aG +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +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 +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 +aa +aa +aa +aa +aa +aG +mD +mD +mN +mN +nj +nj +nj +mD +mD +aG +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +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 +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 +aa +aa +aa +aa +aa +aG +mD +mN +mN +mN +mN +mN +mU +mN +mD +aG +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +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 +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 +aa +aa +aa +aa +aa +aG +mD +mN +mS +mN +mT +mN +mN +mN +mD +mD +aG +aa +aa +aa +aa +aa +aa +"} +(13,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 +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 +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 +aa +aa +aa +aa +aa +aG +mD +mN +mN +mN +mU +mN +mN +mN +mN +mD +aG +aa +aa +aa +aa +aa +aa +"} +(14,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 +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 +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 +aa +aa +aa +aa +aG +aG +mD +mN +mN +mU +mN +mU +mT +mN +mN +mD +aG +aa +aa +aa +aa +aa +aa +"} +(15,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 +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 +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 +aa +aa +aa +aa +aG +mD +mD +mN +mN +mN +mU +mN +mN +mN +mN +mD +mD +aG +aa +aa +aa +aa +aa +"} +(16,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 +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 +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 +aa +aa +aa +aa +aG +mD +mN +mN +mT +mN +mN +mN +mN +mU +mN +mN +mD +aG +aa +aa +aa +aa +aa +"} +(17,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 +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 +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 +aa +aa +aa +aa +aG +mD +mN +mN +mN +mN +mN +mN +mN +mN +mN +mN +mD +aG +aa +aa +aa +aa +aa +"} +(18,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 +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 +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 +aa +aa +aa +aa +aG +mD +mO +mO +mO +mN +mN +mD +mD +mN +mN +mN +mD +aG +aa +aa +aa +aa +aa +"} +(19,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 +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 +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 +aa +aa +aa +aa +aG +mD +mO +mO +mO +mD +mD +mD +mD +mN +mN +mN +mD +aG +aa +aa +aa +aa +aa +"} +(20,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 +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 +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 +aa +aa +aa +aa +aG +mD +mD +mD +mD +mD +mD +mD +mD +mN +mN +mD +mD +aG +aa +aa +aa +aa +aa +"} +(21,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 +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 +aa +ac +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 +aa +aa +aG +aG +aG +mD +mD +mD +mN +mN +mN +mN +mN +mD +mY +aa +aa +aa +aa +aa +aa +"} +(22,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 +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 +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 +aa +aa +aa +aa +aa +aG +aG +mD +mD +mN +mN +mN +nm +mN +mN +mD +aG +aa +aa +aa +aa +aa +aa +"} +(23,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 +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 +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 +aa +aa +aa +aa +aa +aG +aG +aG +mD +mV +nk +mN +mN +mU +mT +mD +aG +aa +aa +aa +aa +aa +aa +"} +(24,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 +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 +aa +aa +aa +aa +aa +aa +aS +aS +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 +aG +aG +mD +mX +nl +mN +mN +mN +mN +mD +aG +aa +aa +aa +aa +aa +aa +"} +(25,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 +aa +aS +aS +aS +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 +aa +aS +aS +aS +aS +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 +aG +mD +mD +mN +nm +mN +nm +mN +mD +aG +aa +aa +aa +aa +aa +aa +"} +(26,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 +aS +aS +aS +aS +aS +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 +aS +aS +aS +aS +aS +aS +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 +aG +aG +mD +mN +mN +mN +mN +mD +mD +aG +aa +aa +aa +aa +aa +aa +"} +(27,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 +aS +aS +aS +aS +aS +aa +aa +aS +aS +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 +aS +aS +aS +aS +aS +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 +aG +mD +mD +mD +mD +mD +mD +aG +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +aS +aS +aS +aS +aS +aa +aa +aS +aS +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 +aS +aS +aS +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 +aa +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +aa +aa +aa +aS +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +aS +aS +aa +aa +aa +ac +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +aS +aS +aS +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 +aS +aS +aS +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +aS +aS +aa +aa +aa +aa +aa +aS +aS +aS +aS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +aS +aS +aS +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +aa +aa +aS +aS +aS +aS +aS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +aS +aS +aS +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +aa +aS +aS +aS +aS +aS +aS +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 +aS +aS +aS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +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 +aa +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 +aa +aS +aS +aS +aS +aS +aS +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 +aS +aS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +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 +aa +aa +aa +aa +aa +aa +"} +(36,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 +aa +aS +aS +aS +aS +aS +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +aa +aa +aS +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 +aa +aa +aa +"} +(37,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +aS +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 +aa +aa +"} +(38,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aS +aS +aS +aS +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 +aa +aa +"} +(39,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aS +aS +aS +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 +aa +aa +aa +"} +(40,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ez +eJ +eJ +fb +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 +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 +"} +(44,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +bs +bs +eA +bs +bs +eA +bs +bs +bs +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 +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 +"} +(45,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 +aa +aa +aa +aa +aa +aa +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +bs +ea +es +bB +bB +bB +bB +es +ea +bs +bs +bs +bs +bs +bs +bs +bs +bs +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +aa +aa +aa +aa +aa +bs +bs +bU +ci +gb +cz +kK +bz +bz +de +dH +jp +dH +de +bs +ea +es +bB +bB +bB +bB +es +ea +bs +bB +fX +go +gu +gC +bB +gQ +bB +hc +hf +hf +hf +hf +hf +hf +hf +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +aa +aa +aa +aa +aa +bt +bz +bz +bz +bV +bz +bz +bz +bz +de +dp +dz +dp +de +bs +bs +bs +eB +es +es +eB +bs +bs +bs +bB +bB +bB +gu +gC +gL +bB +bB +hc +hf +ip +hE +ip +hE +ip +hE +hB +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +aa +aa +aa +aa +aa +bu +bA +bB +bB +bB +kJ +kL +cN +bV +de +dq +dz +dI +de +bE +eb +et +bz +eK +eT +bz +fo +fu +bs +bB +bB +bB +gu +gC +bB +bB +gL +hc +hf +hz +hf +hz +hf +hz +hf +hB +ho +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +aa +aa +aa +aa +aa +bv +bB +bB +cj +bB +bB +bB +bB +bV +bV +bV +dX +bV +bz +bE +ec +eu +eC +kq +eT +fc +eu +fv +bs +CD +CD +gp +CD +CD +gp +CD +CD +hc +hf +hf +hf +hf +hf +hf +hf +np +ho +ho +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +"} +(50,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 +aa +aa +aa +aa +aa +bv +bB +bB +hL +bB +lW +cJ +bB +bV +bV +bz +dX +bz +bV +bE +ed +ev +bz +eK +eT +bz +fp +fw +bE +fH +ga +ga +In +ga +ga +ga +fH +hc +ho +ho +ho +ho +ho +ho +kD +hB +mb +ho +hc +iK +kN +iQ +iY +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 +aa +aa +aa +aa +aa +"} +(51,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 +aa +aa +aa +aa +aa +bw +bC +bB +bB +bB +bB +bB +cO +bV +bz +bz +dX +bz +bz +dT +ee +ee +bz +eL +eU +bz +ee +ee +dT +fI +dX +dX +dX +dX +dX +dX +DX +hc +ho +ho +ho +iI +ho +ho +ho +hB +ho +ho +hc +iL +kN +iQ +iZ +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 +aa +aa +aa +aa +aa +"} +(52,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 +aa +aa +aa +aa +aa +bt +bz +bV +bz +bz +bz +bz +bz +bz +bz +bz +dX +dX +dX +dU +ef +ef +ef +ef +ef +ef +ef +ef +dU +fI +bz +gq +du +gD +du +gq +hb +hc +ho +hB +hB +hB +hB +hB +hB +hB +ho +ho +iJ +iM +kN +iQ +iZ +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 +aa +aa +aa +aa +aa +"} +(53,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 +aa +aa +aa +aa +aa +bs +bD +bz +bz +cr +bz +bV +bV +bz +bz +dr +bz +bz +bz +bE +eg +ej +ej +ej +ej +ew +ej +fy +bE +fK +bz +bz +bz +bz +bz +bz +ha +hc +hl +hB +hQ +ih +ih +iq +iu +hQ +iF +ho +hc +iM +kN +iQ +ja +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 +aa +aa +aa +aa +aa +"} +(54,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 +aa +aa +aa +aa +aa +bs +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +eh +ej +el +el +el +em +ej +ej +bE +fK +gb +bz +bz +gq +du +gq +hb +hc +hc +LW +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +"} +(55,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 +aa +aa +aa +aa +aa +bs +bF +bF +bF +bF +cA +cA +cP +db +dc +dc +dc +dc +dc +bE +ei +ej +el +eM +eV +em +ej +ej +bE +fL +gc +gr +gv +gr +gr +gr +dm +hc +hR +hE +hR +hc +ac +aa +aa +aa +aa +aP +aa +aP +aP +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 +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +aa +aa +aa +aa +aa +bs +bF +bX +bZ +bZ +cB +cK +cQ +dc +dc +dc +dc +dc +dc +dV +ej +ej +el +eN +eW +em +ej +ej +bE +bE +bE +bE +bE +bE +bE +bE +bE +hc +hc +Tk +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +aa +aa +aa +aa +aP +bs +bF +bY +bZ +bZ +bZ +cK +fY +dc +df +ds +dc +dc +dc +dV +ej +ej +el +el +kz +em +ej +ej +bE +fM +dc +dc +db +dc +dc +dc +ma +fD +hn +hF +hn +fD +il +il +iv +il +iv +il +iv +il +hc +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 +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +aa +aa +aa +aP +aP +bs +bF +bZ +bZ +bZ +bZ +cK +cQ +dc +dc +dc +dc +dc +dc +bE +ej +ej +el +eM +eV +em +ej +ej +CD +dc +gd +df +ds +gd +df +ds +dc +fD +ho +hB +hS +fD +il +il +il +il +il +il +il +il +hc +hc +iT +hc +iT +hc +hc +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 +aa +"} +(59,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 +aa +aa +aP +aP +aa +bs +bF +bZ +bX +bZ +bZ +cK +cQ +dc +df +ds +df +ds +dc +bE +ej +ej +el +eN +eW +em +ej +ej +CD +dc +dc +dc +dc +dc +dc +dc +dc +fD +ho +hB +hT +fD +il +il +il +il +il +il +kG +il +fD +iR +hB +ji +hB +ju +hc +hc +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 +"} +(60,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 +aa +aP +ab +aP +aP +bs +bF +ca +bZ +bZ +bZ +fR +cQ +dc +dc +dc +dc +dc +dc +bE +ej +ej +el +el +el +em +ew +ew +CD +dc +lZ +dc +lZ +dc +lZ +dc +dc +fD +hp +hB +hU +fD +im +il +iw +il +il +il +iw +il +fD +iS +jc +jj +jc +jv +jC +hc +hc +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 +"} +(61,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 +aP +aP +aP +aa +aa +bs +bF +bZ +bZ +bZ +bZ +cK +cQ +dc +dg +ds +df +ds +dc +bE +ek +ew +em +eO +eX +em +ej +ej +CD +dc +lZ +dc +lZ +dc +lZ +dc +dc +fD +ho +hB +hV +fD +il +il +fD +ir +fD +ir +fD +ir +fD +iT +iT +iT +iT +iT +iT +iT +hc +hc +hc +hc +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 +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +nc +nc +nc +nc +nc +nc +nc +ab +aP +aP +aP +aP +aP +aP +aa +aP +aa +aa +bs +bF +bF +bF +bF +cC +cC +cR +dd +dc +dc +dc +dc +dc +bE +ej +ej +el +eN +eW +em +ej +ej +bE +dc +dc +dc +dc +dc +dc +dc +dc +fD +ho +hB +hW +fD +in +il +fD +iG +fD +iG +fD +iN +fD +gh +fN +fN +fN +fN +fN +fN +fN +fN +fN +jP +aa +aa +aa +aa +aa +jS +jS +jS +jS +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ak +ar +nn +aC +nn +aM +aN +ab +ab +ab +ab +nc +ab +ab +nc +ab +ab +ab +ab +as +as +as +as +as +as +as +as +as +as +as +as +as +as +eh +ej +el +el +el +em +ej +ej +bE +bE +CD +CD +CD +CD +bE +gR +bE +fD +hq +hH +fD +fD +fD +ir +fD +fD +fD +fD +fD +fD +fD +AA +AA +jk +AA +AA +AA +jF +AA +fN +jL +hc +jS +aa +aa +aa +jS +jS +jW +jW +jW +jW +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ah +ah +ah +ax +ah +ax +ah +ah +ah +ab +aT +aF +aF +aX +bd +aF +aF +as +br +br +bI +br +br +br +br +br +bI +br +br +aF +aF +aF +aF +as +ej +ej +el +eM +eV +em +ej +ej +fD +fN +fN +fN +fN +gh +fN +fF +fN +fD +fF +AA +hX +hX +hX +hX +ix +hX +hX +iH +hX +hX +fD +AA +fF +fD +fF +fF +jD +eu +jJ +fN +jM +hc +jS +jX +jX +jX +jS +jW +jW +kf +kf +jW +kv +jS +jS +jS +jS +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +nc +ad +ah +ah +ah +ah +aD +ah +ah +ah +ah +ab +kM +aF +ah +ah +ah +ah +bn +as +br +bx +bJ +cb +br +ct +cD +cL +bx +bJ +br +aF +dC +dC +dC +as +ej +ej +el +eN +eW +em +ej +el +fF +fF +fF +fF +fF +AA +fF +fF +fF +fD +kC +AA +hX +ii +ii +ii +ii +ii +ii +ii +ii +hX +fD +AA +fF +fD +jq +jw +fF +jG +AA +fN +fN +hc +jT +jV +jV +jY +jW +jW +ki +ke +ke +ke +jU +kx +jS +mE +kf +kf +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ae +ai +ah +as +as +as +as +as +ah +ah +ab +aF +aF +ah +ah +be +ah +aF +as +br +by +bK +cc +br +ct +cD +br +by +bK +br +aF +dC +dC +dC +as +ej +ej +el +kz +el +em +ew +em +AA +AA +AA +AA +AA +AA +AA +AA +AA +hd +AA +AA +hX +hX +hX +hX +hX +hX +hX +hX +hX +iO +hd +AA +fF +jl +kD +jx +fF +fF +AA +AA +AA +jQ +jU +jU +jU +jZ +jU +ke +ke +kf +kf +kf +ke +kf +ky +kf +mG +mF +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +af +ah +ah +as +ay +aE +aJ +as +ah +ah +aQ +cI +ah +ah +aY +bf +ah +aF +as +br +br +br +br +br +dy +br +br +br +br +br +aF +aF +aF +aF +as +ej +ej +el +eM +eV +em +ej +ej +fD +fN +fN +fN +fN +fN +fN +fN +fN +fD +fF +AA +AA +AA +AA +AA +AA +AA +AA +AA +AA +AA +fD +AA +fF +fD +ho +jx +fF +fF +fF +fF +fF +hc +jV +jV +jV +jY +jU +jW +kf +kf +kI +ke +ke +kf +ky +mF +kf +mG +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ae +ah +al +at +az +aF +nb +as +aO +ah +ab +aF +aF +aV +aZ +bg +ah +ah +bp +ah +ah +ah +ah +ah +ah +ah +ah +iC +ah +ah +ah +ah +ah +ah +ah +el +ej +el +eN +eW +em +ej +ej +fD +fN +fN +fN +fN +fN +fN +fN +fN +fD +fF +fF +fF +fF +kC +fF +fF +fF +fF +fF +fF +fF +fD +AA +fF +fD +ho +jx +fF +fF +fF +fF +fF +hc +jV +jV +jV +jY +jU +jW +kf +kf +kf +kf +kf +kf +ky +kf +mP +kf +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ae +ah +am +as +aA +aF +bS +as +ah +ah +ab +aF +aU +al +ba +bh +bk +al +bq +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +em +ew +em +em +el +em +ej +el +fF +fF +fF +fF +fF +fF +fF +fF +fF +he +fF +fF +hX +hX +hX +hX +hX +hX +hX +hX +hX +hX +he +AA +kC +jl +ho +jx +fF +fF +fF +fF +fF +jR +jW +jW +jW +ka +jU +kf +kf +kf +kf +kf +kf +kf +ky +mG +mF +mG +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ag +ai +al +as +aB +lk +lm +as +al +al +aR +al +al +ah +bb +bi +bl +aF +as +br +br +br +br +ah +cu +al +br +br +br +br +aF +aF +aF +aF +as +ej +ej +el +eM +eV +el +ej +el +fF +fF +fF +fF +fF +fF +fF +fF +fF +fD +fF +fF +hX +ii +ii +ii +ii +ii +ii +ii +ii +hX +fD +AA +fF +fD +jr +jy +fF +jH +fF +fN +fN +hc +jT +jV +jV +jY +jU +jU +kf +kf +kf +kf +jW +kx +jS +mH +kf +kf +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ae +ah +al +as +as +as +as +as +al +ah +ab +aF +aF +ah +ah +ah +ah +aF +as +br +bx +bJ +dy +ah +ah +al +dy +bx +bJ +br +aF +dC +dC +dC +as +ej +ej +el +eN +eW +el +ej +ej +fD +fO +fN +fN +gy +fN +fN +fF +fN +fD +fF +fF +hX +hX +hX +hX +iy +hX +hX +hX +hX +hX +fD +AA +fF +fD +fF +fF +jD +eu +jK +fN +jN +hc +jS +jX +jX +jX +jS +kh +jW +kf +kf +jW +kv +jS +jS +jS +jS +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +nc +ah +ah +al +al +al +aH +al +al +al +ah +ab +kM +aF +ah +ah +ah +ah +bn +as +br +by +bK +br +ah +cu +al +br +by +bK +br +aF +dC +dC +dC +as +ej +ej +el +el +el +el +ej +ej +bE +bE +bE +bE +bE +bE +bE +gT +bE +fD +hn +hn +fD +fD +fD +ir +fD +fD +fD +fD +fD +fD +fD +AA +fF +jm +fF +fF +fF +jG +fF +fN +jO +hc +jS +aa +aa +aa +jS +jS +jW +jW +jW +jW +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aj +al +ah +ax +ah +ax +ah +ah +ah +ab +as +aF +aW +bc +bj +bm +bo +as +br +br +bL +br +ah +ah +al +br +bL +br +br +aF +aF +aF +aF +as +ej +ej +ej +eP +ej +ej +ej +ej +bE +fP +fP +fP +gz +fP +fP +fP +fP +fD +ho +ho +hY +fD +il +il +fD +iD +fD +iD +fD +iD +fD +gh +fN +fN +fN +fN +fN +fN +fN +fN +fN +jP +aa +aa +aa +aa +aa +jS +jS +jS +jS +jS +jS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aq +aw +no +aI +no +ak +af +ab +ab +ab +ab +nc +ab +ab +nc +ab +ab +ab +ab +as +ab +ck +ab +cF +ab +as +as +as +as +as +as +as +as +bE +bE +bE +bE +eY +eY +bE +bE +bE +fP +gk +fP +fP +fP +fP +fP +fP +fD +ho +ho +hZ +fD +il +il +fD +ir +fD +ir +fD +ir +fD +iT +iT +iT +iT +iT +iT +iT +hc +hc +hc +hc +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 +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +nc +nc +nc +nc +nc +nc +nc +ab +aP +aP +aP +aP +aP +aP +aa +aP +aa +aa +ab +bM +cd +cl +cd +ce +cd +cT +as +dh +dt +dt +dt +dt +dt +en +bE +eD +eD +eD +eD +eD +eD +bE +kB +gl +fP +fP +gH +gO +gJ +gO +fD +hp +ho +ia +fD +im +il +iz +il +il +il +iz +il +fD +iW +jf +jn +jf +jz +jC +hc +hc +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 +"} +(76,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 +aP +aP +aP +aa +aa +ab +cd +cl +cd +ce +Dy +cl +cd +as +di +du +bz +du +bz +du +eo +bE +eD +eD +eD +eD +fq +eD +bE +fP +gm +fP +fP +gI +gO +gJ +gO +fD +ho +ho +ib +fD +il +il +il +il +il +il +il +il +fD +iX +jg +jo +jg +jA +hc +hc +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 +"} +(77,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 +aa +aP +ab +aP +aP +ab +cl +cd +cl +Dy +cl +cd +cl +as +dj +dv +bz +dw +bz +dw +eo +bE +eD +eD +eD +eD +fr +eD +bE +fP +fP +fP +fP +gJ +gO +gW +gO +fD +ho +ho +ic +fD +il +il +il +il +il +il +kG +il +hc +hc +iT +hc +jt +hc +hc +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 +aa +"} +(78,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 +aa +aa +aP +aP +aa +ab +cd +as +as +cv +cH +cl +cU +as +dk +bz +bz +bz +bz +bz +eo +bE +eE +eQ +eZ +eD +fs +eD +bE +cA +cA +cA +cA +cA +cA +cA +cA +fD +hr +hK +hq +fD +il +il +iA +il +iA +il +iA +il +hc +aa +aa +aa +aa +jB +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 +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aP +aP +ab +bQ +as +co +cw +as +cd +cV +as +di +du +bz +du +bz +bz +eo +bE +eF +eD +eD +eD +eD +fC +bE +fS +bz +fS +bz +gK +bz +gX +bs +hc +hc +iJ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +aa +aa +aa +aa +aP +ab +bR +bR +bR +cx +bR +bR +bR +as +di +dw +bz +dJ +bz +dW +eo +bE +eD +kA +eE +eQ +eZ +eD +bE +fT +gn +fT +gA +fT +gP +bs +bs +hc +hm +hf +hm +hc +aa +aa +aa +aa +aa +aP +aa +aP +aP +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 +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +aa +aa +aa +aa +aa +ab +bT +bT +bT +bT +bT +cg +bT +as +di +bz +bz +bz +bz +bz +bz +ex +eD +eD +eD +eD +eD +eD +bE +fU +bz +bz +bz +fW +bs +bs +aP +hc +hc +iJ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +"} +(82,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 +aa +aa +aa +aa +aa +ab +bT +cg +bT +bT +bT +bT +bT +as +dj +bz +dD +lY +dM +bz +bz +ex +eD +eD +eD +eD +kA +eD +bE +fV +bz +bz +gB +bs +bs +aP +aa +hc +ho +ho +id +ij +io +is +iB +iE +ho +ho +hc +iM +kN +iQ +iY +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 +aa +aa +aa +aa +aa +"} +(83,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 +aa +aa +aa +aa +aa +ab +ab +ch +cp +cy +cp +ch +ab +ab +di +bz +dE +dL +bz +bz +ep +bE +eD +eD +eD +eD +eD +eD +bE +bz +bz +fW +bs +bs +aP +aa +aa +hc +ho +ho +ie +ho +ho +it +ho +ho +ho +ho +iJ +iM +kN +iQ +iZ +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 +aa +aa +aa +aa +aa +"} +(84,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 +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +bs +dl +dx +dx +dx +dx +dx +eq +bE +eG +eR +eG +eG +eG +eG +bE +bz +bz +bs +bs +aP +aa +aa +aa +hc +ho +ho +ho +ho +kD +ho +kD +ho +ho +ho +hc +iL +kN +iQ +iZ +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 +aa +aa +aa +aa +aa +"} +(85,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +bE +bE +dF +bE +dF +bE +bE +bE +eH +eH +eH +eH +eH +eH +bE +fW +bs +bs +aP +aa +aa +aa +aa +hc +ho +ho +ho +ho +ho +ho +ho +ho +ho +ho +hc +iP +kN +iQ +ja +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 +aa +aa +aa +aa +aa +"} +(86,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +lX +dm +dm +dm +dm +dY +dY +bE +eH +eH +eH +eH +eH +eH +bE +bs +bs +aP +aa +aa +aa +aa +aa +hc +hf +hf +hf +hf +hf +hf +hf +ho +ho +iI +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +"} +(87,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +dm +dm +dm +dm +dm +dm +dm +dF +eH +eH +eH +eH +eH +eH +bs +bs +aP +aa +aa +aa +aa +aa +aa +hc +hf +hf +hf +hf +hf +hf +hf +ho +ho +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +dn +dm +dm +dm +dm +dm +dm +bE +eH +eS +fa +fn +ft +bs +bs +aP +aP +aP +aP +aP +aP +aP +aP +hc +hf +hN +hf +hN +hf +hN +hf +ho +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +bs +bs +dm +dG +dm +dS +dS +er +bs +bs +bs +bs +bs +bs +bs +aP +aa +aa +aa +aa +aa +aa +aa +aa +hc +hf +hf +hf +hf +hf +hf +hf +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bs +bs +bs +bs +bs +bs +bs +bs +bs +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +aP +hc +hc +hc +hc +hc +hc +hc +hc +hc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +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 +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 +aa +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +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 +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 +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aG +mc +mc +mc +mc +mc +mc +mc +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aG +aG +aG +aG +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 +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 +aG +aG +mc +mc +mc +mc +mc +mc +mc +mc +mc +mq +mq +mq +mw +mw +mw +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +aG +mc +me +me +me +lv +mm +mm +mm +mc +mr +mq +mq +mq +mQ +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +aG +mc +mf +me +me +lv +mm +mm +mm +mc +mq +mq +mq +mq +mq +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +aG +mc +lv +lv +lv +lv +lv +lv +lM +mc +mw +mq +mq +mq +mq +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +la +lg +la +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +aG +mc +lv +lv +lv +lv +mn +mo +mo +mc +mw +mq +mq +mq +mq +mR +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +aL +aL +aL +aL +la +la +la +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +mc +lv +lv +lB +lv +mn +mo +mo +mc +mw +mq +mq +mI +mq +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +dK +dK +dK +dK +aK +aL +dK +dK +dK +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +mc +lu +lv +lv +lv +mc +mc +mc +mc +mq +mq +mq +mq +mq +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +dK +kR +dK +dK +kX +aL +aL +lh +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +mc +lv +lv +lv +lv +mc +mp +mq +mq +mq +mq +mq +mq +mq +mq +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +dK +kS +dK +dK +kX +aL +lc +lb +ld +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aG +mc +lv +lv +lv +lv +mc +mq +mc +mc +mc +mc +mc +mc +mc +mc +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +dK +dK +dK +dK +kX +aL +lb +ld +dK +aL +aG +aG +aG +aG +aG +lq +lq +lq +lq +lq +lq +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +mc +lv +lv +lC +lv +mc +mq +mc +mc +mc +mc +mc +mc +mc +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aG +aG +aG +aG +aL +aL +aL +aL +aG +aG +aG +aL +dK +kU +dK +dK +kX +aL +ld +dK +li +aL +aG +aG +aG +aG +aG +lq +lv +lv +lI +lv +lv +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +mc +lu +lv +lv +lv +lJ +mq +mc +mt +mt +mt +mu +mK +mc +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aG +aG +aG +aL +aL +gx +gx +aL +aL +aG +aG +aL +dK +kT +dK +dK +kX +aL +dK +li +dK +aL +aG +aG +aG +aG +aG +lq +lu +lv +lv +lv +lv +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +md +md +mi +md +md +mc +mq +mc +ms +mt +mt +mu +mJ +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aG +aG +aL +aL +dK +dK +dK +dK +aL +aL +aG +aL +aL +aL +gN +aL +aL +aL +ld +lb +ld +aL +aG +aG +aG +aG +aG +lq +lv +lB +lv +lv +lM +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +md +mg +lt +lt +lt +md +mq +mc +mt +mt +mx +mu +mL +mc +aG +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aG +aG +aL +dK +dK +dK +dK +dK +dK +aL +aL +aG +aG +aL +dK +aL +aG +aL +lb +ld +dK +aL +aG +aG +aG +aG +aG +lq +lv +lv +lv +lv +lv +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +md +lt +mj +mk +ml +md +mr +mc +mu +mu +mu +mu +mu +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aG +aG +aL +dK +dK +dK +dK +dK +dK +dK +aL +aL +aG +aL +dK +aL +aG +aL +aL +aL +lh +aL +aG +aG +aG +aG +aG +lq +lv +lv +lv +lB +lR +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +md +mh +lt +lt +lt +md +mq +mc +mu +mu +mu +mA +mu +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aG +aG +aL +ge +dK +dK +ge +dK +dK +dK +ge +aL +aL +ge +dK +ge +aL +aL +le +le +le +aL +aG +aG +aG +aG +aG +lq +lw +lv +lv +lv +lQ +lq +aG +aG +aG +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +md +md +md +md +md +md +mq +mc +mu +mu +my +mz +mM +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aG +aG +aL +gf +dK +dK +dK +gM +dK +dK +dK +gN +dK +dK +kW +dK +dK +gN +dK +dK +le +aL +aG +aG +aG +aG +aG +lq +lx +lC +lv +lv +lT +lq +aG +aG +aG +aG +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 +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +aG +aG +aG +aG +aG +mc +mq +lJ +mu +mu +mu +mC +mu +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aG +aG +aL +ge +dK +dK +ge +dK +dK +dK +ge +aL +aL +ge +dK +ge +aL +aL +dK +lj +dK +aL +aG +aG +aG +aG +aG +lq +lv +lw +lv +lv +lS +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +mc +mc +mc +mu +mu +mu +mB +mu +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aG +aG +aL +dK +dK +dK +dK +dK +dK +dK +aL +aL +aG +aL +dK +aL +aG +aL +lf +dK +lj +aL +aG +aG +aG +aG +aG +lq +lu +lv +lv +lv +lv +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +mc +mv +mu +mu +mu +mu +lF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aG +aG +aL +dK +dK +dK +dK +dK +dK +aL +aL +aG +aG +aL +dK +aL +aG +aL +aL +aL +aL +aL +aG +aG +aG +aG +aG +lq +lv +lv +lv +lB +lM +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +mc +mc +mc +mc +mc +mc +mc +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aG +aG +aL +aL +dK +dK +dK +dK +aL +aL +aG +aL +aL +aL +gN +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lz +lv +lv +lv +lv +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aG +aG +aG +aL +aL +dK +dK +aL +aL +aG +aG +aL +kO +kV +dK +kV +kY +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +ly +lv +lv +lv +lU +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aG +aG +aG +aG +aL +aL +aL +aL +aG +aG +aG +aL +aL +aL +dK +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lA +lD +lv +lv +lV +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +dK +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lq +lq +lJ +lq +lq +lq +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +kP +kV +dK +kV +dK +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lE +lv +lN +lq +aG +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +dK +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lu +lv +lM +lq +aG +aG +aG +aG +aG +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 +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 +aG +aG +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +dK +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +lq +lB +lv +lv +lq +aG +aG +aG +aG +aG +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 +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 +aG +aG +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +kQ +kV +dK +kV +kZ +aL +aG +aG +aG +aG +aG +aG +aG +ll +ll +ll +ll +lF +lF +lF +ll +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +ge +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +ll +ls +sw +ll +lv +lv +lv +ll +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aL +aL +aL +aL +aL +aL +aL +aG +aG +aG +aG +aG +aG +aG +ll +ln +lt +ll +lv +lK +lv +ll +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ll +lp +lt +ll +lv +lL +lv +ll +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +ll +ll +ll +ll +ll +ll +ll +ll +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +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 +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 +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/away/blackmesa.dmm b/_maps/away/blackmesa.dmm new file mode 100644 index 000000000000..0fd95ea79200 --- /dev/null +++ b/_maps/away/blackmesa.dmm @@ -0,0 +1,79335 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aac" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"aai" = ( +/turf/closed/wall/ice, +/area/awaymission/black_mesa/cryo_room) +"aaj" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aak" = ( +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aal" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"aam" = ( +/obj/machinery/door/poddoor/preopen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aan" = ( +/obj/machinery/door_timer{ + id = "Mesa 2"; + name = "Cell 2"; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aaA" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aaD" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aaK" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aaO" = ( +/obj/item/clothing/mask/gas, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aaS" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aaZ" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa) +"abd" = ( +/obj/structure/closet/crate/wooden, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"abk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"abo" = ( +/obj/structure/falsewall/reinforced, +/obj/structure/sign/poster/contraband/communist_state, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"abs" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aby" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"abA" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"abG" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"abJ" = ( +/obj/structure/chair/stool/bamboo, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"abK" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"abM" = ( +/obj/effect/random_mob_placer/xen, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"abQ" = ( +/obj/item/food/mre_course/dessert/chocolate, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"abS" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/mug/tea, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"acc" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"ace" = ( +/obj/machinery/light/cold, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"acg" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"ach" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"aci" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/black_mesa/security_outpost) +"acn" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"acp" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"acr" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"acu" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"acx" = ( +/obj/item/pickaxe, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/cryo_room) +"acE" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole, +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"acJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/cryo_storage) +"acK" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"acL" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"acP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"acT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"acX" = ( +/turf/closed/wall/mineral/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"acY" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"acZ" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"add" = ( +/obj/structure/billboard/donk_n_go, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"ade" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"adf" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"adj" = ( +/obj/structure/flora/biolumi, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"adl" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 8; + id = "Mesa 3" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ado" = ( +/obj/structure/table, +/obj/item/pen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"adq" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"adu" = ( +/obj/structure/marker_beacon/green, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"adv" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_tunnel) +"adx" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"adA" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"adB" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"adF" = ( +/obj/structure/billboard/azik, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"adG" = ( +/obj/item/chair/stool/bamboo{ + dir = 4 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"adL" = ( +/mob/living/simple_animal/hostile/blackmesa/xen/headcrab, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"adM" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"adP" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"adW" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen) +"adY" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aed" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aeo" = ( +/obj/structure/table, +/obj/item/radio/intercom, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aep" = ( +/obj/structure/cable, +/obj/item/ammo_casing/spent, +/obj/item/ammo_casing/spent, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aer" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aes" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aey" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/to_cryo_room) +"aeB" = ( +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 2 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aeD" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aeF" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"aeK" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 4; + id = "Mesa 6" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aeX" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_room) +"afe" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aff" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"afi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"afj" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa) +"afk" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"afo" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"afv" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"afw" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"afC" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"afE" = ( +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"afF" = ( +/obj/structure/xen_pylon, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"afJ" = ( +/obj/structure/table, +/obj/item/geiger_counter, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"afK" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"afM" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/freeman_hallway) +"afR" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"afS" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_tunnel) +"afU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"agb" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"agf" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"agi" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"ags" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"agw" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/xen_crystal, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"agz" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/random_mob_placer/security_guard, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"agD" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"agE" = ( +/obj/structure/cable, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"agF" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"agG" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_room) +"agI" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/awaymission/black_mesa/security_outpost) +"agN" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"agW" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"agY" = ( +/obj/structure/window/reinforced/unanchored{ + dir = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ahf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"ahg" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"ahk" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/acid_lake_building) +"ahp" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_hallway) +"aht" = ( +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"ahv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"ahy" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"ahC" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"ahF" = ( +/obj/structure/headpike/bamboo, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"ahG" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ahI" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/bluespace, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"ahQ" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"ahR" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"ahT" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel, +/obj/item/stack/sheet/plasteel, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"ahW" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aic" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aid" = ( +/obj/machinery/power/rtg/abductor, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa) +"aie" = ( +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aig" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aih" = ( +/obj/structure/chair/office, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"air" = ( +/obj/machinery/computer{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aiu" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/tram_room) +"aiy" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aiA" = ( +/obj/structure/water_source/puddle/healing, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aiC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/light/cold, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aiH" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aiM" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"ajj" = ( +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"ajl" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"ajm" = ( +/obj/structure/closet/crate/wooden, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"ajs" = ( +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ajz" = ( +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"ajH" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"ajJ" = ( +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"ajN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"ajS" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"ajT" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"ajW" = ( +/obj/structure/closet/crate/large, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"ajY" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"akd" = ( +/turf/closed/indestructible/riveted/boss, +/area/awaymission/black_mesa/xen/freeman_arena) +"ake" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"akf" = ( +/obj/structure/table, +/obj/item/food/donut/trumpet, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"akt" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/gas_emitter_chamber) +"akE" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"akH" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_bus) +"akI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"akM" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"akN" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"akU" = ( +/obj/machinery/computer{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/black_mesa/cryo_room) +"akW" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"akX" = ( +/obj/item/grenade/syndieminibomb/concussion, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"alb" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ale" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"alf" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_lobby) +"ali" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/item/ammo_casing/shotgun/buckshot, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"alm" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"alq" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"alr" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/xen_pylon/freeman{ + pixel_y = 12 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"aly" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"alA" = ( +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"alC" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"alG" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"alV" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"amf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/button/door{ + id = "sectorcmain"; + pixel_y = 23 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"amg" = ( +/obj/structure/rack, +/obj/item/stack/sheet/plasteel, +/obj/item/storage/box/flashbangs, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"amh" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"ams" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/chasm, +/area/awaymission/black_mesa/tram_room) +"amv" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"amx" = ( +/obj/structure/cable, +/obj/machinery/power/rtg/abductor, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa) +"amz" = ( +/obj/structure/chair/stool/bamboo, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"amE" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"amI" = ( +/obj/structure/fence, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"amL" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"amP" = ( +/obj/machinery/light/cold, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"amS" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/magazine/assault_rifle, +/obj/item/gun/ballistic/automatic/assault_rifle, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"amW" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"amZ" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"ana" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance) +"anb" = ( +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"ann" = ( +/obj/effect/gibspawner/human/bodypartless, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/cryo_room) +"ant" = ( +/obj/machinery/door/poddoor/preopen, +/obj/structure/fluff/tram_rail, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"anu" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"anv" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_hallway) +"anw" = ( +/obj/structure/noticeboard{ + pixel_y = 29 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"anA" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"anB" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"anJ" = ( +/obj/structure/table, +/obj/item/flamethrower/full/tank, +/obj/item/tank/internals/plasma/full, +/obj/item/tank/internals/plasma/full, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"anL" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"anY" = ( +/obj/structure/cable, +/obj/machinery/light/directional/east{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aol" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_hallway) +"aoy" = ( +/obj/machinery/door/keycard/stockroom, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aoE" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen) +"aoG" = ( +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aoJ" = ( +/obj/structure/flora/biolumi, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aoK" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aoO" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aoY" = ( +/obj/structure/window/reinforced/unanchored{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aoZ" = ( +/obj/machinery/portable_atmospherics/canister/nob, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"apd" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"apg" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"apk" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"apm" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"apn" = ( +/obj/structure/table, +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aps" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "adminup"; + id_target = "admindown" + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/cryo_storage) +"apt" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"apu" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"apx" = ( +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"apy" = ( +/obj/machinery/door/poddoor/preopen, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"apD" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"apG" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/entrance) +"apJ" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/vortex, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"apL" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_storage) +"apO" = ( +/obj/structure/stone_tile/slab, +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"apP" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"apQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/door/poddoor{ + id = "teleporter" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"apT" = ( +/obj/item/ammo_casing/spent, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"apW" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aqa" = ( +/obj/structure/cursed_slot_machine, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aqb" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aqc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/to_cryo_room) +"aqd" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aqo" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"aqq" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aqr" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aqw" = ( +/obj/machinery/vending/coffee{ + default_price = 0; + extra_price = 0; + fair_market_price = 0; + name = "\improper Jim Norton's Quebecois Coffee" + }, +/obj/structure/sign/poster/contraband/robust_softdrinks{ + name = "Jim Norton's Quebecois Coffee"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aqy" = ( +/obj/machinery/portable_atmospherics/canister/zauker, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/black_mesa/cryo_room) +"aqD" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aqG" = ( +/obj/machinery/portable_atmospherics/canister/nob, +/obj/machinery/light/cold, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"aqH" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aqL" = ( +/obj/structure/fluff/tram_rail, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance) +"aqQ" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aqR" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aqS" = ( +/obj/structure/cable, +/obj/machinery/light/directional/east{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aqU" = ( +/obj/machinery/door_timer{ + id = "Mesa 3"; + name = "Cell 3"; + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aqW" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"arc" = ( +/obj/effect/gibspawner/human/bodypartless, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"ard" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"arj" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"ark" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_hall) +"arn" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"arq" = ( +/obj/structure/chair/sofa/bamboo/right, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"arr" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"ars" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_tunnel) +"arz" = ( +/turf/open/space/basic, +/area/space) +"arA" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"arF" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"arM" = ( +/obj/machinery/portable_atmospherics/canister/nob, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"arN" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"arP" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"arQ" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"arR" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"arS" = ( +/obj/item/chair/stool/bamboo, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"arT" = ( +/obj/item/ammo_casing/spent, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asd" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asl" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"asm" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"asq" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"asz" = ( +/obj/item/crowbar/freeman, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"asA" = ( +/obj/machinery/door_timer{ + id = "Mesa 1"; + name = "Cell 1"; + pixel_x = -32 + }, +/obj/item/ammo_casing/spent, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asB" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/tram_room) +"asC" = ( +/obj/structure/cable, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asD" = ( +/obj/machinery/door/airlock/silver, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"asJ" = ( +/obj/machinery/gateway/away/required_key{ + calibrated = 0 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"asO" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asQ" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"asW" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/indestructible/permalube, +/area/awaymission/black_mesa/gas_emitter_chamber) +"atd" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"atf" = ( +/obj/structure/water_source/puddle/healing, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"atp" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"atz" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"atD" = ( +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"atG" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"atI" = ( +/obj/structure/table, +/obj/item/clothing/mask/balaclava, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"atK" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/awaymission/black_mesa/tram_room) +"atM" = ( +/obj/structure/window/reinforced/unanchored{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"atO" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"atT" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"atV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"atW" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"aua" = ( +/obj/structure/table/wood, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aub" = ( +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/tram_room) +"aud" = ( +/obj/effect/spawner/structure/window/plasma, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aui" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"auC" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"auQ" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"ava" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"avc" = ( +/obj/structure/bed/dogbed/mcgriff, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"avj" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"avl" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"avq" = ( +/obj/structure/chair/sofa/bamboo/right{ + dir = 8 + }, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"avx" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"avB" = ( +/obj/machinery/portable_atmospherics/canister/nitryl, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"avI" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"avJ" = ( +/obj/machinery/vending/snack/orange, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"avK" = ( +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"avQ" = ( +/obj/structure/mineral_door/paperframe, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"avR" = ( +/obj/structure/xen_pylon/freeman{ + pixel_y = 12 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"avS" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"avX" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"awi" = ( +/obj/item/coin/antagtoken, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"awl" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"awm" = ( +/obj/machinery/door_timer{ + id = "Mesa 5"; + name = "Cell 5"; + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"awn" = ( +/obj/structure/chair/office, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"awp" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"awu" = ( +/obj/structure/server{ + anchored = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"awC" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"awH" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"awL" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_tunnel) +"awM" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/tram_room) +"awP" = ( +/obj/structure/bed/maint, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"awU" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance) +"awY" = ( +/obj/structure/xen_pylon, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"axb" = ( +/obj/machinery/light/directional/east{ + dir = 1 + }, +/obj/item/ammo_casing/spent, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"axf" = ( +/obj/structure/fence/corner, +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"axg" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/folder/blue, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"axj" = ( +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"axk" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest/blueshirt{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"axm" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/blackmesa/xen/headcrab_zombie/gordon_freeman, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"axn" = ( +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"axy" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"axF" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"axL" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"ayg" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aym" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"ayr" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"ayu" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"ayA" = ( +/obj/machinery/door/airlock/silver, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"ayB" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_room) +"ayC" = ( +/obj/structure/cable, +/obj/item/ammo_casing/spent, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"ayF" = ( +/obj/structure/rack, +/obj/machinery/light/small/red/directional/north{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"ayH" = ( +/obj/machinery/light/cold, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"ayI" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"ayU" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"ayZ" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"aza" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/cryo_room) +"azc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"azf" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_storage) +"azk" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"azm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/awaymission/black_mesa/employee_dorm_room) +"azn" = ( +/obj/structure/chair/sofa/bamboo/left{ + dir = 8 + }, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"azo" = ( +/obj/structure/billboard/space_cola, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"azp" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/pen{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/item/hand_labeler{ + pixel_x = -10; + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"azr" = ( +/obj/machinery/door/poddoor, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"azu" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"azQ" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/black_mesa/entrance) +"azT" = ( +/obj/item/storage/firstaid/tactical, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"azV" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"azY" = ( +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"azZ" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aAb" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aAe" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aAg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aAk" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aAp" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aAq" = ( +/obj/machinery/door_timer{ + id = "Mesa 6"; + name = "Cell 6"; + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aAs" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_lobby) +"aAt" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance) +"aAx" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aAy" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aAC" = ( +/obj/machinery/door/airlock/titanium{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aAG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/tram_room) +"aAM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aAR" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aAU" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aBa" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"aBb" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aBc" = ( +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aBd" = ( +/obj/machinery/light/cold, +/obj/effect/gibspawner/human/bodypartless, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aBe" = ( +/obj/structure/rack, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357/match, +/obj/item/ammo_box/a357/match, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aBf" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aBh" = ( +/obj/structure/table, +/obj/item/lighter{ + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aBj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aBo" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aBq" = ( +/turf/closed/wall/mineral/bamboo, +/area/awaymission/black_mesa/xen/freeman_arena) +"aBu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/black_mesa/security_outpost) +"aBC" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aBD" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "biolabs" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aBG" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aBK" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/door/poddoor{ + id = "biolabs" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aBQ" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aBR" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aBS" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/side, +/area/awaymission/black_mesa/entrance_lobby) +"aBY" = ( +/obj/machinery/power/rtg/abductor, +/obj/structure/cable, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa) +"aCa" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aCb" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/security_outpost) +"aCc" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aCe" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aCh" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aCi" = ( +/obj/structure/table/wood, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"aCj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aCn" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "floor3" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aCp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm, +/area/awaymission/black_mesa/tram_room) +"aCx" = ( +/obj/machinery/power/emitter/welded{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aCy" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"aCA" = ( +/obj/machinery/door/poddoor{ + id = "biolabs" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aCK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aCT" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aDa" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aDk" = ( +/obj/structure/rack, +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aDx" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen) +"aDz" = ( +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aDC" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aDL" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aDM" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aDO" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aDS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/poster/random_official, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aEa" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aEe" = ( +/obj/structure/fluff/tram_rail, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aEg" = ( +/obj/machinery/light/directional/east{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aEi" = ( +/obj/effect/mob_spawn/human/skeleton, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aEp" = ( +/obj/structure/table, +/obj/structure/microscope, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aEB" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aEH" = ( +/obj/machinery/door/airlock/silver, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aET" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/fluff/tram_rail, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aEV" = ( +/obj/structure/table/reinforced{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/item/stack/spacecash/c1{ + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/rag, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aEW" = ( +/obj/structure/closet/l3closet/janitor, +/obj/item/storage/belt/janitor/full, +/obj/item/pizzabox/margherita, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aEX" = ( +/obj/structure/cable, +/obj/machinery/power/rtg/abductor, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa) +"aFa" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aFd" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aFe" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"aFj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aFp" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_room) +"aFt" = ( +/obj/structure/bed/maint, +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aFu" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen) +"aFv" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aFx" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aFz" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aFD" = ( +/obj/structure/mineral_door/paperframe, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/freeman_arena) +"aFM" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aFP" = ( +/obj/machinery/door/poddoor{ + id = "sectorcmain2" + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"aFU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aFX" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aFY" = ( +/obj/machinery/computer, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aGf" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aGj" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/black_mesa/security_outpost) +"aGk" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_tunnel) +"aGu" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aGy" = ( +/obj/item/paper/crumpled/awaymissions/moonoutpost19/hastey_note{ + info = "Right, I'm a commie? So what? I'm proud of it.." + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 11 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aGB" = ( +/obj/structure/table, +/obj/structure/alien/weeds/xen, +/obj/item/gun/ballistic/automatic/pistol/tanner, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aGE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/east{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aGI" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_entrance) +"aGJ" = ( +/obj/item/ammo_casing/shotgun/buckshot, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aGR" = ( +/obj/structure/table/reinforced{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/food/poppypretzel{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/food/muffin/berry{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/food/hotcrossbun{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/food/cakeslice/pound_cake_slice{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aGW" = ( +/obj/structure/xen_pylon, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aGY" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aGZ" = ( +/obj/structure/chair/office, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aHa" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/cryo_room) +"aHd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/item/paper, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/item/storage/fancy/donut_box, +/obj/item/paper, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aHj" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aHk" = ( +/obj/structure/lattice/catwalk, +/turf/open/chasm, +/area/awaymission/black_mesa/tram_room) +"aHm" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aHq" = ( +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"aHt" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/cryo_room) +"aHv" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aHA" = ( +/obj/item/radio/intercom/directional/west{ + pixel_y = 5 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aHH" = ( +/obj/structure/table/wood, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aHI" = ( +/obj/structure/cable, +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa) +"aHK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aHR" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aHS" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aHT" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"aHU" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aHX" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 4; + id = "Mesa 5" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aIk" = ( +/obj/machinery/light/dim{ + dir = 8 + }, +/obj/item/ammo_box/magazine/fallout/smgm9mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aIp" = ( +/obj/effect/decal/cleanable/blood/splatter{ + icon_state = "floor5" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aIv" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aIz" = ( +/obj/item/raw_anomaly_core/vortex, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aIG" = ( +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aIH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aIO" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aIP" = ( +/obj/structure/xen_crystal{ + pixel_y = 15 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aIW" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aIX" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aJb" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/mob/living/simple_animal/hostile/blackmesa/sec/ranged, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aJd" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/cryo_room) +"aJl" = ( +/obj/structure/spacevine/xen/thick, +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aJq" = ( +/obj/machinery/light/directional/east{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aJt" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aJx" = ( +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aJE" = ( +/obj/machinery/vending/cola/red, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aJF" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_lobby) +"aJL" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aJP" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "factory_lower_start"; + id_target = "factory_lower_end" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aJW" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aKa" = ( +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aKd" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/item/gun/ballistic/shotgun, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aKg" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aKl" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aKm" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"aKq" = ( +/obj/machinery/door/poddoor{ + id = "sectorcmain" + }, +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa) +"aKu" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/pen{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/item/hand_labeler{ + pixel_x = -10; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aKw" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aKB" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_lobby) +"aKC" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aKG" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aKJ" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 8; + id = "Mesa 1" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aKM" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aKS" = ( +/obj/structure/table, +/obj/item/radio/intercom, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aLb" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 8; + id = "Mesa 2" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aLk" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aLn" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aLp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aLt" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aLz" = ( +/obj/structure/closet/secure_closet/security, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aLJ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aLO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"aLS" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aLU" = ( +/obj/machinery/atmospherics/components/binary/crystallizer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aLX" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aMa" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_tunnel) +"aMb" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aMc" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aMh" = ( +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"aMi" = ( +/obj/structure/alien/weeds/xen, +/obj/item/ammo_box/a762, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aMk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aMl" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aMq" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aMy" = ( +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"aME" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/corner, +/area/awaymission/black_mesa/entrance_lobby) +"aMJ" = ( +/obj/structure/chair/stool{ + name = "Jim Norton's Quebecois Coffee stool" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/black_mesa/security_outpost) +"aML" = ( +/obj/item/food/deadmouse, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aMS" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aMU" = ( +/obj/structure/closet/crate/bin, +/obj/item/food/donut/laugh, +/obj/item/food/donut/laugh, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/obj/item/food/donut/plain, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aMW" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/blueshirt{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aNa" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aNc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aNi" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_hall) +"aNo" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa) +"aNr" = ( +/obj/effect/random_mob_placer/security_guard, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aNv" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aNw" = ( +/obj/structure/marker_beacon/green, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aNx" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aNz" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/machinery/light/cold, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"aNF" = ( +/obj/structure/flora/biolumi, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aNG" = ( +/obj/structure/table/wood, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/freeman_arena) +"aNP" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aNR" = ( +/obj/structure/alien/weeds/xen, +/obj/item/stack/sticky_tape, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aOa" = ( +/obj/item/reagent_containers/food/condiment/milk{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/soymilk{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/ice{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/bottle/cream{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aOc" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aOe" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aOj" = ( +/obj/machinery/door_timer{ + id = "Mesa 4"; + name = "Cell 4"; + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aOk" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aOr" = ( +/obj/structure/alien/weeds/xen, +/obj/item/gun/ballistic/rifle/boltaction, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aOy" = ( +/obj/structure/table, +/obj/item/grenade/gluon, +/obj/item/grenade/gluon, +/obj/item/grenade/gluon, +/obj/item/grenade/gluon, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/black_mesa/cryo_room) +"aOz" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aOG" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aOI" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aOM" = ( +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/freeman_arena) +"aOY" = ( +/obj/structure/table/reinforced{ + name = "Jim Norton's Quebecois Coffee table" + }, +/obj/item/paper{ + info = "Jim Norton's Quebecois Coffee. You see, in 2265 the Quebecois had finally had enough of Canada's shit, and went to the one place that wasn't corrupted by Canuckistan.Je vais au seul endroit qui n'a pas ??? corrompu par les Canadiens ... ESPACE."; + name = "Coffee Shop"; + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/mug/coco{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/mug/tea{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aOZ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aPd" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aPe" = ( +/obj/structure/window/reinforced/unanchored{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/spray/pepper, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aPj" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "factory_upper_start"; + id_target = "factory_upper_end" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aPn" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/awaymission/black_mesa/entrance) +"aPp" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aPy" = ( +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aPA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance) +"aPB" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/grey_bull, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aPG" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "factory_upper_end"; + id_target = "factory_upper_start" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aPJ" = ( +/obj/effect/random_mob_placer/xen/zombie, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aPL" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/freeman_arena) +"aPN" = ( +/obj/structure/chair/sofa/bamboo/left, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aPU" = ( +/obj/machinery/door/poddoor{ + id = "biolabs" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aPW" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aQa" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aQc" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aQe" = ( +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aQj" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aQl" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aQz" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/employee_dorm_room) +"aQB" = ( +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aQC" = ( +/obj/item/stack/sheet/iron/ten, +/obj/item/stack/sheet/iron/ten, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aQL" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aQZ" = ( +/turf/closed/indestructible/rock, +/area/space) +"aRb" = ( +/obj/structure/lattice/catwalk, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aRd" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/item/lighter/greyscale, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aRg" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aRi" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aRj" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aRk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 4 + }, +/obj/item/paper, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aRp" = ( +/obj/item/book/granter/crafting_recipe/cooking_sweets_101, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aRB" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aRC" = ( +/obj/item/clothing/suit/apron/chef{ + name = "Jim Norton's Quebecois Coffee apron" + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aRI" = ( +/obj/structure/table/abductor, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aRO" = ( +/obj/machinery/door/poddoor/preopen, +/obj/structure/fluff/tram_rail, +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aRR" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aRS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"aRW" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aSa" = ( +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aSe" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_uplift, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aSg" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/black_mesa/tram_room) +"aSi" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aSj" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aSl" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aSm" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/lost_camp) +"aSt" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aSv" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aSD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aSH" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aSI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aSL" = ( +/obj/structure/rack, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aSO" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"aSP" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/tram_room) +"aSR" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aSV" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aSX" = ( +/obj/machinery/door/keycard/xen/freeman_boss_exit, +/obj/effect/freeman_blocker, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"aTa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aTj" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aTn" = ( +/obj/structure/alien/weeds/xen, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_lobby) +"aTo" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aTs" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/servers) +"aTE" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_lobby) +"aTL" = ( +/obj/machinery/door/airlock/security, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aTN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aTO" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aTR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aTT" = ( +/obj/structure/marker_beacon/green, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aUc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/servers) +"aUh" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/machinery/light/directional/east{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aUr" = ( +/obj/machinery/door/airlock/titanium{ + name = "Arrivals Shuttle Airlock" + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aUu" = ( +/mob/living/simple_animal/hostile/blackmesa/xen/nihilanth, +/obj/structure/marker_beacon/green, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"aUy" = ( +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"aUI" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aUL" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_button) +"aUN" = ( +/obj/structure/closet/secure_closet/brig, +/obj/item/poster/random_contraband, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aUO" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aUR" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aUS" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/servers) +"aUV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aVi" = ( +/obj/machinery/door/poddoor{ + id = "sectorcmain" + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_lobby) +"aVj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aVl" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plating/ice, +/area/awaymission/black_mesa/cryo_room) +"aVn" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_lobby) +"aVr" = ( +/obj/structure/lattice/catwalk, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/tram_room) +"aVu" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aVx" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aVD" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa) +"aVG" = ( +/turf/open/chasm, +/area/awaymission/black_mesa/entrance) +"aVO" = ( +/obj/structure/table/wood, +/obj/item/food/meat/slab/human, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aVU" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aVV" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aVW" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/security_outpost) +"aWa" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aWb" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aWg" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aWi" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aWl" = ( +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aWm" = ( +/obj/machinery/button/door{ + id = "sectorcmain2"; + pixel_x = -23 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aWt" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "factory_lower_end"; + id_target = "factory_lower_start" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aWu" = ( +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 1 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aWv" = ( +/obj/structure/window/reinforced/unanchored{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light/directional/east{ + dir = 8 + }, +/obj/item/radio/off{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aWx" = ( +/obj/machinery/door/poddoor, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance) +"aWz" = ( +/obj/structure/spacevine/xen/thick, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aWF" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aWI" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/cryo_storage) +"aWJ" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"aXb" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aXl" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"aXm" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"aXo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/tram_room) +"aXt" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"aXv" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aXz" = ( +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/entrance) +"aXC" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"aXD" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aXH" = ( +/obj/effect/random_mob_placer/security_guard, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aXM" = ( +/obj/structure/table, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aXN" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aXT" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_tunnel) +"aYb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aYc" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"aYd" = ( +/obj/item/seeds/coffee{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/seeds/coffee/robusta{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/seeds/coffee{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/pill_bottle/happinesspsych{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/seeds/coffee{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/machinery/light/directional/north, +/obj/structure/table{ + name = "Jim Norton's Quebecois Coffee table" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/security_outpost) +"aYe" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/revolver/mateba, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aYf" = ( +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/tram_room) +"aYk" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_hallway) +"aYr" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa) +"aYs" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aYu" = ( +/obj/structure/cable, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aYv" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aYw" = ( +/obj/item/storage/firstaid/tactical, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aYB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aYH" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_lobby) +"aYJ" = ( +/obj/structure/rack, +/obj/item/kitchen/knife/combat, +/obj/item/clothing/glasses/night, +/obj/item/clothing/suit/armor/vest/russian{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/rus_helmet{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aYK" = ( +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/black_mesa/cryo_room) +"aYL" = ( +/obj/machinery/light/cold, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aYP" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/awaymission/black_mesa/tram_room) +"aYR" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aYT" = ( +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aYV" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "admindown"; + id_target = "adminup" + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/gas_emitter_chamber) +"aYX" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"aYY" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"aZd" = ( +/obj/machinery/portable_atmospherics/canister/hydrogen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aZj" = ( +/obj/structure/table/wood, +/obj/item/dice/d20/fate/one_use, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"aZk" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_server) +"aZl" = ( +/obj/machinery/computer{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/cryo_room) +"aZm" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/security_outpost) +"aZt" = ( +/obj/structure/xen_crystal, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"aZw" = ( +/obj/structure/xen_crystal{ + pixel_y = 15 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"aZB" = ( +/obj/structure/water_source/puddle/healing, +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"aZE" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + dir = 4; + id = "Mesa 4" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/security_outpost) +"aZH" = ( +/obj/machinery/door/airlock/science, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/to_cryo_room) +"aZJ" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_lobby) +"aZS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/entrance) +"aZU" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/servers) +"aZW" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_lobby) +"aZZ" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"baR" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_entrance) +"bba" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"bbc" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"bbI" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"bcL" = ( +/obj/structure/rack, +/obj/item/assembly/shock_kit, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"bfV" = ( +/obj/machinery/chem_master, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"bgt" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"bgC" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 6 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"bhY" = ( +/obj/item/gun/ballistic/automatic/fallout/smg9mm/handmade, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"bik" = ( +/obj/structure/table, +/obj/item/clothing/accessory/armband/deputy, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"bix" = ( +/obj/machinery/door/airlock/science{ + id_tag = "gatesiguess" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_internal) +"bjN" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"bjX" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"bkc" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"bkf" = ( +/obj/machinery/porta_turret/black_mesa, +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"bli" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"blz" = ( +/obj/machinery/door_buttons/airlock_controller{ + name = "elevator button"; + pixel_x = -23 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/genetics_elevator) +"bmh" = ( +/obj/structure/flora/biolumi/mine/weaklight{ + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"bmS" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"bnB" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_hallway) +"boM" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"bpy" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"bpH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"bqB" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"brg" = ( +/obj/machinery/light/cold, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"bsv" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"bsL" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"btx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"bvz" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/resonant_chamber) +"bvU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"bxm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"byl" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"byK" = ( +/obj/structure/cable, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"byO" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"bzF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"bAg" = ( +/obj/structure/tank_holder/anesthetic, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"bAx" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"bBs" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_hallway) +"bBT" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/awaymission/black_mesa/equipment_room) +"bDW" = ( +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"bEa" = ( +/obj/structure/chair/office, +/obj/effect/mob_spawn/human/black_mesa, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"bFy" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"bGe" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_tunnel) +"bGu" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_labs) +"bGH" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"bHE" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"bIg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_hallway) +"bJu" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/geiger_counter, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"bJE" = ( +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"bKH" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"bLy" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"bLS" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"bNQ" = ( +/obj/machinery/light/cold, +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/machinery/armament_station/hecu, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"bOt" = ( +/obj/machinery/light/cold, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"bOJ" = ( +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"bOK" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"bPo" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"bPP" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"bQb" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"bQd" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/equipment_room) +"bSz" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"bSI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"bUH" = ( +/obj/machinery/computer{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"bUJ" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"bWx" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottomrear" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"bYm" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"bYu" = ( +/obj/structure/railing, +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"bZa" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "lambdaup"; + id_target = "lambdadown" + }, +/obj/effect/bump_teleporter/black_mesa{ + id = "lambdaup"; + id_target = "lambdadown" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"bZx" = ( +/obj/structure/closet/crate/large, +/obj/item/food/canned/tomatoes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"bZK" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"cak" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/electrolyzer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"can" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"cao" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_hallway) +"cba" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"cbk" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/genetics_elevator) +"cbq" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"cbD" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"cch" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"cdK" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"ceu" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ceC" = ( +/obj/machinery/chem_mass_spec, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"ceE" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"ceO" = ( +/obj/structure/alien/weeds/xen, +/obj/machinery/power/emitter/welded, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"ceV" = ( +/obj/item/weaponcrafting/gunkit/hellgun, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"ceW" = ( +/obj/structure/railing, +/obj/machinery/light/cold/directional/west, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"cgq" = ( +/obj/structure/table, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"chS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"civ" = ( +/obj/structure/table, +/obj/structure/table, +/obj/item/pizzabox/pineapple, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"ciB" = ( +/obj/item/ammo_casing/a556/weak, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"ciK" = ( +/obj/structure/railing, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_button) +"ciX" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"cjr" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"cjO" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"cjV" = ( +/obj/structure/window/spawner/north, +/obj/structure/window/spawner/west, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"ckA" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"clI" = ( +/obj/machinery/chem_mass_spec, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"clR" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"cmn" = ( +/obj/item/statuebust/hippocratic, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"cms" = ( +/obj/effect/random_mob_placer/xen, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"cnj" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"cny" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"cnA" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_hallway) +"cnW" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"coF" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"coX" = ( +/obj/machinery/porta_turret/black_mesa/friendly, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"cqA" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"cqD" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"cqW" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"cqZ" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"cru" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/large, +/obj/item/grenade/chem_grenade/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"crz" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"csK" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"csP" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/security_outpost) +"cuS" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/item/documents, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"cve" = ( +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"cvy" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"cvX" = ( +/obj/machinery/light/cold, +/obj/item/stack/sheet/mineral/sandbags{ + amount = 50 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"cwf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"cwi" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"cwW" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"cxv" = ( +/obj/structure/water_source/puddle/healing, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"cxQ" = ( +/obj/structure/spacevine/xen/thick, +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"cyk" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"cyy" = ( +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"cAQ" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"cDA" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_decon_room) +"cDJ" = ( +/obj/structure/lattice/catwalk, +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"cFH" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_server) +"cFU" = ( +/obj/structure/xen_crystal, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"cGQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"cIe" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"cIf" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"cIR" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/science{ + id_tag = "chemiguess" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"cKU" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"cKX" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_button) +"cLY" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"cNZ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics) +"cPd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"cPq" = ( +/obj/structure/closet/crate/large, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"cPz" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"cPC" = ( +/mob/living/simple_animal/hostile/blob/blobspore/independent, +/obj/structure/blob/normal, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"cPH" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"cPI" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"cPK" = ( +/obj/machinery/power/emitter/energycannon{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"cPS" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"cQu" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"cQF" = ( +/obj/machinery/porta_turret/black_mesa/friendly, +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"cRb" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"cRK" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"cSu" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"cSv" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "wheredahoodat" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"cTc" = ( +/obj/structure/lattice/catwalk, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/deep_sci_hall) +"cTi" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"cTO" = ( +/obj/machinery/power/emitter/energycannon{ + dir = 8 + }, +/obj/machinery/power/emitter/energycannon{ + dir = 8 + }, +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"cUd" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_emitter) +"cUf" = ( +/obj/structure/cable, +/obj/structure/alien/weeds/xen, +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"cUM" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"cXa" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"cXw" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/table, +/obj/item/pizzabox/margherita, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"cXB" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"cYO" = ( +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"cZI" = ( +/obj/machinery/light/small/red/directional/east, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"dan" = ( +/obj/machinery/smoke_machine, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"dcv" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"ddi" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"ddt" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"deH" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"deU" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"dfc" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"dfy" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"dgr" = ( +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"dgs" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"dhs" = ( +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"dix" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"djq" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"djQ" = ( +/obj/structure/railing, +/obj/structure/table, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/equipment_room) +"dlk" = ( +/obj/machinery/computer{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"dly" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/mob_spawn/human/skeleton, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"dmL" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"dnf" = ( +/obj/structure/railing, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"dnS" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"dok" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"dop" = ( +/obj/structure/flora/biolumi/lamp/weaklight{ + pixel_x = 8; + pixel_y = -17 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"doO" = ( +/obj/structure/closet/crate/bin, +/obj/item/pushbroom, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"dpK" = ( +/obj/structure/chair/office, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"dqq" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"dqR" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"dru" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"drF" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"drM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"dsC" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"dsI" = ( +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"duc" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"duw" = ( +/obj/structure/table, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"duV" = ( +/obj/machinery/computer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"dvL" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"dwa" = ( +/obj/machinery/medical_kiosk, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"dxJ" = ( +/obj/structure/lattice/catwalk, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"dyc" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/spacevine/xen/thick, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"dzu" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"dzN" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"dzX" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"dzY" = ( +/obj/structure/xen_pylon/freeman{ + pixel_y = 12 + }, +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"dAv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"dBl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/remains/human, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"dCz" = ( +/obj/structure/showcase/perfect_employee, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"dCG" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/modular_computer/laptop, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"dDq" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"dDu" = ( +/obj/structure/chair/stool, +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/equipment_room) +"dDw" = ( +/obj/effect/mob_spawn/human/skeleton, +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"dDF" = ( +/obj/machinery/door/poddoor, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"dDU" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"dFF" = ( +/obj/structure/table, +/obj/item/food/mre_course/dessert/cookie, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"dGr" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"dGx" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"dGD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"dGM" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/xen/lost_camp) +"dGY" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"dHh" = ( +/obj/machinery/bookbinder, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"dIi" = ( +/obj/machinery/porta_turret/black_mesa/friendly, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"dIq" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/storage/firstaid/emergency, +/obj/item/storage/backpack/satchel/sec, +/obj/item/storage/backpack/security, +/obj/item/keycard/stockroom, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"dIH" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"dIL" = ( +/obj/machinery/destructive_scanner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"dLt" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"dNy" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"dNA" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"dOR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"dPz" = ( +/obj/structure/alien/egg/burst, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"dPS" = ( +/obj/item/ammo_casing/a556/weak, +/obj/item/ammo_casing/a556/weak, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"dQa" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"dQq" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"dRN" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"dSQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"dTf" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"dTm" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"dTv" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_arena) +"dTz" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/scientist_hall) +"dTJ" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"dTO" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"dUs" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"dVo" = ( +/obj/structure/table, +/obj/structure/fluff/paper/stack{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"dWe" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"dWl" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"dWt" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"dWA" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/high_security_hallway) +"dWG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scientist, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"dYd" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/light/cold, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"dYp" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"dYE" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"dYJ" = ( +/obj/machinery/doppler_array, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"dZu" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"eab" = ( +/obj/machinery/door_buttons/airlock_controller{ + name = "elevator button"; + pixel_y = 23 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"eag" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"eat" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"eaL" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"eaO" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"ebi" = ( +/obj/machinery/light/broken, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"edS" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_entrance) +"edZ" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"eff" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics) +"efM" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"egS" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_turret) +"ehd" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"ehg" = ( +/obj/structure/sign/poster/official/science{ + pixel_y = 64 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"ehE" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"ehK" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"eij" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"ejs" = ( +/obj/structure/fluff/bus/passable/seat, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"ekr" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"eky" = ( +/obj/structure/rack, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/obj/item/grenade/frag, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"enC" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"enQ" = ( +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/lambda_teleporter) +"epL" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"epV" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"eqD" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"erE" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/gas_emitter_chamber) +"erJ" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"etg" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/dorm_tunnel) +"euc" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/black_mesa/employee_dorm_room) +"euy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"evY" = ( +/obj/effect/random_mob_placer/security_guard, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"exd" = ( +/obj/item/target, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"eyI" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"ezH" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"ezT" = ( +/obj/structure/railing, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/engine, +/area/awaymission/black_mesa/deep_sci_turret) +"eAu" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"eAz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_surgery) +"eAA" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"eBc" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"eCy" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/hecu_zone_camp) +"eDD" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"eFZ" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table, +/obj/item/storage/cans/sixsoda, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"eGs" = ( +/obj/structure/table, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"eHg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_hallway_two) +"eJe" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/water, +/area/awaymission/black_mesa/black_ops_button) +"eJv" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"eJC" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_hall) +"eMs" = ( +/obj/structure/cable, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"eMB" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"eME" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"eNi" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/hecu_zone_camp) +"eOL" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_chem) +"ePf" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"ePt" = ( +/obj/item/food/popcorn, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"ePK" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"eQj" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "amsup"; + id_target = "amsdown" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/genetics_elevator) +"eRK" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_hallway) +"eSs" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_science_room) +"eSD" = ( +/obj/structure/closet/wardrobe, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"eTC" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/xen/acid_lake_building) +"eVB" = ( +/obj/item/food/canned, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"eXb" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"eXf" = ( +/mob/living/simple_animal/hostile/blackmesa/sec, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"eXU" = ( +/obj/item/flashlight/flare, +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"eYk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/awaymission/black_mesa/resonant_chamber) +"eYM" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"eYQ" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"eYU" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"eZe" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"eZm" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_internal) +"eZs" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"fao" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_storage) +"faD" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"fbS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"fcm" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"fcR" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"fea" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance) +"fed" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"fef" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"feA" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/effect/baseturf_helper/black_mesa, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"feL" = ( +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"ffd" = ( +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"ffk" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ffD" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"ffW" = ( +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"fgF" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"fhT" = ( +/turf/open/floor/plating/beach/coastline_b/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"fig" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"fin" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"fio" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"fir" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"fjj" = ( +/obj/machinery/power/emitter/energycannon{ + dir = 4 + }, +/obj/machinery/power/emitter/energycannon{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"fjp" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"fjK" = ( +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"fjM" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"fkz" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"flu" = ( +/obj/structure/table/wood, +/obj/item/food/meat/slab/human, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"flC" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"fmF" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"fnr" = ( +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"fnG" = ( +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"fnP" = ( +/obj/item/stack/rods, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"fom" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/lambda_teleporter) +"fos" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"foy" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/alien/weeds/xen, +/obj/machinery/door/airlock/science, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/genetics_elevator) +"fpS" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"fqj" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_armory) +"fuF" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"fvE" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"fvJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"fvQ" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"fwg" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"fwx" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/drinks/mug/tea{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"fwW" = ( +/mob/living/simple_animal/hostile/blackmesa/blackops/ranged, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"fxF" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"fym" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"fzx" = ( +/obj/structure/rack, +/obj/item/construction/rld, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"fAW" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"fBo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_hall) +"fBv" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"fBH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"fDa" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"fEr" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"fED" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"fFh" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"fFA" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"fGg" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"fHn" = ( +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"fHq" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"fIH" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"fKG" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"fKJ" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"fLp" = ( +/obj/item/food/canned/beans, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"fLI" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/black_mesa/equipment_room) +"fMJ" = ( +/obj/machinery/computer{ + dir = 8 + }, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"fNm" = ( +/obj/structure/table, +/obj/item/paper, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"fPQ" = ( +/obj/item/food/urinalcake, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"fPX" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 5 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"fQk" = ( +/mob/living/simple_animal/hostile/carp/megacarp, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"fQo" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"fUS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"fXk" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"fXG" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"fYD" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"fYL" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"fYW" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"fZB" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"fZK" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"gaj" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"gaA" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/porta_turret/black_mesa, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"gaL" = ( +/obj/effect/decal/remains/human, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"gbg" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"gdr" = ( +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"gdX" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"gew" = ( +/obj/structure/table, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"geV" = ( +/obj/structure/rack, +/obj/item/storage/part_replacer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"gfO" = ( +/obj/structure/chair, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"ggL" = ( +/obj/machinery/light/cold, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"gid" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/machinery/light/cold, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"gip" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"gkg" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/table/greyscale, +/obj/item/storage/box/hecu_rations{ + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"gkl" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hallway_two) +"glF" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"gnS" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/equipment_room) +"gol" = ( +/obj/item/stock_parts/cell/high, +/obj/structure/alien/weeds/xen, +/obj/structure/closet/wardrobe, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"gov" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"goz" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/resonant_chamber) +"goZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"gpj" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"gpk" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"gpN" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"gqq" = ( +/obj/item/chair, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"gqu" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_chem) +"gtN" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/scientist_hall) +"guF" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"gvm" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"gvI" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"gwE" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"gxC" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "teleporterdown"; + id_target = "teleporterup" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_hallway_two) +"gze" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/awaymission/black_mesa/black_ops_button) +"gAf" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"gAB" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"gAR" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"gCt" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"gDg" = ( +/obj/structure/fluff/bus/passable/seat, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"gEA" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"gGc" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"gGU" = ( +/obj/structure/table, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"gGZ" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"gHF" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"gHY" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"gIf" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"gIr" = ( +/obj/effect/random_mob_placer/xen, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"gIM" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"gJa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/cold, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"gKe" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"gKg" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"gMj" = ( +/obj/machinery/door/poddoor{ + id = "sectorcmain" + }, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_hall) +"gMx" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"gNG" = ( +/obj/item/keycard/yellow, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"gOg" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"gOM" = ( +/obj/structure/railing/corner, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"gPz" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"gQg" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"gRA" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"gSH" = ( +/obj/structure/lattice/catwalk, +/obj/effect/bump_teleporter/black_mesa{ + density = 0; + id = "lambda_destination" + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"gTh" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"gTp" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"gTF" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"gUo" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/servers) +"gUA" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"gVb" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/resonant_chamber) +"gVo" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/awaymission/black_mesa/black_ops_button) +"gVv" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"gVw" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"gWB" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"gWF" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/table/optable, +/obj/item/storage/firstaid, +/obj/item/clothing/mask/breath/medical, +/obj/item/tank/internals/anesthetic, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"gXc" = ( +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_button) +"gYK" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"gZk" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/black_mesa/xen/nihilanth_arena) +"gZV" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"hbB" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"hcB" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"hcD" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"hcK" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"hde" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"hdA" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "topdoor" + }, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"heb" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hfc" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"hfh" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/alien/weeds/xen, +/obj/machinery/door/airlock/science{ + id_tag = "chemiguess" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"hfm" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"hfP" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hall) +"hfW" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"hgj" = ( +/obj/structure/mineral_door/paperframe, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"hgt" = ( +/obj/machinery/door/airlock/command, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_hall) +"hgG" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"hhl" = ( +/obj/structure/window/spawner/west, +/obj/structure/window/spawner, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"hhN" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"hjj" = ( +/obj/effect/random_mob_placer/security_guard, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"hjl" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_science_room) +"hjB" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"hjO" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"hjV" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"hkE" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/minespawner/explosive, +/obj/item/minespawner/explosive, +/obj/item/minespawner/explosive, +/obj/item/minespawner/explosive, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hlv" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"hlW" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"hmc" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/high_security_servers) +"hme" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"hnp" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"hnC" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"hok" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"how" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"hpx" = ( +/obj/item/ammo_box/magazine/m50, +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"hqT" = ( +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"hrk" = ( +/obj/structure/blob/normal, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"hrI" = ( +/obj/structure/rack, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"hrO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_entrance) +"hrR" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"htb" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"hti" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"hwN" = ( +/obj/machinery/door/airlock, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"hwQ" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/resonant_chamber) +"hyv" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"hyT" = ( +/obj/item/clothing/mask/facehugger/dead, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"hzj" = ( +/obj/structure/bed/roller, +/obj/structure/curtain, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"hzB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"hAa" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"hAz" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"hAE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_internal) +"hAH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_large_office) +"hAS" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"hBp" = ( +/mob/living/simple_animal/hostile/blackmesa/sec/ranged, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"hBz" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"hCW" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"hDu" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"hEr" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/mob_spawn/human/black_mesa/hecu/leader, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hGC" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/xen_pylon, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"hGV" = ( +/obj/structure/rack, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"hHC" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hJN" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"hKg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake) +"hMp" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/mug/tea{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/kitchen/knife/plastic, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"hMr" = ( +/obj/structure/bed, +/obj/item/bedsheet/patriot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hMF" = ( +/obj/structure/spacevine, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"hMI" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"hNg" = ( +/obj/item/clothing/accessory/armband/engine, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hNG" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"hOw" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"hOG" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"hOT" = ( +/obj/structure/mineral_door/paperframe, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"hQb" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"hQI" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"hQK" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"hRb" = ( +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"hUa" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"hUd" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"hYc" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"hZg" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 6 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"ian" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"idt" = ( +/obj/effect/gibspawner/human/bodypartless, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/employee_dorm_room) +"idC" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"ieX" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"igt" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"igz" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"iiA" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"ijT" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"ijX" = ( +/obj/structure/table, +/obj/item/fuel_pellet/exotic, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"iki" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/clothing/shoes/combat/swat, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"iku" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"imi" = ( +/obj/structure/spacevine/xen/thick, +/obj/structure/sign/warning/biohazard, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"ipk" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"iqc" = ( +/obj/machinery/light/warm{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"iqd" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/curtain, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"iqp" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"iqQ" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"iro" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake_building) +"irD" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"irU" = ( +/obj/effect/decal/remains/human, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"isf" = ( +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"ish" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"isv" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"isX" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/to_cryo_room) +"itz" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"ium" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"iux" = ( +/obj/structure/closet/crate/large, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_science_room) +"iuT" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"ivk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/employee_dorm_room) +"ivz" = ( +/obj/structure/closet/crate/bin, +/obj/item/ammo_box/a357, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"ivQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"iyb" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table, +/obj/item/instrument/guitar, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"izk" = ( +/obj/machinery/porta_turret/black_mesa/heavy, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"izl" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/awaymission/black_mesa/resonant_chamber) +"izv" = ( +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"iAn" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"iBo" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_storage) +"iCk" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"iDr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"iDF" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"iDH" = ( +/obj/machinery/light/cold, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"iEr" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"iFx" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"iFR" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"iHm" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"iHF" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"iHL" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"iIk" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"iIH" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"iIS" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"iJu" = ( +/obj/item/storage/firstaid/tactical, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"iJL" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_internal_hall) +"iKp" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"iKG" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"iLb" = ( +/obj/structure/lattice/catwalk, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_internal_hall) +"iMP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"iNa" = ( +/obj/machinery/light/cold, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_bus) +"iNt" = ( +/obj/item/stack/sheet/mineral/sandbags{ + amount = 50 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"iOl" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"iOR" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"iRJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"iRL" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"iTd" = ( +/obj/structure/table, +/obj/item/scalpel/alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"iUZ" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"iVz" = ( +/obj/structure/table/optable, +/obj/effect/gibspawner/xeno, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"iVC" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"iWf" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"iWr" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/scientist_hall) +"iWy" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"iWI" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"iXz" = ( +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"iXA" = ( +/obj/structure/table, +/obj/item/fireaxe/metal_h2_axe, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"iXD" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_labs) +"iYk" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"iYm" = ( +/obj/effect/bump_teleporter/lambda{ + id = "lambda_teleporter"; + id_target = "lambda_destination" + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"iYx" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"iYC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"iYD" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/item/stack/ore/bluespace_crystal, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"iZb" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"iZK" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"iZO" = ( +/obj/structure/table, +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/item/storage/pill_bottle/mining, +/obj/item/storage/pill_bottle/mining, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/storage/pill_bottle/iron, +/obj/item/storage/pill_bottle/iron, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"jaA" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"jaW" = ( +/obj/structure/alien/weeds/node, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"jbe" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"jbL" = ( +/obj/structure/xen_pylon, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"jdg" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"jdh" = ( +/turf/closed/wall/mineral/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"jdk" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"jej" = ( +/obj/structure/table/wood, +/obj/item/food/meat/slab/human/mutant/lizard, +/obj/item/food/meat/slab/human/mutant/lizard, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"jev" = ( +/obj/structure/spacevine/xen/thick, +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/crowbar_nook) +"jgy" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/lambda_hallway) +"jgU" = ( +/obj/structure/table, +/obj/item/paper, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"jhT" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_hallway) +"jiL" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"jjC" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"jkj" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"jlI" = ( +/obj/structure/rack, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"jml" = ( +/turf/closed/wall, +/area/awaymission/black_mesa/equipment_room) +"jnr" = ( +/obj/machinery/computer{ + dir = 1 + }, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"jnZ" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"jpF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"jpM" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"jqU" = ( +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"jrc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light/cold, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"jrv" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"jrz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"jrH" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"jsS" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"jte" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"jts" = ( +/obj/structure/table, +/obj/item/extinguisher, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"jtA" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"jtF" = ( +/obj/structure/deployable_barricade/plasteel{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"juh" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"juA" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"jvJ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/cloth/ten, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"jwD" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"jwP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"jxo" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"jxt" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"jyc" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "frontwallbottom" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"jym" = ( +/obj/machinery/power/emitter/energycannon, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"jyF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north{ + dir = 8 + }, +/obj/machinery/power/emitter/energycannon, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"jyG" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"jzg" = ( +/turf/closed/indestructible/riveted/boss, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"jzY" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"jBA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"jBE" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/deep_sci_hall) +"jBF" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"jBR" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"jCy" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"jCM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"jDi" = ( +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_bus) +"jDN" = ( +/obj/structure/closet/crate/bin, +/obj/item/pen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"jEk" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/machinery/destructive_scanner, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"jEM" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"jHm" = ( +/obj/structure/window/spawner/north, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"jHV" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"jIb" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"jIt" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"jIz" = ( +/obj/structure/xen_pylon, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"jJB" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"jJJ" = ( +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"jLg" = ( +/obj/structure/alien/weeds/xen, +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"jMn" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"jME" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"jOy" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"jOY" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"jQm" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"jQp" = ( +/obj/structure/showcase/machinery/tv, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"jQR" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"jRk" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"jRB" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"jRP" = ( +/obj/machinery/field/generator/anchored, +/obj/structure/cable, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"jSt" = ( +/obj/structure/fluff/bus/passable, +/obj/item/food/meatball, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"jST" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"jTe" = ( +/obj/structure/window/spawner, +/obj/structure/window/spawner/east, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"jUb" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"jUD" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"jVn" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/item/stack/sheet/mineral/plasma/thirty, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"jVF" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"jVK" = ( +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hall) +"jWj" = ( +/obj/item/gun/ballistic/automatic/pistol/deagle/gold, +/obj/item/ammo_box/magazine/m50, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"jYx" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_hallway_two) +"jZF" = ( +/obj/machinery/door/keycard/yellow_required, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/equipment_room) +"kai" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "teleporter_catwalk"; + name = "Teleporter Catwalk Control" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"kam" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"kbC" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"kbW" = ( +/obj/structure/rack, +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/obj/item/grenade/c4, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"kcn" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"kda" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"kdx" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 10 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"kdM" = ( +/obj/structure/fluff/bus/dense, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"kee" = ( +/obj/structure/cable, +/obj/item/wrench, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"keM" = ( +/obj/structure/closet/wardrobe, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"keP" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"kfF" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/awaymission/black_mesa/science_labs) +"kfR" = ( +/obj/machinery/hypnochair, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"khl" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"kht" = ( +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"khU" = ( +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"kjx" = ( +/obj/structure/table, +/obj/item/reagent_containers/hypospray/medipen/blood_loss, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"kjS" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"kkK" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/item/resonator/upgraded, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"klO" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/item/camera, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"kni" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"kop" = ( +/obj/structure/spacevine/xen/thick, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"kor" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"koR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"kqp" = ( +/obj/structure/water_source/puddle/healing, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"kqy" = ( +/obj/structure/closet/crate/large, +/obj/item/minespawner/explosive, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"krt" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"ksv" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/lost_camp) +"kta" = ( +/obj/structure/window/plasma/spawner, +/obj/structure/window/plasma/spawner/east, +/obj/structure/window/plasma/spawner/north, +/obj/structure/window/plasma/spawner/west, +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/laser/marksman, +/obj/item/ammo_box/magazine/recharge/marksman, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"kuR" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"kvc" = ( +/obj/structure/cable, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"kvl" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"kvq" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"kwe" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"kwr" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"kwF" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"kxo" = ( +/obj/structure/table, +/obj/item/storage/box/medipens/utility, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"kyP" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_large_office) +"kyZ" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"kzW" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"kAr" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"kAK" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"kAS" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"kAW" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"kBh" = ( +/obj/machinery/light/cold, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"kBo" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "teleporter"; + name = "Teleporter Access Control" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"kBT" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"kBZ" = ( +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"kCw" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"kDp" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"kDI" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"kGj" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"kHS" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 6 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"kJN" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"kJS" = ( +/obj/structure/chair/office, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"kJZ" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"kKb" = ( +/obj/structure/table, +/obj/item/gun/energy/laser/thermal/inferno, +/obj/item/gun/energy/laser/thermal/cryo, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"kKi" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"kLj" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"kMw" = ( +/mob/living/simple_animal/hostile/blackmesa/sec/ranged, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"kNj" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "fronttire" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"kOl" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"kPC" = ( +/obj/item/storage/backpack/duffelbag/sec/surgery, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"kQc" = ( +/obj/structure/closet/crate/bin, +/obj/item/kitchen/knife/combat, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"kQo" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/lambda_hallway) +"kQp" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"kRe" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"kRl" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"kRp" = ( +/obj/machinery/door/window/brigdoor/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"kRR" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"kSw" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"kSV" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_turret) +"kTL" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_teleporter) +"kUo" = ( +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/deep_sci_turret) +"kVj" = ( +/obj/machinery/door/airlock/science{ + id_tag = "chemiguess" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"kWg" = ( +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_camp) +"kWF" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics_sec) +"kWX" = ( +/mob/living/simple_animal/hostile/blackmesa/xen/bullsquid, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"kXJ" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"kXX" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_lobby) +"kYb" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"kZh" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"kZC" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"kZK" = ( +/obj/machinery/door_buttons/airlock_controller{ + name = "elevator button"; + pixel_x = -23 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/scientist_hall) +"kZT" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_labs) +"kZX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_atrium) +"law" = ( +/obj/structure/bed, +/obj/item/bedsheet/patriot, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"laI" = ( +/obj/item/ammo_box/magazine/fallout/smgm9mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/entrance_lobby) +"lbg" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"lbk" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"lbD" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"lbN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ldC" = ( +/mob/living/simple_animal/hostile/blob/blobbernaut/independent, +/obj/structure/blob/normal, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"lew" = ( +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"leN" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"lfq" = ( +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"lfO" = ( +/obj/structure/cable, +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"lgz" = ( +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 13; + pixel_y = -3 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/lighter{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"lit" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"liZ" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ljd" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"lkr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north{ + dir = 8 + }, +/obj/machinery/power/emitter/energycannon{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"lkt" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/lambda_teleporter) +"lkz" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"lkE" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"lkV" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"llZ" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"lmJ" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"lnj" = ( +/obj/machinery/light/cold, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"lnD" = ( +/obj/structure/flora/biolumi/lamp/weaklight{ + pixel_x = -12; + pixel_y = 11 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"loc" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"loj" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"loR" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"loZ" = ( +/obj/structure/railing, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"lpg" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"lpp" = ( +/obj/machinery/computer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"lpw" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_hallway) +"lqU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"lti" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ltE" = ( +/obj/item/ammo_box/magazine/recharge/marksman, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"ltG" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"lup" = ( +/obj/machinery/destructive_scanner, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"lwG" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"lwZ" = ( +/obj/structure/bed/maint, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"lxb" = ( +/obj/structure/fence/door, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"lyv" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"lyA" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/deep_sci_medbay) +"lzn" = ( +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/black_mesa/equipment_room) +"lzQ" = ( +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"lAI" = ( +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"lBi" = ( +/obj/structure/chair/stool/bamboo, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"lBD" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"lDC" = ( +/obj/structure/closet/wardrobe, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"lDX" = ( +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"lEu" = ( +/obj/machinery/nuclearbomb/beer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"lFA" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"lGM" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"lGS" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"lHm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"lHB" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"lIO" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"lKi" = ( +/obj/structure/flippedtable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"lKo" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"lLJ" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"lMK" = ( +/turf/open/floor/engine, +/area/awaymission/black_mesa/black_ops_server) +"lNq" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"lNE" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/stimulants, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"lNP" = ( +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"lPn" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"lQc" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_hallway_two) +"lRV" = ( +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"lSH" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"lSV" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mob_spawn/human/scientist, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"lUd" = ( +/obj/structure/urinal/directional/south, +/obj/item/food/urinalcake, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"lUi" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"lVe" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"lVN" = ( +/obj/structure/chair/stool/bamboo{ + dir = 8 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"lVP" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"lWX" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"lXv" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"lZa" = ( +/obj/structure/fluff/bus/passable, +/obj/item/banhammer, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"lZj" = ( +/obj/structure/fluff/paper/stack{ + dir = 5; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"lZE" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"mah" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/entrance_internal_hall) +"mas" = ( +/obj/item/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"maZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"mbf" = ( +/obj/machinery/scanner_gate, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"mbQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"mcx" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"mcP" = ( +/obj/structure/table, +/obj/item/stack/sheet/cloth/ten, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"meb" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"meH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm, +/area/awaymission/black_mesa/deep_sci_turret) +"meT" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"mgw" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"mgO" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"mjd" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"mkD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/fence/door, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_internal) +"mkM" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"mla" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"mlA" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"mmE" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/antag_token_nook) +"mmG" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null + }, +/obj/item/storage/bag/chemistry, +/obj/item/storage/backpack/satchel/leather, +/obj/item/storage/backpack/satchel/leather, +/obj/item/storage/backpack/satchel/leather, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"mnf" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"mnn" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/cable, +/mob/living/simple_animal/hostile/blackmesa/xen/headcrab_zombie/hev, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"mnS" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"mnV" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/bluespace, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"mpY" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"mqs" = ( +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"mqB" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"mrj" = ( +/obj/structure/window/plasma/spawner/west, +/obj/structure/window/plasma/spawner/east, +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"msF" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"mtu" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"muz" = ( +/obj/structure/railing, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/lambda_hallway) +"muZ" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"mve" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"mvH" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/awaymission/black_mesa/deep_sci_storage) +"mvP" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"mwB" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"mxf" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_camp) +"mxn" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets/donkpocketpizza, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"mya" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"myU" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"mzJ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"mzY" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_surgery) +"mED" = ( +/obj/structure/lattice/catwalk, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_hallway) +"mFi" = ( +/obj/machinery/light/broken, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"mFO" = ( +/obj/structure/xen_crystal, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"mGG" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/lost_camp) +"mHO" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"mIg" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_servers) +"mID" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/equipment_room) +"mIW" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"mKn" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"mLg" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"mLH" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"mNg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/equipment_room) +"mNh" = ( +/obj/structure/shockplant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"mOq" = ( +/obj/structure/fence/door, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"mOs" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"mSc" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"mSM" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"mUb" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"mVF" = ( +/obj/structure/table, +/obj/item/flashlight/flashdark, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"mVI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "teleporter_catwalk" + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"mVV" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/table, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"mWj" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/acid_lake_building) +"mWI" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"mYF" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"mYL" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"mZP" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/black_mesa/equipment_room) +"naR" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"nbJ" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/a357, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"ncO" = ( +/turf/closed/indestructible/rock/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"ndA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"neA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"neN" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"ngh" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"ngp" = ( +/obj/machinery/light/warm{ + dir = 8 + }, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"nhS" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"njp" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"njF" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"nkj" = ( +/obj/structure/closet/crate/large, +/obj/item/food/canned/peaches, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"nlz" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"nlM" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_internal_hall) +"nmo" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"nmp" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"nmq" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"nms" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"nmD" = ( +/obj/structure/chair/office, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"nmG" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"nnm" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"nns" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"nnI" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"noE" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"nps" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/lambda_teleporter) +"npB" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"npW" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"nqs" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"nqy" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"nqG" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"nrw" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plating, +/area/awaymission/black_mesa/xen/acid_lake_building) +"nrD" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/lambda_hallway) +"nrL" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/indestructible/reinforced, +/area/awaymission/black_mesa/equipment_room) +"nrT" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"nsz" = ( +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"ntL" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/deployable_barricade/metal, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"nvj" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"nvD" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"nvX" = ( +/obj/structure/table, +/obj/item/storage/firstaid, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"nwT" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"nxq" = ( +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"nxx" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics_elevator) +"nxD" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"nxS" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"nyd" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"nyp" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"nyu" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_sec_point) +"nyU" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"nyX" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/equipment_room) +"nzT" = ( +/obj/machinery/power/rtg/advanced, +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"nAh" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/item/stack/ore/bluespace_crystal, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"nBg" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_emitter) +"nDv" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"nFP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"nGO" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"nHl" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"nHm" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/folder/blue{ + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"nHx" = ( +/obj/structure/blob/normal, +/obj/structure/blob/normal, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"nHG" = ( +/obj/structure/window/spawner/north, +/obj/structure/window/spawner/east, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"nHO" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"nII" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"nIZ" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"nJA" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"nKc" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/deep_sci_hall) +"nKy" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"nLp" = ( +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"nLr" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_room) +"nLu" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"nLL" = ( +/obj/effect/random_mob_placer/vortigaunt, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"nMQ" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 5 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"nMS" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"nNy" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"nNN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"nOf" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"nOB" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"nOK" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"nPg" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_room) +"nPp" = ( +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"nQD" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_medbay) +"nQJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"nQL" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"nRP" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"nSe" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodbottom" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"nSW" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"nTs" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"nTv" = ( +/obj/structure/deployable_barricade/metal, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"nTH" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"nVg" = ( +/obj/machinery/atmospherics/components/binary/crystallizer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"nWP" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"nXD" = ( +/obj/structure/mineral_door/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"nXT" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_tunnel) +"nZh" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"nZI" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"nZJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"oag" = ( +/obj/structure/deployable_barricade/plasteel, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"oaB" = ( +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"obI" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"ocV" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"oeo" = ( +/obj/effect/gibspawner/human, +/obj/item/screwdriver, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"oeJ" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/dorm_computers) +"oeY" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"ofE" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_bus) +"ofP" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"ogL" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"ohf" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"ohO" = ( +/obj/machinery/porta_turret/black_mesa, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"ojG" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"okq" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"okE" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_armory) +"okH" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"olm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_sec_point) +"olK" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_medbay) +"oos" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"opB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"oqg" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"oqM" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"orr" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"osI" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"osS" = ( +/obj/structure/chair/stool/bamboo{ + dir = 1 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"otA" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"otO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/power/emitter/energycannon{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"ovO" = ( +/obj/machinery/door/keycard/xen/freeman_boss_entry, +/obj/effect/freeman_blocker, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"ovX" = ( +/obj/item/grown/log/tree, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"owq" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"owF" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"oxx" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"oxJ" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"oxS" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"oyq" = ( +/obj/machinery/chem_mass_spec, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"oyX" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"oza" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_tunnel) +"ozz" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"oAi" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"oAJ" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"oBm" = ( +/obj/machinery/chem_master, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"oBA" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"oBI" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"oCb" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_atrium) +"oCV" = ( +/obj/item/disk/tech_disk, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"oDW" = ( +/obj/structure/closet/crate/bin, +/obj/item/pen, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"oEs" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/stimulants, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"oEG" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"oET" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"oFv" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"oGD" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"oHn" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"oHz" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"oIk" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/closet/crate/secure/weapon, +/obj/item/storage/toolbox/emergency/turret/mesa, +/obj/item/storage/toolbox/emergency/turret/mesa, +/obj/item/storage/toolbox/emergency/turret/mesa, +/obj/item/storage/toolbox/emergency/turret/mesa, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"oIw" = ( +/obj/item/armament_points_card/hecu, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"oKh" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/hecu_zone_atrium) +"oML" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"oNA" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/spacecash/c10000, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"oNV" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"oNZ" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"oPR" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"oQy" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/entrance_large_office) +"oQS" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"oQV" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"oRB" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"oRK" = ( +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"oRN" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"oRQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"oRV" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"oSj" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"oSm" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"oSQ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"oTo" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"oTs" = ( +/obj/structure/closet/crate/large, +/obj/item/keycard/blue, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"oTt" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"oTw" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"oVj" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"oXe" = ( +/obj/structure/fluff/bus/passable, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"oXi" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"oXs" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"oXS" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"oZW" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/equipment_room) +"pag" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"pbR" = ( +/obj/structure/spacevine/xen/thick, +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"pcK" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"pcX" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 6 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"pdC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"pdG" = ( +/obj/machinery/power/emitter/welded, +/turf/open/floor/engine, +/area/awaymission/black_mesa/deep_sci_turret) +"pdN" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"pdX" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics_elevator) +"pem" = ( +/obj/structure/lattice/catwalk, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"pgq" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"pgK" = ( +/obj/machinery/light/cold, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"phk" = ( +/obj/machinery/light/red, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/genetics_elevator) +"phR" = ( +/obj/machinery/medical_kiosk, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"phX" = ( +/obj/machinery/door/airlock/wood/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"piJ" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"pkR" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"pnb" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"pnc" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "hoodtop" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"pni" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"pnl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"poP" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"ppY" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"prp" = ( +/obj/structure/alien/resin/membrane, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"pru" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"pso" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"pst" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"psu" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"psO" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"pto" = ( +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"ptC" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"puz" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"puA" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"puQ" = ( +/obj/machinery/door/poddoor, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_bus) +"pvh" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/alien/weeds/xen, +/obj/effect/baseturf_helper/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"pvq" = ( +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"pvA" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"pvG" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"pvO" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"pwj" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"pxJ" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"pxO" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"pyH" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"pyK" = ( +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/welding, +/obj/item/lightreplacer, +/obj/structure/rack, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"pzc" = ( +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"pBa" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/telecrystal/twenty, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"pCG" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"pDm" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"pDo" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"pED" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"pFJ" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/equipment_room) +"pGS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"pJF" = ( +/obj/machinery/door/poddoor{ + id = "sectorcams" + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"pJW" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/medal/plasma/nobel_science, +/obj/item/clothing/glasses/science{ + pixel_y = -2 + }, +/obj/item/clothing/head/beret/science{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"pKO" = ( +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/village_hallway) +"pKR" = ( +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"pLk" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_hallway) +"pMg" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"pMi" = ( +/turf/open/floor/engine, +/area/awaymission/black_mesa/deep_sci_turret) +"pNl" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_servers) +"pNo" = ( +/obj/effect/mob_spawn/human/nanotrasensoldier, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"pNW" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"pOk" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"pOw" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_feesh) +"pSp" = ( +/obj/structure/table, +/obj/item/newspaper, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"pUe" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"pUu" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_servers) +"pUz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_servers) +"pUQ" = ( +/obj/structure/table, +/obj/item/grenade/gas_crystal/proto_nitrate_crystal, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"pUY" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"pVe" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/high_security_hallway) +"pWY" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"pXS" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"pYa" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_hallway) +"pYd" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"pYl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_computers) +"pYD" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"pZl" = ( +/obj/machinery/porta_turret/black_mesa/heavy, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"pZK" = ( +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"qae" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/structure/table, +/obj/item/radio{ + icon_state = "radio"; + name = "old radio"; + pixel_y = 26 + }, +/obj/item/grenade/frag{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/kitchen/knife/combat{ + pixel_x = 5 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"qaj" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"qaD" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"qbS" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"qdc" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"qdu" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"qdB" = ( +/obj/structure/table, +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/obj/item/shield/riot/tele, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/equipment_room) +"qfk" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"qfs" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"qgp" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"qhh" = ( +/obj/structure/rack, +/obj/item/stack/sheet/plasteel{ + amount = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"qhN" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/machinery/light/cold, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"qhV" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"qiB" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"qiS" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake) +"qiU" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_eng_storage) +"qkc" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"qlj" = ( +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"qmB" = ( +/obj/structure/bed, +/obj/item/bedsheet/patriot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"qnn" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"qnr" = ( +/obj/structure/table, +/obj/item/geiger_counter, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"qnK" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"qnL" = ( +/obj/machinery/light/broken, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"qoM" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"qpw" = ( +/obj/item/chair, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"qqt" = ( +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"qqV" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"qrc" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"qrk" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"qwa" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"qwm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"qwG" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"qxg" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 6 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"qym" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"qyN" = ( +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"qzB" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"qAH" = ( +/obj/machinery/door/airlock, +/obj/structure/alien/weeds/xen, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/black_mesa/equipment_room) +"qBx" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_camp) +"qBU" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"qCF" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"qDk" = ( +/obj/structure/stone_tile/surrounding/burnt, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"qEg" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"qEt" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"qFa" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"qFp" = ( +/obj/structure/closet/crate/large, +/obj/item/minespawner/explosive, +/obj/item/ammo_box/a357, +/obj/item/ammo_box/a357, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"qFH" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"qFQ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"qGl" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"qGz" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"qGC" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"qGR" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"qGY" = ( +/obj/machinery/porta_turret/black_mesa/heavy, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"qHk" = ( +/obj/machinery/computer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"qHC" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"qIv" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"qIB" = ( +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"qJa" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"qJx" = ( +/obj/structure/closet/wardrobe, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"qJF" = ( +/obj/structure/table, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"qKI" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_hallway_two) +"qLd" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + name = "solid thing" + }, +/obj/item/stack/sheet/mineral/plasma{ + name = "solid thing" + }, +/obj/item/storage/box/beakers/variety, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"qLg" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"qLk" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_tunnel) +"qLV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/dorm_computers) +"qMo" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"qMD" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"qMF" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"qNk" = ( +/obj/structure/sign/departments/chemistry{ + pixel_x = -31 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"qOK" = ( +/obj/structure/table, +/obj/item/stack/ore/bluespace_crystal, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"qOM" = ( +/obj/structure/table, +/obj/structure/xen_crystal{ + pixel_y = 15 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"qPf" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"qQv" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_storage) +"qQX" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"qRz" = ( +/obj/structure/table, +/obj/item/stack/telecrystal/five, +/obj/item/raw_anomaly_core/random, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"qTM" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"qTQ" = ( +/obj/structure/table, +/obj/structure/fluff/paper/stack{ + dir = 5; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"qVH" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"qVW" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 1 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"qWf" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"qWY" = ( +/obj/structure/fence/door, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"qXG" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"qXZ" = ( +/obj/structure/table/glass, +/obj/item/clothing/accessory/medal/plasma/nobel_science{ + pixel_x = 7 + }, +/obj/item/clothing/accessory/medal/plasma/nobel_science{ + pixel_x = -6 + }, +/obj/item/clothing/glasses/science{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/clothing/head/beret/science{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/clothing/head/beret/science{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"qYc" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"qYn" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"qYw" = ( +/obj/structure/table, +/obj/item/pen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"qYL" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"qZn" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"qZD" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"rad" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"raw" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"raX" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"rbu" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_labs) +"rbY" = ( +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"rcX" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"rdu" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/black_mesa/resonant_chamber) +"reY" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"rfj" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"rfm" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/reagent_containers/hypospray/medipen/stimulants, +/obj/item/storage/firstaid, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"rgd" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"rgH" = ( +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_tunnel) +"rhO" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_decon_room) +"riC" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"rkc" = ( +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"rkV" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/entrance_internal_hall) +"rlq" = ( +/obj/item/ammo_box/magazine/m50, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"rmA" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"rmK" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"rnE" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake) +"rnF" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"rnL" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/resonant_chamber) +"rnS" = ( +/obj/structure/rack, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"rox" = ( +/obj/effect/mob_spawn/human/black_mesa/hecu, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"roK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_decon_room) +"roR" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/nihilanth_computer) +"rpk" = ( +/obj/item/clothing/accessory/armband/science{ + name = "pink armband" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"rqQ" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"rrX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"rtf" = ( +/obj/machinery/power/emitter/energycannon{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"rts" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"rtx" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/deep_sci_hall) +"rtM" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/science, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"rtP" = ( +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"ruO" = ( +/obj/structure/table, +/obj/item/megaphone, +/obj/item/clothing/mask/whistle, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"rvK" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"rvZ" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"rwu" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"rwU" = ( +/obj/effect/sliding_puzzle/freeman, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"rxo" = ( +/obj/structure/deployable_barricade/plasteel, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"rxq" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_decon_room) +"rxO" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"rym" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"rys" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"ryu" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_armory) +"rzr" = ( +/obj/structure/flora/tree/dead, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"rzS" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"rCe" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"rCy" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hall) +"rCG" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"rCK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_emitter) +"rDg" = ( +/obj/structure/table, +/obj/item/grenade/gas_crystal/nitrous_oxide_crystal, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"rDq" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"rFA" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_hallway_two) +"rFF" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "lambdadown"; + id_target = "lambdaup" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"rGa" = ( +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"rGk" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"rGq" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"rHa" = ( +/obj/structure/stone_tile/surrounding/cracked, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"rHs" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"rHv" = ( +/obj/machinery/light/warm, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"rHx" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"rHB" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"rHE" = ( +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"rIg" = ( +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"rJj" = ( +/obj/item/ammo_box/a357, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/employee_dorm_room) +"rJt" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"rLJ" = ( +/obj/machinery/door/airlock/glass_large, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"rLR" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/closet/crate/engineering/electrical, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"rMt" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/xen/lost_camp) +"rMU" = ( +/obj/structure/closet/crate/large, +/obj/machinery/light/small/red/directional/east, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"rMW" = ( +/obj/structure/server{ + anchored = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"rOE" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"rOP" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"rPs" = ( +/obj/structure/spacevine, +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"rPD" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"rPP" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"rPZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"rRc" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"rRi" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/crystal_cell, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"rSl" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"rSo" = ( +/obj/item/clothing/mask/facehugger/toy, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"rSt" = ( +/obj/machinery/door_buttons/airlock_controller{ + name = "elevator button"; + pixel_y = 23 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"rTr" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"rTV" = ( +/obj/structure/deployable_barricade/plasteel{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"rUc" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/ten{ + amount = 30; + pixel_x = 3 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/iron/ten{ + amount = 30; + pixel_x = 3 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"rVS" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/dorm_computers) +"rVW" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"rWz" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_surgery) +"rXj" = ( +/obj/structure/water_source/puddle/healing, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"rXo" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"rXr" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"rYc" = ( +/obj/structure/urinal/directional/south, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"rYe" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"say" = ( +/obj/structure/lattice/catwalk, +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_internal_hall) +"saO" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"scr" = ( +/obj/structure/railing/corner, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"scT" = ( +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_servers) +"sdP" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 9 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"sdX" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"sev" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"seS" = ( +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"seU" = ( +/obj/machinery/sleeper/syndie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"sfA" = ( +/obj/item/pickaxe/diamond, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"sfK" = ( +/obj/structure/table, +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/item/storage/belt/security/full, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"sgM" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_atrium) +"shY" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"sja" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_hallway) +"sjb" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"sjp" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/high_security_hallway) +"sjv" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"sjF" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"skD" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"skO" = ( +/obj/structure/table, +/obj/item/grenade/antigravity, +/obj/item/grenade/antigravity, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"sma" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"smb" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"sms" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sng" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"snI" = ( +/obj/machinery/door/poddoor{ + id = "sectorcmain" + }, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_hall) +"soS" = ( +/obj/structure/table, +/obj/item/clothing/accessory/medal/silver/valor, +/obj/item/clothing/accessory/medal/bronze_heart, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sqN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"sqX" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"srf" = ( +/obj/machinery/scanner_gate, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"srm" = ( +/obj/machinery/porta_turret/black_mesa/heavy, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"srW" = ( +/obj/effect/spawner/structure/window/plasma, +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"ssi" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"sst" = ( +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"sut" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/scientist_hall) +"suz" = ( +/obj/structure/closet/crate/large, +/obj/item/construction/rcd/loaded, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"suB" = ( +/obj/machinery/power/floodlight, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"suE" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/mineral/titanium/blue, +/area/awaymission/black_mesa/equipment_room) +"suQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"svJ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_internal) +"swe" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"sya" = ( +/obj/structure/lattice/catwalk, +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake) +"syy" = ( +/obj/structure/bed/roller, +/obj/structure/curtain, +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"szt" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/item/kitchen/knife/combat, +/obj/structure/table, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"sCL" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 10 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"sEb" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/lambda_hallway) +"sEo" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sEI" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"sEU" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"sFA" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sFW" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"sGa" = ( +/obj/structure/flora/biolumi/mine/weaklight{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"sGy" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"sGO" = ( +/obj/structure/railing, +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/equipment_room) +"sGY" = ( +/obj/structure/alien/weeds/xen, +/obj/structure/table, +/obj/structure/microscope, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"sJk" = ( +/obj/structure/table, +/obj/machinery/light/cold, +/obj/machinery/microwave, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sJE" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"sJT" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"sKQ" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/crystallizer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"sLG" = ( +/obj/structure/closet/wardrobe, +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"sNu" = ( +/obj/structure/closet/crate/wooden, +/obj/item/food/meat/slab/human, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"sNz" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"sOs" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"sOH" = ( +/obj/machinery/light/small/red/directional/west, +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"sQo" = ( +/obj/structure/rack, +/obj/item/grenade/syndieminibomb/concussion, +/obj/item/grenade/syndieminibomb/concussion, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_armory) +"sST" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"sTX" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"sUe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/high_security_surgery) +"sUn" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"sUP" = ( +/obj/structure/closet/crate/large, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"sVp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"sVG" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_x = -6 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"sWl" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/science_tunnel) +"sXo" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"sXD" = ( +/obj/structure/closet/crate/wooden, +/obj/item/storage/firstaid/regular, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"sXR" = ( +/obj/machinery/gravity_generator/main, +/turf/open/floor/engine, +/area/awaymission/black_mesa/black_ops_server) +"sYe" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"sYI" = ( +/obj/structure/cable, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"sZq" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_feesh) +"sZG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"taR" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"taX" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"tbA" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"tbC" = ( +/obj/structure/table, +/obj/item/food/mre_course/dessert/chocolate, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"tbG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"tcp" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/lambda_hallway) +"tcJ" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"tcK" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"tdb" = ( +/obj/structure/table, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"tfA" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"tfX" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"tgn" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"tgH" = ( +/obj/structure/closet/crate/large, +/obj/item/food/canned, +/obj/item/food/canned, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"tgO" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/black_mesa/xen/lost_camp) +"thb" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/spacecash/c10000, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"tiO" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"tjL" = ( +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"tjX" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"tjZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"tkh" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"tlA" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/bed/maint, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"tlF" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"tmC" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"tng" = ( +/obj/structure/window/spawner, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"tow" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"tpG" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"tpK" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"trG" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"trZ" = ( +/obj/structure/table, +/obj/item/surgicaldrill/alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"tsr" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 10 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"ttP" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"tve" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_hallway_two) +"tvo" = ( +/obj/structure/window/plasma/spawner/east, +/obj/structure/window/plasma/spawner/west, +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"tvq" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"tvK" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -3 + }, +/obj/item/food/cakeslice/pound_cake_slice{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/machinery/light/cold, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"tvM" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"tww" = ( +/obj/structure/lattice/catwalk, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/science_labs) +"twB" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"twQ" = ( +/obj/structure/closet/crate, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"tzU" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_hallway_two) +"tBk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/genetics_elevator) +"tBP" = ( +/obj/structure/cable, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"tCX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"tEg" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"tER" = ( +/obj/effect/random_mob_placer/vortigaunt_hostile, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"tFO" = ( +/turf/open/water, +/area/awaymission/black_mesa/black_ops_button) +"tGy" = ( +/obj/structure/xen_crystal, +/turf/open/floor/engine, +/area/awaymission/black_mesa/resonant_chamber) +"tHD" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"tIk" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hall) +"tJr" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"tJD" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/stimpack/traitor, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"tKZ" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"tLG" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"tMk" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"tNP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"tOz" = ( +/obj/structure/table, +/obj/item/razor, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"tOP" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"tPa" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"tPr" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"tPs" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"tPy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/awaymission/black_mesa/lambda_teleporter) +"tPz" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"tQp" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_button) +"tQQ" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"tRm" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"tRF" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"tRW" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_bus) +"tSq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/deep_sci_turret) +"tTN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"tTS" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"tTW" = ( +/obj/structure/table, +/obj/item/geneshears, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"tUb" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"tUj" = ( +/obj/structure/table/wood, +/obj/item/food/breadslice/xenomeat, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"tUX" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"tVa" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_sec_point) +"tWd" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"tWk" = ( +/obj/structure/xen_pylon/freeman{ + pixel_y = 12 + }, +/turf/open/floor/plating/dirt/planet/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"tXq" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"tZe" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"uaK" = ( +/obj/machinery/light/cold, +/mob/living/simple_animal/hostile/blackmesa/blackops/ranged, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"ubi" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"ubP" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"ufF" = ( +/obj/structure/alien/weeds/xen, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"ufJ" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/lambda_teleporter) +"ugs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"uhA" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"uhR" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"uhW" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"ujk" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"ukc" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "amsdown"; + id_target = "amsup" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/scientist_hall) +"ukW" = ( +/obj/structure/table, +/obj/item/keycard/office, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"ulz" = ( +/obj/structure/table, +/obj/machinery/light/cold, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"umB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"uot" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"uoz" = ( +/turf/open/floor/plating/beach/coastline_b/xen{ + dir = 5 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"uoV" = ( +/obj/machinery/light/warm, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"upg" = ( +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; + dir = 4; + name = "Broken Computer" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"uph" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/entrance_internal_hall) +"upu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"upS" = ( +/obj/structure/shockplant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"uqp" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/deployable_barricade/plasteel{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"uqs" = ( +/obj/structure/table, +/obj/item/food/mre_course/dessert/cake, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"urj" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"usS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/genetics) +"utK" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"uuC" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"uuE" = ( +/obj/structure/table, +/obj/item/grenade/gas_crystal/healium_crystal, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"uuN" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"uwk" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"uwo" = ( +/obj/structure/table, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"uwM" = ( +/obj/machinery/door/keycard/office, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"uwR" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"uxn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/machinery/button/door{ + id = "biolabs"; + name = "Biolabs Lockdown Release" + }, +/obj/item/crowbar/freeman, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"uzy" = ( +/obj/structure/fluff/bus/passable/seat/driver, +/turf/open/floor/plasteel/dark{ + icon_state = "bus" + }, +/area/awaymission/black_mesa/black_ops_bus) +"uAQ" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"uBx" = ( +/obj/structure/table, +/obj/item/retractor/alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"uBZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"uCU" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"uEe" = ( +/obj/structure/light_prism, +/turf/open/water, +/area/awaymission/black_mesa/black_ops_button) +"uFD" = ( +/obj/structure/headpike/bamboo, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"uFT" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_entrance) +"uGf" = ( +/obj/machinery/power/emitter/energycannon{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"uHk" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"uJi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north{ + dir = 8 + }, +/obj/structure/reflector/box/anchored{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"uJr" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/syndie/surgery, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"uKr" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"uKX" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_atrium) +"uMO" = ( +/obj/structure/table, +/obj/structure/microscope, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"uMT" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"uNb" = ( +/turf/closed/mineral/black_mesa, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"uOe" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"uOn" = ( +/obj/structure/xen_pylon, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"uOu" = ( +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/genetics_elevator) +"uOC" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"uQH" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"uQI" = ( +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"uQK" = ( +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/black_mesa/entrance_internal_hall) +"uRb" = ( +/obj/structure/flora/biolumi/mine/weaklight{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/black_ops_science_room) +"uSO" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/mob/living/simple_animal/hostile/blackmesa/blackops/ranged, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"uSZ" = ( +/obj/machinery/computer{ + desc = "A console meant for calling and sending a transit ferry. It seems iced-over and non-functional."; + dir = 4; + icon_screen = null; + name = "Shuttle Transist Console" + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"uTp" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"uTE" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"uVs" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"uVv" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"uVx" = ( +/obj/structure/closet/wardrobe, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/obj/item/lighter, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"uWg" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"uWN" = ( +/obj/structure/alien/weeds/xen, +/mob/living/simple_animal/hostile/blackmesa/xen/headcrab_zombie/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"uWO" = ( +/obj/item/chair, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"uXU" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating, +/area/awaymission/black_mesa/hecu_zone_tunnel) +"uYl" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "lambdaup"; + id_target = "lambdadown" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_entrance) +"uYC" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"uZQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"vaN" = ( +/turf/open/floor/engine, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"vbi" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"vbw" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"vcs" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/cryo_hallway) +"vdJ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/broken{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"veB" = ( +/obj/effect/mob_spawn/human/black_mesa/guard, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"vfl" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"vhg" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"vhn" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 9 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"vhq" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_hallway) +"vhr" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"vhN" = ( +/obj/structure/closet/firecloset{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"vhW" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "sectorcams"; + name = "gates button"; + pixel_x = -7; + pixel_y = -24 + }, +/obj/machinery/button/door/directional/south{ + id = "gatesiguess"; + name = "Gates Door Lock"; + normaldoorcontrol = 1; + pixel_x = 7; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "chemiguess"; + name = "Science Lockdown"; + normaldoorcontrol = 1; + pixel_y = -37; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"vju" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"vjI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"vlf" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"vlF" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/genetics_sec) +"vmm" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village_nihilanth) +"vmK" = ( +/obj/structure/table, +/obj/item/weaponcrafting/gunkit/xray, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"vmZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_camp) +"vnu" = ( +/obj/structure/table, +/obj/structure/microscope, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"vnW" = ( +/obj/structure/chair/stool/bamboo{ + dir = 1 + }, +/turf/open/floor/bamboo, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"vpb" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vph" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/spacecash/c10000, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"vpP" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/tram_tunnel) +"vpS" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_bus) +"vqZ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_bus) +"vsF" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"vtr" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"vtK" = ( +/obj/structure/noticeboard{ + pixel_y = -5 + }, +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/hecu_zone_camp) +"vtU" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"vtX" = ( +/obj/effect/gibspawner/human, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"vva" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"vvC" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/resonant_chamber) +"vwx" = ( +/obj/structure/window/plasma/spawner/west, +/obj/structure/window/plasma/spawner/east, +/obj/machinery/suit_storage_unit/hev, +/turf/open/floor/plating, +/area/awaymission/black_mesa/equipment_room) +"vwV" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/awaymission/black_mesa/black_ops_button) +"vxE" = ( +/obj/structure/urinal/directional/south, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel/freezer, +/area/awaymission/black_mesa/hecu_zone_bathroom) +"vxO" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vxP" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/closet, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vAi" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/obj/structure/sign/departments/science/alt{ + pixel_x = -31 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"vAB" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table, +/obj/item/storage/box/hecu_rations, +/obj/item/storage/box/hecu_rations, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vAS" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"vAT" = ( +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"vBz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"vCy" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"vDa" = ( +/obj/effect/mob_spawn/human/engineer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"vDj" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"vEa" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"vEe" = ( +/obj/machinery/light/broken, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"vGc" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/structure/flora/biolumi/lamp/weaklight, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"vGe" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"vGR" = ( +/obj/machinery/door/poddoor{ + id = "teleporter" + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hall) +"vIo" = ( +/obj/structure/chair/office, +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"vIs" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_emitter) +"vIy" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"vJI" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_hall) +"vJV" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"vJX" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"vKn" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"vLa" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/entrance_internal_hall) +"vLg" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"vLs" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"vLv" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_sec) +"vMV" = ( +/obj/structure/chair, +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"vNM" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"vNU" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/scientist_hall) +"vPz" = ( +/obj/machinery/light/cold, +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vPK" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_button) +"vQo" = ( +/obj/machinery/light/broken, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/equipment_room) +"vQD" = ( +/obj/machinery/door/keycard/blue_required, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"vRe" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"vSs" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_entrance) +"vTc" = ( +/obj/machinery/light/red{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/awaymission/black_mesa/genetics_elevator) +"vTf" = ( +/obj/structure/rack, +/obj/item/storage/backpack/duffelbag/engineering{ + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"vTT" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"vUI" = ( +/obj/structure/flora/biolumi/lamp/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"vVt" = ( +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"vWu" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/black_mesa/employee_dorm_room) +"vXf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"vXB" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"vXC" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"vZa" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"vZq" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/dorm_computers) +"vZr" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"vZt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/power/emitter/energycannon{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"vZC" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"vZE" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_server) +"wbr" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/mp5_outpost) +"wbL" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wdS" = ( +/turf/open/floor/plating/beach/coastline_t/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"wea" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wft" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"wfT" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"wfY" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"wjB" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"wke" = ( +/turf/open/floor/circuit/red, +/area/awaymission/black_mesa/black_ops_turret_blockade) +"wkE" = ( +/obj/structure/table, +/obj/structure/window/plasma/spawner/east, +/obj/structure/window/plasma/spawner/west, +/obj/item/clothing/gloves/tackler/combat/insulated, +/obj/structure/window/plasma/spawner, +/obj/item/clothing/shoes/combat/swat, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"wkG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/genetics_sec) +"wmp" = ( +/obj/item/chair, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"wmF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake) +"wmH" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"wnt" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"wqa" = ( +/turf/open/floor/plating/asteroid, +/area/awaymission/black_mesa/hecu_zone_camp) +"wqi" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/box/hecu_rations{ + pixel_x = 7 + }, +/obj/item/storage/box/hecu_rations{ + pixel_x = -6 + }, +/obj/item/storage/box/hecu_rations{ + pixel_x = -6 + }, +/obj/item/storage/box/hecu_rations{ + pixel_x = 7 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"wqW" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wrl" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/dorm_tunnel) +"wsl" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"wth" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"wtk" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/recharge/marksman, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_sec_point) +"wuz" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets/donkpocketspicy, +/obj/machinery/dish_drive, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"wuY" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"wvv" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"wvx" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/indestructible/reinforced, +/area/awaymission/black_mesa/employee_dorm_room) +"wwU" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"wxv" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_armory) +"wyq" = ( +/obj/item/clothing/accessory/armband/medblue, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"wyy" = ( +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"wyH" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_servers) +"wAD" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"wAJ" = ( +/obj/structure/deployable_barricade/metal{ + dir = 1 + }, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"wCZ" = ( +/obj/machinery/power/smes, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"wEc" = ( +/obj/structure/table, +/obj/structure/fluff/paper/stack{ + dir = 5; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"wER" = ( +/obj/structure/chair/stool, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/equipment_room) +"wGe" = ( +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"wGz" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_emitter) +"wGY" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_hall) +"wGZ" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/light/cold/directional/east, +/obj/item/modular_computer/laptop, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"wHI" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"wHR" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"wIC" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"wJo" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"wJJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"wJU" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"wKd" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"wKi" = ( +/obj/structure/table, +/obj/item/food/grown/banana, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"wKF" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_internal) +"wKK" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"wLy" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/water/jungle, +/area/awaymission/black_mesa/resonant_chamber) +"wLZ" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_sec) +"wMx" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"wMZ" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/genetics_elevator) +"wNR" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/lambda_hallway) +"wOo" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"wOq" = ( +/obj/machinery/autolathe/hacked, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"wOP" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/employee_dorm_room) +"wPp" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/crystallizer, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wRp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table, +/obj/item/weaponcrafting/gunkit/tesla, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wRu" = ( +/obj/item/storage/cans/sixbeer, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"wRN" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/black_mesa/high_security_hallway) +"wRQ" = ( +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"wSo" = ( +/obj/structure/pod, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/freeman_puzzle) +"wTd" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"wTp" = ( +/obj/structure/railing, +/obj/machinery/destructive_scanner, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_decon_room) +"wUr" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/alien/weeds/xen, +/mob/living/simple_animal/hostile/blackmesa/xen/headcrab_zombie/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"wUw" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"wUX" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_hallway_two) +"wVR" = ( +/obj/structure/rack, +/obj/machinery/light/warm, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"wWc" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"wWN" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_external_hall) +"wXI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"wYo" = ( +/mob/living/simple_animal/hostile/blackmesa/xen/bullsquid, +/turf/open/water/xen_acid, +/area/awaymission/black_mesa/xen/acid_lake) +"xaa" = ( +/obj/structure/shockplant, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"xao" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"xbj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"xbr" = ( +/obj/structure/rack, +/obj/item/reagent_containers/hypospray/medipen/stimulants, +/obj/machinery/light/cold{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"xbw" = ( +/obj/effect/bump_teleporter/black_mesa{ + id = "teleporterup"; + id_target = "teleporterdown" + }, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/lambda_hallway) +"xbD" = ( +/obj/structure/xen_crystal{ + pixel_y = 15 + }, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"xbZ" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/mineral/titanium, +/area/awaymission/black_mesa/black_ops_hallway_two) +"xcz" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/high_security_surgery) +"xcI" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/deep_sci_storage) +"xdn" = ( +/obj/machinery/porta_turret/black_mesa, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_towards_facility) +"xei" = ( +/obj/structure/closet/secure_closet/medical1{ + req_access = null + }, +/obj/item/defibrillator/compact/loaded, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid, +/obj/item/bodybag, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"xez" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/biolumi/mine/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"xeE" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"xeQ" = ( +/obj/structure/fence, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/deep_sci_feesh) +"xgs" = ( +/obj/effect/random_mob_placer/blackops, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"xgz" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/awaymission/black_mesa/xen/acid_lake_building) +"xgC" = ( +/obj/structure/table, +/obj/structure/microscope, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"xhr" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/xen/acid_lake_building) +"xhC" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"xhU" = ( +/obj/structure/closet/crate/bin, +/obj/structure/alien/weeds/xen, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"xhX" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/firstaid/emergency, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"xiq" = ( +/obj/machinery/porta_turret/black_mesa/heavy, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"xiu" = ( +/obj/structure/flora/biolumi/flower/weaklight, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"xjg" = ( +/obj/structure/closet/crate/large, +/obj/item/rcd_ammo, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_feesh) +"xjM" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"xkv" = ( +/obj/effect/baseturf_helper/black_mesa, +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_hallway_two) +"xkB" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics) +"xmo" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_server) +"xmt" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"xmK" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"xmL" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"xnh" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plating, +/area/awaymission/black_mesa/dorm_tunnel) +"xnW" = ( +/obj/structure/bed/roller, +/obj/structure/curtain, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"xov" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"xoY" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"xpa" = ( +/obj/machinery/light/warm{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/black_mesa/employee_dorm_room) +"xpk" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/awaymission/black_mesa/resonant_chamber) +"xqs" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/acid_lake) +"xrz" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/entrance_internal_hall) +"xrB" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_test_chambers) +"xrM" = ( +/obj/structure/alien/weeds/xen, +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"xsB" = ( +/obj/structure/cable, +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/lost_camp) +"xuC" = ( +/obj/effect/gibspawner/human, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"xwV" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"xwW" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/vortigaunt_village) +"xxk" = ( +/obj/machinery/computer{ + dir = 4 + }, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/science_labs) +"xxG" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/black_ops_button) +"xzA" = ( +/obj/machinery/door/airlock/science/glass, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/high_security_hallway) +"xAE" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"xBu" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/awaymission/black_mesa/entrance_internal_hall) +"xCw" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"xEe" = ( +/obj/machinery/door/poddoor{ + id = "teleporter" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_hall) +"xEL" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/xen/acid_lake_building) +"xEN" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"xEP" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/resonant_chamber) +"xHe" = ( +/obj/machinery/light/cold, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_hallway_two) +"xHl" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/village_hallway) +"xId" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"xIi" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"xIo" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"xJD" = ( +/obj/effect/random_mob_placer/xen, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_internal_hall) +"xKM" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen{ + dir = 8 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"xLv" = ( +/turf/open/chasm{ + planetary_atmos = 1 + }, +/area/awaymission/black_mesa/high_security_servers) +"xNT" = ( +/obj/structure/alien/weeds/xen, +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/genetics_elevator) +"xOE" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_servers) +"xOU" = ( +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_medbay) +"xPl" = ( +/turf/closed/indestructible/rock, +/area/awaymission/black_mesa/deep_sci_medbay) +"xPH" = ( +/obj/machinery/suit_storage_unit/hev, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_armory) +"xPM" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_hall) +"xQH" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"xQJ" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner/xen, +/area/awaymission/black_mesa/xen/lost_camp_hallway) +"xRg" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/entering_zone) +"xRt" = ( +/obj/effect/spawner/lootdrop/bioluminescent_plant/weak, +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 4 + }, +/area/awaymission/black_mesa/xen/acid_lake_hallway) +"xRw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/xen/entering_zone) +"xSm" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"xTs" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"xUH" = ( +/obj/structure/fluff/bus/dense{ + icon_state = "reartire" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"xVJ" = ( +/obj/machinery/power/emitter/ctf{ + dir = 1 + }, +/turf/open/floor/engine, +/area/awaymission/black_mesa/high_security_emitter) +"xVU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/high_security_surgery) +"xXs" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"xXG" = ( +/turf/open/floor/plating/beach/coastline_t/xen{ + dir = 5 + }, +/area/awaymission/black_mesa/xen/entering_zone) +"xXL" = ( +/obj/machinery/door/airlock/science/glass, +/turf/open/floor/plasteel, +/area/awaymission/black_mesa/black_ops_hallway_two) +"xYc" = ( +/obj/effect/random_mob_placer/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"xYn" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"xYp" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/black_mesa/xen/acid_lake) +"xZk" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/ironsand/black_mesa, +/area/awaymission/black_mesa/hecu_zone_camp) +"xZM" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_button) +"xZR" = ( +/obj/structure/fluff/bus/passable{ + icon_state = "bottomdoor"; + layer = 3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"yae" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ycb" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_labs) +"ycW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/black_mesa/black_ops_science_room) +"ydd" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"ydy" = ( +/obj/machinery/light/cold{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/black_ops_bus) +"ydM" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/high_security_surgery) +"yeu" = ( +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/genetics_elevator) +"yeQ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/black_mesa/hecu_zone_camp) +"ygM" = ( +/obj/effect/baseturf_helper/black_mesa_xen, +/turf/open/floor/plating/xen, +/area/awaymission/black_mesa/xen/lost_camp) +"ygN" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/science_decon_room) +"ygT" = ( +/obj/structure/server{ + anchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"yhc" = ( +/obj/machinery/ore_silo, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_eng_storage) +"yhs" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_turret) +"yhH" = ( +/obj/structure/table, +/obj/machinery/light/cold{ + dir = 1 + }, +/obj/structure/microscope, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/entrance_large_office) +"yhM" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/obj/structure/alien/weeds/xen, +/turf/open/floor/plating, +/area/awaymission/black_mesa/resonant_chamber) +"yib" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/employee_dorm_room) +"yix" = ( +/obj/machinery/light/cold{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/black_mesa/hecu_zone_camp) +"yiM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner/north{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/black_mesa/scientist_hall) +"yiT" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/awaymission/black_mesa/black_ops_downstairs_atrium) +"yjH" = ( +/obj/item/assembly/shock_kit, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_storage) +"yky" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/hecu_zone_atrium) +"ykY" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ylv" = ( +/obj/machinery/door/airlock/science, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/deep_sci_chem) +"ylC" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/black_mesa/black_ops_science_room) +"ymi" = ( +/obj/structure/spacevine/xen/thick, +/turf/open/water/beach/xen, +/area/awaymission/black_mesa/xen/acid_lake_hallway) + +(1,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(2,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(3,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +ach +xbD +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(4,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +ach +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +"} +(5,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +ach +cbD +ach +mNh +cbD +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +tiO +tiO +oqg +boM +tiO +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aPy +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(6,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +tiO +tiO +tiO +tiO +tiO +tiO +tiO +tiO +tiO +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +ymi +ymi +ymi +ymi +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aPy +aPy +aPy +aPy +aPy +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +akM +aoE +aoE +aoE +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(7,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pcX +ymi +vAT +vAT +vAT +hBz +vAT +vAT +vAT +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +ymi +ymi +ymi +ymi +ymi +ymi +ymi +ymi +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +ach +ach +ach +ach +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aFu +aPy +aaA +afw +aaA +aPy +aPy +aPy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aUI +aUI +aUI +aUI +aoE +aoE +aoE +aoE +aUI +aUI +aUI +aUI +aUI +aUI +aUI +aUI +aUI +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(8,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +kHS +ymi +ymi +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +hbB +ymi +ymi +ymi +ymi +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +vAT +nMQ +kvq +erJ +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aDx +aDx +aaA +aaA +aaA +aaA +aaA +aaA +aPy +aPy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aGf +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(9,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ymi +ymi +ymi +vAT +vAT +vAT +aoE +aoE +aoE +aoE +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +ymi +ymi +ymi +ymi +ymi +ymi +ymi +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +bmS +ach +ach +ach +ach +ach +ach +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aaA +aaA +aaA +aaA +aaA +azV +aaA +aaA +aPy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aRW +aYT +aYT +aYT +aYT +aYT +aRW +aYT +aYT +aYT +aRW +aYT +aYT +aGf +aRR +asl +asl +asl +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(10,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pcX +ymi +dyc +ymi +ymi +aoE +aoE +aoE +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +dfy +dfy +wvv +dfy +dfy +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +nMQ +kvq +ach +ach +ach +ach +ach +gpN +aKm +aKm +aKm +ach +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aPy +aPy +aPy +aPy +aPy +aaA +afw +aPy +aPy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYs +asl +aYX +asl +asl +asl +asl +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +"} +(11,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ymi +ymi +ymi +ymi +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +vAT +vAT +vAT +vAT +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +bmS +ach +ach +erJ +ach +ach +gpN +ach +ach +ach +ach +ach +ach +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aPy +aoE +aoE +aoE +aPy +aPy +aaA +aaA +aPy +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aYT +aGf +asl +asl +asl +akM +asl +asl +asl +asl +asl +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(12,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +vAT +vAT +vAT +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +bmS +ach +ach +ach +ach +ach +gpN +ach +ach +ach +ach +ach +erJ +ach +ach +aoE +aoE +aoE +arz +arz +arz +arz +arz +aoE +asl +aVU +aVU +aVU +aoE +aoE +arz +aoE +aoE +aPy +aPy +aaA +aPy +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aYT +aoE +aoE +aoE +aoE +aoE +aoE +afM +afM +afM +afM +afM +afM +afM +aoE +aoE +aoE +aRR +asl +asl +asl +asl +asl +asl +asl +asl +asl +asl +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(13,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +vAT +vAT +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +llZ +kcn +ach +ach +ach +ach +aoE +aoE +aoE +aoE +aoE +ach +ach +ach +ach +ach +ach +aKm +aoE +arz +arz +arz +arz +arz +aoE +asl +aVU +aVU +aoE +aoE +arz +arz +arz +aoE +aoE +aPy +aaA +aPy +aPy +aoE +arz +arz +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aoE +aoE +arz +arz +arz +arz +aoE +aoE +awY +asl +asl +asl +avR +aoE +aoE +arz +aoE +aoE +aoE +aoE +aoE +asl +asl +asl +asl +asl +asl +asl +bnB +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(14,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +vAT +hbB +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +vAT +vAT +vAT +vAT +bmS +erJ +ach +ach +ach +aoE +aoE +arz +arz +arz +aoE +aoE +aoE +aoE +aKm +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +aPy +aaA +aaA +aPy +aoE +aoE +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +akM +asl +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aMb +aMb +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +arz +"} +(15,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +bbc +aoE +aoE +aoE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +vAT +bmS +ach +ach +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +ijT +ach +iOl +aoE +aoE +arz +arz +arz +aoE +asl +aYX +asl +aoE +arz +arz +arz +arz +arz +aoE +aoE +aaA +aaA +aaA +aaA +aoE +arz +arz +aoE +aoE +aJx +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +aZZ +aZZ +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(16,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +tLG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dzY +vAT +vAT +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +ach +ach +ach +aoE +arz +arz +arz +aoE +agb +asl +asl +aoE +arz +arz +arz +arz +arz +arz +aoE +aPy +afw +aaA +aaA +aoE +arz +arz +aoE +aIP +aJx +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +aZZ +aZZ +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +aQZ +arz +arz +"} +(17,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +wwU +wwU +mGG +mGG +mGG +mGG +mGG +mGG +mGG +mGG +mGG +ceE +mGG +mGG +mGG +mGG +mGG +mGG +ceE +ceE +ceE +nvD +ceE +ceE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +nmo +vAT +ymi +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +ach +ach +aoE +arz +arz +arz +aoE +asl +aYX +asl +aoE +arz +arz +arz +arz +arz +arz +aoE +aPy +aPy +azV +aaA +aoE +arz +arz +aoE +akM +aJx +aYT +aYT +aYT +aYT +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +aZZ +aZZ +aZZ +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +aQZ +arz +arz +"} +(18,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +mGG +gZV +uVv +rGk +rGk +gZV +otA +gZV +mGG +ceE +mGG +gZV +gZV +gZV +gZV +mGG +mGG +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +oaB +ymi +dyc +vAT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +ach +aoE +arz +arz +arz +aoE +asl +asl +aVU +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aPy +aaA +aaA +aoE +aoE +arz +aoE +aoE +aJx +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +abA +abA +aJW +aZZ +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +aQZ +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +aQZ +arz +arz +"} +(19,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +ksv +gZV +tbC +dFF +uqs +gZV +gZV +ubi +mGG +ceE +mGG +gZV +gZV +gZV +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ymi +ymi +ymi +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +erJ +ach +aoE +aoE +arz +arz +aoE +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aPy +aaA +asl +asl +aoE +arz +arz +aoE +aJx +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +ahF +aZZ +aZZ +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +aQZ +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +aQZ +arz +arz +"} +(20,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +qoM +wwU +wwU +dTJ +dTJ +dTJ +jCM +mGG +gZV +nNy +nNy +bqB +gZV +gZV +gZV +mGG +mGG +mGG +uKr +gZV +gZV +gZV +irD +mGG +ceE +ceE +ceE +ceE +ceE +ceE +bbc +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ymi +ymi +ymi +ymi +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +xbD +aoE +aoE +aoE +aoE +arz +arz +arz +aoE +ach +ach +ach +aoE +arz +arz +aoE +aVU +aVU +aVU +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aVU +asl +agb +aoE +arz +arz +aoE +aJx +aYT +aYT +aYT +aRW +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +aZZ +aZZ +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +aQZ +aQZ +arz +aQZ +aQZ +arz +arz +arz +"} +(21,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +dTJ +dTJ +dTJ +dTJ +dTJ +dTJ +bGH +gZV +gZV +gZV +gZV +gZV +gZV +gZV +gZV +gZV +gHY +gZV +gZV +hcB +gZV +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ymi +ymi +ymi +ymi +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ptC +ach +ach +ach +ach +ach +aoE +arz +arz +arz +aoE +ach +ach +ach +aoE +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +asl +asl +aoE +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +aZZ +abA +ahF +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(22,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +wwU +dTJ +dTJ +dTJ +dTJ +dTJ +dTJ +dTJ +dTJ +jCM +mGG +gZV +gZV +gZV +gZV +gZV +gZV +gZV +mGG +mGG +mGG +gZV +gZV +bJE +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +rMt +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ymi +ymi +vAT +vAT +aoE +aoE +aoE +arz +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +ach +lNq +ach +ach +aoE +arz +arz +arz +aoE +ach +ach +ach +aoE +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +asl +aoE +arz +arz +arz +aoE +aoE +aYT +aYT +aYT +aYT +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(23,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +dTJ +dTJ +dTJ +wwU +wwU +dTJ +dTJ +wwU +wwU +wwU +ksv +gZV +gZV +gZV +gZV +gZV +gZV +gZV +mGG +ceE +mGG +gZV +gZV +neN +neN +neN +aSm +byK +byK +byK +byK +byK +byK +jRP +ygM +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +hbB +vAT +vAT +aoE +aoE +aoE +tiO +xRt +tiO +tiO +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ptC +eXb +ach +iJu +ach +aoE +arz +arz +arz +aoE +ach +ach +ach +aoE +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +aoE +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(24,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +dTJ +dTJ +dTJ +wwU +wwU +wwU +dTJ +dTJ +mqs +sYI +sYI +aSm +eYQ +tpK +wGZ +neN +tBP +neN +jVn +aSm +byK +aSm +neN +dCG +kht +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +eXb +cxv +eXb +ach +aoE +aoE +arz +arz +arz +aoE +ach +ach +aKm +aoE +arz +arz +aoE +aoE +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +aVU +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +aZZ +abA +abA +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(25,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +wwU +wwU +wwU +wwU +dTJ +dTJ +wwU +wwU +wwU +wwU +dTJ +dTJ +wwU +wwU +wwU +mGG +mGG +mGG +aSm +gZV +mGG +mGG +mGG +mGG +ceE +mGG +gZV +gdX +kht +gZV +gZV +ksv +mGG +mGG +mGG +rmA +rmA +mkM +ceE +ceE +gpk +wyy +vZr +rJt +rJt +wyy +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +hbB +vAT +vAT +vAT +aoE +aoE +aoE +aoE +aoE +aoE +aoE +tiO +tiO +xRt +tiO +tiO +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +eXb +ach +ach +aoE +arz +arz +arz +aoE +aoE +ach +ach +aKm +aoE +arz +arz +arz +aoE +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +aVU +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +aVx +abA +abA +abA +abA +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(26,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +wwU +wwU +wwU +wwU +dTJ +dTJ +wwU +wwU +wwU +wwU +dTJ +dTJ +dTJ +wwU +wwU +wwU +wwU +wwU +aSm +gZV +mGG +ceE +ceE +ceE +ceE +mGG +uKr +gdX +mwB +gZV +gZV +gZV +gHY +gZV +gZV +hlW +hlW +hlW +ceE +ceE +gpk +wyy +wyy +wyy +wyy +wyy +rJt +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +vAT +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +ymi +ymi +ymi +ymi +vAT +vAT +hbB +vAT +vAT +vAT +vAT +vAT +vAT +vAT +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +aKm +aKm +aoE +arz +arz +aoE +aoE +ach +ach +ach +aKm +aoE +arz +arz +arz +aoE +aVU +aVU +aVU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +"} +(27,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +hNG +wwU +wwU +pDm +sNz +fBH +sNz +sNz +mpY +wwU +wwU +dTJ +dTJ +wwU +wwU +wwU +wwU +xRg +aSm +gZV +mGG +ceE +ceE +ceE +ceE +mGG +uKr +gdX +kht +gZV +gZV +gZV +iAn +gZV +gZV +hlW +hlW +hlW +ceE +ceE +gpk +wyy +wyy +wyy +wyy +wyy +wyy +wyy +rJt +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +ymi +ymi +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +vAT +rzS +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +aKm +aoE +arz +aoE +aoE +ach +ach +ach +ach +aKm +aoE +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +asl +aYX +asl +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aYT +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +aVu +abA +abA +abA +aZZ +aZZ +ahF +abA +abA +aVu +abA +abA +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +arz +"} +(28,1,1) = {" +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +pDm +qxg +mjd +xbj +tKZ +sCL +xXG +mpY +wwU +dTJ +dTJ +dTJ +wwU +wwU +mGG +mGG +aSm +gZV +mGG +mGG +mGG +mGG +ceE +mGG +gZV +gdX +mwB +gZV +gZV +ksv +mGG +mGG +mGG +hAa +pcK +oyX +ceE +ceE +gpk +vZr +rJt +wyy +wyy +wyy +rPD +wyy +rJt +rPD +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dfy +dzX +lkz +dfy +aoE +aoE +aoE +aoE +vAT +vAT +vAT +vAT +hbB +vAT +vAT +ymi +ymi +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +hbB +vAT +vAT +llZ +kcn +coX +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aKm +aoE +aoE +aoE +ach +ach +ach +ach +ach +aKm +aoE +arz +arz +arz +aoE +aVU +aWz +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +aoE +aYT +aYT +aYT +aGf +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +aQZ +arz +aQZ +arz +arz +"} +(29,1,1) = {" +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +wwU +wwU +wwU +wwU +fnr +mjd +pto +xbj +pto +pto +sCL +xXG +mpY +wwU +dTJ +dTJ +wwU +wwU +mGG +jnZ +xsB +gZV +gZV +izv +qaj +mGG +ceE +mGG +gZV +gdX +kht +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +aoE +aoE +aoE +rJt +wyy +wyy +wyy +rJt +rJt +pbR +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +aoE +aoE +vAT +vAT +vAT +vAT +vAT +vAT +vAT +ymi +ymi +ymi +ymi +ymi +vAT +vAT +vAT +vAT +vAT +vAT +vAT +bmS +ach +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aKm +aKm +aKm +aKm +aKm +uWg +ach +ach +ach +ach +ach +ach +ach +aoE +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +agb +asl +aoE +arz +arz +arz +aoE +aoE +afM +afM +aRR +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +vmm +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +"} +(30,1,1) = {" +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +wwU +wwU +wwU +wwU +fnr +fhT +pto +xbj +pto +pto +pto +sCL +xXG +sNz +dTJ +dTJ +wwU +wwU +ksv +gZV +neN +xmK +gZV +gZV +qaj +mGG +ceE +mGG +gZV +gZV +neN +gZV +gZV +mGG +ceE +ceE +ceE +ceE +byK +byK +jRP +ceE +aoE +arz +arz +aoE +aoE +imi +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +lkz +dzX +dfy +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +vAT +vAT +bmS +ach +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +erJ +ach +ach +aoE +aoE +arz +arz +arz +aoE +aoE +aVU +aVU +aVU +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aVU +asl +asl +aoE +arz +arz +arz +arz +aoE +asl +asl +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +abA +abA +abA +acX +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +aVx +aZZ +aZZ +abA +abA +abA +abA +abA +acX +acX +acX +acX +acX +acX +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +arz +arz +arz +arz +arz +arz +"} +(31,1,1) = {" +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +qoM +wwU +wwU +fnr +fhT +pto +fBH +pto +pto +pto +pto +tKZ +sCL +ocV +dTJ +dTJ +jCM +mGG +jnZ +neN +gZV +xmK +gZV +qaj +mGG +mGG +mGG +gZV +gZV +bJE +neN +neN +aSm +byK +byK +byK +byK +byK +ceE +rMt +aoE +aoE +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +vAT +bmS +ach +erJ +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aKm +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +asl +aoE +aoE +arz +arz +arz +aoE +aVU +asl +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +acX +ajm +azY +awP +awP +acX +abA +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +acX +aPd +azY +azY +azY +acX +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(32,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +pDm +qxg +fhT +pto +xbj +pto +pto +pto +pto +pto +dRN +ocV +dTJ +dTJ +bGH +gZV +gZV +kvc +dGM +dGM +lHB +gZV +gZV +gHY +gZV +gZV +gZV +hcB +gZV +gZV +mGG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +aoE +rJt +rJt +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +cQF +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +aoE +aVU +agb +asl +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +acX +aHH +azY +azY +azY +acX +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +abA +aZZ +aZZ +avQ +azY +azY +aiy +aua +acX +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +"} +(33,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +pDm +qxg +mjd +pto +pto +xbj +pto +pto +pto +pto +pto +dRN +ocV +wwU +dTJ +jCM +mGG +gZV +tgO +sEU +uHk +dGM +qaj +mGG +mGG +mGG +uKr +gZV +lHB +gZV +irD +mGG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rzS +ach +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aKm +ach +ach +ach +ach +ach +ach +erJ +ach +ach +ach +ach +ach +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aVU +aVU +aVU +aYX +aoE +aoE +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +aoE +aVU +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +acX +aVO +azY +aiy +azY +acX +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +abA +acX +arq +azY +azY +aua +acX +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +arz +"} +(34,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +fnr +mjd +pto +pto +pto +xbj +pto +pto +gaL +pto +pto +dRN +ocV +wwU +wwU +wwU +ksv +dGM +loc +xrM +ceE +sEU +qaj +mGG +ceE +mGG +gZV +gZV +gZV +gZV +mGG +mGG +ceE +ceE +ceE +ceE +ceE +aoE +aoE +aoE +arz +arz +arz +arz +arz +aoE +wyy +vZr +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aKm +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +ach +aKm +aKm +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aVU +aVU +aVU +aVU +aVU +aoE +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +abA +abA +abA +abA +abA +abA +abA +abA +acX +aVO +azY +azY +azY +avQ +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +aZZ +abA +abA +abA +abA +acX +aPN +azY +azY +aua +acX +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +aQZ +arz +aQZ +arz +arz +"} +(35,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +fnr +fhT +pto +pto +pto +fBH +pto +pto +pto +pto +pto +dRN +ocV +wwU +mqs +sYI +aSm +neN +loc +fYW +ceE +sEU +qaj +mGG +ceE +mGG +gZV +gZV +gZV +mGG +mGG +ceE +ceE +ceE +ceE +ceE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aKm +aKm +ach +ach +ijT +ach +ach +ach +ach +aKm +aKm +aKm +aKm +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +asl +aVU +aoE +aoE +arz +arz +arz +arz +aoE +aVU +asl +asl +aoE +arz +arz +arz +aoE +asl +asl +aoE +aoE +arz +arz +arz +arz +aoE +aoE +abA +abA +avI +abA +abA +aVu +abA +abA +acX +aVO +azY +aiy +azY +acX +abA +abA +abA +abA +ahF +abA +aZZ +aZZ +abA +abA +abA +abA +abA +acX +acX +avQ +acX +acX +acX +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +"} +(36,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +adW +wwU +fnr +fhT +pto +pto +iYC +xRw +euy +pto +pto +pto +pto +dRN +xXG +mpY +wwU +wwU +mGG +mGG +mGG +mGG +mGG +mGG +mGG +mGG +ceE +mGG +mGG +mGG +mGG +mGG +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ach +wjB +rIg +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +ach +ach +ach +ach +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +asl +asl +asl +aIP +aoE +arz +arz +arz +arz +aoE +aVU +asl +asl +aoE +aoE +arz +aoE +aoE +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +abA +abA +avI +aiA +avI +abA +abA +abA +abA +acX +azY +azY +avq +azn +acX +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +abA +abA +abA +acX +arq +azY +azY +azY +acX +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +arz +arz +arz +arz +arz +arz +"} +(37,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +fnr +fhT +pto +pto +dly +gSH +iRJ +pto +pto +pto +pto +pto +sCL +ocV +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +tLG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +qiS +qiS +rIg +rIg +rIg +rIg +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +asl +asl +asl +aoE +arz +arz +arz +arz +aoE +aVU +asl +asl +aFu +aoE +aoE +aoE +aVU +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +abA +abA +abA +avI +abA +abA +abA +abA +abA +acX +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +abA +aZZ +abA +abA +aVx +abA +abA +abA +acX +aPN +azY +aFt +awP +acX +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(38,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +fnr +fhT +pto +pto +ndA +jrz +dBl +pto +pto +pto +pto +pto +dRN +ocV +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +tLG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +nvD +ceE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +ach +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +asl +aoE +arz +arz +arz +arz +aoE +aoE +asl +agb +asl +asl +asl +asl +asl +asl +asl +aoE +arz +arz +arz +arz +aoE +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +abA +abA +abA +acX +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +"} +(39,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +fnr +fhT +pto +pto +pto +pto +pto +pto +pto +pto +pto +pto +dRN +ocV +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +tLG +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +ceE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +arz +arz +aoE +aoE +aoE +tTS +tTS +tTS +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +aoE +aoE +aoE +aoE +aoE +aoE +aoE +rIg +aoE +aoE +rIg +rIg +rIg +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +erJ +ach +ach +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aIP +asl +asl +aoE +aoE +arz +arz +arz +arz +aoE +aHm +asl +asl +asl +aYX +asl +agb +aVU +aoE +aoE +arz +arz +arz +arz +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aVx +abA +abA +abA +abA +aVu +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +arz +arz +arz +arz +arz +"} +(40,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +fnr +fhT +pto +pto +pto +pto +pto +pto +pto +pto +pto +pto +dRN +ocV +wwU +nnI +wwU +wwU +wwU +wwU +wwU +wwU +wwU +aoE +aoE +aoE +aoE +aoE +ceE +ceE +ceE +ceE +ceE +bbc +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +arz +aoE +aoE +tTS +tTS +tTS +tTS +tTS +wbr +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ach +ach +ach +ach +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +asl +asl +asl +aoE +arz +arz +arz +arz +aoE +ayI +asl +asl +asl +asl +asl +asl +aoE +aoE +arz +arz +arz +arz +arz +aoE +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +aVu +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +arz +aQZ +arz +aQZ +arz +arz +"} +(41,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +fnr +uoz +pto +pto +pto +pto +pto +pto +pto +pto +pto +pto +hZg +ocV +wwU +fnG +wwU +pDm +sNz +sNz +mpY +wwU +wwU +aoE +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +aoE +aoE +tTS +tTS +tTS +tTS +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +gAR +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +gpN +gpN +gpN +gpN +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +asl +asl +asl +aoE +arz +arz +arz +arz +arz +aoE +aoE +aVU +aVU +aVU +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +abA +abA +abA +abA +abA +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aVx +aZZ +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +aVx +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +aQZ +arz +arz +arz +arz +arz +"} +(42,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +hQK +tsr +uoz +iZb +iZb +iZb +iZb +pto +pto +pto +pto +hZg +vhn +xKM +wwU +wwU +pDm +qxg +dDw +sCL +ocV +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +rPD +wyy +wyy +wyy +aoE +arz +arz +aoE +tTS +tTS +tTS +tTS +cjr +uwo +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +tOP +okq +okq +tOP +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +akd +aSX +akd +aoE +aoE +aoE +arz +arz +arz +arz +aoE +aoE +aVU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +abA +abA +abA +abA +acX +aVO +aiy +azY +acX +abA +abA +abA +abA +ahF +aZZ +atD +aZZ +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +aQZ +arz +arz +arz +arz +arz +arz +"} +(43,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +hQK +puz +puz +puz +puz +tsr +uoz +pto +pto +hZg +vhn +xKM +wwU +wwU +wwU +fnr +mjd +pto +hZg +ocV +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +aoE +tTS +tTS +duw +sOH +rwu +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +wYo +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +qiS +qiS +wYo +rIg +rIg +rIg +iqQ +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ppY +ppY +tOP +tOP +okq +tOP +tOP +tOP +tOP +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +aoE +arz +arz +arz +aoE +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +abA +acX +acX +acX +acX +aVO +azY +azY +acX +abA +abA +abA +abA +aZZ +aZZ +aZZ +aZZ +aZZ +abA +abA +aDa +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(44,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +qoM +hQK +tsr +uoz +hZg +vhn +xKM +wwU +wwU +wwU +wwU +fnr +uoz +hZg +vhn +xKM +wwU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +vZr +wyy +wyy +rJt +aoE +arz +arz +aoE +tTS +tTS +kKi +rwu +tTS +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rzr +rIg +rIg +rIg +eaL +dIi +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +okq +okq +tOP +oRV +tOP +tOP +tOP +ppY +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +dTv +aoE +aoE +arz +arz +aoE +aVU +aVU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +abA +acX +abQ +azY +acX +aVO +azY +azY +avQ +aZZ +aZZ +aZZ +aZZ +amz +aZZ +acg +aZZ +amz +aZZ +aZZ +aZZ +aZZ +aZZ +abA +abA +abA +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aQZ +arz +arz +"} +(45,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +hQK +puz +puz +xKM +wwU +wwU +hNG +wwU +wwU +hQK +puz +puz +xKM +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +aoE +tTS +tTS +uwo +tTS +tTS +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +ppY +tOP +tOP +tOP +okq +okq +tOP +tOP +tOP +tOP +tOP +tOP +ppY +ppY +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +arz +aoE +aVU +aJl +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +abA +abA +acX +aqa +aiy +avQ +azY +azY +azY +acX +abA +abA +abA +abA +aZZ +aZZ +aZZ +aZZ +aZZ +abA +abA +ahF +aZZ +aZZ +ahF +abA +abA +acX +aPd +azY +azY +acX +abA +abA +abA +abA +aVu +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(46,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +aoE +tTS +tTS +tTS +tTS +tTS +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +ppY +ppY +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +ppY +tOP +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +atW +atW +atW +aBq +aBq +aBq +aBq +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +aoE +aoE +aVU +aoE +aoE +arz +aoE +aoE +aoE +arz +arz +aoE +aoE +ajY +abA +acX +abQ +azY +acX +azY +aiy +azY +acX +abA +abA +abA +abA +aZZ +aZZ +atD +aZZ +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +acX +azY +aiy +azY +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(47,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +qoM +wwU +wwU +wwU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +aoE +arz +arz +aoE +tTS +tTS +tTS +tTS +tTS +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +aoE +ppY +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +jzg +jzg +jzg +jzg +jzg +jzg +jzg +tOP +cxQ +aoE +aoE +arz +arz +arz +aoE +aoE +atW +atW +atW +atW +aBq +aNG +aNG +aNG +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +aoE +aVU +aVU +aoE +aoE +aoE +aIP +aoE +aoE +arz +aoE +aBC +aIv +abA +acX +acX +acX +acX +azY +azY +azY +acX +abA +abA +abA +abA +abA +aZZ +aZZ +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +aZZ +aZZ +avQ +azY +azY +aua +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(48,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +uhA +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +arz +aoE +aoE +tTS +okH +tTS +mUb +tTS +cFU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +wYo +rIg +rIg +aoE +aoE +arz +arz +arz +arz +arz +aoE +ppY +ppY +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +jzg +okq +okq +hqT +okq +okq +jzg +tOP +ppY +ppY +aoE +arz +arz +aoE +aoE +atW +atW +atW +atW +atW +aBq +aOM +aPL +aOM +aBq +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +atW +atW +aoE +aoE +arz +aoE +aVU +aVU +aoE +asl +akX +asl +akM +aoE +arz +aoE +aBC +aIv +abA +abA +abA +abA +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +abA +aZZ +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +acX +azY +azY +aZj +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(49,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rJt +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +aoE +okH +rXj +okH +tTS +tTS +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +iqQ +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +qiS +qiS +qiS +qiS +hKg +qiS +qiS +hKg +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +jzg +okq +qEg +okq +okq +qEg +jzg +tOP +tOP +tOP +aoE +aoE +aoE +aoE +atW +atW +atW +atW +atW +atW +aBq +aOM +aOM +aOM +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +aoE +aoE +aJl +aVU +aYw +asl +aWl +aKC +aoE +arz +aoE +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +abA +abA +abA +aVx +abA +aZZ +aZZ +aZZ +abA +abA +acX +azY +aiy +aua +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(50,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +tRF +tRF +tRF +tRF +tRF +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +aoE +kZh +okH +tTS +tTS +gHF +tTS +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +qiS +qiS +qiS +ahk +ahk +ahk +ahk +ahk +ahk +qfs +qfs +mWj +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +jzg +tWk +okq +okq +okq +okq +jzg +tOP +tOP +tOP +tOP +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +aBq +aBq +aFD +aBq +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +aoE +arz +arz +aoE +aVU +asl +akM +asl +asl +aoE +aoE +arz +aoE +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aZZ +abA +abA +abA +abA +abA +aZZ +aZZ +aZZ +abA +abA +acX +azY +azY +azY +acX +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(51,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +tRF +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +wyy +wyy +wyy +wyy +wyy +wyy +rJt +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +nXD +nXD +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +ahk +ahk +ahk +ahk +ahk +vIy +vIy +ahk +qqt +vIy +vIy +vIy +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +ujk +tOP +tOP +tOP +okq +tOP +tOP +jzg +jzg +jzg +okq +jzg +jzg +jzg +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +ard +aZB +ard +atW +aoE +aoE +arz +aoE +aoE +aWl +asl +aoK +axj +aoE +arz +aoE +aoE +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +acX +acX +acX +acX +acX +avQ +acX +acX +acX +abA +abA +abA +aZZ +aZZ +abA +abA +acX +acX +acX +acX +acX +abA +abA +abA +abA +abA +aVu +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(52,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +tRF +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +rPD +wyy +wyy +vZr +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +ahk +fYD +vIy +nLL +vIy +vIy +mcx +ahk +qqt +vIy +vIy +mcx +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +ard +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +alr +arr +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +aoE +arz +arz +aoE +asl +akM +asl +aKC +aoE +arz +aoE +aBC +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +acX +azY +azY +azY +acX +azY +azY +azY +acX +abA +abA +aZZ +aZZ +abA +ahF +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(53,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +tRF +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +xQJ +lGM +qVW +cIf +wyy +wyy +wyy +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +rIg +rIg +sya +qiS +ahk +vsF +lBD +nMS +gvI +vIy +vIy +ahk +qqt +vIy +vIy +gCt +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +ard +atf +ard +atW +ard +atW +atW +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +aoE +akX +axj +aWl +aoE +aoE +arz +aoE +aBC +aBC +aIv +abA +abA +abA +abA +aVu +abA +abA +abA +abA +abA +acX +awP +aiy +azY +acX +azY +aiy +aua +acX +abA +abA +aZZ +aZZ +aZZ +abA +aVx +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(54,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +tRF +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +xQJ +bgC +dhs +fPX +qVW +wyy +wyy +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +rIg +rIg +wmF +qiS +ahk +vsF +qTQ +xEL +gvI +vIy +vIy +ahk +vIy +vIy +vIy +gCt +ahk +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +arz +aoE +tOP +oRV +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +oRV +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +oRV +tOP +tOP +aoE +atW +atW +ard +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +arz +aoE +aoE +aIP +aoE +aoE +arz +aoE +aoE +aBC +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +acX +azY +azY +azY +avQ +azY +azY +aua +acX +abA +abA +aZZ +aZZ +aZZ +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(55,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +tRF +tRF +tRF +tRF +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wdS +dhs +xaa +dhs +hDu +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +uOn +hti +hti +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +eaL +xqs +eaL +eaL +rIg +qiS +qiS +ahk +vsF +gGU +qTQ +gvI +vIy +vIy +ahk +vIy +vIy +ahk +ahk +ahk +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +aoE +aoE +aoE +arz +arz +aoE +aBC +aBC +aBC +aIv +abA +abA +abA +abA +abA +abA +abA +abA +abA +abA +acX +azY +acT +aua +acX +azY +aua +aua +acX +amI +amI +aMc +aMc +aMc +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(56,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +eAu +kdx +dhs +sGy +tJr +wyy +rPD +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +hti +hti +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +rIg +rIg +qiS +ahk +fYD +vIy +vIy +vIy +vIy +mcx +ahk +vIy +mcx +ahk +phR +bHE +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +ujk +tOP +okq +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +axf +amI +amI +amI +amI +amI +amI +amI +amI +amI +amI +acX +acX +acX +acX +acX +acX +acX +acX +acX +aBC +aBC +aBC +aBC +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +roR +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(57,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +hNG +aUy +wwU +adM +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +eAu +jST +tJr +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +ahk +ahk +vIy +vIy +vIy +vIy +vIy +vIy +vIy +vIy +ahk +nmp +qpw +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(58,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wwU +wwU +wwU +wwU +wwU +wwU +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +wyy +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +ahk +lZj +vIy +vIy +vIy +vIy +ckA +vIy +vIy +ahk +uWO +nmp +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +rys +rys +rys +rys +rys +rys +rys +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(59,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +wwU +wwU +qoM +wwU +wwU +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +cIf +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +ahk +lBD +wmp +lZj +cyy +ahk +ahk +vIy +vIy +ahk +nmp +nmp +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +rys +rys +rys +rys +rys +rys +rys +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +arr +apO +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(60,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wwU +wwU +aCy +wwU +wwU +wwU +wwU +aCy +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +rPD +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +xwW +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +nrw +eTC +vIy +vIy +ahk +dcv +nmp +nmp +qOM +rRc +nmp +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +rys +rys +tOP +tOP +tOP +rys +rys +vZa +rys +oBI +oBI +rys +rHa +rys +rys +rys +jzg +atW +atW +atW +atW +atW +arr +atW +atW +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +atW +atW +arr +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +abK +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(61,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZt +wwU +wwU +fnG +wwU +wwU +wwU +aUy +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rzr +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +iro +eTC +lZj +vIy +ahk +nmp +nmp +nmp +nmp +nmp +nmp +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +aoE +ppY +tOP +ujk +tOP +tOP +tOP +rys +rys +tOP +rwU +tOP +rys +rys +rys +qDk +rys +rys +rys +rys +rHa +rys +rys +ovO +atW +atW +atW +atW +arr +alr +arr +arr +arr +arr +arr +arr +apO +arr +axm +arr +apO +arr +arr +arr +arr +arr +arr +alr +arr +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(62,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +hNG +wwU +wwU +wwU +wwU +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +nrw +vIy +vIy +ahk +dIL +nmp +nmp +nmp +nmp +xhr +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +rys +rys +tOP +tOP +tOP +rys +rys +rys +vZa +rys +qDk +oBI +oBI +rys +rys +rys +jzg +atW +atW +atW +atW +atW +arr +atW +atW +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +arr +atW +atW +arr +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +abK +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aBC +aBC +aBC +aBC +abK +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(63,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +wwU +wwU +wwU +wwU +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +hti +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +ahk +xgz +lZj +vIy +cyy +ahk +eyI +cch +saO +cch +bHE +pUY +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +rys +rys +rys +rys +rys +rys +rys +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +arr +apO +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(64,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +ahk +ahk +ahk +qfs +qfs +ahk +ahk +ahk +ahk +ahk +ahk +ahk +ahk +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +rys +rys +rys +rys +rys +rys +rys +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +ard +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(65,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +qiS +rnE +qiS +qiS +rnE +qiS +qiS +qiS +qiS +qiS +qiS +qiS +qiS +rIg +rIg +rIg +rIg +rzr +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +atW +atW +arr +arr +arr +arr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aPj +aqq +aIG +aIG +aIG +aIG +aIG +aIG +aqq +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aBC +aGW +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aJP +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(66,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +wyy +wyy +wyy +aoE +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +hpx +bgt +rIg +rIg +rIg +rIg +byl +byl +rIg +rIg +rIg +rIg +rIg +rIg +qiS +qiS +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +tOP +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +ujk +tOP +tOP +tOP +tOP +tOP +oRV +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +ard +atf +ard +atW +atW +atW +atW +atW +arr +arr +arr +atW +atW +atW +ard +atW +atW +atW +ard +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aJP +aqq +aIG +aIG +aIG +aIG +aIG +aIG +aqq +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aGW +aBC +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aIG +aJP +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(67,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +vZr +wyy +wyy +aoE +arz +arz +arz +arz +aoE +aoE +rHx +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +dNA +dNA +jWj +bgt +byl +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +dGx +xYp +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +ppY +oRV +tOP +tOP +tOP +tOP +tOP +okq +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +atW +atW +atW +atW +atW +atW +ard +atW +atW +ard +atW +atW +atW +arr +arr +arr +atW +atW +atW +atW +atW +atW +ard +atf +ard +atW +atW +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(68,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +wyy +wyy +wyy +aoE +aoE +arz +arz +arz +arz +aoE +rHx +rHx +rHx +rHx +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +mYL +dNA +dNA +rlq +bgt +rIg +byl +byl +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +dGx +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +okq +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +abK +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(69,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +gpk +gpk +gpk +aoE +aoE +arz +arz +arz +aoE +aoE +rHx +rHx +rHx +rHx +rHx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +mYL +mYL +wuY +aoE +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +qiS +dGx +qiS +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +wYo +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +jzg +jzg +jzg +jzg +okq +jzg +jzg +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +aoE +atW +atW +atW +aBq +aBq +aBq +aBq +aBq +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(70,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +rGa +rGa +rGa +qFH +aoE +aoE +arz +aoE +aoE +rHx +rHx +rHx +rHx +rHx +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +dNA +mYL +mYL +aoE +aoE +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +dGx +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +jzg +okq +okq +okq +okq +qEg +jzg +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +aoE +aoE +atW +atW +atW +aBq +aNG +aOM +aOM +aBq +atW +atW +atW +atW +atW +arr +alr +arr +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(71,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +pMg +rGa +rGa +rGa +pMg +pMg +aoE +aoE +aoE +rHx +kop +rHx +rHx +rHx +rHx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +mYL +mYL +dNA +aoE +aoE +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +dGx +dGx +dGx +dGx +rIg +rIg +rIg +wYo +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +aoE +arz +arz +arz +arz +aoE +tOP +tOP +tOP +tOP +jzg +tjL +okq +okq +okq +okq +jzg +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +arz +aoE +atW +atW +atW +aBq +aNG +aPL +aOM +aFD +atW +atW +atW +atW +atW +atW +arr +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +atW +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(72,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +pMg +pMg +pMg +pMg +rGa +rGa +rGa +pMg +pMg +pMg +pMg +rHx +rHx +rHx +rHx +rHx +rHx +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +wuY +aoE +aoE +aoE +aoE +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +irU +rIg +dGx +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +aoE +aoE +ppY +tOP +tOP +jzg +okq +okq +hqT +okq +tjL +jzg +tOP +tOP +tOP +oRV +tOP +tOP +tOP +tOP +aoE +aoE +arz +aoE +atW +atW +atW +aBq +aNG +aOM +aOM +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aRI +aui +aui +aui +aSj +aSj +aSj +aui +aui +aui +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(73,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +rGa +rGa +rGa +pMg +pMg +pMg +pMg +rHx +rHx +rHx +rHx +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +mYL +mYL +aoE +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +wYo +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +dGx +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +arz +arz +arz +aoE +ppY +ppY +tOP +jzg +qEg +qEg +okq +okq +tWk +jzg +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +aoE +arz +arz +aoE +aoE +atW +atW +aBq +aBq +aBq +aBq +aBq +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aqb +aBC +abK +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aqq +aqq +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aDx +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(74,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +pMg +pMg +pMg +eAA +pMg +pMg +pMg +pMg +pMg +rGa +xwW +pMg +pMg +pMg +pMg +pMg +pMg +rHx +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +mYL +mYL +dNA +aoE +aoE +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +dGx +dGx +dGx +rIg +rIg +rIg +rIg +eaL +eaL +eaL +xqs +eaL +rIg +rIg +rIg +rIg +rIg +rIg +aoE +arz +arz +arz +aoE +aoE +aoE +aoE +gTF +ppY +dzN +jzg +jzg +jzg +jzg +jzg +jzg +jzg +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +arz +arz +arz +arz +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aFY +arS +ajj +aSj +aSj +aSj +aSj +aSj +ajj +arS +aff +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(75,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +mYL +mYL +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +dGx +rIg +rIg +rIg +xqs +eaL +eaL +xqs +kqp +xqs +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +aoE +aoE +tOP +ppY +ppY +ppY +ppY +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +arz +arz +arz +arz +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +acn +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(76,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +rGa +pMg +pMg +pMg +pMg +eAA +pMg +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +mYL +mYL +mYL +dNA +aoE +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +dGx +dGx +rIg +rIg +eaL +eaL +eaL +eaL +xqs +eaL +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +aoE +tOP +tOP +tOP +ppY +ppY +gTF +ppY +tOP +tOP +tOP +tOP +ujk +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +tOP +aoE +arz +arz +arz +arz +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +ard +atf +ard +atW +atW +atW +atW +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aqq +aqq +aRI +aSt +aSt +aSt +aSj +aSj +aBC +aSt +aSt +aSt +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(77,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +jdh +jdh +jdh +jdh +jdh +pMg +sXo +rGa +rGa +rGa +rGa +pMg +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +mYL +mYL +mYL +pKO +aoE +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +fnP +irU +rIg +rIg +rIg +rIg +rIg +dGx +rIg +rIg +rIg +eaL +eaL +eaL +eaL +rIg +rIg +rIg +eaL +eaL +eaL +aoE +arz +arz +aoE +aoE +tOP +tOP +nPp +tOP +ppY +aoE +aoE +aoE +aoE +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aFu +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +ard +atW +atW +atW +atW +ard +atW +atW +atW +atW +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(78,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +jdh +abJ +aCi +vnW +jdh +pMg +rGa +rGa +lVN +rGa +rGa +rGa +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +mYL +mYL +mYL +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +dGx +dGx +dGx +dGx +eaL +eaL +eaL +eaL +eaL +eaL +eaL +eaL +aoE +aoE +aoE +arz +arz +aoE +tOP +nPp +khU +wSo +tOP +tOP +aoE +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +atW +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(79,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +jdh +lwZ +kDp +oRK +jdh +pMg +rGa +rGa +rGa +rGa +rGa +rGa +rGa +pMg +pMg +pMg +pMg +pMg +cdK +pMg +pMg +pMg +xwW +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +wuY +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +eaL +eaL +eaL +kWX +eaL +rIg +rIg +rIg +rIg +rIg +byl +rIg +fnP +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +aoE +smb +tOP +oRV +tOP +tOP +tOP +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(80,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +eAA +pMg +pMg +jdh +sNu +oRK +oRK +jdh +pMg +osS +rGa +hOw +rGa +lBi +rGa +pMg +pMg +pMg +pMg +xwW +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +mYL +mYL +dNA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +eaL +xqs +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +arz +arz +aoE +tOP +tOP +nPp +khU +tOP +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aGW +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(81,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +jdh +jdh +hgj +jdh +jdh +pMg +rGa +rGa +rGa +rGa +rGa +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +mYL +mYL +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +kWX +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +arz +arz +arz +aoE +aoE +tOP +smb +tOP +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aTT +aSj +aSj +aSj +aTT +aBC +abK +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(82,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +uFD +pMg +rGa +bpy +uFD +pMg +rGa +rGa +bDW +rGa +rGa +sev +rGa +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +mYL +mYL +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +rIg +rIg +rIg +rIg +rIg +eaL +rIg +rIg +rIg +rIg +rzr +rIg +rIg +byl +rIg +rIg +rIg +rIg +rIg +rIg +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +xqs +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +abK +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(83,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +pMg +pMg +rGa +pMg +pMg +pMg +pMg +rGa +rGa +rGa +rGa +pMg +pMg +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +mYL +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +fnP +rIg +rIg +rIg +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aGW +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(84,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +xwW +pMg +pMg +pMg +pMg +rGa +rGa +rGa +rGa +rGa +rGa +rGa +rGa +pMg +sXo +pMg +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +eaL +kWX +xqs +eaL +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(85,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +pMg +pMg +rGa +duc +pMg +pMg +pMg +duc +rGa +pMg +pMg +pMg +pMg +rGa +rGa +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aQz +aQz +aQz +aQz +aQz +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +acn +aqb +aBC +aBC +aTT +aqq +aqq +aTT +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aTT +aqq +aqq +aTT +aBC +aBC +aqb +aBC +abK +aBC +aBC +acn +aBC +aBC +aBC +ade +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(86,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +eAA +pMg +sXo +rGa +pMg +pMg +pMg +uFD +pMg +rGa +pMg +uFD +pMg +pMg +pMg +mvP +pMg +pMg +pMg +pMg +eAA +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +jIz +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +eaL +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aQz +wOP +wOP +wOP +wOP +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aRI +aui +aui +aui +aSj +aSj +aSj +aui +aui +aui +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(87,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +cdK +pMg +pMg +rGa +pMg +pMg +jdh +jdh +jdh +hgj +jdh +jdh +pMg +pMg +pMg +rGa +rGa +pMg +pMg +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +wYo +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aQz +wOP +vWu +vWu +wOP +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(88,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +pMg +rGa +pMg +pMg +jdh +oRK +oRK +oRK +oRK +jdh +pMg +pMg +pMg +pMg +rGa +rGa +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +jIz +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aQz +vWu +rJj +idt +wOP +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +abK +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aFY +arS +ajj +aSj +aSj +aSj +aSj +aSj +ajj +arS +aff +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(89,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +bpy +duc +rGa +pMg +ovX +jdh +sXD +oRK +kDp +oRK +jdh +pMg +pMg +pMg +pMg +pMg +rGa +rGa +pMg +rGa +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +dNA +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +byl +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +arz +arz +aNo +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +oeJ +aQz +vWu +vWu +vWu +vWu +aQz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aBC +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(90,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +rGa +rGa +rGa +pMg +ovX +jdh +jdh +lwZ +oRK +oRK +jdh +pMg +pMg +pMg +pMg +xwW +pMg +rGa +rGa +rGa +nXD +dNA +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +nns +nns +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +dNA +dNA +vfl +bgt +rIg +byl +byl +byl +irU +rIg +fnP +rIg +rIg +irU +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +aoE +arz +arz +arz +arz +arz +aNo +rVS +qGz +qGz +rmK +qGz +mlA +qGz +qGz +qGz +qGz +qGz +qGz +qGz +aQz +aQz +aYY +jEM +aQz +aQz +aQz +aQz +aQz +aQz +aQz +euc +euc +euc +euc +euc +wvx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aRI +aSt +aSt +aSt +aSj +aSj +aSj +aSt +aSt +aSt +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(91,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +sXo +pMg +pMg +rGa +pMg +pMg +pMg +pMg +pMg +jdh +jdh +jej +tUj +jdh +pMg +pMg +pMg +pMg +pMg +pMg +pMg +rGa +rGa +nXD +dNA +dNA +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +dNA +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +dNA +dNA +xHl +dNA +vfl +bgt +rIg +rIg +fnP +rIg +rIg +rIg +rIg +rIg +byl +byl +byl +rIg +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +aoE +aoE +arz +arz +arz +arz +arz +aNo +rVS +qGz +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +naR +qGz +aQz +doO +raX +raX +raX +jjC +raX +iqc +raX +raX +raX +euc +jQp +ePt +tEg +uoV +euc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aqb +aBC +aBC +aTT +aqq +aqq +aTT +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(92,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +pMg +pMg +rGa +rGa +rGa +pMg +pMg +aoE +aoE +pMg +pMg +jdh +jdh +jdh +jdh +pMg +pMg +eAA +pMg +pMg +pMg +pMg +pMg +rGa +nXD +dNA +dNA +dNA +dNA +aoE +aoE +arz +arz +arz +arz +aoE +aoE +aoE +aoE +dNA +dNA +dNA +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +dNA +dNA +dNA +dNA +dNA +dNA +vfl +bgt +rIg +rIg +rIg +rIg +fnP +byl +byl +rIg +rIg +rIg +eaL +kWX +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +xqs +eaL +aoE +arz +arz +arz +arz +arz +arz +aNo +rVS +rcX +fKJ +cAQ +cAQ +fKJ +cAQ +cAQ +fKJ +cAQ +cAQ +fKJ +oTt +aQz +bUJ +raX +raX +raX +sjb +qfk +raX +raX +raX +raX +vQD +pKR +pKR +wRu +pKR +euc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +aoE +ade +ade +aBC +aBC +aBC +abK +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(93,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +jdh +jdh +hOT +jdh +jdh +pMg +pMg +aoE +aoE +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +aoE +dNA +dNA +xHl +dNA +dNA +aoE +aoE +arz +arz +aoE +aoE +dNA +dNA +dNA +dNA +dNA +dNA +aoE +arz +arz +arz +arz +aoE +aoE +aoE +pKO +pKO +dNA +dNA +dNA +dNA +dNA +dNA +dNA +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +xqs +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +aNo +rVS +vZq +fKJ +khl +qLV +fKJ +khl +qLV +fKJ +khl +qLV +fKJ +vZq +aQz +yib +raX +raX +raX +tcJ +raX +raX +raX +raX +raX +euc +pKR +hjj +pKR +pKR +euc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +adq +aXC +aBa +aoE +aoE +aoE +ade +ade +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aBC +aSj +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(94,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +pMg +pMg +jdh +oRK +oRK +oRK +jdh +pMg +sXo +aoE +arz +aoE +pMg +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +pMg +pMg +pMg +aoE +aoE +aoE +aoE +dNA +dNA +dNA +dNA +dNA +aoE +aoE +aoE +aoE +dNA +upS +dNA +dNA +dNA +dNA +dNA +aoE +arz +aoE +aoE +aoE +aoE +pKO +pKO +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +aoE +aoE +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +eaL +aoE +aoE +arz +arz +arz +arz +arz +arz +aNo +rVS +nnm +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +oTt +aQz +yib +raX +nrT +raX +tcJ +qfk +raX +pgq +raX +rHv +euc +hGV +hGV +hGV +wVR +euc +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +afF +aXC +aXC +aXC +jev +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +abK +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +abK +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(95,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +pMg +pMg +pMg +pMg +jdh +lwZ +kDp +oRK +jdh +pMg +pMg +aoE +arz +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +arz +arz +aoE +aoE +dNA +dNA +wuY +dNA +dNA +dNA +aoE +aoE +dNA +dNA +dNA +dNA +wuY +dNA +dNA +aoE +aoE +aoE +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +xHl +dNA +dNA +dNA +ncO +aoE +aoE +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +qGz +fKJ +cAQ +cAQ +fKJ +cAQ +cAQ +fKJ +kOl +cAQ +fKJ +qGz +aQz +yib +raX +raX +raX +jjC +sjb +jjC +sjb +aQz +aQz +euc +euc +euc +euc +euc +euc +aQz +aQz +aQz +aQz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBa +aXC +asz +aXC +aXC +aXm +aXm +ade +ade +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aTT +aSj +aSj +aSj +aTT +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(96,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +mFO +pMg +pMg +pMg +pMg +pMg +pMg +jdh +flu +flu +oRK +jdh +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +dNA +dNA +xHl +dNA +nns +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +nns +dNA +dNA +dNA +dNA +dNA +dNA +wuY +dNA +dNA +dNA +dNA +aoE +aoE +arz +aoE +aoE +eaL +eaL +xqs +eaL +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +eaL +eaL +eaL +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +vZq +fKJ +khl +qLV +fKJ +khl +qLV +fKJ +khl +qLV +qGz +vZq +aQz +fGg +raX +raX +raX +raX +raX +raX +raX +raX +eZe +iqc +raX +raX +raX +raX +iqc +raX +raX +bli +aQz +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +vpP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aXC +aal +aXC +aXC +aXm +aoE +ade +ade +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aGW +aBC +aBC +aSj +aSj +aSj +aBC +aBC +abK +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(97,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +pMg +pMg +xwW +pMg +pMg +pMg +jdh +jdh +jdh +jdh +jdh +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +dNA +dNA +dNA +nns +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +nns +dNA +dNA +dNA +xHl +dNA +dNA +dNA +dNA +dNA +aoE +aoE +aoE +arz +arz +arz +aoE +aoE +aoE +eaL +eaL +eaL +eaL +eaL +eaL +rIg +rIg +rIg +rIg +rIg +eaL +eaL +eaL +eaL +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +nnm +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +naR +fKJ +fKJ +oTt +rVS +aQz +bli +raX +raX +raX +raX +raX +raX +nmG +raX +nrT +raX +raX +raX +raX +raX +raX +nrT +raX +raX +azm +awL +awL +awL +awL +awL +aGk +awL +awL +adv +awL +awL +awL +awL +aMa +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +afF +adq +aXC +aXC +aXm +aoE +ade +ade +aBC +aBC +aYc +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aBC +aSj +aBC +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(98,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +dNA +dNA +nns +dNA +dNA +wuY +dNA +dNA +dNA +dNA +dNA +wuY +dNA +nns +dNA +dNA +dNA +dNA +dNA +dNA +dNA +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +eaL +eaL +eaL +eaL +eaL +eaL +eaL +eaL +xqs +eaL +eaL +eaL +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +qGz +naR +oET +cAQ +fKJ +cAQ +cAQ +fKJ +cAQ +cAQ +qGz +pYl +raX +raX +raX +raX +dCz +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +aQz +awL +awL +adv +aGk +awL +awL +awL +awL +awL +awL +awL +awL +awL +aMa +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +avK +aXC +aXC +aoE +aoE +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(99,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +dNA +dNA +nns +dNA +dNA +dNA +dNA +dNA +xHl +dNA +dNA +dNA +dNA +nns +dNA +dNA +dNA +dNA +dNA +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +eaL +eaL +eaL +eaL +eaL +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +vZq +fKJ +khl +qLV +fKJ +khl +qLV +fKJ +khl +qLV +qGz +phX +raX +nrT +raX +raX +dCz +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +aQz +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBa +aoE +aoE +arz +aoE +ade +aBC +aBC +aBC +aqb +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(100,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +pMg +pMg +pMg +pMg +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +dNA +nns +dNA +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +qGz +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +fKJ +qGz +phX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +nrT +raX +raX +raX +raX +raX +raX +aQz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aRI +aui +aui +aui +aSj +aSj +aBC +aui +aui +aui +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(101,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +pMg +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rVS +qGz +qGz +qGz +jsS +qGz +qGz +qGz +qGz +qGz +qGz +qGz +pYl +raX +raX +raX +raX +raX +raX +nrT +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +raX +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +awL +afS +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aqq +aqq +aBC +aBC +aBC +aYc +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(102,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +wrl +bGe +wrl +etg +rVS +rVS +rVS +rVS +rVS +rVS +rVS +rVS +ivk +ydd +ydd +ivk +aQz +ivk +ivk +aQz +hUa +aQz +aQz +ivk +ivk +aQz +hUa +aQz +ivk +ivk +aQz +oXS +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +abK +aBC +aBC +aBC +aIG +aIG +aFY +arS +ajj +aSj +aSj +aSj +aSj +aSj +ajj +arS +aff +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +"} +(103,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nyU +msF +msF +wrl +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aYr +raX +eYM +ltE +raX +aQz +pKR +pKR +ngp +pKR +aQz +aQz +pKR +nlz +xpa +pKR +aQz +pKR +pKR +xpa +pKR +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +awL +adv +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +arz +arz +aoE +aoE +aFe +aac +aoE +aoE +arz +arz +arz +arz +arz +"} +(104,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +nyU +wrl +aNo +arz +arz +arz +arz +arz +aNo +aYr +raX +pYD +oeY +oeY +aQz +jQp +pKR +nwT +ukW +aQz +aQz +jQp +pKR +nwT +cgq +aQz +jQp +pKR +iYx +cgq +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aBC +aqq +aqq +aRI +aSt +aSt +aSt +aSj +aSj +aSj +aSt +aSt +aSt +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +aoE +aoE +aoE +aHq +aac +aWJ +mmE +aoE +arz +arz +arz +arz +arz +"} +(105,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +aNo +aYr +raX +oeY +aNo +aNo +aQz +swe +cgq +qqV +cgq +aQz +aQz +swe +cgq +qqV +cgq +aQz +swe +cgq +qqV +cgq +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +aGk +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aqb +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +aoE +ajS +azT +awi +aac +awi +aac +aoE +arz +arz +arz +arz +arz +"} +(106,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eNi +eNi +eNi +eNi +eNi +eNi +eNi +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +aNo +aYr +oeY +aNo +aNo +aNo +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aQz +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +ade +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +abK +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +ajS +ajS +ajS +aac +aac +avX +aac +aac +aoE +arz +arz +arz +arz +arz +"} +(107,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +cuS +dok +cbq +heb +nmq +eNi +eNi +eNi +eNi +gdr +qGl +xZk +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +qZD +nyU +wrl +aNo +arz +arz +arz +arz +arz +aNo +aYr +aNo +aNo +aNo +aNo +aYr +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +ars +awL +awL +ars +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +aoE +ajS +aac +aac +awi +aac +aHq +aoE +arz +arz +arz +arz +arz +"} +(108,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eNi +eNi +sEo +hEr +lXv +lXv +lXv +eNi +tlA +gkg +eNi +gdr +qGl +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +aNo +aYr +aNo +aNo +aNo +aNo +aYr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arn +arn +azr +azr +azr +azr +azr +arn +arn +arn +aOZ +nPg +aNo +aBY +aid +amx +aEX +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aGW +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +ade +aoE +aoE +aoE +aWJ +aac +aac +aFe +aac +aoE +arz +arz +arz +arz +arz +"} +(109,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eNi +gew +bik +soS +tOz +ruO +lXv +eNi +tbA +bNQ +eNi +gdr +qGl +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nyU +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aNo +aNo +aNo +aHI +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +aoE +ade +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +abK +aTT +aSj +aSj +aSj +aTT +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +aoE +aoE +aoE +azT +aac +aoE +aoE +arz +arz +arz +arz +arz +"} +(110,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eNi +bLS +lXv +lXv +lXv +lXv +lPn +eNi +tbA +vxP +eNi +gdr +qGl +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aVW +aVW +aVW +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +csP +aNo +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +abK +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +"} +(111,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eNi +tlF +sEo +sEo +sEo +sEo +lXv +lXv +lXv +lXv +eNi +gdr +oag +gdr +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +qZD +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +anL +aSV +aPW +asC +aVW +aRd +aDO +aGE +aDO +aDO +aDO +aVW +awp +aUN +aHK +awp +aFM +aHK +awp +aUN +aHK +aVW +aNo +arz +arz +arz +arz +arz +aoE +ade +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(112,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +vtK +lXv +pSp +wEc +nHm +dVo +lXv +lXv +lXv +lXv +eNi +gdr +oag +gdr +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aJE +aSV +awp +ajs +aVW +aLn +aSV +aSV +aSV +aSV +aSV +aVW +agN +aSV +aHK +agN +aSV +aHK +agN +aSV +aHK +aVW +aNo +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(113,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rHE +rHE +rHE +rHE +bkf +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +aNo +eNi +lXv +kJZ +kJZ +kJZ +kJZ +lXv +lXv +oxJ +vPz +eNi +gdr +qGl +xZk +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +qZD +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +avJ +aSV +aNP +aYu +aVW +aHK +aHK +aHK +aSv +aHK +aHK +aVW +aHK +aKJ +agI +aHK +aLb +agI +aHK +adl +agI +aVW +aNo +arz +arz +arz +arz +arz +aoE +ade +aBC +aqb +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aTT +aIG +aIG +aTT +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(114,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +sST +rHE +rHE +rHE +rHE +hAS +rHE +rHE +rHE +rHE +rHE +rHE +aNo +aNo +arz +arz +aNo +eNi +lXv +lXv +lXv +yix +lXv +lXv +lXv +nTH +ygT +eNi +gdr +qGl +gdr +gdr +gdr +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nyU +msF +nyU +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +asO +aSV +aSV +aOc +amW +aJq +aSV +aSV +aOc +aSV +aSV +acK +aOc +arT +asA +aOc +aKl +aan +ayC +ale +aqU +aVW +aNo +arz +arz +arz +arz +arz +aoE +ade +ade +aBC +aBC +aBC +aBC +aIG +aIG +aRI +aui +aui +aui +aSj +aSj +aSj +aui +aui +aui +aRI +aIG +aIG +aBC +aBC +aBC +aBC +acn +aBC +aBC +aBC +abK +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(115,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rHE +kXJ +rbY +rbY +rbY +mla +osI +rbY +rbY +rbY +kXJ +rbY +rHE +rbY +osI +rbY +rbY +rbY +mla +rbY +rbY +rbY +rbY +osI +rbY +rHE +rHE +gKg +aNo +aNo +arz +aNo +eNi +eNi +eNi +eNi +eNi +hOG +eNi +hOG +eNi +eNi +eNi +gdr +qGl +gdr +gdr +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aSi +aSV +aSV +aOc +aBR +aSV +aSV +aOc +aOc +aOc +aOc +aHK +anY +aOc +aOc +aOc +aOc +aOc +aOc +aOc +aqS +aVW +aNo +arz +arz +arz +arz +arz +aoE +aoE +ade +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aBC +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(116,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rHE +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +kXJ +rbY +rbY +rbY +rbY +rbY +rbY +kXJ +rbY +rbY +rHE +rHE +rHE +aNo +aNo +aNo +gdr +gdr +gdr +gdr +gdr +lXv +gdr +lXv +gdr +gdr +gdr +gdr +qGl +gdr +gdr +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +awp +aSV +aSV +aOc +aBR +aSV +ale +aOc +aSV +aSV +aSV +acK +aOc +ale +aOj +aep +aSV +awm +aOc +aSV +aAq +aVW +aNo +arz +arz +arz +arz +arz +arz +aoE +ade +aBC +aBC +aBC +aBC +aIG +aIG +aFY +arS +ajj +aSj +aSj +aSj +aSj +aSj +ajj +arS +aff +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(117,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rbY +rbY +rbY +rbY +rbY +kXJ +rbY +rbY +rbY +rbY +rbY +rbY +rbY +mla +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rHE +vXC +feA +aNo +gdr +gdr +gdr +gdr +gdr +lXv +gdr +lXv +gdr +gdr +gdr +lfO +qGl +gdr +gdr +gdr +gqq +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +nps +nps +nps +nps +nps +nps +nps +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +nyU +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aJq +aSV +ale +aOc +amW +aSV +aSV +aOc +aSV +aKl +aSV +aVW +aHK +aZE +agI +aHK +aHX +agI +aHK +aeK +agI +aVW +aNo +arz +arz +arz +arz +arz +arz +aoE +aBC +aqb +aBC +aBC +aBC +aIG +aIG +aFY +aSj +adG +aSj +aSj +aSj +aSj +aSj +adG +aSj +aff +aIG +aIG +aBC +aBC +aBC +aqb +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(118,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +hAS +rbY +rbY +rbY +rbY +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rbY +rbY +rbY +osI +rHE +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rHE +rHE +rHE +yeQ +cUM +cUM +cUM +cUM +cUM +lXv +cUM +lXv +cUM +cUM +cUM +xIi +bba +gdr +gdr +gqq +gdr +gdr +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +nps +nps +kTL +hjO +bsv +kai +bsv +hjO +kTL +nps +nps +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +aaD +arn +aSV +aSV +aSV +aHK +aCb +aCb +aCb +aHK +aSV +aSV +aSV +aVW +amL +aSV +aHK +amL +aSV +aHK +amL +aSV +aHK +aVW +aNo +arz +arz +arz +arz +arz +arz +aoE +aBC +acn +aBC +aBC +aBC +aIG +aIG +aRI +aSt +aSt +aSt +aSj +aSj +aSj +aSt +aSt +aSt +aRI +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(119,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rbY +rbY +rbY +rbY +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +hAS +xdn +rHE +rHE +rHE +rHE +osI +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +rbY +qIv +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +gdr +xZk +dsI +gdr +xZk +gdr +gdr +gdr +lKi +gdr +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +aNo +aNo +nps +nps +hjO +kTL +kTL +dgr +hUd +dgr +dgr +dgr +kTL +kTL +hjO +nps +nps +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +nyU +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +add +aub +aub +aub +aEe +aEB +abG +aSP +aCp +aCp +aTN +apg +aiu +aOc +aOc +aOc +aHK +aKu +avc +aAe +aHK +aSV +aSV +aSV +aVW +awp +aFM +aHK +awp +aUN +aHK +awp +aFM +aHK +aVW +aNo +arz +arz +arz +arz +arz +arz +aoE +aoE +aqb +aBC +aBC +aTT +aqq +aqq +aTT +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aTT +aqq +aqq +aTT +aBC +aBC +aqb +aBC +aBC +ade +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(120,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +hAS +rHE +rHE +rHE +rbY +rbY +rbY +rbY +rbY +rbY +rbY +qIv +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +dsI +gdr +gdr +gdr +gdr +gdr +lKi +gdr +gdr +gdr +gdr +gdr +gdr +gdr +gdr +gdr +aNo +arz +arz +arz +aNo +aNo +nps +hjO +kTL +kTL +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +fgF +kTL +hjO +nps +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +qZD +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arR +aub +aub +aEe +aEB +abG +aSP +aHk +aHk +apg +apg +aAb +aOc +aSV +arT +aDS +aHA +aIH +aKd +afv +ali +aQe +aEg +aVW +aVW +aVW +aVW +aVW +aVW +aCb +aCb +aCb +aCb +aVW +aNo +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +ade +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(121,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +qIv +mas +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +hRb +gdr +gdr +gdr +gdr +gdr +gdr +gqq +gdr +gdr +gdr +gdr +gdr +gdr +gdr +gdr +aNo +arz +arz +arz +aNo +nps +fir +kTL +dgr +dgr +hUd +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +kTL +gVw +lkt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aSP +aHk +aHk +aht +apg +aiu +aKl +aSV +aSV +amW +amv +aSH +afC +aHK +aSV +asQ +aSV +aVW +atI +aLz +aPe +aLz +aWv +aLz +aHK +aBo +aSV +aVW +aNo +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(122,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +rHE +rHE +dzu +rHE +vXC +rHE +kYb +qae +urj +urj +urj +urj +wqa +urj +urj +wqa +urj +oXs +hRb +gdr +gdr +gdr +gdr +gdr +xZk +gdr +eNi +eNi +eNi +eNi +eNi +gdr +gdr +gdr +aNo +arz +arz +aNo +aNo +nps +kTL +dgr +lfq +dgr +dgr +dgr +ffW +psO +rtf +psO +ffW +dgr +dgr +dgr +lfq +dgr +kTL +nps +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aSP +ams +ams +aBf +apg +arn +aSV +arT +aSV +amW +aCb +aCb +aCb +aHK +aSV +aEa +aGJ +aVW +aSV +aSV +aoY +aSV +aoY +aSV +aHK +asd +axn +aVW +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +aoE +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(123,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rbY +rbY +rbY +dZu +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +dzu +yeQ +gdr +gdr +gdr +wqa +wqa +wqa +wqa +wqa +wqa +wqa +wqa +hRb +wqa +gdr +gdr +gdr +gqq +gdr +eNi +eNi +gWF +hHC +uBZ +eNi +eNi +gdr +gdr +aNo +arz +arz +aNo +nps +fir +kTL +dgr +dgr +dgr +scr +nWP +nWP +cwf +cwf +cwf +nWP +nWP +fig +dgr +dgr +dgr +kTL +gVw +nps +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nyU +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aET +abG +aub +aub +aub +apu +aaD +arn +axb +aSV +aSV +aSV +amW +aSV +aSV +aOc +aGJ +aSV +aSV +aVW +aJq +aSV +ale +aSV +axn +aSV +aHK +acr +aSV +aVW +aGj +aGj +aGj +aGj +aGj +aNo +arz +arz +aoE +aoE +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(124,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +gdr +gdr +gdr +gdr +gdr +wqa +wqa +wqa +wqa +wqa +oRQ +gEA +oXs +gdr +gdr +gdr +wAJ +eNi +eNi +taX +pvq +wyq +qJa +jHV +eNi +eNi +gdr +aNo +arz +aNo +aNo +nps +kTL +dgr +jbL +dgr +scr +dfc +enQ +enQ +enQ +enQ +enQ +enQ +enQ +ufJ +fig +dgr +dgr +hUd +kTL +nps +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +afK +aSV +arT +aSV +aBb +aSV +aSV +aOc +arT +aSV +arT +acK +aSV +aSV +arT +aCn +arT +aXH +aZm +azp +aSV +aVW +aGj +aYJ +ayF +aBe +aGj +aNo +arz +arz +arz +aoE +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +abK +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(125,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +gdr +xZk +gdr +gdr +gdr +xZk +gdr +gdr +wqa +wqa +wqa +wqa +hRb +vva +wqa +gdr +xZk +wAJ +eNi +xAE +nLp +lXv +lXv +kPC +lXv +mxn +eNi +gdr +aNo +arz +aNo +nps +kTL +kTL +dgr +dgr +dgr +loZ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +nLu +dgr +dgr +dgr +kTL +kTL +nps +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +arT +aPJ +aQe +aQe +aVj +ahG +arT +aOc +aOc +aOc +aOc +aHK +agE +ayC +aOc +aOc +aOc +aOc +aHd +aAp +aSV +abo +aoy +aaO +aGy +aYe +aGj +aNo +arz +arz +arz +aoE +aBC +aBC +aBC +aIG +aIG +aBC +aBC +abK +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(126,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +eNi +eNi +eNi +eNi +eNi +eNi +gdr +gdr +wqa +wqa +wqa +wqa +hRb +oRQ +urj +qiB +qiB +uqp +myU +qiB +lXv +lXv +lXv +lXv +lXv +sJk +eNi +gdr +aNo +arz +aNo +nps +fir +hUd +dgr +dgr +ffW +loZ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +enQ +nLu +ffW +dgr +dgr +dgr +gVw +nps +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +nyU +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aBu +aMJ +aci +aBu +amW +alb +abM +aQe +apT +ale +aSV +acK +aSV +aKl +arT +axn +aIp +aQe +aTL +aQe +aTo +aVW +aGj +aGj +aGj +aGj +aGj +aNo +arz +arz +arz +aoE +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(127,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +dZu +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +xAE +hMr +vxO +wJo +wqi +eNi +gdr +gdr +gdr +wqa +wqa +wqa +hRb +wqa +wqa +gdr +xZk +wAJ +eNi +sms +lXv +cLY +lXv +lXv +lXv +vAB +eNi +gdr +aNo +arz +aNo +nps +kTL +dgr +dgr +dgr +psO +cPd +enQ +enQ +enQ +bpH +sqN +bvU +enQ +enQ +enQ +drM +psO +dgr +dgr +dgr +kTL +nps +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aEV +aOY +aGR +aBR +aCb +aUh +aPW +aPW +aPW +arT +arT +aVW +aJq +aSV +ale +arT +aXH +aSV +aHK +axk +aEi +aVW +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +aoE +aoE +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aBC +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aBC +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(128,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +kXJ +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +oxS +kBZ +kBZ +pvq +sVG +eNi +qGl +gdr +gdr +wqa +wqa +wqa +hRb +wqa +wqa +gdr +gdr +wAJ +eNi +eNi +cXw +lXv +lXv +lXv +sFA +eNi +eNi +gdr +aNo +arz +aNo +nps +kTL +dgr +dgr +dgr +jym +cPd +enQ +enQ +enQ +drM +iYm +cPd +enQ +enQ +enQ +drM +cPK +dgr +dgr +hUd +kTL +nps +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nyU +msF +qZD +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aie +awH +awH +awH +aCb +anw +aSe +aBh +aSe +aSV +aSV +aVW +aSV +aSV +aoY +aSV +aoY +aSV +aHK +aMW +axn +aVW +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aqq +aqq +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +abK +aBC +aBC +aqq +aqq +aBC +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(129,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +cPS +law +rox +rpk +dWl +eNi +qGl +gdr +gdr +wqa +wqa +wqa +hRb +wqa +wqa +gdr +gdr +wAJ +gdr +eNi +eNi +fFA +iZO +rad +eNi +eNi +gdr +gdr +aNo +arz +aNo +nps +kTL +dgr +dgr +dgr +psO +cPd +enQ +enQ +enQ +kda +nFP +eag +enQ +enQ +enQ +drM +psO +dgr +dgr +dgr +kTL +nps +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +avx +arn +aqw +aOa +aYd +aRC +aCb +aNP +aNP +aCh +aNP +aSV +atO +aVW +awp +aLz +agY +aLz +atM +aLz +aHK +aFx +aSV +aVW +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aBC +aBC +aIG +aIG +aBC +aBC +aBC +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aBC +aIG +aIG +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(130,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +oxS +kBZ +kBZ +lXv +eFZ +eNi +qGl +gdr +wqa +wqa +wqa +wqa +hRb +uuN +wqa +wqa +gdr +wAJ +lfO +gdr +eNi +eNi +eNi +eNi +eNi +gdr +xZk +gdr +aNo +arz +aNo +nps +fir +dgr +dgr +dgr +ffW +loZ +enQ +enQ +enQ +enQ +tPy +enQ +enQ +enQ +enQ +nLu +ffW +dgr +dgr +dgr +gVw +nps +aNo +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +wrl +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +aSI +awM +arn +aVW +aVW +aVW +aVW +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aCb +aVW +aVW +aVW +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aBC +aIG +aIG +aBC +aBC +abK +aBC +aSj +aSj +aSj +aBC +aBC +aBC +aUR +aIG +aIG +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(131,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +dZu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +cPS +law +rox +lXv +loj +eNi +qGl +gdr +wqa +wqa +wqa +wqa +hRb +wqa +wqa +wqa +wqa +hCW +xIi +cUM +cUM +cUM +cUM +gdr +gdr +gdr +gdr +gdr +aNo +arz +aNo +nps +kTL +kTL +dgr +lfq +dgr +loZ +enQ +enQ +enQ +enQ +tPy +enQ +enQ +enQ +enQ +nLu +dgr +dgr +lfq +kTL +kTL +nps +aNo +arz +aNo +wrl +wrl +wrl +wrl +wrl +wrl +wrl +msF +ffd +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +asB +awM +arn +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aIG +aIG +aoE +aBC +aBC +aBC +aDL +aDL +aDL +aBC +aoE +aoE +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(132,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rDq +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +oxS +kBZ +kBZ +lXv +fAW +eNi +gWB +wqa +wqa +wqa +wqa +wqa +hRb +wqa +wqa +wqa +wqa +hRb +wqa +xZk +suB +suB +suB +gdr +xZk +gdr +gdr +gdr +aNo +arz +aNo +aNo +nps +kTL +dgr +dgr +dgr +oRN +dqR +enQ +enQ +enQ +tPy +enQ +enQ +enQ +mHO +qPf +dgr +dgr +dgr +kTL +nps +aNo +aNo +arz +aNo +wrl +msF +msF +msF +pGS +qZD +dYp +msF +nyU +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arn +arn +aam +aRO +ant +apy +aam +arn +arn +arn +ahW +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +aoE +aoE +aoE +aqd +aqd +eRK +aoE +aoE +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(133,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +cPS +law +rox +lXv +gIM +eNi +gWB +wqa +wqa +wqa +wqa +wqa +hRb +wqa +wqa +wqa +wqa +hRb +qIv +eNi +eNi +eNi +eNi +eNi +eNi +eNi +gdr +gdr +aNo +arz +arz +aNo +nps +kTL +kTL +dgr +dgr +dgr +oRN +ssi +dqR +enQ +tPy +enQ +mHO +ssi +qPf +dgr +hUd +dgr +kTL +gVw +nps +aNo +arz +arz +aNo +wrl +msF +vph +msF +msF +msF +lxb +msF +msF +msF +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +awM +awM +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(134,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +oxS +kBZ +kBZ +lXv +fkz +rLJ +rxo +hRb +hRb +hRb +hRb +hRb +hRb +hRb +hRb +hRb +hRb +hRb +qIv +eNi +jvJ +ium +pyK +ddi +lHm +eNi +gdr +gdr +aNo +arz +arz +aNo +aNo +nps +kTL +dgr +hUd +dgr +dgr +dgr +oRN +ssi +mVI +ssi +qPf +dgr +dgr +dgr +jbL +dgr +kTL +nps +aNo +aNo +arz +arz +aNo +wrl +msF +msF +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +aSI +awM +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(135,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +cPS +law +lXv +lXv +fkz +lXv +rxo +uuN +wqa +wqa +wqa +kWg +eCy +eCy +eCy +eCy +vmZ +hRb +qIv +eNi +oxJ +hNg +lXv +seS +iIH +eNi +gdr +gdr +aNo +arz +arz +arz +aNo +nps +fir +kTL +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +dgr +kTL +gVw +nps +aNo +arz +arz +arz +aNo +wrl +msF +msF +wrl +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +aBd +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(136,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +oxS +kBZ +kBZ +lXv +klO +eNi +nTv +wqa +wqa +wqa +wqa +qBx +eCy +eCy +eCy +eCy +mxf +hRb +jtF +rLJ +lXv +lXv +lXv +lXv +vTf +eNi +gdr +gdr +aNo +arz +arz +arz +aNo +aNo +nps +idC +kTL +kTL +dgr +hUd +dgr +dgr +dgr +hUd +dgr +lfq +dgr +kTL +kTL +idC +nps +aNo +aNo +arz +arz +arz +aNo +wrl +msF +qZD +wrl +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(137,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +eNi +sms +qmB +gQg +vpb +iyb +eNi +nTv +wqa +wqa +wqa +gdr +qBx +eCy +eCy +eCy +eCy +mxf +hRb +rTV +lXv +lXv +lXv +pvq +lXv +fzx +eNi +gdr +gdr +aNo +arz +arz +arz +arz +aNo +fom +nps +nps +idC +kTL +kTL +dgr +dgr +dgr +dgr +dgr +kTL +kTL +idC +nps +nps +aNo +aNo +arz +arz +arz +arz +aNo +wrl +msF +msF +wrl +aNo +arz +arz +arz +aNo +xcI +xcI +xcI +xcI +xcI +xcI +xcI +xcI +xcI +fao +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +aDC +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aIG +aIG +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aIG +aIG +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(138,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +eNi +eNi +eNi +eNi +eNi +eNi +eNi +nTv +wqa +wqa +wqa +gdr +kWg +eCy +eCy +eCy +eCy +vmZ +gdr +oSj +eNi +iNt +lXv +lXv +lXv +lXv +eNi +gdr +gdr +aNo +arz +arz +arz +arz +arz +aNo +aNo +aNo +nps +nps +kTL +idC +kTL +kTL +kTL +idC +kTL +nps +nps +aNo +aNo +aNo +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +wrl +aNo +arz +arz +arz +aNo +xcI +rYe +qyN +tgn +rYe +sUP +pxO +rYe +pxO +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aPG +aPG +aoE +arz +arz +aoE +aNw +anb +aNw +aoE +arz +arz +aoE +aWt +aWt +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(139,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +xZk +cUM +cUM +wqa +lIO +eat +ntL +wqa +wqa +wqa +gdr +uKX +nIZ +nIZ +nIZ +nIZ +uKX +gdr +oSj +eNi +jOy +oIk +lXv +ekr +hkE +eNi +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +nps +tcp +tcp +lLJ +tcp +kQo +nps +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +nbJ +msF +wrl +aNo +arz +arz +arz +aNo +xcI +drF +rYe +qWY +rYe +rYe +sqX +rYe +bcL +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +aaD +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(140,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +hAS +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +gdr +gdr +wqa +wqa +wqa +wqa +wqa +wqa +gdr +gdr +kZX +nIZ +sgM +sgM +nIZ +kZX +gdr +bYm +eNi +eNi +eNi +eNi +eNi +eNi +eNi +gdr +gdr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +tcp +srm +nrD +iWy +tcp +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +wrl +aNo +arz +arz +arz +aNo +xcI +rYe +wJU +tgn +tvq +rYe +rYe +rYe +pxO +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(141,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +gdr +gdr +wqa +wqa +wqa +gdr +gdr +gdr +gdr +kZX +eYU +sgM +sgM +pru +kZX +gdr +hCW +iHL +xIi +xIi +xIi +xIi +vJX +gdr +gdr +gdr +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +tcp +ehK +nrD +rOP +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +nyU +wrl +aNo +arz +arz +arz +aNo +xcI +rYe +rYe +tgn +rYe +rYe +pxO +rYe +hrI +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +atK +ajN +ajN +ajN +atK +aub +aub +apu +aGu +arn +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(142,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +gdr +gdr +gdr +wqa +wqa +gdr +gdr +gdr +pyH +kZX +nIZ +sgM +sgM +nIZ +kZX +gdr +gdr +gdr +gdr +gdr +gdr +dsI +gdr +gdr +gdr +gdr +aNo +arz +arz +arz +aNo +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +iWy +nrD +iWy +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +wrl +aNo +arz +arz +arz +aNo +xcI +kAr +rYe +qWY +tvq +rYe +bcL +pBa +pxO +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aSg +aaS +afE +aYL +aSg +aXo +aXo +aTN +aaD +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(143,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +hAS +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +gdr +gdr +gdr +gdr +gdr +oCb +kZX +kZX +uKX +nIZ +nIZ +nIZ +nIZ +uKX +kZX +kZX +uKX +gdr +gdr +nzT +nzT +nzT +gdr +gdr +gdr +aNo +arz +arz +arz +aNo +tcp +xbw +jgy +muz +iWy +sEb +rPP +iWy +iWy +nrD +iWy +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +wrl +xnh +wrl +aNo +aNo +aNo +aNo +aNo +xcI +rYe +tvq +tgn +eaO +rYe +bZx +rYe +pxO +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +azo +aub +aub +aUr +afE +aRg +afE +aUr +aVr +aVr +apg +apg +aoG +aTj +aFd +agW +aTj +aTj +aTj +aFd +aTj +avj +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(144,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gdr +gdr +gdr +gdr +uKX +uKX +nIZ +nIZ +reY +nIZ +nIZ +nIZ +nIZ +reY +nIZ +nIZ +uKX +uKX +gdr +gdr +kee +gdr +gdr +gdr +aNo +aNo +arz +arz +arz +aNo +tcp +xbw +jgy +jgy +nrD +nrD +nrD +nrD +wNR +nrD +iWy +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +xcI +rYe +rYe +tvq +rYe +bcL +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arR +aub +aSg +afi +afE +aYP +aSg +aVr +aVr +aSl +apg +aoG +aTj +aTj +aTj +aTj +aTj +aTj +aTj +aTj +aTj +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +anb +aNw +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(145,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +dZu +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +gdr +gdr +uKX +uKX +reY +nIZ +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +nIZ +reY +uKX +uKX +nzT +nzT +nzT +gdr +aNo +aNo +arz +arz +arz +arz +aNo +tcp +xbw +jgy +muz +iWy +iWy +rCe +iWy +iWy +rCe +sEb +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +qZD +msF +xnh +msF +nyU +msF +qZD +nyU +msF +msF +msF +mvH +rYe +rYe +rYe +tvq +fZK +xcI +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +ajN +aXN +apm +arP +ajN +aAG +aAG +aBf +aaD +akt +akt +akt +akt +akt +akt +akt +akt +aTj +aRB +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(146,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rDq +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +uKX +uKX +nIZ +nIZ +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +nIZ +nIZ +uKX +uKX +gdr +gdr +gdr +aNo +arz +arz +arz +arz +arz +aNo +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +tcp +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +wrl +msF +msF +xnh +msF +msF +msF +msF +msF +msF +cjO +msF +mvH +tvq +rYe +pxO +nkj +qzB +xcI +xcI +xcI +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +ajN +aXN +apm +afE +ajN +aub +aub +apu +apg +arn +aNo +aNo +aNo +aNo +aNo +aNo +akt +aTj +aTj +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(147,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +aNo +uKX +reY +nIZ +sgM +sgM +sgM +sgM +sFW +sFW +civ +dNy +sgM +sgM +sgM +sgM +nIZ +reY +uKX +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +wrl +xcI +rYe +rYe +pxO +rYe +rYe +tgn +qyN +rYe +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +ajN +aXN +apm +afE +ajN +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +aNo +akt +aTj +aTj +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(148,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +ojG +ojG +ojG +ojG +ojG +ojG +ojG +ojG +ojG +ojG +aNo +arz +arz +arz +arz +aNo +uKX +nIZ +sgM +sgM +sgM +sgM +sFW +dNy +twB +twB +sFW +sFW +sgM +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +kSV +egS +aYr +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +xcI +yjH +rYe +pxO +rYe +tgH +tgn +tvq +fZK +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +ajN +atp +apm +afE +ajN +aub +aub +adx +aaD +arn +aNo +arz +arz +arz +arz +aNo +akt +aTj +aTj +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(149,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +alV +alV +mLH +bKH +bKH +ojG +bKH +mLH +bKH +ojG +aNo +arz +arz +arz +arz +aNo +uKX +eYU +sgM +sgM +sgM +dNy +sFW +twB +nIZ +nIZ +nIZ +sFW +dNy +sgM +sgM +sgM +pru +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +hlv +jrH +jrH +kSV +jrH +jrH +jrH +xXs +jrH +jrH +jrH +jrH +jrH +xXs +jrH +jrH +cvy +jrH +tTW +aYr +aNo +olK +olK +olK +olK +olK +olK +olK +olK +olK +olK +olK +nQD +aNo +xcI +kAr +tvq +pxO +rYe +rYe +qWY +rYe +wJU +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +ajN +aXN +apm +ajH +ajN +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +aNo +akt +aTj +asm +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(150,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +alG +kni +kni +kni +cIe +kni +kni +bKH +ojG +aNo +aNo +aNo +aNo +aNo +aNo +uKX +uuC +sgM +sgM +sgM +skD +qZn +nIZ +nIZ +nIZ +nIZ +yky +ciX +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +hlv +jrH +jrH +pkR +jrH +jrH +jrH +tPs +tPa +tPa +tPa +tPa +tPa +qrc +jrH +xYc +jrH +nHl +gbg +aYr +aNo +olK +kQp +xnW +kQp +iqd +kQp +syy +kQp +iqd +kQp +xnW +olK +aNo +xcI +rYe +rYe +rYe +rYe +tvq +tgn +tvq +fZK +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aSg +aWa +afE +amP +aSg +aub +aub +apu +apg +arn +aNo +arz +arz +arz +arz +aNo +akt +aTj +aRB +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +anb +aNw +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(151,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +hAS +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +alV +bKH +bKH +bKH +bKH +ojG +bKH +kni +bKH +ojG +ojG +ojG +ojG +ojG +ojG +lbD +uKX +nIZ +sgM +sgM +sgM +sFW +nIZ +nIZ +nIZ +nIZ +nIZ +nIZ +sFW +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +jrH +jrH +fuF +kSV +iOR +jrH +jrH +tRm +kUo +kUo +kUo +kUo +kUo +qgp +qrc +jrH +jrH +nHl +jnr +aYr +aNo +olK +rym +jyG +jyG +jyG +jyG +jyG +jyG +jyG +jyG +xOU +olK +aNo +xcI +sdX +rYe +rYe +tvq +rYe +tgn +rYe +tvq +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +atK +ajN +ajN +ajN +atK +aub +aub +apu +aYf +arn +aNo +arz +aNo +aNo +aNo +aNo +akt +aTj +aTj +akt +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(152,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +ojG +ojG +ojG +ojG +ojG +ojG +bKH +kni +bKH +bKH +bKH +bKH +mLH +bKH +bKH +bxm +oKh +nIZ +sgM +sgM +sgM +dNy +sFW +nIZ +nIZ +nIZ +nIZ +sFW +sFW +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +xYc +nHl +gbg +tSq +wMx +xSm +xSm +xYn +kUo +jwP +jwP +jwP +kUo +kUo +dGD +jrH +yhs +cvy +oAi +aYr +aNo +olK +kQp +hzj +kQp +xnW +kQp +xnW +kQp +hzj +kQp +xnW +olK +aNo +xcI +xcI +qQv +how +qQv +xcI +xcI +xcI +xcI +xcI +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +aaD +arn +aNo +arz +aNo +akt +akt +akt +akt +aKw +aKw +akt +akt +akt +akt +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(153,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +ojG +bKH +kni +kni +kni +kni +kni +kni +kni +kni +qlj +oKh +nIZ +sgM +sgM +sgM +sgM +sFW +sFW +nIZ +cny +sFW +sFW +sgM +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +jrH +jrH +gbg +tSq +guF +pdG +pMi +ezT +kUo +jwP +izk +jwP +meH +meH +qwm +jrH +kSV +kSV +kSV +aYr +aNo +olK +seU +jyG +jyG +lVP +jyG +jyG +jyG +jyG +jyG +jyG +olK +olK +aNo +coF +gGc +rtx +gGc +oHn +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +apu +apg +arn +aNo +arz +aNo +akt +arM +aMS +ahQ +ahQ +ahQ +ahQ +ahQ +aHv +aCx +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(154,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +ehd +rbY +rbY +rbY +rHE +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bxm +oKh +nIZ +sgM +sgM +sgM +sgM +sgM +sFW +nIZ +sFW +sFW +sgM +sgM +sgM +sgM +sgM +pru +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +jrH +nmD +gbg +tSq +tTN +oRB +oRB +dQq +kUo +jwP +jwP +jwP +kUo +kUo +dGD +jrH +oAi +cvy +oAi +aYr +aNo +olK +rXo +jyG +lVP +lVP +jyG +jyG +jyG +jyG +jyG +jyG +jyG +olK +aNo +coF +gGc +rtx +rGq +coF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aAx +abG +aub +aub +aub +apu +apg +arn +aNo +arz +aNo +akt +arM +aMk +aIz +ahQ +ahQ +ahQ +ahQ +aNx +aCx +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(155,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +rHE +rHE +rbY +rbY +rbY +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +ojG +ojG +ojG +ojG +ojG +ojG +ojG +uKX +eYU +nIZ +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +jrH +jrH +gbg +tSq +jrH +jrH +jrH +tRm +kUo +kUo +kUo +kUo +kUo +fZB +gKe +jrH +jrH +nHl +jnr +aYr +aNo +olK +vEa +xId +bAg +jyG +nvX +jyG +tdb +xhX +mya +mya +iDH +olK +aNo +coF +gGc +rtx +gGc +coF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arn +arn +aam +aRO +ant +apy +aam +arn +arn +arn +arn +arn +aNo +arz +aNo +akt +arM +aMk +ahQ +ahQ +ahQ +ahQ +arc +aNx +aCx +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(156,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +dZu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +uKX +uKX +nIZ +nIZ +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +nIZ +nIZ +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +uCU +rHs +kKb +tSq +jrH +xYc +jrH +wsl +mbQ +mbQ +mbQ +mbQ +mbQ +gKe +jrH +jrH +jrH +jrH +ijX +aYr +aNo +olK +xPl +lyA +lyA +jyG +olK +jyG +olK +olK +olK +olK +olK +olK +aNo +coF +ngh +rtx +ohf +coF +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +aNo +aNo +arz +aNo +akt +arM +aMk +ahQ +ahQ +ahQ +ahQ +ahQ +aNx +aCx +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +anb +aNw +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(157,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +uKX +uKX +nIZ +nIZ +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +sgM +nIZ +nIZ +uKX +uKX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +xEN +xEN +qhN +kSV +jrH +jrH +jrH +iVC +jrH +jrH +jrH +jrH +eqD +iVC +jrH +jrH +kSV +nDv +ijX +aYr +aNo +olK +lyA +lyA +olK +cnW +olK +vVt +olK +aNo +aNo +aNo +aNo +aNo +aNo +coF +gGc +rtx +gGc +fHq +eOL +eOL +eOL +eOL +eOL +eOL +eOL +eOL +gqu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +arM +aMk +ahQ +ahQ +ahQ +ahQ +ahQ +amE +aCx +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(158,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +uKX +uKX +nIZ +loR +nIZ +nIZ +nIZ +loR +nIZ +nIZ +bzF +bzF +bzF +uKX +uKX +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kSV +kSV +kSV +kSV +kSV +lSH +jRB +kSV +kSV +kSV +kSV +kSV +coF +coF +coF +noE +dYE +noE +coF +coF +coF +coF +coF +nKc +jBE +coF +coF +sng +gGc +sng +coF +coF +coF +coF +coF +coF +coF +gGc +rtx +gGc +gGc +rtM +jQm +ylv +jQm +jQm +eVB +jQm +kRl +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +aLp +aLp +aLp +aHj +akt +aqR +aqR +akt +akt +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(159,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +uKX +uKX +uKX +uKX +uKX +uKX +uKX +iku +iku +iku +iUZ +pnb +uKX +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +sja +bFy +vhq +vhq +vhq +isf +isf +jhT +aNo +snI +gGc +nsz +dru +gGc +dru +nsz +gGc +gGc +gGc +gGc +gGc +gGc +dru +gGc +gGc +gGc +gGc +gGc +gGc +gGc +dru +gGc +rGq +gGc +gGc +rtx +gGc +fHq +eOL +eOL +eOL +tUb +fLp +gRA +jQm +kbC +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +aMU +agf +apk +ahQ +akt +alA +alA +akt +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(160,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +aNo +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +aNo +ojG +dnS +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +iku +pZK +pZK +pZK +iku +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +nqy +bBs +bBs +vhq +isf +hyv +sja +aNo +snI +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +cTc +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +rtx +cTc +rtx +gGc +coF +aNo +aNo +eOL +kxo +jQm +kjx +jQm +oML +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +ahQ +agz +ahQ +aNr +akt +alA +asq +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(161,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +arz +aNo +aNo +aNo +aNo +aNo +aNo +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +aNo +aNo +aNo +aNo +aNo +aNo +aNo +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +iku +iXz +pZK +lDX +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +vhq +bBs +lpw +vhq +isf +gJa +sja +aNo +snI +gGc +gGc +gGc +gGc +gGc +gGc +gGc +dix +fef +gGc +gGc +rGq +gGc +gGc +gGc +gGc +wGY +fef +gGc +gGc +gPz +gGc +gGc +gGc +fef +gGc +hok +coF +aNo +aNo +eOL +ezH +jQm +ezH +jQm +xgC +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +ahQ +ags +ahQ +aDk +akt +alA +alA +akt +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +aZw +aZw +aZw +aNw +aud +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(162,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +ehd +rHE +aNo +arz +aNo +cqD +cqD +cqD +cqD +cqD +cqD +wRQ +ePf +tfX +vhr +tfX +lGS +wRQ +cqD +cqD +cqD +cqD +cqD +cqD +cqD +jtA +ojG +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +iku +pZK +pZK +pZK +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +rvK +bBs +bBs +vhq +isf +hyv +sja +aNo +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +gGc +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +coF +aNo +aNo +eOL +deH +jQm +cru +jQm +mSM +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +alC +akt +akt +akt +akt +alA +alA +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +erE +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZw +anb +anb +anb +anb +aud +aNw +anb +aNw +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(163,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +arz +aNo +cqD +wRQ +pvA +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +pvA +wRQ +wRQ +wRQ +bKH +bKH +kni +bKH +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +iku +pZK +pZK +pZK +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +vhq +bBs +bBs +vhq +isf +hyv +sja +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +sZq +rkc +sZq +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +eOL +obI +jQm +kAW +jQm +mSM +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +ahQ +ahQ +ava +aOk +akt +alA +alA +alA +alA +alA +aig +alA +alA +alA +alA +alA +aig +alA +anB +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZw +anb +amS +aaK +anb +ahg +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aMy +aMy +aMy +adu +aMy +aMy +aMy +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(164,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +sST +rHE +rHE +rbY +rbY +rHE +rHE +sST +aNo +arz +aNo +cqD +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +wRQ +bKH +bKH +kni +bKH +ojG +afj +afj +afj +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +pZK +pZK +pZK +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +vhq +bBs +bBs +vhq +isf +gJa +sja +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sZq +kDI +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eOL +jUb +dLt +jQm +jQm +ggL +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +amg +ahQ +ahQ +aSL +akt +alA +alA +alA +alA +alA +alA +asW +asq +alA +alA +alA +alA +alA +anB +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZw +anb +amS +aaK +anb +aAR +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +"} +(165,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +arz +aNo +cqD +cqD +cqD +xmL +cqD +cqD +cqD +cqD +cqD +xmL +cqD +cqD +cqD +cqD +cqD +xmL +cqD +cqD +cqD +cqD +cqD +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +pZK +lew +pZK +pZK +pZK +lew +pZK +pZK +pZK +lew +pZK +pZK +pZK +eXU +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +nqy +bBs +bBs +vhq +isf +hyv +sja +aNo +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +sZq +rkc +sZq +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eOL +mnV +oML +rtP +uTp +jxt +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +akt +asD +asD +akt +akt +akt +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZw +anb +amS +aaK +anb +ahg +anb +anb +anb +aoE +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +arz +arz +arz +arz +"} +(166,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +aNo +cqD +fpS +fpS +fpS +fpS +lbk +cqD +fpS +fpS +fpS +fpS +lbk +cqD +fpS +fpS +fpS +fpS +lbk +cqD +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +pZK +pZK +pZK +pZK +pZK +uXU +pZK +pZK +cPq +pZK +uXU +pZK +pZK +pZK +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +rVW +bBs +vhq +cmn +wRN +isf +sja +aNo +arz +aNo +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +kDI +sZq +sZq +sZq +sZq +pOw +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +eOL +eOL +eOL +eOL +eOL +eOL +eOL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +adF +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +akt +aYV +aYV +akt +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aZw +anb +anb +anb +anb +aud +anb +anb +anb +aoE +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +arz +arz +arz +"} +(167,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +aNo +cqD +cXB +eGs +xrB +wKi +mKn +cqD +mKn +jVF +xrB +jVF +mKn +cqD +mKn +jVF +xrB +jVF +mKn +cqD +afj +afj +ojG +epL +kni +bKH +ojG +afj +afj +afj +iku +iXz +pZK +pZK +rMU +pZK +pZK +pZK +cZI +pZK +pZK +pZK +cZI +pZK +pZK +pZK +pZK +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +vhq +vhq +ivz +pYa +sja +sja +sja +aNo +arz +aNo +sZq +qFp +kqy +nKy +kDI +kDI +kDI +nKy +kDI +kDI +kDI +hQb +bjN +xjg +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arR +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +akt +aXD +aXD +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +aZw +aZw +aZw +aNw +aud +anb +anb +anb +aoE +arz +arz +arz +arz +aoE +aoE +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +afk +afk +afk +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aoE +aoE +arz +arz +arz +arz +"} +(168,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +rHE +aNo +arz +aNo +cqD +fbS +fbS +fbS +fbS +fbS +cqD +fbS +fbS +fbS +fbS +fbS +cqD +fbS +fbS +fbS +fbS +fbS +cqD +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +iku +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +sja +aNo +aNo +aNo +aNo +arz +aNo +sZq +kqy +kDI +kDI +kDI +kDI +kDI +kDI +kDI +kDI +bjN +kqy +bjN +bjN +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +akt +akt +akt +akt +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aNw +anb +aNw +aoE +arz +arz +arz +aoE +aoE +aMy +aMy +adu +aMy +aMy +aMy +aMy +afk +afk +aMy +aMy +adu +aMy +aMy +afk +afk +aMy +aMy +aMy +aMy +adu +aMy +gZk +aoE +aoE +arz +arz +arz +"} +(169,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +ehd +rHE +rHE +rbY +rbY +rHE +rHE +aNo +aNo +aNo +cqD +rPs +rPs +rPs +rPs +rPs +cqD +vaN +nOB +vaN +vaN +vaN +cqD +ldC +hrk +hrk +hrk +ldC +cqD +afj +afj +ojG +dnS +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +xLv +xLv +bjX +xeE +xeE +xOE +xLv +pUz +bOJ +bOJ +mzJ +pNl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +wTd +wTd +wTd +wTd +wTd +wTd +wTd +wTd +wTd +wTd +bjN +bjN +wTd +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +arz +aoE +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aoE +arz +arz +arz +"} +(170,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +dZu +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +aNo +cqD +rPs +rPs +rPs +hMF +rPs +cqD +vaN +vaN +vaN +vaN +vaN +cqD +hrk +hrk +hrk +cPC +hrk +cqD +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +xLv +xLv +tvM +oeo +iki +xLv +xeE +pUz +bOJ +bOJ +jrv +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +bIg +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +"} +(171,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rbY +rHE +rHE +rHE +aNo +aNo +cqD +hMF +rPs +rPs +rPs +rPs +cqD +vaN +vaN +vaN +vaN +nOB +cqD +cPC +hrk +nHx +hrk +ldC +cqD +afj +afj +ojG +bKH +kni +mSc +ojG +afj +afj +afj +iku +iXz +pZK +iku +afj +pUu +xeE +xLv +vtX +puA +xLv +xLv +xeE +pUz +bOJ +bOJ +bOt +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +jkj +jkj +isv +xeQ +xeQ +xeQ +pXS +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aMy +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +aMy +aoE +arz +arz +"} +(172,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +dZu +dZu +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +aNo +cqD +rPs +hMF +rPs +rPs +rPs +cqD +nOB +vaN +vaN +vaN +vaN +cqD +hrk +hrk +hrk +ldC +hrk +cqD +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +kJS +lZE +sEI +xCw +hmc +xLv +hmc +pUz +bOJ +bOJ +cqW +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +vZC +jkj +jkj +eZs +jkj +jkj +jkj +eZs +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +arz +aoE +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aoE +arz +arz +"} +(173,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +xdn +rHE +rHE +rHE +rbY +rbY +rHE +xdn +rHE +aNo +aNo +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +cqD +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +iKG +lZE +sEI +hmc +hmc +xLv +hmc +pUz +bOJ +bOJ +bOJ +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +mED +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +fQk +jkj +eZs +jkj +oIw +jkj +mOq +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +arz +aoE +aoE +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +adu +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +aoE +arz +"} +(174,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +iKG +lZE +sEI +xCw +hmc +xLv +xLv +pUz +bOJ +bOJ +bOJ +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +jkj +jkj +eZs +jkj +jkj +jkj +eZs +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +aNo +ayB +ayB +ayB +ayB +ayB +ayB +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aNw +anb +aNw +aoE +arz +aoE +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aoE +arz +"} +(175,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +dZu +dZu +dZu +rHE +dZu +rHE +rHE +rbY +rbY +rHE +ehd +rHE +aNo +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +iXz +pZK +iku +afj +pUu +iKG +lZE +sEI +xCw +hmc +hmc +xeE +pUz +bOJ +bOJ +jrv +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +bIg +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +jkj +jkj +pWY +xeQ +xeQ +xeQ +pWY +jkj +jkj +jkj +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +arz +arz +aNo +ayB +aHa +aHa +aHa +aHa +ayB +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aoE +aoE +aoE +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +adu +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +arz +"} +(176,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +aNo +afj +afj +afj +afj +agw +aHS +aNR +aHS +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +iKG +lZE +sEI +xCw +dTm +xeE +xeE +pUz +bOJ +bOJ +bOt +pUu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sja +pLk +pLk +sja +aNo +arz +arz +arz +arz +arz +aNo +sZq +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +jkj +fQk +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aET +abG +aub +aub +aub +arn +aNo +arz +arz +aNo +ayB +aHt +aHa +aJd +aHt +ayB +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aNw +anb +aAR +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +arz +"} +(177,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rHE +rHE +meT +uSO +meT +iFx +rHE +rHE +rbY +rbY +rHE +rHE +rHE +aNo +aNo +afj +afj +afj +aHS +aMi +aak +aOr +ayr +aHS +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +iKG +lZE +sEI +xCw +wKd +xeE +xeE +pUz +bOJ +bOJ +cqW +pUu +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +sja +pLk +pLk +sja +aNo +aNo +aNo +aNo +aNo +arz +aNo +sZq +wTd +wTd +wTd +wTd +wTd +bjN +bjN +bjN +wTd +wTd +wTd +wTd +wTd +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +aub +aub +aub +aEe +aEB +abG +aub +aub +aub +arn +aNo +aNo +aNo +aNo +ayB +aJd +ann +acx +aHt +ayB +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aNw +anb +aAR +adu +adu +adu +adu +afk +adu +adu +adu +adu +adu +adu +aUu +adu +aMy +asJ +aMy +adu +adu +adu +adu +adu +adu +adu +adu +afk +adu +adu +adu +adu +aoE +arz +"} +(178,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +baR +hrO +hrO +edS +hrO +baR +baR +vtr +hrR +baR +aGI +aYr +aNo +aNo +afj +afj +afj +aoO +aak +aML +aPB +aMi +aHS +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +dnS +kni +bKH +ojG +afj +afj +afj +iku +pZK +pZK +iku +afj +pUu +iKG +lZE +sEI +xCw +dTm +xeE +xeE +pUz +bOJ +bOJ +mIg +pUu +pUu +pUu +pUu +pUu +hmc +pUu +sjp +sja +sja +sja +sja +sja +sja +sja +sja +sja +sja +pYa +pLk +pLk +pYa +sja +sja +sja +sja +aNo +arz +aNo +sZq +suz +bjN +kDI +kDI +kDI +kDI +kDI +kDI +kDI +kDI +kDI +kDI +kDI +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +arn +arn +arn +azr +azr +azr +azr +azr +arn +arn +arn +aNo +aNo +ayB +ayB +ayB +ayB +ahv +ahv +ayB +ayB +nLr +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +apL +iBo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +anb +anb +anb +aNw +anb +aAR +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +arz +"} +(179,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +bPP +hAz +uYC +vGe +baR +uYC +uFT +uFT +uYC +baR +aNo +aNo +aNo +afj +afj +afj +aoO +aak +aes +aQC +aRp +aak +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +ojG +afj +afj +afj +iku +iXz +pZK +iku +afj +pUu +hmc +hmc +hmc +xLv +xLv +xeE +xeE +pUz +xeE +xeE +xeE +xeE +xeE +xOE +hmc +kMw +hmc +lpg +sjp +iKp +vhq +vhq +vhq +vhq +vhq +vhq +vhq +vhq +vhq +pag +vhq +vhq +pag +rVW +vhq +vhq +sja +aNo +arz +aNo +sZq +bjN +kDI +gTp +kDI +kDI +kDI +gTp +kDI +kDI +kDI +gTp +kDI +kDI +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +ayB +ahC +aWg +aWg +aWg +aWg +aWg +aWg +aWg +apL +aic +aJL +aic +aic +abd +ajW +aJL +aic +aic +aJL +abd +aic +aic +apL +aBQ +aEW +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +adu +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +arz +"} +(180,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +uYC +uYC +uYC +uYC +baR +uYC +uFT +uFT +uYC +baR +aNo +arz +aNo +afj +afj +afj +afj +aiM +aVD +aVD +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +hnp +hnp +hnp +hnp +hnp +htb +hnp +tQQ +afj +pUu +xLv +hmc +xeE +xeE +xLv +xeE +xeE +scT +wyH +wyH +wyH +wyH +wyH +wyH +wyH +hmc +gIr +kkK +sjp +sjp +sfA +bBs +lpw +bBs +bBs +bBs +cnA +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +vhq +sja +aNo +arz +aNo +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +sZq +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +ayB +aWg +aeX +aFp +aeX +aeX +aeX +aeX +aWg +azf +aJL +aJL +aJL +aic +aic +aJL +aJL +agF +aJL +aJL +aJL +aic +aic +azc +aJL +aWI +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aMy +aoE +arz +"} +(181,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +baR +baR +raw +baR +baR +oGD +uFT +uFT +jME +baR +aNo +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +kni +bKH +hnp +pUe +lDC +sLG +uVx +dgs +gMx +hnp +afj +pUu +xeE +xeE +xeE +xLv +xeE +xeE +xeE +pUz +xeE +xeE +xeE +xeE +xeE +wyH +xeE +hmc +lpg +hmc +sjp +sjp +sjp +iKp +vhq +vhq +vhq +vhq +vhq +vhq +qMo +vhq +vhq +vhq +qMo +vhq +bBs +qMD +sja +aNo +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +anv +anv +anv +anv +vcs +aPp +aeX +aeX +aeX +aeX +agG +aeX +ake +apL +abd +aJL +aJL +aic +aic +abd +aLt +aJL +aJL +aJL +aJL +aic +aic +apL +aMl +aJL +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +adu +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +afk +aMy +aMy +aMy +aMy +aoE +aoE +arz +"} +(182,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +uYC +uYC +uYC +uYC +baR +uYC +uFT +uFT +uYC +baR +aNo +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +ojG +bKH +bKH +bKH +hnp +dgs +dgs +dgs +dgs +dgs +lUd +hnp +afj +pUu +xeE +ian +xeE +xeE +xeE +ian +xeE +pUz +xeE +xeE +ian +tVa +olm +olm +vDj +nyu +pUu +pUu +sjp +nBg +nBg +rCK +rCK +rCK +nBg +wGz +wGz +wGz +nBg +nBg +vIs +faD +cUd +vhq +bBs +rgd +sja +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +anv +ayu +afR +acc +aaj +anv +aWg +aeX +aeX +aeX +aeX +aeX +aeX +adP +apL +auQ +aJL +auQ +apL +apL +apL +apL +apL +apL +aDz +aDz +apL +apL +apL +apL +apL +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aoE +arz +arz +"} +(183,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +oGD +uYC +uYC +uYC +baR +uYC +uFT +uFT +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +kni +kni +hwN +dgs +dgs +uOC +uOC +uOC +rYc +hnp +afj +pUu +pUu +pUu +pUu +pUu +pUu +pUu +pUu +pUu +pUu +pUu +pUu +tVa +gvm +vRe +hBp +tVa +afj +afj +afj +afj +nBg +wGz +wGz +wGz +bOK +wGz +wGz +wGz +wGz +rCK +wGz +wGz +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +anv +anv +anv +anv +anv +anv +aCe +ahp +ahp +acL +anv +aWg +aeX +aeX +aeX +aeX +aeX +aeX +aWF +apL +auQ +aJL +auQ +apL +aNo +aNo +aNo +aNo +apL +aps +aps +apL +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aMy +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +aMy +aoE +arz +arz +"} +(184,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +uYC +uYC +uMT +uYC +baR +fio +uFT +uFT +fio +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +ojG +kni +kni +uVs +hnp +hnp +hnp +dgs +uOC +uOC +uOC +vxE +hnp +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +tVa +vjI +uQH +uQH +tVa +afj +nBg +nBg +nBg +nBg +wGz +sOs +lNP +lNP +lNP +lNP +dSQ +wGz +rCK +nvj +ttP +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +awC +aAU +aAU +aAU +aAU +aBc +aAU +ahp +ahp +aAU +ayA +aWg +aeX +aeX +aeX +aeX +aeX +aeX +aer +apL +auQ +aJL +auQ +apL +aNo +arz +arz +aNo +apL +acJ +acJ +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +adu +adu +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +"} +(185,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +uYC +uYC +uYC +uYC +baR +baR +vtr +vtr +baR +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +kni +mIW +hnp +rHB +hwN +dgs +dgs +dgs +dgs +lUd +hnp +afj +afj +afj +mzY +mzY +mzY +mzY +mzY +mzY +mzY +mzY +xcz +afj +tVa +tVa +uwM +tVa +tVa +afj +nBg +wGz +leN +utK +wGz +lNP +lNP +lNP +lNP +lNP +lNP +wGz +rCK +mcP +wGz +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aAU +aAU +aAU +aAU +aAU +aBc +aAU +ahp +ahp +aAU +ayA +aWg +aeX +aeX +aeX +aeX +aeX +aFp +adP +apL +apL +apL +apL +apL +aNo +arz +arz +aNo +apL +apL +apL +apL +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +adu +aMy +aMy +adu +aMy +aMy +aMy +aMy +aoE +arz +arz +arz +"} +(186,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +fio +uYC +uYC +fio +baR +uYC +uFT +uFT +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +byO +kni +kni +bQb +hnp +bSI +hnp +keM +eSD +keM +keM +tUX +hnp +afj +afj +afj +mzY +xjM +hyT +xjM +mzY +xjM +xjM +xjM +mzY +afj +tVa +wtk +hBp +kbW +tVa +afj +nBg +leN +wGz +utK +wGz +exd +lNP +lNP +lNP +lNP +xVJ +wGz +rCK +kta +ogL +nBg +vhq +cnA +vhq +sja +aNo +arz +arz +arz +aNo +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +cNZ +eff +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aAU +aAU +aAU +aAU +aAU +aBc +aAU +ahp +ahp +aAU +ayA +aWg +aeX +agG +aeX +aeX +aeX +aeX +ace +ayB +aNo +aNo +aNo +aNo +aNo +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +adu +aMy +aMy +aMy +aMy +afk +afk +aMy +aMy +adu +aMy +aMy +afk +afk +aMy +aMy +aMy +aMy +adu +aMy +aMy +aoE +aoE +arz +arz +arz +"} +(187,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +baR +raw +baR +baR +baR +oGD +uFT +uFT +jME +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +ojG +ojG +hnp +hnp +hnp +hnp +hnp +hnp +hnp +hnp +hnp +afj +afj +afj +mzY +rSo +dsC +fPQ +mzY +xjM +jUD +xjM +mzY +afj +tVa +jlI +mgw +vtU +tVa +afj +nBg +lRV +leN +utK +wGz +lNP +lNP +lNP +lNP +lNP +lNP +wGz +rCK +fvQ +wGz +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +cNZ +wHI +fym +owF +gUA +xkB +upg +xkB +upg +ish +fym +cNZ +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aPU +aPU +aPU +anv +anv +anv +aCe +aol +ahp +aYk +anv +aPp +aWg +aWg +aWg +aWg +aWg +aWg +aWg +ayB +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +afk +afk +afk +afk +afk +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aoE +aoE +arz +arz +arz +arz +"} +(188,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +uYC +uYC +pni +uYC +baR +oGD +uFT +uFT +jME +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +ojG +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +mzY +dPz +xjM +xjM +mzY +xjM +xjM +jUD +mzY +afj +tVa +tVa +tVa +tVa +tVa +afj +nBg +nBg +nBg +nBg +wGz +iCk +lNP +lNP +lNP +lNP +xov +wGz +rCK +nvj +ttP +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +cNZ +fED +kZC +fym +fym +fym +qFa +fym +qFa +fym +fym +cNZ +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aPU +aPU +aPU +anv +aNo +anv +aAk +agi +agi +ayU +anv +aza +aza +aza +aEH +aEH +aza +aza +aza +ayB +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +arz +arz +arz +"} +(189,1,1) = {" +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +baR +uYC +uYC +uYC +uYC +baR +uYC +uFT +uFT +uYC +baR +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +ojG +afj +ojG +ojG +ojG +ojG +ojG +ojG +ojG +ojG +uNb +cqZ +afj +afj +mzY +prp +prp +prp +mzY +jUD +xjM +xjM +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +nBg +wGz +wGz +wGz +bsL +wGz +wGz +wGz +wGz +rCK +wGz +wGz +nBg +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +cNZ +uot +fym +dWt +kRR +kRR +fym +fym +fym +dWt +nyp +cNZ +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aBc +anv +aBc +anv +aNo +anv +anv +anv +anv +anv +aai +anu +aFv +aza +aWg +aWg +aza +adf +aoZ +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +arz +arz +arz +arz +arz +arz +"} +(190,1,1) = {" +arz +aNo +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +akH +aNo +aNo +baR +uYC +uYC +uYC +uYC +baR +vtr +baR +vtr +baR +baR +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +kni +kni +ojG +ojG +ojG +bKH +mLH +wWN +bKH +mLH +bKH +ojG +ojG +ojG +mzY +mzY +mzY +fwg +fwg +fwg +rWz +fwg +fwg +fwg +mzY +sja +sja +sja +sja +sja +sja +sja +sja +sja +sja +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +nBg +qMo +bBs +rgd +sja +aNo +arz +arz +arz +aNo +cNZ +jts +fym +dan +flC +dan +fym +fym +fym +fym +fym +cNZ +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aAU +anv +aAU +anv +aNo +aNo +aNo +aNo +aNo +aNo +aai +aZd +aFv +aza +aEH +aEH +aza +adf +aoZ +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aMy +aMy +aMy +aMy +aMy +aMy +adu +aMy +aMy +aMy +aMy +aMy +aMy +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +"} +(191,1,1) = {" +arz +aNo +vqZ +jDi +ltG +ydy +ltG +ltG +jDi +ltG +ydy +ltG +ltG +jDi +ltG +ydy +ltG +ltG +jDi +vqZ +aNo +aNo +baR +uYC +uYC +uYC +uYC +uYC +uYC +uYC +uYC +uYC +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +bKH +bKH +bKH +bKH +bKH +kni +kni +kni +kni +bKH +bKH +bKH +bKH +sUe +jIt +oNV +xVU +xVU +xVU +kor +xVU +xVU +xVU +eAz +vhq +vhq +vhq +vhq +pag +nOf +tER +vhq +rVW +vhq +vhq +vhq +vhq +vhq +pag +nOf +vhq +cao +vhq +vhq +vhq +vhq +vhq +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +cNZ +usS +usS +usS +usS +usS +usS +sst +usS +usS +usS +cNZ +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aAU +anv +aAU +anv +aNo +arz +arz +arz +arz +aNo +aai +afo +aFv +aMh +avl +aWg +aMh +adf +aqG +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aMy +aMy +aMy +adu +aMy +aMy +aMy +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(192,1,1) = {" +arz +aNo +vqZ +jDi +kdM +gDg +oXe +bWx +jDi +kdM +gDg +oXe +bWx +jDi +ltG +ltG +xgs +ltG +jDi +vqZ +aNo +aNo +baR +fio +uYC +uYC +uYC +uYC +uYC +uYC +uYC +hme +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +dnS +kni +kni +kni +kni +bKH +kni +kni +kni +kni +kni +kni +kni +bKH +kRe +itz +xjM +xjM +xjM +xjM +xjM +xjM +xjM +xjM +ffD +bBs +bBs +bBs +cnA +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +bBs +xzA +bBs +bBs +bBs +bBs +bBs +bBs +bBs +vhq +sja +aNo +arz +arz +arz +aNo +nxx +jBF +mqB +mqB +mqB +mqB +mqB +mqB +mqB +wMZ +wMZ +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +anv +aBc +anv +aBc +anv +aNo +arz +arz +arz +arz +aNo +aai +aZd +aFv +aMh +aWg +aMh +aMh +adf +aoZ +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(193,1,1) = {" +arz +aNo +vqZ +jDi +kdM +gDg +oXe +xUH +jDi +kdM +ejs +oXe +xUH +jDi +ltG +ltG +ltG +ltG +iNa +vqZ +aNo +aNo +baR +uYC +uYC +uYC +uYC +uYC +uYC +uYC +sTX +uYC +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +bKH +sUe +itz +xjM +xjM +xjM +xjM +xjM +xjM +xjM +xjM +eAz +vhq +tER +vhq +vhq +vhq +vhq +vhq +vhq +vhq +vhq +rVW +vhq +vhq +rVW +vhq +vhq +vhq +cao +vhq +vhq +vhq +vhq +vhq +vhq +bBs +vhq +sja +aNo +arz +arz +arz +aNo +nxx +mqB +mqB +mqB +mqB +mqB +mqB +mqB +wMZ +wMZ +mFi +nxx +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aBD +aCA +aBK +aey +aNo +arz +arz +arz +arz +aNo +aai +aLU +aFv +aMh +aMh +aMh +aMh +adf +axy +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(194,1,1) = {" +arz +aNo +vqZ +jDi +kdM +gDg +jSt +jyc +jDi +kdM +ejs +jSt +jyc +jDi +ltG +ltG +ltG +ltG +jDi +vqZ +aNo +aNo +baR +baR +baR +baR +oGD +uYC +uYC +uYC +uYC +uYC +jME +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +ojG +ojG +ojG +ojG +ojG +ojG +pxJ +ojG +bxm +bxm +bxm +bxm +ojG +ojG +ojG +mzY +njF +njF +njF +njF +njF +uZQ +xjM +xjM +xjM +mzY +sja +sja +sja +sja +sja +sja +sja +sja +isf +isf +isf +isf +isf +isf +isf +sja +sja +sja +sja +sja +vhq +vhq +sja +vhq +bBs +vhq +sja +aNo +aNo +aNo +aNo +aNo +nxx +mqB +jqU +nxx +nxx +nxx +nxx +nxx +nxx +wMZ +wMZ +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +pdX +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aBD +aCA +apQ +aey +aNo +arz +arz +arz +arz +aNo +aai +apJ +aQl +aWg +aMh +aYK +aYK +aVl +aNz +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(195,1,1) = {" +arz +aNo +vqZ +tRW +kdM +gDg +oXe +jyc +jDi +kdM +ejs +lZa +jyc +jDi +xuC +ltG +ltG +ltG +jDi +vqZ +aNo +aNo +baR +vGe +bPP +hrO +uYC +uYC +uYC +sTX +uYC +uYC +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +qym +wth +nRP +wft +iRL +jJB +axF +afj +afj +mzY +ydM +iVz +ydM +iVz +uBx +gOg +xjM +xjM +xjM +mzY +afj +afj +afj +afj +afj +afj +afj +sja +kQc +hcK +hcK +neA +hcK +hcK +jOY +sja +afj +afj +afj +sja +dWA +dWA +sja +vhq +cnA +vhq +okE +okE +okE +ryu +aNo +aNo +nxx +mqB +mqB +nxx +cbk +blz +uOu +eQj +nxx +wMZ +wMZ +qMF +rts +vGc +oos +oos +oos +fvE +kGj +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aey +aqH +alq +aiC +aey +aNo +aNo +aNo +aNo +aNo +aNo +aai +aTO +aZl +anJ +avB +aqy +aOy +akU +afJ +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(196,1,1) = {" +arz +aNo +vqZ +jDi +kdM +gDg +oXe +jyc +jDi +kdM +gDg +oXe +jyc +jDi +kdM +gDg +oXe +bWx +jDi +vqZ +aNo +aNo +baR +hme +vSs +edS +uYC +uYC +uYC +uYC +uYC +sTX +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +qym +wth +sJE +vLs +vLs +sJE +wth +afj +afj +mzY +uJr +lkV +uJr +trZ +iTd +gOg +xjM +xjM +xjM +mzY +afj +afj +afj +afj +afj +afj +afj +sja +sja +sja +sja +sja +sja +sja +sja +sja +afj +afj +afj +sja +dWA +dWA +sja +vhq +bBs +vhq +okE +iWf +eky +okE +aNo +aNo +nxx +mqB +pCG +mqB +cbk +cbk +uOu +eQj +nxx +wMZ +wMZ +mbf +wMZ +wMZ +wMZ +wMZ +wMZ +wMZ +oos +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aey +aey +aey +aey +aqH +alq +ajl +aey +aey +aey +aey +isX +aNo +aNo +aai +aai +aai +aai +aai +aai +aai +aai +aai +aai +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(197,1,1) = {" +arz +aNo +vqZ +jDi +kdM +uzy +hdA +xZR +jDi +kdM +uzy +hdA +xZR +jDi +kdM +ejs +oXe +xUH +jDi +vqZ +aNo +aNo +baR +uYC +fxF +baR +uYC +uYC +iHm +uYC +uYC +uYC +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +sJE +qnK +sJE +tMk +sJE +sJE +wth +afj +afj +mzY +sUe +sUe +sUe +sUe +sUe +sUe +sUe +kRe +sUe +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +pVe +afj +sja +vhq +bBs +vhq +iWf +eXf +sQo +okE +aNo +aNo +nxx +mqB +pCG +mqB +cbk +cbk +uOu +eQj +nxx +mqB +mqB +srf +mqB +mqB +lkE +mqB +mqB +mqB +oos +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +ahI +azk +alq +aZH +aqH +alq +aqr +aey +akI +ahT +atz +aey +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(198,1,1) = {" +arz +aNo +vqZ +jDi +cSv +pnc +nSe +kNj +jDi +cSv +pnc +nSe +kNj +jDi +kdM +ejs +jSt +jyc +iNa +vqZ +aNo +aNo +baR +raw +baR +baR +oGD +uYC +uYC +ciB +sTX +uYC +jME +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +wth +wth +wth +wth +wth +jBR +wth +afj +afj +mzY +eij +wUw +wUw +wUw +wUw +iXA +xjM +xjM +xjM +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +dWA +afj +sja +vhq +bBs +vhq +okE +iWf +muZ +okE +aNo +aNo +nxx +mqB +mqB +nxx +cbk +uOu +uOu +eQj +nxx +mqB +mqB +jBA +yeu +uhW +yeu +vju +hjB +hjB +vTT +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aNv +arj +alq +aey +aqH +alq +aqr +aZH +alq +alq +alq +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(199,1,1) = {" +arz +aNo +vqZ +jDi +ltG +ltG +ltG +ltG +jDi +ltG +ltG +ltG +ltG +jDi +kdM +ejs +oXe +jyc +jDi +vqZ +aNo +aNo +baR +uYC +uYC +uYC +uYC +sTX +uYC +ciB +ciB +ciB +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +orr +sJE +sJE +sJE +wth +afj +afj +mzY +xjM +igt +dDU +xjM +igt +xjM +xjM +xjM +dDU +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +aKq +afj +sja +vhq +bBs +vhq +okE +eXf +jpM +okE +aNo +aNo +nxx +mqB +lnj +nxx +nxx +nxx +nxx +nxx +nxx +mqB +mqB +nxx +nxx +nxx +nxx +tBk +xNT +foy +tBk +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +akW +avS +avS +aqc +aqH +aOG +aqr +aey +alq +aEp +alq +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(200,1,1) = {" +arz +aNo +vqZ +tRW +cRK +ltG +ltG +ltG +ofE +ltG +ltG +ltG +ltG +jDi +kdM +ejs +oXe +jyc +jDi +vqZ +baR +baR +baR +oGD +uYC +uYC +uYC +uYC +ciB +ciB +dPS +ciB +uMT +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +uhR +sJE +sJE +wLZ +wth +afj +afj +mzY +wkE +xjM +xjM +xjM +iFR +xjM +xjM +xjM +xjM +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +vhq +iKp +iKp +okE +iWf +sQo +okE +aNo +aNo +nxx +mqB +mqB +mqB +mqB +mqB +mqB +mqB +mqB +mqB +jqU +nxx +aNo +aNo +nxx +vTc +mqB +mqB +phk +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +abS +aDM +avS +aqc +aqH +alq +aqr +aqc +aGZ +aEp +aOe +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(201,1,1) = {" +arz +aNo +puQ +ltG +ltG +xuC +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +kdM +uzy +hdA +xZR +ltG +pNo +uMT +uYC +uYC +uYC +uYC +sTX +uYC +ciB +dPS +ciB +hme +ciB +uMT +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +wth +wth +wth +wth +wth +wth +afj +afj +mzY +mzY +mzY +mzY +mzY +mzY +mzY +mzY +mzY +mzY +mzY +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +iKp +afj +afj +okE +okE +okE +okE +aNo +aNo +nxx +ohO +mqB +ePK +mqB +mqB +fXG +mqB +mqB +mqB +mqB +nxx +aNo +aNo +nxx +vTc +mqB +mqB +phk +nxx +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aNv +arj +avS +aqc +aqH +alq +aqr +aqc +avS +aYR +avS +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(202,1,1) = {" +arz +aNo +puQ +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +xgs +ltG +cSv +pnc +nSe +kNj +ltG +pNo +uYC +lEu +uYC +uYC +uMT +uYC +uYC +uYC +ciB +ciB +sTX +uYC +uMT +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +sja +afj +afj +afj +aYr +aNo +aNo +aNo +aNo +aNo +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +nxx +aNo +aNo +nxx +tBk +xNT +foy +tBk +nxx +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +akf +aXv +aLJ +aey +aqH +alq +aqr +aqc +aDM +aVV +avS +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(203,1,1) = {" +arz +aNo +puQ +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +tXq +ltG +pst +oCV +uYC +uYC +uYC +uYC +uYC +gwE +dPS +uYC +ciB +uYC +brg +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +aNo +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +nlM +lyv +mtu +mtu +lyv +vlF +vlF +vlF +vlF +kWF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aey +aey +aey +aey +aqH +alq +apd +aey +aey +aey +aey +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(204,1,1) = {" +arz +aNo +puQ +ltG +xgs +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +ltG +pNo +ltG +uYC +uYC +uMT +uYC +uYC +uYC +uYC +hme +uYC +uYC +uYC +pst +uYC +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +riC +vJV +vJV +riC +wkG +feL +dlk +qRz +vlF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aey +aqH +alq +acY +aey +apx +azk +akI +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(205,1,1) = {" +arz +aNo +vqZ +koR +cXa +cXa +cXa +cXa +cXa +cXa +cXa +cXa +cXa +crz +ltG +ltG +ltG +ltG +jDi +vqZ +baR +baR +baR +baR +baR +baR +uYC +uYC +uYC +uYC +uYC +baR +baR +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +gYK +xmt +vJV +riC +wkG +vLv +dWe +vLv +vlF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aqH +alq +aUV +aZH +alq +alq +aEp +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(206,1,1) = {" +arz +aNo +vqZ +tcK +tcK +fjK +tcK +nxD +tcK +fjK +tcK +tcK +tcK +tcK +ltG +ltG +ltG +ltG +jDi +vqZ +aNo +aNo +aNo +aNo +aNo +baR +pnl +pnl +edZ +pnl +pnl +baR +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +afj +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +riC +vJV +vJV +riC +wkG +oxx +vLv +rDg +vlF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aqH +alq +aqr +aey +aOG +aGZ +air +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aWx +aWx +aWx +aWx +aWx +aWx +aWx +aAt +aAt +aAt +fea +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(207,1,1) = {" +arz +aNo +vqZ +tcK +tcK +tcK +tcK +tcK +tcK +tcK +tcK +tcK +tcK +vpS +ltG +ltG +xgs +ltG +iNa +vqZ +aNo +arz +arz +arz +aNo +baR +edZ +edZ +edZ +edZ +edZ +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +riC +vJV +vJV +riC +wkG +vLv +vLv +vLv +vlF +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aqH +alq +aqr +aqc +alq +alq +aXM +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(208,1,1) = {" +arz +aNo +vqZ +pOk +jpF +eJv +tcK +qGC +rLR +geV +ugs +ugs +ugs +dnf +ltG +ltG +ltG +ltG +jDi +vqZ +aNo +arz +arz +arz +aNo +baR +baR +rSt +edZ +edZ +edZ +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +sWl +sWl +sWl +sWl +sWl +sWl +nXT +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +xEP +vvC +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +shY +vJV +vJV +riC +fHn +nSW +kam +rXr +vlF +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aey +aqH +aOG +aqr +aqc +alq +aGZ +aXM +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(209,1,1) = {" +arz +aNo +vqZ +vqZ +vqZ +vqZ +jte +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +vqZ +aNo +arz +arz +arz +aNo +baR +uQI +edZ +edZ +edZ +pgK +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +ozz +lwG +lwG +ozz +lwG +lwG +hjV +xEP +dIH +yhM +dIH +uwk +uxn +dQa +nQJ +nQJ +nQJ +nQJ +nQJ +iqp +pZl +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +fBv +vJV +vJV +cms +vlF +vlF +vlF +vlF +vlF +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aey +aqH +alq +aqr +aqc +alq +acu +aXM +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(210,1,1) = {" +arz +aNo +aNo +qiU +nqs +nqs +nqs +nqs +nqs +qiU +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +aNo +baR +uYl +uYl +uYl +bZa +uYl +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +ozz +ozz +ozz +gpj +ozz +ozz +qLk +xEP +dIH +eMs +dIH +oBA +fUS +fUS +fUS +fUS +fUS +fUS +fUS +mOs +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +uTE +vJV +vJV +riC +eBc +riC +kAS +riC +riC +riC +djq +riC +qGR +riC +xJD +riC +riC +riC +djq +riC +riC +riC +kAS +riC +riC +riC +wfY +nlM +aNo +aNo +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aNi +aey +aqH +alq +aqr +aey +aey +aey +aey +aey +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(211,1,1) = {" +arz +arz +aNo +qiU +wOo +yhc +poP +qhh +rUc +qiU +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +baR +baR +baR +baR +baR +baR +baR +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +ozz +jJJ +lwG +pYd +pYd +ozz +ozz +xEP +vUI +eMs +eMs +gov +eMs +eMs +eMs +eMs +eMs +eMs +gov +can +piJ +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +rnF +vJV +vJV +vJV +vLa +vLa +vLa +vLa +vLa +vLa +say +vLa +vLa +vLa +vLa +vLa +vLa +vLa +vLa +vLa +vLa +iLb +vLa +vLa +vJV +vJV +xIo +nlM +aNo +aNo +aNi +ahf +atd +aBj +aBj +aBj +aBj +atd +aBj +aFz +gAB +aFU +aNi +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(212,1,1) = {" +arz +arz +aNo +qiU +qiU +qiU +qiU +qiU +qiU +qiU +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +lwG +ozz +ozz +ozz +ozz +ozz +ceV +xEP +xiq +dIH +dIH +qBU +dIH +mnf +fjM +dIH +dIH +dIH +eMs +can +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +wfY +riC +kJN +riC +riC +riC +krt +riC +xJD +riC +kJN +riC +riC +riC +riC +riC +riC +riC +riC +riC +riC +riC +kJN +riC +riC +vJV +riC +nlM +aNo +aNo +aNi +aMq +gAB +gAB +aHR +gAB +gAB +aHR +gAB +gAB +aFa +aly +aNi +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(213,1,1) = {" +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +lwG +ozz +sWl +sWl +sWl +sWl +sWl +xEP +dIH +qCF +dIH +mnn +wfT +pzc +wLy +pzc +tjZ +dIH +eMs +can +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +kyP +kyP +kyP +kyP +kyP +kyP +kyP +oQy +riC +vJV +oqM +nlM +aNo +aNo +aNi +aMq +gAB +aOI +awl +awl +awl +awl +awl +awl +awl +atV +aNi +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(214,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +lwG +ozz +sWl +kwe +iHF +iHF +iiA +xEP +iDr +dIH +dIH +qBU +pzc +xEP +eYk +xEP +pzc +qCF +eMs +can +jzY +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +kyP +fNm +fNm +uSZ +qJF +wHR +dHh +hAH +riC +vJV +riC +nlM +aNo +aNo +aNi +aMq +gAB +aSO +aZU +aZU +aZU +aZU +aZU +aZU +aZU +aZU +gUo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(215,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +sWl +lwG +ozz +sWl +eZm +eZm +hAE +eZm +pJF +hwQ +dIH +dIH +ceO +ufF +eYk +tGy +eYk +pzc +ddt +cUf +can +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +sGY +wHR +qFQ +wHR +tow +fNm +hAH +riC +xmt +shY +nlM +aNo +aNo +aNi +aAM +adj +aly +aZU +aUS +aUS +aZU +aby +aby +arQ +aby +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aNo +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aPn +aPA +aPA +aPA +aPn +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(216,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +sWl +ozz +ozz +sWl +eZm +eZm +eZm +eZm +pJF +hwQ +vDa +dIH +dIH +pzc +xEP +eYk +xEP +pzc +dIH +xpk +iWI +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +pUQ +wHR +cjV +hhl +dpK +gid +hAH +riC +vJV +vAS +nlM +aNo +aNo +aNi +ahR +gAB +aFU +aZU +aJt +aJt +aKa +aby +aTs +aBG +aby +aYH +apn +ajz +adY +amZ +aKM +auC +adY +amZ +aKM +apD +aWu +aYH +aNo +arz +arz +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aCj +aYB +aYB +azQ +aNc +adL +ayH +azQ +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(217,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +svJ +svJ +svJ +sWl +ozz +ozz +sWl +kwe +oNZ +oNZ +kwe +goz +xez +dIH +dIH +dIH +hGC +pzc +pem +pzc +tjX +dIH +izl +lit +iWI +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +qHk +qQX +jHm +tng +wHR +uAQ +hAH +riC +vJV +mnS +nlM +aNo +aNo +aNi +apW +gAB +aFU +aZU +abs +abs +aUc +aOz +ajJ +ajJ +aym +aYH +apD +apD +apD +apD +apD +apD +apD +apD +aCa +aIX +apD +aYH +aNo +aNo +aaZ +apG +aAt +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aTR +aRb +aRb +aAC +aXz +aXz +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(218,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +aNo +hjl +hjl +hjl +hjl +hjl +eSs +lQc +lQc +lQc +lQc +lQc +lQc +lQc +xkv +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +vhg +hfW +ofP +sWl +fYL +sWl +sWl +bix +svJ +svJ +svJ +xEP +tkh +dIH +dIH +wCZ +qCF +dIH +nQJ +qCF +dIH +pDo +wCZ +can +qnL +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +yhH +wHR +jHm +tng +dpK +fNm +hAH +riC +vJV +kwF +nlM +aNo +aNo +aNi +afU +gAB +aFU +aZU +abs +abs +aUc +aUc +aUc +aUc +aUc +aYH +aNa +atT +aNa +aNa +aoJ +aNa +aNa +aNa +aNa +aNa +aNa +aYH +aYH +aYH +aYH +aYH +aYH +aYH +kXX +amf +aTa +aSa +aSa +aSa +aTR +aRb +aRb +azQ +aCK +aXz +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(219,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +dDF +dDF +dDF +rCG +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +xxG +xxG +xxG +xxG +xxG +xxG +xxG +xxG +xxG +aUL +aNo +arz +arz +arz +arz +arz +arz +aNo +hjl +ylC +ylC +ylC +ylC +hjl +tve +tve +tve +lQc +tzU +tzU +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +dIq +qYc +vhW +svJ +kwe +iHF +qnr +eZm +kwe +kwe +kwe +xEP +xiq +dIH +mgO +eMB +eMB +eMB +nQJ +dIH +dIH +dIH +dIH +gaj +rnL +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +dTz +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +uAQ +wHR +jHm +tng +fQo +bfV +hAH +riC +vJV +shY +nlM +aNo +aNo +aNi +aMq +gAB +aFU +aZU +abs +abs +aJt +aJt +aLS +aJt +aJt +aYH +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aFP +aWm +apD +bhY +aIk +aIO +aIO +aVi +aRb +aRb +aYB +aYB +aYB +abk +aRb +aRb +aPA +aSR +adA +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(220,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +jRk +bbI +jRk +rCG +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +xxG +kBo +fwW +nJA +jIb +jIb +ceW +qYn +qYn +xxG +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +hjl +ylC +ylC +ylC +ylC +ylC +tzU +tzU +tzU +tzU +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +sfK +veB +kwe +lFA +kwe +glF +wKF +eZm +kwe +kwe +iZK +xEP +dIH +tmC +nQL +bvz +bvz +rdu +nQJ +dIH +dIH +vUI +dIH +vUI +dIH +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gtN +dAv +ehE +ehE +dxJ +ehE +qXG +ehE +ehE +ehE +ehE +ehE +ehE +qXG +ehE +ehE +gtN +iWr +kZK +iWr +ukc +gtN +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +uMO +qQX +nHG +jTe +wHR +lAI +kyP +riC +vJV +ebi +nlM +nlM +nlM +iJL +aFz +gAB +aFU +aZU +alm +ajT +ajT +ajT +ajT +ajT +anA +aYH +acZ +aNa +aME +aAs +aAs +aAs +aAs +aKB +aNa +aNa +aNa +aFP +aLO +apt +apt +apt +apt +apt +aVi +aRb +aRb +aRb +aRb +aRb +aRb +aRb +aRb +aPA +aSR +adA +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(221,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +jRk +cDJ +gTh +rCG +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +xxG +cRb +vPK +vPK +vPK +vPK +bYu +ubP +ubP +xxG +aNo +fqj +fqj +fqj +fqj +fqj +fqj +fqj +wxv +ylC +ylC +ylC +ylC +ylC +tzU +tzU +tzU +tzU +tzU +gkl +xHe +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +gAf +kBT +fmF +svJ +kRp +nII +njp +eZm +kwe +kwe +vXB +xEP +dIH +dIH +nQL +gVb +bvz +bvz +vXf +dIH +dIH +dIH +dIH +dIH +dIH +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gtN +sut +fos +dUs +dUs +dUs +dUs +dUs +jQR +iEr +dUs +dUs +dUs +vNU +dUs +dGY +dUs +iWr +iWr +iWr +ukc +gtN +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +bfV +wHR +wHR +wHR +wHR +wHR +hAH +riC +riC +xIo +xIo +uph +mah +riC +gAB +gAB +aLX +aZU +abs +ajT +awu +awu +awu +aih +aQL +aYH +aNa +aNa +aBS +aTn +arF +aeo +ado +aVn +aNa +aNa +aNa +aFP +apD +aIO +laI +aIO +aIO +aIO +aVi +aRb +aRb +aYb +aYb +aYb +aAg +aRb +aRb +aPA +aSR +adA +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(222,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +jRk +bbI +jRk +rCG +aNo +arz +arz +arz +arz +arz +arz +arz +aNo +xxG +vwV +vwV +vwV +tQp +gze +gVo +ubP +pso +xxG +aNo +fqj +qIB +rfm +qIB +cPI +qIB +kzW +fqj +lti +ylC +ylC +ylC +hjl +rFA +rFA +rFA +lQc +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +svJ +svJ +svJ +svJ +kwe +kwe +kwe +eZm +kwe +kwe +kuR +rbu +rbu +rbu +rbu +xEP +tbG +tbG +tbG +tbG +tbG +xEP +xEP +xEP +xEP +xEP +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +gtN +sut +fos +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dGY +dUs +iWr +iWr +iWr +ukc +gtN +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +oDW +wHR +wHR +wHR +wHR +wHR +npB +riC +fEr +riC +riC +rkV +rkV +riC +gAB +aHR +gAB +azu +abs +ajT +aNF +ajT +ajT +ajT +akE +aYH +aNa +aNa +aBS +acE +aSD +awn +apP +aVn +aNa +aNa +atT +aYH +aYH +aRS +aRS +aRS +aRS +aYH +aYH +aRb +acP +aSa +aSa +aSa +aTR +aRb +aRb +aPA +aSR +adA +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(223,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +rCG +jRk +bbI +jRk +rCG +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +xxG +cKX +tFO +tFO +ciK +lVe +xao +ubP +uGf +xxG +aNo +fqj +evY +nZI +nZI +nZI +evY +nZI +fqj +ylC +xwV +ylC +ylC +hjl +hjl +hjl +hjl +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +svJ +oQS +kwe +kwe +eZm +kwe +kwe +dTf +rbu +wbL +rSl +rbu +jEk +bJu +xxk +dYJ +xxk +vlf +jEk +bGu +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +aNo +gtN +ehE +kvl +oXi +ehE +ehE +pdC +dxJ +ehE +ehE +ehE +ehE +ehE +rTr +ehE +ehE +gtN +iWr +iWr +iWr +ukc +gtN +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +fvJ +wHR +wHR +lSV +wHR +wHR +hAH +riC +riC +hcD +dOR +uQK +rkV +dOR +oPR +gAB +aQB +aZU +abs +ajT +aqD +aqD +aqD +aFX +aQL +aYH +aNa +aNa +aBS +aXl +aCa +awn +axg +aVn +aNa +aNa +aNa +aYH +aQa +arN +aed +aZW +aCc +ahy +aYH +agD +acP +aSa +aSa +aSa +aTR +aRb +aRb +aPA +aSR +adA +aXz +aPA +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(224,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +rCG +rCG +rCG +jRk +bbI +jRk +rCG +rCG +rCG +rCG +akN +eJC +gMj +gMj +ark +aNo +xxG +gXc +uEe +uEe +ciK +lVe +xao +ubP +upu +xxG +aNo +fqj +xPH +nZI +nZI +nZI +nZI +nZI +tpG +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +kwe +kwe +eZm +kwe +kwe +dTf +rbu +dTO +maZ +rbu +wea +oSQ +wea +wUr +wea +oSQ +iDF +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +aNo +arz +arz +arz +aNo +gtN +gtN +rqQ +rqQ +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +fNm +wHR +sJT +vmK +wHR +lAI +kyP +sUn +vJV +vLg +aXT +aXT +aXT +oza +bZK +gAB +aRi +aZU +abs +ajT +aby +aby +aby +aby +aJt +aYH +aNa +aNa +aBS +apD +apD +aGB +aeB +aVn +aNa +aNa +aNa +aYH +aWb +aLk +aJb +aLk +aLk +aLk +aRj +aYb +aFj +aSa +aSa +aSa +aZS +aYb +aYb +azQ +aQc +aXz +ayH +azQ +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(225,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +rCG +jRk +jRk +meb +kLj +kLj +kLj +nZJ +jRk +gOM +wXI +wXI +eJC +hfP +hfP +eJC +aNo +xxG +gXc +tFO +tFO +ciK +lVe +xao +ubP +uGf +xxG +aNo +fqj +nZI +nZI +nZI +nZI +nZI +nZI +fqj +ylC +ylC +ylC +ylC +ylC +dGr +ylC +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +jwD +kwe +kwe +eZm +kwe +kwe +dTf +rbu +wRp +iMP +kZT +ipk +wea +wea +wea +wea +wea +wea +rhO +xoY +xoY +bPo +xoY +xoY +xoY +xoY +xoY +cDA +cDA +cDA +xoY +rhO +aNo +arz +arz +arz +aNo +gtN +rqQ +rqQ +rqQ +otO +gtN +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +aNo +kyP +qHk +qQX +uuE +uAQ +fFh +twQ +hAH +nTs +vJV +npW +aXT +ayZ +oNA +aXT +nhS +gAB +gAB +aZU +axL +ajT +aIW +aIW +aIW +aFX +aQL +aYH +acZ +aGY +aTE +aJF +aJF +aJF +aJF +alf +aZJ +aNa +aoJ +aYH +aCT +aKg +aLk +aLk +aLk +ahy +aYH +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aPn +aPA +aPA +aPA +aPn +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(226,1,1) = {" +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +meb +bbI +bbI +eJC +hfP +hfP +eJC +aNo +xxG +gXc +uEe +uEe +ciK +lVe +xao +ubP +upu +xxG +aNo +fqj +xbr +nZI +tJD +nZI +gVv +lbg +fqj +ylC +ylC +oTo +wAD +ykY +wAD +rPZ +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +svJ +svJ +kwe +eZm +kwe +kwe +kuR +rbu +mLg +rSl +cIR +tww +tww +tww +tww +tww +tww +tww +hfh +xoY +xoY +fXk +xoY +xoY +qTM +fXk +xoY +xoY +xoY +xoY +hYc +rhO +aNo +arz +arz +arz +aNo +gtN +rqQ +rqQ +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +fNm +tow +wHR +wHR +wHR +twQ +hAH +nTs +vJV +jdg +aXT +ayZ +ayZ +aXT +vJI +aFa +gAB +aZU +aJt +aby +aby +afe +aby +aby +aJt +aYH +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aNa +aYH +aYv +aLk +aLk +aHU +aYH +aYH +aYH +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aVG +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(227,1,1) = {" +arz +arz +aNo +rCG +rCG +rCG +rCG +rCG +rCG +rCG +rCG +rCG +rCG +rCG +jRk +jRk +jRk +oSm +oSm +jRk +jRk +ljd +meb +bbI +bbI +hgt +hfP +hfP +eJC +aNo +xxG +gXc +eJe +tFO +ciK +lVe +xao +ubP +uGf +xxG +aNo +fqj +gVv +nZI +gVv +nZI +gVv +evY +fqj +ylC +dGr +goZ +bSz +yae +bSz +lmJ +sjv +hjl +tzU +gkl +xHe +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +svJ +kwe +eZm +kwe +kwe +fDa +rbu +rSl +rSl +kZT +wea +uWN +wea +wea +wea +wea +wea +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +roK +roK +fcm +vEe +rhO +aNo +arz +arz +arz +aNo +gtN +iuT +rqQ +rqQ +opB +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +fvJ +wHR +oyq +uMO +wHR +twQ +hAH +nTs +vJV +qhV +aXT +ayZ +ayZ +aXT +eME +gAB +gAB +aZU +aJt +aJt +aiH +aiH +aiH +aJt +aJt +aYH +aNa +aNa +aNa +aXb +aNa +atG +aNa +aNa +aNa +aNa +aXb +aYH +aXT +aXT +aqo +aXT +oza +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(228,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +rCG +rCG +ljd +jRk +jRk +oSm +jRk +oSm +jRk +jRk +meb +bbI +bbI +eJC +rCy +hfP +eJC +aNo +xxG +cKX +uEe +uEe +ciK +lVe +xao +ubP +upu +xxG +aNo +fqj +gVv +nZI +gVv +nZI +oEs +nZI +fqj +lti +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +kwe +iZK +rbu +rSl +rSl +rbu +jaA +wea +wea +deU +wea +uWN +rSl +rbu +aNo +aNo +aNo +aNo +aNo +rhO +kyZ +hgG +psu +hnC +xoY +xoY +rhO +aNo +arz +arz +arz +aNo +gtN +duV +jxo +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +mWI +wHR +enC +juh +qQX +wHR +hAH +nTs +vJV +ivQ +aXT +ayZ +ayZ +aXT +fIH +gAB +aQB +aZU +ayg +aJt +aQj +azZ +aQj +aJt +aJt +aYH +aAy +aNa +aNa +aYH +aYH +aYH +aYH +aRS +aRk +aRS +aYH +aYH +ayZ +ayZ +ayZ +ayZ +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(229,1,1) = {" +arz +arz +aNo +rCG +jRk +tWd +jRk +jRk +jRk +jRk +ieX +jRk +rCG +rCG +bLy +jRk +jRk +jRk +jRk +jRk +jRk +jRk +meb +bbI +bbI +fBo +hfP +hfP +eJC +aNo +xxG +gXc +gXc +gXc +ciK +lVe +xao +ubP +uGf +xxG +aNo +fqj +lNE +nZI +oEs +nZI +gVv +nZI +fqj +ylC +ylC +liZ +cwW +vKn +hde +lbN +xwV +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +kwe +kwe +rbu +rSl +wqW +rbu +wPp +rMW +rMW +rMW +qrk +qrk +sKQ +rbu +aNo +aNo +aNo +aNo +aNo +rhO +sYe +igz +lKo +ygN +qTM +xoY +rhO +aNo +arz +arz +arz +aNo +gtN +jLg +rqQ +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +kyP +wOq +dpK +qYw +qJF +wHR +wHR +hAH +nTs +vJV +npW +aXT +ayZ +ayZ +aXT +bZK +gAB +gAB +aZU +aZU +aZU +aZU +aZU +aZU +aZU +aZU +aZU +gAB +gAB +pvh +aYH +aYv +aLk +aKS +aKg +amh +adB +aLk +aYH +ayZ +ayZ +ayZ +ayZ +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(230,1,1) = {" +arz +arz +aNo +rCG +jRk +ljd +jRk +oSm +oSm +jRk +cQu +cQu +rCG +rCG +jRk +jRk +jRk +jRk +thb +oSm +jRk +jRk +meb +bbI +bbI +fBo +hfP +hfP +eJC +aNo +xxG +xZM +xZM +xZM +xZM +umB +xao +ubP +sZG +xxG +aNo +fqj +rnS +nZI +gVv +nZI +wIC +lbg +fqj +ylC +ylC +nHO +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +rbu +kZT +iMP +iMP +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +aNo +aNo +rhO +kyZ +wTp +jgU +hYc +xoY +xoY +rhO +aNo +aNo +arz +arz +aNo +gtN +duV +jxo +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +aNo +kyP +fNm +wHR +rRi +qJF +wHR +lAI +hAH +nTs +vJV +tPr +aXT +aeF +ayZ +aXT +bZK +gAB +gAB +gAB +gAB +gAB +gAB +gAB +gAB +gAB +aFa +gAB +aHR +gAB +aeD +aYH +aYv +aLk +aLk +aUO +aLk +aLk +aLk +aHT +ayZ +aXt +ayZ +ayZ +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(231,1,1) = {" +arz +arz +aNo +rCG +bLy +jRk +jRk +jRk +jRk +jRk +cQu +uaK +rCG +rCG +jRk +jRk +jRk +oSm +jRk +jRk +jRk +jRk +meb +bbI +bbI +fBo +hfP +hfP +eJC +aNo +xxG +ubP +ubP +ubP +ubP +ubP +xao +ubP +ubP +xxG +aNo +fqj +tJD +evY +tJD +evY +qWf +nZI +fqj +ylC +ylC +liZ +cwW +vKn +hde +nZh +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +nVg +tZe +rSl +rSl +nAh +rbu +bEa +rfj +rbu +qnn +qLd +clI +dwa +skO +qOK +rbu +aNo +aNo +rhO +sma +igz +lpp +kjS +xoY +nxq +rhO +rhO +aNo +aNo +arz +aNo +gtN +iuT +rqQ +rqQ +jrc +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +fLI +fLI +fLI +fLI +fLI +fLI +fLI +aNo +arz +arz +arz +arz +aNo +kyP +qJF +wHR +uMO +rRi +qQX +wHR +hAH +cPz +vJV +vLg +aXT +ayZ +ayZ +aXT +bZK +aqQ +gAB +aRi +gAB +gAB +gAB +gAB +gAB +gAB +gAB +gAB +gAB +gAB +aeD +aYH +aYv +aWi +aLk +aLk +aLk +aWi +aYv +aYH +ayZ +ayZ +ayZ +ayZ +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(232,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +cQu +cQu +sVp +nGO +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +meb +bbI +bbI +eJC +hfP +tIk +eJC +aNo +xxG +xxG +ubP +ubP +xxG +xxG +xxG +xxG +xxG +xxG +aNo +fqj +lNE +nZI +tJD +nZI +qWf +nZI +fqj +ylC +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +oAJ +rbu +nVg +rSl +rSl +rSl +cak +rbu +pJW +rfj +rbu +lWX +oTw +rSl +rSl +rSl +lup +rbu +aNo +aNo +rhO +kyZ +wTp +jgU +xoY +xoY +xoY +pvG +rhO +rxq +aNo +aNo +aNo +gtN +rqQ +qVH +rqQ +otO +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mVF +bQd +nyX +sGO +jdk +jdk +fLI +aNo +arz +arz +arz +arz +aNo +kyP +uAQ +wHR +rRi +qJF +xiu +twQ +hAH +nTs +vJV +tPr +aXT +ayZ +aeF +aXT +gip +aKG +acp +aKG +aKG +aKG +aKG +acp +aKG +aKG +aKG +aKG +acp +aKG +aqW +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aYH +aXT +aXT +aqo +aXT +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(233,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +oSm +jRk +jRk +jRk +nGO +nGO +jRk +jRk +jRk +nqG +jRk +oSm +jRk +jRk +meb +bbI +bbI +eJC +hfP +hfP +eJC +aNo +aNo +xxG +ubP +ubP +xxG +aNo +aNo +aNo +aNo +aNo +aNo +fqj +lNE +nZI +oEs +nZI +gVv +nZI +fqj +ylC +xwV +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +nVg +rSl +qdu +rSl +cak +rbu +bEa +ehg +rbu +oBm +tHD +rSl +rSl +rSl +ulz +rbu +aNo +aNo +rhO +hhN +igz +lpp +kjS +xoY +xoY +nxq +xoY +gtN +gtN +gtN +gtN +gtN +rqQ +rqQ +rqQ +opB +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +tvo +nyX +bQd +bBT +jdk +jdk +fLI +aNo +arz +arz +arz +arz +aNo +kyP +fvJ +wHR +wHR +wHR +wHR +twQ +hAH +nTs +vJV +tPr +aXT +ayZ +ayZ +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aeF +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +aXT +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aSa +aqL +ana +awU +aSa +aSa +aSa +aSa +aSa +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(234,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +nGO +nGO +jRk +jRk +jRk +jRk +oSm +jRk +jRk +jRk +meb +bbI +tCX +eJC +hfP +hfP +eJC +aNo +aNo +xxG +cqA +pwj +xxG +aNo +aNo +aNo +aNo +aNo +aNo +fqj +fqj +fqj +fqj +fqj +fqj +fqj +fqj +lti +ylC +liZ +cwW +vKn +hde +nZh +sjv +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +nVg +rSl +rSl +rSl +iYD +rbu +qXZ +rfj +nOK +rfj +rSl +rSl +rSl +rSl +kfR +rbu +aNo +aNo +rhO +kyZ +wTp +ceC +xoY +fKG +xoY +xoY +xoY +gtN +rOE +jiL +rqQ +rqQ +rqQ +qHC +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mVV +nyX +bQd +bBT +jdk +sjF +fLI +aNo +arz +arz +arz +arz +aNo +kyP +fin +wHR +wHR +eDD +wHR +wHR +hAH +nTs +vJV +pNW +aXT +arA +ayZ +ayZ +ayZ +ayZ +ayZ +aeF +ayZ +ayZ +ayZ +aeF +ayZ +ayZ +ayZ +ayZ +arA +ayZ +ayZ +ayZ +ayZ +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aAt +aWx +aWx +aWx +aWx +aWx +aWx +aWx +aAt +aAt +aAt +aAt +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(235,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +oSm +jRk +jRk +jRk +ljd +jRk +nGO +nGO +jRk +jRk +jRk +jRk +jRk +jRk +jRk +ljd +meb +bbI +bbI +eJC +rCy +hfP +eJC +aNo +aNo +xxG +ubP +ubP +xxG +aNo +kCw +kCw +kCw +kCw +kCw +kCw +kCw +kCw +fjj +wke +oVj +ylC +ylC +ylC +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +rSl +rSl +rSl +rSl +rbu +rbu +bEa +rfj +rbu +lgz +rfj +xei +mmG +vhN +hfm +rbu +aNo +aNo +rhO +kyZ +igz +ceC +xoY +xoY +xoY +xoY +xoY +rqQ +rqQ +rqQ +rqQ +rqQ +rqQ +rqQ +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +vwx +nyX +nyX +djQ +jdk +jdk +fLI +aNo +aNo +aNo +aNo +aNo +aNo +kyP +wGe +wHR +enC +bUH +jDN +wHR +kyP +nTs +jaW +tPr +aXT +ayZ +ayZ +ayZ +ayZ +ayZ +aeF +aeF +aeF +ayZ +ayZ +ayZ +ayZ +ayZ +aeF +ayZ +ayZ +ayZ +ayZ +ayZ +ayZ +aXT +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +apG +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(236,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +sVp +nGO +jRk +jRk +jRk +oSm +oSm +jRk +jRk +jRk +meb +bbI +bbI +eJC +hfP +hfP +eJC +eJC +eJC +eJC +xPM +xPM +eJC +eJC +kCw +cYO +qGY +cYO +cYO +qGY +cYO +kCw +srW +srW +kCw +ylC +ylC +ylC +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +xHe +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +xQH +rSl +rSl +rSl +cKU +rbu +rbu +kVj +rbu +rbu +kfF +rbu +rbu +rbu +rbu +rbu +aNo +aNo +rhO +gNG +wTp +lKo +vBz +vBz +pED +vBz +qTM +rqQ +rqQ +rqQ +rqQ +qVH +rqQ +rqQ +rqQ +wJJ +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +szt +pFJ +nyX +djQ +jdk +fed +fLI +fLI +fLI +fLI +nrL +aYr +aYr +kyP +kyP +kyP +kyP +kyP +kyP +kyP +kyP +nTs +vJV +tPr +aXT +ayZ +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(237,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +nGO +nGO +jRk +jRk +jRk +jRk +oSm +nqG +jRk +jRk +meb +bbI +bbI +fBo +hfP +hfP +eJC +xPM +xPM +xPM +hfP +hfP +xPM +xEe +kCw +kCw +chS +chS +chS +chS +kCw +kCw +dmL +wke +kCw +lti +ylC +xwV +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +oAJ +rbu +wbL +maZ +rSl +rSl +rSl +rSl +vAi +rSl +rSl +qNk +rSl +rSl +rbu +aNo +aNo +aNo +aNo +aNo +rhO +hhN +igz +vnu +xTs +fMJ +xTs +xTs +wnt +gtN +jyF +yiM +uJi +yiM +yiM +vdJ +lkr +vZt +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mrj +nyX +nyX +djQ +jdk +jdk +qJx +qJx +qJx +qJx +fLI +wmH +bAx +iIk +bAx +bAx +bAx +xrz +bAx +bAx +bAx +cwi +taR +dYd +aXT +ayZ +aXT +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(238,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +oSm +jRk +jRk +nGO +sVp +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +meb +bbI +bbI +fBo +hfP +hfP +jVK +hfP +hfP +hfP +hfP +hfP +hfP +vGR +lzQ +btx +jCy +jCy +jCy +jCy +btx +lzQ +qwG +qwG +lzQ +ylC +ylC +ylC +ylC +liZ +cwW +vKn +hde +nZh +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +wbL +maZ +rSl +rSl +rSl +rSl +rSl +rSl +rSl +rSl +rSl +rSl +rbu +aNo +arz +arz +arz +aNo +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +rhO +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +gtN +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +gIf +nyX +nyX +djQ +keP +jdk +jdk +jdk +jdk +jdk +fLI +cwi +jbe +cGQ +cGQ +cGQ +rvZ +vJV +vJV +vJV +tfA +cGQ +cGQ +gaA +aXT +ayZ +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(239,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +ljd +jRk +jRk +jRk +jRk +jRk +nGO +nGO +jRk +jRk +jRk +jRk +oSm +oSm +jRk +jRk +meb +kLj +kLj +fBo +hfP +hfP +hfP +hfP +hfP +hfP +hfP +hfP +hfP +vGR +qbS +jCy +jCy +jCy +jCy +jCy +jCy +qbS +qwG +qwG +qbS +ylC +ylC +dGr +ylC +liZ +cwW +vKn +hde +lbN +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +mYF +ycb +rSl +rSl +uOe +rbu +rbu +rbu +rbu +qwa +iXD +qwa +rbu +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +fLI +fLI +fLI +fLI +qJx +jdk +wER +wER +wER +jdk +jZF +vJV +nyd +nlM +nlM +nlM +nlM +kSw +kSw +kSw +nlM +nlM +nlM +nlM +aXT +ayZ +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(240,1,1) = {" +arz +arz +aNo +rCG +bLy +oSm +oSm +jRk +jRk +jRk +ljd +cvX +rCG +rCG +jRk +jRk +jRk +thb +jRk +jRk +jRk +jRk +meb +kLj +kLj +fBo +hfP +hfP +eJC +xPM +xPM +xPM +hfP +hfP +xPM +xEe +kCw +kCw +chS +chS +chS +chS +kCw +kCw +dmL +wke +kCw +lti +ylC +ylC +ylC +hMI +csK +nxS +csK +ffk +sjv +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +rbu +rbu +rbu +rbu +rbu +rbu +rbu +clR +clR +rbu +rfj +iXD +rfj +rbu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +fLI +qJx +jdk +jdk +gnS +jdk +jdk +fLI +kwr +nyd +nlM +gfO +fwx +cSu +tPz +hJN +tPz +tPz +oFv +nlM +ayZ +ayZ +ayZ +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(241,1,1) = {" +arz +arz +aNo +rCG +jRk +hQI +cQu +cQu +jRk +cQu +vbi +cQu +rCG +rCG +bLy +jRk +jRk +jRk +jRk +jRk +jRk +ljd +meb +kLj +kLj +eJC +rCy +hfP +eJC +eJC +eJC +eJC +hfP +hfP +eJC +eJC +kCw +cYO +qGY +cYO +cYO +qGY +cYO +kCw +srW +srW +kCw +ylC +ylC +ylC +ylC +ylC +ylC +efM +ylC +dGr +xwV +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +kwe +iHF +kwe +kwe +dvL +rfj +gGZ +rfj +xhC +xhC +gGZ +rfj +iXD +rfj +rbu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +fLI +qJx +vQo +oZW +gnS +oZW +qLg +fLI +bkc +cTi +nlM +vMV +hMp +dWG +vJV +xmt +vJV +vJV +tvK +nlM +aeF +ayZ +ayZ +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(242,1,1) = {" +arz +arz +aNo +rCG +jRk +jRk +jRk +jRk +jRk +jRk +jRk +jRk +rCG +rCG +jRk +ljd +jRk +jRk +jRk +jRk +jRk +jRk +meb +kLj +kLj +eJC +hfP +hfP +eJC +aNo +aNo +cFH +hfc +hfc +cFH +aNo +kCw +kCw +kCw +kCw +kCw +kCw +kCw +kCw +wke +cTO +kCw +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +hjl +tzU +gkl +tzU +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +kwe +eZm +eZm +eZm +eZm +eZm +mkD +iXD +iXD +iXD +iXD +iXD +iXD +iXD +iXD +rfj +rbu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +fLI +fLI +fLI +fLI +fLI +fLI +gol +jdk +jdk +gnS +jdk +jdk +fLI +dqq +nyd +nlM +jMn +vJV +vJV +vJV +vJV +sdP +owq +qYL +nlM +ayZ +ayZ +aXT +aXT +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(243,1,1) = {" +arz +arz +aNo +rCG +rCG +rCG +qaD +qaD +iYk +qaD +qaD +rCG +aYr +rCG +jRk +jRk +meb +yiT +yiT +yiT +nZJ +jRk +dDq +jRk +gTh +eJC +hfP +hfP +eJC +aNo +aNo +cFH +qkc +juA +cFH +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +ylC +ylC +hjl +hjl +tzU +gkl +xHe +lQc +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +jwD +kwe +kwe +kwe +kwe +kwe +dvL +rfj +rfj +rfj +rfj +rfj +rfj +rfj +rfj +rfj +rbu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +fLI +qdB +mNg +mNg +mNg +fLI +jdk +jdk +wER +wER +dDu +jdk +fLI +dqq +mve +nlM +xhU +owq +owq +wuz +vNM +xBu +nlM +nlM +nlM +aeF +ayZ +aYr +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(244,1,1) = {" +arz +arz +aNo +aNo +aaZ +rCG +iYk +iYk +iYk +iYk +iYk +rCG +aNo +rCG +rCG +rCG +rCG +jRk +bbI +jRk +rCG +rCG +rCG +rCG +rCG +eJC +eJC +eJC +eJC +aNo +aNo +cFH +qkc +juA +cFH +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +hjl +ylC +lUi +ylC +lUi +wWc +ylC +ylC +ylC +ylC +wWc +ylC +ylC +ylC +hjl +tzU +gkl +tzU +lQc +lQc +lQc +lQc +lQc +lQc +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +svJ +svJ +svJ +svJ +svJ +svJ +svJ +svJ +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +rbu +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mID +jdk +jdk +jdk +jdk +jdk +jdk +jdk +jdk +jdk +jdk +jdk +fLI +bkc +nyd +nlM +nlM +nlM +nlM +nlM +nlM +nlM +nlM +arA +ayZ +ayZ +aeF +aYr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(245,1,1) = {" +arz +arz +arz +arz +aNo +rCG +rCG +eab +iYk +iYk +iYk +rCG +aNo +aNo +aNo +aNo +rCG +jRk +bbI +jRk +rCG +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +cFH +hfc +cyk +cFH +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +hjl +iux +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +hjl +tzU +gkl +tzU +tzU +eHg +tzU +wUX +xbZ +gxC +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mID +cba +jdk +jdk +jdk +epV +jdk +jdk +qJx +qJx +qJx +qJx +fLI +suQ +nms +nlM +ayZ +ayZ +ayZ +pdN +ayZ +ayZ +ayZ +ayZ +ayZ +aYr +aYr +aYr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(246,1,1) = {" +arz +arz +arz +arz +aNo +rCG +iIS +iYk +iYk +iYk +kBh +rCG +aNo +arz +arz +aNo +rCG +jRk +bbI +jRk +rCG +aNo +arz +arz +aNo +cFH +cFH +cFH +cFH +cFH +cFH +cFH +hfc +hfc +cFH +cFH +cFH +cFH +cFH +cFH +aZk +aNo +aNo +aNo +hjl +hjl +ylC +ylC +ylC +ceu +ylC +ceu +ylC +ylC +ceu +ylC +ylC +hjl +tzU +gkl +gkl +gkl +xXL +gkl +qKI +qKI +gxC +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +mID +jdk +uwR +jdk +uwR +jdk +fLI +fLI +fLI +fLI +fLI +fLI +fLI +lqU +nlM +nlM +rgH +aYr +aYr +aYr +aYr +aYr +aYr +aYr +aYr +aYr +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(247,1,1) = {" +arz +arz +arz +arz +aNo +rCG +rFF +rFF +rFF +rFF +rFF +rCG +aNo +arz +arz +aNo +rCG +jRk +cDJ +gTh +rCG +aNo +arz +arz +aNo +cFH +qdc +qEt +qEt +qEt +nNN +vCy +hfc +hfc +vCy +qdc +qEt +qEt +qEt +nNN +cFH +aNo +arz +aNo +aNo +hjl +hjl +bSz +yae +cPH +bSz +cPH +yae +bSz +cPH +yae +bSz +hjl +tzU +tzU +tzU +tzU +eHg +tzU +wUX +jYx +gxC +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +fLI +lzn +jml +qAH +jml +lzn +fLI +aNo +aNo +aNo +aNo +aNo +aYr +oTs +cnj +ayZ +aeF +aYr +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(248,1,1) = {" +arz +arz +arz +arz +aNo +rCG +rCG +rCG +rCG +rCG +rCG +rCG +aNo +arz +arz +aNo +rCG +jRk +bbI +jRk +rCG +aNo +arz +arz +aNo +cFH +oHz +lMK +lMK +lMK +oQV +pvO +hfc +hfc +oEG +kAK +lMK +lMK +lMK +rrX +cFH +aNo +arz +arz +aNo +aNo +hjl +ycW +ycW +ycW +ycW +ycW +ycW +ycW +ycW +ycW +ycW +hjl +lQc +lQc +lQc +lQc +lQc +lQc +lQc +lQc +lQc +lQc +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +fLI +mZP +jml +suE +jml +mZP +fLI +aNo +arz +arz +arz +aNo +aYr +aYr +aYr +aYr +aYr +aYr +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(249,1,1) = {" +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +aNo +rCG +dDF +dDF +dDF +rCG +aNo +arz +arz +aNo +cFH +fcR +lMK +lMK +sXR +oQV +pvO +xmo +vIo +wKK +kAK +lMK +lMK +sXR +vZE +cFH +aNo +arz +arz +arz +aNo +hjl +cve +dop +cve +cve +uRb +cve +fjp +cve +rxO +cve +hjl +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +fLI +fLI +fLI +fLI +fLI +fLI +fLI +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(250,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +aNo +cFH +oHz +lMK +lMK +lMK +oQV +pvO +hfc +hfc +wKK +kAK +lMK +lMK +lMK +rrX +cFH +aNo +arz +arz +arz +aNo +hjl +fjp +cve +cve +cve +cve +cve +cve +cve +cve +cve +hjl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(251,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +cFH +hzB +vbw +vbw +vbw +tNP +trG +hfc +hfc +trG +hzB +vbw +vbw +vbw +tNP +cFH +aNo +arz +arz +arz +aNo +hjl +cve +sGa +cve +fjp +cve +lnD +cve +bmh +cve +fjp +hjl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(252,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +cFH +aNo +arz +arz +arz +aNo +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +hjl +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(253,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +aNo +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(254,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} +(255,1,1) = {" +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +arz +"} diff --git a/_maps/RandomZLevels/bombass.dmm b/_maps/away/bombass.dmm similarity index 85% rename from _maps/RandomZLevels/bombass.dmm rename to _maps/away/bombass.dmm index 9567af8eeeb7..f0e7140fd614 100644 --- a/_maps/RandomZLevels/bombass.dmm +++ b/_maps/away/bombass.dmm @@ -6,19 +6,12 @@ "ab" = ( /turf/closed/wall/partyhard, /area/awaymission/bombass/indoors) -"ac" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) "ad" = ( /obj/machinery/light/small{ dir = 1; pixel_y = 0 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "ae" = ( /obj/structure/sink/kitchen, @@ -35,18 +28,22 @@ "ah" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/biogenerator, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "ai" = ( /obj/machinery/light/small{ dir = 1; pixel_y = 0 }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aj" = ( /obj/machinery/light/small{ @@ -57,67 +54,30 @@ id = "bunkerbot"; name = "durable ladder" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "an" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "ap" = ( /obj/structure/fermenting_barrel, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, -/area/awaymission/bombass/indoors) -"aq" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, -/area/awaymission/bombass/indoors) -"ar" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "as" = ( /obj/structure/table, /obj/item/gavelblock, /obj/item/gavelhammer, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "at" = ( /obj/structure/chair/comfy/black, /obj/effect/turf_decal/bot_red, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "au" = ( /obj/machinery/space_heater, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"av" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/awaymission/bombass/indoors) -"aw" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/awaymission/bombass/indoors) -"ax" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "ay" = ( /obj/machinery/door/airlock/centcom, @@ -127,35 +87,22 @@ /area/awaymission/bombass/indoors) "az" = ( /obj/effect/turf_decal/partyhard/lines, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/bombass/indoors) -"aA" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "aB" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-7" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "aC" = ( /obj/machinery/grill, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aD" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/food_cart, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aE" = ( /obj/effect/turf_decal/tile/blue, @@ -163,26 +110,12 @@ dir = 4; icon_state = "tile_corner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"aF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8; - icon_state = "tile_corner" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aG" = ( /obj/structure/table, /obj/item/clothing/under/m35jacket/elite/super, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aH" = ( /obj/effect/turf_decal/tile/blue{ @@ -190,9 +123,7 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/tile/blue, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aI" = ( /obj/effect/turf_decal/tile/blue{ @@ -203,42 +134,24 @@ dir = 1; icon_state = "tile_corner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"aJ" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/awaymission/bombass/indoors) -"aK" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aL" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aM" = ( /obj/effect/turf_decal/arrows{ dir = 1; icon_state = "arrows" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aN" = ( /obj/structure/table, /obj/item/seeds/tower/steel, /obj/item/seeds/tower/steel, /obj/item/seeds/tower/steel, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "aU" = ( /obj/machinery/defibrillator_mount/loaded, @@ -251,62 +164,29 @@ dir = 1; pixel_y = 0 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 8; icon_state = "warninglinecorner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/bombass/indoors) -"aX" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/awaymission/bombass/indoors) -"aY" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "aZ" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ba" = ( /obj/machinery/microwave, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bb" = ( /obj/effect/turf_decal/tile/blue{ dir = 4; icon_state = "tile_corner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"bc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4; - icon_state = "tile_corner" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1; - icon_state = "tile_corner" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bd" = ( /obj/effect/turf_decal/tile/blue{ @@ -317,18 +197,14 @@ dir = 1; icon_state = "tile_corner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "be" = ( /obj/effect/turf_decal/tile/blue{ dir = 1; icon_state = "tile_corner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bf" = ( /turf/closed/mineral/partyhard, @@ -351,43 +227,22 @@ icon_state = "b-3" }, /area/awaymission/bombass) -"bk" = ( -/obj/machinery/door/airlock/centcom, -/turf/open/floor/partyhard/steel{ - icon_state = "st-13" - }, -/area/awaymission/bombass/indoors) "bl" = ( /obj/structure/headpike, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) -"bm" = ( -/obj/effect/turf_decal/arrows{ - dir = 8; - icon_state = "arrows" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) "bn" = ( /obj/effect/turf_decal/bot, -/mob/living/simple_animal/pet/dog/shepherd{ - desc = "Смотрит на меня как на мясо."; - name = "Michael Shepard" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/obj/structure/cable, +/obj/machinery/power/rtg/abductor, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bo" = ( /obj/effect/turf_decal/arrows{ dir = 8; icon_state = "arrows" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bp" = ( /obj/structure/guillotine, @@ -395,56 +250,37 @@ icon_state = "b-1" }, /area/awaymission/bombass) -"bq" = ( +"bw" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1; - icon_state = "warningline" + dir = 5 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" +/obj/effect/turf_decal/stripes/corner{ + dir = 8; + icon_state = "warninglinecorner" }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "bx" = ( /obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k/empty, +/obj/item/gun/ballistic/rifle/boltaction/kar98k, /obj/item/ammo_box/magazine/a792x57, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" +/obj/machinery/light/small{ + brightness = 3; + dir = 8 }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "by" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-3" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/bombass/indoors) -"bz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8; - icon_state = "warningline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "bA" = ( /obj/structure/table, /obj/machinery/cell_charger, /obj/item/stock_parts/cell/crap, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/awaymission/bombass/indoors) -"bB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8; - icon_state = "warningline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "bC" = ( /obj/structure/chair{ @@ -463,9 +299,7 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bD" = ( /obj/structure/chair{ @@ -480,9 +314,7 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bE" = ( /obj/structure/chair{ @@ -498,9 +330,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bF" = ( /obj/machinery/smartfridge/chemistry, @@ -514,47 +344,25 @@ /area/awaymission/bombass/indoors) "bH" = ( /obj/machinery/door/airlock/centcom, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bI" = ( /obj/machinery/defibrillator_mount/loaded{ pixel_y = -32 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bJ" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-2" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "bL" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-6" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, -/area/awaymission/bombass/indoors) -"bM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1; - icon_state = "warningline" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/arrows{ - dir = 8; - icon_state = "arrows" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "bN" = ( /obj/structure/table, @@ -563,93 +371,30 @@ /obj/item/seeds/cotton, /obj/item/seeds/cotton, /obj/item/seeds/cotton, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "bO" = ( /obj/structure/dresser, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bP" = ( /obj/structure/table, /obj/item/seeds/wheat, /obj/item/seeds/wheat, /obj/item/seeds/wheat/meat, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, -/area/awaymission/bombass/indoors) -"bQ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"bR" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1; - icon_state = "tile_corner" - }, -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, -/area/awaymission/bombass/indoors) -"bS" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, -/area/awaymission/bombass/indoors) -"bT" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4; - icon_state = "tile_corner" - }, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, -/area/awaymission/bombass/indoors) -"bU" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "bV" = ( /obj/machinery/light/small, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bW" = ( /obj/effect/turf_decal/arrows, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bX" = ( /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "bY" = ( /obj/machinery/light/small{ @@ -660,9 +405,7 @@ id = "bunkerbot"; name = "durable ladder" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "bZ" = ( /obj/effect/turf_decal/stripes/corner, @@ -777,7 +520,6 @@ dir = 5; icon_state = "warningline" }, -/obj/structure/tbin, /turf/open/floor/partyhard/steel{ icon_state = "b-2" }, @@ -829,9 +571,7 @@ /area/awaymission/bombass) "ct" = ( /obj/machinery/hydroponics/constructable, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cv" = ( /obj/effect/turf_decal/stripes/line{ @@ -843,15 +583,11 @@ dir = 8; icon_state = "arrows" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "cw" = ( /obj/machinery/harvester, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cx" = ( /obj/structure/chair{ @@ -862,36 +598,28 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cy" = ( /obj/structure/chair{ dir = 1 }, /obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cz" = ( /obj/structure/chair{ dir = 1 }, /obj/effect/turf_decal/bot_white, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cA" = ( /obj/structure/chair{ dir = 1 }, /obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cB" = ( /obj/structure/chair{ @@ -902,23 +630,17 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cC" = ( /obj/structure/chair/office, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cD" = ( /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cE" = ( /obj/structure/closet/bombcloset/bombsquad, @@ -932,9 +654,7 @@ /obj/item/tank/internals/emergency_oxygen/double, /obj/item/clothing/gloves/color/black, /obj/item/card/id/advanced/black/syndicate_command, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cI" = ( /obj/effect/turf_decal/box, @@ -948,18 +668,14 @@ /obj/item/tank/internals/emergency_oxygen/double, /obj/item/clothing/gloves/color/black, /obj/item/card/id/advanced/black/syndicate_command, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 8; icon_state = "warningline" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cK" = ( /obj/structure/chair{ @@ -975,9 +691,7 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cL" = ( /obj/structure/chair{ @@ -989,9 +703,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/bot_white/left, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cM" = ( /obj/structure/chair{ @@ -1003,9 +715,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/bot_white, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cN" = ( /obj/structure/chair{ @@ -1017,9 +727,7 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cO" = ( /obj/structure/chair{ @@ -1035,9 +743,7 @@ icon_state = "tile_corner" }, /obj/effect/turf_decal/bot_white/right, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cP" = ( /obj/machinery/light/small{ @@ -1048,87 +754,50 @@ id = "bunkertop"; name = "durable ladder" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cQ" = ( /obj/structure/table, /obj/machinery/reagentgrinder, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cR" = ( /obj/machinery/chem_dispenser/fullupgrade, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cS" = ( /obj/machinery/chem_heater, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "cT" = ( /obj/structure/table, /obj/item/surgical_drapes, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cU" = ( /obj/machinery/autolathe/hacked, /obj/machinery/light, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cV" = ( /obj/structure/closet/toolcloset, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, -/area/awaymission/bombass/indoors) -"cW" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k/scope, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/item/ammo_box/magazine/a792x57, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "cY" = ( /obj/effect/turf_decal/stripes/end{ dir = 8; icon_state = "warn_end" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, -/area/awaymission/bombass/indoors) -"db" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1; - icon_state = "warningline" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "de" = ( /obj/structure/rack, /obj/item/gun/ballistic/rifle/boltaction/kar98k, /obj/item/ammo_box/magazine/a792x57, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" +/obj/machinery/light/small{ + dir = 4 }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "df" = ( /obj/structure/table, @@ -1136,48 +805,33 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dg" = ( /obj/machinery/gibber, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dh" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-5" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "di" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-8" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "dj" = ( /obj/effect/turf_decal/partyhard/lines{ icon_state = "s-4" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "dk" = ( -/obj/effect/mob_spawn/human/bombmeat{ - dir = 8; - icon_state = "sleeper" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/obj/machinery/chem_dispenser/mutagensaltpeter, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dl" = ( /obj/effect/turf_decal/stripes/line{ @@ -1185,36 +839,30 @@ icon_state = "warningline" }, /obj/machinery/light/small, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dm" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1; icon_state = "warninglinecorner" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dn" = ( -/obj/effect/mob_spawn/human/bombmeat{ - dir = 8; - icon_state = "sleeper" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" +/obj/structure/rack, +/obj/item/gun/ballistic/rifle/boltaction/kar98k, +/obj/item/ammo_box/magazine/a792x57, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "do" = ( -/obj/effect/mob_spawn/human/bombmeat{ - dir = 8; - icon_state = "sleeper" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/obj/structure/rack, +/obj/item/gun/ballistic/rifle/boltaction/kar98k, +/obj/item/ammo_box/magazine/a792x57, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dp" = ( /obj/structure/fans/tiny/invisible, @@ -1225,15 +873,11 @@ /area/awaymission/bombass) "dq" = ( /obj/machinery/mecha_part_fabricator, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dr" = ( /obj/effect/mob_spawn/human/syndicate/battlecruiser/captain, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ds" = ( /turf/open/floor/partyhard/steel{ @@ -1265,9 +909,7 @@ /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, /obj/item/stack/sheet/glass/fifty, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "dx" = ( /obj/structure/ladder/unbreakable{ @@ -1275,42 +917,32 @@ id = "bunkertop"; name = "durable ladder" }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dy" = ( /obj/machinery/mech_bay_recharge_port, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dz" = ( /obj/machinery/mech_bay_recharge_port{ dir = 8; icon_state = "recharge_port" }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dA" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 4; icon_state = "computer" }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dB" = ( /obj/machinery/computer/mech_bay_power_console{ dir = 8; icon_state = "computer" }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "dC" = ( /obj/item/a_gift/anything, @@ -1329,15 +961,10 @@ /turf/closed/wall/rust, /area/awaymission/bombass) "dI" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/bombass) -"dJ" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + }, /area/awaymission/bombass) "dK" = ( @@ -1347,48 +974,43 @@ /turf/open/floor/plating/partyhard, /area/awaymission/bombass/indoors) "dN" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/bombass/indoors) -"dO" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + }, /area/awaymission/bombass/indoors) "dP" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/plating, /area/awaymission/bombass/indoors) "dQ" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/bombass/indoors) "dR" = ( +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/bombass/indoors) "dS" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, +/obj/effect/spawner/random/exotic/antag_gear_strong, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) "dU" = ( /obj/machinery/gateway{ dir = 9 }, -/turf/open/floor/light, +/turf/open/floor/partyhard/stone/normal, /area/awaymission/bombass/indoors) "dY" = ( -/turf/open/floor/light, +/turf/open/floor/partyhard/stone/normal, /area/awaymission/bombass/indoors) "dZ" = ( /obj/structure/table, @@ -1398,9 +1020,7 @@ /obj/item/seeds/tower, /obj/item/seeds/tower, /obj/item/seeds/tower, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ea" = ( /obj/effect/turf_decal/stripes/corner{ @@ -1408,30 +1028,25 @@ icon_state = "warninglinecorner" }, /obj/structure/curtain/bounty, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eb" = ( /obj/structure/firepit, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) -"ec" = ( -/turf/open/floor/plating, -/area/awaymission/bombass/indoors) "ed" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, /turf/open/floor/plating, /area/awaymission/bombass/indoors) "ee" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/minor/bowler_or_that, +/obj/effect/spawner/random/clothing/bowler_or_that, /turf/open/floor/plating, /area/awaymission/bombass/indoors) "ef" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, +/obj/effect/spawner/random/exotic/antag_gear_strong, /turf/open/floor/plating, /area/awaymission/bombass/indoors) "eg" = ( @@ -1444,23 +1059,17 @@ "eh" = ( /obj/structure/table, /obj/item/seeds/cotton/durathread, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ei" = ( /obj/machinery/chem_master, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ej" = ( /obj/machinery/hydroponics/constructable, /obj/item/shovel/spade, /obj/item/cultivator, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "ek" = ( /turf/closed/indestructible/black, @@ -1469,23 +1078,12 @@ /obj/machinery/hydroponics/constructable, /obj/item/cultivator, /obj/item/reagent_containers/glass/bucket, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "em" = ( /obj/structure/spawner/skeleton, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) -"en" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1; - icon_state = "warningline" - }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, -/area/awaymission/bombass/indoors) "eo" = ( /obj/effect/mine/shrapnel, /turf/open/floor/plating/partyhard, @@ -1495,9 +1093,7 @@ dir = 1; icon_state = "warningline" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eq" = ( /obj/structure/extinguisher_cabinet, @@ -1515,26 +1111,22 @@ /area/awaymission/bombass) "eu" = ( /obj/item/disk/design_disk/adv/cleric_mace, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1" + }, /area/awaymission/bombass/indoors) -"ev" = ( -/obj/structure/tbin, -/turf/open/floor/plating/partyhard, -/area/awaymission/bombass) "ew" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/rifle/boltaction/kar98k, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" }, -/obj/item/ammo_box/magazine/a792x57, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" +/obj/effect/turf_decal/stripes/line{ + dir = 8; + icon_state = "warningline" }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "ex" = ( /obj/effect/turf_decal/partyhard/lines{ @@ -1543,29 +1135,18 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "ez" = ( /obj/structure/table, -/obj/item/gun/ballistic/automatic/carbine, -/obj/item/ammo_box/magazine/carbine, -/obj/item/ammo_box/magazine/carbine, -/obj/item/ammo_box/magazine/carbine, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eB" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency/old, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eC" = ( -/obj/structure/tbin, /obj/item/disk/design_disk/adv/knight_gear, /turf/open/floor/plating, /area/awaymission/bombass) @@ -1585,25 +1166,19 @@ "eJ" = ( /obj/structure/table, /obj/machinery/recharger, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eK" = ( /obj/structure/chair{ dir = 4; icon_state = "chair" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "eL" = ( /obj/structure/table, /obj/item/phone, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-2" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "fP" = ( /obj/effect/mine/explosive, @@ -1617,28 +1192,61 @@ "gX" = ( /obj/effect/turf_decal/stripes/line{ dir = 1; - icon_state = "warningline" + icon_state = "warningline" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"hj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4; + icon_state = "warninglinecorner" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1; + icon_state = "warninglinecorner" }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"lP" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "mk" = ( /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "mL" = ( /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) +"ne" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1; + icon_state = "warningline" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small{ + dir = 4 }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "oA" = ( /obj/effect/mine/stun, @@ -1646,18 +1254,98 @@ icon_state = "b-1" }, /area/awaymission/bombass) +"oE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4; + icon_state = "warninglinecorner" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"qH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"qX" = ( +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"sM" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/bombcloset/bombsquad, +/obj/item/clothing/suit/armor/vest/m35/black, +/obj/item/stack/sheet/mineral/sandbags{ + amount = 30 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/mask/gas/germanfull, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/gloves/color/black, +/obj/item/card/id/advanced/black/syndicate_command, +/obj/machinery/light/small, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) +"tG" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/obj/item/stack/sheet/leather, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) +"tX" = ( +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) "uO" = ( /obj/item/disk/design_disk/adv/kar98k_ammo, /turf/open/floor/partyhard/steel{ icon_state = "b-3" }, /area/awaymission/bombass) +"vi" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + icon_state = "arrows" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8; + icon_state = "warn_end" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"wV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9; + icon_state = "warningline" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"xj" = ( +/obj/effect/mob_spawn/human/bombmeat{ + dir = 8; + icon_state = "sleeper" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/resin, +/area/awaymission/bombass/indoors) "Ad" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical/old, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "Az" = ( /obj/effect/turf_decal/partyhard/lines, @@ -1665,15 +1353,19 @@ dir = 8; icon_state = "arrows" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "Bw" = ( /obj/effect/mine/explosive, /obj/effect/mine/shrapnel, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) +"BA" = ( +/obj/effect/mob_spawn/human/bombmeat{ + dir = 1 + }, +/turf/open/floor/resin, +/area/awaymission/bombass/indoors) "CY" = ( /obj/effect/mine/shrapnel/sting, /turf/open/floor/plating/partyhard, @@ -1682,16 +1374,78 @@ /obj/effect/mine/stun, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) +"DZ" = ( +/obj/effect/mob_spawn/human/bombmeat{ + dir = 4 + }, +/turf/open/floor/resin, +/area/awaymission/bombass/indoors) +"Gs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5; + icon_state = "warningline" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"HJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/arrows{ + dir = 8; + icon_state = "arrows" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4; + icon_state = "warninglinecorner" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1; + icon_state = "warninglinecorner" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) "HU" = ( /obj/effect/mine/shrapnel, /obj/effect/mine/shrapnel, /turf/open/floor/plating/partyhard, /area/awaymission/bombass) +"JN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1; + icon_state = "warninglinecorner" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) "JY" = ( -/obj/structure/spawner/skeleton, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" +/obj/effect/turf_decal/stripes/line{ + dir = 8; + icon_state = "warningline" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"Lj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9; + icon_state = "warningline" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"Lu" = ( +/obj/machinery/door/airlock/centcom, +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) +"Lz" = ( +/mob/living/simple_animal/pet/dog/shepherd{ + desc = "Смотрит на меня как на мясо."; + name = "Michael Shepard" }, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "LR" = ( /obj/structure/barricade/sandbags, @@ -1706,14 +1460,34 @@ dir = 8; icon_state = "arrows" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-1" +/turf/open/floor/plasteel/durasteel, +/area/awaymission/bombass/indoors) +"Oj" = ( +/obj/effect/mob_spawn/human/bombmeat{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 }, +/turf/open/floor/resin, +/area/awaymission/bombass/indoors) +"OF" = ( +/obj/machinery/copytech_platform, +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, /area/awaymission/bombass/indoors) "PJ" = ( /obj/effect/mine/explosive, /turf/open/floor/plating, /area/awaymission/bombass) +"PR" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + icon_state = "arrows" + }, +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) "To" = ( /obj/machinery/light/small{ dir = 4 @@ -1723,6 +1497,14 @@ "UW" = ( /turf/open/floor/plating, /area/awaymission/bombass/indoors) +"Vx" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) "VP" = ( /obj/effect/mine/shrapnel, /turf/open/floor/plating/partyhard, @@ -1730,18 +1512,24 @@ "Yp" = ( /obj/structure/punching_bag, /obj/effect/turf_decal/bot, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/plasteel/durasteel, /area/awaymission/bombass/indoors) "YO" = ( -/obj/structure/mirror, -/turf/closed/wall/partyhard, +/obj/effect/mob_spawn/human/bombmeat{ + dir = 8; + icon_state = "sleeper" + }, +/turf/open/floor/resin, /area/awaymission/bombass/indoors) "Zl" = ( /obj/effect/mine/shrapnel/sting, /turf/open/floor/plating, /area/awaymission/bombass) +"ZI" = ( +/obj/machinery/copytech, +/obj/structure/cable, +/turf/open/floor/partyhard/stone/tiled, +/area/awaymission/bombass/indoors) (1,1,1) = {" af @@ -2137,9 +1925,9 @@ ag ab ab aE -ac -ac -bQ +aL +aL +mk bC cK ab @@ -2328,11 +2116,11 @@ ek (4,1,1) = {" ek ab -ac -ar -aF +aL +aL +aH bb -ac +aL bC cx cL @@ -2522,12 +2310,12 @@ ek (5,1,1) = {" ek eF -ac +aL ez eJ -bc +bd bC -bR +cx cy cL ab @@ -2721,7 +2509,7 @@ at as bd bD -bS +cz cz cM ab @@ -2910,12 +2698,12 @@ ek (7,1,1) = {" ek eq -ac +aL aG cT -bc +bd bE -bT +cB cA cN ab @@ -3104,11 +2892,11 @@ ek (8,1,1) = {" ek ab -ac -ac +aL +aL aH be -aA +aL bE cB cN @@ -3301,9 +3089,9 @@ ab ab ab aI -ac -ac -bU +aL +aL +mL bE cO ab @@ -3495,7 +3283,7 @@ ek ek ab ab -bk +bH ab ab ab @@ -3688,8 +3476,8 @@ ek ek ab ab -ac -bm +aL +bo eK eK ab @@ -3881,10 +3669,10 @@ ek ek ek eq -ac -aq -ac -ac +aL +aL +aL +aL bV ab ab @@ -4075,10 +3863,10 @@ ek ek ek ae -ac -ac +aL +aL bn -aq +Lz bW bH cP @@ -4269,10 +4057,10 @@ ek ek ek eF -ac -ac -ac -ac +aL +aL +tX +aL bV ab ab @@ -4464,9 +4252,9 @@ ek ek ab au -aA -bm -ac +aL +PR +aL eL ab ek @@ -4608,9 +4396,9 @@ bg bg dK dH -ec +UW dN -ec +UW bg bf bf @@ -4659,7 +4447,7 @@ ek ab ab ab -bk +Lu ab ab ab @@ -4802,7 +4590,7 @@ bg bf bf dH -ec +UW dL dL bg @@ -4851,11 +4639,11 @@ ek ek ek ab -av -aJ -bo -bk -av +ZI +tX +PR +bH +aZ cQ ei ab @@ -5046,10 +4834,10 @@ ek ek ab ai -aK -aA +aL +aL bF -aw +aZ cC cR ab @@ -5239,8 +5027,8 @@ ek ek ek ab -aw -aK +OF +aL bo bG bX @@ -5433,9 +5221,9 @@ ek ek ek ab -aw -aK -aA +tX +aL +aL ab ab ab @@ -5627,8 +5415,8 @@ ek ek ek ab -ai -aK +Vx +aL bo bH bY @@ -5661,8 +5449,8 @@ dR dL dL dL -ec -ec +UW +UW LR bg bg @@ -5752,7 +5540,7 @@ bg bg bg bg -ec +UW bg bg bg @@ -5784,11 +5572,11 @@ bg bg du dD -aq -aq -aq +aL +aL +aL mk -aq +aL dD bf bf @@ -5821,8 +5609,8 @@ ek ek ek ab -aw -aK +tX +aL bI ab ab @@ -5840,7 +5628,7 @@ ca dD ab dr -aX +aZ dy ab dD @@ -5854,8 +5642,8 @@ dR dR aa dL -ec -ec +UW +UW UW LR bg @@ -5946,7 +5734,7 @@ bg bg bg bg -ec +UW bg bg bg @@ -5978,11 +5766,11 @@ bg bg bg dE -aq +aL dY dY dY -aq +aL dE bg bg @@ -6015,11 +5803,11 @@ ek ek ek ab -aw -aK -aA -bk -av +ZI +aL +aL +bH +aZ cQ ei ab @@ -6033,9 +5821,9 @@ bg cb dD dq -aY -aY -aY +aZ +aZ +aZ dA dD cq @@ -6047,10 +5835,10 @@ bg dH dL dL -ec -ec -ec -ec +UW +UW +UW +UW LR bg bg @@ -6140,7 +5928,7 @@ bg bg bg bg -ec +UW bg bg bg @@ -6172,11 +5960,11 @@ bg bg bg eg -aq +aL dY dU dY -JY +aL eg bg bg @@ -6209,11 +5997,11 @@ ek ek ek ab -ai -aK -aA +lP +aL +aL bF -aw +aZ cC cR ab @@ -6226,11 +6014,11 @@ bg bg cb dp -aw -aY +aZ +aZ dx -aY -aK +aZ +aZ dD cq bg @@ -6354,7 +6142,7 @@ bg bf bf dL -ec +UW bg bg bg @@ -6366,11 +6154,11 @@ bg bg bg dE -aq +aL dY dY dY -aq +aL dE bg bg @@ -6403,9 +6191,9 @@ ek ek ek ab -aw -aK -aA +OF +aL +aL bG bX cD @@ -6421,9 +6209,9 @@ bg cb dD dq -aY -aY -aY +aZ +aZ +aZ dB dD cr @@ -6528,7 +6316,7 @@ bg bg bg dH -ec +UW bg bg bg @@ -6560,11 +6348,11 @@ bg bg du dD -aq +aL mL -aq -aq -aq +aL +aL +aL dD du bg @@ -6597,9 +6385,9 @@ ek ek ek ab -aw -aK -aA +tX +aL +aL ab ab ab @@ -6662,7 +6450,7 @@ bg dL dH dL -dO +dN dK dK bg @@ -6722,7 +6510,7 @@ bg bg bg dH -ec +UW bg bg bg @@ -6791,11 +6579,11 @@ ek ek ek ab -aw -aK -aA -bk -av +ZI +aL +aL +bH +aZ cQ ei ab @@ -6856,7 +6644,7 @@ dK dL dH dL -ec +UW bg bg bg @@ -6985,11 +6773,11 @@ ek ek ek ab -ai -aK -aA +tG +aL +aL bF -aw +aZ cC cR ab @@ -7046,7 +6834,7 @@ bg bg bg dL -ec +UW dL dH dL @@ -7179,9 +6967,9 @@ ek ek ek ab -ax +OF +aL aL -aA bG bX cD @@ -7216,7 +7004,7 @@ bf bf bf bf -ev +bg bg bg bg @@ -7437,18 +7225,18 @@ dL dL dH dL -ec +UW dL dL bg bg bg dK -dJ -ec -ec +dI +UW +UW dL -ec +UW dL dH bg @@ -7606,7 +7394,7 @@ dP dN dH ee -ec +UW bg bg bg @@ -7630,20 +7418,20 @@ bg dL dL dH -ec +UW dN -ec +UW dL -ec +UW dL dL dL bg dL dL -ec -ec -ec +UW +UW +UW dH bg bg @@ -7794,12 +7582,12 @@ bg bg bg dH -dO +dN dR -dO +dN ed dH -dO +dN dL bg bg @@ -7825,17 +7613,17 @@ dI dL dH dL -ec +UW dL dL dL -ec -ec +UW +UW dL dL -ec +UW dL -ec +UW dL dL dH @@ -7960,7 +7748,7 @@ ek ek ab eB -aA +aL dw ab ek @@ -7990,8 +7778,8 @@ bg dH dP dR -ec -ec +UW +UW dH dL dL @@ -8026,11 +7814,11 @@ bg dK dL dL -ec +UW dL dL dN -ec +UW dL Dn bg @@ -8099,7 +7887,7 @@ bg bg bg dL -ec +UW dH bf bg @@ -8154,7 +7942,7 @@ ab eF eq Ad -ar +aL cU ab ek @@ -8183,8 +7971,8 @@ bg bg VP dL -ec -ec +UW +UW dL dL dL @@ -8343,11 +8131,11 @@ ek ek ab aj -ay +bH aM -aA +aL aM -aA +aL aM cV ab @@ -8377,7 +8165,7 @@ bg bg dH dL -ec +UW bf bf bf @@ -8464,7 +8252,7 @@ bg bg bg bg -ev +bg bf bf bf @@ -8487,7 +8275,7 @@ bg bg bg dL -ec +UW dH bf bf @@ -8541,7 +8329,7 @@ ab ab ab ab -ay +bH ab ab ab @@ -8730,10 +8518,10 @@ ek (37,1,1) = {" ek ek -ek -ek -ek ab +do +do +do bx cY cE @@ -8923,13 +8711,13 @@ ek "} (38,1,1) = {" ek -ek -ek -ek -ek ab -cW -cv +ab +do +Lj +JY +JY +HJ cI ab ek @@ -9117,14 +8905,14 @@ ek "} (39,1,1) = {" ek -ek -ek -ek -ek ab -bx -gX +dn +do +qH +cI cI +gX +sM ab ek bf @@ -9311,12 +9099,12 @@ ek "} (40,1,1) = {" ek -ek -ek -ek -ek ab -bx +do +wV +JN +cI +cI cv cI ab @@ -9505,13 +9293,13 @@ ek "} (41,1,1) = {" ek -ek -ek -ek -ek ab -bx -db +do +Gs +oE +cI +cI +gX cI ab ek @@ -9699,14 +9487,14 @@ ek "} (42,1,1) = {" ek -ek -ek -ek -ek ab -de -bM +dn +do +qH +cI cI +cv +sM ab ek bf @@ -9893,13 +9681,13 @@ ek "} (43,1,1) = {" ek -ek -ek -ek -ek ab +ab +do +bw +ew ew -db +hj cI ab ek @@ -10088,10 +9876,10 @@ ek (44,1,1) = {" ek ek -ek -ek -ek ab +do +do +do de LV cI @@ -10282,12 +10070,12 @@ ek (45,1,1) = {" ek ek -ek -ek ab ab ab -ay +ab +ab +bH ab ab ab @@ -10674,11 +10462,11 @@ ek ek aU bL -aA -aq +qX +qX Yp -ar -aA +qX +qX di ab ek @@ -11253,15 +11041,15 @@ ek ek ab aD -av +aZ bA bN bP dZ eh aN -aJ -bq +aZ +ep ab ek bf @@ -11447,15 +11235,15 @@ ek ek ab ah -aw -aY -aY -aY -aY -aY -aY -aK -en +aZ +aZ +aZ +aZ +aZ +aZ +aZ +aZ +ep ab ek bf @@ -11641,14 +11429,14 @@ ek ek ab aV -aw +aZ el ej ct ct ct ct -aK +aZ dl ab ek @@ -11835,15 +11623,15 @@ ek ek ae an -aw -aY -aY -aY -aY -aY -aY -aK -bq +aZ +aZ +aZ +aZ +aZ +aZ +aZ +aZ +ep ab ek bf @@ -12029,14 +11817,14 @@ ek ek eq an -ax aZ aZ aZ aZ aZ aZ -aL +aZ +aZ ep ab ek @@ -12223,14 +12011,14 @@ ek ek eF aW -bz -bB -bz cJ -bz -bz -bz -bB +cJ +cJ +cJ +cJ +cJ +cJ +cJ dm eF ek @@ -12424,8 +12212,8 @@ bO df dg dk -do -dn +aL +aL ab ek bf @@ -12615,10 +12403,10 @@ ab ab ab ab -YO ab ab ab +ay ab ab ek @@ -12803,18 +12591,18 @@ ek "} (58,1,1) = {" ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek +ab +DZ +DZ +DZ +Oj +DZ +DZ +DZ +DZ +vi +BA +ab ek bf bf @@ -12997,18 +12785,18 @@ ek "} (59,1,1) = {" ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek +eF +JY +JY +JY +JY +JY +JY +JY +JY +hj +BA +ab ek bf bf @@ -13191,18 +12979,18 @@ ek "} (60,1,1) = {" ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek +ab +YO +YO +YO +xj +YO +YO +YO +YO +ne +BA +ab ek bf bf @@ -13385,18 +13173,18 @@ ek "} (61,1,1) = {" ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek -ek +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab ek bf bf diff --git a/_maps/away/caves.dmm b/_maps/away/caves.dmm new file mode 100644 index 000000000000..8f481dea1aba --- /dev/null +++ b/_maps/away/caves.dmm @@ -0,0 +1,76606 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid) +"ab" = ( +/turf/cordon, +/area/cordon) +"ac" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"ad" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid/level_two) +"ae" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"af" = ( +/obj/effect/landmark/awaystart, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"ag" = ( +/obj/structure/cable, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"ah" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"ai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"aj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"ak" = ( +/mob/living/simple_animal/hostile/mining_drone, +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid) +"al" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"am" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid/level_three) +"an" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid/level_four) +"ao" = ( +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 3 + }, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"ap" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"aq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ar" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"as" = ( +/obj/item/bedsheet/brown, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"at" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"au" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"av" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/spawner/random/food_or_drink/condiment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"ax" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"az" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"aA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesCabin2"; + name = "Cabin 2" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"aC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"aE" = ( +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"aG" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"aI" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table_frame, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"aK" = ( +/obj/item/clothing/mask/gas/explorer, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"aL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/highsecurity{ + name = "Gateway Terminial Delta" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"aM" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/third_outpost/engineering) +"aN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"aP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/grunge{ + name = "Lower Level Access" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"aS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"aV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"aX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/red/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"aY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"ba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"bc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"bf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"bh" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"bi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"bj" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"bk" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"bl" = ( +/obj/structure/toilet, +/obj/machinery/button/door/directional/west{ + id = "fortnite2"; + name = "Private Stall Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"bm" = ( +/obj/structure/grille, +/obj/item/shard, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"bn" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"bp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost) +"bq" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"bs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"bu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/storage) +"bw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"by" = ( +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"bz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"bB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"bC" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"bD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"bE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"bF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"bG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"bI" = ( +/obj/structure/flora/rock/pile/icy, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"bJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"bK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "Emergency Lower Level Access Card"; + puzzle_id = "mininglvl1" + }, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"bL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"bN" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"bO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Mineral Processing" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"bP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"bS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"bT" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"bU" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"bW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"bX" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"bY" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"ca" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"ce" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lantern{ + on = 1 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"ch" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"ci" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"ck" = ( +/obj/machinery/door/airlock/hatch{ + name = "Upper Level Transist Access" + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"co" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"cp" = ( +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"cs" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"ct" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid/level_two) +"cu" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"cv" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"cw" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"cy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"cz" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/third_outpost/transit) +"cA" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"cC" = ( +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/rest) +"cD" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/engineering) +"cF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"cG" = ( +/turf/closed/wall/mineral/titanium/interior, +/area/awaymission/caves/second_outpost/tunnel) +"cH" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"cI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"cJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/bump_teleporter{ + id = "t2b"; + id_target = "t2a"; + name = "lvl2 to lvl 1 b2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"cK" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Delta Outpost Research Terminal"; + network = list("caveslvl1") + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"cN" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center/cracked, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"cO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"cP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"cQ" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"cU" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"cW" = ( +/obj/effect/landmark/awaystart, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"da" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/red/directional/north, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"db" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"de" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"df" = ( +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"dh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"dj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"dn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"dr" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"ds" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Does-It-For-The-Vine"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/spear/bonespear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"dt" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"du" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/crowbar/large, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"dv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"dz" = ( +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"dG" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/third_outpost) +"dH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"dK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"dL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"dM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"dO" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid/level_two) +"dQ" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"dS" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"dU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"dV" = ( +/turf/closed/wall, +/area/awaymission/caves/third_outpost/engineering) +"dW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Recreational Lounge" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"dX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"dZ" = ( +/obj/machinery/conveyor{ + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"ea" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/engineering) +"eb" = ( +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"ec" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost) +"ee" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ef" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"eg" = ( +/obj/item/emptysandbag, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"eh" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"ei" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"ej" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"el" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"em" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"en" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"eo" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"et" = ( +/obj/item/gps/mining{ + gpstag = "RIPLEY01" + }, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"ev" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"ew" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"ex" = ( +/obj/structure/cable, +/obj/machinery/light/dim/directional/west, +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"ez" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"eB" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/bmp_asteroid/level_two) +"eC" = ( +/obj/item/stack/rods, +/obj/machinery/light/red/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"eD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"eF" = ( +/obj/machinery/light/directional/east, +/obj/machinery/mecha_part_fabricator/maint, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"eH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_x = -32 + }, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"eL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"eQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/dead{ + desc = "A seemingly long-forgotten plastic plant, left to be buried under the constant light ash in the air."; + name = "ashen potted plant" + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"eR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Gateway Terminial Delta" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"eU" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/item/crowbar, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"eV" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"eZ" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"fa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"fc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"fd" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid/level_two) +"fe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"fg" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"fk" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"fl" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2encounter1"; + name = "lvl2encounter1" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"fn" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"fo" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"fr" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"fs" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2encounter4"; + name = "lvl2encounter4" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"fv" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"fz" = ( +/obj/effect/landmark/awaystart, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"fA" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/item/gun/energy/kinetic_accelerator{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"fC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"fD" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"fH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -5 + }, +/obj/item/clothing/mask/cigarette/robust{ + pixel_x = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"fL" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"fP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"fQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/east, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"fS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"fW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"fY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"gb" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"gc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"gf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"gh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"gj" = ( +/obj/structure/table/wood, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"gk" = ( +/obj/structure/lattice, +/obj/item/stack/rods, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"gl" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"gm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"gn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"gp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"gq" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/clothing/shoes/sneakers/brown, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"gr" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"gs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"gu" = ( +/turf/closed/wall, +/area/awaymission/caves/third_outpost/transit) +"gv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"gw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"gx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"gy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_root/caves{ + key = "caves_lvl2bridge2"; + name = "lvl2bridge2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"gz" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"gC" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"gD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"gI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/item/binoculars, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"gJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"gK" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"gL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"gP" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"gQ" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"gT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"gU" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "caves_base" + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"gX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"gY" = ( +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"gZ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"ha" = ( +/obj/effect/landmark/awaystart, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"hb" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 1 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"hc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"hd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"hg" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"hh" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"hi" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"hl" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"hn" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"ho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/ammo_casing/c46x30mm, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -11; + pixel_y = 13; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 3; + pixel_y = 14; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -1; + pixel_y = -5; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 9; + pixel_y = 6; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 5; + pixel_y = -9; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -5; + pixel_y = -14; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -5; + pixel_y = 5; + projectile_type = null + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"hp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Tunnel Maintenance Access" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"hr" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"hs" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"ht" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"hw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"hx" = ( +/obj/structure/table_frame/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"hy" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"hA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"hC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"hD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"hE" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"hF" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"hG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"hI" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"hJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"hK" = ( +/obj/structure/ladder/unbreakable{ + id = "caves1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"hL" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"hN" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"hO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"hR" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/third_outpost) +"hT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"hV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"hY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"id" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "caveroboinner"; + pixel_x = -24; + pixel_y = 4; + req_access_txt = "200" + }, +/obj/machinery/button/door{ + id = "caverobooutter"; + pixel_x = -24; + pixel_y = -4; + req_access_txt = "200" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ie" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door/directional/east{ + id = "CavesCabin2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"ig" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ih" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"ii" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/item/radio, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ij" = ( +/obj/structure/table, +/obj/item/storage/firstaid/brute, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"ik" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "CavesCabin4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"il" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/table/wood, +/obj/item/radio/off{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"in" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"is" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"iv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"iw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"ix" = ( +/obj/structure/frame/computer{ + dir = 8; + name = "busted computer frame" + }, +/obj/item/shard, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"iA" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"iB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/item/wrench, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"iE" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"iF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"iG" = ( +/obj/item/gps/computer, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"iH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"iJ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"iK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"iL" = ( +/obj/item/stack/sheet/mineral/sandbags{ + amount = 12 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"iM" = ( +/obj/structure/cable, +/obj/machinery/light/dim/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"iN" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/barracks) +"iQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/card/id/away/caves, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"iT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/deployable_turret{ + anchored = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"iU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"iW" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"ja" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"jc" = ( +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"jg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"jh" = ( +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"ji" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"jn" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"jp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"jq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/bump_teleporter{ + id = "t3a"; + id_target = "t3b"; + name = "lvl1 to lvl 2 a3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"jr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/warm/directional/south, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"js" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"ju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/red, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"jv" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/poster/official/moth_epi{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"jx" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"jy" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"jz" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"jA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/wormhole_jaunter, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"jB" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/burnt, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"jC" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4; + welded = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"jD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/engineering) +"jF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"jI" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Delta Outpost Life Support"; + network = list("caveslvl1") + }, +/obj/structure/rack, +/obj/item/wormhole_jaunter, +/obj/item/wormhole_jaunter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/card/id/away/caves/engineer, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"jL" = ( +/obj/machinery/door/airlock/survival_pod/glass{ + name = "Tool Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"jM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"jN" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Rushes-In-Blindly"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/spear/bonespear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"jO" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"jQ" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/engineering, +/obj/item/construction/rcd, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"jS" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"jT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "CavesCabinA"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"jU" = ( +/obj/item/clothing/mask/gas/explorer, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"jW" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"jX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"jY" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/sign/poster/official/science{ + pixel_y = 32 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"ka" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"kb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_shuttle, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"kc" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"kd" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/rest) +"kg" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"kh" = ( +/obj/structure/mineral_door/iron{ + name = "expansssive waresss emporium" + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"ki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"km" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"kn" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"ko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"kp" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/storage) +"kt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1; + welded = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"kw" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesCabinB"; + name = "Personal Quarters A" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"kx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"ky" = ( +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"kz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny/shield, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"kB" = ( +/turf/closed/wall/mineral/titanium/survival/pod, +/area/awaymission/caves/third_outpost/pod) +"kD" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"kI" = ( +/turf/closed/wall, +/area/awaymission/caves/bmp_asteroid) +"kJ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"kL" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"kM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "orangejustice3"; + name = "Cabin Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"kR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"kS" = ( +/obj/structure/chair/stool/directional/west, +/obj/structure/sign/poster/contraband/lamarr{ + pixel_y = 32 + }, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"kT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"kU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"kV" = ( +/obj/item/crowbar, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"kW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/bump_teleporter{ + id = "t2a"; + id_target = "t2b"; + name = "lvl1 to lvl 2 a2" + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"kX" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"la" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"lc" = ( +/obj/effect/landmark/tram/caves/lower, +/obj/machinery/computer/tram_controls/caves, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"le" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"lg" = ( +/obj/structure/cable, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"lh" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"lk" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/awaymission/caves/second_outpost/tunnel) +"ll" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"lm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"lq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/structure/fence/door/opened, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"lr" = ( +/turf/closed/indestructible/fakedoor{ + name = "Central Terminal Access" + }, +/area/awaymission/caves/second_outpost/tunnel) +"lt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"lw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"lx" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/research) +"ly" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"lz" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"lA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "CavesCabinSec"; + name = "Personal Quarters" + }, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"lB" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"lD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"lF" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"lG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"lH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"lI" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"lJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"lK" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"lL" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"lO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"lP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"lS" = ( +/turf/open/floor/circuit, +/area/awaymission/caves/second_outpost/rest) +"lT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/effect/decal/cleanable/dirt, +/obj/item/mining_scanner, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"lU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "orangejustice3"; + name = "Cabin 3" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"lV" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"lW" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"lX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"lZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ma" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"mb" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"mc" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"me" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"mf" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"mg" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost) +"mj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"mn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/east{ + c_tag = "Delta Outpost Living Quarters"; + network = list("caveslvl1") + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"mo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"mr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/decal/cleanable/blood/splatter/over_window, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"mw" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"mx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"my" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage Wing" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"mz" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/third_outpost) +"mB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor{ + id = "cavecargoinner" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"mC" = ( +/obj/machinery/button/door{ + id = "caverobooutter"; + pixel_x = 4; + pixel_y = 24; + req_access_txt = "200" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"mG" = ( +/obj/effect/landmark/lift_id/caves, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"mJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"mK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"mL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"mM" = ( +/obj/machinery/door/poddoor/massdriver_trash{ + id = "cavetrash" + }, +/obj/machinery/conveyor{ + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"mP" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure/engineering{ + req_access_txt = "away_engineering" + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/rglass{ + amount = 25 + }, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/inducer, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"mQ" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"mR" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"mU" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"mV" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"mX" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/surrounding_tile/burnt, +/obj/structure/stone_tile/center/burnt, +/obj/structure/closet/crate/wooden{ + name = "my tings :)" + }, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/obj/item/toy/plush/snakeplushie{ + name = "Has-No-Legs" + }, +/obj/item/toy/clockwork_watch, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"mZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"na" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"nc" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2tunnelbridge"; + name = "lvl2tunnelbridge" + }, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid/level_two) +"nd" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"nf" = ( +/obj/machinery/button/door/directional/south{ + id = "cavetrash" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"ng" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost) +"nh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/cigbutt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"ni" = ( +/obj/effect/landmark/awaystart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"nj" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"nk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"nm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesCabin5"; + name = "Cabin 5" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"np" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"nr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/vending/snack, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"nu" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/clock/directional/east, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"nw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 2 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"nx" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesCabinC"; + name = "Personal Quarters B" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"ny" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"nz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"nA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "CavesCabin5"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"nB" = ( +/obj/structure/holosign/barrier/atmos, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"nC" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"nD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"nK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"nL" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"nM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"nN" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"nQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"nR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_two) +"nT" = ( +/obj/structure/ladder/unbreakable{ + id = "caves2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"nU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"nV" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/tunnel) +"nW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"nX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"nY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"oa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 10 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"ob" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"od" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl3tear"; + name = "lvl3tear" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"oe" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_two) +"of" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"oi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"oj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ok" = ( +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"om" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/surrounding_tile, +/obj/machinery/smartfridge/drying_rack, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"op" = ( +/obj/item/shard, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"or" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/engineering) +"os" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ou" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"ox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"oA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"oC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/pod) +"oE" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/survival_pod, +/obj/item/kinetic_crusher{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/kinetic_crusher, +/obj/item/kinetic_crusher{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"oL" = ( +/obj/machinery/recharger, +/obj/machinery/light/directional/east, +/obj/item/keycard/blue{ + desc = "A blue keycard with a label reading 'Research Outpost Echo Central Access'."; + name = "Research Terminal Access Card"; + puzzle_id = "welovefortnite" + }, +/obj/structure/table/reinforced, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"oM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/terminal/caves/researchbroke2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"oN" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"oO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"oP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"oQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"oR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"oS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"oT" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/barracks) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"oY" = ( +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/floodlight_frame, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"pb" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl4"; + name = "lvl4" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_four) +"pd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/bag/ore, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"pe" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_four) +"pf" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"pk" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"pl" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl3segment2"; + name = "lvl3segment2" + }, +/turf/closed/indestructible/rock, +/area/awaymission/caves/bmp_asteroid/level_three) +"pm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"pp" = ( +/obj/item/emptysandbag, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"pq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"pr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/rack, +/obj/item/storage/box/donkpockets/donkpocketpizza, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"ps" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"pv" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"py" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/shard, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"pA" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"pB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"pC" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"pE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"pF" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/second_outpost/barracks) +"pH" = ( +/obj/item/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"pI" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "old sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"pJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"pK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"pO" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"pQ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"pR" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/item/folder, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"pT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"pU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"pV" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/light/warm/directional/east, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"pW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"pX" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"qd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"qe" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"qf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"qh" = ( +/obj/machinery/door/airlock/survival_pod/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"qi" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"qj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"qk" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/rack, +/obj/machinery/airalarm/directional/north, +/obj/item/storage/box/donkpockets/donkpocketspicy, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"ql" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"qs" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"qt" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/empty, +/obj/structure/table/reinforced, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"qw" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"qx" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"qy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"qA" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"qH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"qI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"qJ" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"qL" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"qM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"qN" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/storage) +"qP" = ( +/obj/item/clothing/mask/gas/explorer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"qR" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"qS" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"qV" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"qX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"qY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"rb" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"rc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"re" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"rg" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"rh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"ri" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"rk" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/engineering) +"rl" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"rm" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"ro" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/vending/cigarette, +/obj/machinery/light/red/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Delta Outpost Mess Hall"; + network = list("caveslvl1") + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"rp" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"rr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/engineering) +"rs" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"ru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"rw" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"rx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"rA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"rB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"rC" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"rE" = ( +/obj/item/storage/bag/tray, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"rG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"rI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/closet/secure_closet{ + icon_state = "mining"; + name = "shaft miner's locker"; + req_access_txt = "away_general" + }, +/obj/item/clothing/suit/hooded/explorer, +/obj/item/storage/backpack/satchel/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/item/clothing/under/rank/cargo/miner/lavaland, +/obj/item/pickaxe, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"rJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"rK" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"rM" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"rN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"rP" = ( +/obj/structure/table/wood, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"rU" = ( +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_x = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"rV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"rW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/third_outpost) +"rX" = ( +/obj/structure/table, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"rY" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"sa" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"sb" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/tunnel) +"sd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"se" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/depo) +"si" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"sj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"sk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"sm" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/dorm) +"sn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/floodlight, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/third_outpost) +"so" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/machinery/door/airlock/mining/glass{ + name = "Storage Office" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"sp" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public{ + name = "Break Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"sq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"st" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"su" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"sv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"sx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"sy" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"sA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"sB" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"sD" = ( +/obj/machinery/door/keycard{ + puzzle_id = "mininglvl1" + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"sE" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/black{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"sF" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/conveyor{ + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"sG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"sH" = ( +/obj/item/gps/mining{ + gpstag = "RIPLEY02" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"sI" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"sJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"sL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"sM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"sN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"sO" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"sQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"sS" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"sT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"sV" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"sX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"sZ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"ta" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"td" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"tf" = ( +/obj/item/holosign_creator/atmos, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"tg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"ti" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"tk" = ( +/obj/structure/railing/corner, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid) +"tm" = ( +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"tn" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/item/soap, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"tp" = ( +/obj/item/gps/computer, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"tq" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"tt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"tw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"tx" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"ty" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"tz" = ( +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"tA" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"tB" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/item/card/id/away/caves/engineer, +/obj/item/card/id/away/caves/engineer{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"tD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"tH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"tI" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"tJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"tL" = ( +/obj/machinery/door/airlock{ + id_tag = "fortnite2"; + name = "Private Stall B" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"tM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"tR" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"tU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"tW" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/caves/bmp_asteroid) +"tX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Dorm Wing" + }, +/obj/machinery/door/firedoor/closed, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"ub" = ( +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"uh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"ui" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"uj" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/depo) +"uk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"ul" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/computer{ + dir = 8; + name = "busted computer frame" + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"uo" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"up" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"uq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/paper_bin, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"ur" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"us" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"ut" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"uu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"uy" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"uA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"uB" = ( +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"uC" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"uE" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"uF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/coffee{ + list_reagents = list(/datum/reagent/consumable/coffee=10) + }, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"uH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"uI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/bump_teleporter{ + id = "t1a"; + id_target = "t1b"; + name = "lvl1 to lvl 2 a1" + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"uJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"uK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"uL" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid/level_two) +"uM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"uO" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/item/card/id/away/caves, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"uP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"uR" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"uT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"uU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/east, +/obj/machinery/button/door/directional/west{ + id = "orangejustice1"; + name = "Cabin Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"uW" = ( +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"uZ" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/snack, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"vc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"vf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"vi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"vj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"vk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"vq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"vr" = ( +/obj/structure/cable, +/obj/machinery/power/rtg, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"vs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"vv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 3; + pixel_y = 14; + projectile_type = null + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"vx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"vy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"vz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"vA" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/closet/secure_closet{ + icon_state = "mining"; + name = "shaft miner's locker"; + req_access_txt = "away_general" + }, +/obj/item/clothing/suit/hooded/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/storage/backpack/explorer, +/obj/item/clothing/under/rank/cargo/miner/lavaland, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/storage/bag/ore, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"vC" = ( +/obj/item/stack/cable_coil/cut, +/obj/structure/frame/computer{ + dir = 8; + name = "busted computer frame" + }, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + c_tag = "Delta Outpost Mining Dock"; + network = list("caveslvl1") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"vD" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"vE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"vG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"vH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"vI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4; + welded = 1 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"vJ" = ( +/obj/machinery/light/directional/south, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"vL" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"vN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesCabin1"; + name = "Cabin 1" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"vQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"vT" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"vU" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/main_outpost/seconadry/research) +"vV" = ( +/obj/structure/railing/corner, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"vX" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/tunnel) +"vY" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"wa" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"wb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"wc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"wd" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/tunnel) +"we" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/storage) +"wf" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/trash/can, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"wh" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"wk" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl3segment3"; + name = "lvl3segment3" + }, +/turf/closed/indestructible/rock, +/area/awaymission/caves/bmp_asteroid/level_three) +"wm" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"wn" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"wq" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid) +"wr" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"ws" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"wt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"wu" = ( +/obj/vehicle/sealed/mecha/working/ripley/mining, +/turf/open/floor/plasteel/recharge_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"wv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"wy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"wz" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"wA" = ( +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"wC" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"wD" = ( +/obj/item/pickaxe/drill{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/pickaxe/drill, +/obj/structure/table/reinforced, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"wE" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"wG" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost) +"wI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"wK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"wL" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/item/flashlight/seclite, +/obj/item/clothing/head/helmet, +/obj/item/clothing/suit/armor/vest/old, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/melee/baton/loaded, +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "away_sec" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"wP" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"wR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"wS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "Tunnel Maintenance Access" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"wT" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"wV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"wW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"wX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"wY" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"xa" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "Emergency Lower Level Access Card"; + puzzle_id = "mininglvl1" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"xc" = ( +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"xd" = ( +/obj/structure/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"xf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"xn" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"xo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/neutral/filled/warning{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"xp" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"xr" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/stack/cable_coil/cut, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/frame/computer{ + name = "busted computer frame" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"xu" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"xv" = ( +/obj/structure/ladder/unbreakable{ + height = 1; + id = "caves1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"xw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"xx" = ( +/obj/structure/chair/stool/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"xC" = ( +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_y = -32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"xD" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"xF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"xI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/button/door/directional/west{ + id = "orangejustice2"; + name = "Cabin Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/item/card/id/away/caves, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"xK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"xL" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure weapons crate. A tamper-proof lock is installed on this crate that'll more than likely destroy the contents inside if opened improperly."; + name = "lizard removal crate"; + req_access_txt = "away_sec"; + tamperproof = 1 + }, +/obj/item/gun/ballistic/automatic/ar, +/obj/item/gun/ballistic/automatic/ar, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/ammo_box/magazine/m556, +/obj/item/paper{ + info = "Within this supply, you will find two (2) NT-ARG 'Boarder' assualt rifles and six (6) toploader magazines filled with 5.56mm ammunition, loaded with 30 bullets each. Please assure the local defense officer on site is able to properly account for inventory and provide appropriate training to the mining crew on safe operation and maintenance. If further armaments is required to deal with the local threat, please make a request through the Site Director."; + name = "defense armaments" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"xN" = ( +/obj/structure/frame/computer{ + dir = 1; + name = "busted computer frame" + }, +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"xP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"xS" = ( +/obj/item/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"xV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"xW" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"xZ" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"ya" = ( +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"ye" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"yf" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"yl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"yq" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"yt" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"yu" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"yv" = ( +/obj/item/chair/stool, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"yA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"yB" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"yE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"yG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"yK" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate{ + name = "tool set crate" + }, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/wirecutters, +/obj/item/multitool, +/obj/item/clothing/glasses/welding, +/obj/item/weldingtool, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"yL" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/mineral/titanium/survival/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"yO" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"yR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"yV" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"yW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"yZ" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"zd" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 2; + output_dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"ze" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"zf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"zg" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"zi" = ( +/obj/machinery/door/airlock{ + name = "Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"zk" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"zm" = ( +/obj/effect/landmark/awaystart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"zn" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/modular_map_root/caves{ + key = "caves_lvl2bridge3"; + name = "lvl2bridge3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"zo" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"zr" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"zt" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "caves_base" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"zu" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"zx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/frame/computer{ + name = "busted computer frame" + }, +/obj/item/stack/cable_coil/cut, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"zz" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"zB" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2researchpost"; + name = "lvl2researchpost" + }, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/tunnel) +"zC" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"zD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"zE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/storage) +"zF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"zG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"zH" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/o2, +/obj/item/storage/pill_bottle/happinesspsych, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"zI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"zJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"zL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"zM" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"zO" = ( +/obj/item/food/grown/banana{ + name = "place where i put my map stuff" + }, +/turf/open/floor/oldshuttle, +/area/awaymission/caves/bmp_asteroid) +"zR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/item/storage/briefcase, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"zS" = ( +/obj/structure/shipping_container/nthi, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"zT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"zU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"zY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesCabin4"; + name = "Cabin 4" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"Aa" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/button/door/directional/east{ + id = "CavesCabinSec"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Ac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/folder, +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/item/stamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ad" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Ae" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Ag" = ( +/turf/closed/indestructible/rock, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ai" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Ak" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Al" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Am" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"An" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/east, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ap" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/camera/directional/north{ + c_tag = "Delta Outpost Exosuit Garage"; + network = list("caveslvl1") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Ar" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"As" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/door_assembly/door_assembly_hatch, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"At" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Au" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Az" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"AB" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"AC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cavecargooutter" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"AF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"AI" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/flashlight/lamp, +/obj/structure/sign/poster/contraband/cc64k_ad{ + pixel_y = 32 + }, +/obj/item/card/id/away/caves/robo, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"AJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"AO" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"AQ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"AR" = ( +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"AS" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"AX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"AZ" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/mineral/titanium/survival/pod, +/area/awaymission/caves/third_outpost/pod) +"Ba" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Bb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Bc" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Bd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Be" = ( +/obj/machinery/stasis/survival_pod, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Bg" = ( +/obj/item/wrench, +/obj/item/circuit_component/airlock, +/obj/structure/sign/flag/nanotrasen/directional/east, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"Bh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost) +"Bi" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/moth_epi{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Bj" = ( +/obj/structure/door_assembly/door_assembly_mhatch, +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Bk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Bm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Bp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"Bs" = ( +/obj/machinery/button/door{ + id = "cavecargoinner"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Bv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cavecargoinner" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"Bx" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"By" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"BA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/circuit{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"BB" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"BC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/item/survivalcapsule, +/obj/item/survivalcapsule{ + pixel_y = 4 + }, +/obj/item/survivalcapsule{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"BF" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"BG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"BH" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"BI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wallframe/firealarm, +/obj/item/electronics/firealarm, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"BJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"BK" = ( +/obj/structure/stone_tile/block/burnt, +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"BM" = ( +/obj/item/stack/sheet/iron, +/obj/structure/holosign/barrier/atmos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"BQ" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"BR" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"BV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"BX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Cb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Cd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ce" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/third_outpost/engineering) +"Cf" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Ci" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Cj" = ( +/obj/effect/mapping_helpers/ztrait_injector/caves, +/turf/open/floor/oldshuttle, +/area/awaymission/caves/bmp_asteroid) +"Cl" = ( +/obj/item/stack/rods, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/bmp_asteroid/level_two) +"Cn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/storage) +"Co" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Cp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Cr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Ct" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Cu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Cv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Cy" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/effect/spawner/random/engineering/flashlight, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"CC" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Delta Outpost Research Living Quarters"; + network = list("caveslvl1") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"CE" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/bmp_asteroid/level_two) +"CF" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/purple{ + dir = 4 + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"CI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"CJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"CK" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"CM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"CQ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/gps/mining, +/obj/item/gps/mining{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/gps/mining{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pickaxe, +/obj/item/pickaxe, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"CR" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"CU" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"Db" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "orangejustice2"; + name = "Cabin 2" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"Dc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Dd" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Df" = ( +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"Dh" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Di" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Dj" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"Dk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"Dn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Do" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ds" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"Dv" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Dw" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "caveroboinner" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Dx" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Dy" = ( +/obj/structure/rack, +/obj/item/stack/sheet/cardboard{ + amount = 25 + }, +/obj/item/stack/rods/twentyfive, +/obj/item/stack/sheet/iron/twenty, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"DB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"DE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"DG" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"DI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"DK" = ( +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"DO" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"DP" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/button/door{ + id = "caveroboinner"; + pixel_x = -4; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"DQ" = ( +/obj/effect/mob_spawn/human/corpse/scientist{ + burn_damage = 125; + mob_name = "Elizabeth Q."; + oxy_damage = 75 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"DS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cavegarbage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"DU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"DW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Ea" = ( +/obj/structure/chair/stool/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Eb" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Ec" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 2 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ed" = ( +/obj/structure/shipping_container/nthi, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Ek" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"Em" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/item/crowbar/red, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Eo" = ( +/obj/item/pickaxe/drill, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"Eq" = ( +/obj/machinery/mineral/stacking_unit_console{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Eu" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Ev" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Suit Storage" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"Ex" = ( +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Ey" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ez" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 4 + }, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -4 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/obj/item/paper{ + info = "Between our own blast mining and the shifting layers of rock, seismic activity whether it be quakes or splitting terrain are a danger all personnel on site should be keenly aware of and watch out for the warning signs of an upcoming event. It is heavily advised all personnel wear their jaunt devices in event of accidental falls. You'd much rather deal with the nausea of a rapid bluespace relocation over the alternative of whatever lies below a chasm."; + name = "geothermal ruptures safety guidelines" + }, +/obj/item/paper{ + info = "Further down from the surface of this planet, this region has unfortunely managed to settle within a uniquely... dense form of volanic rock. The typical kinetic accelerators used to blast rock to chunks and plasma cutters designed to slice through stone can't quite seem to get a good impact on the local structures. Pinpoint cracks with more simple mining tools do seem to still eventually get through, but at a longer than finanically viable time. Use on blasting caps and other controlled explosives are advised to properly dig out tunnels. Please consult your local defense officer for proper safety procedure and maintenance of these mining explosives before live use."; + name = "geological assetment" + }, +/obj/item/binoculars{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/binoculars, +/obj/item/paper{ + info = "In the event of an emergency level lockdown, please locate your nearest supervisor and await further instructions. In the event that proper evacutation from the level is required, all supervisors are required to carry an override acess key for the associated level's transit access. As per company policy, any personal belongings or loss of life are not covered by the Nanotrasen(tm) insurance policy in the event of external natural events not directly caused by Nanotrasen(tm) intervention."; + name = "Emergency Procedures" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"EB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"EC" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/engineering) +"EF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"EG" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"EH" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/brown, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"EK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"EL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gateway Terminial Delta" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"EP" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/item/mecha_parts/chassis/ripley, +/obj/item/mecha_parts/part/ripley_left_arm, +/obj/item/mecha_parts/part/ripley_right_arm, +/obj/item/mecha_parts/part/ripley_right_leg, +/obj/item/mecha_parts/part/ripley_left_leg, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"ER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"ES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/pod) +"EV" = ( +/obj/structure/fans, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"EW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"EX" = ( +/obj/item/soap, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"Fa" = ( +/obj/machinery/door/airlock/grunge{ + name = "Outpost Expansion Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"Fb" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Fd" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "Emergency Lower Level Access Card"; + puzzle_id = "mininglvl1" + }, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Fe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"Ff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/bump_teleporter{ + id = "lvl1stepb"; + id_target = "lvl1stepa"; + name = "lvl1 stepb" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"Fg" = ( +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"Fh" = ( +/obj/machinery/power/rtg, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Fi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"Fj" = ( +/obj/structure/shipping_container/nanotrasen, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Fk" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/rec) +"Fn" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/terminal/caves/researchbroke1, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"Fq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ft" = ( +/obj/item/storage/firstaid/o2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Fu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Fy" = ( +/obj/structure/flora/ash/chilly, +/obj/structure/flora/rock/icy, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Fz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"FA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"FB" = ( +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"FC" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"FE" = ( +/obj/machinery/light/red/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"FF" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/card/id/away/caves/sec{ + desc = "An ID with security clearance for the lower mines. The tag on the name section says 'Gastus Rich'." + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"FI" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"FJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"FP" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"FQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"FR" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"FT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"FW" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Ga" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Gc" = ( +/obj/structure/ladder/unbreakable{ + height = 1; + id = "caves2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"Gd" = ( +/obj/machinery/gateway/away{ + calibrated = 0 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Ge" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Gf" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center/cracked, +/obj/structure/bed/maint, +/obj/item/bedsheet/random, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"Gg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Gh" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Gi" = ( +/turf/closed/mineral/strong, +/area/awaymission/caves/bmp_asteroid) +"Gj" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Gk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Gn" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cavecargoinner" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Gq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Gr" = ( +/obj/structure/cable, +/obj/structure/closet/emcloset, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Gs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Gu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Gv" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Gw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Gx" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Gy" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/card/id/away/caves/sci, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Gz" = ( +/obj/machinery/door/airlock{ + id_tag = "fortnite1"; + name = "Private Stall A" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"GA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"GD" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"GF" = ( +/obj/machinery/computer/terminal/caves/security{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"GI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/science{ + name = "Robotics" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"GJ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"GK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/screwdriver, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"GM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"GO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"GP" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"GR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/holopad, +/obj/effect/turf_decal/box, +/obj/item/disk/holodisk/caves/doorstuck, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"GT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"GU" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/third_outpost) +"GV" = ( +/obj/structure/chair/stool/directional/east, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"GX" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Hb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Hd" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Hh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Hj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Hk" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Ho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/bump_teleporter{ + id = "t3b"; + id_target = "t3a"; + name = "lvl2 to lvl 1 b3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Hq" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/passive_vent, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"Hr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Ht" = ( +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Hu" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Hv" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"Hw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"Hx" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Hy" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"HB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"HC" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"HE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"HF" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2encounter3"; + name = "lvl2encounter3" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"HG" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"HH" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"HJ" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl2encounter2"; + name = "lvl2encounter2" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"HK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly/door_assembly_shuttle, +/obj/item/circuit_component/airlock, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"HM" = ( +/obj/structure/barricade/sandbags, +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_x = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"HO" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"HR" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"HS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"HW" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/seconadry/storage) +"HX" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"HY" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ia" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ic" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"If" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"Ig" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"Ih" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"Ii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Ij" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"Il" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"In" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Ip" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"Ix" = ( +/obj/item/reagent_containers/food/drinks/beer{ + pixel_y = 5; + pixel_x = -12 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"IA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"IC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"IG" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure/science{ + name = "secure robotics crate"; + req_access_txt = "208" + }, +/obj/item/mod/module/drill, +/obj/item/mod/module/mouthhole, +/obj/item/mod/module/quick_carry, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"IH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"IK" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"IL" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/spawner/random/food_or_drink/booze, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"IN" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"IP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"IQ" = ( +/obj/effect/turf_decal/box, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"IS" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/bump_teleporter{ + id = "lvl1stepa"; + id_target = "lvl1stepb"; + name = "lvl1 stepa" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"IT" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"IU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"IV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/telecomms/relay, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"IY" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/barracks) +"Ja" = ( +/turf/closed/indestructible/riveted/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"Jb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Jc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Jd" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/clock/directional/east, +/obj/item/card/id/away/caves, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"Jf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Jg" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Ji" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Jj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"Jn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Jp" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Jq" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas/explorer, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"Js" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Jt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ju" = ( +/obj/structure/railing/corner, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/tunnel) +"Jy" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"JC" = ( +/obj/machinery/button/door/directional/east{ + id = "CavesCabinC"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"JD" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"JF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"JG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"JJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor{ + id = "caveroboinner" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"JL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"JM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"JN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"JQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"JR" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"JS" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/bump_teleporter{ + id = "riftexit"; + name = "rift exit" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"JT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"JU" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Delta Outpost Mineral Processing"; + network = list("caveslvl1") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"JX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Kb" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Kd" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/second_outpost/barracks) +"Ke" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/camera/directional/south{ + c_tag = "Delta Outpost Security Outpost"; + network = list("caveslvl1") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Kg" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/item/radio/off{ + pixel_x = 4 + }, +/obj/item/radio/off, +/obj/item/radio/off{ + pixel_x = -4 + }, +/obj/item/gps/mining, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"Kh" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate, +/obj/item/stack/sheet/cardboard/fifty, +/obj/item/wormhole_jaunter, +/obj/item/wormhole_jaunter, +/obj/item/wormhole_jaunter, +/obj/item/wormhole_jaunter, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Ki" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Kj" = ( +/obj/item/radio/off, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Kl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/hatch{ + name = "Recreational Wing" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Kn" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Ko" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"Kp" = ( +/obj/item/shard, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Kr" = ( +/obj/item/stack/sheet/iron, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ku" = ( +/obj/structure/lattice, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/bmp_asteroid/level_two) +"Kv" = ( +/obj/item/shard, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Kx" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Ky" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"KA" = ( +/turf/closed/wall, +/area/awaymission/caves/bmp_asteroid/level_two) +"KC" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"KH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"KJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/spawner/random/entertainment/cigarette_pack, +/obj/effect/spawner/random/entertainment/lighter, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"KK" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door/directional/east{ + id = "CavesCabin1"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/main_outpost/dorm) +"KM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"KO" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"KQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"KR" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"KS" = ( +/obj/item/soap/nanotrasen, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"KT" = ( +/obj/machinery/power/apc/auto_name/directional/west{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"KU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -5; + pixel_y = 32; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 6; + pixel_y = 10; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 6; + pixel_y = -4; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -5; + pixel_y = -8; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = -5; + pixel_y = 5; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 11; + pixel_y = 3; + projectile_type = null + }, +/obj/item/ammo_casing/c46x30mm{ + desc = "A 4.6x30mm bullet casing. Looks spent."; + name = "spent 4.6x30mm bullet casing"; + pixel_x = 11; + pixel_y = -14; + projectile_type = null + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"KV" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"KZ" = ( +/obj/item/tank/internals/emergency_oxygen/empty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"Lc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Ld" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"Lg" = ( +/obj/machinery/smartfridge/survival_pod/preloaded, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Li" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"Lm" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center, +/obj/structure/chair/stool/bamboo{ + dir = 1 + }, +/mob/living/simple_animal/hostile/retaliate/trader/ashwalker{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ln" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Lq" = ( +/obj/item/restraints/legcuffs/bola, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"Lr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Ls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Lu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"Lw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"Lz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"LA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"LB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Recreational Wing" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"LF" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"LI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"LJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"LK" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/engineering) +"LN" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "caverobooutter" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"LO" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"LP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"LT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"LV" = ( +/obj/structure/lattice, +/obj/item/bedsheet/brown, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid) +"LY" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"LZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"Mc" = ( +/obj/item/clothing/mask/gas/explorer, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Mf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/bump_teleporter{ + id = "t1b"; + id_target = "t1a"; + name = "lvl2 to lvl 1 b1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Mi" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/rest) +"Mj" = ( +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Mn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Mo" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/window/reinforced/spawner, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Mr" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ms" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Mt" = ( +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"Mu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"Mw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"Mx" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cavegarbage"; + name = "disposal conveyor" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"My" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Mz" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Delta Outpost Secondary Life Support"; + network = list("caveslvl1") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"MA" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"MB" = ( +/obj/structure/shipping_container/nakamura, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"MC" = ( +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"MD" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"ME" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"MF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"MG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"MH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door/directional/west{ + id = "orangejustice4"; + name = "Cabin Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"MI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/item/shard, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"MJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"MN" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"MO" = ( +/obj/machinery/smartfridge/survival_pod/preloaded, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"MP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"MS" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/food/grown/ash_flora/cactus_fruit{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/food/grown/ash_flora/cactus_fruit, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"MT" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/purple{ + dir = 4 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"MW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"MY" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/brown/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"MZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Nc" = ( +/obj/machinery/light/directional/north, +/obj/structure/closet/secure_closet{ + icon_state = "mining"; + name = "shaft miner's locker"; + req_access_txt = "away_general" + }, +/obj/item/clothing/suit/hooded/explorer, +/obj/item/storage/backpack/satchel/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/shoes/workboots/mining, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/obj/item/clothing/under/rank/cargo/miner/lavaland, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"Nd" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Nf" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Nh" = ( +/obj/machinery/computer/security{ + network = list("caveslvl1") + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Nj" = ( +/obj/structure/cable, +/obj/machinery/power/rtg, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Nk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"Nl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/pickaxe, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"No" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Np" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/rec) +"Nq" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/depo) +"Nr" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"Nt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Nu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_root/caves{ + key = "caves_lvl2bridge1"; + name = "lvl2bridge1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"Nv" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Nx" = ( +/obj/structure/fluff/sale_sign, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ny" = ( +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/obj/structure/tramwall/titanium, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"NA" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"NB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"NC" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"NF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/mob/living/simple_animal/bot/cleanbot{ + name = "Scruffy" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"NG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"NI" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"NP" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/closed/indestructible/rock{ + name = "collapsed dense rock" + }, +/area/awaymission/caves/bmp_asteroid) +"NR" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"NT" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"NU" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost) +"NW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"NX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"NY" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Oa" = ( +/obj/modular_map_root/caves{ + key = "caves_lvl3segment1"; + name = "lvl3segment1" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"Ob" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"Of" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/transit) +"Og" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/third_outpost/transit) +"Oh" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"On" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/rec) +"Oo" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Op" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/item/stack/sticky_tape{ + pixel_y = 9; + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Or" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"Os" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "orangejustice4"; + name = "Cabin 4" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"Ot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ou" = ( +/obj/machinery/conveyor{ + id = "caves_base" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"Ow" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/dorm) +"Ox" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Oy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"Oz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "cavecargooutter"; + pixel_x = -24; + pixel_y = 4; + req_access_txt = "200" + }, +/obj/machinery/button/door{ + id = "cavecargoinner"; + pixel_x = -24; + pixel_y = -4; + req_access_txt = "200" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"OA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"OC" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/research) +"OD" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"OF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"OI" = ( +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"OL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"OM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"OP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"OS" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"Pa" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Pb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"Pg" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Pi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wallframe/button, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Pl" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Pm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Pn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"Po" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Pp" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Pq" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Pr" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Pt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/frame/computer{ + name = "busted computer frame" + }, +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Pw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"Py" = ( +/obj/structure/chair/stool/directional/west, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"PA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"PB" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"PD" = ( +/obj/structure/rack, +/obj/item/wirecutters, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"PI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"PL" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"PM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"PN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"PP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"PR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"PT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_two) +"PU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"PW" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"PZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Qd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"Qe" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/food/chips, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Qi" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"Qk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"Ql" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Qn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Qo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Qp" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"Qq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Qr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Qs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Qt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/bmp_asteroid/level_two) +"Qu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Qw" = ( +/obj/structure/flora/rock/icy, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Qz" = ( +/obj/structure/table, +/obj/structure/noticeboard/directional/west, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper{ + info = "WARNING: Past this point, the lower regions of these caverns have not been fully cleared out and the contents of the region are mostly unknown. It is heavily advised to enable your suit sensors, travel in groups of at least 3 and make hourly reports to your assigned director as you scout and mark surroundings. Scouting teams will be supplied with basic scouting kits such as survival pods, medical hypos and backup short-range radios. Please see your local defense officer for further info on how to properly handle and maintain your self defense equipment if you do not feel fully addressed on any subjects."; + name = "Expansion Notice" + }, +/obj/item/pen/survival, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"QA" = ( +/obj/structure/cable, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"QC" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost) +"QD" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"QE" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"QH" = ( +/turf/closed/wall, +/area/awaymission/caves/third_outpost) +"QI" = ( +/obj/structure/flora/ash/chilly, +/turf/open/floor/plating/asteroid/snow{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"QK" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"QM" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"QN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"QP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"QQ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/computer{ + dir = 4; + name = "busted computer frame" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"QT" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"QU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/obj/item/wormhole_jaunter, +/obj/machinery/cell_charger, +/obj/machinery/camera/directional/north{ + c_tag = "Delta Outpost Equipment Room"; + network = list("caveslvl1") + }, +/obj/item/survivalcapsule, +/obj/item/survivalcapsule{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"QW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Ra" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/barracks) +"Rc" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Rf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Rg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Rh" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Rk" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/engineering) +"Rl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Rm" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Rn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ro" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Rt" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/brown, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"Ru" = ( +/obj/item/stack/sheet/cardboard{ + amount = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Rv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Rx" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "caves_base" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"RA" = ( +/obj/structure/door_assembly/door_assembly_hatch, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/rest) +"RB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"RD" = ( +/obj/machinery/light/red/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"RE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/rest) +"RG" = ( +/turf/closed/wall/rust, +/area/awaymission/caves/bmp_asteroid) +"RH" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"RJ" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/critter, +/obj/item/toy/cattoy, +/mob/living/simple_animal/pet/cat/space{ + desc = "They're a cat... in space? I mean, its not really in space at this current moment. Unless you're actively viewing them while in space."; + name = "Bear" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"RL" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"RN" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"RO" = ( +/obj/machinery/door/poddoor{ + id = "loldontopenthisplsthx" + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"RQ" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"RS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"RU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"RV" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/rest) +"RW" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "caves_base"; + name = "mining conveyor" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"Sa" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Sc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/engineering) +"Se" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"Sf" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/industrial_lift/tram/caves{ + icon_state = "titanium" + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"Sh" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/chair, +/obj/structure/sign/flag/nanotrasen/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Si" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Sj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Sk" = ( +/obj/structure/grille/broken, +/obj/item/shard, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Sm" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"So" = ( +/turf/closed/wall/mineral/titanium/survival/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Sp" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Sr" = ( +/turf/closed/indestructible/fakedoor{ + name = "Lower Level Stair Access" + }, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"Sv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/storage) +"Sw" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/grimy, +/area/awaymission/caves/second_outpost/rest) +"Sy" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"SB" = ( +/obj/structure/mineral_door/iron{ + name = "expansssive waresss emporium" + }, +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/bmp_asteroid/level_two) +"SC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"SD" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/dorm) +"SG" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/tunnel) +"SH" = ( +/turf/open/floor/oldshuttle, +/area/awaymission/caves/bmp_asteroid) +"SL" = ( +/turf/closed/indestructible/rock{ + name = "collapsed dense rock" + }, +/area/awaymission/caves/bmp_asteroid) +"SM" = ( +/obj/structure/table/survival_pod, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"SO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"SP" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"ST" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"SV" = ( +/obj/structure/table, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"SX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"SY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/sign/clock/directional/north, +/obj/machinery/light/small/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/item/paper{ + name = "supply manifest #223"; + info = "A sheet filled with a list of various produce and raw material being shipped in and out of the facility, nothing particularly interesting." + }, +/obj/item/paper{ + name = "supply manifest #200"; + info = "A sheet filled with a list of various produce and raw material being shipped in and out of the facility, nothing particularly interesting." + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"SZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"Ta" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Tc" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/storage) +"Td" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Te" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shipping_container/nakamura, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"Tg" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Th" = ( +/obj/effect/landmark/tram/caves/upper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Tj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mob_spawn/human/corpse/scientist/caves{ + brute_damage = 150; + haircolor = "#333333"; + hairstyle = "Beard (Jensen)"; + mob_name = "Jacob Ullman"; + oxy_damage = 50; + skin_tone = "african1" + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Tn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"To" = ( +/turf/closed/mineral/snowmountain/cavern{ + baseturfs = /turf/open/floor/plating/asteroid/basalt/lava_land_surface + }, +/area/awaymission/caves/bmp_asteroid) +"Tp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Tr" = ( +/obj/structure/stone_tile/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ts" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Tt" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Tw" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/toilet, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Ty" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_three) +"TB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"TE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/pod) +"TF" = ( +/obj/machinery/door/keycard{ + name = "Research Terminal Access"; + puzzle_id = "welovefortnite" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/tunnel) +"TH" = ( +/turf/closed/indestructible/rock, +/area/awaymission/caves/bmp_asteroid/level_three) +"TI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"TJ" = ( +/obj/effect/turf_decal/stripes/end, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"TK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"TM" = ( +/obj/structure/lattice, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"TN" = ( +/obj/structure/closet/crate/bin, +/obj/item/stack/sheet/cardboard{ + amount = 2 + }, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"TO" = ( +/obj/structure/table_frame/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"TP" = ( +/obj/effect/turf_decal/box, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"TR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"TS" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/clock/directional/west, +/obj/item/card/id/away/caves, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/dorm) +"TT" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"TU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"TW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost) +"Ua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/tunnel) +"Ub" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Ue" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/computer/tram_controls/caves{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Ug" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/engineering) +"Uh" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"Uk" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Uo" = ( +/obj/machinery/stasis/survival_pod, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"Up" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Ur" = ( +/obj/machinery/door/airlock/survival_pod/glass, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/pod) +"Uu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_three) +"Uv" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Uw" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"UC" = ( +/obj/machinery/button/door/directional/east{ + id = "CavesCabinB"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"UD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"UE" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"UF" = ( +/obj/machinery/door/airlock/survival_pod/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost/pod) +"UH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood/parquet, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"UI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost) +"UJ" = ( +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"UN" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"UP" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"UQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"US" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/storage) +"UT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "cavetrash"; + name = "Disposal Exit Vent" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"UU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"UV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"UY" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/third_outpost) +"Vc" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"Ve" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Vg" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Vh" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/rest) +"Vk" = ( +/obj/structure/fans, +/turf/open/floor/pod, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Vl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Vo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "orangejustice1"; + name = "Cabin 1" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/barracks) +"Vt" = ( +/turf/closed/wall, +/area/awaymission/caves/main_outpost/seconadry/research) +"Vw" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_three) +"VA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"VE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"VF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"VG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"VM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"VN" = ( +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"VP" = ( +/turf/closed/indestructible/rock, +/area/awaymission/caves/bmp_asteroid) +"VR" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"VT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/second_outpost/tunnel) +"VV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"VW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mineral Processing" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/depo) +"VX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid/level_two) +"VY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"Wa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Wb" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/firealarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/rec) +"Wc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/rec) +"We" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/transit) +"Wf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/holosign/barrier/engineering, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Wh" = ( +/obj/effect/landmark/tram/caves/middle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"Wj" = ( +/obj/structure/toilet, +/obj/machinery/button/door/directional/west{ + id = "fortnite1"; + name = "Private Stall Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Wm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Wn" = ( +/obj/item/chair/stool, +/obj/effect/spawner/random/food_or_drink/booze, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"Wo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Wp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost/transit) +"Wq" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"Ws" = ( +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"Wt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Wx" = ( +/obj/machinery/conveyor{ + id = "cavegarbage" + }, +/obj/machinery/light/small/directional/west, +/obj/effect/spawner/random/trash/garbage{ + spawn_loot_count = 3; + spawn_scatter_radius = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Wy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"WD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"WF" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"WG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"WJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"WL" = ( +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/internals, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/item/tank/internals/oxygen/empty, +/obj/item/tank/internals/oxygen/empty, +/obj/item/tank/internals/oxygen, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"WM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"WO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/storage) +"WP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"WQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"WS" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/research) +"WU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"Xa" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"Xf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Xh" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Xi" = ( +/obj/effect/landmark/awaystart, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Xj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + id_tag = "CavesCabinA"; + name = "Personal Quarters" + }, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Xk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Xl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/main_outpost/seconadry/research) +"Xm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Xo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Xp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost) +"Xs" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/telecomms/relay, +/turf/open/floor/circuit, +/area/awaymission/caves/second_outpost/rest) +"Xt" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/shipping_container/donk_co, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Xw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Xy" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small/directional/west, +/obj/item/paper{ + name = "supply manifest #210"; + info = "A sheet filled with a list of various produce and raw material being shipped in and out of the facility, nothing particularly interesting." + }, +/obj/item/paper{ + name = "supply manifest #156"; + info = "A sheet filled with a list of various produce and raw material being shipped in and out of the facility, nothing particularly interesting." + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"Xz" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/third_outpost) +"XA" = ( +/obj/structure/mecha_wreckage/ripley, +/obj/effect/decal/cleanable/oil, +/obj/item/mod/module/orebag, +/turf/open/floor/plasteel/recharge_floor, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"XD" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/bmp_asteroid) +"XE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"XH" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"XJ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/rest) +"XK" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/second_outpost/tunnel) +"XL" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/red{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"XM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"XN" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"XO" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"XP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_two) +"XQ" = ( +/obj/effect/spawner/structure/window/survival_pod, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost/pod) +"XR" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"XS" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"XT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"XV" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"XW" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"XY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/rack, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/machinery/airalarm/directional/north, +/obj/item/wormhole_jaunter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/wormhole_jaunter, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/barracks) +"XZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Ya" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/dorm) +"Yc" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Yd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Yh" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/third_outpost/transit) +"Yi" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"Yj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + name = "busted computer frame" + }, +/obj/item/shard, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/mineral/titanium/tiled{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Yl" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost) +"Ym" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/third_outpost) +"Yn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Yq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"YA" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/storage) +"YC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"YD" = ( +/obj/structure/sign/departments/science, +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/tunnel) +"YE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/bmp_asteroid) +"YF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"YG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/keycard{ + name = "Research Terminal Access"; + puzzle_id = "welovefortnite" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/tunnel) +"YH" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) +"YI" = ( +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_y = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"YJ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"YN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"YP" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid) +"YQ" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/caves/bmp_asteroid/level_two) +"YR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"YS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"YT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/bmp_asteroid/level_two) +"YU" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/awaymission/caves/main_outpost/seconadry/research) +"YV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/engineering) +"YW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/pod, +/area/awaymission/caves/third_outpost/pod) +"YY" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/indestructible/boss, +/area/awaymission/caves/bmp_asteroid/level_two) +"YZ" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/recycle) +"Za" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"Zb" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Zc" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/bmp_asteroid) +"Zf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"Zi" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/barracks) +"Zk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research/living) +"Zm" = ( +/obj/machinery/computer/terminal/caves/robo, +/turf/open/floor/carpet/black, +/area/awaymission/caves/main_outpost/seconadry/mecha/living) +"Zq" = ( +/obj/structure/table, +/obj/machinery/camera/directional/west{ + c_tag = "Delta Outpost Gateway Terminal"; + network = list("caveslvl1") + }, +/obj/item/paper/pamphlet/gateway, +/obj/item/paper/pamphlet/gateway, +/obj/item/paper/pamphlet/gateway, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/main_outpost/seconadry/gateway) +"Zu" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/barracks) +"Zw" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/research) +"Zy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/mecha) +"Zz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/awaymission/caves/third_outpost) +"ZF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/third_outpost) +"ZH" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/bmp_asteroid/level_two) +"ZI" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/item/stock_parts/cell/high/empty, +/turf/open/floor/plasteel, +/area/awaymission/caves/main_outpost/seconadry/secpost) +"ZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"ZM" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "caves_base" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"ZO" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/depo) +"ZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/baseturf_helper/lava_land/surface, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/tunnel) +"ZR" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/main_outpost/seconadry/engineering) +"ZU" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/grunge{ + name = "Lower Level Emergency Access" + }, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost/seconadry/between_access) +"ZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/tunnel) +"ZY" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/main_outpost) +"ZZ" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/caves/bmp_asteroid) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +ab +Cj +SH +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ea +LK +LK +LK +LK +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +ab +"} +(3,1,1) = {" +ab +zO +SH +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +LK +cD +LK +cD +LK +aa +aa +aa +aa +IT +IT +ca +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(4,1,1) = {" +ab +VP +VP +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wq +aa +aa +aa +EC +LK +or +LK +or +LK +EC +ec +ec +ec +ec +ec +td +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(5,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wq +nU +ng +ng +LK +eb +tD +ex +fP +SP +EC +bU +bU +EX +ae +ec +bW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +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 +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +ja +ja +ja +ja +ja +ja +ja +eg +eg +am +am +am +am +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(6,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wq +XD +IV +TW +BA +LK +fP +oi +ob +SP +jI +EC +yZ +vJ +ec +ec +ec +bW +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +IT +aa +aa +IT +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +qY +iH +ev +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +eg +am +am +am +ja +ja +ja +Ty +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(7,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +mg +ng +ng +XD +XD +Ii +BA +wv +LK +fP +YV +YV +fP +yO +EC +bU +bU +ez +ae +ec +bW +IT +IT +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +kI +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +kI +aa +aa +aa +aa +IT +aa +aa +IT +aa +aa +kI +aa +aa +aa +aa +aa +IT +aa +aa +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +IT +qY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +Hq +FQ +bJ +bJ +bJ +bJ +bJ +ja +ja +ja +ja +ja +hc +am +am +ja +ja +ja +ja +Ty +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(8,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +ng +wv +cH +wq +wq +Bj +ng +ng +LK +EC +EC +BG +Rk +EC +EC +NU +ec +ec +ec +ec +bW +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +Ln +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +IT +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +IT +qY +qY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +VP +ab +TH +am +am +am +am +am +QH +QH +QH +QH +QH +QH +QH +ja +ja +bJ +ja +ja +ja +UY +TI +ki +QH +ja +ja +bD +ja +ja +ja +wK +ja +If +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(9,1,1) = {" +ab +VP +aa +aa +IT +IT +IT +IT +aa +aa +ng +wv +wv +XD +wq +Ii +dQ +hL +Oo +Oo +eL +Ba +iF +Oo +Sy +bw +ec +WU +ec +IT +bW +IT +IT +IT +IT +IT +IT +IT +IT +IT +sJ +dj +dj +ji +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +aa +IT +qY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +VP +ab +TH +am +mz +QH +QH +QH +QH +vA +uq +Qz +aG +sS +QH +WD +QH +bJ +ja +ja +ja +hR +wX +iT +Zz +ja +Ty +at +Ty +ja +ja +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(10,1,1) = {" +ab +VP +aa +wq +wq +wq +wq +XD +st +ec +ng +ng +Ii +XD +wq +Rg +Wm +Sm +RD +jF +jF +Gh +Pl +Pl +FE +Bd +wG +bp +UI +Gu +Gu +Gu +EB +EB +EB +EB +EB +EB +EB +EB +EB +IT +DG +Ln +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +qJ +IT +qJ +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +IT +qY +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +VP +ab +TH +am +QH +gQ +mR +pA +QH +eh +Mw +qR +Eo +QK +QH +ta +QH +bJ +ja +ja +ja +TI +TI +TI +Zz +ja +ja +Ic +jN +ja +ja +Lq +ja +Ty +ja +ja +Oa +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(11,1,1) = {" +ab +VP +wq +wq +wq +wq +XD +XD +XD +wq +wq +BH +Ft +XD +wq +wr +sm +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +sm +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +EB +IT +IT +kI +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +kI +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +kI +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +IT +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +aa +IT +aa +aa +tW +tW +aa +IT +qY +qY +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +VP +ab +TH +am +QH +Or +nT +ur +ck +kx +wW +wW +wW +sj +Ym +Bh +Yl +Vz +ja +ja +ja +TI +TI +TI +QH +ja +ja +Ic +Lq +wK +ds +ja +Ty +Ty +jO +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(12,1,1) = {" +ab +VP +aa +IT +IT +QC +wm +dX +wC +Ii +wq +XD +Hk +wq +wq +BH +Ow +gj +hn +Ow +uZ +pH +Ow +bP +SD +Ow +TS +xS +Ow +sV +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +EB +IT +IT +IT +sV +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +qJ +aa +aa +aa +aa +IT +IT +IT +aa +IT +aa +aa +aa +aa +ZZ +ZZ +ZZ +IT +aa +IT +IT +tW +tW +tW +tW +aa +IT +qY +qY +qY +qY +qY +qY +qY +aa +hE +hE +hE +hE +hE +hE +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +VP +ab +TH +am +QH +QM +fW +Uh +QH +dL +qR +qR +yR +Xz +QH +yA +QH +rW +ja +ja +ja +hR +TI +TI +Zz +ja +ja +Ic +ja +ja +Ty +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +wk +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(13,1,1) = {" +ab +VP +aa +aa +aa +ec +Bi +XD +XD +XD +wq +wq +wq +wq +XD +Hk +Ow +KK +gx +Ow +ie +uW +Ow +GO +Lw +Ow +kc +Fg +Ow +sV +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +EB +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +aa +tW +tW +tW +tW +IT +IT +aa +aa +IT +aa +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +qY +IT +hE +vT +xc +hE +iW +hE +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +VP +ab +TH +am +QH +QH +QH +QH +QH +Lz +PL +CQ +BC +gI +QH +WD +QH +gv +ja +ja +ja +hR +wX +iT +Zz +ja +ja +Ic +Ty +ja +Ty +wK +ja +If +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(14,1,1) = {" +ab +VP +aa +aa +aa +ec +ij +wq +wq +wq +wq +wq +wq +wq +XD +Ii +VR +Ow +vN +Ow +Ow +aA +Ow +sa +Ow +Ow +VR +as +Ow +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +EB +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +qJ +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +aa +aa +IT +aa +tW +tW +tW +tW +aa +aa +aa +aa +aa +aa +tW +tW +tW +tW +aa +aa +IT +IT +IT +IT +IT +IT +qY +aa +hE +Dd +KS +hE +zi +hE +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +Ce +Ug +hJ +jD +dV +qd +dV +QH +QH +QH +QH +ja +ja +gv +ja +ja +ja +sn +TI +ki +QH +QH +QH +lg +ja +ja +Ty +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(15,1,1) = {" +ab +VP +aa +aa +Np +Fk +On +XD +wq +wq +wq +wq +Ii +wq +wq +wq +wq +nh +rA +eC +wq +XD +XD +XD +wq +XD +XD +dK +Ow +IT +IT +aa +aa +aa +IT +IT +NC +IT +IT +IT +EB +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +yu +yu +yu +yu +yu +yu +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +IT +IT +IT +IT +IT +bT +fS +hE +hE +Uv +Gv +qj +Dc +hE +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +dV +mx +Qk +Qk +Qk +IC +dV +ja +ja +ja +ja +ja +ja +gv +Ic +Ic +Ic +iB +ss +ss +GU +ZG +dG +Ic +ja +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(16,1,1) = {" +ab +VP +aa +aa +Fk +Rc +Rm +XD +wq +wq +wq +wq +FA +XD +wq +wq +wq +wq +wq +XD +wq +wq +XD +wq +wq +XD +wq +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +tm +IT +EB +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +IT +IT +IT +ZZ +ZZ +yu +FF +Ob +eH +GF +yu +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +IT +IT +IT +IT +IT +Ts +Cr +iU +hE +rX +vs +qj +Hj +hE +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +dV +tU +bF +bF +bF +Hw +dV +am +am +ja +ja +ja +ja +gv +ja +ja +ja +ja +iL +am +QH +QH +QH +ja +ja +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(17,1,1) = {" +ab +VP +aa +aa +Fk +av +uO +gq +rE +XD +wq +XD +qP +Ii +zu +XD +XD +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +EB +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +yu +qk +bq +PI +SV +yu +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +IT +IT +IT +IT +IT +hE +BX +hE +hE +hE +hE +NT +hE +hE +hE +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +dV +Sc +PW +mx +eU +Ih +dV +am +am +ja +gv +gv +gv +gv +ja +ja +ja +ja +ja +ja +ja +am +am +am +am +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(18,1,1) = {" +ab +VP +aa +aa +Fk +ro +sZ +IL +sZ +Qe +XD +XD +VV +KZ +Po +Ya +rA +bS +mn +yd +Il +pC +XD +XD +XD +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +yu +le +Aa +kU +XL +yu +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +IT +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +hE +hE +bG +hE +UH +CF +hE +UD +hE +MT +UH +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +VP +ab +TH +am +aM +rr +aM +rr +aM +dV +dV +am +AZ +kB +UF +kB +kB +ja +ja +ja +ja +ja +ja +ja +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(19,1,1) = {" +ab +VP +aa +aa +Fk +nr +lV +rM +wP +wP +Wc +XD +Qi +Nk +Ow +Ow +zY +Ow +Ow +nm +Ow +sa +Ow +Ow +VR +wq +LV +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +IT +EB +IT +IT +IT +aa +aa +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uE +yu +yu +yu +yu +lA +yu +yu +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +hE +sB +cv +hE +kS +jM +hE +UD +hE +jM +ac +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +VP +ab +TH +am +aM +rk +aM +rk +aM +am +am +am +kB +oC +TE +ES +kB +XQ +XQ +XQ +kB +xo +xo +oa +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(20,1,1) = {" +ab +VP +aa +aa +Fk +Fk +Wb +bC +Tg +Sh +Wc +uA +Qi +rY +Ow +ik +gx +Ow +nA +jA +Ow +GO +Lw +Ow +Ij +Wn +Ow +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +IT +yu +OA +yu +lJ +NI +Za +wL +yu +yu +yu +yu +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +IT +Ts +MS +jr +hE +Fd +UC +kw +WM +nx +JC +Gy +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +VP +ab +TH +am +aM +aM +aM +aM +aM +am +am +kB +kB +kB +Ur +kB +kB +qt +rl +wD +kB +Uu +Uu +oS +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(21,1,1) = {" +ab +VP +aa +aa +aa +Fk +Fk +Fk +Fk +Fk +Fk +Dh +DW +cU +Ow +Jd +xx +Ow +nu +xx +Ow +aV +SD +Ow +hx +ok +Ow +aa +IT +IT +IT +IT +IT +aa +wq +wq +wq +IT +IT +IT +XD +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +EB +EB +bE +MG +nK +sA +KH +KH +KV +yu +XO +fD +yu +aa +aa +aa +aa +aa +aa +IT +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +YH +YH +IT +IT +IT +IT +IT +Ts +Ve +KR +hE +hE +hE +hE +WM +hE +hE +hE +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +kB +EV +Uo +zG +AR +kB +Hh +QA +GM +kB +Uu +Te +oS +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(22,1,1) = {" +ab +VP +aa +aa +aa +aa +qN +QU +EG +yB +Cn +Cf +mj +Xi +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +aa +aa +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +IT +nC +yu +yu +Yd +Au +Za +Ga +fn +cu +MJ +yu +aa +aa +aa +aa +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +YH +YH +IT +IT +IT +IT +IT +IT +Ts +wf +cv +sp +UD +CC +WG +UD +Xw +Zk +TN +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +kB +Lg +Ji +Ad +Ad +jL +WJ +YW +At +kB +Uu +Uu +oS +ja +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(23,1,1) = {" +ab +VP +aa +aa +aa +aa +Tc +Kg +ut +hO +Sv +mw +mj +iF +dQ +hL +Oo +Sp +Oo +Hd +tf +BM +ZY +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +IT +aa +aa +IT +IT +IT +ou +Ak +dS +dS +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +Qu +Ar +Au +Za +Ke +yu +yu +yu +yu +aa +aa +aa +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +hE +jY +kT +HH +pB +of +FR +ap +zJ +zJ +gb +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +kB +iG +AR +rg +ew +kB +oE +oL +fA +kB +Uu +Uu +oS +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(24,1,1) = {" +ab +VP +aa +aa +aa +aa +Tc +Ez +fo +qA +Cn +Cf +mj +ni +JT +NA +zm +Si +mj +FP +Xp +nB +Ii +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +dS +Nt +ka +bz +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +Qu +ZI +Au +Za +Ga +cy +xP +uK +yu +aa +aa +aa +ZZ +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +hE +hE +hE +hE +Ts +Ts +hE +Kl +hE +Ts +Ts +hE +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +kB +kB +kB +kB +kB +kB +kB +kB +kB +kB +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(25,1,1) = {" +ab +VP +aa +aa +aa +aa +Tc +rI +gs +IP +EW +MW +mj +wt +Nq +uj +uj +uj +bO +Ip +VW +uj +uj +uj +IT +IT +IT +IT +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +dS +YR +dS +dS +dS +dS +dS +dS +aa +aa +aa +IT +ZZ +ZZ +ZZ +IT +IT +Qu +Nh +FC +Za +Za +Yn +Jc +XE +XE +IT +aa +ZZ +ZZ +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(26,1,1) = {" +ab +VP +aa +aa +aa +aa +Tc +xn +jv +ha +Cn +kV +oP +IN +uj +zt +zd +KT +PR +Qd +Qd +uo +Ig +uj +aa +IT +IT +IT +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +aa +dS +lO +df +Jg +fv +zD +ub +dS +aa +aa +aa +IT +ZZ +ZZ +IT +IT +IT +Qu +rw +mU +lK +Td +cy +RB +rs +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(27,1,1) = {" +ab +VP +aa +aa +aa +aa +QC +ec +ec +ec +ec +lP +Bm +lP +uj +zt +Ip +RW +af +JU +eZ +su +CU +uj +aa +IT +IT +IT +IT +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +dS +SC +gw +lO +lO +iw +Up +dS +aa +aa +aa +IT +ZZ +IT +IT +IT +IT +yu +yu +yu +yu +yu +yu +XE +ZZ +ZZ +ZZ +ZZ +IT +aa +IT +tW +aa +aa +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(28,1,1) = {" +ab +VP +aa +aa +aa +aa +ec +Ki +wa +Ki +Mc +ch +oP +MY +uj +zt +uj +Ip +Ip +se +Ip +uj +Rx +uj +aa +IT +IT +IT +IT +ZZ +IT +IT +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +dS +DS +uR +Mx +Eq +YZ +nf +dS +aa +aa +aa +IT +ZZ +IT +IT +Ln +IT +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(29,1,1) = {" +ab +VP +aa +aa +aa +aa +ec +aK +cW +Xk +pd +fz +oP +ao +uj +gU +Ou +Ou +Ou +ZO +Ou +Ou +ZM +uj +aa +aa +IT +IT +IT +ZZ +IT +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +dS +hg +dS +bz +sI +dS +UT +dS +aa +aa +aa +IT +ZZ +IT +Cb +vj +Ae +IT +IT +ZZ +ZZ +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +IT +aa +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +ZZ +IT +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(30,1,1) = {" +ab +VP +aa +aa +aa +aa +ec +lI +lI +lI +vC +Kp +Gs +wY +uj +uj +uj +uj +uj +uj +uj +uj +uj +uj +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +dS +dt +Wx +dZ +dZ +sF +dZ +mM +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ME +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(31,1,1) = {" +ab +VP +aa +ZZ +ZZ +ZZ +ec +ec +ec +ec +ec +lP +JD +lP +ec +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +dS +dS +dS +dS +dS +dS +dS +dS +ZZ +ZZ +ZZ +ZZ +ZZ +rs +PZ +PZ +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(32,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +lT +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +PZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +rs +rs +rs +zg +vU +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(33,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +WQ +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +OC +Vt +Vt +LB +Vt +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(34,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +ME +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +Vt +kD +iE +EK +qH +BF +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +Vt +Vt +Vt +Vt +Vt +Vt +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(35,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Tp +CJ +xF +GA +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +lx +Vt +GJ +mf +mf +mf +VG +cA +Vt +ZZ +ZZ +ZZ +ZZ +OC +Vt +ih +Ey +Cd +VF +Vt +Mr +Mr +Mr +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(36,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +Vl +dh +dh +dh +en +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +Vl +dh +dh +dh +en +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rx +kz +Ny +MA +Sf +MA +Ny +pJ +Vt +fr +fr +fr +fr +Vt +gZ +sM +UE +jp +VF +pk +hD +GX +Mr +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(37,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +QW +AF +Th +AF +js +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +QW +AF +Wh +AF +js +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rx +kz +ya +mG +lc +cp +ya +Dn +aY +YU +YU +YU +YU +fe +EK +EK +Ia +cO +WS +ag +Mr +Mr +Mr +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(38,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +GT +HS +HS +HS +JN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +GT +HS +HS +HS +JN +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rx +kz +Ny +Qq +gc +Qq +Ny +DI +Vt +Uw +Uw +Uw +Uw +Vt +bj +eD +UE +kR +VF +pk +hD +GX +Mr +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(39,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Tp +rs +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +rs +YE +QQ +rN +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +Ro +rs +ZZ +ZZ +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +lx +Vt +cK +Zw +Ue +Zw +pT +IK +Vt +ZZ +ZZ +ZZ +ZZ +Vt +Vt +VE +uC +Cd +VF +Vt +Mr +Mr +Mr +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(40,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +rs +ME +xW +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +rs +rs +ZZ +ZZ +IT +wq +wq +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +rs +Ro +Vt +bY +hl +CI +Ct +re +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +Vt +Vt +Vt +Vt +Vt +Vt +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(41,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ME +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +IT +IT +IT +IT +ZZ +rs +rs +Vt +Vt +Vt +my +Vt +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(42,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ME +AF +Kb +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +IT +zg +mQ +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(43,1,1) = {" +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +IT +IT +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ME +AF +Kb +rs +ZZ +ZZ +we +we +we +we +we +we +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +ZZ +Rh +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(44,1,1) = {" +ab +VP +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ZZ +rs +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +rs +ME +AF +Kb +rs +ZZ +ZZ +we +Xy +Pp +sq +mV +we +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +IT +IT +Yi +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(45,1,1) = {" +ab +VP +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +XN +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +ZZ +ZZ +rs +ZZ +ZZ +ZZ +rs +rs +rs +rs +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +IT +IT +XT +bc +hd +IT +IT +IT +we +pR +Hx +Co +XS +we +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +wq +wq +wq +wq +wq +wq +wq +IT +ZZ +ZZ +ZZ +ZZ +ZZ +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(46,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +XN +IT +IT +IT +IT +aa +aa +rs +rs +rs +rs +rs +rs +FI +Sj +FI +rs +rs +rs +rs +ZZ +ZZ +ZZ +aa +aa +aa +aa +IT +IT +IT +Pa +IT +IT +IT +IT +we +OD +gl +vq +XV +we +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +wq +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(47,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +XN +IT +IT +IT +IT +XN +aa +aa +aa +aa +aa +aa +aa +aa +bn +FI +FI +FI +FI +FI +FI +Wy +FI +EF +EF +EF +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +Pa +IT +Dv +Hr +we +we +tJ +so +we +we +we +we +we +we +we +we +we +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +ZZ +ZZ +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(48,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +DG +DG +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +Ge +wu +kX +VA +Zy +OP +pW +Bk +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +EB +nk +nk +nk +IT +we +sk +we +SY +Op +ax +OI +OI +vz +OI +Ed +Am +OI +Fj +we +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(49,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +DG +IT +IT +IT +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +rp +nL +UN +oj +bh +FI +Sj +FI +FI +mC +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +nk +nk +zE +bu +WO +Nv +lm +ye +JS +OI +wT +OI +OI +rb +OI +OI +we +IT +IT +IT +IT +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +op +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +ZZ +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(50,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +UN +Di +FT +oj +lD +Dw +OF +id +LN +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +nk +we +we +Hr +we +Bs +rK +hh +OI +OI +wT +OI +OI +rb +OI +OI +we +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +ZZ +ZZ +ZZ +ZZ +zg +rs +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +wq +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(51,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +Ge +BQ +kX +oj +lD +Dw +bi +ti +LN +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +Oz +Ci +Gn +rB +uk +UV +bN +bN +os +Em +bN +ig +bN +eo +we +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +zg +Mo +ei +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +wq +wq +wq +wq +IT +ZZ +ZZ +ZZ +ZZ +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(52,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +FI +Ap +nL +UN +oj +lD +Dw +bi +ti +LN +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +aq +LP +Gn +LA +Co +Co +zz +rK +Kh +rK +jQ +rK +zz +NY +we +aa +aa +aa +aa +IT +IT +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +TT +As +TT +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(53,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +dz +Ht +UN +oj +lD +Dw +bi +ti +LN +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +aq +LP +Bv +Jf +uk +uk +uk +rK +rK +rK +rK +Ru +rK +rK +we +aa +aa +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +ZZ +OC +Vt +ZZ +gf +up +BI +Nr +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(54,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +FI +Yc +XA +kX +oj +Xm +JJ +lZ +de +LN +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +aq +LP +Bv +Jf +uk +rK +IG +rK +WL +rK +mP +rK +IQ +rK +we +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +ZZ +Gw +SX +rs +rs +Rn +gf +xK +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(55,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +gC +gC +gC +FI +Eu +sX +WP +gm +DP +FI +Sj +Sj +FI +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +aq +LP +Bv +Jf +uk +uk +rK +rK +rK +rK +rK +rK +rK +rK +we +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +IT +aa +aa +aa +ZZ +Gw +TU +gf +gf +Rn +rs +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +DG +IT +DG +IT +IT +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(56,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gC +gC +AI +sE +FI +DK +sL +me +uH +ii +FI +IT +IT +IT +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +nk +IT +IT +AC +aq +LP +Gn +Jf +mK +TR +oY +TR +oY +TR +RJ +TR +gY +LT +we +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +IT +ZZ +ri +Fo +pK +Ac +My +rs +rs +xN +kn +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +DG +IT +aa +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(57,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gC +Zm +Ql +jT +FI +Zb +Sj +GI +FI +FI +FI +IT +IT +IT +IT +IT +rU +IT +op +Pa +IT +IT +rU +IT +IT +nk +IT +IT +AC +US +Rf +mB +AQ +QE +AS +QE +QE +el +QE +QE +YA +QE +nX +we +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +OL +ah +gf +jn +gf +xb +gf +Kv +Gw +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(58,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +aa +aa +tW +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +AB +gC +gC +gC +gC +Xj +gC +gC +ee +lz +me +Pr +FI +IT +IT +IT +NC +IT +IT +Zc +xr +Yq +XM +pO +vc +Zc +IT +IT +nk +IT +IT +kp +Hr +Hr +we +OI +MB +rb +OI +Ed +rb +OI +Fj +rb +OI +Xt +we +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +rs +rs +Jb +Xl +Jb +ly +Ky +Gw +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(59,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +aa +IT +aa +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +DG +IT +IT +IT +aa +aa +aa +aa +aa +gC +tn +vE +In +JX +JX +ze +dW +gX +gX +me +Bx +Sj +IT +IT +IT +IT +IT +IT +SO +wq +Cv +Ws +GP +wq +wR +IT +IT +nk +IT +IT +IT +IT +IT +we +OI +OI +rb +OI +OI +rb +OI +OI +rb +OI +OI +we +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +gf +is +oM +TU +db +Vt +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(60,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +IT +aa +tW +aa +IT +IT +IT +IT +qJ +IT +IT +IT +IT +aa +IT +IT +IT +DG +IT +aa +aa +aa +aa +aa +gC +Tw +JL +gC +pI +Ub +MN +gC +NF +UN +hC +JM +Sj +IT +IT +IT +IT +IT +IT +SO +Ws +zS +wA +zC +RN +wR +IT +IT +nk +IT +IT +IT +aa +aa +we +OI +OI +pf +OI +OI +pf +OI +OI +pf +OI +OI +we +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +Vt +Gw +Gw +Gw +Gw +Gw +Vt +ZZ +ZZ +ZZ +ZZ +ZZ +aa +IT +IT +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(61,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +DG +DG +IT +IT +IT +aa +aa +aa +aa +gC +gC +gC +gC +Nd +Ub +ej +gC +eF +EP +fY +Pq +FI +IT +IT +IT +IT +IT +IT +SO +Ws +Ws +et +em +WF +wR +IT +IT +nk +IT +IT +IT +aa +qx +we +we +we +we +HW +HW +HW +we +we +we +we +we +we +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(62,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +qJ +qJ +IT +IT +IT +IT +IT +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +gC +pV +Hy +pr +gC +FI +FI +FI +FI +FI +aa +aa +IT +IT +IT +IT +SO +Ws +Ws +Ws +HX +lW +wR +IT +IT +nk +IT +IT +IT +aa +qx +yt +Hv +iM +Lu +Jj +Qp +kL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +IT +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(63,1,1) = {" +ab +VP +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +qJ +qJ +qJ +IT +qJ +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +gC +gC +gC +gC +gC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +SO +wq +Cv +ix +GP +wq +wR +IT +IT +nk +IT +IT +RQ +qx +qx +cF +JG +hi +Mz +kL +kL +kL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(64,1,1) = {" +ab +VP +aa +aa +IT +aa +IT +aa +aa +aa +aa +aa +wq +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Zc +Zc +Zc +wh +xu +xu +xu +xu +yV +nk +IT +IT +qx +km +qx +rJ +dM +hi +Lu +Jj +Qp +kL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +IT +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(65,1,1) = {" +ab +VP +aa +aa +IT +aa +aa +aa +aa +aa +wq +wq +wq +IT +IT +wq +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +xu +dr +UJ +xu +IA +xu +nk +nk +nk +UQ +gD +iv +DB +uy +VM +FJ +kL +kL +kL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(66,1,1) = {" +ab +VP +aa +aa +IT +aa +tW +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +xu +IS +xu +xu +fa +sD +uJ +IT +bW +qx +qx +qx +qx +ZR +HO +qs +qx +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +VP +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(67,1,1) = {" +ab +VP +aa +aa +IT +aa +tW +tW +tW +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +xu +dr +jS +jS +dr +xu +IT +IT +bW +aa +aa +aa +qx +qx +qx +qx +qx +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +VP +ab +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(68,1,1) = {" +ab +VP +aa +aa +IT +aa +tW +tW +tW +tW +tW +tW +wq +wq +wq +wq +wq +wq +wq +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +xu +xu +xu +xu +xu +yV +IT +IT +bW +aa +aa +aa +aa +aa +NC +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +VP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(69,1,1) = {" +ab +VP +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +aa +wq +IT +wq +wq +wq +wq +wq +wq +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +bW +aa +aa +aa +NC +np +GV +kI +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +od +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(70,1,1) = {" +ab +VP +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +wq +wq +IT +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +bW +aa +kI +RG +PD +IT +IT +Bc +kI +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(71,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +aa +IT +aa +aa +aa +wq +IT +IT +wq +IT +wq +wq +wq +wq +aa +wq +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +bW +bW +jg +bW +bW +BB +na +Ix +IT +aa +aa +aa +aa +IT +IT +IT +Gi +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(72,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +aa +IT +aa +aa +aa +aa +aa +IT +wq +IT +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +qJ +IT +IT +qJ +qJ +IT +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +kI +aa +IT +IT +IT +IT +aa +aa +wq +wq +wq +wq +wq +wq +wq +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +aa +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(73,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +aa +IT +aa +aa +aa +aa +aa +IT +wq +IT +IT +IT +wq +wq +wq +wq +wq +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +qJ +IT +IT +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(74,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +aa +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +wq +wq +wq +wq +wq +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(75,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +qJ +IT +IT +IT +IT +wq +wq +wq +wq +IT +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +DG +IT +IT +IT +IT +IT +IT +aa +aa +IT +IT +IT +IT +IT +DG +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +kI +IT +IT +IT +kI +aa +aa +aa +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(76,1,1) = {" +ab +VP +tW +tW +tW +tW +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +wq +IT +IT +IT +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +IT +IT +DG +DG +IT +IT +IT +IT +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +IT +IT +IT +wq +wq +wq +hb +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +DG +IT +DG +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(77,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +qJ +qJ +IT +IT +IT +IT +wq +IT +IT +DG +aa +aa +aa +aa +ZZ +ZZ +aa +IT +IT +DG +IT +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +sV +sV +DG +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +Kj +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(78,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +DG +DG +IT +aa +aa +aa +aa +aa +DG +IT +IT +IT +aa +aa +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +DG +DG +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(79,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +IT +IT +IT +IT +aa +IT +IT +IT +XN +IT +IT +IT +wq +wq +wq +wq +wq +wq +aa +aa +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +IT +IT +aa +aa +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +DG +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(80,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +DG +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +YH +IT +IT +YH +IT +XN +IT +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +IT +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(81,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(82,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +IT +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +wq +wq +wq +aa +aa +aa +wq +wq +wq +wq +wq +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(83,1,1) = {" +ab +VP +tW +tW +tW +tW +aa +aa +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +wq +wq +wq +wq +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +IT +IT +IT +IT +ZZ +ZZ +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(84,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(85,1,1) = {" +ab +VP +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +tR +IT +IT +IT +tR +aa +aa +IT +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(86,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +qJ +aa +aa +aa +aa +aa +aa +IT +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(87,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +qJ +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +tR +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(88,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ak +ak +aa +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(89,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +qJ +IT +IT +aa +aa +IT +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +ak +ak +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(90,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +IT +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +ak +ak +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(91,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +DG +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +aa +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +aa +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(92,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(93,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +DG +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(94,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +IT +IT +aa +aa +aa +IT +aa +aa +aa +IT +aa +IT +IT +IT +IT +IT +IT +IT +IT +DG +DG +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +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 +IT +IT +IT +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(95,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +DG +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +IT +ZZ +IT +IT +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(96,1,1) = {" +ab +aa +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +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 +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(97,1,1) = {" +ab +VP +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(98,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +VP +aa +IT +IT +IT +XN +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +aa +aa +aa +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(99,1,1) = {" +ab +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +VP +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +IT +aa +aa +aa +IT +IT +IT +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(100,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +aa +aa +aa +yL +So +So +So +So +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +IT +IT +IT +IT +IT +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(101,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +aa +aa +aa +So +Vk +Be +SM +So +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wd +wd +wd +wd +wd +wd +wd +wd +wd +VP +ab +VP +aa +XN +IT +IT +IT +XN +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +IT +ZZ +ZZ +IT +IT +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +IT +IT +IT +IT +IT +DG +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +pl +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(102,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +IT +IT +aa +So +MO +tz +ql +So +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SG +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +VP +ab +VP +aa +aa +XN +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +aa +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +IT +DG +IT +DG +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(103,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +IT +IT +IT +So +tp +ql +ql +So +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +nV +wd +wd +wd +wd +Jt +Jt +Jt +tg +Jt +uI +ab +VP +ab +VP +aa +aa +XN +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(104,1,1) = {" +ab +VP +aa +Oh +Oh +Oh +Oh +Oh +Oh +Oh +Oh +aa +aa +aa +IT +IT +IT +So +So +So +qh +So +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +IT +IT +IT +Fz +Ox +Ox +RS +IU +IU +aS +aS +kW +ab +VP +ab +VP +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +IT +aa +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +aa +aa +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(105,1,1) = {" +ab +VP +zr +Oh +Dx +ll +yq +Ms +Zq +zk +Oh +aa +aa +IT +IT +IT +IT +IT +IT +IT +Ln +IT +aa +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +Fz +Ox +Ox +Ox +Ox +us +vX +vX +vX +ab +VP +ab +VP +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(106,1,1) = {" +ab +VP +Oh +XR +XR +tM +KC +Nf +fL +XH +Oh +Oh +Oh +IT +IT +IT +IT +IT +IT +IT +Ln +IT +sV +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +aa +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +Do +QP +lG +qX +qX +vX +vX +vX +vX +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +IT +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(107,1,1) = {" +ab +VP +Oh +GD +GD +GD +uB +Qr +Rl +Qo +aL +KM +eR +pQ +pQ +ws +IT +IT +IT +IT +Ln +IT +sV +aa +aa +aa +aa +aa +VP +ab +VP +aa +aa +ZZ +aa +IT +IT +IT +IT +IT +ZZ +ZZ +ZZ +IT +Do +By +MP +ru +ru +vX +vX +vX +vX +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +aa +aa +IT +aa +wz +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(108,1,1) = {" +ab +VP +Oh +GD +Gd +Gx +in +Js +jh +wy +Pm +aC +vk +ev +IT +Ln +IT +IT +IT +IT +Ln +IT +IT +aa +aa +aa +aa +aa +VP +ab +VP +aa +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +ZZ +IT +IT +Do +Wa +hG +Wt +uM +vX +vX +vX +vX +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +IT +aa +IT +IT +aa +IT +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(109,1,1) = {" +ab +VP +Oh +GD +GD +GD +uB +bB +AJ +pU +EL +Rv +eR +pQ +dj +vx +IT +IT +IT +IT +Pa +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +IT +IT +wc +rV +Ox +ox +us +vX +vX +vX +vX +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +IT +aa +aa +aa +IT +aa +IT +aa +aa +IT +IT +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +aa +aa +IT +IT +IT +ZZ +ZZ +ZZ +ZZ +IT +IT +IT +Al +Sa +jz +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +IT +IT +wz +aa +aa +aa +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(110,1,1) = {" +ab +VP +Oh +Jy +Jy +oN +cw +LF +iA +IH +Oh +Oh +Oh +IT +IT +Ln +IT +IT +IT +IT +Pa +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +IT +sJ +dj +pQ +sG +sG +lq +Ox +ul +rG +sx +sx +nY +sb +vX +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +IT +IT +aa +IT +IT +IT +IT +ZZ +ZZ +ZZ +IT +IT +IT +IT +IT +AF +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +wz +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(111,1,1) = {" +ab +VP +Oh +Oh +Dx +Cy +tA +Ms +rC +IH +Oh +aa +IT +IT +IT +gp +dj +pQ +pQ +pQ +vx +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +ZZ +ZZ +ZZ +ZZ +IT +ZZ +IT +IT +Pa +IT +IT +nV +wd +wd +wd +wd +Jt +Jt +Jt +jX +Jt +jq +ab +VP +ab +VP +tW +tW +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +IT +IT +aa +IT +IT +IT +IT +Al +Sa +jz +IT +IT +aa +IT +hI +qI +Vg +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +To +To +To +To +To +aa +aa +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(112,1,1) = {" +ab +VP +aa +Oh +Oh +Oh +Oh +Oh +Oh +vD +Oh +Oh +rU +IT +op +Ln +IT +IT +rU +IT +Ln +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +IT +ZZ +ZZ +IT +IT +IT +IT +IT +Pa +IT +IT +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +VP +ab +VP +tW +tW +aa +IT +IT +IT +DG +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +AF +IT +IT +aa +aa +IT +ZZ +ZZ +IT +IT +aa +aa +aa +aa +aa +IT +aa +aa +aa +To +To +Mj +Mj +Mj +To +To +aa +IT +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(113,1,1) = {" +ab +VP +aa +aa +Oh +Fh +NW +Cp +Fn +Cp +Gr +Oh +Zc +Pt +qy +vj +ht +Fb +Zc +IT +Ln +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +IT +ZZ +IT +IT +IT +IT +IT +IT +Pa +IT +IT +IT +IT +IT +wd +wd +wd +wd +wd +wd +wd +wd +wd +VP +ab +VP +tW +tW +aa +IT +DG +IT +DG +DG +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +IT +aa +IT +hI +qI +Vg +IT +aa +IT +IT +ZZ +ZZ +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +To +To +To +bI +DO +Mj +lw +IT +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(114,1,1) = {" +ab +VP +aa +aa +Oh +Oh +Oh +Wo +Ex +Ex +qS +Oh +SO +wq +wq +wq +wq +wq +wR +IT +Ln +IT +IT +IT +IT +aa +aa +aa +VP +ab +VP +IT +IT +IT +sJ +dj +pQ +pQ +pQ +vx +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +IT +IT +DG +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +IT +IT +IT +IT +aa +aa +IT +IT +ZZ +ZZ +IT +aa +IT +ZZ +ZZ +ZZ +aa +aa +aa +IT +IT +IT +IT +IT +IT +aa +To +Mj +bI +Qw +Mj +Mj +QI +lw +IT +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(115,1,1) = {" +ab +VP +aa +aa +Oh +Fh +NW +zI +zI +pv +hs +Oh +SO +wq +wq +wq +wq +wq +wR +IT +Ln +IT +IT +xu +xu +xu +xu +aa +VP +ab +VP +IT +IT +IT +Ln +IT +IT +IT +IT +Pa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +IT +IT +ZZ +ZZ +IT +IT +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +To +To +bI +Mj +Mj +Mj +bI +bI +lw +IT +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(116,1,1) = {" +ab +VP +aa +aa +Oh +Oh +Oh +Ex +PB +lF +Oh +Oh +SO +wq +wq +wq +wq +wq +wR +IT +Ln +IT +IT +xu +Oc +vH +xu +aa +VP +ab +VP +rU +IT +IT +Ln +IT +IT +rU +IT +Pa +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +XN +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +To +To +Mj +bI +mc +DQ +Mj +DO +Kn +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(117,1,1) = {" +ab +VP +aa +aa +aa +aa +Oh +Oh +Oh +Oh +Oh +IT +SO +wq +wq +wq +wq +wq +wR +IT +Hu +dj +dj +ZU +DE +xv +xu +aa +VP +ab +VP +Zc +zx +qy +vj +ht +Fb +Zc +IT +Ln +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +DG +IT +IT +IT +aa +aa +aa +aa +aa +IT +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +To +Eb +al +Fy +bK +Mj +QI +Kn +IT +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(118,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +IT +Zc +wq +wq +wq +wq +wq +Zc +IT +Ln +IT +IT +xu +VY +LI +xu +aa +VP +ab +VP +SO +wq +wq +wq +wq +wq +wR +IT +Ln +IT +IT +IT +IT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +aa +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +DG +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +To +ZZ +QD +Eb +Eb +Eb +Eb +ZZ +ZZ +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(119,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +Zc +Zc +wh +xu +xu +xu +xu +xu +Ln +IT +wh +xu +xu +xu +xu +xu +VP +ab +VP +SO +wq +wq +wq +wq +wq +RU +IT +Ln +IT +IT +wh +xu +xu +xu +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +aa +aa +aa +aa +IT +IT +IT +IT +aa +aa +aa +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +IT +DG +IT +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +IT +aa +aa +aa +aa +To +ZZ +ZZ +ZZ +IT +ZZ +ZZ +ZZ +ZZ +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(120,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +xu +IA +bL +bL +IA +xu +Ln +IT +xu +dr +xu +UJ +dr +xu +VP +ab +VP +SO +wq +wq +wq +wq +tk +Bb +IT +Ln +IT +IT +xu +Oc +vH +xu +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +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 +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(121,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +xu +Ff +xu +xu +fa +aP +BV +Wf +Sr +hF +xu +xu +hF +xu +VP +ab +VP +SO +wq +wq +wq +wq +wq +YP +SL +SL +dj +dj +ZU +DE +hK +xu +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(122,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +xu +IA +Oy +xu +IA +xu +IT +IT +xu +dr +UJ +UJ +dr +xu +VP +ab +VP +SO +wq +wq +wq +gz +wq +NP +SL +SL +IT +IT +xu +VY +LI +xu +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(123,1,1) = {" +ab +VP +aa +aa +aa +aa +aa +aa +aa +VP +aa +aa +aa +aa +xu +xu +xu +xu +xu +xu +Zc +Zc +xu +xu +xu +xu +xu +xu +VP +ab +VP +Zc +Ta +Ta +Ta +tq +gK +SL +SL +SL +SL +SL +xu +xu +xu +xu +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +VP +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +tW +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +TH +ab +"} +(124,1,1) = {" +ab +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +VP +VP +VP +VP +VP +VP +VP +VP +SL +SL +SL +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +ab +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +Mt +ab +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +TH +ab +"} +(125,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(126,1,1) = {" +ab +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +ad +ad +ad +ad +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pb +ab +"} +(127,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +dO +dO +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +dO +dO +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(128,1,1) = {" +ab +Ag +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +wd +hw +xV +JI +VT +wd +ba +wp +No +YS +Nj +wd +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +dO +dO +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(129,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +wd +uT +QN +QN +QN +PA +NG +wp +Lr +wd +wd +wd +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(130,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +HY +Wq +Wq +ad +ad +ad +ad +ad +wd +nw +gT +wd +hp +wd +No +sv +pm +YS +gB +wd +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(131,1,1) = {" +ab +Ag +SG +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +dO +dO +dO +fd +wd +Xa +fC +HY +wd +HY +ZP +wd +wd +wd +wd +wd +wd +wd +wd +xV +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +SG +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +PU +Wq +bX +dO +dO +Wq +Wq +SG +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(132,1,1) = {" +ab +Ag +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +us +fd +dO +dO +dO +dO +dO +Wq +HY +HY +HY +HY +HY +HY +HY +wd +wd +wd +wd +wd +wS +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +PU +Wq +Wq +dO +dO +dO +bX +Lc +PU +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +nV +wd +wd +wd +nV +wd +wd +wd +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(133,1,1) = {" +ab +Ag +ab +Mf +Jt +Jt +Jt +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +oQ +Wq +dO +dO +dO +Wq +Wq +HY +HY +HY +Jt +Jt +Jt +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +xZ +Jt +Jt +vM +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +vM +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +nz +fg +fg +dO +dO +dO +Wq +Wq +oQ +Jt +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +xZ +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +xZ +GK +Pi +lr +Jt +Jt +Jt +Jt +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(134,1,1) = {" +ab +Ag +ab +cJ +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +Gg +ct +fd +dO +dO +Wq +HY +cG +cG +lk +RS +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +cI +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +wI +IU +IU +IU +IU +IU +IU +IU +IU +ko +ko +ko +ko +IU +IU +IU +IU +IU +IU +IU +IU +Gg +IU +Gg +hy +Wq +dO +dO +dO +Wq +fg +fg +aN +Gg +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +IU +aS +aS +IU +IU +aS +aS +aS +IU +wd +IU +IU +IU +IU +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(135,1,1) = {" +ab +Ag +ab +vX +us +us +us +Ox +Ox +Ox +Ox +Ox +Ox +Ox +lk +cG +cG +kb +HG +vf +fd +dO +Wq +mJ +ff +Ls +HG +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Zf +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +ju +Ox +Ox +Ox +Ox +Ox +fC +fC +fC +XK +XK +XK +fC +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +fC +us +fg +Wq +Wq +dO +dO +dO +Wq +Wq +us +fC +Ox +Ox +Ox +TK +Ox +TK +us +us +us +Ox +Ox +us +us +Ox +Ox +Ox +Ox +TK +Ox +Ox +us +XK +XK +us +us +us +XK +XK +TK +RO +Ox +Ox +Ox +Ox +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(136,1,1) = {" +ab +Ag +ab +vX +vX +vX +NB +qX +qX +qX +qX +qX +qX +qX +HG +Ls +Ls +sQ +nQ +sQ +bX +dO +dO +mJ +fC +nQ +HG +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +qX +cj +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Xo +qX +qX +qX +qX +qX +XK +XK +XK +XK +XK +XK +pq +pq +qX +qX +qX +qX +qX +sd +lG +Wq +Wq +bX +Wq +dO +fd +fd +Ku +Ku +fg +tH +lG +qX +qX +qX +qX +sd +XK +XK +XK +XK +qX +sd +XK +XK +NB +NB +qX +qX +qX +qX +NB +NB +XK +XK +NB +NB +XK +XK +XK +sd +RO +qX +qX +qX +qX +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(137,1,1) = {" +ab +Ag +ab +vX +vX +vX +ru +ru +ru +ru +ru +ru +ru +ru +HG +nQ +uF +nQ +la +Yj +vQ +fd +dO +fd +mJ +co +HG +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +nc +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +ru +XK +XK +XK +ru +ru +XK +XK +XK +XK +XK +XK +ru +ru +ru +ru +ru +ru +ru +ru +ru +fg +fg +Wq +dO +dO +dO +dO +eB +Cl +ER +ER +ER +ER +ER +ER +ER +XK +XK +XK +XK +XK +ER +ru +XK +XK +XK +XK +ru +ru +ru +ru +ru +ER +ER +ER +ER +ER +ER +ER +ER +ru +RO +ru +ru +ru +ru +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(138,1,1) = {" +ab +Ag +ab +vX +vX +vX +YN +Wt +Wt +Wt +Wt +Wt +Wt +Wt +HG +zR +co +nQ +qf +us +HB +us +dO +dO +cG +cG +lk +hG +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Tn +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Fu +uh +XK +XK +Wt +Wt +XK +XK +XK +XK +uh +Wt +Wt +Wt +Wt +Wt +Wt +Wt +hG +nD +rm +Wq +Wq +dO +dO +dO +dO +eB +CE +Qt +gJ +nD +XK +XK +XK +XK +XK +XK +XK +Wt +YN +YN +Wt +Wt +YN +XK +XK +XK +uM +Wt +Wt +Wt +Wt +Wt +Wt +Wt +Wt +YN +Wt +Wt +YN +Wt +RO +Wt +Wt +Wt +Wt +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(139,1,1) = {" +ab +Ag +ab +vX +vX +us +fC +Ox +Ox +Ox +Ox +Ox +Ox +Ox +lk +cG +cG +HK +MI +Az +ZJ +ZJ +dO +dO +Wq +Wq +TK +Ox +TK +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Zf +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +ju +Ox +fC +fC +Ox +Ox +fC +fC +fC +fC +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ox +Ua +TM +gk +Ku +fd +fd +dO +dO +fg +Ku +Qt +Ua +Ox +us +XK +XK +XK +XK +XK +us +Ox +TK +Ox +Ox +Ox +Ox +us +XK +XK +XK +us +us +Ox +Ox +TK +Ox +TK +Ox +us +XK +TK +us +XK +XK +RO +Ox +Ox +Ox +Ox +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(140,1,1) = {" +ab +Ag +ab +vX +Ju +nY +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +AX +AX +AX +uL +dO +dO +dO +Wq +YF +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +zU +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +yG +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +sx +PN +vL +eB +dO +dO +dO +dO +dO +Kr +eB +dU +AX +sx +sx +sx +nY +nY +nY +sx +sx +sx +sx +ph +wV +ty +ph +wV +yW +nY +nY +sx +sx +sx +sx +sx +sx +sx +sx +nY +nY +sx +sx +sx +nY +wd +sx +sx +sx +sx +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(141,1,1) = {" +ab +Ag +ab +Ho +fC +Jt +Jt +Jt +Jt +Jt +jX +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Gq +Wq +dO +dO +dO +Wq +Wq +oQ +Jt +Jt +Jt +jX +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +jX +Qn +Jt +ZX +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +ZX +Jt +Qn +Jt +jX +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +jX +Jt +Jt +oQ +Ku +Wq +dO +dO +dO +dO +Wq +Wq +fg +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +xw +Jt +Hb +Jt +fc +Jt +Jt +fc +Jt +Hb +Hb +xw +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +Jt +jX +Jt +Jt +lr +Jt +Jt +Jt +Jt +ab +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(142,1,1) = {" +ab +Ag +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +PU +us +fd +fd +dO +dO +Wq +Xa +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +rc +wd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +wd +Jn +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +PU +Lc +Wq +eB +dO +dO +fd +fd +Wq +Wq +Wq +us +wd +wd +wd +wd +wd +wd +wd +wd +wd +YD +Hb +aj +eQ +NX +Jt +Jt +Jt +eQ +Jt +Hb +YD +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +nV +wd +wd +wd +nV +wd +wd +wd +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(143,1,1) = {" +ab +Ag +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +us +fd +Wq +dO +fd +fd +Xa +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +cP +wd +wd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +wd +wd +az +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +fg +dO +dO +dO +dO +Wq +Wq +MZ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +XZ +Ot +Sk +Fq +Jt +Hb +py +Sk +BJ +XZ +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +wd +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(144,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +ad +ad +Wq +ad +ad +ad +ad +ad +ad +VX +YT +nR +nR +Wq +Wq +wd +ai +wd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +wd +ai +wd +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +wd +wd +UU +Gk +Ai +Fq +Hb +Hb +mZ +Ai +hV +UU +wd +wd +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(145,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +HY +HY +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Mi +XJ +XJ +Vh +Vh +Vh +Vh +Vh +ad +nR +nR +nR +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +wd +wd +ho +vv +mr +JF +Jt +Jt +JF +bm +gh +KU +wd +wd +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(146,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +ad +dO +dO +dO +Wq +XJ +mL +RE +Dj +Pb +Pb +RV +Vh +ad +ad +ad +nR +nR +nR +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +Wq +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +wd +wd +JQ +Tj +fQ +Jt +GR +Jt +Jt +An +Jt +JF +wd +wd +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(147,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +ad +HY +HY +HY +HY +HY +Wq +HY +Wq +Wq +Wq +dO +ad +ad +dO +dO +Wq +XJ +XJ +XJ +QT +hY +Ek +nW +Vh +ad +ad +ad +ad +ad +nR +Wq +RH +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +xC +KA +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +wd +wd +wd +TF +wd +wd +zB +wd +wd +wd +YG +wd +wd +wd +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(148,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +dO +dO +Wq +ad +ad +Vh +Vh +Ds +Vh +Vh +Vh +Vh +ad +ad +ad +oe +nR +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Tt +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(149,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +ad +Vh +cs +Mu +hA +BR +ar +Vh +Vh +Vh +Vh +oe +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Tt +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(150,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +ad +Vh +AO +gn +Mu +LJ +eV +Vh +lB +Pw +Vh +nR +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +qV +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(151,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +dO +dO +Wq +Wq +Vh +LO +AO +yE +AO +AO +ma +OS +Pw +ma +nR +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Tt +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(152,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +ad +Wq +Wq +Wq +dO +dO +Wq +Wq +Vh +tB +il +yE +zF +zF +sN +CM +Fe +lH +nR +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Tt +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(153,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +HY +HY +HY +Wq +Wq +ad +Wq +Wq +Wq +Wq +dO +dO +Wq +Vh +rP +xp +AO +DU +AO +ma +LZ +uP +ma +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +NR +NR +Wq +HM +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(154,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +HY +HY +HY +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +Wq +Vh +Sw +Bg +du +RA +yf +Vh +Vh +Vh +Vh +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +KA +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(155,1,1) = {" +ab +Ag +ad +ad +Wq +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +HY +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +ad +Vh +XJ +XJ +kd +XJ +XJ +Vh +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +qV +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(156,1,1) = {" +ab +Ag +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +Wq +ad +XJ +kd +lS +cC +XJ +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +qV +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(157,1,1) = {" +ab +Ag +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +XJ +lS +Xs +lS +XJ +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +fs +Wq +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(158,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +XJ +kd +lS +kd +XJ +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +xD +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(159,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +XJ +XJ +XJ +XJ +XJ +ad +ad +Wq +Wq +Wq +RH +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +Wq +Wq +MC +Gj +Wq +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(160,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +xD +Wq +Gj +xd +sH +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +pe +an +an +an +an +pe +pe +pe +pe +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(161,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +ad +ad +ad +ad +pp +Wq +Wq +Wq +Wq +zn +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +ad +ad +ad +ad +HY +HY +Wq +ad +HY +HY +Wq +Wq +Gj +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(162,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Gj +Wq +Wq +Wq +ad +ad +ad +ad +ad +KA +YI +by +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +Wq +ad +HY +HY +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(163,1,1) = {" +ab +Ag +ad +ad +ad +Wq +qi +Wq +Wq +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ST +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Tt +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +ad +ad +HY +HY +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(164,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +qi +Wq +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ST +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Tt +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +ad +HY +HY +HY +HY +HY +ad +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(165,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ST +Wq +ST +Wq +Wq +ad +ad +ad +Wq +qV +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +ad +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(166,1,1) = {" +ab +Ag +ad +ad +ad +Wq +qi +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +ad +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(167,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Gj +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +qV +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +pe +pe +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(168,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(169,1,1) = {" +ab +Ag +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +dO +wE +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +dO +Wq +Wq +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(170,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Tt +Wq +Wq +Wq +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(171,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Tt +Wq +Wq +pp +ad +Wq +RH +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(172,1,1) = {" +ab +Ag +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +qV +Wq +Wq +Wq +Wq +Wq +HM +pp +Wq +ad +ad +Wq +Wq +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(173,1,1) = {" +ab +Ag +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +qV +Wq +Wq +KA +ad +ad +ad +xa +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +Wq +Wq +Wq +Wq +dO +dO +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(174,1,1) = {" +ab +Ag +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +HY +HY +HY +HY +HY +Wq +Ec +ad +ad +ad +ad +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +Wq +Wq +Wq +dO +dO +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(175,1,1) = {" +ab +Ag +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +xa +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +HY +HY +HY +HY +HY +HY +ad +ad +ad +ad +ad +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +Wq +Wq +Wq +dO +dO +dO +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(176,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +xa +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +qi +Wq +qi +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(177,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +xa +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +ad +Wq +Wq +dO +dO +dO +Wq +Wq +ad +ad +qi +Wq +nj +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +SB +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Ja +Ja +Ja +Ja +Ja +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(178,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ST +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +ad +Wq +Wq +Wq +Wq +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +Wq +Wq +Wq +jc +ci +aE +Wq +Wq +Pg +Ja +Ja +wn +ce +Lm +Ja +Ja +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(179,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ST +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +HY +HY +HY +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +xD +hT +Wq +ZH +sy +qe +Wq +Wq +Pg +Ja +ef +Df +KO +Df +Gf +Ja +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(180,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +ad +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +hT +hT +VN +XW +Tr +hT +ZF +BK +kh +mb +YY +Df +YY +jB +Ja +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(181,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +ad +HY +HY +HY +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Nx +Wq +Wq +Wq +hT +Wq +Pg +Ja +cN +YY +bk +MD +om +Ja +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(182,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +HY +HY +HY +ad +HY +HY +HY +Wq +HY +HY +HY +HY +HY +HY +HY +HY +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Pg +Ja +Ja +JR +RL +mX +Ja +Ja +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(183,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +HY +ad +HY +HY +HY +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Gj +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ja +Ja +Ja +Ja +Ja +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(184,1,1) = {" +ab +Ag +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ST +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +RH +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +HY +ad +HY +HY +Wq +Wq +Wq +HY +HY +HY +HY +Wq +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(185,1,1) = {" +ab +Ag +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +HY +ad +HY +HY +Wq +Wq +Wq +HY +HY +HY +Wq +Wq +Wq +HY +HY +ad +ad +ad +ad +ad +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +jx +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Li +ad +ad +ad +ad +gu +gu +gu +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(186,1,1) = {" +ab +Ag +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +HY +Wq +Wq +Wq +HY +HY +Wq +Wq +Wq +Wq +HY +HY +HY +ad +ad +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +ad +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +jx +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +nR +YT +PT +gu +gu +gu +gu +gu +qw +oA +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(187,1,1) = {" +ab +Ag +ad +ad +Wq +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +HY +Wq +Wq +Wq +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +HY +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +jx +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +nR +cz +MF +gu +zf +Wp +CR +gu +qw +oA +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +pe +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(188,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +HY +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +Wq +HY +HY +HY +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +XP +XP +XP +XP +XP +Of +tw +Dk +bs +Gc +uu +Bp +HE +oA +gu +gu +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(189,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +HY +ad +ad +Wq +Wq +Wq +Wq +HY +HY +Wq +Wq +HY +HY +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +oT +oT +oT +oT +oT +ad +ad +ad +XP +Wq +Wq +Wq +Og +gu +MF +gu +iJ +oR +Vc +gu +gr +qw +Jq +Yh +Yh +Yh +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(190,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +fl +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +HY +ad +ad +Wq +Wq +Wq +Wq +HY +HY +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +oT +oT +oT +oT +oT +Vw +pX +CK +oT +ad +ad +ad +XP +Wq +Wq +Wq +Wq +Wq +Wq +gu +gu +Fa +gu +gu +hr +hN +iK +mo +vr +Yh +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(191,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +Wq +HY +HY +Wq +ad +ad +ad +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +oT +Uk +jC +au +oT +CK +jU +CK +oT +ad +ad +Wq +XP +Wq +Wq +Wq +Wq +Wq +ad +ad +gu +sO +vY +gu +gu +Yh +gP +Yh +Yh +Yh +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(192,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +ad +ad +ad +Wq +Wq +HY +HY +HY +Wq +Wq +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +oT +lh +Xf +ps +oT +dn +oW +lX +oT +ad +ad +Wq +XP +Wq +Wq +ad +ad +ad +ad +ad +gu +zM +tt +LY +UP +Yh +We +Yh +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(193,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Kd +oT +oT +oT +nd +oT +oT +bf +Ev +bf +oT +oT +oT +ny +XP +Wq +ad +ad +ad +ad +YQ +YQ +gu +Pn +xL +yK +nN +Yh +Yh +Yh +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(194,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +oT +Wj +Gz +Zi +Xf +kt +oT +XY +oW +cQ +bf +Ko +bf +Wq +XP +Wq +Wq +ad +ad +ad +YQ +YQ +gu +fk +TP +zH +si +Dy +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(195,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +RH +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +oT +oT +oT +zo +Xf +Jp +oT +Nc +Bw +Bw +IY +iO +IY +XP +XP +Wq +Wq +Wq +ad +ad +YQ +YQ +gu +qL +jy +jy +tI +iN +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(196,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +oT +bl +tL +Mn +lt +PM +oT +Nl +Bw +cQ +bf +jW +bf +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +gu +gu +gu +gu +gu +gu +gu +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(197,1,1) = {" +ab +Ag +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +ad +ad +Wq +ad +ad +ad +ad +ad +nj +Wq +oT +oT +oT +oT +oT +KQ +oT +bf +tX +bf +oT +oT +oT +YJ +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(198,1,1) = {" +ab +Ag +ad +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +oT +TB +uU +Vo +OM +nM +zT +pE +pE +dv +HR +oT +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(199,1,1) = {" +ab +Ag +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +ad +oT +Rt +zL +oT +OM +Ea +FB +yv +YC +sT +kJ +bf +Wq +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(200,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +ad +oT +oT +oT +oT +da +FW +TO +TO +dv +Kx +aI +Ra +Wq +ky +Wq +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +pe +an +an +an +an +an +an +ab +"} +(201,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +oT +lL +xI +oT +Qs +Zu +Xh +Py +vI +kg +HC +rh +Wq +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +pe +an +an +an +an +an +an +ab +"} +(202,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +RH +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +RH +Wq +ad +ad +ad +Wq +Wq +Wq +RH +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +jx +jx +ad +ad +ad +ad +ad +ad +ad +Wq +oT +TB +xf +Db +OM +OM +OM +aX +OM +OM +Kx +oT +bX +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +an +an +pe +pe +an +an +an +an +an +an +ab +"} +(203,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +jx +jx +ad +ad +ad +ad +ad +Wq +ad +Wq +oT +oT +wb +oT +oT +lU +oT +oT +oT +Os +oT +oT +ad +NR +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +ab +"} +(204,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Se +dO +dO +dO +dO +dO +dO +dO +dO +Nu +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +RH +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +jx +Wq +ad +ad +ad +ad +Wq +ad +Wq +pF +oO +Ld +vG +wb +SZ +kM +oT +MH +yl +oT +ad +ad +NR +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(205,1,1) = {" +ab +Ag +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +pF +fH +gL +KJ +oT +vi +EH +oT +EH +iQ +oT +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(206,1,1) = {" +ab +Ag +ad +ad +ad +ad +Wq +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +Wq +Wq +Wq +Wq +Wq +Se +dO +dO +dO +gy +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +pF +oT +Fi +pF +oT +oT +oT +oT +oT +oT +oT +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(207,1,1) = {" +ab +Ag +ad +ad +Wq +ad +Wq +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +ad +pF +pF +oT +pF +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(208,1,1) = {" +ab +Ag +ad +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(209,1,1) = {" +ab +Ag +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +RH +ui +qM +qM +vy +HY +HY +HY +vV +qM +RH +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(210,1,1) = {" +ab +Ag +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +HF +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +tx +HY +HY +HY +HY +HY +HY +HY +HY +TJ +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(211,1,1) = {" +ab +Ag +YQ +YQ +YQ +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +Wq +bX +Wq +dH +Cu +HY +HY +HY +HY +PP +dH +dH +dH +dH +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +ab +"} +(212,1,1) = {" +ab +Ag +YQ +YQ +YQ +Wq +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +Wq +ad +ad +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(213,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +ST +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +Wq +ad +ad +ad +Wq +Wq +ad +Wq +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(214,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +ad +Wq +ad +Wq +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +ad +ad +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(215,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +ad +ST +ST +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +Wq +ad +Wq +ad +ad +Wq +Wq +ad +Wq +ad +Wq +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(216,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +ad +ST +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(217,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +ad +ST +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(218,1,1) = {" +ab +Ag +YQ +YQ +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(219,1,1) = {" +ab +Ag +YQ +YQ +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +ad +Wq +ad +Wq +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(220,1,1) = {" +ab +Ag +YQ +YQ +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(221,1,1) = {" +ab +Ag +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +nj +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +Wq +ad +Wq +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(222,1,1) = {" +ab +Ag +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +Wq +ad +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(223,1,1) = {" +ab +Ag +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +ad +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +ad +YQ +YQ +ad +ad +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(224,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(225,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +Wq +ad +YQ +YQ +YQ +YQ +YQ +ad +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(226,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +Wq +ad +ad +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(227,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(228,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +xD +xD +Wq +Wq +dO +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +Wq +ad +ad +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(229,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +Wq +ad +ad +ad +ad +Wq +HJ +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(230,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +dO +dO +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +ad +ad +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(231,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +ad +ad +jx +jx +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +xD +Wq +Wq +Wq +xD +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +ad +ad +ad +Wq +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +ad +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +pe +an +an +an +an +ab +"} +(232,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +ad +ad +jx +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +ad +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +ad +ad +ad +Wq +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(233,1,1) = {" +ab +Ag +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +ab +"} +(234,1,1) = {" +ab +Ag +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +ad +Wq +Wq +ad +Wq +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +pe +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(235,1,1) = {" +ab +Ag +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +YQ +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(236,1,1) = {" +ab +Ag +YQ +YQ +ad +ad +Wq +Wq +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(237,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +Wq +Wq +Wq +ad +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(238,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +nj +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +Wq +ad +ad +ad +ad +ST +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +ad +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +pe +an +an +an +pe +an +an +an +ab +"} +(239,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +ad +Wq +ad +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ST +ST +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +pe +an +an +an +an +an +an +an +pe +an +an +an +ab +"} +(240,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +ad +Wq +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +pe +an +an +an +an +ab +"} +(241,1,1) = {" +ab +Ag +YQ +YQ +YQ +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +YQ +YQ +YQ +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(242,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +Wq +ad +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +nj +ad +ad +ad +ad +ad +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +ad +Wq +ad +ad +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(243,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +Wq +ad +Wq +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(244,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +Wq +ad +Wq +ad +YQ +YQ +ad +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +ad +Wq +ad +ad +ad +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(245,1,1) = {" +ab +Ag +YQ +YQ +YQ +ad +Wq +ad +ad +ad +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +dO +dO +dO +dO +dO +dO +Wq +Wq +ad +ad +Wq +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Gj +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +YQ +YQ +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +an +an +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(246,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +ad +Wq +ad +ad +ad +ad +ad +ad +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(247,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +ad +ad +ad +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(248,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +Wq +Wq +Gj +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +Wq +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(249,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +HY +HY +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(250,1,1) = {" +ab +Ag +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +Wq +Wq +Wq +dO +dO +dO +dO +dO +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +Wq +Wq +Wq +Wq +HY +HY +HY +HY +HY +HY +HY +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +pe +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(251,1,1) = {" +ab +Ag +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +ad +ad +Wq +ad +ad +HY +HY +HY +HY +HY +HY +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(252,1,1) = {" +ab +Ag +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +HY +HY +HY +HY +HY +HY +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +pe +pe +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(253,1,1) = {" +ab +Ag +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +ad +Wq +Wq +Wq +Wq +Wq +Wq +Wq +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +YQ +ad +ad +ad +HY +HY +HY +HY +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(254,1,1) = {" +ab +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +Ag +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +pe +an +pe +pe +an +an +an +an +an +an +an +an +an +an +an +ab +"} +(255,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} diff --git a/_maps/RandomZLevels/challenge.dmm b/_maps/away/challenge.dmm similarity index 99% rename from _maps/RandomZLevels/challenge.dmm rename to _maps/away/challenge.dmm index 624d2777151b..410a300cfead 100644 --- a/_maps/RandomZLevels/challenge.dmm +++ b/_maps/away/challenge.dmm @@ -15,21 +15,14 @@ /turf/open/floor/plating/airless, /area/awaymission/challenge/start) "ae" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/awaymission/challenge/start) -"af" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "ag" = ( /obj/item/clothing/suit/space/syndicate/blue, /obj/item/clothing/head/helmet/space/syndicate/blue, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "ah" = ( /turf/open/floor/plasteel/airless, @@ -42,15 +35,13 @@ /area/awaymission/challenge/start) "aj" = ( /obj/effect/landmark/awaystart, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "ak" = ( /obj/effect/decal/remains/human, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "al" = ( /obj/effect/landmark/awaystart, @@ -59,14 +50,8 @@ "am" = ( /obj/item/clothing/suit/space/syndicate/green, /obj/item/clothing/head/helmet/space/syndicate/green, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/awaymission/challenge/start) -"an" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "ao" = ( /obj/item/clothing/suit/space/syndicate/orange, @@ -87,24 +72,17 @@ /area/awaymission/challenge/start) "as" = ( /obj/effect/decal/remains/robot, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "au" = ( /turf/closed/wall, /area/awaymission/challenge/start) -"av" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/awaymission/challenge/start) "aw" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "ax" = ( /obj/effect/decal/cleanable/oil, @@ -118,9 +96,8 @@ "az" = ( /obj/item/clothing/suit/space/syndicate/black, /obj/item/clothing/head/helmet/space/syndicate/black, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/start) "aA" = ( /turf/closed/indestructible{ @@ -132,9 +109,8 @@ /turf/open/floor/plating/airless, /area/awaymission/challenge/main) "aD" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) "aE" = ( /turf/closed/wall, @@ -142,11 +118,6 @@ "aF" = ( /turf/open/floor/plating/airless, /area/awaymission/challenge/main) -"aG" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/awaymission/challenge/main) "aH" = ( /turf/open/floor/plasteel/airless, /area/awaymission/challenge/main) @@ -28099,11 +28070,11 @@ aa aa ab ac -af -an +ae +ae ah ad -an +ae ax aA aF @@ -28357,11 +28328,11 @@ aa ab ad aj -an +ae ao -af -an -av +ae +ae +ae aA aA aA @@ -28615,10 +28586,10 @@ ab ae ak al -af +ae ad aw -av +ae aB aF aJ @@ -28869,15 +28840,15 @@ aa aa aa ab -af +ae al ah -af +ae ac -af -an +ae +ae aF -aG +aD aK aR aH @@ -29131,7 +29102,7 @@ ah al ap au -af +ae ay aD aF @@ -29388,7 +29359,7 @@ al ah aq ac -an +ae az aE aH @@ -29644,8 +29615,8 @@ ai ah al ar -af -av +ae +ae ad aA aA @@ -29901,9 +29872,9 @@ ah am ad as -av ae -av +ae +ae aA aF aN diff --git a/_maps/away/factorio.dmm b/_maps/away/factorio.dmm new file mode 100644 index 000000000000..cc6829ba9516 --- /dev/null +++ b/_maps/away/factorio.dmm @@ -0,0 +1,66449 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ah" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/awaystart/nodelay, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"aC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"aD" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"bf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/meter/atmos/layer4, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"bp" = ( +/obj/effect/landmark/ore_vein/glass, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"cu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"cA" = ( +/obj/effect/landmark/ore_vein/diamond, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"cK" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"dp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/mine/production) +"dw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dQ" = ( +/turf/closed/wall/rust, +/area/awaymission/undergroundoutpost45/caves) +"dW" = ( +/obj/item/stack/sheet/mineral/gold{ + amount = 25 + }, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"eI" = ( +/obj/item/gun/ballistic/automatic/pistol/deagle/gold, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"eJ" = ( +/obj/effect/landmark/ore_vein/plasma, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"eU" = ( +/obj/effect/landmark/ore_vein/gold, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"fh" = ( +/obj/structure/table, +/obj/item/circuitboard/computer/cargo/express{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/supplypod_beacon{ + pixel_x = -16 + }, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"fM" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"hg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/mine/storage) +"hm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"hE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/on, +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"hW" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"iw" = ( +/obj/effect/landmark/ore_vein/iron, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"iE" = ( +/obj/item/circuitboard/machine/autolathe, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"jh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"jl" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"jn" = ( +/obj/item/key/gateway, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"jp" = ( +/obj/item/toy/plush/bubbleplush, +/obj/structure/safe, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"jt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"jv" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"jT" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/mine/production) +"kh" = ( +/obj/effect/landmark/ore_vein/gold, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"kk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"kD" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/rust, +/area/mine/production) +"lq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"lE" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"lU" = ( +/obj/item/clothing/neck/necklace/dope/merchant, +/obj/effect/mapping_helpers/component_injector/areabound, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"ml" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/caves) +"mw" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/wall/rust, +/area/mine/production) +"mL" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/wall/rust, +/area/mine/storage) +"mQ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"nc" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/indestructible/black, +/area/awaymission/undergroundoutpost45/caves) +"of" = ( +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"oh" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/awaystart/nodelay, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"op" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/obj/effect/landmark/awaystart/nodelay, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"oF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"pq" = ( +/obj/effect/landmark/ore_vein/silver, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"pN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"pS" = ( +/obj/structure/cable, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"qm" = ( +/obj/effect/landmark/ore_vein/iron, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"qt" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"qw" = ( +/obj/item/pickaxe, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"rs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"rI" = ( +/obj/machinery/porta_turret/syndicate/energy/heavy, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"sO" = ( +/turf/closed/indestructible/black, +/area/awaymission/undergroundoutpost45/caves) +"sP" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"to" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/paper/guides/conveyor, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"tq" = ( +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"tu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table, +/obj/item/paper/fluff/stations/lavaland/orm_notice, +/obj/item/pinpointer/deepcore{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/deepcorecapsule{ + pixel_x = 9; + pixel_y = 13 + }, +/obj/item/deepcorecapsule{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/deepcorecapsule{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/item/deepcorecapsule{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/deepcorecapsule{ + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"tC" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/wall/rust, +/area/mine/living_quarters) +"uy" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"uO" = ( +/obj/effect/landmark/ore_vein/glass, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"vU" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/deepcore/hopper/anchored, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"wm" = ( +/turf/closed/wall/rust, +/area/mine/living_quarters) +"wy" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"wR" = ( +/turf/closed/wall/mineral/plastitanium, +/area/awaymission/undergroundoutpost45/caves) +"wT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"xu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"yA" = ( +/turf/open/chasm/lavaland, +/area/awaymission/undergroundoutpost45/caves) +"zg" = ( +/obj/machinery/ore_silo, +/turf/open/floor/plating/rust, +/area/mine/storage) +"zh" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/mine/production) +"zA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/production) +"An" = ( +/obj/machinery/porta_turret/syndicate/energy/heavy, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"AX" = ( +/turf/closed/wall/rust, +/area/mine/storage) +"BN" = ( +/turf/open/floor/plating/rust, +/area/mine/production) +"BR" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"BY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"BZ" = ( +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"Ci" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"CD" = ( +/obj/item/wrench/combat, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"DV" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/awaymission/undergroundoutpost45/caves) +"Ej" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"El" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"Es" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"Eu" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"Fk" = ( +/obj/effect/landmark/ore_vein/plasma, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"Fq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Fz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"FJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Gw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"GQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating/rust, +/area/mine/production) +"HJ" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Ig" = ( +/obj/machinery/camera{ + c_tag = "Processing Area Room"; + dir = 8; + network = list("mine") + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/plating/rust, +/area/mine/production) +"Ix" = ( +/turf/closed/wall, +/area/mine/production) +"IF" = ( +/obj/effect/landmark/ore_vein/diamond, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"IL" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"IW" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"JG" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"JR" = ( +/obj/structure/table, +/obj/item/pinpointer/deepcore{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/pinpointer/deepcore/advanced{ + pixel_y = 4 + }, +/obj/item/pinpointer/deepcore{ + pixel_x = -7 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"JW" = ( +/obj/effect/landmark/ore_vein/titanium, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"JY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Ko" = ( +/obj/item/card/id/advanced/gold/captains_spare, +/obj/effect/mapping_helpers/component_injector/areabound, +/turf/open/floor/plating/rust, +/area/mine/storage) +"MO" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Nf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/production) +"NF" = ( +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Ok" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/mine/production) +"Ow" = ( +/obj/effect/landmark/ore_vein/uranium, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"Ox" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"OA" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/production) +"OB" = ( +/turf/closed/wall/r_wall/rust, +/area/awaymission/undergroundoutpost45/gateway) +"OT" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"OW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Pi" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/production) +"PI" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"PQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/production) +"PV" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"PW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"PZ" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Qc" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/mine/production) +"QD" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"QJ" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"Ro" = ( +/obj/machinery/gateway/away/required_key, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"Sc" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"Sq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"SN" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/gateway) +"SU" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Tb" = ( +/obj/item/card/id/departmental_budget/car, +/obj/effect/mapping_helpers/component_injector/areabound, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Ts" = ( +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Ua" = ( +/obj/effect/landmark/ore_vein/bluespace_crystal, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"Ub" = ( +/obj/effect/landmark/ore_vein/bananium, +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/undergroundoutpost45/caves) +"Ue" = ( +/turf/open/floor/plasteel/dark, +/area/mine/production) +"Uf" = ( +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"UG" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"UH" = ( +/turf/open/floor/plating/rust, +/area/awaymission/undergroundoutpost45/caves) +"UL" = ( +/obj/structure/table, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Ve" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"VA" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"VD" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"VH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"VK" = ( +/turf/open/floor/plating/rust, +/area/mine/storage) +"Wp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/engine/air, +/area/mine/living_quarters) +"Wu" = ( +/turf/closed/wall/rust, +/area/mine/production) +"Wx" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"WK" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"Xu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"XX" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/living_quarters) +"YY" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Ze" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"ZJ" = ( +/turf/closed/wall/r_wall/rust, +/area/mine/living_quarters) +"ZT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/storage) + +(1,1,1) = {" +nc +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +"} +(2,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(3,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(4,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(5,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(6,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(7,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +AX +AX +AX +AX +AX +AX +AX +AX +tC +wm +wm +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(8,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +mL +Uf +VK +IW +OW +SU +Uf +UG +AX +NF +ah +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(9,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +VK +VK +VK +VK +VK +VK +VK +JG +AX +Xu +op +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(10,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +VK +VK +Fq +JY +VK +Tb +Uf +UL +AX +oF +op +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(11,1,1) = {" +sO +DV +DV +DV +DV +DV +An +DV +DV +DV +An +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +mQ +wy +Fz +aC +wy +Ko +Uf +Ve +AX +Ze +oh +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(12,1,1) = {" +sO +DV +DV +DV +DV +DV +UH +DV +UH +DV +UH +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +AX +Uf +Uf +VK +ZT +hg +lU +VK +JR +AX +xu +op +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(13,1,1) = {" +sO +DV +DV +DV +DV +UH +UH +UH +jn +UH +UH +UH +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +VK +zg +VK +ZT +wy +VK +Uf +fh +AX +Ze +op +ZJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(14,1,1) = {" +sO +DV +DV +DV +DV +DV +UH +DV +UH +DV +UH +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +AX +VK +Uf +FJ +ZT +wy +Uf +Uf +Gw +AX +hW +dF +ZJ +ZJ +ZJ +ZJ +ZJ +jl +jl +jl +jl +jl +sO +"} +(15,1,1) = {" +sO +DV +DV +DV +DV +DV +An +DV +DV +DV +An +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jv +AX +AX +AX +AX +MO +PI +AX +AX +AX +AX +Ze +jt +ZJ +cK +QJ +cK +ZJ +jl +jl +jl +jl +jl +sO +"} +(16,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jT +Wu +qw +zh +BN +Nf +PQ +cu +wT +wT +Pi +BY +qt +ZJ +of +hE +Wp +ZJ +jl +jl +jl +jl +jl +sO +"} +(17,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kk +lE +rs +zA +zA +Nf +dp +BN +Ue +VA +Wu +XX +pN +ZJ +of +QD +Wp +ZJ +jl +jl +jl +jl +jl +sO +"} +(18,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kD +Wu +to +BN +GQ +Ok +BN +BN +Wu +VD +Wu +HJ +dF +ZJ +WK +WK +fM +ZJ +jl +jl +jl +jl +jl +sO +"} +(19,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +lq +Wu +tu +BN +Ig +Ox +PW +Ue +OA +VH +Wu +BY +tq +dw +hm +tq +Ts +wm +jl +jl +jl +jl +jl +sO +"} +(20,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +aD +jl +jl +jl +jl +jl +jl +Wu +uy +BR +Ix +OA +Qc +OA +OA +VH +Wu +jh +xu +xu +Sq +Sq +bf +wm +jl +jl +jl +jl +jl +sO +"} +(21,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +Wu +vU +Es +IL +OT +Sc +OT +OT +Wx +Wu +PZ +YY +El +PV +Ci +wm +wm +jl +jl +jl +jl +jl +sO +"} +(22,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +iE +aD +aD +aD +jl +jl +jl +jl +jl +mw +Wu +Wu +Wu +Wu +Wu +Wu +Wu +Wu +Wu +wm +wm +wm +wm +wm +wm +jl +jl +jl +jl +jl +jl +sO +"} +(23,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(24,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(25,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(26,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +eU +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(27,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(28,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(29,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(30,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(31,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +sO +"} +(32,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(33,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(34,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(35,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(36,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(37,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(38,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(39,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +pq +jl +qm +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(40,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(41,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(42,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +dQ +dQ +dQ +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(43,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +dQ +UH +UH +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(44,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +dQ +dW +UH +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(45,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +dQ +dQ +UH +aD +aD +aD +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(46,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +UH +UH +UH +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(47,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +UH +UH +UH +UH +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(48,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +dQ +dQ +UH +eI +UH +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(49,1,1) = {" +sO +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +cA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +UH +UH +UH +UH +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(50,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +dW +UH +UH +UH +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(51,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +UH +UH +UH +UH +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(52,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +UH +dW +UH +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(53,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +dQ +dQ +dQ +dQ +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(54,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(55,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(56,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +sO +"} +(57,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +sO +"} +(58,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +sO +"} +(59,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +sO +"} +(60,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +sO +"} +(61,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +sO +"} +(62,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +sO +"} +(63,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +sO +"} +(64,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +sO +"} +(65,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(66,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(67,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(68,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(69,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(70,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(71,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(72,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(73,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(74,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(75,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(76,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(77,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +iw +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(78,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(79,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +eU +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(80,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(81,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(82,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(83,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(84,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(85,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(86,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(87,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(88,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(89,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(90,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(91,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ua +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(92,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(93,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(94,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(95,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(96,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +pq +pq +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(97,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +pq +pq +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(98,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +pq +pq +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(99,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(100,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(101,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(102,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(103,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(104,1,1) = {" +sO +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +sO +"} +(105,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(106,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(107,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(108,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(109,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(110,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(111,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(112,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(113,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(114,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +sO +"} +(115,1,1) = {" +sO +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +sO +"} +(116,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +pq +pq +pq +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(117,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +pq +pq +pq +pq +pq +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(118,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(119,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(120,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(121,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(122,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(123,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(124,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(125,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(126,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(127,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +uO +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(128,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(129,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(130,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(131,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(132,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(133,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(134,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(135,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(136,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(137,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(138,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(139,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(140,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(141,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(142,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(143,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(144,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(145,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +sO +"} +(146,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(147,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(148,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(149,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(150,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(151,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +sO +"} +(152,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +bp +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +sO +"} +(153,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +sO +"} +(154,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +sO +"} +(155,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +sO +"} +(156,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +sO +"} +(157,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +sO +"} +(158,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +sO +"} +(159,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +aD +aD +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +sO +"} +(160,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +jl +DV +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +sO +"} +(161,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +sO +"} +(162,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +sO +"} +(163,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +sO +"} +(164,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +sO +"} +(165,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +sO +"} +(166,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(167,1,1) = {" +sO +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(168,1,1) = {" +sO +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(169,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(170,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(171,1,1) = {" +sO +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(172,1,1) = {" +sO +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(173,1,1) = {" +sO +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +jl +jl +jl +jl +jl +sO +"} +(174,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +jl +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(175,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(176,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(177,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(178,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +pq +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(179,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(180,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(181,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(182,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(183,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(184,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(185,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(186,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +DV +DV +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(187,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(188,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(189,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(190,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(191,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(192,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(193,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(194,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(195,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(196,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(197,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(198,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(199,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +eJ +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(200,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Fk +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(201,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(202,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(203,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(204,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(205,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +aD +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(206,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(207,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(208,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +aD +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(209,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +aD +dQ +dQ +dQ +aD +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(210,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +aD +aD +UH +UH +aD +dQ +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(211,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +aD +dQ +UH +UH +UH +aD +dQ +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(212,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +aD +dQ +UH +jp +UH +UH +dQ +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(213,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +dQ +UH +UH +UH +aD +dQ +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(214,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +aD +aD +UH +aD +aD +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(215,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +aD +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +kh +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +aD +aD +aD +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(216,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(217,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(218,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +DV +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(219,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +IF +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +DV +DV +DV +DV +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(220,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(221,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(222,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +qm +jl +jl +jl +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(223,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(224,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(225,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(226,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(227,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(228,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ua +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(229,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(230,1,1) = {" +sO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(231,1,1) = {" +sO +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(232,1,1) = {" +sO +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(233,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(234,1,1) = {" +sO +DV +An +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +An +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(235,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(236,1,1) = {" +sO +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(237,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(238,1,1) = {" +sO +yA +An +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +An +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +JW +JW +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(239,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ow +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(240,1,1) = {" +sO +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(241,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ua +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +Ua +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(242,1,1) = {" +sO +DV +An +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +An +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +uO +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(243,1,1) = {" +sO +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +Ub +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(244,1,1) = {" +sO +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(245,1,1) = {" +sO +ml +ml +ml +ml +ml +ml +ml +ml +ml +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(246,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(247,1,1) = {" +sO +yA +yA +yA +yA +yA +yA +yA +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(248,1,1) = {" +sO +OB +OB +OB +OB +OB +OB +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(249,1,1) = {" +sO +OB +rI +BZ +BZ +BZ +rI +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(250,1,1) = {" +sO +OB +BZ +BZ +BZ +BZ +BZ +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(251,1,1) = {" +sO +OB +Eu +BZ +Ro +BZ +BZ +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(252,1,1) = {" +sO +OB +Ej +BZ +BZ +BZ +CD +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(253,1,1) = {" +sO +OB +sP +SN +pS +BZ +rI +OB +yA +yA +ml +wR +DV +An +DV +wR +yA +An +yA +wR +DV +An +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(254,1,1) = {" +sO +OB +OB +OB +OB +OB +OB +OB +yA +yA +ml +wR +DV +DV +DV +wR +yA +yA +yA +wR +DV +DV +DV +wR +ml +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +yA +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +jl +sO +"} +(255,1,1) = {" +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +sO +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge1_broken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge1_broken.dmm new file mode 100644 index 000000000000..e954ddb7a6c3 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge1_broken.dmm @@ -0,0 +1,84 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"f" = ( +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_connector, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"G" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +G +G +f +f +f +f +f +G +G +G +"} +(2,1,1) = {" +q +s +s +G +f +f +f +s +s +l +"} +(3,1,1) = {" +G +f +f +f +f +f +f +f +f +G +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge1_unbroken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge1_unbroken.dmm new file mode 100644 index 000000000000..33a3e7977651 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge1_unbroken.dmm @@ -0,0 +1,81 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"l" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"o" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"O" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_connector, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) + +(1,1,1) = {" +o +o +o +o +o +o +o +o +o +o +"} +(2,1,1) = {" +I +l +l +l +l +l +l +l +l +O +"} +(3,1,1) = {" +o +o +o +o +o +o +o +o +o +o +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge2_broken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge2_broken.dmm new file mode 100644 index 000000000000..c8a15e31bbb5 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge2_broken.dmm @@ -0,0 +1,75 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"h" = ( +/turf/template_noop, +/area/template_noop) +"o" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_connector, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"S" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +S +S +S +h +h +h +h +"} +(2,1,1) = {" +h +c +o +h +S +s +h +"} +(3,1,1) = {" +S +S +h +h +h +S +S +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge2_unbroken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge2_unbroken.dmm new file mode 100644 index 000000000000..204c3b8b470b --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge2_unbroken.dmm @@ -0,0 +1,75 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"e" = ( +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"B" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/modular_map_connector, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"N" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"P" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) + +(1,1,1) = {" +N +N +N +N +N +N +N +"} +(2,1,1) = {" +e +P +i +i +i +B +e +"} +(3,1,1) = {" +e +N +N +N +N +N +e +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge3_broken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge3_broken.dmm new file mode 100644 index 000000000000..2d2515063f09 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge3_broken.dmm @@ -0,0 +1,104 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"f" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/modular_map_connector, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"i" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"w" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/plating, +/area/template_noop) +"H" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/template_noop) +"L" = ( +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +L +h +L +"} +(2,1,1) = {" +L +I +H +"} +(3,1,1) = {" +L +I +H +"} +(4,1,1) = {" +H +w +H +"} +(5,1,1) = {" +L +i +L +"} +(6,1,1) = {" +L +L +L +"} +(7,1,1) = {" +L +f +L +"} +(8,1,1) = {" +H +I +H +"} +(9,1,1) = {" +L +a +H +"} +(10,1,1) = {" +L +L +H +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2bridge3_unbroken.dmm b/_maps/away/modular_maps/caves/caves_lvl2bridge3_unbroken.dmm new file mode 100644 index 000000000000..a1d099e92331 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2bridge3_unbroken.dmm @@ -0,0 +1,93 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"m" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/plating, +/area/template_noop) +"H" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"J" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"Q" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/modular_map_connector, +/obj/structure/railing, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) + +(1,1,1) = {" +a +Q +a +"} +(2,1,1) = {" +a +q +H +"} +(3,1,1) = {" +a +q +H +"} +(4,1,1) = {" +H +J +H +"} +(5,1,1) = {" +H +J +H +"} +(6,1,1) = {" +H +J +H +"} +(7,1,1) = {" +H +J +H +"} +(8,1,1) = {" +H +J +H +"} +(9,1,1) = {" +a +m +H +"} +(10,1,1) = {" +a +a +H +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter1_a.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter1_a.dmm new file mode 100644 index 000000000000..e7246b6abfa7 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter1_a.dmm @@ -0,0 +1,1048 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/burnt, +/turf/open/indestructible/boss, +/area/template_noop) +"ab" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"al" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"bc" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"bB" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"bO" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"cf" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"dA" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"ec" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"ei" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"eX" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"fi" = ( +/obj/structure/stone_tile/burnt, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/indestructible/boss, +/area/template_noop) +"fl" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"fQ" = ( +/obj/structure/stone_tile/block/burnt, +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"gl" = ( +/obj/structure/stone_tile/slab, +/obj/structure/mineral_door/iron, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hu" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"hA" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hS" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/burnt, +/turf/open/indestructible/boss, +/area/template_noop) +"ii" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck, +/turf/open/indestructible/boss, +/area/template_noop) +"im" = ( +/obj/structure/water_source/puddle{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"iZ" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jt" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jH" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"kD" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Stabs-The-Tentacle"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"lp" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mD" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"nu" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/iron, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"nC" = ( +/obj/structure/stone_tile/slab/burnt, +/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen, +/turf/open/indestructible/boss, +/area/template_noop) +"nN" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/obj/effect/decal/cleanable/blood/old, +/turf/open/indestructible/boss, +/area/template_noop) +"oL" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"oY" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Fears-The-Goliath" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pk" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/template_noop) +"pB" = ( +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pH" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pX" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/template_noop) +"qy" = ( +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"rj" = ( +/obj/item/flashlight/flare/torch, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ru" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"sh" = ( +/obj/structure/stone_tile/cracked, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"sw" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"sI" = ( +/turf/closed/wall/mineral/wood, +/area/template_noop) +"tx" = ( +/obj/item/hatchet/wooden, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ux" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"vr" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/storage/toolbox/syndicate, +/obj/item/malf_upgrade, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ww" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"wF" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"yc" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/tendril, +/turf/open/indestructible/boss, +/area/template_noop) +"zb" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"zT" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ah" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"An" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Eats-The-Hummies"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Aw" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/item/flashlight/lantern, +/turf/open/indestructible/boss, +/area/template_noop) +"AN" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Bu" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"BH" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"BN" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Cc" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CA" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/mineral_door/iron, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"DO" = ( +/obj/item/flashlight/flare/torch, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"DU" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Ek" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Et" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ew" = ( +/obj/structure/stone_tile/slab, +/obj/machinery/iv_drip, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"EY" = ( +/obj/structure/table/wood, +/obj/item/spear, +/obj/item/spear, +/obj/item/spear, +/obj/item/clothing/head/helmet/roman/legionnaire, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"FP" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Charrs-The-Meat"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Hg" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Iu" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"IN" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Jj" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Jz" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"JR" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"JZ" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/closet/crate/internals, +/obj/item/storage/firstaid/regular, +/obj/item/stack/sheet/cloth/ten, +/obj/item/tank/internals/oxygen/yellow, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KD" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/item/flashlight/lantern, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KE" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Mi" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Mj" = ( +/obj/structure/stone_tile/slab, +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Oc" = ( +/obj/structure/stone_tile/slab, +/obj/item/clothing/mask/gas/explorer, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"OE" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/belt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"PA" = ( +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/burnt, +/turf/open/indestructible/boss, +/area/template_noop) +"Qd" = ( +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/template_noop) +"Qq" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast/tendril, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"QC" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"QS" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"RS" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Eats-The-Hummies"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/item/spear/bonespear, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"RZ" = ( +/obj/structure/bonfire/dense, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"SU" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Ta" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"TO" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"US" = ( +/obj/item/spear/bonespear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"VG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/burnt, +/turf/open/indestructible/boss, +/area/template_noop) +"Wt" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/block/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"WE" = ( +/obj/structure/closet/crate/engineering, +/obj/item/construction/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/weldingtool/experimental, +/obj/item/flashlight/lantern, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"XE" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"XG" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Yu" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ZC" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +BN +BN +BN +BN +BN +BN +BN +BN +BN +BN +BN +BN +BN +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +BN +BN +BN +BN +BN +BN +BN +BN +BH +BN +dA +ux +ux +pH +ab +ab +ab +ab +"} +(3,1,1) = {" +BN +BN +BN +BN +BN +BN +BN +BN +ux +ux +ux +ux +ux +BN +ab +ab +ab +ab +"} +(4,1,1) = {" +ab +ab +BN +BN +BN +ux +ux +QS +ux +ux +ux +ux +ux +BN +sI +sI +sI +sI +"} +(5,1,1) = {" +ab +ab +ux +BN +BN +BN +ux +QC +ux +ux +ux +ux +BN +wF +Iu +OE +EY +sI +"} +(6,1,1) = {" +ab +ab +ux +ux +BN +BN +BN +BN +TO +Hg +BN +Qq +wF +RS +sI +AN +Ta +Iu +"} +(7,1,1) = {" +ab +ab +Iu +BN +BN +BN +BN +BN +BN +BN +BN +BN +BN +lp +gl +Jj +jt +Iu +"} +(8,1,1) = {" +ab +Ek +pH +BN +BN +Qq +wF +BN +ZC +Bu +oL +zT +Et +iZ +sI +Mj +cf +Iu +"} +(9,1,1) = {" +ab +pH +pH +iZ +BN +BN +FP +wF +mD +sw +RZ +Jz +Qq +iZ +sI +Iu +sI +sI +"} +(10,1,1) = {" +Iu +Iu +Iu +Iu +Qq +BN +rj +BN +JR +Bu +Yu +zT +sh +BN +BN +BN +jH +ab +"} +(11,1,1) = {" +Iu +Qd +ii +Iu +Iu +Iu +Iu +BN +BN +BN +kD +US +wF +wF +BN +BN +jH +ab +"} +(12,1,1) = {" +Iu +aa +fi +hu +PA +pX +Iu +Iu +Qq +BN +wF +Iu +Iu +CA +nu +Iu +Iu +ab +"} +(13,1,1) = {" +Iu +zb +ec +ww +SU +VG +Iu +Iu +BN +wF +BN +Iu +JZ +Oc +Jj +vr +sI +ab +"} +(14,1,1) = {" +Iu +bO +bB +ux +al +nN +yc +Qd +wF +BN +BN +Iu +Ew +Jj +KD +XE +Iu +ab +"} +(15,1,1) = {" +Iu +DU +qy +TO +Mi +hS +Iu +Iu +BN +BN +BN +sI +fl +Yu +IN +WE +sI +ab +"} +(16,1,1) = {" +Iu +aa +pk +Ah +Aw +aa +Iu +Iu +pH +BN +BN +sI +eX +XG +KE +BN +sI +ab +"} +(17,1,1) = {" +Iu +ei +nC +Iu +Iu +Iu +Iu +wF +BN +Qq +BN +sI +sI +Cc +oY +eX +sI +ab +"} +(18,1,1) = {" +Iu +Iu +Iu +Iu +ru +wF +Qq +BN +pB +bc +Et +BN +sI +eX +hA +BN +sI +ab +"} +(19,1,1) = {" +pH +BN +ab +ab +ru +An +tx +DO +Wt +im +fQ +Ek +Iu +Iu +sI +Iu +Iu +ab +"} +(20,1,1) = {" +pH +BN +ab +ab +ab +ru +ru +ru +ab +ab +ab +ab +ab +ab +ab +BN +ab +ab +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter1_b.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter1_b.dmm new file mode 100644 index 000000000000..44886c5e0edd --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter1_b.dmm @@ -0,0 +1,540 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"b" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"c" = ( +/mob/living/simple_animal/hostile/asteroid/lobstrosity/lava, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"f" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Grabs-The-Fishy"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"g" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"j" = ( +/obj/item/stack/ore/plasma{ + amount = 12 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"l" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"r" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"s" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/obj/item/storage/fish_case/syndicate, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"u" = ( +/obj/item/storage/bag/ore, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"y" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"A" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"D" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"F" = ( +/obj/item/storage/bag/ore, +/obj/item/stack/ore/silver{ + amount = 15 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"H" = ( +/obj/item/stack/ore/bluespace_crystal{ + amount = 7 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"I" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"S" = ( +/obj/item/stack/ore/diamond{ + amount = 7 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"T" = ( +/obj/item/food/fishmeat{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/food/fishmeat, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"U" = ( +/obj/item/spear/bonespear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"X" = ( +/obj/item/emptysandbag, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Y" = ( +/obj/effect/mob_spawn/human/corpse/miner/explorer{ + burn_damage = 1000 + }, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Z" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +A +A +A +A +A +A +A +A +A +A +A +A +A +b +b +b +b +b +"} +(2,1,1) = {" +A +A +A +A +u +A +A +X +A +A +A +b +b +b +b +b +b +b +"} +(3,1,1) = {" +A +A +a +a +A +A +b +b +A +A +b +b +b +b +b +b +b +b +"} +(4,1,1) = {" +b +b +b +b +b +b +b +b +X +A +B +D +A +s +O +O +b +b +"} +(5,1,1) = {" +b +b +b +b +b +b +Z +b +b +A +D +D +B +A +s +O +b +b +"} +(6,1,1) = {" +b +b +Z +Z +Z +Z +Z +b +b +b +b +b +A +A +A +b +b +b +"} +(7,1,1) = {" +b +b +Z +Z +Z +Z +A +A +z +z +z +A +A +A +b +b +b +b +"} +(8,1,1) = {" +b +Z +Z +Z +Z +Z +T +c +A +z +A +B +A +b +b +b +b +b +"} +(9,1,1) = {" +b +Z +Z +K +K +U +B +A +I +A +A +A +b +b +A +A +A +b +"} +(10,1,1) = {" +b +Z +Z +t +r +f +A +A +A +A +A +A +b +b +b +A +A +b +"} +(11,1,1) = {" +b +Z +Z +g +g +A +s +b +A +A +A +A +b +b +A +A +A +b +"} +(12,1,1) = {" +b +Z +Z +Z +A +A +b +b +s +A +A +b +b +A +A +A +b +b +"} +(13,1,1) = {" +b +Z +Z +Z +A +c +b +b +b +A +A +l +B +A +A +b +b +b +"} +(14,1,1) = {" +b +b +Z +Z +Z +A +b +b +A +A +A +A +A +b +b +b +b +b +"} +(15,1,1) = {" +b +b +b +Z +Z +z +b +b +A +l +B +A +A +A +b +b +b +b +"} +(16,1,1) = {" +b +b +b +b +Z +b +b +b +b +A +Y +B +l +A +b +b +b +b +"} +(17,1,1) = {" +b +b +b +b +b +b +b +b +b +b +j +F +A +s +b +b +b +b +"} +(18,1,1) = {" +A +A +b +b +b +b +b +b +b +y +H +S +s +s +b +b +b +b +"} +(19,1,1) = {" +s +A +b +b +b +b +b +b +b +y +y +A +b +b +b +A +b +b +"} +(20,1,1) = {" +s +A +b +b +b +b +b +b +b +b +b +b +b +b +b +A +b +b +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter1_c.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter1_c.dmm new file mode 100644 index 000000000000..14ba200c6050 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter1_c.dmm @@ -0,0 +1,563 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"b" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"c" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/mob/living/simple_animal/hostile/skeleton, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/obj/item/stack/sheet/bone, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"f" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/hauntium{ + amount = 30 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"i" = ( +/mob/living/simple_animal/hostile/mimic/crate{ + faction = list("mimic","skeleton") + }, +/obj/item/stack/sheet/bone{ + amount = 20 + }, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"j" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"k" = ( +/mob/living/simple_animal/hostile/skeleton, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"l" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"m" = ( +/mob/living/simple_animal/hostile/skeleton, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"n" = ( +/mob/living/simple_animal/hostile/mimic/crate{ + faction = list("mimic","skeleton") + }, +/obj/item/stack/sheet/runed_metal{ + amount = 30 + }, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"o" = ( +/mob/living/simple_animal/hostile/skeleton, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"r" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"u" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"v" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"w" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"C" = ( +/obj/structure/mineral_door/iron, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"D" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"F" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"L" = ( +/obj/structure/flora/ash/cap_shroom, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"M" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"N" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Q" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"T" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"V" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"W" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"X" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +q +q +q +q +q +q +q +q +q +q +q +q +q +b +b +b +b +b +"} +(2,1,1) = {" +q +q +q +q +q +q +q +q +b +b +b +b +b +b +b +b +b +b +"} +(3,1,1) = {" +q +b +b +b +l +l +b +b +b +b +b +b +b +b +M +b +b +b +"} +(4,1,1) = {" +b +b +b +b +b +b +b +b +b +q +q +q +V +C +V +V +b +b +"} +(5,1,1) = {" +b +b +b +b +b +b +T +q +q +q +r +z +T +M +c +n +b +b +"} +(6,1,1) = {" +b +b +z +z +b +w +w +q +q +q +z +M +b +b +b +M +b +b +"} +(7,1,1) = {" +b +M +W +z +M +V +V +h +q +q +M +M +b +b +b +b +b +b +"} +(8,1,1) = {" +b +L +T +V +C +V +t +q +q +q +t +t +M +D +V +m +b +b +"} +(9,1,1) = {" +b +X +X +q +M +t +t +q +a +t +t +V +M +V +V +h +f +b +"} +(10,1,1) = {" +b +b +b +b +M +b +K +j +u +t +V +V +C +o +e +b +b +b +"} +(11,1,1) = {" +b +b +M +b +b +b +M +F +r +q +q +M +b +b +b +b +b +b +"} +(12,1,1) = {" +b +i +e +b +q +q +q +q +z +z +q +q +q +q +q +q +b +b +"} +(13,1,1) = {" +M +k +V +C +V +h +q +q +z +r +q +q +b +O +O +b +b +b +"} +(14,1,1) = {" +b +b +b +M +M +q +T +q +q +q +q +b +b +b +b +b +b +b +"} +(15,1,1) = {" +b +b +O +N +N +q +q +t +t +q +q +q +b +b +b +q +b +b +"} +(16,1,1) = {" +b +O +O +q +Q +Q +q +t +q +q +q +b +b +b +q +O +b +b +"} +(17,1,1) = {" +b +q +r +q +q +v +t +t +q +q +t +t +q +q +q +q +b +b +"} +(18,1,1) = {" +q +q +b +q +q +M +b +t +t +t +t +q +q +q +b +b +b +b +"} +(19,1,1) = {" +z +q +q +q +b +b +b +b +q +b +b +b +b +b +b +q +b +b +"} +(20,1,1) = {" +z +q +b +b +b +b +b +b +b +b +b +b +b +b +b +q +b +b +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter2_a.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter2_a.dmm new file mode 100644 index 000000000000..7849960a0747 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter2_a.dmm @@ -0,0 +1,518 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/chair/sofa/bamboo/left, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"b" = ( +/obj/structure/rack, +/obj/item/grown/log/bamboo, +/obj/item/grown/log/bamboo, +/obj/item/seeds/bamboo, +/obj/item/food/meat/slab/goliath, +/obj/item/food/meat/slab/goliath, +/obj/item/food/meat/slab/goliath, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/obj/structure/punji_sticks, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"d" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"f" = ( +/obj/structure/chair/stool/bamboo, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"g" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/obj/structure/mineral_door/wood{ + name = "little timmy's room :)" + }, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"j" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"o" = ( +/obj/structure/chair/stool/bamboo, +/obj/item/food/meat/steak/goliath, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"p" = ( +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"r" = ( +/mob/living/simple_animal/hostile/asteroid/fugu{ + desc = "The little timmy rapidly becomes big timmy in order to ward off its prey. Great care should be taken to avoid it while it's in this state as it is nearly invincible, but it cannot maintain its form forever."; + name = "little timmy" + }, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"s" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"u" = ( +/obj/structure/bed/dogbed{ + name = "little timmy's bed" + }, +/obj/item/toy/plush/goatplushie, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"w" = ( +/turf/closed/wall, +/area/template_noop) +"x" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"y" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"D" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"E" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"G" = ( +/obj/structure/punji_sticks, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"I" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/item/food/meat/steak/goliath, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"M" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"N" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"O" = ( +/turf/closed/wall/rust, +/area/template_noop) +"Q" = ( +/obj/structure/flora/ash/leaf_shroom, +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"T" = ( +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Protects-The-Timmy" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"V" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Y" = ( +/obj/structure/chair/sofa/bamboo/right, +/turf/open/floor/bamboo{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) + +(1,1,1) = {" +I +I +e +e +e +e +e +I +I +I +I +I +"} +(2,1,1) = {" +I +e +e +e +e +e +e +I +I +I +I +I +"} +(3,1,1) = {" +e +O +w +w +O +e +e +e +e +I +I +I +"} +(4,1,1) = {" +e +O +r +u +w +I +e +e +e +I +I +I +"} +(5,1,1) = {" +e +w +h +w +O +y +e +e +e +e +e +I +"} +(6,1,1) = {" +e +w +p +p +y +y +I +e +e +e +e +e +"} +(7,1,1) = {" +e +e +Y +p +p +T +g +I +e +e +e +e +"} +(8,1,1) = {" +I +e +a +p +K +x +N +I +e +e +e +e +"} +(9,1,1) = {" +I +e +e +o +B +j +s +f +e +e +e +e +"} +(10,1,1) = {" +I +I +e +I +M +E +N +I +e +I +e +e +"} +(11,1,1) = {" +e +I +e +b +I +I +I +I +e +I +e +e +"} +(12,1,1) = {" +e +e +e +e +I +I +I +I +I +I +I +e +"} +(13,1,1) = {" +e +e +e +I +c +I +e +I +e +I +e +e +"} +(14,1,1) = {" +e +e +e +I +D +I +e +e +e +e +e +e +"} +(15,1,1) = {" +e +e +e +I +D +G +e +e +e +e +e +e +"} +(16,1,1) = {" +e +e +e +D +D +I +I +e +e +e +e +e +"} +(17,1,1) = {" +e +e +e +D +V +D +I +e +e +e +e +e +"} +(18,1,1) = {" +e +e +g +D +V +D +I +I +e +e +e +e +"} +(19,1,1) = {" +e +e +I +I +D +I +I +I +e +e +e +e +"} +(20,1,1) = {" +e +e +I +I +c +I +I +I +e +e +e +e +"} +(21,1,1) = {" +e +e +G +I +I +I +I +I +I +e +e +e +"} +(22,1,1) = {" +e +e +I +I +I +e +V +I +I +I +e +e +"} +(23,1,1) = {" +e +D +I +I +e +e +e +I +I +I +e +e +"} +(24,1,1) = {" +e +D +d +I +e +e +e +I +I +I +e +e +"} +(25,1,1) = {" +e +V +Q +I +e +e +e +e +e +e +e +e +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter2_b.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter2_b.dmm new file mode 100644 index 000000000000..c22e05443f1f --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter2_b.dmm @@ -0,0 +1,435 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"c" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/indestructible/necropolis, +/area/template_noop) +"e" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"j" = ( +/obj/structure/flora/rock/pile, +/turf/open/indestructible/necropolis, +/area/template_noop) +"k" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"t" = ( +/obj/structure/flora/ash/leaf_shroom, +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"u" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"v" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"D" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"E" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/template_noop) +"F" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"H" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 10 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"I" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/structure/stone_tile/slab, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"L" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"P" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"S" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"W" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +D +D +a +a +a +a +a +D +D +D +D +D +"} +(2,1,1) = {" +D +a +a +S +a +a +a +D +D +D +D +D +"} +(3,1,1) = {" +a +a +u +S +S +a +a +a +a +D +D +D +"} +(4,1,1) = {" +a +a +j +E +S +S +a +a +a +D +D +D +"} +(5,1,1) = {" +a +S +j +c +S +D +k +a +a +a +a +D +"} +(6,1,1) = {" +a +S +S +a +S +D +D +D +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +D +D +D +D +a +a +"} +(8,1,1) = {" +a +a +L +a +a +a +a +a +D +D +a +a +"} +(9,1,1) = {" +a +a +D +L +D +O +H +a +a +D +a +a +"} +(10,1,1) = {" +a +a +D +I +q +K +e +W +D +D +a +a +"} +(11,1,1) = {" +a +a +D +a +a +a +a +a +D +D +a +a +"} +(12,1,1) = {" +a +a +D +D +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +F +D +D +k +k +a +a +a +a +a +"} +(14,1,1) = {" +a +a +D +F +D +D +D +D +a +a +a +a +"} +(15,1,1) = {" +a +D +D +a +k +v +v +D +a +a +a +a +"} +(16,1,1) = {" +a +I +D +a +a +P +k +D +D +a +a +a +"} +(17,1,1) = {" +a +I +a +a +a +a +a +a +D +a +a +a +"} +(18,1,1) = {" +a +I +a +a +a +a +a +a +D +a +a +a +"} +(19,1,1) = {" +a +I +a +a +a +a +a +a +D +a +a +a +"} +(20,1,1) = {" +a +I +P +a +a +P +k +D +D +a +a +a +"} +(21,1,1) = {" +a +D +D +a +a +k +F +D +D +a +a +a +"} +(22,1,1) = {" +a +a +D +D +D +D +D +D +k +a +a +a +"} +(23,1,1) = {" +a +k +D +D +D +a +a +a +a +a +a +a +"} +(24,1,1) = {" +a +k +L +D +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +P +t +D +a +a +a +a +a +a +a +a +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter2_c.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter2_c.dmm new file mode 100644 index 000000000000..0108d41cd408 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter2_c.dmm @@ -0,0 +1,477 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"d" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"f" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 10 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"g" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"h" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"i" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"k" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"r" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/obj/structure/stone_tile/slab, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"A" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = null; + id_target = "riftenter"; + name = "rift entrance" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"F" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"H" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"I" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"L" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"M" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/surrounding_tile, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"P" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Q" = ( +/obj/structure/flora/ash/leaf_shroom, +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"R" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"W" = ( +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 6 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Y" = ( +/obj/structure/stone_tile/block/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +r +r +a +a +a +a +a +r +r +r +r +r +"} +(2,1,1) = {" +r +a +a +a +a +a +a +a +r +r +r +r +"} +(3,1,1) = {" +a +a +a +a +r +i +a +a +a +r +r +r +"} +(4,1,1) = {" +a +a +a +R +r +r +i +a +a +a +r +r +"} +(5,1,1) = {" +a +a +a +I +r +r +R +a +a +a +a +r +"} +(6,1,1) = {" +a +a +I +M +B +r +r +h +a +a +a +a +"} +(7,1,1) = {" +a +a +I +r +R +r +M +h +r +a +a +a +"} +(8,1,1) = {" +r +a +k +r +r +r +h +h +r +r +a +a +"} +(9,1,1) = {" +r +a +a +r +r +r +f +h +h +a +a +a +"} +(10,1,1) = {" +r +r +a +a +a +z +Y +h +h +r +a +a +"} +(11,1,1) = {" +a +r +a +a +g +z +L +h +r +r +a +a +"} +(12,1,1) = {" +a +a +a +a +h +A +h +h +h +a +a +a +"} +(13,1,1) = {" +a +a +a +a +h +q +h +h +h +h +h +a +"} +(14,1,1) = {" +a +a +h +h +h +W +h +h +h +h +h +h +"} +(15,1,1) = {" +a +h +h +h +h +O +h +h +h +h +a +a +"} +(16,1,1) = {" +a +a +a +r +F +P +h +h +h +a +a +a +"} +(17,1,1) = {" +a +a +a +r +r +H +h +r +a +a +a +a +"} +(18,1,1) = {" +a +a +a +r +r +e +h +r +I +I +a +a +"} +(19,1,1) = {" +a +a +r +r +h +h +r +r +r +M +a +a +"} +(20,1,1) = {" +a +a +r +h +h +h +h +h +h +r +d +a +"} +(21,1,1) = {" +a +a +r +r +h +h +h +r +r +r +d +d +"} +(22,1,1) = {" +a +a +r +r +r +a +a +r +r +r +r +d +"} +(23,1,1) = {" +a +I +r +a +a +a +a +k +M +r +r +r +"} +(24,1,1) = {" +a +I +r +r +a +a +a +r +I +M +r +r +"} +(25,1,1) = {" +a +M +Q +r +a +a +a +a +a +a +a +a +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter3_a.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter3_a.dmm new file mode 100644 index 000000000000..813fca379cac --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter3_a.dmm @@ -0,0 +1,505 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"b" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/asteroid/goliath/beast/tendril, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"f" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"i" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"j" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"l" = ( +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"o" = ( +/turf/closed/wall, +/area/template_noop) +"q" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast/tendril, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"w" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"x" = ( +/obj/effect/decal/remains/xeno/larva, +/obj/item/toy/toy_xeno, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"y" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/obj/modular_map_connector, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"F" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"J" = ( +/obj/effect/gibspawner/xeno/bodypartless, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/item/emptysandbag, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"L" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"M" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/bed/nest, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"P" = ( +/obj/effect/decal/remains/human, +/obj/effect/gibspawner/human/bodypartless, +/obj/structure/alien/weeds, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"R" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"S" = ( +/obj/item/xenos_claw, +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"T" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +K +z +a +a +J +O +L +b +a +a +a +a +a +a +"} +(2,1,1) = {" +c +c +o +a +x +P +S +F +L +l +a +a +a +a +"} +(3,1,1) = {" +e +e +a +a +R +L +L +l +L +e +a +a +a +a +"} +(4,1,1) = {" +e +e +a +a +a +a +a +a +q +T +e +a +a +a +"} +(5,1,1) = {" +e +e +e +q +e +y +a +a +a +e +e +a +a +a +"} +(6,1,1) = {" +e +e +e +e +e +e +e +a +T +e +e +a +a +a +"} +(7,1,1) = {" +e +e +e +e +e +e +e +e +e +j +e +e +a +a +"} +(8,1,1) = {" +j +y +t +w +e +e +e +j +j +j +e +T +a +a +"} +(9,1,1) = {" +j +t +t +w +e +e +j +j +j +e +e +a +a +a +"} +(10,1,1) = {" +j +e +w +e +e +j +j +j +e +e +a +a +a +a +"} +(11,1,1) = {" +j +j +e +q +e +j +j +e +e +q +e +a +a +a +"} +(12,1,1) = {" +j +j +j +j +j +j +j +e +e +e +a +a +a +a +"} +(13,1,1) = {" +j +j +j +e +j +j +e +e +e +e +a +a +a +a +"} +(14,1,1) = {" +j +j +j +e +e +e +e +e +e +e +a +a +a +a +"} +(15,1,1) = {" +j +j +e +e +j +j +j +w +e +e +e +a +a +a +"} +(16,1,1) = {" +j +j +j +j +j +j +j +j +j +e +e +a +a +a +"} +(17,1,1) = {" +j +j +j +j +j +j +j +j +j +e +e +f +a +a +"} +(18,1,1) = {" +j +j +j +j +j +j +j +j +j +e +e +i +a +a +"} +(19,1,1) = {" +e +j +j +j +j +j +j +j +j +e +e +e +a +a +"} +(20,1,1) = {" +e +e +j +j +j +j +j +j +j +j +e +e +w +a +"} +(21,1,1) = {" +j +e +e +j +j +j +j +j +j +j +e +c +c +o +"} +(22,1,1) = {" +j +j +j +j +j +j +j +j +j +j +j +e +e +K +"} +(23,1,1) = {" +e +j +j +j +j +j +j +j +j +j +j +M +K +e +"} +(24,1,1) = {" +e +j +j +j +j +j +j +j +j +j +j +e +e +e +"} +(25,1,1) = {" +e +e +j +j +j +j +j +j +j +j +j +e +e +e +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter3_b.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter3_b.dmm new file mode 100644 index 000000000000..8aa0dec49d64 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter3_b.dmm @@ -0,0 +1,613 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"b" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Throws-The-Spear" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/obj/structure/water_source/puddle{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"f" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 10 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"g" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Eats-The-Shrooms" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"i" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 10 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"j" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/burnt, +/turf/open/chasm/lavaland, +/area/template_noop) +"k" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"l" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"n" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"p" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"s" = ( +/obj/structure/rack, +/obj/item/food/meat/slab/goliath, +/obj/item/food/meat/slab/goliath, +/obj/item/food/meat/slab/goliath, +/obj/item/spear/bonespear, +/obj/item/spear/bonespear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"u" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Cooks-The-Meat" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"v" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"w" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"x" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"z" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Polishes-The-Spear" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"A" = ( +/obj/structure/stone_tile/slab, +/turf/open/chasm/lavaland, +/area/template_noop) +"C" = ( +/obj/structure/closet/crate, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/lazarus_injector, +/obj/item/kinetic_crusher, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"D" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"E" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"F" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"G" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"H" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"I" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"J" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Loves-The-Hunt" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"L" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"S" = ( +/obj/structure/closet/crate/internals, +/obj/item/clothing/head/helmet/roman/legionnaire, +/obj/item/clothing/head/helmet/rus_helmet, +/obj/item/clothing/head/helmet/rus_ushanka, +/obj/item/clothing/head/helmet/rus_helmet, +/obj/item/clothing/suit/armor/vest/russian_coat, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"T" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"U" = ( +/obj/structure/stone_tile/block/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"V" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"W" = ( +/obj/structure/punji_sticks, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Y" = ( +/turf/closed/wall, +/area/template_noop) +"Z" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +I +h +a +a +I +I +I +v +I +I +I +a +a +a +"} +(2,1,1) = {" +I +I +a +a +c +I +z +T +U +I +C +a +a +a +"} +(3,1,1) = {" +I +W +W +a +s +I +I +p +I +S +a +a +a +a +"} +(4,1,1) = {" +W +E +E +a +a +I +I +I +I +a +a +a +x +a +"} +(5,1,1) = {" +I +G +F +F +F +Z +u +I +a +a +a +x +x +a +"} +(6,1,1) = {" +a +I +I +q +F +F +q +I +I +f +x +x +a +a +"} +(7,1,1) = {" +a +a +I +I +q +I +I +I +j +V +t +I +a +a +"} +(8,1,1) = {" +x +a +I +b +I +I +x +L +A +n +I +I +a +a +"} +(9,1,1) = {" +x +I +I +I +I +i +x +x +k +I +F +a +I +a +"} +(10,1,1) = {" +x +q +I +I +I +I +H +x +J +F +a +a +I +a +"} +(11,1,1) = {" +x +w +F +Z +I +I +I +D +q +F +Z +a +I +I +"} +(12,1,1) = {" +x +x +F +F +I +g +I +I +I +q +a +a +I +I +"} +(13,1,1) = {" +x +x +x +l +I +I +I +I +I +I +I +I +I +I +"} +(14,1,1) = {" +x +x +x +I +I +I +I +I +I +I +I +I +I +a +"} +(15,1,1) = {" +x +x +q +q +x +x +a +F +I +I +I +a +a +a +"} +(16,1,1) = {" +x +x +x +x +x +x +a +a +a +E +E +a +a +a +"} +(17,1,1) = {" +x +x +x +x +x +x +x +a +a +W +W +W +a +a +"} +(18,1,1) = {" +x +x +x +x +x +x +x +x +a +I +I +I +a +a +"} +(19,1,1) = {" +I +x +x +x +x +x +x +x +x +I +I +I +a +a +"} +(20,1,1) = {" +I +I +x +x +x +x +x +x +x +x +I +I +F +a +"} +(21,1,1) = {" +x +I +I +x +x +x +x +x +x +x +I +I +I +Y +"} +(22,1,1) = {" +x +x +x +x +x +x +x +x +x +x +x +I +I +I +"} +(23,1,1) = {" +I +x +x +x +x +x +x +x +x +x +x +I +I +I +"} +(24,1,1) = {" +I +x +x +x +x +x +x +x +x +x +x +I +I +I +"} +(25,1,1) = {" +I +I +x +x +x +x +x +x +x +x +x +I +I +I +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter3_c.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter3_c.dmm new file mode 100644 index 000000000000..e7895ff1c75d --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter3_c.dmm @@ -0,0 +1,466 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"b" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"i" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"k" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"s" = ( +/mob/living/simple_animal/hostile/asteroid/elite/broodmother, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"w" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"G" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"K" = ( +/obj/effect/mob_spawn/human/corpse/damaged{ + mob_name = "Probably-Dies-First"; + mob_species = /datum/species/lizard/ashwalker; + outfit = /datum/outfit/ashwalker + }, +/obj/item/spear/bonespear, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"M" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Z" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +G +z +a +a +a +a +k +k +k +a +a +a +a +a +"} +(2,1,1) = {" +k +k +a +a +k +k +k +k +k +k +a +a +a +a +"} +(3,1,1) = {" +G +k +G +a +k +a +a +w +Z +k +k +a +a +a +"} +(4,1,1) = {" +a +k +b +k +k +k +a +a +a +k +k +k +k +a +"} +(5,1,1) = {" +a +a +k +k +k +k +a +a +a +k +k +a +k +a +"} +(6,1,1) = {" +a +a +k +k +b +k +h +a +k +k +a +a +k +a +"} +(7,1,1) = {" +a +a +a +k +k +i +k +k +k +b +a +a +k +M +"} +(8,1,1) = {" +t +a +a +w +k +k +w +t +t +k +w +a +k +k +"} +(9,1,1) = {" +t +a +a +Z +w +b +t +t +t +k +w +a +k +M +"} +(10,1,1) = {" +t +a +a +a +a +k +K +t +w +k +a +a +M +M +"} +(11,1,1) = {" +t +a +a +a +c +c +k +k +s +k +k +a +k +k +"} +(12,1,1) = {" +t +k +k +k +k +k +k +b +k +k +a +a +M +k +"} +(13,1,1) = {" +t +t +k +k +a +a +a +k +k +q +a +a +k +a +"} +(14,1,1) = {" +t +t +k +t +a +a +a +k +k +k +a +a +k +a +"} +(15,1,1) = {" +t +t +t +t +t +a +a +a +k +b +k +a +k +a +"} +(16,1,1) = {" +t +t +t +t +t +t +t +a +a +a +k +a +a +a +"} +(17,1,1) = {" +t +t +t +t +t +t +t +a +a +a +k +k +a +a +"} +(18,1,1) = {" +t +t +t +t +t +t +t +t +a +k +k +k +a +a +"} +(19,1,1) = {" +k +t +t +t +t +t +t +t +t +k +k +k +a +a +"} +(20,1,1) = {" +k +k +t +t +t +t +t +t +t +t +k +k +k +a +"} +(21,1,1) = {" +t +k +k +t +t +t +t +t +t +t +k +k +k +a +"} +(22,1,1) = {" +t +t +t +t +t +t +t +t +t +t +t +k +k +k +"} +(23,1,1) = {" +k +t +t +t +t +t +t +t +t +t +t +k +k +k +"} +(24,1,1) = {" +k +t +t +t +t +t +t +t +t +t +t +k +k +k +"} +(25,1,1) = {" +k +k +t +t +t +t +t +t +t +t +t +k +k +k +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter4_a.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter4_a.dmm new file mode 100644 index 000000000000..eb7573d78160 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter4_a.dmm @@ -0,0 +1,433 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"g" = ( +/obj/item/stack/ore/plasma, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"k" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"m" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"r" = ( +/obj/item/stack/ore/diamond, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"s" = ( +/obj/structure/flora/ash/cap_shroom, +/obj/structure/reagent_dispensers/beerkeg{ + desc = "Brewed in a locally owned spacerig, orbiting around the barren planet of Hoxxes."; + name = "Oily Oaf Keg"; + reagent_id = /datum/reagent/consumable/ethanol/manly_dorf + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"x" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"y" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"z" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"H" = ( +/obj/item/stack/ore/silver, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"M" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Loots-The-Precious-Minerals" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"N" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"S" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"W" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Z" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +z +z +z +z +z +z +z +h +k +x +k +"} +(2,1,1) = {" +z +z +z +z +z +z +z +k +k +x +k +"} +(3,1,1) = {" +z +z +z +z +z +z +k +m +m +x +x +"} +(4,1,1) = {" +z +z +z +z +z +z +k +k +x +x +x +"} +(5,1,1) = {" +z +z +z +z +z +z +k +y +y +y +x +"} +(6,1,1) = {" +z +z +z +z +z +z +k +y +S +y +x +"} +(7,1,1) = {" +z +z +z +z +z +z +a +k +y +y +x +"} +(8,1,1) = {" +z +z +z +z +z +z +H +r +s +y +x +"} +(9,1,1) = {" +z +z +z +z +z +N +r +H +k +y +W +"} +(10,1,1) = {" +z +z +k +y +N +N +k +Z +k +W +W +"} +(11,1,1) = {" +z +z +z +z +N +g +H +r +W +W +W +"} +(12,1,1) = {" +z +z +z +z +z +r +g +g +W +W +W +"} +(13,1,1) = {" +z +z +z +z +z +z +k +W +W +W +W +"} +(14,1,1) = {" +z +z +z +z +z +z +M +k +W +W +W +"} +(15,1,1) = {" +z +z +z +z +z +k +r +y +k +W +W +"} +(16,1,1) = {" +z +z +z +z +z +H +y +y +S +W +W +"} +(17,1,1) = {" +z +z +z +z +Z +g +r +Z +k +W +W +"} +(18,1,1) = {" +z +z +z +z +H +k +k +H +W +W +W +"} +(19,1,1) = {" +z +z +z +z +k +r +g +W +W +W +W +"} +(20,1,1) = {" +z +z +z +z +k +y +k +W +W +W +W +"} +(21,1,1) = {" +z +z +k +k +k +H +r +N +W +W +W +"} +(22,1,1) = {" +z +z +S +k +r +k +Z +x +W +W +W +"} +(23,1,1) = {" +z +z +y +k +k +k +k +x +W +W +W +"} +(24,1,1) = {" +z +z +z +k +k +k +k +x +W +W +W +"} +(25,1,1) = {" +z +z +z +k +k +k +k +x +W +W +W +"} +(26,1,1) = {" +z +z +z +m +m +y +x +x +W +W +W +"} +(27,1,1) = {" +z +z +z +m +k +y +x +x +x +x +W +"} +(28,1,1) = {" +k +k +k +k +k +x +x +x +x +x +W +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter4_b.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter4_b.dmm new file mode 100644 index 000000000000..ddbdf2f698be --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter4_b.dmm @@ -0,0 +1,473 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"b" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"i" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"k" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"r" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Has-The-High-Ground"; + speak = list("Isss over, defiler! I hasss the high ground!"); + speak_chance = 15 + }, +/turf/open/floor/plating, +/area/template_noop) +"x" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"y" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"A" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"F" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Defends-The-Bridge" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"G" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"I" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"L" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"N" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Stands-Their-Ground" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"P" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"R" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +P +P +P +P +P +P +P +c +L +A +L +"} +(2,1,1) = {" +P +P +P +P +P +P +P +L +R +A +L +"} +(3,1,1) = {" +P +P +P +P +P +P +L +L +x +A +A +"} +(4,1,1) = {" +P +P +P +P +P +P +I +L +A +A +A +"} +(5,1,1) = {" +P +P +P +P +P +P +I +I +A +A +A +"} +(6,1,1) = {" +P +P +P +P +P +P +L +A +A +A +A +"} +(7,1,1) = {" +P +P +P +P +P +P +L +A +A +A +A +"} +(8,1,1) = {" +P +P +P +P +P +P +L +A +A +A +A +"} +(9,1,1) = {" +P +P +P +P +P +L +y +i +A +A +A +"} +(10,1,1) = {" +P +P +b +R +L +L +F +i +i +A +A +"} +(11,1,1) = {" +b +b +y +L +e +L +L +L +i +L +G +"} +(12,1,1) = {" +P +P +P +P +r +P +P +A +A +G +G +"} +(13,1,1) = {" +P +P +P +P +r +P +P +P +A +G +G +"} +(14,1,1) = {" +P +P +P +P +r +P +P +P +A +G +G +"} +(15,1,1) = {" +P +P +P +P +r +P +P +P +A +G +G +"} +(16,1,1) = {" +P +P +P +P +s +P +P +P +A +G +G +"} +(17,1,1) = {" +P +P +P +P +r +P +P +P +A +G +G +"} +(18,1,1) = {" +P +P +P +P +r +P +P +A +A +G +G +"} +(19,1,1) = {" +P +P +P +P +r +P +P +A +G +G +G +"} +(20,1,1) = {" +P +P +P +P +r +P +P +A +G +G +G +"} +(21,1,1) = {" +P +P +L +L +k +L +L +L +G +G +G +"} +(22,1,1) = {" +P +P +N +L +L +y +G +G +G +G +G +"} +(23,1,1) = {" +P +P +L +y +L +A +A +A +G +G +G +"} +(24,1,1) = {" +P +P +P +R +L +A +A +A +G +G +G +"} +(25,1,1) = {" +P +P +P +x +a +A +A +A +G +G +G +"} +(26,1,1) = {" +P +P +P +a +a +A +A +A +G +G +G +"} +(27,1,1) = {" +P +P +P +I +I +A +A +A +A +A +G +"} +(28,1,1) = {" +x +R +L +I +L +A +A +A +A +A +G +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2encounter4_c.dmm b/_maps/away/modular_maps/caves/caves_lvl2encounter4_c.dmm new file mode 100644 index 000000000000..8a31fe484e26 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2encounter4_c.dmm @@ -0,0 +1,394 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"d" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"e" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"h" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"j" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"E" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"T" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Z" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +h +h +h +h +h +h +h +e +d +E +d +"} +(2,1,1) = {" +h +h +h +h +h +h +h +d +d +E +d +"} +(3,1,1) = {" +h +h +h +h +h +h +d +d +d +E +E +"} +(4,1,1) = {" +h +h +h +h +h +d +Z +Z +E +E +E +"} +(5,1,1) = {" +h +h +h +h +h +h +j +Z +E +E +E +"} +(6,1,1) = {" +h +h +h +h +h +h +d +E +E +E +E +"} +(7,1,1) = {" +h +h +h +h +h +h +B +E +E +E +E +"} +(8,1,1) = {" +h +h +h +h +h +h +h +E +E +E +E +"} +(9,1,1) = {" +h +h +h +h +h +h +B +E +E +E +E +"} +(10,1,1) = {" +h +h +h +h +h +h +h +h +E +E +E +"} +(11,1,1) = {" +h +h +h +h +h +h +h +h +E +E +T +"} +(12,1,1) = {" +h +h +h +h +h +h +d +d +E +E +T +"} +(13,1,1) = {" +h +h +h +h +h +h +Z +B +E +E +T +"} +(14,1,1) = {" +h +h +h +h +h +h +h +E +E +E +T +"} +(15,1,1) = {" +h +h +h +h +h +h +h +E +E +T +T +"} +(16,1,1) = {" +h +h +h +h +h +d +d +E +E +T +T +"} +(17,1,1) = {" +h +h +h +h +h +h +E +E +E +T +T +"} +(18,1,1) = {" +h +h +h +h +B +d +d +E +T +T +T +"} +(19,1,1) = {" +h +h +h +h +h +h +d +E +T +T +T +"} +(20,1,1) = {" +h +h +h +h +h +h +E +E +T +T +T +"} +(21,1,1) = {" +h +h +h +h +h +d +E +E +T +T +T +"} +(22,1,1) = {" +h +h +h +h +h +d +E +E +T +T +T +"} +(23,1,1) = {" +h +h +h +h +h +E +E +E +T +T +T +"} +(24,1,1) = {" +h +h +h +h +d +E +E +E +T +T +T +"} +(25,1,1) = {" +h +h +h +d +d +E +E +E +T +T +T +"} +(26,1,1) = {" +h +h +h +Z +j +E +E +E +T +T +T +"} +(27,1,1) = {" +h +h +h +Z +Z +E +E +E +E +E +T +"} +(28,1,1) = {" +d +d +d +d +d +E +E +E +E +E +T +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2researchpost_a.dmm b/_maps/away/modular_maps/caves/caves_lvl2researchpost_a.dmm new file mode 100644 index 000000000000..8f9581df1179 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2researchpost_a.dmm @@ -0,0 +1,3718 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"af" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"aj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabinRD"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"az" = ( +/obj/structure/curtain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"aO" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"aP" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"aR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"aS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple{ + burnt = 1; + icon_state = "damaged"; + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"be" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"bm" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"bP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"cm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"cp" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/item/card/id/away/caves/site_director, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"cD" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/table, +/obj/item/papercutter, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"cM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"cV" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"cZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"dc" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/door/firedoor/closed, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"de" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"di" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/closed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"dr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"dN" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"dY" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"em" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ew" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ey" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ez" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"eP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"eR" = ( +/obj/machinery/door/airlock{ + name = "Freezer" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"fe" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ff" = ( +/obj/machinery/computer/terminal/caves/research, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fv" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"fA" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fO" = ( +/turf/closed/indestructible/riveted, +/area/template_noop) +"fP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"fT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"gb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"gw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"gN" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gU" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"gW" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ha" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hd" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"hh" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Site Director's Office"; + network = list("cavesscipost") + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"hD" = ( +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"hF" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"hO" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ib" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ie" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/pda_ad{ + pixel_x = -32 + }, +/obj/item/card/id/away/caves/sec, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"io" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"it" = ( +/obj/structure/cable, +/obj/machinery/power/rtg/lavaland, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"iy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"iz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hatch{ + name = "Research Wing" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"iH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"iI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"iN" = ( +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"iP" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"iR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"je" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/north, +/obj/structure/table, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"jf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"js" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"jD" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"jJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/turretid{ + control_area = /area/awaymission/caves/second_outpost/researchcenter; + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/paper_bin, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"jN" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ka" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ko" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"kZ" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"lc" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"lh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"lp" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"lD" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"lM" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"lP" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"lS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"lY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"md" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"mh" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"mi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/item/pai_card, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"mx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin1"; + name = "Cabin 1" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mz" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"mQ" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"mW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/poster/official/science{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mX" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mY" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"nR" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/light/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"nX" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/trash/cheesie, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"oa" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"og" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "cavesrdshutter"; + name = "Lockdown Toggle"; + pixel_x = -24; + pixel_y = -4; + req_access_txt = "200" + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"om" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"or" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"os" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ou" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1; + pixel_y = -16 + }, +/obj/item/soap, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"oK" = ( +/obj/machinery/computer/terminal/caves/research3{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"pt" = ( +/turf/template_noop, +/area/template_noop) +"py" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"pJ" = ( +/obj/structure/sign/departments/science/alt/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"pS" = ( +/obj/machinery/gibber, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"pV" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"qc" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 4; + name = "old sink"; + pixel_x = -12 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"qg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter) +"qr" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostCabin2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"qD" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"qQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ro" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"rp" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ru" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"rw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"rD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin2"; + name = "Cabin 2" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"rJ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/oven, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"sa" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/work) +"sj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"sq" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"sy" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/seismic_log, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"sE" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"sM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Site Director's Office" + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/turf/open/floor/plasteel/white, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"sV" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_x = 32 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"sY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "201" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"td" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"te" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin3"; + name = "Cabin 3" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"tf" = ( +/obj/machinery/light/dim/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"th" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ti" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Research Wing South"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"tq" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"tu" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/obj/item/folder/blue, +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/item/pen/fourcolor, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"tw" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"tA" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"tM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"tO" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/item/folder/blue, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"tQ" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ui" = ( +/obj/structure/table, +/obj/item/paper_bin, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"up" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"uw" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"uI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter) +"uN" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"uW" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"uX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vi" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"vC" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet, +/obj/item/toy/plush/beeplushie, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"vE" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "South External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"wa" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Dorm Area"; + network = list("cavesscipost") + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"wk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"wt" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"wK" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"wQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"wT" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"wV" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"wZ" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "North External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"xc" = ( +/obj/structure/curtain, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"xe" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"xm" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"xn" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"xq" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Office Space West"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"xw" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"xC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"xD" = ( +/obj/item/kitchen/rollingpin, +/obj/structure/table/reinforced, +/obj/item/sharpener, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"xO" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"xT" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"xX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/light/directional/south, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ym" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"yr" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter) +"ys" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/purple, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"yx" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"yF" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"yJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"yM" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"yU" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/researchcenter) +"yW" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"zd" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"zk" = ( +/obj/machinery/computer/terminal/caves/research5{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"zB" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"zF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"zJ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Af" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Am" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Bo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "201" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"BC" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"BJ" = ( +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"BP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"BQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Cc" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ci" = ( +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Cp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/directional/east{ + c_tag = "Research Wing Middle-South"; + network = list("cavesscipost") + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Cs" = ( +/obj/machinery/computer/security{ + network = list("cavesscipost") + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"CG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"CI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"CL" = ( +/obj/effect/turf_decal/tile/purple/half, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"De" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Di" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"Dn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/porta_turret/syndicate/pod{ + max_integrity = 120 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"DG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin4"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/item/card/id/away/caves/sci, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"DJ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"DT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ea" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ej" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/directional/east{ + c_tag = "Research Wing Middle-North"; + network = list("cavesscipost") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ek" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/bedsheet/rd{ + dir = 4; + name = "site director's bedsheet" + }, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"EI" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/periodic_table{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Fh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Fn" = ( +/obj/machinery/computer/terminal/caves/research4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Fw" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/work) +"FT" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Gy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"GG" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Hd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/science/alt/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Hq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Hr" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/table, +/obj/item/assembly/signaler/anomaly/bluespace, +/obj/item/screwdriver, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Hs" = ( +/obj/structure/table, +/obj/item/kitchen/knife/butcher, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Hv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Hx" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"HM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"HN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"HO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/machinery/camera/directional/north{ + c_tag = "Kitchen Prep Area"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"HY" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ic" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"It" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"IA" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter) +"IM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Jc" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Jk" = ( +/obj/structure/toilet, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Jq" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ju" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Jz" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/directional/south{ + c_tag = "Research Wing North"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"JK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"JQ" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"JS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"Kc" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Kf" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"KI" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"KX" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Le" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ln" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ls" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Lw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"LK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"LL" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"LO" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"LQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Mg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Mv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Mz" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"MA" = ( +/obj/structure/chair/stool/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"MM" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/purple, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"NB" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"NE" = ( +/obj/structure/cable, +/obj/machinery/camera/directional/north{ + c_tag = "Life Support"; + network = list("cavesscipost") + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"NR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/mirror/directional/west, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"NT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostCabin1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Oo" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Pr" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"Pv" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/structure/barricade/sandbags, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"PI" = ( +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"PM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"PR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"PT" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Qc" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Qf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Qy" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"QA" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"QT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Rx" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ry" = ( +/obj/effect/turf_decal/tile/purple/half{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"RE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/ash, +/obj/item/clothing/suit/armor/reactive/fire, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"RG" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"RP" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"RS" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"RX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"RZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Sh" = ( +/obj/item/aicard, +/obj/item/melee/classic_baton/telescopic, +/obj/item/clothing/under/rank/rnd/research_director, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/closet/secure_closet{ + icon_state = "rd"; + name = "site director's locker"; + req_access_txt = "away_science" + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Si" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Sj" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1; + pixel_y = -16 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"SH" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"SQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"SX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"Tb" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Tj" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"TE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"TK" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"TM" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Freezer"; + network = list("cavesscipost") + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"TP" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/tile/purple/half{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"TV" = ( +/obj/machinery/computer/terminal/caves/research2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"TZ" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Uc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spawner/lavaland/legion, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ut" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "away_sec" + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/melee/baton/loaded, +/obj/item/clothing/head/helmet, +/obj/item/flashlight/seclite, +/obj/item/clothing/suit/armor/vest/alt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Uy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"UG" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"UN" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/stool/bar/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Vh" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Vs" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"VF" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"VN" = ( +/obj/structure/sign/poster/official/state_laws{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"VS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Personal Space Invader" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Wa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/kitchen/fork/plastic, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Wd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"We" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Wn" = ( +/obj/machinery/camera/directional/south{ + c_tag = "Office Space East"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Wx" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WD" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"WP" = ( +/obj/structure/door_assembly, +/obj/item/shard, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/carpet/purple{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"WS" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/floralguide, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"WW" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Xv" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Xw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"XB" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/obj/item/folder/yellow, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"XG" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"XJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"YD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin4"; + name = "Cabin 4" + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"YW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"YZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Zh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ZI" = ( +/obj/effect/turf_decal/tile/purple/half, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ZJ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Mess Hall"; + network = list("cavesscipost") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ZP" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner/west, +/obj/item/card/id/away/caves/sci, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ZS" = ( +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ZY" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ZZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) + +(1,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fO +"} +(2,1,1) = {" +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +aa +aa +aa +aa +aa +TK +TK +TK +TK +TK +TK +fO +"} +(3,1,1) = {" +pt +pt +fO +sa +sa +sa +sa +sa +aa +aa +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +aa +aa +TK +TK +TK +TK +SH +SH +TK +TK +TK +fO +"} +(4,1,1) = {" +pt +pt +fO +sa +sy +ie +KI +sa +aa +aa +fO +pt +pt +pt +pt +pt +dN +pt +pt +pt +pt +pt +pt +fO +aa +PM +JK +TK +TK +SH +SH +SH +SH +SH +TK +fO +"} +(5,1,1) = {" +pt +pt +fO +sa +ff +Qc +KI +sa +aa +aa +aa +yU +lS +cM +yU +Am +or +xe +ym +yU +cM +dr +yU +aa +aa +eP +xC +cZ +Ih +SH +SH +SH +aa +TK +TK +fO +"} +(6,1,1) = {" +fO +fO +fO +sa +ew +lP +xq +sa +aa +aa +aa +yU +pJ +xb +yU +Cs +WW +xe +xX +yU +vK +Hd +yU +aa +yr +uI +ru +ru +ru +ru +ru +ru +ru +ru +aa +fO +"} +(7,1,1) = {" +fO +sa +sa +sa +Fw +fv +gW +sa +aa +aa +aa +yU +iH +Mg +yU +jJ +md +lh +Ut +yU +Mg +CI +yU +aa +yr +ql +ZY +RP +mT +Af +up +Ci +qc +ru +ru +fO +"} +(8,1,1) = {" +fO +sa +tQ +TV +tu +fv +nX +sa +yr +yr +yr +yU +yU +iz +yU +SX +JQ +ZI +SX +yU +iz +yU +yU +yr +yr +IA +ZY +mY +nZ +RS +ZY +HO +Ci +Hx +ru +fO +"} +(9,1,1) = {" +fO +sa +EI +sj +XG +fv +Xv +Fw +zB +Ry +tM +Rx +Ry +Xw +GG +Ry +th +BQ +yW +DT +Xw +yW +yW +qD +yW +yJ +ZY +QT +PT +Af +uX +Ci +Ci +Hs +ru +fO +"} +(10,1,1) = {" +fO +sa +Hr +hD +hD +ka +ZZ +fA +gw +ey +xO +Ej +TP +de +wV +fR +gm +gm +BP +wV +hd +ez +Cp +ro +bP +RX +Qy +Ea +gU +hO +uX +Ci +Ci +yF +ru +fO +"} +(11,1,1) = {" +fO +sa +nR +HY +HY +aP +qQ +ib +Jc +mh +TZ +TZ +TZ +TZ +Dn +tw +TE +lc +zd +Dn +TZ +TZ +TZ +TZ +em +ub +vE +Ls +af +hO +uX +xD +Ci +rJ +ru +fO +"} +(12,1,1) = {" +fO +sa +cD +ZS +ZS +ka +om +jN +Qf +hF +TZ +Jk +xw +TZ +TZ +TZ +di +dc +TZ +TZ +TZ +xc +Sj +TZ +UG +lc +aO +Ls +af +UN +Hv +Ci +Ci +yF +ru +fO +"} +(13,1,1) = {" +fO +sa +XB +Cc +wt +fv +VF +Fw +xn +io +TZ +TZ +yM +BJ +NR +TZ +Pv +dY +TZ +CG +CG +Mv +KX +TZ +ti +lM +ZY +sE +YZ +af +uX +Ci +Ci +mz +ru +fO +"} +(14,1,1) = {" +fO +sa +be +oK +BC +fv +Vs +Fw +xn +io +TZ +Jk +Zh +wk +CG +HM +fP +Mz +zF +py +TZ +az +ou +TZ +We +Ju +ZY +LO +Wa +ZJ +ZY +NB +Ci +lp +ru +fO +"} +(15,1,1) = {" +fO +sa +sa +sa +Fw +fv +gW +Fw +xn +Jz +TZ +TZ +TZ +TZ +TZ +TZ +Ic +Mz +TZ +TZ +TZ +TZ +TZ +TZ +bw +PI +ZY +DJ +iI +af +It +lY +lY +ZY +ru +fO +"} +(16,1,1) = {" +fO +fO +fO +sa +tO +ZP +Wn +Fw +xn +qg +Gy +TZ +Si +MA +mx +De +fP +uN +De +te +MA +Hq +TZ +yx +sM +Lw +yx +yx +yx +Bo +ZY +ZY +eR +ZY +ru +fO +"} +(17,1,1) = {" +pt +pt +fO +sa +Fn +Qc +KI +Fw +xn +nV +CL +TZ +ys +NT +TZ +QA +Mz +uN +wT +TZ +mX +MM +TZ +og +Wd +mi +zk +Tb +yx +iR +ZY +Kc +PR +TM +ru +fO +"} +(18,1,1) = {" +pt +pt +fO +sa +WS +sV +ui +Fw +xn +nV +CL +TZ +TZ +TZ +TZ +uW +Mz +uN +iP +TZ +TZ +TZ +TZ +VN +Wd +Oo +HN +Tb +yx +iR +ZY +Jq +PR +Wx +ru +fO +"} +(19,1,1) = {" +pt +pt +fO +sa +sa +sa +Fw +Fw +xn +rp +cm +TZ +Si +MA +rD +De +uN +uN +wQ +YD +MA +Hq +TZ +YW +Wd +LQ +LQ +Fh +yx +iR +ZY +tf +PR +Wx +ru +fO +"} +(20,1,1) = {" +pt +pt +fO +fO +fO +Di +Pr +sY +Uy +jD +fw +TZ +vC +qr +TZ +uw +uN +uN +wT +TZ +DG +MM +TZ +hh +IM +cp +Tb +Sh +yx +iR +ZY +VS +SQ +ha +ru +fO +"} +(21,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +cV +cV +RZ +cV +TZ +TZ +TZ +TZ +wa +uN +uN +uN +TZ +TZ +TZ +TZ +yx +yx +yx +yx +yx +yx +iR +ZY +Ln +pS +lD +ru +fO +"} +(22,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +cV +tq +LK +vi +xm +TZ +ko +bm +uN +RG +uN +Mz +xT +zJ +TZ +iR +iR +iR +iR +iR +iR +iR +iR +ru +ru +ru +ru +ru +fO +"} +(23,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +cV +sq +fT +tq +kZ +TZ +je +js +Mz +RG +RG +uN +js +tA +TZ +iR +Di +Di +Di +Di +Di +Di +Di +Di +fO +fO +fO +fO +fO +"} +(24,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +cV +NE +Tj +wK +Kf +TZ +FT +iy +rw +Uc +Vh +XJ +WD +wZ +Bo +iR +Di +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +"} +(25,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +LL +aR +LL +aR +LL +TZ +TZ +os +fe +jf +fe +mQ +wZ +TZ +TZ +iR +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(26,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +LL +it +LL +it +LL +td +TZ +TZ +TZ +aS +TZ +TZ +TZ +TZ +iR +iR +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(27,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +LL +LL +LL +LL +LL +iR +JS +TZ +aj +gb +Ek +pV +TZ +iR +iR +Di +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(28,1,1) = {" +pt +pt +pt +pt +fO +Di +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +TZ +WP +RE +oa +iN +TZ +iR +Di +Di +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(29,1,1) = {" +pt +pt +pt +pt +fO +Di +Di +Di +Di +Di +Di +Di +Di +iR +TZ +Le +mW +gN +gN +TZ +iR +Di +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(30,1,1) = {" +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +Di +iR +TZ +TZ +TZ +TZ +TZ +TZ +iR +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(31,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +Di +iR +iR +iR +iR +iR +iR +iR +iR +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(32,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +Di +Di +Di +Di +Di +Di +Di +Di +Di +Di +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(33,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2researchpost_b.dmm b/_maps/away/modular_maps/caves/caves_lvl2researchpost_b.dmm new file mode 100644 index 000000000000..c35ed351417d --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2researchpost_b.dmm @@ -0,0 +1,3663 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"am" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ay" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hatch{ + name = "Research Wing" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"aE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/structure/sign/clock/directional/north{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"aX" = ( +/obj/item/stack/tile/plasteel, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"bu" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"bD" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"bT" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"bV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"cb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "South External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"cc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ck" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"cK" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"cL" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/item/card/id/away/caves/sci, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"cW" = ( +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/obj/item/analyzer, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"cZ" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"di" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/item/pen, +/obj/item/folder/yellow, +/obj/item/folder/white{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"dG" = ( +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"dJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"dP" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"dU" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"dZ" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"eo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"eE" = ( +/obj/item/folder/blue, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"eJ" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"eP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"eS" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"fc" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/south{ + c_tag = "Research Wing North"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"fd" = ( +/obj/machinery/computer/terminal/caves/research2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fg" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin1"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fl" = ( +/obj/machinery/button/door/directional/north{ + id = "CavesPostSDPrivate"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fs" = ( +/obj/machinery/computer/terminal/caves/research4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fE" = ( +/obj/structure/cable, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fG" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"fH" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin4"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fK" = ( +/obj/machinery/computer/terminal/caves/research3{ + dir = 1 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"fO" = ( +/turf/closed/indestructible/riveted, +/area/template_noop) +"fR" = ( +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"gf" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/directional/south{ + c_tag = "Freezer"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"gj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"gy" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gC" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"gP" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"gW" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostPrivateToilet1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gZ" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ha" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hf" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"hl" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hq" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/kitchen/fork/plastic, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hs" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hC" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"hE" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/item/card/id/away/caves/site_director, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"hN" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hX" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ie" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"if" = ( +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"iC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"iL" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"iX" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"iY" = ( +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabinRD"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"jb" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + areastring = "/area/awaymission/caves/second_outpost/researchcenter/engineering" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"je" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/periodic_table{ + pixel_x = 32 + }, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"jf" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"jh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"jm" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/floralguide, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"jy" = ( +/obj/machinery/computer/terminal/caves/research5, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"jF" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/turf_decal/tile/red/half/contrasted, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"jR" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"jY" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"kn" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/work) +"kr" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ks" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/work) +"kw" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"kF" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"kL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/directional/north{ + c_tag = "Kitchen Prep Area"; + network = list("cavesscipost") + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"kP" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"kT" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door{ + id = "cavesrdshutter"; + name = "Lockdown Toggle"; + pixel_x = -24; + pixel_y = -4; + req_access_txt = "200" + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"lb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"lk" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sign/clock/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"lm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"lt" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"lL" = ( +/obj/structure/table, +/obj/item/kitchen/knife/butcher, +/obj/item/kitchen/rollingpin, +/obj/item/sharpener, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"lW" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"lX" = ( +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mg" = ( +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"mh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"mm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/tile/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"mI" = ( +/obj/structure/closet/secure_closet{ + icon_state = "rd"; + name = "site director's locker"; + req_access_txt = "away_science" + }, +/obj/item/aicard, +/obj/item/clothing/under/rank/rnd/research_director, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"mK" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"nm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"nr" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nt" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"nu" = ( +/obj/structure/table, +/obj/item/pen, +/obj/item/shard, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nD" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_x = 32 + }, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nN" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"oa" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"oi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "North External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"oq" = ( +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ot" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"oD" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"oT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"po" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"pr" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"pt" = ( +/turf/template_noop, +/area/template_noop) +"pJ" = ( +/obj/item/papercutter, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/structure/table_frame, +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"pK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"pO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"pU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"qa" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"qb" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"qs" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"qx" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/obj/item/soap/deluxe, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"qG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"qT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"rd" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ro" = ( +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"rG" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"rT" = ( +/obj/structure/table, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"si" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"sk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"so" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"sr" = ( +/obj/structure/lattice, +/obj/machinery/firealarm/directional/north, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/work) +"su" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/food/cannoli, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"sv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/door/airlock/public{ + name = "Dorm Area" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"sK" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"sQ" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"sR" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/directional/north{ + c_tag = "Research Wing South"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"tj" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"tn" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/pda_ad{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"tq" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"tt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"tF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"tJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"tK" = ( +/turf/open/lava/smooth/weak, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"uM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"uU" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"vn" = ( +/obj/machinery/door/airlock{ + name = "Freezer" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vz" = ( +/obj/machinery/computer/security{ + network = list("cavesscipost") + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"vE" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"vL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"vO" = ( +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"vT" = ( +/obj/structure/table, +/obj/item/assembly/signaler/anomaly/grav, +/obj/item/screwdriver, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"wb" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"wc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"wf" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/warm/directional/east, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ws" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"wv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"wE" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"wF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"wZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"xj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"xI" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"yE" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"yU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"yW" = ( +/obj/item/folder/red{ + pixel_x = 5 + }, +/obj/item/stack/sheet/iron, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"zf" = ( +/obj/item/stack/sheet/plasteel, +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"zh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"zs" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/plate, +/obj/item/food/cheese_sandwich{ + pixel_y = 13 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"zA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"zE" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"zL" = ( +/obj/machinery/camera/directional/north{ + c_tag = "Life Support"; + network = list("cavesscipost") + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"zT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"zU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"zY" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/table_frame, +/obj/structure/cable, +/obj/item/pai_card, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Ab" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Research Wing Offices"; + network = list("cavesscipost") + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ae" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"AB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/spawner/lavaland/icewatcher, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"AI" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"AJ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter) +"AP" = ( +/obj/item/stack/sheet/iron, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Bs" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter) +"BB" = ( +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"BM" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"BO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"BV" = ( +/obj/machinery/computer/terminal/caves/research, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ca" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ce" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Cf" = ( +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Cl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Cw" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"CH" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"CJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"CU" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/effect/gibspawner/human, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/clothing/suit/armor/reactive/bioscrambling, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"CW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ds" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"DD" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"DF" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Em" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"En" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Ey" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ez" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ED" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/machinery/camera/directional/north{ + c_tag = "Site Director's Office"; + network = list("cavesscipost") + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"EH" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"EM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"EN" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostPrivateToilet2"; + name = "Private Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"EX" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"EY" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ff" = ( +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Ft" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"FI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"FM" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"FO" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"FT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/item/plate, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"FW" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"FY" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Gj" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Gm" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/purple, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Gp" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"GB" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"GC" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/purple, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"GJ" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"GL" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Hp" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/seismic_log, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Hu" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Hz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin4"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"HP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"HX" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"HZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ih" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Im" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Io" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"IU" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabinRD"; + name = "Site Director's Cabin" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Jt" = ( +/obj/item/soap, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"JE" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"JK" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"JS" = ( +/obj/structure/sign/departments/science/alt/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"JU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"JY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Kg" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Kh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"KL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Lf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Lt" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Lu" = ( +/obj/structure/chair/stool/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Lw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"LF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"LJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"LT" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Md" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Mi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"MC" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "away_sec" + }, +/obj/item/melee/baton/loaded, +/obj/item/flashlight/seclite, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/clothing/head/helmet, +/obj/item/clothing/suit/armor/vest/alt, +/obj/effect/turf_decal/tile/red/fourcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ME" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"MH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"MI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"MS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Nk" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/light/warm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Nu" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"NE" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"NQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Op" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "old sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Or" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ov" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"OU" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Pg" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Pz" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/researchcenter) +"PC" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostPrivateToilet1"; + name = "Private Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"PD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pretty Boy" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"PE" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin2"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"PO" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/food/cornchips, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"PV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"PZ" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/rd{ + dir = 4; + name = "site director's bedsheet" + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Qq" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Qy" = ( +/obj/structure/door_assembly/door_assembly_research, +/obj/item/shard, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"QJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Rd" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/turretid{ + control_area = /area/awaymission/caves/second_outpost/researchcenter; + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"RL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Sk" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Sp" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Su" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/door/airlock/public{ + name = "Dorm Area" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Sw" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"SC" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plating, +/area/template_noop) +"SF" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"SH" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"SI" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/work) +"SQ" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"SX" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Tg" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"Th" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"TK" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"TL" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"TU" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1; + pixel_y = -16 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ua" = ( +/obj/structure/table, +/obj/item/clipboard, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ud" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Uh" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Uw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"UA" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"UD" = ( +/obj/structure/cable, +/obj/structure/grille/broken, +/obj/item/shard, +/obj/item/stack/rods, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"UK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/science/alt/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"UL" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"VD" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostPrivateToilet2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"VL" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostCabin1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"VU" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Wa" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Wn" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostCabin2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Wv" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WB" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WJ" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"WK" = ( +/obj/machinery/gibber, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WS" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Xf" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Xr" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"XH" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Yg" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostSDPrivate"; + name = "Private Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Yl" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Yn" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Yp" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Dorm Area"; + network = list("cavesscipost") + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Yq" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"YF" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"YT" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/machinery/light/warm/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Mess Hall"; + network = list("cavesscipost") + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Zk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Zm" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ZD" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ZE" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ZL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ZO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ZP" = ( +/obj/item/paper_bin, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ZX" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/item/card/id/away/caves/sec, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) + +(1,1,1) = {" +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(2,1,1) = {" +fO +fO +hX +hX +hX +hX +hX +hX +hX +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(3,1,1) = {" +fO +hX +hX +TK +TK +TK +TK +qs +hX +hX +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(4,1,1) = {" +fO +hX +TK +TK +TK +TK +TK +ac +TK +TK +fO +pt +pt +pt +pt +pt +GB +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(5,1,1) = {" +fO +hX +hX +SH +SH +SH +SC +Mi +lm +TK +hX +Pz +EM +xj +UA +GL +tK +tK +HX +UA +xj +si +Pz +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(6,1,1) = {" +fO +hX +hX +SH +SH +SH +hs +hs +wE +hs +hs +Pz +JS +oi +UA +cK +PV +Ft +Yq +UA +cb +UK +Pz +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +"} +(7,1,1) = {" +fO +hX +SH +SH +SH +SH +hs +Or +bV +yU +hs +Pz +NQ +wZ +UA +zL +hh +Sw +LT +UA +wZ +BO +Pz +kn +kn +kn +kn +fO +pt +pt +pt +pt +pt +pt +pt +pt +"} +(8,1,1) = {" +fO +hX +SH +SH +SH +TK +hs +WT +bV +Ae +hs +Pz +Pz +ay +UA +Xf +if +Ff +Cw +UA +ay +Pz +Pz +Hp +tn +Ua +kn +fO +pt +pt +pt +pt +pt +pt +pt +pt +"} +(9,1,1) = {" +fO +hX +SH +SH +SH +hs +hs +hs +XH +hs +hs +hs +Ov +BM +FM +jb +uM +cc +MI +qa +UL +Ov +AJ +BV +bT +Nu +kn +fO +fO +fO +fO +pt +pt +pt +pt +pt +"} +(10,1,1) = {" +fO +hX +TK +SH +TK +hs +FW +oD +Md +iL +hE +hs +pr +wc +ZO +ZO +ZO +ZO +KL +Qq +Lf +Zm +AJ +Ce +vE +Nu +kn +kn +kn +kn +fO +pt +pt +pt +pt +pt +"} +(11,1,1) = {" +fO +hX +TK +SH +TK +hs +DD +EX +Md +zs +YT +hs +NE +fc +Bs +qG +qG +qG +qG +Bs +YF +gP +AJ +jY +kr +HZ +Nu +Nu +oa +kn +fO +pt +pt +pt +pt +pt +"} +(12,1,1) = {" +fO +fO +hX +TK +TK +hs +DF +WS +yE +nN +wb +Zk +NE +Wa +qG +aE +ZD +dG +dJ +qG +YF +gP +LJ +lt +Th +kF +WJ +bD +fd +kn +fO +pt +pt +pt +pt +pt +"} +(13,1,1) = {" +pt +fO +hX +TK +TK +hs +jf +Pg +hq +Uh +sK +iC +lb +RL +qG +vz +Ez +dG +MC +qG +YF +gj +OU +eo +pU +ck +cL +je +rG +kn +fO +pt +pt +pt +pt +pt +"} +(14,1,1) = {" +pt +fO +hX +TK +hX +hs +Nk +hl +Yn +fG +Yn +tF +HP +Wa +qG +Hu +Rd +dG +Ey +qG +YF +Sk +SI +Uw +mh +Ab +kn +kn +kn +kn +fO +pt +pt +pt +pt +pt +"} +(15,1,1) = {" +pt +fO +hX +hX +hX +hs +Yl +FT +TL +fG +PO +Zk +NE +Wa +Tg +zh +ie +dG +ZX +qG +YF +Ca +LJ +QJ +EY +ks +EY +mm +xI +kn +fO +pt +pt +pt +pt +pt +"} +(16,1,1) = {" +pt +fO +hX +hX +hX +hs +hs +CH +CH +fG +FY +hs +NE +Wa +Bs +qG +lW +jF +qG +Bs +sR +Ca +AJ +sr +ks +ks +pJ +cW +fK +kn +fO +pt +pt +pt +pt +pt +"} +(17,1,1) = {" +pt +fO +hX +hX +hX +hX +hs +su +sk +ro +sk +hs +SX +zA +Xr +Io +lb +jh +Sp +Sp +CJ +eJ +AJ +EY +ks +ks +di +vT +rT +kn +fO +pt +pt +pt +pt +pt +"} +(18,1,1) = {" +pt +fO +hX +hX +hX +hX +hs +Op +mg +qT +wF +hs +Ov +SF +eS +kP +JY +JE +ZO +eS +qb +Ov +AJ +ks +ks +EY +kn +ot +kn +kn +fO +pt +pt +pt +pt +pt +"} +(19,1,1) = {" +fO +fO +hs +hs +hs +hs +hs +qT +qT +qT +mg +hs +AI +AI +AI +AI +Su +sv +AI +AI +AI +AI +Em +ks +ks +fE +wv +yW +jm +kn +fO +pt +pt +pt +pt +pt +"} +(20,1,1) = {" +fO +hs +hs +zE +dU +gf +hs +kL +WB +SQ +mg +hs +oq +ws +ZL +Gp +Kh +ha +Ud +GJ +Cf +BB +Em +EY +aX +Lt +eE +fR +fs +kn +fO +pt +pt +pt +pt +pt +"} +(21,1,1) = {" +fO +hs +gZ +tq +tq +tt +hs +qT +hN +lL +mg +hs +Kg +MS +TU +AI +oT +sQ +AI +lX +nm +Lw +zf +Lt +AB +fE +ZP +nu +nD +kn +fO +pt +pt +pt +pt +pt +"} +(22,1,1) = {" +fO +hs +hs +PD +CW +Cl +vn +qT +mg +mg +mg +hs +Kg +Jt +TU +AI +rd +sQ +AI +PC +AI +EN +Em +tJ +Ih +nr +kn +kn +kn +kn +fO +pt +pt +pt +pt +pt +"} +(23,1,1) = {" +fO +fO +hs +iX +WK +iX +hs +EH +wf +gC +Wv +hs +Kg +vL +TU +AI +rd +sQ +AI +gW +AI +VD +Em +jR +fE +Gj +kn +hX +hX +fO +fO +pt +pt +pt +pt +pt +"} +(24,1,1) = {" +pt +fO +hs +hs +hs +hs +hs +hs +hs +hs +hs +hs +AI +AI +AI +AI +Yp +sQ +AI +AI +AI +AI +Em +dP +UD +zU +dP +dP +dP +fO +pt +pt +pt +pt +pt +pt +"} +(25,1,1) = {" +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +AI +MH +Lu +fg +gy +po +zT +eP +gy +gy +VU +Lu +JU +dP +kw +cZ +kT +lk +dP +fO +pt +pt +pt +pt +pt +pt +"} +(26,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +Gm +VL +AI +mK +ha +hf +ha +hf +tj +AI +pO +GC +dP +AP +Qy +En +hC +dP +fO +pt +pt +pt +pt +pt +pt +"} +(27,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +AI +AI +AI +ZE +ha +ha +ha +ha +uU +AI +AI +AI +dP +ED +zY +CU +hF +dP +fO +pt +pt +pt +pt +pt +pt +"} +(28,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +MH +Lu +PE +ME +ha +pK +FO +nt +ME +fH +Lu +JU +dP +jy +FI +En +hC +dP +fO +pt +pt +pt +pt +pt +pt +"} +(29,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +am +Wn +AI +AI +IU +AI +AI +AI +AI +AI +Hz +GC +dP +Ds +so +En +mI +dP +fO +pt +pt +pt +pt +pt +pt +"} +(30,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +AI +AI +AI +iY +LF +PZ +AI +fl +JK +AI +AI +AI +dP +dP +dP +dP +dP +dP +fO +pt +pt +pt +pt +pt +pt +"} +(31,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +AI +bu +dZ +vO +Yg +Im +qx +AI +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +"} +(32,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +AI +AI +AI +AI +AI +AI +AI +AI +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} +(33,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2researchpost_c.dmm b/_maps/away/modular_maps/caves/caves_lvl2researchpost_c.dmm new file mode 100644 index 000000000000..17a87f970451 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2researchpost_c.dmm @@ -0,0 +1,3633 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"aq" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"aw" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1; + pixel_y = -16 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ay" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/hatch{ + name = "Research Wing" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"aB" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"aH" = ( +/obj/machinery/porta_turret/syndicate/pod{ + max_integrity = 120 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"aZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"bc" = ( +/obj/machinery/computer/security{ + network = list("cavesscipost") + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"be" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"bf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red/half/contrasted, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"bq" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"bu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"bG" = ( +/obj/machinery/door/firedoor/closed, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"bH" = ( +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"cb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/north{ + c_tag = "South External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"cd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"cx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"cK" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/empty + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"cS" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"cY" = ( +/obj/item/kitchen/knife/butcher, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"cZ" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"dc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"dd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"dI" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"dM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/porta_turret/syndicate/pod{ + max_integrity = 120 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"dR" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"dU" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/work) +"dZ" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"ex" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"ez" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"eC" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"eJ" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"eM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"eS" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"eT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fd" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"fE" = ( +/obj/structure/chair/stool/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"fG" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"fO" = ( +/turf/closed/indestructible/riveted, +/area/template_noop) +"gt" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/item/folder/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"gy" = ( +/obj/structure/closet/secure_closet{ + icon_state = "sec"; + name = "security officer's locker"; + req_access_txt = "away_sec" + }, +/obj/item/melee/baton/loaded, +/obj/item/flashlight/seclite, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/clothing/head/helmet, +/obj/item/clothing/suit/armor/vest/alt, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"gD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/door_assembly, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"gM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gP" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"gT" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"gW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"gY" = ( +/obj/structure/janitorialcart{ + dir = 4 + }, +/obj/item/mop, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"hb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"hf" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"hm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"hp" = ( +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"hs" = ( +/obj/structure/dresser, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin4"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hC" = ( +/obj/machinery/shower{ + pixel_y = 24 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hE" = ( +/turf/template_noop, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"hI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hP" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"hX" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin4"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ie" = ( +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabinRD"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"iB" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"iG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/north{ + areastring = /area/awaymission/caves/second_outpost/researchcenter/work + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"iX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/science/alt/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"jb" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter) +"jd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"je" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"kn" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"kp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"kr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"ks" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"kG" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"lN" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"lU" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted, +/obj/item/card/id/away/caves/sec, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"mc" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mg" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"mo" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mr" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"mI" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/purple, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mK" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"mQ" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"mR" = ( +/obj/structure/table/wood, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mW" = ( +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"mY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"nt" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"nu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"nB" = ( +/obj/machinery/computer/terminal/caves/research{ + dir = 4 + }, +/obj/structure/sign/poster/official/pda_ad{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"nC" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"nL" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"nN" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter) +"nQ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"oi" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"os" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"oK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"oO" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "old sink"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"pt" = ( +/turf/template_noop, +/area/template_noop) +"pK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"pT" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/camera/directional/north{ + c_tag = "Site Director's Office"; + network = list("cavesscipost") + }, +/obj/machinery/button/door{ + id = "cavesrdshutter"; + name = "Lockdown Toggle"; + pixel_x = -24; + pixel_y = -4; + req_access_txt = "200" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"pZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"qa" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"qb" = ( +/obj/structure/table, +/obj/item/folder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"qm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"qt" = ( +/obj/item/analyzer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"qy" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"qA" = ( +/obj/structure/rack, +/obj/item/storage/belt/janitor/full, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"qG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"qN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"qT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ro" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter) +"rG" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"rH" = ( +/obj/structure/dresser, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"rT" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"rW" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"si" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"sk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"so" = ( +/obj/machinery/computer/terminal/caves/research3{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"sQ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/pen, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"tn" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"tK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/closed, +/obj/item/sharpener, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vG" = ( +/obj/machinery/light/red/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"vH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"vR" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"wa" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"wc" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"wm" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"wo" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"wZ" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"xQ" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"yb" = ( +/obj/structure/fluff{ + desc = "What, you think the water just magically soaks into the metallic flooring?"; + icon = 'icons/obj/lavaland/survival_pod.dmi'; + icon_state = "fan_tiny"; + name = "shower drain" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"yg" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"yy" = ( +/obj/structure/kitchenspike, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"yA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"yZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/directional/south{ + c_tag = "North External Airlock"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"zd" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabinRD"; + name = "Site Director's Cabin" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ze" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"zk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"zs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"zF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"zH" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Kev" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"zL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"zT" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"zY" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/obj/item/papercutter, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"zZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"Ao" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"AE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"AI" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"AP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Bi" = ( +/obj/structure/table/reinforced, +/obj/structure/sign/clock/directional/north, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Bk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"BD" = ( +/obj/machinery/button/door/directional/north{ + id = "CavesPostSDPrivate"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"BF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"BP" = ( +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"BS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ca" = ( +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Cg" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Cz" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"CE" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating/lowpressure, +/area/template_noop) +"CJ" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/periodic_table{ + pixel_y = 32 + }, +/obj/item/pen/fourcolor, +/obj/item/assembly/signaler/anomaly/vortex, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"CN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"CP" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"CU" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/caves/second_outpost/researchcenter) +"CY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "201" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"De" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/floralguide, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/freezer{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"DD" = ( +/obj/machinery/gibber, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"DI" = ( +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/red/directional/north, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"DO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"DV" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/closed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Eg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"Em" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Es" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ey" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ez" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"EA" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"EF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"EI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"EK" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"EM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"EY" = ( +/obj/structure/sign/departments/science/alt/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Fe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ff" = ( +/obj/machinery/door/airlock/hatch{ + name = "Storage" + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"Fr" = ( +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ft" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pai_card, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Fu" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Fw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"FB" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/clothing/suit/armor/reactive/stealth, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"FC" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"FD" = ( +/obj/machinery/computer/terminal/caves/research4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"FS" = ( +/obj/vehicle/ridden/janicart, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"Gg" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostPrivateToilet2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Gk" = ( +/obj/structure/table, +/obj/structure/window/reinforced/spawner, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Gw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"GM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"GS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Ha" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/camera/directional/south{ + c_tag = "Freezer"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Hh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Hn" = ( +/obj/structure/table, +/obj/item/card/id/away/caves/sci, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Hq" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Hu" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"HU" = ( +/obj/structure/table, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"HV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"HZ" = ( +/obj/structure/lattice, +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ih" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Ij" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"In" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Io" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/sign/poster/official/state_laws{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/card/id/away/caves/site_director, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Iv" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"IG" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"IU" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Jd" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostSDPrivate"; + name = "Private Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Jp" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostPrivateToilet2"; + name = "Private Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Jz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"JE" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/stamp/rd, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"JI" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"JY" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Kb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Kc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Kp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Kx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"KC" = ( +/obj/machinery/door/firedoor/closed, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"KH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"KY" = ( +/obj/structure/girder/reinforced, +/obj/item/stack/sheet/plasteel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Le" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Lf" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter) +"Lt" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Lu" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"Lz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"LQ" = ( +/obj/structure/table_frame, +/obj/item/screwdriver, +/obj/item/stack/sheet/plasteel, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/work) +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) +"LU" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostCabin1"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"LY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ME" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "CavesPostPrivateToilet1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"MH" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"MV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Na" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Nb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair/stool, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Nd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Nr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/directional/north{ + c_tag = "Dorm Area"; + network = list("cavesscipost") + }, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Nt" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Nu" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"ND" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"NG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"NH" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Or" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ox" = ( +/obj/machinery/turretid{ + control_area = /area/awaymission/caves/second_outpost/researchcenter; + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"OM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"OO" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Pj" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Pt" = ( +/obj/machinery/door/airlock/public{ + name = "Kitchen" + }, +/obj/machinery/door/firedoor/closed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"PV" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"PY" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"PZ" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Qn" = ( +/obj/item/folder/red{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Qq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Qu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/maint) +"Qx" = ( +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor/closed, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Qy" = ( +/obj/machinery/door/airlock{ + id_tag = "CavesPostPrivateToilet1"; + name = "Private Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"QO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Rk" = ( +/obj/machinery/computer/terminal/caves/research2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ry" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"RB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"RG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/closed, +/obj/item/kitchen/rollingpin, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Sh" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Si" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/rd/double{ + name = "site director's bedsheet" + }, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Sk" = ( +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Sm" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Sw" = ( +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"SB" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/computer/terminal/caves/research5, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"SH" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"SM" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating/lowpressure, +/area/template_noop) +"SQ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Th" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Tx" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"Ty" = ( +/obj/item/stack/sheet/plasteel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"TK" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"TL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"TS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Ua" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Ue" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter/work) +"Ui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"UA" = ( +/turf/closed/wall, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"UB" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"UC" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"UR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/second_outpost/researchcenter) +"Vb" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Site Director's Office" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cavesrdshutter"; + name = "Emergency Lockdown Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"Vh" = ( +/obj/structure/dresser, +/obj/machinery/button/door/directional/north{ + id = "CavesPostCabin1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"VA" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"VD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/south, +/obj/machinery/camera/directional/south{ + c_tag = "Research Wing Offices"; + network = list("cavesscipost") + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter) +"VJ" = ( +/obj/item/aicard, +/obj/item/clothing/under/rank/rnd/research_director, +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/closet/secure_closet{ + icon_state = "rd"; + name = "site director's locker"; + req_access_txt = "away_science" + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"VK" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"VS" = ( +/obj/item/soap, +/obj/item/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Wk" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Research Divison" + }, +/obj/machinery/door/firedoor/closed, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Wv" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"WB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"WC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"WK" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/second_outpost/researchcenter/work) +"WX" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Xf" = ( +/turf/open/chasm/lavaland, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Xr" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"Xy" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/awaymissions/caves/researchfluff, +/obj/item/paper/fluff/awaymissions/caves/seismic_log, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"XL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"YC" = ( +/obj/machinery/deepfryer, +/obj/machinery/light/red/directional/north, +/obj/machinery/camera/directional/north{ + c_tag = "Kitchen Prep Area"; + network = list("cavesscipost") + }, +/turf/open/floor/plasteel/checker{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"YF" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/east, +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"YH" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/work) +"YI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/red/directional/north, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"YS" = ( +/turf/open/lava/smooth/weak, +/area/awaymission/caves/second_outpost/researchcenter/engineering) +"Zk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible/necropolis, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"Zm" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"Zo" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/purple, +/area/awaymission/caves/second_outpost/researchcenter/dorm) +"ZD" = ( +/obj/machinery/door/airlock/public{ + name = "Mess Hall" + }, +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ZF" = ( +/obj/machinery/door/airlock{ + name = "Freezer" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"ZJ" = ( +/obj/effect/turf_decal/tile/purple/opposingcorners{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel/cafeteria{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter/sitedirector) +"ZO" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/second_outpost/researchcenter) +"ZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/stack/tile/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/caves/second_outpost/researchcenter/messhall) +"ZQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/second_outpost/researchcenter) + +(1,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +fO +"} +(2,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fG +Ih +Ih +Ih +Ih +fO +ks +ks +ks +ks +ks +ks +fO +"} +(3,1,1) = {" +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fG +aq +Hh +EM +Ih +Ih +Ih +ks +TK +TK +TK +ks +fO +"} +(4,1,1) = {" +pt +pt +pt +pt +pt +pt +fO +jb +jb +jb +CU +pt +pt +pt +pt +pt +Tx +pt +pt +pt +pt +pt +hE +fG +aq +Kc +Fw +WX +Kp +WX +AE +ZG +DO +SM +ks +fO +"} +(5,1,1) = {" +pt +pt +pt +pt +pt +pt +fO +jb +rT +vG +gy +CU +UR +si +CU +ex +gY +Gw +qA +CU +si +zk +CU +SQ +dd +Bk +be +cZ +Ih +Ih +TK +dc +TK +ks +ks +fO +"} +(6,1,1) = {" +pt +pt +pt +pt +pt +pt +fO +jb +bc +iB +bf +CU +EY +yZ +CU +cK +PV +Sw +wm +CU +cb +iX +CU +JI +nu +Em +YS +cZ +TK +TK +TK +CE +SH +SH +ks +fO +"} +(7,1,1) = {" +pt +pt +pt +fO +fO +fO +fO +jb +Bi +Ox +lU +CU +qN +QO +CU +FS +PV +Sw +eC +CU +QO +EF +CU +FC +yA +oi +vR +cZ +TK +TK +TK +SH +SH +SH +ks +fO +"} +(8,1,1) = {" +pt +pt +pt +fO +WK +WK +WK +jb +kr +DV +kr +CU +CU +ay +CU +Lf +EA +Ff +Lf +CU +ay +CU +CU +Ua +mW +Ua +Ua +Ua +UA +UA +TK +SH +SH +SH +ks +fO +"} +(9,1,1) = {" +pt +pt +pt +fO +WK +qb +nB +dZ +dM +LS +ZQ +Wk +os +ez +os +wa +qm +TS +hm +hm +Es +AP +KC +MV +oK +HZ +UA +NG +mI +UA +TK +SH +SH +SH +ks +fO +"} +(10,1,1) = {" +pt +pt +pt +fO +WK +sQ +Na +zT +zL +Eg +cx +Iv +wc +wc +ZO +wc +qT +Ey +wc +wc +wc +wc +Zm +Ce +Or +HZ +LU +fE +TL +UA +TK +SH +SH +ks +ks +fO +"} +(11,1,1) = {" +pt +pt +pt +fO +YH +Xy +pK +zs +BF +ro +nN +yg +AI +AI +AI +aH +qG +WC +aH +AI +AI +AI +AI +Ui +KH +HZ +UA +Vh +fd +UA +UA +UA +UA +UA +fO +fO +"} +(12,1,1) = {" +pt +pt +pt +fO +dU +dU +dU +dU +nN +nN +nN +MH +Hu +Hu +Sm +tK +ZD +Qx +tK +AI +Cz +cS +AI +DI +Th +HZ +UA +UA +UA +UA +ME +UA +Gg +UA +fO +pt +"} +(13,1,1) = {" +pt +pt +pt +fO +YH +LQ +Rk +Nt +nN +nN +ro +MH +MH +MH +MH +Ez +ku +LY +mr +nQ +VK +gP +AI +JY +Xf +Xf +UA +Qq +rG +UA +Qy +UA +Jp +UA +fO +pt +"} +(14,1,1) = {" +pt +pt +pt +fO +WK +CJ +IU +bq +kp +nN +ro +MH +MH +MH +MH +Hu +Hu +MH +MH +MH +ZP +ku +EK +Jz +Xf +Xf +gD +Nb +BP +UA +Dw +Jz +OM +UA +fO +pt +"} +(15,1,1) = {" +pt +pt +pt +fO +WK +kn +hb +qt +mL +nN +BF +KY +wo +Ty +Hu +Hu +Hu +Hu +MH +MH +Hu +MH +MH +wZ +Xf +Xf +HZ +Jz +Jz +je +Jz +Xf +HZ +UA +fO +pt +"} +(16,1,1) = {" +pt +pt +pt +fO +WK +Hq +Hq +Hq +RB +ro +BF +Lu +eJ +YF +ku +fu +Ez +Ez +nL +MH +MH +Ca +wZ +wZ +wZ +Xf +Xf +Xf +HZ +HZ +Xf +Xf +Xf +UA +fO +pt +"} +(17,1,1) = {" +pt +pt +pt +fO +WK +Ue +so +Gk +mL +ro +VD +eJ +eJ +AI +Pt +AI +aZ +RG +bG +vc +AI +UA +je +nt +wZ +wZ +In +OM +Jz +Jz +Th +hP +UA +ks +fO +pt +"} +(18,1,1) = {" +pt +pt +pt +fO +WK +Hn +qa +Cg +BF +ro +sk +CY +Qu +AI +oO +gF +zF +mQ +hp +Ry +UC +Qu +CY +Zk +mK +Zk +gW +eM +hI +ae +NH +lN +UA +ks +fO +pt +"} +(19,1,1) = {" +pt +pt +pt +fO +WK +gT +Fr +Le +BF +ro +BF +jb +Qu +AI +YC +cY +zF +CN +Lz +vH +Ez +Qu +UA +Nr +wZ +Zk +UA +UA +UA +UA +Ao +UA +UA +UA +fO +pt +"} +(20,1,1) = {" +pt +pt +pt +fO +WK +Hq +Hq +Hq +iG +ro +mL +jb +Qu +AI +OO +Pj +gF +IG +Fu +ND +AI +Qu +UA +eT +wZ +Jz +UA +NG +mI +UA +GM +Kb +gM +UA +fO +pt +"} +(21,1,1) = {" +pt +pt +pt +fO +WK +kG +FD +zY +mL +BF +BF +jb +Qu +AI +AI +AI +ZF +AI +AI +AI +AI +Qu +UA +bH +Zk +cd +Ij +fE +TL +UA +hC +VS +aw +UA +fO +pt +"} +(22,1,1) = {" +pt +pt +pt +fO +WK +HU +gt +Cg +sk +mY +bu +jb +Qu +Qu +AI +WB +GS +qy +Ha +AI +Qu +Qu +UA +pZ +ij +Zk +UA +rH +fd +UA +hC +yb +aw +UA +fO +pt +"} +(23,1,1) = {" +pt +pt +pt +fO +WK +De +Qn +Le +mg +zZ +aH +jb +Qu +Qu +AI +zH +aB +Kx +Fe +AI +Qu +Qu +UA +HV +Zk +Zk +UA +UA +UA +UA +hC +eS +aw +UA +fO +pt +"} +(24,1,1) = {" +pt +pt +pt +fO +WK +WK +PY +PY +jd +Vb +jd +PY +Qu +Qu +AI +DD +yy +rW +Xr +AI +Qu +Qu +UA +YI +Zk +wZ +UA +NG +mI +UA +UA +UA +UA +UA +fO +pt +"} +(25,1,1) = {" +pt +pt +pt +fO +fO +fO +PY +pT +VA +xQ +UB +PY +PY +Qu +AI +AI +AI +AI +AI +AI +Qu +UA +UA +wZ +Nd +wZ +hX +fE +TL +UA +fO +fO +fO +fO +fO +pt +"} +(26,1,1) = {" +pt +pt +pt +pt +pt +fO +PY +Io +JE +xQ +Ft +nC +PY +Qu +Qu +Qu +Qu +Qu +Qu +Qu +Qu +UA +tn +Lt +wZ +wZ +UA +hs +fd +UA +fO +pt +pt +pt +pt +pt +"} +(27,1,1) = {" +pt +pt +pt +pt +pt +fO +PY +SB +dI +FB +ze +Sh +PY +hf +hf +hf +hf +hf +hf +hf +hf +UA +UA +UA +zd +UA +UA +UA +UA +UA +fO +pt +pt +pt +pt +pt +"} +(28,1,1) = {" +pt +pt +pt +pt +pt +fO +PY +Wv +PZ +ZJ +Nu +VJ +PY +fO +fO +fO +fO +fO +fO +fO +fO +UA +ie +XL +BS +Sk +UA +BD +mo +UA +fO +pt +pt +pt +pt +pt +"} +(29,1,1) = {" +pt +pt +pt +pt +pt +fO +PY +PY +PY +PY +PY +PY +PY +fO +pt +pt +pt +pt +pt +pt +fO +UA +mR +CP +BS +BS +Jd +EI +mc +UA +fO +pt +pt +pt +pt +pt +"} +(30,1,1) = {" +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +fO +UA +Zo +Sk +dR +Si +UA +UA +UA +UA +fO +pt +pt +pt +pt +pt +"} +(31,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +UA +UA +UA +UA +UA +UA +fO +fO +fO +fO +pt +pt +pt +pt +pt +"} +(32,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +fO +fO +fO +fO +fO +fO +fO +fO +pt +pt +pt +pt +pt +pt +pt +pt +"} +(33,1,1) = {" +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +pt +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_broken.dmm b/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_broken.dmm new file mode 100644 index 000000000000..11a34270711b --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_broken.dmm @@ -0,0 +1,306 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"o" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/obj/modular_map_connector, +/turf/open/floor/plating, +/area/template_noop) +"x" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"z" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"A" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"C" = ( +/turf/template_noop, +/area/template_noop) +"E" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"F" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"L" = ( +/obj/structure/railing/corner, +/turf/template_noop, +/area/template_noop) +"U" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"W" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +h +h +h +C +C +C +C +C +C +h +h +h +h +h +"} +(2,1,1) = {" +o +U +U +b +C +C +C +C +C +C +F +U +A +o +"} +(3,1,1) = {" +h +h +h +C +C +C +C +C +C +C +C +h +h +h +"} +(4,1,1) = {" +C +C +C +C +C +C +C +C +C +C +C +C +C +C +"} +(5,1,1) = {" +h +h +h +C +C +C +C +C +C +C +h +h +h +h +"} +(6,1,1) = {" +s +z +z +W +h +h +C +C +C +C +W +W +z +z +"} +(7,1,1) = {" +h +h +h +C +C +C +C +C +C +h +h +h +h +h +"} +(8,1,1) = {" +C +C +C +C +C +C +C +C +C +C +C +C +C +C +"} +(9,1,1) = {" +h +h +h +h +h +C +C +C +C +C +C +L +h +h +"} +(10,1,1) = {" +o +A +U +A +U +E +C +C +C +C +L +x +U +o +"} +(11,1,1) = {" +h +h +h +h +h +h +h +C +C +C +C +h +h +h +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_unbroken.dmm b/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_unbroken.dmm new file mode 100644 index 000000000000..b217dd997a17 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl2tunnelbridge_unbroken.dmm @@ -0,0 +1,240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"g" = ( +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/effect/decal/fakelattice, +/turf/template_noop, +/area/template_noop) +"r" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"u" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 8 + }, +/obj/modular_map_connector, +/turf/open/floor/plating, +/area/template_noop) +"K" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"L" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) + +(1,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(2,1,1) = {" +L +K +K +K +K +K +K +K +K +K +K +K +K +L +"} +(3,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(4,1,1) = {" +g +g +g +g +g +g +g +g +g +g +g +g +g +g +"} +(5,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(6,1,1) = {" +u +r +r +r +r +r +r +r +r +r +r +r +r +r +"} +(7,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(8,1,1) = {" +g +g +g +g +g +g +g +g +g +g +g +g +g +g +"} +(9,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} +(10,1,1) = {" +L +K +K +K +K +K +K +K +K +K +K +K +K +L +"} +(11,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment1_a.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment1_a.dmm new file mode 100644 index 000000000000..e3382092e269 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment1_a.dmm @@ -0,0 +1,8545 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aX" = ( +/mob/living/simple_animal/hostile/asteroid/gutlunch/gubbuck, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"bb" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/item/toy/plush/snakeplushie, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"bo" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"bs" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/bed/maint, +/obj/item/bedsheet/centcom, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"bt" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"bN" = ( +/obj/structure/spawner/lavaland{ + max_mobs = 2; + mob_types = list(/mob/living/simple_animal/hostile/ashwalker) + }, +/obj/structure/stone_tile/slab, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/indestructible/boss, +/area/template_noop) +"bO" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/obj/structure/mineral_door/iron, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"bQ" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"cg" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ck" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"cM" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/structure/statue/bone/skull, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"cY" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"do" = ( +/obj/structure/mineral_door/iron{ + name = "sssplasssh zone" + }, +/obj/structure/stone_tile/slab/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"dJ" = ( +/obj/structure/fluff/beach_umbrella, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"dX" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"dY" = ( +/obj/structure/water_source/puddle{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"eC" = ( +/obj/structure/stone_tile/slab, +/turf/open/chasm/lavaland, +/area/template_noop) +"eV" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/bed/maint, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"fr" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate{ + name = "ritual sssuppliesss" + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/cannabis, +/obj/item/clothing/mask/cigarette/rollie/mindbreaker, +/obj/item/clothing/mask/cigarette/rollie/mindbreaker, +/obj/item/clothing/mask/cigarette/rollie/mindbreaker, +/obj/item/clothing/mask/cigarette/rollie/trippy, +/obj/item/clothing/mask/cigarette/rollie/trippy, +/obj/item/clothing/mask/cigarette/rollie/trippy, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"fF" = ( +/obj/structure/stone_tile/slab, +/obj/structure/statue/sandstone/assistant, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"fS" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/misc/ashwalker_village) +"fV" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"gi" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/item/toy/plush/ratplush, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"gs" = ( +/obj/structure/stone_tile/slab, +/obj/item/shovel/serrated, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"gy" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"gA" = ( +/turf/open/water{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen water" + }, +/area/template_noop) +"gN" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/lizard{ + pixel_x = 32 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"gV" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"gW" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"hi" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/obj/item/trash/raisins, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"hs" = ( +/obj/structure/fence/door, +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"hM" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/bed/maint, +/obj/item/bedsheet/grey, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"hY" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/grey, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"ic" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"in" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"iC" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"iK" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/rack, +/obj/item/clothing/head/helmet/roman/legionnaire, +/obj/item/clothing/head/helmet/roman/legionnaire, +/obj/item/clothing/under/costume/roman, +/obj/item/clothing/under/costume/roman, +/obj/item/clothing/under/costume/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/shoes/roman, +/obj/item/clothing/head/helmet/roman/legionnaire, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"iY" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"jc" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"jD" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"jJ" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/machinery/smartfridge/drying_rack, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"jM" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/burnt, +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Defends-The-Loot" + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"jX" = ( +/obj/structure/stone_tile/slab, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"ka" = ( +/obj/structure/statue/sandstone/assistant{ + name = "the tide master" + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"kf" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ks" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/bed{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"kT" = ( +/obj/structure/stone_tile/slab, +/obj/structure/rack, +/obj/item/spear/bonespear, +/obj/item/spear/bonespear{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/spear/bonespear{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/shield/riot/roman, +/obj/item/shield/riot/roman, +/obj/item/shield/riot/roman, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"lm" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/indestructible/boss, +/area/template_noop) +"mt" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"mF" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mT" = ( +/obj/structure/stone_tile/block/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"mW" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate/wooden{ + name = "jerky ssstorage" + }, +/obj/item/stack/sheet/animalhide/goliath_hide, +/obj/item/stack/sheet/animalhide/goliath_hide, +/obj/item/stack/sheet/animalhide/goliath_hide, +/obj/item/stack/sheet/animalhide/goliath_hide, +/obj/item/stack/sheet/animalhide/goliath_hide, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/obj/item/food/meat/steak/goliath, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"nE" = ( +/obj/item/food/grown/ash_flora/mushroom_leaf, +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"nJ" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"nQ" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/item/clothing/shoes/bronze, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"nW" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"oj" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/bed{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"os" = ( +/obj/structure/stone_tile/slab, +/obj/structure/statue/bananium/clown{ + name = "the funny man" + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"oR" = ( +/obj/structure/rack, +/obj/structure/stone_tile/slab, +/obj/item/shovel/spade, +/obj/item/shovel/spade{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"pn" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block/burnt, +/obj/item/seeds/cotton/durathread, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"po" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pH" = ( +/obj/structure/stone_tile/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pW" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"qx" = ( +/obj/structure/stone_tile/burnt, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"rB" = ( +/obj/structure/rack, +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"rD" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 1 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"rE" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/rock, +/area/template_noop) +"rO" = ( +/obj/structure/closet/crate/wooden, +/obj/item/food/grown/ash_flora/cactus_fruit, +/obj/item/food/grown/ash_flora/cactus_fruit, +/obj/item/food/grown/ash_flora/cactus_fruit, +/obj/item/food/grown/ash_flora/mushroom_cap, +/obj/item/food/grown/ash_flora/mushroom_cap, +/obj/item/food/grown/ash_flora/mushroom_leaf, +/obj/item/food/grown/ash_flora/mushroom_leaf, +/obj/item/food/grown/ash_flora/mushroom_leaf, +/obj/item/food/grown/ash_flora/mushroom_leaf, +/obj/item/food/grown/ash_flora/mushroom_stem, +/obj/item/food/grown/ash_flora/mushroom_stem, +/obj/item/food/grown/ash_flora/shavings, +/obj/item/food/grown/ash_flora/shavings, +/obj/item/food/grown/ash_flora/shavings, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"sl" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"sJ" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/burnt, +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"sO" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"sR" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"te" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Pops-And-Locks" + }, +/obj/structure/chair/stool/bamboo, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tj" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"to" = ( +/obj/structure/table/wood, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"tB" = ( +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tG" = ( +/obj/structure/stone_tile/slab/burnt, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Harvests-The-Crop" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"tJ" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"uS" = ( +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"vj" = ( +/obj/structure/stone_tile/block/burnt, +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"vp" = ( +/obj/structure/stone_tile/slab, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/patriot{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"vt" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"vz" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"wv" = ( +/obj/structure/bed/dogbed, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"wx" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/iron, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"wJ" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"wX" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 6 + }, +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"xm" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center, +/obj/structure/statue/bone/skull, +/turf/open/indestructible/boss, +/area/template_noop) +"xr" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block/burnt, +/obj/item/cultivator/rake, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"xE" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"xN" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/closet/crate/miningcar{ + name = "ssshiniesss box" + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/stack/sheet/mineral/diamond{ + amount = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 6 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 4 + }, +/obj/item/stack/sheet/mineral/bananium{ + amount = 10 + }, +/obj/item/pickaxe/drill/jackhammer, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"xR" = ( +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"xV" = ( +/obj/machinery/hydroponics/soil, +/obj/structure/stone_tile/block/burnt, +/obj/item/seeds/chili/ghost, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"ys" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/obj/structure/mineral_door/iron, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"yv" = ( +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"yG" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"zE" = ( +/obj/structure/statue/bone/skull/half{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"zK" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Sows-The-Seed" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"zO" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Aa" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Ak" = ( +/obj/structure/stone_tile/block, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Commences-The-Shuffle" + }, +/obj/structure/chair/stool/bamboo, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ap" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"Aq" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"AW" = ( +/obj/structure/flora/rock, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"AY" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"AZ" = ( +/obj/structure/statue/bone/skull/half, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Be" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"Bv" = ( +/obj/structure/stone_tile/block/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"BI" = ( +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/burnt, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"BT" = ( +/turf/closed/wall/mineral/wood, +/area/template_noop) +"Co" = ( +/obj/structure/mineral_door/iron, +/obj/structure/stone_tile/slab/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Cp" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CB" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"CH" = ( +/obj/structure/stone_tile/block/burnt, +/obj/structure/stone_tile/burnt{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"CJ" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"CK" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/mineral_door/iron, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"CX" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Dg" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"EB" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Fo" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Waggles-The-Finger" + }, +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Fr" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 3 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"FF" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/bed/maint, +/obj/item/bedsheet/ian, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Gf" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/obj/structure/necropolis_gate, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Gy" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/item/clothing/mask/fakemoustache, +/obj/item/food/butterbiscuit{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"GQ" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Hc" = ( +/obj/structure/stone_tile/surrounding/burnt, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Hf" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"Ht" = ( +/obj/structure/fence, +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Iw" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"IG" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Drops-It-Low" + }, +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Jc" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"Ji" = ( +/obj/structure/stone_tile/block/burnt, +/turf/open/chasm/lavaland, +/area/template_noop) +"Ju" = ( +/obj/item/kitchen/knife/combat/bone, +/obj/structure/rack, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"JE" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"JG" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Guards-The-Bridge" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Kh" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/closet/crate/trashcart{ + name = "ssspacewalker foodiessss" + }, +/obj/item/food/sosjerky, +/obj/item/food/sosjerky, +/obj/item/food/no_raisin, +/obj/item/food/no_raisin, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/food/chocolatebar, +/obj/item/food/chocolatebar, +/obj/item/food/candy, +/obj/item/food/candy, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"KJ" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KR" = ( +/mob/living/simple_animal/hostile/asteroid/gutlunch/guthen, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Lp" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/mineral_door/iron, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Lt" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"LH" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = 32 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"LT" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Mc" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/item/trash/candy, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Mg" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 5 + }, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Mp" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Mx" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"MI" = ( +/obj/structure/rack, +/obj/structure/stone_tile/slab, +/obj/item/cultivator/rake, +/obj/item/cultivator/rake{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Ni" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"ND" = ( +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"NS" = ( +/obj/structure/stone_tile/block, +/turf/open/chasm/lavaland, +/area/template_noop) +"Od" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Splashes-The-Water" + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"Oe" = ( +/turf/template_noop, +/area/template_noop) +"Om" = ( +/obj/item/trash/can, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"OL" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"OO" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) +"OU" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Pj" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/chasm/lavaland, +/area/template_noop) +"Pk" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"Pv" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"PN" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ql" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/closet/crate/secure/engineering{ + name = "ssspacewalker toolsss" + }, +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Qy" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/chasm/lavaland, +/area/template_noop) +"QF" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Rf" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/item/trash/candy, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Rj" = ( +/obj/structure/stone_tile/slab, +/obj/structure/bed/maint, +/obj/item/bedsheet/captain, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Ry" = ( +/obj/structure/stone_tile/burnt{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"RS" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Sj" = ( +/obj/structure/stone_tile/slab, +/obj/structure/bed/maint, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Sk" = ( +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"So" = ( +/obj/structure/stone_tile/slab/cracked, +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/costume/gladiator/ash_walker, +/obj/item/clothing/head/helmet/gladiator, +/obj/item/clothing/under/costume/lobster, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Sq" = ( +/turf/closed/indestructible/riveted/boss, +/area/awaymission/caves/misc/ashwalker_village) +"SE" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"SN" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Kicks-The-Sand" + }, +/turf/open/floor/plating/asteroid{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15"; + name = "ashen sand" + }, +/area/template_noop) +"SX" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"SY" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/burnt, +/turf/open/chasm/lavaland, +/area/template_noop) +"Ts" = ( +/obj/structure/statue/bone/rib, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"TT" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/burnt{ + dir = 8 + }, +/obj/item/trash/can, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Ue" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Uy" = ( +/obj/item/pickaxe/diamond, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"Vn" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Shouts-At-The-Abyss" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"VQ" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wc" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Tends-The-Crab" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wd" = ( +/obj/structure/stone_tile/slab, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/brown{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Wg" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/closet/crate/science, +/obj/item/stack/sheet/mineral/plasma/thirty, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Wi" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Wk" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wv" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"WN" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"WQ" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Cuts-The-Shrooms" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xh" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xs" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xy" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/chasm/lavaland, +/area/template_noop) +"Ya" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Yc" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"YM" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/bed/maint, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"Zj" = ( +/obj/structure/closet/crate/wooden, +/obj/effect/spawner/random/food_or_drink/seed_rare, +/obj/effect/spawner/random/food_or_drink/seed_rare, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed, +/obj/effect/spawner/random/food_or_drink/seed_rare, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/ashwalker_village) +"Zz" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/closet/crate/wooden, +/obj/item/clothing/under/costume/gladiator/ash_walker, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) +"ZU" = ( +/turf/closed/wall/mineral/wood, +/area/awaymission/caves/misc/ashwalker_village) +"ZW" = ( +/obj/structure/stone_tile/slab/burnt, +/turf/open/indestructible/boss, +/area/awaymission/caves/misc/ashwalker_village) + +(1,1,1) = {" +rE +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +Oe +"} +(2,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(3,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(4,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(5,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(6,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(7,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(8,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(9,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Mx +AY +AY +AY +AY +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(10,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +Wk +RS +Wk +AY +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(11,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(12,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +OO +OO +OO +OO +OO +OO +OO +AY +AY +Oe +"} +(13,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Oe +"} +(14,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +Wk +Wk +AY +AY +Wk +Wk +Wk +AY +Wk +Wk +Wk +RS +RS +AY +AY +AY +AY +AY +AY +AY +AY +Oe +"} +(15,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +RS +AY +AY +AY +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +Oe +"} +(16,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Wk +AY +AY +AY +Lt +RS +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +Oe +"} +(17,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +AY +AY +Lt +RS +Wk +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +Oe +"} +(18,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +AY +AY +Oe +"} +(19,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +AY +Wk +Wk +Wk +AY +AY +Oe +"} +(20,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +AY +AY +Oe +"} +(21,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +AY +Xh +Wk +Wk +AY +Wk +Wk +Wk +RS +Wk +AY +AY +AY +AY +AY +Wk +Wk +Wk +AY +AY +Oe +"} +(22,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +Xh +RS +Xh +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +Wk +Wk +Wk +AY +AY +AY +Oe +"} +(23,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +Xh +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +Wk +AY +Wk +Wk +Wk +AY +AY +AY +Oe +"} +(24,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +AY +Lt +RS +Wk +Wk +Wk +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +Oe +"} +(25,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +AY +AY +Wk +Wk +Wk +AY +OO +OO +AY +Wk +Wk +Wk +Wk +RS +Wk +Wk +AY +AY +AY +AY +Oe +"} +(26,1,1) = {" +yG +AY +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +OO +OO +AY +AY +Wk +Wk +Wk +AY +OO +OO +AY +Wk +Wk +RS +RS +Lt +RS +RS +OO +OO +OO +AY +Oe +"} +(27,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +AY +OO +OO +AY +AY +Wk +RS +Lt +Lt +RS +AY +OO +OO +OO +AY +Oe +"} +(28,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +RS +AY +OO +OO +OO +OO +AY +AY +AY +AY +AY +AY +OO +OO +OO +AY +Oe +"} +(29,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +RS +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(30,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(31,1,1) = {" +yG +AY +AY +AY +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 +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(32,1,1) = {" +yG +AY +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 +SX +SX +SX +SX +SX +Ts +Wk +Wk +Wk +Wk +Ts +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(33,1,1) = {" +yG +AY +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 +SX +SX +SX +SX +SX +SX +SY +eC +sO +Xy +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +OO +OO +AY +Oe +"} +(34,1,1) = {" +yG +AY +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 +SX +SX +SX +SX +SX +SX +rD +eC +sO +pW +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +OO +OO +AY +Oe +"} +(35,1,1) = {" +yG +AY +AY +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 +SX +SX +SX +SX +SX +Be +Qy +eC +NS +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +OO +OO +AY +Oe +"} +(36,1,1) = {" +yG +AY +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 +SX +SX +SX +SX +SX +SX +rD +eC +eC +NS +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +OO +OO +OO +OO +AY +Oe +"} +(37,1,1) = {" +yG +AY +AY +AY +AY +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 +SX +SX +SX +fV +eC +Qy +Ji +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +OO +OO +OO +OO +AY +Oe +"} +(38,1,1) = {" +yG +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Wk +Wk +Wk +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Xy +eC +Qy +Pj +SX +SX +Wk +Wk +Wk +AY +AY +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(39,1,1) = {" +yG +AY +AY +AY +AY +Wk +RS +RS +RS +Wk +Wk +Wk +RS +RS +Lt +Wk +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Ts +Vn +Wk +Wk +JG +Ts +Wk +Wk +Wk +Wk +Wk +Wk +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(40,1,1) = {" +yG +AY +AY +AY +AY +RS +Lt +RS +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +PN +QF +sR +Wk +Wk +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(41,1,1) = {" +yG +AY +AY +AY +Lt +Wk +RS +Wk +Wk +Wk +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +RS +RS +Lt +RS +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Aq +gV +Bv +Wk +AY +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(42,1,1) = {" +yG +AY +AY +AY +RS +Wk +Wk +Wk +Wk +Wk +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Lt +RS +kf +wX +vz +Wk +AY +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(43,1,1) = {" +yG +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Wk +Wk +Wk +ZU +Sq +ZU +ZU +ZU +Wk +Lt +RS +Wk +Wk +Sq +Sq +Sq +ZU +ZU +Wk +Wk +Wk +Wk +RS +RS +RS +RS +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +AY +AY +Oe +"} +(44,1,1) = {" +yG +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Wk +Wk +RS +Wk +Wk +RS +Wk +Wk +ZU +Sq +ND +xE +Rj +Sq +ZU +Wk +Wk +Wk +ZU +Sq +Sj +bQ +ND +Sq +Sq +Wk +Wk +Wk +Lt +RS +RS +AW +Lt +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Oe +"} +(45,1,1) = {" +yG +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +VQ +Wk +RS +Lt +Wk +Wk +RS +Wk +Wk +Sq +eV +CJ +OU +Aa +ND +ZU +Wk +Wk +Wk +ZU +cY +CJ +OU +Aa +Wd +Sq +Wk +Wk +Wk +Wk +RS +Lt +Lt +Wk +Wk +Wk +Wk +Sq +ZU +Sq +ZU +fS +fS +fS +fS +AY +AY +Oe +"} +(46,1,1) = {" +yG +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Lt +Wk +Wk +Sq +bQ +iY +CJ +sJ +ND +bO +tj +tj +Xs +Sq +Wi +iY +CJ +sJ +bb +Sq +Wk +Wk +Wk +Wk +RS +Wk +RS +Wk +Wk +Wk +Wk +Jc +Pv +Yc +oR +rB +Dg +Pv +fS +AY +AY +Oe +"} +(47,1,1) = {" +yG +AY +CB +CB +CB +CB +Wk +VQ +Wk +Wk +CB +CB +Wk +Wk +Lt +Lt +RS +Wk +Sq +Zz +Aa +BI +CJ +ZW +ZU +Wk +Wk +Xs +Sq +oj +Aa +BI +CJ +Zz +ZU +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Jc +Pv +Pv +sl +sl +Pv +Pv +fS +AY +AY +Oe +"} +(48,1,1) = {" +yG +CB +CB +CB +CB +CB +CB +CB +Wk +VQ +CB +CB +CB +RS +RS +RS +RS +Wk +ZU +ZU +bs +Gy +ZW +ZU +ZU +Wk +Wk +tj +Sq +ZU +cY +ND +ZW +ZU +ZU +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Jc +gW +bo +gW +WN +jD +Ni +Pv +AY +AY +Oe +"} +(49,1,1) = {" +AY +AY +AY +CB +CB +CB +CB +CB +Wk +CB +CB +CB +CB +Wk +VQ +Wk +Wk +Wk +KJ +ZU +ZU +Sq +Sq +Sq +RS +Wk +Wk +tj +Wk +ZU +ZU +CK +ZU +Sq +Ts +tj +tj +tj +tj +Xs +Xs +tj +tj +tj +tj +Wv +Jc +xV +bo +gW +Ni +gW +bo +Pv +AY +AY +Oe +"} +(50,1,1) = {" +AY +AY +AY +CB +xR +lm +yv +CB +CB +iC +CB +Wk +VQ +Wk +CB +Wk +RS +Wk +Wv +Wv +Wv +Wv +tj +tj +Xs +Xs +Xs +Xs +Xs +Wv +tj +tj +Wv +Wv +Xs +tj +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +tj +Jc +gW +WN +tJ +bo +jD +bo +Pv +AY +AY +Oe +"} +(51,1,1) = {" +AY +AY +AY +CB +vt +xm +lm +CB +bt +CB +bt +CB +CB +Wk +CB +KJ +Wk +Wv +Xs +ZU +Sq +Sq +ZU +ZU +Sq +ZU +ZU +AZ +tj +Wk +Wk +Wk +Wk +RS +tj +Wk +ZU +Sq +Sq +ZU +ZU +Wk +Wk +RS +RS +tj +Jc +xr +WN +xV +WN +tJ +Ni +fS +AY +AY +Oe +"} +(52,1,1) = {" +AY +AY +AY +AY +Ry +lm +qx +bt +iC +iC +iC +bt +CB +CB +CB +AZ +Wk +Wv +ZU +Sq +Wg +ZW +os +ZU +mW +ND +Sq +Sq +tj +Wk +Iw +Fo +cg +Wk +tj +ZU +Sq +bQ +ND +ND +Sq +ZU +Wk +Wk +Wk +tj +hs +Ni +Ni +zK +Ni +bo +bo +Pv +AY +AY +Oe +"} +(53,1,1) = {" +yG +CB +AY +AY +CB +CB +mT +ck +lm +lm +lm +CH +iC +iC +iC +iC +Hc +Wv +ZU +Ql +CJ +OU +iY +iY +OU +Aa +ND +Sq +Wv +OL +PN +QF +sR +cg +tj +ZU +wJ +CJ +OU +Aa +vp +Sq +Wk +Wk +Wk +tj +Jc +gW +WN +gW +bo +jD +bo +fS +AY +AY +Oe +"} +(54,1,1) = {" +yG +CB +AY +AY +CB +ck +CB +ck +vt +bN +zO +dX +nJ +Ya +jc +in +Ya +mt +Sq +ND +cM +CJ +ZW +Mc +CJ +jM +ND +Gf +tj +te +Aq +gV +Bv +Ak +tj +Lp +ND +iY +CJ +sJ +bQ +ZU +Wk +Wk +Wk +tj +Jc +gW +bo +tJ +Ni +pn +bo +fS +AY +AY +Oe +"} +(55,1,1) = {" +yG +CB +AY +AY +AY +CB +mT +ck +lm +lm +vt +vj +bt +bt +bt +bt +Hc +Wv +Sq +xN +Aa +Rf +TT +OU +BI +hi +ZW +ZU +tj +tB +kf +wX +vz +pH +tj +Sq +jJ +Aa +BI +CJ +Zz +Sq +Wk +Wk +Wk +tj +Jc +gW +bo +jD +WN +jD +WN +Pv +AY +AY +Oe +"} +(56,1,1) = {" +yG +CB +CB +AY +AY +lm +yv +iC +bt +bt +bt +iC +CB +CB +CB +zE +KJ +tj +ZU +Sq +fr +fF +Kh +ZU +kT +iK +ZU +ZU +tj +Wk +tB +IG +pH +Wk +Xs +ZU +ZU +ks +gN +ZW +ZU +ZU +Wk +RS +Wk +tj +hs +tG +WN +bo +gs +Ni +bo +Pv +AY +AY +Oe +"} +(57,1,1) = {" +yG +CB +CB +CB +lm +xm +vt +CB +iC +CB +iC +CB +CB +CB +Wk +VQ +Wk +Xs +tj +ZU +ZU +ZU +ZU +Sq +Sq +Sq +ZU +zE +Wv +RS +Wk +Wk +Wk +Wk +Xs +Wk +ZU +ZU +Sq +Sq +ZU +Wk +Wk +Wk +Wk +tj +Jc +gW +bo +jD +bo +jD +bo +Zj +AY +AY +Oe +"} +(58,1,1) = {" +yG +CB +CB +CB +Ry +vt +qx +CB +CB +bt +CB +CB +CB +CB +Wk +Wk +Wk +Wk +tj +tj +tj +Xs +Xs +Wv +tj +tj +Wv +tj +tj +Wv +tj +tj +Wv +Wv +Xs +Xs +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +Wk +tj +Jc +gW +Ni +jD +bo +tJ +bo +Zj +AY +AY +Oe +"} +(59,1,1) = {" +yG +AY +CB +CB +CB +AY +AY +CB +CB +CB +CB +CB +Wk +Wk +KJ +Wk +RS +Wk +VQ +ZU +ZU +Sq +Sq +Sq +Wk +Wk +Wk +Wv +Wk +Sq +Sq +wx +ZU +ZU +Ts +Xs +Wv +Wv +Wv +tj +Wv +Wv +tj +tj +tj +tj +Jc +pn +WN +pn +bo +jD +WN +Pv +AY +AY +Oe +"} +(60,1,1) = {" +yG +AY +CB +CB +CB +AY +AY +CB +CB +CB +Wk +Wk +Wk +VQ +Wk +RS +Lt +RS +ZU +Sq +jX +bQ +ND +Sq +Sq +Wk +Wk +Wv +Sq +Sq +ND +ND +ND +Sq +Sq +Wv +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +tj +Wk +Jc +gW +bo +jD +WN +jD +WN +fS +AY +AY +Oe +"} +(61,1,1) = {" +yG +RS +CB +CB +CB +AY +AY +CB +CB +CB +CB +CB +CB +Wk +Lt +RS +RS +RS +Sq +So +CJ +OU +Aa +ND +Sq +Wk +Wk +tj +Sq +cY +CJ +OU +Aa +jX +Sq +Wv +Wk +Wk +Wk +PN +QF +sR +Wk +Wk +Wv +Wk +Jc +Pv +Pv +Pk +Pk +Pv +Pv +fS +AY +AY +Oe +"} +(62,1,1) = {" +yG +RS +Wk +CB +CB +AY +AY +AY +CB +CB +CB +CB +CB +CB +RS +RS +RS +RS +Sq +LH +iY +CJ +sJ +ND +ys +tj +tj +tj +Sq +nQ +iY +CJ +sJ +bQ +Sq +Wv +Wk +Wk +Wk +Aq +gV +Bv +Wk +Wk +Wv +Wk +Jc +Pv +Yc +MI +rB +Dg +Pv +Uy +AY +AY +Oe +"} +(63,1,1) = {" +yG +Wk +Fr +CB +CB +CB +AY +AY +CB +CB +CB +CB +CB +AY +AY +AY +AY +AY +Sq +YM +Aa +BI +CJ +ZW +ZU +Wk +Wk +Wk +ZU +hM +Aa +BI +CJ +Zz +ZU +Xs +Wk +Wk +Wk +kf +wX +vz +Wk +Wk +Wv +Wk +Sq +ZU +Sq +Sq +Sq +fS +fS +fS +AY +AY +Oe +"} +(64,1,1) = {" +yG +AY +RS +Wk +CB +CB +AY +AY +CB +CB +CB +CB +CB +AY +AY +AY +AY +AY +ZU +ZU +cY +bQ +FF +ZU +ZU +Wk +Wk +RS +ZU +ZU +cY +gi +hY +ZU +ZU +Xs +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Xs +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +OO +OO +Oe +"} +(65,1,1) = {" +yG +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Sq +Sq +ZU +ZU +ZU +Wk +Wk +Wk +Wk +Wk +ZU +ZU +Sq +Sq +ZU +Wk +Wv +BT +mF +mF +mF +Ht +ic +mF +Hf +Wv +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +OO +OO +Oe +"} +(66,1,1) = {" +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +AY +AY +AY +Wk +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wv +Mp +wv +Wk +Wk +Aq +Ue +wv +Mp +Wv +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +OO +OO +OO +Oe +"} +(67,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wv +CX +Wk +Wk +Wk +Wk +Mg +Wk +Mp +Wv +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +Oe +"} +(68,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +AY +AY +RS +RS +Wk +Wk +Wk +Wv +Mp +Wk +KR +Wk +Wk +Wk +Wk +Mp +Wv +Wv +Wv +Wv +Xs +Xs +Wv +Wk +AY +AY +OO +OO +Oe +"} +(69,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +AY +AY +AY +RS +RS +Wk +Wk +Wv +Mp +Wk +Wk +uS +KR +Wk +Wk +Mp +Xs +Wk +Wk +Wk +Wk +Wk +Wv +Wv +BT +AY +AY +AY +Oe +"} +(70,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +gA +AY +AY +AY +AY +AY +Lt +RS +Wk +Wk +Xs +Mp +Wc +Wv +gy +JE +Wk +Wk +Mp +Wv +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Xs +AY +AY +AY +Oe +"} +(71,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +gA +gA +gA +gA +gA +gA +AY +AY +Lt +RS +Wk +Wk +Wv +Mp +LT +Wv +EB +aX +Wk +Wk +Mp +Wv +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wv +AY +AY +AY +Oe +"} +(72,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +gA +gA +gA +gA +gA +gA +AY +AY +AY +RS +Wk +Wk +Wv +Mp +Wk +aa +Wk +Wk +Wk +Wk +CX +Wv +Wk +PN +QF +sR +Wk +Wk +Wk +Wv +BT +AY +AY +Oe +"} +(73,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +gA +gA +gA +gA +gA +AY +AY +RS +Wk +Wk +Wv +Mp +wv +Wk +Wk +Wk +Wk +wv +Mp +Wk +Wk +Aq +gV +Bv +Wk +Wk +BT +Co +Hf +AY +AY +Oe +"} +(74,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +gA +Sk +gA +gA +gA +AY +AY +Wk +Wk +Wk +Wv +Hf +po +po +nW +nW +GQ +nW +Hf +Wk +Wk +kf +wX +vz +Wk +Wk +Hf +Wk +Wk +AY +AY +Oe +"} +(75,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +gA +Sk +Sk +Sk +gA +AY +AY +Wk +Wk +Wk +Wv +Wk +Wk +Wk +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +AY +Hf +Wk +Wk +AY +AY +Oe +"} +(76,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +Sk +Sk +Sk +Sk +gA +AY +BT +Wk +Wk +Wk +Wv +Wk +Wk +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +RS +Wk +AY +nE +Wk +Wk +AY +AY +Oe +"} +(77,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +gA +Sk +SN +Sk +Sk +Sk +AY +BT +Wk +Wk +Wk +Wv +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Lt +RS +RS +AY +rO +Wk +Wk +Wk +AY +Oe +"} +(78,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +dJ +Ap +Sk +Sk +Sk +Wk +Wk +BT +Hf +Wk +Wk +Wv +Wk +Wk +Wk +Wk +Wk +Wk +AY +Wk +Wk +Wk +Wk +RS +RS +AY +AY +Ju +Wk +Wk +Wk +AY +Oe +"} +(79,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +to +Sk +Om +Sk +Wk +Wk +Wk +Wk +do +Xs +Xs +Xs +Wk +Wk +Wk +Wk +Wk +AY +AY +Wk +Wk +Wk +Wk +Wk +AY +AY +VQ +Wk +WQ +Wk +SE +AY +Oe +"} +(80,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +Sk +Od +Sk +dY +Sk +Sk +Wk +Wk +Wk +Hf +Hf +AY +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +Wk +Wk +Wk +Wk +AY +AY +VQ +VQ +RS +SE +SE +SE +Oe +"} +(81,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +Sk +Sk +Sk +Sk +Sk +Wk +Wk +Wk +Wk +BT +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +AY +RS +Wk +Wk +Wk +Wk +AY +AY +AY +VQ +VQ +RS +Wk +SE +SE +Oe +"} +(82,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +Sk +Sk +dY +Sk +Sk +Sk +Sk +Wk +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +RS +Lt +RS +Wk +Wk +Wk +AY +AY +AY +RS +RS +RS +Wk +Wk +SE +Oe +"} +(83,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +ka +Sk +Sk +Sk +dY +Sk +Sk +Wk +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +RS +Lt +Lt +RS +Wk +Wk +AY +AY +AY +RS +Lt +RS +Wk +KJ +Wk +Oe +"} +(84,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +Sk +Sk +Sk +Sk +Sk +Sk +Wk +Wk +AY +AY +AY +RS +Wk +Wk +Wk +Wk +RS +Lt +Lt +RS +RS +RS +Wk +AY +AY +Wk +RS +Xh +Xh +Xh +RS +RS +Oe +"} +(85,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +AY +RS +Lt +RS +Wk +Wk +RS +RS +RS +RS +Wk +Wk +AY +AY +AY +AY +Wk +Wk +Xh +Xh +Wk +Lt +RS +Oe +"} +(86,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +RS +RS +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +OO +Wk +KJ +Wk +Wk +Wk +RS +AY +Oe +"} +(87,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +SX +SX +SX +SX +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +OO +AY +Cp +Cp +KJ +Wk +RS +AY +Oe +"} +(88,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +Wk +Ts +Wk +Wk +Wk +Wk +Ts +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +AY +Cp +Cp +Wk +Wk +Wk +AY +Oe +"} +(89,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SY +eC +sO +Xy +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +Cp +Cp +Cp +Wk +Xh +AY +Oe +"} +(90,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +rD +eC +sO +pW +SX +SX +SX +SX +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +Cp +Cp +Cp +Wk +Xh +AY +Oe +"} +(91,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +SX +Be +Qy +eC +NS +SX +SX +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +AY +AY +Wk +KJ +AY +AY +Oe +"} +(92,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +rD +eC +eC +NS +SX +SX +SX +SX +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +AY +AY +Wk +Wk +AY +AY +Oe +"} +(93,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +SX +SX +SX +SX +SX +SX +SX +SX +SX +fV +eC +Qy +Ji +SX +SX +SX +SX +SX +SX +SX +Wk +AY +AY +AY +OO +AY +OO +OO +OO +OO +OO +Oe +"} +(94,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +SX +SX +SX +SX +SX +Wk +Wk +Wk +SX +SX +SX +Xy +eC +Qy +Pj +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +OO +OO +OO +OO +OO +Oe +"} +(95,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +SE +Wk +Wk +Wk +Wk +Wk +Ts +Wk +Wk +Wk +Wk +Ts +SX +SX +SX +SX +SX +SX +SX +SX +SX +AY +AY +AY +AY +AY +AY +AY +AY +Oe +"} +(96,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +Wk +Wk +Wk +SE +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +SX +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +SE +Wk +AY +Oe +"} +(97,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +SE +Wk +Wk +Wk +Wk +Wk +Wk +RS +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +SE +Wk +Wk +Wk +Oe +"} +(98,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +Wk +SE +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +RS +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Oe +"} +(99,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +SE +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +OO +OO +OO +OO +OO +OO +AY +AY +RS +Wk +Wk +Wk +Wk +Oe +"} +(100,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +Wk +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +RS +RS +Wk +Wk +Wk +Oe +"} +(101,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +Wk +RS +Lt +RS +Wk +Wk +SE +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +Lt +RS +Wk +Wk +Wk +Oe +"} +(102,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +AY +Wk +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +RS +RS +Wk +SE +AY +Oe +"} +(103,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +AY +Wk +Wk +RS +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +RS +Wk +Wk +Wk +AY +Oe +"} +(104,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +Wk +Wk +Wk +Wk +AY +Oe +"} +(105,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +Wk +Wk +Wk +Wk +AY +Oe +"} +(106,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +RS +RS +RS +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +AY +Oe +"} +(107,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +RS +RS +Lt +RS +AY +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +AY +AY +Oe +"} +(108,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +RS +RS +Wk +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +Wk +Wk +Wk +SE +AY +AY +Oe +"} +(109,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +SE +SE +AY +OO +Oe +"} +(110,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +AY +AY +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +SE +RS +AY +OO +Oe +"} +(111,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +RS +RS +AY +OO +Oe +"} +(112,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +RS +RS +AY +OO +Oe +"} +(113,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +Lt +AY +OO +Oe +"} +(114,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Wk +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +RS +RS +AY +OO +Oe +"} +(115,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Wk +Wk +Wk +Wk +Wk +Wk +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +Oe +"} +(116,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +OO +Oe +"} +(117,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +AY +AY +AY +Wk +Wk +RS +RS +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +OO +Oe +"} +(118,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +AY +AY +AY +AY +AY +AY +Wk +Wk +Wk +Wk +Wk +Wk +Wk +Wk +AY +AY +AY +AY +AY +AY +OO +Oe +"} +(119,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +OO +OO +OO +Oe +"} +(120,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(121,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +OO +AY +Oe +"} +(122,1,1) = {" +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +Oe +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +AY +Oe +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment1_b.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment1_b.dmm new file mode 100644 index 000000000000..11c87e546648 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment1_b.dmm @@ -0,0 +1,8167 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"aO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating, +/area/template_noop) +"aV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/item/construction/rld, +/obj/item/construction/plumbing, +/obj/item/pipe_dispenser, +/obj/structure/closet/crate/engineering, +/turf/open/floor/plating, +/area/template_noop) +"bu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"bT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"bU" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"cb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"cu" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"cW" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"dg" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"dm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"dx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"fE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/turf/open/floor/plating, +/area/template_noop) +"gc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/template_noop) +"gH" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"hq" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"hJ" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hR" = ( +/obj/structure/frame/computer{ + dir = 4; + name = "busted computer frame" + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"ir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"iX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"jf" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/crusher_trophy/legion_skull, +/obj/effect/mob_spawn/human/corpse/miner/explorer/caves{ + brute_damage = 200 + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"jo" = ( +/mob/living/simple_animal/hostile/asteroid/goliath/beast/ancient, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/template_noop) +"kh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"kk" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"lp" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"lA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"mn" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/template_noop) +"mV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/template_noop) +"ng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"nj" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"ns" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"nI" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) +"oI" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"pk" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"pP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear/red{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"qv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/turf/open/floor/plating, +/area/template_noop) +"qx" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"rb" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"rg" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"rq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"rx" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"rz" = ( +/obj/machinery/porta_turret/syndicate/pod{ + integrity_failure = 0.1; + max_integrity = 120 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"rD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/gibspawner/human{ + name = "poor bastard" + }, +/turf/open/floor/plating, +/area/template_noop) +"rF" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/rock, +/area/template_noop) +"rY" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/deployable_turret{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/storage/bag/ore, +/turf/open/floor/plating, +/area/template_noop) +"sC" = ( +/obj/structure/ore_box, +/turf/open/space/basic, +/area/template_noop) +"tb" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"um" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"uy" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury{ + icon_state = "luxpen0"; + list_reagents = list(); + name = "used luxury medipen"; + pixel_x = -11; + pixel_y = -8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"uF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"uX" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"vc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/turf/open/floor/plating, +/area/template_noop) +"vy" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"vF" = ( +/turf/closed/indestructible/necropolis, +/area/template_noop) +"wV" = ( +/obj/structure/flora/rock, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"xu" = ( +/turf/closed/wall, +/area/template_noop) +"xA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/secure/engineering{ + req_access_txt = "away_engineering" + }, +/obj/item/construction/rcd, +/obj/item/rcd_ammo, +/obj/item/rcd_ammo, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating, +/area/template_noop) +"xB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"xH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/emptysandbag, +/turf/open/floor/plating, +/area/template_noop) +"yH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"yX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate, +/obj/item/stack/sheet/cardboard{ + amount = 25 + }, +/turf/open/floor/plating, +/area/template_noop) +"At" = ( +/obj/item/pickaxe/diamond, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ax" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Be" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/barricade/sandbags, +/turf/open/floor/plating, +/area/template_noop) +"By" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"BG" = ( +/obj/structure/flora/rock/pile, +/turf/open/indestructible/necropolis, +/area/template_noop) +"BK" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Ch" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Ck" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/hypospray/medipen/stimpack{ + icon_state = "stimpen0"; + list_reagents = list(); + name = "used stimpack medipen"; + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"CY" = ( +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Ea" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ej" = ( +/obj/item/gibtonite{ + name = "high quality gibtonite ore"; + quality = 3 + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ER" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Fq" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Gc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/turf/open/floor/plating, +/area/template_noop) +"Ge" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Gq" = ( +/turf/template_noop, +/area/template_noop) +"Hw" = ( +/obj/structure/cable, +/obj/machinery/power/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"HD" = ( +/obj/item/emptysandbag, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"HV" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/kinetic_crusher, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Ii" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"IG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"IT" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"JR" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/item/shard, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Ka" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Kq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"Kr" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plating, +/area/template_noop) +"KN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"Mv" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"MJ" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Na" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"Nx" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"NF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"NH" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"NK" = ( +/obj/item/clothing/head/cone, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Pk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/turf/open/floor/plating, +/area/template_noop) +"PT" = ( +/obj/item/stack/sheet/mineral/sandbags{ + amount = 12 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"PW" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Qg" = ( +/obj/structure/closet/crate/miningcar, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"QH" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"QS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new, +/turf/open/floor/plating, +/area/template_noop) +"QZ" = ( +/obj/effect/turf_decal/siding/blue, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Rc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Rj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/mineral/plasma/five, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Rn" = ( +/obj/structure/frame/computer{ + dir = 8; + name = "busted computer frame" + }, +/obj/item/shard, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"RF" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"RZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Sc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/crusher_trophy/blaster_tubes/magma_wing, +/turf/open/indestructible/necropolis, +/area/template_noop) +"SR" = ( +/obj/effect/turf_decal/siding/blue/corner, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Ts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"Uv" = ( +/obj/structure/spawner/lavaland/legion, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Uw" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/noticeboard/directional/north, +/obj/item/paper{ + info = "Due to a recent cave-in, the drill platform is currently inoperable. The tunnel ahead is blocked by dense debris that more than likely requires an explosive charge to properly blast through. While explosive charges have been requested in the next cargo depot, the Site Director has signed off on usable of gibtonite if any active shards are found in the lower region solely in the use of clearing the current debris."; + name = "drill platform notice" + }, +/turf/open/floor/plating, +/area/template_noop) +"UD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Vh" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Vq" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard{ + desc = "It looks REALLY hard to break through by normal means..."; + hardness = 999999; + name = "collapsed dense rock" + }, +/area/template_noop) +"Vr" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Vt" = ( +/obj/structure/marker_beacon/burgundy, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"VL" = ( +/obj/structure/flora/rock/pile, +/mob/living/simple_animal/hostile/asteroid/basilisk/watcher, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wu" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/template_noop) +"WH" = ( +/obj/item/gibtonite{ + name = "high quality gibtonite ore"; + quality = 3 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Xl" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xo" = ( +/obj/structure/barricade/sandbags, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"XO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plating, +/area/template_noop) +"Ya" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/titanium/blue{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Yf" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/indestructible/necropolis, +/area/template_noop) +"YG" = ( +/turf/closed/wall/mineral/titanium, +/area/template_noop) +"YP" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 3 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"YU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/effect/mob_spawn/human/corpse/miner/explorer/caves{ + brute_damage = 200; + facial_hairstyle = "Moustache (Watson)"; + hairstyle = "Pompadour"; + mob_name = "Jim Joffee" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/template_noop) +"Zk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Zn" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Zw" = ( +/obj/effect/turf_decal/stripes/line, +/mob/living/simple_animal/hostile/asteroid/goliath/beast, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ZU" = ( +/obj/structure/rack, +/obj/item/paper{ + info = "The cavern ahead is infested with a parasitic species capable of hijacking a victim's body once they have succumbed to lethal wounds! DO NOT under any circumstances engage them without a well-equipped group, lest you only add to their numbers! The Site Director has already sent a request for heavy ordance to safely clear out the next so drill expansion may proceed unhindered."; + name = "CAVE WARNING" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +rF +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +Gq +"} +(2,1,1) = {" +oI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +rx +rx +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(3,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +cu +cu +cu +cu +cu +rb +kk +kk +rx +rx +rx +rb +rb +rx +rx +rx +cu +cu +cu +Gq +"} +(4,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +cu +cu +cu +cu +cu +cu +Vh +rb +rx +rx +rx +rb +rx +rx +rx +rx +rx +cu +cu +Gq +"} +(5,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +kk +rx +rx +rx +cu +cu +rx +rx +cu +cu +Gq +"} +(6,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +rx +rx +cu +cu +Gq +"} +(7,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +rx +rx +cu +cu +Gq +"} +(8,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +Rc +lA +aL +rx +Rn +rx +Rc +lA +aL +rx +rx +rx +rx +rx +rx +cu +rx +rx +cu +cu +Gq +"} +(9,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +QH +rx +UD +xu +Vt +tb +iX +bT +bu +xu +Zk +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +cu +Gq +"} +(10,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +IG +Ii +dx +tb +NF +bT +IG +Ii +dx +rx +rx +rx +rb +rb +rx +rx +rx +nI +nI +nI +Gq +"} +(11,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rx +rx +rx +PW +rY +ns +rx +rx +Kr +cu +cu +cu +rb +Vh +rb +rb +rx +nI +nI +nI +Gq +"} +(12,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rx +rx +Ya +pk +vy +BK +lp +Kr +Kr +cu +cu +cu +cu +cu +cu +cu +rx +nI +nI +nI +Gq +"} +(13,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rx +rx +uX +CY +YG +CY +QZ +rx +Kr +cu +cu +cu +cu +cu +cu +cu +rx +nI +nI +nI +Gq +"} +(14,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +rx +rx +rq +rq +hq +qx +hR +SR +um +rx +rx +cu +nI +nI +nI +nI +cu +rx +rx +nI +nI +nI +Gq +"} +(15,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +xu +sa +rq +rx +JR +gH +ER +rx +rx +rb +cu +nI +nI +nI +nI +cu +kk +rx +nI +nI +nI +Gq +"} +(16,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +xu +Uw +rq +rx +tb +NF +bT +rx +rx +rx +cu +nI +nI +nI +nI +cu +kk +rx +nI +nI +nI +Gq +"} +(17,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +xu +xu +rx +rx +tb +QS +bT +rx +rx +rx +cu +nI +nI +nI +nI +cu +rx +rx +nI +nI +nI +Gq +"} +(18,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +rx +rx +tb +NF +bT +rx +rx +cu +cu +cu +cu +cu +cu +cu +rx +rx +nI +nI +nI +Gq +"} +(19,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +Rc +lA +aL +rx +tb +NF +bT +rx +Rc +lA +aL +cu +cu +cu +kk +rx +rx +rx +nI +nI +nI +Gq +"} +(20,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +UD +xu +Vt +rx +tb +QS +bT +rx +bu +xu +Zk +cu +cu +cu +rx +rx +rx +cu +nI +nI +nI +Gq +"} +(21,1,1) = {" +oI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +IG +Ii +dx +rx +tb +NF +bT +rb +IG +Ii +dx +cu +cu +rx +rx +rx +rx +cu +nI +nI +nI +Gq +"} +(22,1,1) = {" +oI +cu +cu +cu +cu +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +cu +Ka +Ka +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +rx +rx +tb +QS +bT +rb +Vh +cu +cu +cu +rx +rx +rx +rx +rx +cu +nI +nI +nI +Gq +"} +(23,1,1) = {" +oI +cu +cu +cu +cu +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +nI +nI +nI +nI +cu +cu +rx +rx +tb +NF +bT +rx +rb +cu +cu +cu +rx +rx +rx +cu +cu +cu +nI +nI +nI +Gq +"} +(24,1,1) = {" +oI +nI +nI +nI +nI +cu +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +cu +cu +cu +Ka +Ka +Ka +cu +cu +Ka +Ka +Ka +cu +nI +nI +nI +nI +cu +Kr +rx +rx +tb +QS +bT +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +cu +nI +nI +nI +Gq +"} +(25,1,1) = {" +oI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +nI +nI +nI +nI +cu +Kr +rx +rx +tb +NF +bT +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +cu +nI +nI +nI +Gq +"} +(26,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +cu +cu +nI +nI +cu +Ea +rx +rx +tb +QS +bT +rx +rx +rx +rx +rx +rx +rx +rx +rx +cu +cu +nI +nI +nI +Gq +"} +(27,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +Ka +Ka +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +cu +cu +Ka +Ka +Ka +cu +nI +nI +cu +Ea +rx +rx +tb +NF +bT +rx +rx +rb +rx +rx +rx +rx +rx +rx +cu +cu +nI +nI +nI +Gq +"} +(28,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +nI +nI +cu +rx +rb +rx +tb +QS +bT +rx +rx +rx +cu +rx +rx +rx +rb +rx +cu +cu +nI +nI +nI +Gq +"} +(29,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Vh +rb +tb +NF +bT +rx +rx +cu +cu +cu +rx +rb +rb +rx +cu +cu +nI +nI +nI +Gq +"} +(30,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +rx +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +cu +cu +Rc +lA +aL +rb +tb +QS +bT +rx +Rc +lA +aL +cu +rx +rx +rb +rx +cu +cu +nI +nI +nI +Gq +"} +(31,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +cu +cu +cu +rx +kk +kk +rx +cu +cu +cu +cu +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +UD +xu +Vt +rb +tb +NF +bT +rx +bu +xu +Zk +cu +rx +rx +rx +rx +cu +cu +nI +nI +nI +Gq +"} +(32,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +cu +cu +rx +rx +rx +kk +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +cu +IG +Ii +dx +rx +tb +QS +bT +rx +IG +Ii +dx +cu +rx +rx +rx +rx +rb +Vh +cu +nI +nI +Gq +"} +(33,1,1) = {" +oI +cu +nI +nI +nI +rx +kk +kk +cu +cu +cu +cu +rx +rx +rx +cu +rx +rx +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +rx +rx +rx +rx +rx +rx +rx +tb +NF +bT +rx +rx +cu +cu +cu +cu +cu +rx +rx +rb +rb +cu +nI +nI +Gq +"} +(34,1,1) = {" +oI +cu +nI +nI +nI +rx +rx +kk +rx +rx +cu +cu +rx +rx +rx +rx +rx +cu +cu +cu +Ka +Ka +Ka +Ka +cu +Ka +Ka +Ka +Ka +Ka +Ka +cu +rx +Ka +Ka +Ka +rx +rx +rx +tb +QS +bT +rb +rx +cu +nI +cu +cu +cu +rb +rx +rx +rx +cu +nI +nI +Gq +"} +(35,1,1) = {" +oI +cu +nI +nI +nI +cu +rx +rx +rx +rx +rx +rb +rb +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +rx +Ka +Ka +Ka +Ka +Ka +Ka +rx +tb +NF +bT +rx +rx +cu +nI +nI +cu +cu +rb +rx +rx +rx +rx +nI +nI +Gq +"} +(36,1,1) = {" +oI +cu +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +Vh +rb +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +rx +rx +rx +rx +rx +tb +QS +bT +rx +cu +cu +nI +nI +cu +cu +rb +rb +rx +rx +rx +cu +cu +Gq +"} +(37,1,1) = {" +oI +cu +nI +nI +nI +cu +cu +vF +vF +vF +cu +cu +rb +rx +NH +vF +cu +cu +rx +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +rx +rx +cu +cu +rx +rx +rb +rx +tb +NF +bT +Fq +cu +cu +nI +nI +nI +nI +Vh +rb +rx +rx +rx +cu +cu +Gq +"} +(38,1,1) = {" +oI +cu +nI +nI +nI +vF +vF +vF +NH +vF +vF +cu +rx +NH +NH +rx +NH +vF +rx +rx +rx +rx +rx +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +rx +rx +cu +cu +cu +rx +rx +Fq +tb +QS +bT +rx +rx +cu +cu +nI +nI +nI +cu +rb +rx +rx +rx +rx +cu +Gq +"} +(39,1,1) = {" +oI +cu +nI +nI +nI +vF +NH +NH +NH +NH +vF +cu +rx +rx +NH +vF +NH +vF +rx +rx +rx +rx +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +cu +cu +rx +rb +rx +tb +NF +bT +rx +rx +cu +cu +nI +nI +nI +cu +cu +rx +rx +rx +rx +cu +Gq +"} +(40,1,1) = {" +oI +cu +nI +nI +nI +vF +vF +vF +NH +rx +rx +NH +rx +rx +NH +NH +NH +NH +rx +rx +rb +rx +rx +rx +rx +rx +rx +rx +rx +Ka +Ka +Ka +Ka +cu +cu +cu +rx +rx +rx +tb +QS +bT +rx +rx +rx +cu +nI +nI +nI +cu +cu +rx +rx +rx +rx +cu +Gq +"} +(41,1,1) = {" +oI +cu +nI +nI +nI +vF +vF +NH +NH +NH +NH +NH +NH +rx +Uv +rx +rx +vF +rx +rb +Vh +rb +rb +rx +rx +cu +cu +cu +cu +Ka +Ka +Ka +Ka +cu +cu +Rc +lA +aL +rx +cW +NF +bT +rx +Rc +lA +aL +cu +cu +nI +nI +nI +cu +rx +rx +rx +cu +Gq +"} +(42,1,1) = {" +oI +nI +nI +cu +cu +vF +NH +NH +Uv +NH +Yf +rx +kk +NH +NH +rx +kk +vF +vF +rx +rb +cu +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +cu +cu +UD +xu +Vt +rx +cW +QS +bT +rx +bu +xu +Zk +cu +cu +nI +nI +nI +cu +cu +rx +rx +cu +Gq +"} +(43,1,1) = {" +oI +nI +nI +cu +vF +vF +rx +NH +NH +NH +Ej +NH +NH +NH +NH +rx +rx +vF +rx +hJ +rx +nI +nI +nI +nI +nI +nI +nI +nI +nI +Ka +cu +cu +cu +cu +IG +Ii +vc +cW +cW +NF +bT +rx +IG +Ii +dx +cu +cu +nI +nI +nI +cu +cu +cu +cu +cu +Gq +"} +(44,1,1) = {" +oI +nI +nI +cu +vF +rx +rx +rx +Yf +NH +NH +HV +NH +NH +NH +rx +NH +rx +hJ +hJ +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +rx +IT +cW +cW +QS +cW +cW +IT +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(45,1,1) = {" +oI +nI +nI +cu +vF +NH +NH +NH +BG +NH +Sc +jf +Yf +NH +NH +NH +NH +NH +rx +rx +cu +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +cu +cW +cW +cW +cW +xB +cW +cW +NF +cW +cW +xB +cW +cW +cW +cW +cW +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(46,1,1) = {" +oI +nI +nI +cu +vF +rx +rb +rb +Vh +BG +NH +WH +Yf +NH +NH +rx +NH +rx +rx +rx +cu +nI +nI +nI +nI +cW +cW +cW +cW +cW +cW +cu +cW +cW +cW +cW +cW +xB +cW +cW +QS +cW +cW +xB +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +cu +Gq +"} +(47,1,1) = {" +oI +nI +nI +cu +cu +Xl +hJ +hJ +NH +NH +Ej +NH +NH +NH +NH +rx +rx +rx +rx +rx +cu +cu +cu +cu +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +cW +xB +cW +cW +NF +cW +cW +xB +cW +cW +cW +cW +cW +cW +cW +cW +cu +cu +cu +cu +Gq +"} +(48,1,1) = {" +oI +nI +nI +cu +cu +Xl +Xl +hJ +rx +rx +NH +NH +rx +NH +rx +rx +rx +rx +cu +cu +cu +cW +cW +cW +cW +cW +cu +cu +cu +cW +cW +cW +cW +cW +cW +cu +rx +xB +cW +cW +QS +cW +cW +xB +cW +cW +cW +cW +cW +cW +cu +cu +cu +cu +cu +cu +Gq +"} +(49,1,1) = {" +oI +nI +nI +cu +cu +cu +vF +rx +rx +rx +NH +NH +NH +NH +NH +NH +rx +rx +cu +cu +cu +cu +cu +cu +cu +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +xB +cW +cW +NF +cW +cW +xB +cW +cW +cW +cW +cW +cW +cu +cu +nI +nI +nI +cu +Gq +"} +(50,1,1) = {" +oI +nI +nI +nI +nI +cu +vF +vF +NH +NH +NH +Uv +NH +NH +NH +NH +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +Ch +cW +cW +QS +cW +cW +Ch +rx +rx +cu +cu +cu +cu +cu +cu +nI +nI +nI +cu +Gq +"} +(51,1,1) = {" +oI +nI +nI +nI +nI +cu +vF +NH +NH +NH +NH +NH +NH +rx +NH +rx +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +rx +rx +tb +NF +cW +rx +rx +rx +rx +cu +cu +cu +cu +cu +cu +nI +nI +nI +cu +Gq +"} +(52,1,1) = {" +oI +nI +nI +nI +nI +cu +vF +vF +NH +vF +NH +NH +rx +rx +vF +vF +cu +rx +rx +rx +rx +cu +cu +cu +cu +xu +cu +cu +cu +cu +NK +rx +rx +rx +rx +Rc +lA +aL +rx +tb +NF +cW +rx +Rc +lA +aL +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(53,1,1) = {" +oI +nI +nI +nI +nI +cu +cu +vF +NH +vF +NH +NH +rx +vF +vF +cu +cu +cu +rx +rx +rx +cu +cu +rx +rx +Xo +rq +ZU +rq +HD +rx +rx +rx +rx +rx +UD +xu +Vt +rx +tb +QS +bT +rx +bu +xu +Zk +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(54,1,1) = {" +oI +nI +nI +nI +nI +cu +cu +vF +vF +vF +rx +rx +rx +cu +cu +cu +cu +cu +rx +rx +Wu +rx +Wu +MJ +rx +Xo +rq +rq +rx +rx +rx +rx +rx +rx +rx +IG +Ii +dx +rx +tb +NF +bT +rx +IG +Ii +dx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(55,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +cu +cu +cu +cu +cu +cu +cu +cu +cu +rb +Vh +rb +Xo +xH +HD +rx +PT +cu +MJ +NK +rx +rx +rx +rx +rx +rx +tb +QS +bT +rx +rx +rb +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(56,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rx +rx +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +xu +cu +cu +cu +cu +cu +cu +cu +cu +rx +rb +rx +rx +rx +tb +NF +bT +Fq +rx +rb +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(57,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +rx +rx +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rb +rb +rb +Vh +VL +rx +tb +QS +bT +rx +rb +Vh +rb +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(58,1,1) = {" +oI +nI +nI +nI +nI +nI +nI +rx +Xl +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rx +rx +rb +rx +rx +tb +NF +bT +rx +rb +rb +rb +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(59,1,1) = {" +oI +nI +nI +nI +nI +cu +cu +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +rx +rx +rx +rx +rx +rx +tb +QS +bT +rx +rx +rx +rb +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(60,1,1) = {" +oI +nI +nI +cu +cu +cu +cu +rx +rx +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +rx +cu +cu +cu +cu +rx +rx +rx +rx +rx +rx +rx +rx +tb +NF +bT +rx +rx +rx +rb +By +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(61,1,1) = {" +oI +cu +cu +cu +cu +rx +rx +Xl +Vh +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +rx +rx +rx +rx +rx +rx +cu +cu +cu +cu +rx +rb +rx +rx +rb +rb +rb +rx +tb +QS +bT +rx +rx +By +rx +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(62,1,1) = {" +oI +cu +cu +cu +cu +rx +Xl +Xl +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +rx +rx +rx +cu +cu +rx +rb +Vh +rb +rx +rx +rb +rx +rx +tb +NF +bT +rx +By +By +By +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(63,1,1) = {" +oI +cu +rx +rx +rx +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +rx +rx +rx +rx +rb +cu +cu +rx +Rc +lA +aL +rx +tb +QS +bT +rx +Rc +lA +aL +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(64,1,1) = {" +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +cu +cu +cu +cu +cu +rx +rx +rx +rx +cu +cu +rx +UD +xu +Vt +rx +tb +NF +bT +rx +bu +xu +Zk +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(65,1,1) = {" +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +nI +nI +nI +cu +cu +rx +rx +rx +cu +cu +cu +rx +IG +Ii +dx +rx +tb +QS +bT +rx +IG +Ii +dx +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(66,1,1) = {" +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +nI +nI +nI +cu +rx +rx +rx +rx +cu +cu +cu +rx +rx +rx +rx +rx +tb +NF +bT +rx +rx +rx +rx +Ea +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(67,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +cu +By +rx +rx +rx +cu +cu +cu +cu +rx +rx +rx +hJ +tb +QS +bT +rx +rx +rx +rx +Ea +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(68,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +cu +By +rx +rx +cu +cu +cu +cu +cu +rx +rx +rx +hJ +dm +NF +bT +rx +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(69,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +rx +rx +rx +rx +rx +cu +cu +cu +cu +rx +rx +rx +hJ +Ck +QS +RZ +jo +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(70,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +rx +rx +rb +rx +rx +rx +cu +cu +cu +cu +rx +rx +rx +dm +NF +RZ +Mv +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(71,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +By +rx +rx +cu +cu +rx +rx +rx +cu +cu +rx +rb +hJ +dm +QS +Zn +hJ +rx +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(72,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +rx +rx +By +cu +cu +cu +cu +cu +cu +cu +cu +rx +jo +tb +KH +uy +hJ +Mv +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(73,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +rx +By +By +cu +nI +nI +nI +nI +cu +cu +cu +rx +rb +At +YU +Ge +mn +rb +rx +rx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(74,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +rx +cu +cu +cu +nI +nI +nI +nI +cu +Rc +lA +aL +rb +Zw +jL +Vr +Vh +Rc +lA +aL +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(75,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +rx +cu +cu +nI +nI +nI +nI +nI +nI +cu +UD +xu +dg +rb +Ax +Wz +bT +rb +cb +xu +Zk +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(76,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +cu +cu +cu +nI +nI +nI +nI +nI +nI +cu +IG +Ii +Na +Vh +rg +pP +Nx +Vq +Kq +CD +dx +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(77,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Vq +Vq +Vq +Vq +yH +Vq +Vq +Vq +Vq +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(78,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(79,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +oI +Gq +"} +(80,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(81,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(82,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rb +rb +Vq +rD +Vq +Vq +Vq +Vq +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(83,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rb +Vh +tb +NF +bT +rb +Vh +cu +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(84,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rb +rx +tb +QS +Vr +rx +rx +rx +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(85,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +Rc +lA +nj +rx +Ax +NF +wV +rb +Rc +lA +aL +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(86,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +UD +xu +Vt +rx +Ax +QS +bT +rb +bu +xu +Zk +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(87,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +IG +Ii +dx +rx +tb +NF +Vr +rx +IG +Ii +dx +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(88,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +rx +rx +rx +rx +tb +QS +bT +rx +rx +rx +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(89,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rx +rx +tb +NF +bT +rx +rx +rx +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(90,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +Qg +rx +tb +QS +bT +rx +rx +cu +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(91,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rx +rx +tb +NF +bT +rx +rx +cu +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +cu +Gq +"} +(92,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +rx +rx +rx +rx +tb +QS +bT +rx +rx +cu +cu +cu +rb +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(93,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +rx +rx +rx +rx +tb +NF +bT +rx +rx +rx +cu +rb +Vh +rb +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(94,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +rx +rx +rx +rx +tb +NF +bT +rx +rx +rx +rx +rb +rb +rb +rx +cu +cu +cu +cu +cu +cu +Gq +"} +(95,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +rx +rb +rx +tb +QS +bT +rx +rx +rx +rx +rx +rx +rx +rx +rx +xu +cu +cu +cu +cu +Gq +"} +(96,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +Rc +lA +aL +rb +tb +NF +bT +rx +Rc +lA +aL +rx +rx +rx +kh +ir +Be +rx +rx +rx +cu +Gq +"} +(97,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +UD +xu +Vt +rx +tb +QS +bT +rx +bu +xu +Zk +rx +rx +rx +ir +rq +Be +rx +rx +rx +rx +Gq +"} +(98,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +IG +Ii +dx +rx +tb +QS +bT +rx +IG +Ii +dx +rx +rx +rq +rq +rq +Be +rb +rb +rb +rx +Gq +"} +(99,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +cu +cu +cu +rx +rx +tb +QS +bT +rx +rx +rx +rx +rx +rx +rq +rq +rq +xu +Vh +rb +rx +rx +Gq +"} +(100,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +Ka +cu +cu +Vh +cu +cu +nI +nI +nI +cu +cu +cu +rx +rx +tb +uF +bT +rx +rx +rx +rx +rx +rx +rq +rq +rq +Be +rb +rx +rx +rx +Gq +"} +(101,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +Ka +cu +cu +rx +cu +cu +cu +cu +cu +cu +RF +rx +rx +rx +XO +KN +Pk +rx +rx +rx +rx +rx +rx +rx +ir +rq +Be +rx +rx +rb +rb +Gq +"} +(102,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +Ka +cu +cu +rx +rx +cu +cu +cu +cu +cu +bU +Rj +bU +Hw +Gc +Ts +fE +rx +rx +rx +rx +rx +rx +rx +rz +ir +Be +rx +rb +Vh +cu +Gq +"} +(103,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +nI +nI +Ka +cu +cu +rx +rx +cu +cu +cu +cu +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +rb +rx +xu +rx +rb +cu +cu +Gq +"} +(104,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +cu +Ka +cu +rx +cu +cu +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +qv +ng +aO +ng +gc +xu +rx +sC +cu +cu +cu +cu +cu +cu +Gq +"} +(105,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +Ka +Ka +cu +rb +cu +cu +rx +rx +rx +rx +rx +rx +rx +rx +rx +rx +ms +rq +aV +rq +mV +xu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(106,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +rx +cu +cu +Vh +rb +rx +rx +rx +rx +rx +cu +cu +rx +rx +rx +rx +yX +rq +xA +rq +mV +xu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} +(107,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +rx +cu +cu +rb +rb +rx +rx +rx +rx +rb +cu +rx +rx +rx +rx +rb +xu +xu +xu +xu +xu +xu +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(108,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +Ka +rx +rx +rx +rx +rx +rx +rb +cu +cu +cu +rb +rb +rx +rx +rx +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(109,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +Ka +Ka +Ka +rx +rx +rx +rx +rb +cu +cu +cu +Vh +rb +rb +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(110,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +Ka +Ka +Ka +Ka +rx +rx +cu +cu +nI +nI +cu +rb +rb +rx +rx +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(111,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +nI +nI +cu +rx +rx +rx +rx +cu +nI +nI +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +Gq +"} +(112,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +nI +nI +cu +rx +rx +rx +rx +cu +nI +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(113,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +rx +rx +Ka +Ka +Ka +Ka +cu +nI +nI +cu +cu +rx +rx +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +Gq +"} +(114,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +rb +rx +rx +rx +cu +Ka +Ka +Ka +Ka +Ka +nI +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(115,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +rb +rx +rx +rx +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +cu +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(116,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +rx +rx +rb +rx +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +cu +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(117,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +rx +rx +Vh +rb +rx +rx +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(118,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +YP +rx +rb +rb +rx +rx +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(119,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +rx +rx +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(120,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(121,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +cu +cu +cu +Ka +Ka +Ka +Ka +Ka +Ka +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +Gq +"} +(122,1,1) = {" +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +oI +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +cu +Gq +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment1_c.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment1_c.dmm new file mode 100644 index 000000000000..ce05595d637c --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment1_c.dmm @@ -0,0 +1,8921 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ag" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ai" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"an" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"ap" = ( +/obj/effect/decal/remains/human, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aq" = ( +/obj/item/pickaxe/diamond, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"as" = ( +/obj/machinery/mineral/processing_unit{ + input_dir = 8; + output_dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"at" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"av" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aw" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 3 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ay" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"aB" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"aD" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aE" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/rock, +/area/template_noop) +"aF" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aI" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/storage/bag/ore, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aJ" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"aK" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"aL" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) +"aM" = ( +/turf/template_noop, +/area/template_noop) +"aN" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aR" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aS" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"aV" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aW" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aX" = ( +/obj/effect/mob_spawn/human/corpse/miner/explorer/caves{ + burn_damage = 200; + facial_hairstyle = "Moustache (Watson)"; + hairstyle = "Pompadour"; + mob_name = "Jim Joffee" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/gun/energy/kinetic_accelerator, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aY" = ( +/turf/closed/indestructible/necropolis, +/area/template_noop) +"aZ" = ( +/obj/structure/spawner/lavaland/icewatcher, +/turf/open/indestructible/necropolis, +/area/template_noop) +"bn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"bI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/ore/diamond{ + amount = 10 + }, +/obj/item/stack/ore/bluespace_crystal{ + amount = 10 + }, +/obj/item/stack/ore/titanium{ + amount = 25 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"bJ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"bL" = ( +/turf/closed/wall, +/area/template_noop) +"cw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"cP" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"dm" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/smelter1) +"dP" = ( +/obj/machinery/conveyor{ + id = "caves_depo1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"dQ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"ef" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"ex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"eA" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"eN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"fk" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"fl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"fy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"fB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"fE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"fR" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/ore/titanium{ + amount = 35 + }, +/obj/item/stack/ore/iron{ + amount = 50 + }, +/obj/item/stack/ore/glass/basalt{ + amount = 50 + }, +/obj/item/stack/ore/bananium{ + amount = 10 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"hl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Disrupts-The-Machine" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hr" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"hv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"hF" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"hG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 9; + id = "caves_depo2" + }, +/obj/structure/closet/crate, +/obj/item/stack/ore/plasma{ + amount = 15 + }, +/obj/item/stack/ore/uranium{ + amount = 20 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"hL" = ( +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"hX" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"io" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/misc/mining_post/smelter1) +"iB" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"iF" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/light/dim/directional/west, +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"iX" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "caves_depo1"; + name = "mining conveyor" + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"iY" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"je" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jD" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "caves_depo3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"jM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "caves_depo2"; + name = "mining conveyor" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"kh" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"kW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"lm" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Raids-The-Hummies" + }, +/obj/item/crowbar/large, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"lH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"mO" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "caves_depo5"; + name = "mining conveyor" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"ne" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"nq" = ( +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvldumbjump"; + name = "Rapid Mineral Transport Control"; + pixel_x = -28 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"nH" = ( +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/diverter) +"nK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "caves_depo4"; + name = "mining conveyor" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"nM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"od" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"oh" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"op" = ( +/obj/machinery/conveyor{ + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"oN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"oX" = ( +/obj/structure/flora/rock/pile, +/obj/structure/sign/warning{ + desc = "A sign warning you about some explosive ordnance. Whether or not you care about this warning is up to you."; + name = "WARNING: Explosive Ordnance"; + pixel_x = 32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"pL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"qg" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo1" + }, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"qv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"qA" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"qS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"rt" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) +"rL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"rN" = ( +/obj/machinery/conveyor{ + id = "caves_depo1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"ss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mass_driver{ + dir = 1; + id = "caveslvldumbjump" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"sW" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/diverter) +"sY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + id = "caves_depo4" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"tc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tk" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"tl" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"tr" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"tt" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"tA" = ( +/obj/item/stack/ore/diamond{ + amount = 4 + }, +/obj/item/stack/ore/plasma{ + amount = 6 + }, +/obj/item/stack/ore/silver{ + amount = 12 + }, +/obj/item/stack/ore/gold{ + amount = 10 + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ut" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"uD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mass_driver{ + dir = 8; + id = "caveslvldumbjump3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"uJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"uR" = ( +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/smelter2) +"uU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"vt" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"vE" = ( +/obj/machinery/conveyor{ + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/ore/silver{ + amount = 25 + }, +/obj/item/stack/ore/iron{ + amount = 25 + }, +/obj/item/stack/ore/glass/basalt{ + amount = 50 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"wa" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"wu" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"wF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"wM" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "caves_depo1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"wN" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"xf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mass_driver{ + dir = 4; + id = "caveslvldumbjump4" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"xm" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "caves_depo1" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"xs" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/processing_unit{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"yl" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvldumbjump3"; + name = "Rapid Mineral Transport Control"; + pixel_x = -28 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"yB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"yC" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"yG" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"yI" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"yL" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) +"yS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"yU" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "caves_depo1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"yV" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"zf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"zz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"zH" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"zL" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Ah" = ( +/obj/machinery/conveyor{ + id = "caves_depo4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Br" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Bt" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"Bu" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"BD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"BM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"BU" = ( +/turf/closed/wall/rust, +/area/awaymission/caves/misc/mining_post/smelter2) +"Cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"Cn" = ( +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/smelter1) +"Co" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/spear/bonespear, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Cp" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"Cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"CE" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/chasm/lavaland, +/area/template_noop) +"CP" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) +"CR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"CS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Ds" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"DO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mass_driver{ + dir = 8; + id = "caveslvldumbjump5" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"DU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"Ed" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Ee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Es" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"EA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"EQ" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/chasm/lavaland, +/area/awaymission/caves/misc/mining_post/smelter2) +"ER" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) +"EY" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Gi" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) +"Gj" = ( +/obj/machinery/conveyor{ + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"Gn" = ( +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"Go" = ( +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post) +"Gw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"GB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"GG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"GM" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"GU" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Hk" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Hl" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"IA" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"IX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shipping_container/nthi{ + desc = "A standard-measure shipping container for bulk transport of goods. This one is from NTHI: Nanotrasen's mining and refining subdivision. The door has some scratch marks on it." + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Js" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"JA" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_y = -32 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"JE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "caves_depo2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"JH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Ka" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"Km" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KI" = ( +/obj/machinery/mass_driver{ + id = "caveslvldumbjump2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"KK" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KP" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"Lf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Lw" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"MM" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "caves_depo1" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"MX" = ( +/obj/structure/flora/rock, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Na" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/obj/item/stock_parts/cell/empty, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"Nc" = ( +/obj/machinery/power/rtg, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"Nu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"NM" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"NS" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"NW" = ( +/obj/structure/cable, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"Ob" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvldumbjump5"; + name = "Rapid Mineral Transport Control"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"Og" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning{ + desc = "A sign warning you about how falling into the elevator shaft is a bad idea."; + name = "WARNING: Lethal Fall Hazard"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"Oi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"OF" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"OL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"ON" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"Pa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 9; + id = "caves_depo3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"Pe" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"PE" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Hates-The-Technology" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"PN" = ( +/turf/closed/wall/rust, +/area/template_noop) +"Qa" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"Qd" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Qu" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"QI" = ( +/obj/machinery/conveyor{ + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"Rc" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/caves/misc/mining_post/smelter1) +"Rd" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Rk" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"Ro" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Rp" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"RG" = ( +/turf/closed/wall/rust, +/area/awaymission/caves/misc/mining_post/smelter1) +"RK" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"RT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"RZ" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Sd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "caves_depo2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"Sp" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"SQ" = ( +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Tc" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"Tx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvldumbjump2"; + name = "Rapid Mineral Transport Control"; + pixel_x = 28 + }, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Breaks-The-Bridge" + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"TA" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"TH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/awaymission/caves/misc/mining_post/smelter2) +"TJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "caves_depo4" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"TQ" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/ashwalker{ + name = "Gets-Stranded-Easily" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"TS" = ( +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"TZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Uk" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter2) +"Uo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "caves_depo3" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"Vs" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"VH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"VR" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"VW" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/ore/gold{ + amount = 15 + }, +/obj/item/stack/ore/silver{ + amount = 35 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"VY" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "caves_depo3"; + name = "mining conveyor" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"Wv" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "Life Support Access" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"WB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter2) +"WL" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/misc/mining_post) +"WP" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "caves_depo2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"Xc" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"XB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"XP" = ( +/obj/machinery/conveyor{ + id = "caves_depo1" + }, +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + output_dir = 2 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post) +"XW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/mining_post) +"YW" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "caves_depo5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/smelter1) +"YX" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvldumbjump4"; + name = "Rapid Mineral Transport Control"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/diverter) +"YZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "caves_depo2" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/mining_post/diverter) +"Zm" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"Zr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/diverter) +"ZM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south{ + cell_type = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/mining_post/smelter1) +"ZN" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/mining_post) +"ZY" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/awaymission/caves/misc/mining_post/smelter1) + +(1,1,1) = {" +aE +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aM +"} +(2,1,1) = {" +aK +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(3,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(4,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(5,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(6,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aB +aB +aB +ai +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(7,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aV +aV +aB +ai +ai +aN +aN +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(8,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aN +aV +aN +aN +aN +aN +aV +aV +aR +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(9,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +at +aN +aN +aN +aN +aN +aN +aV +aV +aV +aR +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(10,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aN +aN +aN +aN +aN +aN +aN +aN +aV +aV +aV +aJ +aB +aB +aL +aL +aL +aL +aL +aL +aB +aM +"} +(11,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aN +aN +aN +aN +aN +aN +aV +aN +aN +aN +av +aJ +aJ +aB +aL +aL +aL +aL +aL +aL +aB +aM +"} +(12,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aN +aV +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aJ +aJ +aB +aB +aL +aL +aL +aL +aL +aB +aM +"} +(13,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aN +aN +aV +aN +RT +RT +RT +aN +aN +aN +aN +aJ +aJ +aJ +aB +aL +aL +aL +aL +aL +aB +aM +"} +(14,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aN +Go +Go +ay +Go +RT +aN +aN +aN +aN +aJ +aJ +aJ +aB +aL +aL +aL +aL +aL +aB +aM +"} +(15,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +Go +uJ +Cs +Go +RT +aN +aN +aN +aN +av +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(16,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +WL +WL +WL +WL +WL +GB +oN +Go +RT +RT +yC +Cp +aN +av +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(17,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +WL +Nc +WL +ut +WL +Go +Qa +Go +fE +fE +fE +Go +aN +aV +aJ +aJ +aJ +aB +aB +aB +aL +aL +aB +aM +"} +(18,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +Go +WL +fy +WL +fy +WL +Qd +hv +iF +Sp +Tc +GU +Go +Go +Go +CE +CE +CE +CE +bL +aB +aL +aL +aB +aM +"} +(19,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +Go +fk +Lw +OF +OF +Go +ZN +zz +zL +BD +zL +Qu +xm +wM +Go +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aB +aM +"} +(20,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +Go +NW +Gn +Gn +Gn +Go +Rp +zz +zL +zL +zL +wN +Go +fR +Go +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aB +aM +"} +(21,1,1) = {" +aK +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +Go +yV +XW +XW +qS +Wv +CR +zz +CS +CS +CS +Lf +fE +fR +Go +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aB +aM +"} +(22,1,1) = {" +aK +aB +aB +aB +aB +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aB +aB +aB +aL +aB +aB +aB +aB +Go +Rk +Nu +Gn +Gn +Go +Oi +yB +iX +vt +yG +kh +fE +fR +Go +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aB +aM +"} +(23,1,1) = {" +aK +aB +aL +aL +aB +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aL +aB +aB +aL +aB +aB +aB +aB +Go +Go +Go +Go +Go +Go +wa +Go +Go +Bt +fE +fE +Go +fR +Go +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aB +aM +"} +(24,1,1) = {" +aK +aB +aL +aL +aB +aB +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aL +aB +aB +aJ +aJ +aB +aB +aB +aJ +aJ +aJ +aJ +Go +OL +qv +Go +yU +dP +XP +rN +rN +MM +Go +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(25,1,1) = {" +aK +aL +aL +aL +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aL +aL +aL +aL +aJ +aJ +aJ +aB +aB +bL +CE +CE +CE +CE +Go +EA +Cj +Go +qg +Go +Go +Go +Go +Go +Go +CE +CE +CE +CE +CE +bL +aL +aL +aB +aM +"} +(26,1,1) = {" +aK +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aB +aB +aB +aB +aJ +aJ +aJ +aB +aJ +aB +aJ +aJ +aJ +aJ +Go +Go +ne +Go +JH +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(27,1,1) = {" +aK +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aJ +aB +aB +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +wF +CE +JH +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(28,1,1) = {" +aK +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aL +aL +aB +aM +"} +(29,1,1) = {" +aK +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aL +aL +aB +aM +"} +(30,1,1) = {" +aK +aL +aL +aL +aL +aL +aB +aB +aB +aB +aB +aB +aJ +aJ +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aL +aL +aL +aB +aM +"} +(31,1,1) = {" +aK +aL +aL +aL +aL +aL +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aL +aL +aL +aL +aL +aB +aM +"} +(32,1,1) = {" +aK +aL +aL +aL +aL +aL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aL +aL +aL +aB +aM +"} +(33,1,1) = {" +aK +aL +aL +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aL +aL +aL +aB +aM +"} +(34,1,1) = {" +aK +aL +aL +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aV +aw +aB +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aL +aL +aB +aM +"} +(35,1,1) = {" +aK +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(36,1,1) = {" +aK +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +CE +wF +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(37,1,1) = {" +aK +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +uU +sW +uD +iB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(38,1,1) = {" +aK +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +CE +nM +yl +VR +iB +tk +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(39,1,1) = {" +aK +aL +aL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +nH +Zm +Zm +bn +Es +VR +iB +tk +tk +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aB +aM +"} +(40,1,1) = {" +aK +aL +aL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +nH +tk +XB +XB +ON +Es +VR +iB +tk +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aM +"} +(41,1,1) = {" +aK +aL +aL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +nq +tk +XB +TQ +ON +hr +VR +iB +tk +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +ad +aB +aB +aB +aM +"} +(42,1,1) = {" +aK +aL +aL +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +SQ +TZ +TZ +od +od +TZ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BM +BM +XB +jM +Xc +nH +VR +iB +tk +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +ad +aB +aB +aB +aM +"} +(43,1,1) = {" +aK +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +ZY +Cn +TJ +Ah +Ah +sY +KI +CE +CE +aJ +aJ +aJ +CE +CE +aJ +CE +CE +aJ +aJ +aJ +aJ +aJ +CE +CE +ss +op +QI +vE +Gj +Gj +WP +nH +tk +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aN +aB +aB +aB +aM +"} +(44,1,1) = {" +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +ZY +CP +ef +dQ +dQ +DU +Tx +lH +CE +aJ +aJ +CE +CE +VH +fl +pL +aJ +aJ +aJ +aJ +CE +Ee +Ee +Ee +hF +Og +Vs +Vs +Vs +YZ +nH +IA +tk +tk +aJ +aB +aB +aB +aB +aB +aJ +aJ +aN +aB +aB +aB +aM +"} +(45,1,1) = {" +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +SQ +Gi +ER +ef +dQ +yL +rt +Cn +aB +aB +aB +aB +aB +aB +aB +aB +CE +CE +aJ +aJ +aJ +aJ +CE +CE +CE +KW +nH +TA +Zr +Vs +YZ +tl +JA +nH +Ka +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aN +aB +aB +aB +aM +"} +(46,1,1) = {" +aB +aB +aB +aJ +aJ +aJ +aJ +aB +aB +eA +Cn +Gw +ef +bJ +RG +io +aB +aB +aL +aL +aL +aL +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +tr +Es +Vs +JE +Sd +Sd +hG +iB +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +ad +aB +aB +aB +aM +"} +(47,1,1) = {" +aB +aL +aB +aJ +aJ +aJ +aJ +aB +aB +KP +Gw +nK +ef +dQ +bI +Gw +aL +aL +aB +aB +aB +aL +aL +aL +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +tk +Es +Vs +YX +hF +Ds +YZ +tc +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aB +aB +aB +aM +"} +(48,1,1) = {" +aB +aL +aB +aJ +aJ +aJ +aJ +aB +aB +eA +Gw +Gw +ef +dQ +Gw +Gw +aL +aL +aL +aN +aN +aB +aB +aB +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +tk +oh +KW +nH +CE +qA +xf +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +ad +aB +aB +aM +"} +(49,1,1) = {" +aB +aL +aB +aJ +aJ +aJ +aJ +aB +aB +aB +eN +Gw +ef +dQ +Gw +Co +aL +aL +aN +aF +aN +aF +aB +aB +aN +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aJ +aJ +CE +GG +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(50,1,1) = {" +aB +aL +aB +aJ +aJ +aJ +aB +aB +aB +aS +kW +dm +xs +dQ +Gw +IX +aL +aL +aN +aN +aN +aN +aN +aN +aF +aB +aF +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aN +aJ +aJ +CE +GG +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(51,1,1) = {" +aB +aL +aJ +aJ +aJ +aJ +aB +aB +aB +aS +kW +cw +ef +dQ +Gw +Gw +aL +aL +aL +aN +aN +aN +aF +aN +aN +aN +aN +aF +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aN +aJ +aJ +CE +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(52,1,1) = {" +aB +aB +aJ +aJ +aJ +aJ +aB +aB +aS +aS +kW +Na +ef +dQ +Gw +Gw +aL +aL +aL +aN +aF +aN +aN +aN +aB +aB +aF +aN +aB +aB +aB +aJ +aJ +aB +aJ +aJ +aJ +aV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(53,1,1) = {" +aB +aB +aJ +aJ +aJ +aJ +aB +aB +aS +aS +RG +Gw +ef +ZM +Cn +Rc +aL +aL +aL +aL +aB +aN +aN +aN +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(54,1,1) = {" +aB +aB +aJ +aJ +aJ +aJ +aB +aS +aS +aS +hX +lm +Br +pE +GM +aV +aB +aB +aL +aL +aB +aN +aN +aN +aN +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aB +aB +aM +"} +(55,1,1) = {" +aB +aB +aB +aJ +aJ +aJ +aB +aS +aS +aS +aN +eA +Br +pE +tc +aV +aB +aB +aB +aB +aB +aB +aB +aN +aN +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aV +aN +aN +aB +aB +aM +"} +(56,1,1) = {" +aB +aB +aB +aJ +aJ +aJ +aB +aS +aS +aS +aN +eA +Br +pE +iY +TZ +EY +MX +aR +aB +aB +aB +aB +aN +aN +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aR +aV +aN +aN +aB +aB +aM +"} +(57,1,1) = {" +aB +aL +aB +aJ +aJ +aB +aB +aS +aS +aS +aS +eA +Br +pE +pE +pE +pE +Ro +aV +aB +aB +aB +aB +aB +aB +aN +aB +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aV +aV +aN +aN +aB +aB +aM +"} +(58,1,1) = {" +aB +aL +aB +aJ +aB +aB +aB +aS +aS +aS +aS +eA +TS +YW +YW +Ed +pE +Hk +od +KK +aB +aB +aB +aB +aB +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +EQ +DO +tc +aN +aN +aN +aN +aN +aN +aN +aV +aN +aN +aB +aB +aM +"} +(59,1,1) = {" +aB +aL +aB +aJ +aB +aB +aB +aS +aS +aS +aS +aS +hX +RZ +PE +Br +pE +pE +pE +hl +aN +aN +aN +aB +aB +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aN +aJ +aJ +BU +Ob +LS +iY +TZ +TZ +TZ +TZ +TZ +TZ +KK +aN +aN +aN +aB +aB +aM +"} +(60,1,1) = {" +aB +aL +aB +aJ +aB +aB +aB +aS +aS +aS +aS +aS +aV +aR +je +TS +YW +Ed +pE +iY +TZ +TZ +TZ +TZ +TZ +KK +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aV +aJ +aJ +CE +tt +Uo +jJ +jJ +jJ +jJ +jJ +jJ +Pa +iY +TZ +KK +aV +aB +aB +aM +"} +(61,1,1) = {" +aB +aL +aB +aB +aB +aB +aB +aB +aS +aS +aS +aS +aS +aV +Hl +RZ +Js +Br +pE +pE +pE +pE +pE +pE +pE +tc +aN +aN +aV +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aN +aJ +aJ +CE +Uk +NM +Bu +zf +zf +zf +zf +zf +Uo +jJ +Pa +tc +aV +aB +aB +aM +"} +(62,1,1) = {" +aB +aL +aL +aL +aL +aL +aL +aB +aB +aS +aS +aS +aS +aS +aB +aN +eA +TS +YW +YW +YW +YW +YW +Ed +pE +tc +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aJ +aJ +CE +CE +CE +jD +hX +hX +hX +Js +zf +uR +fB +LS +uR +aR +aB +aB +aM +"} +(63,1,1) = {" +aB +aL +aL +aL +aL +aL +aL +aB +aB +aB +aS +aS +aB +aB +aB +aB +aB +aB +aB +aB +hX +NS +Rd +Br +pE +iY +KK +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aW +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +eA +zf +ex +gB +LS +yS +aB +aB +aB +aM +"} +(64,1,1) = {" +aB +aL +aL +aL +aL +aL +aL +aL +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +KP +Br +pE +pE +tc +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cP +Js +yS +yS +LS +yS +aB +aL +aB +aM +"} +(65,1,1) = {" +aK +aB +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +KP +TS +Ed +pE +tc +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aW +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +eA +yS +VY +LS +yS +aL +aL +aB +aM +"} +(66,1,1) = {" +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aK +aB +bL +Br +pE +tc +aN +aN +aV +aJ +aJ +aJ +aJ +aJ +aN +aV +aW +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eA +yS +TH +as +yS +aL +aL +aB +aM +"} +(67,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +pE +tc +aN +aN +oX +aJ +aJ +aJ +aJ +aJ +aN +aV +aV +aW +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eA +yS +WB +LS +yS +aL +aL +aB +aM +"} +(68,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +hL +yI +yI +yI +bL +aJ +aJ +aJ +aJ +aJ +aN +aV +aV +aW +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +eA +yS +WB +LS +yS +aL +aL +aB +aM +"} +(69,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +Cn +yI +aN +aN +aN +aN +aJ +aJ +aJ +aJ +aN +aV +aV +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +BU +yS +yS +uR +aL +aL +aB +aM +"} +(70,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +aB +aB +aN +Km +aN +aN +aJ +aJ +aJ +aJ +aJ +aV +aR +aV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +cP +hX +hX +zH +aL +aL +aB +aM +"} +(71,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +Br +aL +aB +aB +aB +aN +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aV +aR +aL +aL +aB +aM +"} +(72,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +Br +aL +aB +aB +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aV +aB +aL +aL +aB +aM +"} +(73,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +tc +aN +aN +aN +aN +Km +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aV +aB +aL +aL +aB +aM +"} +(74,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +Br +tc +aN +aN +aN +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aL +aL +aB +aM +"} +(75,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +PN +Br +tc +aN +aN +aN +aD +aN +aN +aJ +aJ +aJ +aJ +aJ +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aL +aL +aB +aM +"} +(76,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +eA +Br +Pe +aN +aB +aD +aD +ag +aB +aB +aJ +aJ +aJ +aJ +aJ +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aL +aL +aB +aM +"} +(77,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +eA +VW +tc +aB +aB +aD +aD +aN +aB +aB +aB +aB +aJ +aJ +aJ +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aL +aL +aB +aM +"} +(78,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +je +Br +aB +aB +aB +aN +aN +aB +aB +aL +aL +aB +aB +aB +aB +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aL +aL +aB +aM +"} +(79,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +je +Br +aB +aB +aY +aX +aq +aB +aB +aL +aL +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(80,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +eA +Br +aB +aB +aY +aI +aN +aD +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aL +aL +aL +aL +aB +aM +"} +(81,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +eA +Br +mO +aB +aY +tA +aD +aD +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(82,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +eA +Br +rL +aY +aY +an +aD +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(83,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aN +an +aN +aY +an +aN +aV +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(84,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +RK +an +an +an +ap +wu +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aL +aL +aL +aL +aB +aM +"} +(85,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aN +an +aZ +an +an +an +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(86,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aY +aY +aN +an +an +an +aY +an +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(87,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aY +an +an +an +an +aY +aY +an +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aL +aB +aM +"} +(88,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aY +aN +ap +an +an +an +an +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aL +aL +aL +aB +aB +aM +"} +(89,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aY +aY +an +an +aZ +an +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aM +"} +(90,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aY +aY +aN +an +an +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aB +aB +aB +aM +"} +(91,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aB +aY +aN +an +an +aN +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aW +aB +aB +aM +"} +(92,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aB +aY +aY +an +an +aN +aV +aV +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aB +aB +aM +"} +(93,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aB +aB +aY +an +aN +aV +aR +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aN +aB +aB +aM +"} +(94,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aB +aB +aN +an +aN +aV +aV +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aR +aV +aB +aB +aM +"} +(95,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aB +aB +aN +aN +aN +aB +aB +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aV +aB +aB +aM +"} +(96,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aN +aN +aN +aB +aB +aL +aL +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aN +aN +aB +aM +"} +(97,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aN +aN +aN +aB +aB +aL +aL +aL +aL +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aM +"} +(98,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aV +aN +aN +aB +aB +aL +aL +aL +aL +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aN +aM +"} +(99,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aV +aN +aN +aB +aB +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aN +aM +"} +(100,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aV +aV +aN +aN +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aN +aN +aM +"} +(101,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aV +aN +aN +aV +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aV +aN +aN +aN +aN +aM +"} +(102,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aN +aN +aN +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aV +aV +aR +aN +aV +aN +aB +aM +"} +(103,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aN +aN +aN +aN +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aN +aN +aN +aN +aN +aN +aN +aN +aV +aV +aN +aN +aB +aM +"} +(104,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aN +aN +aN +aN +aN +aN +av +aN +aJ +aJ +aN +aN +av +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aB +aB +aM +"} +(105,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aB +aB +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aV +aN +aN +aN +aJ +aJ +aJ +aJ +aN +aN +aN +aB +aB +aM +"} +(106,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aB +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aV +aV +av +aN +aN +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aW +aL +aL +aM +"} +(107,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aL +aB +aN +av +aN +aN +av +aJ +aJ +aV +aV +aV +aR +aV +aN +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aL +aL +aM +"} +(108,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aW +aN +aL +aL +aM +"} +(109,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aL +aL +aL +aL +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aL +aL +aM +"} +(110,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aW +aW +aL +aL +aM +"} +(111,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aL +aL +aM +"} +(112,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aL +aL +aM +"} +(113,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aL +aL +aM +"} +(114,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aB +aJ +aJ +aJ +aJ +aJ +aB +aL +aB +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aN +aN +aN +aN +aL +aL +aM +"} +(115,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aJ +aB +aL +aB +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aV +aN +aB +aL +aL +aM +"} +(116,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aJ +aB +aL +aB +aJ +aJ +aJ +aJ +aJ +aB +aB +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aV +aR +aN +aB +aL +aL +aM +"} +(117,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aL +aB +aJ +aJ +aJ +aJ +aB +aB +aB +aB +aJ +aJ +aJ +aN +aN +aN +aV +aV +aN +aB +aL +aL +aM +"} +(118,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aJ +aJ +aJ +aB +aL +aL +aB +aJ +aJ +aB +aN +aN +aN +aN +aB +aB +aB +aL +aL +aM +"} +(119,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aB +aJ +aJ +aB +aL +aL +aB +aJ +aJ +aB +aB +aB +aB +aB +aB +aB +aB +aL +aL +aM +"} +(120,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aB +aB +aL +aL +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(121,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aB +aB +aL +aL +aL +aB +aB +aB +aB +aB +aB +aB +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aB +aM +"} +(122,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aM +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment2_a.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment2_a.dmm new file mode 100644 index 000000000000..b07ba37ac2fb --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment2_a.dmm @@ -0,0 +1,5479 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"cU" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"de" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"dr" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"du" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate, +/obj/item/stack/sheet/runed_metal/ten, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"en" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate, +/obj/item/clothing/under/color/grey/ancient, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"eB" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/skeleton{ + desc = "It's Dale."; + name = "Dale"; + speak = list("Would you like to listen to my podcast?"); + speak_chance = 25 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/indestructible/boss, +/area/template_noop) +"eC" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"fh" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"gi" = ( +/obj/structure/spawner/skeleton{ + desc = "A pit full of bones, and it seems like they have a bone to pick with you." + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"gl" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate, +/obj/item/stack/sheet/hauntium/five, +/obj/item/stack/sheet/leather{ + amount = 10 + }, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"hh" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hu" = ( +/obj/structure/stone_tile/slab, +/obj/item/radio/off, +/turf/open/indestructible/boss, +/area/template_noop) +"hL" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"hQ" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"hT" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'William The Tall'. A small plaque underneath reads 'May He Forever Reach Past The Stars'."; + name = "burial door - 'William The Tall'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"if" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"ip" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone, +/obj/item/clothing/mask/fakemoustache/sticky{ + desc = "Warning: moustache is dastardly."; + name = "dastardly moustache" + }, +/obj/item/clothing/head/soft/purple{ + desc = "It's a baseball hat in a dastardly purple colour."; + name = "dastardly cap" + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"ji" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Cyrus The Firstborn'. A small plaque underneath reads 'What I wouldn't give for just a glass of water..'."; + name = "burial door - 'Cyrus the Firstborn'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"jC" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jO" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/food/spiderling, +/obj/item/clothing/suit/armor/hos/trenchcoat, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"kd" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"lA" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"mf" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate, +/obj/item/clothing/head/helmet/chaplain/ancient, +/turf/open/indestructible/boss, +/area/template_noop) +"mD" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"nx" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"nA" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/stack/sheet/bone, +/obj/item/clothing/under/costume/skeleton, +/turf/open/indestructible/boss, +/area/template_noop) +"oa" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/giant_spider/hunter{ + atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_plas"=0,"max_plas"=0,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0) + }, +/obj/structure/spider/stickyweb, +/turf/open/indestructible/boss, +/area/template_noop) +"oN" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent, +/obj/structure/spider/stickyweb, +/turf/open/indestructible/boss, +/area/template_noop) +"oV" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pd" = ( +/obj/structure/stone_tile/slab, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/template_noop) +"pw" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pz" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/obj/item/spear/bamboospear{ + name = "bamboo stilt" + }, +/obj/item/spear/bamboospear{ + name = "bamboo stilt" + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"qj" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 3 + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"qU" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"sN" = ( +/obj/structure/stone_tile/slab, +/obj/item/paper{ + info = "The paper describes a podcast about 3 middle un-aged skeletons talking about various current topics. The main gimmick compared to the other podcasts that do this exact same thing is that they're all skeletons."; + name = "podcast pitch - My Skeleton, My Skeleton, & Me" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"tq" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"tu" = ( +/obj/structure/stone_tile/slab, +/obj/structure/closet/crate, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"tM" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tP" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent, +/turf/open/indestructible/boss, +/area/template_noop) +"tS" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"uD" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Hanzover The Chef'. A small plaque underneath reads 'Excellency in Culinary Arts matched by few'."; + name = "burial door - 'Hanzover The Chef'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"uQ" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"uS" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"vc" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Long-Legged The Silenced One'. A small plaque underneath reads 'Silenced for crimes among the council.'"; + name = "burial door - 'Long-Legged Silenced One'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"vM" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"wn" = ( +/obj/structure/closet/crate/grave, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stack/sheet/bone, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/wizard, +/obj/item/book/granter/action/spell/charge, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"xo" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/template_noop) +"zf" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Workman Of The Wigman'. A small plaque underneath reads 'Shiny and Chrome May His Dome Ever Be'."; + name = "burial door - 'Workman Of The Wigmen'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"zl" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/mimic/crate{ + faction = list("mimic","skeleton") + }, +/obj/item/keycard{ + desc = "it works okay i'll make it look cool later"; + name = "card for the exit gate"; + puzzle_id = "justwipedouttomatotown" + }, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"zr" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/obj/item/food/pizzaslice/ants, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"zt" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"zA" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"zJ" = ( +/turf/template_noop, +/area/template_noop) +"zS" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Arachnid Man'. A small plaque underneath reads 'An Actual Human.'"; + name = "burial door - 'Arachnid Man'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"AD" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Elijah The Wicked'. A small plaque underneath reads 'Dastardly in Life, left to roam the halls of the unliving forever more'."; + name = "burial door - 'Elijah The Wicked'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"CP" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/giant_spider/hunter{ + atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_plas"=0,"max_plas"=0,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0) + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Dp" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone, +/obj/item/clothing/head/wig/natural, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"DC" = ( +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/template_noop) +"DP" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"EM" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Sandman Alurza'. A small plaque underneath reads 'He knows when you're sleeping.'"; + name = "burial door - 'Sandman Alurza'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Gu" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"GP" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Ia" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"Ie" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone, +/obj/item/staff, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Ji" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 9 + }, +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Jw" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Anthony The Mage'. A small plaque underneath reads 'May His Glowing Incantations Light The Way For The Rest Of Us'."; + name = "burial door - 'Anthony The Mage'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Jy" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Reigns-Most-Supreme'. A small plaque underneath reads 'Believed to reign supreme, only to have a panic attack once given actual responsibility.'."; + name = "burial door - 'Reigns-Most-Supreme'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"JH" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Kt" = ( +/turf/open/indestructible/boss, +/area/template_noop) +"Ls" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 2 + }, +/obj/item/stack/ore/glass, +/obj/item/clothing/under/syndicate/bloodred/sleepytime, +/obj/item/food/cookie/sleepy, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Lu" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Keeg The Trickster'. A small plaque underneath reads 'Pranked one too many.'"; + name = "burial door - 'Keeg The Trickster'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"LE" = ( +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone, +/obj/item/toy/braintoy, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"LN" = ( +/obj/item/stack/sheet/bone, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"NG" = ( +/obj/item/stack/sheet/bone{ + amount = 3 + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Ob" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/grave, +/obj/item/stack/sheet/bone{ + amount = 3 + }, +/obj/item/clothing/mask/gas/clown_hat, +/obj/item/clothing/shoes/clown_shoes/banana_shoes, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Pg" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/mimic/crate{ + faction = list("mimic","skeleton") + }, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"Pw" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Py" = ( +/obj/structure/stone_tile/slab, +/obj/structure/spider/stickyweb, +/turf/open/indestructible/boss, +/area/template_noop) +"Qc" = ( +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"QC" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/template_noop) +"QV" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/mob/living/simple_animal/hostile/giant_spider/hunter{ + atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_plas"=0,"max_plas"=0,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0) + }, +/obj/structure/spider/stickyweb, +/turf/open/indestructible/boss, +/area/template_noop) +"RK" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/indestructible/boss, +/area/template_noop) +"RL" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/stack/sheet/bone, +/turf/open/indestructible/boss, +/area/template_noop) +"RQ" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"SA" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb, +/turf/open/indestructible/boss, +/area/template_noop) +"TR" = ( +/obj/structure/stone_tile/slab, +/obj/modular_map_connector, +/turf/open/indestructible/boss, +/area/template_noop) +"UJ" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent{ + desc = "An iron door with the name 'Godwyn The Unwise'. A small plaque underneath reads 'Challenged the local wizard to a battle of wits and proceeded to literally lose his mind'."; + name = "burial door - 'Godwyn The Unwise'" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"Vw" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"Ws" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Wv" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/mineral_door/transparent, +/turf/open/indestructible/boss, +/area/template_noop) +"Xy" = ( +/obj/machinery/door/keycard{ + desc = "A strange gate with runes on it with a slot seemingly for some sort of key, or maybe blade?"; + name = "Necropolis Gate"; + open_message = "You slot the blade into the hole and it shudders to life, grinding open."; + puzzle_id = "justwipedouttomatotown" + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"ZO" = ( +/obj/structure/stone_tile/slab, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/template_noop) + +(1,1,1) = {" +Ia +Ia +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +zJ +"} +(2,1,1) = {" +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(3,1,1) = {" +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +RQ +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +hh +RQ +RQ +cU +cU +Ia +Ia +zJ +"} +(4,1,1) = {" +Ia +Ia +Ia +Ia +Ia +Ia +RQ +cU +cU +cU +cU +cU +RQ +Ia +Ia +Ia +Ia +jC +jC +jC +RQ +RQ +RQ +RQ +jC +cU +Ia +Ia +RQ +RQ +RQ +Ia +Ia +Ia +Ia +Ia +zJ +"} +(5,1,1) = {" +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +RQ +hh +Ia +Ia +Ia +Ia +Ia +Ia +RQ +hh +RQ +RQ +RQ +RQ +cU +jC +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +zJ +"} +(6,1,1) = {" +Ia +Ia +Ia +Ia +Ia +cU +uQ +RQ +RQ +RQ +cU +cU +RQ +RQ +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +jC +cU +RQ +hh +RQ +dr +dr +Ia +Ia +de +zJ +"} +(7,1,1) = {" +Ia +Ia +Ia +Ia +Ia +cU +RQ +hh +hh +RQ +RQ +cU +cU +cU +uQ +uQ +Ia +Ia +Ia +de +de +de +Ia +Ia +Ia +Ia +Ia +cU +RQ +RQ +uS +de +de +de +de +de +de +"} +(8,1,1) = {" +Ia +Ia +Ia +Ia +RQ +uQ +Ia +Ia +Ia +RQ +cU +cU +RQ +cU +cU +uQ +de +de +de +de +Ob +de +Ia +Ia +Ia +Ia +Ia +RQ +RQ +cU +Ji +xo +de +de +de +de +de +"} +(9,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +zt +tP +Py +CP +de +Lu +de +de +Ia +Ia +cU +cU +cU +uQ +DP +hL +tS +xo +de +de +de +GP +"} +(10,1,1) = {" +Ia +Ia +Ia +uQ +cU +tM +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +uQ +cU +de +DC +Py +oN +Py +DC +de +cU +cU +cU +cU +cU +cU +zt +Vw +Vw +eC +eC +eC +Xy +Kt +"} +(11,1,1) = {" +Ia +Ia +Ia +de +de +Wv +de +cU +Ia +Ia +de +de +de +de +cU +uQ +de +QC +tu +de +CP +Py +de +RQ +cU +cU +cU +uQ +RQ +DP +eC +mD +xo +de +de +de +if +"} +(12,1,1) = {" +Ia +Ia +Ia +de +SA +DC +de +cU +cU +Ia +de +ZO +DC +tP +qU +cU +de +de +de +de +Py +DC +de +cU +cU +cU +RQ +cU +cU +cU +DP +xo +de +de +de +de +de +"} +(13,1,1) = {" +Ia +Ia +Ia +de +DC +DC +de +hQ +hQ +Ia +de +nA +DC +de +RQ +cU +cU +Ia +Ia +de +de +Wv +de +cU +cU +RQ +RQ +RQ +uQ +fh +kd +de +de +de +de +de +de +"} +(14,1,1) = {" +Ia +Ia +Ia +de +DC +tu +de +hQ +hQ +hQ +de +de +de +de +cU +RQ +RQ +Ia +Ia +cU +cU +pw +uQ +cU +cU +RQ +hh +fh +fh +fh +fh +tq +tq +Ia +Ia +de +zJ +"} +(15,1,1) = {" +Ia +Ia +Ia +de +Wv +de +de +Ia +hQ +hQ +hQ +hQ +hQ +Ia +cU +RQ +hh +Ia +RQ +RQ +uQ +cU +RQ +RQ +cU +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +zJ +"} +(16,1,1) = {" +Ia +Ia +Ia +Ia +pw +uQ +Ia +Ia +hQ +hQ +hQ +hQ +hQ +cU +RQ +RQ +hh +Ia +hh +RQ +RQ +cU +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +zJ +"} +(17,1,1) = {" +Ia +Ia +Ia +cU +uQ +uQ +Ia +Ia +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +Ia +Ia +RQ +cU +cU +Qc +Ws +Qc +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +zJ +"} +(18,1,1) = {" +Ia +Ia +Ia +cU +RQ +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +hQ +hQ +hQ +Ia +Ia +Ia +cU +Qc +Ws +LN +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +zJ +"} +(19,1,1) = {" +Ia +Ia +Ia +cU +RQ +RQ +hh +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +hQ +cU +cU +cU +LN +Qc +gi +Qc +Qc +Ws +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +zJ +"} +(20,1,1) = {" +Ia +Ia +Ia +RQ +RQ +RQ +RQ +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +hQ +hQ +hQ +cU +cU +Ws +LN +Ws +LN +Ia +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(21,1,1) = {" +Ia +Ia +Ia +Ia +RQ +RQ +RQ +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +hQ +hQ +hQ +Ia +Ia +Ia +Qc +Ws +Qc +Ia +fh +fh +fh +fh +Ia +Ia +Ia +hQ +Ia +Ia +Ia +zJ +"} +(22,1,1) = {" +Ia +Ia +Ia +Ia +hh +RQ +RQ +uQ +Ia +Ia +Ia +Ia +Ia +cU +cU +hQ +hQ +hQ +hQ +hQ +hQ +Ia +Ia +Ia +Ia +fh +fh +fh +fh +fh +Ia +Ia +hQ +Ia +Ia +Ia +zJ +"} +(23,1,1) = {" +Ia +Ia +Ia +Ia +RQ +RQ +cU +cU +uQ +cU +Ia +Ia +Ia +cU +RQ +Ia +Ia +hQ +hQ +hQ +hQ +Ia +Ia +Ia +Ia +Ia +fh +fh +fh +fh +Ia +Ia +hQ +Ia +Ia +Ia +zJ +"} +(24,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +cU +uQ +tM +uQ +cU +cU +RQ +RQ +RQ +Ia +Ia +hQ +hQ +hQ +hQ +hQ +hQ +Ia +Ia +Ia +fh +fh +fh +fh +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(25,1,1) = {" +Ia +Ia +Ia +cU +cU +Ia +cU +de +Wv +de +de +cU +RQ +hh +RQ +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(26,1,1) = {" +Ia +Ia +Ia +cU +cU +Ia +Ia +de +oa +Py +de +cU +cU +RQ +cU +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +hQ +Ia +fh +fh +fh +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(27,1,1) = {" +Ia +Ia +Ia +cU +Ia +Ia +Ia +de +DC +Py +de +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +Ia +fh +fh +Ia +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(28,1,1) = {" +Ia +Ia +cU +cU +Ia +Ia +Ia +de +Py +Vw +de +de +de +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +Ia +fh +fh +fh +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(29,1,1) = {" +Ia +Ia +cU +cU +Ia +Ia +Ia +de +DC +DC +Py +Vw +de +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +Ia +fh +fh +fh +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(30,1,1) = {" +Ia +Ia +cU +RQ +Ia +Ia +Ia +de +Py +DC +DC +DC +de +de +de +de +Ia +Ia +Ia +Ia +Ia +hQ +hQ +hQ +hQ +Ia +cU +fh +Ia +Ia +Ia +hQ +hQ +Ia +Ia +Ia +zJ +"} +(31,1,1) = {" +Ia +Ia +Ia +cU +Ia +Ia +Ws +de +QV +Py +Py +DC +DC +DC +Py +tP +qU +oV +Ia +Ia +Ia +cU +hQ +hQ +cU +cU +cU +fh +Ia +Ia +Ia +hQ +hQ +hQ +Ia +Ia +zJ +"} +(32,1,1) = {" +Ia +Ia +Ia +Ia +Ia +Ia +Qc +de +de +de +de +de +RK +oa +Py +de +uQ +cU +RQ +cU +Ia +cU +hQ +hQ +cU +cU +cU +fh +Ia +Ia +Ia +hQ +hQ +hQ +Ia +Ia +zJ +"} +(33,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +LN +Ws +Qc +LN +Ia +de +de +de +de +de +cU +RQ +RQ +RQ +RQ +uQ +de +de +de +de +de +de +de +Ia +Ia +hQ +hQ +hQ +Ia +Ia +zJ +"} +(34,1,1) = {" +Ia +Ia +Ia +Ia +uQ +Ws +Qc +Qc +Qc +Ws +Ws +Ia +Ia +Ia +Ia +Ia +oV +RQ +hh +RQ +uQ +zt +tP +Py +Py +DC +CP +DC +de +Ia +Ia +hQ +hQ +hQ +Ia +Ia +zJ +"} +(35,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +cU +LN +gi +LN +Qc +Qc +Ia +Ia +Ia +Ia +Ia +cU +RQ +cU +uQ +oV +de +Py +Py +Py +DC +DC +de +de +de +de +hQ +hQ +Ia +Ia +zJ +"} +(36,1,1) = {" +Ia +Ia +Ia +RQ +uQ +cU +Ia +LN +Qc +Qc +Ws +Qc +Ia +Ia +Ia +oV +oV +uQ +tM +uQ +cU +cU +de +RK +CP +DC +DC +DC +de +SA +pd +de +hQ +hQ +Ia +Ia +zJ +"} +(37,1,1) = {" +Ia +Ia +Ia +cU +cU +cU +Ia +Ws +Qc +Ws +Qc +Ws +Ia +Ia +Ia +Ia +de +de +Wv +de +de +cU +de +de +de +de +DC +Py +de +DC +en +de +hQ +hQ +Ia +Ia +zJ +"} +(38,1,1) = {" +Ia +Ia +Ia +cU +cU +Ia +Ia +Ia +cU +Qc +LN +Qc +cU +de +de +de +de +DC +DC +DC +de +Ia +hQ +de +Dp +zf +DC +Vw +tP +DC +pd +de +hQ +hQ +Ia +Ia +zJ +"} +(39,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +Ia +Ia +uQ +LN +uQ +de +de +de +SA +DC +de +Py +DC +DC +de +Ia +hQ +de +de +de +Py +Py +de +DC +tu +de +hQ +Ia +Ia +Ia +zJ +"} +(40,1,1) = {" +Ia +de +de +de +de +RQ +Ia +Ia +RQ +RQ +uQ +de +wn +Jw +DC +DC +tP +DC +DC +Py +de +Ia +Ia +hQ +Ia +de +Py +Py +de +DC +pd +de +hQ +Ia +Ia +Ia +zJ +"} +(41,1,1) = {" +Ia +de +DC +DC +de +RQ +Ia +Ia +Ia +RQ +RQ +de +de +de +DC +Py +de +DC +mf +Py +de +Ia +Ia +de +de +de +Vw +Py +de +DC +zl +de +hQ +Ia +Ia +Ia +zJ +"} +(42,1,1) = {" +Ia +de +Pg +DC +de +RQ +hh +Ia +Ia +hh +RQ +cU +cU +de +de +de +de +de +de +de +de +Ia +Ia +de +pz +hT +Py +DC +de +DC +pd +de +hQ +Ia +Ia +Ia +zJ +"} +(43,1,1) = {" +Ia +de +RK +DC +de +RQ +RQ +Ia +Ia +Ia +Ia +RQ +cU +RQ +cU +cU +uQ +Ia +Ia +Ia +Ia +Ia +Ia +de +de +de +Py +DC +de +de +de +de +hQ +Ia +Ia +Ia +zJ +"} +(44,1,1) = {" +Ia +de +de +DC +de +cU +uQ +Ia +Ia +Ia +Ia +cU +cU +cU +uQ +cU +tM +RQ +hh +Ia +Ia +Ia +Ia +hQ +cU +de +DC +DC +de +hQ +hQ +Ia +Ia +Ia +Ia +Ia +zJ +"} +(45,1,1) = {" +Ia +Ia +de +Wv +de +uQ +cU +Ia +Ia +Ia +Ia +RQ +cU +cU +de +de +Wv +de +hQ +hQ +hQ +hQ +Ia +de +de +de +CP +Py +de +hQ +hQ +Ia +Ia +Ia +Ia +Ia +zJ +"} +(46,1,1) = {" +Ia +Ia +Ia +pw +cU +cU +tM +Ia +Ia +Ia +RQ +RQ +hQ +hQ +de +SA +DC +de +hQ +hQ +hQ +hQ +hQ +de +qj +ji +DC +Py +de +hQ +hQ +hQ +hQ +hQ +hQ +Ia +zJ +"} +(47,1,1) = {" +Ia +Ia +Ia +RQ +uQ +de +Wv +de +de +hh +hh +hQ +hQ +hQ +de +Py +DC +de +hQ +hQ +hQ +hQ +hQ +de +de +de +DC +DC +de +hQ +hQ +hQ +hQ +Ia +Ia +Ia +zJ +"} +(48,1,1) = {" +Ia +Ia +Ia +RQ +RQ +de +DC +Py +de +hQ +hQ +hQ +hQ +hQ +de +DC +tu +de +hQ +hQ +RQ +hh +RQ +RQ +RQ +de +de +Wv +de +cU +RQ +RQ +hh +Ia +Ia +Ia +zJ +"} +(49,1,1) = {" +Ia +Ia +Ia +hh +RQ +de +DC +Py +de +hQ +hQ +hQ +hQ +hQ +de +Wv +de +de +cU +cU +RQ +RQ +Ia +Ia +Ia +Ia +Ia +pw +cU +uQ +cU +RQ +RQ +Ia +Ia +Ia +zJ +"} +(50,1,1) = {" +Ia +Ia +Ia +hQ +hQ +de +RK +DC +de +hQ +hQ +hQ +hQ +cU +uQ +pw +cU +cU +cU +de +de +de +de +de +Ia +Ia +Ia +Pw +uQ +cU +uQ +cU +RQ +Ia +Ia +Ia +zJ +"} +(51,1,1) = {" +Ia +Ia +Ia +cU +cU +de +de +Wv +de +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +uQ +zt +tP +DC +DC +DC +de +Ia +Ia +Ia +Pw +Pw +RQ +RQ +cU +Pw +Ia +Ia +Ia +zJ +"} +(52,1,1) = {" +Ia +Ia +Ia +cU +cU +cU +cU +pw +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +de +RK +DC +DC +de +Ia +Ia +Ia +Ia +RQ +hh +RQ +cU +cU +Ia +Ia +Ia +zJ +"} +(53,1,1) = {" +Ia +Ia +Ia +fh +fh +cU +uQ +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +Ia +cU +de +de +de +de +de +cU +Ia +Ia +Ia +cU +RQ +RQ +RQ +cU +cU +Ia +Ia +zJ +"} +(54,1,1) = {" +Ia +Ia +Ia +fh +fh +Ia +cU +cU +uQ +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +RQ +uQ +cU +cU +cU +RQ +RQ +RQ +cU +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +zJ +"} +(55,1,1) = {" +Ia +Ia +Ia +fh +fh +Ia +RQ +cU +cU +cU +cU +cU +Ia +de +de +de +Ia +Ia +cU +cU +cU +cU +cU +cU +RQ +hh +RQ +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +zJ +"} +(56,1,1) = {" +Ia +Ia +fh +fh +fh +fh +cU +cU +cU +hQ +cU +cU +Ia +de +LE +de +Ia +Ia +cU +Ia +cU +cU +cU +cU +RQ +RQ +cU +cU +Ia +Ia +cU +cU +cU +RQ +Ia +Ia +zJ +"} +(57,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +fh +cU +cU +hQ +cU +cU +de +de +UJ +de +Ia +Ia +cU +Ia +Ia +RQ +cU +cU +cU +cU +cU +cU +Ia +Ia +Pw +cU +cU +RQ +Ia +Ia +zJ +"} +(58,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +fh +cU +cU +hQ +hQ +cU +de +SA +DC +de +Ia +Ia +RQ +hh +Ia +Ia +Ia +cU +cU +cU +cU +cU +Ia +Ia +cU +cU +RQ +hh +Ia +Ia +zJ +"} +(59,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +fh +fh +cU +hQ +hQ +uQ +de +DC +DC +de +Ia +Ia +RQ +RQ +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +Ia +Ia +cU +RQ +RQ +Ia +Ia +zJ +"} +(60,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +fh +cU +cU +hQ +hQ +hQ +de +DC +DC +de +Ia +Ia +cU +RQ +RQ +cU +Ia +Ia +cU +cU +RQ +cU +cU +Ia +Ia +cU +RQ +cU +Ia +Ia +zJ +"} +(61,1,1) = {" +Ia +Ia +fh +fh +fh +fh +fh +RQ +cU +hQ +hQ +hQ +de +Wv +de +de +Ia +Ia +cU +cU +cU +cU +Ia +Ia +Ia +RQ +RQ +cU +cU +Ia +Ia +cU +cU +Ia +Ia +Ia +zJ +"} +(62,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +RQ +RQ +cU +cU +hQ +hQ +hQ +pw +RQ +hh +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +RQ +hh +RQ +RQ +Ia +Ia +cU +Pw +Ia +Ia +Ia +zJ +"} +(63,1,1) = {" +Ia +Ia +Ia +Ia +Ia +fh +hh +RQ +RQ +cU +cU +hQ +hQ +cU +uQ +RQ +RQ +Ia +cU +Ia +Ia +cU +cU +cU +Ia +Ia +Ia +cU +uQ +cU +cU +uQ +cU +Ia +Ia +Ia +zJ +"} +(64,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +fh +fh +RQ +cU +cU +hQ +hQ +hQ +hQ +cU +RQ +cU +cU +Ia +Ia +cU +cU +cU +cU +Ia +Ia +cU +cU +tM +cU +uQ +cU +Ia +Ia +Ia +zJ +"} +(65,1,1) = {" +Ia +Ia +fh +fh +fh +fh +fh +fh +cU +cU +cU +cU +hQ +hQ +hQ +cU +cU +cU +cU +cU +Ia +Ia +Ia +cU +cU +Ia +Ia +de +de +Wv +de +cU +cU +Ia +Ia +Ia +zJ +"} +(66,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +fh +fh +fh +cU +cU +cU +hQ +hQ +hQ +hQ +cU +cU +cU +cU +Ia +Ia +Ia +Ia +cU +Ia +Ia +de +ZO +DC +de +cU +RQ +Ia +Ia +Ia +zJ +"} +(67,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +fh +fh +cU +cU +cU +cU +cU +cU +hQ +hQ +hQ +cU +cU +cU +cU +cU +Ia +Ia +cU +Ia +Ia +de +Pg +DC +de +RQ +RQ +Ia +Ia +Ia +zJ +"} +(68,1,1) = {" +Ia +Ia +fh +Ia +Ia +fh +fh +fh +fh +Ia +Ia +cU +cU +cU +cU +cU +RQ +RQ +RQ +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +de +QC +DC +de +Ia +Ia +Ia +Ia +Ia +zJ +"} +(69,1,1) = {" +Ia +Ia +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +Ia +cU +RQ +RQ +hh +RQ +RQ +cU +cU +RQ +Ia +Ia +Ia +Ia +Ia +de +de +de +de +Ia +Ia +Ia +Ia +Ia +zJ +"} +(70,1,1) = {" +Ia +Ia +Ia +fh +Ia +Ia +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +RQ +RQ +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(71,1,1) = {" +Ia +Ia +Ia +Ia +Ia +Ia +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +Ia +zJ +"} +(72,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +fh +fh +fh +fh +fh +Ia +Ia +fh +fh +Ia +Ia +Ia +Ia +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +cU +RQ +cU +cU +RQ +RQ +cU +Ia +zJ +"} +(73,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +fh +Ia +de +de +de +cU +uQ +cU +cU +Ia +RQ +Ia +Ia +Ia +cU +cU +cU +cU +cU +Ia +Ia +Ia +zJ +"} +(74,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +Ia +fh +fh +fh +fh +Ia +Ia +fh +fh +fh +de +Ie +de +cU +uQ +cU +RQ +RQ +hh +Ia +Ia +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +zJ +"} +(75,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +cU +Ia +fh +fh +fh +fh +Ia +Ia +de +de +de +Jy +de +de +de +uQ +cU +jC +RQ +Ia +Ia +cU +RQ +cU +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(76,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +cU +Ia +fh +fh +fh +fh +fh +fh +de +pd +DC +DC +DC +DC +tP +qU +uQ +cU +cU +Ia +Ia +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(77,1,1) = {" +Ia +Ia +Ia +Ia +cU +Ia +fh +Ia +Ia +fh +fh +fh +fh +fh +de +RL +DC +DC +DC +DC +de +RQ +RQ +uQ +cU +cU +cU +cU +Ia +Ia +Ia +de +de +de +Ia +Ia +zJ +"} +(78,1,1) = {" +Ia +Ia +Ia +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +de +de +de +AD +de +de +de +hh +RQ +RQ +cU +cU +cU +cU +cU +cU +Ia +de +Ls +de +Ia +Ia +zJ +"} +(79,1,1) = {" +Ia +Ia +Ia +RQ +cU +cU +cU +fh +Ia +Ia +fh +fh +fh +fh +fh +Ia +de +ip +de +Ia +Ia +Ia +Ia +cU +cU +cU +cU +de +de +de +de +de +EM +de +Ia +Ia +zJ +"} +(80,1,1) = {" +Ia +Ia +Ia +RQ +RQ +cU +cU +cU +Ia +Ia +Ia +fh +fh +fh +fh +fh +de +de +de +fh +Ia +Ia +Ia +cU +cU +cU +zt +tP +DC +DC +Py +DC +DC +de +Ia +Ia +zJ +"} +(81,1,1) = {" +Ia +Ia +Ia +RQ +hh +RQ +cU +cU +Ia +fh +fh +fh +fh +fh +fh +fh +fh +Ia +fh +fh +fh +Ia +Ia +Ia +cU +cU +cU +de +de +DC +CP +DC +Py +de +Ia +Ia +zJ +"} +(82,1,1) = {" +Ia +Ia +Ia +RQ +RQ +RQ +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +jC +cU +cU +cU +de +RK +Py +Py +Py +de +Ia +Ia +zJ +"} +(83,1,1) = {" +Ia +Ia +Ia +cU +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +RQ +jC +RQ +cU +de +de +de +de +zS +de +Ia +Ia +zJ +"} +(84,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +RQ +jC +cU +cU +cU +cU +cU +de +jO +de +Ia +Ia +zJ +"} +(85,1,1) = {" +Ia +Ia +Ia +Ia +cU +cU +cU +cU +fh +fh +fh +fh +fh +fh +fh +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +RQ +Ia +de +de +de +Ia +Ia +zJ +"} +(86,1,1) = {" +Ia +Ia +Ia +Ia +Ia +RQ +cU +cU +cU +cU +fh +fh +fh +cU +cU +RQ +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +Ia +RQ +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(87,1,1) = {" +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +cU +RQ +RQ +RQ +RQ +cU +cU +cU +uQ +cU +cU +cU +cU +Ia +Ia +Ia +hh +RQ +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(88,1,1) = {" +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +RQ +hh +hh +Ia +cU +cU +uQ +cU +cU +RQ +Ia +Ia +Ia +Ia +Ia +Ia +RQ +RQ +cU +RQ +Ia +Ia +Ia +Ia +zJ +"} +(89,1,1) = {" +Ia +de +Ia +Ia +cU +cU +cU +cU +cU +cU +RQ +RQ +RQ +Ia +Ia +Ia +Ia +Ia +cU +cU +uQ +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +RQ +Ia +Ia +Ia +Ia +zJ +"} +(90,1,1) = {" +Ia +de +Ia +Ia +RQ +RQ +cU +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +cU +Qc +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +uQ +cU +cU +RQ +hh +Ia +Ia +Ia +zJ +"} +(91,1,1) = {" +Ia +de +de +RQ +hh +RQ +RQ +RQ +RQ +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +RQ +Ws +cU +cU +Ia +Ia +Ia +de +de +de +de +cU +cU +RQ +RQ +Ia +Ia +Ia +zJ +"} +(92,1,1) = {" +Ia +de +de +cU +RQ +RQ +cU +cU +cU +cU +cU +jC +Ia +Ia +Ia +Ia +Ia +Ia +cU +Qc +LN +cU +Ia +Ia +Ia +de +tu +DC +de +cU +cU +RQ +RQ +RQ +Ia +Ia +zJ +"} +(93,1,1) = {" +Ia +de +de +de +cU +cU +cU +cU +cU +cU +jC +jC +de +de +de +Ia +Ia +Ia +Ia +NG +Ws +Ia +Ia +Ia +Ia +de +QC +DC +tP +qU +cU +cU +RQ +Ia +Ia +Ia +zJ +"} +(94,1,1) = {" +Ia +de +de +de +cU +cU +cU +RQ +RQ +jC +jC +jC +de +zr +de +cU +Ia +Ia +Ia +Qc +Qc +cU +RQ +cU +Ia +de +de +de +de +Ia +cU +cU +cU +Ia +Ia +Ia +zJ +"} +(95,1,1) = {" +Ia +de +de +de +cU +cU +cU +RQ +cU +uQ +de +de +de +uD +de +de +de +Ia +Ia +Qc +Ws +Qc +Ws +Qc +cU +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +uQ +Ia +Ia +zJ +"} +(96,1,1) = {" +de +de +de +DC +zA +cU +cU +uQ +cU +zt +tP +DC +DC +DC +DC +gl +de +Ia +Qc +LN +Qc +Qc +Qc +Ws +LN +Qc +Ia +Ia +Ia +Ia +Ia +cU +uQ +uQ +Ia +Ia +zJ +"} +(97,1,1) = {" +DC +DC +DC +DC +DC +zA +cU +cU +cU +uQ +de +RK +DC +DC +DC +du +de +Ia +Ws +Ws +Qc +gi +LN +Qc +Qc +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +uQ +Ia +Ia +zJ +"} +(98,1,1) = {" +xo +xo +xo +xo +DC +DC +qU +cU +cU +cU +de +de +de +vc +de +de +de +Ia +Ia +Qc +LN +Ws +Qc +Ws +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +zJ +"} +(99,1,1) = {" +TR +DC +DC +DC +DC +Gu +cU +cU +cU +Ia +Ia +Ia +de +JH +de +Ia +Ia +Ia +Ia +Ws +LN +RQ +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +RQ +cU +Ia +Ia +Ia +zJ +"} +(100,1,1) = {" +de +de +de +DC +Gu +cU +cU +Ia +Ia +Ia +Ia +Ia +de +de +de +Ia +Ia +Ia +Ia +Qc +Qc +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +hh +RQ +cU +Ia +Ia +Ia +zJ +"} +(101,1,1) = {" +de +de +de +de +cU +cU +cU +cU +cU +cU +Ia +Ia +fh +fh +fh +Ia +fh +fh +cU +Ws +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +RQ +RQ +cU +Ia +Ia +Ia +zJ +"} +(102,1,1) = {" +de +de +de +de +de +RQ +cU +cU +cU +cU +cU +Ia +fh +fh +fh +fh +fh +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +RQ +cU +cU +Ia +fh +Ia +zJ +"} +(103,1,1) = {" +de +de +de +de +de +RQ +cU +cU +cU +cU +cU +RQ +cU +cU +fh +fh +fh +uQ +uQ +cU +fh +Ia +Ia +fh +fh +fh +fh +fh +Ia +fh +cU +cU +cU +fh +fh +Ia +zJ +"} +(104,1,1) = {" +Ia +de +de +de +Ia +fh +fh +cU +cU +cU +cU +RQ +RQ +cU +fh +fh +fh +cU +cU +cU +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +cU +cU +cU +fh +fh +Ia +zJ +"} +(105,1,1) = {" +Ia +de +de +de +fh +fh +fh +fh +cU +cU +RQ +hh +RQ +cU +fh +fh +fh +RQ +cU +uQ +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +cU +cU +cU +fh +fh +Ia +zJ +"} +(106,1,1) = {" +Ia +de +de +fh +fh +fh +fh +fh +cU +cU +RQ +RQ +Ia +Ia +Ia +fh +fh +cU +cU +uQ +Ia +Ia +Ia +fh +fh +fh +fh +fh +fh +fh +cU +cU +fh +fh +fh +Ia +zJ +"} +(107,1,1) = {" +Ia +de +Ia +fh +fh +fh +fh +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +nx +Ia +Ia +fh +fh +fh +fh +fh +Ia +fh +cU +cU +fh +fh +fh +Ia +zJ +"} +(108,1,1) = {" +Ia +de +fh +fh +fh +fh +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +nx +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +fh +RQ +cU +Ia +fh +fh +Ia +zJ +"} +(109,1,1) = {" +Ia +Ia +fh +fh +Ia +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +fh +fh +Ia +Ia +Ia +cU +cU +Ia +fh +fh +Ia +zJ +"} +(110,1,1) = {" +Ia +Ia +fh +fh +Ia +Ia +Ia +cU +cU +cU +RQ +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +RQ +Ia +Ia +Ia +de +de +de +de +Ia +Ia +cU +cU +Ia +Ia +fh +Ia +zJ +"} +(111,1,1) = {" +Ia +Ia +fh +fh +Ia +Ia +Ia +RQ +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +RQ +RQ +hh +Ia +de +eB +hu +de +Ia +Ia +cU +cU +Ia +Ia +Ia +Ia +zJ +"} +(112,1,1) = {" +Ia +Ia +fh +fh +Ia +Ia +Ia +RQ +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +cU +cU +cU +cU +RQ +RQ +Ia +de +sN +DC +de +Ia +cU +cU +cU +cU +Ia +Ia +Ia +zJ +"} +(113,1,1) = {" +Ia +Ia +fh +fh +fh +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +cU +cU +cU +cU +RQ +Ia +de +DC +DC +de +Ia +cU +cU +cU +RQ +Ia +Ia +Ia +zJ +"} +(114,1,1) = {" +Ia +Ia +Ia +fh +fh +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +cU +cU +cU +cU +RQ +Ia +de +de +Wv +de +Ia +cU +cU +RQ +RQ +Ia +Ia +Ia +zJ +"} +(115,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +cU +RQ +RQ +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +RQ +RQ +cU +cU +Ia +cU +uQ +pw +uQ +cU +cU +RQ +hh +RQ +Ia +Ia +Ia +zJ +"} +(116,1,1) = {" +Ia +Ia +Ia +fh +fh +Ia +Ia +Ia +RQ +hh +RQ +RQ +RQ +cU +Ia +Ia +Ia +Ia +Ia +hh +vM +cU +cU +cU +cU +cU +cU +cU +cU +cU +RQ +RQ +Ia +Ia +Ia +Ia +zJ +"} +(117,1,1) = {" +Ia +Ia +Ia +fh +fh +Ia +Ia +Ia +cU +RQ +RQ +RQ +cU +cU +cU +cU +cU +hh +Ia +RQ +RQ +RQ +cU +cU +cU +uQ +cU +cU +Ia +cU +cU +cU +Ia +Ia +Ia +Ia +zJ +"} +(118,1,1) = {" +Ia +Ia +fh +fh +fh +fh +Ia +Ia +cU +cU +cU +cU +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(119,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(120,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +Ia +Ia +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(121,1,1) = {" +Ia +Ia +Ia +Ia +fh +fh +fh +fh +fh +fh +Ia +fh +Ia +Ia +Ia +Ia +cU +cU +cU +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(122,1,1) = {" +Ia +Ia +Ia +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +Ia +zJ +"} +(123,1,1) = {" +Ia +Ia +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +lA +zJ +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment2_b.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment2_b.dmm new file mode 100644 index 000000000000..931fbffb5265 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment2_b.dmm @@ -0,0 +1,6493 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ax" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aA" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/lightgeist, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"aI" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aN" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"aR" = ( +/turf/template_noop, +/area/template_noop) +"aT" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"ba" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"bi" = ( +/obj/machinery/door/airlock/abductor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"bw" = ( +/obj/effect/spawner/structure/window/plasma, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"bz" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/asteroid/elite/herald, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"bR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/abductor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"ca" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"cn" = ( +/obj/machinery/door/poddoor{ + id = "ayylmaozone"; + max_integrity = 5000 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"cp" = ( +/obj/machinery/door/poddoor{ + id = "ayylmaozone"; + max_integrity = 5000 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"cD" = ( +/obj/machinery/door/airlock/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"cL" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/faithless, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"cN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/table/abductor, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"cW" = ( +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/obj/structure/sign/warning{ + desc = "A sign warning you about something particularly scary in this chamber."; + name = "WARNING: Angry Marble Man"; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"da" = ( +/obj/effect/spawner/structure/window/plasma, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"db" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"dh" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"dj" = ( +/obj/machinery/door/airlock/abductor, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"dx" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"dz" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"dN" = ( +/obj/machinery/door/airlock/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ed" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/multitool/abductor, +/obj/item/screwdriver/abductor, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"ef" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ei" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/bear/russian, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ek" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"el" = ( +/obj/structure/table/optable/abductor, +/obj/effect/light_emitter, +/obj/item/keycard/hilbert{ + desc = "A keycard with a strange symbol embedded in the center."; + name = "strange keycard"; + puzzle_id = "number1victoryroyale" + }, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"eC" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"eF" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/clothing/under/abductor, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/head/helmet/abductor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/machinery/light/small/directional/north{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"eS" = ( +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"fA" = ( +/obj/machinery/door/keycard{ + open_message = "The door hums ominously and slides open."; + puzzle_id = "number1victoryroyale" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"fP" = ( +/obj/structure/bed/dogbed, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "riftenter"; + name = "rift entrance" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"gm" = ( +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"gv" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"gz" = ( +/obj/structure/table/abductor, +/obj/item/veilrender/vealrender{ + name = "Exhibit 5634Mo - BeefKnife" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"gE" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"gQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"hc" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"he" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"hr" = ( +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"hG" = ( +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"hK" = ( +/obj/structure/table/abductor, +/obj/machinery/recharger, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"hQ" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"hY" = ( +/obj/structure/table/abductor, +/obj/item/melee/baseball_bat{ + name = "Exhibit 5321nL - Knee Hittur" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"iq" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"ir" = ( +/mob/living/simple_animal/hostile/ashwalker{ + name = "Cannot-Be-Contained" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"iu" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"iy" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "ayylmaozone"; + name = "Exhibit Exit Lockdown Toggle"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"jl" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"jJ" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/clothing/under/abductor, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/head/helmet/abductor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"jV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"jX" = ( +/obj/structure/statue/bananium/clown{ + name = "Exhibit 5635jG - Hunk" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"kA" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"kM" = ( +/obj/structure/table/abductor, +/obj/structure/fluff{ + desc = "A highly detailed visualization of a space carp, projected outwards via hologram."; + dir = 8; + icon = 'icons/mob/carp.dmi'; + icon_state = "holocarp"; + name = "hologram of a space carp" + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"la" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/cosmos, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"lf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"lN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"lO" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"lR" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "ayylmaozone"; + max_integrity = 5000 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"mb" = ( +/obj/machinery/light/small/directional/north{ + bulb_colour = "#8142F5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"mh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"mE" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"mT" = ( +/turf/closed/indestructible/vault/alien, +/area/template_noop) +"nw" = ( +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"nH" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"oh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/abductor, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"ow" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"oy" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/lizard, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"oT" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"oW" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"oY" = ( +/obj/machinery/light/small/directional/west{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"pl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/abductor, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"ps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"pN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"pT" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"pY" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"qc" = ( +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"qj" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"qk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"qo" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"qt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"qw" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"qx" = ( +/obj/structure/table/abductor, +/obj/item/storage/box/alienhandcuffs, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"rG" = ( +/obj/structure/fluff{ + desc = "A futuristic looking console. The lock screen is written in a strange font."; + icon = 'icons/obj/abductor.dmi'; + icon_state = "console"; + name = "console" + }, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"su" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"sC" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"sD" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"sF" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"sM" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"sO" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/computer/security{ + name = "exhibit camera console"; + network = list("ayylmao") + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"sS" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/awaymission/caves/misc/ayylmao) +"tn" = ( +/obj/structure/table/abductor, +/obj/item/plunger{ + name = "Exhibit 9456pL - Suckler" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"tw" = ( +/obj/structure/falsewall/abductor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"tN" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"uj" = ( +/obj/effect/turf_decal/siding/purple, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ut" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/table/abductor, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"uu" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/clothing/head/helmet/abductor, +/obj/item/crowbar/abductor, +/obj/item/clothing/under/abductor, +/obj/item/clothing/suit/armor/abductor/vest, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"uJ" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 4 of 6."; + name = "secret banana" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"uT" = ( +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"vD" = ( +/obj/structure/fluff{ + desc = "A man-sized tube with various surgical equipment."; + icon = 'icons/obj/abductor.dmi'; + icon_state = "experiment-open"; + name = "experimentation machine" + }, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"wd" = ( +/turf/closed/wall/mineral/abductor, +/area/template_noop) +"wo" = ( +/obj/structure/table/optable/abductor, +/obj/effect/light_emitter, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"wt" = ( +/obj/structure/table/abductor, +/obj/item/hand_labeler{ + name = "Exhibit 4523Mn - Namer" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ww" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/pen/invisible, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"wC" = ( +/mob/living/simple_animal/hostile/russian/ranged/trooper, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"wI" = ( +/obj/structure/table/abductor, +/obj/item/oar{ + name = "Exhibit 4312mJ - Ore" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"wR" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/item/paper_bin/carbon, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"xl" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/asteroid/lobstrosity/lava{ + environment_smash = 0 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"xD" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/carp/ranged/chaos, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"xF" = ( +/obj/structure/table/abductor, +/obj/item/mmi/syndie{ + name = "Exhibit 5432sN - Angry Metal Maker" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"xK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"yq" = ( +/turf/closed/indestructible/fakeglass{ + icon = 'icons/obj/smooth_structures/rplasma_window.dmi'; + icon_state = "rplasma_window-0" + }, +/area/awaymission/caves/misc/ayylmao) +"yt" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"zb" = ( +/obj/structure/fluff{ + desc = "A tank filled with replacement organs. There appears to be some sort of lock on it."; + icon = 'icons/obj/abductor.dmi'; + icon_state = "dispenser"; + name = "replacement organ storage" + }, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"zs" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"zI" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"zJ" = ( +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Ah" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/structure/table/abductor, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Ao" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"AE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"BP" = ( +/obj/machinery/door/poddoor{ + id = "ayylmaozone"; + max_integrity = 5000 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"Cx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/indestructible/vault/alien, +/area/awaymission/caves/misc/ayylmao) +"Cz" = ( +/obj/structure/fluff{ + desc = "A strange looking platform used to teleport (un)willing victims."; + icon = 'icons/obj/abductor.dmi'; + icon_state = "alien-pad-idle"; + name = "alien teleport pad" + }, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"CH" = ( +/obj/effect/turf_decal/siding/purple/end, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"CL" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Dc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"DA" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/stock_parts/cell/infinite/abductor, +/obj/item/wrench/abductor, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"DM" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"DS" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"DX" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Ea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/crowbar/abductor, +/obj/item/screwdriver/abductor, +/obj/item/weldingtool/abductor, +/obj/item/wirecutters/abductor, +/obj/item/wrench/abductor, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"Ec" = ( +/obj/machinery/door/airlock/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"En" = ( +/turf/closed/indestructible/alien, +/area/awaymission/caves/misc/ayylmao/office) +"EN" = ( +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"EY" = ( +/obj/structure/table/abductor, +/obj/structure/fluff{ + desc = "A highly detailed visualization of a space carp, projected outwards via hologram."; + dir = 4; + icon = 'icons/mob/carp.dmi'; + icon_state = "holocarp"; + name = "hologram of a space carp" + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"EZ" = ( +/obj/machinery/door/airlock/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Fg" = ( +/obj/structure/table/abductor, +/obj/item/toy/plush/awakenedplushie, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Fx" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Fy" = ( +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Ga" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ayylmaozone" + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"Gj" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Gn" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/netherworld/statue{ + environment_smash = 0 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"GG" = ( +/obj/structure/toilet{ + dir = 4; + name = "Exhibit 4524Aj - ToyLet" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"GH" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/poddoor/preopen{ + id = "ayylmaozone" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"GN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Hb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"He" = ( +/obj/structure/table/abductor, +/obj/structure/fluff{ + desc = "A highly detailed visualization of a space carp, projected outwards via hologram."; + icon = 'icons/mob/carp.dmi'; + icon_state = "holocarp"; + name = "hologram of a space carp" + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Ht" = ( +/obj/structure/table/abductor, +/obj/item/gun/ballistic/automatic/pistol/deagle/gold{ + name = "Exhibit 4523hJ - Dessert Beagle" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"HN" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"If" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Ih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"IW" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Jl" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/sign/warning{ + desc = "A sign warning you about something particularly scary in this chamber."; + name = "WARNING: Angry Marble Man"; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Jo" = ( +/obj/structure/closet{ + icon_state = "abductor"; + name = "alien closet" + }, +/obj/item/wirecutters/abductor, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"JA" = ( +/obj/machinery/door/poddoor{ + id = "ayylmaozone"; + max_integrity = 5000 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"JW" = ( +/obj/structure/table/abductor, +/obj/structure/cursed_slot_machine{ + name = "Exhibit 0985Je - Chat Reactor" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"JY" = ( +/obj/structure/bed/abductor, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Kj" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"KN" = ( +/mob/living/simple_animal/hostile/pirate/melee, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"KY" = ( +/obj/structure/table/abductor, +/obj/item/hand_labeler_refill{ + name = "Exhibit 4562kM - Namer Names" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"KZ" = ( +/obj/machinery/light/small/directional/south{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Ld" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"LB" = ( +/obj/machinery/light/small/directional/north{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"LJ" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"LL" = ( +/obj/structure/bed/pod{ + dir = 8 + }, +/obj/item/bedsheet/cosmos, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"LS" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/tree, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"LW" = ( +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Md" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/west{ + areastring = /area/awaymission/caves/misc/ayylmao/holding_cell + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"Me" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Mf" = ( +/obj/structure/table/abductor, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"MG" = ( +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"MK" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"MM" = ( +/obj/effect/turf_decal/siding/purple/end, +/obj/structure/filingcabinet, +/obj/item/paper{ + info = "glub glub dub blub (please activate translation protocol v4A to accurately translate release protocol.)"; + name = "!VITAL CONTAINMENT PROCEDURES!" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"MZ" = ( +/turf/closed/indestructible/alien, +/area/awaymission/caves/misc/ayylmao) +"Nd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Nf" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Ng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"Nm" = ( +/obj/machinery/power/rtg/abductor, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"Nw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"NA" = ( +/obj/structure/table/abductor, +/obj/item/mop/advanced{ + name = "Exhibit 4999Mp - Fluff Steck" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"NP" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ol" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Oq" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Oy" = ( +/obj/structure/table/abductor, +/obj/item/melee/skateboard/hoverboard{ + name = "Exhibit 0003aF - Marty" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"OT" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"OV" = ( +/obj/structure/table/abductor, +/obj/item/retractor/alien, +/obj/item/hemostat/alien, +/obj/item/surgicaldrill/alien, +/obj/item/cautery/alien, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Pb" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"PF" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"PI" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/giant_spider/hunter, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"PL" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"PY" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"PZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/abductor, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"Qa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/ayylmao) +"Qv" = ( +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"QC" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"QH" = ( +/obj/machinery/light/small/directional/east{ + bulb_colour = "#8142F5" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"QI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"QX" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"RC" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"RH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"RM" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/gorilla, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"RR" = ( +/obj/structure/table/abductor, +/obj/structure/chess/whiteknight{ + name = "Exhibit 1223fG - Marble Neigh" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Sa" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ayylmaozone" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"SG" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"SM" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Th" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Tv" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/cosmos, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"TB" = ( +/obj/effect/spawner/structure/window/plasma, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"TO" = ( +/turf/closed/indestructible/vault/alien, +/area/awaymission/caves/misc/ayylmao) +"Uo" = ( +/turf/closed/indestructible/riveted{ + base_icon_state = "alienvault"; + icon = 'icons/turf/walls.dmi'; + icon_state = "alienvault" + }, +/area/awaymission/caves/misc/ayylmao) +"Ut" = ( +/obj/machinery/holopad, +/obj/item/disk/holodisk{ + name = "placeholder disk" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"UC" = ( +/obj/structure/bed/abductor, +/obj/item/bedsheet/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"UK" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/dim{ + bulb_colour = "#8142F5"; + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ayylmao") + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"UU" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"UZ" = ( +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Ve" = ( +/obj/structure/bed/dogbed, +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Vl" = ( +/obj/structure/table/abductor, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"VK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ayylmao) +"VP" = ( +/obj/structure/table/abductor, +/obj/item/hemostat/alien, +/obj/item/retractor/alien, +/obj/item/circular_saw/alien, +/obj/item/scalpel/alien, +/turf/open/floor/plating/abductor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"VX" = ( +/obj/structure/fluff/iced_abductor{ + name = "Jerry" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"WX" = ( +/obj/structure/table/abductor, +/obj/item/spear/grey_tide{ + name = "Exhibit 2234As - Gray Sea" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Xe" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Xt" = ( +/obj/effect/spawner/structure/window/plasma, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao/office) +"XQ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"YA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"YD" = ( +/obj/structure/table/abductor, +/obj/item/gun/magic/wand/resurrection{ + charges = 1; + max_charges = 1; + name = "Exhibit 452Jf - Heelies Stick" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"YO" = ( +/obj/structure/table/abductor, +/obj/item/ship_in_a_bottle{ + name = "Exhibit 5674bO - Lava Log" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"YW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/template_noop) +"YZ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north{ + network = list("ayylmao") + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Zm" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"Zp" = ( +/obj/structure/table/abductor, +/obj/item/wheelchair/gold{ + name = "Exhibit 9900Wh - AuChair" + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao/office) +"Zu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ayylmaozone" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ayylmao) +"ZB" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/obj/item/bedsheet/cosmos{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ZN" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/awaymission/caves/misc/ayylmao) +"ZO" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ZT" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel/rockvault/alien, +/area/awaymission/caves/misc/ayylmao) +"ZZ" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) + +(1,1,1) = {" +aN +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 +aN +aR +"} +(2,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +sS +ZN +sS +TO +TO +sS +TO +sS +sS +ZZ +aa +ZZ +ZZ +ZZ +aa +aa +aR +"} +(3,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +TO +sS +gQ +VK +VK +VK +VK +VK +VK +VK +sS +ZZ +aa +ZZ +ZZ +ZZ +aa +aa +aR +"} +(4,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +Cx +VK +VK +VK +VK +VK +VK +gQ +TO +sS +sS +gQ +VK +TO +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aR +"} +(5,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +VK +TO +TO +gQ +TO +TO +TO +MZ +MZ +MZ +MZ +tw +MZ +MZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aR +"} +(6,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +mb +TO +ZZ +ZZ +ZZ +aa +aa +MZ +Ah +iy +QC +ek +MM +MZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aR +"} +(7,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +gQ +uJ +TO +ZZ +ZZ +ZZ +aa +aa +MZ +sO +EN +EN +hr +jJ +MZ +aa +aa +aa +aa +aa +aa +aR +"} +(8,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +sS +gQ +sS +ZZ +ZZ +ZZ +aa +aa +MZ +LJ +pN +mE +DM +CH +MZ +TO +TO +TO +TO +TO +mT +aR +"} +(9,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +MZ +MZ +TB +EZ +TB +MZ +MZ +TO +ZT +ef +Zm +TO +ax +aR +"} +(10,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +TO +ZT +ef +Th +ef +QC +dx +Zu +pT +gQ +oW +lR +ax +aR +"} +(11,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +DX +EN +EN +EN +EN +lf +Ga +gQ +gQ +Me +TO +ax +aR +"} +(12,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +tn +TB +DX +EN +EN +uT +lN +Hb +Sa +db +gQ +oW +lR +ax +aR +"} +(13,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +qw +EN +EN +hr +TO +TO +TO +zI +Oq +Kj +TO +ax +aR +"} +(14,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +TO +qj +lf +lf +uj +TO +aa +TO +TO +TO +pl +TO +mT +aR +"} +(15,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(16,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +wI +TB +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(17,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +DX +EN +EN +nw +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(18,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(19,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(20,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +qw +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(21,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +TO +UC +hG +ut +yq +GN +EN +EN +MK +yq +DX +EN +PY +TO +VK +TO +aa +aR +"} +(22,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +TO +TO +TO +TO +LB +VX +dz +cn +kA +EN +EN +yt +cp +iu +EN +KZ +TO +VK +TO +aa +aR +"} +(23,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +ZB +ZB +TO +ow +EN +hr +yq +XQ +EN +EN +ca +yq +cN +eS +UC +TO +VK +TO +aa +aR +"} +(24,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +eF +ZT +ef +eC +TO +TO +TO +TO +TO +YZ +EN +EN +nw +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(25,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +wR +DX +EN +tN +ef +ef +ef +Ec +qt +pT +EN +EN +hr +TO +ZN +ZN +ZN +TO +VK +TO +aa +aR +"} +(26,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +Fg +DX +EN +uT +pN +pN +pN +cD +RH +db +EN +EN +hr +TO +ZN +ZN +ZN +TO +VK +TO +aa +aR +"} +(27,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +eF +zI +pN +lO +TO +TO +TO +TO +TO +qw +EN +EN +Jl +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(28,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +Tv +LL +TO +EN +EN +hr +yq +GN +EN +EN +SG +BP +EN +EN +EN +TO +VK +TO +aa +aR +"} +(29,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +TO +TO +TO +TO +LB +bz +dz +cn +kA +EN +EN +nH +BP +EN +Gn +KZ +TO +VK +TO +aa +aR +"} +(30,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +EN +EN +hr +yq +XQ +EN +EN +qc +BP +EN +EN +EN +TO +VK +TO +aa +aR +"} +(31,1,1) = {" +aN +aa +aa +aa +aa +aa +En +En +En +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +TO +TO +TO +TO +DX +EN +EN +cW +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(32,1,1) = {" +aN +aa +aa +aa +aa +aa +En +Zp +En +En +En +En +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(33,1,1) = {" +aN +aa +aa +aa +aa +En +En +Xt +En +En +JW +En +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +YZ +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(34,1,1) = {" +aN +aa +En +En +En +En +PL +Gj +jl +En +Xt +En +TO +TO +TO +TO +TO +aa +aa +TO +TO +TO +TO +TO +qw +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(35,1,1) = {" +aN +aa +En +YO +Xt +PL +QX +zJ +Nf +Gj +Gj +OT +TO +EN +oY +EN +TO +aa +aa +TO +UC +hG +ut +yq +GN +EN +EN +MK +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(36,1,1) = {" +aN +aa +En +En +En +IW +zJ +zJ +zJ +zJ +zJ +EY +TO +EN +aA +EN +TO +aa +aa +TO +LB +wC +dz +cn +kA +EN +EN +yt +cp +iu +Ve +KZ +TO +VK +TO +aa +aR +"} +(37,1,1) = {" +aN +aa +En +En +En +PF +Fy +sD +sD +sC +zJ +Vl +TO +pN +mE +pN +TO +aa +aa +TO +ow +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(38,1,1) = {" +aN +aa +En +Mf +Xt +Fx +UU +iq +SM +HN +sC +gm +TO +yq +JA +yq +TO +TO +TO +TO +TO +TO +TO +TO +xK +lf +lf +YA +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(39,1,1) = {" +aN +aa +En +En +En +gv +SM +iq +SM +SM +PF +gm +MG +zs +UZ +Ao +ef +ef +QC +ef +ef +ef +ef +dx +pT +EN +EN +tN +eC +TO +TO +TO +Qa +VK +TO +aa +aR +"} +(40,1,1) = {" +aN +aa +aa +aa +En +gv +SM +He +iq +SM +PF +ba +dN +sF +EN +EN +EN +EN +EN +EN +EN +EN +EN +lf +EN +EN +EN +EN +hr +TB +gz +TO +qk +VK +TO +aa +aR +"} +(41,1,1) = {" +aN +aa +En +En +En +gv +SM +iq +SM +SM +PF +gm +MG +dh +he +Ld +pN +pN +lN +pN +pN +pN +pN +Hb +db +EN +EN +uT +lO +TO +TO +TO +mh +VK +TO +aa +aR +"} +(42,1,1) = {" +aN +aa +En +RR +Xt +If +jl +iq +SM +PL +QX +gm +TO +yq +JA +yq +TO +TO +TO +TO +TO +TO +TO +TO +xK +lf +lf +YA +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(43,1,1) = {" +aN +aa +En +En +En +PF +Nf +Gj +Gj +QX +zJ +Vl +TO +ef +Th +ef +TO +aa +aa +TO +EN +EN +hr +yq +GN +EN +EN +MK +yq +cN +eS +UC +TO +VK +TO +aa +aR +"} +(44,1,1) = {" +aN +aa +En +En +En +IW +zJ +zJ +zJ +zJ +zJ +kM +TO +EN +oy +EN +TO +aa +aa +TO +LB +LS +dz +cn +kA +EN +EN +yt +cp +iu +KN +KZ +TO +VK +TO +aa +aR +"} +(45,1,1) = {" +aN +aa +En +WX +Xt +HN +sC +zJ +Fy +sD +sD +hc +TO +EN +QH +EN +TO +aa +aa +TO +EN +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +ow +TO +VK +TO +aa +aR +"} +(46,1,1) = {" +aN +aa +En +En +En +En +HN +sD +UU +En +Xt +En +TO +TO +TO +TO +TO +aa +aa +TO +TO +TO +TO +TO +UK +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(47,1,1) = {" +aN +aa +aa +aa +aa +En +En +Xt +En +En +YD +En +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(48,1,1) = {" +aN +aa +aa +aa +aa +aa +En +xF +En +En +En +En +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(49,1,1) = {" +aN +aa +aa +aa +aa +aa +En +En +En +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +DX +EN +EN +nw +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(50,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +aa +aa +aa +TO +EN +EN +hr +yq +GN +EN +EN +MK +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(51,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +TO +TO +TO +TO +LB +xD +dz +cn +kA +EN +EN +yt +cp +iu +PI +KZ +TO +VK +TO +aa +aR +"} +(52,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +ZB +ZB +TO +EN +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(53,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +eF +ZT +ef +eC +TO +TO +TO +TO +TO +qw +EN +EN +hr +Uo +Uo +Uo +Uo +TO +VK +TO +aa +aR +"} +(54,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +wR +DX +EN +tN +ef +ef +ef +Ec +qt +pT +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(55,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +ww +DX +EN +uT +pN +pN +pN +cD +RH +db +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(56,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +eF +zI +pN +lO +TO +TO +TO +TO +TO +YZ +EN +EN +nw +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(57,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +la +la +TO +EN +EN +hr +yq +GN +EN +EN +MK +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(58,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +TO +TO +TO +TO +LB +ei +dz +cn +kA +EN +EN +yt +cp +iu +xl +KZ +TO +VK +TO +aa +aR +"} +(59,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +TO +EN +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(60,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +TO +TO +TO +TO +TO +qw +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(61,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(62,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(63,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +DX +EN +EN +nw +TO +Uo +Uo +Uo +TO +VK +TO +aa +aR +"} +(64,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +EN +EN +hr +yq +GN +EN +EN +MK +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(65,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +LB +RM +dz +cn +kA +EN +EN +yt +cp +iu +fP +KZ +TO +VK +TO +aa +aR +"} +(66,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +EN +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(67,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +UK +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(68,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(69,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +TO +DX +EN +EN +hr +TO +aa +aa +aa +TO +VK +TO +aa +aR +"} +(70,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +DX +EN +EN +nw +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(71,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +UC +hG +ut +yq +GN +EN +EN +MK +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(72,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +LB +ir +dz +cn +kA +EN +EN +yt +cp +iu +cL +KZ +TO +VK +TO +aa +aR +"} +(73,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +ow +EN +hr +yq +XQ +EN +EN +ca +yq +DX +EN +EN +TO +VK +TO +aa +aR +"} +(74,1,1) = {" +aN +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +TO +TO +TO +TO +TO +qw +EN +EN +hr +TO +TO +TO +TO +TO +VK +TO +aa +aR +"} +(75,1,1) = {" +aN +aa +aa +aa +TO +TO +TO +TO +TO +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +TO +YZ +EN +EN +hr +TO +VK +VK +VK +VK +VK +TO +aa +aR +"} +(76,1,1) = {" +aN +aa +aa +aa +TO +jX +TO +GG +TO +aa +aa +TO +TO +TO +aa +TO +TO +TO +aa +TO +TO +TO +aa +TO +DX +EN +EN +hr +TO +VK +TO +TO +TO +TO +TO +aa +aR +"} +(77,1,1) = {" +aN +aa +aa +TO +TO +bw +TO +bw +TO +TO +aa +TO +Ht +TO +aa +TO +wt +TO +aa +TO +NA +TO +aa +TO +qj +lf +lf +uj +TO +VK +TO +jV +Md +Ea +TO +aa +aR +"} +(78,1,1) = {" +aN +aa +TO +TO +qo +ef +ef +ef +eC +TO +TO +TO +TB +TO +TO +TO +TB +TO +TO +TO +TB +TO +TO +TO +DX +EN +EN +nw +TO +VK +TO +Ng +Dc +bR +TO +aa +aR +"} +(79,1,1) = {" +aN +aa +TO +ZT +pT +EN +EN +EN +tN +GH +TO +ZT +ef +ef +ef +Qv +ef +ef +ef +Qv +ef +eC +TO +ZT +pT +EN +EN +ZO +TO +VK +PZ +Dc +AE +oh +TO +aa +aR +"} +(80,1,1) = {" +aN +aa +TO +DX +EN +EN +Ut +EN +EN +GH +dN +iu +EN +EN +EN +EN +EN +EN +EN +EN +EN +dz +dN +sF +EN +EN +gQ +gQ +bi +VK +TO +ps +AE +bR +TO +aa +aR +"} +(81,1,1) = {" +aN +mT +TO +zI +db +EN +EN +EN +uT +GH +TO +zI +pN +sM +pN +pN +pN +sM +pN +pN +pN +lO +TO +zI +pN +pN +pN +Xe +TO +TO +TO +gE +Dc +Dc +TO +TO +aR +"} +(82,1,1) = {" +aN +aa +TO +TO +zI +pN +mE +pN +su +TO +TO +TO +TB +TO +TO +TO +TB +TO +TO +TO +TB +TO +TO +TO +TO +TO +TO +TO +TO +aa +TO +da +Uo +da +TO +aa +aR +"} +(83,1,1) = {" +aN +aa +aa +TO +TO +TO +EZ +TO +TO +TO +aa +TO +Oy +TO +aa +TO +KY +TO +aa +TO +hY +TO +aa +aa +aa +aa +aa +aa +aa +ZZ +TO +Nm +Uo +Nm +TO +aa +aR +"} +(84,1,1) = {" +aN +aa +aa +aa +TO +Pb +Ih +hQ +TO +aa +aa +TO +TO +TO +aa +TO +TO +TO +aa +TO +TO +TO +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +TO +TO +TO +TO +TO +aa +aR +"} +(85,1,1) = {" +aN +aa +aa +aa +TO +Nw +Ol +Nd +TO +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(86,1,1) = {" +aN +aa +aa +aa +TO +TO +fA +TO +TO +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(87,1,1) = {" +aN +aa +aa +aa +aa +NP +ax +oT +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(88,1,1) = {" +aN +aa +aa +aa +oT +ax +ax +NP +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(89,1,1) = {" +aN +aa +aa +aa +QI +DS +QI +aa +aa +aa +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aR +"} +(90,1,1) = {" +aN +aa +aa +aT +aT +YW +aT +aT +aa +aa +aT +aa +aT +aT +aT +aT +aT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aR +"} +(91,1,1) = {" +aN +aa +aT +aT +aT +YW +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aT +aa +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aR +"} +(92,1,1) = {" +aN +aa +aa +aa +aT +YW +aT +aT +aa +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aR +"} +(93,1,1) = {" +aN +aa +aa +aa +aa +oT +aa +aa +aa +aa +aa +aa +aa +aT +aT +aT +aT +aa +aa +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(94,1,1) = {" +aN +aa +aa +aa +aa +oT +CL +aa +ZZ +ZZ +ZZ +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aR +"} +(95,1,1) = {" +aN +aa +aa +aa +aa +oT +aa +aa +ZZ +ZZ +ZZ +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aa +aa +aT +aa +aa +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(96,1,1) = {" +aN +aa +aa +ax +ax +ax +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aT +aa +aa +aa +aa +aa +aT +aT +aa +aa +aa +aa +aa +aR +"} +(97,1,1) = {" +ax +ax +ax +ax +ax +ax +aa +ax +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aT +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(98,1,1) = {" +ax +ax +ax +ax +aa +aa +aa +pY +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(99,1,1) = {" +aI +ax +oT +ax +ax +pY +ax +ax +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(100,1,1) = {" +ax +oT +CL +oT +ax +ax +ax +ax +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(101,1,1) = {" +ax +oT +oT +oT +ax +pY +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(102,1,1) = {" +ax +ax +aa +aa +ax +pY +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(103,1,1) = {" +aN +aa +aa +aa +ax +pY +aa +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(104,1,1) = {" +aN +aa +aa +aa +ax +ax +oT +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aR +"} +(105,1,1) = {" +aN +aa +aa +aa +ax +oT +CL +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aT +aT +aT +aT +aT +aT +ax +ax +aa +aa +aa +aR +"} +(106,1,1) = {" +aN +aa +aa +aa +aa +ax +oT +oT +oT +ax +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aT +aT +aT +aT +aT +aT +aT +aT +ax +aa +aa +aa +aR +"} +(107,1,1) = {" +aN +aa +aa +aa +aa +ax +ax +ax +ax +ax +aa +aa +ax +ax +ax +oT +aa +aa +aa +aa +aa +aa +aa +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(108,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +oT +oT +oT +ax +aa +CL +oT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(109,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +ax +ax +ax +ax +oT +ax +ax +ax +ax +ax +ax +ax +ax +oT +ax +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(110,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +CL +oT +oT +ax +ax +ax +ax +ax +ax +oT +ax +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(111,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +ax +wd +wd +wd +wd +wd +ax +ax +ax +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +aa +aa +aa +aR +"} +(112,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +wd +wd +Cz +rG +vD +wd +wd +ax +ax +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +ax +aa +aa +aR +"} +(113,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +ax +wd +zb +LW +LW +LW +LW +wd +ax +ax +ax +aT +aT +aT +aT +aT +aT +aT +aT +ax +ax +aa +aa +aR +"} +(114,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +ax +ax +wd +VP +LW +wo +LW +LW +dj +ax +ax +ax +ax +aT +aT +aT +aT +aT +aT +ax +ax +oT +aa +aa +aR +"} +(115,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ax +ax +ax +wd +JY +LW +LW +LW +hK +wd +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +oT +oT +aa +aa +aR +"} +(116,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ax +ax +ax +wd +wd +uu +qx +Jo +wd +wd +ax +ax +ax +ax +wd +wd +dj +wd +wd +ax +ax +ax +oT +aa +aa +aR +"} +(117,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +RC +ax +ax +ax +wd +wd +wd +wd +wd +ax +ax +ax +ax +wd +wd +LW +LW +hK +wd +wd +ax +ax +ax +aa +aa +aR +"} +(118,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +RC +RC +ax +ax +ax +ax +ax +ax +oT +oT +CL +oT +ax +wd +vD +LW +LW +LW +DA +wd +ax +ax +aa +aa +aa +aR +"} +(119,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +RC +ax +ax +ax +ax +ax +ax +ax +oT +oT +oT +ax +wd +LW +LW +el +LW +qx +wd +ax +ax +aa +aa +aa +aR +"} +(120,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +ax +ax +ax +ax +ax +oT +ax +ax +ax +ax +ax +ax +wd +Cz +LW +LW +LW +ed +wd +ax +ax +aa +aa +aa +aR +"} +(121,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +oT +CL +oT +oT +ax +ax +ax +ax +wd +wd +zb +OV +JY +wd +wd +ax +aa +aa +aa +aa +aR +"} +(122,1,1) = {" +aN +aa +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +ZZ +aa +aa +aa +aa +aa +aa +aa +oT +ax +ax +ax +ax +ax +ax +wd +wd +wd +wd +wd +ax +aa +aa +aa +aa +aa +aR +"} +(123,1,1) = {" +aN +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 +aR +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment2_c.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment2_c.dmm new file mode 100644 index 000000000000..0e1715a0fa31 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment2_c.dmm @@ -0,0 +1,7508 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ac" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"ae" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"an" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"ax" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"aI" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aL" = ( +/obj/structure/rack, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: Jacob Ullman","UI"="333333663300c491c1c1c27085876b","UE"="7d36a3c58b1cb46e57de8270a1769065","UF"="5f5f5ffbdf564a3a4b6c1f3393f2c94fd59691f4055ba5c6d4e","name"="Jacob Ullman","blood_type"="A+"); + name = "DNA data disk - J.U" + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: CORRUPTED","UI"="1c1c1c663300aa9006600888fd32b3","UE"="f1ac8a098f8717048ea09fa06c3018f5","UF"="ff7777ee82ee3e5ae56478853536e72ab65a1aa9c0473d94102","name"="Elizabe Q","blood_type"="A+"); + name = "DNA data disk - E.Q" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"aN" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"aQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"aR" = ( +/turf/template_noop, +/area/template_noop) +"aS" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"bj" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"bq" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/under/rank/civilian/clown, +/obj/item/clothing/shoes/clown_shoes/combat, +/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/launcher/banana_mortar/bombanana, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"bR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ch" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"cC" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"cU" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"da" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"dh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"dy" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate/vault) +"dz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"dH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"dJ" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "High Security Gene Vault - Notable Individuals" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"dL" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"dZ" = ( +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"eb" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ec" = ( +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/barracks) +"ef" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"eg" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"er" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"eA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"eB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"eF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/misc/syndicate/gateway) +"eL" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"eW" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"eX" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"eZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"fc" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ff" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"fm" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"fn" = ( +/obj/structure/rack, +/obj/item/dnainjector/paranoia, +/obj/item/dnainjector/spastic, +/obj/item/dnainjector/stuttmut, +/obj/item/dnainjector/clumsymut, +/obj/item/dnainjector/coughmut, +/obj/item/dnainjector/mutemut, +/obj/item/dnainjector/twoleftfeet, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"fp" = ( +/obj/structure/rack, +/obj/item/dnainjector/olfaction, +/obj/item/dnainjector/glow, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"fA" = ( +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"fB" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"fD" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Body Modifications" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"fM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/misc/syndicate/gateway) +"fQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"fR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/spawner/random/engineering/flashlight, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"fS" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"fV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"gc" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"ge" = ( +/obj/machinery/oven, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"gk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"gC" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"gK" = ( +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/machinery/light/dim/directional/south, +/obj/item/dnainjector/antiswedish, +/obj/item/dnainjector/antichav, +/obj/item/dnainjector/antielvis, +/obj/item/dnainjector/antitour, +/obj/item/dnainjector/antiwacky, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"gP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"gU" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"gY" = ( +/obj/item/food/grown/banana, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"gZ" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"ha" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"hv" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/item/dnainjector/antiglow, +/obj/item/dnainjector/antiolfaction, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"hD" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"hI" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/dim/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"ic" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"ih" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ik" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"iw" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"iN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"iQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"iR" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/porta_turret/syndicate/pod{ + dir = 6 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"iX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"ja" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/sign/calendar/directional/north, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"jd" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/machinery/light/dim/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"jn" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"jw" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"jD" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"jH" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"jO" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"jV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"kk" = ( +/obj/machinery/porta_turret/syndicate/pod, +/obj/effect/turf_decal/stripes/box, +/obj/structure/sign/clock/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"ko" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"kK" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"kW" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"kY" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate/gateway) +"lc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"lh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"li" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"lk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"lp" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate/genetics) +"ls" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock"; + req_access_txt = "203" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"lL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"lN" = ( +/obj/structure/rack, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/gigantism); + name = "DNA injector - (Gigantism)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/gigantism); + name = "DNA injector - (Gigantism)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/gigantism); + name = "DNA injector - (Gigantism)" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"lS" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"lV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line, +/mob/living/simple_animal/hostile/syndicate/ranged{ + name = "Syndicate Defense Personnel" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"mg" = ( +/obj/machinery/door/airlock{ + name = "Unisex Shower" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"mA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"mE" = ( +/obj/structure/sign/clock/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"mV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/dim/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"mW" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"nl" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/glasses/night, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"nx" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"nN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"nO" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock"; + req_access_txt = "203" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"oc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"oA" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"oF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/template_noop) +"oG" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"pr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/template_noop) +"pt" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"pU" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"qb" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"qe" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"qz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/shoes/combat, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/template_noop) +"qA" = ( +/obj/structure/toilet, +/obj/machinery/button/door/directional/west{ + id = "vbucklover"; + name = "Private Stall Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"qB" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"qL" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"qX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ra" = ( +/obj/structure/rack, +/obj/item/dnainjector/swedishmut, +/obj/item/dnainjector/chavmut, +/obj/item/dnainjector/elvismut, +/obj/item/dnainjector/tourmut, +/obj/item/dnainjector/wackymut, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"rb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/power/syndicate, +/turf/open/floor/plating, +/area/template_noop) +"rh" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"rn" = ( +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"ry" = ( +/mob/living/simple_animal/hostile/syndicate/melee/sword, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"rC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"rM" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"rX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"sm" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"so" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"sr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/light/dim/directional/west, +/obj/item/storage/box/monkeycubes/syndicate, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"sy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs, +/area/awaymission/caves/misc/syndicate/gateway) +"sD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"sF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"sM" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"sO" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate) +"td" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/mob/living/simple_animal/hostile/syndicate/ranged/smg{ + dir = 4 + }, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"tj" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"tn" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"tr" = ( +/obj/machinery/door/airlock/hatch{ + name = "Syndicate Access" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"tt" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/gun/ballistic/automatic/pistol/no_mag, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"tI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"tK" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"tM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"tP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"uc" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"uh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"ur" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"us" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"ux" = ( +/obj/structure/rack, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: CORRUPTED","UI"="663300663300a611c1c1c16d1d4a42","UE"="7d36a3c58b1cb46e57de8270a1769065","UF"="5f5f5ffbdf56776dff767f3e9ac2ad52e5c692b49e5ebb3eda3","name"="Van Skkkkkk","blood_type"="B+"); + name = "DNA data disk - V.S" + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: Ji#######","UI"="996633663300b930066001c1d03a4f","UE"="d9c57cd497b0c773185f6c794905bdd8","UF"="ff7777ee82ee197c2c3368db4e360a2cd5341cda294a3eb1073","name"="Jimmmmmm","blood_type"="B+"); + name = "DNA data disk - J.J" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"uC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"uG" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"uT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"uY" = ( +/obj/machinery/light/dim/directional/south, +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/item/dnainjector/antidwarf, +/obj/item/dnainjector/antidwarf, +/obj/item/dnainjector/antigigantism, +/obj/item/dnainjector/antigigantism, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"uZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"vb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"vc" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ve" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/light/dim/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"vt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"vA" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"vF" = ( +/obj/machinery/power/rtg/lavaland, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"vQ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"vU" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"vY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"wt" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"wF" = ( +/obj/machinery/light/dim/directional/west, +/obj/item/dnainjector/antiparanoia, +/obj/item/dnainjector/antispastic, +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/item/dnainjector/antistutt, +/obj/item/dnainjector/anticlumsy, +/obj/item/dnainjector/anticough, +/obj/item/dnainjector/antimute, +/obj/item/dnainjector/antitwoleftfeet, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"wK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/syndicate) +"wQ" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"xg" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"xk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"xw" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/syndie, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/structure/sign/flag/mars/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"xC" = ( +/obj/item/soap/syndie, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"xD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/noticeboard/directional/north, +/obj/item/paper{ + info = "Due to recent reports of lowered morale during long-term recon missions, we have decided to borrow one of the very few popular Nanotrasen policies by hiring a rental clown. May the next upcoming 42 cycles be filled with laughter and joy as he entertains all of you. Reminder that he is a rental and the company we are hiring from expect him to come back alive and intact."; + name = "morale update" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"xF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"xZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/machinery/door/airlock/hatch{ + name = "Life Support" + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/syndicate) +"yh" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"yj" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"yk" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"yn" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/light/dim/directional/north, +/obj/item/plate, +/obj/item/food/pie/cream, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"yp" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"yA" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"yC" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"yH" = ( +/obj/structure/rack, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: George Melons","UI"="00cc0088ddff8e06633003851e989d","UE"="6893e6a0b0076a41897776b10cc2b324","UF"="ff77ff00fa9a192c1b62ffd7edcc127924e14c20900e72f1ce3","name"="George Melons","blood_type"="AB+"); + name = "DNA data disk - G.M" + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1:Katie Yossarian","UI"="66006666330055e0000cc787fc811f","UE"="62e5a382e49485e5afe5567c20b68147","UF"="5f5f5f00fa9a58e2f67c4eaf9303e64a0c9f954414642029e40","name"="Katie Yossarian","blood_type"="A+"); + name = "DNA data disk - K.Y" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"yS" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/gateway) +"zh" = ( +/obj/structure/rack, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/insulated); + name = "DNA injector - (Insulated)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/space_adaptation); + name = "DNA injector - (Space Adaptation)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/thermal); + name = "DNA injector - (Thermal Vision)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/thermal/x_ray); + name = "DNA injector - (Xray Vision)" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"zC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"zQ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"zT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/light/dim/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"As" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"AM" = ( +/obj/machinery/door/airlock/hatch{ + name = "Gateway Access" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"AU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"AW" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"AX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Ba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Bk" = ( +/obj/machinery/door/airlock/hatch{ + name = "Syndicate Access" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"Bn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/syndicate) +"Bu" = ( +/obj/structure/cable, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate) +"Bz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"BC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"BE" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"BG" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"BK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"BY" = ( +/obj/machinery/light/dim/directional/north, +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/item/dnainjector/antiinsulated, +/obj/item/dnainjector/antithermal, +/obj/item/dnainjector/antifire, +/obj/item/dnainjector/antixray, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Cj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/shipping_container/gorlex, +/turf/open/floor/plating, +/area/template_noop) +"Co" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Cz" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/syndie{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"CE" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"CG" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"CH" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"CR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"CS" = ( +/obj/structure/table/reinforced, +/obj/item/food/pizza/margherita, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"De" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face."; + name = "old sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Dn" = ( +/mob/living/simple_animal/hostile/syndicate/civilian{ + name = "Syndicate Gene Scientist" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"Ds" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Dt" = ( +/obj/machinery/light/dim/directional/west, +/obj/structure/closet/crate/secure{ + name = "Gene Reversal Storage" + }, +/obj/item/dnainjector/antitele, +/obj/item/dnainjector/antimindread, +/obj/item/dnainjector/antispatialinstability, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Dx" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/light/dim/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"DA" = ( +/obj/structure/rack, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/telekinesis); + name = "DNA injector - (Telekinesis)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/mindreader); + name = "DNA injector - (Mind Reader)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/badblink); + name = "DNA injector - (Spatial Instability)" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"DG" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"DR" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table/wood, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"DT" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Miscellaneous" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"DV" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"DY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"Ef" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 11; + pixel_y = 12 + }, +/obj/item/food/donut/berry, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Ep" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Eu" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Ev" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"Ew" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Height Differences" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"EN" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"EO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"ER" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"EZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/syndicate) +"Fb" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"Fe" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/stool/bar/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Fs" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/porta_turret/syndicate/pod{ + dir = 5 + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"Fx" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"FL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Ge" = ( +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Gi" = ( +/obj/machinery/light/dim/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/syndicate) +"Gn" = ( +/obj/machinery/light/dim/directional/west, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Gv" = ( +/obj/machinery/power/rtg/lavaland, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"GG" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"GQ" = ( +/obj/structure/rack, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/dwarfism); + name = "DNA injector - (Dwarfism)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/dwarfism); + name = "DNA injector - (Dwarfism)" + }, +/obj/item/dnainjector/timed{ + add_mutations = list(/datum/mutation/human/dwarfism); + name = "DNA injector - (Dwarfism)" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"GT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"GW" = ( +/obj/machinery/door/airlock{ + id_tag = "vbucklover"; + name = "Private Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"GZ" = ( +/mob/living/simple_animal/hostile/syndicate/civilian{ + name = "Syndicate Gene Scientist" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"Ha" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/overlay/coconut, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"He" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/shotgun{ + name = "Syndicate Shotgunner" + }, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Hf" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Hk" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Ho" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Hp" = ( +/obj/structure/safe, +/obj/item/dnainjector/lasereyesmut, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Hx" = ( +/obj/machinery/porta_turret/syndicate/pod, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"HM" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"HT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"HV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"It" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Iy" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table, +/obj/item/storage/box/rxglasses, +/obj/item/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"II" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"IO" = ( +/mob/living/carbon/human/species/monkey{ + faction = list("neutral","monkey","Syndicate") + }, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"IR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Jb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Jm" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Jp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Js" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Jy" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Jz" = ( +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"JC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"JN" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"JT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"JW" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Mental Capacity" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Kf" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Kz" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"KH" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"KN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"KP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"KX" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"KY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "Gateway Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"KZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Lb" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Ld" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Lf" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"Ll" = ( +/obj/effect/turf_decal/trimline/neutral/corner, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Lo" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Lt" = ( +/obj/structure/fluff{ + desc = "A gateway frame with no active power source."; + icon = 'icons/obj/machines/gateway.dmi'; + icon_state = "portal_frame"; + name = "inactive gateway" + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/gateway) +"LS" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"LT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Mm" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"MP" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"MR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"MT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Na" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Nc" = ( +/obj/structure/urinal/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"Nd" = ( +/obj/structure/rack, +/obj/item/disk/data{ + genetic_makeup_buffer = list("label"="Slot 1: CORRUPTED","UI"="ff66cc663300a6633ccff6aefd2f49","UE"="4922d7a2cb14cd0d041a9448782f141d","UF"="5f5f5ffbdf56637e4492ffd897f1784c945f94b4a55920d2d48","name"="Phoe Lotsu","blood_type"="O+"); + name = "DNA data disk - P.L" + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/obj/item/disk/data{ + desc = "This disk seems to require a unique identifier to access the internal data. Until then, it will scan as a blank disk on most genetic machines." + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"NN" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"NS" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"NW" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Oa" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Og" = ( +/obj/machinery/light/dim/directional/east, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Ou" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Ow" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"ON" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"OV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Pf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"Pj" = ( +/obj/machinery/computer/terminal{ + dir = 8; + upperinfo = "COPYRIGHT 2488 SYNDI_CAT-TM - DO NOT REDISTRIBUTE TO NANOTRASEN" + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Pm" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/glasses/night, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Pv" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/keycard/syndicate_bio{ + desc = "A red keycard with a DNA Helix printed in the center."; + name = "Syndicate Gene Vault Access Card"; + puzzle_id = "freevbucks" + }, +/obj/item/clothing/under/syndicate, +/obj/item/clothing/shoes/combat, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Py" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/syndie, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"PA" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"PC" = ( +/obj/machinery/door/keycard{ + name = "Secure Gene Vault"; + puzzle_id = "freevbucks" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"PM" = ( +/obj/machinery/light/dim/directional/south, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"PU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"PW" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Qc" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Qi" = ( +/obj/machinery/porta_turret/syndicate/pod, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate) +"Qj" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"Qp" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Disabilities" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"QC" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"QM" = ( +/obj/machinery/light/dim/directional/west, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"QY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Ri" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Rm" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/syndie, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Rv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"RD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Sf" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Sh" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"Sp" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"Sr" = ( +/obj/structure/closet/crate/secure{ + name = "High Value Gene Extracts"; + tamperproof = 1 + }, +/obj/machinery/light/dim/directional/north, +/obj/item/dnainjector/timed/h2m, +/obj/item/dnainjector/timed/h2m, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Ss" = ( +/obj/machinery/door/airlock/hatch{ + name = "Genetics Access" + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"SB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"SD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"SI" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + dir = 1 + }, +/mob/living/simple_animal/hostile/syndicate/melee{ + desc = "Death to bad hygiene."; + name = "Shower Operative" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"SN" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/syndie{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Tc" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Th" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Tl" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Tr" = ( +/obj/machinery/light/dim/directional/south, +/obj/structure/closet/crate/secure{ + name = "High Value Gene Extracts"; + tamperproof = 1 + }, +/obj/item/dnainjector/timed/hulk, +/obj/item/dnainjector/timed/hulk, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Tu" = ( +/obj/structure/closet/crate{ + name = "bed locker" + }, +/obj/item/clothing/shoes/combat, +/obj/item/clothing/under/syndicate/skirt, +/obj/item/storage/belt/military, +/obj/item/clothing/gloves/combat, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"TA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"TL" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"TM" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Uk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"UF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/vault) +"UQ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/gateway) +"UT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"UZ" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Vr" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Vv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Vw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/template_noop) +"VE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"VK" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Wd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/template_noop) +"Wh" = ( +/turf/closed/indestructible/syndicate, +/area/awaymission/caves/misc/syndicate/vault) +"Wi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate/genetics) +"Wq" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gene Vault - Voices of The World" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Wt" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/barracks) +"Wu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"WA" = ( +/obj/machinery/deepfryer, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/checker, +/area/awaymission/caves/misc/syndicate) +"WC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Xg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/template_noop) +"Xi" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Xo" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/caves/misc/syndicate) +"Xv" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock"; + req_access_txt = "203" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/syndicate/vault) +"XE" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"XL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/awaymission/caves/misc/syndicate/vault) +"Ye" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"Yo" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate/genetics) +"YZ" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Za" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"Zi" = ( +/obj/effect/turf_decal/tile/bar/opposingcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/syndicate) +"Zp" = ( +/turf/open/floor/grass, +/area/awaymission/caves/misc/syndicate/genetics) +"ZA" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/dark, +/area/awaymission/caves/misc/syndicate) +"ZI" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/awaymission/caves/misc/syndicate/barracks) +"ZT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +aN +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 +aR +"} +(2,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aa +ax +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(3,1,1) = {" +aN +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +Oa +ax +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +Oa +ax +Oa +Qc +Oa +ax +ax +aa +aa +aa +aa +aR +"} +(4,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Oa +Qc +Oa +aa +aa +mW +mW +ax +aa +aa +aa +ax +ax +Oa +Oa +Oa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(5,1,1) = {" +aN +aa +aa +ax +aa +aa +aa +ax +ax +ax +ax +ax +ax +Oa +Oa +Oa +ax +ax +mW +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aR +"} +(6,1,1) = {" +aN +aa +aa +ax +aa +ax +ax +ax +ax +ax +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +mW +Oa +Oa +Oa +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aR +"} +(7,1,1) = {" +aN +aa +aa +Tc +ax +ax +Oa +Oa +ax +aa +aa +aa +aa +aa +aa +ax +ax +mW +ax +ax +Oa +Oa +Qc +Oa +aa +aa +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aR +"} +(8,1,1) = {" +aN +aa +aa +ax +ax +Oa +Qc +Oa +Oa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(9,1,1) = {" +aN +aa +CH +ax +ax +Oa +Oa +aa +aa +aa +aa +aa +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +ax +ax +ax +aa +ax +aR +"} +(10,1,1) = {" +aN +aa +CH +ax +ax +ax +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +ax +ax +Oa +ax +ax +ax +aR +"} +(11,1,1) = {" +aN +aa +ax +ax +ax +ax +aa +aa +aa +ax +aa +aa +ax +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aa +ax +ax +ax +EN +ax +ax +aR +"} +(12,1,1) = {" +aN +aa +ax +ax +ax +aa +aa +aa +aa +ax +aa +aa +ax +aa +ax +Oa +Oa +Tc +Tc +Tc +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +EN +ax +ax +ax +ax +aR +"} +(13,1,1) = {" +aN +aa +ax +ax +ax +ax +ax +ax +aa +ax +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +Tc +Tc +Tc +ax +ax +ax +Oa +ax +Oa +ax +aa +ax +ax +ax +EN +ax +aR +"} +(14,1,1) = {" +aN +ax +ax +ax +ax +aa +aa +aa +aa +ax +aa +ax +ax +ax +ax +ax +ax +ax +ax +Tc +Tc +aa +aa +aa +aa +ax +Oa +Qc +Oa +ax +aa +ax +ax +ax +ax +aa +aR +"} +(15,1,1) = {" +aN +ax +aa +ax +ax +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +an +aa +aa +aa +aa +Oa +Oa +ax +ax +ax +ax +Oa +aa +aa +aR +"} +(16,1,1) = {" +aN +ax +aa +ax +ax +ax +aa +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aa +aa +aa +an +aa +aa +aa +aa +Oa +ax +ax +ax +Oa +Qc +Oa +aa +aa +aR +"} +(17,1,1) = {" +aN +ax +aa +aa +ax +ax +aa +Tc +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aa +an +an +an +an +an +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Oa +aa +aa +aR +"} +(18,1,1) = {" +aN +ax +aa +aa +ax +ax +aa +ax +ax +Tc +Oa +Oa +Oa +ax +ax +ax +ax +aa +aa +an +an +an +an +an +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +aa +aa +aR +"} +(19,1,1) = {" +aN +ax +ax +aa +ax +ax +ax +ax +Oa +Oa +Oa +Qc +Oa +ax +aa +aa +aa +aa +an +an +an +an +an +an +an +an +aa +aa +aa +ax +ax +ax +ax +ax +aa +aa +aR +"} +(20,1,1) = {" +aN +aa +ax +aa +aa +ax +ax +ax +aa +ax +aa +ax +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +aa +aa +aa +ax +ax +ax +ax +aa +aa +aa +aR +"} +(21,1,1) = {" +aN +aa +ax +aa +aa +aa +ax +aa +aa +Tc +aa +aa +aa +aa +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +aa +aa +ax +ax +ax +ax +aa +aa +aa +aR +"} +(22,1,1) = {" +aN +aa +ax +aa +aa +aa +ax +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +an +an +an +an +an +aa +aa +ax +ax +ax +ax +ax +aa +aa +aR +"} +(23,1,1) = {" +aN +aa +Oa +ax +aa +aa +ax +aa +aa +ax +aa +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +aa +aa +ax +ax +ax +ax +ax +aa +aR +"} +(24,1,1) = {" +aN +aa +aa +ax +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aa +CH +ax +ax +ax +aa +aa +aa +aR +"} +(25,1,1) = {" +aN +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aa +CH +ax +ax +aa +aa +aa +aa +aR +"} +(26,1,1) = {" +aN +aa +aa +aa +ax +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aa +ax +ax +ax +ax +ax +ax +aa +aR +"} +(27,1,1) = {" +aN +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +an +an +an +dL +dL +dL +dL +dL +an +an +an +an +an +an +an +an +aa +ax +ax +ax +ax +aa +aa +aa +aR +"} +(28,1,1) = {" +aN +aa +aa +aa +ax +aa +aa +aa +aa +an +an +an +an +an +dL +dL +Wh +Wh +Wh +dL +dL +an +an +an +an +an +an +an +aa +Oa +ax +ax +ax +aa +aa +aa +aR +"} +(29,1,1) = {" +aN +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +an +dL +Wh +Wh +Hp +Wh +Wh +dL +an +an +an +an +an +an +an +aa +Oa +ax +ax +ax +ax +aa +aa +aR +"} +(30,1,1) = {" +aN +aa +aa +aa +ax +aa +an +an +an +an +an +an +an +an +dL +Wh +Jz +Jz +Jz +Wh +dL +an +an +an +an +an +an +an +aa +Qc +Oa +ax +ax +ax +aa +aa +aR +"} +(31,1,1) = {" +aN +aa +aa +aa +ax +an +an +an +an +an +dL +dL +dL +dL +dL +Wh +yH +Jz +ux +Wh +dL +dL +dL +dL +dL +an +an +an +aa +aa +Oa +ax +ax +ax +aa +aa +aR +"} +(32,1,1) = {" +aN +aa +aa +Oa +ax +an +an +an +an +an +dL +Wh +Wh +Wh +Wh +Wh +Sr +Jz +Tr +Wh +Wh +Wh +Wh +Wh +dL +an +an +an +aa +aa +Oa +ax +ax +ax +aa +aa +aR +"} +(33,1,1) = {" +aN +aa +aa +ax +ax +an +an +an +an +an +dL +Wh +DA +Dt +DA +dy +aL +Jz +Nd +dy +fn +wF +fn +Wh +dL +an +an +an +an +aa +aa +aa +ax +ax +aa +aa +aR +"} +(34,1,1) = {" +aN +aa +aa +II +SB +an +an +dL +dL +dL +dL +Wh +BK +tP +KP +dy +BK +tP +KP +dy +BK +tP +KP +Wh +dL +dL +dL +dL +an +aa +aa +aa +ax +ax +ax +aa +aR +"} +(35,1,1) = {" +aN +aa +Wd +TA +eB +so +an +dL +Wh +Wh +Wh +Wh +dy +JW +dy +dy +dy +dJ +dy +dy +dy +Qp +dy +Wh +Wh +Wh +Wh +dL +an +an +an +aa +aa +ax +ax +aa +aR +"} +(36,1,1) = {" +aN +aa +jV +rb +qz +SD +an +dL +Wh +zh +AU +dy +iR +pU +Ge +He +Vv +pU +EO +He +Gn +pU +Fs +dy +zC +GQ +Wh +dL +an +an +an +an +aa +ax +ax +aa +aR +"} +(37,1,1) = {" +aN +aa +jV +ZT +Cj +SD +an +dL +Wh +BY +tP +fD +Lb +tn +QC +Pj +VK +tP +QC +Pj +QC +wt +eg +Ew +tP +uY +Wh +dL +an +an +an +an +aa +ax +ax +aa +aR +"} +(38,1,1) = {" +aN +aa +jV +ZT +ZT +SD +an +dL +Wh +zh +tM +dy +gZ +tP +Jz +Jz +Jz +tP +Jz +Jz +Jz +tP +er +dy +XL +lN +Wh +dL +an +an +an +an +aa +ax +ax +aa +aR +"} +(39,1,1) = {" +aN +aa +lc +VE +wQ +UT +an +dL +Wh +dy +dy +dy +BK +Ou +Ou +Ou +Ou +Ou +tP +tP +tP +tP +KP +dy +dy +dy +Wh +dL +an +an +an +ax +aa +ax +ax +aa +aR +"} +(40,1,1) = {" +aN +aa +aa +HT +PU +ax +ax +dL +Wh +fp +AU +dy +yj +tP +Jz +Jz +Vr +Jb +oA +mE +Jz +tP +Ll +dy +zC +ra +Wh +dL +an +an +an +an +aa +aa +Oa +aa +aR +"} +(41,1,1) = {" +aN +aa +ax +Oa +Oa +ax +an +dL +Wh +hv +tP +DT +Lb +tP +Jz +Wh +Wh +PC +Wh +Wh +Jz +tP +eg +Wq +tP +gK +Wh +dL +an +an +an +ax +aa +aa +Oa +aa +aR +"} +(42,1,1) = {" +aN +aa +Oa +Qc +Oa +an +an +dL +Wh +fp +tM +dy +gZ +AW +Wh +Wh +lS +oG +jd +Wh +Wh +AW +er +dy +XL +ra +Wh +dL +an +an +an +aa +aa +aa +Oa +Qc +aR +"} +(43,1,1) = {" +aN +aa +ax +Oa +ax +dL +dL +dL +Wh +Wh +Wh +Wh +Wh +Wh +Wh +KH +Qj +Pf +Bz +tj +Wh +Wh +Wh +Wh +Wh +Wh +Wh +dL +dL +dL +ax +aa +aa +aa +Oa +Oa +aa +"} +(44,1,1) = {" +aN +aa +ax +ax +pr +pr +pr +pr +Xg +DY +DY +DY +ls +ch +Xv +Fb +eW +Pf +UF +tK +nO +uT +nO +oF +oF +oF +Vw +ko +ax +ax +ax +aa +aa +aa +ax +Oa +aa +"} +(45,1,1) = {" +aN +aa +aa +ax +dL +dL +dL +dL +dL +dL +dL +dL +dy +dy +dy +jn +fV +Pf +dh +uC +dy +dy +dy +dL +dL +dL +dL +dL +dL +dL +dL +ax +aa +aa +ax +ax +ax +"} +(46,1,1) = {" +aN +aa +aa +ax +an +an +an +an +an +an +an +dL +dL +dL +dy +dy +Dx +iX +eZ +dy +dy +dL +dL +lp +lp +lp +lp +lp +lp +dL +dL +an +aa +aa +ax +ax +ax +"} +(47,1,1) = {" +aN +aa +aa +an +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dL +dy +dy +Bk +dy +dy +dL +lp +lp +lp +jw +ac +sr +Iy +lp +lp +dL +dL +dL +aa +aa +ax +EN +"} +(48,1,1) = {" +aN +aa +aa +dL +dL +kY +kY +kY +kY +kY +kY +kY +dL +dL +dL +dL +dZ +Za +dZ +dL +dL +lp +uZ +XE +HV +GZ +HV +HV +iw +lp +lp +lp +lp +dL +aa +ax +EN +"} +(49,1,1) = {" +aN +aa +aa +dL +kY +kY +CG +It +QM +fm +cC +kY +kY +dL +dL +dL +dZ +Za +dZ +dL +dL +lp +mV +vb +Ba +Ba +Jp +Yo +zQ +Ha +Zp +IO +lp +dL +aa +EN +Oa +"} +(50,1,1) = {" +aN +aa +aa +dL +kY +nx +nx +Ri +JN +eA +UQ +ik +kY +dL +dL +sO +sO +Za +sO +sO +dL +lp +nN +uh +uG +LT +FL +uc +zQ +Ye +IO +PM +lp +dL +aa +ax +ax +"} +(51,1,1) = {" +aN +aa +aa +dL +kY +yS +yS +Lt +sy +tI +qL +rX +kY +dZ +dZ +sO +ve +ih +bR +sO +dZ +lp +Ev +uh +LT +MT +LT +jD +dz +Wu +Zp +gY +lp +dL +aa +Oa +ax +"} +(52,1,1) = {" +aN +aa +aa +dL +kY +yS +yS +yS +eF +gk +ry +yp +AM +UZ +UZ +JT +Mm +Qi +QY +eb +eb +Ss +Fx +iQ +lL +LS +ha +lV +zQ +Kz +Zp +IO +lp +dL +aa +Oa +ax +"} +(53,1,1) = {" +aN +aa +aa +dL +kY +yS +yS +yS +fM +xk +pt +Jy +kY +sO +sO +sO +qb +vQ +zT +sO +dZ +lp +JC +uh +LT +fQ +LT +jD +sD +aQ +gY +Zp +lp +dL +aa +Oa +ax +"} +(54,1,1) = {" +aN +aa +aa +dL +kY +Sh +Sh +IR +gc +Uk +fB +RD +kY +xC +SI +sO +sO +AX +sO +sO +dL +lp +iN +uh +uG +LT +gP +qB +KN +Lf +IO +PM +lp +dL +aa +ax +ax +"} +(55,1,1) = {" +aN +aa +aa +dL +kY +kY +fS +CG +Og +Hf +fR +kY +kY +mg +sO +sO +sO +AX +dZ +dL +dL +lp +hI +Ld +Wi +Wi +Co +Rv +KN +fA +Zp +Zp +lp +dL +aa +ax +ax +"} +(56,1,1) = {" +aN +aa +aa +dL +dL +kY +kY +kY +kY +kY +kY +kY +sO +dH +yk +xF +sO +AX +dZ +dL +dL +lp +GT +BG +CR +Dn +CR +CR +yh +lp +lp +lp +lp +dL +aa +ax +EN +"} +(57,1,1) = {" +aN +aa +an +dL +dL +dL +dL +dL +dL +dL +sO +qA +GW +Nc +Nc +vt +sO +AX +dZ +dL +dL +lp +lp +lp +jw +ff +oc +Iy +lp +lp +dL +dL +dL +dL +aa +ax +EN +"} +(58,1,1) = {" +aN +aa +dL +dL +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +sO +sO +Xo +sO +tr +sO +sO +dL +dL +dL +lp +lp +lp +lp +lp +lp +dL +dL +an +an +an +aa +ax +Oa +"} +(59,1,1) = {" +aN +aa +dL +ZI +ZI +SN +DG +Cz +Pm +Cz +Tu +eL +ZI +BC +MR +da +cU +Xi +MP +sO +Gv +vF +dL +dL +dL +dL +dL +dL +dL +dL +an +an +an +an +aa +EN +Oa +"} +(60,1,1) = {" +aN +aa +dL +ZI +eL +lh +Ep +Ep +Ep +Ep +TL +eL +ZI +xD +NN +NN +NN +OV +Tl +sO +sO +Bu +sO +sO +sO +dL +an +an +an +an +an +an +an +an +aa +EN +Oa +"} +(61,1,1) = {" +aN +aa +dL +ZI +ic +lh +Ep +Ep +Ep +Ep +Hk +Js +ec +Th +gU +Ef +sM +eX +CE +sO +NS +jO +dZ +EZ +sO +dL +an +an +an +an +an +an +an +ax +aa +ax +Oa +"} +(62,1,1) = {" +aN +aa +dL +ZI +Wt +Py +tt +Cz +bq +Rm +KX +Jm +KY +Mm +sO +dZ +dZ +sO +qe +xZ +wK +wK +EZ +Gi +sO +dL +an +an +an +an +an +an +an +ax +aa +ax +Oa +"} +(63,1,1) = {" +aN +aa +dL +ZI +kW +bj +CJ +CJ +CJ +CJ +ON +Eu +ec +fc +lk +xg +rM +sF +vA +sO +ur +jO +dZ +Bn +sO +dL +an +an +an +an +an +an +ax +aa +aa +Oa +Qc +"} +(64,1,1) = {" +aN +aa +dL +ZI +ja +Ow +Ep +Ep +Ep +Ep +TL +DR +ZI +ZA +NN +WC +NN +NN +rC +sO +sO +sO +sO +sO +sO +dL +an +an +an +an +ax +Oa +ax +aa +aa +ax +Oa +"} +(65,1,1) = {" +aN +aa +dL +ZI +ZI +xw +Pv +Rm +nl +Rm +ae +eL +ZI +qX +vc +ef +vU +Kf +KZ +sO +dL +dL +dL +dL +dL +dL +an +an +an +ax +Oa +Qc +Oa +aa +ax +ax +ax +"} +(66,1,1) = {" +aN +aa +dL +dL +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +ZI +sO +dZ +As +rh +dZ +sO +sO +sO +dL +an +an +an +an +an +ax +ax +ax +Oa +Oa +Oa +aa +aa +ax +ax +"} +(67,1,1) = {" +aN +aa +an +dL +dL +dL +dL +dL +dL +dL +dL +sO +YZ +gC +BE +Zi +DV +yA +yC +YZ +sO +dL +an +an +an +an +an +an +an +an +an +an +ax +aa +aa +ax +ax +"} +(68,1,1) = {" +aN +aa +an +an +an +an +an +an +an +an +dL +sO +yn +gC +BE +PA +jH +BE +li +PW +sO +dL +an +an +an +an +an +an +an +an +an +an +an +ax +aa +ax +ax +"} +(69,1,1) = {" +aN +aa +aa +an +an +an +an +an +an +an +dL +sO +NW +gC +GG +Zi +BE +BE +li +hD +sO +dL +an +an +an +an +an +an +an +an +an +an +ax +ax +aa +ax +ax +"} +(70,1,1) = {" +aN +aa +aa +an +an +an +an +an +an +an +dL +sO +sO +kk +BE +Fe +td +Sf +Hx +sO +sO +dL +an +an +an +an +an +an +an +an +an +an +ax +ax +aa +ax +ax +"} +(71,1,1) = {" +aN +aa +aa +ax +an +an +an +an +an +an +dL +dL +sO +sO +rn +Ds +CS +sm +sO +sO +dL +dL +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +ax +ax +"} +(72,1,1) = {" +aN +aa +aa +ax +ax +ax +an +an +an +an +an +dL +dL +sO +De +us +mA +kK +sO +dL +dL +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +ax +ax +"} +(73,1,1) = {" +aN +aa +aa +Oa +ax +ax +an +an +an +an +an +an +dL +sO +WA +vY +rn +Sp +sO +dL +an +an +an +an +an +an +an +an +an +an +an +ax +ax +aa +aa +ax +ax +"} +(74,1,1) = {" +aN +aa +aa +Oa +Oa +ax +an +an +an +an +an +an +dL +sO +Ho +vY +rn +Lo +sO +dL +an +an +an +an +an +an +an +an +an +an +an +ax +ax +aa +aa +ax +ax +"} +(75,1,1) = {" +aN +aa +aa +Oa +Oa +ax +ax +an +an +an +an +an +dL +sO +ge +ER +rn +aC +sO +dL +an +an +an +an +an +an +an +an +an +ax +Oa +ax +ax +aa +aa +ax +ax +"} +(76,1,1) = {" +aN +aa +aa +Oa +ax +an +an +an +an +an +an +an +dL +sO +sO +Na +aS +sO +sO +dL +an +an +an +an +ax +ax +ax +ax +ax +ax +Oa +Oa +aa +aa +aa +Oa +ax +"} +(77,1,1) = {" +aN +aa +aa +TM +ax +ax +an +an +an +an +an +an +dL +dL +sO +sO +sO +sO +dL +dL +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +Oa +ax +aa +aa +aa +Oa +ax +"} +(78,1,1) = {" +aN +aa +aa +ax +ax +ax +ax +an +an +an +an +an +an +dL +dL +dL +dL +dL +dL +an +an +an +an +an +an +an +an +an +an +Oa +Qc +aa +aa +aa +Qc +Oa +ax +"} +(79,1,1) = {" +aN +aa +aa +aa +ax +Oa +TM +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +Oa +aa +aa +aa +Oa +Oa +ax +"} +(80,1,1) = {" +aN +aa +aa +aa +ax +Oa +ax +ax +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +ax +aa +aa +aa +aa +Oa +ax +ax +"} +(81,1,1) = {" +aN +aa +aa +aa +aa +Qc +Oa +ax +ax +ax +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +ax +aa +aa +aa +aa +Oa +ax +ax +"} +(82,1,1) = {" +aN +aa +aa +aa +aa +Oa +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +ax +aa +ax +ax +ax +ax +ax +ax +"} +(83,1,1) = {" +aN +aa +aa +aa +aa +TM +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +aa +aa +aa +aa +aa +ax +ax +ax +"} +(84,1,1) = {" +aN +aa +aa +aa +aa +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +aa +aa +aa +aa +aa +ax +ax +ax +aR +"} +(85,1,1) = {" +aN +aa +aa +aa +aa +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +aa +aa +aa +aa +ax +ax +ax +Oa +aR +"} +(86,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +ax +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +ax +ax +ax +ax +aa +ax +ax +ax +ax +ax +ax +ax +ax +aR +"} +(87,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aa +aa +ax +ax +ax +aR +"} +(88,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +aa +aa +aa +aa +aa +ax +ax +ax +aR +"} +(89,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +ax +aa +ax +ax +ax +ax +ax +ax +ax +ax +aR +"} +(90,1,1) = {" +aN +aa +aa +aa +aa +aa +an +an +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +ax +ax +aa +aa +aa +aa +aa +aa +ax +Oa +ax +ax +ax +aR +"} +(91,1,1) = {" +aN +aa +aa +aa +aa +aa +an +an +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +an +Qc +Oa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +aR +"} +(92,1,1) = {" +aN +aa +aa +aa +aa +aa +an +an +aa +aa +an +an +an +an +an +an +an +an +an +an +an +an +Oa +Oa +Oa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +aR +"} +(93,1,1) = {" +aN +aa +aa +aa +aa +aa +an +aa +aa +aa +aa +an +an +an +an +an +an +an +an +an +an +ax +ax +Oa +ax +aa +aa +aa +aa +aa +aa +ax +ax +ax +Oa +aa +aR +"} +(94,1,1) = {" +aN +aa +aa +aa +an +an +an +aa +aa +aa +aa +an +an +an +an +an +aa +an +an +an +an +ax +ax +Oa +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +Oa +aa +aR +"} +(95,1,1) = {" +aN +aa +aa +aa +an +an +an +aa +aa +aa +aa +aa +an +an +an +an +aa +an +an +an +an +ax +ax +ax +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +Oa +aa +aR +"} +(96,1,1) = {" +aN +aa +an +aa +an +an +an +aa +aa +ax +aa +aa +an +an +an +an +aa +an +an +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +Oa +Oa +aa +aR +"} +(97,1,1) = {" +ax +aa +an +an +an +an +an +aa +aa +ax +aa +aa +an +an +an +an +aa +an +an +an +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +Oa +Oa +aa +aR +"} +(98,1,1) = {" +ax +HM +ax +an +an +an +an +aa +aa +ax +aa +aa +an +an +an +an +aa +an +an +an +an +an +ax +aa +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Qc +aa +aa +aR +"} +(99,1,1) = {" +aI +ax +Oa +Oa +Qc +an +an +aa +aa +ax +aa +aa +an +an +an +an +ax +an +an +an +an +ax +ax +ax +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Oa +aa +aa +aR +"} +(100,1,1) = {" +ax +ax +ax +Oa +Oa +aa +aa +aa +aa +ax +aa +aa +ax +an +an +ax +ax +ax +an +an +an +ax +ax +ax +ax +ax +ax +ax +EN +ax +ax +ax +aa +ax +aa +aa +aR +"} +(101,1,1) = {" +ax +ax +ax +ax +ax +ax +ax +ax +aa +ax +aa +aa +ax +an +an +ax +ax +ax +an +an +ax +ax +ax +aa +ax +ax +ax +ax +ax +ax +EN +ax +aa +ax +aa +aa +aR +"} +(102,1,1) = {" +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +Oa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +EN +ax +aa +ax +aa +aa +ax +aa +aa +aR +"} +(103,1,1) = {" +aN +aa +aa +Oa +HM +ax +ax +ax +ax +ax +ax +Oa +Oa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +aa +ax +ax +ax +aa +aa +aa +ax +aa +aa +ax +aa +aa +aR +"} +(104,1,1) = {" +aN +aa +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Qc +Oa +ax +an +ax +ax +ax +an +ax +ax +ax +aa +aa +ax +ax +ax +aa +aa +aa +ax +aa +aa +ax +aa +aa +aR +"} +(105,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +ax +ax +aa +aa +aa +ax +ax +an +ax +ax +an +an +an +an +aa +aa +aa +Oa +ax +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aR +"} +(106,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +ax +ax +ax +aa +aa +aa +ax +an +aa +ax +an +an +aa +aa +aa +Oa +Oa +Oa +Oa +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aR +"} +(107,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +ax +Oa +Oa +aa +aa +aa +an +an +aa +aa +an +an +aa +aa +aa +ax +aa +Qc +aa +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aR +"} +(108,1,1) = {" +aN +aa +ax +ax +ax +ax +ax +Oa +Oa +Qc +aa +ax +aa +an +an +aa +aa +an +an +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aR +"} +(109,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +ax +Oa +Oa +aa +ax +aa +an +an +ax +aa +an +an +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(110,1,1) = {" +aN +aa +aa +aa +aa +aa +ax +ax +ax +ax +aa +ax +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +ax +ax +Oa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(111,1,1) = {" +aN +aa +aa +aa +ax +ax +ax +ax +ax +ax +aa +ax +aa +aa +aa +ax +aa +ax +aa +aa +ax +ax +Oa +Oa +Oa +Oa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(112,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +Oa +Oa +aa +ax +aa +ax +aa +aa +ax +ax +HM +Oa +Oa +Oa +ax +ax +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(113,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +HM +ax +ax +ax +HM +ax +ax +ax +ax +ax +ax +aa +aa +aa +aa +aR +"} +(114,1,1) = {" +aN +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +ax +HM +HM +ax +ax +ax +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(115,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +Oa +Oa +Oa +ax +ax +ax +ax +ax +ax +ax +aa +ax +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(116,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +Oa +Oa +Oa +Qc +Oa +ax +ax +ax +ax +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(117,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +ax +ax +ax +ax +ax +ax +ax +aa +ax +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(118,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(119,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(120,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +ax +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +"} +(121,1,1) = {" +aN +aa +aa +aa +aa +aa +aa +aa +aa +aa +ax +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 +aR +"} +(122,1,1) = {" +aN +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 +aR +"} +(123,1,1) = {" +aN +aa +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aR +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment3_a.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment3_a.dmm new file mode 100644 index 000000000000..28d394f05dbc --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment3_a.dmm @@ -0,0 +1,4240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/bed/nest, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"c" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"d" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/sandbags, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"e" = ( +/obj/structure/bed/nest, +/obj/item/stack/sheet/bone, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"g" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"h" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"i" = ( +/obj/item/stack/sheet/bone, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"j" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"k" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"o" = ( +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"p" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"r" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"s" = ( +/obj/structure/fluff/clockwork/blind_eye, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"t" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/ocular_warden, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"u" = ( +/obj/effect/decal/remains/human, +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"v" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"w" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"x" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"y" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"z" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"A" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"C" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"D" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"E" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"F" = ( +/mob/living/simple_animal/hostile/clockwork, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"G" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"H" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"I" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"J" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"K" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 5 of 6."; + name = "secret banana" + }, +/obj/structure/bed/nest, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"L" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/bump_teleporter{ + id = null; + id_target = "lvl4spawn"; + name = "lvl4 teleport" + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"N" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"O" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"U" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"W" = ( +/obj/item/stack/sheet/bone, +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"X" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"Y" = ( +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) + +(1,1,1) = {" +h +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +"} +(2,1,1) = {" +h +g +g +g +g +g +Y +Y +Y +Y +U +Y +Y +Y +Y +Y +Y +Y +g +g +g +g +g +g +Y +r +Y +i +a +g +g +"} +(3,1,1) = {" +h +g +g +g +Y +Y +Y +g +g +g +g +g +g +g +Y +Y +Y +g +g +Y +Y +Y +Y +Y +Y +Y +a +x +Y +Y +g +"} +(4,1,1) = {" +h +g +g +Y +Y +Y +Y +Y +Y +g +g +g +g +g +g +g +g +g +g +Y +Y +g +g +g +Y +i +Y +Y +i +Y +g +"} +(5,1,1) = {" +h +g +g +g +g +g +Y +Y +Y +Y +U +Y +Y +Y +g +Y +Y +Y +Y +Y +g +g +g +g +a +U +x +Y +r +Y +g +"} +(6,1,1) = {" +h +g +g +Y +Y +U +Y +Y +Y +Y +Y +Y +Y +Y +g +g +g +g +g +g +g +g +Y +g +g +Y +Y +Y +e +g +g +"} +(7,1,1) = {" +h +g +g +g +g +g +Y +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +Y +Y +Y +Y +Y +g +g +g +g +"} +(8,1,1) = {" +h +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +Y +Y +Y +Y +Y +g +g +g +g +g +Y +Y +g +"} +(9,1,1) = {" +A +g +Y +Y +U +g +g +g +g +g +g +g +g +Y +Y +Y +U +g +Y +Y +Y +U +Y +Y +Y +Y +Y +Y +Y +Y +g +"} +(10,1,1) = {" +A +A +Y +Y +g +g +g +g +g +g +g +g +g +g +g +Y +Y +g +g +g +g +Y +Y +Y +g +g +g +Y +Y +U +g +"} +(11,1,1) = {" +D +A +A +Y +Y +z +A +A +A +Y +g +g +g +g +g +Y +Y +Y +Y +g +g +g +Y +g +g +g +g +Y +Y +Y +g +"} +(12,1,1) = {" +A +z +A +A +A +A +A +z +z +Y +Y +Y +g +g +g +Y +Y +Y +U +Y +Y +Y +Y +Y +Y +Y +g +Y +Y +Y +g +"} +(13,1,1) = {" +A +p +z +A +A +A +z +z +p +z +A +Y +Y +g +g +g +g +g +g +g +g +g +g +g +g +Y +g +Y +Y +g +g +"} +(14,1,1) = {" +A +g +z +z +A +A +A +A +z +A +Y +Y +U +Y +Y +g +g +g +g +g +g +g +g +g +g +Y +g +g +Y +g +g +"} +(15,1,1) = {" +h +g +g +A +A +A +A +A +A +A +A +A +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +U +Y +g +Y +g +g +Y +g +g +"} +(16,1,1) = {" +h +g +g +A +A +z +A +A +A +A +A +Y +Y +Y +Y +g +g +g +Y +Y +Y +g +Y +Y +Y +Y +g +g +Y +g +g +"} +(17,1,1) = {" +h +g +A +A +A +A +A +A +A +A +A +z +Y +g +g +g +g +g +Y +Y +Y +g +Y +Y +g +g +g +g +Y +g +g +"} +(18,1,1) = {" +h +g +A +z +A +A +z +A +A +A +z +U +U +g +g +g +g +g +g +Y +g +g +Y +g +g +g +g +g +Y +g +g +"} +(19,1,1) = {" +h +g +z +p +z +A +A +A +A +z +w +U +g +Y +Y +Y +g +g +g +Y +g +g +Y +g +g +g +g +g +Y +g +g +"} +(20,1,1) = {" +h +g +A +z +z +z +A +A +A +U +U +U +g +Y +Y +Y +g +Y +Y +Y +g +g +U +g +g +g +g +g +Y +g +g +"} +(21,1,1) = {" +h +g +g +g +A +A +A +A +A +A +g +g +g +Y +Y +Y +Y +U +Y +Y +g +g +Y +g +g +g +g +Y +U +g +g +"} +(22,1,1) = {" +h +g +g +g +A +A +A +g +A +A +g +g +g +g +Y +g +g +g +g +Y +g +g +Y +g +g +g +Y +Y +Y +g +g +"} +(23,1,1) = {" +h +g +g +g +g +g +g +g +g +g +g +g +g +g +Y +g +g +g +Y +Y +g +g +Y +Y +g +g +g +Y +Y +g +g +"} +(24,1,1) = {" +h +g +g +g +g +g +g +g +g +g +g +Y +Y +Y +Y +Y +g +g +Y +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +g +g +"} +(25,1,1) = {" +h +g +g +g +g +g +g +g +Y +g +g +g +g +g +Y +U +g +Y +Y +g +g +Y +Y +Y +Y +U +Y +Y +Y +g +g +"} +(26,1,1) = {" +h +g +Y +g +g +g +Y +U +Y +Y +g +g +g +g +g +g +g +Y +Y +g +g +Y +Y +Y +g +g +Y +Y +Y +g +g +"} +(27,1,1) = {" +h +Y +Y +g +g +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +g +Y +Y +g +g +g +Y +Y +g +g +"} +(28,1,1) = {" +h +J +J +Y +g +g +g +Y +g +g +g +g +g +g +g +g +g +g +Y +g +g +g +Y +g +g +g +g +g +Y +g +g +"} +(29,1,1) = {" +h +J +J +J +Y +g +g +Y +g +Y +Y +Y +Y +U +Y +Y +Y +Y +Y +g +g +Y +Y +g +g +Y +g +g +Y +g +g +"} +(30,1,1) = {" +h +J +J +J +Y +Y +g +Y +g +Y +g +g +g +g +g +g +g +g +Y +Y +Y +Y +Y +g +g +Y +g +g +Y +g +g +"} +(31,1,1) = {" +h +J +U +J +J +Y +g +Y +g +Y +g +g +g +g +g +g +Y +Y +Y +g +g +g +Y +g +g +Y +g +g +Y +g +g +"} +(32,1,1) = {" +h +U +U +U +J +Y +Y +Y +g +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +Y +g +g +Y +Y +g +Y +g +g +"} +(33,1,1) = {" +h +w +U +J +J +Y +g +Y +g +U +g +Y +g +g +g +Y +Y +Y +Y +g +g +Y +Y +Y +g +Y +Y +g +Y +g +g +"} +(34,1,1) = {" +h +U +J +J +Y +g +g +Y +g +Y +g +Y +g +g +g +g +g +g +Y +g +Y +Y +Y +Y +Y +Y +Y +g +Y +g +g +"} +(35,1,1) = {" +h +g +Y +Y +Y +g +g +Y +g +g +g +Y +g +g +g +Y +g +g +Y +g +g +g +g +g +g +Y +Y +g +Y +g +g +"} +(36,1,1) = {" +h +g +g +g +g +g +g +Y +U +Y +Y +Y +g +g +U +Y +Y +g +Y +Y +g +g +g +g +g +Y +Y +g +Y +g +g +"} +(37,1,1) = {" +h +g +g +g +g +g +g +Y +g +g +g +g +g +g +Y +Y +Y +Y +Y +Y +g +g +g +g +Y +Y +Y +g +Y +g +g +"} +(38,1,1) = {" +h +g +g +g +Y +g +g +Y +g +Y +Y +Y +g +g +Y +g +g +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +Y +g +g +"} +(39,1,1) = {" +h +g +U +Y +Y +Y +Y +Y +g +Y +g +Y +g +g +g +g +g +Y +Y +Y +Y +g +g +g +g +Y +Y +g +Y +g +g +"} +(40,1,1) = {" +h +g +Y +Y +Y +g +g +Y +g +Y +g +g +g +U +Y +Y +Y +Y +Y +g +g +g +g +g +g +g +g +g +Y +g +g +"} +(41,1,1) = {" +h +g +g +Y +g +g +Y +Y +g +Y +g +g +g +Y +Y +Y +Y +g +g +g +Y +Y +Y +Y +Y +Y +Y +g +Y +g +g +"} +(42,1,1) = {" +h +g +g +Y +g +g +Y +Y +g +Y +Y +Y +Y +Y +Y +g +g +g +g +Y +U +Y +Y +g +Y +Y +Y +g +Y +g +g +"} +(43,1,1) = {" +h +g +g +Y +g +U +Y +Y +g +g +g +g +g +Y +Y +g +g +g +g +Y +Y +Y +Y +g +g +Y +U +g +Y +g +g +"} +(44,1,1) = {" +h +g +g +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +g +Y +g +g +Y +g +g +g +g +Y +U +g +Y +g +g +"} +(45,1,1) = {" +h +g +g +Y +g +g +Y +Y +g +g +g +Y +Y +Y +g +g +g +Y +g +U +Y +Y +g +g +g +g +K +g +Y +g +g +"} +(46,1,1) = {" +h +g +g +Y +Y +g +g +g +g +g +g +g +g +Y +g +g +g +Y +Y +Y +Y +Y +Y +g +g +g +g +g +Y +g +g +"} +(47,1,1) = {" +h +g +Y +Y +Y +g +g +g +g +g +Y +g +Y +Y +g +g +g +Y +Y +Y +Y +Y +U +g +g +g +g +Y +Y +g +g +"} +(48,1,1) = {" +h +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +Y +Y +Y +g +g +g +g +g +g +Y +Y +Y +g +g +"} +(49,1,1) = {" +h +g +Y +Y +Y +g +g +g +Y +Y +Y +Y +Y +Y +Y +g +U +Y +Y +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +g +g +"} +(50,1,1) = {" +h +g +g +Y +Y +g +g +g +g +g +g +g +Y +Y +Y +g +g +Y +Y +g +g +U +Y +g +g +g +g +g +g +g +g +"} +(51,1,1) = {" +h +g +g +Y +g +g +g +g +g +g +g +g +g +Y +Y +g +g +Y +U +g +g +Y +Y +Y +g +g +g +g +g +g +g +"} +(52,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +g +Y +Y +Y +Y +Y +Y +Y +g +g +g +g +Y +Y +Y +Y +Y +Y +Y +Y +g +"} +(53,1,1) = {" +h +g +g +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +Y +g +g +g +g +Y +U +g +g +g +g +Y +Y +g +"} +(54,1,1) = {" +h +g +g +Y +g +Y +Y +Y +g +g +U +Y +Y +Y +g +g +Y +Y +g +g +g +g +Y +g +g +g +g +g +g +Y +g +"} +(55,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +U +Y +Y +Y +U +g +g +Y +g +g +g +g +Y +g +g +g +g +g +Y +Y +g +"} +(56,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +g +Y +Y +Y +Y +g +g +Y +g +g +Y +Y +Y +g +Y +Y +Y +Y +U +Y +g +"} +(57,1,1) = {" +h +g +Y +Y +Y +g +Y +g +g +g +g +Y +g +Y +Y +Y +Y +Y +g +g +g +Y +Y +g +Y +Y +g +g +Y +Y +g +"} +(58,1,1) = {" +h +g +Y +Y +U +Y +Y +Y +Y +Y +g +Y +g +Y +Y +g +Y +Y +g +g +g +g +U +g +Y +g +g +g +g +Y +g +"} +(59,1,1) = {" +h +g +Y +Y +Y +g +Y +g +Y +Y +g +Y +g +Y +Y +g +Y +Y +g +g +g +g +Y +g +Y +g +g +g +g +Y +g +"} +(60,1,1) = {" +h +g +Y +g +g +g +Y +g +g +Y +g +Y +g +Y +Y +g +g +Y +g +g +g +g +Y +g +Y +Y +g +g +g +Y +g +"} +(61,1,1) = {" +h +g +g +g +g +Y +Y +Y +g +Y +g +Y +g +Y +Y +g +g +Y +U +g +g +g +Y +g +Y +Y +Y +g +g +Y +g +"} +(62,1,1) = {" +h +g +g +g +g +g +Y +Y +g +Y +g +Y +g +Y +g +g +U +Y +Y +g +g +Y +Y +g +Y +g +g +g +g +Y +g +"} +(63,1,1) = {" +h +g +g +g +g +g +Y +Y +g +Y +g +Y +g +Y +g +g +Y +Y +Y +Y +g +Y +Y +g +Y +g +g +g +g +Y +g +"} +(64,1,1) = {" +h +g +g +g +g +g +Y +g +g +Y +g +Y +g +Y +g +g +Y +Y +Y +Y +Y +Y +Y +g +Y +Y +g +g +g +Y +g +"} +(65,1,1) = {" +h +g +g +g +g +g +Y +g +g +Y +g +Y +g +Y +g +g +Y +Y +g +g +g +Y +Y +g +Y +Y +U +Y +g +Y +g +"} +(66,1,1) = {" +h +g +g +g +Y +Y +Y +g +g +Y +g +Y +g +Y +g +g +Y +g +g +g +g +Y +Y +g +Y +g +Y +Y +g +Y +g +"} +(67,1,1) = {" +h +g +g +Y +a +Y +Y +Y +g +Y +g +Y +g +Y +g +g +Y +Y +U +g +g +g +Y +g +Y +g +Y +Y +g +Y +g +"} +(68,1,1) = {" +h +g +i +Y +Y +i +Y +U +g +Y +g +Y +g +Y +g +g +Y +Y +Y +Y +g +Y +Y +g +g +g +g +Y +g +Y +g +"} +(69,1,1) = {" +h +g +a +Y +x +Y +Y +a +g +Y +g +Y +g +Y +Y +g +g +g +g +g +g +U +Y +Y +g +g +g +Y +g +Y +g +"} +(70,1,1) = {" +h +g +Y +x +Y +Y +Y +Y +g +Y +g +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +Y +g +Y +g +"} +(71,1,1) = {" +h +g +g +Y +a +i +Y +Y +g +Y +g +Y +g +g +g +g +g +g +g +g +g +g +Y +g +Y +Y +g +Y +g +Y +g +"} +(72,1,1) = {" +h +g +g +g +Y +U +Y +a +g +Y +g +Y +U +g +g +g +g +g +g +g +g +Y +Y +U +g +Y +g +Y +g +Y +g +"} +(73,1,1) = {" +h +g +g +g +g +Y +Y +x +g +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +g +Y +g +Y +g +"} +(74,1,1) = {" +h +g +g +g +g +g +Y +g +g +Y +g +Y +Y +U +g +g +g +Y +Y +g +g +g +g +g +g +Y +g +Y +g +Y +g +"} +(75,1,1) = {" +h +g +g +g +g +g +Y +g +g +Y +g +U +Y +g +g +g +g +Y +Y +g +g +g +g +g +g +Y +g +Y +g +Y +g +"} +(76,1,1) = {" +h +g +g +U +U +Y +Y +g +g +Y +g +g +Y +g +g +g +g +Y +U +g +g +g +g +Y +g +Y +g +Y +Y +Y +g +"} +(77,1,1) = {" +h +g +Y +Y +Y +Y +Y +g +g +g +g +g +Y +g +g +g +g +Y +Y +Y +Y +Y +Y +Y +g +Y +g +Y +Y +Y +g +"} +(78,1,1) = {" +h +g +Y +Y +Y +Y +U +g +g +g +g +g +Y +U +g +g +g +g +Y +Y +g +Y +Y +U +g +Y +g +U +Y +Y +g +"} +(79,1,1) = {" +h +g +Y +Y +g +g +g +g +Y +Y +g +Y +Y +Y +Y +g +g +g +Y +g +g +g +Y +g +g +Y +g +g +g +Y +g +"} +(80,1,1) = {" +h +g +U +Y +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +g +g +g +Y +g +g +Y +g +g +g +Y +g +"} +(81,1,1) = {" +h +g +g +Y +g +g +Y +Y +Y +g +g +U +Y +Y +Y +Y +g +g +Y +g +g +g +Y +g +g +Y +g +g +g +Y +g +"} +(82,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +g +g +g +g +Y +Y +g +g +Y +g +g +g +Y +g +g +Y +g +g +g +Y +g +"} +(83,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +g +g +g +g +U +Y +g +Y +Y +g +g +g +Y +g +g +Y +g +g +g +Y +g +"} +(84,1,1) = {" +h +g +g +Y +g +g +Y +g +g +g +U +Y +U +g +g +Y +g +Y +Y +Y +Y +g +Y +g +g +Y +g +g +g +Y +g +"} +(85,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +Y +Y +Y +Y +g +g +Y +g +Y +g +Y +Y +g +Y +g +g +Y +Y +g +g +Y +g +"} +(86,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +Y +g +g +Y +g +g +Y +g +g +g +U +Y +g +Y +g +g +Y +U +g +g +Y +g +"} +(87,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +g +g +g +g +Y +g +Y +g +g +Y +Y +Y +Y +Y +g +"} +(88,1,1) = {" +h +g +U +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +g +g +g +g +Y +g +Y +g +g +Y +Y +Y +g +Y +g +"} +(89,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +g +Y +Y +g +g +Y +g +g +g +g +Y +g +Y +g +g +Y +Y +U +g +Y +g +"} +(90,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +Y +Y +U +g +g +Y +g +g +g +g +Y +g +Y +g +g +Y +g +g +g +Y +g +"} +(91,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +Y +Y +Y +g +g +Y +g +g +g +g +Y +g +Y +g +g +Y +g +g +g +B +g +"} +(92,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +U +Y +Y +g +g +Y +Y +g +g +g +Y +g +Y +g +g +Y +j +g +g +Y +g +"} +(93,1,1) = {" +h +g +U +Y +g +g +Y +g +Y +g +U +Y +Y +g +g +Y +U +g +g +Y +Y +g +Y +g +g +d +j +g +g +Y +g +"} +(94,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +Y +Y +Y +g +Y +Y +G +G +G +Y +G +g +Y +g +j +Y +j +g +j +Y +g +"} +(95,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +Y +Y +Y +g +Y +q +G +G +W +Y +G +g +Y +g +g +B +g +g +j +d +g +"} +(96,1,1) = {" +h +g +g +Y +g +Y +Y +g +Y +g +g +Y +Y +g +Y +Y +X +Y +a +Y +G +g +Y +g +g +B +g +g +j +Y +g +"} +(97,1,1) = {" +h +g +g +Y +g +Y +Y +g +Y +g +g +g +Y +g +g +Y +Y +G +G +G +x +g +Y +g +g +B +g +g +j +B +g +"} +(98,1,1) = {" +h +g +g +Y +g +U +Y +g +Y +g +g +g +Y +g +g +Y +a +G +G +G +Y +Y +Y +g +j +B +j +g +g +B +g +"} +(99,1,1) = {" +h +g +g +Y +g +U +Y +g +Y +Y +g +g +Y +g +g +Y +U +u +a +G +W +X +Y +g +j +o +j +g +g +B +g +"} +(100,1,1) = {" +h +g +g +Y +g +Y +Y +g +Y +Y +g +g +Y +Y +Y +W +Y +G +u +Y +G +G +Y +g +j +o +j +g +j +B +g +"} +(101,1,1) = {" +h +g +g +Y +g +Y +Y +g +Y +Y +g +g +Y +Y +X +G +G +Y +Y +Y +a +Y +Y +g +j +B +j +g +j +B +g +"} +(102,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +Y +g +g +Y +Y +Y +G +G +a +U +Y +Y +g +Y +g +j +F +j +g +g +B +g +"} +(103,1,1) = {" +h +g +U +Y +g +g +Y +g +Y +g +g +g +Y +U +g +Y +g +Y +Y +Y +g +g +g +g +j +B +g +Y +Y +B +g +"} +(104,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +g +g +g +g +g +g +g +g +E +B +Y +B +B +U +g +"} +(105,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +g +U +Y +Y +g +g +Y +g +g +g +j +j +g +g +j +B +B +B +B +g +g +g +"} +(106,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +U +Y +Y +g +g +Y +g +g +o +o +j +g +E +B +B +B +U +Y +g +g +g +"} +(107,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +g +B +B +B +o +o +o +c +j +g +g +g +g +g +g +"} +(108,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +j +B +B +j +g +g +E +o +j +o +o +g +j +j +g +"} +(109,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +g +g +g +Y +g +g +Y +j +B +Y +j +Y +j +j +o +o +o +o +o +o +j +g +"} +(110,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +U +g +g +Y +g +g +Y +g +B +g +g +Y +j +o +c +o +o +o +o +o +o +g +"} +(111,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +Y +Y +g +Y +g +g +Y +g +B +g +Y +Y +g +o +v +o +c +B +t +g +g +g +"} +(112,1,1) = {" +h +g +g +Y +g +g +Y +g +Y +Y +g +g +Y +g +g +Y +g +Y +Y +U +Y +g +t +H +o +I +I +j +g +g +g +"} +(113,1,1) = {" +h +g +g +Y +g +g +Y +g +U +g +g +g +Y +g +g +Y +g +Y +g +Y +Y +g +j +I +I +I +B +B +A +g +g +"} +(114,1,1) = {" +h +g +Y +Y +g +g +Y +g +g +g +g +g +Y +g +g +Y +j +B +j +g +Y +g +g +B +B +B +B +B +B +A +g +"} +(115,1,1) = {" +h +g +U +Y +g +U +Y +g +g +g +g +U +Y +g +g +Y +g +F +j +g +g +g +A +B +B +B +y +C +A +A +g +"} +(116,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +Y +Y +Y +Y +g +g +Y +g +Y +j +g +g +A +B +B +k +B +B +O +A +g +g +"} +(117,1,1) = {" +h +g +Y +Y +g +g +Y +g +Y +U +Y +Y +Y +g +g +Y +g +Y +g +A +A +A +z +y +B +L +B +B +A +g +g +"} +(118,1,1) = {" +h +g +Y +Y +g +Y +Y +g +g +g +g +Y +Y +g +g +Y +j +Y +g +z +A +A +z +z +B +B +B +A +A +g +g +"} +(119,1,1) = {" +h +g +Y +U +g +U +Y +U +g +g +g +g +Y +g +g +Y +j +B +g +g +A +A +A +C +B +y +A +A +z +g +g +"} +(120,1,1) = {" +h +g +Y +U +g +Y +Y +Y +Y +Y +Y +Y +Y +g +g +Y +j +Y +U +j +A +A +A +A +B +A +A +A +g +g +g +"} +(121,1,1) = {" +h +g +Y +Y +g +g +g +g +g +g +g +g +g +g +Y +Y +g +Y +s +j +N +A +A +A +A +g +g +g +g +g +g +"} +(122,1,1) = {" +h +g +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +Y +U +g +Y +Y +j +A +g +g +g +g +g +g +g +g +g +g +"} +(123,1,1) = {" +h +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +g +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment3_b.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment3_b.dmm new file mode 100644 index 000000000000..335334931fd7 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment3_b.dmm @@ -0,0 +1,4435 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"ac" = ( +/obj/item/clothing/under/costume/skeleton, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"ad" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ae" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"af" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"ag" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ah" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"ai" = ( +/turf/closed/indestructible/necropolis, +/area/template_noop) +"al" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"am" = ( +/obj/effect/decal/remains/human, +/turf/open/indestructible/necropolis, +/area/template_noop) +"an" = ( +/obj/structure/spawner/lavaland/legion, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ao" = ( +/mob/living/simple_animal/hostile/asteroid/lobstrosity/lava, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ap" = ( +/mob/living/simple_animal/hostile/asteroid/brimdemon{ + name = "Dunga" + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aq" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"ar" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"as" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/template_noop) +"at" = ( +/obj/effect/decal/remains/xeno, +/turf/open/indestructible/necropolis, +/area/template_noop) +"au" = ( +/obj/structure/spawner/skeleton, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"av" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"ax" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"ay" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"az" = ( +/obj/modular_map_connector, +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/template_noop) +"aA" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aB" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"aC" = ( +/obj/structure/stone_tile/surrounding/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked, +/obj/structure/stone_tile/center/cracked, +/turf/open/indestructible/boss, +/area/template_noop) +"aE" = ( +/mob/living/simple_animal/hostile/asteroid/brimdemon, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aF" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aG" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"aH" = ( +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/template_noop) +"aJ" = ( +/mob/living/simple_animal/hostile/asteroid/brimdemon{ + name = "Unga" + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aM" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"aN" = ( +/obj/structure/spawner/lavaland/icewatcher, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aQ" = ( +/mob/living/simple_animal/hostile/asteroid/brimdemon{ + name = "Bunga" + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aR" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aS" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"aT" = ( +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"aU" = ( +/obj/structure/legionturret, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aW" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/template_noop) +"aX" = ( +/obj/item/storage/fish_case/syndicate, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aY" = ( +/obj/structure/legionnaire_bonfire, +/turf/open/indestructible/necropolis, +/area/template_noop) +"aZ" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/template_noop) +"cj" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"gj" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"iV" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/mob/living/simple_animal/hostile/clockwork, +/turf/open/indestructible/boss, +/area/template_noop) +"lW" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mL" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"nN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"pj" = ( +/obj/structure/stone_tile/slab, +/mob/living/simple_animal/hostile/clockwork, +/turf/open/indestructible/boss, +/area/template_noop) +"pu" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/template_noop) +"sP" = ( +/obj/item/storage/toolbox/fishing, +/turf/open/indestructible/necropolis, +/area/template_noop) +"vh" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) +"wq" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"yK" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"zx" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Ad" = ( +/mob/living/simple_animal/hostile/clockwork, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Ae" = ( +/mob/living/simple_animal/hostile/skeleton{ + health = 200; + name = "Bones McGee"; + speak = list("OoOoOoOh, I'm a talking skeleton! Isn't that SCARY?","I've got a BONE to pick with you!","I'll never go back to the museum!","Do you have any idea how much milk I drank before I died?!?","Laugh at MY boner will they? I'll show them! I'll show them how many BONERS McGee can make!","RATTLE EM, BOYS!","My foot bone is gonna connect with your ass bone!"); + speak_chance = 25; + speak_emote = list("rattles","plays their ribcage menacingly!") + }, +/turf/open/floor/plating/dirt/jungle/wasteland, +/area/template_noop) +"AD" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/open/indestructible/boss, +/area/template_noop) +"BS" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"DG" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Gj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "lvl4spawn"; + name = "lvl4 teleport" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Ko" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/ocular_warden, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"LR" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"RD" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/template_noop) +"XX" = ( +/mob/living/simple_animal/hostile/asteroid/elite/legionnaire{ + name = "Big Jim" + }, +/turf/open/indestructible/necropolis, +/area/template_noop) +"YE" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"YO" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 5 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Zf" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) + +(1,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ai +ai +ai +ar +ar +ar +ar +"} +(2,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ag +ar +"} +(3,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +vh +vh +ai +ai +ai +ai +al +al +ai +ai +ai +ai +"} +(4,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +al +al +aa +aa +ai +ai +"} +(5,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +al +al +aE +al +aa +ai +ai +"} +(6,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +ai +al +al +al +al +al +al +al +al +al +al +al +ai +ai +ai +"} +(7,1,1) = {" +aM +aM +aM +aM +aM +vh +aA +gj +gj +aA +ai +ai +ai +ai +ai +ai +al +al +al +al +al +al +al +aE +al +al +aR +al +ai +al +ai +"} +(8,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aA +DG +gj +al +al +al +al +ai +ai +al +al +al +ai +ai +ai +ai +ai +at +al +ai +al +ai +al +ai +"} +(9,1,1) = {" +aM +aM +aM +ay +aW +aH +aC +aH +gj +aA +YE +al +al +al +al +al +at +al +al +ai +ai +ai +ai +ai +al +aE +ai +al +al +al +ai +"} +(10,1,1) = {" +aH +aH +aH +aH +aZ +aH +aS +aH +ah +aq +aA +aA +al +al +al +al +as +al +al +aR +ai +ai +ai +ai +ai +ai +ai +al +al +al +ai +"} +(11,1,1) = {" +az +aH +aH +ay +ay +ay +ay +ay +ay +ay +aB +aA +YE +al +al +al +al +al +al +al +ai +ai +ai +ai +ai +al +al +al +al +al +ai +"} +(12,1,1) = {" +aH +aH +aH +aH +aZ +aH +aG +aH +ae +aq +aS +aq +aA +al +al +al +al +al +al +al +al +ai +ai +ai +ai +ai +al +al +al +ai +ai +"} +(13,1,1) = {" +aM +aM +aM +ax +aW +aH +aW +aq +av +gj +aA +YE +aA +al +al +al +al +al +al +aa +aa +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +"} +(14,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aA +DG +gj +gj +al +al +al +al +al +al +al +aa +aa +aa +ai +ai +vh +vh +ai +ai +ai +ai +ai +ai +"} +(15,1,1) = {" +aM +aM +aM +aM +aM +aA +aA +gj +gj +al +al +al +al +al +aR +al +al +al +al +al +aa +ai +ai +vh +vh +vh +vh +vh +vh +ai +ai +"} +(16,1,1) = {" +aM +aM +vh +vh +vh +vh +aA +aA +ai +ai +ai +ai +ai +ai +ai +al +al +al +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(17,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +al +al +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(18,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +al +al +as +al +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(19,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +al +al +al +ai +ai +ag +vh +vh +vh +vh +vh +vh +vh +ar +"} +(20,1,1) = {" +aM +aM +aM +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +am +al +al +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(21,1,1) = {" +aM +aM +aM +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(22,1,1) = {" +aM +aM +aM +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +al +al +YE +ai +ai +ai +vh +vh +vh +vh +vh +vh +ar +"} +(23,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ag +ai +al +al +al +aA +ai +ai +ai +vh +vh +vh +vh +vh +vh +ar +"} +(24,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +aA +aA +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(25,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +al +aA +aA +YE +aA +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(26,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +ai +ai +ai +ai +ai +ai +ai +ai +ai +al +al +aA +aA +gj +aA +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(27,1,1) = {" +aM +aM +aM +vh +vh +vh +ai +ai +ai +ai +ai +ai +ai +al +al +al +al +al +YE +gj +gj +aA +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(28,1,1) = {" +aM +aM +aM +vh +vh +vh +ai +ai +al +al +al +al +al +al +al +al +al +aa +gj +DG +gj +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(29,1,1) = {" +aM +aM +vh +vh +vh +vh +ai +al +al +al +al +al +al +aR +al +al +aa +aa +gj +gj +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(30,1,1) = {" +aM +aM +vh +vh +vh +vh +ag +ai +ai +ai +ai +ai +al +al +al +al +al +ai +gj +aA +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(31,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +al +al +al +ai +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(32,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +al +al +al +ai +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(33,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +al +ai +ai +ag +ag +vh +vh +vh +ai +ai +ai +ai +ai +ai +ar +"} +(34,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +aN +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ar +"} +(35,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +aa +al +al +al +al +al +ai +ai +ai +ai +ai +ai +al +al +al +ai +ai +ar +"} +(36,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +aa +am +al +al +al +al +al +al +al +al +al +at +al +al +ai +ai +ai +ar +"} +(37,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +aa +aa +al +al +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ag +ar +"} +(38,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ag +ar +"} +(39,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +aR +al +ai +ai +ag +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(40,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +ai +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(41,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +vh +vh +vh +vh +vh +ai +ai +al +al +al +ai +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(42,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +vh +vh +vh +ai +ai +al +al +aN +al +ai +ai +ai +vh +vh +vh +vh +vh +ai +ai +ai +ag +ar +"} +(43,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +vh +vh +vh +vh +vh +ai +ai +al +al +al +al +ai +ag +ag +ag +ag +ai +ai +ai +ai +ai +ai +ag +ar +"} +(44,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ag +aA +al +al +ai +ai +ai +ai +ai +ai +al +al +ao +ai +ai +ai +ai +"} +(45,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ag +gj +YE +al +ai +ai +ai +ai +ai +ai +al +al +aX +aa +ai +ai +ai +"} +(46,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ag +aA +gj +gj +al +al +al +ai +ai +ai +ai +al +al +aa +aa +aa +aa +ai +"} +(47,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ag +gj +DG +gj +al +al +al +al +ao +al +aR +ao +aa +aa +aa +aa +ai +ai +"} +(48,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ag +ag +ag +aA +gj +gj +al +al +am +al +al +al +al +al +aa +aa +aa +aa +ai +ai +"} +(49,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +ag +aA +aA +YE +aA +aA +al +al +al +ai +al +ao +al +sP +al +aa +aa +aa +ai +ai +"} +(50,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +gj +aA +aA +aA +aA +aA +aA +aA +aA +YE +al +al +ai +ai +ai +ai +ai +al +ao +aa +aa +aa +ai +ai +"} +(51,1,1) = {" +aM +aM +vh +vh +aM +gj +DG +gj +aA +aA +aA +aA +gj +gj +vh +aA +aA +aA +al +ai +ai +ai +ai +ai +al +al +aX +aa +aa +ai +ai +"} +(52,1,1) = {" +aM +aM +vh +vh +vh +gj +gj +gj +aA +aA +gj +gj +DG +vh +vh +ai +gj +YE +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ar +"} +(53,1,1) = {" +aM +aM +vh +vh +vh +aA +aA +aA +aA +vh +aM +vh +vh +vh +vh +ai +aA +gj +al +al +ai +ai +vh +vh +vh +ai +ai +ai +ai +ag +ar +"} +(54,1,1) = {" +aM +aM +vh +vh +aM +aA +aA +aM +aM +vh +vh +vh +vh +vh +vh +ai +aA +aA +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(55,1,1) = {" +aM +aM +aM +vh +aM +aA +aA +aA +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(56,1,1) = {" +aM +aM +aM +vh +vh +gj +aA +aF +aA +aM +aM +ag +ag +ag +ag +ai +ai +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(57,1,1) = {" +aM +aM +aM +vh +vh +vh +aA +aA +aA +aT +aM +aM +ag +ag +ag +ai +ai +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(58,1,1) = {" +aM +aM +aM +vh +vh +vh +aM +aA +aT +aT +aT +aM +ag +ag +ai +ai +ai +al +al +al +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(59,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +aA +aT +af +aT +aT +ag +ag +ai +ai +ai +al +aR +al +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(60,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +aT +Ae +aT +aT +aT +aM +ag +ai +ai +al +am +al +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(61,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +af +ac +aT +aT +aT +aM +ag +ai +ai +al +al +an +al +aa +ai +ai +vh +vh +vh +vh +vh +vh +vh +ar +"} +(62,1,1) = {" +aM +aM +aM +aM +vh +vh +aM +aT +aT +au +aT +af +aM +ag +ai +ai +al +al +al +al +aa +ai +ai +ai +vh +ai +ai +ag +ag +ag +ar +"} +(63,1,1) = {" +aM +aM +aM +aM +vh +vh +aM +aT +aT +aT +aT +aM +ag +ag +ai +ai +ai +al +al +aa +aa +aa +ai +ai +vh +ai +gj +gj +ag +ag +ar +"} +(64,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +aT +af +aT +aM +aM +ag +ag +ag +ai +ai +al +al +al +al +al +ai +ai +ai +ai +aA +gj +aA +ag +ar +"} +(65,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +aT +aT +aM +ag +ag +ag +ag +ai +ai +al +al +al +al +al +al +al +al +aA +aA +gj +YE +ag +ar +"} +(66,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ag +ag +ag +ag +ai +ai +ai +al +al +al +al +al +al +al +al +al +YE +aA +aA +ag +ar +"} +(67,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +ai +al +al +al +al +al +an +al +al +al +al +aA +aA +YE +aA +ar +"} +(68,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +al +al +al +al +al +al +al +al +al +al +al +al +aA +aA +gj +ar +"} +(69,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +al +al +al +al +aR +at +al +al +ai +ai +ai +ai +al +aR +al +gj +DG +ar +"} +(70,1,1) = {" +aM +aM +vh +vh +ai +ai +ai +ai +ai +ai +ai +ag +ai +ai +ai +ai +ai +al +al +al +al +ai +ai +ag +ai +ai +al +al +gj +gj +ar +"} +(71,1,1) = {" +aM +aM +vh +vh +ai +ai +al +al +al +ai +ai +ai +ag +ag +ai +ai +ai +ai +ai +ai +ai +ai +ag +ag +ai +ai +al +al +YE +aA +ar +"} +(72,1,1) = {" +aM +aM +vh +ai +ai +aa +aa +al +al +al +al +ai +ai +ag +ag +ag +ai +ai +ai +ai +ai +ai +ag +ag +ai +al +al +al +al +ai +ai +"} +(73,1,1) = {" +aM +aM +vh +ai +al +al +am +al +al +aU +al +ai +ai +ag +ag +ag +ai +ai +ai +ai +ai +ai +ai +ag +ai +al +al +al +al +am +ai +"} +(74,1,1) = {" +aM +aM +vh +ai +al +al +al +al +al +al +al +ai +ai +ai +ai +ai +ai +al +al +aa +aa +al +ai +ai +ai +al +al +al +al +al +ai +"} +(75,1,1) = {" +aM +aM +vh +ai +al +al +aY +aR +XX +al +al +al +al +al +ai +ai +al +al +al +aa +al +al +al +al +al +al +al +al +al +ai +ai +"} +(76,1,1) = {" +aM +aM +aM +ai +ai +al +al +al +al +al +am +al +al +al +al +al +aR +al +al +al +al +al +al +al +al +al +al +al +al +ai +ai +"} +(77,1,1) = {" +aM +aM +aM +ag +ai +al +al +am +al +aU +al +al +al +al +al +al +al +al +al +ai +ai +ai +ai +ai +ai +al +al +al +al +ai +ar +"} +(78,1,1) = {" +aM +aM +aM +aM +ai +ai +al +al +al +aa +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ag +ag +ag +ag +ai +al +al +al +ai +ai +ar +"} +(79,1,1) = {" +aM +aM +aM +aM +ai +ai +ai +al +aa +aa +ai +ai +ai +ai +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ai +al +al +al +ai +ai +ar +"} +(80,1,1) = {" +aM +aM +aM +aM +ag +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ag +ag +ag +ag +ag +ai +ai +ai +al +al +al +ai +ag +ar +"} +(81,1,1) = {" +aM +aM +ag +ag +ag +ag +ag +ag +ai +ai +ai +al +al +al +ai +ai +ai +ai +ag +ai +ai +ai +ai +ai +ai +al +aR +al +ai +ag +ar +"} +(82,1,1) = {" +aM +aM +ag +ag +ag +ag +ag +ag +ai +ai +al +al +al +al +al +al +aa +ai +ai +ai +ai +al +al +al +al +al +al +al +ai +ag +ar +"} +(83,1,1) = {" +aM +aM +ag +ag +ag +aA +ag +ai +ai +al +al +aJ +al +al +al +al +aa +al +al +al +al +al +al +al +al +al +ai +al +ai +ag +ar +"} +(84,1,1) = {" +aM +aM +ag +ag +ag +aA +ag +ai +al +al +al +al +al +aR +al +al +al +al +am +al +al +al +al +al +al +al +ai +ai +ai +ag +ar +"} +(85,1,1) = {" +aM +aM +ag +ag +YE +gj +YE +ai +al +al +at +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +ai +vh +vh +vh +ar +"} +(86,1,1) = {" +aM +aM +ag +DG +gj +YO +gj +ai +al +al +al +al +al +al +aQ +al +ai +ai +ai +ai +al +aa +aa +al +al +ai +ai +ai +vh +vh +ar +"} +(87,1,1) = {" +aM +aM +ag +ag +gj +YE +aA +ai +ai +al +al +ap +al +ai +ai +ai +ai +ag +ag +ai +ai +ai +ai +ai +ai +ai +ai +ai +vh +vh +ar +"} +(88,1,1) = {" +aM +aM +aM +ag +ag +ag +aA +ag +ai +al +al +al +al +ai +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(89,1,1) = {" +aM +aM +aM +ag +ag +ag +aA +gj +ai +ai +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(90,1,1) = {" +aM +aM +aM +ag +aM +aM +aM +aA +ag +ai +aa +al +ai +ag +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(91,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +gj +ai +ai +aa +al +al +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(92,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aA +ai +aa +aa +al +al +ai +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(93,1,1) = {" +aM +aM +aM +aM +aM +vh +vh +gj +ai +aa +al +al +al +al +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(94,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +aA +ag +aA +al +al +al +al +ai +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ar +"} +(95,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +aA +aA +aA +al +al +al +al +ai +ai +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +vh +vh +ar +"} +(96,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +YE +gj +al +al +al +al +ai +ai +ai +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +vh +vh +ar +"} +(97,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +gj +DG +al +am +al +al +al +ai +ai +ai +ai +ai +ag +ag +ag +ag +ag +ag +ag +ag +vh +vh +ar +"} +(98,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +gj +gj +aA +al +aR +al +al +ai +ai +ai +ai +ai +ai +ai +ai +ai +ag +ag +ag +vh +vh +ar +"} +(99,1,1) = {" +aM +aM +ag +vh +vh +vh +vh +vh +vh +gj +aA +YE +aA +al +al +al +al +al +al +al +al +aa +ai +ai +ai +ai +ai +ai +vh +vh +ar +"} +(100,1,1) = {" +aM +aM +aM +aM +aM +aM +vh +vh +vh +vh +aA +YE +aA +al +al +al +al +al +al +al +al +aa +aa +aa +ai +ai +ai +ai +vh +vh +ar +"} +(101,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +vh +aA +aA +aA +gj +YE +aA +al +al +al +al +al +al +al +al +ai +ai +ai +ai +vh +vh +ar +"} +(102,1,1) = {" +aM +aM +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +gj +DG +gj +gj +aA +ai +al +al +al +al +al +al +at +ai +ai +vh +vh +vh +ar +"} +(103,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ag +gj +gj +aA +vh +ai +ai +ai +al +al +al +al +al +ai +ai +vh +vh +vh +ar +"} +(104,1,1) = {" +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +al +aR +al +al +ai +vh +vh +vh +ar +"} +(105,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +ai +ai +ai +al +al +al +al +ai +ai +vh +vh +ar +"} +(106,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +ai +al +al +al +al +ai +ai +vh +vh +ar +"} +(107,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +wq +aA +al +nN +al +wq +ai +vh +vh +ar +"} +(108,1,1) = {" +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +wq +wq +nN +al +gj +al +wq +ai +vh +vh +ar +"} +(109,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +ai +aA +al +DG +al +YE +wq +vh +vh +ar +"} +(110,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +wq +nN +Ad +aA +aA +nN +wq +vh +vh +ar +"} +(111,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +wq +mL +BS +nN +aA +YE +aA +vh +vh +ar +"} +(112,1,1) = {" +aM +aM +aM +aM +vh +vh +vh +vh +vh +vh +vh +vh +vh +vh +aM +aM +aM +aM +aM +vh +vh +wq +aA +aH +AD +aH +aA +gj +vh +vh +ar +"} +(113,1,1) = {" +aM +aM +aM +aM +aM +aM +vh +vh +vh +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +vh +aW +pu +AD +iV +aW +gj +vh +vh +ar +"} +(114,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aH +AD +aH +aM +aM +aM +aM +aM +"} +(115,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aZ +AD +aS +aM +aM +aM +aM +aM +"} +(116,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +pj +AD +aH +aM +aM +aM +aM +aM +"} +(117,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aA +nN +nN +YE +gj +gj +gj +vh +wq +Ko +nN +nN +ag +aW +RD +AD +RD +aW +vh +vh +vh +ar +"} +(118,1,1) = {" +aM +aM +vh +vh +vh +wq +wq +DG +aA +YE +nN +nN +ad +aA +gj +DG +mL +yK +nN +nN +aA +aA +cj +aH +AD +aH +aA +vh +vh +vh +ar +"} +(119,1,1) = {" +aM +aM +vh +vh +wq +aA +aA +aA +aA +nN +nN +zx +nN +BS +nN +mL +nN +yK +nN +nN +ad +YE +nN +nN +gj +cj +aA +vh +vh +vh +ar +"} +(120,1,1) = {" +aM +aM +vh +wq +aA +aA +aA +nN +zx +nN +Gj +nN +nN +nN +nN +nN +Zf +yK +BS +nN +nN +LR +nN +aA +DG +wq +wq +vh +vh +vh +ar +"} +(121,1,1) = {" +aM +aM +vh +vh +aA +nN +gj +nN +YE +nN +nN +nN +YE +nN +gj +wq +vh +wq +Ko +aA +aA +aA +wq +wq +wq +wq +vh +vh +vh +vh +ar +"} +(122,1,1) = {" +aM +aM +vh +vh +wq +nN +nN +nN +ad +aA +nN +aA +lW +nN +nN +vh +vh +vh +vh +aA +aA +vh +wq +vh +vh +vh +vh +vh +vh +vh +ar +"} +(123,1,1) = {" +aM +aM +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3segment3_c.dmm b/_maps/away/modular_maps/caves/caves_lvl3segment3_c.dmm new file mode 100644 index 000000000000..7ae1b4a0a029 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3segment3_c.dmm @@ -0,0 +1,4551 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"ag" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"aj" = ( +/turf/open/chasm/lavaland, +/area/template_noop) +"ar" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"aA" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aD" = ( +/obj/modular_map_connector, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aI" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aS" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"bh" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"cs" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"em" = ( +/obj/effect/gibspawner/human/bodypartless, +/turf/open/indestructible/necropolis, +/area/template_noop) +"fl" = ( +/mob/living/simple_animal/hostile/clockwork, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ft" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = null; + id_target = "lvl4spawn"; + name = "lvl4 teleport" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"fA" = ( +/obj/structure/stone_tile/block/burnt{ + dir = 4 + }, +/obj/structure/stone_tile/block/burnt{ + dir = 8 + }, +/obj/structure/mineral_door/iron{ + name = "expansssive waresss emporium" + }, +/turf/open/indestructible/boss, +/area/template_noop) +"gi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/template_noop) +"gj" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"gn" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"gv" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"gw" = ( +/obj/machinery/computer/pod/old/mass_driver_controller{ + id = "caveslvl3garbage"; + name = "Garbage Disposal Control"; + pixel_x = 28 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "caveslvl3garbage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"gE" = ( +/obj/machinery/door/poddoor/preopen{ + id = "caveslvl3garbage"; + name = "Garbage Disposal" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "caveslvl3garbage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"hh" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/turf/open/floor/plating, +/area/template_noop) +"hH" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ic" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"iC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"jf" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/template_noop) +"jC" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ke" = ( +/obj/structure/railing, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"la" = ( +/obj/structure/sign/warning{ + name = "NEEDS AREA" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"lj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"mb" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"mj" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ml" = ( +/turf/closed/wall/rust, +/area/template_noop) +"mr" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"os" = ( +/obj/structure/spawner/lavaland/goliath, +/obj/effect/gibspawner/human/bodypartless, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ow" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/template_noop) +"pk" = ( +/turf/closed/indestructible/riveted/boss, +/area/template_noop) +"pn" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"pt" = ( +/obj/structure/flora/ash/tall_shroom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"pC" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "caveslvl3garbage" + }, +/obj/item/stock_parts/cell/empty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"pF" = ( +/obj/structure/flora/rock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"qu" = ( +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"qA" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/template_noop) +"qZ" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"rx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/plasteel{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"rE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"sA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/turf/open/floor/plating, +/area/template_noop) +"vd" = ( +/turf/closed/wall, +/area/template_noop) +"vx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/template_noop) +"wr" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"xA" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"xX" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"yr" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"yv" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/crate, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ag" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"BN" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Fh" = ( +/turf/closed/indestructible/necropolis, +/area/template_noop) +"FL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Gx" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"GZ" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/rock, +/area/template_noop) +"Hq" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"HJ" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"HK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/template_noop) +"Iz" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Kd" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/obj/structure/railing, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"Lf" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"LQ" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/clockwork/ocular_warden, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Nd" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 5 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Nj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "caveslvl3garbage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Rl" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"RG" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Sd" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/template_noop) +"Si" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating, +/area/template_noop) +"Su" = ( +/obj/structure/railing/corner, +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"SD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/template_noop) +"Tr" = ( +/mob/living/simple_animal/hostile/asteroid/brimdemon, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Vt" = ( +/obj/machinery/door/poddoor{ + id = "caveslvl3garbage"; + name = "Garbage Disposal" + }, +/turf/open/floor/plating, +/area/template_noop) +"VK" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"VV" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Wa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"WJ" = ( +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Yu" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"YH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/template_noop) +"YT" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Zl" = ( +/obj/structure/flora/rock/pile, +/obj/effect/mine/explosive{ + range_heavy = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) + +(1,1,1) = {" +GZ +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +"} +(2,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +qZ +qZ +aS +qZ +Sd +Sd +Sd +Sd +Sd +Sd +ar +"} +(3,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +qZ +qZ +qZ +qZ +aA +aA +aA +aA +aA +Sd +aA +aA +aA +aA +qZ +qZ +qZ +qZ +RG +aA +aA +Sd +Sd +Sd +ar +"} +(4,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +qZ +aS +aA +aA +aA +qZ +aA +aA +aA +aA +aA +aA +aA +aA +RG +qZ +qZ +aA +aA +aA +aA +Sd +Sd +Sd +ar +"} +(5,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +aA +aA +aA +aA +Sd +Sd +Sd +Sd +Sd +aA +aA +aA +Sd +Sd +Sd +Sd +aA +aA +aA +aA +aA +Sd +Sd +Sd +ar +"} +(6,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +aA +aA +aA +aA +qZ +qZ +Sd +Sd +Sd +aA +aA +RG +Sd +Sd +Sd +ar +"} +(7,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +qZ +aA +aA +aA +aA +aA +aA +qZ +qZ +aS +qZ +Sd +Sd +aA +qZ +RG +RG +Sd +Sd +ar +"} +(8,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +aA +aA +aA +aA +aA +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +aS +qZ +aA +Sd +Sd +ar +"} +(9,1,1) = {" +aA +aA +aA +qZ +qZ +Sd +Sd +Sd +Sd +aA +aA +aA +aA +aA +qZ +qZ +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +qZ +qZ +qZ +Sd +Sd +ar +"} +(10,1,1) = {" +aA +aA +aA +qZ +aS +qZ +qZ +aA +aA +aA +aA +qZ +vd +vd +ml +vd +ml +ml +aa +aa +Sd +Sd +Sd +Sd +Sd +Sd +qZ +aA +Sd +Sd +ar +"} +(11,1,1) = {" +aD +aA +aA +qZ +qZ +qZ +aA +aA +aA +aA +ml +ml +ml +lj +rx +vx +rE +ml +vd +vd +ml +aa +Sd +Sd +Sd +Sd +Sd +aA +Sd +Sd +ar +"} +(12,1,1) = {" +aA +aA +aA +aA +aA +aA +aA +aA +aA +aA +Yu +rE +gn +lj +rE +rE +wr +pn +sA +rE +ml +vd +vd +Sd +Sd +Sd +Sd +aA +Sd +Sd +ar +"} +(13,1,1) = {" +aA +aA +aA +aA +aA +aA +aA +aA +aA +aA +ml +SD +vd +gj +Lf +wr +wr +wr +wr +wr +HK +qA +ml +Sd +Sd +Sd +Sd +aA +Sd +Sd +ar +"} +(14,1,1) = {" +aA +aA +qZ +qZ +aA +aA +aA +aA +aA +aA +ml +ml +vd +rE +Si +rE +wr +wr +aa +aa +ml +ml +ml +Sd +Sd +Sd +Sd +Sd +Sd +Sd +ar +"} +(15,1,1) = {" +ar +Sd +Sd +Sd +Sd +qZ +aA +aA +aA +aA +la +aA +hh +lj +lj +rE +rE +wr +aa +wr +pn +aa +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +ar +"} +(16,1,1) = {" +ar +Sd +Sd +Sd +Sd +VK +qZ +rE +aA +aA +Gx +Gx +sA +Si +lj +gw +Nj +rE +aa +aa +aa +aa +Sd +Sd +Sd +aa +aa +aa +Sd +Sd +ar +"} +(17,1,1) = {" +ar +Sd +Sd +Sd +vd +FL +qZ +rE +aA +aA +rE +Su +vd +YH +YH +vd +gE +pn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +ar +"} +(18,1,1) = {" +ar +Sd +Sd +Sd +Hq +aA +Wa +gi +gi +yv +iC +YT +wr +wr +wr +vd +pC +vd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +ar +"} +(19,1,1) = {" +ar +Sd +Sd +Sd +mr +rE +Iz +aa +aa +aa +aa +aa +aa +wr +aa +vd +Vt +vd +aa +aa +aa +aa +Sd +Sd +aa +aa +aa +aa +aa +Sd +ar +"} +(20,1,1) = {" +ar +Sd +Sd +aA +aA +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +qZ +qZ +Sd +Sd +Sd +Sd +aa +aa +Sd +ar +"} +(21,1,1) = {" +ar +Sd +Sd +aA +Ag +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +qZ +aS +qZ +aA +aA +aA +Sd +aa +aa +Sd +ar +"} +(22,1,1) = {" +ar +Sd +Sd +aA +aA +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +qZ +Sd +Sd +qZ +aA +aA +Sd +aa +aa +Sd +ar +"} +(23,1,1) = {" +ar +Sd +aA +Ag +aA +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Sd +Sd +Sd +Sd +aa +aA +aA +Sd +aa +aa +Sd +ar +"} +(24,1,1) = {" +ar +Sd +aA +aA +Kd +wr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Sd +aa +aa +Sd +ar +"} +(25,1,1) = {" +ar +Sd +Sd +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Sd +aa +aa +Sd +ar +"} +(26,1,1) = {" +ar +Sd +Sd +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 +Sd +ar +"} +(27,1,1) = {" +ar +Sd +Sd +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 +Sd +ar +"} +(28,1,1) = {" +ar +Sd +Sd +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 +Sd +ar +"} +(29,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +ar +"} +(30,1,1) = {" +ar +Sd +Sd +Sd +aa +wr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +ar +"} +(31,1,1) = {" +ar +Sd +Sd +Sd +Kd +wr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +ar +"} +(32,1,1) = {" +ar +Sd +Sd +Sd +Kd +rE +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +aA +jC +aA +qZ +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +ar +"} +(33,1,1) = {" +ar +Sd +Sd +Sd +ke +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +Sd +jC +jC +aA +aA +qZ +qZ +aS +qZ +qZ +Sd +Sd +Sd +Sd +Sd +ar +"} +(34,1,1) = {" +ar +Sd +Sd +Sd +ke +rE +Iz +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +aA +aa +aa +qZ +qZ +qZ +aA +Sd +Sd +Sd +Sd +Sd +ar +"} +(35,1,1) = {" +ar +Sd +Sd +Sd +Hq +aA +Hq +aA +xX +aa +xX +xX +Hq +aa +aa +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +aA +aA +aA +Sd +Sd +Sd +ar +"} +(36,1,1) = {" +ar +Sd +Sd +Sd +mr +aA +aA +rE +aa +aa +rE +rE +aA +aA +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aA +aA +aA +Sd +Sd +Sd +ar +"} +(37,1,1) = {" +ar +Sd +Sd +Sd +aA +aa +Hq +gv +aa +gv +gv +gv +Hq +aA +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +aA +aA +Sd +Sd +Sd +ar +"} +(38,1,1) = {" +ar +Sd +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aA +qZ +aA +aA +aA +aa +aa +aa +aA +aA +Sd +Sd +Sd +ar +"} +(39,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aa +aA +aA +qZ +mr +aa +aa +aa +aA +qZ +qZ +aa +aa +aa +aa +Sd +aA +aA +Sd +Sd +Sd +ar +"} +(40,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +Sd +Sd +aA +qZ +Sd +Sd +ar +"} +(41,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aA +Ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +aA +aA +aj +Sd +ar +"} +(42,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aA +aA +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +qZ +aA +aj +Sd +ar +"} +(43,1,1) = {" +ar +Sd +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +Sd +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +qZ +aA +aj +Sd +ar +"} +(44,1,1) = {" +ar +Sd +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +Sd +aS +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aa +Sd +aS +qZ +aj +aj +Sd +ar +"} +(45,1,1) = {" +ar +Sd +Sd +aA +Sd +Sd +aa +aa +aa +aa +aa +Ag +Sd +Sd +qZ +Ag +aa +aa +aa +aa +aa +aa +aa +aa +qZ +qZ +qZ +aj +aj +Sd +ar +"} +(46,1,1) = {" +ar +Sd +Sd +aA +Sd +Sd +aa +aa +aa +aA +aA +aA +Sd +Sd +Sd +Ag +aA +aa +aa +aa +aa +aa +aa +aa +aA +qZ +aA +aj +aj +aj +ar +"} +(47,1,1) = {" +ar +Sd +aA +qZ +aA +Sd +Sd +aa +aa +aA +aA +qZ +Sd +Sd +Sd +aA +aA +Hq +xX +aa +aa +aa +xX +Hq +aA +aA +aj +aj +aj +aj +ar +"} +(48,1,1) = {" +ar +Sd +aA +qZ +qZ +Sd +Sd +aa +aa +aa +aa +qZ +aS +Sd +Sd +Sd +aA +aA +rE +aa +aa +aa +rE +aA +Ag +aA +aj +aj +aj +aj +ar +"} +(49,1,1) = {" +ar +Sd +qZ +aS +qZ +Sd +Sd +Sd +Sd +aa +aa +qZ +qZ +Sd +Sd +aA +mr +Hq +gv +gv +aa +gv +gv +Hq +aA +aA +aj +aj +aj +aj +ar +"} +(50,1,1) = {" +ar +aA +qZ +qZ +qZ +Sd +Sd +aa +aa +aa +aa +aa +qZ +aA +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aA +aA +Ag +aj +aj +aj +aj +ar +"} +(51,1,1) = {" +ar +aA +aA +BN +aA +Sd +aa +aa +aa +aa +aa +aa +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +qZ +aA +aA +aA +aj +aj +Sd +ar +"} +(52,1,1) = {" +ar +aA +aA +aA +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +qZ +mr +Ag +aA +aj +aj +Sd +ar +"} +(53,1,1) = {" +ar +BN +aA +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +qZ +aA +Sd +Sd +ar +"} +(54,1,1) = {" +ar +aA +aA +qZ +Sd +aa +aa +aa +aa +aa +aa +aa +aa +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ag +aA +qZ +aA +Sd +Sd +ar +"} +(55,1,1) = {" +ar +aA +aA +aA +Sd +aa +aa +aa +aa +aA +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +qZ +aS +qZ +Sd +Sd +ar +"} +(56,1,1) = {" +ar +qZ +aA +aA +Sd +aa +aa +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +qZ +qZ +qZ +Sd +Sd +ar +"} +(57,1,1) = {" +ar +qZ +BN +aA +aA +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +qZ +aA +aA +Sd +Sd +ar +"} +(58,1,1) = {" +ar +qZ +qZ +aA +aA +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +aA +aA +aa +aa +aa +aa +qZ +aA +aA +Sd +Sd +ar +"} +(59,1,1) = {" +ar +aS +qZ +BN +aA +aA +aA +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +aA +aA +aa +qZ +aA +aa +aa +aa +aa +aA +aA +VV +Sd +Sd +ar +"} +(60,1,1) = {" +ar +qZ +qZ +BN +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +qZ +Sd +Sd +ar +"} +(61,1,1) = {" +ar +qZ +BN +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +qZ +Sd +Sd +ar +"} +(62,1,1) = {" +ar +Sd +aA +qZ +aS +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +aA +aA +qZ +Sd +ar +"} +(63,1,1) = {" +ar +Sd +aA +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +VV +qZ +aS +Sd +ar +"} +(64,1,1) = {" +ar +Sd +Sd +aA +qZ +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +aA +qZ +Sd +ar +"} +(65,1,1) = {" +ar +Sd +Sd +aA +aA +Sd +Sd +Sd +Sd +Sd +Sd +aa +aa +aA +aA +qZ +aA +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +aA +qZ +Sd +ar +"} +(66,1,1) = {" +ar +Sd +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aA +Sd +Sd +aA +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +aA +Sd +ar +"} +(67,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +qZ +aA +aA +Sd +Sd +aA +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +aA +aA +Sd +ar +"} +(68,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aA +aa +aa +aA +qZ +aA +Sd +Sd +Sd +aA +aA +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +aA +aA +ar +"} +(69,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aA +aA +aa +qZ +aS +qZ +aA +Sd +aA +aA +aA +aA +aA +aa +aa +aa +aa +Sd +Sd +Sd +Sd +aA +aA +ar +"} +(70,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aA +aa +aa +qZ +qZ +aA +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Ag +aA +ar +"} +(71,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Sd +Sd +Sd +aA +aA +ar +"} +(72,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +Sd +Sd +Sd +aA +aA +ar +"} +(73,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +Sd +ag +aA +aA +aA +ar +"} +(74,1,1) = {" +ar +Sd +Sd +Sd +aa +aa +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aa +aa +aA +aA +Sd +ag +aA +aA +aA +ar +"} +(75,1,1) = {" +ar +Sd +Sd +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +aa +aA +aA +aA +aA +aa +aa +aa +aa +aa +aA +aA +Sd +aA +qZ +Ag +aA +ar +"} +(76,1,1) = {" +ar +Sd +Sd +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +aa +aa +aA +qZ +aA +aA +aa +aa +aa +aa +aA +Fh +Fh +aS +qZ +aA +Sd +ar +"} +(77,1,1) = {" +ar +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aA +ag +Rl +qZ +aA +aA +Sd +ar +"} +(78,1,1) = {" +ar +Sd +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aa +aa +aA +Rl +Rl +Rl +Fh +Sd +Sd +ar +"} +(79,1,1) = {" +ar +Sd +aA +aa +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +Rl +Rl +Rl +Fh +Fh +Sd +ar +"} +(80,1,1) = {" +ar +Sd +aA +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Rl +Rl +Rl +Rl +em +Fh +Sd +ar +"} +(81,1,1) = {" +ar +Sd +aA +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Rl +Rl +Rl +jf +Rl +Fh +Fh +Fh +"} +(82,1,1) = {" +ar +Sd +aA +aa +aa +aa +aa +aa +aA +aA +aA +Gx +aa +aa +aA +aa +aa +aA +qZ +aA +aA +aA +aA +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Fh +"} +(83,1,1) = {" +ar +Sd +aA +aa +aa +aa +aa +aA +aA +aA +Gx +Gx +Gx +Gx +aA +aA +aA +aA +aA +aA +aA +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Rl +Fh +Fh +"} +(84,1,1) = {" +ar +Sd +aA +aA +aa +aa +aA +aA +qZ +qZ +qZ +Gx +aA +aA +aA +aa +aa +aa +aa +aA +Fh +Rl +Rl +Rl +Rl +Tr +Rl +Rl +Rl +Rl +Fh +"} +(85,1,1) = {" +ar +Sd +aA +aA +aa +aa +aa +aA +qZ +aS +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +Fh +Fh +Fh +jf +Rl +em +Rl +Fh +Fh +Fh +Fh +"} +(86,1,1) = {" +ar +Sd +aA +aA +aa +aa +aA +aA +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Rl +Rl +Fh +Rl +Fh +Sd +Sd +ar +"} +(87,1,1) = {" +ar +Sd +aA +aA +aa +aA +aA +aA +aA +qZ +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +Rl +Rl +Fh +Rl +Fh +Sd +Sd +ar +"} +(88,1,1) = {" +ar +Sd +aA +aA +aA +aA +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +Fh +Rl +Fh +Rl +Fh +Sd +Sd +ar +"} +(89,1,1) = {" +ar +Sd +aA +aA +qZ +qZ +aA +aA +aA +aa +aa +aa +aa +aa +aA +qZ +qZ +aA +aa +aa +aa +aa +aa +Fh +Fh +Fh +Rl +Fh +Sd +Sd +ar +"} +(90,1,1) = {" +ar +Sd +Sd +qZ +aS +qZ +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aa +aA +aA +aa +aa +aa +aa +aa +Sd +Sd +Fh +Rl +Fh +Fh +Fh +ar +"} +(91,1,1) = {" +ar +Sd +Sd +aA +qZ +qZ +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Fh +Rl +Rl +Rl +Fh +ar +"} +(92,1,1) = {" +ar +Sd +Sd +aA +aA +qZ +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Fh +Rl +Tr +Rl +Fh +ar +"} +(93,1,1) = {" +ar +Sd +Sd +aA +aA +aA +aA +aA +aA +aa +aa +aa +Sd +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Fh +Fh +Rl +Rl +Fh +ar +"} +(94,1,1) = {" +ar +Sd +Sd +aA +aA +aA +aA +aA +aA +aa +aa +aa +Sd +aA +Sd +aa +aa +aa +aa +aa +Sd +Sd +Sd +pk +pk +pk +Fh +Rl +Rl +Fh +Fh +"} +(95,1,1) = {" +ar +Sd +Sd +Sd +aA +aA +aA +aA +aA +aa +Sd +Sd +Sd +Nd +Sd +aa +aa +Sd +Sd +Sd +Sd +Sd +Sd +pk +ow +fA +Rl +Rl +em +Rl +Fh +"} +(96,1,1) = {" +ar +Sd +Sd +Sd +aA +aA +aA +aA +aa +aa +aa +aa +Sd +Sd +Sd +aa +aa +aa +aa +aa +Sd +Sd +Sd +pk +pk +pk +Fh +Rl +jf +Rl +Fh +"} +(97,1,1) = {" +ar +Sd +Sd +Sd +aA +aA +aA +aa +aa +aa +aa +aa +aa +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Fh +Fh +Rl +Rl +Fh +"} +(98,1,1) = {" +ar +Sd +Sd +Sd +ag +aA +aA +aA +aa +aa +aa +aa +aa +Sd +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Fh +Rl +Rl +Fh +"} +(99,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Fh +Fh +Rl +Rl +Fh +"} +(100,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +yr +qZ +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aa +aa +Fh +Rl +Rl +Rl +Fh +"} +(101,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +aS +yr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Fh +Rl +Rl +Rl +Fh +"} +(102,1,1) = {" +ar +Sd +Sd +Sd +Sd +HJ +qZ +yr +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Fh +Rl +Rl +Rl +Fh +"} +(103,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +qZ +qZ +aa +aa +aa +aa +aa +aA +aA +aA +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Sd +Fh +Rl +Tr +Rl +Fh +"} +(104,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +qZ +aA +aA +aa +aa +aa +aA +mK +aA +aA +qZ +qZ +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +Fh +Rl +Rl +Fh +Fh +"} +(105,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +aA +mK +aA +aA +aa +aa +aA +aA +qZ +qZ +aS +qZ +aa +aa +aa +aa +aa +aa +aa +Fh +Rl +Rl +Fh +ar +"} +(106,1,1) = {" +ar +Sd +Sd +ag +Sd +Sd +Sd +HJ +fl +mK +mK +mK +aA +aA +fl +aA +qZ +qZ +qZ +aa +aa +aa +aa +aa +aa +aa +Fh +os +Rl +Fh +ar +"} +(107,1,1) = {" +ar +Sd +Sd +aA +HJ +Sd +Sd +HJ +mK +mK +mK +Sd +Sd +aA +pt +VV +Ag +aA +aa +aa +aa +aa +aa +aa +Sd +Sd +Fh +Fh +Rl +Fh +ar +"} +(108,1,1) = {" +ar +Sd +HJ +qZ +Sd +Sd +Sd +Sd +HJ +Sd +aa +aa +aa +VV +mK +mK +aA +aA +aa +aa +aa +aa +aa +aa +Sd +Sd +Sd +Fh +Rl +Fh +ar +"} +(109,1,1) = {" +ar +Sd +aS +qZ +Sd +Sd +Sd +aa +aa +aa +aa +aa +aa +aA +qZ +mK +aA +aa +aa +aa +aa +aa +Sd +Sd +Sd +Sd +Sd +Fh +Rl +Fh +ar +"} +(110,1,1) = {" +ar +Sd +qZ +qZ +aA +HJ +Sd +aa +aa +aa +aa +aa +aa +aa +aA +cs +Ag +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Fh +aA +Fh +ar +"} +(111,1,1) = {" +ar +Sd +aA +yr +aA +HJ +Sd +Sd +aa +aa +aa +aa +aa +qu +aA +mK +aA +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sd +Fh +aA +Fh +ar +"} +(112,1,1) = {" +ar +Sd +Sd +aA +aA +HJ +Sd +Sd +Sd +Sd +Sd +Sd +aa +aA +aA +WJ +aa +aa +aa +aa +Sd +aa +aa +aa +Sd +Sd +Sd +Sd +mK +Fh +ar +"} +(113,1,1) = {" +ar +Sd +Sd +aA +aA +mK +Sd +Sd +aa +aa +aa +aa +aa +qZ +mK +mK +aa +aa +aa +aa +Sd +aa +aa +aa +Sd +Sd +Sd +HJ +aA +Fh +ar +"} +(114,1,1) = {" +ar +Sd +Sd +aA +mK +mK +mK +Sd +Sd +Sd +Sd +LQ +aa +aa +mK +mK +aa +LQ +aa +aa +Sd +aa +aa +aa +Sd +Sd +HJ +aA +WJ +Sd +ar +"} +(115,1,1) = {" +ar +Sd +Sd +HJ +aA +mK +mK +mK +mK +HJ +HJ +Sd +HJ +mb +mb +mb +HJ +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +HJ +aA +BN +Sd +ar +"} +(116,1,1) = {" +ar +Sd +Sd +Sd +aA +aA +yr +qZ +mK +aA +aA +mK +mK +mK +ic +mK +aA +aA +HJ +HJ +HJ +Sd +Sd +Sd +Sd +aA +BN +aA +yr +Sd +ar +"} +(117,1,1) = {" +ar +Sd +Sd +Sd +Sd +HJ +qZ +aS +yr +bh +mK +mK +mK +hH +mK +bh +mK +mK +mK +aA +HJ +HJ +HJ +HJ +LQ +aA +aA +Zl +yr +Sd +ar +"} +(118,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +aA +qZ +qZ +yr +mK +mK +mK +mK +mK +mK +mK +mK +mK +mK +mK +mK +mK +mb +aA +mK +yr +pF +qZ +HJ +ar +"} +(119,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +HJ +HJ +aA +mK +mK +mK +ft +mK +xA +mK +mK +mK +mK +mK +mK +mj +mb +mK +mK +qZ +qZ +qZ +HJ +ar +"} +(120,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +HJ +HJ +aA +aA +xA +mK +mK +mK +mK +mK +mK +HJ +HJ +HJ +mK +mb +BN +aA +VV +qZ +Sd +Sd +ar +"} +(121,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +aA +aI +aA +mK +aA +aA +Sd +HJ +HJ +HJ +Sd +Sd +HJ +HJ +LQ +aA +BN +HJ +Sd +Sd +ar +"} +(122,1,1) = {" +ar +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +HJ +HJ +HJ +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +Sd +ar +"} +(123,1,1) = {" +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3tear_a.dmm b/_maps/away/modular_maps/caves/caves_lvl3tear_a.dmm new file mode 100644 index 000000000000..f88c126c6c2a --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3tear_a.dmm @@ -0,0 +1,1567 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"c" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"d" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"f" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/structure/fans/tiny/invisible, +/turf/template_noop, +/area/template_noop) +"i" = ( +/obj/effect/bump_teleporter{ + id = "riftenter"; + name = "rift start" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"j" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/mopbucket, +/obj/item/mop/advanced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/indestructible, +/area/template_noop) +"k" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"m" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice{ + obj_flags = 4612 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/plating/asteroid/airless, +/area/template_noop) +"o" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/template_noop) +"p" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"q" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"r" = ( +/turf/open/floor/plating/asteroid, +/area/template_noop) +"s" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"t" = ( +/obj/structure/lattice{ + obj_flags = 4612 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"u" = ( +/turf/open/indestructible, +/area/template_noop) +"v" = ( +/turf/open/floor/plating/asteroid/airless, +/area/template_noop) +"w" = ( +/turf/open/space/basic, +/area/template_noop) +"y" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"A" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"B" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth, +/area/template_noop) +"C" = ( +/obj/structure/fluff{ + desc = "A massive beast that uses long tentacles to ensnare its prey, threatening them is not advised under any conditions. This one seems frozen in place, eerily still."; + icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; + icon_state = "Goliath"; + name = "goliath" + }, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"D" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"E" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/indestructible, +/area/template_noop) +"F" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"G" = ( +/turf/closed/mineral/asteroid, +/area/template_noop) +"H" = ( +/turf/open/lava/smooth, +/area/template_noop) +"I" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "riftexit"; + name = "rift end" + }, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"J" = ( +/turf/template_noop, +/area/template_noop) +"M" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"N" = ( +/obj/structure/railing, +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth, +/area/template_noop) +"O" = ( +/turf/open/space, +/area/template_noop) +"P" = ( +/turf/closed/indestructible/fakeglass, +/area/template_noop) +"Q" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25; + name = "architect"; + desc = "I don't think you're supposed to be here." + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"R" = ( +/obj/structure/lattice{ + obj_flags = 4612 + }, +/turf/open/space/basic, +/area/template_noop) +"S" = ( +/turf/closed/indestructible/fakedoor{ + name = "Secure Access" + }, +/area/template_noop) +"T" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/indestructible, +/area/template_noop) +"U" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"V" = ( +/obj/structure/railing, +/obj/structure/lattice{ + obj_flags = 4612 + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"W" = ( +/turf/closed/indestructible/reinforced, +/area/template_noop) +"X" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"Y" = ( +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25; + name = "architect"; + desc = "I don't think you're supposed to be here." + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Z" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) + +(1,1,1) = {" +J +J +J +J +J +J +J +J +J +J +X +J +J +J +J +J +J +J +J +J +J +"} +(2,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(3,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(4,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(5,1,1) = {" +J +J +J +J +J +J +J +h +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(6,1,1) = {" +J +J +J +J +J +h +h +k +h +J +J +J +J +J +J +J +J +J +J +J +J +"} +(7,1,1) = {" +J +J +J +h +h +k +k +k +k +h +J +f +f +f +J +J +J +J +J +J +J +"} +(8,1,1) = {" +J +J +h +k +k +k +F +k +h +J +f +c +k +k +f +J +J +J +J +J +J +"} +(9,1,1) = {" +J +J +J +h +k +F +k +k +h +f +c +c +k +k +f +J +J +J +J +J +J +"} +(10,1,1) = {" +J +J +J +J +h +h +y +y +h +f +k +i +k +k +f +J +J +J +J +J +J +"} +(11,1,1) = {" +J +J +J +J +J +J +h +h +J +f +k +k +k +f +J +J +J +h +J +J +J +"} +(12,1,1) = {" +J +J +J +J +J +J +J +J +J +f +c +k +k +f +J +J +h +k +h +J +J +"} +(13,1,1) = {" +J +J +J +J +J +J +J +J +J +f +M +k +M +f +J +h +k +Z +c +h +J +"} +(14,1,1) = {" +J +J +J +J +J +J +J +J +f +f +N +D +B +f +f +h +p +c +c +h +J +"} +(15,1,1) = {" +J +J +h +h +h +h +J +f +H +H +N +D +B +H +H +f +h +c +h +J +J +"} +(16,1,1) = {" +J +h +H +H +H +H +h +J +f +H +N +D +B +f +f +J +J +h +J +J +J +"} +(17,1,1) = {" +J +J +h +H +H +H +H +h +f +f +N +D +B +H +H +f +J +J +J +J +J +"} +(18,1,1) = {" +J +J +J +h +h +h +h +f +H +H +N +D +B +H +H +f +J +h +h +J +J +"} +(19,1,1) = {" +J +J +J +J +J +J +f +H +H +H +N +D +B +f +f +J +h +H +H +h +J +"} +(20,1,1) = {" +J +J +J +J +J +J +J +f +f +f +M +k +M +f +J +J +h +H +H +h +J +"} +(21,1,1) = {" +J +J +J +J +J +J +J +f +f +f +k +k +k +f +J +J +J +h +h +J +J +"} +(22,1,1) = {" +J +J +J +J +J +J +f +k +c +c +k +k +k +f +J +J +J +J +J +J +J +"} +(23,1,1) = {" +J +J +J +J +h +J +f +c +c +c +k +A +k +Z +f +J +J +J +h +h +J +"} +(24,1,1) = {" +J +J +J +h +G +h +f +c +c +c +Q +b +Y +s +f +h +h +h +s +Z +h +"} +(25,1,1) = {" +J +J +h +G +G +h +f +c +c +s +k +k +k +Z +f +k +k +h +h +h +J +"} +(26,1,1) = {" +J +J +h +G +v +O +f +f +f +Z +k +Y +k +f +J +h +h +J +J +J +J +"} +(27,1,1) = {" +J +J +h +G +n +v +O +h +J +f +k +k +f +J +J +J +J +J +J +J +J +"} +(28,1,1) = {" +J +J +h +G +v +O +h +J +J +f +o +k +o +h +J +J +J +J +J +J +J +"} +(29,1,1) = {" +J +J +h +v +v +O +h +J +J +J +V +D +m +J +J +J +J +J +J +J +J +"} +(30,1,1) = {" +J +J +J +h +h +h +J +J +J +J +V +D +f +J +J +J +h +J +J +J +J +"} +(31,1,1) = {" +J +J +J +J +J +J +J +f +f +f +t +D +f +h +J +h +H +h +J +J +J +"} +(32,1,1) = {" +J +J +J +J +J +J +f +w +R +c +k +k +M +W +h +h +H +H +h +J +J +"} +(33,1,1) = {" +J +J +J +J +J +f +w +w +w +W +E +k +T +f +J +h +H +k +c +h +J +"} +(34,1,1) = {" +J +J +J +J +J +f +w +R +R +P +E +k +f +J +J +h +k +k +c +h +J +"} +(35,1,1) = {" +J +J +J +J +J +f +w +w +w +P +U +u +f +J +J +h +k +c +c +h +J +"} +(36,1,1) = {" +J +J +J +J +f +w +w +w +R +P +U +u +f +J +J +J +h +c +c +h +J +"} +(37,1,1) = {" +J +J +J +J +f +W +W +W +W +W +j +d +T +f +J +J +h +c +h +J +J +"} +(38,1,1) = {" +J +J +J +J +J +h +u +u +u +S +d +d +T +f +J +J +J +h +J +J +J +"} +(39,1,1) = {" +J +J +J +J +J +J +h +W +W +W +U +u +f +W +J +J +J +J +J +J +J +"} +(40,1,1) = {" +J +J +J +J +J +J +J +h +h +W +E +u +f +W +J +J +J +J +J +J +J +"} +(41,1,1) = {" +J +J +J +J +J +J +J +J +J +f +f +u +f +J +J +J +J +J +J +J +J +"} +(42,1,1) = {" +J +J +J +J +J +J +J +J +J +W +f +r +f +J +J +J +J +J +J +J +J +"} +(43,1,1) = {" +J +J +J +J +J +h +h +J +J +J +f +r +f +W +J +J +J +J +J +J +J +"} +(44,1,1) = {" +J +J +J +J +h +r +r +h +J +f +r +r +f +W +J +J +h +J +J +J +J +"} +(45,1,1) = {" +J +J +J +h +r +C +r +h +f +r +r +r +r +f +J +h +r +h +J +J +J +"} +(46,1,1) = {" +J +J +J +J +h +h +r +h +f +r +r +r +r +f +h +q +r +h +J +J +J +"} +(47,1,1) = {" +J +J +J +J +J +J +h +f +G +r +r +r +G +r +f +r +r +r +h +J +J +"} +(48,1,1) = {" +J +J +J +J +J +J +J +f +r +r +r +I +r +G +f +r +r +h +J +J +J +"} +(49,1,1) = {" +J +J +J +J +J +J +J +f +G +G +r +r +r +G +f +r +h +J +J +J +J +"} +(50,1,1) = {" +J +J +J +J +J +J +J +f +G +G +r +r +G +G +f +h +J +J +J +J +J +"} +(51,1,1) = {" +J +J +J +J +J +J +J +J +f +G +G +G +G +f +J +J +J +J +J +J +J +"} +(52,1,1) = {" +J +J +J +J +J +J +J +J +J +f +f +f +f +J +J +J +J +J +J +J +J +"} +(53,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(54,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(55,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} +(56,1,1) = {" +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3tear_b.dmm b/_maps/away/modular_maps/caves/caves_lvl3tear_b.dmm new file mode 100644 index 000000000000..b38f55828e61 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3tear_b.dmm @@ -0,0 +1,1671 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/indestructible, +/area/template_noop) +"ac" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/indestructible, +/area/template_noop) +"ad" = ( +/turf/closed/indestructible/reinforced, +/area/template_noop) +"ae" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"af" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"ag" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/indestructible, +/area/template_noop) +"ah" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"ai" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"ak" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/indestructible, +/area/template_noop) +"al" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"am" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/template_noop) +"an" = ( +/turf/closed/mineral/asteroid, +/area/template_noop) +"ap" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/indestructible, +/area/template_noop) +"aq" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/indestructible, +/area/template_noop) +"as" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/indestructible, +/area/template_noop) +"at" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/indestructible, +/area/template_noop) +"au" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/indestructible, +/area/template_noop) +"av" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible{ + icon_state = "plating"; + name = "plating" + }, +/area/template_noop) +"aw" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"az" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"aA" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/indestructible, +/area/template_noop) +"aB" = ( +/obj/machinery/door/firedoor, +/turf/open/indestructible, +/area/template_noop) +"aD" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"aE" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/item/stack/sheet/iron, +/turf/open/indestructible, +/area/template_noop) +"aH" = ( +/obj/machinery/door/firedoor/closed, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"aI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"aJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"aL" = ( +/turf/open/floor/plating/asteroid, +/area/template_noop) +"aM" = ( +/turf/template_noop, +/area/template_noop) +"aN" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/template_noop) +"aO" = ( +/turf/open/indestructible, +/area/template_noop) +"aP" = ( +/turf/closed/indestructible/fakedoor{ + name = "Secure Maintenance Access" + }, +/area/template_noop) +"aQ" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/indestructible, +/area/template_noop) +"aR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/indestructible, +/area/template_noop) +"aS" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/template_noop) +"aU" = ( +/turf/open/space/basic, +/area/template_noop) +"aV" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/template_noop) +"aW" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/turf/open/indestructible, +/area/template_noop) +"aX" = ( +/turf/closed/indestructible/fakeglass, +/area/template_noop) +"aY" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/indestructible{ + icon_state = "plating"; + name = "plating" + }, +/area/template_noop) +"er" = ( +/obj/structure/lattice, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/open/space/basic, +/area/template_noop) +"gK" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"in" = ( +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/open/space/basic, +/area/template_noop) +"jX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/obj/item/ammo_casing/c45/ap, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plating/airless, +/area/template_noop) +"kC" = ( +/obj/item/shovel, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"kL" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure"; + dir = 4 + }, +/obj/machinery/light/red/directional, +/turf/open/indestructible, +/area/template_noop) +"ll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/assistant, +/obj/item/ammo_casing/c45/ap, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/template_noop) +"lL" = ( +/obj/structure/flora/tree/pine/xmas/presents, +/obj/item/a_gift, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"mJ" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"oT" = ( +/obj/item/stack/ore/glass, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"tv" = ( +/obj/item/a_gift, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"uU" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"xa" = ( +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"yw" = ( +/obj/item/flashlight/flare/torch, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"BG" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"DG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/c45/ap, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/template_noop) +"Fi" = ( +/obj/structure/fans/tiny/invisible, +/turf/template_noop, +/area/template_noop) +"Fx" = ( +/turf/closed/mineral/snowmountain, +/area/template_noop) +"Lg" = ( +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25; + name = "architect"; + desc = "I don't think you're supposed to be here." + }, +/turf/open/floor/plating/asteroid, +/area/template_noop) +"Oe" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"Oo" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/light/red/directional, +/turf/open/indestructible, +/area/template_noop) +"QS" = ( +/obj/item/ammo_casing/c45/ap, +/turf/open/space/basic, +/area/template_noop) +"RY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/bump_teleporter{ + id = "riftenter"; + name = "rift start" + }, +/turf/open/indestructible, +/area/template_noop) +"VH" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) +"WM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/template_noop) +"XM" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "riftexit"; + name = "rift end" + }, +/turf/open/floor/plating/asteroid/snow, +/area/template_noop) + +(1,1,1) = {" +aM +Fi +aU +Fi +Fi +aM +aM +aM +aM +aM +aw +aM +Fi +aM +aM +aM +aM +aM +aM +aM +aM +"} +(2,1,1) = {" +Fi +aU +aU +aU +aU +Fi +aM +aM +aM +aM +Fi +Fi +kL +ad +aM +aM +aM +aM +aM +aM +aM +"} +(3,1,1) = {" +aU +aU +aU +aU +aU +aU +Fi +aM +aM +ad +aE +Fi +Fi +aM +aM +aM +aM +aM +aM +aM +aM +"} +(4,1,1) = {" +Fi +aU +aU +aU +aU +Fi +aM +aM +aM +aM +Fi +Oe +aM +ad +aM +aM +aM +aM +aM +aM +aM +"} +(5,1,1) = {" +aM +Fi +aU +aU +Fi +aM +aM +aM +aM +ad +Oe +aJ +Oe +ad +aM +aM +aM +aM +aM +aM +aM +"} +(6,1,1) = {" +aM +aM +Fi +Fi +aM +aM +aM +Fi +Fi +aP +aN +aJ +aA +ad +aM +aM +aM +aM +aM +aM +aM +"} +(7,1,1) = {" +aM +Fi +aM +aM +aM +aM +Fi +aS +ad +ad +aH +ai +aa +ad +ad +ad +ad +aM +ad +aM +aM +"} +(8,1,1) = {" +Fi +aq +Fi +aM +Fi +Fi +QS +er +WM +ai +aI +aJ +as +at +aq +aq +Oe +Oe +aM +aM +aM +"} +(9,1,1) = {" +aM +Fi +aM +Fi +aU +aU +in +er +DG +ai +aJ +RY +aO +aB +aO +aO +aJ +aJ +Oe +aM +aM +"} +(10,1,1) = {" +aM +aM +Fi +aU +aV +er +ll +jX +am +al +af +aO +ak +ac +ag +aD +Oe +Oe +aM +aM +aM +"} +(11,1,1) = {" +aM +aM +aM +Fi +aS +ad +ad +ad +ad +ad +ap +aB +aR +ad +ad +ad +ad +aM +aM +aM +aM +"} +(12,1,1) = {" +aM +aM +Fi +aU +aU +aU +aU +aU +aU +ad +au +aO +aA +ad +aM +aM +Fi +Fi +Fi +Fi +aM +"} +(13,1,1) = {" +aM +aM +aM +Fi +aU +aU +aU +aU +aU +ad +Oe +aO +aA +ad +aM +Fi +aU +aU +aU +aU +Fi +"} +(14,1,1) = {" +aM +aM +Fi +Fi +aU +aU +aV +aV +aV +aX +Oe +aJ +Oo +ad +aM +aM +Fi +aU +aU +Fi +aM +"} +(15,1,1) = {" +aM +Fi +aU +aU +aU +aU +aU +aU +aV +aX +Oe +aJ +Oe +aM +aM +aM +aM +Fi +aU +Fi +aM +"} +(16,1,1) = {" +aM +Fi +aU +aU +aU +aU +aU +aU +aU +aX +aQ +aJ +Oe +ad +aM +aM +aM +Fi +Fi +Fi +aM +"} +(17,1,1) = {" +aM +aM +Fi +Fi +aU +aU +aU +aU +aV +aX +aQ +av +Oe +ad +aM +aM +Fi +aU +aU +aU +Fi +"} +(18,1,1) = {" +aM +aM +aM +aM +Fi +Fi +aU +aU +aU +ad +aN +aY +Oe +aM +aM +Fi +aU +aU +aU +aU +Fi +"} +(19,1,1) = {" +aM +aM +aM +aM +aM +aM +Fi +Fi +Fi +Oe +aW +aY +Oe +aM +aM +Fi +aU +aU +aU +aU +Fi +"} +(20,1,1) = {" +aM +aM +aM +Fi +Fi +aM +aM +aM +aM +Oe +aY +aY +Oe +ad +aM +aM +Fi +aU +aU +aU +Fi +"} +(21,1,1) = {" +aM +aM +an +aL +Fi +aM +aM +aM +aM +Oe +aL +aY +Oe +aM +aM +aM +aM +Fi +aU +Fi +aM +"} +(22,1,1) = {" +aM +an +aL +aL +az +Fi +an +aM +Oe +aL +aL +aL +Oe +aM +aM +aM +aM +aM +Fi +aM +aM +"} +(23,1,1) = {" +aM +aM +an +an +aL +Fi +aM +Oe +aL +aL +aL +Oe +Oe +aM +aM +an +aM +aM +aM +aM +aM +"} +(24,1,1) = {" +aM +aM +aM +aM +an +aM +Oe +an +aL +aL +aL +uU +aL +Oe +aM +aM +aM +aM +aM +aM +aM +"} +(25,1,1) = {" +aM +aM +aM +aM +Oe +Oe +Oe +an +aL +aL +an +an +an +an +Oe +aM +aM +aM +aM +aM +aM +"} +(26,1,1) = {" +aM +aM +aM +Oe +an +an +an +an +aL +aL +an +an +an +an +an +Oe +aM +aM +aM +aM +aM +"} +(27,1,1) = {" +aM +aM +aM +Oe +an +an +aL +an +aL +oT +aL +an +an +an +an +Oe +aM +aM +aM +aM +aM +"} +(28,1,1) = {" +aM +aM +aM +Oe +an +an +aL +aL +ah +aL +aL +aL +an +an +an +Oe +an +an +aM +aM +aM +"} +(29,1,1) = {" +aM +aM +aM +Oe +Oe +an +an +Oe +aL +aL +aL +aL +an +an +an +Oe +aM +aM +aM +aM +aM +"} +(30,1,1) = {" +aM +aM +Oe +an +an +an +Oe +Fi +Oe +ae +aL +Oe +Oe +an +an +an +Oe +aM +aM +aM +aM +"} +(31,1,1) = {" +aM +aM +Oe +an +aL +an +an +Oe +Oe +aL +aL +Oe +Fi +Oe +an +an +Oe +Oe +aM +aM +aM +"} +(32,1,1) = {" +aM +aM +Oe +an +aL +an +an +an +an +aL +ah +Oe +Oe +an +an +an +an +an +Oe +aM +aM +"} +(33,1,1) = {" +aM +Oe +an +an +aL +an +aL +oT +Lg +kC +oT +aL +Lg +aL +aL +aL +an +an +Oe +aM +aM +"} +(34,1,1) = {" +aM +Oe +an +an +aL +aL +aL +an +an +aL +aL +oT +aL +aL +an +aL +an +an +an +Oe +aM +"} +(35,1,1) = {" +aM +Oe +an +an +aL +an +aL +an +an +aL +Lg +aL +Oe +an +an +aL +aL +aL +an +Oe +aM +"} +(36,1,1) = {" +aM +aM +Oe +an +an +an +an +an +Oe +Oe +aL +aL +Oe +an +an +an +an +an +an +Oe +aM +"} +(37,1,1) = {" +aM +aM +aM +Oe +an +an +an +an +Oe +aL +aL +aL +Oe +Oe +an +an +an +an +Oe +aM +aM +"} +(38,1,1) = {" +aM +aM +aM +Oe +an +an +an +Oe +Oe +aL +Oe +aL +Oe +Oe +an +an +an +Oe +aM +aM +aM +"} +(39,1,1) = {" +aM +aM +aM +Oe +an +an +an +an +Oe +aL +aL +aL +Oe +Oe +an +an +an +Oe +aM +aM +aM +"} +(40,1,1) = {" +aM +aM +aM +Oe +an +an +an +an +Oe +Oe +VH +aL +Oe +aM +Oe +an +Oe +aM +aM +aM +aM +"} +(41,1,1) = {" +aM +aM +aM +Oe +an +an +an +an +Oe +xa +xa +Oe +Fi +aM +Oe +an +Oe +aM +aM +aM +aM +"} +(42,1,1) = {" +aM +aM +aM +aM +Oe +Oe +an +Oe +Oe +xa +xa +xa +Oe +aM +Oe +an +Oe +aM +aM +aM +aM +"} +(43,1,1) = {" +aM +aM +aM +aM +an +Oe +an +Oe +Oe +xa +xa +xa +Oe +aM +aM +Oe +aM +aM +aM +aM +aM +"} +(44,1,1) = {" +aM +aM +aM +aM +an +Fi +Oe +aM +Oe +xa +xa +Oe +aM +aM +aM +aM +aM +aM +aM +aM +aM +"} +(45,1,1) = {" +aM +aM +aM +Fi +Fi +Fi +an +aM +Oe +xa +xa +yw +Oe +aM +an +aM +an +aM +aM +aM +aM +"} +(46,1,1) = {" +aM +aM +Fi +tv +Fi +aM +aM +aM +Oe +xa +mJ +xa +Oe +aM +aM +aM +aM +aM +aM +aM +aM +"} +(47,1,1) = {" +aM +Fi +aM +lL +gK +Fi +Oe +Oe +xa +xa +mJ +Fx +Fx +Oe +aM +aM +aM +aM +aM +aM +aM +"} +(48,1,1) = {" +aM +Fi +tv +xa +tv +Oe +Fx +mJ +xa +XM +xa +Fx +Fx +Fx +Oe +aM +aM +aM +aM +aM +aM +"} +(49,1,1) = {" +aM +aM +Fi +Fi +Fi +Oe +Fx +Fx +xa +xa +xa +Fx +Fx +Oe +aM +Fi +Fi +Fi +aM +aM +aM +"} +(50,1,1) = {" +aM +aM +aM +aM +aM +aM +Oe +xa +xa +mJ +xa +xa +Oe +aM +Fi +xa +xa +xa +Fi +aM +aM +"} +(51,1,1) = {" +aM +aM +aM +Fx +aM +Fi +aM +Oe +xa +xa +xa +Oe +aM +aM +Fi +BG +xa +xa +Fx +aM +aM +"} +(52,1,1) = {" +aM +aM +Fx +Fx +Fx +BG +Fi +Fi +Oe +Oe +Oe +aM +aM +aM +Fi +gK +Fx +Fx +Fx +Fx +aM +"} +(53,1,1) = {" +aM +aM +Fx +Fx +Fx +xa +Fi +aM +aM +aM +aM +aM +aM +Fi +xa +Fx +Fx +Fx +Fx +Fx +aM +"} +(54,1,1) = {" +aM +aM +aM +Fx +Fx +Fi +aM +aM +aM +aM +aM +aM +aM +Fi +xa +Fx +Fx +Fx +Fx +Fx +aM +"} +(55,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +Fi +aM +aM +aM +aM +aM +aM +"} +(56,1,1) = {" +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +aM +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl3tear_c.dmm b/_maps/away/modular_maps/caves/caves_lvl3tear_c.dmm new file mode 100644 index 000000000000..7d28f32ee14a --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl3tear_c.dmm @@ -0,0 +1,1748 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ao" = ( +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"aq" = ( +/turf/open/floor/plating/beach/water, +/area/template_noop) +"aJ" = ( +/turf/template_noop, +/area/template_noop) +"aL" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 10 + }, +/area/template_noop) +"aO" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"cu" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 9 + }, +/area/template_noop) +"cz" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure"; + dir = 8 + }, +/turf/open/floor/wood/large, +/area/template_noop) +"da" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 1 + }, +/area/template_noop) +"fa" = ( +/obj/effect/overlay/palmtree_r, +/obj/item/toy/seashell{ + pixel_y = -5 + }, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"fk" = ( +/obj/structure/fluff/beach_umbrella, +/turf/open/floor/plating/beach/coastline_t{ + dir = 9 + }, +/area/template_noop) +"ga" = ( +/obj/item/book/fish_catalog, +/turf/open/floor/plating/beach/coastline_t{ + dir = 6 + }, +/area/template_noop) +"gt" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/template_noop) +"hl" = ( +/obj/structure/fans/tiny/invisible, +/turf/template_noop, +/area/template_noop) +"iT" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/template_noop) +"ja" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/template_noop) +"jt" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 + }, +/area/template_noop) +"jN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/wood, +/area/template_noop) +"ki" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood/large, +/area/template_noop) +"lF" = ( +/obj/effect/turf_decal/siding/wood, +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25; + name = "architect"; + desc = "I don't think you're supposed to be here." + }, +/turf/open/floor/wood, +/area/template_noop) +"lG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/wood, +/area/template_noop) +"mk" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 6 + }, +/area/template_noop) +"mV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood/large, +/area/template_noop) +"ou" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/large, +/area/template_noop) +"pA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/template_noop) +"rd" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 5 + }, +/area/template_noop) +"rK" = ( +/mob/living/simple_animal/crab, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"sv" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood/large, +/area/template_noop) +"tr" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 1 + }, +/area/template_noop) +"ug" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/template_noop) +"ux" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"wd" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/template_noop, +/area/template_noop) +"xe" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/coastline_t{ + dir = 9 + }, +/area/template_noop) +"xj" = ( +/obj/item/toy/seashell, +/mob/living/simple_animal/parrot, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"yz" = ( +/mob/living/simple_animal/crab/coffee, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"zp" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/template_noop) +"zK" = ( +/turf/open/floor/plating/beach/coastline_b, +/area/template_noop) +"Ag" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25; + name = "architect"; + desc = "I don't think you're supposed to be here." + }, +/turf/open/floor/wood, +/area/template_noop) +"AD" = ( +/obj/item/storage/fish_case/random/freshwater, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/template_noop) +"AL" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/engine/cult, +/area/template_noop) +"Bn" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/template_noop) +"Bs" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 4 + }, +/area/template_noop) +"Dn" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/template_noop) +"DH" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/wood/large, +/area/template_noop) +"DN" = ( +/turf/open/floor/wood, +/area/template_noop) +"DZ" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood/large, +/area/template_noop) +"EK" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 10 + }, +/area/template_noop) +"GN" = ( +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plating/beach/coastline_t{ + dir = 10 + }, +/area/template_noop) +"GP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/template_noop) +"Hv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood/large, +/area/template_noop) +"Ie" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/floor/wood/large, +/area/template_noop) +"Ig" = ( +/turf/open/floor/wood/large, +/area/template_noop) +"Ix" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 8 + }, +/area/template_noop) +"KA" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 9 + }, +/area/template_noop) +"Ln" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/water, +/area/template_noop) +"LR" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 4 + }, +/area/template_noop) +"Mp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "riftexit"; + name = "rift end" + }, +/turf/open/floor/carpet, +/area/template_noop) +"MJ" = ( +/obj/structure/fans/tiny/invisible, +/mob/living/simple_animal/hostile/illusion{ + multiply_chance = 25; + health = 25 + }, +/turf/template_noop, +/area/template_noop) +"ML" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 + }, +/area/template_noop) +"Nl" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"NV" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 5 + }, +/area/template_noop) +"PM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/template_noop) +"RE" = ( +/turf/open/floor/engine/cult, +/area/template_noop) +"SL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/template_noop) +"Tn" = ( +/obj/effect/overlay/palmtree_l, +/obj/item/toy/seashell{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"TQ" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 4 + }, +/area/template_noop) +"TS" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/coastline_t{ + dir = 4 + }, +/area/template_noop) +"TU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/wood, +/area/template_noop) +"UU" = ( +/turf/open/floor/plating/beach/coastline_t, +/area/template_noop) +"Vd" = ( +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"Vk" = ( +/turf/closed/wall, +/area/template_noop) +"WJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/template_noop) +"Xr" = ( +/obj/effect/bump_teleporter{ + id = "riftenter"; + name = "rift start" + }, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"XR" = ( +/obj/effect/overlay/palmtree_l, +/obj/item/toy/seashell{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/template_noop) +"YI" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/template_noop) +"ZA" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 6 + }, +/area/template_noop) + +(1,1,1) = {" +aJ +aJ +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +ao +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(2,1,1) = {" +aJ +hl +aq +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(3,1,1) = {" +aJ +hl +aq +hl +aJ +aJ +aJ +aJ +wd +aJ +wd +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(4,1,1) = {" +hl +aq +Ln +aq +hl +aJ +aJ +wd +aq +wd +wd +aq +aq +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +"} +(5,1,1) = {" +hl +aq +aq +hl +aJ +wd +wd +aq +aq +aq +aq +aq +aq +aq +aq +wd +aJ +aJ +aJ +aJ +aJ +"} +(6,1,1) = {" +hl +aq +hl +aJ +wd +aq +aq +aq +jt +jt +jt +jt +jt +jt +aq +aq +wd +aJ +aJ +aJ +aJ +"} +(7,1,1) = {" +aJ +hl +aJ +aJ +aJ +wd +aq +da +xe +Ix +Ix +Ix +Ix +aL +rd +jt +aq +wd +aJ +aJ +aJ +"} +(8,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +da +zp +Vd +Vd +Vd +fa +ML +Ix +aL +zK +wd +aJ +aJ +aJ +"} +(9,1,1) = {" +hl +hl +aJ +aJ +aJ +wd +aq +da +zp +Vd +Xr +Vd +Vd +Vd +Vd +UU +zK +aq +wd +aJ +aJ +"} +(10,1,1) = {" +aq +aq +hl +aJ +aJ +wd +aq +da +zp +Vd +Tn +rK +Vd +Vd +Vd +UU +zK +aq +wd +aJ +aJ +"} +(11,1,1) = {" +aq +aq +aq +hl +aJ +wd +aq +da +NV +tr +Vd +Vd +gt +Bs +TS +mk +zK +aq +wd +aJ +aJ +"} +(12,1,1) = {" +jt +jt +jt +aq +hl +wd +aq +aq +EK +NV +Bs +Bs +mk +KA +TQ +TQ +aq +wd +aJ +aJ +aJ +"} +(13,1,1) = {" +Ix +Ix +aL +zK +hl +aJ +wd +aq +aq +TQ +TQ +TQ +TQ +aq +wd +wd +wd +aJ +aJ +aJ +aJ +"} +(14,1,1) = {" +Vd +Nl +UU +zK +hl +aJ +aJ +wd +aq +aq +aq +aq +aq +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +"} +(15,1,1) = {" +rK +ux +UU +zK +aq +hl +aJ +aJ +wd +aq +aq +wd +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(16,1,1) = {" +Bs +Bs +mk +zK +aq +hl +aJ +aJ +aJ +wd +Ln +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(17,1,1) = {" +TQ +TQ +TQ +aq +hl +aJ +aJ +aJ +aJ +wd +aq +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(18,1,1) = {" +aq +aq +hl +hl +aJ +aJ +aJ +wd +wd +aq +aq +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(19,1,1) = {" +aq +hl +aJ +aJ +aJ +aJ +wd +aq +aq +jt +jt +jt +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(20,1,1) = {" +hl +aJ +aJ +aJ +aJ +aJ +wd +aq +ZA +cu +Ix +aL +zK +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(21,1,1) = {" +aq +hl +aJ +aJ +aJ +wd +aq +da +cu +LR +Vd +UU +zK +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +"} +(22,1,1) = {" +aq +aq +hl +aJ +wd +aq +aq +da +Bn +xj +YI +mk +zK +aq +aq +wd +wd +wd +aJ +aJ +aJ +"} +(23,1,1) = {" +Ln +aq +aq +hl +aJ +wd +aq +da +NV +tr +UU +KA +aq +aq +aq +jt +jt +aq +wd +aJ +aJ +"} +(24,1,1) = {" +aq +aq +hl +aJ +aJ +aJ +wd +aq +EK +NV +mk +aq +aq +aq +ZA +cu +aL +rd +jt +wd +aJ +"} +(25,1,1) = {" +hl +hl +aJ +aJ +aJ +aJ +wd +aq +aq +TQ +TQ +aq +aq +da +cu +LR +ML +Ix +aL +zK +wd +"} +(26,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +wd +wd +wd +wd +aq +da +zp +aO +yz +Vd +UU +zK +wd +"} +(27,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +da +zp +Vd +XR +Vd +UU +zK +wd +"} +(28,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +wd +aJ +wd +da +NV +tr +Vd +gt +mk +zK +wd +"} +(29,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +aq +aq +wd +wd +aq +EK +NV +Bs +mk +KA +aq +wd +"} +(30,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +wd +wd +aq +aq +aq +aq +aq +aq +aq +TQ +TQ +TQ +aq +wd +aJ +"} +(31,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +aq +jt +jt +jt +aq +Ln +aq +wd +wd +wd +wd +wd +aJ +aJ +"} +(32,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +da +fk +Ix +GN +zK +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(33,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +da +WJ +gt +ga +zK +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(34,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +da +zp +UU +KA +aq +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(35,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +da +AD +ug +zK +aq +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(36,1,1) = {" +aJ +aJ +aJ +aJ +aJ +wd +aq +aq +lG +ug +aq +aq +wd +aJ +aJ +hl +aJ +aJ +aJ +aJ +aJ +"} +(37,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +wd +aq +pA +lF +wd +wd +aJ +aJ +hl +aq +hl +aJ +aJ +aJ +aJ +"} +(38,1,1) = {" +aJ +aJ +hl +hl +aJ +aJ +aJ +wd +pA +ug +wd +aJ +aJ +hl +aq +aq +aq +hl +aJ +aJ +aJ +"} +(39,1,1) = {" +aJ +hl +aq +aq +hl +aJ +aJ +wd +Ag +PM +wd +aJ +hl +aq +aq +aq +aq +aq +hl +aJ +aJ +"} +(40,1,1) = {" +hl +aq +Ln +aq +aq +hl +aJ +wd +pA +ja +wd +hl +aJ +hl +aq +Ln +aq +aq +hl +aJ +aJ +"} +(41,1,1) = {" +aJ +hl +aq +aq +hl +aJ +aJ +wd +SL +wd +hl +ug +hl +aJ +hl +aq +aq +hl +aJ +aJ +aJ +"} +(42,1,1) = {" +aJ +aJ +hl +aq +hl +aJ +aJ +wd +pA +wd +hl +jN +hl +aJ +aJ +hl +hl +aJ +aJ +aJ +aJ +"} +(43,1,1) = {" +aJ +aJ +aJ +hl +aJ +hl +aJ +wd +Ag +TU +wd +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(44,1,1) = {" +aJ +aJ +aJ +aJ +hl +pA +hl +aJ +wd +ug +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(45,1,1) = {" +aJ +aJ +aJ +aJ +hl +pA +hl +aJ +wd +ug +wd +hl +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(46,1,1) = {" +aJ +aJ +aJ +aJ +aJ +hl +aJ +wd +DN +ug +wd +Ig +Ig +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(47,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +wd +Ig +wd +aJ +Ig +Ig +MJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(48,1,1) = {" +aJ +aJ +hl +hl +aJ +aJ +wd +wd +Ig +wd +wd +wd +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(49,1,1) = {" +aJ +hl +Ig +Ig +hl +wd +Vk +Ig +Ig +GP +iT +Ig +ou +Ig +wd +wd +aJ +hl +aJ +aJ +aJ +"} +(50,1,1) = {" +aJ +aJ +hl +hl +hl +wd +Vk +DZ +DZ +GP +iT +Ig +ou +Dn +Vk +RE +wd +Ie +hl +aJ +aJ +"} +(51,1,1) = {" +aJ +hl +Ig +Ig +Ig +wd +Vk +ki +Ig +GP +Mp +Ig +DH +mV +AL +RE +wd +hl +aJ +aJ +aJ +"} +(52,1,1) = {" +aJ +aJ +hl +hl +hl +wd +Vk +sv +sv +GP +iT +Ig +Hv +Ig +wd +wd +aJ +aJ +aJ +aJ +aJ +"} +(53,1,1) = {" +aJ +aJ +aJ +aJ +hl +hl +wd +wd +wd +Ig +Ig +wd +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(54,1,1) = {" +aJ +aJ +aJ +hl +Ig +Ig +hl +Ig +Ig +wd +wd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(55,1,1) = {" +aJ +aJ +aJ +aJ +hl +hl +hl +Ig +cz +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} +(56,1,1) = {" +aJ +aJ +aJ +aJ +aJ +aJ +aJ +hl +hl +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl4_a.dmm b/_maps/away/modular_maps/caves/caves_lvl4_a.dmm new file mode 100644 index 000000000000..9f0dd1dd14ae --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl4_a.dmm @@ -0,0 +1,17635 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ah" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"at" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"aA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"aD" = ( +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"aG" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"aI" = ( +/turf/closed/indestructible/riveted{ + base_icon_state = "clockwork_wall"; + desc = "A huge chunk of bronze, decorated like gears and cogs. It seems particularly impervious to normal types of damage."; + icon = 'icons/turf/walls/clockwork_wall.dmi'; + icon_state = "clockwork_wall"; + name = "clockwork wall" + }, +/area/template_noop) +"aK" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"aU" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"aW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/bronze/seethru, +/turf/open/floor/bronze, +/area/template_noop) +"bm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"bn" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/structure/table/bronze, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"bG" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"bO" = ( +/obj/structure/lattice, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"bT" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"bX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ratvar/barracks) +"cl" = ( +/obj/effect/bump_teleporter{ + id = "lvl4spawn"; + id_target = null; + name = "lvl4 spawn" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"cn" = ( +/obj/structure/chair/bronze{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"cO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"dc" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/bronze, +/area/template_noop) +"di" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/cable, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"dz" = ( +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"dR" = ( +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/ratvar/barracks) +"dY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"es" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ev" = ( +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/bronze, +/area/template_noop) +"eC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"eR" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"eU" = ( +/turf/open/floor/plasteel/chapel{ + dir = 5 + }, +/area/template_noop) +"eV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"fa" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"ft" = ( +/obj/structure/table/bronze, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/template_noop) +"fN" = ( +/obj/structure/chair/bronze, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"fU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/bronze, +/area/template_noop) +"ge" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/obj/machinery/door/airlock/bronze/seethru, +/turf/open/floor/bronze, +/area/template_noop) +"gF" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"gT" = ( +/obj/structure/dead_ratvar, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"gX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/template_noop) +"hd" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"hl" = ( +/obj/structure/clockcult_tower{ + id = "clock3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"hr" = ( +/obj/machinery/door/poddoor{ + id = "fortynights"; + name = "Secure Access Lockdown" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"ht" = ( +/turf/open/floor/plasteel/chapel{ + dir = 9 + }, +/area/template_noop) +"hJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"hX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"hZ" = ( +/obj/structure/girder/bronze, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ib" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"iK" = ( +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"iT" = ( +/obj/structure/fluff/big_chain{ + pixel_y = 16 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"jh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"ki" = ( +/obj/machinery/door/airlock/bronze/seethru, +/turf/open/floor/bronze, +/area/template_noop) +"kO" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"lf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"lo" = ( +/obj/structure/clockcult_tower/source, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"lq" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"lt" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/obj/item/bedsheet/orange{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"md" = ( +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ml" = ( +/obj/structure/bed/pod, +/obj/item/bedsheet/orange, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"mx" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"mU" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"mW" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mX" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"nl" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"nm" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"nv" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"nK" = ( +/obj/structure/lattice, +/obj/structure/girder/bronze, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"nL" = ( +/obj/structure/table/bronze, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "lesser cog"; + puzzle_id = "clockcult1" + }, +/turf/open/floor/bronze, +/area/template_noop) +"nX" = ( +/turf/open/floor/plasteel/chapel{ + dir = 10 + }, +/area/template_noop) +"ok" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"oK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"oY" = ( +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"pq" = ( +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cuii Xqbb" + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"ps" = ( +/obj/vehicle/ridden/atv{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"pu" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/bronze, +/area/template_noop) +"pw" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/bronze, +/area/template_noop) +"pJ" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/clockcult_tower/target, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar) +"pL" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/structure/table/bronze, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"qy" = ( +/turf/closed/wall/mineral/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"qB" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/template_noop) +"qE" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"qM" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"qN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cydydw Unjuhdqb Qyhbesa" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"rg" = ( +/obj/structure/fluff/clockwork/blind_eye, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"rk" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"rC" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/obj/item/bedsheet/orange{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"rS" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ratvar/barracks) +"sn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"sp" = ( +/obj/structure/sign/warning{ + name = "collect 4 things, open door to arena" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar) +"sz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cydydw Unjuhdqb Qyhbesa" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"sE" = ( +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"sL" = ( +/obj/structure/chair/bronze{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/template_noop) +"ta" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"tp" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/bronze, +/area/template_noop) +"tB" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"tL" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/template_noop) +"tS" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"uc" = ( +/obj/structure/cable, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"uA" = ( +/turf/open/floor/plasteel/chapel{ + dir = 6 + }, +/area/template_noop) +"uE" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"vw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"vK" = ( +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cydydw Unjuhdqb Qyhbesa" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"vR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"wf" = ( +/obj/item/food/grown/banana{ + desc = "shh... its a secret. 6 of 6."; + name = "secret banana" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"wr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"wC" = ( +/obj/structure/bed/pod{ + dir = 8 + }, +/obj/item/bedsheet/orange, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"wL" = ( +/obj/machinery/door/keycard{ + puzzle_id = "clockcult" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar) +"wU" = ( +/obj/structure/clockcult_tower{ + id = "clock3" + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"xh" = ( +/obj/structure/clockcult_tower/source{ + id = "clock3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"xr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"xB" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"xE" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/warm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"xG" = ( +/obj/machinery/door/airlock/bronze/seethru{ + name = "Xyi Ucydudsu'i Jucfbu" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/template_noop) +"xI" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"xU" = ( +/obj/structure/clockcult_tower{ + id = "clock2" + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"yu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"yN" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"yS" = ( +/obj/machinery/suit_storage_unit/mining, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"yX" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"zt" = ( +/obj/structure/table/bronze, +/obj/item/toy/plush/ratplush, +/turf/open/floor/bronze, +/area/template_noop) +"zL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"zN" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"zU" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"As" = ( +/obj/machinery/power/rtg/lavaland, +/obj/structure/cable, +/turf/open/floor/bronze, +/area/template_noop) +"AQ" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/template_noop) +"AX" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/obj/item/bedsheet/orange{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Bf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/template_noop) +"Bh" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/bronze{ + name = "Byvu Ikffehj Qssuii" + }, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"Bk" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Bm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"BC" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"BF" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"BI" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"BP" = ( +/turf/closed/wall, +/area/awaymission/caves/misc/ratvar/barracks) +"BY" = ( +/obj/structure/chair/pew, +/turf/open/floor/bronze, +/area/template_noop) +"BZ" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Cf" = ( +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CK" = ( +/obj/machinery/light/warm/directional/north, +/turf/open/floor/bronze, +/area/template_noop) +"Dl" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/template_noop) +"Dn" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"DC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"DY" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Ef" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/bronze{ + name = "Rqhhqsai" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Em" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Eo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/template_noop) +"Ew" = ( +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Ey" = ( +/obj/structure/chair/bronze, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"EU" = ( +/obj/structure/bed/pod{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"EZ" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/template_noop) +"Fe" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Fk" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Fs" = ( +/obj/structure/clockcult_tower/source{ + pixel_y = -16 + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/awaymission/caves/misc/ratvar/barracks) +"FS" = ( +/obj/structure/table/bronze, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "lesser cog"; + puzzle_id = "clockcult3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Gc" = ( +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Gd" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Gj" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"GC" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ratvar/barracks) +"GE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"GW" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Hp" = ( +/obj/structure/lattice, +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"HA" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"HM" = ( +/obj/structure/chair/pew, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/bronze, +/area/template_noop) +"HW" = ( +/turf/closed/indestructible/riveted{ + base_icon_state = "clockwork_wall"; + desc = "A huge chunk of bronze, decorated like gears and cogs. It seems particularly impervious to normal types of damage."; + icon = 'icons/turf/walls/clockwork_wall.dmi'; + icon_state = "clockwork_wall"; + name = "clockwork wall" + }, +/area/awaymission/caves/misc/ratvar/barracks) +"Ij" = ( +/obj/machinery/door/airlock/bronze{ + name = "Rqhhqsai" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Ix" = ( +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"IM" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"IN" = ( +/obj/structure/clockcult_tower/source{ + id = "clock2" + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"IY" = ( +/turf/open/floor/plating, +/area/template_noop) +"Jg" = ( +/obj/machinery/suit_storage_unit/open, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"Jh" = ( +/mob/living/simple_animal/hostile/clockminer{ + dir = 4; + health = 235; + maxHealth = 235; + name = "Brother Charles"; + speak = list("Let not the heretic suffer to live, for they will server a great purpose for His Eminence in their afterlife.","Do you not feel guilt for bringing your filth upon these sacred grounds?","Shimmering bronze and cleansing steam, we are all just cogs in His Grand Design.") + }, +/turf/open/floor/bronze, +/area/template_noop) +"Jj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Jm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Jp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Jw" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"JG" = ( +/turf/open/floor/bronze, +/area/template_noop) +"JJ" = ( +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Kd" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KB" = ( +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"KG" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"KN" = ( +/turf/closed/wall/r_wall, +/area/awaymission/caves/misc/ratvar/barracks) +"KO" = ( +/obj/structure/table/bronze, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"La" = ( +/obj/machinery/door/airlock/bronze{ + name = "Byvu Ikffehj Qssuii" + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Lt" = ( +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"LK" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/plasteel/chapel{ + dir = 6 + }, +/area/template_noop) +"LM" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"LT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Mc" = ( +/obj/machinery/power/rtg, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"Mj" = ( +/obj/structure/clockcult_tower, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"Mt" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/bronze, +/area/template_noop) +"Mx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"MD" = ( +/obj/structure/table/bronze, +/turf/open/floor/plasteel/chapel, +/area/template_noop) +"ME" = ( +/obj/machinery/light/warm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"MI" = ( +/obj/modular_map_connector, +/turf/closed/indestructible/rock, +/area/template_noop) +"Nd" = ( +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Nf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Nk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"NK" = ( +/obj/structure/closet, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"NW" = ( +/obj/structure/clockcult_tower, +/turf/open/floor/bronze, +/area/template_noop) +"Ow" = ( +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar) +"OD" = ( +/obj/structure/table/bronze, +/obj/item/toy/clockwork_watch, +/turf/open/floor/bronze, +/area/template_noop) +"OK" = ( +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ON" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/bronze, +/area/template_noop) +"OT" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"PD" = ( +/obj/structure/table/bronze, +/turf/open/floor/plasteel/chapel{ + dir = 10 + }, +/area/template_noop) +"PG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"PM" = ( +/obj/machinery/door/airlock/bronze{ + name = "Fybbqh Qssuii" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"PN" = ( +/obj/machinery/door/airlock/bronze{ + name = "Rqhhqsai" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Qc" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/template_noop) +"Qq" = ( +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"QB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"QC" = ( +/obj/machinery/door/airlock/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"QD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cydydw Unjuhdqb Qyhbesa" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"QH" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 9 + }, +/area/template_noop) +"QO" = ( +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar) +"QV" = ( +/obj/machinery/suit_storage_unit/open, +/obj/machinery/light/small/directional/south, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Rw" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"RF" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/light/small/directional/south, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"RW" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/machinery/light/warm/directional, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"RY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/awaymission/caves/misc/ratvar/barracks) +"Ss" = ( +/obj/machinery/computer/security{ + dir = 1; + network = list("fortnitecave") + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"SD" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"SN" = ( +/turf/closed/wall, +/area/template_noop) +"Te" = ( +/obj/machinery/door/airlock/bronze, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Tp" = ( +/turf/open/floor/plasteel/chapel, +/area/template_noop) +"Tw" = ( +/obj/structure/fluff/big_chain{ + pixel_y = 16 + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"TI" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/light/warm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"TJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"TT" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/mob/living/simple_animal/hostile/clockminer{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/template_noop) +"Ui" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Uj" = ( +/obj/structure/table/bronze, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"UH" = ( +/obj/item/bedsheet/patriot, +/obj/item/key/atv, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"UJ" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"UR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining External Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"UW" = ( +/turf/closed/indestructible/riveted{ + base_icon_state = "clockwork_wall"; + desc = "A huge chunk of bronze, decorated like gears and cogs. It seems particularly impervious to normal types of damage."; + icon = 'icons/turf/walls/clockwork_wall.dmi'; + icon_state = "clockwork_wall"; + name = "clockwork wall" + }, +/area/awaymission/caves/misc/ratvar) +"Vh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"VI" = ( +/obj/machinery/button/door/directional/south{ + id = "fortynights"; + name = "Secure Lockdown Toggle" + }, +/obj/structure/cable, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Wi" = ( +/obj/machinery/door/airlock/external/glass{ + name = "His Eminence's Temple" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"Wk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ratvar/barracks) +"Wv" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Wx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/catwalk_floor{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"WB" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/light/warm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"WH" = ( +/obj/structure/chair/bronze{ + dir = 1 + }, +/mob/living/simple_animal/hostile/clockminer{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"WK" = ( +/obj/structure/chair/bronze{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 9 + }, +/area/template_noop) +"WP" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"WT" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xe" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"Xk" = ( +/obj/structure/table/bronze, +/obj/item/keycard{ + desc = "An encrypted card with a small description reading 'Used for bypassing first-level lockdowns in emergency scenarios'."; + name = "lesser cog"; + puzzle_id = "clockcult2" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Xy" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Yf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"YF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/awaymission/caves/misc/ratvar/barracks) +"YG" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/bronze, +/area/template_noop) +"YH" = ( +/obj/structure/lattice/lava{ + base_icon_state = "lattice"; + icon = 'icons/obj/smooth_structures/lattice.dmi'; + icon_state = "lattice-255" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"YS" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/misc/patriotsuit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"YX" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Zg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"Zj" = ( +/obj/structure/clockcult_tower/source{ + id = "clock4" + }, +/turf/open/floor/bronze{ + initial_gas_mix = "o2=14;n2=30;TEMP=293.15" + }, +/area/template_noop) +"ZJ" = ( +/obj/machinery/door/airlock/bronze, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/awaymission/caves/misc/ratvar/barracks) +"ZN" = ( +/obj/structure/bed/pod{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) +"ZU" = ( +/obj/machinery/door/airlock/bronze/seethru{ + name = "Cydydw Unjuhdqb Qyhbesa" + }, +/turf/open/floor/bronze, +/area/awaymission/caves/misc/ratvar/barracks) + +(1,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +MI +"} +(2,1,1) = {" +aG +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(3,1,1) = {" +aG +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 +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(4,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +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 +aG +"} +(5,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(6,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(7,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(8,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aa +aa +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +Tw +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(9,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +aa +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +SN +SN +KG +KG +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aG +"} +(10,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +aa +aa +aa +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +JG +fU +Bf +KG +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(11,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +ge +KG +KG +JG +Eo +Eo +SN +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +aU +aU +BP +qy +BP +qy +qy +BP +aU +aU +aU +BF +BF +BF +aa +aG +"} +(12,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +Xy +aU +aU +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +SN +JG +SN +JG +JG +EZ +Tp +JG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BP +Qq +dR +dR +Qq +BP +aU +aU +aU +BF +BF +BF +aa +aG +"} +(13,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +Xy +ib +Xy +Xy +aU +aU +aU +aU +aU +aU +Xy +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +CK +ht +nX +JG +ft +WK +xh +JG +JG +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +JJ +BF +BF +BF +BF +aU +qy +dR +Fs +dR +dR +qy +xr +xr +xr +aU +BF +BF +aa +aG +"} +(14,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +Xy +Xy +aU +aU +aU +aU +aU +aU +Xy +ib +Xy +Xy +Xy +aU +aU +BF +BF +BF +BF +BF +BF +aD +BF +BF +JG +JG +YG +JG +LK +EZ +MD +Jh +sL +JG +JG +aD +aD +Tw +aD +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BP +hd +qy +Qq +dR +dR +Qq +qy +qN +qy +xr +aU +BF +BF +aa +aG +"} +(15,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +Xy +Xy +Xy +aU +aU +aU +aU +BF +BF +BF +BF +BF +aD +Tw +aD +aD +Eo +JG +BY +Dl +qB +ht +PD +oY +oY +JG +JG +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +lf +BP +BP +PM +PM +qy +qy +TJ +qy +xr +aU +BF +BF +aa +aG +"} +(16,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +Xy +Xy +BF +BF +BF +BF +aD +BF +BF +Eo +JG +HM +JG +Tp +eU +uA +EZ +JG +JG +KG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +GW +BP +Qq +lq +Qq +Qq +qy +QD +qy +xr +Dn +xB +Xy +aa +aG +"} +(17,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +Xy +ib +BF +BF +BF +BF +BF +BF +KG +KG +JG +pw +JG +OD +Dl +AQ +QH +nX +SN +SN +As +KG +BF +BF +BF +BF +aU +aU +BF +BF +qy +qy +BP +BP +qy +Wv +TI +lq +Nd +Qq +Qq +ME +jh +BP +BP +BP +BP +qy +aa +aG +"} +(18,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +aD +JJ +aD +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +aU +aU +aU +Xy +Xy +aU +BF +BF +BF +KG +KG +Jw +JG +JG +eU +uA +EZ +JG +eU +uA +aW +pu +ON +SN +BF +BF +BF +aU +aU +aU +BF +BF +BP +AX +nv +Xe +qy +Ui +yu +Qq +Qq +Qq +Qq +Qq +zL +qy +IM +nv +lt +qy +aa +aG +"} +(19,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +aa +BF +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +BF +BF +BF +JJ +qM +JJ +aD +aD +aD +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +Xy +Xy +aU +aU +aU +aU +aU +BF +BF +SN +KG +SN +JG +ht +nX +JG +AQ +tL +TT +Qc +dc +KG +SN +As +KG +BF +BF +BF +BF +BF +BF +BF +BF +Qq +Uj +bm +tB +BP +dY +bm +fN +sE +sE +cn +Qq +zL +qy +Qq +bm +sE +Qq +aa +aG +"} +(20,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +aa +BF +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +JJ +BF +BF +BF +BF +BF +BF +JJ +BF +BF +BF +KG +aD +aD +aD +aD +aD +aD +aD +aD +BF +BF +JJ +KG +aD +aU +aU +aU +aU +Xy +BF +BF +KG +Mt +Bm +JG +eU +uA +JG +JG +JG +JG +JG +KG +KG +KG +KG +KG +BF +BF +BF +BF +aU +BF +BF +BF +Qq +rC +bm +tB +BP +dY +Mx +Ey +sE +sE +cn +Qq +zL +qy +Qq +bm +rC +Qq +aa +aG +"} +(21,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aD +KG +JJ +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +BF +KG +JJ +qM +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aD +aD +aD +aD +aD +aD +aD +Fk +aD +Xy +aU +aU +aU +aU +hZ +bG +SN +SN +gX +hl +JG +JG +Jw +KG +JG +JG +JG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Qq +sE +Jj +yN +Ef +Yf +Yf +Ey +sE +sE +cn +Yf +Yf +PN +Yf +Yf +sE +Qq +aa +aG +"} +(22,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aD +aD +Fk +Fk +aD +aD +aD +aD +aD +aD +aD +JJ +BF +BF +BF +BF +BF +kO +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +qM +JJ +aD +aD +aD +aD +aD +aD +Fk +md +aD +aD +aU +aU +Xy +aU +Wx +Dn +xG +gX +Bm +JG +tp +KG +KG +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Qq +ml +zL +Qq +qy +dY +Yf +Ey +sE +sE +WH +Yf +Qq +qy +dY +zL +wC +Qq +aa +aG +"} +(23,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +md +Fk +Fk +aD +aD +aD +aD +BF +JJ +qM +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +aD +BF +BF +aD +aD +Fk +aD +aD +aU +aU +aU +aU +aU +aU +Vh +Eo +Wi +SN +IY +KG +KG +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Qq +sE +zL +SD +BP +dY +Jj +Qq +Qq +Qq +Qq +Yf +tB +BP +BC +oK +sE +Qq +aa +aG +"} +(24,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aD +aD +md +Fk +Fk +aD +aD +BF +BF +BF +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +JJ +KG +aD +aU +aU +aU +aU +aU +Xy +aU +aU +Vh +Vh +KG +KG +KG +BF +BF +aD +Tw +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +wC +iK +NK +BP +Gj +Jm +wr +wr +Yf +Yf +Lt +eR +qy +gF +WB +wC +qy +aa +aG +"} +(25,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aD +aU +KG +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +KG +BF +BF +BF +JJ +qM +JJ +aU +aU +Xy +aU +aU +aU +aU +aU +aU +Vh +aU +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +qy +qy +qy +BP +BP +zU +qy +Bh +qy +qy +at +qy +qy +BP +BP +qy +qy +aa +aG +"} +(26,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +JJ +aU +aU +Xy +ib +Xy +Xy +aU +aU +aU +aU +aU +hZ +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +qy +Qq +PG +BP +xE +Qq +QB +dz +Qq +RW +BP +DY +bn +qy +aa +aa +aa +aG +"} +(27,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +JJ +qM +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aU +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +Xy +aU +aD +aU +aU +aU +aU +Xy +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +qy +eV +PG +La +Mx +Qq +mX +qE +Qq +nm +ZJ +aN +RF +qy +aa +aa +aa +aG +"} +(28,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aU +aU +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +aD +aU +aU +Xy +Xy +ib +Xy +Xy +aU +aU +aU +Xy +Xy +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +BP +eC +LT +qy +Qq +BP +BP +Bh +qy +at +qy +Bk +pL +qy +aa +aa +aa +aG +"} +(29,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +KG +KG +KG +KG +KG +KG +KG +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +aa +aU +aU +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +qM +JJ +aD +aD +aD +aU +aU +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +KB +Xy +UJ +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +BP +qy +qy +qy +Qq +Em +Qq +wr +Yf +uE +BP +BP +BP +qy +aa +aa +aa +aG +"} +(30,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +KG +JG +JG +JG +JG +JG +KG +KG +KG +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aa +aa +aU +aU +KG +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +BF +aD +aD +aD +aD +JJ +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aD +Fk +Fk +JJ +aU +aU +aU +BF +BF +BF +BF +BF +aa +aa +aa +qy +di +uc +uc +uc +uc +wr +uc +vR +uc +di +qy +aa +aa +aa +aa +aG +"} +(31,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +KG +KG +KG +JG +JG +JG +JG +QC +JG +QC +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aa +aU +aU +aU +aU +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +JJ +wU +JJ +aU +Xy +aU +aU +aU +aU +KB +aU +aD +Fk +Fk +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +BF +aa +qy +qy +qy +Qq +Qq +vw +Yf +Qq +Qq +BP +qy +qy +aa +aa +aa +aa +aG +"} +(32,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +JG +JG +JG +KG +KG +KG +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +KG +JJ +BF +BF +BF +BF +BF +aU +aU +aU +aD +Fk +Fk +aU +aU +aU +aU +aD +aD +BF +BF +BF +BF +BF +BF +BF +aa +BF +aU +BP +qy +Qq +sn +vK +Qq +BP +BP +aa +BF +BF +BF +BF +aa +aG +"} +(33,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +JG +JG +JG +JG +JG +ki +JG +oY +JG +JG +KG +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +Fk +aU +aU +aU +aU +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +Jg +hX +hJ +GE +Zg +QV +qy +aU +BF +BF +BF +BF +aa +aG +"} +(34,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +KG +JG +JG +JJ +JG +JG +JG +JG +zt +oY +JG +JG +aU +JJ +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aa +aU +aU +aU +aU +aU +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +Xy +aU +aU +aU +aU +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +yS +dz +DC +vw +Qq +Ew +qy +aU +BF +BF +BF +BF +aa +aG +"} +(35,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +KG +JG +JJ +Zj +JJ +JG +JG +JG +ev +JG +JG +JG +JJ +qM +JJ +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aU +aU +aU +aU +aU +aD +KG +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +Xy +aU +aD +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +BP +cO +UR +sz +Qq +qy +qy +BF +BF +BF +BF +BF +aa +aG +"} +(36,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +aU +Xy +Xy +aU +aU +aU +aU +aU +KG +JG +JG +JJ +JG +JG +JG +JG +zt +oY +JG +JG +aU +JJ +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +ib +Xy +Xy +aU +aU +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(37,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +KG +JG +JG +JG +JG +JG +ki +JG +oY +JG +JG +KG +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +aU +BF +KG +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(38,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +JG +JG +JG +KG +KG +KG +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aD +aD +aD +aD +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(39,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +KG +KG +KG +KG +KG +JG +JG +JG +JG +QC +JG +QC +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +aa +aa +aa +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +qM +JJ +aD +aD +JJ +wU +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(40,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +KG +JG +JG +JG +JG +JG +KG +KG +KG +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aD +aD +aD +BF +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(41,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +KG +KG +KG +KG +KG +KG +KG +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(42,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(43,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(44,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +KG +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(45,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +ib +Xy +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(46,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +aU +aU +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +JJ +aD +aD +aD +aD +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(47,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +Xy +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +qM +KG +Fk +Fk +aD +JJ +wU +JJ +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(48,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +Xy +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +aU +aU +BF +BF +JJ +aU +aD +Fk +Fk +aD +JJ +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(49,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aU +aU +aU +aU +aU +BF +aU +aU +md +aD +aD +Fk +Fk +JJ +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(50,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +Xy +aU +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +qM +JJ +Xy +aU +BF +aU +aU +aU +aK +aU +aU +md +aD +Fk +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(51,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aU +mW +aU +BF +Xy +aU +aU +aK +aU +aU +aD +aU +UJ +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(52,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +Xy +aU +aU +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +Xy +aU +BF +aU +BF +aU +aU +aU +WP +aK +mW +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(53,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +Xy +aU +aU +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +tS +aU +aU +BF +BF +BF +BF +BF +KG +aK +aD +aD +aU +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(54,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +Xy +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +aU +aU +aU +aU +BF +BF +BF +BF +KG +aD +aD +aK +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(55,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +ib +Xy +aU +BF +BF +BF +BF +BF +BF +BF +hZ +Xy +aD +BF +JJ +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(56,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +Xy +aU +aD +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +BZ +Xy +aU +aU +BF +BF +BF +aD +WT +aU +aK +aD +JJ +wU +nK +KG +KG +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +KG +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(57,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +aU +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +aD +aK +aU +aD +aD +aD +JJ +aD +aU +Cf +aD +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aG +"} +(58,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +iT +aD +BF +BF +BF +BF +BF +aU +JJ +Xy +KG +aD +nl +KG +BF +BF +BF +BF +aD +aK +JJ +aD +aD +aD +aD +aK +aK +WT +aD +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(59,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +YH +aD +YH +BF +BF +BF +BF +BF +JJ +qM +JJ +KG +aU +aU +aU +aK +aD +aD +aD +aD +HA +wU +JJ +LM +rg +aD +aD +aD +aD +aD +Xy +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aU +aa +aa +aa +BF +BF +BF +aU +BF +BF +BF +BF +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(60,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +YH +aD +YH +BF +BF +BF +BF +BF +BF +JJ +aU +KG +aU +aU +aU +BF +BF +BF +BF +aD +aD +gT +aK +WP +aD +aD +aD +BF +aD +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aU +aU +aU +aU +aa +aa +aa +BF +aU +BF +BF +BF +KG +aD +aD +aD +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(61,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +aU +BF +BF +Gd +aD +rg +aD +aD +aK +aD +aD +aD +aD +BF +BF +aD +aU +aU +aU +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +aD +aU +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(62,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +UW +QO +UW +BF +BF +BF +BF +BF +BF +BF +aU +KG +aU +aU +aD +bT +ta +OT +aD +aD +aD +aK +aK +aD +xI +aD +aD +BF +BF +Xy +Xy +aD +aD +aD +aD +BF +aD +BF +BF +BF +BF +BF +aD +aD +aU +aU +aa +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +aD +aU +Xy +Xy +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(63,1,1) = {" +aG +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +UW +UW +BF +BF +BF +UW +QO +UW +UW +wL +UW +aI +BF +BF +BF +JJ +aD +BF +aU +KG +aU +aU +BF +BF +JJ +BF +aD +aD +aD +aU +aD +rg +aD +BF +aD +BF +BF +Xy +ib +aD +aD +aD +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +aU +aU +aU +Xy +ib +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(64,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +Ow +Ow +Ow +UW +UW +UW +UW +UW +wL +UW +Ow +Ow +UW +aD +aD +aD +JJ +wU +JJ +aU +aU +aU +BF +BF +BF +JJ +wU +JJ +aD +aD +aD +aU +aD +aD +aD +BF +BF +BF +aK +aU +aD +aD +aD +aD +BF +BF +aD +BF +BF +BF +aD +aD +aD +aD +aD +aU +aU +aU +aU +aU +aU +aU +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +Xy +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(65,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +Ow +Ow +Ow +Ow +Ow +Ow +UW +Ow +Ow +Ow +Ow +Ow +UW +aD +aD +ta +BF +JJ +aD +aD +aU +aU +aU +aD +aD +aD +JJ +aD +aD +aD +aD +aU +aD +LM +aD +aD +aD +aD +aD +aU +aU +Xy +aD +BF +BF +BF +BF +BF +aD +BF +BF +BF +aD +aD +aU +aU +aU +aU +aU +aU +BF +BF +BF +aU +KN +KN +KN +KN +KN +aU +aU +aU +Xy +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(66,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +Ow +Ow +Ow +Ow +Ow +Ow +Ow +Ow +sp +Ow +Ow +Ow +pJ +aD +aD +aD +aD +aD +aD +OK +aD +aD +Hp +aK +aD +aD +aD +aD +aD +aD +aD +aU +aD +aD +aD +aD +aD +aD +aD +aU +aU +aU +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +aU +BF +aU +BF +BF +BF +BF +aU +aU +KN +Mc +KN +Mc +KN +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(67,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +Ow +Ow +Ow +Ow +Ow +Ow +UW +Ow +Ow +Ow +Ow +Ow +UW +aD +ta +aD +BF +JJ +ta +aD +aU +aU +aU +aU +aK +aK +JJ +aD +aD +aD +aU +aK +aK +aD +OT +BF +BF +BF +aD +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +aU +aU +KN +Nk +KN +Nk +KN +BP +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(68,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +Ow +Ow +Ow +UW +UW +UW +UW +UW +wL +UW +Ow +Ow +UW +aD +aD +aD +JJ +Mj +JJ +mW +BI +aU +aU +aU +BF +JJ +Mj +JJ +aD +aD +aU +aK +aK +aD +aD +aD +aD +aD +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +aU +aU +BP +Wk +Wk +Wk +rS +BP +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(69,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +UW +UW +BF +BF +BF +UW +QO +UW +UW +wL +UW +aI +BF +BF +BF +JJ +aD +aU +aU +aK +aD +aU +aU +BF +JJ +BF +aK +aD +aK +aK +aK +aD +aD +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aU +qy +Qq +aA +Qq +GC +qy +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(70,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +UW +QO +UW +BF +BF +BF +BF +BF +aU +aU +aU +aK +aD +aD +aD +aD +aD +aD +aD +aD +aK +aK +aK +ta +bT +BF +aD +aK +aU +Xy +Xy +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +BP +BP +qy +qy +qy +aa +qy +Qq +PG +PG +Jp +qy +BP +qy +BP +BP +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(71,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +UW +UW +UW +BF +BF +BF +BF +BF +aU +Xy +YX +Xy +aK +aD +aK +aD +Gc +aK +aK +aD +aK +aK +aK +xI +aD +aD +aD +aU +aU +Xy +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +Nd +Nd +Qq +Qq +qy +qy +qy +qy +qy +Qq +bX +BP +Qq +Qq +Qq +qy +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(72,1,1) = {" +aG +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +YH +aD +YH +BF +BF +BF +BF +BF +BF +JJ +aU +aU +aU +aU +aK +aD +aD +BF +BF +aD +aD +aK +aK +aD +aK +aD +aD +aD +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +Nd +Nd +Nd +Qq +Qq +Qq +mx +yX +qy +RY +bX +qy +Qq +Nd +Nd +qy +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(73,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +YH +aD +YH +BF +BF +BF +BF +BF +JJ +xU +JJ +aU +aU +aU +aU +aU +BF +BF +BF +aD +OT +JJ +BF +nl +aD +aD +aD +aU +WT +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +Qq +Nd +Nd +Nd +sE +Qq +sE +zN +BP +BP +YF +qy +Nk +Nf +Nk +BP +aa +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(74,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +iT +aD +BF +BF +BF +BF +BF +BF +JJ +aU +aU +aU +hZ +aU +aU +aU +BF +BF +aK +JJ +Mj +JJ +BF +BF +BF +BF +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +Qq +Qq +Nd +Qq +sE +Qq +Qq +Nd +pq +Nd +Nf +BP +Nd +Nf +Nd +BP +aa +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +aa +aG +"} +(75,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +aU +aU +Xy +aU +aU +aU +BF +BF +BF +aU +aU +aD +JJ +aU +BF +BF +aU +aU +Xy +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +Qq +Nd +Nd +Qq +sE +Qq +Qq +Qq +Qq +Qq +uc +ok +Nd +VI +Fe +BP +aa +aU +aU +aU +aU +Xy +Xy +Xy +aU +BF +BF +BF +aa +aG +"} +(76,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +BF +aD +aD +rg +aD +aD +BF +BF +aU +aU +Xy +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +Qq +Nd +Qq +Qq +sE +Qq +KO +BP +BP +Qq +Nf +Nk +uc +uc +Ss +BP +aa +aa +aa +aU +Xy +ib +Xy +Xy +Xy +aU +BF +BF +aa +aG +"} +(77,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +es +aU +BF +aU +aK +aD +aD +aU +BF +aU +aU +Xy +ib +Xy +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +qy +Nd +Qq +Qq +Qq +qy +BP +BP +qy +Qq +Nd +Nd +BP +qy +qy +qy +BP +BP +qy +aa +aU +Xy +Xy +aU +aU +aU +aU +BF +BF +aa +aG +"} +(78,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +KG +BF +aa +aa +BF +BF +aa +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +tS +aU +Xy +aU +aU +aU +aU +aK +aD +aD +aU +aU +Xy +Xy +Xy +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BP +BP +qy +qy +qy +qy +Ew +Ew +BP +BP +Nd +Nd +qy +ZN +NK +ZN +Nd +ZN +qy +aa +aU +aU +aU +aU +aU +aU +BF +BF +BF +aa +aG +"} +(79,1,1) = {" +aG +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aU +aa +aa +aa +BF +aa +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +xU +JJ +Xy +ib +Xy +aU +aU +aU +aD +aD +bO +aD +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BP +Qq +Qq +Ix +Qq +Nd +Nd +Qq +Qq +Qq +Qq +Qq +sE +qy +aa +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(80,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aU +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aU +Xy +Xy +Xy +aU +aU +aU +bO +aK +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aU +aU +BP +fa +Qq +Qq +Qq +Nd +Qq +Ij +Qq +Qq +EU +Qq +EU +qy +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(81,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aU +aa +aa +aa +aa +aa +aa +aa +aa +BF +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +Rw +aD +aD +aD +aD +aU +JG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +BP +Qq +Qq +sE +BP +Nd +Qq +cO +Nd +Qq +mU +Qq +ZN +BP +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(82,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +aU +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +xU +KG +aD +aD +aD +KG +NW +JG +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +BP +Qq +sE +HW +HW +hr +HW +HW +Nd +Nd +Nd +Qq +sE +qy +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aa +aG +"} +(83,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aU +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +BF +aD +aD +aD +BF +JG +BF +BF +BF +BF +aU +aU +KG +KG +JG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +qy +ZU +HW +HW +Qq +Qq +Qq +HW +HW +NK +EU +Qq +EU +qy +aa +aa +aa +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(84,1,1) = {" +aG +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aU +aU +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aU +qy +fa +HW +Qq +Qq +Qq +Qq +Qq +HW +BP +qy +qy +qy +BP +aa +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(85,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +KG +JG +JG +JG +JG +JG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aU +qy +ZU +HW +Qq +Qq +lo +Qq +Qq +HW +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(86,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +aU +BF +aU +aU +aU +aU +aU +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +JG +JG +JG +nL +JG +JG +JG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +HW +Qq +Qq +Qq +Qq +Qq +HW +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(87,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +aU +KG +JG +JG +JG +JG +JG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +HW +HW +Qq +Qq +Qq +HW +HW +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(88,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +aU +aU +aU +aU +aU +KG +KG +JG +JG +JG +KG +KG +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +HW +HW +HW +HW +HW +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(89,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +BF +BF +BF +BF +BF +BF +aU +aU +KG +KG +QC +KG +KG +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(90,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +KG +JG +KG +aU +aU +aU +aU +BF +JG +BF +BF +BF +BF +BF +BF +BF +BF +JG +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(91,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +JJ +aD +aD +aD +JJ +JG +BF +BF +BF +BF +BF +BF +JG +KG +QC +KG +aU +aU +aU +aU +JG +NW +JG +BF +BF +BF +BF +BF +BF +JG +NW +JG +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(92,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +xU +KG +Fk +Fk +Fk +KG +NW +JG +BF +BF +BF +BF +JG +NW +JG +aU +aU +aU +aU +aU +aU +aD +JG +BF +BF +BF +BF +BF +BF +BF +BF +JG +BF +BF +BF +BF +KG +aD +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(93,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +BF +aU +KB +aU +aU +JG +aU +BF +BF +BF +BF +aU +JG +aU +aU +aU +aU +aU +aU +aU +aU +BF +KG +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(94,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +aU +aU +aU +aU +aU +aU +KB +aU +aU +aU +aU +aD +aD +aD +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aU +Xy +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(95,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aD +aD +aD +aD +aD +aD +BF +BF +BF +aD +BF +BF +BF +BF +BF +aD +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(96,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aD +aU +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +KB +aD +KB +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(97,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +Xy +aU +aU +aU +aU +aU +aU +BF +aU +aU +aU +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(98,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +JJ +xU +JJ +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +aU +aU +aU +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +Fk +Fk +Fk +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(99,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +aD +KG +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +aU +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aU +aU +aU +aI +JG +KG +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +aU +aU +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +aD +aD +aD +JJ +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aG +"} +(100,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +KG +aD +aU +aU +aI +aI +aI +JG +aI +aI +aI +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +aa +aa +aG +"} +(101,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +BF +BF +BF +BF +aD +aD +aD +aD +aU +aU +aI +JG +aI +JG +aI +JG +aI +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(102,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aU +aU +aI +JG +JG +JG +JG +JG +aI +aU +aU +aU +Xy +Xy +aU +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(103,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aD +aD +aD +aD +aD +aD +aD +BF +BF +aD +aD +BF +BF +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +BF +aD +aD +aD +aD +aU +aI +aI +JG +JG +ev +JG +JG +aI +aI +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(104,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +md +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aU +aI +JG +JG +JG +JG +JG +JG +JG +aI +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(105,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +JJ +aI +JG +JG +JG +JJ +JG +JG +JG +aI +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +KG +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(106,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +JJ +xU +aI +JG +JG +JJ +IN +JJ +JG +JG +aI +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(107,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +QC +KG +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +JJ +aI +JG +JG +JG +JJ +JG +JG +JG +aI +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(108,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +Xy +ps +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +JG +KG +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aI +JG +JG +JG +JG +JG +JG +JG +aI +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aG +"} +(109,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +aU +Xy +ib +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +QC +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aI +aI +JG +JG +JG +JG +JG +aI +aI +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(110,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +aU +aU +aU +UH +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aI +aI +aI +aI +aI +aI +aI +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +KG +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(111,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +Xy +Xy +YS +aU +Xy +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +KG +JG +JG +JG +JG +JG +KG +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(112,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +aD +Tw +aD +aD +JG +JG +JG +FS +JG +JG +JG +aD +aD +Tw +aD +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(113,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +aU +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +KG +JG +JG +JG +JG +JG +KG +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aG +"} +(114,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +BF +aa +aa +aa +aU +aa +aU +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(115,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +KG +KG +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aU +BF +BF +BF +BF +BF +KG +KG +KG +KG +KG +aU +wf +aU +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(116,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +aD +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +aU +aU +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +aD +aD +aD +aD +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(117,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aD +aD +BF +BF +KG +KG +KG +JG +JG +JG +JG +JG +KG +aU +aU +aU +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +aU +aD +aD +aD +aD +KG +Xy +ib +Xy +aU +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aG +"} +(118,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +md +aD +aD +aD +Te +aD +QC +JG +JG +Xk +JG +JG +JG +aU +aU +aU +aU +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aD +aU +aD +aU +aU +aU +Xy +Xy +aU +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aG +"} +(119,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aD +aD +BF +BF +KG +KG +KG +JG +JG +JG +JG +JG +KG +aU +aU +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +Xy +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +BF +BF +aa +aa +aa +aa +aa +aG +"} +(120,1,1) = {" +aG +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +KG +KG +JG +JG +JG +KG +KG +aU +aa +aa +aa +aa +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +ib +Xy +Xy +aU +ah +aU +aU +aU +aU +aU +aU +aU +aU +Xy +Xy +aa +aa +aa +aG +"} +(121,1,1) = {" +aG +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 +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +KG +KG +JG +KG +KG +BF +aU +aU +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +Xy +Xy +aU +aU +aU +Kd +aD +aU +ah +aU +aU +aa +aa +aa +aG +"} +(122,1,1) = {" +aG +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 +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +JG +BF +BF +BF +BF +BF +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +ib +Xy +Xy +Xy +aU +aD +aD +aD +aU +aU +aU +aa +aa +aa +aG +"} +(123,1,1) = {" +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +Xy +aU +aU +aD +aD +cl +aD +aD +aU +aU +aU +aa +aa +aG +"} +(124,1,1) = {" +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +Tw +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aU +aU +aU +aU +rk +aD +aD +Xy +aU +aU +aU +aa +aa +aG +"} +(125,1,1) = {" +aG +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aD +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +BF +BF +BF +BF +BF +BF +aU +ah +aU +aD +aU +Kd +aU +aU +Xy +aa +aa +aG +"} +(126,1,1) = {" +aG +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 +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 +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aU +aU +aU +aU +aU +aU +aU +aU +aU +aa +aa +aa +aa +aG +"} +(127,1,1) = {" +aG +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +BF +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aU +Xy +Xy +Xy +aa +aa +aa +aa +aG +"} +(128,1,1) = {" +aG +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aG +"} +(129,1,1) = {" +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +aG +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl4_b.dmm b/_maps/away/modular_maps/caves/caves_lvl4_b.dmm new file mode 100644 index 000000000000..49985ce64f5b --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl4_b.dmm @@ -0,0 +1,16849 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"as" = ( +/turf/closed/indestructible/necropolis, +/area/template_noop) +"aM" = ( +/turf/closed/indestructible/bronze, +/area/template_noop) +"aN" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"bi" = ( +/obj/structure/clockcult_tower/source{ + id = "clock2" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"bn" = ( +/obj/structure/clockwork_vent, +/turf/open/floor/bronze, +/area/template_noop) +"bB" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/template_noop) +"bD" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"cl" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"cP" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"dl" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/indestructible/necropolis, +/area/template_noop) +"dG" = ( +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"dH" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"dX" = ( +/obj/structure/fluff/clockwork/blind_eye, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"eu" = ( +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"eI" = ( +/obj/machinery/light/red/directional/north, +/turf/open/floor/plating, +/area/template_noop) +"eL" = ( +/mob/living/simple_animal/hostile/lizard{ + dir = 8; + name = "Breaks-Game-Balance"; + faction = list("clockwork") + }, +/turf/open/floor/plating, +/area/template_noop) +"fl" = ( +/mob/living/simple_animal/hostile/clockwork, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"fH" = ( +/obj/effect/bump_teleporter{ + id = "lvl4spawn"; + name = "lvl4 spawn" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"fI" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"fT" = ( +/obj/structure/clockcult_tower/source{ + id = "clock4" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"gt" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"gE" = ( +/obj/structure/clockcult_tower{ + beam_range = 7; + id = "clock3" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"gK" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"hb" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ic" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"jD" = ( +/obj/structure/girder/bronze, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jJ" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"km" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"kD" = ( +/obj/structure/fluff/big_chain{ + pixel_y = 16 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"kL" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"kM" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/mob/living/simple_animal/hostile/clockwork, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"li" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden{ + dir = 4 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"lD" = ( +/obj/structure/clockcult_tower/target, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"mw" = ( +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"mB" = ( +/obj/structure/table/bronze, +/obj/item/weldingtool, +/turf/open/floor/bronze, +/area/template_noop) +"nB" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/template_noop) +"nL" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"nX" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/obj/structure/fluff/clockwork/alloy_shards/medium, +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"oa" = ( +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"pe" = ( +/turf/open/floor/plating, +/area/template_noop) +"pC" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/orange{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/template_noop) +"ql" = ( +/obj/structure/table/bronze, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"qN" = ( +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/floor/plating, +/area/template_noop) +"qT" = ( +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"rf" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"rh" = ( +/obj/machinery/light/red/directional/south, +/turf/open/floor/bronze, +/area/template_noop) +"sa" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"se" = ( +/mob/living/simple_animal/hostile/clockwork, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"sn" = ( +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"sF" = ( +/obj/machinery/power/floodlight, +/turf/open/floor/bronze, +/area/template_noop) +"sG" = ( +/mob/living/simple_animal/hostile/lizard{ + dir = 8; + name = "Lays-The-Floor"; + faction = list("clockwork") + }, +/turf/open/floor/plating, +/area/template_noop) +"sY" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"tc" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/obj/structure/girder/bronze, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tj" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/orange{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/template_noop) +"tu" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"tY" = ( +/obj/structure/flora/rock/pile, +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"uA" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"uL" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"uR" = ( +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"uT" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/indestructible/necropolis, +/area/template_noop) +"uU" = ( +/obj/machinery/door/airlock/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"vC" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"wx" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden{ + dir = 8 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"wI" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"xc" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"xj" = ( +/obj/structure/flora/rock/pile, +/turf/open/indestructible/necropolis, +/area/template_noop) +"yg" = ( +/obj/structure/flora/rock, +/turf/open/indestructible/necropolis, +/area/template_noop) +"zg" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"As" = ( +/obj/item/candle, +/obj/item/candle{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"AH" = ( +/obj/structure/flora/ash/stem_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ct" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"CO" = ( +/obj/item/candle, +/obj/item/candle{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"CS" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/mob/living/simple_animal/hostile/clockminer{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Da" = ( +/obj/modular_map_connector, +/turf/closed/indestructible/rock, +/area/template_noop) +"Df" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"Dy" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"Dz" = ( +/obj/item/candle/infinite{ + light_range = 5 + }, +/turf/open/floor/plating, +/area/template_noop) +"DO" = ( +/mob/living/simple_animal/hostile/clockminer/spear, +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ej" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/tile/bronze{ + amount = 25 + }, +/turf/open/floor/plating, +/area/template_noop) +"EG" = ( +/obj/item/wrench, +/turf/open/floor/bronze, +/area/template_noop) +"Fc" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Fq" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Fs" = ( +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Gk" = ( +/obj/structure/fluff/clockwork/alloy_shards/small, +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"Gl" = ( +/obj/structure/clockcult_tower, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"HI" = ( +/obj/machinery/light/red/directional/north, +/turf/open/floor/bronze, +/area/template_noop) +"Ic" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/orange, +/turf/open/floor/bronze, +/area/template_noop) +"Il" = ( +/obj/structure/fluff/clockwork/alloy_shards, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"IX" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Kk" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Lk" = ( +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Lr" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Mf" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"My" = ( +/obj/structure/clockcult_tower/source{ + id = "clock3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Ne" = ( +/obj/item/food/cheese_sandwich{ + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/template_noop) +"Nw" = ( +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"NC" = ( +/turf/open/indestructible/necropolis, +/area/template_noop) +"NX" = ( +/obj/structure/fluff/clockwork/alloy_shards/medium, +/obj/structure/flora/ash/cacti, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Pe" = ( +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/orange, +/turf/open/floor/bronze, +/area/template_noop) +"PW" = ( +/obj/structure/bed, +/obj/structure/bed{ + dir = 8 + }, +/obj/item/bedsheet/orange, +/turf/open/floor/bronze, +/area/template_noop) +"Qn" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"QA" = ( +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/bronze, +/area/template_noop) +"QF" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"QS" = ( +/obj/item/candle, +/obj/item/trash/candle{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Rq" = ( +/mob/living/simple_animal/hostile/lizard{ + name = "Builds-The-Arena"; + faction = list("clockwork") + }, +/turf/open/floor/bronze, +/area/template_noop) +"Rt" = ( +/mob/living/simple_animal/hostile/boss/clockmaster/map_maker{ + aggro_vision_range = 5 + }, +/turf/open/floor/bronze, +/area/template_noop) +"RQ" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Si" = ( +/obj/item/candle/infinite{ + light_range = 5 + }, +/turf/open/floor/bronze, +/area/template_noop) +"Sp" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"SO" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"SY" = ( +/obj/structure/dead_ratvar, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Tk" = ( +/obj/structure/clockcult_tower/source, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Ur" = ( +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"UN" = ( +/mob/living/simple_animal/hostile/clockminer{ + dir = 1 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Ve" = ( +/obj/item/clothing/head/helmet/chaplain/clock, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Vu" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/obj/structure/fluff/clockwork/fallen_armor, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"VL" = ( +/obj/structure/clockcult_tower{ + id = "clock2" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"VV" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Wd" = ( +/obj/structure/clockcult_tower{ + id = "clock3" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Wg" = ( +/obj/structure/table/bronze, +/obj/item/candle/infinite{ + light_range = 5 + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"WK" = ( +/obj/machinery/door/airlock/bronze, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/bronze, +/area/template_noop) +"WT" = ( +/mob/living/simple_animal/hostile/lizard{ + dir = 8; + name = "Takes-Excessive-Breaks"; + faction = list("clockwork") + }, +/obj/structure/chair/stool/directional/west, +/turf/open/floor/plating, +/area/template_noop) +"WV" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"XF" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"XQ" = ( +/obj/structure/spawner/lavaland/goliath, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Yk" = ( +/obj/structure/fluff/clockwork/blind_eye, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Yx" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id_target = "riftexit"; + name = "boss arena exit" + }, +/turf/open/floor/bronze, +/area/template_noop) +"YL" = ( +/obj/effect/decal/fakelattice{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ratvargrille"; + name = "bronze lattice" + }, +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"YT" = ( +/obj/structure/spawner/lavaland/icewatcher, +/turf/open/indestructible/necropolis, +/area/template_noop) +"Za" = ( +/obj/structure/fluff/clockwork/alloy_shards/large, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Zc" = ( +/obj/item/trash/candle{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/candle, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ZC" = ( +/obj/item/stack/tile/bronze, +/turf/open/floor/plating, +/area/template_noop) +"ZT" = ( +/obj/structure/spawner/lavaland/legion, +/turf/open/indestructible/necropolis, +/area/template_noop) +"ZX" = ( +/turf/open/floor/bronze, +/area/template_noop) + +(1,1,1) = {" +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +Da +"} +(2,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(3,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +AH +Mf +Mf +AH +Mf +gK +gK +gK +IX +Dy +Dy +Dy +Dy +Dy +Dy +Mf +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +QF +"} +(4,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Mf +Mf +gK +Mf +Mf +AH +Mf +Mf +gK +gK +Dy +Dy +Mf +Mf +Mf +Mf +gK +oa +oa +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +QF +"} +(5,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +Mf +Mf +AH +gK +gK +gK +Mf +Mf +Mf +Mf +AH +AH +Dy +AH +AH +AH +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +gK +IX +oa +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +QF +"} +(6,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +Mf +Mf +AH +Mf +Mf +Mf +gK +gK +IX +Dy +Dy +Dy +Dy +Dy +gK +Dy +Dy +Dy +Dy +Dy +gK +gK +Mf +Mf +gK +Mf +Mf +Mf +gK +gK +oa +Mf +Mf +Mf +Mf +Mf +Mf +gK +Dy +Nw +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +QF +"} +(7,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +IX +gK +Mf +Mf +Mf +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +oa +Mf +Mf +oa +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +IX +gK +gK +Dy +Dy +Dy +Mf +Nw +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +Mf +Dy +Dy +QF +"} +(8,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Mf +Mf +gK +gK +gK +NC +Mf +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +IX +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +bD +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +Mf +gK +gK +gK +gK +Mf +Mf +gK +Mf +Mf +as +as +Mf +Nw +as +as +Dy +Dy +Dy +Mf +Mf +gK +gK +Mf +Dy +Dy +QF +"} +(9,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +NC +NC +NC +NC +gK +gK +NC +Mf +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +bD +oa +oa +Dy +Dy +Mf +Mf +Mf +oa +oa +bD +Dy +Dy +Dy +IX +gK +gK +Mf +Mf +Nw +gK +as +NC +NC +NC +NC +as +Dy +Dy +Dy +Dy +gK +IX +gK +Mf +Dy +Dy +QF +"} +(10,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +gK +Mf +Mf +as +as +Mf +NC +xj +NC +NC +gK +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +bD +bD +Dy +Dy +Mf +gK +gK +Mf +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Nw +NC +NC +gK +gK +gK +Dy +Dy +gK +gK +Mf +Mf +Mf +Dy +QF +"} +(11,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Mf +Mf +Mf +Mf +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +as +Mf +NC +xj +NC +NC +xj +Mf +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +gK +gK +IX +gK +gK +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +Mf +Mf +Mf +Mf +Mf +xj +xj +xj +IX +gK +Dy +Dy +gK +Mf +Mf +Mf +Mf +Dy +QF +"} +(12,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Mf +Mf +Mf +Mf +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +NC +NC +Mf +NC +NC +NC +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +gK +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +Mf +Mf +oa +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Mf +Mf +Mf +Mf +NC +gK +gK +Dy +as +as +Mf +Mf +Mf +Mf +Dy +QF +"} +(13,1,1) = {" +QF +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +gK +IX +gK +Mf +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +NC +NC +NC +XQ +NC +NC +NC +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +oa +oa +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +Mf +Mf +NC +Mf +gK +Dy +Mf +NC +NC +xj +NC +gK +gK +QF +"} +(14,1,1) = {" +QF +Dy +bD +bD +Mf +Mf +gK +Mf +Mf +gK +gK +Mf +oa +oa +Mf +Mf +Dy +Dy +bD +bD +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Fc +Mf +gK +Mf +Mf +Mf +NC +xj +xj +NC +NC +Mf +as +as +Dy +Dy +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +Mf +Mf +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +gK +NC +NC +NC +NC +NC +NC +Mf +Mf +Mf +gK +IX +QF +"} +(15,1,1) = {" +QF +Dy +bD +oa +oa +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +bD +bD +Mf +uL +uL +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Mf +gK +gK +Mf +Fc +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +nB +NC +IX +xj +xj +NC +NC +NC +as +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +bD +gK +Mf +gK +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +as +as +NC +NC +NC +YT +uT +Nw +Mf +Nw +Mf +gK +gK +gK +gK +QF +"} +(16,1,1) = {" +QF +Dy +bD +oa +oa +oa +oa +oa +oa +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Dy +Dy +Dy +Dy +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Fc +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +nB +nB +nB +nB +nB +gK +gK +xj +Mf +NC +NC +NC +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +oa +Mf +Mf +gK +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +as +NC +NC +NC +NC +xj +xj +Mf +Nw +Mf +Mf +Mf +Mf +Dy +Dy +QF +"} +(17,1,1) = {" +QF +Dy +Dy +oa +Mf +Mf +oa +Mf +oa +oa +oa +oa +oa +Mf +Mf +Mf +oa +fl +Mf +uL +oa +oa +Mf +Mf +bD +bD +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +Mf +Mf +Mf +Fc +Fc +Mf +Mf +Mf +Mf +Mf +gK +gK +gK +Fc +Mf +Mf +nB +nB +nB +nB +as +NC +Mf +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +Mf +Mf +Mf +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +as +as +gK +gK +gK +yg +xj +gK +Mf +Mf +Mf +Mf +Mf +Dy +Dy +QF +"} +(18,1,1) = {" +QF +Dy +Dy +oa +Mf +oa +oa +Mf +Mf +Mf +Mf +oa +Mf +Mf +bD +bD +bD +uL +Mf +Mf +Mf +oa +Mf +Mf +bD +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +IX +gK +Mf +Mf +Mf +nB +nB +nB +nB +as +as +nB +nB +Mf +Mf +gK +gK +IX +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +oa +oa +oa +oa +oa +bD +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +xj +xj +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(19,1,1) = {" +QF +Dy +Dy +Dy +Mf +oa +Mf +Mf +Mf +Mf +bD +oa +Mf +bD +bD +oa +bD +bD +bD +gK +Mf +oa +uL +Mf +eu +oa +uL +Wg +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +gK +gK +Mf +gK +Mf +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +Mf +gK +gK +gK +Mf +Mf +Lk +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +gK +oa +Mf +bD +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +as +NC +NC +NC +as +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(20,1,1) = {" +QF +Dy +Dy +Dy +Mf +oa +gK +Mf +Mf +bD +bD +uR +oa +oa +oa +oa +oa +oa +bD +bD +Mf +oa +Mf +Mf +uL +oa +oa +Mf +gK +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Fc +Fc +Mf +Mf +Mf +Mf +Mf +nB +nB +nB +nB +nB +nB +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Lk +Lk +Mf +gK +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Mf +Mf +Mf +oa +Mf +Mf +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +as +as +as +as +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(21,1,1) = {" +QF +Dy +bD +oa +Mf +oa +Mf +gK +Mf +bD +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +Mf +oa +Mf +oa +uL +oa +Mf +Mf +uL +IX +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +Mf +gK +Mf +Mf +Mf +Lk +Mf +Mf +Mf +gK +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +oa +oa +Mf +Mf +oa +Mf +Mf +Mf +Mf +Lk +Lk +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(22,1,1) = {" +QF +bD +oa +oa +oa +oa +oa +oa +oa +bD +oa +oa +oa +oa +oa +fT +oa +oa +oa +oa +oa +Fs +oa +Sp +oa +oa +oa +oa +oa +gK +uL +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +IX +gK +gK +nB +nB +nB +nB +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +oa +Mf +oa +oa +oa +oa +oa +oa +Mf +gK +gK +Mf +Mf +Lk +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(23,1,1) = {" +QF +Dy +bD +oa +Mf +gK +oa +oa +Mf +bD +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +Mf +oa +uL +oa +Mf +Mf +oa +uL +oa +oa +oa +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +Mf +Mf +Mf +nB +nB +Mf +Mf +Mf +Mf +Mf +gK +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +Mf +Mf +Mf +nB +nB +Mf +Mf +Mf +Mf +Mf +gK +gK +IX +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(24,1,1) = {" +QF +Dy +bD +bD +gK +IX +gK +oa +Mf +bD +bD +uR +oa +oa +oa +oa +oa +oa +bD +bD +Mf +oa +Mf +Mf +eu +Wg +oa +uL +Mf +oa +Sp +oa +Mf +bD +bD +bD +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +gK +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +IX +gK +gK +Mf +nB +nB +nB +nB +Mf +Mf +Mf +Mf +Mf +gK +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(25,1,1) = {" +QF +Dy +Dy +Dy +gK +gK +gK +oa +Mf +Mf +bD +oa +Mf +bD +bD +oa +bD +bD +bD +Mf +uL +oa +Mf +Mf +Mf +bD +oa +oa +Mf +oa +oa +uL +Mf +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +gK +IX +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +gK +gK +Mf +Mf +Mf +gK +gK +gK +Mf +nB +nB +nB +nB +nB +nB +nB +Dy +gK +Mf +Mf +Lk +Lk +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(26,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Mf +oa +Mf +Mf +Mf +oa +Mf +Mf +bD +bD +bD +uL +Mf +Mf +Mf +oa +Mf +Mf +Mf +bD +bD +oa +Mf +Mf +oa +oa +oa +oa +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +Mf +Dy +Dy +Dy +Dy +bD +bD +bD +Dy +Dy +bD +bD +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +gK +Mf +Mf +Mf +Mf +Mf +Mf +gK +Dy +gK +gK +IX +gK +gK +gK +Lk +Mf +Mf +Mf +Mf +nB +nB +nB +nB +Dy +nB +Dy +Dy +gK +gK +Mf +Lk +Lk +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(27,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Mf +oa +Mf +oa +oa +oa +oa +Mf +Mf +Mf +oa +kM +Mf +Mf +oa +oa +Mf +gK +gK +Dy +Dy +oa +Mf +Mf +uL +gK +oa +uL +uL +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +IX +gK +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +gK +Mf +oa +oa +bD +Dy +gK +gK +IX +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +gK +Mf +Lk +Lk +Mf +Mf +nB +nB +nB +Dy +Dy +nB +Dy +Dy +Dy +Dy +IX +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(28,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Mf +oa +oa +oa +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +oa +uL +Mf +IX +gK +Dy +Dy +Dy +gK +Mf +oa +oa +oa +oa +oa +Mf +Mf +Mf +Wg +Dy +Dy +bD +li +gK +Mf +gK +Dy +bD +bD +Wg +Mf +Mf +oa +Mf +Mf +Mf +oa +oa +Dy +Mf +Mf +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Lk +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(29,1,1) = {" +QF +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +bD +bD +Mf +uL +uL +Mf +gK +gK +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +uL +oa +oa +Mf +Mf +Mf +Mf +Mf +Qn +Mf +Mf +Mf +Mf +bD +oa +oa +Mf +Mf +oa +oa +oa +Mf +uL +uL +oa +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(30,1,1) = {" +QF +Dy +Dy +Dy +Dy +bD +oa +oa +oa +Mf +Mf +Mf +Mf +gK +Mf +Mf +Dy +Dy +bD +bD +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Dy +Dy +IX +uL +oa +uL +oa +Mf +Mf +DO +Qn +uL +Mf +Mf +Mf +oa +oa +Mf +Mf +uL +Mf +Mf +oa +Mf +oa +oa +oa +oa +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(31,1,1) = {" +QF +Dy +Dy +Dy +Dy +bD +bD +bD +bD +Dy +Dy +Dy +gK +IX +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +oa +oa +Sp +oa +oa +Qn +Qn +uL +gK +Mf +oa +Mf +oa +Mf +Mf +oa +oa +oa +Sp +cP +oa +gK +Mf +oa +oa +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +Mf +Dy +Dy +Mf +Mf +gK +gK +gK +IX +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(32,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +oa +Mf +Mf +Qn +oa +oa +oa +oa +Sp +cP +oa +oa +oa +se +oa +oa +oa +Mf +Mf +Mf +Mf +uL +oa +Mf +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +gK +gK +gK +Mf +Mf +Mf +Mf +Mf +Mf +Dy +nB +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(33,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Wg +Mf +Mf +Mf +Qn +Qn +Mf +oa +Mf +Mf +oa +oa +oa +uL +Mf +oa +uL +Mf +Mf +Mf +Mf +Mf +Mf +uL +oa +Mf +Dy +Dy +Dy +Mf +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +nB +Dy +Dy +Mf +gK +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Mf +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(34,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +eu +Qn +Qn +Mf +Mf +oa +oa +uL +uL +Mf +Mf +Mf +oa +oa +Mf +Mf +Mf +Mf +Dy +Dy +Mf +oa +Sp +cP +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +nB +Dy +Mf +gK +IX +gK +gK +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(35,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Qn +oa +Mf +Mf +Mf +oa +Mf +Mf +Mf +oa +oa +oa +Mf +Mf +gK +gK +Dy +Dy +Dy +Dy +uL +oa +Mf +Mf +Mf +Mf +Dy +Mf +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +nB +nB +nB +Mf +Dy +nB +Dy +Mf +gK +gK +Mf +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(36,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Kk +Mf +Mf +uL +oa +oa +bD +Dy +bD +oa +oa +Wg +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +oa +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +gK +gK +Mf +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(37,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +IX +gK +gK +Mf +Mf +oa +oa +bD +Dy +bD +bD +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +oa +oa +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +gK +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(38,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +nB +nB +Mf +Dy +bD +bD +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +bD +Dy +oa +Dy +IX +gK +Mf +oa +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +nB +bD +bD +oa +bD +bD +Mf +gK +gK +Dy +nB +nB +nB +Dy +Dy +Mf +gK +gK +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(39,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +oa +oa +oa +oa +dX +oa +oa +oa +oa +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +Mf +Mf +oa +Mf +Mf +gK +IX +gK +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(40,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +Dy +gK +Mf +rf +oa +uL +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +bD +bD +Mf +oa +Mf +bD +bD +gK +Mf +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(41,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +oa +Mf +oa +oa +oa +Wg +Dy +Dy +Dy +oa +bD +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +bD +Mf +bD +uR +Mf +oa +Mf +uR +bD +Mf +bD +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(42,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +Wg +oa +Sp +cP +oa +gK +oa +oa +oa +oa +oa +oa +oa +bD +Dy +Dy +Mf +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +bD +Mf +Mf +oa +oa +oa +oa +oa +Mf +Mf +bD +Dy +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(43,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +oa +oa +Mf +oa +Mf +Mf +Mf +Lr +Mf +Dy +oa +bD +Dy +Dy +Dy +Mf +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +oa +uL +uL +uL +oa +Tk +oa +uL +uL +uL +oa +Dy +Dy +nB +Dy +Dy +Dy +AH +AH +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(44,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +bD +bD +Dy +Dy +bD +bD +sY +uL +oa +oa +oa +oa +oa +Mf +mw +oa +oa +oa +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Mf +Mf +bD +Mf +Mf +oa +oa +oa +oa +oa +Mf +Mf +bD +Dy +Dy +nB +Dy +Dy +Dy +AH +AH +AH +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(45,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +bD +bD +tj +tj +tj +bD +bD +bD +Dy +Dy +gK +gK +Mf +gK +rf +oa +Mf +oa +oa +oa +oa +bD +bD +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +gK +Mf +bD +Mf +bD +uR +Mf +oa +Mf +uR +bD +Mf +bD +Dy +nB +nB +nB +Dy +Mf +Mf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(46,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +tj +ZX +ZX +ZX +tj +ZX +bD +Wg +Mf +Mf +Ct +Mf +gK +oa +oa +oa +Mf +uL +oa +oa +jD +bD +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Mf +gK +Mf +Mf +Mf +bD +bD +Mf +oa +Mf +bD +bD +Mf +Mf +Mf +Dy +nB +nB +Dy +Mf +gK +IX +gK +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(47,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +ZX +ZX +ZX +ZX +ZX +ZX +WK +Mf +Mf +oa +oa +oa +oa +oa +oa +sa +oa +oa +IX +gK +Mf +Dy +Dy +Mf +Dy +Dy +Dy +Mf +nB +nB +nB +nB +nB +nB +Dy +nB +nB +nB +nB +Dy +Mf +gK +IX +gK +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +Dy +nB +nB +Dy +Mf +gK +gK +Mf +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(48,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +ZX +ZX +ZX +ZX +ZX +ZX +WK +Mf +Mf +IX +gK +oa +uL +oa +Mf +uL +Mf +Za +gK +oa +uL +Mf +gK +Mf +Mf +Mf +Dy +Dy +nB +nB +nB +Dy +nB +nB +Dy +nB +nB +nB +nB +Mf +Mf +oa +gK +Mf +Mf +Mf +Mf +bD +bD +oa +bD +bD +Mf +Mf +gK +Mf +Dy +nB +nB +Dy +Mf +Mf +Mf +Mf +Dy +Mf +AH +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(49,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Pe +ZX +ZX +ZX +Pe +ZX +bD +Wg +Mf +uL +oa +Mf +Mf +oa +oa +uL +oa +oa +oa +oa +uL +Mf +bD +bD +Dy +Mf +Mf +Mf +Dy +nB +nB +Mf +Mf +Dy +Dy +nB +Dy +nB +nB +nB +oa +Kk +oa +Wg +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +gK +gK +Dy +nB +nB +Dy +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(50,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Pe +Pe +Pe +bD +bD +bD +oa +oa +oa +ad +cP +Mf +oa +Mf +oa +oa +oa +Mf +oa +Mf +Mf +oa +bD +bD +Dy +Dy +Mf +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +oa +nB +Mf +Mf +gK +Mf +Mf +oa +Gl +oa +Mf +Mf +gK +IX +gK +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(51,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +bD +bD +bD +oa +oa +oa +oa +oa +Ct +uL +oa +oa +uL +Za +fI +wI +oa +oa +uL +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +Mf +Mf +eu +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +gK +Dy +Dy +Dy +nB +Dy +Dy +Mf +AH +AH +Dy +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(52,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Lk +oa +uL +uL +oa +dH +oa +Mf +oa +Mf +Mf +Mf +gt +Mf +oa +oa +oa +oa +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +Mf +Mf +Mf +Mf +Dy +Dy +nB +nB +Dy +Dy +Dy +AH +AH +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(53,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +gK +oa +uL +Za +oa +oa +oa +uL +oa +oa +oa +uL +oa +oa +oa +oa +oa +oa +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +uL +Mf +Mf +se +oa +oa +Mf +Mf +Wg +Dy +Mf +Mf +Dy +Dy +nB +Dy +Dy +Dy +AH +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(54,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Lk +Lk +oa +fI +oa +oa +uL +oa +Il +oa +oa +oa +oa +oa +oa +uL +tu +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +uL +oa +oa +oa +Mf +Mf +Mf +Mf +oa +Dy +Mf +Mf +Dy +nB +nB +nB +Dy +Dy +Dy +gK +Mf +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(55,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +oa +Mf +Lk +oa +oa +Mf +Mf +uL +oa +uL +Mf +gK +uL +oa +Mf +Mf +oa +uL +tc +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +oa +oa +Mf +Mf +Mf +gK +Mf +oa +Fq +oa +Mf +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +gK +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(56,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +Sp +cP +uL +Mf +Mf +uL +Mf +Mf +oa +oa +gK +oa +oa +oa +oa +oa +oa +oa +oa +uL +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +uL +oa +Gl +oa +Mf +Mf +Dy +Mf +Mf +Mf +oa +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +gK +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(57,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +qT +fI +oa +Mf +Mf +gt +Mf +oa +Gl +cP +gK +gK +oa +oa +oa +oa +Mf +oa +oa +oa +oa +oa +oa +bD +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +oa +oa +oa +uL +Mf +IX +Dy +Mf +Mf +Mf +Dy +Dy +Dy +nB +nB +nB +nB +nB +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(58,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +sY +Dy +bD +Mf +Mf +oa +oa +oa +Gl +cP +oa +oa +Mf +Mf +Lr +oa +oa +IX +gK +Mf +oa +Gl +cP +RQ +Mf +Mf +uL +oa +bD +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +bD +bD +Qn +YL +oa +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Mf +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(59,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +oa +oa +oa +Mf +Mf +Mf +oa +oa +Mf +oa +bD +bD +oa +Mf +uL +uL +bD +oa +bD +bD +uL +oa +oa +oa +oa +oa +fI +Mf +bD +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +li +Qn +Qn +oa +Mf +Mf +Mf +nB +Dy +nB +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(60,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +oa +Mf +oa +RQ +oa +uL +gK +bD +bD +Mf +oa +bD +bD +oa +oa +oa +oa +bD +bD +oa +oa +oa +oa +sY +bD +Mf +bD +bD +Dy +Dy +Dy +Dy +Mf +Mf +Dy +bD +bD +Dy +gK +Mf +Qn +Qn +eu +Mf +nB +nB +nB +nB +nB +nB +Dy +Dy +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Mf +Mf +xj +xj +gK +IX +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(61,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +aM +aM +aM +aM +aM +aM +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Mf +Dy +Dy +bD +Dy +bD +oa +oa +oa +Za +Sp +cP +Mf +Mf +bD +oa +oa +uL +uL +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +uL +Mf +bD +oa +uL +bD +Dy +Dy +Dy +Dy +Dy +Mf +bD +oa +bD +IX +gK +oa +oa +Qn +Qn +bD +nB +nB +nB +nB +Dy +nB +nB +nB +nB +nB +nB +Dy +Mf +Mf +Mf +Mf +NC +NC +NC +Mf +gK +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(62,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +ZX +pe +ZC +pe +pe +ZX +aM +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +Mf +Mf +Mf +Dy +oa +uL +uL +Wg +Mf +oa +oa +Za +oa +oa +Mf +oa +Il +oa +oa +oa +oa +oa +oa +oa +oa +SY +oa +oa +oa +oa +sY +oa +Mf +Mf +oa +uL +Mf +Dy +Dy +bD +bD +Dy +Mf +Dy +Wg +oa +gK +Mf +oa +Mf +Mf +li +bD +Dy +Dy +Dy +nB +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Mf +Mf +xj +NC +NC +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(63,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +ZX +ZX +qN +sG +pe +pe +rh +aM +aM +aM +aM +Dy +aM +aM +aM +aM +gK +IX +Mf +Mf +oa +oa +gK +Mf +oa +oa +oa +oa +oa +Gl +cP +bD +sY +uL +oa +gK +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +bD +uL +Mf +oa +oa +oa +oa +bD +bD +oa +oa +bD +Mf +Mf +Mf +oa +Mf +oa +Gl +cP +Mf +Wg +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +nB +nB +nB +Dy +Mf +Mf +NC +NC +NC +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(64,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +HI +bn +sF +ZX +ZX +ZX +ZX +pe +pe +pe +aM +aM +aM +ZX +ZX +aM +gK +gK +Mf +Mf +oa +Mf +oa +oa +oa +IX +Mf +oa +oa +oa +oa +Mf +uL +oa +oa +uL +uL +oa +oa +oa +oa +oa +Wg +oa +Lr +SO +oa +oa +Mf +oa +uL +oa +oa +bD +bD +oa +oa +oa +Mf +Mf +uL +oa +Mf +Mf +oa +Mf +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +as +gK +NC +NC +NC +Mf +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(65,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +aM +aM +Dy +Dy +aM +jJ +bn +Rq +jJ +Si +mB +ZX +pe +pe +pe +aM +ZX +ZX +ZX +rh +aM +aM +Mf +Mf +Mf +oa +uL +Sp +uL +Mf +Mf +uL +cl +gK +Mf +Mf +Mf +oa +oa +oa +uL +oa +oa +oa +oa +oa +oa +ql +Wg +oa +hb +oa +SO +oa +Gl +cP +Mf +Wg +uL +uL +oa +oa +Gl +cP +Mf +Mf +oa +oa +uL +oa +rf +oa +IX +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Dy +as +xj +xj +XQ +xj +yg +xj +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(66,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +HI +ZX +aM +aM +aM +aM +ZX +bn +ZX +EG +ZX +eL +pe +pe +pe +ZC +aM +ZX +ZX +ZX +ZX +aM +aM +aM +Kk +Mf +oa +oa +Gl +cP +Mf +oa +oa +oa +Mf +gK +gK +oa +oa +uL +oa +oa +oa +oa +oa +oa +oa +oa +CO +oa +oa +hb +oa +CS +oa +oa +uL +Mf +Mf +Mf +oa +oa +Mf +oa +uL +Mf +Mf +Mf +oa +oa +oa +oa +oa +uL +gK +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +as +as +yg +NC +xj +xj +xj +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(67,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +ZX +ZX +uU +ZX +ZX +uU +ZX +bn +ZX +ZX +ZX +ZC +pe +pe +ZX +ZX +uU +ZX +ZX +ZX +ZX +WK +oa +lD +oa +oa +Fs +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +RQ +QS +UN +ic +oa +ic +oa +oa +oa +oa +gK +uL +oa +Mf +Mf +Lk +Mf +Mf +Mf +oa +oa +Mf +gt +Mf +oa +oa +oa +oa +bD +Dy +Dy +nB +Dy +nB +nB +Dy +Dy +Dy +gK +gK +NC +NC +xj +NC +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +QF +"} +(68,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +Yx +ZX +uU +ZX +ZX +uU +ZX +bn +Rt +ZX +ZX +ZX +ZX +ZX +ZX +ZX +uU +ZX +ZX +ZX +ZX +WK +oa +aM +oa +oa +oa +oa +dX +oa +Mf +oa +Mf +oa +oa +uL +uL +Mf +Mf +oa +dH +oa +oa +oa +oa +oa +oa +oa +Ve +dX +oa +oa +oa +oa +oa +oa +Mf +Mf +Mf +oa +oa +uL +uL +Mf +Lk +Mf +Yk +Mf +oa +oa +oa +Mf +Mf +Mf +Mf +bD +bD +Dy +Dy +nB +nB +nB +nB +nB +nB +Dy +Mf +Mf +Mf +Mf +gK +NC +NC +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +QF +"} +(69,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +HI +ZX +aM +aM +aM +aM +pe +bn +ZX +ZX +ZX +ZX +ZX +ZX +ZX +ZX +aM +ZX +ZX +ZX +ZX +aM +aM +aM +Kk +Mf +Mf +oa +VL +aN +uL +oa +gK +Mf +oa +uL +dH +oa +oa +oa +Lr +oa +oa +oa +oa +oa +oa +oa +qT +Zc +UN +SO +oa +SO +oa +oa +oa +uL +oa +oa +oa +Mf +Mf +Lk +Mf +uL +dH +oa +oa +oa +oa +uL +Mf +Mf +Dy +Dy +bD +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Mf +Dy +Mf +Mf +Mf +NC +NC +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +QF +"} +(70,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +aM +aM +Dy +Dy +aM +pe +bn +ZX +Ne +Dz +pe +sF +ZX +ZX +ZX +aM +ZX +ZX +ZX +rh +aM +aM +Mf +gK +Mf +Mf +Mf +Wd +Mf +oa +uL +oa +oa +Lr +oa +oa +gK +gK +Mf +uL +uL +oa +oa +oa +oa +oa +oa +As +oa +oa +hb +oa +CS +oa +oa +oa +oa +oa +oa +Mf +uL +oa +Mf +Mf +oa +oa +oa +oa +oa +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Mf +Mf +NC +gK +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(71,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +eI +bn +ZX +WT +pe +pe +ZX +jJ +ZX +ZX +aM +aM +aM +ZX +ZX +aM +gK +gK +IX +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +fI +Il +oa +oa +gK +IX +oa +oa +oa +oa +oa +oa +oa +oa +oa +ql +Wg +oa +hb +oa +ic +Mf +oa +oa +oa +oa +oa +oa +oa +oa +oa +Mf +qT +oa +uL +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(72,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +pe +pe +pe +Ej +pe +ZX +rh +aM +aM +aM +aM +Dy +aM +aM +aM +aM +gK +gK +gK +gK +gK +Mf +bD +Wg +uL +oa +oa +oa +oa +oa +uL +Mf +gK +Mf +oa +Mf +uL +uL +oa +oa +oa +oa +Wg +oa +oa +uA +oa +dH +Mf +bD +nL +uL +uL +oa +Mf +gt +oa +oa +oa +oa +oa +XF +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(73,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +pe +pe +pe +pe +ZX +ZX +aM +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +bD +bD +Dy +Dy +gK +oa +oa +oa +oa +oa +oa +bD +oa +Mf +Mf +Mf +gK +gK +oa +oa +oa +oa +oa +oa +oa +oa +bD +bD +uL +bD +uL +oa +Mf +oa +Mf +Mf +Mf +uL +oa +oa +uL +uL +gt +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(74,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +aM +aM +aM +aM +aM +aM +aM +aM +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +oa +Mf +Mf +oa +VL +cP +uL +bD +gK +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +bD +Mf +uL +oa +oa +oa +oa +oa +oa +oa +uL +oa +uL +oa +oa +oa +oa +oa +Mf +Mf +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +IX +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(75,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +oa +Mf +oa +Mf +oa +oa +oa +Za +bD +uL +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +km +bD +gK +oa +VL +cP +Wg +uL +oa +uL +oa +oa +VL +cP +Mf +uL +oa +oa +Mf +rf +gK +gK +IX +gK +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(76,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +oa +oa +Wd +cP +Mf +Mf +uL +oa +fI +oa +oa +Lr +oa +oa +oa +oa +oa +oa +uL +oa +Mf +bD +oa +oa +oa +Mf +Mf +bD +bD +Mf +bD +Mf +oa +uL +Mf +oa +oa +oa +oa +gt +Mf +gK +gK +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(77,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +Dy +bD +oa +oa +oa +oa +oa +oa +uL +bD +oa +oa +oa +Za +oa +oa +oa +oa +Mf +uL +sY +oa +oa +oa +oa +uL +uL +bD +Dy +bD +Dy +Mf +Mf +Mf +gK +gK +gK +uL +oa +oa +Mf +Mf +Wg +Dy +Dy +nB +nB +nB +nB +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(78,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +bD +bD +Mf +oa +uL +Mf +Mf +oa +oa +uL +oa +sY +Gk +bD +uL +oa +fI +sY +bD +Mf +Mf +oa +Mf +oa +oa +oa +bD +Dy +Dy +Dy +Mf +Mf +Mf +gK +gK +gK +IX +gK +Mf +oa +Mf +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +nB +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(79,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +uL +uL +oa +oa +VL +cP +RQ +oa +Mf +uL +uL +bD +bD +uL +uL +Mf +oa +oa +Mf +oa +oa +oa +oa +bD +Dy +Dy +gK +Mf +Mf +Dy +Dy +Wg +gK +Mf +oa +VL +cP +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(80,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +jD +gK +gK +oa +Mf +oa +Mf +Za +oa +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +bD +oa +oa +oa +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Mf +Mf +oa +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(81,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +Wd +cP +uL +oa +oa +oa +oa +oa +uL +oa +oa +oa +oa +oa +oa +Mf +Mf +Dy +bD +oa +bD +Dy +gK +gK +Mf +Dy +Dy +Dy +bD +oa +oa +uL +oa +oa +Mf +Dy +Dy +Dy +nB +nB +nB +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(82,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +Mf +Mf +Mf +oa +uL +oa +VL +VV +oa +oa +uL +Za +oa +VL +cP +Mf +Dy +Dy +sY +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +wx +oa +oa +oa +Mf +Mf +Dy +Dy +nB +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(83,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +IX +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +bD +bD +Dy +tY +oa +oa +uL +oa +oa +uL +Za +Mf +uL +uL +oa +oa +Mf +uL +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +oa +Mf +oa +uL +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(84,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +Dy +Dy +nB +Dy +Dy +Dy +Dy +bD +bD +pC +pC +pC +bD +bD +bD +oa +nX +oa +oa +oa +oa +oa +rf +oa +oa +gK +oa +uL +uL +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Qn +Qn +Qn +oa +Mf +wx +Dy +Dy +nB +nB +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(85,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +nB +nB +Dy +Dy +Mf +Mf +bD +pC +ZX +ZX +ZX +pC +ZX +bD +Wg +Mf +oa +oa +uL +Mf +oa +oa +oa +oa +gK +uL +oa +bD +bD +Dy +Dy +Dy +Dy +bD +bD +Dy +Mf +gK +gK +Mf +eu +oa +Qn +Qn +Qn +bD +Dy +Dy +nB +nB +Dy +Dy +Dy +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(86,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Dy +Mf +nB +Dy +Dy +nB +Dy +Dy +Mf +Mf +Mf +bD +ZX +ZX +ZX +ZX +ZX +ZX +WK +Mf +gK +Mf +oa +Mf +oa +oa +oa +oa +oa +IX +gK +oa +bD +Dy +Dy +Dy +Dy +Dy +bD +oa +gK +gK +IX +gK +Mf +oa +VL +oa +eu +Mf +bD +nB +Dy +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +nB +Dy +nB +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(87,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +oa +Dy +Mf +nB +nB +nB +nB +nB +Dy +Dy +Dy +Mf +bD +ZX +ZX +ZX +ZX +ZX +ZX +WK +uL +Mf +oa +Wd +cP +oa +oa +zg +uL +oa +oa +oa +oa +oa +Dy +Dy +Mf +Mf +bD +oa +oa +oa +gK +gK +Mf +Mf +uL +oa +gK +gK +gK +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(88,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +Mf +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +bD +Ic +ZX +ZX +ZX +Ic +ZX +bD +Wg +gK +Mf +oa +uL +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +Dy +Dy +Wg +uL +Mf +Mf +oa +oa +Mf +Mf +oa +oa +oa +gK +IX +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Mf +Mf +gK +Dy +Dy +Dy +nB +nB +nB +nB +gK +IX +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(89,1,1) = {" +QF +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +Dy +Dy +bD +bD +bD +Dy +Dy +bD +oa +oa +oa +Dy +Dy +Mf +gK +gK +gK +Mf +oa +oa +Mf +Mf +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +PW +PW +PW +bD +bD +bD +oa +uL +Mf +Mf +Mf +oa +Vu +Mf +oa +oa +uL +Mf +oa +bD +sY +Dy +gK +Mf +Mf +Mf +Ur +Mf +oa +WV +uL +oa +Mf +gK +gK +Dy +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +gK +gK +Mf +Dy +nB +nB +nB +nB +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(90,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +Mf +Mf +bD +oa +oa +bD +Wg +gK +IX +gK +oa +oa +Mf +Mf +oa +IX +gK +gK +oa +oa +Mf +Mf +Mf +Mf +Dy +bD +bD +Dy +Dy +Dy +Dy +bD +bD +bD +bD +bD +bD +oa +sY +oa +oa +Mf +uL +oa +oa +oa +oa +dH +dX +Mf +bD +Dy +Dy +bD +oa +Mf +uL +Mf +Mf +uL +oa +oa +oa +oa +Mf +uL +uL +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +gK +IX +gK +Dy +nB +nB +nB +nB +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(91,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +oa +oa +fl +Mf +Mf +oa +oa +Mf +Mf +gK +gK +oa +oa +Wd +oa +oa +oa +oa +oa +oa +oa +Wd +oa +Mf +Mf +Mf +Wg +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +oa +oa +oa +Mf +Mf +Mf +oa +oa +uL +oa +Mf +Mf +uL +Dy +Dy +bD +sn +oa +oa +oa +oa +oa +oa +oa +Mf +oa +Mf +Wg +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +nB +Dy +Dy +Dy +Dy +gK +gK +Mf +Mf +Mf +Mf +nB +nB +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(92,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Mf +bD +bD +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +oa +oa +Mf +oa +Mf +Mf +Mf +oa +oa +Mf +Mf +oa +oa +oa +oa +Mf +Mf +oa +oa +oa +Dy +bD +Dy +Dy +Dy +Dy +oa +oa +Mf +oa +oa +Wg +Mf +Mf +oa +fI +oa +RQ +oa +oa +Mf +uL +bD +Dy +bD +bD +oa +Mf +Mf +oa +VL +oa +Mf +Mf +oa +oa +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(93,1,1) = {" +QF +Dy +Dy +Dy +Dy +Mf +bD +oa +oa +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +Mf +Kk +Mf +oa +Mf +Mf +oa +oa +Mf +Mf +Dy +Dy +Dy +Mf +oa +Mf +gK +gK +IX +gK +Mf +se +oa +oa +oa +Mf +Mf +Mf +Qn +Kk +IX +gK +gK +oa +oa +Mf +Mf +Dy +uL +oa +oa +oa +oa +oa +oa +oa +oa +bD +bD +Dy +Dy +Mf +oa +oa +oa +nB +oa +oa +Mf +Mf +eu +Mf +oa +oa +Mf +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(94,1,1) = {" +QF +Dy +Dy +Dy +Dy +Mf +Mf +oa +oa +oa +oa +oa +oa +Mf +Mf +oa +Mf +bD +bD +bD +Qn +Qn +Qn +Qn +bD +Mf +Mf +Mf +Mf +Dy +Dy +oa +oa +Dy +Dy +gK +gK +gK +oa +oa +oa +oa +Mf +oa +Mf +eu +Qn +Qn +gK +gK +Mf +oa +oa +Mf +Mf +Mf +uL +Mf +oa +uL +oa +Mf +uL +uL +Mf +bD +Dy +Dy +Dy +nB +oa +kL +oa +nB +nB +oa +Mf +Mf +Mf +bD +oa +oa +bD +Mf +Mf +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(95,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +oa +oa +oa +oa +oa +Qn +Mf +Mf +Mf +Mf +Dy +bD +oa +oa +Dy +Dy +Mf +Dy +Wg +oa +Mf +Mf +oa +oa +Wd +oa +Mf +Mf +Qn +Mf +oa +oa +gE +cP +oa +oa +oa +Mf +Mf +Mf +oa +oa +Mf +oa +oa +oa +oa +Dy +Dy +Dy +nB +oa +oa +oa +nB +nB +nB +Mf +nB +Dy +bD +bD +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(96,1,1) = {" +QF +Dy +Dy +Dy +Mf +Mf +bD +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +oa +oa +Mf +fl +Mf +Mf +Mf +Mf +oa +Qn +Mf +Mf +Mf +Wg +Dy +Dy +bD +bD +Dy +Dy +Mf +Dy +oa +oa +oa +gK +Mf +Mf +oa +oa +oa +oa +Qn +oa +oa +oa +oa +oa +Mf +Mf +oa +uL +rf +oa +uL +oa +Mf +uL +oa +oa +oa +bD +Dy +nB +nB +oa +kL +oa +nB +nB +nB +nB +nB +Dy +Dy +nB +Dy +nB +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Fc +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(97,1,1) = {" +QF +Dy +Dy +Mf +Mf +Mf +oa +oa +oa +oa +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +Mf +Mf +oa +Qn +oa +oa +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +gK +gK +gK +Mf +Mf +Mf +eu +Qn +Qn +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +Wg +oa +oa +oa +oa +Mf +Mf +oa +bD +Dy +nB +nB +nB +oa +kD +oa +nB +nB +nB +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Fc +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(98,1,1) = {" +QF +Dy +Dy +Mf +Mf +bD +oa +Mf +Mf +oa +Mf +Mf +Mf +bD +bD +bD +WK +bD +oa +oa +Wd +Mf +Mf +oa +Qn +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Dy +IX +Dy +Dy +Dy +Mf +Mf +Qn +Kk +Mf +Mf +oa +oa +Mf +Dy +Dy +Dy +Dy +bD +oa +Mf +Mf +uL +Mf +Mf +oa +bD +bD +nB +nB +nB +oa +oa +oa +nB +nB +nB +nB +nB +bD +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(99,1,1) = {" +QF +Dy +Mf +Mf +Dy +bD +Dy +Mf +Mf +oa +Mf +Mf +Mf +bD +ZX +ZX +ZX +ZX +ZX +oa +oa +Mf +Mf +oa +bD +wx +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +Dy +Dy +Dy +oa +Dy +Dy +nB +nB +Dy +Dy +Dy +bD +Lk +Mf +uL +oa +oa +bD +Dy +bD +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +bD +Dy +nB +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(100,1,1) = {" +QF +Dy +Mf +Dy +bD +oa +oa +oa +oa +oa +Mf +Mf +bD +bD +ZX +ZX +ZX +ZX +bB +ZX +oa +Mf +fl +Mf +bD +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Mf +gK +oa +oa +oa +Dy +Dy +Mf +kL +kD +wx +oa +bi +oa +wx +kD +kL +oa +kL +oa +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(101,1,1) = {" +QF +Mf +Fc +Dy +bD +oa +Mf +Mf +Mf +oa +Mf +Mf +bD +ZX +ZX +ZX +ZX +ZX +ZX +ZX +bD +oa +Mf +Mf +bD +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Mf +gK +Mf +uL +oa +Dy +Mf +bD +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +oa +bD +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Mf +gK +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(102,1,1) = {" +QF +Mf +Mf +Dy +Dy +bD +Mf +Mf +Mf +oa +Mf +Mf +bD +QA +ZX +ZX +My +ZX +ZX +ZX +WK +oa +oa +Mf +bD +oa +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Mf +Mf +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Mf +Lk +gK +IX +gK +Mf +Mf +Dy +Dy +bD +nB +nB +nB +oa +oa +oa +nB +nB +nB +nB +nB +bD +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +gK +gK +IX +gK +gK +gK +gK +Mf +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(103,1,1) = {" +QF +Mf +Fc +Dy +Dy +Dy +Mf +Mf +oa +oa +oa +oa +bD +ZX +ZX +ZX +ZX +ZX +ZX +ZX +bD +oa +Mf +Mf +Mf +oa +Mf +Mf +fl +Mf +Mf +Mf +Dy +Mf +Mf +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +Mf +Mf +gK +gK +Mf +Mf +Mf +Dy +Dy +Mf +nB +nB +nB +oa +kD +oa +Mf +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(104,1,1) = {" +QF +Mf +Mf +Dy +Dy +bD +oa +Mf +oa +Mf +Mf +Mf +bD +bD +bD +ZX +ZX +ZX +ZX +ZX +bD +Mf +Mf +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Dy +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +nB +bD +nB +nB +nB +nB +bD +gK +Mf +Mf +Lk +Lk +Dy +Dy +Dy +nB +nB +nB +oa +kL +oa +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +dG +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(105,1,1) = {" +QF +Dy +Dy +Dy +bD +oa +oa +oa +oa +Mf +Mf +Mf +oa +oa +bD +ZX +QA +ZX +bD +bD +bD +Mf +oa +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Dy +nB +Dy +Mf +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +Lk +Dy +Dy +Dy +Dy +Mf +nB +bD +bD +oa +bD +bD +Dy +nB +nB +nB +Dy +Mf +Mf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(106,1,1) = {" +QF +Dy +Dy +Dy +Dy +bD +oa +Dy +Mf +Mf +Mf +bD +bD +oa +bD +bD +bD +bD +bD +oa +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Dy +nB +Dy +Mf +Dy +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +Lk +Dy +Dy +Dy +Mf +gK +Mf +Dy +Dy +Dy +Mf +nB +nB +nB +nB +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(107,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +bD +bD +Mf +Mf +oa +oa +bD +Mf +Mf +oa +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +oa +Mf +Mf +oa +oa +Mf +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +oa +Mf +Mf +Mf +Dy +Dy +Dy +nB +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +dG +Mf +Mf +gK +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(108,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +bD +bD +oa +Mf +Mf +Mf +oa +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +gK +Mf +Mf +gK +gK +Dy +Mf +Mf +Mf +nB +bD +nB +nB +nB +nB +bD +nB +nB +Mf +Dy +Dy +Dy +Dy +Dy +nB +Dy +nB +nB +Dy +nB +nB +nB +nB +Dy +Dy +nB +nB +Mf +Mf +Mf +Mf +bD +Dy +Dy +NX +Mf +Mf +Mf +gK +IX +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +IX +gK +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(109,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Mf +oa +oa +bD +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +gK +IX +gK +Dy +Dy +Dy +Mf +nB +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +Mf +Mf +Dy +Dy +nB +Dy +Dy +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +Mf +gK +Mf +Mf +oa +bD +Dy +Mf +Mf +Mf +Mf +Mf +gK +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(110,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Mf +bD +bD +oa +Mf +Mf +oa +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +bD +Dy +Dy +Dy +Dy +nB +nB +Dy +Dy +Mf +NC +Mf +Mf +Dy +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +Mf +Mf +Dy +Dy +Dy +Dy +Dy +nB +Dy +Dy +nB +nB +nB +Dy +nB +Dy +Dy +Dy +nB +nB +nB +Mf +Mf +Mf +Il +Mf +Mf +Mf +Mf +dG +dG +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Fc +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(111,1,1) = {" +QF +Dy +Dy +Dy +Dy +oa +Mf +oa +bD +Mf +Dy +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +Mf +oa +Mf +Mf +Mf +Mf +bD +bD +bD +oa +oa +bD +Dy +Dy +nB +nB +nB +nB +Dy +as +Mf +NC +Mf +Mf +Dy +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +Dy +nB +nB +Dy +Mf +nB +nB +nB +nB +nB +Mf +Za +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(112,1,1) = {" +QF +Dy +Dy +Dy +Dy +Mf +oa +Mf +Mf +Mf +Dy +Mf +Mf +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +oa +bD +oa +bD +bD +nB +nB +nB +nB +nB +Dy +Dy +as +NC +xj +Mf +Mf +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +nB +Dy +Dy +Mf +nB +nB +nB +nB +nB +Mf +oa +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(113,1,1) = {" +QF +Dy +Dy +Dy +Dy +oa +Mf +oa +Dy +Dy +bD +bD +oa +oa +Mf +Mf +Mf +Mf +Mf +oa +oa +Mf +Mf +Mf +oa +oa +bD +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +as +xj +NC +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Mf +Mf +oa +oa +Mf +Mf +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(114,1,1) = {" +QF +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +bD +oa +oa +oa +Mf +Mf +Mf +Mf +Mf +Mf +oa +Mf +Mf +Dy +bD +bD +Dy +Dy +nB +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Mf +NC +xj +NC +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +nB +Dy +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Dy +nB +nB +Mf +Mf +oa +oa +Mf +gK +rf +oa +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(115,1,1) = {" +QF +Dy +Dy +Mf +Mf +Fc +Mf +Dy +Dy +Dy +Dy +bD +bD +Mf +Mf +Mf +Mf +Mf +Mf +Dy +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +NC +NC +Mf +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +nB +nB +nB +nB +Mf +Dy +nB +Dy +Dy +nB +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +bD +nB +nB +nB +nB +dG +oa +oa +oa +oa +oa +oa +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Fc +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(116,1,1) = {" +QF +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +oa +oa +oa +bD +Dy +Dy +Dy +Dy +nB +nB +nB +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +NC +NC +NC +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +nB +nB +nB +nB +nB +Mf +Mf +Dy +nB +Dy +Dy +nB +nB +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +bD +Il +oa +oa +oa +oa +oa +oa +Mf +gK +Mf +Mf +Mf +Dy +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Fc +Fc +Mf +Dy +Dy +Dy +bD +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(117,1,1) = {" +QF +Dy +Dy +Fc +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +bD +oa +bD +Dy +Dy +Dy +Dy +Mf +nB +nB +Dy +Mf +Mf +Mf +Mf +Mf +gK +gK +xj +yg +xj +ZT +NC +Mf +as +as +Dy +Dy +Dy +Dy +Mf +Mf +nB +nB +nB +nB +nB +nB +Mf +nB +nB +Mf +Dy +nB +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +bD +bD +Mf +Mf +Mf +oa +oa +rf +gK +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Fc +Fc +Mf +Mf +Dy +bD +bD +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(118,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +bD +Dy +Mf +Mf +Mf +Mf +Mf +nB +nB +nB +nB +Dy +Dy +Mf +Mf +Mf +Mf +xj +xj +xj +NC +NC +NC +xj +as +Dy +Dy +Dy +Dy +Mf +Mf +Mf +nB +nB +nB +nB +nB +Mf +Mf +nB +Dy +Dy +Dy +Dy +bD +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Mf +Mf +oa +oa +oa +Za +oa +oa +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +Mf +bD +oa +oa +oa +Dy +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(119,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Dy +Dy +Mf +nB +nB +nB +nB +nB +Mf +Mf +Mf +Mf +dl +NC +NC +NC +Fc +NC +Mf +gK +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +nB +nB +Dy +Mf +nB +nB +Dy +Dy +Dy +bD +oa +bD +Dy +Dy +Dy +Dy +Ct +Mf +Dy +Dy +Mf +Mf +oa +IX +gK +Mf +Mf +oa +Mf +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +gK +IX +gK +gK +Mf +Mf +Mf +gK +gK +oa +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +QF +"} +(120,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Fc +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +nB +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +NC +Mf +Mf +Mf +Mf +Mf +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Ct +Mf +Dy +Dy +Dy +Dy +Dy +oa +Il +oa +Dy +Dy +Dy +Mf +Mf +Mf +oa +oa +oa +oa +oa +gK +Dy +Df +oa +oa +bD +Dy +dG +dG +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +gK +gK +gK +Mf +XF +Mf +gK +IX +gK +oa +oa +Mf +Mf +Fc +Fc +Dy +Dy +Dy +QF +"} +(121,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Fc +Mf +Mf +Mf +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +nB +nB +nB +nB +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +Mf +NC +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +gK +gK +Mf +Mf +Mf +Mf +km +Mf +Dy +Dy +Mf +Nw +Mf +Mf +oa +Mf +gK +oa +oa +oa +oa +oa +Za +Mf +Mf +Mf +Dy +Dy +Dy +Dy +bD +oa +Dy +Dy +Dy +dG +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +Fc +Fc +gK +Mf +Mf +oa +xc +XF +Mf +Mf +Dy +bD +Dy +QF +"} +(122,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Fc +Mf +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +nB +nB +nB +Dy +Mf +Mf +Mf +Dy +Dy +Dy +Mf +NC +as +Mf +Mf +Mf +Mf +gK +gK +gK +IX +gK +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +oa +oa +oa +oa +oa +oa +Za +Il +gK +Mf +Mf +oa +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +gK +Mf +Mf +Dy +Dy +Dy +Dy +Mf +Fc +Fc +Fc +Mf +Mf +oa +oa +oa +Mf +Mf +Mf +oa +oa +bD +QF +"} +(123,1,1) = {" +QF +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +nB +nB +Dy +Mf +Mf +Mf +Mf +Dy +Dy +as +as +as +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Nw +Mf +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Ct +oa +Mf +Mf +gK +gK +Mf +Mf +rf +oa +Il +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +IX +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +oa +Mf +Fc +Mf +oa +vC +oa +fH +oa +oa +oa +oa +oa +oa +bD +QF +"} +(124,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Fc +Fc +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Dy +nB +nB +Dy +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Nw +Nw +Nw +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +Mf +Nw +Nw +Mf +Dy +Dy +Dy +bD +oa +bD +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +gK +gK +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +gK +Mf +Mf +Mf +Mf +Dy +Dy +Dy +bD +oa +oa +oa +oa +oa +oa +Mf +oa +oa +oa +Mf +Fc +Mf +gK +bD +Dy +QF +"} +(125,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Fc +Mf +Mf +Dy +Dy +Dy +Mf +Mf +Mf +Dy +nB +nB +Dy +Dy +Mf +gK +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +oa +oa +Nw +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Mf +Mf +gK +Mf +Dy +Dy +Dy +gK +Mf +Mf +Mf +gK +gK +IX +gK +gK +Mf +Mf +Dy +Dy +Dy +bD +oa +oa +Dy +Mf +Mf +Mf +XF +Mf +vC +Mf +gK +Mf +Mf +gK +Dy +Dy +QF +"} +(126,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Mf +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +gK +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Mf +Mf +gK +gK +gK +Mf +Mf +Dy +Dy +Dy +Dy +bD +bD +bD +Dy +Mf +Mf +Mf +Mf +Mf +oa +Mf +Fc +Fc +Dy +Dy +Dy +Dy +QF +"} +(127,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +bD +bD +Dy +Dy +Dy +Mf +Mf +Mf +Mf +Mf +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +Mf +Mf +gK +Dy +Dy +Dy +Dy +QF +"} +(128,1,1) = {" +QF +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +nB +nB +nB +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Mf +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +Dy +bD +oa +oa +oa +bD +Dy +Dy +Dy +Dy +Dy +QF +"} +(129,1,1) = {" +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +Mf +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +QF +"} diff --git a/_maps/away/modular_maps/caves/caves_lvl4_c.dmm b/_maps/away/modular_maps/caves/caves_lvl4_c.dmm new file mode 100644 index 000000000000..8c5725c96823 --- /dev/null +++ b/_maps/away/modular_maps/caves/caves_lvl4_c.dmm @@ -0,0 +1,20890 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/template_noop) +"am" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"ap" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"as" = ( +/obj/machinery/door/airlock/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"av" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel, +/area/template_noop) +"ay" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"aE" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"aI" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/template_noop) +"aJ" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"aL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel/white, +/area/template_noop) +"aW" = ( +/mob/living/simple_animal/hostile/lizard{ + dir = 8; + name = "Lays-The-Floor" + }, +/turf/open/floor/bronze, +/area/template_noop) +"aX" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"bb" = ( +/mob/living/simple_animal/hostile/illusion{ + desc = "A humanoid-shaped silhouette made entirely of static noise."; + multiply_chance = 25; + name = "architect"; + speak = list("01010011 01010100 01001111 01010000","01000011 01000101 01000001 01010011 01000101","01010010 01000101 01010110 01000101 01010010 01010100","01000011 01001111 01001110 01010100 01000001 01001001 01001110","01000011 01001111 01001110 01000110 01001100 01001001 01000011 01010100","01010010 01000101 01001101 01001111 01010110 01000101"); + speak_chance = 25; + health = 25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"bk" = ( +/obj/structure/lattice, +/obj/structure/fans/tiny/invisible, +/obj/structure/emergency_shield/clockmaster_plot_armor, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"bl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"bm" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"bn" = ( +/obj/machinery/door/airlock/command{ + name = "Corporate Showroom" + }, +/turf/open/floor/bronze, +/area/template_noop) +"bq" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/template_noop) +"bu" = ( +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post" + }, +/obj/effect/mapping_helpers/airlock/access/all/security/general, +/turf/open/floor/plasteel, +/area/template_noop) +"bv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel/white, +/area/template_noop) +"bC" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"bJ" = ( +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/bronze, +/area/template_noop) +"cb" = ( +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"cc" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"cf" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"ck" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"cs" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4boxhallexit"; + id_target = "lvl4middlebox"; + name = "lvl4 box to middle" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"cu" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"cC" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"cD" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"cH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/template_noop) +"cN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/keycard_auth, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"cP" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/template_noop) +"cT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"cZ" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4kilobridge"; + id_target = "lvl4kilohydroexit"; + name = "lvl4 kilo bridge to hydro" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"df" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"dj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/template_noop) +"dv" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/access/all/engineering/maintenance, +/turf/open/floor/plating, +/area/template_noop) +"dx" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/template_noop) +"dG" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"dN" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4tramsec"; + id_target = "lvl4tramcargo"; + name = "lvl4 tram sec to cargo" + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"dR" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"dU" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"ea" = ( +/turf/closed/mineral/volcanic/lava_land_surface/hard, +/area/template_noop) +"ed" = ( +/turf/closed/wall/r_wall, +/area/template_noop) +"ej" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/light/red/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"el" = ( +/obj/structure/sign/plaques/kiddie/perfect_man{ + pixel_y = 32 + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/carpet, +/area/template_noop) +"ev" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/carpet, +/area/template_noop) +"ew" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/end, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"eA" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/plasteel, +/area/template_noop) +"eB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"eC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"eP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/template_noop) +"eV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark/corner, +/area/template_noop) +"eX" = ( +/obj/item/chair/stool, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"eY" = ( +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"eZ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/template_noop) +"fb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/template_noop) +"fe" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"ff" = ( +/mob/living/simple_animal/hostile/lizard{ + name = "Builds-The-Arena" + }, +/turf/open/floor/bronze, +/area/template_noop) +"fh" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/red/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"fj" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"fp" = ( +/obj/structure/sign/departments/exam_room, +/turf/closed/wall, +/area/template_noop) +"ft" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"fv" = ( +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"fw" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"fy" = ( +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"fH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/key/janitor, +/turf/open/floor/plasteel, +/area/template_noop) +"fJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"fK" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/template_noop) +"fU" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/plasteel, +/area/template_noop) +"fZ" = ( +/obj/structure/closet/l3closet/security, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"gd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plasteel, +/area/template_noop) +"ge" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"gf" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/template_noop) +"gh" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/camera/directional/south{ + c_tag = "Bridge Emergency Supplies"; + name = "command camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"gk" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/template_noop) +"gq" = ( +/turf/closed/wall/r_wall/rust, +/area/template_noop) +"gv" = ( +/obj/machinery/door/airlock/bronze, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/bronze, +/area/template_noop) +"gw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"gz" = ( +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/bronze, +/area/template_noop) +"gA" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"gC" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/template_noop) +"gL" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"hk" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"ho" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"hC" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"hG" = ( +/turf/open/floor/plating, +/area/template_noop) +"hH" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel/white, +/area/template_noop) +"hK" = ( +/turf/closed/wall, +/area/template_noop) +"hT" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/template_noop) +"hW" = ( +/obj/structure/table, +/obj/item/stamp/qm, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/template_noop) +"ia" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/template_noop) +"ib" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"ih" = ( +/turf/open/floor/plating/asteroid/snow/icemoon, +/area/template_noop) +"il" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/bronze, +/area/template_noop) +"in" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/item/kirbyplants/random, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"io" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/tech_storage, +/turf/open/floor/plating, +/area/template_noop) +"iq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"iu" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/template_noop) +"iA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/template_noop) +"iB" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"iE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/template_noop) +"iJ" = ( +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 3 + }, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"iN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/template_noop) +"iT" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"iV" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/tile/bronze{ + amount = 25 + }, +/turf/open/floor/bronze, +/area/template_noop) +"iX" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4middlekilo"; + id_target = "lvl4kilohydro"; + name = "lvl4 middle to kilo" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"jc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/template_noop) +"jf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"jn" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"jr" = ( +/turf/closed/indestructible/riveted, +/area/template_noop) +"js" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"jt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"jv" = ( +/obj/structure/fluff{ + desc = "A control terminal for the area's electrical systems. It looks non-responsive.."; + icon = 'icons/obj/power.dmi'; + icon_state = "apc0"; + name = "!ERROR! APC"; + pixel_y = 25 + }, +/turf/open/floor/plating, +/area/template_noop) +"jw" = ( +/obj/structure/closet/firecloset, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"jx" = ( +/obj/item/chair, +/turf/open/floor/bronze, +/area/template_noop) +"jA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/template_noop) +"jC" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"jI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4deltamedexit"; + id_target = "lvl4deltadorm"; + name = "lvl4 delta med to dorm" + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"jK" = ( +/obj/structure/clockcult_tower, +/turf/open/floor/bronze, +/area/template_noop) +"jW" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4metaengine"; + id_target = "lvl4metabridgeexit"; + name = "lvl4 meta engine to bridge" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"kb" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Toilet Unit" + }, +/turf/open/floor/plating, +/area/template_noop) +"kd" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"ki" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"kn" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"kp" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Treatment Center" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/template_noop) +"kD" = ( +/obj/structure/table, +/obj/machinery/newscaster/directional/west, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/template_noop) +"kG" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/template_noop) +"kH" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/template_noop) +"kL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"kV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"lB" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/template_noop) +"lE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"lG" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only/closed, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"lP" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"lS" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4middledelta"; + id_target = "lvl4deltamed"; + name = "lvl4 middle to delta" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"lX" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"mo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/template_noop) +"mq" = ( +/obj/structure/table, +/turf/open/floor/carpet, +/area/template_noop) +"ms" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/template_noop) +"mv" = ( +/obj/structure/clockcult_tower{ + id = "clock3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"mF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/template_noop) +"mG" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"mN" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/template_noop) +"mP" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/decal/cleanable/blood/old, +/obj/item/shield/riot, +/turf/open/floor/plasteel, +/area/template_noop) +"mQ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"na" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"nl" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"np" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"nq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"nv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"nB" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/bronze, +/area/template_noop) +"nJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/toolcloset, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/template_noop) +"nL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"nN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/light/red/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"nP" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"nU" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"nX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/template_noop) +"ob" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"og" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"oh" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ok" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/defibrillator_mount/directional/east, +/turf/open/floor/plasteel/white, +/area/template_noop) +"om" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"oq" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"ow" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ox" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"oz" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"oB" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/crowbar/red, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"oH" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/mob/living/simple_animal/hostile/illusion{ + desc = "A humanoid-shaped silhouette made entirely of static noise."; + multiply_chance = 25; + name = "architect"; + speak = list("01010011 01010100 01001111 01010000","01000011 01000101 01000001 01010011 01000101","01010010 01000101 01010110 01000101 01010010 01010100","01000011 01001111 01001110 01010100 01000001 01001001 01001110","01000011 01001111 01001110 01000110 01001100 01001001 01000011 01010100","01010010 01000101 01001101 01001111 01010110 01000101"); + speak_chance = 25; + health = 25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"oZ" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"pd" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/template_noop) +"pg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/closed, +/turf/open/floor/plasteel, +/area/template_noop) +"ph" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"pi" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/bronze, +/area/template_noop) +"pt" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"pB" = ( +/turf/closed/wall/rust, +/area/template_noop) +"pJ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"pQ" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/template_noop) +"pZ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/plasteel, +/area/template_noop) +"qh" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"qm" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"qn" = ( +/obj/structure/lattice, +/obj/structure/fans/tiny/invisible, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"qp" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/light/directional/north, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_y = 3 + }, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/template_noop) +"qr" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4deltamed"; + id_target = "lvl4middledelta"; + name = "lvl4 delta to middle" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"qs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"qP" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"qR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/fluff{ + desc = "A control terminal for the area's electrical systems. It looks non-responsive.."; + icon = 'icons/obj/power.dmi'; + icon_state = "apc0"; + name = "!ERROR! APC"; + pixel_x = 25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"qU" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"qX" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/template_noop) +"rb" = ( +/obj/structure/table, +/turf/open/floor/bronze, +/area/template_noop) +"ri" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/template_noop) +"rl" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/template_noop) +"rn" = ( +/obj/structure/light_construct/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"rv" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area" + }, +/obj/effect/mapping_helpers/airlock/access/all/engineering/construction, +/turf/open/floor/plating, +/area/template_noop) +"rD" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"rF" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/wall, +/area/template_noop) +"rO" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"rV" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"sf" = ( +/obj/effect/spawner/random/food_or_drink/snack{ + pixel_x = 6; + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_x = -6; + spawn_loot_count = 2; + spawn_random_offset = 1 + }, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"si" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/obj/effect/decal/cleanable/blood/old, +/obj/item/gun/energy/e_gun, +/turf/open/floor/plasteel, +/area/template_noop) +"sj" = ( +/turf/open/floor/wood, +/area/template_noop) +"sl" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"sm" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ss" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/folder/blue, +/obj/item/clothing/head/collectable/hop{ + name = "novelty HoP hat" + }, +/obj/machinery/light/small/directional/west, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"sv" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/bronze, +/area/template_noop) +"sw" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"sx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/light/red/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"sA" = ( +/obj/structure/table, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/template_noop) +"sJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/template_noop) +"sP" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"sR" = ( +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel, +/area/template_noop) +"sT" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze, +/area/template_noop) +"sU" = ( +/obj/machinery/lapvend, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"te" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/bronze, +/area/template_noop) +"tp" = ( +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plating, +/area/template_noop) +"tq" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/fluff{ + desc = "A machine that monitors atmosphere levels. Goes off if the area is dangerous. This one seems oddly.. static?"; + icon = 'icons/obj/monitors.dmi'; + icon_state = "alarmp"; + name = "air alarm"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"tu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"tx" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"tz" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"tD" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"tF" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"tH" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"tK" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"tW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/template_noop) +"tY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/structure/plaque/static_plaque/golden{ + pixel_x = 32 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/template_noop) +"ud" = ( +/obj/item/chair, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4metabridge"; + id_target = "lvl4middlemeta"; + name = "lvl4 meta to middle" + }, +/turf/open/floor/bronze, +/area/template_noop) +"ui" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/gun/energy/e_gun, +/turf/open/floor/plasteel, +/area/template_noop) +"uo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ut" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4boxhall"; + id_target = "lvl4start"; + name = "lvl4 box to start" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ux" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"uz" = ( +/obj/structure/table/bronze, +/obj/item/weldingtool, +/turf/open/floor/bronze, +/area/template_noop) +"uD" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/plasteel, +/area/template_noop) +"uG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"uH" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/template_noop) +"uQ" = ( +/turf/closed/indestructible/bronze, +/area/template_noop) +"uW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = -32; + pixel_y = 8 + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"va" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/template_noop) +"vb" = ( +/obj/machinery/computer/monitor{ + dir = 4; + name = "Bridge Power Monitoring Console" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"vc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"vj" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4tramcargo"; + id_target = "lvl4middletram"; + name = "lvl4 tram cargo to middle" + }, +/turf/open/floor/carpet, +/area/template_noop) +"vm" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"vo" = ( +/obj/structure/fluff{ + desc = "A machine that monitors atmosphere levels. Goes off if the area is dangerous. This one seems oddly.. static?"; + dir = 8; + icon = 'icons/obj/monitors.dmi'; + icon_state = "alarmp"; + name = "air alarm"; + pixel_x = -24 + }, +/turf/open/floor/bronze, +/area/template_noop) +"vq" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plasteel, +/area/template_noop) +"vr" = ( +/obj/item/storage/box/matches{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"vA" = ( +/mob/living/simple_animal/hostile/clockwork/ocular_warden, +/turf/open/floor/bronze, +/area/template_noop) +"vB" = ( +/obj/structure/table/wood, +/obj/structure/sign/picture_frame/showroom/one{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/two{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/template_noop) +"vM" = ( +/obj/structure/clockcult_tower/source{ + id = "clock2" + }, +/turf/open/floor/bronze, +/area/template_noop) +"vS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"vU" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/carpet, +/area/template_noop) +"vW" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"wc" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"wp" = ( +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"wt" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"wu" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"wz" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"wB" = ( +/obj/structure/clockcult_tower/target, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"wH" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"wK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"wL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"wM" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"wT" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"wV" = ( +/obj/structure/lattice, +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"xj" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{ + brute_damage = 200 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/template_noop) +"xt" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"xu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"xx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/template_noop) +"xy" = ( +/obj/effect/bump_teleporter{ + id = "lvl4spawn"; + name = "lvl4 spawn" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"xF" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/plasteel, +/area/template_noop) +"xJ" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/template_noop) +"xK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"xU" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ya" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"yf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/template_noop) +"yn" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/template_noop) +"yo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/plasteel, +/area/template_noop) +"yq" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/tile/brown/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"ys" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/fireaxecabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"yt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/mob/living/simple_animal/hostile/illusion{ + desc = "A humanoid-shaped silhouette made entirely of static noise."; + multiply_chance = 25; + name = "architect"; + speak = list("01010011 01010100 01001111 01010000","01000011 01000101 01000001 01010011 01000101","01010010 01000101 01010110 01000101 01010010 01010100","01000011 01001111 01001110 01010100 01000001 01001001 01001110","01000011 01001111 01001110 01000110 01001100 01001001 01000011 01010100","01010010 01000101 01001101 01001111 01010110 01000101"); + speak_chance = 25; + health = 25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"yx" = ( +/obj/structure/clockcult_tower/source{ + id = "clock4" + }, +/turf/open/floor/bronze, +/area/template_noop) +"yF" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/template_noop) +"yL" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/west, +/obj/item/gun/energy/e_gun, +/turf/open/floor/plasteel, +/area/template_noop) +"yW" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/emergency_shield/clockmaster_plot_armor, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"yZ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"zc" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"zd" = ( +/obj/structure/sign/plaques/kiddie/perfect_drone{ + pixel_y = 32 + }, +/obj/item/storage/backpack/duffelbag/drone, +/obj/structure/window/reinforced, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"zg" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"zl" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"zp" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"zr" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/template_noop) +"zC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/dark/corner, +/area/template_noop) +"zG" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/template_noop) +"zO" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"zR" = ( +/obj/machinery/light/red/directional/north, +/turf/open/floor/bronze, +/area/template_noop) +"zU" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"zV" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4tramcargo"; + id_target = "lvl4tramsec"; + name = "lvl4 tram cargo to sec" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"zW" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 1 + }, +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ay" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/template_noop) +"Az" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"AC" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"AD" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"AM" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/red/directional/north, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"AP" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"AQ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"AZ" = ( +/obj/structure/urinal/directional/north, +/turf/open/floor/plating, +/area/template_noop) +"Bh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Bk" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Bq" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_y = -4 + }, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Bs" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/tank_dispenser/oxygen{ + oxygentanks = 2 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Bv" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Bz" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/bronze, +/area/template_noop) +"BD" = ( +/obj/structure/urinal/directional/north, +/obj/effect/turf_decal/bot, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4deltadorm"; + id_target = "lvl4deltamedexit"; + name = "lvl4 delta dorm to med" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"BH" = ( +/obj/structure/chair/stool/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"BI" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"BJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"BS" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"BU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/template_noop) +"BV" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"BX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"BY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ca" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ce" = ( +/obj/structure/fluff/clockwork/clockgolem_remains, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Cq" = ( +/obj/structure/clockcult_tower{ + id = "clock4" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Cs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/template_noop) +"Ct" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/template_noop) +"CI" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/turf/open/floor/plasteel, +/area/template_noop) +"CN" = ( +/obj/structure/lattice, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"CT" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"CY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only/closed{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only/closed{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"Dd" = ( +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Dx" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"DB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/structure/fluff{ + desc = "A machine that monitors atmosphere levels. Goes off if the area is dangerous. This one seems oddly.. static?"; + dir = 4; + icon = 'icons/obj/monitors.dmi'; + icon_state = "alarmp"; + name = "air alarm"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"DC" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"DF" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"DG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/template_noop) +"DK" = ( +/mob/living/simple_animal/hostile/boss/clockmaster/map_maker, +/turf/open/floor/bronze, +/area/template_noop) +"DN" = ( +/obj/structure/showcase/machinery/microwave{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"DQ" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"DY" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"DZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Ef" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/west{ + pixel_y = -10 + }, +/turf/open/floor/bronze, +/area/template_noop) +"Eg" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Ei" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"Eq" = ( +/obj/structure/showcase/machinery/tv{ + dir = 1; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"Et" = ( +/obj/structure/clockcult_tower/source{ + id = "clock3" + }, +/turf/open/floor/bronze, +/area/template_noop) +"EI" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"EK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"EN" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/carpet, +/area/template_noop) +"EQ" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"ER" = ( +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/crap, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"ES" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/template_noop) +"EV" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/plasteel, +/area/template_noop) +"EY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Fa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"Fc" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"Fd" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ff" = ( +/turf/open/floor/bronze, +/area/template_noop) +"Fm" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Fw" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/template_noop) +"Fz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"FC" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/west{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console" + }, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"FK" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"FM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"FS" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/template_noop) +"FW" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"FX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/plasteel, +/area/template_noop) +"Ga" = ( +/obj/structure/table, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Gc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Gh" = ( +/obj/effect/bump_teleporter{ + id_target = "riftexit"; + name = "boss arena exit" + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Gi" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze, +/area/template_noop) +"Gj" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/button/door/directional/east{ + id = "armory"; + name = "Armory Shutters"; + req_access = list("armory") + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Go" = ( +/obj/structure/clockcult_tower{ + id = "clock2" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Gp" = ( +/turf/open/floor/plasteel, +/area/template_noop) +"Gy" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/table/bronze, +/turf/open/floor/plasteel, +/area/template_noop) +"GF" = ( +/obj/structure/filingcabinet, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/bronze, +/area/template_noop) +"GG" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"GJ" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"GR" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/plasteel, +/area/template_noop) +"GT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/fluff{ + desc = "A control terminal for the area's electrical systems. It looks non-responsive.."; + icon = 'icons/obj/power.dmi'; + icon_state = "apc0"; + name = "!ERROR! APC"; + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"GU" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Hh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Hp" = ( +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Hr" = ( +/obj/item/chair, +/turf/open/floor/plasteel, +/area/template_noop) +"Hu" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/template_noop) +"HN" = ( +/turf/closed/indestructible/rock, +/area/template_noop) +"HT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/template_noop) +"Ie" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/template_noop) +"If" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Io" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"It" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/template_noop) +"Iv" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Iy" = ( +/obj/structure/clockcult_tower{ + id = "clock2" + }, +/turf/open/floor/bronze, +/area/template_noop) +"IF" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"IQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Quartermaster's Office" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"IU" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"IZ" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4kilohydroexit"; + id_target = "lvl4kilobridge"; + name = "lvl4 kilo hydro to bridge" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ja" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Jh" = ( +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Jj" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Jm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Jq" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Js" = ( +/mob/living/simple_animal/hostile/lizard{ + dir = 8; + name = "Breaks-Game-Balance" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Ju" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/turf/open/floor/plating, +/area/template_noop) +"Jw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/bronze, +/area/template_noop) +"Jx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"Jz" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"JA" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/structure/table/reinforced, +/obj/item/trash/can{ + pixel_x = -8 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -2 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"JD" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"JF" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"JH" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/template_noop) +"JL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/machinery/light/red/directional/north, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"JN" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"JW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"JY" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4kilohydro"; + id_target = "lvl4middlekilo"; + name = "lvl4 kilo to middle" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"JZ" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Kd" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ko" = ( +/mob/living/simple_animal/hostile/clockminer/spear, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Ks" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/reagent_dispensers/plumbed{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ku" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"Kv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"Kx" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"KK" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"KO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Li" = ( +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/bronze, +/area/template_noop) +"Lj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ls" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Lu" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/small/directional/north, +/obj/structure/table/wood, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/under/suit/black_really, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/camera/directional/north{ + c_tag = "Corporate Showroom" + }, +/turf/open/floor/wood, +/area/template_noop) +"Lx" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/template_noop) +"LD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"LG" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "armory"; + name = "Armory Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"LO" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"LS" = ( +/obj/structure/lattice, +/obj/structure/emergency_shield/clockmaster_plot_armor, +/obj/structure/fans/tiny/invisible, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"LW" = ( +/obj/machinery/computer/security/qm{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ma" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"Mm" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box, +/obj/item/radio/off{ + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Mr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Mt" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/template_noop) +"MN" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4middlebox"; + id_target = "lvl4boxhallexit"; + name = "lvl4 middle to box" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"MW" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"MY" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ng" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/light/red/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Nr" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/template_noop) +"Ns" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"NG" = ( +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/structure/table/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"NH" = ( +/obj/machinery/light/red/directional/south, +/turf/open/floor/bronze, +/area/template_noop) +"NJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"NL" = ( +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{ + brute_damage = 200 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/template_noop) +"NN" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"NO" = ( +/obj/machinery/computer/security{ + dir = 1; + network = list("ERROR") + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"NQ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"NR" = ( +/obj/machinery/door/airlock/command{ + name = "Corporate Showroom" + }, +/turf/open/floor/wood, +/area/template_noop) +"NW" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"NX" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/carpet, +/area/template_noop) +"Oc" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Security" + }, +/turf/open/floor/carpet, +/area/template_noop) +"Oe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Os" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/bronze, +/area/template_noop) +"Ou" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/bronze, +/area/template_noop) +"OJ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"ON" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"OS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"OY" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/template_noop) +"Pc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"Ph" = ( +/mob/living/simple_animal/hostile/clockwork/marauder, +/turf/open/floor/plasteel, +/area/template_noop) +"Pk" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/light/red/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"Pm" = ( +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Pq" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Pt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Public Mining Storage" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Pu" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Py" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze, +/area/template_noop) +"PA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"PI" = ( +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/template_noop) +"PN" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"PS" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"PT" = ( +/turf/open/floor/glass/reinforced, +/area/template_noop) +"PX" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"PZ" = ( +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"Qb" = ( +/obj/item/wrench, +/turf/open/floor/bronze, +/area/template_noop) +"Qd" = ( +/obj/structure/emergency_shield/clockmaster_plot_armor, +/obj/structure/fans/tiny/invisible, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Qe" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Ql" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Qp" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"QA" = ( +/obj/structure/table_frame, +/turf/open/floor/plasteel, +/area/template_noop) +"QK" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"QL" = ( +/obj/structure/table_frame, +/turf/open/floor/bronze, +/area/template_noop) +"QQ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"QS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. This one is blue."; + helmet_type = /obj/item/clothing/head/helmet/space/syndicate/blue; + suit_type = /obj/item/clothing/suit/space/syndicate/blue + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"QZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Rb" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/computer/department_orders/engineering, +/turf/open/floor/plasteel, +/area/template_noop) +"Rd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Rh" = ( +/obj/machinery/nuclearbomb/beer{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"Ri" = ( +/obj/machinery/computer/department_orders/security{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Rk" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4metabridgeexit"; + id_target = "lvl4metaengine"; + name = "lvl4 meta bridge to engine" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ro" = ( +/obj/effect/turf_decal/tile/red/anticorner/contrasted{ + dir = 8 + }, +/obj/item/chair, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"Rq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Rr" = ( +/obj/structure/emergency_shield/clockmaster_plot_armor, +/turf/open/floor/bronze, +/area/template_noop) +"Rs" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"Rw" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"Rx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Rz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/effect/mapping_helpers/airlock/access/any/engineering/construction, +/turf/open/floor/plasteel, +/area/template_noop) +"RB" = ( +/obj/structure/clockwork_vent, +/turf/open/floor/bronze, +/area/template_noop) +"RG" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/template_noop) +"RN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"RQ" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + color = "red"; + name = "\improper Nanotrasen wildlife department space carp plushie" + }, +/turf/open/floor/carpet, +/area/template_noop) +"RR" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/template_noop) +"RV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/template_noop) +"RX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"RZ" = ( +/obj/effect/turf_decal/tile/red/half/contrasted{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Sb" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Sc" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Sf" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/template_noop) +"Sg" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/plasteel, +/area/template_noop) +"Sh" = ( +/turf/open/floor/carpet, +/area/template_noop) +"Sk" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Sl" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4middlemeta"; + id_target = "lvl4metabridge"; + name = "lvl4 middle to meta" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Sn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"So" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/wood, +/area/template_noop) +"Sv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/template_noop) +"Sz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/template_noop) +"SA" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/structure/railing/corner, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"SJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/floor/carpet, +/area/template_noop) +"SM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/structure/fluff{ + desc = "A machine that monitors atmosphere levels. Goes off if the area is dangerous. This one seems oddly.. static?"; + dir = 1; + icon = 'icons/obj/monitors.dmi'; + icon_state = "alarmp"; + name = "air alarm"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/template_noop) +"SN" = ( +/obj/structure/table, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/template_noop) +"SO" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"SP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/template_noop) +"SS" = ( +/obj/structure/lattice, +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/obj/structure/emergency_shield/clockmaster_plot_armor, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"SX" = ( +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Td" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Tg" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/template_noop) +"Th" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/template_noop) +"Tk" = ( +/obj/structure/clockcult_tower{ + id = "clock3" + }, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Tl" = ( +/obj/machinery/rnd/production/techfab/department/security, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Tm" = ( +/obj/effect/turf_decal/tile/yellow/anticorner/contrasted, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/template_noop) +"Tr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Tt" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/fluff{ + desc = "A control terminal for the area's electrical systems. It looks non-responsive.."; + icon = 'icons/obj/power.dmi'; + icon_state = "apc0"; + name = "!ERROR! APC"; + pixel_y = -25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Tv" = ( +/obj/structure/table_frame, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze, +/area/template_noop) +"TL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"TO" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"TP" = ( +/obj/machinery/light/red/directional/north, +/obj/machinery/status_display/ai/directional/north, +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/bronze, +/area/template_noop) +"TV" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"TW" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"TY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ua" = ( +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Uf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "scrub_on"; + name = "air scrubber" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ug" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Uh" = ( +/obj/structure/lattice, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Uk" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ul" = ( +/mob/living/simple_animal/hostile/syndicate/mecha_pilot/clockminer, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Um" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/template_noop) +"Up" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/mineral/bronze, +/area/template_noop) +"Ur" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"UC" = ( +/obj/structure/table/wood, +/obj/structure/sign/picture_frame/showroom/three{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/template_noop) +"UG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"UO" = ( +/obj/vehicle/sealed/mecha/working/ripley/cargo, +/turf/open/floor/plasteel/recharge_floor, +/area/template_noop) +"UQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/template_noop) +"UR" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"UT" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four" + }, +/turf/open/floor/plating, +/area/template_noop) +"Va" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/template_noop) +"Vc" = ( +/obj/structure/girder/bronze, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"Vf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/template_noop) +"Vh" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + name = "ROBOTICS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Vo" = ( +/obj/structure/lattice, +/obj/structure/fluff{ + desc = "A humanoid figure shrouded by erratic static."; + icon = 'icons/effects/effects.dmi'; + icon_state = "static"; + name = "humanoid figure" + }, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Vs" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Vy" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"VG" = ( +/obj/structure/clockcult_tower, +/turf/open/floor/bronze/lavaland, +/area/template_noop) +"VI" = ( +/obj/modular_map_connector, +/turf/closed/indestructible/riveted, +/area/template_noop) +"VK" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"VL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/firedoor, +/mob/living/simple_animal/hostile/illusion{ + desc = "A humanoid-shaped silhouette made entirely of static noise."; + multiply_chance = 25; + name = "architect"; + speak = list("01010011 01010100 01001111 01010000","01000011 01000101 01000001 01010011 01000101","01010010 01000101 01010110 01000101 01010010 01010100","01000011 01001111 01001110 01010100 01000001 01001001 01001110","01000011 01001111 01001110 01000110 01001100 01001001 01000011 01010100","01010010 01000101 01001101 01001111 01010110 01000101"); + speak_chance = 25; + health = 25 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"VP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/template_noop) +"VU" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/template_noop) +"Wa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/mob/living/simple_animal/hostile/clockminer, +/turf/open/floor/plasteel/white, +/area/template_noop) +"We" = ( +/obj/structure/fluff{ + desc = "Has a valve and pump attached to it."; + icon = 'icons/obj/atmospherics/components/unary_devices.dmi'; + icon_state = "vent_out"; + name = "large air vent" + }, +/turf/open/floor/bronze, +/area/template_noop) +"Wg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/template_noop) +"Wk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/template_noop) +"Wn" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Wp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Wr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Ws" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/red/directional/east, +/turf/open/floor/plasteel, +/area/template_noop) +"Wu" = ( +/obj/structure/fluff{ + desc = "A control terminal for the area's electrical systems. It looks non-responsive.."; + icon = 'icons/obj/power.dmi'; + icon_state = "apc0"; + name = "!ERROR! APC"; + pixel_x = 25 + }, +/turf/open/floor/wood, +/area/template_noop) +"WA" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only/closed{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"WD" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"WG" = ( +/obj/structure/dead_ratvar, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"WJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/chair, +/turf/open/floor/plasteel, +/area/template_noop) +"WO" = ( +/obj/structure/clockcult_tower/source, +/turf/open/floor/bronze, +/area/template_noop) +"WU" = ( +/turf/open/floor/plasteel/white, +/area/template_noop) +"Xa" = ( +/obj/effect/turf_decal/siding/thinplating/end{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"Xk" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Xm" = ( +/obj/structure/lattice, +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4middletram"; + id_target = "lvl4tramcargo"; + name = "lvl4 middle to tram" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"Xx" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Xy" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"XB" = ( +/obj/structure/fluff{ + desc = "You're not sure if walking into this is a great idea..."; + icon = 'icons/effects/eldritch.dmi'; + icon_state = "pierced_illusion"; + name = "fluxating rift" + }, +/obj/effect/bump_teleporter{ + id = "lvl4start"; + id_target = "lvl4boxhall"; + name = "lvl4 start to box" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/template_noop) +"XC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"XM" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/template_noop) +"XS" = ( +/mob/living/simple_animal/hostile/clockwork/cogscarab, +/turf/open/floor/plasteel, +/area/template_noop) +"XW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"XX" = ( +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/carpet, +/area/template_noop) +"XY" = ( +/obj/structure/bed/dogbed/mcgriff, +/mob/living/simple_animal/pet/dog/pug/mcgriff{ + desc = "This dog can tell something smells around here, and that something is OHGODITSALLFAKE!" + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/template_noop) +"Yf" = ( +/obj/item/disk/data{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/disk/tech_disk{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/disk/design_disk{ + name = "component design disk"; + pixel_y = 6 + }, +/obj/structure/table/wood, +/obj/item/toy/talking/ai{ + name = "\improper Nanotrasen-brand toy AI"; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/template_noop) +"Yn" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/template_noop) +"Yo" = ( +/obj/item/book/manual/wiki/security_space_law{ + name = "space law"; + pixel_y = 2 + }, +/obj/item/toy/gun, +/obj/item/restraints/handcuffs, +/obj/structure/table/wood, +/obj/item/clothing/head/collectable/hos{ + name = "novelty HoS hat" + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet, +/area/template_noop) +"Yz" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/template_noop) +"YI" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"YR" = ( +/obj/machinery/door/poddoor/shutters/preopen, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/template_noop) +"YU" = ( +/obj/effect/baseturf_helper/lava_land/surface, +/turf/closed/indestructible/riveted, +/area/template_noop) +"YW" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Za" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Zi" = ( +/obj/structure/fans/tiny/invisible, +/obj/structure/fluff{ + deconstructible = 0; + density = 1; + desc = "this is cursed dawg fr fr"; + icon_state = null; + name = "people blocker" + }, +/obj/structure/emergency_shield/clockmaster_plot_armor, +/turf/open/indestructible/binary{ + light_color = "#4A9629"; + light_power = 0.75; + light_range = 2 + }, +/area/template_noop) +"Zl" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"Zm" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Zo" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{ + brute_damage = 200 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/template_noop) +"Zp" = ( +/obj/structure/table/wood, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/template_noop) +"Zt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"Zy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/cargochat/engineering, +/turf/open/floor/plasteel, +/area/template_noop) +"ZA" = ( +/obj/structure/table/wood, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/template_noop) +"ZC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"ZI" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/template_noop) +"ZL" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/template_noop) +"ZS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/template_noop) +"ZU" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/template_noop) + +(1,1,1) = {" +YU +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +VI +"} +(2,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(3,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(4,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(5,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(6,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(7,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(8,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +PX +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(9,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Bv +Pm +Pm +Pm +Bv +Gp +JZ +Pm +Pm +PX +Gp +PX +Gp +wV +Pm +Bv +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(10,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Gp +Gp +Bv +Pm +Pm +Pm +Bv +Pm +Pm +Pm +PX +Gp +SA +WA +PX +Bv +QQ +Gp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(11,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Gp +Bv +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +PX +PX +lG +PX +Pm +Bv +cT +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(12,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +wV +PX +wV +PX +PX +Az +sw +lG +PX +Pm +Bv +cT +Bv +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(13,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +PX +ed +hK +hK +ux +hK +hK +Pk +lG +PX +Pm +Pm +Bv +Pm +Pm +Pm +Bv +Gp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(14,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +fy +Pm +CN +Pm +PX +ed +Qe +Jq +sP +Td +Sv +xU +lG +PX +Pm +Pm +fy +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(15,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Gp +Bv +Pm +Pm +wV +wV +PX +ed +ej +PX +Io +Bh +Sv +xU +lG +PX +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(16,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +PX +ob +Hh +tD +Sv +Xy +PX +PX +NN +Sv +xU +lG +PX +Pm +Bv +fJ +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(17,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +PX +yL +Gp +Vf +tD +tD +Xa +XY +cC +ew +gk +xU +dN +CY +wV +Bv +iT +PT +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(18,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +wV +QZ +eB +tD +Sv +Xy +PX +fv +am +Sv +xU +lG +PX +Pm +Bv +fJ +PT +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(19,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +tD +tD +ON +ed +ej +cD +tK +ki +Sv +xU +lG +PX +Pm +Pm +Bv +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(20,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +CN +wV +wV +tD +tD +tD +MW +ed +EI +wM +Dx +vW +Sv +xU +lG +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(21,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ed +Gj +tD +BI +ed +ed +ed +hK +hK +ux +hK +hK +Pk +lG +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(22,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +wV +ed +ed +LG +bm +ed +Ri +SX +Tl +Nr +PN +Sv +uG +Ql +lG +PX +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(23,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Gp +Bv +Pm +Pm +PX +PX +Sv +AQ +pZ +Qp +sx +Bz +Gp +NL +Gp +tz +Pu +Ql +Gp +lG +Zi +Pm +Bv +cT +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(24,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +wV +Tg +Sh +hK +xU +Bv +Hr +Ou +Gi +Ff +Ff +Li +GR +tH +sw +PX +UR +Gi +Zi +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(25,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +wV +Sh +Sh +Oc +mQ +Ff +rb +Tv +Et +jx +QA +zl +av +Sv +Az +Gp +Gi +mv +Ff +SS +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(26,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +wV +Sh +Sh +hK +xU +Gp +rb +Ff +Gi +rb +QL +QA +Jj +hK +hK +PX +SS +Ff +SS +Pm +Pm +Bv +Gp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +fy +Pm +Pm +Pm +Pm +Pm +CN +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(27,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +XX +pd +NX +Sv +xU +Bv +yF +Ff +FX +nB +yF +Ls +mP +Vy +hK +PX +Pm +Zi +CN +Pm +Pm +Pm +Bv +fy +Pm +CN +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +PX +PX +wV +PX +PX +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(28,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +ed +PX +ed +ed +PX +ed +hK +si +Bv +QA +bJ +Gp +Gp +GR +ui +xj +NO +hK +wV +CN +Pm +CN +Pm +wV +PX +Pm +Pm +PX +PX +wV +PX +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +CN +wV +ed +gq +ed +ed +gq +ed +PX +CN +PX +hK +PX +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(29,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +fZ +Zm +Sv +Zo +Bv +yF +yF +Gp +Bv +Sk +hK +hK +hK +hK +PX +Pm +Pm +PX +PX +hK +hK +wV +PX +ed +ed +hK +hK +hK +hK +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +qn +Pm +PX +wV +PX +Sv +GJ +dG +DC +kD +vc +Gp +wV +Bs +hK +wV +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(30,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Zm +PX +Zm +NJ +mQ +sR +Ls +Hr +Gp +Gp +av +hK +wV +wV +PX +Pm +Pm +PX +yq +iu +Ju +UO +VK +jc +hK +NW +PS +LW +ZU +JF +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +qn +Sv +PX +Sv +Sv +gq +ed +JL +ap +eZ +zp +zp +Zl +Gp +oB +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(31,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +wV +Zt +Zm +Zm +Sv +tY +Wn +nU +Wn +sl +sA +gC +hK +wV +Pm +Bv +Pm +Pm +CN +wV +zV +ob +ob +tu +Ie +hK +pJ +Sh +Sh +vj +Sh +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +wV +Sv +qP +If +JN +TV +ap +eZ +fw +zp +jn +QZ +QS +hK +PX +Zi +wV +Zi +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(32,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Bv +Pm +PX +PX +Zm +ed +ed +UT +ed +Xk +hK +hK +hK +ed +PX +Bv +Gp +Bv +fy +Pm +PX +pJ +Gp +Gp +Gp +sm +IQ +ZI +Sh +hW +mq +PX +Pm +Pm +fy +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ed +fe +Hp +BS +DQ +SO +gL +Fd +zU +rF +JD +Sv +hK +PZ +Ff +PZ +Ff +PZ +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(33,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +ed +Zt +qn +wV +Zt +Zt +ed +hG +hG +ed +qm +nl +nl +nl +ed +wV +Pm +Bv +Pm +Pm +PX +Sf +FM +Gp +vA +Gp +Ng +hK +Rs +jC +jC +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +qn +wV +Sv +IU +Hp +wK +Xx +WD +vb +DC +Vf +jf +Wp +kV +zg +df +Ff +sv +Ff +Ff +Zi +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(34,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +CN +Bv +PX +ed +ed +ed +ed +JH +hG +ed +lX +TO +wV +Iv +PX +Pm +Pm +Pm +Pm +CN +wV +hK +Zi +Ff +mv +Ff +lB +hK +hK +hK +Sv +PX +Pm +Bv +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Sv +PX +Sv +aJ +Hp +cZ +Hp +aX +XC +NQ +Vf +JD +bl +rD +ck +Sv +gz +WO +Ff +Hp +SS +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(35,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +PX +hK +hG +hG +ed +nl +wV +Pm +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +SS +Ff +XS +Sb +ES +hK +wV +PX +Pm +Bv +Gp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Sv +PX +Sv +aE +Hp +js +qU +cN +dU +Ff +Vf +jf +yo +TL +Eg +df +Ff +Gi +Ff +Zi +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(36,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +PX +ed +PX +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Zi +wV +PX +wV +PX +Pm +Pm +Bv +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +yW +Bv +PX +ed +fe +Hp +gw +Za +na +Ff +Ff +MY +hK +JD +Sv +hK +hK +Zi +PZ +Zi +pB +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(37,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +CN +CN +Pm +Pm +Pm +Pm +Bv +Gp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +yW +bk +Ff +yW +PX +Sv +Ga +YW +gA +GU +ap +Ff +jK +Ff +nN +ob +gh +hK +PX +Pm +wV +Pm +Bv +fy +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(38,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +fy +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +yW +Ff +Ff +Ff +bk +PX +Sv +Sv +gq +ed +AM +ap +Ff +Ff +Ff +Zl +Gp +ys +pB +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(39,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +CN +bk +Ff +Ff +jK +Ff +yW +PX +PX +PX +Sv +dR +ap +Ff +kG +SN +dx +wV +ZC +hK +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(40,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +PX +wV +PX +wV +Pm +Pm +fy +yW +Ff +Ff +Ff +bk +CN +Pm +PX +gq +ed +wt +PX +PZ +gq +wV +PX +ed +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(41,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +LS +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +bl +zp +ge +Wk +PX +PX +wV +PX +yW +Ff +bk +fy +Pm +Pm +Pm +PX +wV +PX +Pm +PX +wV +qn +sj +wV +PX +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(42,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Qd +Dd +LS +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +PX +BJ +bl +zp +ge +bq +eP +rO +lP +Gp +PX +yW +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Bv +sj +sj +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(43,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +LS +Dd +Tk +Dd +LS +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +Vh +zp +ge +bq +Ei +IZ +np +Gp +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +qn +sj +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(44,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Qd +Dd +Qd +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +PZ +Ff +sv +ge +bq +Pc +Gp +zc +Gp +wV +CN +CN +Pm +fy +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Bv +Pm +fy +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(45,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +LS +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +PX +PZ +Ff +Ff +ge +bq +eP +Sg +TW +Gp +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(46,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +Sv +Ff +Gi +Ff +mo +og +ia +Ws +ia +iE +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(47,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PZ +TP +jK +Gi +PZ +IF +DF +pB +Hp +gk +gk +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(48,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +CN +wV +AP +Ff +ge +hK +dj +Th +pB +RX +Ca +Ca +PX +Pm +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(49,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +AP +zp +iq +uW +jf +UG +fh +PA +Gp +Gp +wV +Bv +Gp +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(50,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +bk +Pm +Pm +Pm +PX +Vs +PX +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Hp +PI +Rx +zp +kH +JD +rV +zp +FS +zp +zp +PX +Bv +zp +zp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(51,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +fy +yW +Dd +yW +fy +PX +Dd +EQ +Vs +PX +Pm +PX +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +sU +JY +QZ +eB +jf +RG +Rx +HT +hT +PX +Pm +Pm +qn +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(52,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +bk +Dd +Tk +Dd +bk +PX +Dd +Dd +Dd +PX +Pm +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +PX +PX +wV +PX +hK +PX +wV +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(53,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +yW +Dd +yW +Pm +PX +Vs +Dd +Dd +PX +PX +Vs +Vs +bC +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +CN +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(54,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +bk +Pm +PX +Vs +Dd +Dd +Dd +Dd +Dd +EQ +iX +Vs +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(55,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +Vs +EQ +Dd +Dd +Dd +Dd +oz +EQ +Vs +Dd +Vs +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(56,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +bC +Vs +Dd +Dd +EQ +Dd +Vs +Vs +Dd +VG +Dd +PX +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(57,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +Vs +Xm +EQ +Dd +Vs +PZ +PZ +Vc +Dd +PZ +Dd +bC +Dd +EQ +Vs +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(58,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Dd +oz +Dd +Dd +oz +Dd +Dd +EQ +Dd +Dd +Dd +Dd +EQ +Vs +Dd +Vs +Vs +Vs +Vs +Vs +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(59,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +EQ +Dd +Dd +Dd +Dd +Dd +PZ +Dd +Dd +Dd +EQ +EQ +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +EQ +EQ +Vs +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(60,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +Dd +Vs +Dd +Tk +Dd +EQ +Dd +Dd +Dd +Dd +oz +VG +Dd +Dd +Dd +Dd +Dd +PZ +Dd +Dd +Dd +Dd +Vs +Vs +Vs +Vs +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(61,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +uQ +uQ +uQ +uQ +uQ +uQ +uQ +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +Vs +Vs +Vs +Vs +Dd +Vs +Vs +EQ +PX +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +PZ +Dd +Vs +Dd +Vs +Vs +Vs +Vs +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(62,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +uQ +Ff +Ff +Ff +Ff +Ff +Ff +uQ +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +Vs +Vs +Vs +PX +PX +Dd +Vs +Dd +Dd +WG +Dd +EQ +EQ +EQ +EQ +EQ +Vs +Vs +Vs +Vs +Vs +Vs +Vs +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(63,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +Ff +Ff +Ff +Ff +Ff +NH +uQ +uQ +uQ +uQ +Pm +uQ +uQ +uQ +uQ +Pm +fy +Pm +Pm +Pm +Pm +PX +PX +PX +PX +PX +Vs +Vs +Vs +Vs +EQ +EQ +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Dd +EQ +PX +Vs +Vs +Vs +Vs +Vs +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(64,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +zR +RB +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +uQ +uQ +uQ +Ff +Ff +uQ +Pm +Pm +Pm +Pm +Pm +PX +Vs +Tk +Vs +Vs +Vs +PX +Vs +Ko +Vs +Dd +Vs +Dd +EQ +Dd +Dd +Dd +Vs +Dd +Dd +Dd +Dd +Vs +Dd +Dd +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(65,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Py +RB +ff +Py +Ff +uz +Ff +Ff +Ff +Ff +uQ +Ff +Ff +Ff +Ff +uQ +uQ +Pm +Pm +Pm +Pm +PX +Dd +Dd +Dd +Vs +Vs +Vs +Vs +Dd +oz +VG +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Vs +Vs +Dd +Dd +Dd +Dd +Dd +Vs +PX +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(66,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +RB +Ff +Qb +Ff +Js +Ff +Ff +Ff +Ff +uQ +zR +Ff +Ff +Ff +uQ +uQ +uQ +wV +wV +wV +Dd +Dd +VG +Dd +wV +wV +wV +Vs +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Dd +Dd +Dd +EQ +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(67,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +RB +Gh +Ff +Ff +Ff +Ff +Ff +Ff +Ff +as +Ff +Ff +Ff +Ff +gv +Dd +wB +Dd +Dd +Dd +Dd +wV +Ul +Dd +Dd +Dd +Dd +Dd +Dd +Dd +PZ +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Vs +Dd +EQ +PX +PX +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +Pm +Pm +Pm +CN +Pm +Bv +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(68,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +RB +Ff +Ff +DK +Ff +Ff +Ff +Ff +Ff +as +Ff +Ff +Ff +Ff +gv +Dd +Dd +Dd +wV +wV +wV +wV +kd +wV +Dd +Dd +Dd +EQ +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Dd +EQ +EQ +PX +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +BX +PX +Pm +Pm +wV +Bv +EY +Bv +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(69,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +RB +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +uQ +zR +Ff +Ff +Ff +uQ +uQ +uQ +PX +PX +PX +PX +Dd +Dd +Dd +Vs +Vs +Vs +Vs +Vs +oz +kd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Dd +Dd +Dd +Vs +Vs +Vs +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +wV +XW +Gp +wV +PX +Gp +PX +PX +CN +Bv +gk +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(70,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +RB +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +uQ +Ff +Ff +Ff +Ff +uQ +uQ +Pm +PX +Vs +Vs +Vs +Vs +Go +Vs +Vs +Vs +Vs +Vs +Ko +Vs +Dd +Vs +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Vs +Dd +Dd +EQ +Dd +Vs +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +tW +mF +mF +mF +mF +vS +Va +wV +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(71,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +zR +RB +Ff +aW +Ff +Ff +Ff +Py +Ff +Ff +uQ +uQ +uQ +Ff +Ff +uQ +Pm +Pm +Pm +PX +PX +PX +Vs +Vs +Vs +Vs +Vs +Vs +Vs +Vs +PX +Vs +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +Dd +Dd +Dd +Dd +Dd +Dd +PX +Vs +Vs +Vs +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +ed +ed +Sv +Rz +hG +PZ +PZ +Sv +SP +Sv +ed +ed +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(72,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +Ff +Ff +Ff +iV +Ff +Ff +NH +uQ +uQ +uQ +uQ +Pm +uQ +uQ +uQ +uQ +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +PX +PX +Vs +Vs +Vs +Vs +Vs +Vs +Dd +Dd +Dd +Dd +Vs +Dd +EQ +Dd +Dd +Dd +Dd +Dd +EQ +EQ +Dd +Vs +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +hK +Pq +Ns +pt +Gi +Ef +GF +Sc +wu +xF +FC +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(73,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +uQ +Ff +Ff +Ff +Ff +Ff +Ff +uQ +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Vs +Vs +EQ +EQ +PZ +Vs +Dd +Vs +Vs +Dd +EQ +Vs +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +oh +gd +Pq +eA +Ff +Gi +yx +We +Ff +Ph +Gp +yn +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(74,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +uQ +uQ +uQ +uQ +uQ +uQ +uQ +uQ +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +PX +EQ +Vs +Dd +Dd +PZ +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Vs +Dd +Dd +Dd +Vs +Vs +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Ks +nJ +hK +Pq +nq +Os +sf +eY +il +Ff +BU +Gp +va +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(75,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +Vs +Vs +bC +Vs +Vs +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Dd +EQ +Vs +Vs +Dd +Dd +Dd +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +bk +wV +hK +hK +hK +hK +Ku +Os +NG +iJ +eX +Gp +Gp +rO +wz +ed +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(76,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +lS +Vs +Vs +Dd +Vs +PX +Vs +Vs +Vs +Vs +Vs +Dd +oz +kd +Dd +Vs +PX +Dd +Vs +PX +Vs +EQ +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Vo +bk +Ff +yW +SS +wV +Sv +zO +LD +Gp +xJ +Kx +cP +lE +Ay +Bq +JA +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(77,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +fy +Pm +Pm +qn +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +Vs +oz +Go +Dd +Vs +PX +Vs +EQ +EQ +EQ +Dd +Dd +Dd +EQ +PX +PX +Dd +Vs +Vs +Vs +PX +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +wV +PX +PX +wV +PX +Pm +Pm +Pm +fy +yW +bk +Ff +Ff +Ff +Ff +SS +Ma +nq +Gp +Gp +EV +Sv +Sv +bu +Sv +hK +hK +ed +wV +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(78,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Jx +Bv +Bv +Pm +Pm +Pm +Pm +PX +PX +PX +PX +Vs +Vs +Dd +Vs +bC +Vs +EQ +Vs +Vs +PZ +PZ +Vc +PZ +Vs +Vs +Vs +EQ +bC +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +ed +PZ +PZ +PZ +PZ +PZ +PX +Pm +Pm +bk +Ff +Ff +Ff +Cq +Ff +Ff +Zi +Sv +Zy +ZL +Gp +zG +Sv +zW +FW +wc +Ro +hK +ed +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(79,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Bv +PX +xK +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +PX +EQ +Dd +Dd +Dd +Dd +Dd +Dd +Vs +Vs +Vs +Sl +bC +Dd +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +YR +vU +Jw +vo +ss +YR +Gc +wV +PX +Pm +yW +yW +Ff +Ff +Ff +SS +pQ +Sv +Rb +Bk +Lx +Mm +Sv +gf +wV +wV +PX +ed +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(80,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +cf +PX +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +EQ +Vs +Vs +Dd +Dd +Dd +Dd +Vs +Vs +bC +Dd +kd +Dd +PX +Pm +Pm +Pm +fy +Pm +Pm +PX +CN +wV +Sv +Sv +PZ +zd +Gi +Cq +Ff +PZ +Zl +Gp +Gp +PX +CN +fy +yW +bk +Ff +yW +wV +ed +qp +Gp +xJ +zr +Sv +Kd +RZ +PX +Pm +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(81,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +PX +PX +PX +Jx +zp +wV +PX +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +EQ +Dd +Dd +Dd +Vs +Vs +PX +PX +PX +Dd +PX +Pm +Pm +Pm +Pm +Pm +Pm +wV +Rr +Zi +PX +om +om +YR +SJ +Ff +We +Gi +bn +Zl +Rk +Uk +wV +CN +CN +Pm +Pm +yW +Pm +PX +Sv +nq +jW +Tt +ed +ed +ed +ed +wV +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(82,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +hK +hK +Sv +mN +Jx +qr +xK +hK +PX +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +EQ +Dd +Vs +Vs +Vs +Vs +PX +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +PX +Rr +Ff +Rr +jx +jx +om +PZ +vB +Gi +pi +DN +ed +Jz +nL +GG +PX +Pm +Pm +Pm +Pm +Pm +CN +wV +ed +Rw +Gp +va +Fm +eC +Mr +PX +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(83,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Hu +hK +Ct +zp +xK +Sv +wV +PX +wV +PX +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Vs +Dd +EQ +Vs +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +Rr +Ff +Cq +Ff +Rr +ud +wL +ed +ZA +Ff +ER +Tg +YR +Zl +nL +PX +Pm +Pm +Pm +Pm +fy +Pm +Pm +PX +ed +OY +lE +Tm +hK +kL +PX +qn +Hp +qn +CN +CN +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(84,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +WU +sJ +Hu +Sv +Jx +cf +aL +hK +Sv +nX +nX +Sv +ed +Sv +PX +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +Vs +Dd +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Zi +Ff +SS +Ff +wV +CI +NR +sj +sj +DG +Rh +YR +Zl +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +PX +wV +PX +wV +Pm +Pm +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(85,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +RR +Fc +Sv +Jx +zp +xK +pg +WU +Ff +Ff +Ff +Gi +WU +Zi +fy +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +MN +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +SS +Ff +Gp +Hr +om +ed +Lu +sj +RQ +vr +YR +Zl +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(86,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +Mt +fp +Jx +cf +zp +pg +fw +cf +Gi +Ff +Iy +Ff +zp +SS +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +wV +wV +wV +wL +ed +UC +sj +jA +Eq +ed +Zl +Jm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(87,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +WU +cH +Sv +Jx +zp +Fa +pg +WU +te +Ff +Gi +Ff +Zi +SS +fy +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +uH +WJ +wL +YR +ev +sj +So +sj +NR +Zl +wT +wV +CN +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(88,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +CN +wV +Wa +oq +kp +Jx +cf +XM +hK +PZ +hK +PZ +PZ +Sv +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +PX +Sv +ed +el +sj +sj +Yf +ed +Zl +Gp +Gp +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(89,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +WU +cH +ay +Sv +Jx +zp +XM +hK +PX +PX +PX +wV +PX +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +PX +Vs +PX +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +YR +EN +Wu +Zp +Yo +YR +TY +Gp +Gp +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(90,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +cH +jI +Hu +hK +Ff +cf +XM +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +wV +ed +ed +ed +ed +ed +ed +PX +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(91,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +It +ok +hH +PZ +vA +zp +XM +hK +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +PX +PX +wV +PX +wV +PX +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(92,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +Up +Gi +sT +bv +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(93,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +rl +Ff +Iy +Gi +PX +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(94,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +Ff +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(95,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +Pm +Pm +fy +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(96,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +qn +zp +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(97,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(98,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(99,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(100,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +nX +nX +Pm +Pm +fy +Pm +Zi +PZ +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(101,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +SS +Ff +SS +PX +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(102,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +Pm +PX +SS +Ff +Iy +Ff +PZ +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +Pm +CN +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(103,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +fw +PX +hK +BD +sT +Ff +Gi +ow +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +hK +Bv +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(104,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +PX +TY +zp +Sn +hK +AZ +Ff +DZ +hK +hK +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Bv +PX +Gp +PX +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +PX +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(105,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +PX +TY +kn +Sn +hK +DB +CT +uH +kb +ow +hK +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Gp +cs +Gp +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +PX +Pm +PX +PX +PX +PX +PX +Vs +Vs +AC +Vs +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(106,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +Oe +rl +Wr +hK +PZ +hK +BY +hK +hK +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +wV +ed +qh +Gp +Gp +wV +CN +PX +Pm +Pm +Pm +qn +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +FK +Vs +Vs +PX +Vs +Vs +Jh +Vs +PX +Vs +Vs +Jh +Vs +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(107,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +tD +ph +EK +TY +Ug +Sn +Sn +Sn +Sn +Sn +DY +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ed +Fw +Fw +Fw +hK +PX +hG +wV +PX +qn +hG +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +XB +Vs +PX +PX +Vs +Vs +AC +Vs +Vs +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(108,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +ib +TY +zp +zp +zp +Um +Ff +zp +zp +Sn +ox +hK +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +ed +fj +Gp +Gp +hK +VU +VU +VU +hG +PX +Bv +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +PX +Vs +Vs +Vs +Vs +PX +PX +PX +Vs +Vs +ea +PX +PX +Pm +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(109,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +wV +hK +ib +TY +zp +cu +bJ +Ff +Ff +BH +zp +Sn +tq +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +oH +Gp +bb +hK +hG +hG +hG +hG +PX +wV +Pm +Pm +Pm +Pm +Bv +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +fy +Pm +CN +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +Vs +PX +PX +Vs +Vs +Vs +Vs +Vs +Vs +ea +ea +ea +PX +ea +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(110,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +ib +TY +ya +cb +Gi +Ff +nv +nv +fU +Sn +hk +hK +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +ed +ed +fj +Gp +Gp +hK +jv +hG +ri +hG +PX +hG +PX +Pm +wV +Bv +Gp +Bv +PX +Pm +Pm +Pm +CN +CN +Pm +Pm +Pm +CN +CN +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +AC +Vs +Vs +PX +PX +Vs +ea +ea +ea +ea +ea +ea +ea +ea +PX +ea +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(111,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +xt +zp +QL +Ff +vM +Ff +QL +Ff +tF +hK +hK +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ih +ih +ih +Sv +Gp +Gp +Ua +hK +VU +hG +ri +hG +ri +hG +ri +PX +Gp +Uh +PX +Bv +hG +wV +PX +PX +PX +wV +PX +PX +PX +Pm +CN +Pm +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +PX +PX +ea +ea +PX +ea +ea +ea +ea +ea +PX +ea +ea +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(112,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +yf +Gc +ya +Gy +Gy +Ff +nv +nv +zp +uH +vm +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ih +ih +Sv +Gp +bb +Gp +hK +VU +hG +ri +hG +ri +hG +hG +hK +Gp +PX +Gp +PX +hG +wV +hG +ed +ed +ed +ed +ed +ed +PX +wV +PX +ed +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Vs +Vs +PX +PX +PX +ea +PX +ea +ea +ea +ea +ea +ea +ea +ea +PX +Pm +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +jr +"} +(113,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +SM +Gc +zp +We +Yz +Gi +Ff +Ff +zp +uH +tD +wV +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ih +ih +Sv +Gp +Gp +Yn +hK +hG +hG +hG +hG +tp +hG +fK +hK +aI +rn +Gp +Gp +hG +hK +dv +ed +BV +jw +JW +Sv +nP +xx +pt +PX +yZ +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +FK +Vs +Vs +Vs +PX +PX +PX +ea +ea +ea +ea +ea +ea +ea +ea +ea +PX +ea +ea +PX +Pm +Pm +Pm +Pm +Pm +jr +"} +(114,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +wV +hK +aa +Gc +zp +Ff +Ff +Ff +zp +zp +zp +uH +ox +wV +CN +CN +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +TL +Gp +Gp +hK +hK +hK +hK +io +hK +hK +hK +hK +hK +hK +rv +hK +hK +hK +RV +jt +jt +Gp +uD +hK +Ur +Gp +Gp +Gp +EV +vq +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +AC +Vs +Vs +PX +PX +PX +PX +ea +ea +PX +ea +ea +ea +ea +ea +PX +ea +ea +PX +Pm +PX +Pm +Pm +PX +jr +"} +(115,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +aa +Gc +tx +uH +uH +uH +qR +uH +uH +uH +tD +Gp +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +Uf +Gp +cc +ms +Rd +Rd +Rd +yt +Rd +Sz +qs +xu +Rd +Kv +Rd +Rd +yt +GT +Gp +Gp +Gp +Gp +Rd +Tr +Fz +Gp +Gp +Gp +EV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Vs +Vs +AC +Vs +PX +PX +PX +PX +PX +PX +PX +ea +ea +ea +ea +ea +ea +ea +PX +ea +PX +PX +ea +HN +"} +(116,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +wV +hK +YI +mG +hC +hK +iB +oZ +KK +AD +hK +wV +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +CN +wV +Pt +bl +Gp +Gp +Fw +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Gp +Fw +Gp +Gp +ut +Gp +wV +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +Vs +PX +Vs +Vs +Vs +Vs +Vs +PX +PX +ea +ea +PX +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +PX +PX +ea +HN +"} +(117,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +wV +hK +hK +hK +hK +hK +hK +hK +hK +hK +hK +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +OJ +hK +Lj +Gp +Gp +VL +xJ +ft +xJ +Rq +xJ +OS +xJ +xJ +bb +Gp +Gp +xJ +xJ +xJ +xJ +xJ +xJ +xJ +xJ +uo +Kx +RN +Gp +xJ +in +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +Vs +Vs +PX +Vs +Vs +Vs +Vs +Vs +Vs +PX +Vs +ea +ea +ea +PX +PX +PX +ea +ea +ea +PX +PX +ea +HN +"} +(118,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +wV +PX +wV +PX +wV +PX +PX +wV +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +hK +hK +Ja +Gp +wp +hK +hK +hK +hK +hK +dv +hK +Cs +Cs +zC +Wg +eV +iA +iA +ed +Sv +Sv +ed +ed +ed +Sv +UQ +Sv +Fw +Sv +ed +ed +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +PX +PX +PX +PX +PX +PX +Vs +Vs +Vs +Vs +Vs +Vs +Vs +PX +ea +ea +PX +ea +ea +ea +ea +ea +ea +ea +HN +"} +(119,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ih +ih +Sv +Gp +Gp +OJ +hK +wV +Gp +fH +hK +hG +ed +ed +ed +Sv +SP +Sv +ed +ed +ed +LO +wH +QK +ed +PX +wV +PX +wV +PX +PX +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +Vs +Vs +Vs +Vs +Vs +PX +Vs +Vs +Vs +Vs +Vs +Vs +Vs +PX +PX +PX +PX +PX +PX +PX +ea +ea +ea +ea +HN +"} +(120,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ih +PX +wV +PX +Gp +wV +PX +Pm +wV +qX +hK +hG +ed +wV +fb +iN +VP +ZS +ed +wV +PX +KO +Hp +PX +wV +Pm +CN +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Vs +PX +PX +PX +PX +Vs +Vs +Vs +PX +PX +PX +Ce +Vs +Vs +Vs +PX +FK +Vs +Vs +PX +Vs +Vs +ea +ea +ea +HN +"} +(121,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +Pm +Pm +Pm +PX +CN +Pm +Pm +CN +PX +wV +PX +PX +Pm +PX +wV +PX +PX +PX +CN +Pm +PX +PX +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ea +ea +ea +PX +PX +PX +Vs +Vs +PX +FK +Vs +Vs +Vs +Vs +Vs +Vs +Vs +ho +Vs +Ce +Vs +Vs +ea +ea +ea +HN +"} +(122,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ea +PX +PX +ea +PX +PX +PX +PX +PX +Vs +Vs +Jh +Vs +Vs +Vs +Dd +Dd +Dd +Vs +Vs +Vs +ea +ea +ea +HN +"} +(123,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ea +ea +PX +ea +ea +ea +PX +Vs +Vs +Vs +Vs +Vs +Vs +Vs +Dd +Dd +xy +Dd +Dd +Vs +Vs +Vs +ea +ea +HN +"} +(124,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +fy +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ea +ea +ea +ea +ea +ea +PX +PX +ea +AC +AC +AC +Vs +Vs +Vs +Vs +ho +Dd +ho +Vs +Vs +Vs +Jh +ea +ea +HN +"} +(125,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +ea +ea +ea +ea +ea +PX +ea +ea +ea +ea +Vs +Vs +Vs +Ce +Vs +Dd +Vs +Vs +Vs +Jh +Jh +ea +ea +HN +"} +(126,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +PX +ea +ea +ea +ea +ea +ea +ea +Vs +PX +Vs +Vs +Vs +Vs +Vs +FK +FK +ea +ea +ea +ea +HN +"} +(127,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +PX +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +PX +PX +PX +PX +ea +Vs +AC +AC +AC +ea +ea +ea +ea +HN +"} +(128,1,1) = {" +jr +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +Pm +PX +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +PX +ea +ea +ea +ea +ea +ea +ea +ea +ea +ea +HN +"} +(129,1,1) = {" +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +jr +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 +"} diff --git a/_maps/RandomZLevels/moonoutpost19.dmm b/_maps/away/moonoutpost19.dmm similarity index 98% rename from _maps/RandomZLevels/moonoutpost19.dmm rename to _maps/away/moonoutpost19.dmm index 731cec3d3066..445df858ede6 100644 --- a/_maps/RandomZLevels/moonoutpost19.dmm +++ b/_maps/away/moonoutpost19.dmm @@ -826,7 +826,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "bY" = ( @@ -853,7 +853,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "ca" = ( @@ -861,7 +861,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cb" = ( @@ -874,7 +874,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cc" = ( @@ -888,21 +888,19 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cd" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null; req_access_txt = "150" }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "ce" = ( @@ -916,7 +914,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cf" = ( @@ -928,7 +926,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cg" = ( @@ -941,7 +939,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "ch" = ( @@ -956,7 +954,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "ci" = ( @@ -977,9 +975,9 @@ /area/awaymission/moonoutpost19/syndicate) "cj" = ( /obj/structure/chair/stool, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) "ck" = ( @@ -1030,7 +1028,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cp" = ( @@ -1047,7 +1045,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cr" = ( @@ -1077,7 +1075,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "ct" = ( @@ -1093,7 +1091,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cv" = ( @@ -1105,7 +1103,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cw" = ( @@ -1137,9 +1135,9 @@ }, /area/awaymission/moonoutpost19/syndicate) "cA" = ( +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/syndicate) "cB" = ( @@ -1162,7 +1160,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cD" = ( @@ -1179,7 +1177,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cF" = ( @@ -1191,7 +1189,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cG" = ( @@ -1216,7 +1214,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cI" = ( @@ -1228,7 +1226,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cJ" = ( @@ -1239,11 +1237,11 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cK" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ name = "Worn-out APC"; pixel_y = -23; req_access_txt = "150"; @@ -1257,7 +1255,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cL" = ( @@ -1272,7 +1270,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cM" = ( @@ -1327,16 +1325,16 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cR" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged4"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cS" = ( @@ -1356,7 +1354,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cT" = ( @@ -1392,25 +1390,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"cW" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"cX" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged3"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cY" = ( @@ -1427,7 +1407,7 @@ dir = 1; heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "cZ" = ( @@ -1493,7 +1473,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "df" = ( @@ -1515,7 +1495,7 @@ dir = 1; heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dh" = ( @@ -1567,7 +1547,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dm" = ( @@ -1578,7 +1558,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dn" = ( @@ -1588,16 +1568,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/syndicate) -"do" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dp" = ( @@ -1607,11 +1578,11 @@ /obj/item/mining_scanner, /obj/item/shovel, /obj/item/pickaxe, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg3"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dq" = ( @@ -1695,7 +1666,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dx" = ( @@ -1717,7 +1688,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dz" = ( @@ -1746,15 +1717,15 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dC" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dD" = ( @@ -1766,7 +1737,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dE" = ( @@ -1829,7 +1800,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dJ" = ( @@ -1854,7 +1825,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/syndicate) "dM" = ( @@ -1862,7 +1833,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "dN" = ( @@ -2220,9 +2191,9 @@ name = "S.U.P.E.R.P.A.C.M.A.N.-type portable generator" }, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "eU" = ( @@ -2242,10 +2213,10 @@ /obj/machinery/power/terminal{ dir = 4 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/structure/cable, /turf/open/floor/plating{ heat_capacity = 1e+006 @@ -2278,9 +2249,9 @@ /area/awaymission/moonoutpost19/research) "eZ" = ( /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "fa" = ( @@ -2348,10 +2319,10 @@ /obj/machinery/light/small/broken{ dir = 1 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/structure/alien/weeds, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -2657,10 +2628,10 @@ pixel_x = -3; pixel_y = -2 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -2769,9 +2740,9 @@ }, /area/awaymission/moonoutpost19/research) "gg" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "gi" = ( @@ -2949,9 +2920,9 @@ "gx" = ( /obj/structure/table, /obj/item/paper/fluff/awaymissions/moonoutpost19/log/ivan, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "gy" = ( @@ -2981,7 +2952,7 @@ /obj/structure/chair{ dir = 4 }, -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_x = -30 }, /obj/effect/turf_decal/tile/red{ @@ -3041,7 +3012,7 @@ }, /area/awaymission/moonoutpost19/research) "gG" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 4; locked = 0; name = "Worn-out APC"; @@ -3110,9 +3081,9 @@ "gN" = ( /obj/item/stack/rods, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "gO" = ( @@ -3171,11 +3142,10 @@ /obj/machinery/light/broken{ dir = 4 }, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/effect/turf_decal/tile/purple, /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 @@ -3382,9 +3352,9 @@ "hp" = ( /obj/effect/decal/cleanable/oil, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "hq" = ( @@ -3393,7 +3363,7 @@ name = "research director's locker"; req_access_txt = "201" }, -/obj/item/storage/backpack/satchel/tox, +/obj/item/storage/backpack/satchel/science, /obj/item/clothing/gloves/color/latex, /turf/open/floor/plasteel/cafeteria{ dir = 5 @@ -3401,11 +3371,8 @@ /area/awaymission/moonoutpost19/research) "hr" = ( /obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, +/obj/item/computer_disk/ordnance, +/obj/item/computer_disk/ordnance, /obj/machinery/firealarm{ pixel_y = 24 }, @@ -3418,10 +3385,10 @@ /obj/machinery/light/small/broken{ dir = 1 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/item/paper/fluff/awaymissions/moonoutpost19/log/gerald, /turf/open/floor/plasteel/cafeteria{ dir = 5 @@ -3574,11 +3541,10 @@ /obj/structure/table, /obj/item/storage/firstaid/regular, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/plasteel/white/side{ dir = 8; heat_capacity = 1e+006 @@ -3594,9 +3560,9 @@ /obj/structure/closet/crate, /obj/item/storage/box/lights/mixed, /obj/item/poster/random_contraband, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "hL" = ( @@ -3701,9 +3667,9 @@ /area/awaymission/moonoutpost19/arrivals) "hW" = ( /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/research) "hX" = ( @@ -3771,7 +3737,7 @@ /area/awaymission/moonoutpost19/research) "ic" = ( /obj/structure/rack, -/obj/item/paicard{ +/obj/item/pai_card{ pixel_x = 4 }, /obj/effect/turf_decal/stripes/line{ @@ -3836,11 +3802,10 @@ }, /area/awaymission/moonoutpost19/research) "ij" = ( -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23; +/obj/machinery/airalarm/directional/east{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/machinery/light/small{ dir = 8 }, @@ -4218,22 +4183,8 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" - }, -/area/awaymission/moonoutpost19/arrivals) -"iW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" +/turf/open/floor/plasteel/cafeteria{ + dir = 5 }, /area/awaymission/moonoutpost19/arrivals) "iX" = ( @@ -4291,9 +4242,9 @@ /area/awaymission/moonoutpost19/arrivals) "je" = ( /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched2" + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "jf" = ( @@ -4391,10 +4342,9 @@ desc = "A plastic potted plant."; pixel_y = 3 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "jr" = ( @@ -4429,10 +4379,9 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "jw" = ( @@ -4440,10 +4389,9 @@ /obj/structure/sign/poster/contraband/eat{ pixel_y = 32 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "jx" = ( @@ -4490,11 +4438,11 @@ /area/awaymission/moonoutpost19/arrivals) "jA" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "jB" = ( @@ -4531,7 +4479,7 @@ }, /area/awaymission/moonoutpost19/arrivals) "jH" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 1; locked = 0; name = "Worn-out APC"; @@ -4544,10 +4492,10 @@ }, /area/awaymission/moonoutpost19/arrivals) "jI" = ( -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -4576,9 +4524,9 @@ }, /obj/item/paper/fluff/awaymissions/moonoutpost19/food_specials, /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched1" + initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "jM" = ( @@ -4669,10 +4617,10 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23; +/obj/machinery/airalarm/directional/south{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/effect/turf_decal/tile/purple{ dir = 4 }, @@ -4707,24 +4655,14 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"kc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) "kd" = ( /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "ke" = ( @@ -4734,7 +4672,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kf" = ( @@ -4746,36 +4684,23 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kg" = ( /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "kh" = ( /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) -"ki" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged3"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kj" = ( @@ -4854,11 +4779,10 @@ dir = 4 }, /obj/machinery/processor, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/plasteel/cafeteria{ dir = 5 }, @@ -4940,12 +4864,12 @@ }, /area/awaymission/moonoutpost19/arrivals) "kB" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kC" = ( @@ -4959,12 +4883,12 @@ /obj/effect/decal/remains/human{ desc = "They look like human remains. The skeleton is curled up in fetal position with the hands placed near the throat." }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged4"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kE" = ( @@ -4972,16 +4896,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) -"kF" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged5"; - initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kG" = ( @@ -4990,7 +4905,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kH" = ( @@ -5082,11 +4997,11 @@ "kQ" = ( /obj/structure/grille/broken, /obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg3"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "kR" = ( @@ -5268,7 +5183,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "ll" = ( @@ -5280,7 +5195,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "lm" = ( @@ -5302,19 +5217,18 @@ dir = 4 }, /obj/structure/chair/wood, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "lp" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "lq" = ( @@ -5323,11 +5237,10 @@ }, /obj/structure/table, /obj/item/storage/box, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23; +/obj/machinery/airalarm/directional/east{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -5390,7 +5303,7 @@ "lv" = ( /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "lw" = ( @@ -5401,7 +5314,7 @@ }, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "lx" = ( @@ -5413,7 +5326,7 @@ /obj/item/clothing/under/suit/waiter, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "lA" = ( @@ -5429,7 +5342,7 @@ }, /turf/open/floor/plating{ initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "lE" = ( @@ -5472,7 +5385,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "lJ" = ( @@ -5482,7 +5395,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "lK" = ( @@ -5519,12 +5432,6 @@ heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) -"lP" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/moonoutpost19/arrivals) "lQ" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ @@ -5556,7 +5463,7 @@ /obj/item/gun/ballistic/shotgun/sc_pump, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "lW" = ( @@ -5628,7 +5535,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "mi" = ( @@ -5678,7 +5585,7 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "mn" = ( @@ -5693,7 +5600,7 @@ /obj/item/food/meat/slab/monkey, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "mo" = ( @@ -5708,7 +5615,7 @@ /obj/item/storage/fancy/egg_box, /turf/open/floor/plasteel/showroomfloor{ heat_capacity = 1e+006; - temperature = 273.15 + initial_temperature = 273.15 }, /area/awaymission/moonoutpost19/arrivals) "mp" = ( @@ -5773,7 +5680,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "my" = ( @@ -5808,7 +5715,7 @@ }, /area/awaymission/moonoutpost19/arrivals) "mB" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel/dark, /area/awaymission/moonoutpost19/arrivals) "mC" = ( @@ -5941,7 +5848,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "mQ" = ( @@ -5950,12 +5857,11 @@ dir = 8; icon_state = "ltrails_1" }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "mR" = ( @@ -5986,11 +5892,10 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, @@ -6032,7 +5937,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "na" = ( @@ -6080,12 +5985,11 @@ /turf/open/floor/mineral/titanium/blue, /area/awaymission/moonoutpost19/arrivals) "ni" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nj" = ( @@ -6093,12 +5997,12 @@ dir = 4; pixel_x = 24 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nk" = ( @@ -6152,18 +6056,12 @@ dir = 4; network = list("mo19") }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 - }, -/area/awaymission/moonoutpost19/arrivals) -"nr" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "ns" = ( @@ -6190,7 +6088,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nw" = ( @@ -6204,7 +6102,7 @@ /turf/open/floor/plasteel/cafeteria{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nx" = ( @@ -6228,20 +6126,19 @@ /turf/open/floor/plasteel/cafeteria{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "ny" = ( -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 23; +/obj/machinery/airalarm/directional/west{ req_access = null }, +/obj/effect/mapping_helpers/airalarm/unlocked, /obj/effect/turf_decal/tile/neutral, /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nz" = ( @@ -6290,11 +6187,11 @@ dir = 8; icon_state = "ltrails_2" }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nE" = ( @@ -6303,11 +6200,11 @@ dir = 8; icon_state = "ltrails_2" }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg3"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nF" = ( @@ -6320,7 +6217,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nG" = ( @@ -6333,7 +6230,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nH" = ( @@ -6363,9 +6260,9 @@ /area/awaymission/moonoutpost19/arrivals) "nJ" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/moonoutpost19/arrivals) "nK" = ( @@ -6395,7 +6292,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nN" = ( @@ -6406,7 +6303,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nO" = ( @@ -6445,12 +6342,12 @@ "nS" = ( /obj/structure/table, /obj/item/toy/cards/deck, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; heat_capacity = 1e+006; - icon_state = "damaged1"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nT" = ( @@ -6489,19 +6386,18 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nX" = ( /obj/structure/chair/comfy/black{ dir = 8 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ - dir = 8; heat_capacity = 1e+006; - icon_state = "floorscorched2"; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nY" = ( @@ -6513,7 +6409,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "nZ" = ( @@ -6526,7 +6422,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "oa" = ( @@ -6548,7 +6444,7 @@ /turf/open/floor/plasteel{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "oc" = ( @@ -6560,7 +6456,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "od" = ( @@ -6612,7 +6508,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "rk" = ( @@ -6627,7 +6523,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "vJ" = ( @@ -6638,7 +6534,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "vV" = ( @@ -6665,7 +6561,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "Hw" = ( @@ -6676,7 +6572,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "IW" = ( @@ -6687,7 +6583,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "Mm" = ( @@ -6714,7 +6610,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "VE" = ( @@ -6728,7 +6624,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/arrivals) "Wf" = ( @@ -6748,7 +6644,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) "Zf" = ( @@ -6759,7 +6655,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=48.7;n2=13.2;o2=32.4;TEMP=251"; - temperature = 251 + initial_temperature = 251 }, /area/awaymission/moonoutpost19/main) @@ -37491,7 +37387,7 @@ dZ ba ba io -kc +kg kB jC ba @@ -38777,7 +38673,7 @@ ba ja jB kh -kF +kB io ba ba @@ -39033,7 +38929,7 @@ ba ba ba jC -ki +kd kG io ba @@ -39812,7 +39708,7 @@ lJ mh mx mQ -kF +kB nj mh ny @@ -40277,7 +40173,7 @@ ca cp ca cR -cW +cR ca ca du @@ -40534,9 +40430,9 @@ cb cq cF cS -cX +cR cF -do +cR aU dy dD @@ -40585,7 +40481,7 @@ mz mT nb hJ -nr +lp hI nI ln @@ -41870,7 +41766,7 @@ ba ba hI nm -lP +lp hI hJ hJ @@ -42121,7 +42017,7 @@ jF jF kY hJ -lP +lp hI ba ba @@ -44941,7 +44837,7 @@ ba ba ba hI -iW +iV iX jQ kq diff --git a/_maps/away/mothership_astrum.dmm b/_maps/away/mothership_astrum.dmm new file mode 100644 index 000000000000..d715f73d5bd3 --- /dev/null +++ b/_maps/away/mothership_astrum.dmm @@ -0,0 +1,69296 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ad" = ( +/mob/living/simple_animal/hostile/abductor/ranged, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"ai" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"am" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"an" = ( +/obj/structure/bed/abductor, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ar" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"at" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/machinery/door/airlock/abductor{ + name = "Experiment Disposal" + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"av" = ( +/obj/structure/table/abductor, +/obj/item/surgicaldrill/alien, +/obj/item/circular_saw/alien, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"aw" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing/a357, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"aP" = ( +/turf/open/indestructible/hotelwood, +/area/awaymission/mothership_astrum/deck1) +"aU" = ( +/obj/structure/table/abductor, +/obj/item/ammo_casing/shotgun, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"aV" = ( +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"aX" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall/mineral/sandstone, +/area/awaymission/mothership_astrum/deck5) +"bd" = ( +/obj/item/clothing/under/abductor, +/obj/item/clothing/under/abductor, +/obj/item/clothing/under/abductor, +/obj/structure/closet/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bl" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "highsec"; + name = "High Security Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bq" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bw" = ( +/obj/structure/table/abductor, +/obj/item/gun/ballistic/automatic/mini_uzi, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"bx" = ( +/obj/structure/table/abductor, +/obj/item/storage/belt/military/abductor/full, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bC" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = 12; + pixel_y = 9 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"bE" = ( +/mob/living/simple_animal/hostile/abductor/ranged/agent, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bF" = ( +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/structure/closet/crate, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"bI" = ( +/obj/machinery/door/airlock/abductor{ + name = "Xenobiological Studies" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"bR" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/astrum/mid, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"bV" = ( +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"bW" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ca" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"cu" = ( +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"cU" = ( +/obj/structure/alien/weeds, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/alien/egg/burst, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"db" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"dd" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/organ/eyes/robotic, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"dh" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"dj" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"dk" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/alien/sentinel{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"dC" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"dG" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"dV" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"dW" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + faction = list("Abductor"); + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"ea" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand2" + }, +/area/awaymission/mothership_astrum/deck1) +"ee" = ( +/turf/closed/indestructible/alien, +/area/awaymission/mothership_astrum/halls) +"ei" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"ej" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/blood/o_minus, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"ep" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/wall/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"eu" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/c9mm, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"ey" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/sand, +/obj/structure/bedsheetbin, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"eE" = ( +/mob/living/simple_animal/hostile/abductor/ranged/agent, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"eF" = ( +/obj/structure/table/abductor, +/obj/item/organ/cyberimp/brain/anti_drop, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"eM" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"eN" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/resin/membrane/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"eV" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"eY" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"fj" = ( +/obj/item/stack/sheet/mineral/plastitanium, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"fn" = ( +/obj/structure/closet/abductor, +/obj/item/storage/firstaid/fire, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"fp" = ( +/obj/structure/window, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"fz" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/resin, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"fB" = ( +/obj/item/clothing/mask/gas/tiki_mask, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"fE" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/melee/baseball_bat/ablative, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"fF" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"fM" = ( +/obj/effect/mob_spawn/human/lobotomite, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"fO" = ( +/obj/structure/alien/weeds/creature, +/obj/item/ammo_box/c38, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"fP" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"fZ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"gi" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"gw" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/membrane/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"gx" = ( +/obj/effect/turf_decal/sand, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"gB" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"gI" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"gQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"gU" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/resin/wall/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hh" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/organ/cyberimp/brain/anti_drop, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"hj" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/membrane, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hk" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hu" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/resin/membrane, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hz" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + faction = list("Abductor"); + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hF" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/gelpod, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"hG" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/blood/o_minus, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"hY" = ( +/mob/living/simple_animal/hostile/abductor/melee, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"il" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/firstaid, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"iA" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"iF" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"iM" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/meta, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"iO" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"iQ" = ( +/obj/structure/table/abductor, +/obj/item/organ/cyberimp/brain/anti_stun, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"iS" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"iU" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/microwave, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"iY" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jc" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/resin/membrane, +/obj/structure/alien/resin/membrane, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"je" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/abductor{ + id_tag = "minsec"; + name = "Minimum Security Airlock" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jh" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/toy/crayon/spraycan/infinite, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jl" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/backpack/duffelbag/syndie/surgery, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jB" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 6 + }, +/area/awaymission/mothership_astrum/deck5) +"jH" = ( +/mob/living/simple_animal/hostile/alien/sentinel{ + faction = list("Abductor") + }, +/obj/structure/alien/weeds, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"jL" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "lootlock"; + name = "Equipment Lock" + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"jM" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/abductor{ + id_tag = "highsec"; + name = "High Security Airlock" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jP" = ( +/obj/item/kitchen/knife/shiv, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"jS" = ( +/obj/machinery/door/airlock/abductor, +/obj/structure/alien/weeds, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ka" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/weeds/creature, +/obj/structure/alien/resin/membrane/creature, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"kl" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + faction = list("Abductor"); + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"ko" = ( +/obj/structure/table/optable/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"kw" = ( +/obj/structure/fluff/iced_abductor, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"ky" = ( +/obj/machinery/porta_turret/syndicate/energy/heavy{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"kB" = ( +/mob/living/simple_animal/hostile/abductor/agent, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"kO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"kY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"kZ" = ( +/obj/structure/bed/abductor, +/obj/effect/mob_spawn/human/corpse, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"le" = ( +/obj/effect/turf_decal/sand, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"lk" = ( +/obj/structure/alien/weeds, +/obj/structure/glowshroom/single, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"ll" = ( +/obj/structure/table/abductor, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"lw" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"lO" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "medsec"; + name = "Medium Security Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"lR" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/healthanalyzer/wound, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"lV" = ( +/mob/living/simple_animal/hostile/skeleton/eskimo{ + faction = list("Abductor") + }, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"lY" = ( +/obj/structure/flora/bush, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"mm" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"mo" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"mq" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"mv" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/astrum, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"mW" = ( +/turf/open/floor/plating/ice/smooth{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"nc" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/c9mm, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"nf" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/sand, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"nx" = ( +/turf/open/lava/plasma/mafia, +/area/awaymission/mothership_astrum/deck3) +"ny" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"nE" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/magazine/uzim9mm, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"nH" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/reagent_containers/glass/mortar, +/obj/item/pestle, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"nI" = ( +/turf/closed/wall/mineral/snow, +/area/awaymission/mothership_astrum/deck3) +"nJ" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/pirate/armored, +/obj/item/clothing/suit/pirate/captain/armored{ + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 50, "bomb" = 30, "bio" = 30, "fire" = 60, "acid" = 75); + name = "improved captain coat" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"nK" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/astrum, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"nL" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/magazine/uzim9mm, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"nX" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"oa" = ( +/obj/effect/mob_spawn/human/abductor, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"ob" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/shotgun{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"oc" = ( +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"od" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"og" = ( +/turf/closed/wall/mineral/wood, +/area/awaymission/mothership_astrum/deck3) +"oi" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"om" = ( +/mob/living/simple_animal/hostile/skeleton/ice{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"on" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"oq" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand4" + }, +/area/awaymission/mothership_astrum/deck1) +"ou" = ( +/obj/machinery/abductor/gland_dispenser, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"ox" = ( +/obj/structure/bed{ + name = "Reproduction Bench" + }, +/obj/item/bedsheet/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"oy" = ( +/obj/structure/bed{ + name = "Reproduction Bench" + }, +/obj/item/bedsheet/random, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"oF" = ( +/obj/structure/bonfire/prelit{ + burn_icon = "bonfire_warm" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"oH" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"oQ" = ( +/obj/structure/bed{ + name = "Reproduction Bench" + }, +/obj/item/bedsheet/ian, +/obj/effect/mob_spawn/human/clown, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"pi" = ( +/obj/structure/frame, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"pj" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid/brute, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"pl" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"ps" = ( +/mob/living/simple_animal/hostile/skeleton/eskimo{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"pw" = ( +/obj/machinery/chem_dispenser, +/obj/structure/window, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"pz" = ( +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"pC" = ( +/obj/structure/table/wood, +/obj/item/dnainjector/geladikinesis, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"pI" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"pJ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"pR" = ( +/obj/structure/closet/abductor, +/obj/item/organ/cyberimp/eyes/hud/security, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"pU" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"pV" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"pZ" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ql" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/mineral/wood{ + amount = 15 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"qq" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/shotgun{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"qE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"qI" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"qZ" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand7" + }, +/area/awaymission/mothership_astrum/deck1) +"rm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"rn" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 10 + }, +/area/awaymission/mothership_astrum/deck5) +"rs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"rC" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/blood/lizard, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"rD" = ( +/obj/machinery/door/airlock/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"rG" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/organ/cyberimp/arm/medibeam, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"rK" = ( +/obj/structure/table/abductor, +/obj/item/paper/fluff/awaymissions/astrum1, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"rP" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"rW" = ( +/obj/effect/spawner/lootdrop/astrum, +/obj/structure/table/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"sc" = ( +/mob/living/simple_animal/hostile/netherworld{ + desc = "WHY ISN'T IT ATTACKING THE ALIENS TOO!?"; + faction = list("Abductor"); + health = 70; + maxHealth = 70; + name = "domesticated hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"sf" = ( +/obj/structure/closet/abductor, +/obj/effect/spawner/lootdrop/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"sg" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/organ/eyes/robotic/shield, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"sk" = ( +/obj/machinery/abductor/gland_dispenser, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"so" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/astrum/mid, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"sy" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 5 + }, +/area/awaymission/mothership_astrum/deck5) +"sB" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/pickaxe/drill/diamonddrill, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"sC" = ( +/turf/open/floor/plating/beach/coastline_t, +/area/awaymission/mothership_astrum/deck5) +"sF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"sG" = ( +/obj/structure/chair, +/obj/item/clothing/suit/pirate/armored, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"sI" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"sL" = ( +/obj/structure/alien/weeds/creature, +/obj/item/ammo_box/c9mm, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"sN" = ( +/mob/living/simple_animal/hostile/bear/russian{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"sO" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 + }, +/area/awaymission/mothership_astrum/deck5) +"sU" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"sW" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 4 + }, +/area/awaymission/mothership_astrum/deck5) +"sZ" = ( +/obj/structure/alien/weeds, +/obj/item/shard, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"tc" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 4 + }, +/area/awaymission/mothership_astrum/deck5) +"td" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"tg" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"tm" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/shotgun{ + faction = list("Abductor") + }, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"to" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/mothership_astrum/deck5) +"tv" = ( +/obj/structure/table/optable/abductor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"tw" = ( +/turf/open/floor/plating/beach/coastline_b, +/area/awaymission/mothership_astrum/deck5) +"tz" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("Abductor") + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"tC" = ( +/obj/effect/overlay/palmtree_l{ + pixel_y = 25 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"tI" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/awaymission/mothership_astrum/deck5) +"tK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"tL" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"ub" = ( +/obj/machinery/door/airlock/abductor{ + name = "Sub-Zero Studies" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ud" = ( +/obj/structure/alien/weeds, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"ue" = ( +/obj/structure/table/abductor, +/obj/machinery/recharger, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"ug" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"us" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 9 + }, +/area/awaymission/mothership_astrum/deck5) +"uz" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"uH" = ( +/obj/structure/table/abductor, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"uI" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"uN" = ( +/obj/structure/closet/abductor, +/obj/item/organ/cyberimp/eyes/hud/medical, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"uV" = ( +/obj/structure/table/abductor, +/obj/item/paper/fluff/awaymissions/astrum3, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"uY" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ + pixel_x = -6 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"vc" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"vi" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"vm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"vo" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"vs" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/clothing/glasses/sunglasses/gar, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"vu" = ( +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"vD" = ( +/obj/machinery/iv_drip, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"vU" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "lowsec"; + name = "Low Security Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"vW" = ( +/obj/effect/turf_decal/sand, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"vY" = ( +/obj/machinery/door/airlock/abductor, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"vZ" = ( +/obj/structure/mineral_door/wood, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"wb" = ( +/obj/machinery/porta_turret/syndicate/energy{ + faction = list("Abductor") + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"wo" = ( +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"wp" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"wz" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"wE" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/sand, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"wM" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"wO" = ( +/mob/living/simple_animal/hostile/russian{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"wY" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 10 + }, +/area/awaymission/mothership_astrum/deck5) +"xa" = ( +/obj/machinery/door/airlock/abductor{ + name = "Reproductive Studies" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"xb" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human{ + brute_damage = 70; + desc = null; + name = "Dead Lobotomite"; + outfit = /datum/outfit/lobotomite + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"xd" = ( +/mob/living/simple_animal/crab, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"xx" = ( +/obj/structure/table/abductor, +/obj/item/ammo_casing/c38, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"xF" = ( +/obj/structure/table/abductor, +/obj/machinery/reagentgrinder, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"xI" = ( +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"xJ" = ( +/obj/structure/closet/abductor, +/obj/item/storage/box/alienhandcuffs, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"xN" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"xQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"xU" = ( +/turf/open/floor/plastic, +/area/awaymission/mothership_astrum/deck2) +"xW" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"yd" = ( +/obj/machinery/porta_turret/syndicate/energy{ + faction = list("Abductor") + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"yg" = ( +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"yh" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 6 + }, +/area/awaymission/mothership_astrum/deck5) +"yB" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 9 + }, +/area/awaymission/mothership_astrum/deck5) +"yC" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 1 + }, +/area/awaymission/mothership_astrum/deck5) +"yE" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"zc" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 5 + }, +/area/awaymission/mothership_astrum/deck5) +"zl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"zq" = ( +/obj/structure/table/abductor, +/obj/item/ammo_casing/c38, +/obj/item/ammo_casing/c38, +/obj/item/ammo_casing/c38, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"zt" = ( +/obj/structure/table/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"zw" = ( +/obj/structure/alien/weeds, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"zD" = ( +/obj/structure/table/abductor, +/obj/item/clothing/head/helmet/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"zK" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"zM" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/smg{ + faction = list("Abductor") + }, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"zQ" = ( +/obj/structure/table/wood, +/obj/item/candle/infinite, +/turf/open/floor/plastic, +/area/awaymission/mothership_astrum/deck2) +"zX" = ( +/obj/structure/table/abductor, +/obj/item/gun/energy/alien/astrum, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ar" = ( +/obj/structure/table/abductor, +/obj/item/organ/heart, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Ay" = ( +/obj/item/ammo_casing/c38, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"AA" = ( +/obj/structure/table/abductor, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"AC" = ( +/mob/living/simple_animal/hostile/bear/russian, +/mob/living/simple_animal/hostile/bear/russian{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"AH" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"AK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"AL" = ( +/obj/effect/overlay/palmtree_l, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"AU" = ( +/obj/item/toy/seashell{ + pixel_y = -5 + }, +/turf/open/floor/plating/beach/coastline_t, +/area/awaymission/mothership_astrum/deck5) +"AZ" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/mothership_astrum/halls) +"Be" = ( +/obj/structure/bed{ + name = "Reproduction Bench" + }, +/turf/open/floor/plastic, +/area/awaymission/mothership_astrum/deck2) +"Bh" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/halls) +"Bo" = ( +/obj/effect/mob_spawn/human/cook, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Br" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/cloth/ten, +/obj/item/stack/sheet/cloth/ten, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Bs" = ( +/obj/structure/table/abductor, +/obj/item/healthanalyzer, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Bz" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 4 + }, +/area/awaymission/mothership_astrum/deck5) +"BE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"BF" = ( +/obj/item/flashlight/flare/torch, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"BH" = ( +/obj/effect/decal/remains/xeno/larva, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"BI" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = 15; + pixel_y = -7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"BQ" = ( +/obj/structure/alien/weeds, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"BT" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"BU" = ( +/mob/living/simple_animal/hostile/abductor/melee, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"BW" = ( +/obj/structure/alien/weeds, +/obj/effect/mob_spawn/human/abductor, +/obj/effect/spawner/lootdrop/astrum/sciloot, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"BX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Cc" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Cf" = ( +/obj/item/food/monkeycube, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Cm" = ( +/obj/effect/decal/cleanable/xenoblood/xgibs/body, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Cn" = ( +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Cs" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/c38, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Cv" = ( +/obj/machinery/door/poddoor{ + id = "xenolock" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Cz" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"CB" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/glass/beaker/bluespace, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"CC" = ( +/obj/structure/table/abductor, +/obj/item/paper/fluff/awaymissions/astrum2, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"CG" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/awaymission/mothership_astrum/deck5) +"CL" = ( +/mob/living/simple_animal/hostile/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"CM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"CU" = ( +/mob/living/simple_animal/hostile/pirate/melee{ + faction = list("Abductor") + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"CW" = ( +/obj/item/toy/seashell, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"CY" = ( +/obj/structure/closet/abductor, +/obj/item/stack/sheet/cloth/five, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"De" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Dg" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Dk" = ( +/obj/item/ammo_casing/a357, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Dq" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/gps, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ds" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -12 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Dt" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Du" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"DD" = ( +/obj/structure/table/abductor, +/obj/item/pai_card, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"DE" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"DU" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"DY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Ed" = ( +/obj/effect/turf_decal/sand, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Ei" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ej" = ( +/obj/effect/turf_decal/sand, +/obj/structure/table/wood, +/obj/item/storage/firstaid/brute, +/obj/item/organ/cyberimp/brain/anti_stun, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"El" = ( +/mob/living/simple_animal/hostile/megafauna/hierophant/astrum, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"En" = ( +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Eq" = ( +/obj/machinery/button/door{ + id = "lobolock"; + name = "Lobotomite Testing Lockdown" + }, +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Es" = ( +/obj/machinery/door/airlock/abductor{ + name = "Experiment Disposal" + }, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ey" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"ED" = ( +/turf/closed/wall, +/area/awaymission/mothership_astrum/deck2) +"EG" = ( +/obj/item/toy/seashell{ + pixel_x = 12; + pixel_y = -5 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"EH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Reproduction Chamber" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"EJ" = ( +/obj/structure/table/abductor, +/obj/item/gun/ballistic/automatic/pistol, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"EL" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"EN" = ( +/mob/living/simple_animal/hostile/abductor/agent, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"EO" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/extinguisher/mini, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"EP" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"ES" = ( +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"EV" = ( +/obj/structure/table/abductor, +/obj/item/organ/cyberimp/arm/toolset, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"EY" = ( +/obj/structure/sign/poster/contraband/eat{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"EZ" = ( +/obj/structure/table/abductor, +/obj/item/plant_analyzer, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ff" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/ammo_box/c38, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Fp" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Fu" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/glass/bottle/ethanol{ + name = "Delicious Alcohol" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Fw" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "lobolock" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Fy" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/ammo_casing/a357, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"FD" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"FF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"FI" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"FK" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/implanter/sad_trombone, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"FL" = ( +/obj/item/reagent_containers/food/drinks/shaker, +/obj/structure/table/wood, +/obj/item/stack/spacecash/c10, +/obj/item/stack/spacecash/c100, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"FV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Gh" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/cloth/five, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Gk" = ( +/obj/effect/turf_decal/sand, +/obj/structure/table/wood, +/obj/item/food/burger/crab, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Gn" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Gu" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/banana, +/obj/item/seeds/carrot, +/obj/item/seeds/carrot/parsnip, +/obj/item/seeds/chili, +/obj/item/seeds/lemon, +/obj/item/seeds/lime, +/obj/item/seeds/orange, +/obj/item/seeds/pineapple, +/obj/item/seeds/watermelon, +/obj/item/seeds/wheat/oat, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/eggplant, +/obj/item/seeds/berry, +/obj/item/seeds/cherry/blue, +/obj/item/seeds/cherry, +/obj/item/seeds/grape, +/obj/item/seeds/grape/green, +/obj/item/seeds/grass, +/obj/item/seeds/pumpkin, +/obj/item/seeds/tower, +/obj/item/seeds/tower, +/obj/item/seeds/ambrosia/deus, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Gx" = ( +/obj/effect/overlay/coconut{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/awaymission/mothership_astrum/deck5) +"GA" = ( +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"GB" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/spawner/lootdrop/astrum/mid, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"GC" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/grown, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"GJ" = ( +/obj/item/flashlight/flare/torch{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"GK" = ( +/obj/machinery/porta_turret/syndicate/pod{ + faction = list("Abductor"); + max_integrity = 120; + + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"GL" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"GO" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"GP" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"GS" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"GX" = ( +/obj/machinery/gateway/away/required_key{ + calibrated = 0 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"GY" = ( +/mob/living/simple_animal/hostile/abductor/melee, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"GZ" = ( +/obj/machinery/porta_turret/syndicate/energy{ + faction = list("Abductor") + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ha" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Hc" = ( +/obj/machinery/airalarm/directional/west{ + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Hj" = ( +/turf/closed/mineral, +/area/awaymission/mothership_astrum/deck1) +"Hk" = ( +/obj/structure/closet/abductor, +/obj/item/ammo_box/c38, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Hn" = ( +/obj/structure/table/abductor, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/gun/ballistic/automatic/pistol, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Hp" = ( +/obj/structure/table/abductor, +/obj/item/stack/cable_coil/five, +/obj/item/stack/cable_coil, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Hr" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Hx" = ( +/mob/living/simple_animal/hostile/netherworld{ + desc = "WHY ISN'T IT ATTACKING THE ALIENS TOO!?"; + faction = list("Abductor"); + health = 70; + maxHealth = 70; + name = "domesticated hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Hy" = ( +/obj/item/stack/rods/ten, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"HA" = ( +/obj/structure/table/abductor, +/obj/item/clothing/suit/armor/abductor/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"HB" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"HI" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"HQ" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 + }, +/area/awaymission/mothership_astrum/deck5) +"HR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"HS" = ( +/mob/living/simple_animal/hostile/abductor/agent, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ie" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/item/ammo_casing/a357, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Iq" = ( +/obj/structure/chair/sofa/right, +/obj/structure/window/spawner/north, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Ir" = ( +/obj/structure/chair/sofa, +/obj/structure/window/spawner/north, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Is" = ( +/obj/structure/window, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"It" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Iu" = ( +/obj/item/stack/sheet/mineral/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"IA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"IC" = ( +/obj/structure/table/wood, +/obj/item/kitchen/knife/combat, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"II" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/mob_spawn/human/miner/explorer, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"IN" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand2" + }, +/area/awaymission/mothership_astrum/deck1) +"IO" = ( +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("Abductor") + }, +/mob/living/simple_animal/hostile/pirate/ranged{ + faction = list("Abductor"); + health = 200 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"IT" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/miner/explorer, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"IZ" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/blood/universal, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Jh" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Jm" = ( +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/toy/cards/deck, +/obj/structure/chair/sofa/left, +/obj/structure/window/spawner/north, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Jn" = ( +/obj/structure/table/abductor, +/obj/item/kitchen/knife/combat, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Jo" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Jx" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Jz" = ( +/obj/structure/table/abductor, +/obj/effect/spawner/lootdrop/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"JB" = ( +/obj/structure/alien/weeds, +/obj/item/organ/eyes/night_vision, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"JO" = ( +/obj/structure/table/abductor, +/obj/item/circular_saw/alien, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"JQ" = ( +/obj/structure/alien/weeds, +/obj/item/crowbar, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"JR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Kd" = ( +/turf/closed/wall/mineral/sandstone, +/area/awaymission/mothership_astrum/deck5) +"Ku" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/astrum/agentloot, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Kv" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 1 + }, +/area/awaymission/mothership_astrum/deck5) +"Ky" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "finallock"; + name = "AStrum Bridge Lockdown" + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"KA" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"KD" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"KE" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"KF" = ( +/obj/machinery/button/door{ + id = "barShutters"; + name = "bar shutters"; + pixel_x = 4; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"KL" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"KM" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"KV" = ( +/mob/living/simple_animal/hostile/russian{ + faction = list("Abductor") + }, +/turf/open/floor/plastic, +/area/awaymission/mothership_astrum/deck2) +"Lb" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Lc" = ( +/obj/machinery/door/poddoor{ + id = "finallock"; + max_integrity = 10000 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Le" = ( +/obj/structure/table/abductor, +/obj/item/shield/riot, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Lg" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/structure/window/spawner, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Lh" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Lj" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/structure/window/spawner, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Lo" = ( +/obj/structure/alien/weeds, +/obj/item/stack/sheet/iron, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"LE" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"LH" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/structure/window/spawner, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"LT" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"LV" = ( +/obj/structure/table/optable/abductor, +/obj/effect/mob_spawn/human/syndicatesoldier, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ma" = ( +/mob/living/simple_animal/hostile/abductor, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Md" = ( +/obj/machinery/button/door{ + id = "xenolock"; + name = "Xeno Studies Lockdown Control" + }, +/obj/structure/alien/weeds, +/obj/structure/table/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Mi" = ( +/obj/effect/decal/cleanable/xenoblood/xgibs/larva, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Mp" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Mr" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Mu" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Mw" = ( +/obj/machinery/porta_turret/syndicate/pod{ + faction = list("Abductor"); + lethal_projectile = /obj/projectile/bullet/a357; + max_integrity = 120; + stun_projectile = /obj/projectile/bullet/a357 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Mx" = ( +/obj/effect/overlay/coconut{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Mz" = ( +/obj/structure/window/fulltile, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/awaymission/mothership_astrum/deck2) +"ME" = ( +/obj/item/organ/heart, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"MG" = ( +/obj/structure/table/optable/abductor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"MK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/ethanol{ + name = "Delicious Alcohol" + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"ML" = ( +/obj/machinery/door/poddoor{ + id = "finallock"; + max_integrity = 10000 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"MQ" = ( +/mob/living/simple_animal/hostile/abductor/ranged, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"MR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Na" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Nd" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/organ/appendix/fly, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ne" = ( +/obj/item/gun/ballistic/revolver/detective, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Nf" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Nn" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"No" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/abductor, +/obj/item/organ/cyberimp/mouth/breathing_tube, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Nq" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/camera_bug, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Nw" = ( +/obj/machinery/camera/directional/west{ + c_tag = "Bar West" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Nx" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"NE" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"NG" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/mob_spawn/human/cook, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"NJ" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/storage/firstaid/brute, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"NL" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"NN" = ( +/obj/structure/alien/weeds, +/turf/closed/indestructible/alien, +/area/awaymission/mothership_astrum/halls) +"NQ" = ( +/obj/machinery/door/airlock/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"NT" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/ammo_box/c9mm, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Om" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"On" = ( +/mob/living/simple_animal/hostile/netherworld{ + desc = "WHY ISN'T IT ATTACKING THE ALIENS TOO!?"; + faction = list("Abductor"); + health = 70; + maxHealth = 70; + name = "domesticated hatchling"; + resize = 0.85 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Oq" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/storage/backpack/holding, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Or" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/indestructible/hotelwood, +/area/awaymission/mothership_astrum/deck1) +"Ow" = ( +/obj/machinery/camera/directional/east{ + c_tag = "Bar" + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Oy" = ( +/obj/structure/table/wood, +/obj/item/instrument/guitar{ + pixel_x = -7 + }, +/obj/item/instrument/eguitar{ + pixel_x = 5 + }, +/obj/item/instrument/violin, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"OB" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/griddle, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"OC" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Pb" = ( +/obj/item/melee/skateboard/hoverboard{ + pixel_x = -16; + pixel_y = 1 + }, +/turf/open/floor/plating/beach/coastline_t{ + dir = 5 + }, +/area/awaymission/mothership_astrum/deck5) +"Pj" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Pl" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Pm" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 8 + }, +/area/awaymission/mothership_astrum/deck5) +"Pq" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Pt" = ( +/obj/structure/table/wood, +/obj/item/ammo_box/magazine/uzim9mm, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Pu" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Pv" = ( +/obj/effect/mob_spawn/human{ + brute_damage = 70; + desc = null; + name = "Dead Lobotomite"; + outfit = /datum/outfit/lobotomite + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Py" = ( +/obj/structure/alien/weeds, +/obj/effect/mob_spawn/human/abductor, +/obj/effect/spawner/lootdrop/astrum/sciloot, +/obj/effect/spawner/lootdrop/astrum/sciloot, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"PH" = ( +/obj/machinery/porta_turret/syndicate/pod{ + faction = list("Abductor"); + lethal_projectile = /obj/projectile/bullet/a357; + max_integrity = 120; + stun_projectile = /obj/projectile/bullet/a357 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"PI" = ( +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/obj/structure/alien/weeds, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"PP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/sofa/right, +/obj/structure/window/spawner/north, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"PQ" = ( +/mob/living/simple_animal/hostile/syndicate/melee{ + faction = list("Abductor") + }, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"PR" = ( +/obj/item/organ/eyes/snail, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"PV" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Qb" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/reagent_containers/glass/bottle/ethanol{ + name = "Delicious Alcohol" + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Qf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/glass/bottle/ethanol{ + name = "Delicious Alcohol" + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Qg" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/alien/egg/burst, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Qj" = ( +/obj/structure/chair, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Ql" = ( +/obj/structure/bed/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Qo" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Qr" = ( +/obj/machinery/door/window{ + name = "Bar Door"; + req_one_access_txt = "25;28" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Qt" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand9" + }, +/area/awaymission/mothership_astrum/deck1) +"Qw" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/glass/rag, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/spawner, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Qy" = ( +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"QE" = ( +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"QI" = ( +/obj/structure/table/wood, +/obj/item/melee/energy, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"QM" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"QW" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"QX" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Ra" = ( +/obj/item/surgical_drapes, +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Rb" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Rc" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Rj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Rm" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck2) +"Ro" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Inhibitions Dampening" + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Ru" = ( +/obj/structure/closet/abductor, +/obj/item/kitchen/knife/combat, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"RG" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "barShutters"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/awaymission/mothership_astrum/deck2) +"RH" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"RI" = ( +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"RJ" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/alien/queen/large{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/deck4) +"RQ" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"RT" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Sb" = ( +/obj/structure/sign/poster/contraband/eat{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Se" = ( +/mob/living/simple_animal/hostile/alien/drone{ + faction = list("Abductor"); + plants_off = 1 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Sf" = ( +/obj/effect/overlay/palmtree_l{ + pixel_y = 25 + }, +/obj/effect/overlay/coconut{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Sj" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"So" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"SF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"SJ" = ( +/mob/living/simple_animal/hostile/abductor/ranged, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"SM" = ( +/obj/item/toy/seashell{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 + }, +/area/awaymission/mothership_astrum/deck5) +"ST" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/c9mm, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"SV" = ( +/turf/closed/indestructible/alien, +/area/space) +"SX" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"SY" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ta" = ( +/obj/structure/table/optable/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Tf" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/extinguisher/mini, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Tl" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Tn" = ( +/mob/living/simple_animal/hostile/syndicate/melee{ + faction = list("Abductor") + }, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Tu" = ( +/turf/open/space/basic, +/area/space) +"Tv" = ( +/mob/living/simple_animal/hostile/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"TF" = ( +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"TJ" = ( +/obj/structure/table/abductor, +/obj/item/ammo_box/c38, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"TX" = ( +/obj/structure/table/abductor, +/obj/machinery/button/door{ + id = "minsec"; + name = "Minimum Security Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"TY" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/grown, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Ud" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/healthanalyzer/advanced, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ue" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Un" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ur" = ( +/obj/item/storage/box/alienhandcuffs, +/obj/structure/closet/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Uv" = ( +/obj/structure/closet/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Ux" = ( +/obj/structure/table/abductor, +/turf/closed/indestructible/alien, +/area/awaymission/mothership_astrum/halls) +"Uy" = ( +/obj/machinery/porta_turret/syndicate/energy{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Uz" = ( +/obj/item/retractor/alien, +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"UB" = ( +/obj/structure/closet/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"UE" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"UF" = ( +/obj/structure/table/optable/abductor, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"UG" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"UI" = ( +/obj/structure/table/wood, +/obj/item/candle/infinite, +/obj/item/organ/cyberimp/chest/reviver, +/turf/open/floor/plastic, +/area/awaymission/mothership_astrum/deck2) +"UL" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"UN" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"US" = ( +/obj/item/storage/firstaid/brute, +/obj/structure/table/wood, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck3) +"UV" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Va" = ( +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Vb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Vc" = ( +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"Vh" = ( +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Vj" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/astrum/mid, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Vk" = ( +/obj/item/paper/fluff/awaymissions/astrum4, +/obj/structure/table/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Vx" = ( +/obj/structure/table/abductor, +/obj/item/paper/fluff/awaymissions/astrum5, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"VG" = ( +/turf/open/floor/plating/beach/water, +/area/awaymission/mothership_astrum/deck5) +"VJ" = ( +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"VM" = ( +/obj/structure/table/abductor, +/obj/item/gun/energy/alien/astrum, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Wj" = ( +/obj/structure/table/abductor, +/obj/item/shield/riot, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Wq" = ( +/obj/item/surgical_drapes, +/obj/item/paper/guides/antag/abductor, +/obj/item/scalpel/alien, +/obj/structure/table/abductor, +/obj/item/cautery/alien, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Wt" = ( +/obj/structure/table/abductor, +/obj/item/shovel/spade, +/obj/item/secateurs{ + pixel_x = -6 + }, +/obj/item/geneshears, +/obj/item/hatchet, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Wu" = ( +/obj/machinery/door/poddoor{ + id = "lootlock" + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Wv" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/structure/fluff/beach_umbrella/security, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Wz" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/egg/burst, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"WB" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/item/ammo_box/c38, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"WC" = ( +/obj/machinery/porta_turret/syndicate/pod{ + faction = list("boss"); + lethal_projectile = /obj/projectile/bullet/a357; + max_integrity = 150; + stun_projectile = /obj/projectile/bullet/a357 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"WE" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"WG" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"WN" = ( +/obj/item/ammo_box/c38, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"WT" = ( +/obj/structure/table/abductor, +/obj/item/autosurgeon/organ/syndicate/thermal_eyes, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"WW" = ( +/obj/machinery/computer/operating, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"WZ" = ( +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"Xa" = ( +/obj/machinery/porta_turret/syndicate/pod{ + faction = list("Abductor"); + lethal_projectile = /obj/projectile/bullet/a357; + max_integrity = 120; + stun_projectile = /obj/projectile/bullet/a357 + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"Xd" = ( +/turf/closed/wall/mineral/sandstone, +/area/awaymission/mothership_astrum/deck1) +"Xh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Xk" = ( +/obj/effect/mob_spawn/human/doctor, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Xm" = ( +/obj/structure/table/abductor, +/obj/item/hemostat/alien, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Xs" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck5) +"Xv" = ( +/obj/machinery/vending/snack, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"XH" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand14" + }, +/area/awaymission/mothership_astrum/deck1) +"XJ" = ( +/obj/machinery/door/airlock/abductor{ + name = "Combat Studies" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"XK" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"XO" = ( +/turf/open/space/basic, +/area/awaymission/mothership_astrum/halls) +"XU" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/abductor{ + id_tag = "medsec"; + name = "Medium Security Airlock" + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"XZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Yc" = ( +/obj/structure/table/abductor, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/stock_parts/cell/crystal_cell, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Yi" = ( +/turf/open/floor/plating/ironsand{ + icon_state = "ironsand12" + }, +/area/awaymission/mothership_astrum/deck1) +"Yk" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Ym" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"Yn" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/beach/sand, +/area/awaymission/mothership_astrum/deck5) +"Yq" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/blood/ethereal, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Yr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Ys" = ( +/obj/effect/mine/explosive, +/turf/open/indestructible/hotelwood, +/area/awaymission/mothership_astrum/deck1) +"YE" = ( +/obj/structure/closet/abductor, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"YI" = ( +/obj/item/ammo_box/c38, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"YL" = ( +/mob/living/simple_animal/hostile/bear/russian{ + faction = list("Abductor") + }, +/turf/open/floor/plating/asteroid/snow/ice{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/awaymission/mothership_astrum/deck3) +"YO" = ( +/obj/structure/closet/abductor, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"YS" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating/ironsand, +/area/awaymission/mothership_astrum/deck1) +"YT" = ( +/obj/structure/table/abductor, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/item/food/grown/eggplant, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Zb" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Zf" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Zh" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/mothership_astrum/deck1) +"Zi" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"Zm" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/mothership_astrum/deck2) +"Zp" = ( +/turf/open/floor/plating/abductor, +/area/awaymission/mothership_astrum/halls) +"Zv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ZH" = ( +/obj/structure/table/abductor, +/obj/item/storage/firstaid/fire, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) +"ZM" = ( +/obj/machinery/chem_dispenser/mutagensaltpeter, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ZP" = ( +/obj/machinery/porta_turret/syndicate/energy/heavy{ + faction = list("Abductor") + }, +/turf/open/floor/plating/abductor2, +/area/awaymission/mothership_astrum/halls) +"ZW" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/porta_turret/syndicate/energy/heavy{ + faction = list("Abductor") + }, +/turf/open/floor/mineral/abductor, +/area/awaymission/mothership_astrum/halls) + +(1,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(2,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(3,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(4,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(5,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(6,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(7,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(8,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(9,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(10,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(11,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(12,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(13,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(14,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(15,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(16,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(17,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(18,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(19,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(20,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(21,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(22,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(23,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(24,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(25,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(26,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(27,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(28,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(29,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(30,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(31,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(32,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(33,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(34,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(35,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(36,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(37,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(38,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(39,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(40,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(41,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Vh +pi +Vh +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(42,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +fp +EL +GP +EL +Cc +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(43,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +tL +AH +Zp +Zp +vc +Zp +Zp +Zp +Zp +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(44,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +tL +wz +AK +Zp +Zp +vc +Zp +Zp +Zp +Zp +Vh +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(45,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +tL +ug +xd +AK +Zp +Zp +jP +dV +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(46,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +sF +vm +yE +Bh +Zp +Vh +fZ +RH +Gh +Hp +Zp +Zp +Zp +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(47,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Pj +Zp +Zp +Zp +Zp +Zp +oa +Tl +dV +tg +Yk +Zp +Zp +Zp +Pj +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(48,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Is +Zp +Zp +Zp +Vh +Zp +ei +Om +Zp +Zp +an +Zp +Zp +Zp +xN +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(49,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +fM +Is +Vh +Vh +Vh +Zp +Vh +Zp +Vh +Zp +Vh +Zp +Vh +Vh +Vh +xN +fM +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(50,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Is +Zp +Zp +Zp +an +Zp +Zp +lw +Zp +Zp +UN +Zp +Zp +Zp +xN +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(51,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Va +Zp +Zp +Zp +Br +tg +Zp +Lh +Zp +bV +xF +Zp +Zp +Zp +Va +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(52,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +Zp +Zp +Zp +EZ +CB +Vh +fZ +Vh +Gu +ZM +Zp +Zp +Zp +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(53,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +sU +bV +bV +bV +zt +zt +xQ +Zp +GL +Wt +Zp +Zp +sU +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(54,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +ee +wp +Zp +Zp +Zp +Zp +xQ +Zp +Zp +Zp +Zp +wp +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(55,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +sU +Zp +Zp +Zp +vc +Zp +Zp +It +sU +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(56,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +GZ +bV +bV +bV +bV +bV +bV +ee +zt +zt +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +Zp +Zp +pJ +Zp +GO +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(57,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +aV +aV +aV +Vh +Vh +Vh +Vh +Vh +Vh +eF +mv +Le +TJ +Vh +Vh +AZ +mv +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +Zp +xQ +Zp +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(58,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +aV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Ma +Vh +Vh +Vh +Vh +Vh +AZ +aV +Vh +Vh +Vh +Vh +Vh +Vh +bV +Xa +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +Fw +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(59,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +EJ +zt +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +Eq +lw +Zp +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(60,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +VJ +Ql +ll +Zp +Zp +fZ +Zp +hG +ej +ej +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(61,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +AZ +xU +xU +xU +ED +ES +ES +ES +Hr +Iq +FD +Lg +Nw +ES +Oy +PP +FD +QX +ED +AZ +AZ +bV +bV +bV +Vh +Vh +bV +bV +ee +Zp +Zp +Vh +Zp +Hx +Zp +fZ +Zp +Zp +Vh +Zp +Zp +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(62,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +xU +xU +KV +xU +EH +ES +sN +ES +ES +Ir +JR +Lj +ES +ES +OC +Ir +JR +Rb +ED +RI +AZ +AZ +bV +bV +Vh +Vh +bV +bV +Zp +Zp +Vh +Vh +Vh +Zp +Zp +gQ +Zp +Vh +Vh +Vh +Zp +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(63,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +zt +vU +mv +bV +bV +ee +xU +zQ +Be +xU +xU +ED +EY +ES +ES +ES +Jm +KA +LH +ES +ES +Pl +Jm +FD +Rm +ED +RT +RI +ee +bV +CC +aV +Vh +bV +bV +ee +Zp +Zp +Vh +Zp +Zp +Zp +fZ +Zp +Zp +Vh +Zp +Zp +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(64,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +On +bV +Vh +aV +bV +bV +ee +xU +xU +xU +xU +xU +ED +ES +ES +ES +ES +ES +ES +ES +ES +wO +ES +ES +ES +ES +ED +RI +RI +ee +bV +bV +aV +Vh +bV +bV +ee +ee +pj +VJ +DD +Zp +Zp +lw +Zp +rC +Yq +IZ +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(65,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +ad +Vh +aV +bV +bV +ee +xU +xU +xU +xU +xU +ED +ES +ES +ES +ES +Fp +Fp +ES +ES +ES +NL +Fp +ES +ES +Ro +RI +RI +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +fZ +Zp +ee +ee +ee +ee +VJ +Xm +Ra +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(66,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +mv +bV +bV +AZ +xU +zQ +Be +xU +xU +ED +Fp +ES +ES +HB +Fu +KD +Mz +pU +ES +HB +PV +QM +ES +RG +RI +RI +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +Zp +Zp +ee +ee +ee +Zp +Zp +Zp +Zp +VJ +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(67,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +xa +xU +xU +xU +xU +xU +ED +Fu +ES +ES +ES +Jo +Jo +ES +ES +NL +HB +PV +QM +ES +Ro +RI +RI +xa +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +LE +Zp +ee +ee +ee +tg +Zp +tv +Zp +av +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(68,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +xa +xU +xU +xU +xU +xU +ED +FI +ES +ES +ES +ES +ES +ES +ES +ES +ES +Jo +ES +ES +ED +RI +RI +xa +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +Rj +Zp +ee +ee +ee +AA +Tv +KE +Zp +Ql +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(69,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +xU +zQ +Be +xU +xU +EH +ES +ES +ES +ES +ES +AC +ES +ES +ES +ES +ES +ES +ES +ED +Sb +RI +AZ +ee +AZ +ML +ML +AZ +ee +ee +ee +ee +ee +ee +ee +ee +lw +Zp +ee +ee +ee +ee +xJ +KE +UB +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(70,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +xU +xU +xU +xU +xU +ED +ES +ES +Ha +HR +ES +ES +QW +QW +QW +QW +QW +ES +ES +ED +RI +RI +ee +bV +bV +Vh +Vh +bV +Xa +ee +ee +Ur +Uz +Wq +ee +ee +LE +Zp +Zp +ee +ee +ee +ee +ei +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(71,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +xU +xU +xU +xU +xU +ED +ED +ED +ED +ED +ED +ED +iU +Zm +MK +MK +Qb +QW +ES +ED +RI +RI +ee +bV +bV +Vh +Vh +bV +bV +ee +VJ +Zp +Zp +Zp +Uv +ee +am +ai +cu +RQ +Zp +cu +pV +eY +Zp +VJ +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(72,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +xU +UI +Be +xU +xU +ED +FL +Gn +Hc +ES +ED +KF +MR +NG +MR +MR +Qf +QW +ES +ED +yg +RI +ee +bV +bV +Vh +Vh +bV +bV +Zp +Zp +Zp +UF +Zp +VJ +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +VJ +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(73,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +xU +xU +xU +xU +EH +ES +ES +ES +ES +Jx +KL +Na +MR +MR +MR +Qr +ES +wO +ED +RI +AZ +AZ +bV +bV +Vh +aV +bV +bV +ee +EN +Zp +Zp +Zp +Ql +ee +ee +ee +ee +ee +ee +ee +ee +ee +Zp +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(74,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +AZ +xU +xU +xU +ED +ES +ES +ES +ES +ED +Lb +Nf +MR +Ow +MR +Qw +ES +ES +ED +AZ +AZ +bV +bV +bV +Vh +aV +bV +bV +ee +ee +Zp +Zp +Zp +ee +ee +ee +VJ +VJ +ou +Zp +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(75,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bR +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +Xa +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +bV +bV +bV +bV +Vh +aV +bV +bV +ee +ee +ee +Zp +ee +ee +ee +VJ +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(76,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +WW +bV +bE +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +zt +zt +zt +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Zp +Zp +Zp +ee +ee +VJ +Zp +Vh +Zp +Vh +mo +Vh +Zp +Vh +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(77,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ko +bV +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +ee +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +aV +TJ +aV +bV +bV +bV +bV +ee +ee +Ta +Zp +Zp +Zp +Zp +ee +Zp +Zp +Vh +Ar +Ku +MG +Ma +Zp +Vh +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(78,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +ee +Vh +aV +zX +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +Bs +Zp +yd +Zp +Zp +rD +Zp +Zp +Vh +VJ +Vh +JO +Vh +VJ +Vh +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(79,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +bV +bV +zt +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Ta +Zp +Zp +Zp +tg +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(80,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +je +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +Vh +Vh +Vh +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CY +CY +Uv +ee +ee +ee +Uv +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Uv +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(81,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(82,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +aV +Vh +xx +aV +Vh +Vh +Vh +Vh +Vh +aV +aV +aV +pR +Vh +Vh +Vh +AZ +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +bV +ee +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(83,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +GZ +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Ma +xx +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +AZ +Vh +Vh +Vh +Vh +Vh +bV +bV +GZ +bV +ee +ee +ee +Tu +ee +ee +bV +bV +bV +ee +Tu +ee +ee +ee +ee +bV +bV +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(84,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +ee +ee +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +vD +yd +zt +Jz +zt +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(85,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +ee +ee +AZ +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +sk +zt +zt +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(86,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +AZ +Vc +Vc +Vc +Vc +Vc +Vc +nI +nI +oc +oc +oQ +nI +nI +nx +nx +nx +nx +mW +AZ +AZ +bV +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +bV +kB +bV +bV +bV +ee +ee +ee +ee +bV +zt +aV +Vh +zt +bV +ee +bV +bV +ee +ee +ee +ee +GZ +SF +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +Vh +ko +Vh +zt +Vh +bV +Vh +bV +bV +ee +bV +bV +bV +bV +ko +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(87,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +Vc +Vc +Vc +mq +Vc +nI +nI +nI +US +oc +oc +oc +oc +nI +nx +nx +nx +mW +Vc +Vc +AZ +AZ +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +aV +HS +Vh +aV +bV +ee +bV +bV +ee +ee +ee +ee +bV +bV +Vh +bV +bV +ee +bV +bV +ee +bV +bV +Vh +bV +bV +Vh +WW +Vh +zt +Vh +bV +Vh +bV +bV +NQ +bV +bV +Uy +bV +zK +ee +ee +zt +bV +zt +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(88,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Vc +Vc +Vc +mW +Vc +Vc +oi +oc +oc +oc +oc +oF +oc +nX +nI +Vc +mm +Vc +Vc +Vc +lV +Vc +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +aV +Vh +Vh +aV +bV +ee +bV +bV +ee +ee +ee +ee +zt +zt +aV +bV +bV +ee +bV +kB +ee +bV +bV +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +ko +ee +zt +bV +Ma +aV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(89,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Vc +Vc +nx +nx +nx +nx +nI +nI +nI +oc +oc +oc +oc +pC +nI +Vc +Vc +Vc +Vc +Vc +lY +Vc +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +bV +aV +Vh +Vh +nc +bV +ee +bV +bV +bV +bV +bV +ee +bV +bV +Vh +bV +bV +ee +bV +bV +bV +bV +bV +ee +ee +ee +bV +Xa +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +bV +bV +ee +ee +bV +Vh +aV +aV +Vh +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(90,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +zt +aV +Vh +bV +bV +AZ +lV +Vc +lY +Vc +mW +mW +mW +mW +nI +nI +nX +oc +ps +nI +nI +Vc +nx +nx +nx +Vc +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +bV +zt +Vh +aV +zt +bV +ee +ee +bV +bV +bV +bV +Vh +bV +bV +Du +zt +zt +ee +bV +bV +bV +Vh +bV +ee +ee +ee +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +ee +ee +ee +ee +hY +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +ee +ee +Vh +Vh +Vh +Vh +Hy +Vh +Vh +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(91,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Hk +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +nI +nI +oc +nI +nI +Vc +mW +mW +Vc +Vc +Vc +Vc +Vc +AZ +bV +bV +Vh +mv +zt +Jz +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +bV +Vh +bV +bV +aV +bV +bV +ee +AZ +AZ +AZ +AZ +AZ +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +SV +ee +ee +bV +bV +bV +bV +ee +ee +bV +bV +bV +bV +ee +bV +bV +ee +ee +ee +ee +yd +ee +ee +ee +ee +ee +ee +ee +Vh +Mp +bV +PR +bV +bV +Nd +Vh +pZ +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(92,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +zt +aV +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +Vc +nI +oi +nI +Vc +Vc +mW +Vc +Vc +Vc +Vc +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +YO +bV +bV +sf +ee +ee +ee +ee +ee +bV +bV +ee +bV +bV +mv +bV +hY +ee +bV +bV +bV +Vh +bV +ee +ee +ee +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +ee +ee +ee +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +ee +ee +ee +EL +dh +EL +ee +ee +ee +ee +ee +ee +fj +Iu +bV +Mp +Vh +Vh +bV +bV +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(93,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +mm +Vc +Vc +Vc +Vc +Vc +tm +mW +mW +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mq +Vc +Vc +Vc +AZ +bV +bV +Vh +Ma +bV +kB +ee +ue +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +AZ +AZ +ee +YO +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Ru +zt +ee +ee +bV +bV +Vh +Vh +Vh +Vh +bV +Vh +Vh +ee +ee +ee +ee +ee +xW +bV +Vh +Vh +Cf +Vh +Jh +ar +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(94,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Zp +Zp +Zp +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +lY +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +YL +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +wb +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +ee +ee +bV +bV +bV +ee +ee +bV +bV +ee +bV +bV +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +Vh +Vh +Vh +Vh +bV +ee +Xa +bV +bV +zt +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +at +Ei +Ei +Ei +Es +ca +Ei +Mp +bV +bV +bV +Jh +ar +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(95,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Zp +Zp +lR +nH +Zp +Cz +uz +Zp +EO +Tf +Zp +Yc +uz +Zp +SY +uz +Zp +MQ +ee +ee +ee +ee +Zp +Zp +Zp +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +Vc +Vc +Vc +Vc +Vc +mW +Vc +Vc +Vc +Vc +Vc +Vc +Vc +ee +bV +bV +Vh +Vh +bV +bV +ee +zt +bV +bV +bV +bV +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +ee +bV +bV +Vh +bV +bV +Vh +zt +Vh +zt +BU +zt +Vh +bV +bV +vY +bV +Vh +Vh +Vh +Vh +CL +ee +bV +Vh +Vh +bV +ee +bV +bV +Vh +Vh +Vh +Vh +bV +Vh +Vh +ee +ee +ee +ee +ee +Vh +bV +Vh +Vh +BH +Vh +Jh +ar +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(96,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Zp +Zp +ee +ee +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +XU +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +mW +Vc +Vc +Vc +mW +mW +Vc +Vc +Vc +Vc +Vc +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +ee +kB +bV +zt +zt +zt +zt +zt +bV +bV +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +Vh +uN +Vh +zt +Ma +zt +Vh +bV +bV +ee +bV +Vh +Vh +Vh +Vh +bV +ee +zt +aV +Vh +bV +ee +bV +bV +ee +ee +ee +Vh +bV +Vh +ee +ee +ee +ee +ee +ee +Vh +QE +DU +Vh +Hy +Mi +bV +bV +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(97,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +ky +Zp +ny +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Zp +Zp +bV +Zp +bV +Vh +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +bV +Vh +bV +Vh +kB +Vh +XU +bV +bV +bV +bV +bV +lO +aV +bV +bV +ub +Vc +Vc +Vc +Vc +Vc +Vc +mq +Vc +Vc +mW +mW +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mq +Vc +ub +bV +bV +Vh +Vh +bV +bV +ee +ee +AZ +AZ +ee +bV +bV +bV +bV +bV +bV +Vh +Vh +Vh +HS +aV +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +bV +Vh +Vh +bV +ee +bV +bV +ee +ee +ee +ee +zt +ee +ee +ee +ee +ee +ee +ee +pZ +sg +bV +bV +bV +Cm +bV +dd +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(98,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +ky +Zp +ny +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Zp +Zp +bV +Zp +bV +Vh +bV +bV +bV +bV +bV +bV +Vh +bV +ee +ee +ee +bV +bV +bV +bV +bV +On +bV +XU +bV +bV +bV +bV +bV +Vh +aV +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mm +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +ee +bV +bV +bV +bV +bV +bV +aV +Vh +Vh +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +bV +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +ee +ee +ME +Vh +Vh +Vh +Vh +Vh +Vh +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(99,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Zp +Zp +ee +ee +Zp +Zp +Zp +Hx +EN +ee +ee +ee +ee +ee +ee +Vh +bV +bV +ee +ee +ee +bV +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +aV +bV +bV +ee +Vc +Vc +mq +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +Vc +Vc +Vc +Vc +Vc +lY +Vc +Vc +mW +Vc +Vc +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +AZ +AZ +ee +bV +bV +bV +ee +bV +bV +zt +zt +Wj +zt +zt +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +yd +bV +bV +bV +ee +ee +ee +bV +Vh +Vh +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(100,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +iM +Zp +Zp +Zp +Zp +Zp +SY +Ud +Zp +Yc +uz +Zp +SY +YT +Zp +SY +Ff +Zp +Zp +ee +ee +ee +ee +Zp +Zp +Zp +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +Vc +Vc +Vc +Vc +Vc +Vc +mm +Vc +Vc +Vc +mW +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +YO +bV +bV +bV +bV +YO +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(101,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +pw +Zp +Zp +Zp +Zp +Zp +ee +AZ +AZ +AZ +AZ +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +AZ +AZ +AZ +ee +ee +ee +ee +ee +Tu +ee +ee +bV +bV +ee +ee +ee +bV +Vh +bV +ee +ee +ee +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +mW +nx +nx +nx +nx +mW +og +og +oH +oH +oH +og +og +nx +nx +nx +mW +mW +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +zt +bV +bV +bV +bV +bV +bV +ee +ee +ee +YO +bV +bV +bV +Hk +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +CL +zt +zt +zt +bV +bV +bV +bV +bV +zt +zt +zt +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(102,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +BT +Zp +Zp +Zp +Zp +Zp +Nq +uz +Zp +Dq +FK +Zp +ee +ee +ee +Zp +Zp +Zp +ee +ee +ee +ee +ee +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +Tu +ee +ee +bV +bV +ee +ee +ee +bV +ad +bV +ee +ee +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +lV +Vc +Vc +Vc +Vc +nx +nx +mW +og +om +oc +oc +oc +IC +og +Vc +nx +nx +nx +mW +Vc +AZ +bV +bV +Vh +Vh +bV +Ru +ee +wb +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +ee +ee +ee +bV +Vh +aV +aV +Ma +CL +ee +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +PH +Vh +Vh +Vh +ee +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(103,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Zp +ee +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +Zp +Zp +Vh +Vh +Vh +Zp +Zp +ee +ee +Tu +ee +ee +bV +bV +ee +ee +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +Vc +Vc +Vc +Vc +Vc +Vc +Vc +Vc +mW +og +oc +nX +oc +oc +oc +og +Vc +Vc +Vc +Vc +Vc +YL +AZ +bV +bV +Vh +uV +zt +zt +ee +Cs +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +mv +Vh +Vh +bV +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +TJ +ee +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +GZ +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(104,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +HI +Zp +yd +Zp +Zp +Zp +Vh +Zp +Zp +Vh +aV +aV +RH +Vh +Zp +ee +ee +ee +ee +ee +bV +bV +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +YL +Vc +Vc +Vc +mW +mW +Vc +Vc +Vc +oi +oc +oc +oc +oc +nX +oi +Vc +mq +Vc +Vc +Vc +Vc +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +bV +bV +uN +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +aV +aV +Vh +bV +ee +ee +ee +ee +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +bV +bV +bV +Cs +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +zt +zt +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(105,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Zp +HI +Zp +yd +Zp +Zp +Zp +Vh +Zp +Zp +Zp +Vh +Vh +Vh +Zp +Zp +ee +ee +ee +ee +ee +bV +bV +ee +ee +ee +bV +Vh +bV +ee +ee +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Vc +Vc +lY +Vc +mW +nx +mW +Vc +mW +og +oc +oc +oc +Ay +oc +og +Vc +Vc +Vc +nx +Vc +mW +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +on +on +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +Vh +Vh +Vh +bV +ee +ee +ee +zt +bV +Vh +Vh +bV +zt +WT +zt +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +ee +ee +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +zt +bV +bV +zt +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(106,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Vh +Vh +Zp +Zp +ee +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +ee +ee +ee +ee +bV +bV +bV +bV +hY +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Vc +kw +Vc +Vc +nx +nx +nx +nx +nx +og +oc +oc +Ay +pI +ql +og +Vc +Vc +Vc +nx +Vc +Vc +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +ee +bV +bV +bV +YO +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +SJ +Vh +bV +bV +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +AZ +Ym +YS +WZ +WZ +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +AZ +AZ +zt +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(107,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Zp +Zp +sB +vs +Zp +rG +uz +Zp +hh +uz +Zp +ee +ee +ee +Uv +Uv +Uv +ee +ee +ee +ee +Zp +Zp +Vh +Vh +Vh +Zp +Zp +ee +ee +ee +Xa +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +yd +ee +ee +ee +ee +ee +zt +zt +zq +Vh +bV +bV +AZ +AZ +Vc +Vc +Vc +Vc +Vc +Vc +nx +nx +og +ox +oc +nX +oc +oc +og +Vc +Vc +nx +nx +Vc +AZ +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +ee +bV +bV +bV +bV +bV +Vh +Vh +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +XH +YI +Qt +XH +WZ +zM +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +AZ +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(108,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Zp +Vh +nE +bw +aV +Vh +Zp +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bE +bV +bV +ee +ee +ee +ee +YO +bV +aV +Vh +bV +bV +bV +AZ +AZ +Vc +Vc +mm +Vc +Vc +Vc +Vc +og +oy +oc +oc +oc +qq +og +Vc +Vc +nx +nx +AZ +AZ +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +je +je +ee +ee +ee +WZ +WZ +YS +WZ +WZ +WZ +WZ +WZ +WZ +Xd +Hj +Hj +Hj +Hj +Hj +Nx +WZ +Qt +PQ +Hj +WZ +WZ +ee +ee +ee +vY +vY +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(109,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +MQ +Zp +Vh +Vh +Vh +Zp +EN +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +bV +bV +aV +Vh +bV +bV +bV +bV +AZ +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +AZ +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +ee +bV +Xa +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Xd +Xd +Zb +Zb +Zb +Xd +IN +WZ +Qt +WZ +aP +aP +Hj +Hj +Hj +WZ +qZ +Yi +WZ +WZ +Yi +oq +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(110,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Zp +Zp +Zp +GY +Zp +Zp +Zp +ee +ee +sf +YE +ee +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +YO +sf +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Xk +wo +wo +wo +wo +Xd +WE +WZ +qZ +WZ +aP +Ys +Or +Hj +WZ +WZ +qZ +WZ +WZ +Yi +WZ +IN +ee +bV +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(111,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Vh +Vh +Vh +Zp +Zp +ee +ee +ee +ee +ee +AZ +Tu +Tu +Tu +Tu +Tu +Tu +Tu +AZ +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +Vh +Ma +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +Vh +Vh +Vh +bV +bV +GZ +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +wo +Tn +wo +gi +Zf +Xd +wo +WZ +WZ +Xd +Hj +aP +aP +WZ +zl +WZ +WZ +Qt +WZ +oq +oq +WZ +AZ +bV +bV +Vh +Vh +bV +rK +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(112,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Vh +aV +mv +aV +Vh +Zp +Zp +ee +YO +bE +ee +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +AZ +ee +sf +Hk +ee +ee +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +Jz +zt +bV +bV +XJ +wo +wo +wo +wo +wo +sI +wo +WZ +WZ +Hj +Hj +Hj +Xd +ea +zl +XH +Hj +WE +WZ +IN +WZ +WZ +XJ +bV +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(113,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Vh +Vh +Vh +Zp +Zp +Zp +Zp +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +TX +aV +bV +bV +XJ +wo +wo +Zf +Dt +Dt +sI +wo +qZ +WZ +Hj +Hj +Hj +Hj +Hj +WZ +WZ +WZ +WZ +WZ +WZ +WZ +WZ +XJ +bV +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(114,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +bV +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +wo +wo +Zh +Zh +Zh +Xd +wo +WZ +IN +WZ +Hj +Hj +Hj +Hj +Hj +WZ +WZ +Yi +WZ +qZ +XH +WZ +AZ +bV +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(115,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Zp +Zp +Zp +Zp +Zp +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +Xv +XK +Zh +ob +wo +Xd +WZ +WZ +WZ +WZ +Xd +Xd +Zb +Zb +Xd +Xd +Hj +WZ +WZ +Qt +WZ +WZ +ee +bV +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(116,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Zp +Zp +Mw +Zp +Zp +Zp +Zp +Zp +Zp +Zp +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +yd +bV +Vh +Vh +bV +bV +ee +Xd +Xd +Xd +Xd +Xd +Xd +Hj +Hj +WZ +WZ +Xd +Tn +wo +wo +wo +Xd +WZ +WZ +Yi +WZ +WZ +Hj +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(117,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +BU +Vh +Vh +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ML +ML +ee +ee +ee +Hj +Hj +Hj +Hj +Hj +Hj +Hj +WZ +Qt +WZ +sI +wo +wo +wo +GS +vZ +eM +WZ +WZ +Hj +Hj +Hj +ee +ee +ee +ML +ML +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(118,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +On +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Hj +Hj +Hj +Hj +Hj +XH +WZ +WZ +WZ +Xd +wo +wo +Ne +eV +Xd +Hj +Hj +Hj +Hj +Hj +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(119,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +Hj +Hj +Hj +Hj +Hj +WZ +XH +WE +Xd +Tn +wo +WN +IT +Xd +Hj +Hj +Hj +Hj +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(120,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +AZ +AZ +AZ +AZ +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(121,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +ee +ee +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 +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(122,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bE +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +uH +bV +bV +bV +bV +zt +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +Vh +bV +YO +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(123,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +AZ +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +aV +Vh +Vh +Vh +aV +aV +Vh +Vh +Vh +bV +On +bV +ee +ee +ee +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +YO +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(124,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +Cn +bV +bV +Vh +Vh +Vh +iY +Vh +AZ +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +ZW +bV +ee +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +ee +ee +ee +bV +bV +Vh +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Ma +Vh +Vh +Vh +Vh +aV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +Vh +bV +bV +ee +ee +ee +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(125,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +zt +zt +zt +bV +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +kB +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(126,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +on +bV +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ud +Mu +ud +bV +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +AZ +vY +vY +AZ +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(127,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +Vh +Vh +bV +bV +bV +ee +ee +db +db +GC +hk +gB +eN +dj +dj +db +db +db +dj +dj +db +db +dj +dj +db +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ud +LT +ud +od +bV +bV +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +to +VG +VG +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +sC +tw +VG +VG +VG +AZ +AZ +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(128,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +Vh +Vh +bV +bV +ee +ee +db +dC +db +db +hk +gw +dj +dj +db +db +dj +dj +hj +hj +gw +eN +dj +gB +db +dj +ee +ee +kB +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ud +ud +bV +ud +Mu +zt +kO +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +VG +VG +VG +VG +VG +VG +VG +Kv +CG +CU +En +En +En +En +sC +sy +VG +VG +VG +VG +AZ +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +Lc +ML +Lc +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(129,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +Vh +Vh +bV +bV +ee +db +db +GB +db +dj +fz +ep +dj +dC +gw +hu +iS +db +hu +dj +dj +eN +dj +db +db +dj +dj +ee +bV +bV +Vh +Vh +bV +bV +bV +jS +ud +od +Mu +ud +ud +ud +ud +zt +jH +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +sO +rn +sy +HQ +VG +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Vh +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(130,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +db +dj +db +fP +dj +gU +dj +dj +db +dj +gU +dj +db +gU +dj +dj +dj +db +dj +hz +dj +dj +ee +Cs +bV +Vh +Vh +bV +bV +bV +jS +ud +bV +bV +Mu +od +ud +ud +pl +sZ +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +VG +yh +yB +Bz +En +En +EG +En +Mr +Mr +sO +Pm +rn +tw +VG +VG +AZ +bV +bV +Vh +Vh +zt +zt +ee +ee +ee +UG +bV +Vh +Vh +sc +Vh +Vh +bV +uI +ee +ee +Tu +Tu +Tu +ee +Lc +ML +Lc +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +ZP +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(131,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +pz +bV +ee +dj +db +dW +db +ep +db +dj +hF +db +dj +gU +hF +db +dj +dj +dj +gw +gw +dj +db +db +hk +ee +rW +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +bV +bV +ud +od +ud +bV +od +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +yh +yB +Bz +En +En +En +En +Mr +le +Ed +Mr +wE +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +zt +ee +ee +ee +iO +Vh +bV +bV +kB +On +bV +Vh +uI +ee +ee +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(132,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +VJ +kZ +ll +Zp +od +bV +Vh +Vh +bV +bV +ee +db +dj +db +dj +ep +db +dj +fO +db +dj +gU +dj +db +dj +dj +dj +ep +db +dj +ep +fz +fz +ee +Vk +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +Tu +ee +ee +bV +bV +sc +Ma +bV +bV +AZ +VG +VG +VG +VG +VG +Kv +yB +Bz +En +En +En +En +Mr +Mr +Ej +Gk +Mr +bF +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +zt +zt +ee +ee +ee +iO +Vh +bV +bV +ee +bV +bV +Vh +uI +ee +ee +Tu +Tu +Tu +ee +Lc +ML +Lc +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +bV +Nn +UL +Vh +NT +UL +bV +bV +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(133,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Vh +Zp +Zp +bV +bV +Vh +Vh +bV +bV +ee +db +dk +db +db +ep +fz +db +dj +JB +dj +gU +db +GC +dj +kl +dj +gw +db +dj +ep +dj +db +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +ud +bV +ee +ee +ee +Tu +ee +ee +bV +bV +AZ +AZ +bV +bV +AZ +sy +VG +VG +VG +VG +Kv +zc +yC +En +En +AL +En +En +Mr +gx +vW +Mr +ey +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +iO +Vh +bV +bV +AZ +bV +bV +Vh +WB +ee +ee +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +HS +bV +bV +bV +bV +Vh +bV +bV +bV +bV +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(134,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Vh +Vh +Vh +Zp +pz +bV +Vh +Vh +bV +bV +ee +db +dj +db +db +dj +gU +dj +dj +db +dj +hu +db +fz +ka +dj +dj +db +db +gU +ep +db +dj +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +ee +ee +ee +ee +BW +bV +ee +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +rn +tw +VG +VG +VG +VG +wY +CG +En +En +En +En +En +En +Mr +Mr +En +EG +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +UG +Vh +bV +bV +AZ +bV +bV +Vh +uI +ee +ee +Tu +Tu +Tu +ee +Lc +ML +Lc +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +bV +NJ +Sj +Vh +Nn +No +bV +bV +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(135,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Zp +Zp +Vh +Zp +Zp +bV +bV +Vh +Vh +bV +bV +ee +db +dj +ep +gw +hk +hj +hz +dj +hj +dj +ep +dj +fz +eN +gw +db +db +db +gU +dj +dj +dj +ee +ee +ee +Cv +Cv +ee +ee +ee +ee +Tu +Tu +ee +ee +ee +ud +ud +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +sC +sy +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +iO +bV +bV +bV +AZ +bV +bV +bV +uI +ee +ee +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(136,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +VJ +VJ +DD +Zp +bV +bV +Vh +Vh +od +bV +ee +db +dC +eN +gB +hk +dj +dj +gU +dj +hk +ep +dj +db +fz +gU +hj +db +db +gU +db +dj +db +ee +ee +bV +Vh +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +od +ud +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +sO +rn +tw +VG +VG +VG +Kv +CG +En +En +En +En +En +En +fF +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +kB +ee +ee +ee +ee +bV +bV +bV +AZ +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +ee +Lc +ML +Lc +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +NT +Sj +Vh +SX +UV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(137,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +bV +bV +mv +mv +bV +bV +ee +db +dj +db +db +hk +ep +dj +dj +dj +db +hk +fz +dj +sL +dj +db +db +hk +ep +db +dj +dj +ee +zt +bV +Vh +Vh +On +ad +AZ +TY +JQ +bV +bV +bV +bV +bV +bV +Qg +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +sC +tw +VG +VG +VG +Kv +Pb +sW +yC +En +Mx +En +En +En +En +CU +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +bV +bV +bV +AZ +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +ee +bV +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +Vh +bV +Vh +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(138,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +Vh +Vh +aU +bl +bV +bV +bI +dj +db +db +db +dj +eN +dj +dj +db +dj +ep +db +II +dj +hF +db +gB +ep +db +db +dj +dj +bI +bV +bV +Vh +Vh +bV +bV +AZ +Md +od +ud +ud +pz +bV +bV +bV +FV +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +sC +sy +VG +VG +VG +VG +tc +wY +CG +En +En +En +En +En +En +En +En +sC +sy +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +Vh +bV +bV +AZ +bV +bV +Vh +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +Vh +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(139,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +dj +db +db +gU +gw +db +dj +dk +db +db +ep +fz +db +dj +dj +dj +dj +ep +db +dj +dC +db +ee +zt +bV +Vh +Vh +bV +bV +AZ +Wz +ud +ud +ud +bV +bV +ud +od +cU +ee +ee +Tu +Tu +ee +ee +bV +Xa +Vh +Vh +Xa +bV +AZ +En +sO +rn +tw +VG +VG +VG +VG +Kv +CG +AL +En +EG +En +En +En +En +En +sO +rn +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +ee +Vh +bV +bV +ee +bV +bV +Vh +ee +ee +ee +ee +ee +ee +bV +bV +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Vh +bV +Vh +bV +Vh +bV +Vh +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(140,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +dj +dj +db +ep +dj +db +dj +dj +db +db +hk +gU +db +dj +hz +dj +iS +hk +dj +dj +db +db +ee +ee +bV +Vh +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +bV +ud +NN +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +En +sC +tw +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +tI +jB +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +bV +bV +bV +bV +Lc +bV +bV +TF +Vb +IA +TF +Pv +Pu +Pu +qE +bV +Vh +bV +bV +bV +Lc +bV +Lc +bV +Lc +bV +Lc +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(141,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +pz +bV +ee +dW +dj +dj +hj +db +dj +dj +hk +hk +db +db +hu +db +db +dj +dj +dj +gU +dj +db +db +Qy +ee +ee +ee +Cv +Cv +ee +ee +ee +ee +Tu +Tu +ee +ee +ee +bV +bV +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +tz +sC +tw +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +sC +us +VG +VG +AZ +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Lc +Vh +Vh +xb +Rc +vu +vu +bW +Vh +Vh +Vh +Vh +GK +Ky +Vh +Vh +ML +Vh +ML +Vh +ML +Vh +ML +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(142,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +iY +Vh +bV +bV +ee +db +db +hF +hk +dW +db +dj +dj +dj +db +gU +db +dj +db +dj +dj +dj +fz +db +db +NE +db +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +ee +ee +ee +ee +bV +bV +ee +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +En +sC +tw +VG +VG +VG +VG +Kv +CG +En +En +CU +En +En +En +En +xI +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +bV +bV +bV +bV +Lc +bV +bV +bV +qE +bV +Pu +TF +TF +Pv +Pu +bV +bV +bV +bV +bV +Lc +bV +Lc +bV +Lc +bV +Lc +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(143,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +db +db +fz +ep +db +db +hk +db +dC +dj +ep +db +gB +db +db +dj +dj +gU +db +dj +db +db +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +pz +bV +bV +bV +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +En +sC +tw +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +tC +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Vh +bV +Vh +bV +Vh +bV +Vh +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(144,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +db +dG +dj +ep +db +db +db +db +RJ +dj +hk +gU +db +dj +db +ep +ep +gw +db +dj +db +db +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +ud +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +En +tI +jB +tw +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +Vh +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(145,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +zt +Vh +Vh +bV +bV +ee +db +db +dj +gw +db +db +dj +db +db +dj +dj +ep +hk +dj +db +hj +db +db +dj +dj +iF +db +ee +bV +bV +Vh +Vh +bV +bV +ee +ee +ee +ee +bV +Qo +bV +zt +zt +bV +zw +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +sW +jB +us +VG +VG +VG +VG +VG +yh +CG +Kd +Kd +Bo +En +En +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +Vh +bV +Vh +bV +bV +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(146,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +Jz +Vh +Vh +bV +bV +ee +dj +db +db +gU +hu +dj +dj +gB +db +dj +db +db +ep +dj +dC +eN +dj +hz +dj +db +db +db +ee +bV +bV +Vh +Vh +bV +bV +UE +Vh +ud +ud +bV +bV +bV +ud +bV +pz +bV +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +tc +us +VG +VG +VG +VG +HQ +yh +yB +Bz +Kd +OB +En +En +EG +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Oq +Sj +Vh +rP +Vj +bV +bV +ee +ee +ee +ee +ee +ee +Vh +ee +Vh +ee +ee +Vh +ee +Vh +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(147,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +fn +bV +Vh +Vh +bV +bV +ee +dj +dC +db +hk +ep +db +db +GC +db +db +iF +db +ep +dj +hu +fz +db +db +db +db +db +db +ee +bV +ud +Un +Un +bV +ud +ud +Vh +bV +bV +bV +bV +BW +od +bV +bV +bV +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +yh +yB +Pm +Bz +En +Kd +nf +En +En +En +En +En +tz +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(148,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +od +ee +ee +dj +dj +dj +ep +dj +db +db +dj +dj +dj +jc +hj +db +db +db +db +db +lk +db +db +ee +ee +pz +ud +Un +Un +ud +bV +ee +ee +ee +ee +Lo +bV +pz +bV +bV +od +BQ +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +Kv +yB +Bz +AL +En +En +En +En +En +En +En +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +bV +Pq +Sj +Vh +Nn +Sj +bV +bV +Vh +ee +ee +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(149,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +ee +ee +db +db +db +db +db +dj +hz +dj +db +gw +db +db +db +db +db +db +db +db +ee +ee +bV +ud +TY +Py +Un +PI +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +pl +ud +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +yh +CG +Kd +Kd +vo +Pt +wM +wM +En +En +En +En +En +En +sC +tw +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +HS +bV +bV +bV +bV +Vh +bV +bV +bV +bV +Vh +ee +ee +ee +ee +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(150,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +ud +ud +iY +Un +ud +bV +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +yh +yB +Bz +Kd +WG +GA +GA +GA +nJ +En +En +En +bC +En +En +sC +sy +VG +VG +AZ +nL +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +bV +Nn +Sj +Vh +Ue +Sj +bV +bV +Vh +ee +ee +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(151,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +zt +Cs +ee +zt +ST +bV +bV +bV +bV +bV +bV +bV +ud +ud +ud +bV +ee +ee +ee +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +zt +bV +Vh +Vh +bV +zt +AZ +VG +VG +VG +yB +Bz +En +Kd +Xs +GA +IO +GA +QI +En +En +vi +Yn +qI +En +sO +rn +tw +VG +AZ +zt +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(152,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +Vh +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +aV +AZ +aV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +ud +bV +bV +ee +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +XO +Tu +ee +ee +zt +Jz +Du +so +zt +zt +ee +VG +VG +yh +CG +CW +En +Kd +rs +GA +GA +GA +nK +En +En +En +fB +En +En +Gx +jB +tw +VG +ee +zt +bV +Vh +Vh +bV +HA +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +ZP +bV +bV +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(153,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +aV +AZ +aV +Vh +Vh +Vh +Vh +Vh +Vh +Se +Vh +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +ZP +Vh +ee +ee +Tu +ee +ee +ee +AZ +AZ +AZ +AZ +ee +ee +VG +Kv +yB +Bz +En +CW +Kd +So +GA +GA +GA +wM +En +En +BI +Yn +BF +En +sC +us +VG +VG +ee +ee +AZ +AZ +AZ +AZ +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Vh +ee +ee +ee +ee +ee +Tu +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(154,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +zt +zt +ee +zt +nL +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +kO +rm +kO +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +ee +VG +Kv +CG +En +En +En +Kd +aX +GA +KM +eu +wM +En +En +En +GJ +En +En +sC +sy +VG +VG +ee +zt +zt +aV +aV +zt +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +ee +ee +Xh +Yr +bV +bV +bV +Vh +bV +bV +bV +bV +XZ +Xh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(155,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +Vh +bV +bV +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +Kv +CG +AL +En +En +En +En +En +En +En +En +En +En +En +En +En +En +SM +rn +sy +VG +AZ +zt +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +ee +ee +ZP +Zi +bV +bV +bV +bV +Vh +bV +bV +bV +tK +ZP +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(156,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +Vh +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 +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +AZ +VG +Kv +CG +En +En +En +CU +En +En +En +En +En +En +gI +En +En +En +En +En +sO +rn +tw +AZ +zt +bV +Vh +Vh +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +Vh +Zi +bV +bV +bV +Vh +bV +bV +bV +bV +tK +Vh +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(157,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +Vh +Vh +Vh +BU +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +AZ +VG +Kv +zc +yC +En +En +En +En +En +En +En +En +En +En +En +En +En +En +Qj +En +sC +tw +AZ +bV +bV +Vh +Vh +Xa +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(158,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +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 +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +wY +CG +CW +En +En +En +fF +En +En +En +En +En +En +En +En +En +Ds +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(159,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +ee +ee +ee +ee +ee +je +ee +ee +ee +AZ +AZ +AZ +ee +ee +ee +ee +ee +XU +ee +ee +ee +ee +ee +jM +ee +ee +ee +ee +ee +ee +bV +bV +Vh +bV +bV +ee +ee +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +Kv +zc +yC +En +En +En +En +En +En +En +En +En +En +CU +En +En +sG +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +Vh +Vh +bV +bV +bV +Vh +bV +bV +Vh +Vh +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(160,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +bV +bV +bV +ee +ee +ee +bV +bV +bV +ee +ee +ee +ee +ee +ee +kY +Xh +kY +ee +ee +ee +ee +ee +kB +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +wY +zc +yC +En +En +En +En +En +En +En +En +En +En +En +En +Wv +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +Uy +Vh +bV +bV +Vh +bV +bV +bV +Vh +Uy +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(161,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +ee +ee +ee +WW +bV +bE +bV +bV +bV +bV +bV +bE +bV +zt +ee +WW +bV +bE +bV +zt +ee +WW +bV +bE +bV +zt +ee +ee +ee +ee +ee +Vh +ZP +Vh +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +wY +zc +yC +En +En +CU +En +En +En +En +En +En +En +En +Qj +En +AU +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +Vh +Vh +bV +bV +bV +Vh +bV +bV +Vh +Vh +Vh +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(162,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +ee +ee +ee +ko +bV +Vh +bV +bV +bV +bV +bV +bV +bV +iQ +ee +ko +bV +Vh +bV +zt +ee +ko +bV +bV +bV +Jn +ee +ee +Tu +ee +ee +ee +ee +ee +ee +ee +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +wY +CG +AL +En +En +En +En +En +En +En +En +Sf +En +uY +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(163,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +ee +ee +ee +zt +bV +bV +bV +bV +ko +bV +LV +bV +bV +zt +ee +zt +bV +bV +bV +iQ +ee +EV +Vh +Vh +Vh +zt +ee +ee +Tu +Tu +ee +ee +ee +ee +ee +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +Kv +zc +yC +En +En +En +En +EG +En +En +En +En +En +En +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(164,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +ee +ee +ee +ee +zt +bR +zt +zt +nL +zt +zt +iA +zt +ee +ee +ee +zt +jh +zt +ee +ee +ee +aV +jl +aV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +wY +zc +yC +En +En +En +En +En +En +En +En +En +En +En +sC +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Xh +Zv +bV +Vh +bV +bV +XZ +Xh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(165,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +VG +wY +zc +yC +En +En +En +En +En +En +En +En +EG +tI +jB +tw +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Uy +Zi +bV +bV +Vh +bV +tK +Uy +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(166,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +ee +ee +zD +Xa +HA +bV +bd +CL +bx +Xa +VM +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +AZ +AZ +bV +bV +AZ +VG +VG +VG +VG +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +En +sC +tw +VG +AZ +bV +bV +AZ +AZ +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +Zi +bV +bV +bV +bV +tK +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(167,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +BU +bV +ee +ee +Wu +Wu +Wu +Wu +Wu +Wu +Wu +Wu +Wu +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +De +VG +VG +VG +Kv +CG +En +En +tC +En +CU +En +En +En +En +sC +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(168,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +ee +ee +bV +Vh +bV +Vh +bV +Vh +bV +Vh +Dk +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +BE +Dg +Ey +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +En +sC +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +Vh +Vh +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(169,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +bV +Vh +bV +Vh +Ie +Vh +bV +eE +aw +Vh +bV +Vh +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +BX +DE +EP +VG +VG +Kv +CG +En +En +En +En +En +En +En +En +EG +sC +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +Vh +Vh +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(170,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +Vh +Vh +bV +Vh +zt +Vh +zt +Vh +zt +Vh +zt +Mp +jL +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +CM +DY +FF +VG +VG +Kv +CG +En +En +En +En +En +En +En +xI +tI +jB +tw +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(171,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +Vh +Vh +Vh +bV +Vh +bV +td +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +VG +VG +VG +VG +VG +VG +VG +VG +Kv +CG +En +En +En +En +En +En +En +tI +jB +us +VG +VG +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +eE +bV +kB +bV +bV +Vh +kB +bV +bV +eE +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(172,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +Dk +Fy +bV +bV +iQ +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +AZ +AZ +VG +VG +VG +VG +VG +VG +VG +Kv +zc +yC +En +En +tI +sW +sW +sW +jB +us +VG +VG +AZ +AZ +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +bV +bV +bV +Vh +bV +bV +bV +bV +Vh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(173,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +Vh +Vh +bV +bV +bV +AZ +AZ +VG +VG +VG +VG +VG +VG +VG +wY +CG +En +En +sC +tc +tc +tc +tc +VG +VG +AZ +AZ +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(174,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +Wu +ee +Wu +ee +Wu +ee +Wu +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +GZ +Vh +Vh +Xa +bV +bV +bV +ee +ee +ee +ee +ee +ee +ee +ee +AZ +vY +vY +AZ +ee +ee +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +Vh +Vh +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(175,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bq +ee +fE +ee +Hn +ee +il +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +zt +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +bV +bV +bV +Vh +bV +bV +Vh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(176,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +Vh +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +Vh +bV +YO +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +bV +bV +Vh +bV +bV +bV +Vh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(177,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +sf +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +kB +bV +bV +Vh +bV +kB +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(178,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +Vx +zt +ue +bV +bV +bV +bV +bV +bV +zt +ZH +Cs +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +Vh +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(179,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +Vh +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(180,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Xh +Xh +Vh +bV +Xh +Xh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(181,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +Vh +Vh +Uy +bV +Vh +Uy +Vh +Vh +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(182,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +Vh +Vh +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(183,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +vY +vY +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(184,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +Vh +Vh +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(185,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(186,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(187,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(188,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(189,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(190,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(191,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +WC +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +WC +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(192,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +Vh +ee +ee +Vh +Vh +ee +ee +Vh +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(193,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(194,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(195,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +Vh +bV +bV +zt +zt +bV +bV +Vh +bV +bV +Vh +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(196,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +ee +bV +Vh +bV +bV +Vh +Vh +Vh +Vh +bV +bV +Vh +bV +ee +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(197,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +GX +bV +bV +bV +bV +bV +ee +bV +Vh +bV +Vh +bV +bV +bV +bV +Vh +bV +Vh +bV +ee +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(198,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +Vh +bV +Vh +zt +Vh +bV +El +Vh +bV +Vh +zt +Vh +bV +Vh +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(199,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +bV +bV +bV +bV +bV +Vh +bV +Vh +zt +Vh +bV +Vh +Vh +bV +Vh +zt +Vh +bV +Vh +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(200,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +bV +bV +bV +bV +bV +ee +bV +Vh +bV +Vh +bV +bV +bV +bV +Vh +bV +Vh +bV +ee +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(201,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +zt +bV +bV +bV +bV +bV +bV +ee +bV +Vh +bV +bV +Vh +Vh +Vh +Vh +bV +bV +Vh +bV +ee +bV +bV +bV +bV +bV +bV +zt +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(202,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +Vh +bV +bV +Vh +bV +bV +zt +zt +bV +bV +Vh +bV +bV +Vh +bV +bV +bV +bV +bV +bV +Ux +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(203,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +Vh +Vh +Vh +Vh +Vh +Vh +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +Ux +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(204,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +Vh +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(205,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +Vh +ee +ee +Vh +Vh +ee +ee +Vh +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(206,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +WC +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +WC +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(207,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(208,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(209,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(210,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(211,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(212,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +bV +bV +bV +bV +bV +bV +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(213,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(214,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(215,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(216,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(217,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(218,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(219,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(220,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(221,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(222,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(223,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(224,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(225,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(226,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(227,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(228,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(229,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(230,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(231,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(232,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(233,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(234,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(235,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(236,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(237,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(238,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(239,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(240,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(241,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(242,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(243,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(244,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(245,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(246,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(247,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(248,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(249,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(250,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(251,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(252,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(253,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(254,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} +(255,1,1) = {" +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +Tu +"} diff --git a/_maps/away/rainy.dmm b/_maps/away/rainy.dmm new file mode 100644 index 000000000000..587e5ed1bed6 --- /dev/null +++ b/_maps/away/rainy.dmm @@ -0,0 +1,3814 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/rospilovo/tree, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"b" = ( +/obj/structure/rospilovo/tree, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"c" = ( +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"d" = ( +/turf/closed/indestructible/black, +/area/awaymission/rainy) +"e" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"f" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"g" = ( +/obj/structure/bed/double, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"h" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"i" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo2" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"j" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo5" + }, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"k" = ( +/obj/structure/grille/rospilovo/wood{ + icon_state = "zabor_povorot_up" + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"l" = ( +/obj/structure/rospilovo/krest, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"m" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"n" = ( +/obj/structure/grille/rospilovo/wood{ + icon_state = "zabor_horizontal" + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"p" = ( +/obj/structure/grille/rospilovo/wood, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"q" = ( +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"r" = ( +/obj/structure/chair/sofa, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"s" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo3" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"t" = ( +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"u" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"x" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/televizor/broken, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"y" = ( +/turf/closed/wall/mineral/wood/nonmetal, +/area/awaymission/rainy) +"z" = ( +/obj/structure/grille/rospilovo/wood{ + icon_state = "zabor_povorot_upr" + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"B" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo2" + }, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"C" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"D" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"E" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo4" + }, +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"F" = ( +/obj/effect/random_mob_placer/hev_zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"G" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"H" = ( +/obj/machinery/gateway/away/required_key, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"I" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo4" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"J" = ( +/obj/item/flashlight, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"K" = ( +/obj/effect/turf_decal/weather/side/corner, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"L" = ( +/obj/item/gun/ballistic/shotgun/fallout/huntingshot, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"M" = ( +/obj/effect/turf_decal/weather/side, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"N" = ( +/obj/effect/random_mob_placer/xen/zombie, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"O" = ( +/obj/structure/table/rospilovo, +/obj/item/flashlight/lantern, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"Q" = ( +/obj/item/key/gateway, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"R" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"S" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"T" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/belt/shotgun/bullet, +/turf/open/floor/plating/is12/wood, +/area/awaymission/rainy) +"U" = ( +/obj/structure/rospilovo/krest/bereza, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"V" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) +"X" = ( +/obj/structure/rospilovo/tree{ + icon_state = "derevo5" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rainy) +"Y" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/is12/trenchcenter, +/area/awaymission/rainy) +"Z" = ( +/obj/item/storage/belt/shotgun/buckshot, +/turf/open/floor/grass/gensgrass/dirty, +/area/awaymission/rainy) + +(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 +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 +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 +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 +t +t +t +t +t +t +t +t +d +"} +(3,1,1) = {" +d +t +t +t +t +a +t +t +t +t +a +t +t +t +a +t +t +t +t +a +t +t +t +t +t +t +t +t +t +a +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 +a +t +t +t +t +a +t +t +t +t +a +t +t +t +d +"} +(4,1,1) = {" +d +t +t +i +t +t +t +t +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +b +t +t +t +t +t +t +t +t +i +t +t +t +a +t +t +t +t +a +t +t +N +t +a +t +t +t +t +a +t +t +t +t +t +t +t +t +t +t +t +i +t +t +t +N +t +d +"} +(5,1,1) = {" +d +t +t +t +t +t +b +N +t +a +t +t +t +t +E +t +t +t +t +I +t +t +t +t +t +t +i +t +t +I +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +I +t +a +t +t +I +t +t +t +t +I +t +a +t +d +"} +(6,1,1) = {" +d +t +s +t +Q +t +N +N +t +t +t +t +t +t +t +a +s +t +X +t +t +t +t +I +t +t +t +t +t +t +a +s +t +X +t +t +I +t +t +t +t +I +t +a +t +t +I +t +t +t +t +I +N +b +t +t +t +t +t +t +t +a +s +t +X +t +t +t +t +d +"} +(7,1,1) = {" +d +t +t +t +t +t +E +N +t +I +t +t +t +i +t +t +t +t +X +t +t +t +t +t +a +s +t +t +i +t +t +t +t +X +t +t +t +a +s +t +X +t +t +t +t +t +t +a +s +t +X +t +N +N +t +t +t +t +t +t +s +t +X +t +t +t +t +I +t +d +"} +(8,1,1) = {" +d +t +t +t +t +t +t +t +t +t +a +s +t +t +t +I +t +t +t +t +t +t +i +t +t +t +t +t +t +t +E +t +t +t +t +i +t +t +t +N +X +t +t +t +t +t +s +N +X +t +t +t +N +E +t +t +t +t +t +t +t +I +t +t +s +t +X +t +t +d +"} +(9,1,1) = {" +d +t +t +t +F +i +t +t +i +t +t +t +t +t +X +t +t +t +t +s +t +t +t +t +I +t +t +t +t +X +t +t +t +t +t +t +t +I +t +t +t +t +t +t +t +t +t +I +t +t +s +t +X +t +t +s +t +t +t +i +t +t +I +t +t +t +t +t +t +d +"} +(10,1,1) = {" +d +t +t +a +t +t +t +t +t +t +I +t +t +t +t +t +t +a +t +t +t +t +t +X +t +t +t +t +t +t +t +t +a +t +t +t +X +t +t +t +t +s +t +t +t +i +t +t +I +t +t +t +t +t +t +t +t +i +t +t +N +t +t +t +t +t +t +t +a +d +"} +(11,1,1) = {" +d +t +t +t +t +t +X +t +t +X +t +t +t +t +t +t +t +t +s +t +j +t +t +t +t +t +a +t +t +t +t +t +t +s +t +t +t +t +t +a +t +t +t +i +t +t +t +t +t +t +t +t +t +t +a +t +X +t +t +t +t +t +t +t +t +t +i +t +t +d +"} +(12,1,1) = {" +d +t +t +I +t +t +t +t +t +t +t +t +t +t +t +t +t +I +t +t +t +t +t +t +t +t +t +t +t +t +t +t +I +t +t +t +t +t +t +t +s +t +X +t +t +N +t +t +t +t +t +t +i +t +t +t +t +I +t +t +t +t +t +i +t +t +t +t +t +d +"} +(13,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +N +t +t +a +t +t +t +X +t +t +t +t +t +t +t +I +t +t +a +t +t +t +X +t +t +t +t +t +I +t +t +t +I +t +t +t +t +t +i +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +a +t +t +t +d +"} +(14,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +N +t +t +t +t +t +t +t +a +t +t +t +X +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +t +t +t +t +t +s +t +t +t +t +t +t +t +d +"} +(15,1,1) = {" +d +t +t +t +t +t +a +t +t +a +t +t +t +t +I +t +t +t +s +t +X +t +t +t +t +t +t +t +N +I +t +t +t +s +t +N +t +t +t +t +t +t +t +t +t +N +t +s +t +t +t +t +N +t +t +t +X +t +t +t +t +t +t +t +t +I +t +a +t +d +"} +(16,1,1) = {" +d +t +s +a +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 +a +s +a +t +t +t +I +t +t +t +s +t +X +t +t +t +t +t +t +t +t +I +t +a +t +t +t +t +I +t +s +t +X +t +X +t +t +t +t +d +"} +(17,1,1) = {" +d +t +t +t +t +t +I +t +t +I +t +t +t +t +t +y +y +Y +y +y +y +Y +y +y +t +t +t +t +i +t +t +t +t +t +t +t +t +a +s +a +t +t +t +t +I +t +s +t +X +t +X +t +t +t +t +t +t +X +t +t +t +N +t +t +t +t +t +I +t +d +"} +(18,1,1) = {" +d +t +t +E +t +t +t +t +t +t +a +s +t +t +y +y +c +c +c +y +c +c +c +y +y +n +n +n +n +n +n +n +n +n +z +i +t +t +t +t +t +t +t +X +t +t +t +t +t +t +t +t +t +I +t +t +i +t +t +t +X +t +t +t +s +t +X +t +t +d +"} +(19,1,1) = {" +d +t +t +t +t +i +t +t +i +t +t +t +t +t +y +G +c +c +c +S +u +c +c +D +Y +U +q +U +q +l +q +l +q +l +p +t +t +I +t +I +t +t +i +t +t +t +X +t +t +t +s +t +X +t +t +t +t +t +t +i +t +t +t +t +t +t +t +t +t +d +"} +(20,1,1) = {" +d +t +t +t +t +t +t +t +t +t +I +t +t +t +Y +r +c +c +O +y +u +g +c +O +Y +e +f +q +q +q +q +q +q +q +p +t +X +t +t +t +N +t +t +t +t +i +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +a +d +"} +(21,1,1) = {" +d +t +t +I +t +t +X +t +t +X +t +t +t +t +Y +r +u +c +x +y +y +y +y +y +y +c +M +l +q +l +q +U +q +l +p +t +t +t +t +t +t +t +t +t +a +t +t +t +t +t +t +t +t +t +a +t +t +t +t +a +t +t +t +N +a +t +t +t +t +d +"} +(22,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +y +m +c +c +c +y +c +c +c +c +Y +c +M +q +q +q +q +q +q +q +p +t +t +t +t +I +t +t +i +t +t +t +t +t +t +I +t +t +i +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +t +d +"} +(23,1,1) = {" +d +t +t +t +t +N +t +t +t +t +t +t +N +t +y +y +y +y +S +y +c +O +D +c +y +c +M +q +q +q +h +q +q +q +q +q +q +q +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +a +t +t +I +t +t +t +t +I +t +a +t +t +d +"} +(24,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +y +c +c +c +c +y +c +c +c +c +S +c +M +q +q +q +q +q +q +q +q +q +q +q +t +t +t +t +t +t +t +t +t +t +t +t +a +s +t +X +t +t +t +t +t +t +a +s +t +X +t +t +t +t +t +d +"} +(25,1,1) = {" +d +t +t +t +t +t +t +t +t +i +t +t +t +t +y +c +H +c +c +S +c +c +u +c +y +c +M +q +q +q +q +q +q +q +q +q +q +q +q +q +t +t +t +a +t +t +t +t +i +t +t +t +t +X +t +t +t +t +t +s +t +X +t +t +t +t +I +t +t +d +"} +(26,1,1) = {" +d +t +t +t +t +t +t +t +a +t +t +t +t +t +y +c +c +c +c +y +c +c +c +c +Y +c +M +q +q +q +q +q +q +q +p +t +s +t +q +q +t +t +t +t +t +t +i +t +t +t +I +t +t +t +t +N +t +t +t +t +I +t +t +s +t +X +t +t +t +d +"} +(27,1,1) = {" +d +t +t +I +t +t +i +t +t +t +t +t +t +t +y +y +y +y +S +y +y +y +y +y +y +c +M +l +q +U +q +l +q +l +p +t +t +t +q +q +q +q +t +I +t +t +t +t +t +j +t +t +t +t +s +t +t +t +i +t +t +I +t +t +t +t +t +t +t +d +"} +(28,1,1) = {" +d +t +t +t +t +t +t +t +t +t +N +t +t +t +Y +c +c +c +c +y +c +g +c +O +Y +C +K +q +q +q +q +q +q +q +p +I +t +I +t +q +q +q +t +t +a +s +t +t +t +t +t +t +a +t +t +t +i +t +t +t +t +t +N +t +t +t +t +a +t +d +"} +(29,1,1) = {" +d +t +t +t +t +t +t +I +t +t +i +t +t +t +Y +c +u +c +c +S +c +c +c +T +Y +U +q +l +q +l +q +l +q +l +p +t +t +t +t +N +q +q +q +t +t +t +t +t +t +t +t +t +t +s +t +X +t +t +t +t +t +t +t +t +t +i +t +t +t +d +"} +(30,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +y +y +c +c +c +y +c +u +c +y +y +n +n +n +n +n +n +n +n +n +k +t +t +t +t +N +q +q +q +q +I +t +t +t +t +t +t +t +I +t +t +t +I +t +t +t +t +t +i +t +t +t +t +t +t +d +"} +(31,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +t +y +y +Y +y +y +y +Y +y +y +t +t +t +t +t +a +t +t +t +t +t +t +t +I +t +t +i +q +q +q +t +t +t +t +t +a +t +t +t +X +t +t +t +t +t +t +t +t +t +t +a +t +t +t +a +d +"} +(32,1,1) = {" +d +t +I +t +t +t +s +t +X +t +t +t +t +t +t +t +t +I +t +a +t +t +a +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +q +q +q +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +s +t +t +t +t +t +t +t +t +d +"} +(33,1,1) = {" +d +t +t +a +s +a +t +t +t +t +I +t +s +t +X +t +X +t +t +t +t +t +t +t +t +t +t +a +t +I +t +a +t +t +t +t +t +t +t +t +t +t +t +q +q +q +q +t +t +t +t +t +t +t +t +q +q +q +q +t +t +t +t +t +t +t +t +t +t +d +"} +(34,1,1) = {" +d +t +t +t +t +t +t +t +t +X +t +t +t +t +t +t +t +t +t +I +t +t +I +t +a +t +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +a +t +t +t +q +q +q +t +t +t +a +t +t +q +q +q +q +q +q +q +a +t +t +t +t +a +t +t +d +"} +(35,1,1) = {" +d +t +t +I +t +I +t +t +i +t +t +t +X +t +t +t +s +t +X +t +t +X +t +t +t +t +t +I +t +t +t +I +t +t +B +t +t +t +t +t +t +t +t +t +i +q +h +q +t +t +t +t +t +t +q +q +q +q +q +q +q +t +t +t +i +t +t +t +t +d +"} +(36,1,1) = {" +d +t +X +t +t +t +t +t +t +t +t +i +t +t +t +t +t +t +t +t +t +t +t +t +I +t +X +t +t +t +X +t +t +t +t +t +I +t +a +t +t +I +t +t +t +q +q +q +q +t +t +I +t +q +q +q +V +q +J +q +q +t +t +t +t +t +I +t +a +d +"} +(37,1,1) = {" +d +t +t +t +N +t +t +t +t +N +a +t +t +t +t +t +t +t +t +t +a +s +t +X +t +t +t +t +t +t +t +t +t +s +t +X +t +t +t +t +t +t +a +s +t +X +t +q +q +q +q +t +t +q +q +J +q +q +q +q +q +t +a +s +t +X +t +t +t +d +"} +(38,1,1) = {" +d +t +t +t +t +I +t +t +i +t +t +t +t +t +t +I +t +t +i +t +t +t +t +t +t +t +t +t +a +t +t +t +a +t +t +X +t +t +t +t +t +s +t +X +t +t +t +t +q +q +q +q +q +q +q +q +L +R +q +q +q +q +t +X +t +t +t +t +I +d +"} +(39,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +t +a +i +t +t +t +i +t +t +t +t +t +t +t +t +t +t +t +I +t +t +s +t +X +t +t +q +q +q +q +q +Z +q +q +q +q +q +q +q +t +t +s +t +X +t +d +"} +(40,1,1) = {" +d +t +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +I +t +t +I +N +t +i +t +t +t +t +t +t +t +t +t +t +t +t +s +t +t +t +i +t +t +I +t +t +t +t +t +t +a +q +q +q +q +q +q +q +q +q +q +t +t +I +t +t +t +t +t +d +"} +(41,1,1) = {" +d +t +t +I +t +a +t +t +I +t +t +t +t +I +t +a +t +t +t +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +a +t +t +t +i +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +q +q +q +q +q +q +q +t +t +t +t +t +t +t +t +d +"} +(42,1,1) = {" +d +t +X +t +t +t +t +t +t +a +s +t +X +t +t +t +t +t +t +X +t +X +t +t +t +t +t +t +t +t +t +t +t +t +t +s +t +X +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +t +q +q +q +q +q +q +q +t +t +t +t +t +N +i +t +d +"} +(43,1,1) = {" +d +t +X +t +t +t +t +t +s +t +X +t +t +t +t +I +t +t +a +t +t +t +t +t +I +t +t +a +t +E +t +a +t +t +I +t +t +t +I +t +t +t +t +t +i +t +t +t +t +t +t +t +t +t +I +t +q +q +q +q +t +t +t +t +i +t +t +t +t +d +"} +(44,1,1) = {" +d +t +t +t +t +t +t +t +t +I +t +t +s +t +X +t +t +t +t +t +t +s +t +X +t +t +t +t +t +t +t +t +t +t +t +X +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +a +t +t +t +X +t +t +t +t +t +t +t +t +t +t +a +t +t +d +"} +(45,1,1) = {" +d +t +t +s +t +t +t +i +t +t +I +t +t +N +t +t +t +t +t +t +t +t +t +t +t +t +t +I +t +t +t +I +t +t +t +t +t +t +t +t +N +t +s +t +t +t +t +t +t +t +N +t +t +t +t +t +t +t +t +t +t +t +s +t +t +t +t +t +t +d +"} +(46,1,1) = {" +d +t +t +t +t +i +t +t +t +t +t +t +t +t +t +t +a +t +t +t +t +t +t +t +t +a +X +t +t +t +X +t +t +t +t +s +t +X +t +t +t +t +t +t +t +t +I +t +a +t +t +I +t +t +t +s +t +X +t +t +t +N +t +t +t +t +I +t +a +d +"} +(47,1,1) = {" +d +t +s +t +X +t +t +t +t +t +t +t +t +t +i +t +t +t +t +t +I +t +t +i +t +t +t +t +t +t +t +t +t +s +a +t +t +t +t +I +t +s +t +X +t +X +t +t +t +t +t +t +a +s +a +t +t +t +t +I +t +s +t +X +t +X +t +t +t +d +"} +(48,1,1) = {" +d +t +t +t +t +I +t +t +t +t +t +i +t +t +t +t +t +a +t +t +t +t +t +t +t +t +t +t +a +t +t +t +a +t +t +t +t +t +X +t +t +t +t +t +t +t +t +t +I +t +t +t +t +t +t +t +t +t +X +t +t +t +t +t +t +t +t +t +I +d +"} +(49,1,1) = {" +d +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 +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 +t +t +t +t +t +t +t +t +d +"} +(50,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 +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/RandomZLevels/research.dmm b/_maps/away/research.dmm similarity index 99% rename from _maps/RandomZLevels/research.dmm rename to _maps/away/research.dmm index 203d3e64680f..380bacce5c60 100644 --- a/_maps/RandomZLevels/research.dmm +++ b/_maps/away/research.dmm @@ -246,19 +246,13 @@ /turf/open/floor/plating, /area/awaymission/research/interior/engineering) "aS" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "aT" = ( /mob/living/simple_animal/hostile/syndicate/melee/sword, /turf/open/floor/plating, /area/awaymission/research/interior/engineering) -"aU" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, -/area/awaymission/research/interior/engineering) "aV" = ( /obj/item/stack/sheet/plasteel, /obj/effect/turf_decal/tile/yellow{ @@ -323,26 +317,14 @@ /obj/item/shard{ icon_state = "small" }, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, -/area/awaymission/research/interior/engineering) -"bc" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, -/area/awaymission/research/interior/engineering) -"bd" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "be" = ( /obj/item/stack/rods, /obj/item/ammo_casing/c45, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "bf" = ( /turf/closed/wall/mineral/plastitanium{ @@ -351,9 +333,8 @@ /area/awaymission/research/interior/engineering) "bg" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "bh" = ( /obj/item/stack/sheet/iron, @@ -461,20 +442,11 @@ }, /turf/open/floor/plasteel/white, /area/awaymission/research/interior/engineering) -"br" = ( -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, -/area/awaymission/research/interior/engineering) "bs" = ( /obj/item/ammo_casing/c45, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "bt" = ( /obj/effect/gibspawner/human, @@ -788,10 +760,10 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/gateway) "cb" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 4; name = "Gateway APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -808,9 +780,8 @@ /obj/effect/mob_spawn/human/syndicatesoldier{ brute_damage = 200 }, -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/engineering) "ch" = ( /obj/machinery/light/small{ @@ -872,9 +843,8 @@ brute_damage = 200 }, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior) "cs" = ( /obj/machinery/door/airlock/engineering{ @@ -920,9 +890,8 @@ /area/awaymission/research/interior/maint) "cA" = ( /obj/item/ammo_casing/c46x30mm, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior) "cB" = ( /obj/item/ammo_casing/c46x30mm, @@ -1049,16 +1018,14 @@ /turf/open/floor/plating, /area/awaymission/research/interior/maint) "cM" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior) "cN" = ( /obj/item/ammo_casing/c9mm, /obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior) "cO" = ( /obj/item/ammo_casing/c46x30mm, @@ -1103,7 +1070,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Genetics APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -1793,8 +1760,8 @@ /turf/open/floor/plating, /area/awaymission/research/interior/maint) "ef" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/maintenance, /obj/structure/closet/crate, /turf/open/floor/plating, /area/awaymission/research/interior/maint) @@ -2040,9 +2007,8 @@ /area/awaymission/research/interior/cryo) "eD" = ( /obj/structure/barricade/security, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/research/interior/cryo) "eE" = ( /obj/structure/reagent_dispensers/fueltank, @@ -2054,7 +2020,7 @@ /area/awaymission/research/interior/maint) "eG" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "eH" = ( @@ -2210,7 +2176,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Cryostatis APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -2399,10 +2365,10 @@ /turf/open/floor/plasteel/dark, /area/awaymission/research/interior/secure) "fy" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 4; name = "Vault APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -3700,14 +3666,14 @@ /area/awaymission/research/interior/genetics) "hX" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "hY" = ( /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/awaymission/research/interior/maint) "hZ" = ( @@ -3993,7 +3959,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Security APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -4708,7 +4674,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Dorms APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -5352,7 +5318,7 @@ /turf/open/floor/wood, /area/awaymission/research/interior/dorm) "lU" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel/yellowsiding{ dir = 4 }, @@ -5361,7 +5327,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Medbay APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -5381,7 +5347,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Escape APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -5439,7 +5405,7 @@ /turf/open/floor/plasteel/white, /area/awaymission/research/interior/escapepods) "mk" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ dir = 8 @@ -5799,7 +5765,7 @@ /area/space/nearstation) "nb" = ( /obj/structure/table/wood, -/obj/item/book/granter/spell/random, +/obj/item/book/granter/action/spell/random, /turf/open/floor/mineral/plasma, /area/space/nearstation) "nc" = ( @@ -43436,7 +43402,7 @@ ap an aJ nf -bc +aS bp bH ar @@ -43693,7 +43659,7 @@ an an an aT -bd +aS bq bI bV @@ -43951,7 +43917,7 @@ an aK au be -br +bb bJ bW cg @@ -44211,7 +44177,7 @@ bf bs bK bX -bd +aS cs cC cP @@ -44463,7 +44429,7 @@ al al al al -aU +aS bg bt bL diff --git a/_maps/away/rospilovo.dmm b/_maps/away/rospilovo.dmm new file mode 100644 index 000000000000..a9ebab152161 --- /dev/null +++ b/_maps/away/rospilovo.dmm @@ -0,0 +1,23273 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/table/reinforced, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"ab" = ( +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"ac" = ( +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"ad" = ( +/obj/structure/rospilovo/painting/gorbachev, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"ae" = ( +/obj/structure/rospilovo/rozetka, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"af" = ( +/obj/structure/rospilovo/okno{ + icon_state = "okno4" + }, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"ag" = ( +/obj/structure/rospilovo/cover, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"ah" = ( +/obj/structure/rospilovo/painting/stalin, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"ai" = ( +/obj/structure/rospilovo/lift, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"aj" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ak" = ( +/obj/structure/rospilovo/televizor/broken, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"al" = ( +/obj/structure/rospilovo/broke_table, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"am" = ( +/obj/structure/rospilovo/broke_table/right, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"an" = ( +/obj/structure/rospilovo/komod, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ao" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ap" = ( +/obj/structure/toilet/greyscale, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"aq" = ( +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"ar" = ( +/obj/item/stack/cable_coil/cut, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"as" = ( +/obj/structure/rospilovo/polka, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"at" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"au" = ( +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"av" = ( +/obj/item/chair/wood, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aw" = ( +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"ax" = ( +/obj/structure/rospilovo/vanna, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"ay" = ( +/obj/structure/chair/wood{ + dir = 1; + icon_state = "wooden_chair" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"az" = ( +/obj/structure/rospilovo/battery{ + dir = 4; + icon_state = "gazovaya_truba" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aA" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aB" = ( +/obj/machinery/shower{ + dir = 1; + icon_state = "shower" + }, +/obj/structure/curtain, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"aC" = ( +/obj/structure/rospilovo/polka{ + dir = 8; + icon_state = "polka" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aD" = ( +/obj/structure/mineral_door/wood{ + color = "#aaaaaa"; + name = "деревянная дверь" + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"aE" = ( +/obj/structure/mineral_door/wood{ + color = "#aaaaaa"; + name = "деревянная дверь" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aF" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"aG" = ( +/obj/structure/rospilovo/painting/lenin, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"aH" = ( +/turf/closed/indestructible/black, +/area/awaymission/rospilovo/deathtrap) +"aI" = ( +/obj/structure/rospilovo/plita, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"aK" = ( +/obj/machinery/door/poddoor/shutters/window/indestructible, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aL" = ( +/obj/structure/rospilovo/shkaf64, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aM" = ( +/obj/machinery/door/poddoor/shutters/window/preopen, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aN" = ( +/obj/structure/rospilovo/doski, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aO" = ( +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aP" = ( +/obj/structure/rospilovo/panel/panel2, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aQ" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -41 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"aR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/pitbull/r40{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/food/cake/birthday{ + pixel_y = 3 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"aT" = ( +/obj/effect/step_trigger/r3b0lut10n, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"aU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/r40{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/r40{ + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/r40{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"aV" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"aW" = ( +/obj/structure/chair/wood, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"aX" = ( +/obj/effect/step_trigger/r3b0lut10n/deathtrap, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"aY" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"aZ" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/plasma, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"ba" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 19; + pixel_x = -6 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 1; + pixel_x = 3 + }, +/obj/structure/rospilovo/shina{ + pixel_x = -1; + pixel_y = 16 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bc" = ( +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"bd" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"be" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"bf" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"bg" = ( +/obj/structure/table/reinforced, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"bh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/r40{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/ammo_box/magazine/r40{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/ammo_box/magazine/r40{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"bi" = ( +/obj/structure/rospilovo/water/luzha, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"bj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"bk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"bl" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/ash/large, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"bm" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo/deathtrap) +"bn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"bo" = ( +/obj/structure/table/reinforced, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"bp" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"bq" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"br" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"bs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"bt" = ( +/obj/item/stack/rods, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"bu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/shutters/prison, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"bv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4; + pixel_x = 3 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"bw" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"bx" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"by" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"bz" = ( +/obj/projectile/magic/wipe, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"bA" = ( +/obj/structure/rospilovo/trubas{ + dir = 6; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bB" = ( +/obj/structure/table_frame, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"bC" = ( +/obj/machinery/door/poddoor/shutters/prison, +/obj/structure/lattice/catwalk, +/turf/open/water, +/area/awaymission/rospilovo) +"bD" = ( +/obj/structure/rospilovo/trubas, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bE" = ( +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/awaymission/rospilovo) +"bF" = ( +/obj/item/stack/rods, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bG" = ( +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"bH" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"bI" = ( +/obj/structure/rospilovo/panel/panel2, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"bJ" = ( +/obj/machinery/button/door{ + id = "rasp_lev_klad"; + name = "Левый блок - Кладовая" + }, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"bK" = ( +/obj/effect/rune/narsie, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"bL" = ( +/obj/structure/deployable_barricade/guardrail, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bM" = ( +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"bN" = ( +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"bO" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"bP" = ( +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"bQ" = ( +/obj/effect/rune/apocalypse, +/obj/effect/mine/pickup/bloodbath, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"bR" = ( +/obj/effect/rune/blood_boil, +/obj/effect/mine/pickup/speed, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"bS" = ( +/turf/closed/wall/rospilovo/beton_agro, +/area/awaymission/rospilovo) +"bT" = ( +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"bU" = ( +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"bV" = ( +/obj/structure/fluff/rospilovo{ + icon_state = "armygruz" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"bW" = ( +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"bX" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"bY" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/awaymission/rospilovo) +"bZ" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ca" = ( +/obj/structure/grille/rospilovo/beton, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cb" = ( +/obj/structure/grille/rospilovo/beton{ + icon_state = "-|" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cc" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cd" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ce" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cf" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"cg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"ch" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ci" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"cj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"ck" = ( +/obj/structure/rospilovo/musor_yashik/green, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"cl" = ( +/obj/structure/rospilovo/okno{ + icon_state = "okno4" + }, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"cm" = ( +/obj/structure/fence/door/opened, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"cn" = ( +/obj/structure/grille/rospilovo/beton, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"co" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cp" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 4; + pixel_y = 7; + layer = 3.01 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -1; + layer = 3.02 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"cq" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cr" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cs" = ( +/obj/structure/deployable_barricade/sandbags{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"ct" = ( +/obj/structure/railing/left{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_6_A_1"; + id_target = "gate_building_6_B_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"cu" = ( +/obj/item/candle/infinite, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"cv" = ( +/obj/effect/rune/manifest, +/obj/effect/mine/pickup/healing, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"cw" = ( +/obj/machinery/gateway/away{ + calibrated = 0 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"cx" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"cy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"cz" = ( +/obj/structure/rospilovo/shina2, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cA" = ( +/obj/structure/rospilovo/shina3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cB" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cC" = ( +/obj/structure/rospilovo/musor_yashik/green/full, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cD" = ( +/obj/structure/rospilovo/musor_yashik/red, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"cE" = ( +/obj/structure/rospilovo/shina2, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cF" = ( +/obj/structure/rospilovo/shina3, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cG" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"cH" = ( +/obj/structure/rospilovo/shitok, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"cI" = ( +/obj/structure/rospilovo/musor_yashik/green, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cJ" = ( +/obj/structure/rospilovo/musor_yashik/green/full, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cK" = ( +/obj/structure/railing/right{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_6_A_3"; + id_target = "gate_building_6_B_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"cL" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"cM" = ( +/obj/structure/rospilovo/stolb, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cN" = ( +/obj/structure/rospilovo/propane/dual, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"cO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cP" = ( +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"cQ" = ( +/obj/structure/rospilovo/trubas{ + dir = 10; + icon_state = "trubas" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cR" = ( +/obj/structure/rospilovo/trubas{ + dir = 8; + icon_state = "trubas" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cS" = ( +/obj/structure/rospilovo/trubas{ + dir = 9; + icon_state = "trubas" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cT" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"cW" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"cX" = ( +/obj/structure/rospilovo/water/bochka/kap, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cY" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"cZ" = ( +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"da" = ( +/obj/structure/rospilovo/water/bochka, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"db" = ( +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"dd" = ( +/obj/structure/rospilovo/stolb, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"de" = ( +/obj/structure/rospilovo/truba, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"df" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"dg" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"dh" = ( +/obj/structure/mineral_door/wood{ + color = "#aaaaaa"; + name = "деревянная дверь" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"di" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"dj" = ( +/obj/structure/deployable_barricade/wooden, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -4 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"dk" = ( +/obj/structure/rospilovo/luk, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dl" = ( +/obj/structure/rospilovo/doski/doski2, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dm" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"do" = ( +/obj/structure/rospilovo/doski/doski3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dp" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_3_B_3"; + id_target = "gate_building_3_A_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"dq" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/ak, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"dr" = ( +/obj/structure/closet/crate/large, +/obj/item/autosurgeon/organ/hud/medical{ + pixel_y = 9 + }, +/obj/item/autosurgeon/organ/hud/medical, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"ds" = ( +/obj/structure/rospilovo/doski, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dt" = ( +/obj/structure/rospilovo/pen, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"dx" = ( +/obj/structure/rospilovo/radiation, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"dz" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dA" = ( +/obj/structure/fence/cut/large{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"dB" = ( +/obj/structure/rospilovo/water/bochka/kap, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dC" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dD" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dE" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"dF" = ( +/obj/structure/rospilovo/water/bochka, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dG" = ( +/obj/structure/rospilovo/shina2, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dI" = ( +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dJ" = ( +/obj/structure/rospilovo/shina3, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dL" = ( +/obj/structure/rospilovo/bochka/red, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dM" = ( +/obj/structure/rospilovo/musor_yashik/green, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"dO" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dP" = ( +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"dQ" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"dR" = ( +/obj/structure/rospilovo/shina, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"dS" = ( +/obj/structure/table_frame, +/obj/effect/turf_decal/weather/dirt, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"dT" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"dX" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"dY" = ( +/obj/item/clothing/shoes/winterboots{ + pixel_x = -17; + pixel_y = -5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ea" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eb" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/item/melee/baseball_bat/ablative, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"ef" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"eg" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"el" = ( +/obj/structure/rospilovo/bochka{ + pixel_x = -16 + }, +/obj/structure/rospilovo/bochka{ + pixel_y = 5; + pixel_x = 3 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"em" = ( +/obj/structure/rospilovo/bochka{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"es" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eE" = ( +/obj/structure/rospilovo/water/bochka/kap{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"eF" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"eG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"eK" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 5 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"eL" = ( +/obj/structure/rospilovo/bochka{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eQ" = ( +/obj/structure/rospilovo/apc/open{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"eR" = ( +/obj/effect/mob_spawn/human/corpse/russian, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 9 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eS" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eU" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/rospilovo/shina, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eV" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_y = -3 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"eY" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"eZ" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5{ + pixel_x = -8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"fb" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"fc" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"fd" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"fe" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"fg" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"fi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"fk" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl1" + }, +/obj/item/gun/ballistic/rifle/boltaction, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"fx" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"fA" = ( +/obj/structure/deployable_barricade/guardrail{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"fE" = ( +/obj/structure/rospilovo/cover{ + pixel_x = 16 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"fI" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor3" + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 18 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"fK" = ( +/obj/effect/decal/cleanable/xenoblood/xgibs, +/obj/effect/decal/cleanable/xenoblood/xgibs/down{ + pixel_x = 11; + pixel_y = -7 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"fL" = ( +/turf/closed/wall/rospilovo/bricks_yellow, +/area/awaymission/rospilovo) +"fO" = ( +/obj/structure/rospilovo/shina3, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"fR" = ( +/obj/item/shield/riot/kevlar{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/shield/riot/kevlar{ + pixel_x = -2 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"fS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"fT" = ( +/obj/structure/barricade/wooden/crude, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"fV" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"fZ" = ( +/obj/structure/fluff/rospilovo, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"gf" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/obj/structure/rospilovo/apc/open2{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"gk" = ( +/obj/effect/mob_spawn/human/corpse/russian/ranged/trooper, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"gl" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"gm" = ( +/obj/structure/rospilovo/musor_yashik/green, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"gt" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 8 + }, +/obj/structure/rospilovo/shina{ + pixel_y = -6; + pixel_x = -15 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"gu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"gx" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"gB" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/pistol/makarov, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"gE" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"gG" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"gJ" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"gP" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"gR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"gT" = ( +/obj/structure/rospilovo/pen, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"gV" = ( +/obj/structure/fence/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"gY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"hc" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"hd" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/awaymission/rospilovo) +"hf" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"hj" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/structure/sign/warning, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"hs" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"hz" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"hA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"hG" = ( +/obj/structure/closet/crate/large, +/obj/item/gun/energy/laser/retro/old, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"hI" = ( +/obj/structure/bed, +/obj/structure/curtain, +/obj/item/bedsheet, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"hQ" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/pistol/nail_gun, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"hW" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/structure/fluff/clockwork/alloy_shards/small{ + pixel_x = -9; + pixel_y = -14 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"hY" = ( +/obj/structure/rospilovo/painting/lenin{ + pixel_y = 30 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ib" = ( +/obj/structure/rospilovo/yashik{ + pixel_y = -7; + pixel_x = 13 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"if" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ig" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/mesh/advanced{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/stack/medical/mesh/advanced{ + pixel_x = -4 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"ii" = ( +/obj/structure/rospilovo/luk/open/ladder, +/obj/effect/bump_teleporter, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"io" = ( +/obj/structure/fence/end{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"ir" = ( +/obj/structure/table/rospilovo, +/obj/item/stock_parts/cell/infinite{ + pixel_y = -3; + pixel_x = 6 + }, +/obj/item/stock_parts/cell/weapon/cell_3000{ + pixel_y = 7 + }, +/obj/item/stock_parts/capacitor/super{ + pixel_x = -9; + pixel_y = -1 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"iv" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_2_B_2"; + id_target = "gate_building_2_A_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"iw" = ( +/obj/structure/rospilovo/radiation, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ix" = ( +/obj/structure/fence/corner{ + dir = 6 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"iy" = ( +/obj/structure/rospilovo/trubas{ + dir = 9 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"iz" = ( +/obj/item/book/granter/crafting_recipe/cookbook, +/turf/closed/indestructible/black, +/area/awaymission/rospilovo) +"iC" = ( +/obj/structure/table/rospilovo, +/obj/item/crowbar{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"iD" = ( +/obj/effect/mob_spawn/human/corpse/russian, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"iF" = ( +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"iH" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_1_A_2"; + id_target = "gate_building_1_B_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"iI" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/shina2{ + pixel_y = 12; + pixel_x = 13 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 14; + pixel_x = -6 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"iK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"iO" = ( +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"iR" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"iT" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + pixel_y = 13 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"iW" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"iY" = ( +/obj/structure/rospilovo/panel, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"jg" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_3_A_2"; + id_target = "gate_building_3_B_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"jh" = ( +/obj/structure/rospilovo/water/bochka/kap{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ji" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/emergency, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"jj" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -1 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"jr" = ( +/obj/structure/table/rospilovo, +/obj/item/duffel_anti_slow, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ju" = ( +/obj/structure/rospilovo/shina2, +/obj/structure/rospilovo/shina{ + pixel_y = 16; + pixel_x = 7 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 15; + pixel_x = 13 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"jv" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 15; + pixel_x = 13 + }, +/obj/structure/rospilovo/shina2, +/obj/structure/rospilovo/shina{ + pixel_y = 16; + pixel_x = 7 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"jx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"jz" = ( +/obj/structure/table/rospilovo, +/obj/item/book/granter/crafting_recipe/cookbook{ + pixel_y = 2; + pixel_x = -4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"jA" = ( +/obj/structure/rospilovo/doski/doski2, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"jB" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/belt/medipenal/field_med{ + pixel_y = 7 + }, +/obj/item/storage/belt/medipenal/field_med, +/obj/item/storage/belt/medipenal/paramed{ + pixel_y = -6 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"jE" = ( +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"jM" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_5_A_3"; + id_target = "gate_building_5_B_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"jO" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"jR" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/mrebag/vegan{ + pixel_y = 13 + }, +/obj/item/storage/mrebag/protein{ + pixel_y = -4 + }, +/obj/item/storage/mrebag{ + pixel_y = 8; + pixel_x = 2; + layer = 3.01 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"jS" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"jU" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"jV" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/rifle/boltaction, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"jW" = ( +/obj/structure/rospilovo/porog{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"jY" = ( +/obj/structure/rospilovo/pen{ + pixel_y = 13; + pixel_x = 10 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"ka" = ( +/obj/machinery/door/poddoor/shutters/window/indestructible{ + id = "rasp_prav_bunker" + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"kd" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -41 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"kk" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"kl" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"km" = ( +/obj/structure/rospilovo/cover{ + pixel_x = 16 + }, +/obj/structure/rospilovo/komod{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"kp" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"kv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"kC" = ( +/obj/structure/rospilovo/luk, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"kD" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_5_B_3"; + id_target = "gate_building_5_A_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"kE" = ( +/obj/item/shard, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"kG" = ( +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"kK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"kM" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4"; + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"kN" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_1_A_3"; + id_target = "gate_building_1_B_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"kP" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/ak{ + pixel_y = -3; + pixel_x = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"kU" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/obj/structure/rospilovo/doski/doski2, +/obj/structure/fluff/clockwork/alloy_shards/large, +/obj/structure/fluff/clockwork/alloy_shards/small{ + pixel_x = -9; + pixel_y = -14 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"kX" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/emergency, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"lj" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 2 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"lk" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 9; + pixel_x = -7 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 9; + pixel_x = 10 + }, +/obj/structure/rospilovo/shina{ + pixel_y = 18; + pixel_x = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ln" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_3_B_1"; + id_target = "gate_building_3_A_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"lr" = ( +/obj/structure/rospilovo/propane/dual, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"lv" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/structure/rospilovo/pen, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"ly" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/pill/salicylic{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/reagent_containers/pill/oxandrolone{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/item/reagent_containers/pill/salicylic{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/pill/salicylic{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/reagent_containers/pill/oxandrolone{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_containers/pill/oxandrolone{ + pixel_x = 13; + pixel_y = 5 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"lB" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"lC" = ( +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/obj/structure/table/rospilovo, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"lF" = ( +/obj/structure/rospilovo/doski, +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit{ + pixel_x = -9; + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"lJ" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/ak47mag{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/ammo_box/magazine/ak47mag, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"lL" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"lM" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/mesh/advanced{ + pixel_x = -4 + }, +/obj/item/stack/medical/mesh/advanced{ + pixel_y = 4; + pixel_x = 5 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"lN" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/rospilovo) +"lQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"lR" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"lS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/prison, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"lV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/prison, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"lY" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"mb" = ( +/obj/structure/rospilovo/shina{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"mf" = ( +/obj/item/shard, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"mj" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/a792x57, +/obj/item/ammo_box/magazine/a792x57, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"mk" = ( +/obj/structure/rospilovo/shitok{ + pixel_y = 32 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"mo" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 10; + pixel_x = 2 + }, +/obj/structure/deployable_barricade/guardrail, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"mp" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"mq" = ( +/obj/structure/rospilovo/shitok{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/rospilovo) +"mr" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"ms" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"mu" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/zinc_762, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"mv" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"mG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/rospilovo/panel/panel2, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"mH" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"mK" = ( +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/armor_plate/ablative, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"mL" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"mM" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 18 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"mN" = ( +/obj/structure/closet/crate/large, +/obj/structure/deployable_barricade/wooden, +/obj/item/grenade/frag{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/grenade/frag{ + pixel_x = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"mP" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + pixel_y = 13 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"mQ" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"mR" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"mV" = ( +/obj/structure/rospilovo/bochka{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -7 + }, +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"mX" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 16; + pixel_x = -5 + }, +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"mY" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_1_B_2"; + id_target = "gate_building_1_A_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"na" = ( +/obj/structure/deployable_barricade/guardrail, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"nf" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_3_B_2"; + id_target = "gate_building_3_A_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"ng" = ( +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"ni" = ( +/obj/machinery/door/poddoor/shutters/prison, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"nk" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"no" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/effect/decal/cleanable/glass, +/obj/structure/rospilovo/doski/doski3{ + pixel_y = 15; + pixel_x = -18 + }, +/obj/structure/fluff/clockwork/alloy_shards/medium, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"nw" = ( +/obj/structure/rospilovo/trubas{ + dir = 10; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"nB" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"nC" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 18; + pixel_x = -7 + }, +/obj/structure/rospilovo/shina3, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"nD" = ( +/obj/structure/table/rospilovo, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"nF" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"nG" = ( +/obj/structure/rospilovo/trubas{ + dir = 10; + icon_state = "trubas" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"nH" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"nM" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/mrebag/dessert{ + pixel_x = 7 + }, +/obj/item/storage/mrebag/dessert{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"nW" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + pixel_y = 18; + pixel_x = 5 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"nY" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"nZ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9; + pixel_y = 10 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"oc" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"od" = ( +/obj/structure/closet/crate/large, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet/alt, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"oe" = ( +/obj/effect/decal/cleanable/xenoblood/xsplatter{ + pixel_y = -12 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs/body, +/obj/effect/decal/cleanable/xenoblood/xgibs/up{ + pixel_y = -19 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs/larva{ + pixel_y = 20; + pixel_x = -2 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"ok" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor3"; + pixel_y = -14; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_y = -25; + pixel_x = -19 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ol" = ( +/obj/effect/mob_spawn/human/corpse/russian, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4"; + pixel_x = 8; + pixel_y = -7 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"on" = ( +/obj/structure/rospilovo/bochka, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"oo" = ( +/obj/structure/table/rospilovo, +/obj/item/radio/headset/radioprison{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ot" = ( +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"ou" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/part_replacer/tier2{ + pixel_y = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"oA" = ( +/obj/structure/fluff/rospilovo/gruzovik, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"oD" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/leather, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"oE" = ( +/obj/structure/table/rospilovo, +/obj/item/healthanalyzer/range, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"oG" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"oH" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/medigel/libital{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/reagent_containers/medigel/aiuri{ + pixel_y = 8; + pixel_x = 1 + }, +/obj/item/reagent_containers/pill/salicylic{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/reagent_containers/pill/oxandrolone{ + pixel_x = 9; + pixel_y = -3 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"oK" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_1_B_1"; + id_target = "gate_building_1_A_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"oQ" = ( +/obj/structure/rospilovo/doski/doski4, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"oS" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/emergency{ + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"oU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"oW" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = 6 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"oX" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"pb" = ( +/obj/structure/rospilovo/trubas{ + dir = 9 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"pe" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"pn" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"pp" = ( +/obj/structure/rospilovo/doski, +/obj/structure/rospilovo/doski/doski4, +/obj/structure/rospilovo/doski/doski2, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"pr" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_5_A_1"; + id_target = "gate_building_5_B_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"pt" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"pu" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"px" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl1" + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"py" = ( +/obj/structure/rospilovo/doski/doski2, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"pA" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"pE" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 9; + pixel_x = -8 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = 7 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"pF" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/silver{ + pixel_y = -4; + pixel_x = -6 + }, +/obj/item/stack/sheet/mineral/metal_hydrogen{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/stack/sheet/mineral/adamantine{ + pixel_y = 2; + pixel_x = 5 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"pG" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/rospilovo/shina3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"pI" = ( +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"pJ" = ( +/obj/structure/railing, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"pM" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"pN" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 13 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 6; + pixel_x = 7 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"pO" = ( +/obj/structure/table_frame, +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"pR" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"pW" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"pX" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/c9mm{ + pixel_y = 17; + pixel_x = 2 + }, +/obj/item/ammo_box/c9mm{ + pixel_y = 5; + pixel_x = -2 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"pZ" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qd" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"ql" = ( +/obj/structure/rospilovo/doski/doski4, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4" + }, +/obj/structure/rospilovo/doski/doski4{ + pixel_y = 21; + pixel_x = -20 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"qm" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 10; + dir = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 10; + pixel_x = -7 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"qt" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"qv" = ( +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 13 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"qy" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"qA" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/musor_yashik/red/full{ + pixel_y = 12; + pixel_x = -1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"qB" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/nails/pve{ + pixel_x = 7 + }, +/obj/item/ammo_box/magazine/nails/pve{ + pixel_x = -4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qF" = ( +/obj/machinery/button/door{ + id = "rasp_prav_karantin"; + name = "Правый блок - Карантин"; + pixel_y = 32 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs/larva{ + pixel_y = 20; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs/down{ + pixel_x = 11; + pixel_y = 17 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"qH" = ( +/obj/structure/closet/radiation, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"qI" = ( +/obj/structure/table/rospilovo, +/obj/item/quikdeploy/cade/plasteel{ + pixel_y = -10; + pixel_x = 6 + }, +/obj/item/radio/headset/radioprison{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/radio/headset/radioprison{ + pixel_y = 14; + pixel_x = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qK" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"qO" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_y = 16; + pixel_x = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"qQ" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "rasp_prav_karantin" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"qR" = ( +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_y = -5; + pixel_x = 5 + }, +/obj/structure/closet/crate/large, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qV" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "rasp_ulgarage" + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"qW" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/mp5, +/obj/item/ammo_box/magazine/mp5{ + pixel_x = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"qY" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"rg" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/a762, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"rh" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"rn" = ( +/obj/item/chair/wood, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"rp" = ( +/obj/structure/rospilovo/trubas{ + dir = 9; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"rv" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "rasp_garage" + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ry" = ( +/obj/structure/rospilovo/doski/doski4, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor3" + }, +/obj/item/crowbar, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"rC" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/armor_plate/ceramic{ + pixel_y = 2; + pixel_x = 12 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"rG" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"rJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"rQ" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "rasp_lev_kor" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"rZ" = ( +/obj/structure/chair/wood, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"sc" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"sf" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"sh" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/fallout/tube357, +/obj/item/ammo_box/fallout/tube357{ + pixel_x = 8 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"sj" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"sm" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"so" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/automatic/mp5, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"sp" = ( +/obj/structure/closet/crate/large, +/obj/item/autosurgeon/organ/syndicate/reviver, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"sq" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + dir = 1; + pixel_x = -5; + pixel_y = 12 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"ss" = ( +/obj/structure/deployable_barricade/wooden, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/structure/rospilovo/water/bochka{ + pixel_x = -16 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = 7 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"sF" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"sG" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"sH" = ( +/obj/structure/rospilovo/doski/doski2, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"sI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table/rospilovo, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"sY" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"sZ" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/melee/baseball_bat/ablative, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"ta" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/structure/rospilovo/water/bochka{ + pixel_y = 3 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"tc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"tf" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/mrebag/protein, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"th" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"tj" = ( +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"tl" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"tn" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"tq" = ( +/obj/structure/rospilovo/vanna, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"tr" = ( +/obj/machinery/button/door{ + id = "rasp_prav_karantin"; + name = "Правый блок - Карантин"; + pixel_x = -32 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"tt" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/emergency/old{ + pixel_y = 3 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"tz" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"tE" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"tH" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"tI" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/decal/cleanable/blood/gibs{ + pixel_x = 9 + }, +/obj/effect/mob_spawn/human/corpse/russian/ranged/officer, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"tK" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"tR" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"tT" = ( +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/obj/structure/table/reinforced, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"tX" = ( +/obj/machinery/door/poddoor/shutters/radiation/indestructible{ + id = "rasp_lev_bunker" + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"tZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"ug" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -5 + }, +/obj/item/storage/toolbox/emergency/old{ + pixel_y = 6; + pixel_x = -5 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"uk" = ( +/obj/structure/rospilovo/doski/doski4, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ul" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"uo" = ( +/obj/structure/ladder/unbreakable, +/obj/effect/bump_teleporter, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"uy" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"uJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"uK" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/rospilovo/shina3{ + pixel_y = 6; + pixel_x = 14 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"uM" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "rasp_lev_klad" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"uP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"uR" = ( +/obj/item/crowbar/large{ + pixel_y = -6 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"uU" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 3; + pixel_x = 9 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"uV" = ( +/obj/structure/rospilovo/pen, +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"uY" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/structure/closet/crate/large, +/obj/item/shield/riot/military{ + pixel_x = -3 + }, +/obj/item/shield/riot/military{ + pixel_x = 4 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"uZ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 10; + dir = 5 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl1"; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 5; + pixel_y = 9; + pixel_x = 7 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"vb" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"vc" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_y = 4; + pixel_x = -2 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"vd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ve" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"vi" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/zinc_762{ + pixel_y = 3 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"vj" = ( +/obj/structure/rospilovo/bochka{ + pixel_x = 13; + pixel_y = 12 + }, +/obj/structure/rospilovo/bochka, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"vk" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 6; + pixel_x = 3 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"vl" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/lenin{ + pixel_y = 30 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"vm" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"vt" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/fishing, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"vy" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"vz" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/obj/item/ammo_box/c9mm{ + pixel_y = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"vE" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"vO" = ( +/obj/structure/fence/cut/large{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"vR" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 3 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"vW" = ( +/obj/structure/fence/post, +/obj/structure/deployable_barricade/sandbags{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"vY" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = -4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"wb" = ( +/obj/structure/table/rospilovo, +/obj/item/duffel_anti_slow{ + pixel_y = 17 + }, +/obj/item/storage/backpack/duffelbag{ + pixel_x = -3 + }, +/obj/item/storage/backpack/duffelbag{ + pixel_y = -9 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"we" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"wm" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"wp" = ( +/obj/effect/decal/cleanable/blood/old{ + pixel_y = -9; + pixel_x = 15 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"wq" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_y = -3 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"wr" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5; + pixel_y = 10 + }, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"wv" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/deployable_barricade/metal, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ww" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"wx" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/armor_plate/plasteel{ + pixel_x = 4 + }, +/obj/item/stack/sheet/armor_plate/ceramic, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"wz" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"wA" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/rospilovo/shina{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/structure/rospilovo/shina3{ + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"wC" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/brute{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/storage/firstaid{ + pixel_y = 3; + pixel_x = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"wI" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_3_A_1"; + id_target = "gate_building_3_B_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"wN" = ( +/obj/structure/fence, +/obj/structure/deployable_barricade/sandbags{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"wQ" = ( +/obj/structure/rospilovo/water/luzha, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"wR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table/rospilovo, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"xa" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor6"; + pixel_y = -20; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + pixel_y = 18; + pixel_x = 5 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"xg" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/deployable_barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"xj" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"xl" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"xm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"xo" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/bochka{ + pixel_x = 7 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -12 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"xp" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"xw" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"xx" = ( +/obj/structure/table/rospilovo, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/wirecutters{ + pixel_x = 9 + }, +/obj/item/multitool{ + pixel_x = -10; + pixel_y = 5 + }, +/obj/item/stack/cable_coil/fifteen{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"xD" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/fallout/tube357{ + pixel_y = 6 + }, +/obj/item/ammo_box/fallout/tube357, +/obj/item/ammo_box/fallout/tube357{ + pixel_y = -6 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"xE" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = -6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"xF" = ( +/obj/structure/fence/post, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"xG" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 4 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"xI" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/c9mm{ + pixel_y = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"xK" = ( +/obj/structure/rospilovo/doski, +/obj/effect/decal/cleanable/glass, +/obj/structure/fluff/clockwork/alloy_shards/medium_gearbit, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"xO" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"xT" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 13; + pixel_x = -5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -1; + layer = 3.02 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 4; + pixel_y = 7; + layer = 3.01 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"xU" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/glass/five, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"xZ" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/item/stack/package_wrap{ + pixel_y = 9 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ya" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"yb" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/structure/table/rospilovo, +/obj/item/stock_parts/manipulator/pico{ + pixel_x = -12; + pixel_y = -2 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"yc" = ( +/obj/structure/rospilovo/komod, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"yh" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 14; + pixel_x = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"yr" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"ys" = ( +/obj/structure/closet/crate/large, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"yu" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"yw" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_6_A_2"; + id_target = "gate_building_6_B_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"yx" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 6 + }, +/obj/item/ammo_box/c9mm{ + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"yy" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"yC" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yG" = ( +/obj/structure/rospilovo/bochka{ + pixel_x = 6 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yK" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yL" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/obj/item/storage/toolbox/mechanical/old/clean{ + pixel_y = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"yM" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 3 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"yN" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"yO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 11; + pixel_x = -8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yP" = ( +/obj/machinery/button/door{ + id = "rasp_lev_kor"; + name = "Левый блок - Коридоры"; + pixel_x = -32 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"yQ" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/c9mm{ + pixel_y = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yT" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/structure/rospilovo/doski/doski2, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"yU" = ( +/obj/structure/chair/stool, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"yW" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"yY" = ( +/obj/structure/rospilovo/trubas{ + dir = 5; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"yZ" = ( +/obj/structure/rospilovo/water/luzha{ + pixel_x = 8; + pixel_y = 19 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"zc" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ze" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"zl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"zm" = ( +/obj/structure/fence/cut/large{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"zo" = ( +/obj/structure/deployable_barricade/wooden, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"zq" = ( +/obj/structure/rospilovo/trubas{ + dir = 10; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"zt" = ( +/obj/structure/deployable_barricade/sandbags{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"zu" = ( +/obj/structure/lattice/catwalk, +/turf/open/water, +/area/awaymission/rospilovo) +"zy" = ( +/obj/item/radio/headset/radioprison{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"zA" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"zJ" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 11 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"zN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 10; + dir = 6 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 6; + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"zS" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/structure/flora/tree/jungle, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"zY" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Ab" = ( +/obj/structure/rospilovo/trubas{ + dir = 6; + icon_state = "trubas" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Af" = ( +/obj/structure/rospilovo/water/bochka/kap{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Ak" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4; + pixel_y = 10 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Aq" = ( +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Ar" = ( +/obj/structure/deployable_barricade/wooden, +/obj/item/target{ + pixel_y = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"As" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Au" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/obj/structure/deployable_barricade/sandbags{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"AB" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/bonfire/prelit, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"AC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"AK" = ( +/obj/structure/rospilovo/oscillograph{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"AL" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 6 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"AM" = ( +/obj/structure/rospilovo/clocks{ + pixel_y = 37 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"AN" = ( +/obj/structure/fence/end{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"AO" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"AS" = ( +/obj/structure/rospilovo/intercom{ + pixel_y = 32 + }, +/obj/item/clothing/shoes/winterboots{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/clothing/shoes/winterboots{ + pixel_x = 10; + pixel_y = -6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"AU" = ( +/obj/machinery/door/poddoor/shutters/assembly, +/obj/structure/table/rospilovo, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"AZ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Ba" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Bf" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Bi" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Bm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Bq" = ( +/obj/structure/holohoop{ + dir = 4; + pixel_x = -4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Br" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/obj/structure/rospilovo/oscillograph{ + pixel_y = 4 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"BA" = ( +/obj/structure/rospilovo/shina{ + pixel_x = -7 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"BC" = ( +/obj/structure/rospilovo/luk, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"BD" = ( +/obj/structure/rospilovo/doski/doski2, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"BF" = ( +/obj/effect/decal/cleanable/blood/gibs/bubblegum, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"BG" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/shina2{ + pixel_y = 12; + pixel_x = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"BO" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"BP" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"BV" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/pill/patch/aiuri{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/item/reagent_containers/pill/patch/aiuri, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"BX" = ( +/obj/structure/rospilovo/doski, +/obj/structure/rospilovo/doski/doski2, +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/splatter{ + pixel_y = 15 + }, +/obj/structure/fluff/clockwork/alloy_shards/medium{ + pixel_x = -15 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"BY" = ( +/obj/structure/fluff/rospilovo{ + icon_state = "armygruz" + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Ce" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Cg" = ( +/obj/effect/bump_teleporter{ + id = "gate_pioner_A"; + id_target = "gate_pioner_B" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ci" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_2_A_3"; + id_target = "gate_building_2_B_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"Ck" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Cy" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"CC" = ( +/obj/structure/rospilovo/intercom{ + pixel_x = -32 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"CG" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"CH" = ( +/obj/structure/rospilovo/shina2, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"CT" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/box/aimbot{ + pixel_y = 6 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"CW" = ( +/obj/effect/decal/cleanable/blood/gibs/core{ + pixel_y = -5; + pixel_x = 10 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Da" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Dc" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Dd" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Dg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Dh" = ( +/obj/structure/fence/post, +/obj/structure/deployable_barricade/sandbags{ + dir = 8 + }, +/obj/structure/deployable_barricade/sandbags{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Di" = ( +/obj/structure/rospilovo/doski/doski2, +/obj/structure/rospilovo/doski/doski3, +/obj/item/gun/ballistic/rifle/boltaction{ + pixel_x = -14; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57{ + pixel_y = -14 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Dj" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"Do" = ( +/obj/structure/rospilovo/shitok{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Dr" = ( +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Ds" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Dt" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 13 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"DA" = ( +/obj/structure/rospilovo/plita, +/obj/item/food/fiesta_corn_skillet{ + pixel_y = 7 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"DB" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_6_B_3"; + id_target = "gate_building_6_A_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"DE" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"DR" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"DS" = ( +/obj/item/gun/ballistic/automatic/pistol/makarov{ + pixel_y = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"DU" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"DX" = ( +/obj/structure/rospilovo/musor_yashik/red, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Ef" = ( +/obj/structure/closet/crate/large, +/obj/item/ammo_box/fallout/tube357{ + pixel_y = 6 + }, +/obj/item/ammo_box/fallout/tube357{ + pixel_y = -6 + }, +/obj/item/ammo_box/fallout/tube357, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Eg" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Ek" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/medigel/sal_acid_oxandrolone{ + pixel_y = 12; + pixel_x = 6 + }, +/obj/item/reagent_containers/hypospray/medipen/super_brute, +/obj/item/reagent_containers/medigel/sal_acid_oxandrolone{ + pixel_y = 13; + pixel_x = -1 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Em" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Ep" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/rospilovo/musor_yashik/green/full{ + pixel_y = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Er" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = -9; + pixel_y = -3 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Es" = ( +/obj/structure/fence, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Ew" = ( +/obj/structure/rospilovo/porog{ + dir = 1; + icon_state = "porog1" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"EE" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/water/bochka, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"EK" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"EM" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/awaymission/rospilovo) +"EO" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 18 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"EP" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ET" = ( +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"EV" = ( +/obj/structure/rospilovo/yashik{ + pixel_y = 1; + pixel_x = -2 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"EX" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Ff" = ( +/obj/structure/rospilovo/shkaf64, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Fj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/prison, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"Fk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Fo" = ( +/obj/structure/fence/door/opened, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Fs" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Fu" = ( +/obj/structure/table/rospilovo, +/obj/item/circuitboard/machine/emitter{ + pixel_y = 9 + }, +/obj/item/circuitboard/machine/rad_collector{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/portable_recharger{ + pixel_y = -1; + pixel_x = -4 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Fv" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 11 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"FD" = ( +/obj/structure/rospilovo/shkaf64, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"FH" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_1_A_1"; + id_target = "gate_building_1_B_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"FJ" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/item/fireaxe, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"FN" = ( +/obj/structure/deployable_barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"FO" = ( +/obj/structure/rospilovo/bar_plitka, +/obj/structure/rospilovo/porog, +/obj/effect/bump_teleporter{ + id = "gate_pioner_B" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"FP" = ( +/obj/structure/rospilovo/musor_yashik/green/full, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"FS" = ( +/obj/structure/chair/wood, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"FT" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4" + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"FU" = ( +/obj/structure/rospilovo/doski, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"FW" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/deployable_barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"FX" = ( +/obj/structure/rospilovo/trubas, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"FZ" = ( +/obj/structure/railing, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Ge" = ( +/obj/structure/rospilovo/musor_yashik/red, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Gg" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l" + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Gj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Gk" = ( +/obj/structure/rospilovo/apc{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Gm" = ( +/obj/structure/rospilovo/water/bochka, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Gr" = ( +/obj/machinery/button/door{ + id = "rasp_prav_oru"; + name = "Правый блок - Оружейная"; + pixel_y = -29 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Gs" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Gu" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Gy" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 15 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"GC" = ( +/obj/structure/rospilovo/doski/doski3, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"GD" = ( +/obj/structure/rospilovo/shkaf64, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"GG" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "rasp_garage" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"GH" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"GI" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"GK" = ( +/obj/machinery/button/door{ + id = "rasp_prav_karantin"; + name = "Правый блок - Карантин"; + pixel_y = -29 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"GL" = ( +/obj/structure/table/rospilovo, +/obj/item/bait_can{ + pixel_y = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"GN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"GP" = ( +/obj/structure/chair/stool, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"GR" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "rasp_garage" + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"GS" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter5" + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + dir = 10; + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"GW" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_6_B_1"; + id_target = "gate_building_6_A_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"GX" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/zinc_762{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"GY" = ( +/obj/structure/sign/warning/testchamber, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"He" = ( +/obj/structure/fence/corner{ + dir = 6 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Hi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Hm" = ( +/obj/structure/closet/crate/large, +/obj/item/katana, +/obj/item/katana{ + pixel_y = -3; + pixel_x = 2 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Hp" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 10 + }, +/obj/structure/deployable_barricade/guardrail, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Hq" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_3_A_3"; + id_target = "gate_building_3_B_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"Ht" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 5 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Hv" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"HA" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = 5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"HB" = ( +/obj/structure/shipping_container/gorlex, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"HG" = ( +/obj/structure/rospilovo/truba, +/turf/open/floor/plasteel/dark, +/area/awaymission/rospilovo) +"HI" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + pixel_y = 13 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"HM" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/water, +/area/awaymission/rospilovo) +"HN" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 10 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"HS" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/bone_gel{ + pixel_y = 3; + pixel_x = 8; + layer = 3.01 + }, +/obj/item/reagent_containers/hypospray/medipen/blood_boost{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"HT" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"HW" = ( +/obj/structure/table/rospilovo, +/obj/structure/bedsheetbin, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"HX" = ( +/obj/structure/rospilovo/water/luzha, +/obj/structure/rospilovo/water/bochka/kap{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Ig" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_5_B_2"; + id_target = "gate_building_5_A_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"Ih" = ( +/obj/machinery/button/door{ + id = "rasp_garage"; + name = "Гараж"; + pixel_x = 32 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Ii" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/regular{ + pixel_y = 5 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Im" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/energy/e_gun/nuclear{ + cell_type = /obj/item/stock_parts/cell/weapon/cell_3000; + name = "экспериментальное лазерное оружие"; + ammo_type = list(/obj/item/ammo_casing/energy/laser/hellfire,/obj/item/ammo_casing/energy/disabler) + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Ip" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/mineral/uranium/five{ + pixel_x = -5 + }, +/obj/item/stock_parts/cell/lead{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Iy" = ( +/obj/structure/fluff/paper/stack, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"IA" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"IB" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"IK" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor2" + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"IM" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"IN" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/ak47mag{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/item/ammo_box/magazine/ak47mag, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"IR" = ( +/obj/structure/table/rospilovo, +/obj/item/gun/ballistic/shotgun/fallout/cowboy, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"IS" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"IT" = ( +/obj/structure/rospilovo/bochka{ + pixel_x = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"IV" = ( +/obj/structure/rospilovo/doski/doski3, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Ja" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Jd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 18; + pixel_x = -7 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 1; + pixel_x = -3 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Jf" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter5" + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Ji" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + dir = 5; + pixel_y = -12; + pixel_x = -5 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"Jo" = ( +/obj/structure/rospilovo/shina2{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/rospilovo/shina{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Jp" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Jv" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Jw" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/rospilovo) +"Jy" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Jz" = ( +/obj/structure/table/rospilovo, +/obj/item/autosurgeon/organ/nutriment/plus, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"JE" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"JH" = ( +/obj/structure/chair/stool, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"JI" = ( +/obj/structure/rospilovo/musor_yashik/red, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"JJ" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"JK" = ( +/obj/structure/deployable_barricade/metal{ + dir = 8 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"JL" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"JO" = ( +/obj/machinery/door/veryblastdoor, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"JT" = ( +/obj/structure/table/rospilovo, +/obj/item/food/waffles{ + pixel_y = 3 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"JU" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = -20 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"JX" = ( +/obj/structure/rospilovo/shina{ + pixel_y = 9; + pixel_x = -6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"JY" = ( +/obj/structure/holohoop{ + dir = 8; + pixel_x = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Ka" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/rospilovo/shina3{ + pixel_y = 14; + pixel_x = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -7 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = 12 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Kb" = ( +/obj/structure/deployable_barricade/wooden, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Kd" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 3 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Kg" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/structure/rospilovo/water/bochka{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Ki" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/lenin{ + pixel_y = 30 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"KC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4; + pixel_y = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"KD" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/c9mm{ + pixel_y = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"KF" = ( +/obj/structure/rospilovo/trubas{ + dir = 8; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"KI" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"KK" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"KN" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/closed/wall/rospilovo/bricks_white, +/area/awaymission/rospilovo) +"KO" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "trails_2"; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"KQ" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/firstaid/fire{ + pixel_y = 4 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = -4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"KS" = ( +/obj/structure/rospilovo/shina{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/structure/rospilovo/shina, +/obj/structure/rospilovo/shina2{ + pixel_y = 14; + pixel_x = -14 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"KU" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"KZ" = ( +/obj/structure/deployable_barricade/sandbags{ + dir = 1 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Lh" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Ll" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_6_B_2"; + id_target = "gate_building_6_A_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"Lo" = ( +/obj/structure/rospilovo/shina2{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/rospilovo/shina{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/structure/rospilovo/doski{ + pixel_x = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Lt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/water, +/area/awaymission/rospilovo) +"Lv" = ( +/obj/structure/rospilovo/musor_yashik/red/full, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Lx" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 1 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"LB" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/oscillograph{ + pixel_y = 4 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"LD" = ( +/obj/item/candle/infinite, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"LE" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"LH" = ( +/obj/structure/rospilovo/musor_yashik/red, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"LK" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"LO" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/deployable_barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"LP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/light_puzzle{ + puzzle_id = "hilbert" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"LU" = ( +/obj/structure/closet/crate/large, +/obj/item/defibrillator/loaded, +/obj/item/defibrillator/compact/loaded, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"LV" = ( +/obj/structure/table/rospilovo, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"LW" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 18; + pixel_x = -7 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 15; + pixel_x = 13 + }, +/obj/structure/rospilovo/shina3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"LX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/water, +/area/awaymission/rospilovo) +"Ma" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_2_B_3"; + id_target = "gate_building_2_A_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"Md" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Me" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Mh" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/box/skillchips/engineering{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/storage/box/flare{ + layer = 3.01; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ml" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/iron/ten, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Mn" = ( +/obj/structure/shipping_container/gorlex, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Mu" = ( +/obj/structure/girder, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"Mw" = ( +/obj/structure/table/rospilovo, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Mx" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 9 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Mz" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/structure/curtain, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"MC" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/oscillograph{ + pixel_y = 4 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ME" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 11 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = -6; + pixel_x = 12 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"MF" = ( +/obj/effect/turf_decal/siding/wideplating, +/obj/structure/table/rospilovo, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"MG" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = -6 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"MH" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"MM" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"MN" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/belt/utility/full/engi, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"MP" = ( +/obj/structure/rospilovo/trubas{ + dir = 9; + icon_state = "trubas" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"MQ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + pixel_y = 18; + pixel_x = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"MU" = ( +/obj/structure/rospilovo/doski, +/obj/structure/rospilovo/doski/doski2, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"MV" = ( +/obj/structure/table/rospilovo, +/obj/item/stock_parts/micro_laser/ultra{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/stock_parts/scanning_module/phasic{ + pixel_x = 4 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"MY" = ( +/obj/structure/rospilovo/cover, +/obj/effect/bump_teleporter{ + id = "gate_start_A"; + id_target = "gate_start_B" + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ne" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Nn" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"No" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Nq" = ( +/obj/structure/table/rospilovo, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Nu" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Nx" = ( +/obj/structure/fence/door, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"NC" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = 6 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -13; + pixel_y = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"NE" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 2; + pixel_y = -5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"NF" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"NG" = ( +/obj/structure/rospilovo/trubas, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"NH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"NI" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"NM" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"NN" = ( +/obj/structure/rospilovo/bar_plitka, +/obj/structure/rospilovo/porog{ + dir = 8 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"NP" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"NR" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"NV" = ( +/obj/structure/barbed_wire, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"NW" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/rospilovo/shitok/shitok2, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"NY" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Oa" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/firstaid/regular{ + pixel_y = 2; + pixel_x = 3 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Ol" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Oo" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/obj/item/crowbar/large, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Or" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Ow" = ( +/obj/structure/table/rospilovo, +/obj/item/cable_coil_box{ + pixel_y = -6; + pixel_x = -4 + }, +/obj/item/cable_coil_box{ + pixel_y = -6; + pixel_x = 2 + }, +/obj/item/cable_coil_box{ + pixel_y = -6; + pixel_x = 9 + }, +/obj/item/stack/cable_coil/cut{ + pixel_y = 7 + }, +/obj/item/wirecutters{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ox" = ( +/obj/item/target, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Oy" = ( +/obj/machinery/button/door{ + id = "rasp_ulgarage"; + name = "Уличный гараж"; + pixel_x = -32 + }, +/obj/structure/rospilovo/doski/doski2, +/obj/structure/rospilovo/doski/doski3, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"OB" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical/old/clean, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"OD" = ( +/obj/structure/rospilovo/musor_yashik/green/full, +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"OI" = ( +/obj/structure/chair/wood{ + dir = 4; + icon_state = "wooden_chair" + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"OQ" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"OV" = ( +/obj/machinery/button/door{ + id = "rasp_prav_bunker"; + name = "Правый блок - Вход в бункер"; + pixel_y = -29 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"OX" = ( +/obj/structure/rospilovo/doski, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Pb" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_2_A_1"; + id_target = "gate_building_2_B_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"Pc" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Pd" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Pg" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_1_B_3"; + id_target = "gate_building_1_A_3" + }, +/turf/open/floor/plasteel/stairs/right, +/area/awaymission/rospilovo) +"Pi" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Pp" = ( +/obj/structure/deployable_barricade/sandbags{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Pw" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_5_B_1"; + id_target = "gate_building_5_A_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"PC" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/structure/deployable_barricade/wooden{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"PE" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/penacid{ + pixel_y = 9; + pixel_x = 7 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"PG" = ( +/obj/structure/closet/crate/large, +/obj/item/autosurgeon/organ/biomonitor, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"PI" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"PJ" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/fallout/tube357, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"PT" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_y = 10; + pixel_x = 6 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -6 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"PU" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"PW" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 17 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = 11; + pixel_y = -6 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"PX" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Qb" = ( +/obj/structure/table/rospilovo, +/obj/item/kitchen/knife/combat{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 6; + pixel_x = 8; + layer = 3.01 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Qj" = ( +/obj/effect/turf_decal/siding/white, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor6"; + pixel_y = -20; + pixel_x = 5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Qq" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Qt" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Qw" = ( +/obj/structure/rospilovo/bar_plitka, +/obj/structure/rospilovo/porog{ + dir = 4 + }, +/obj/effect/bump_teleporter{ + id = "gate_start_B" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Qy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"QC" = ( +/obj/structure/rospilovo/komod{ + pixel_x = -5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"QD" = ( +/turf/open/water, +/area/awaymission/rospilovo) +"QE" = ( +/obj/structure/table/rospilovo, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"QG" = ( +/obj/machinery/door/poddoor/shutters/prison, +/turf/open/water, +/area/awaymission/rospilovo) +"QI" = ( +/obj/structure/rospilovo/yashik/yaskik_a, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"QR" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"QT" = ( +/obj/structure/deployable_barricade/plasteel, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"QU" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"QV" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = 5; + pixel_y = -6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"QZ" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Rb" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Rh" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Rj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Rk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Rp" = ( +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"Rs" = ( +/obj/structure/rospilovo/shina{ + pixel_x = -19 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Ry" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"RA" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"RG" = ( +/obj/machinery/button/door{ + id = "rasp_prav_karantin"; + name = "Правый блок - Карантин"; + pixel_x = -32 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"RH" = ( +/obj/item/ammo_box/magazine/a792x57, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"RK" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_5_A_2"; + id_target = "gate_building_5_B_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"RN" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"RO" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 6 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = -13 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"RR" = ( +/obj/item/storage/firstaid/ancient, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"RV" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"RZ" = ( +/obj/structure/fence/post, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Sc" = ( +/obj/structure/rospilovo/water/bochka/kap, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Se" = ( +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"Sl" = ( +/obj/machinery/autolathe/soviet, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Sr" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Sy" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl1" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Sz" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/bump_teleporter{ + id = "gate_building_2_B_1"; + id_target = "gate_building_2_A_1" + }, +/turf/open/floor/plasteel/stairs/left, +/area/awaymission/rospilovo) +"SE" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"SG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"SI" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"SO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 3 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"SU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"SX" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = -6 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"SY" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = -6; + pixel_y = -5 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"SZ" = ( +/obj/structure/rospilovo/yashik, +/obj/item/reagent_containers/medigel/libital{ + pixel_y = 12; + pixel_x = -6 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Tc" = ( +/obj/structure/rospilovo/intercom{ + pixel_y = 32 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Te" = ( +/obj/machinery/gateway/away{ + calibrated = 0 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Tj" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Tk" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/pill/patch/libital{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/patch/lenturi, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Tm" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gib1"; + pixel_y = 22 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"Tn" = ( +/obj/item/candle/infinite, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_y = -25; + pixel_x = -19 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"To" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Tt" = ( +/obj/structure/rospilovo/pen{ + pixel_y = -4; + pixel_x = 6 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"TD" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"TH" = ( +/obj/effect/decal/cleanable/blood/old{ + pixel_y = 13; + pixel_x = 13 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"TJ" = ( +/obj/structure/fence, +/obj/structure/deployable_barricade/sandbags{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"TK" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/sheet/armor_plate/plasteel, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"TO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/water, +/area/awaymission/rospilovo) +"TR" = ( +/obj/machinery/button/door{ + id = "rasp_prav_karantin"; + name = "Правый блок - Карантин"; + pixel_x = 32 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"TT" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_4_A"; + id_target = "gate_building_4_B" + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"TV" = ( +/obj/structure/toilet/greyscale{ + pixel_y = 11 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"TW" = ( +/obj/structure/deployable_barricade/wooden, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Ua" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Uf" = ( +/obj/effect/bump_teleporter{ + id = "gate_building_2_A_2"; + id_target = "gate_building_2_B_2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/awaymission/rospilovo) +"Ug" = ( +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Uh" = ( +/obj/structure/rospilovo/bar_plitka, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Ui" = ( +/obj/structure/rospilovo/musor_yashik/red, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Uk" = ( +/obj/item/chainsaw/circular, +/obj/structure/table/rospilovo, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ul" = ( +/obj/structure/fence/corner{ + dir = 5 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Um" = ( +/obj/machinery/button/door{ + id = "rasp_lev_bunker"; + name = "Левый блок - Вход в бункер"; + pixel_y = 35 + }, +/obj/structure/chair/stool, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Un" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Uo" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"UF" = ( +/obj/structure/rospilovo/doski/doski2, +/obj/structure/rospilovo/doski/doski3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"UN" = ( +/obj/effect/turf_decal/siding/white, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"UR" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter5"; + pixel_y = 13 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"US" = ( +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"UU" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4; + pixel_y = 10 + }, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"UX" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/firstaid/fire{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/storage/firstaid/fire{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Vc" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Vd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/rospilovo/shina3{ + pixel_y = 15 + }, +/obj/structure/rospilovo/water/bochka{ + pixel_x = 6 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -13 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Vh" = ( +/obj/structure/rospilovo/luk/open/ladder, +/obj/effect/bump_teleporter{ + id = "gate_sewer_1_A"; + id_target = "gate_sewer_1_B" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Vi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"Vj" = ( +/obj/structure/ladder/unbreakable, +/obj/effect/bump_teleporter{ + id = "gate_sewer_1_B"; + id_target = "gate_sewer_1_A" + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"VB" = ( +/obj/structure/rospilovo/porog, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"VI" = ( +/obj/structure/rospilovo/trubas{ + dir = 5; + icon_state = "trubas" + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"VK" = ( +/obj/structure/rospilovo/trubas{ + dir = 6; + icon_state = "trubas" + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"VQ" = ( +/obj/structure/sign/poster/official/build, +/turf/closed/wall/rospilovo/bricks, +/area/awaymission/rospilovo) +"VT" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/c9mm{ + pixel_y = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Wd" = ( +/obj/structure/rospilovo/shina2{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/structure/rospilovo/shina{ + pixel_y = 8 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Wi" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter5" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Wk" = ( +/obj/structure/closet/crate/large, +/obj/item/gun/ballistic/rifle/boltaction, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Wl" = ( +/obj/structure/rospilovo/shina{ + pixel_y = 12; + pixel_x = -1 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -6 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 4; + pixel_x = 12 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Wo" = ( +/obj/structure/rospilovo/yashik{ + pixel_x = 13 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ws" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/rospilovo/beton_agro, +/area/awaymission/rospilovo) +"Wt" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gib4"; + pixel_x = 9 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"WI" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l" + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"WN" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 11; + pixel_x = -5 + }, +/obj/structure/rospilovo/shina3{ + pixel_y = -4 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"WQ" = ( +/obj/structure/rospilovo/luk/open/ladder, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"WR" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"WT" = ( +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"WU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"WV" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor2"; + pixel_x = -11 + }, +/obj/effect/mob_spawn/human/corpse/russian, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"WW" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"WX" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_x = 1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"WY" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Xd" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/rospilovo/bochka, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Xh" = ( +/obj/effect/rune/narsie, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"Xi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Xw" = ( +/obj/structure/fence, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Xy" = ( +/obj/structure/rospilovo/shina2{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/rospilovo/shina{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"XB" = ( +/obj/effect/bump_teleporter{ + id_target = "gate_building_4_A"; + id = "gate_building_4_B" + }, +/turf/open/floor/vault, +/area/awaymission/rospilovo) +"XF" = ( +/obj/structure/rospilovo/shina{ + pixel_x = 3 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"XH" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"XJ" = ( +/obj/structure/table/rospilovo, +/obj/item/binoculars{ + layer = 3.03; + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/storage/box/barbed_wire{ + pixel_y = 1; + pixel_x = 6 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"XO" = ( +/obj/structure/deployable_barricade/wooden, +/obj/structure/rospilovo/shina2{ + pixel_y = 12; + pixel_x = 8 + }, +/obj/structure/rospilovo/shina2{ + pixel_y = 9; + pixel_x = -11 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"XP" = ( +/obj/structure/rospilovo/yashik, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"XR" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"XU" = ( +/obj/structure/deployable_barricade/wooden{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"XX" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"XZ" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Ya" = ( +/obj/structure/rospilovo/shina3{ + pixel_y = 10 + }, +/obj/structure/rospilovo/shina2{ + pixel_x = -6 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Yb" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/ammo_box/magazine/a792x57, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Yf" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/structure/flora/tree/jungle, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Yi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/water, +/area/awaymission/rospilovo) +"Ym" = ( +/obj/structure/closet/crate/large, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet/alt, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"Yn" = ( +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Yq" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp{ + pixel_y = 11; + pixel_x = -15 + }, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"Yr" = ( +/obj/structure/table/rospilovo, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/item/ammo_box/magazine/m9mm{ + pixel_y = 4; + pixel_x = -3 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Ys" = ( +/obj/item/candle/infinite, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"Yt" = ( +/obj/item/storage/firstaid/advanced, +/obj/structure/closet/crate/large, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"Yw" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big{ + pixel_y = -3 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Yx" = ( +/obj/structure/table/rospilovo, +/obj/item/toy/cards/deck{ + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -12; + pixel_y = 11; + layer = 3.01 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"Yy" = ( +/obj/machinery/door/poddoor/shutters/window/indestructible, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"YB" = ( +/obj/structure/rospilovo/panel, +/turf/open/floor/rospilovo/plitka, +/area/awaymission/rospilovo) +"YC" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/structure/rospilovo/bochka{ + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"YD" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/medical/suture/medicated{ + pixel_y = 9; + pixel_x = -3 + }, +/obj/item/stack/medical/suture/medicated{ + pixel_x = 4 + }, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"YH" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/obj/structure/rospilovo/doski/doski3, +/obj/structure/rospilovo/doski/doski4, +/obj/structure/fluff/clockwork/alloy_shards/large, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"YJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/dz/green, +/area/awaymission/rospilovo) +"YK" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_y = 3 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"YL" = ( +/obj/structure/table/rospilovo, +/obj/structure/rospilovo/radio{ + pixel_y = 10 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"YN" = ( +/obj/effect/mob_spawn/human/corpse/russian, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2" + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"YO" = ( +/obj/structure/deployable_barricade/metal, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"YV" = ( +/obj/structure/flora/tree/jungle, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"YW" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 30 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"YY" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/rospilovo/plitka/full, +/area/awaymission/rospilovo) +"Zc" = ( +/obj/structure/rospilovo/doski/doski4, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "u_guilty_l"; + pixel_y = 18 + }, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Zg" = ( +/obj/structure/sink/directional/south, +/turf/open/floor/rospilovo/plitka/old, +/area/awaymission/rospilovo) +"Zj" = ( +/obj/structure/rospilovo/water/luzha, +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Zk" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"Zn" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl1" + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"Zq" = ( +/obj/structure/rospilovo/radiation{ + pixel_y = 12; + pixel_x = 10 + }, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Zu" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/structure/rospilovo/doski, +/obj/item/storage/firstaid/regular, +/turf/open/floor/grass/rospilovo, +/area/awaymission/rospilovo) +"Zw" = ( +/obj/structure/rospilovo/yashik/yaskik_a{ + pixel_x = -1 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"Zz" = ( +/obj/structure/rospilovo/yashik/yaskik_a/big, +/turf/open/floor/stone, +/area/awaymission/rospilovo) +"ZC" = ( +/obj/structure/table/rospilovo, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 10; + pixel_x = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 15; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_y = 7; + pixel_x = -9; + layer = 3.01 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ZE" = ( +/obj/structure/rospilovo/shina2{ + pixel_y = 18; + pixel_x = -7 + }, +/obj/structure/rospilovo/shina3, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ZF" = ( +/obj/structure/barricade/wooden/crude, +/obj/structure/barricade/wooden, +/turf/open/floor/rospilovo, +/area/awaymission/rospilovo) +"ZH" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 10 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ZI" = ( +/obj/structure/rospilovo/bochka/red{ + pixel_x = 14; + pixel_y = 10 + }, +/obj/structure/rospilovo/bochka/red, +/turf/open/floor/plating/asteroid/dirty, +/area/awaymission/rospilovo) +"ZJ" = ( +/obj/structure/rospilovo/okno{ + icon_state = "okno4" + }, +/turf/closed/wall/rospilovo/bricks_yellow, +/area/awaymission/rospilovo) +"ZM" = ( +/obj/structure/rospilovo/trubas, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ZP" = ( +/obj/structure/table/rospilovo, +/obj/item/multitool{ + pixel_x = -10; + pixel_y = 5 + }, +/turf/open/floor/rospilovo/wood, +/area/awaymission/rospilovo) +"ZQ" = ( +/obj/structure/deployable_barricade/metal{ + dir = 4 + }, +/turf/open/floor/trot, +/area/awaymission/rospilovo) +"ZR" = ( +/obj/structure/rospilovo/lift, +/turf/closed/wall/rospilovo/beton_agro, +/area/awaymission/rospilovo) +"ZW" = ( +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "gibbl4"; + pixel_x = 8; + pixel_y = -7 + }, +/obj/effect/mob_spawn/human/corpse/russian/ranged/officer, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "floor2"; + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/gateway/away{ + calibrated = 0 + }, +/turf/open/floor/rospilovo/plitka{ + icon_state = "plita4" + }, +/area/awaymission/rospilovo) +"ZY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) +"ZZ" = ( +/obj/structure/closet/crate/large, +/obj/item/grenade/frag{ + pixel_y = 4; + pixel_x = -2 + }, +/obj/item/grenade/frag{ + pixel_x = 4 + }, +/turf/open/floor/resin, +/area/awaymission/rospilovo) + +(1,1,1) = {" +dQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +QG +QG +QG +ac +ac +ab +ab +ab +ab +ac +ac +QG +QG +QG +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +"} +(2,1,1) = {" +ab +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +qt +bM +ce +bM +pu +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +ab +ab +aT +bz +bm +aH +iz +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +Un +Lt +QD +Dg +cP +ac +lN +lN +lN +ac +ac +cP +Lt +QD +Dg +WU +ac +xm +ZY +gu +ac +ab +ab +US +US +US +US +ab +ac +zl +ZY +bh +ac +"} +(3,1,1) = {" +ab +bN +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cO +bW +bW +bW +bW +bW +bW +bW +if +Ya +bN +ab +ab +aX +ab +aH +aH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +hA +bu +fi +Lt +QD +Dg +cP +ac +aR +bB +lN +pO +ac +cP +Lt +QD +Dg +ci +bu +ch +uo +Em +ac +ab +ab +US +ab +ab +US +US +hA +ch +ET +aS +ac +"} +(4,1,1) = {" +ab +bN +bG +bG +fV +gG +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +BP +cP +qt +bM +ce +bM +pu +cP +bG +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +bG +bG +YV +bG +cO +bW +bW +HB +gJ +bW +bW +bW +Rs +bN +ab +ab +ac +ac +af +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +SU +Lt +QD +Dg +cP +dX +dS +bw +xl +iK +dX +cP +Lt +QD +Dg +eG +ac +Bm +NH +Ja +ac +ab +ab +US +US +ab +ab +ab +ac +Bm +NH +aU +ac +"} +(5,1,1) = {" +ab +bN +bG +bG +bG +XR +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +XR +cP +qt +bM +ce +bM +pu +cP +YV +cP +bN +bN +cl +bN +cl +bN +bN +bN +cl +bN +bN +bN +cl +bN +cl +bN +bN +cP +bG +bG +bG +bG +jS +bW +bW +bW +vj +bW +bW +bW +bW +bN +ab +ab +ad +ak +au +az +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +aF +Gs +XZ +bq +kE +bw +dX +cP +Lt +QD +Dg +cP +ac +ac +ac +ac +ac +ab +ab +ab +US +ab +ab +ab +ac +ac +ac +ac +ac +"} +(6,1,1) = {" +ab +bN +bG +bG +bG +Dd +YV +dP +dP +dP +dP +dP +dP +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +bG +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ff +aw +aw +aw +aw +bN +MG +UX +LU +bN +oH +wp +aw +aw +PE +bN +cP +bG +bG +bG +jS +bW +bW +bW +bW +Hv +bW +bW +GI +bW +bN +ab +ab +ae +al +au +au +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +dX +NY +aj +be +bd +dX +cP +Lt +QD +Dg +cP +ac +ab +ab +ab +ab +ab +ab +US +US +ab +ab +ab +ab +ab +ab +ab +ab +"} +(7,1,1) = {" +ab +bN +bG +bG +bG +Gu +bG +dP +Jv +sY +OQ +bM +bM +ng +fL +fL +fL +fL +ZJ +fL +fL +fL +ng +bG +XR +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ff +aw +OI +CT +aw +bN +bf +aw +aw +bN +hI +aw +aw +aw +hI +cl +cP +bG +fV +DR +bW +bW +bW +bW +bW +WX +bW +bW +bW +bW +bN +ab +ab +af +am +av +aA +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +dX +lN +br +ET +ar +dX +cP +Lt +QD +Dg +cP +ac +ab +ab +ab +ab +ab +ab +cy +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(8,1,1) = {" +ab +bN +bG +bG +bG +Dd +bG +dP +bM +bM +bM +bM +bM +Nq +fL +jj +so +qW +au +VT +pX +fL +ng +bG +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Br +oE +LV +GH +aw +bN +EV +aw +aw +bN +aw +aw +ly +aw +TH +bN +cP +bG +bG +DR +bW +bW +bW +bW +bW +bW +RN +cO +bW +bW +bN +ab +ab +ag +an +au +au +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +lN +lN +br +aO +ac +cP +Lt +QD +Dg +cP +ac +ac +ac +ac +ac +ac +ac +lV +ac +ac +ac +ac +ac +lV +ac +ac +ac +"} +(9,1,1) = {" +ab +bN +bG +fV +bG +XR +bG +dP +bM +eR +UR +bM +bM +Nq +fL +wm +au +au +au +au +au +fL +ng +bG +Dc +dd +qt +bM +ce +bM +pu +cP +bG +cP +bN +aw +aw +aw +aw +aw +bN +dr +aw +aw +bN +aw +aw +Ht +aw +aw +bN +cP +bG +bG +DR +bW +bW +bW +bW +bW +RN +fV +bG +cO +bW +bN +ab +ab +ac +ao +au +au +aC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +ac +tj +tj +ac +ac +cP +Lt +QD +Dg +cP +cP +cP +cP +cP +ac +cP +eG +uJ +SU +cP +ac +cP +eG +uJ +SU +cP +ac +"} +(10,1,1) = {" +ab +bN +bG +bG +fb +io +fb +dP +bM +bM +bM +bM +bM +Nq +fL +lY +au +au +au +au +au +ZJ +ng +dt +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +cl +ya +aw +rn +aw +aw +bN +jB +aw +aw +bN +Mz +aw +aw +aw +hI +cl +cP +bG +bG +bG +cO +bW +bW +bW +RN +bG +bG +bG +bG +cO +bN +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +nk +ET +ET +dP +ac +Un +Lt +QD +jx +bv +zu +LX +lQ +lQ +bC +lQ +lQ +lQ +lQ +lQ +bC +lQ +lQ +lQ +lQ +lQ +QG +"} +(11,1,1) = {" +ab +bN +bG +jS +bW +ng +bW +dP +bM +bM +bM +bM +bM +Ef +fL +od +au +au +au +au +Wo +fL +ng +bG +zm +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ek +aw +aw +aw +HS +bN +Lx +aw +Ck +bN +YD +aw +aw +aw +lM +bN +cP +bG +bG +bG +bG +fg +fg +fg +bG +bG +bG +bG +YV +bG +bN +ab +ab +ah +ap +aw +aw +aD +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +nk +ET +ET +ET +tj +fi +Lt +QD +QD +Dg +zu +Lt +QD +QD +QG +QD +QD +QD +QD +QD +QG +QD +QD +QD +QD +QD +QG +"} +(12,1,1) = {" +ab +bN +jS +bW +bW +ng +bW +dP +bM +bM +bM +bV +bM +ng +fL +yM +gB +pN +au +au +hc +fL +ng +bG +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +bN +bN +dh +bN +bN +bN +bN +dh +bN +bN +bN +bN +dh +bN +bN +bN +cP +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +ab +ac +aq +ax +aB +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +nk +ET +ET +dP +ac +SU +Lt +QD +bs +fS +zu +tc +GN +GN +bC +GN +GN +GN +GN +GN +bC +GN +GN +GN +GN +GN +QG +"} +(13,1,1) = {" +ab +bN +bW +bW +bW +ng +bW +dP +bM +bM +bM +bM +bM +ng +fL +fL +fL +fL +dh +fL +fL +fL +ng +bG +XR +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +BV +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Tk +bN +cP +bG +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +bG +bN +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +ac +aM +aM +ac +ac +cP +Lt +QD +Dg +cP +cP +cP +cP +cP +ac +cP +cP +cP +cP +cP +ac +cP +bF +aF +mf +cP +ac +"} +(14,1,1) = {" +ab +bN +bW +bW +bW +ng +bW +dP +vR +YK +bM +bM +bM +ng +fL +aL +au +oS +au +au +at +ZJ +ng +bG +Dd +cP +mv +WR +ce +WR +NP +cP +bG +cP +bN +FS +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Oa +bN +cP +cP +dM +ac +ac +af +ac +ac +ac +af +ac +ac +cP +bG +bN +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +ab +ac +ET +ET +ac +ac +cP +Lt +QD +Dg +cP +ac +FD +ET +ET +nk +ac +cP +Lt +QD +Dg +cP +ac +dX +dX +ac +ac +ac +dX +dX +dX +ac +ac +ac +dX +Gs +dX +ac +ac +"} +(15,1,1) = {" +ab +bN +bW +bW +bW +AN +fg +dP +OQ +Wk +bM +bM +bM +ng +dh +au +au +QE +au +au +au +fL +ng +ng +XR +cP +qt +bM +ce +bM +pu +cP +fV +cP +bN +rZ +aw +aw +aw +aw +bN +bN +bN +bN +dh +bN +bN +bN +bN +bN +bN +bM +bM +cD +ac +jr +wb +qB +ac +TV +aw +ji +ac +cP +bG +bN +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +US +bD +ET +ET +bA +ac +Un +Lt +QD +Dg +cP +dX +nk +ET +ET +dP +dX +cP +Lt +QD +Dg +cP +dX +bg +bg +bg +ac +bg +dP +dP +dP +bg +ac +aZ +bx +aY +dP +bl +ac +"} +(16,1,1) = {" +ab +bN +bW +bW +bW +XR +fV +dP +vY +bM +bM +bM +bM +ng +fL +AM +lR +at +au +au +au +dh +Ew +dP +Nx +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +FS +aw +aw +aw +YD +bN +cP +cP +bM +jW +bM +cP +cP +Af +cP +bM +bM +bM +bM +ac +au +au +hQ +ac +Zg +aw +aw +ac +cP +bG +bN +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +bD +ET +ET +ET +bu +fi +Lt +QD +Dg +cP +dX +dP +ET +ET +dP +dX +cP +Lt +QD +Dg +cP +dX +bg +ET +ET +aK +ET +ET +ET +ET +ET +aK +ET +ET +bc +bt +lN +lN +"} +(17,1,1) = {" +ab +bN +bW +bW +bW +Dd +fb +dP +Er +yQ +mp +sY +bM +ng +ZJ +au +au +au +au +au +au +fL +ng +ng +hj +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ki +aw +aw +aw +ig +bN +cP +bM +bM +bM +bM +bM +cP +cP +cP +bM +bM +bM +VB +dh +au +au +au +ac +ac +dh +ac +ac +cP +bG +bN +ab +ab +ac +as +au +az +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +bD +ET +ET +ET +bu +fi +Lt +QD +Dg +cP +dX +dP +ET +ET +dP +dX +cP +Lt +QD +Dg +cP +ac +bo +ET +ET +aK +ET +ET +ET +ET +ET +aK +ET +bE +ET +ET +bq +lN +"} +(18,1,1) = {" +ab +bN +bW +bW +bW +Fo +bW +ng +ng +ng +ng +ng +ng +ng +fL +YW +zA +au +au +au +at +ZJ +ng +bG +Dd +cP +qy +vb +ce +vb +Tj +cP +bG +cP +bN +GH +aw +aw +aw +GH +bN +cP +cD +cC +cB +bM +bM +cP +cP +cP +bM +bM +bM +yG +ac +au +au +au +Uk +ac +au +au +ac +cP +bG +bN +ab +ab +ae +at +au +au +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +SU +Lt +QD +Dg +cP +dX +bg +ET +ET +bg +dX +cP +Lt +QD +Dg +cP +ac +dP +ET +ET +ac +ET +WU +kK +Un +ET +ac +ET +WW +uP +bb +sc +ac +"} +(19,1,1) = {" +ab +bN +bW +bW +bW +XR +fg +Lv +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +dh +fL +fL +fL +ng +bG +XR +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +bN +bN +dh +bN +bN +bN +cP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +as +au +au +au +ac +au +au +af +cP +bG +bN +ab +ab +af +at +ay +aA +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +bo +bg +bg +bg +ac +cP +Lt +QD +Dg +cP +ac +dP +ET +ET +ac +ac +ac +aJ +ac +ac +ac +ac +ac +aJ +ac +ac +ac +"} +(20,1,1) = {" +ab +bN +bW +bW +bW +Dd +bG +Ui +fL +bW +bW +bW +bW +Ar +bW +bW +sh +au +au +au +VT +fL +ng +bG +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ff +aw +aw +aw +GH +bN +cP +ac +Zw +dP +dP +Xd +dP +dP +dP +dP +dP +au +xE +ac +as +au +au +au +aE +au +au +ac +rp +bG +bN +ab +ab +ag +an +au +au +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +ac +dX +dX +ac +ac +cP +Lt +QD +Dg +cP +dX +dP +ET +WU +ac +ab +ab +gY +ab +ab +ab +ab +ab +gY +ab +ab +ab +"} +(21,1,1) = {" +ab +bN +bW +bW +bW +Gu +bG +ng +fL +Ar +bW +bW +bW +bW +Ox +bW +nk +au +au +au +so +ZJ +ng +bG +XR +dd +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ff +aw +aw +aw +aw +bN +cP +ac +ug +dP +dP +dP +dP +dP +dP +dP +dP +au +au +dh +au +au +au +au +ac +au +au +ac +yY +bG +bN +ab +ab +ac +ao +au +au +aC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +Dg +cP +ac +cP +cP +cP +cP +cP +cP +Lt +QD +Dg +cP +dX +dP +ET +ci +bu +kv +US +US +US +hA +Yy +kv +US +US +US +US +ab +"} +(22,1,1) = {" +ab +bN +bW +bW +bW +Dd +bG +ng +fL +bW +bW +bW +Ox +bW +bW +bW +IR +au +au +au +eZ +fL +ng +bG +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +Ii +aw +GH +aw +aw +bN +cP +ac +ve +dP +vd +Gj +Gj +Gj +Gj +tz +dP +au +au +ac +aL +au +au +au +ac +au +au +af +Ge +bG +bN +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +jx +lQ +bC +lQ +lQ +bv +zu +LX +lQ +by +QD +Dg +cP +ac +aP +ET +eG +ac +ab +ab +US +ab +ab +ab +ab +ab +ab +ab +US +ab +"} +(23,1,1) = {" +ab +bN +bW +bW +bW +Dc +bG +ng +fL +bW +bW +Ar +bW +bW +bW +bW +nk +au +au +au +au +ZJ +ng +bG +Dc +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +aw +FS +GH +aw +aw +bN +cP +ac +ve +dP +qt +bM +bM +oA +bM +pu +dP +au +vt +ac +ac +xZ +TK +ac +aG +au +au +ac +iy +bG +bN +ab +ab +ac +ap +aw +aw +aD +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +Lt +QD +QD +QD +QG +QD +QD +Dg +zu +Lt +QD +QD +QD +Dg +cP +ac +ac +ac +ac +ac +ab +ab +US +US +US +US +US +US +ab +ab +US +ab +"} +(24,1,1) = {" +ab +bN +bW +bW +bW +NR +bG +ng +fL +bW +bW +bW +bW +bW +Ox +bW +PJ +au +au +au +mj +fL +ng +bG +NR +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +aw +aw +Mw +aw +aw +bN +cP +ac +ve +dP +qt +bM +bM +bM +bM +pu +dP +au +GL +ac +an +au +au +au +au +au +au +ac +yY +bG +bN +ab +ab +ac +aq +aw +aB +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +tc +GN +GN +GN +bC +GN +GN +fS +zu +tc +GN +GN +GN +fS +cP +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +ab +US +US +ab +"} +(25,1,1) = {" +ab +bN +bW +bW +bW +Dc +YV +ng +fL +bW +bW +bW +bW +Ar +bW +bW +th +au +au +au +jV +ZJ +ng +bG +Dc +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +GH +GH +GH +aw +aw +bN +cP +ac +ve +dP +Rk +dO +dO +Jy +bM +pu +dP +au +au +ac +au +au +au +au +au +au +au +af +mH +bG +bN +ab +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cP +WU +kK +Un +cP +ac +cP +cP +WU +kK +Un +cP +cP +cP +cP +cP +ac +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +US +ab +US +ab +ab +"} +(26,1,1) = {" +ab +bN +bW +bW +bW +Cy +bG +ng +fL +mN +bW +bW +bW +bW +bW +bW +dP +au +au +au +vi +fL +ng +bG +Cy +cP +qt +bM +ce +bM +pu +cP +fV +cP +bN +aw +aw +aw +aw +aw +bN +cP +ac +mk +dP +dP +dP +dP +qt +bM +pu +dP +au +au +dh +au +au +au +au +au +au +xU +ac +iy +bG +bN +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +aJ +ac +ac +ac +ac +ac +ac +aJ +ac +ac +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +xm +ZY +gu +ac +ab +US +ab +US +ab +ab +"} +(27,1,1) = {" +ab +bN +bW +bW +bW +zm +bG +ng +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +fL +ng +bG +Gu +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +yc +aw +aw +aw +aw +bN +cP +ac +Kd +tf +jR +nM +dP +qt +bM +pu +Ih +au +au +ac +au +au +au +au +oD +lR +Ml +ac +yY +bG +bN +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gY +ab +ab +ab +ab +ab +ab +gY +ab +ab +ab +ab +ab +ab +ab +ab +ac +xm +ZY +gu +ac +ch +uo +Em +bk +kv +US +ab +US +ab +ab +"} +(28,1,1) = {" +ab +bN +bW +bW +bW +Dd +bG +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +YV +Dd +cP +qt +bM +ce +bM +pu +cP +bG +cP +bN +bN +IS +dh +bN +bN +bN +cP +ac +ac +af +ac +af +ac +GR +GG +rv +ac +af +ac +ac +VQ +dh +ac +af +ac +af +ac +ac +cP +bG +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +Xi +eS +PU +eS +kp +bN +ab +US +US +US +US +US +ab +ab +US +US +US +US +ab +ab +ab +US +hA +bn +ch +uo +Em +AC +Bm +NH +Ja +ac +ab +ab +ab +US +ab +ab +"} +(29,1,1) = {" +ab +bN +bW +bW +bW +XR +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +XR +cP +qt +bM +ce +bM +pu +cP +bG +cP +cP +cP +cP +NN +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +qt +bM +pu +cP +cP +cP +cP +cP +NN +cP +cP +cP +cP +cP +cP +cP +bG +dg +Ry +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +NF +yr +iO +PX +ZF +HT +ZF +UN +bN +ab +ab +ab +ab +ab +US +ab +ab +ab +ab +ab +US +ab +ab +ab +US +ab +ac +Bm +NH +Ja +ac +ac +ac +ac +ac +ab +ab +ab +US +US +ab +"} +(30,1,1) = {" +ab +bN +bW +bW +bW +Ul +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +RZ +Es +He +cP +qt +bM +ce +bM +pu +cP +bG +bG +YV +bG +cP +cP +cP +bG +bG +bG +bG +bG +bG +bG +YV +cP +qt +bM +pu +cP +bG +fV +bG +cP +cP +cP +bG +bG +bG +bG +YV +bG +bG +oX +kl +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +Aq +NF +Yn +Xi +co +PU +co +kp +bN +ab +ab +lS +kv +US +US +US +US +ab +ab +ab +US +ab +ab +ab +US +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +US +ab +"} +(31,1,1) = {" +ab +bN +dz +cP +cP +cP +cP +cP +cP +dz +cP +cP +zo +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +zo +cP +cP +qt +bM +ce +bM +pu +cP +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +cP +cP +cP +qt +bM +pu +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +cP +qd +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +qd +dz +Yn +dz +es +cB +cq +cC +hs +bN +ab +ab +ab +ab +ab +ab +ab +cy +ab +ab +ab +cy +ab +ab +ab +cy +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ab +ab +US +ab +"} +(32,1,1) = {" +ab +EP +we +we +Gj +Gj +we +Gj +Gj +vm +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +LO +Gj +Gj +uy +bM +bM +bM +zY +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +uy +bM +zY +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +qY +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +qY +we +EP +we +Gj +uy +bM +bM +bM +pu +bN +ab +ac +ac +ac +ac +ac +ac +lV +ac +ac +ac +lV +ac +ac +ac +lV +ac +ac +ac +ac +ac +ac +ab +ac +zl +ZY +sI +ac +ab +ab +US +ab +"} +(33,1,1) = {" +ab +eS +ZF +fA +na +bM +cr +na +bM +co +bM +bM +FN +bM +bM +na +bM +bM +bM +FN +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 +Ol +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +Ol +co +eS +co +eS +co +rC +bM +bM +JL +pu +bN +ab +ac +cP +cP +cP +cP +eG +uJ +SU +cP +LP +uJ +SU +cP +eG +uJ +SU +cP +cP +cP +cP +ac +ab +ac +wR +ET +Em +bk +kv +US +US +ab +"} +(34,1,1) = {" +ab +mQ +tH +LE +cd +cd +LE +cd +cd +cd +cd +cd +FW +cd +cd +cd +cd +cd +cd +FW +cd +cd +cd +cd +cd +cd +bM +bM +bM +bM +bM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +PC +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +PC +mQ +LE +mQ +LE +mQ +lL +zy +GS +bM +pu +bN +ab +ac +cP +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +cP +ac +ab +ac +mG +NH +yt +ac +ab +US +ab +ab +"} +(35,1,1) = {" +ab +eS +ZF +fA +na +bM +cr +na +bM +co +bM +bM +FN +bM +bM +na +bM +bM +bM +FN +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 +Ol +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +Ol +co +eS +co +eS +co +eL +gk +ju +bM +pu +bN +ab +ac +cP +zu +zu +zu +Pd +Rj +Rj +KU +zu +zu +zu +Pd +Rj +Rj +KU +zu +zu +zu +cP +ac +ab +ac +ac +ac +ac +ac +ab +US +ab +ab +"} +(36,1,1) = {" +ab +Zk +ea +ea +dO +dO +ea +dO +dO +gR +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +xg +dO +dO +Jy +bM +bM +bM +kG +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Jy +bM +kG +dO +dO +dO +dO +dO +dO +dO +dO +sj +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +sj +ea +fT +ea +Jd +Xy +ZE +zJ +bM +pu +bN +ab +ac +cP +zu +zu +zu +cg +QD +QD +TO +zu +zu +zu +cg +QD +QD +TO +zu +zu +zu +cP +ac +ab +ab +ab +ab +ab +ab +ab +US +ab +ab +"} +(37,1,1) = {" +ab +bN +dz +cP +cP +cP +cP +cP +dd +dz +cP +cP +zo +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +zo +cP +cP +qt +bM +ce +bM +pu +dd +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +nW +qt +bM +pu +nZ +SI +BO +Zn +HI +cP +cP +cP +qd +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +qd +dz +dz +dd +qt +bM +ce +bM +pu +bN +ab +ac +Un +zu +Pd +Rj +oU +QD +QD +TO +zu +zu +zu +cg +QD +QD +fx +Rj +KU +zu +WU +ac +ab +ab +ab +US +US +US +US +US +ab +ab +"} +(38,1,1) = {" +ab +bN +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +bN +KN +bN +bN +bN +bN +dz +qt +co +cq +co +pu +dz +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +ol +qt +bM +pu +HN +ac +ac +ac +ac +ac +ac +ac +ac +bG +bG +bG +jS +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +lS +fi +zu +cg +QD +QD +QD +QD +TO +zu +zu +zu +cg +QD +QD +QD +QD +TO +zu +ci +lS +kv +US +ab +US +ab +ab +ab +ab +ab +ab +"} +(39,1,1) = {" +ab +bS +ac +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +bU +ac +RR +qt +bM +bM +bM +ca +iO +PX +eS +PU +eS +UN +iO +bN +wq +hG +nH +YB +Fu +bN +Tc +cP +cP +cP +cP +cP +cP +cP +pJ +NW +ET +ET +FX +bN +Sy +qt +bM +Qj +Ak +ac +ac +QG +QG +QG +QG +ac +ac +bG +YV +DR +bW +bW +bW +bG +fV +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +fV +bG +cP +qt +vb +Sr +bM +pu +bN +ab +ac +SU +zu +cg +QD +QD +QD +QD +TO +zu +zu +zu +cg +QD +QD +QD +QD +TO +zu +eG +ac +ab +US +US +US +ab +ab +ab +ab +ab +ab +"} +(40,1,1) = {" +ab +bS +QG +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +lQ +Fk +bU +ac +bU +qt +bM +bM +bM +ca +Yn +Xi +ZF +HT +ZF +kp +Yn +bN +GD +bT +bT +bT +pF +dX +cP +bI +cP +iY +cP +bI +cP +iY +pJ +SX +ET +ET +FX +bN +cP +qt +bM +FJ +WV +ac +WQ +Lt +QD +QD +Dg +BC +ac +bG +bG +jS +bW +bW +bW +bW +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +ef +XU +bM +ce +vb +PI +bN +ab +ac +cP +zu +cL +Yi +Yi +Yi +Yi +nF +zu +zu +zu +cL +Yi +Yi +Yi +Yi +nF +zu +cP +ac +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +"} +(41,1,1) = {" +ab +bS +QG +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +iO +PX +eS +PU +eS +UN +iO +bN +GD +bT +ir +JH +xx +dX +cP +iY +cP +bI +cP +iY +cP +bI +cP +ms +ET +ET +FX +bN +cP +qt +bM +ok +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +bG +DR +YL +bW +bW +bW +bW +Lh +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +dz +es +co +cq +co +hs +bN +ab +ac +Un +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +WU +ac +ab +US +US +US +ab +ac +xm +ZY +gu +ac +"} +(42,1,1) = {" +ab +bS +QG +GN +GN +GN +GN +GN +GN +GN +GN +GN +GN +GN +Ua +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +dz +qt +co +cq +co +pu +dz +bN +tT +bT +Im +bT +LB +dX +cP +bI +cP +iY +cP +bI +cP +iY +cP +ms +ET +ET +FX +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +fV +jS +Yb +bW +bW +bW +bW +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +NF +iO +PX +ZF +HT +ZF +UN +bN +ab +lS +fi +zu +zu +zu +zu +zu +zu +zu +zu +ZW +zu +zu +zu +zu +zu +zu +zu +zu +ci +lS +kv +US +ab +US +hA +bn +ch +uo +Em +ac +"} +(43,1,1) = {" +ab +bS +ac +NM +NM +NM +NM +NM +NM +NM +NM +NM +NM +bU +Lt +QD +Dg +bU +ac +cN +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +Yq +Um +MV +JH +Ip +dX +cP +iY +cP +bI +cP +iY +cP +bI +pJ +PW +ET +ET +FX +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +DR +on +bW +bW +bW +bW +bW +bW +bW +uV +bG +bG +bG +YV +bG +bG +bG +bG +bG +jO +dz +es +co +cq +co +hs +bN +ab +ac +SU +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +eG +ac +ab +ab +ab +ab +ab +ac +Bm +NH +Ja +ac +"} +(44,1,1) = {" +ab +bS +ac +lN +lN +lN +bW +bW +xl +bW +bW +lN +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +zY +Gj +uy +bM +ce +bM +pu +cP +bN +AK +bT +bT +bT +yb +bN +Tc +cP +cP +cP +cP +cP +cP +cP +pJ +Ba +ET +ET +FX +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +cH +DR +NC +bW +bW +bW +bW +bW +bW +JJ +bW +bW +bG +bG +bG +bG +bG +bG +bG +YV +bG +mV +rh +yT +Ep +mX +pA +bN +ab +ac +cP +zu +Pd +Rj +Rj +Rj +Rj +KU +zu +zu +zu +Pd +Rj +Rj +Rj +Rj +KU +zu +cP +ac +ab +US +US +US +ab +ac +ac +ac +ac +ac +"} +(45,1,1) = {" +ab +bS +bS +bS +bS +bS +bS +dX +Gs +dX +bS +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +bM +bM +bM +bM +ce +bM +pu +cP +bN +bN +bN +dh +KK +bN +bN +bN +bN +dh +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +DR +Ym +bW +bW +bW +GI +bW +bW +JJ +bW +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +jA +qt +bM +AB +bM +oQ +bN +ab +ac +Un +zu +cg +QD +QD +QD +QD +TO +zu +zu +zu +cg +QD +QD +QD +QD +TO +zu +WU +ac +ab +US +ab +US +ab +ab +ab +ab +ab +ab +"} +(46,1,1) = {" +ab +bS +ET +ET +ET +bS +nB +dP +XZ +dP +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +dl +bM +kG +dO +Jy +bM +ce +bM +pu +cP +bN +GD +bT +bT +bT +bT +ww +bT +bT +bT +ww +jE +yP +rQ +yP +bT +bT +dP +at +at +bN +cP +qt +bM +pu +cP +ac +cP +tc +GN +GN +fS +cP +ac +DR +mL +sf +bW +bW +bW +bW +bW +JJ +bW +bW +bW +Lh +bG +Tt +fb +fb +bG +bG +bG +cP +qt +vb +Sr +vb +pu +bN +ab +lS +fi +zu +cg +QD +QD +QD +QD +TO +zu +zu +zu +cg +QD +QD +QD +QD +TO +zu +ci +lS +kv +US +ab +US +US +US +US +US +US +ab +"} +(47,1,1) = {" +ab +bS +ET +ET +ET +bS +bT +bT +bT +bT +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qy +vb +vb +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +Ne +bT +bT +bT +bT +QT +bT +bT +bT +QT +jE +bT +rQ +bT +bT +bT +dP +au +at +bN +cP +qt +bM +pu +cP +ac +cP +zu +zu +zu +zu +cP +ac +bG +vy +yx +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +Lh +jS +bW +bW +Lh +bG +bG +dd +qt +bM +ce +bM +pu +bN +ab +ac +SU +zu +cL +Yi +QU +QD +QD +TO +zu +zu +zu +cg +QD +QD +HM +Yi +nF +zu +eG +ac +ab +US +ab +ab +ab +US +ab +ab +US +ab +"} +(48,1,1) = {" +ab +bS +ET +ET +ET +dh +bT +bT +bT +bT +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qy +vb +ce +vb +Tj +cP +bN +GD +bT +bT +bT +bT +ww +bT +bT +bT +ww +jE +bT +rQ +bT +bT +bT +dP +au +at +bN +cP +mv +WR +NP +cP +ac +cP +LX +lQ +lQ +Fk +cP +ac +bG +DR +XP +bW +bW +oo +JJ +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +Lh +bG +cP +XU +vb +ce +vb +PI +bN +ab +ac +cP +zu +zu +zu +cg +QD +QD +TO +zu +zu +zu +cg +QD +QD +TO +zu +zu +zu +cP +ac +ab +ab +ab +ab +ab +US +ab +ab +US +ab +"} +(49,1,1) = {" +ab +bS +ET +ET +ET +bS +bT +bT +bT +bT +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bN +bN +dh +GY +bN +bN +bN +bN +dh +bN +bN +bN +bN +bT +bT +bT +ZQ +ZQ +bN +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +bG +bG +cO +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +Lh +cP +Lo +LW +ce +ME +Wl +bN +ab +ac +cP +zu +zu +zu +cL +Yi +Yi +nF +zu +zu +zu +cL +Yi +Yi +nF +zu +zu +zu +cP +ac +ab +ab +US +US +US +US +ab +ab +US +ab +"} +(50,1,1) = {" +ab +bS +ET +ET +ET +bS +SG +bT +bT +bT +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +dd +bN +aL +au +au +MN +ou +bN +OB +cP +cP +cP +cP +cP +bN +QR +bT +bT +bT +bT +Sz +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +bG +bG +jS +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +JJ +bW +bW +bW +bW +bW +bW +cP +qt +bM +ce +bM +pu +bN +ab +ac +BF +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +zu +cP +ac +ab +ab +US +ab +ab +ab +ab +ab +US +ab +"} +(51,1,1) = {" +ab +bS +bS +bS +bS +bS +bS +bS +dh +bS +bS +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +cB +ca +cP +qt +bM +ce +bM +pu +cP +bN +Yw +au +au +GP +Ow +bN +rJ +tZ +tZ +tZ +To +cP +bN +qH +bT +bT +bT +bT +iv +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +bG +DR +iC +bW +bW +bW +bW +bW +bW +bW +GI +bW +bW +JJ +bW +bW +bW +bW +bW +RN +cP +qt +bM +ce +bM +pu +bN +ab +ac +eK +cP +cP +cP +WU +kK +Un +FT +WU +MQ +Un +cP +WU +kK +Un +cP +cP +cP +cP +ac +ab +ab +US +US +US +US +ab +US +US +ab +"} +(52,1,1) = {" +ab +bS +dP +dP +dP +bS +dP +dP +dP +dP +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +cA +cC +ca +cP +qt +bM +ce +bM +pu +cP +bN +yy +au +au +au +ZP +bN +zc +zc +zc +ZH +DU +cP +bN +Ne +Ne +bT +bT +bT +Ma +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +bG +jS +pn +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +JJ +bW +bW +bW +bW +RN +bG +cP +qt +bM +ce +bM +pu +bN +ab +ac +ac +ac +ac +ac +ac +lV +ac +ac +ac +KC +ac +ac +ac +lV +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +cy +ab +cy +ab +ab +"} +(53,1,1) = {" +ab +bS +Se +Se +Se +bS +Se +Se +Se +Se +dP +dX +bW +YY +Lt +QD +Dg +bU +ac +bU +CH +bM +bM +cD +ca +cP +qt +bM +ce +bM +pu +cP +bN +Mh +qI +XJ +au +Sl +bN +EX +yU +ET +pI +cP +cP +bN +bN +bJ +uM +uM +uM +bN +bN +cP +qt +bM +pu +cP +ac +cP +Lt +QD +QD +Dg +cP +ac +de +bW +bW +bW +bW +bW +RN +cO +bW +bW +bW +bW +bW +bW +bW +bW +RN +fg +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +ab +ab +ab +ab +ab +ab +gY +ab +ab +ab +pe +ab +ab +ab +gY +ab +ab +ab +ab +ab +ab +ab +US +US +US +ab +lV +ab +lV +ab +ab +"} +(54,1,1) = {" +ab +ZR +XB +Se +Se +dh +Se +Se +Se +Se +dP +dX +bW +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +cD +ca +dd +qt +bM +ce +bM +pu +cP +bN +mK +GP +au +au +au +bN +ET +ET +ET +pI +cP +cP +ZM +bN +ZZ +ET +ET +ET +bH +bN +cP +qt +bM +pu +cP +ac +BC +Lt +QD +QD +Dg +WQ +ac +gx +bW +bW +bW +bW +RN +dt +bG +cO +bW +bW +bW +bW +bW +bW +RN +dt +bG +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +ac +ac +ac +ac +ac +ab +US +US +US +ab +UU +ab +US +US +US +ab +US +US +US +US +US +US +US +ab +cy +ab +gY +ab +gY +ab +ab +"} +(55,1,1) = {" +ab +bS +Se +Se +Se +bS +Se +Se +Se +Se +dP +dX +bW +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +cD +ca +dB +qt +bM +ce +bM +pu +cP +bN +pW +au +au +au +lr +bN +Rp +ET +oc +MF +DU +cP +ZM +bN +eV +xD +Pi +Pi +eF +bN +cP +qt +bM +pu +cP +ac +ac +QG +QG +QG +QG +ac +ac +gm +bW +bW +bW +RN +bG +bG +bG +DR +HX +bW +bW +bW +bW +bW +SE +bG +bG +YV +bG +cP +qt +dl +ce +bM +pu +bN +ab +ac +xm +ZY +gu +ac +ab +ab +ab +US +ab +xG +ab +US +ab +ab +ab +US +ab +ab +ab +ab +ab +ab +ab +lV +ab +US +Mu +US +hA +Fj +"} +(56,1,1) = {" +ab +bS +dP +dP +dP +bS +dP +Se +Se +Se +dP +dX +Gm +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +pu +cP +ac +ac +ac +ac +ac +ac +ac +cH +bG +cO +bW +RN +bG +bG +bG +bG +YV +cO +bW +NE +KD +bW +RN +bG +bG +bG +bG +bG +cP +qt +dk +ce +bM +pu +bN +ab +ac +ch +Vj +gl +YJ +bj +qm +ab +ab +ab +UU +ab +US +ab +US +US +US +ab +ab +ab +ab +ab +ab +ab +gY +ab +US +ab +ab +ab +ab +"} +(57,1,1) = {" +ab +bS +bS +bS +bS +bS +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +dk +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +cF +bG +bG +DR +bW +bW +WT +Or +oG +Or +oG +oG +Or +eE +cP +qt +bM +pu +cP +Or +oG +oG +dj +mu +bG +cI +cJ +bG +bG +fg +bG +bG +bG +bG +bG +bG +bG +cO +mL +vc +RN +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +ac +Bm +NH +Ja +ac +ab +uZ +cj +cj +RA +zN +ab +US +US +US +ab +US +ab +ab +ab +fK +oe +ni +qG +US +US +US +hA +Fj +ab +ab +"} +(58,1,1) = {" +ab +bS +ET +ET +ET +bS +Ws +JO +JO +JO +Ws +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +dC +qt +bM +ce +bM +pu +dF +cP +dI +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dz +Yn +dz +iO +Yn +dz +dd +cP +qt +bM +pu +cP +oG +rG +oG +ss +bG +YV +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +fg +fg +bG +bG +bG +bG +fV +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +US +US +US +US +cf +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(59,1,1) = {" +ab +bS +ET +ET +ET +bS +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +zY +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Uo +we +Uo +we +Uo +we +Gj +Gj +uy +bM +zY +Gj +co +eS +co +eg +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +bN +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(60,1,1) = {" +ab +bS +ET +ET +ET +dh +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +co +eS +co +eS +co +bM +bM +WR +WR +WR +WR +bM +bM +co +eS +xo +bW +SE +bG +bG +bG +bG +bG +bG +bG +dt +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +ab +"} +(61,1,1) = {" +ab +bS +ET +ET +ET +bS +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +bM +cd +cd +cd +cd +cd +cd +cd +cc +cc +cc +cd +cd +cd +cd +cd +eS +ZF +eS +ZF +eS +do +bM +bM +bM +dk +bM +bM +bM +eS +co +kk +bW +Lh +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cP +IV +bM +ce +bM +pu +cP +bG +bG +bG +fb +fb +fb +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(62,1,1) = {" +ab +bS +bS +bS +bS +bS +LD +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +dC +uk +bM +ce +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +co +eS +co +eS +co +OQ +bM +bM +bM +bM +cZ +bM +bM +co +eS +di +bW +bW +SE +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cE +bG +YV +bG +jS +cP +wQ +bM +ce +bM +pu +dd +bG +cF +jS +NC +bW +xT +Lh +bG +fV +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +fV +bG +bN +ab +"} +(63,1,1) = {" +ab +bS +ab +pr +mr +Se +Se +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +Zj +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +Hi +ea +Hi +ea +Hi +ea +ze +dO +Jy +bM +kG +dO +co +eS +co +RO +bW +bW +Yf +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +fb +jS +bW +cP +qt +bM +ce +bM +pu +cP +bG +jS +bW +bW +Da +bW +bW +Lh +fb +fb +jY +bG +bG +bG +bG +bG +No +bG +bG +YV +bG +mR +bG +bG +bG +bG +bG +YN +DS +bG +bN +ab +"} +(64,1,1) = {" +ab +bS +ab +RK +Se +Se +Se +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +vb +vb +bM +ca +cP +qt +bM +ce +bM +pu +cP +cP +dJ +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dz +Yn +dz +iO +Yn +dz +dd +cP +qt +bM +pu +cP +oG +rG +oG +EE +bW +bW +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +jS +bW +bW +BY +cP +qt +bM +ce +bM +pu +cP +jS +bW +bW +bW +bW +bW +bW +KD +bW +bW +Lh +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +No +bG +qv +bG +bN +ab +"} +(65,1,1) = {" +ab +bS +ab +jM +hz +Se +Se +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +dl +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +cQ +cR +cR +cR +cR +cR +cR +cS +bG +bG +bG +DR +kk +WT +Or +oG +Or +oG +oG +Or +ck +cP +qt +bM +pu +cP +Or +oG +oG +RO +bW +bW +bW +bW +Lh +bG +bG +cX +yZ +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +DR +bW +bW +bW +bW +cP +qt +bM +ce +bM +pu +cP +bW +bW +bW +bW +GI +bW +bW +tt +bW +bW +bW +Lh +fb +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +YV +bG +bN +ab +"} +(66,1,1) = {" +ab +bS +bS +bS +bS +bS +LD +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +LK +qt +dm +pu +LK +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bG +bG +bG +fg +cO +bW +bW +cP +qt +bM +ce +bM +pu +cP +cO +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bZ +SE +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(67,1,1) = {" +ab +bS +FD +bT +bT +bS +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +dD +qt +bM +ce +bM +pu +cP +bN +qK +bT +bT +bT +bT +bT +ww +jE +bT +bT +bT +bT +Ne +bN +eF +PG +tr +sp +vk +bN +cP +qt +bM +pu +cP +bN +Ne +Ne +bT +bT +bT +bN +Ys +bU +Ys +bU +Ys +bU +Ys +bN +wz +au +au +au +au +bN +bG +bG +bG +bG +bG +fg +DX +cP +qt +bM +ce +bM +pu +cP +bG +cO +HX +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +fV +bG +bG +bN +ab +"} +(68,1,1) = {" +ab +bS +JT +bT +bT +dh +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +dd +bN +el +bT +bT +bT +ww +jE +ww +jE +ww +jE +bT +bT +bT +bN +eV +ET +ET +ET +ZC +bN +cP +qt +bM +pu +cP +bN +Ne +bT +bT +ww +bT +bN +bU +ET +xa +Gg +Mx +ET +bU +bN +Fs +au +au +au +au +bN +bG +bG +YV +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +fg +fg +cO +bW +bW +bW +bW +bW +OX +bW +bW +bW +SE +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(69,1,1) = {" +ab +bS +DA +bT +bT +bS +dP +Se +Se +Se +dP +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +dd +qt +bM +ce +bM +pu +cP +bN +bT +bT +Jp +bT +ww +jE +bT +bT +ww +jE +bT +bT +bT +bN +bN +qQ +qQ +qQ +bN +bN +cP +qt +bM +pu +cP +bN +bO +bT +bT +ww +bT +dP +Ys +IK +bU +bU +bU +Jf +Ys +YO +au +au +EK +EK +EK +bN +bG +bG +bG +bG +bG +bG +fV +ef +XU +bM +ce +bM +PI +ef +bG +bG +bG +bG +bG +fg +cO +Oo +bW +bW +bW +bW +bW +bW +SE +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(70,1,1) = {" +ab +bS +tf +jR +Qb +bS +bS +bS +dh +bS +bS +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +BD +bT +bT +bN +bN +bN +bN +bN +bN +bN +bT +bT +bT +qQ +RG +bT +bT +bT +ln +bN +cP +qt +bM +pu +cP +bN +bT +ww +bT +ww +bT +dP +bU +ET +bU +bK +bU +ET +bU +dP +au +au +au +au +au +bN +cY +fd +bG +NF +yr +NF +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +YV +bG +bG +fV +cO +bW +bW +bW +bW +bW +ib +SE +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bN +ab +"} +(71,1,1) = {" +ab +bS +bS +bS +bS +bS +bT +bT +bT +bT +bT +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +Ne +bT +FU +bN +aL +ao +jz +ao +at +bN +Ne +bT +bT +qQ +bT +bT +bT +bT +nf +bN +cP +qt +bM +pu +cP +bN +bT +ww +bT +ww +bT +dP +Tn +ET +iT +bU +bU +fe +Ys +YO +au +au +au +au +au +bN +NF +yr +jv +Wd +WN +JX +bG +dd +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +cO +bZ +bW +bW +bW +RN +bG +bG +bG +bG +bG +bG +bG +dt +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(72,1,1) = {" +ab +bS +ET +ET +ET +bS +bT +bT +bT +bT +bT +dX +Sc +YY +Lt +QD +Dg +bU +ac +cW +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +Ne +bT +bT +bN +oS +au +au +au +au +bN +Ne +bT +TR +qQ +bT +bT +bT +bT +dp +bN +cP +qt +bM +pu +cP +bN +bT +bT +bT +ww +bT +bN +Ji +ET +fI +ET +tl +px +bU +bN +au +au +at +au +au +bN +Jo +nC +Fv +bG +bG +bG +fd +ef +qt +bM +ce +bM +pu +ef +fd +bG +bG +bG +bG +bG +bG +bG +bG +cO +bW +YC +RN +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bN +ab +"} +(73,1,1) = {" +ab +bS +ET +ET +ET +AU +Ne +bT +bT +bT +bT +dX +bW +YY +Lt +QD +Dg +bU +ac +Yt +qt +bM +cz +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +GD +bT +bT +bN +Gk +au +au +au +au +bN +bN +bN +bN +bN +bN +qQ +qQ +qQ +bN +bN +dd +qt +bM +pu +cP +bN +bT +bT +bT +bT +bT +bN +Ys +bU +Ys +bU +Ys +bU +Ys +bN +au +au +at +au +au +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +vb +Sr +vb +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fg +fg +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(74,1,1) = {" +ab +bS +ET +ET +ET +ot +bT +bT +bT +bT +bT +dX +bW +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +eQ +GC +bT +dh +au +ao +at +ao +at +bN +kP +nD +wx +bN +QZ +au +au +au +yy +bN +cP +qt +bM +pu +cP +bN +xp +xp +bT +bN +bN +bN +bN +bN +ZQ +ZQ +ZQ +bN +bN +bN +at +at +at +au +au +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +fV +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(75,1,1) = {" +ab +bS +ET +ET +ET +bS +bT +bT +bT +bT +bT +dX +bW +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bT +bT +bT +bN +hY +au +au +au +au +bN +vi +au +au +bN +qF +au +cp +ay +au +bN +cP +qt +bM +pu +cP +bN +bT +bT +Ne +Ne +bT +Ne +Ne +bN +Se +Se +Se +bN +wz +au +au +au +au +au +au +bN +bG +bG +No +bG +bG +YV +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(76,1,1) = {" +ab +bS +MP +ii +nG +bS +bT +bT +bT +bT +bT +bS +lN +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +zY +Gj +uy +bM +ce +bM +pu +cP +bN +Jp +bT +bT +bN +QZ +au +au +au +au +bN +IN +au +au +bN +Ug +aW +Yx +ay +au +bN +cP +qt +bM +pu +cP +bN +bT +bT +bT +bT +bT +bT +Ne +dX +Se +Se +Se +YO +au +au +au +au +au +au +au +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +YV +bG +bG +bN +ab +"} +(77,1,1) = {" +ab +bS +bS +bS +bS +bS +bS +bS +bS +bS +bS +bS +lN +YY +Lt +QD +Dg +bU +ac +df +qt +bM +bM +bM +bM +bM +bM +bM +ce +bM +pu +cP +bN +jE +jE +jE +bN +aL +ao +at +ao +Jz +bN +aL +au +yy +bN +aL +au +au +au +at +bN +cP +qt +bM +pu +cP +bN +xp +xp +xp +bT +bT +bT +Ne +dX +Se +Se +Se +YO +au +au +EK +EK +au +au +au +bN +bG +fV +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(78,1,1) = {" +ab +bS +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +YY +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +kG +dO +Jy +bM +ce +bM +pu +cP +bN +xp +xp +xp +bN +bN +bN +bN +bN +bN +bN +bN +qQ +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +pu +cP +bN +bT +bT +bT +bT +bT +bT +bT +dX +Se +Se +Se +YO +au +tR +au +au +au +at +au +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +YV +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(79,1,1) = {" +ab +bS +ac +VI +Vh +Ab +ac +VI +ET +ET +ET +FZ +dP +bU +Lt +QD +Dg +bU +cH +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bT +bT +bT +bN +rg +ao +au +ao +Yr +bN +gB +au +as +bN +MC +at +bT +PT +VK +bN +cP +qt +bM +pu +cP +bN +bO +Ne +Ne +Ne +bT +bT +aa +bN +cT +cT +cT +bN +yy +tR +au +au +au +at +au +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(80,1,1) = {" +ab +bS +ac +Ji +wr +sq +KO +Me +mP +IM +mM +ET +CW +bU +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bV +ca +cP +qt +bM +ce +bM +pu +cP +bN +bT +bT +bT +bN +Gk +au +au +au +au +bN +aI +au +au +bN +au +au +bT +Gr +aa +bN +cP +qt +bM +pu +cP +bN +bN +bN +bN +bN +dX +dX +bN +bN +Se +Se +Se +bN +bN +bN +tj +tj +bN +bN +bN +bN +bG +bG +bG +bG +bG +fV +bG +cP +qt +ds +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +YV +QV +fb +bG +kd +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(81,1,1) = {" +ab +bS +ac +df +bU +bU +dP +ET +ET +ET +ET +ET +xj +Tm +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +cP +bN +bT +bT +bT +dh +au +au +QZ +au +au +dh +au +au +au +dh +au +au +bT +OV +aa +bN +cP +qt +bM +pu +cP +bN +ct +Se +tj +Se +Se +Se +Se +Dj +Se +Se +Se +Se +tj +Se +Se +Se +Se +Se +Pw +bN +bG +bG +YV +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +Lh +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +SO +fR +Lh +bG +bG +YV +bG +bG +fV +bG +bG +bN +ab +"} +(82,1,1) = {" +ab +bS +ac +MP +kC +nG +ac +MP +ET +oc +oc +FZ +dP +bU +Lt +QD +Dg +bU +ac +bU +qt +bM +bM +bV +ca +cP +qt +bM +ce +bM +pu +dd +bN +bT +bT +bT +bN +au +au +au +au +au +bN +Yw +au +au +bN +Ug +au +bT +GK +aa +bN +cP +qt +bM +pu +cP +bN +yw +Se +tj +Se +Se +Dj +Se +Dj +Se +Se +Dj +Se +tj +Se +Se +Se +Se +Se +Ig +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bW +Lh +bG +fV +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +ta +bW +bW +bW +SE +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(83,1,1) = {" +ab +bS +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +QG +QG +QG +ac +ac +cN +qt +bM +bM +bM +ca +cP +qt +bM +ce +bM +pu +dF +bN +Ne +Ne +HW +bN +at +ao +au +ao +VT +bN +aL +au +yy +bN +QZ +at +bT +JE +zq +bN +cP +qt +bM +pu +cP +bN +cK +Se +tj +Se +Se +Dj +Se +Se +Se +Se +Dj +Se +tj +Se +Se +Se +Se +Se +kD +bN +bG +bG +bG +bG +bG +bG +bG +cP +qt +bM +ce +bM +pu +cP +bW +bW +SE +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +DR +bW +GI +bW +SE +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(84,1,1) = {" +ab +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +cb +cP +qt +bM +ce +bM +pu +cP +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +pu +dz +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bG +bG +bG +bG +bG +bG +bG +cP +xO +Wi +ce +WR +yK +pE +bW +bW +Lh +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +uY +bW +bW +bW +SE +bG +bG +YV +bG +bG +bG +bG +bN +ab +"} +(85,1,1) = {" +ab +bN +FP +bW +dd +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +dd +qt +bM +ce +bM +pu +cP +cP +cP +cP +dd +cP +cP +dD +cP +cP +dL +cP +cP +cP +cP +cP +dz +cP +cP +dz +dz +dD +cP +qt +bM +pu +iO +dz +dz +Yn +dd +Yn +dz +zo +iO +Yn +yh +cP +cP +cP +cP +cP +cP +cP +dd +cP +cP +cP +cP +cP +cP +cP +cP +cP +Vc +Di +iD +ry +ce +bM +pu +cP +cP +dd +mb +Lh +Zq +bG +bG +bG +bG +bG +bG +bG +bG +dx +bG +bG +bG +cM +Nu +Zu +bW +eb +pR +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(86,1,1) = {" +ab +bN +ck +bW +bL +vd +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +uy +bM +bM +bM +zY +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +we +Gj +we +we +we +Gj +Gj +uy +bM +zY +Uo +we +Uo +pG +we +we +Uo +Kb +Uo +Ka +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +MU +lF +YH +ul +dm +fk +kU +xK +ql +Gj +Gj +aV +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +Gj +tn +Gj +Gj +Gj +Gj +fZ +Gj +Kb +Gj +Gj +Gj +Mn +ab +"} +(87,1,1) = {" +ab +bN +gJ +bW +cP +qt +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 +co +Ds +co +co +co +bM +bM +bM +bM +bM +ZF +eS +ZF +eS +co +eS +co +FN +ZF +KI +Hp +bM +bM +bM +bM +dk +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +UF +no +bM +ds +dk +hW +tI +BX +eY +sH +Bi +Bi +Zc +pM +WI +bM +EO +bM +pM +WI +bM +WY +bM +bM +yO +bM +bM +dk +pM +kM +Wt +bM +Ce +bM +FN +bM +bM +bM +bM +ab +"} +(88,1,1) = {" +ab +bN +gJ +RN +bL +qt +cd +cd +cd +cd +cd +cd +cd +cc +cd +cd +cd +cc +cd +cd +cd +cd +cd +cd +cd +cc +bM +bM +bM +bM +bM +cd +cd +cd +cd +cd +cd +cd +cc +cc +cc +cd +cd +cd +cd +cd +cd +LE +LE +LE +LE +cd +cd +cd +bM +bM +bM +RV +IA +RV +IA +fc +IA +gP +cc +IA +RV +lk +cc +cc +cc +cc +cc +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +iW +cd +bM +bM +bM +bM +Iy +cc +cc +cc +cc +eU +cc +cc +cc +cc +cc +cc +cc +cc +cc +cc +cc +cc +cc +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +uK +cd +cd +ab +"} +(89,1,1) = {" +ab +bN +RN +bG +cP +qt +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 +co +co +co +bM +dk +bM +bM +bM +bM +ZF +eS +ZF +eS +co +eS +co +FN +ZF +qA +mo +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +Ol +ds +bM +bM +AL +bM +RH +FN +wA +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +XO +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +bM +BG +JL +HA +ab +"} +(90,1,1) = {" +ab +bN +bG +bG +bL +Rk +dO +yC +yC +yC +dO +dO +dO +yC +yC +yC +dO +dO +dO +yC +yC +yC +dO +dO +yC +yC +IB +bM +bM +bM +kG +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +py +dO +ea +ea +ea +dO +dO +dO +dO +dO +dO +Hi +ea +Hi +fO +ea +ea +Hi +xg +Hi +Vd +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +sj +ys +Jy +bM +SZ +bM +kG +TW +gt +dO +bi +dO +dO +dO +dO +dO +dO +dO +dO +JU +TW +dO +dO +dR +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +iI +dO +bp +ab +"} +(91,1,1) = {" +ab +bN +bG +bG +cP +cP +iF +iF +iF +iF +iF +cP +iF +iF +iF +iF +iF +cP +iF +iF +iF +iF +iF +cP +cP +iF +Nn +Dr +ce +bM +pu +dG +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +dd +cP +dz +dz +dz +dd +oW +cP +cP +cP +cP +iO +dz +dz +Yn +cP +Yn +dz +zo +iO +Yn +Gy +cP +dd +cP +dF +cP +cP +cP +cP +dC +cP +dB +cP +cP +cP +dd +cP +cP +cP +dC +qt +bM +ce +bM +pu +cP +cP +cP +cP +cP +bW +RN +bG +bG +cM +bG +bG +jS +bW +iw +bW +SE +dt +bG +XF +sZ +bW +SE +bG +bG +cM +bG +bG +bG +BA +bG +bN +ab +"} +(92,1,1) = {" +ab +bN +vW +TJ +Dh +wN +Dh +TJ +Dh +wN +Dh +TJ +Dh +wN +Dh +TJ +Dh +wN +Dh +TJ +Dh +wN +Dh +TJ +Au +cs +Nn +Dr +ce +bM +pu +cP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +DE +DE +DE +bW +oG +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +cP +XU +vb +ce +vb +PI +cP +bW +bW +bW +bW +bW +SE +bG +bG +bG +bG +aQ +bW +bW +cP +cP +oW +cP +cP +KS +dG +Qw +uR +Ge +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(93,1,1) = {" +ab +bN +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +XR +cs +qt +Dr +ce +bM +pu +cP +ac +VI +lB +yW +dP +ac +aw +aw +aw +GH +GH +GH +aw +aw +GH +ac +au +au +au +au +ac +bW +bW +bW +bW +XP +bN +cP +cP +cP +cP +cP +cP +cP +cP +cP +bN +cu +cP +cP +cu +cP +cP +cu +bN +cP +cP +cP +cP +cP +cP +cP +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +bW +bW +bW +RN +bG +bG +bG +bG +cP +nw +KF +KF +rp +ac +ac +dX +dX +dX +ac +ai +ac +ac +KQ +bG +bG +bG +fV +bG +bG +bN +ab +"} +(94,1,1) = {" +ab +bN +bG +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +Pp +Pp +Pp +ng +ng +ng +bG +Dd +cs +qt +bM +ce +bM +pu +cP +ac +ab +Pb +Eg +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +dP +au +au +au +au +ac +bW +bW +bW +bW +bW +bN +cP +Se +Se +Se +Se +Se +dP +dP +dP +bN +cP +Se +Se +Se +Se +Se +cP +bN +dP +dP +dP +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +bW +bW +lv +bG +bG +bG +bG +bG +cP +ac +ac +dX +ac +ac +aL +au +au +au +CC +MY +QC +ac +dC +bG +bG +bG +bG +bG +bG +bN +ab +"} +(95,1,1) = {" +ab +bN +bG +ng +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +af +ac +ac +ac +ng +bG +XR +cP +Nn +bM +ce +bM +pu +cP +ac +ab +Uf +bT +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +dP +au +au +au +au +ac +bW +bW +bW +bW +bW +bN +cP +Se +Se +Se +Se +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +bW +bW +SE +bG +bG +No +YV +bG +cP +ac +HG +EM +EM +Jw +au +au +au +au +au +au +dY +ac +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(96,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +Ff +aw +aw +GH +GH +ac +aw +aw +aw +aw +aw +ac +ng +bG +Dd +cs +Nn +Dr +ce +bM +pu +cP +ac +ab +Ci +Qy +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +ac +au +au +au +au +ac +bW +bW +bW +db +bW +bN +cP +Se +Se +Xh +Se +Se +Se +Se +Se +Se +cu +Se +Se +bQ +Se +Se +cu +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +bW +RN +bG +bG +bG +bG +bG +bG +cP +dX +bY +bT +bT +EM +au +au +au +aN +au +au +au +dX +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(97,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +GH +aw +aw +aw +aw +ac +aw +aw +aw +aw +aw +ac +KZ +bG +XR +cs +Nn +Dr +ce +bM +pu +cP +ac +pb +Rb +AZ +dP +ac +aw +aw +aw +aw +aw +aw +aw +aw +GH +ac +ac +au +au +ac +ac +RN +cO +bW +bW +bW +bN +cP +Se +Se +Se +Se +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +RN +bG +No +bG +bG +bG +bG +bG +cP +dX +bY +cw +bT +Pc +au +au +au +pZ +IT +au +au +dX +cP +bG +bG +bG +bG +YV +bG +bN +ab +"} +(98,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +dh +aw +aw +aw +aw +aw +dh +aw +aw +aw +aw +aw +af +KZ +bG +Dd +cs +Nn +Dr +ce +bM +pu +cP +ac +ac +ac +ac +ac +ac +nk +aw +aw +aw +aw +aw +aw +aw +ac +ac +at +au +au +at +ac +bG +bG +cO +bW +bW +bN +cP +Se +Se +Se +Se +Se +dP +dP +dP +bN +cP +Se +Se +Se +Se +Se +cP +bN +dP +dP +dP +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +SE +bG +bG +fV +bG +bG +bG +bG +cP +dX +bY +bT +bT +hd +au +au +au +wz +yL +au +qR +dX +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(99,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +aw +aw +aw +aw +aw +ac +KZ +bG +XR +cP +Nn +bM +ce +bM +pu +cP +ac +NG +dP +dP +dP +ac +ac +dP +aw +aw +aw +aw +CG +JK +dX +at +au +au +au +dT +ac +bG +bG +DR +bW +bW +bN +cP +cP +cP +cP +cP +cP +cP +cP +cP +bN +cu +cP +cP +cu +cP +cP +cu +bN +cP +cP +cP +cP +cP +cP +cP +cP +bN +cP +qt +bM +ce +bM +pu +cP +RN +bG +bG +bG +cE +bG +bG +bG +bG +cP +ac +mq +hd +hd +Jw +au +au +au +au +au +au +at +ac +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(100,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +aw +aw +aw +aw +GH +ac +aw +aw +aw +aw +aw +ac +KZ +bG +Dd +cP +qt +bM +ce +bM +pu +cP +ac +bS +Se +Se +Se +tX +ka +dP +xw +CG +CG +aw +aw +nk +dX +au +au +au +au +oK +ac +da +bG +bG +cO +bW +bN +bN +dP +dP +bN +bN +bN +bN +bN +bN +bN +bN +Se +Se +Se +Se +Se +bN +bN +bN +bN +bN +bN +dP +dP +bN +bN +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +YV +cP +ac +ac +dX +ac +ac +QZ +au +au +au +au +kX +at +ac +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(101,1,1) = {" +ab +bN +bG +ng +ac +ac +au +au +ac +ac +ac +dP +dP +dP +ac +ac +aw +aw +aw +aw +aw +af +KZ +bG +XR +cP +qt +bM +ce +bM +pu +cP +ac +ZR +TT +Se +Se +tX +ka +dP +YO +dP +dP +dP +dP +nk +dX +au +au +au +au +mY +ac +tq +SE +bG +gT +bW +bN +dP +Se +Se +dP +au +au +au +bN +cu +cP +cu +Se +cP +bR +cP +Se +cu +cP +cu +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +YV +bG +bG +bG +bG +bG +bG +cP +cP +cP +cP +SY +ac +ac +dX +dX +dX +ac +ac +ac +ac +cP +bG +bG +bG +bG +bG +bG +bN +ab +"} +(102,1,1) = {" +ab +bN +bG +ng +ac +aL +au +au +au +ac +aL +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +KZ +bG +Dd +iF +qt +bM +ce +bM +pu +dd +ac +bS +Se +Se +Se +tX +ka +dP +xw +MH +MH +aw +aw +nk +dX +au +au +au +au +Pg +ac +bW +Lh +bG +bG +cO +bN +dP +Se +Se +dP +au +au +au +bN +cP +cv +cP +Se +Se +Se +Se +Se +cP +cv +cP +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +cP +bG +fV +bG +bG +bG +bG +bN +ab +"} +(103,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +au +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +ng +bG +XR +iF +Nn +bM +ce +bM +pu +cP +ac +NG +dP +dP +dP +ac +ac +dP +aw +aw +aw +aw +MH +ZQ +dX +at +au +au +au +vE +ac +bW +bW +SE +bG +bG +bN +bN +bN +bN +bN +au +au +bN +bN +cu +cP +cu +cP +cP +cu +cP +cP +cu +cP +cu +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +dt +bG +bG +bG +bG +bG +YV +bG +bG +dt +bG +bG +bG +bG +bG +bG +bN +ab +"} +(104,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +au +au +au +au +au +ac +ac +ac +dh +ac +ac +ac +ng +bG +Dd +dd +Nn +Dr +ce +bM +pu +Uh +ac +ac +ac +ac +ac +ac +nk +aw +aw +aw +aw +aw +aw +aw +ac +ac +at +au +au +at +ac +bW +bW +SE +bG +bG +bN +dP +dP +dP +bN +bN +bN +bN +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +fb +fb +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(105,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +at +at +au +au +ac +ac +Ki +aw +aw +aw +aw +ac +lC +bG +hj +cP +wv +Dr +ce +bM +pu +cP +ac +VI +lB +yW +dP +ac +aw +aw +aw +aw +aw +aw +aw +aw +GH +ac +ac +au +au +ac +ac +bW +bW +Lh +bG +bG +bN +ng +ng +Se +Se +tj +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +bP +Se +Se +Se +Se +GW +ab +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +YV +jS +bW +bW +Lh +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(106,1,1) = {" +ab +bN +bG +ng +ac +ac +ac +aE +ac +ac +cG +iR +au +au +ac +aw +GH +GH +aw +aw +aw +af +ng +bG +io +cP +wv +Dr +ce +bM +pu +cP +ac +ab +wI +Eg +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +ac +au +au +au +au +ac +bW +bW +bW +SE +bG +bN +ng +Te +Se +Se +tj +Se +Se +Se +Se +Se +cu +Se +Se +bQ +Se +Se +cu +Se +Se +bP +Se +Se +Se +Se +Ll +ab +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +bG +jS +bW +bW +bW +bW +TD +fb +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(107,1,1) = {" +ab +bN +bG +ng +ac +lJ +fE +au +ac +ab +FH +Qt +tR +NV +ac +aw +aw +GH +aw +aw +aw +ac +Vi +Vi +Vi +cP +wv +Dr +ce +bM +pu +cP +ac +ab +jg +bT +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +dP +au +au +au +au +ac +bW +bW +bW +SE +bG +bN +ng +ng +Se +Se +tj +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +bP +Se +Se +Se +Se +DB +ab +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +AO +xF +Xw +xF +Xw +xF +Xw +xF +gV +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bN +ab +"} +(108,1,1) = {" +ab +bN +bG +ng +ac +dq +au +au +ac +ab +iH +au +tR +NV +dh +aw +aw +GH +aw +aw +aw +dh +Ew +dP +dP +cP +qt +bM +ce +bM +pu +cP +ac +ab +Hq +Qy +bT +dP +aw +xw +aw +aw +aw +aw +aw +aw +aw +dP +au +au +au +au +ac +bW +bW +bW +SE +bG +bN +dP +dP +dP +bN +bN +bN +bN +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +bN +bN +bN +bN +bN +bN +bN +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +tK +bW +bW +bW +Bq +bW +bW +bW +bX +SE +bG +bG +bG +bG +dt +bG +bG +bG +cP +cP +cP +cP +cP +cP +cP +cP +cP +bG +bN +ab +"} +(109,1,1) = {" +ab +bN +bG +ng +ac +GX +au +au +ac +ab +kN +iR +tR +NV +ac +aw +aw +GH +aw +aw +aw +ac +MM +MM +MM +cP +wv +Dr +ce +bM +pu +cP +ac +pb +Rb +AZ +dP +ac +aw +aw +aw +GH +GH +GH +aw +aw +GH +ac +au +au +au +au +ac +bW +bW +bW +SE +bG +bN +bN +bN +bN +bN +au +au +bN +bN +cu +cP +cu +cP +cP +cu +cP +cP +cu +cP +cu +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +nY +bW +bW +bW +bW +bW +bW +bW +dE +SE +bG +bG +bG +bG +bG +bG +bG +jS +uU +ac +ac +ac +ac +ac +ac +ac +cP +bG +bN +ab +"} +(110,1,1) = {" +ab +bN +bG +ng +ac +ac +ac +aE +ac +ac +As +Qt +au +au +ac +aw +GH +GH +aw +aw +aw +af +ng +bG +AN +cP +wv +Dr +ce +bM +pu +cP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +bW +bW +RN +bG +fV +bN +dP +Se +Se +dP +au +au +au +bN +cP +cv +cP +Se +Se +Se +Se +Se +cP +cv +cP +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +fV +tK +bW +bW +bW +bW +bW +bW +bW +dA +Lh +bG +bG +bG +bG +bG +bG +jS +bW +ba +ac +aL +au +yy +xI +wC +ac +cP +fV +bN +ab +"} +(111,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +at +at +au +au +ac +ac +XH +aw +aw +aw +aw +ac +QI +bG +hj +cP +wv +Dr +ce +bM +pu +cP +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +SE +bG +bG +bN +dP +Se +Se +dP +au +au +au +bN +cu +cP +cu +Se +cP +bR +cP +Se +cu +cP +cu +bN +ET +ET +ET +ET +ET +ET +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +Qq +bW +bW +bW +bW +bW +bW +bW +dE +ZI +SE +bG +bG +bG +bG +jS +bW +bW +cP +ac +km +au +au +au +jV +af +cP +bG +bN +ab +"} +(112,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +au +au +au +au +au +ac +ac +ac +dh +ac +ac +ac +Zz +bG +Dd +cP +Nn +Dr +ce +bM +pu +cP +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +SE +bG +bG +bN +bN +dP +dP +bN +bN +bN +bN +bN +bN +bN +bN +Se +Se +Se +Se +Se +bN +bN +bN +bN +bN +bN +dP +dP +bN +bN +bN +cP +qt +bM +ce +bM +pu +cP +bG +jS +pt +bW +bW +bW +bW +bW +bW +bW +bX +qO +Lh +bG +bG +fb +jS +jh +bW +bW +FO +ai +Cg +au +au +au +jU +ac +cP +bG +bN +ab +"} +(113,1,1) = {" +ab +bN +bG +ng +ac +as +au +au +au +ac +au +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +ng +bG +XR +iF +Nn +bM +ce +bM +pu +cP +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +bW +RN +bG +bG +bG +bN +cP +cP +cP +cP +cP +cP +cP +cP +cP +bN +cu +cP +cP +cu +cP +cP +cu +bN +cP +cP +cP +cP +cP +cP +cP +cP +bN +cP +qt +bM +ce +bM +pu +cP +jS +bW +dE +bW +bW +bW +bW +bW +bW +bW +dE +bW +bW +Lh +jS +XP +bW +gE +bW +bW +cP +ac +AS +au +au +au +au +af +cP +bG +bN +ab +"} +(114,1,1) = {" +ab +bN +bG +ng +ac +aL +au +au +au +ac +aL +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +KZ +bG +Dd +iF +qt +bM +ce +bM +pu +cP +bW +bW +bW +bW +bW +bW +bW +RN +fg +fg +fg +cO +bW +bW +bW +bW +bW +bW +bW +RN +fg +fg +bG +bG +YV +bG +bN +cP +Se +Se +Se +Se +Se +dP +dP +dP +bN +cP +Se +Se +Se +Se +Se +cP +bN +dP +dP +dP +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bW +bW +cm +bW +bW +bW +yN +bW +bW +bW +cm +bW +bW +XX +bW +bW +bW +gE +bW +bW +cP +ac +lj +au +au +au +yL +ac +cP +bG +bN +ab +"} +(115,1,1) = {" +ab +bN +bG +ng +ac +ac +au +au +ac +ac +ac +dP +dP +dP +ac +ac +aw +aw +aw +aw +aw +af +KZ +bG +XR +cP +qt +bM +ce +bM +pu +cP +bW +bW +bW +bW +bW +bW +bW +SE +bG +bG +bG +bG +fg +cO +bW +bW +bW +RN +fg +bG +bG +bG +bG +bG +bG +bG +bN +cP +Se +Se +Se +Se +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +cO +bW +dE +bW +bW +bW +bW +bW +bW +bW +dE +bW +bW +bW +RN +fg +Kg +pn +JJ +bW +cP +ac +ac +ac +dh +ac +ac +ac +cP +bG +bN +ab +"} +(116,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +GH +aw +aw +aw +GH +ac +aw +aw +aw +aw +aw +ac +KZ +bG +Dd +cs +Nn +bM +ce +bM +pu +cP +bW +bW +bW +bW +bW +RN +fg +bG +bG +bG +bG +YV +bG +bG +fg +fg +fg +bG +YV +bG +bG +bG +bG +bG +bG +bG +bN +cP +Se +Se +Xh +Se +Se +Se +Se +Se +Se +cu +Se +Se +bQ +Se +Se +cu +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bG +cO +bX +bW +bW +bW +bW +bW +bW +bW +bX +bW +bW +RN +YV +bG +bG +cO +Bf +bW +Dt +ac +vl +au +au +au +oS +ac +cP +bG +bN +ab +"} +(117,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +aw +aw +aw +aw +aw +ac +aw +aw +aw +aw +aw +ac +KZ +bG +XR +cs +Nn +Dr +ce +bM +pu +cP +bW +bW +bW +RN +fg +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bN +cP +Se +Se +Se +Se +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +cP +Se +Se +Se +Se +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +sm +bW +bW +bW +bW +bW +bW +bW +dE +bW +RN +bG +bG +bG +bG +DR +JJ +bW +yu +af +ao +au +au +au +ao +af +cP +bG +bN +ab +"} +(118,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +dh +aw +aw +aw +aw +aw +dh +aw +aw +aw +aw +aw +af +KZ +bG +Dd +cs +Nn +Dr +ce +bM +pu +cP +bW +RN +fg +bG +bG +YV +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +cP +Se +Se +Se +Se +Se +dP +dP +dP +bN +cP +Se +Se +Se +Se +Se +cP +bN +dP +dP +dP +Se +Se +Se +Se +cP +bN +cP +qt +bM +ce +bM +pu +cP +bG +bG +vO +bW +bW +bW +bW +bW +bW +bW +bX +LH +SE +bG +bG +bG +bG +bG +cO +bW +vz +ac +aL +au +au +au +an +ac +cP +fV +bN +ab +"} +(119,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +GH +aw +aw +aw +aw +ac +aw +aw +aw +aw +aw +ac +KZ +bG +XR +cP +Nn +Dr +ce +bM +pu +cP +RN +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +cP +cP +cP +cP +cP +cP +cP +cP +cP +bN +cu +cP +cP +cu +cP +cP +cu +bN +cP +cP +cP +cP +cP +cP +cP +cP +bN +gf +mv +bM +ce +WR +NP +cP +bG +fV +nY +bW +bW +bW +bW +bW +bW +bW +dE +RN +bG +bG +bG +bG +bG +bG +DR +bW +dD +af +ao +au +au +au +ao +af +cP +bG +bN +ab +"} +(120,1,1) = {" +ab +bN +bG +ng +ac +au +au +au +au +ac +Ff +aw +aw +GH +GH +ac +aw +aw +aw +aw +aw +ac +ng +bG +Dd +cs +Nn +bM +ce +bM +pu +cP +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +Do +qt +bM +ce +bM +pu +cP +bG +bG +tK +bW +bW +bW +JY +bW +bW +bW +pt +SE +bG +bG +bG +fV +bG +bG +bG +cO +em +ac +sG +au +au +au +xI +ac +cP +bG +bN +ab +"} +(121,1,1) = {" +ab +bN +bG +ng +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +af +ac +ac +ac +ng +bG +XR +cs +qt +co +ce +bM +hs +cP +bG +bG +YV +bG +bG +bG +bG +bG +bG +YV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cO +bW +bW +tE +Md +qV +dP +JI +JI +cx +Hm +cn +hf +Oy +bW +cP +es +bM +cq +bM +hs +cP +bG +bG +NI +xF +Xw +xF +Xw +xF +Xw +xF +ix +SE +bG +bG +bG +bG +bG +bG +YV +bG +cP +ac +ac +af +ac +af +ac +ac +cP +bG +bN +ab +"} +(122,1,1) = {" +ab +bN +bG +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +ng +zt +zt +zt +ng +ng +ng +bG +Dd +cs +es +eS +cq +co +kp +dz +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +fV +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +fV +bG +bG +cO +bW +bW +bW +qV +dP +bM +bM +bM +dP +cn +pp +bW +sF +dz +Xi +co +PU +co +kp +dz +bG +bG +bG +zS +bW +bW +bW +bW +bW +bW +RN +bG +YV +bG +bG +bG +bG +bG +bG +bG +cP +cP +cP +cP +cP +cP +cP +cP +cP +bG +bN +ab +"} +(123,1,1) = {" +ab +bN +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +XR +dz +PX +ZF +HT +ZF +UN +dz +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +cO +bW +bW +qV +dP +dP +dP +dP +dP +cn +OD +OX +oG +iO +PX +ZF +HT +ZF +UN +iO +NF +bG +bG +bG +fg +cO +bW +Rh +RN +fg +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bG +bN +ab +"} +(124,1,1) = {" +ab +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +Xi +eS +PU +eS +kp +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +Xi +eS +PU +eS +kp +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +bN +ab +"} +(125,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} diff --git a/_maps/RandomZLevels/scpcomplex.dmm b/_maps/away/scpcomplex.dmm similarity index 85% rename from _maps/RandomZLevels/scpcomplex.dmm rename to _maps/away/scpcomplex.dmm index e1ce5bfef527..0f202b035b5f 100644 --- a/_maps/RandomZLevels/scpcomplex.dmm +++ b/_maps/away/scpcomplex.dmm @@ -27,35 +27,27 @@ /turf/open/floor/plasteel/white, /area/centcom/scp) "bk" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "bm" = ( /obj/item/hilbertshotel, /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/full, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "bz" = ( /obj/effect/turf_decal/stripes/full, /obj/machinery/light/floor, /obj/structure/closet/infinite, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "bJ" = ( /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "bK" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -90,12 +82,8 @@ /turf/open/floor/plasteel/white, /area/centcom/scp) "cm" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, /obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "cp" = ( /obj/effect/turf_decal/tile/neutral, @@ -110,7 +98,7 @@ "cr" = ( /obj/machinery/power/shieldwallgen/anchored, /obj/structure/cable, -/turf/closed/indestructible/syndicate, +/turf/closed/indestructible/riveted, /area/centcom/scp) "cA" = ( /obj/effect/turf_decal/trimline/red/filled/line, @@ -133,6 +121,7 @@ dir = 4 }, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "do" = ( @@ -183,12 +172,11 @@ "fe" = ( /obj/machinery/power/smes/engineering, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) +"fh" = ( +/turf/open/floor/engine, +/area/centcom/scp/labyrinth) "fp" = ( /obj/effect/mob_spawn/human/prison/prisoner/dclass, /obj/structure/bed/prison/bed, @@ -223,6 +211,7 @@ }, /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/full, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "ge" = ( @@ -235,6 +224,14 @@ }, /turf/open/floor/plasteel/white, /area/centcom/scp) +"gq" = ( +/obj/machinery/light/floor, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/light/floor/directional/north, +/obj/item/book/granter/action/spell/random, +/turf/open/floor/engine, +/area/centcom/scp) "gy" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -248,6 +245,7 @@ "ha" = ( /mob/living/carbon/human/raper, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "hc" = ( @@ -296,7 +294,7 @@ }, /obj/effect/turf_decal/stripes/red/line, /obj/structure/cable, -/turf/open/floor/vault, +/turf/open/floor/plasteel/rockvault, /area/centcom/scp) "jk" = ( /obj/effect/turf_decal/tile/neutral, @@ -308,15 +306,11 @@ /turf/open/floor/plasteel/white, /area/centcom/scp) "ju" = ( -/turf/closed/indestructible/syndicate, +/turf/closed/indestructible/riveted, /area/centcom/scp) "jX" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, /obj/machinery/vending/games, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "kc" = ( /obj/machinery/camera/autoname{ @@ -340,12 +334,8 @@ /turf/open/floor/plasteel/white, /area/centcom/scp) "kk" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/elevatorshaft, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "ks" = ( /obj/effect/turf_decal/tile/neutral{ @@ -386,12 +376,8 @@ /turf/open/floor/plasteel, /area/centcom/scp) "lT" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/elevatorshaft, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "mw" = ( /obj/effect/turf_decal/tile/neutral, @@ -450,6 +436,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "pN" = ( @@ -489,6 +476,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "sf" = ( @@ -496,10 +484,12 @@ dir = 8 }, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "sq" = ( /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/dark, /area/centcom/scp) "tU" = ( @@ -569,6 +559,7 @@ /area/centcom/scp) "xK" = ( /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/wood, /area/centcom/scp) "xR" = ( @@ -579,7 +570,7 @@ /area/centcom/scp) "xW" = ( /obj/machinery/light/floor, -/mob/living/simple_animal/hostile/statue{ +/mob/living/simple_animal/hostile/netherworld/statue{ move_force = 900 }, /turf/open/floor/engine, @@ -589,15 +580,12 @@ dir = 8 }, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "zz" = ( /obj/effect/turf_decal/stripes/corner, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "zJ" = ( @@ -623,16 +611,9 @@ /obj/item/book/killbook, /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/full, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) -"zV" = ( -/obj/machinery/door/airlock/centcom{ - name = "SCP"; - req_access_txt = "101" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/scp) "Aa" = ( /obj/structure/table/reinforced, /obj/item/toy/cards/deck/tarot{ @@ -661,12 +642,8 @@ /turf/open/floor/plasteel/white, /area/centcom/scp) "AQ" = ( -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, /obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "AV" = ( /obj/machinery/camera/autoname{ @@ -674,6 +651,12 @@ }, /turf/open/floor/wood, /area/centcom/scp) +"Bc" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/scp/labyrinth) "BR" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -690,7 +673,7 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/vault, +/turf/open/floor/plasteel/rockvault, /area/centcom/scp) "CG" = ( /obj/structure/chair{ @@ -725,6 +708,7 @@ /obj/item/his_grace, /obj/structure/table/reinforced, /obj/effect/turf_decal/stripes/full, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "Df" = ( @@ -745,6 +729,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "Ds" = ( @@ -752,14 +737,14 @@ dir = 1 }, /obj/structure/table/reinforced, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, -/obj/item/melee/baton/loaded/german, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, /obj/item/shield/riot/military, /obj/item/shield/riot/military, /obj/item/shield/riot/military, @@ -779,6 +764,7 @@ /obj/effect/turf_decal/stripes/full, /obj/structure/table/reinforced, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/engine, /area/centcom/scp) "Fn" = ( @@ -791,10 +777,32 @@ }, /turf/open/floor/plasteel/dark, /area/centcom/scp) +"Fs" = ( +/obj/item/melee/supermatter_sword, +/obj/structure/closet, +/turf/open/floor/engine, +/area/centcom/scp/labyrinth) +"Gc" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/scp) "Hh" = ( /obj/machinery/camera/autoname, /turf/open/floor/engine, /area/centcom/scp) +"HF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/centcom/scp) "HV" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ dir = 8 @@ -806,8 +814,16 @@ dir = 1 }, /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) +"Iz" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, +/obj/structure/table/reinforced, +/obj/item/gun/magic/wand/resurrection/inert, +/turf/open/floor/engine, +/area/centcom/scp) "II" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -852,11 +868,8 @@ /area/centcom/scp) "KB" = ( /obj/machinery/light/floor, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "KE" = ( /obj/structure/chair/comfy/arm, @@ -878,20 +891,13 @@ "Ll" = ( /obj/structure/cable, /obj/machinery/power/terminal, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "Lv" = ( /obj/machinery/light/floor, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "Lx" = ( /obj/effect/turf_decal/tile/neutral{ @@ -990,11 +996,7 @@ req_access_txt = "101" }, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "MX" = ( /obj/machinery/light/floor, @@ -1045,23 +1047,19 @@ /area/centcom/scp) "Oa" = ( /obj/structure/cable, -/turf/closed/indestructible/syndicate, +/turf/closed/indestructible/riveted, /area/centcom/scp) "Ok" = ( /obj/lab_monitor{ pixel_y = 4; plane = -1 }, -/turf/closed/indestructible/syndicate, +/turf/closed/indestructible/riveted, /area/centcom/scp) "ON" = ( /obj/machinery/camera/autoname, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "OT" = ( /obj/effect/turf_decal/tile/neutral, @@ -1137,11 +1135,7 @@ /obj/item/stack/sheet/mineral/uranium{ amount = 25 }, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 - }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "TT" = ( /obj/machinery/door/poddoor/shutters{ @@ -1202,11 +1196,18 @@ req_access_txt = "101" }, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/scp) +"Wc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 }, -/turf/open/floor/plasteel/elevatorshaft, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, /area/centcom/scp) "Wq" = ( /obj/machinery/door/poddoor/shutters{ @@ -1231,8 +1232,17 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) +"Xm" = ( +/obj/machinery/light/floor, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/light/floor/directional/north, +/obj/item/alienartifact, +/turf/open/floor/engine, +/area/centcom/scp) "Xu" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -1242,6 +1252,7 @@ /area/centcom/scp) "Ys" = ( /obj/machinery/light/floor, +/obj/machinery/light/floor/directional/north, /turf/open/floor/plasteel/white, /area/centcom/scp) "YG" = ( @@ -1270,11 +1281,14 @@ dir = 6 }, /obj/structure/cable, -/obj/structure/lattice/catwalk{ - layer = 2.5; - plane = -1 +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/scp) +"Zl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel/catwalk_floor, /area/centcom/scp) "ZD" = ( /obj/structure/table/reinforced, @@ -1295,7 +1309,7 @@ }, /obj/effect/turf_decal/stripes/red/line, /obj/structure/cable, -/turf/open/floor/vault, +/turf/open/floor/plasteel/rockvault, /area/centcom/scp) "ZW" = ( /obj/effect/turf_decal/tile/neutral, @@ -2701,6 +2715,37 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju Mk Mk Mk @@ -2711,6 +2756,8 @@ Mk Mk Mk Mk +"} +(15,1,1) = {" Mk Mk Mk @@ -2742,8 +2789,6 @@ Mk Mk Mk Mk -"} -(15,1,1) = {" Mk Mk Mk @@ -2772,6 +2817,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Fs +ju Mk Mk Mk @@ -2782,6 +2858,8 @@ Mk Mk Mk Mk +"} +(16,1,1) = {" Mk Mk Mk @@ -2841,11 +2919,40 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk -"} -(16,1,1) = {" Mk Mk Mk @@ -2853,6 +2960,8 @@ Mk Mk Mk Mk +"} +(17,1,1) = {" Mk Mk Mk @@ -2912,6 +3021,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -2922,6 +3062,8 @@ Mk Mk Mk Mk +"} +(18,1,1) = {" Mk Mk Mk @@ -2946,8 +3088,6 @@ Mk Mk Mk Mk -"} -(17,1,1) = {" Mk Mk Mk @@ -2983,6 +3123,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -2993,6 +3164,8 @@ Mk Mk Mk Mk +"} +(19,1,1) = {" Mk Mk Mk @@ -3048,12 +3221,41 @@ Mk Mk Mk Mk -"} -(18,1,1) = {" Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3064,6 +3266,8 @@ Mk Mk Mk Mk +"} +(20,1,1) = {" Mk Mk Mk @@ -3123,6 +3327,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3133,6 +3368,8 @@ Mk Mk Mk Mk +"} +(21,1,1) = {" Mk Mk Mk @@ -3150,8 +3387,6 @@ Mk Mk Mk Mk -"} -(19,1,1) = {" Mk Mk Mk @@ -3194,6 +3429,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3204,6 +3470,8 @@ Mk Mk Mk Mk +"} +(22,1,1) = {" Mk Mk Mk @@ -3252,8 +3520,6 @@ Mk Mk Mk Mk -"} -(20,1,1) = {" Mk Mk Mk @@ -3265,6 +3531,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3275,6 +3572,8 @@ Mk Mk Mk Mk +"} +(23,1,1) = {" Mk Mk Mk @@ -3314,6 +3613,18 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju Mk Mk Mk @@ -3322,6 +3633,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3332,6 +3674,8 @@ Mk Mk Mk Mk +"} +(24,1,1) = {" Mk Mk Mk @@ -3354,8 +3698,6 @@ Mk Mk Mk Mk -"} -(21,1,1) = {" Mk Mk Mk @@ -3373,6 +3715,18 @@ Mk Mk Mk Mk +ju +NB +hc +ZZ +ai +Lx +oK +ju +eN +eN +eN +ju Mk Mk Mk @@ -3381,6 +3735,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3391,6 +3776,8 @@ Mk Mk Mk Mk +"} +(25,1,1) = {" Mk Mk Mk @@ -3430,6 +3817,18 @@ Mk Mk Mk Mk +ju +Pe +II +qz +ks +hA +kg +ju +eN +gq +eN +ju Mk Mk Mk @@ -3438,6 +3837,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3448,6 +3878,8 @@ Mk Mk Mk Mk +"} +(26,1,1) = {" Mk Mk Mk @@ -3456,8 +3888,6 @@ Mk Mk Mk Mk -"} -(22,1,1) = {" Mk Mk Mk @@ -3489,6 +3919,18 @@ Mk Mk Mk Mk +ju +do +II +Ys +Xu +Xu +wM +ju +eN +eN +eN +ju Mk Mk Mk @@ -3497,6 +3939,37 @@ Mk Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3507,6 +3980,8 @@ Mk Mk Mk Mk +"} +(27,1,1) = {" Mk Mk Mk @@ -3546,6 +4021,57 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +uE +ju +ju +ju +wx +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3556,10 +4082,10 @@ Mk Mk Mk Mk +"} +(28,1,1) = {" Mk Mk -"} -(23,1,1) = {" Mk Mk Mk @@ -3598,14 +4124,55 @@ Mk Mk Mk Mk -Mk -ju -ju ju +bJ ju +mw +bJ +mw ju +ie +ie +ie +HF +mw +mw +mw +Wc ju +eN +eN +eN ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ju Mk Mk @@ -3617,6 +4184,9 @@ Mk Mk Mk Mk +"} +(29,1,1) = {" +Mk Mk Mk Mk @@ -3656,18 +4226,68 @@ Mk Mk Mk Mk +ju +bJ +VS +bJ +Lv +bJ +VS +bJ +bJ +bJ +bJ +Lv +bJ +bJ +ae +wx +eN +Xm +eN +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +Bc +ju Mk Mk Mk Mk -"} -(24,1,1) = {" Mk Mk Mk Mk Mk Mk +"} +(30,1,1) = {" Mk Mk Mk @@ -3701,14 +4321,6 @@ Mk Mk Mk Mk -ju -NB -hc -ZZ -ai -Lx -oK -ju Mk Mk Mk @@ -3716,6 +4328,56 @@ Mk Mk Mk Mk +ju +bJ +ju +mw +bJ +cp +ju +mw +mw +mw +mw +mw +mw +bJ +ae +ju +eN +eN +eN +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3726,6 +4388,8 @@ Mk Mk Mk Mk +"} +(31,1,1) = {" Mk Mk Mk @@ -3762,12 +4426,60 @@ Mk Mk Mk Mk -"} -(25,1,1) = {" Mk Mk Mk Mk +ju +bJ +ju +ju +VS +ju +ju +ju +ju +ju +ju +ju +ju +VS +ju +ju +ju +ju +ju +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3778,6 +4490,8 @@ Mk Mk Mk Mk +"} +(32,1,1) = {" Mk Mk Mk @@ -3803,14 +4517,6 @@ Mk Mk Mk Mk -ju -Pe -II -qz -ks -hA -kg -ju Mk Mk Mk @@ -3826,9 +4532,56 @@ Mk Mk Mk Mk +ju +bJ +ju +mw +bJ +mw +ju +eN +eN +eN +eN +ju +IY +bJ +mw +ju Mk Mk Mk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3839,6 +4592,8 @@ Mk Mk Mk Mk +"} +(33,1,1) = {" Mk Mk Mk @@ -3864,8 +4619,6 @@ Mk Mk Mk Mk -"} -(26,1,1) = {" Mk Mk Mk @@ -3881,6 +4634,56 @@ Mk Mk Mk Mk +ju +bJ +ju +mw +bJ +mw +ju +eN +eN +eN +eN +ju +IY +bJ +mw +ju +ju +ju +ju +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3891,6 +4694,8 @@ Mk Mk Mk Mk +"} +(34,1,1) = {" Mk Mk Mk @@ -3905,14 +4710,6 @@ Mk Mk Mk Mk -ju -do -II -Ys -Xu -Xu -wM -ju Mk Mk Mk @@ -3939,6 +4736,56 @@ Mk Mk Mk Mk +ju +bJ +ju +mw +bJ +mw +ju +eN +xW +eN +eN +ju +ci +bJ +mw +ju +mw +mw +mw +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -3949,6 +4796,8 @@ Mk Mk Mk Mk +"} +(35,1,1) = {" Mk Mk Mk @@ -3966,8 +4815,6 @@ Mk Mk Mk Mk -"} -(27,1,1) = {" Mk Mk Mk @@ -3991,6 +4838,56 @@ Mk Mk Mk Mk +ju +bJ +ju +mw +bJ +mw +ju +Hh +eN +eN +eN +wx +IY +Lv +bJ +VS +bJ +Lv +mw +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4001,29 +4898,14 @@ Mk Mk Mk Mk +"} +(36,1,1) = {" Mk Mk Mk Mk Mk Mk -ju -ju -ju -ju -ju -uE -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju Mk Mk Mk @@ -4058,6 +4940,56 @@ Mk Mk Mk Mk +ju +ON +ju +mw +bJ +mw +ju +eN +eN +eN +eN +ju +IY +bJ +mw +ju +VH +bJ +mw +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4069,7 +5001,7 @@ Mk Mk Mk "} -(28,1,1) = {" +(37,1,1) = {" Mk Mk Mk @@ -4114,52 +5046,52 @@ ju bJ ju mw -bJ +Lv mw ju -mw -mw -mw -mw -mw -mw -mw -cp ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +ju +ju +ju +ju +ju +dD +ju +ju +ju +VS +ju +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4171,10 +5103,7 @@ Mk Mk Mk "} -(29,1,1) = {" -Mk -Mk -Mk +(38,1,1) = {" Mk Mk Mk @@ -4213,21 +5142,58 @@ Mk Mk Mk ju +ju +ju +ju bJ -VS -bJ -Lv -bJ -VS -bJ -bJ -bJ -bJ -Lv -bJ +ju +mw bJ mw ju +kY +tU +id +ju +fw +eK +Ae +JO +ju +KO +bJ +jk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4238,6 +5204,8 @@ Mk Mk Mk Mk +"} +(39,1,1) = {" Mk Mk Mk @@ -4268,12 +5236,66 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju Mk -Mk -Mk -Mk -"} -(30,1,1) = {" +ju +ju +Ll +fe +Oa +bJ +ju +mw +bJ +mw +ju +Vy +Mp +UK +ju +Ds +sq +QS +qs +ju +KO +bJ +jk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4284,6 +5306,8 @@ Mk Mk Mk Mk +"} +(40,1,1) = {" Mk Mk Mk @@ -4315,21 +5339,65 @@ Mk Mk Mk ju +eN +eN +eN +ju +ju +ju +SY bJ +KB ju -mw bJ -cp ju mw -mw -mw -mw -mw -mw bJ mw ju +KE +Lv +cA +ju +Nl +QS +QS +nE +ju +CM +Lv +jk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4340,6 +5408,8 @@ Mk Mk Mk Mk +"} +(41,1,1) = {" Mk Mk Mk @@ -4370,12 +5440,66 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -"} -(31,1,1) = {" +ju +eN +zS +eN +ud +bJ +ju +ju +VS +ju +ju +bJ +ju +uo +bJ +mw +ju +fa +bJ +YI +ju +zP +Nf +Nf +Fn +ju +KO +bJ +jk +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4386,6 +5510,8 @@ Mk Mk Mk Mk +"} +(42,1,1) = {" Mk Mk Mk @@ -4417,7 +5543,21 @@ Mk Mk Mk ju +eN +eN +eN +ju +bJ bJ +yq +bJ +bJ +bJ +bJ +ju +ju +VS +ju ju ju VS @@ -4432,6 +5572,36 @@ ju VS ju ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4442,6 +5612,8 @@ Mk Mk Mk Mk +"} +(43,1,1) = {" Mk Mk Mk @@ -4472,12 +5644,66 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -"} -(32,1,1) = {" +ju +ju +wx +ju +ju +ju +ju +ju +cr +ju +ju +ju +ju +mw +bJ +mw +ju +mw +bJ +mw +ju +mw +mw +mw +mw +ju +mw +bJ +ae +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4488,6 +5714,8 @@ Mk Mk Mk Mk +"} +(44,1,1) = {" Mk Mk Mk @@ -4519,20 +5747,64 @@ Mk Mk Mk ju -bJ +bh +bh +bh ju mw -bJ +mw +mw +Cr +mw +mw mw ju -eN -eN -eN -eN -ju -IY -bJ mw +bJ +bJ +VS +bJ +Lv +bJ +VS +bJ +Lv +bJ +bJ +VS +bJ +Lv +ae +wx +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh ju Mk Mk @@ -4544,6 +5816,8 @@ Mk Mk Mk Mk +"} +(45,1,1) = {" Mk Mk Mk @@ -4574,12 +5848,66 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -"} -(33,1,1) = {" +ju +tX +Lv +bJ +VS +bJ +bJ +bJ +Lv +bJ +bJ +bJ +VS +bJ +Lv +mw +ju +VH +mw +mw +ju +VH +mw +mw +mw +ju +VH +mw +ae +ju +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +fh +ju Mk Mk Mk @@ -4590,6 +5918,8 @@ Mk Mk Mk Mk +"} +(46,1,1) = {" Mk Mk Mk @@ -4621,20 +5951,60 @@ Mk Mk Mk ju -bJ -ju mw bJ mw ju -eN -eN -eN -eN +mw +mw +mw +Cr +uo +mw +mw ju -IY -bJ mw +bJ +cp +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju ju ju ju @@ -4650,6 +6020,8 @@ Mk Mk Mk Mk +"} +(47,1,1) = {" Mk Mk Mk @@ -4680,20 +6052,49 @@ Mk Mk Mk Mk -"} -(34,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +ju +ju +VS +ju +ju +ju +ju +ju +cr +ju +ju +ju +ju +mw +bJ +mw +lT +ju +zJ +cQ +vT +zJ +ju +zJ +cQ +vT +zJ +ju +zJ +cQ +vT +zJ +ju +zJ +cQ +vT +zJ +ju +eN +eN +eN +eN +ju Mk Mk Mk @@ -4721,27 +6122,9 @@ Mk Mk Mk Mk +"} +(48,1,1) = {" Mk -ju -bJ -ju -mw -bJ -mw -ju -eN -xW -eN -eN -ju -ci -bJ -mw -ju -mw -mw -mw -ju Mk Mk Mk @@ -4771,6 +6154,49 @@ Mk Mk Mk Mk +ju +mw +bJ +mw +ju +bJ +bJ +bJ +bJ +bJ +bJ +bJ +ju +mw +bJ +mw +kk +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +eN +CS +eN +kc +ju Mk Mk Mk @@ -4782,8 +6208,6 @@ Mk Mk Mk Mk -"} -(35,1,1) = {" Mk Mk Mk @@ -4800,6 +6224,8 @@ Mk Mk Mk Mk +"} +(49,1,1) = {" Mk Mk Mk @@ -4825,2587 +6251,53 @@ Mk Mk Mk ju -bJ ju -mw -bJ -mw -ju -Hh -eN -eN -eN -wx -IY -Lv -bJ -VS -bJ -Lv -mw ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(36,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk ju -ON ju -mw -bJ -mw ju -eN -eN -eN -eN ju -IY -bJ mw -ju -VH bJ mw ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(37,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju +bJ +Xl +ie +ie +ie +Di bJ ju mw -Lv +bJ mw +bk ju +fp +PB +Mh +fp ju +fp +PB +Mh +fp ju +fp +PB +Mh +fp ju -ju -ju -ju -dD -ju -ju -ju -VS -ju -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(38,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -ju -ju -bJ -ju -mw -bJ -mw -ju -kY -tU -id -ju -fw -eK -Ae -JO -ju -KO -bJ -jk -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(39,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -ju -ju -ju -Mk -ju -ju -Ll -fe -Oa -bJ -ju -mw -bJ -mw -ju -Vy -Mp -UK -ju -Ds -sq -QS -qs -ju -KO -bJ -jk -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(40,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +fp +PB +Mh +fp ju eN eN -eN -ju -ju -ju -SY -bJ -KB -ju -bJ -ju -mw -bJ -mw -ju -KE -Lv -cA -ju -Nl -QS -QS -nE -ju -CM -Lv -jk -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(41,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -eN -zS -eN -ud -bJ -ju -ju -zV -ju -ju -bJ -ju -uo -bJ -mw -ju -fa -bJ -YI -ju -zP -Nf -Nf -Fn -ju -KO -bJ -jk -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(42,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -eN -eN -eN -ju -bJ -bJ -yq -bJ -bJ -bJ -bJ -ju -ju -VS -ju -ju -ju -VS -ju -ju -ju -ju -ju -ju -ju -ju -VS -ju -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(43,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -wx -ju -ju -ju -ju -ju -cr -ju -ju -ju -ju -mw -bJ -mw -ju -mw -bJ -mw -ju -mw -mw -mw -mw -ju -mw -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(44,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -bh -bh -bh -ju -mw -mw -mw -Cr -mw -mw -mw -ju -mw -bJ -bJ -VS -bJ -Lv -bJ -VS -bJ -Lv -bJ -bJ -VS -bJ -Lv -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(45,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -tX -Lv -bJ -VS -bJ -bJ -bJ -Lv -bJ -bJ -bJ -VS -bJ -Lv -mw -ju -VH -mw -mw -ju -VH -mw -mw -mw -ju -VH -mw -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(46,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -mw -bJ -mw -ju -mw -mw -mw -Cr -uo -mw -mw -ju -mw -bJ -cp -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(47,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -VS -ju -ju -ju -ju -ju -cr -ju -ju -ju -ju -mw -bJ -mw -lT -ju -zJ -cQ -vT -zJ -ju -zJ -cQ -vT -zJ -ju -zJ -cQ -vT -zJ -ju -zJ -cQ -vT -zJ -ju -eN -eN -eN -eN -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(48,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -mw -bJ -mw -ju -bJ -bJ -bJ -bJ -bJ -bJ -bJ -ju -mw -bJ -mw -kk -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -eN -CS -eN -kc -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(49,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -ju -ju -ju -ju -ju -mw -bJ -mw -ju -bJ -Xl -ie -ie -ie -Di -bJ -ju -mw -bJ -mw -bk -ju -fp -PB -Mh -fp -ju -fp -PB -Mh -fp -ju -fp -PB -Mh -fp -ju -fp -PB -Mh -fp -ju -eN -eN -eN -eN -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(50,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -zz -BR -BR -BR -dk -ju -mw -bJ -mw -ju -bJ -OT -Df -ob -CN -ae -bJ -ju -ju -VS -ju -ju -Ok -ju -kw -ju -ju -ju -ju -nL -ju -ju -ju -ju -YG -ju -ju -ju -ju -LS -ju -ju -Ok -ju -ju -wx -ju -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(51,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ki -eN -eN -eN -II -ju -mw -bJ -mw -ju -bJ -OT -Df -ZD -CN -ae -bJ -ju -mw -bJ -mw -ju -HV -HV -HV -HV -Pg -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -HV -Pg -HV -HV -HV -ju -bh -bh -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(52,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ki -eN -Je -eN -II -uE -mw -Lv -bJ -VS -bJ -OT -AH -Kc -CG -ae -bJ -VS -bJ -Lv -bJ -VS -bJ -bJ -Lv -bJ -bJ -bJ -bJ -Lv -bJ -bJ -bJ -bJ -Lv -bJ -bJ -bJ -bJ -Lv -bJ -bJ -bJ -bJ -VS -bJ -VN -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(53,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ki -eN -eN -eN -II -ju -tX -bJ -mw -ju -YK -OT -Df -Aa -CN -ae -bJ -ju -ge -bJ -uo -ju -xR -xR -xR -xR -xR -xR -xR -xR -xR -lo -xR -xR -xR -xR -xR -xR -xR -xR -xR -xR -xR -xR -ju -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(54,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -sf -Rw -Rw -Rw -Io -ju -mw -bJ -mw -ju -bJ -OT -Df -bM -CN -ae -bJ -ju -ju -VS -ju -ju -Ok -ju -Wq -ju -ju -ju -ju -Nm -ju -ju -ju -ju -pN -ju -ju -ju -ju -TT -ju -ju -Ok -ju -ju -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(55,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -ju -ju -ju -ju -ju -mw -bJ -mw -ju -bJ -pL -ZW -ZW -ZW -qF -bJ -ju -mw -bJ -mw -cm -ju -zJ -vT -bK -zJ -ju -zJ -vT -bK -zJ -ju -zJ -vT -bK -zJ -ju -zJ -vT -bK -zJ -ju -Kh -ju -ON -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(56,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -mw -bJ -mw -ju -bJ -bJ -bJ -bJ -bJ -bJ -bJ -ju -mw -bJ -mw -AQ -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -DP -QS -QS -DP -ju -MX -dD -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(57,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -ju -ju -ju -ju -ju -VS -ju -ju -ju -ju -ju -cr -ju -ju -ju -ju -mw -bJ -mw -jX -ju -fp -PB -Sf -fp -ju -fp -PB -Sf -fp -ju -fp -PB -Sf -fp -ju -fp -PB -Sf -fp -ju -SB -ju -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(58,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -NJ -NJ -NJ -ju -IY -bJ -mw -ju -mw -mw -fu -ZV -mw -mw -mw -ju -mw -bJ -cp -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -bJ -mw -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(59,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -AV -xK -cg -ec -IY -Lv -bJ -VS -bJ -bJ -bJ -Lv -bJ -bJ -bJ -VS -bJ -Lv -bJ -VS -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -yq -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -bJ -VS -bJ -VN -ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -"} -(60,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -ju -NJ -NJ -NJ -ju -Rh -gy -gy -ju -gy -gy -gy -je -gy -gy -gy -ju -gy -gy -gy -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -ju -gy -gy +eN +eN ju Mk Mk @@ -7435,9 +6327,7 @@ Mk Mk Mk "} -(61,1,1) = {" -Mk -Mk +(50,1,1) = {" Mk Mk Mk @@ -7463,47 +6353,49 @@ Mk Mk Mk ju +zz +BR +BR +BR +dk ju +mw +bJ +mw ju +bJ +OT +Df +ob +CN +ae +bJ ju ju +VS ju -wx ju +Ok ju +kw ju -wx ju -cr ju -wx ju +nL ju ju -wx ju ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +YG +ju +ju +ju +ju +LS +ju +ju +Ok ju ju wx @@ -7537,13 +6429,7 @@ Mk Mk Mk "} -(62,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk +(51,1,1) = {" Mk Mk Mk @@ -7569,47 +6455,53 @@ Mk Mk Mk ju +ki eN eN eN +II ju -eN -eN -eN +mw +bJ +mw ju -eN -eN -eN +bJ +OT +Df +ZD +CN +ae +bJ ju -eN -eN -eN +mw +bJ +mw ju -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +HV +HV +HV +HV +Pg +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +HV +Pg +HV +HV +HV ju -eN -eN -eN +bh +bh ju Mk Mk @@ -7639,13 +6531,7 @@ Mk Mk Mk "} -(63,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk +(52,1,1) = {" Mk Mk Mk @@ -7671,21 +6557,53 @@ Mk Mk Mk ju +ki eN -bz -kc -ju -eN -ED -kc -ju -eN -bm -kc -ju +Je eN -fL -kc +II +uE +mw +Lv +bJ +VS +bJ +OT +AH +Kc +CG +ae +bJ +VS +bJ +Lv +bJ +VS +bJ +bJ +Lv +bJ +bJ +bJ +bJ +Lv +bJ +bJ +bJ +bJ +Lv +bJ +bJ +bJ +bJ +Lv +bJ +bJ +bJ +bJ +VS +bJ +VN ju Mk Mk @@ -7708,17 +6626,15 @@ Mk Mk Mk Mk -ju -eN -ha -kc -ju Mk Mk Mk Mk Mk Mk +"} +(53,1,1) = {" +Mk Mk Mk Mk @@ -7740,8 +6656,57 @@ Mk Mk Mk Mk -"} -(64,1,1) = {" +Mk +Mk +ju +ki +eN +eN +eN +II +ju +tX +bJ +mw +ju +YK +OT +Df +Aa +CN +ae +bJ +ju +ge +bJ +uo +ju +xR +xR +xR +xR +xR +xR +xR +xR +xR +lo +xR +xR +xR +xR +xR +xR +xR +xR +xR +xR +xR +xR +ju +bJ +mw +ju Mk Mk Mk @@ -7769,26 +6734,11 @@ Mk Mk Mk Mk +"} +(54,1,1) = {" Mk Mk Mk -ju -eN -eN -eN -ju -eN -eN -eN -ju -eN -eN -eN -ju -eN -eN -eN -ju Mk Mk Mk @@ -7811,9 +6761,53 @@ Mk Mk Mk ju -eN -eN -eN +sf +Rw +Rw +Rw +Io +ju +mw +bJ +mw +ju +bJ +OT +Df +bM +CN +ae +bJ +ju +ju +VS +ju +ju +Ok +ju +Wq +ju +ju +ju +ju +Nm +ju +ju +ju +ju +pN +ju +ju +ju +ju +TT +ju +ju +Ok +ju +ju +bJ +mw ju Mk Mk @@ -7843,13 +6837,7 @@ Mk Mk Mk "} -(65,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk +(55,1,1) = {" Mk Mk Mk @@ -7881,18 +6869,48 @@ ju ju ju ju +mw +bJ +mw ju +bJ +pL +ZW +ZW +ZW +qF +bJ ju +mw +bJ +mw +cm ju +zJ +vT +bK +zJ ju +zJ +vT +bK +zJ ju +zJ +vT +bK +zJ ju +zJ +vT +bK +zJ ju +Kh ju +ON +mw ju -ju -Mk -Mk Mk Mk Mk @@ -7912,14 +6930,6 @@ Mk Mk Mk Mk -ju -ju -ju -ju -ju -Mk -Mk -Mk Mk Mk Mk @@ -7928,6 +6938,8 @@ Mk Mk Mk Mk +"} +(56,1,1) = {" Mk Mk Mk @@ -7944,8 +6956,6 @@ Mk Mk Mk Mk -"} -(66,1,1) = {" Mk Mk Mk @@ -7960,6 +6970,49 @@ Mk Mk Mk Mk +ju +mw +bJ +mw +ju +bJ +bJ +bJ +bJ +bJ +bJ +bJ +ju +mw +bJ +mw +AQ +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +DP +QS +QS +DP +ju +MX +dD +bJ +mw +ju Mk Mk Mk @@ -7987,6 +7040,8 @@ Mk Mk Mk Mk +"} +(57,1,1) = {" Mk Mk Mk @@ -8013,6 +7068,53 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +VS +ju +ju +ju +ju +ju +cr +ju +ju +ju +ju +mw +bJ +mw +jX +ju +fp +PB +Sf +fp +ju +fp +PB +Sf +fp +ju +fp +PB +Sf +fp +ju +fp +PB +Sf +fp +ju +SB +ju +bJ +mw +ju Mk Mk Mk @@ -8040,14 +7142,14 @@ Mk Mk Mk Mk +"} +(58,1,1) = {" Mk Mk Mk Mk Mk Mk -"} -(67,1,1) = {" Mk Mk Mk @@ -8068,6 +7170,53 @@ Mk Mk Mk Mk +ju +NJ +NJ +NJ +ju +IY +bJ +mw +ju +mw +mw +fu +ZV +mw +mw +mw +ju +mw +bJ +cp +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +bJ +mw +ju Mk Mk Mk @@ -8095,6 +7244,8 @@ Mk Mk Mk Mk +"} +(59,1,1) = {" Mk Mk Mk @@ -8121,6 +7272,53 @@ Mk Mk Mk Mk +ju +AV +xK +cg +ec +IY +Lv +bJ +VS +bJ +bJ +bJ +Lv +bJ +bJ +bJ +VS +bJ +Lv +bJ +VS +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju +bJ +bJ +VS +bJ +VN +ju Mk Mk Mk @@ -8149,10 +7347,7 @@ Mk Mk Mk "} -(68,1,1) = {" -Mk -Mk -Mk +(60,1,1) = {" Mk Mk Mk @@ -8179,6 +7374,53 @@ Mk Mk Mk Mk +ju +NJ +NJ +NJ +ju +Rh +gy +gy +ju +gy +gy +gy +je +gy +gy +gy +ju +gy +gy +gy +ju +ju +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +ju +gy +gy +ju Mk Mk Mk @@ -8206,6 +7448,8 @@ Mk Mk Mk Mk +"} +(61,1,1) = {" Mk Mk Mk @@ -8232,7 +7476,53 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +wx +ju +ju +ju +wx +ju +cr +ju +wx +ju +ju +ju +wx +ju +ju Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +ju +wx +ju +ju Mk Mk Mk @@ -8250,8 +7540,6 @@ Mk Mk Mk Mk -"} -(69,1,1) = {" Mk Mk Mk @@ -8262,6 +7550,8 @@ Mk Mk Mk Mk +"} +(62,1,1) = {" Mk Mk Mk @@ -8292,7 +7582,49 @@ Mk Mk Mk Mk +ju +eN +eN +eN +ju +eN +eN +eN +ju +eN +eN +eN +ju +eN +eN +eN +ju Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +eN +eN +eN +ju Mk Mk Mk @@ -8320,6 +7652,8 @@ Mk Mk Mk Mk +"} +(63,1,1) = {" Mk Mk Mk @@ -8350,10 +7684,50 @@ Mk Mk Mk Mk +ju +eN +bz +kc +ju +eN +ED +kc +ju +eN +bm +kc +ju +eN +fL +kc +ju Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +eN +ha +kc +ju Mk -"} -(70,1,1) = {" Mk Mk Mk @@ -8380,6 +7754,8 @@ Mk Mk Mk Mk +"} +(64,1,1) = {" Mk Mk Mk @@ -8410,7 +7786,49 @@ Mk Mk Mk Mk +ju +eN +eN +eN +ju +eN +eN +eN +ju +eN +eN +eN +ju +eN +eN +eN +ju Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +eN +eN +eN +ju Mk Mk Mk @@ -8438,6 +7856,8 @@ Mk Mk Mk Mk +"} +(65,1,1) = {" Mk Mk Mk @@ -8454,8 +7874,6 @@ Mk Mk Mk Mk -"} -(71,1,1) = {" Mk Mk Mk @@ -8470,7 +7888,49 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +ju +ju +ju +ju Mk Mk Mk @@ -8498,6 +7958,8 @@ Mk Mk Mk Mk +"} +(66,1,1) = {" Mk Mk Mk @@ -8546,6 +8008,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -8556,8 +8039,6 @@ Mk Mk Mk Mk -"} -(72,1,1) = {" Mk Mk Mk @@ -8579,6 +8060,8 @@ Mk Mk Mk Mk +"} +(67,1,1) = {" Mk Mk Mk @@ -8627,6 +8110,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -8659,17 +8163,7 @@ Mk Mk Mk "} -(73,1,1) = {" -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk -Mk +(68,1,1) = {" Mk Mk Mk @@ -8718,6 +8212,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -8749,6 +8264,8 @@ Mk Mk Mk Mk +"} +(69,1,1) = {" Mk Mk Mk @@ -8760,8 +8277,6 @@ Mk Mk Mk Mk -"} -(74,1,1) = {" Mk Mk Mk @@ -8799,6 +8314,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -8830,6 +8366,8 @@ Mk Mk Mk Mk +"} +(70,1,1) = {" Mk Mk Mk @@ -8862,8 +8400,6 @@ Mk Mk Mk Mk -"} -(75,1,1) = {" Mk Mk Mk @@ -8880,6 +8416,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -8911,6 +8468,8 @@ Mk Mk Mk Mk +"} +(71,1,1) = {" Mk Mk Mk @@ -8959,13 +8518,32 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk Mk Mk -"} -(76,1,1) = {" Mk Mk Mk @@ -8992,6 +8570,8 @@ Mk Mk Mk Mk +"} +(72,1,1) = {" Mk Mk Mk @@ -9040,6 +8620,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9066,13 +8667,13 @@ Mk Mk Mk Mk -"} -(77,1,1) = {" Mk Mk Mk Mk Mk +"} +(73,1,1) = {" Mk Mk Mk @@ -9121,6 +8722,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9152,6 +8774,8 @@ Mk Mk Mk Mk +"} +(74,1,1) = {" Mk Mk Mk @@ -9168,8 +8792,6 @@ Mk Mk Mk Mk -"} -(78,1,1) = {" Mk Mk Mk @@ -9202,6 +8824,27 @@ Mk Mk Mk Mk +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju +Gc +ju Mk Mk Mk @@ -9233,6 +8876,8 @@ Mk Mk Mk Mk +"} +(75,1,1) = {" Mk Mk Mk @@ -9270,8 +8915,6 @@ Mk Mk Mk Mk -"} -(79,1,1) = {" Mk Mk Mk @@ -9283,6 +8926,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9314,6 +8978,8 @@ Mk Mk Mk Mk +"} +(76,1,1) = {" Mk Mk Mk @@ -9362,6 +9028,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9372,8 +9059,6 @@ Mk Mk Mk Mk -"} -(80,1,1) = {" Mk Mk Mk @@ -9395,6 +9080,8 @@ Mk Mk Mk Mk +"} +(77,1,1) = {" Mk Mk Mk @@ -9443,6 +9130,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9475,7 +9183,7 @@ Mk Mk Mk "} -(81,1,1) = {" +(78,1,1) = {" Mk Mk Mk @@ -9524,6 +9232,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9555,6 +9284,9 @@ Mk Mk Mk Mk +"} +(79,1,1) = {" +Mk Mk Mk Mk @@ -9576,8 +9308,6 @@ Mk Mk Mk Mk -"} -(82,1,1) = {" Mk Mk Mk @@ -9604,6 +9334,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9635,6 +9386,8 @@ Mk Mk Mk Mk +"} +(80,1,1) = {" Mk Mk Mk @@ -9678,13 +9431,32 @@ Mk Mk Mk Mk -"} -(83,1,1) = {" Mk Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9716,6 +9488,8 @@ Mk Mk Mk Mk +"} +(81,1,1) = {" Mk Mk Mk @@ -9764,6 +9538,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9780,8 +9575,6 @@ Mk Mk Mk Mk -"} -(84,1,1) = {" Mk Mk Mk @@ -9797,6 +9590,8 @@ Mk Mk Mk Mk +"} +(82,1,1) = {" Mk Mk Mk @@ -9845,6 +9640,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9876,14 +9692,14 @@ Mk Mk Mk Mk +"} +(83,1,1) = {" Mk Mk Mk Mk Mk Mk -"} -(85,1,1) = {" Mk Mk Mk @@ -9926,6 +9742,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -9957,6 +9794,8 @@ Mk Mk Mk Mk +"} +(84,1,1) = {" Mk Mk Mk @@ -9984,8 +9823,6 @@ Mk Mk Mk Mk -"} -(86,1,1) = {" Mk Mk Mk @@ -10007,6 +9844,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10038,6 +9896,8 @@ Mk Mk Mk Mk +"} +(85,1,1) = {" Mk Mk Mk @@ -10086,8 +9946,27 @@ Mk Mk Mk Mk -"} -(87,1,1) = {" +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10119,6 +9998,8 @@ Mk Mk Mk Mk +"} +(86,1,1) = {" Mk Mk Mk @@ -10167,6 +10048,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10188,8 +10090,6 @@ Mk Mk Mk Mk -"} -(88,1,1) = {" Mk Mk Mk @@ -10200,6 +10100,8 @@ Mk Mk Mk Mk +"} +(87,1,1) = {" Mk Mk Mk @@ -10248,6 +10150,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10279,6 +10202,8 @@ Mk Mk Mk Mk +"} +(88,1,1) = {" Mk Mk Mk @@ -10290,8 +10215,6 @@ Mk Mk Mk Mk -"} -(89,1,1) = {" Mk Mk Mk @@ -10329,6 +10252,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10360,6 +10304,8 @@ Mk Mk Mk Mk +"} +(89,1,1) = {" Mk Mk Mk @@ -10392,8 +10338,6 @@ Mk Mk Mk Mk -"} -(90,1,1) = {" Mk Mk Mk @@ -10410,6 +10354,27 @@ Mk Mk Mk Mk +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju +bJ +ju Mk Mk Mk @@ -10441,6 +10406,8 @@ Mk Mk Mk Mk +"} +(90,1,1) = {" Mk Mk Mk @@ -10489,13 +10456,32 @@ Mk Mk Mk Mk +ju +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju +Zl +Zl +Zl +ju +bJ +bJ +bJ +ju +bJ +bJ +bJ +ju Mk Mk Mk Mk Mk -"} -(91,1,1) = {" Mk Mk Mk @@ -10522,6 +10508,8 @@ Mk Mk Mk Mk +"} +(91,1,1) = {" Mk Mk Mk @@ -10570,6 +10558,27 @@ Mk Mk Mk Mk +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju +wx +ju +ju +ju +ju +ju +ju +ju +ju +ju +ju Mk Mk Mk @@ -10596,13 +10605,13 @@ Mk Mk Mk Mk -"} -(92,1,1) = {" Mk Mk Mk Mk Mk +"} +(92,1,1) = {" Mk Mk Mk @@ -10659,6 +10668,11 @@ Mk Mk Mk Mk +ju +eN +eN +eN +ju Mk Mk Mk @@ -10756,11 +10770,11 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -Mk +ju +eN +Iz +kc +ju Mk Mk Mk @@ -10858,11 +10872,11 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -Mk +ju +eN +eN +eN +ju Mk Mk Mk @@ -10960,11 +10974,11 @@ Mk Mk Mk Mk -Mk -Mk -Mk -Mk -Mk +ju +ju +ju +ju +ju Mk Mk Mk diff --git a/_maps/away/snowcabin.dmm b/_maps/away/snowcabin.dmm new file mode 100644 index 000000000000..0b6859cfb0c1 --- /dev/null +++ b/_maps/away/snowcabin.dmm @@ -0,0 +1,70762 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"ab" = ( +/turf/closed/indestructible/rock/snow, +/area/awaymission/cabin/caves/mountain) +"ac" = ( +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"ad" = ( +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin/lumbermill) +"ae" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"af" = ( +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ag" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"ah" = ( +/obj/structure/fence/door/opened, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"ai" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"aj" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/plaque/static_plaque/golden{ + desc = "Holding the record for about 500 years now."; + name = "The Most Annoying Organization Ever"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"ak" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"al" = ( +/obj/structure/table/wood, +/obj/structure/showcase/machinery/tv{ + desc = "A slightly battered looking TV. Various infomercials play on a loop, accompanied by a jaunty tune."; + name = "Television Screen" + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"am" = ( +/obj/structure/chair/comfy{ + color = "#B22222"; + dir = 8 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"an" = ( +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin) +"ao" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ap" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/wood, +/area/awaymission/cabin) +"aq" = ( +/turf/open/floor/wood, +/area/awaymission/cabin) +"ar" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Manager's Office" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"as" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"at" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"au" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/awaymission/cabin) +"av" = ( +/obj/machinery/telecomms/relay/preset/mining, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aw" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ax" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin) +"ay" = ( +/obj/machinery/light/small, +/obj/item/storage/backpack/bannerpack{ + pixel_y = 7 + }, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/awaymission/cabin) +"az" = ( +/turf/open/floor/carpet, +/area/awaymission/cabin) +"aA" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/awaymission/cabin) +"aB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"aC" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"aD" = ( +/obj/structure/cable, +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. It seems to be powered just fine without our intervention."; + name = "\improper Nanotrasen power storage unit" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aE" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/baseturf_helper/asteroid/snow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aF" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "cabin APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aG" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"aH" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"aI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/cabin) +"aJ" = ( +/obj/structure/table, +/obj/item/surgicaldrill, +/obj/item/circular_saw, +/obj/item/cautery, +/obj/item/surgical_drapes, +/obj/item/scalpel, +/obj/item/hemostat, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"aK" = ( +/obj/structure/table/optable, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"aL" = ( +/turf/open/floor/plating, +/area/awaymission/cabin) +"aM" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aN" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"aO" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"aP" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + desc = "Contains a large reservoir of soft drinks so that you can refill your cup. For free."; + name = "free refill dispenser" + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"aQ" = ( +/obj/structure{ + anchored = 1; + density = 1; + desc = "Generates power from lava!"; + dir = 1; + icon = 'icons/obj/atmospherics/pipes/simple.dmi'; + icon_state = "compressor"; + name = "geothermal generator" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aR" = ( +/obj/machinery/door/window/westright{ + name = "fireplace" + }, +/obj/structure/fireplace, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aS" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/item/caution, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aT" = ( +/obj/machinery/door/window/eastleft{ + name = "fireplace" + }, +/obj/structure/fireplace, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aU" = ( +/obj/structure/fireplace, +/obj/machinery/door/window/westright{ + name = "fireplace" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aV" = ( +/obj/machinery/space_heater, +/turf/open/floor/wood, +/area/awaymission/cabin) +"aW" = ( +/obj/structure/fireplace, +/obj/machinery/door/window/eastleft{ + name = "fireplace" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"aX" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"aY" = ( +/obj/structure/table/wood, +/obj/item/phone, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"aZ" = ( +/obj/structure/guncase/shotgun, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"ba" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/wood/glass{ + name = "Cabin" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bb" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bc" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bd" = ( +/obj/structure/chair/office, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"be" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bg" = ( +/obj/machinery/door/window/westleft{ + name = "manager's desk" + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bh" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bi" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "WheresTheSyndiBalloon"; + name = "Manager's Bedroom" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bj" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bk" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bl" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bm" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "snowdinbutworse5"; + name = "Cabin 5" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bo" = ( +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bp" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"br" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bs" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bt" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"bu" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bv" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bw" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"bx" = ( +/obj/machinery/smartfridge, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"by" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"bz" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"bA" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bB" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bC" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bD" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bE" = ( +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bF" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bH" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain, +/obj/item/soap/nanotrasen{ + pixel_x = -1; + pixel_y = -3 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bI" = ( +/turf/open/lava, +/area/awaymission/cabin/caves/mountain) +"bJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bK" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"bL" = ( +/obj/structure/bed, +/obj/item/bedsheet/nanotrasen, +/obj/item/clothing/suit/hooded/wintercoat/captain{ + name = "manager's winter coat" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bM" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bN" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bO" = ( +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"bP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"bS" = ( +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"bT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/instrument/guitar, +/obj/item/instrument/violin, +/obj/item/instrument/accordion, +/obj/item/instrument/trumpet, +/obj/structure/closet/crate/wooden, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bU" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garage" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"bW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"bX" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"bY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/processor, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"ce" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"cf" = ( +/obj/structure/table/wood, +/obj/item/toy/snowball, +/obj/item/toy/snowball{ + pixel_y = 8 + }, +/obj/item/toy/snowball{ + pixel_x = 8 + }, +/obj/item/toy/snowball{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/toy/snowball{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/toy/snowball{ + pixel_x = -5; + pixel_y = -2 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"cg" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"ch" = ( +/obj/structure/flora/stump{ + desc = "Breaking it should be easy."; + max_integrity = 20; + name = "old stump" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"ci" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cj" = ( +/obj/structure/table, +/obj/item/clothing/suit/hooded/wintercoat/hydro{ + name = "service winter coat"; + pixel_y = 4 + }, +/obj/item/clothing/suit/hooded/wintercoat/hydro{ + name = "service winter coat"; + pixel_y = 4 + }, +/obj/item/clothing/suit/hooded/wintercoat/hydro{ + name = "service winter coat"; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"ck" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"cl" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"cm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"co" = ( +/turf/open/chasm{ + desc = "I told you that you can't get past those doors."; + name = "anti-fun pit" + }, +/area/awaymission/cabin/caves/mountain) +"cp" = ( +/obj/machinery/gateway/away, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cr" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin) +"cs" = ( +/obj/structure/table/wood, +/obj/item/wrench, +/obj/item/soap, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ct" = ( +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cu" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"cv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"cx" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/cabin/caves/mountain) +"cy" = ( +/obj/structure/sign/poster/contraband/fun_police, +/turf/closed/indestructible/riveted, +/area/awaymission/cabin/caves/mountain) +"cz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/musician/piano{ + desc = "Very theatrical."; + icon_state = "piano"; + name = "theatre piano" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cA" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/wood{ + name = "Stage Left" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cB" = ( +/obj/machinery/door/window/eastleft, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cC" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cD" = ( +/obj/structure/sign/barsign{ + pixel_y = -32; + req_access = null + }, +/obj/machinery/door/window/westleft{ + name = "Bar" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cF" = ( +/obj/structure/table, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"cG" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"cH" = ( +/obj/effect/landmark/awaystart, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cI" = ( +/obj/structure/cable, +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"cJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"cK" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/drinks/sillycup/smallcarton{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cM" = ( +/obj/machinery/door/airlock/wood{ + name = "Gateway" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"cN" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"cO" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"cP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"cQ" = ( +/obj/effect/landmark/awaystart, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"cR" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"cS" = ( +/obj/machinery/button/door{ + id = "garage_cabin"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cT" = ( +/obj/vehicle/ridden/atv, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cV" = ( +/obj/vehicle/ridden/atv, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cW" = ( +/obj/item/shovel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"cY" = ( +/obj/vehicle/ridden/atv{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"cZ" = ( +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"da" = ( +/obj/structure/chair, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"db" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dc" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + desc = "A fancy bottle of vodka. The name isn't in Galactic Common though."; + name = "Porosha Vodka" + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dd" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + desc = "A comfortable, secure seat. It has a more sturdy looking buckling system, for making it harder to get dragged into the ring."; + name = "announcer seat" + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"de" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/hourglass, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"df" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dg" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"di" = ( +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dj" = ( +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/snowforest) +"dk" = ( +/obj/structure/chair, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dl" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dm" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dn" = ( +/obj/structure/table/reinforced, +/obj/item/megaphone/sec{ + name = "soviet megaphone" + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"do" = ( +/obj/structure/table/reinforced, +/obj/item/cigbutt/cigarbutt, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dp" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dr" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_containers/pill/patch/libital, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ds" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dt" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"du" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"dv" = ( +/obj/structure{ + anchored = 1; + density = 1; + desc = "Generates power from lava!"; + icon = 'icons/obj/atmospherics/pipes/simple.dmi'; + icon_state = "turbine"; + name = "geothermal generator" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"dw" = ( +/mob/living/simple_animal/hostile/bear/snow{ + desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; + melee_damage_lower = 10; + melee_damage_upper = 20; + name = "fat space polar bear"; + speed = 3 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dx" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"dy" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"dz" = ( +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/snowforest) +"dA" = ( +/turf/closed/wall/ice, +/area/awaymission/cabin/snowforest) +"dB" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin) +"dC" = ( +/obj/structure/fence, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"dD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"dE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dF" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dG" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dH" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"dI" = ( +/obj/structure/table, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dJ" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dK" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dL" = ( +/obj/structure/fence/door/opened, +/obj/structure/barricade/wooden/crude/snow, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"dM" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dN" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"dO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dP" = ( +/obj/item/shard, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dQ" = ( +/obj/item/lighter/greyscale, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dS" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dT" = ( +/obj/item/broken_bottle, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dU" = ( +/obj/item/chair, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dV" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dW" = ( +/obj/item/reagent_containers/pill/patch/libital, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"dX" = ( +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/snowforest) +"dY" = ( +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/snowforest) +"dZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/mob/living/simple_animal/hostile/bear/snow{ + desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; + melee_damage_lower = 10; + melee_damage_upper = 20; + name = "fat space polar bear"; + speed = 3 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ea" = ( +/obj/item/food/fishmeat/carp, +/obj/item/food/fishmeat/carp, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/snowforest) +"eb" = ( +/obj/structure/closet, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ec" = ( +/obj/machinery/light, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ed" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ee" = ( +/obj/machinery/light, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"ef" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"eg" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"eh" = ( +/obj/machinery/door/airlock/wood/glass, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ei" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ej" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"ek" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/snowforest) +"el" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin) +"em" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"en" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin) +"eo" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ep" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin) +"eq" = ( +/obj/machinery/door/poddoor/shutters{ + id = "garage_cabin"; + name = "garage door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin) +"er" = ( +/obj/effect/turf_decal/weather/snow/corner, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin) +"es" = ( +/obj/structure/fluff/fokoff_sign, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"et" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/cabin) +"eu" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ev" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/glass/rag, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ew" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ex" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ey" = ( +/obj/structure/sign/warning/nosmoking/circle, +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin/snowforest) +"ez" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eA" = ( +/obj/structure/table/wood, +/obj/item/chainsaw, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"eB" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"eC" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eD" = ( +/obj/structure/bonfire/dense{ + desc = "Multiple logs thrown together into a pile hastily. Let's burn it for fun!."; + name = "pile of logs" + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eE" = ( +/obj/structure/table/wood, +/obj/item/grown/log/tree{ + pixel_x = -7 + }, +/obj/item/grown/log/tree, +/obj/item/grown/log/tree{ + pixel_x = 7 + }, +/obj/item/grown/log/tree{ + pixel_x = 14 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eF" = ( +/obj/structure/table/wood, +/obj/item/grown/log/tree{ + pixel_x = -7 + }, +/obj/item/grown/log/tree, +/obj/item/grown/log/tree{ + pixel_x = 7 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eG" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"eH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/lumbermill) +"eI" = ( +/obj/effect/turf_decal/stripes/red/corner, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eJ" = ( +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eK" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "lumbermill" + }, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eL" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eM" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eN" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/awaymission/cabin) +"eO" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass3"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"eP" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"eQ" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "If I forgot where the gateway was then I can just call the station with this phone! Wait, where's the phone lines?"; + name = "phone" + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"eR" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "lumbermill" + }, +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/lumbermill) +"eS" = ( +/obj/machinery/recycler/lumbermill{ + desc = "Is better at killing people than cutting logs, for some reason." + }, +/obj/machinery/conveyor{ + dir = 4; + id = "lumbermill" + }, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/lumbermill) +"eT" = ( +/obj/structure/closet/crate/wooden{ + anchored = 1 + }, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/lumbermill) +"eU" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eV" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eW" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/item/wrench, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eX" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"eY" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"eZ" = ( +/obj/structure/closet/crate/wooden, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/obj/item/stack/sheet/mineral/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"fa" = ( +/obj/structure/fence, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"fb" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"fc" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"fd" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"fe" = ( +/obj/structure/table/wood, +/obj/item/shovel, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ff" = ( +/obj/structure/table/wood, +/obj/item/key/atv, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"fg" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fh" = ( +/obj/machinery/computer/prisoner{ + desc = "Used to manage tracking implants placed inside criminals and the prison cells."; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fi" = ( +/obj/item/trash/can, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"fk" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fl" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fn" = ( +/obj/machinery/vending/sustenance{ + desc = "A vending machine which vends food."; + name = "\improper Snack Machine"; + product_ads = "Sufficiently healthy.;Mmm! So good!;Have a meal.;You need food to live!"; + product_slogans = "Enjoy your meal." + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/displaycase{ + start_showpiece_type = /obj/item/dice/d6/space; + trophy_message = "Stolen from dice collector before he could enjoy his day." + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"ft" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fw" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fx" = ( +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fy" = ( +/turf/closed/indestructible/fakedoor{ + desc = "It looks like there really is no way out this time."; + name = "Cell Block Y8" + }, +/area/awaymission/cabin/caves/mountain) +"fz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fA" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fB" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fC" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fD" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/snowforest) +"fE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/ladder/unbreakable{ + desc = "Who left the grate open?"; + height = 1; + icon_state = "ladder01"; + id = "dealwentoffwithoutahitchBRO"; + name = "Grate"; + pixel_y = -10 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"fH" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"fI" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"fJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fL" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse{ + faction = list("sewer") + }, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"fM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fP" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/cabin/caves/mountain) +"fQ" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7210" + }, +/area/awaymission/cabin/caves/mountain) +"fR" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7211" + }, +/area/awaymission/cabin/caves/mountain) +"fS" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7212" + }, +/area/awaymission/cabin/caves/mountain) +"fT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/fulltile{ + desc = "Enjoy the view."; + name = "window" + }, +/turf/open/floor/plating, +/area/awaymission/cabin/caves/mountain) +"fU" = ( +/obj/machinery/door/airlock/centcom{ + desc = "Look at what you have done."; + max_integrity = 2000; + name = "Jail Cell 7213" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"fV" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7214" + }, +/area/awaymission/cabin/caves/mountain) +"fW" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7215" + }, +/area/awaymission/cabin/caves/mountain) +"fX" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7216" + }, +/area/awaymission/cabin/caves/mountain) +"fY" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Jail."; + name = "Jail Cell 7217" + }, +/area/awaymission/cabin/caves/mountain) +"fZ" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"ga" = ( +/mob/living/simple_animal/hostile/bear/snow{ + desc = "It's a polar bear, in space, but not actually in space. It's actually on a planet. This is a planet."; + melee_damage_lower = 10; + melee_damage_upper = 20; + name = "fat space polar bear"; + speed = 3; + wander = 0 + }, +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/snowforest) +"gb" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"gc" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Eh, I don't think trying to get past it is worth it anyways."; + name = "Flood Gate" + }, +/area/awaymission/cabin/caves/mountain) +"gd" = ( +/turf/open/indestructible/binary{ + density = 1; + desc = "No, I am not going through this."; + icon = 'icons/misc/beach.dmi'; + icon_state = "water"; + name = "dirty water" + }, +/area/awaymission/cabin/caves/mountain) +"ge" = ( +/obj/item/toy/spinningtoy{ + anchored = 1; + desc = "He keeps breaking out somehow due to the help of cultists that utilize cargo shipments or atmospherical sabotage." + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gg" = ( +/obj/item/gun/ballistic/automatic/toy{ + anchored = 1; + desc = "Don't try it."; + name = "\improper Nanotrasen Saber SMG" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gh" = ( +/obj/structure/sign/poster/contraband/free_drone{ + desc = "This poster seems to be meant for a bunch of machines that used to be deployed on space stations." + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gj" = ( +/obj/structure/ladder/unbreakable/rune{ + alpha = 0; + color = "#000000"; + desc = "It is time to bust out of this joint"; + height = 1; + id = "whatkindofnerdusesmapmakertocheattheirwaytoateleportrune"; + mouse_opacity = 0; + name = "\improper secret escape route" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gk" = ( +/obj/structure/easel{ + desc = "An ancient canvas that was used to produce art so fine, the universe can't handle it!"; + name = "Ancient Canvas Art" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/nullrod/claymore/multiverse{ + anchored = 1; + force = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gm" = ( +/obj/structure/fluff/empty_sleeper{ + desc = "An open sleeper. It looks as though it would be awaiting another patient."; + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"gn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/showcase/mecha/marauder{ + desc = "Used by vigilantes in the past to fight ruffians causing trouble in neighborhoods and space stations."; + icon_state = "seraph"; + name = "illegally acquired seraph" + }, +/turf/open/indestructible, +/area/awaymission/cabin/caves/mountain) +"go" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"gp" = ( +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"gq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gr" = ( +/turf/open/indestructible{ + icon_state = "plating"; + name = "plating" + }, +/area/awaymission/cabin/caves/mountain) +"gs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"gt" = ( +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/awaymission/cabin/caves/mountain) +"gu" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/security, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gv" = ( +/obj/structure/ladder/unbreakable{ + desc = "Finally."; + icon_state = "ladder10"; + id = "whyisitcalledladder10andnotladder1"; + name = "Freedom" + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/indestructible{ + icon_state = "plating"; + name = "plating" + }, +/area/awaymission/cabin/caves/mountain) +"gw" = ( +/obj/structure/barricade/wooden/crude{ + desc = "Buffing things is illegal for it causes fun." + }, +/turf/closed/indestructible/fakedoor{ + desc = "The room for buffing things."; + name = "Exercise Room" + }, +/area/awaymission/cabin/caves/mountain) +"gx" = ( +/turf/closed/indestructible/rock/snow/ice, +/area/awaymission/cabin/caves/mountain) +"gy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder/unbreakable{ + desc = "Yeah, I'll just go back to jail instead of this. It's not like there is an escape out of here, right?"; + icon_state = "ladder10"; + id = "dealwentoffwithoutahitchBRO"; + name = "Sewer Ladder" + }, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gz" = ( +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/security, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gC" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/rock/snow/ice, +/area/awaymission/cabin/caves/mountain) +"gD" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/shreds, +/turf/open/indestructible{ + icon_state = "plating"; + name = "plating" + }, +/area/awaymission/cabin/caves/mountain) +"gE" = ( +/turf/closed/indestructible/fakedoor{ + desc = "I think that intercomm could open the door."; + name = "Hallway Y8" + }, +/area/awaymission/cabin/caves/mountain) +"gF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/structure/signpost/salvation{ + density = 0; + desc = "An intercomm. Someone seems to be on the other end. I should use it."; + icon = 'icons/obj/radio.dmi'; + icon_state = "intercom"; + max_integrity = 99999; + name = "\proper Fun Jail intercom"; + pixel_y = 32; + question = "We have a case of fun happening. Get out there and do your job." + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/poster/official/space_cops{ + pixel_y = 32 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/mop, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/food/egg/rainbow{ + desc = "Was an egg really worth this much effort?"; + name = "easter egg" + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/awaymission/cabin) +"gM" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/item/key/atv, +/obj/item/key/atv, +/obj/item/key/atv, +/obj/item/key/atv, +/obj/item/key/atv, +/obj/item/key/atv, +/turf/open/floor/plating, +/area/awaymission/cabin) +"gN" = ( +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/awaymission/cabin) +"gO" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"gP" = ( +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"gQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/banhammer{ + desc = "I'm sorry, sir, but fun actions are illegal."; + name = "fun baton" + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gR" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass2"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"gS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/head/helmet/police{ + armor = list("melee" = 5, "bullet" = 5, "laser" = 5, "energy" = 2, "bomb" = 15, "bio" = 0, "rad" = 0, "fire" = 20, "acid" = 20); + desc = "I am the law!" + }, +/obj/structure/closet{ + anchored = 1; + name = "uniform closet" + }, +/obj/item/clothing/under/rank/security/officer/spacepol{ + armor = list("melee" = 2, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0, "fire" = 10, "acid" = 10); + desc = "Anyone enjoying their time while working in a megacorporation, planetary government, or band of pirates is under the jurisdiction of the fun police." + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/cabin/caves/mountain) +"gT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"gU" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass_sw"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"gW" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"gX" = ( +/obj/structure/flora/stump{ + desc = "Breaking it should be easy."; + max_integrity = 20; + name = "old stump" + }, +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/snowforest) +"gY" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/hooded/wintercoat/hydro, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/head/hardhat, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"gZ" = ( +/obj/item/chair/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ha" = ( +/obj/structure/chair/wood/wings{ + name = "dealer chair" + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hb" = ( +/obj/structure/table/wood/fancy, +/obj/item/coin{ + desc = "Looks old."; + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hc" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hd" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"he" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hf" = ( +/obj/machinery/space_heater, +/obj/effect/decal/remains/robot, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hg" = ( +/obj/machinery/door/airlock/maintenance{ + name = "janitor closet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hh" = ( +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hi" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"hj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hk" = ( +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hl" = ( +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hm" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/wood{ + name = "Gateway" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hn" = ( +/obj/structure/sign/poster/official/high_class_martini{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ho" = ( +/obj/item/wrench/medical, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"hp" = ( +/obj/machinery/stasis, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"hq" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"hr" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/generic, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ht" = ( +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hu" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/cold, +/obj/item/clothing/glasses/cold, +/obj/item/clothing/glasses/cold, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hv" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hw" = ( +/obj/structure/closet/toolcloset, +/obj/item/lightreplacer, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hx" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/wood{ + name = "Stage Right" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "heater storage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"hz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/cabin) +"hA" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/freezer{ + name = "Freezer" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"hB" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Backstage" + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hC" = ( +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hD" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/folder/white, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"hE" = ( +/obj/structure/cable, +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hF" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hG" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"hH" = ( +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hI" = ( +/obj/effect/landmark/awaystart, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"hJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/indestructible{ + icon_state = "plating"; + name = "bridge" + }, +/area/awaymission/cabin/caves/mountain) +"hK" = ( +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"hL" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/snow, +/area/awaymission/cabin/caves/mountain) +"hM" = ( +/turf/closed/wall/mineral/snow, +/area/awaymission/cabin/caves/mountain) +"hN" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"hO" = ( +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"hP" = ( +/obj/item/candle/infinite, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"hQ" = ( +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"hR" = ( +/obj/structure/reagent_dispensers/beerkeg{ + desc = "Hey, CentCom, we located our complimentary case of space beer! The pamphlet didn't lie!"; + name = "complimentary keg of space beer" + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"hS" = ( +/mob/living/simple_animal/hostile/tree{ + desc = "I am death. I will have my vengeance upon my enemies."; + melee_damage_upper = 8; + wander = 0 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"hT" = ( +/obj/structure/statue/snow/snowlegion{ + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"hU" = ( +/obj/item/toy/figure/clown{ + desc = "Shut up, we don't talk about him."; + name = "exploration squad Clown" + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"hV" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + name = "Who" + }, +/obj/item/clothing/head/helmet/knight/yellow{ + armor = list("melee" = 11, "bullet" = 2, "laser" = 1, "energy" = 1, "bomb" = 5, "bio" = 2, "rad" = 0, "fire" = 0, "acid" = 10); + desc = "A classic metal helmet. The cold has made it unreliable though."; + name = "old medieval helmet"; + pixel_y = 7 + }, +/obj/item/claymore/weak/ceremonial{ + desc = "Brought to you by the guys in charge of making replica katana toys!"; + force = 1; + layer = 3.01; + name = "replica claymore"; + pixel_x = 5; + pixel_y = 8; + throwforce = 2 + }, +/obj/item/shield/riot/roman/fake{ + layer = 3.01; + pixel_x = -7 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"hW" = ( +/obj/item/toy/figure/borg{ + desc = "The robot that was manufactured just for this exploration team."; + name = "exploration squad Cyborg"; + pixel_x = 8; + toysay = "I. AM. ALIVE." + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"hX" = ( +/obj/item/clothing/suit/armor/vest/russian_coat{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"hY" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/reagent_containers/pill/patch/libital, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"hZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ia" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard/plasma, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ib" = ( +/obj/item/hatchet/wooden, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ic" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/trash/popcorn{ + pixel_y = 12 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"id" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ie" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"if" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ig" = ( +/obj/item/toy/figure/dsquad{ + desc = "The muscle behind the exploration team. May or may not be a secret soldier depending on the mood of Nanotrasen following their own lore."; + name = "exploration squad Officer"; + toysay = "We're top secret until we're not!" + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"ih" = ( +/obj/item/toy/figure/md{ + desc = "The doctor that got volunteered to join the exploration team."; + name = "exploration squad Medic"; + pixel_x = -8; + toysay = "Guess I'll be useless until stuns are involved!" + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"ii" = ( +/turf/closed/indestructible/syndicate, +/area/awaymission/cabin/caves/sovietcave) +"ij" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ik" = ( +/obj/structure/door_assembly/door_assembly_vault{ + anchored = 1; + name = "vault door" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"il" = ( +/obj/item/toy/prize/deathripley{ + desc = "The mining mecha of the exploration team."; + name = "exploraton squad Ripley"; + pixel_y = 15 + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"im" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"in" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"io" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ip" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/hatch, +/obj/structure/barricade/wooden, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"iq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/mob/living/simple_animal/hostile/hivebot/range{ + desc = "Looks like he's been left behind."; + faction = list("russian"); + maxHealth = 5; + name = "soviet machine" + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"ir" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/barricade/sandbags, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"is" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"it" = ( +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"iu" = ( +/obj/item/grenade/barrier{ + pixel_x = -14; + pixel_y = 14 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"iv" = ( +/turf/closed/wall/mineral/snow, +/area/awaymission/cabin/caves) +"iw" = ( +/obj/structure/floodlight_frame, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"ix" = ( +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"iy" = ( +/obj/item/paper/pamphlet/gateway, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"iz" = ( +/turf/closed/wall/ice, +/area/awaymission/cabin/caves) +"iA" = ( +/obj/structure/frame/machine, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iB" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iC" = ( +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iD" = ( +/obj/structure/closet/acloset, +/obj/item/clothing/suit/hooded/bloated_human, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iE" = ( +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"iF" = ( +/obj/item/shovel{ + desc = "A large tool for digging and moving snow."; + force = 10; + name = "eskimo shovel" + }, +/obj/effect/decal/remains/human{ + color = "#72e4fa" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"iG" = ( +/obj/structure/fluff/iced_abductor, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iH" = ( +/obj/structure/table/glass, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iI" = ( +/obj/structure/closet/acloset, +/obj/item/toy/foamblade, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iJ" = ( +/obj/structure/bed/alien, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"iK" = ( +/obj/structure/flora/rock/icy{ + desc = "A mountain rock." + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"iL" = ( +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"iM" = ( +/turf/open/floor/wood, +/area/awaymission/cabin/caves) +"iN" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"iO" = ( +/obj/structure/chair, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"iP" = ( +/obj/structure/sign/picture_frame{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin/caves) +"iQ" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/cabin/caves) +"iR" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = -7; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iT" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iU" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iV" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "snowdinbutworse1"; + name = "Cabin 1" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iW" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "snowdinbutworse2"; + name = "Cabin 2" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iX" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "snowdinbutworse3"; + name = "Cabin 3" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iY" = ( +/obj/machinery/door/airlock/wood{ + id_tag = "snowdinbutworse4"; + name = "Cabin 4" + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/awaymission/cabin) +"iZ" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity10" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"ja" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity20" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"jb" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity30" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"jc" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity40" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"jd" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity50" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"je" = ( +/obj/structure/window/reinforced/fulltile/ice{ + name = "frozen window" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "fightingcommunity60" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) +"jf" = ( +/obj/machinery/button/door{ + id = "fightingcommunity60"; + name = "shutter button"; + pixel_x = -8; + pixel_y = 30 + }, +/obj/machinery/button/door{ + id = "WheresTheSyndiBalloon"; + name = "airlock button"; + pixel_x = 8; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jg" = ( +/obj/machinery/button/door{ + id = "snowdinbutworse2"; + name = "airlock button"; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jh" = ( +/obj/machinery/button/door{ + id = "snowdinbutworse1"; + name = "airlock button"; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ji" = ( +/obj/machinery/button/door{ + id = "snowdinbutworse3"; + name = "airlock button"; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jj" = ( +/obj/machinery/button/door{ + id = "snowdinbutworse4"; + name = "airlock button"; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jk" = ( +/obj/machinery/button/door{ + id = "snowdinbutworse5"; + name = "airlock button"; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jl" = ( +/obj/machinery/button/door{ + id = "fightingcommunity10"; + name = "shutter button"; + pixel_x = -28; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jm" = ( +/obj/machinery/button/door{ + id = "fightingcommunity20"; + name = "shutter button"; + pixel_x = 28; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jn" = ( +/obj/machinery/button/door{ + id = "fightingcommunity30"; + name = "shutter button"; + pixel_x = -28; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jo" = ( +/obj/machinery/button/door{ + id = "fightingcommunity40"; + name = "shutter button"; + pixel_x = 28; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jp" = ( +/obj/machinery/button/door{ + id = "fightingcommunity50"; + name = "shutter button"; + pixel_x = -28; + pixel_y = 30 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jq" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical{ + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hooded/wintercoat/medical{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"jr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + anchored = 1 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/zebra, +/turf/open/floor/wood, +/area/awaymission/cabin) +"js" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"jt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + anchored = 1 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/scarf/christmas, +/turf/open/floor/wood, +/area/awaymission/cabin) +"ju" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + anchored = 1 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/stripedbluescarf, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + anchored = 1 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/stripedgreenscarf, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + anchored = 1 + }, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/neck/stripedredscarf, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jx" = ( +/obj/structure/table/wood/poker, +/obj/item/dice/d6{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"jy" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jz" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/red, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jA" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = -7 + }, +/obj/item/folder/blue{ + pixel_x = 7 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jB" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jC" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Generator Room" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/awaymission/cabin) +"jD" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/gas/explorer, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jE" = ( +/obj/structure/closet/crate/bin, +/obj/item/tank/internals/emergency_oxygen/engi/empty, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"jF" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/tray, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jG" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/pistachios, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jH" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/can, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jI" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jJ" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/cheesie, +/turf/open/floor/wood, +/area/awaymission/cabin) +"jK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mine/stun, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"jL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"jM" = ( +/obj/machinery/space_heater, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"jO" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jP" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jQ" = ( +/obj/structure/table/wood, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = -16; + pixel_y = 32 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jR" = ( +/obj/structure/table/wood, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -3; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 3; + throwforce = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jS" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/brute, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jT" = ( +/obj/structure/table/wood, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jU" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jV" = ( +/mob/living/simple_animal/bot/firebot, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jW" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/floragun, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jX" = ( +/obj/structure/table/wood, +/obj/item/pizzabox/vegetable{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jY" = ( +/obj/structure/table/wood, +/obj/item/razor{ + pixel_y = 3 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"jZ" = ( +/obj/structure/table/wood, +/obj/item/extinguisher{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ka" = ( +/obj/structure/table/wood, +/obj/item/extinguisher, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kb" = ( +/obj/structure/table/wood, +/obj/item/flashlight{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kc" = ( +/obj/structure/table/wood, +/obj/item/flashlight{ + pixel_y = 2 + }, +/obj/item/flashlight{ + pixel_y = 15 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kd" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/construction{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"ke" = ( +/obj/structure/table/wood, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 7 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kf" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kg" = ( +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin) +"kh" = ( +/obj/structure/flora/rock/icy{ + desc = "A mountain rock." + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/snowforest) +"ki" = ( +/turf/open/floor/wood/cold, +/area/awaymission/cabin/caves) +"kj" = ( +/obj/structure/mineral_door/wood, +/turf/open/floor/wood, +/area/awaymission/cabin/caves) +"kk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/wood, +/area/awaymission/cabin) +"kl" = ( +/obj/structure/bonfire, +/turf/open/floor/plating, +/area/awaymission/cabin/caves) +"km" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/cabin/caves) +"kn" = ( +/obj/structure/sign{ + pixel_x = 32 + }, +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"ko" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/caves) +"kt" = ( +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"kv" = ( +/obj/structure/barricade/wooden/snowed, +/obj/structure/barricade/wooden/crude/snow, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kw" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"kx" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ky" = ( +/obj/structure/flora/stump{ + desc = "Breaking it should be easy."; + max_integrity = 20; + name = "old stump" + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kz" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + name = "What" + }, +/obj/item/clothing/head/wizard/fake{ + pixel_x = -1; + pixel_y = 13 + }, +/obj/item/staff{ + layer = 3.01 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/snowforest) +"kB" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + name = "I Don't Know" + }, +/obj/item/clothing/head/bishopmitre{ + pixel_x = -1; + pixel_y = 16 + }, +/obj/item/gun/magic/wand{ + desc = "It's just a fancy staff so that holy clerics and priests look cool. What? You didn't think someone would leave a REAL magic artifact with a snowman out in the cold, did you?"; + icon_state = "revivewand"; + layer = 3.01; + name = "holy staff"; + pixel_y = -2 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kC" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + name = "Because" + }, +/obj/item/clothing/head/scarecrow_hat{ + desc = "A replica straw hat that isn't actually made out of straw"; + name = "synthetic straw hat"; + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/gun/ballistic/shotgun/toy/unrestricted{ + pixel_y = -2 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kD" = ( +/obj/structure/table/wood, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -7; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = -3; + throwforce = 4 + }, +/obj/item/hatchet{ + desc = "A decent axe blade upon a short fibremetal handle. It has a long history of chopping things, but now it is used for chopping wood."; + force = 4; + name = "weak hatchet"; + pixel_x = 3; + throwforce = 4 + }, +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = 16; + pixel_y = -32 + }, +/turf/open/floor/wood/cold, +/area/awaymission/cabin/lumbermill) +"kE" = ( +/obj/structure/closet, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plating, +/area/awaymission/cabin) +"kF" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/assembly/infra, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kJ" = ( +/obj/effect/decal/hammerandsickle, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kK" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/head/helmet/rus_ushanka, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"kN" = ( +/turf/open/floor/plating, +/area/awaymission/cabin/caves/sovietcave) +"kO" = ( +/obj/item/bear_armor, +/turf/open/floor/plating, +/area/awaymission/cabin/caves/sovietcave) +"kP" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + name = "Why" + }, +/obj/item/clothing/head/bandana{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/throwing_star{ + desc = "I better not rely on this being useful."; + force = 1; + name = "frozen throwing star"; + throwforce = 1 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kQ" = ( +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"kS" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kT" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kU" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kV" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kW" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"kY" = ( +/obj/effect/decal/remains/human, +/obj/item/shovel, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"kZ" = ( +/obj/effect/decal/cleanable/insectguts, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/mob/living/simple_animal/hostile/skeleton{ + desc = "Oh shit!"; + dir = 1; + faction = list("sewer"); + name = "sewer skeleton"; + wander = 0 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin/caves/mountain) +"la" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/crowbar/large, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lb" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"lc" = ( +/turf/closed/indestructible/fakedoor{ + desc = "I can't get past this."; + name = "Reinforced Soviet Hatch" + }, +/area/awaymission/cabin/caves/sovietcave) +"ld" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"le" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lf" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/structure/statue/snow/snowlegion{ + anchored = 1; + desc = "It's still alive."; + icon_state = "snowlegion_alive" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lg" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lh" = ( +/obj/effect/decal/remains/human, +/obj/item/reagent_containers/spray/pepper/empty, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"li" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lj" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lk" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ll" = ( +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lm" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ln" = ( +/obj/item/weldingtool/mini, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lo" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lp" = ( +/obj/structure/statue/snow/snowlegion{ + anchored = 1; + desc = "It's still alive."; + icon_state = "snowlegion_alive" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lq" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/mob/living/simple_animal/hostile/netherworld/statue{ + desc = "Just a snowman. Just a snowman. Oh god, it's just a snowman."; + faction = list("statue","mining"); + health = 5000; + icon_dead = "snowman"; + icon_living = "snowman"; + icon_state = "snowman"; + loot = list(/obj/item/dnainjector/geladikinesis); + maxHealth = 5000; + melee_damage_lower = 65; + melee_damage_upper = 65; + name = "Frosty" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/kitchen/knife/shiv/carrot, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ls" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/melee/baseball_bat, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lt" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/structure/statue/snow/snowlegion{ + anchored = 1; + desc = "It's still alive."; + icon_state = "snowlegion_alive" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lu" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lv" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/cleanable/molten_object/large, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lw" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/item/clothing/head/helmet/skull{ + armor = list("melee" = 15, "bullet" = 5, "laser" = 5, "energy" = 2, "bomb" = 10, "bio" = 5, "rad" = 20, "fire" = 20, "acid" = 20); + desc = "It's not bloody for some reason. Dear god."; + name = "human skull" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lx" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ly" = ( +/obj/item/chair/stool, +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lz" = ( +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"lA" = ( +/obj/effect/decal/cleanable/glitter/blue{ + desc = "It looks like fancy glitter to me."; + name = "icy wind" + }, +/obj/effect/decal/remains/xeno/larva, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lB" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1; + desc = "You didn't seriously examine each snowman to see if their description is different, did you?" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "lumbermill" + }, +/obj/effect/turf_decal/stripes/red/full, +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/lumbermill) +"lE" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/hatchet/wooden, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lF" = ( +/obj/effect/mine/stun, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/grenade/chem_grenade/large, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lH" = ( +/obj/effect/decal/remains/human, +/obj/structure/light_construct, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lI" = ( +/obj/structure/light_construct, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lJ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human{ + desc = "They look like human remains. They're covered in scratch marks."; + name = "mangled remains" + }, +/obj/effect/decal/cleanable/shreds, +/obj/effect/decal/cleanable/shreds{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/shreds{ + pixel_x = -3; + pixel_y = -5 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lK" = ( +/obj/item/pickaxe{ + desc = "It's almost broken."; + force = 8; + name = "damaged pickaxe"; + throwforce = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lL" = ( +/obj/effect/decal/remains/human, +/obj/item/pickaxe{ + desc = "It's almost broken."; + force = 8; + name = "damaged pickaxe"; + throwforce = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lM" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/shovel, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lN" = ( +/obj/item/pickaxe/drill, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lP" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/closed/wall/ice, +/area/awaymission/cabin/caves) +"lQ" = ( +/obj/structure/sign/warning/enginesafety{ + desc = "A sign detailing the various safety protocols when working on-site to ensure a safe shift. It seems to particularly focus on how dangerous the sawblade is."; + name = "\improper LUMBERMILL SAFETY" + }, +/turf/closed/wall/mineral/wood, +/area/awaymission/cabin/lumbermill) +"lR" = ( +/obj/structure/closet/crate/wooden{ + desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; + name = "wooden box" + }, +/obj/item/paper{ + info = "Moving these crates through a tunnel that isn't even finished yet is really annoying. It's such a pain in the ass to haul even a single crate to the cabin. It made sense to haul food and other goods however these are fake fucking trophies. Why do they even need these fake artifacts for some asshole's trophy case? We'll just leave the crates in the cave that has all those bones inside. Fuck it."; + name = "Shipment Delivery Note" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/spider/stickyweb, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"lT" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Seriously, I can't map an entire soviet bunker and new landscape for you. You can't get past this."; + name = "Soviet Hatch" + }, +/area/awaymission/cabin/caves/sovietcave) +"lW" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"lX" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/caves) +"lY" = ( +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/caves) +"lZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow{ + name = "packed snow"; + slowdown = 0 + }, +/area/awaymission/cabin/caves) +"ma" = ( +/obj/structure/flora/stump{ + desc = "Breaking it should be easy."; + max_integrity = 20; + name = "old stump" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mc" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass2"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"md" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"me" = ( +/obj/structure/flora{ + desc = "Looks frozen."; + icon = 'icons/obj/flora/snowflora.dmi'; + icon_state = "snowgrass3"; + name = "frozen flora" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"mg" = ( +/mob/living/simple_animal/hostile/bear/russian{ + desc = "He'll hold the line against you!"; + light_range = 3; + melee_damage_upper = 25; + name = "Artyom"; + speak = list("Blyat!","Rawr!","GRR!","Growl!"); + wander = 0 + }, +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"mh" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow{ + floor_variance = 0; + icon_state = "snow_dug"; + slowdown = 1 + }, +/area/awaymission/cabin/caves) +"mi" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/shreds{ + pixel_x = 10; + pixel_y = -12 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mj" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/generic{ + pixel_x = -17 + }, +/obj/effect/decal/cleanable/shreds{ + pixel_y = -12 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mk" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/sign/nanotrasen, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"ml" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mm" = ( +/obj/structure/fence/door, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mn" = ( +/obj/structure/fence/cut/large{ + dir = 4 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mo" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mp" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mq" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/generic{ + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/shreds{ + pixel_y = -12 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mr" = ( +/obj/effect/decal/cleanable/shreds{ + pixel_x = -12; + pixel_y = -12 + }, +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"ms" = ( +/turf/closed/indestructible/rock/snow/ice, +/area/awaymission/cabin/caves) +"mt" = ( +/obj/structure/fence, +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mu" = ( +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mv" = ( +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mw" = ( +/obj/structure/sign/warning{ + name = "\improper SAWBLADE WARNING"; + pixel_x = -32 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"my" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/gun/ballistic/automatic/surplus{ + desc = "Uses 10mm ammo and its bulky frame prevents one-hand firing. It has the word CHEKOV engraved on the stock."; + name = "chekov's rifle" + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mz" = ( +/obj/structure/fence/end, +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mA" = ( +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/closed/wall/ice, +/area/awaymission/cabin/caves) +"mB" = ( +/turf/open/floor/plating/snowed/smoothed, +/area/awaymission/cabin/caves) +"mC" = ( +/obj/item/flashlight/flare, +/obj/effect/light_emitter{ + name = "cave light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mD" = ( +/obj/structure/closet/crate/wooden{ + desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; + name = "wooden box" + }, +/obj/item/fakeartefact, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mE" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/turf/closed/indestructible/rock/snow, +/area/awaymission/cabin/caves) +"mF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 5 + }, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/plasteel/dark/snowdin, +/area/awaymission/cabin/caves) +"mG" = ( +/obj/effect/turf_decal/weather/snow, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/plasteel/dark/snowdin, +/area/awaymission/cabin/caves) +"mH" = ( +/mob/living/simple_animal/hostile/skeleton/ice{ + desc = "A reanimated skeleton covered in thick sheet of natural ice. It is obvious to tell that they look really slow."; + maxHealth = 20; + melee_damage_lower = 5; + melee_damage_upper = 5; + name = "frozen skeleton"; + speed = 7; + wander = 0 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"mI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mJ" = ( +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/plasteel/dark/snowdin, +/area/awaymission/cabin/caves) +"mK" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Seriously, You can't get past this."; + name = "Soviet Hatch" + }, +/area/awaymission/cabin/caves/sovietcave) +"mM" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mN" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mP" = ( +/turf/closed/indestructible/rock/snow, +/area/awaymission/cabin/caves) +"mQ" = ( +/obj/structure/closet/crate/wooden{ + desc = "Gotta know what waits within! Could it be a secret treasure cache or a deadly tool of sin?"; + name = "wooden box" + }, +/obj/item/fakeartefact, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"mR" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mS" = ( +/obj/machinery/door/airlock/vault{ + desc = "Made by the Russians."; + name = "Soviet Door" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"mT" = ( +/mob/living/simple_animal/hostile/skeleton/ice{ + desc = "A reanimated skeleton covered in thick sheet of natural ice. It is obvious to tell that they look really slow."; + maxHealth = 20; + melee_damage_lower = 5; + melee_damage_upper = 5; + name = "frozen skeleton"; + speed = 7; + wander = 0 + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"mU" = ( +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"mV" = ( +/obj/effect/turf_decal/weather/snow, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel/dark/snowdin, +/area/awaymission/cabin/caves) +"mW" = ( +/obj/effect/turf_decal/weather/snow, +/turf/closed/indestructible/rock/snow, +/area/awaymission/cabin/caves) +"mX" = ( +/obj/effect/turf_decal/weather/snow, +/obj/item/flashlight/flare, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"mY" = ( +/obj/effect/turf_decal/weather/snow, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"mZ" = ( +/obj/item/key/atv, +/obj/effect/decal/remains/human{ + color = "#72e4fa" + }, +/turf/open/floor/plating/ice/smooth, +/area/awaymission/cabin/caves) +"na" = ( +/obj/vehicle/ridden/atv{ + dir = 4 + }, +/turf/open/floor/plating/snowed, +/area/awaymission/cabin/caves) +"nb" = ( +/obj/effect/turf_decal/weather/snow, +/obj/effect/decal/remains/human{ + color = "#72e4fa" + }, +/turf/open/floor/plasteel/dark/snowdin, +/area/awaymission/cabin/caves) +"nc" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/wall/ice, +/area/awaymission/cabin/caves) +"ng" = ( +/obj/effect/light_emitter{ + name = "outdoor light"; + set_cap = 3; + set_luminosity = 6 + }, +/obj/structure/ladder/unbreakable{ + alpha = 0; + desc = "Finally."; + height = 1; + icon_state = ""; + id = "whyisitcalledladder10andnotladder1"; + mouse_opacity = 0; + name = "" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"nh" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"ni" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"nj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"nk" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest/sovietsurface) +"nl" = ( +/obj/structure/ladder/unbreakable/rune{ + desc = "Get me out of this boring room."; + height = 1; + icon_state = "hierophant"; + id = "GETMEOUTOFHEREYOUFUCKS"; + name = "\improper Return Rune" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"nm" = ( +/obj/structure/ladder/unbreakable/rune{ + desc = "I want out of this spookfest."; + icon_state = "hierophant"; + id = "GETMEOUTOFHEREYOUFUCKS"; + name = "\improper Emergency Escape Rune" + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"nn" = ( +/obj/structure/sign/warning/explosives, +/turf/closed/indestructible/syndicate, +/area/awaymission/cabin/caves/sovietcave) +"no" = ( +/obj/structure/sign/warning, +/turf/closed/indestructible/syndicate, +/area/awaymission/cabin/caves/sovietcave) +"np" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Can you just stop?"; + name = "GO BACK THE WAY YOU CAME" + }, +/area/awaymission/cabin/caves/sovietcave) +"nq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mine/sound/bwoink, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"nr" = ( +/obj/effect/mine/sound/bwoink{ + name = "explosive mine" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"ns" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb/cobweb2{ + desc = "No, the spider web doesn't have any secrets. For fucksake." + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"nt" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ladder/unbreakable/rune{ + color = "#ff0000"; + desc = "ONE HUNDRED AND TEN PERCENT REAL."; + id = "whatkindofnerdusesmapmakertocheattheirwaytoateleportrune"; + name = "\improper TOTALLY LEGIT PORTAL OF FUN" + }, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"nB" = ( +/obj/structure/table/wood/poker, +/obj/item/dice/d6{ + pixel_x = -8 + }, +/turf/open/floor/carpet, +/area/awaymission/cabin) +"nI" = ( +/obj/effect/rune/malformed{ + color = "#5772E0"; + cultist_desc = "The snowman council will now decide your fate."; + cultist_name = "The Snowman Council Rune"; + desc = "An odd collection of symbols drawn in what seems to be frozen water. Despite the fancy setup, the rune seems quite mundane which makes it unworthy of translation."; + icon_state = "2"; + invocation = "Frosty the Snowman was a jolly happy soul with a corncob pipe and a button nose and his eyes made out of coal!"; + invoke_damage = 60; + name = "ice rune" + }, +/obj/item/clothing/suit/snowman{ + desc = "The dead body of a snowman. There's holes to stick your own body in it."; + name = "snowman corpse" + }, +/obj/item/clothing/head/snowman{ + desc = "The head of a dead snowman. There's enough room inside for your own head."; + pixel_x = -1; + pixel_y = 10 + }, +/turf/open/floor/plating/asteroid/snow, +/area/awaymission/cabin/caves) +"nJ" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"nK" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/structure/barricade/wooden/snowed, +/turf/open/floor/plating/snowed/temperatre, +/area/awaymission/cabin/snowforest) +"nL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/grunge, +/turf/open/floor/mineral/plastitanium/red{ + name = "soviet floor" + }, +/area/awaymission/cabin/caves/sovietcave) +"nM" = ( +/obj/machinery/door/airlock/glass_large{ + name = "Medical Bay" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/awaymission/cabin) +"nN" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/awaymission/cabin) +"nO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"nR" = ( +/obj/structure/cable, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"nS" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/awaymission/cabin) +"nT" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/awaymission/cabin) +"nU" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/cabin) +"nV" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/door/airlock/maintenance{ + name = "Maintenance" + }, +/turf/open/floor/plating, +/area/awaymission/cabin) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(3,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(4,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(5,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +"} +(6,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +"} +(7,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +gx +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(8,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +"} +(9,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +ab +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +"} +(10,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fy +fy +cx +cx +cx +cx +cx +gE +gE +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(11,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fp +fz +fz +fM +fP +ge +cx +cx +gF +fz +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ms +ms +ms +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(12,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fQ +gf +cx +cx +fv +fv +gK +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ab +gx +ms +ms +it +mH +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(13,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +eB +fr +fq +fJ +fN +cx +cx +cx +cx +fv +fv +gQ +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +gx +ms +ms +it +it +ms +ms +ms +ms +gx +gx +gx +gx +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(14,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +eP +fs +fq +fJ +fN +fP +gg +cx +cx +fv +fz +gS +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +gx +gx +ms +it +it +it +it +it +it +mP +ms +ms +gx +gx +gx +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(15,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fR +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +gx +ms +ms +it +it +hO +hO +it +it +it +it +mP +gx +gx +gx +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +"} +(16,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fq +fq +fJ +fN +cx +cx +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +gx +ms +it +it +hO +mQ +hO +it +it +it +it +mP +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(17,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fP +gh +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ms +ms +it +hO +hO +hO +hO +it +it +it +it +mP +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(18,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fq +fE +fJ +fN +fS +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ms +it +it +hO +hO +mT +hO +it +ms +it +it +ms +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(19,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +cx +cx +cx +cx +fv +gJ +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +ms +mD +it +hO +hO +hO +hO +it +it +it +it +ms +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(20,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fg +fr +fq +fJ +fN +fT +gi +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +ms +ms +it +hO +hO +hO +hO +hO +it +it +it +ms +gx +gx +gx +ab +ab +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +"} +(21,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fh +ft +fF +fK +fN +fU +gj +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ms +ms +mH +hO +hO +mQ +hO +hO +mH +it +it +ms +ms +gx +gx +ab +ab +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +"} +(22,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +aj +ft +fF +fK +fN +cx +cx +cx +cx +fv +fz +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ms +it +it +hO +hO +hO +hO +hO +it +it +it +it +ms +gx +gx +gx +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +"} +(23,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fk +ft +fF +fK +fN +fP +gk +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +ms +it +it +it +hO +hO +hO +hO +it +it +ms +it +ms +ms +gx +gx +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +"} +(24,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fl +fs +fq +fJ +fN +fV +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +ms +it +hO +hO +hO +mT +hO +hO +it +it +it +it +it +ms +ms +gx +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +"} +(25,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +cx +cx +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +ab +ms +it +hO +hO +hO +hO +hO +hO +it +it +it +ms +it +it +ms +gx +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +"} +(26,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fq +fq +fJ +fN +fP +gl +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +gx +ms +it +hO +mQ +hO +hO +hO +it +it +it +it +it +it +it +mP +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +"} +(27,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fW +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +ms +ms +it +hO +hO +hO +hO +it +it +ms +it +ms +it +it +it +ms +ms +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +"} +(28,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fq +fq +fJ +fN +cx +cx +cx +cx +gG +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ms +it +it +it +hO +hO +it +it +ms +ms +it +it +it +it +it +it +ms +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +"} +(29,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fP +gm +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ms +ms +it +it +it +it +it +ms +ms +mP +mP +it +it +it +it +lR +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(30,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fm +fr +fq +fJ +fN +fX +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ms +ms +ms +ms +ms +ms +ms +ab +ab +mP +mP +it +ms +it +it +mP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(31,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fn +fs +fq +fJ +fN +cx +cx +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +hS +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +mP +it +it +it +ms +ms +ms +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(32,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cy +fq +fq +fJ +fN +fP +gn +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +gP +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +mP +mP +it +it +ms +ms +it +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(33,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fu +fz +fz +fO +fY +gf +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +ab +gx +gx +gx +mP +it +it +it +it +mH +ms +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(34,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fy +fy +cx +cx +cx +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +gx +gx +gx +gx +mP +mP +it +it +mP +mP +mP +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(35,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fv +fz +cx +fZ +go +gs +gw +fv +fz +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +mP +mP +it +it +mP +mP +mP +ab +ab +ab +ab +ab +ab +ab +ab +"} +(36,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fv +fv +fv +cx +gb +gp +gt +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +mP +it +it +it +it +mP +mP +ab +ab +ab +ab +ab +ab +ab +"} +(37,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +fo +fv +fv +fv +cx +cx +cx +cx +cx +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +ng +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kQ +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +it +kQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +mP +mP +it +it +it +it +mP +mP +ab +ab +ab +ab +ab +ab +"} +(38,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +fv +fv +fv +fv +fv +fv +fz +fv +fv +fv +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +gP +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +mP +mP +it +it +ms +it +it +mP +ab +ab +ab +ab +ab +ab +"} +(39,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fz +fv +fv +fv +gq +fv +fv +fv +fz +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +gP +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +me +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +mP +mH +it +it +it +it +ms +mP +ab +ab +ab +ab +ab +ab +"} +(40,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +kx +ac +ac +ac +ac +ac +ac +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +it +kx +kx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ms +ms +ms +it +it +it +ms +ms +ab +ab +ab +ab +ab +ab +"} +(41,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +it +it +it +it +kv +kx +kx +ab +ab +ab +ab +ab +ab +ab +kw +kw +hO +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +gP +kx +kx +kx +lW +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ms +ms +it +it +it +ms +ab +ab +ab +ab +ab +ab +"} +(42,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +gc +gc +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +it +it +it +hO +kw +dj +kx +kx +kx +kx +ab +ab +ab +ab +kw +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +kx +it +kx +kx +ab +ab +ab +ab +kx +kx +kx +kx +ac +ac +ac +gP +ac +kx +kx +ab +ab +kx +kx +kx +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +gW +ac +ac +ac +ac +ac +ac +ac +it +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +iz +iz +mP +mP +mP +mP +mP +iz +iz +iz +iz +nc +ab +ab +ab +ab +ab +"} +(43,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +fI +fG +gd +gd +fG +fG +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +it +it +it +hO +hO +kw +dj +dj +dj +ac +kx +kx +kx +kx +kw +kw +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +gP +ac +kx +kx +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +kx +kx +kx +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +gP +ac +ac +ac +ac +eO +ac +ac +eO +ac +mi +mt +mz +kx +mE +mP +iz +mP +iz +mP +mP +mP +iz +iz +iz +mP +iz +mP +iz +iz +iz +iz +iz +iz +ab +ab +ab +ab +ab +"} +(44,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fH +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +it +it +it +it +hO +hO +kw +dj +dj +dj +dj +dj +ac +ac +gP +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +kx +kx +kx +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ma +kx +ac +ac +ac +ac +ac +ac +eO +aa +eO +ac +eO +ac +mj +mu +lP +mE +mE +iz +iz +mP +iz +iz +iz +mP +mJ +mJ +mJ +mJ +mJ +mJ +mU +mU +mY +mY +mU +mW +ab +ab +ab +ab +ab +"} +(45,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +gy +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +it +it +it +it +hO +hO +hO +kw +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +lW +kx +kx +ac +ac +ac +ac +gR +ac +ac +ac +ac +eO +ac +ac +ac +ac +mk +mu +mA +mA +mA +iz +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mW +mW +mW +mX +mY +mY +mY +mW +mW +ab +ab +ab +ab +ab +"} +(46,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fL +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +hO +hO +hO +hO +kw +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +kx +kx +ab +ab +ab +kx +kx +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +gR +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ml +mv +mv +mF +mJ +mJ +mJ +mJ +mU +mU +mU +mJ +iC +iC +mP +mP +mP +hO +iC +mZ +hO +hO +mP +mP +ab +ab +ab +ab +ab +"} +(47,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +hO +hO +hO +hO +hO +kw +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gR +eO +ac +ac +ac +ac +ac +mm +mv +mB +mB +iC +iC +iC +iC +iC +mP +mP +iC +iC +hO +hO +hO +hO +hO +hO +hO +hO +na +mP +mP +ab +ab +ab +ab +ab +"} +(48,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fI +gd +gd +fG +fI +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +hO +it +kv +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +dj +dj +dj +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +kx +kx +kx +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +mn +mv +mC +mB +iC +iC +iC +iC +mP +mP +mP +mP +iC +hO +hO +hO +hO +hO +hO +hO +hO +mP +mP +mP +ab +ab +ab +ab +ab +"} +(49,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +hO +it +kv +kx +ac +ac +ac +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +kx +kx +kx +kx +kx +kx +lW +kx +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +mo +mv +mu +mB +iC +iC +iC +iC +mP +mP +mP +mP +iC +hO +hO +hO +hO +hO +hO +hO +iC +mP +mP +mP +ab +ab +ab +ab +ab +"} +(50,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fH +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +hO +it +it +ab +kx +ac +ac +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +eO +ac +ac +ac +ac +ac +ac +ac +eO +ac +ac +mm +mv +mB +mB +iC +iC +iC +iC +iC +mP +mP +iC +iC +iC +iC +hO +hO +hO +hO +hO +iC +mP +mP +mP +ab +ab +ab +ab +ab +"} +(51,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +it +it +it +hO +hO +hO +hO +hO +it +it +it +ab +kx +ac +ac +dj +dj +dj +dj +ac +ac +iO +iN +ac +ac +ac +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gU +ac +gR +ac +ac +ac +ac +ac +ac +gR +ac +ac +ac +gR +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +mp +mv +mu +mG +mJ +mJ +mJ +mJ +mJ +mJ +mU +mJ +iC +iC +iC +iC +hO +iC +hO +iC +iC +mP +mP +mP +ab +ab +ab +ab +ab +"} +(52,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fH +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +gx +gx +it +it +it +hO +hO +hO +hO +hO +it +it +it +ab +kx +ac +ac +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +mk +mu +mA +mA +mA +iz +mJ +mJ +mJ +mV +mJ +mJ +mW +mW +mW +mU +mU +mU +mU +mU +mJ +nb +mW +mW +ab +ab +ab +ab +ab +"} +(53,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fH +fL +cx +cx +cx +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +it +it +it +ab +kx +ac +ac +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +eO +ac +ch +ac +mq +mu +lP +lP +mE +iz +iz +mP +iz +iz +iz +mP +mW +mW +mW +mW +mJ +mJ +mJ +mW +mW +mW +mW +mW +ab +ab +ab +ab +ab +"} +(54,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +it +it +it +it +hO +hO +hO +hO +it +it +it +ab +ab +kx +ac +ac +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +ac +ac +ac +ac +eO +ac +ac +ac +mr +mt +mz +kx +mE +mP +iz +mP +mP +iz +iz +iz +iz +iz +mP +mP +mP +iz +iz +iz +iz +mP +mP +mP +ab +ab +ab +ab +ab +"} +(55,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fI +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +it +it +it +it +hO +hO +hO +hO +it +it +it +ab +ab +kx +ac +ac +ac +dj +dj +dj +dj +dj +dj +ac +ac +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +eO +mc +kx +kx +mE +mP +ab +ab +ab +ab +ab +ab +ab +iz +iz +iz +mP +mP +mP +mP +mP +iz +iz +iz +iz +ab +ab +ab +ab +ab +"} +(56,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +fG +fG +cx +cx +cx +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +it +it +it +hO +hO +hO +hO +it +it +ab +ab +ab +kx +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(57,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +gz +fG +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +iK +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gU +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +me +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(58,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fH +fG +gd +gd +fG +fG +fG +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +hO +hO +hO +hO +it +it +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +ac +ac +ac +ac +gP +ac +ac +eO +ac +ac +ac +ac +ac +ac +kQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(59,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fI +fG +gH +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +it +hO +hO +hO +hO +it +gx +gx +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gR +ac +ac +ac +ac +ac +ac +ac +gR +ac +ac +ac +eO +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(60,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fI +gd +gd +fG +fG +gu +fG +fG +fG +fG +hK +kR +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +it +hO +hO +hO +hO +hO +it +gx +gx +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(61,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +gd +gd +fG +gA +fL +fG +gT +fH +gT +fG +kX +kZ +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +it +hO +hO +hO +hO +hO +it +it +it +gx +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +eO +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(62,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fL +gd +gd +gu +fG +fG +fI +fG +fG +fG +jL +fG +kR +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +hO +hO +hO +hO +hO +hO +it +it +it +gx +ab +ab +ab +kx +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +gW +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(63,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fH +fG +fG +gd +gd +gd +gd +gd +gd +gd +gd +hJ +hJ +gd +gd +gc +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +ki +ki +ko +ko +ki +ki +ki +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(64,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fH +gd +gd +gd +gd +gd +gd +gd +gd +hJ +hJ +gd +gd +gc +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +ko +ki +ki +ki +ki +ko +ki +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kQ +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(65,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fG +fG +fG +fH +fG +fG +fG +fG +fG +fG +fG +fG +fL +fG +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +hO +hO +hO +hO +hO +hO +it +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gU +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(66,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +fG +fI +fG +fG +fL +fG +fG +fG +fG +fI +fG +fG +fG +fG +fI +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +fA +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gW +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +kx +mc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(67,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +fG +fG +fG +fG +fG +gB +fG +fG +fG +fG +fG +fH +fG +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +fw +fB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(68,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +cx +gD +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +fw +fC +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kh +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +lW +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(69,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +gr +gr +gr +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +it +it +it +gx +gx +gx +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +hN +ac +ac +em +fx +fx +fB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gR +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(70,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +gr +gr +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +it +it +it +gx +gx +gx +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +fw +fx +fx +fD +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(71,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +hO +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +fw +fx +fC +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(72,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +hO +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cR +ek +ek +ek +ek +ek +ek +fx +fx +fC +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gU +ac +ac +kQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(73,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +hO +hO +hO +hO +hO +hO +hO +hO +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +cR +bS +ce +ce +ce +bS +bS +bS +fx +fx +fC +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(74,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +cx +cx +cx +cx +gr +gr +cx +cx +cx +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +hO +hO +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +cR +bS +bS +cf +cf +cf +bS +bS +bS +fx +fx +fx +fB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gW +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(75,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +hO +hO +hO +hO +hO +hO +hO +it +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ef +bS +bS +cg +cg +cg +bS +bS +bS +fx +fx +fx +fC +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(76,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +it +hO +hO +hO +hO +hO +hO +hO +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +cr +el +el +en +el +el +el +el +el +ep +ep +ep +er +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(77,1,1) = {" +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +an +an +an +an +an +an +an +ao +ao +an +an +an +an +an +an +an +an +ba +ba +an +eq +eq +eq +eq +an +dB +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(78,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +it +it +it +it +it +ki +ki +ki +ki +ki +ko +it +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aV +jr +au +jk +an +aq +aq +an +bl +bM +ij +bT +cs +bl +an +aq +aq +an +cS +aL +aL +aL +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(79,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +gx +gx +it +it +ki +ki +ki +ko +ki +ki +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dB +iZ +aN +jl +az +bb +bb +eg +bm +eg +nR +an +eg +eg +eg +eg +eg +eg +hB +eg +eg +an +cT +cV +gL +cV +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(80,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +it +gx +it +it +it +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +iZ +jy +jG +az +bb +az +aq +an +aq +ht +an +cA +an +an +an +an +hx +an +aq +eg +an +cU +aL +aL +ec +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(81,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +gx +gx +gx +gx +iK +hO +hO +hO +hO +hO +hO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +iZ +bp +aq +az +az +az +aq +an +aq +eg +an +eg +aq +aq +aq +aq +eg +an +aq +eg +an +cV +gL +cV +cV +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(82,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +it +gx +gx +gx +it +it +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aA +aI +aA +aq +an +br +eg +an +cE +aq +aq +aq +aq +ht +an +aq +ht +an +aL +aL +aL +ed +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(83,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +it +it +gx +it +it +it +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +an +nU +an +an +an +aR +an +aq +eg +an +eg +aq +aq +aq +aq +eg +an +aq +eg +an +cU +cW +aL +gN +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +gW +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(84,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +gx +it +it +hO +hO +hO +hO +hO +hO +hO +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +dB +an +as +aB +aH +an +an +an +aq +eg +an +cz +eg +eg +eg +eg +ht +an +aq +eg +an +ed +aL +aL +kE +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(85,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +dB +an +an +an +an +an +aS +hg +aq +ht +an +nT +bo +bo +bo +bo +cB +an +aq +eg +bV +ed +ed +gM +an +an +dB +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(86,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +at +aC +aH +an +an +an +aq +eg +an +aO +aO +aO +aO +aO +az +az +aq +eg +an +eb +cX +an +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(87,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +an +nU +an +an +an +aT +an +aq +eg +an +az +aq +aq +az +aq +aq +cO +aq +ht +an +an +an +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +gP +ac +ac +ac +ac +md +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(88,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +au +jt +aV +aq +an +bs +eg +eh +bb +eg +bb +hC +bb +hE +he +hG +eg +eN +an +dB +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dX +dj +dj +dj +dj +dj +dX +dj +dj +dj +dj +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(89,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gv +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kC +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +dB +ja +aN +aq +az +az +az +aq +an +aq +eg +an +aP +az +ej +nB +hd +az +aO +aq +eg +aq +an +an +dB +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(90,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +gr +gr +gr +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +kz +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ja +jy +jF +az +bb +bb +aq +an +aq +ht +an +bq +az +ha +hc +hd +az +az +aq +eg +aq +aN +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(91,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +iK +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +ab +ab +kx +it +ac +hV +ac +hT +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +dB +ja +bp +jm +az +az +bb +eg +iY +eg +eg +an +bt +az +ej +jx +hd +az +cO +aq +eg +aq +iR +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(92,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +iK +it +it +gx +gx +gx +gx +ab +ab +ab +kx +kB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aA +aI +aA +jj +an +eg +aq +an +cN +aq +az +aO +az +ci +hF +cC +eg +aq +bp +ao +dB +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dX +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(93,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +cx +cx +cx +cx +cx +cx +cx +cx +cx +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +gx +gx +gx +gx +gx +ab +ab +ab +kx +kP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +dB +dB +an +an +an +an +an +an +an +ct +aq +an +jE +aq +aq +az +aq +aq +aO +aq +eg +aq +an +an +dB +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +ea +dj +dj +dj +dj +dj +dX +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(94,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +dB +an +an +aq +aV +ju +au +ji +an +eg +aq +an +cO +cO +cO +cO +cO +az +az +aq +ht +an +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dY +ea +dY +ea +dY +dj +dj +dj +dj +dj +dj +ac +ac +gW +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(95,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +iK +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jb +aN +jn +az +bb +bb +eg +iX +eg +ht +an +hb +bU +ev +eu +cK +cD +an +aq +eg +aq +an +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +dj +dj +dj +dj +dj +dj +dY +ea +dY +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(96,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jb +jy +jH +az +bb +az +aq +an +aq +eg +an +hn +aq +eg +eg +eg +eg +an +aq +eg +aq +aN +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(97,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +co +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +it +it +it +iK +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +kx +kx +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jb +bp +aq +az +az +az +aq +an +aq +eg +an +bv +bN +nO +aq +ap +eg +an +aq +eg +aq +iU +ao +dB +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(98,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aA +aI +aA +aq +an +br +eg +an +an +an +an +bu +an +eo +an +aq +eg +aq +bp +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +gP +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(99,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +iK +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +kQ +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +an +nU +an +an +an +aU +an +aq +eg +an +bw +bO +bO +bO +bO +hz +eo +eg +eg +aq +an +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(100,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +bI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dB +an +as +aB +aH +an +an +an +aq +eg +an +bx +bO +cJ +cF +cJ +hz +an +aq +ht +an +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dX +dj +dj +dj +dj +dj +dj +dj +dj +dX +dj +dj +dj +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(101,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +iK +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +dB +an +an +an +an +an +hf +hy +aq +eg +an +by +bO +bO +bO +bO +hz +an +aq +eg +aq +an +an +dB +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(102,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +ab +ab +it +it +it +it +it +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +hO +it +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +dB +an +at +aC +aH +an +an +an +aq +ht +an +bz +bO +bW +ck +cj +hz +an +aq +eg +aq +aN +ao +dB +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dX +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(103,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +it +it +it +it +it +hO +hO +iL +iL +iL +iL +iL +iL +iL +iL +iL +it +it +it +it +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +an +nU +an +an +an +aW +an +aq +eg +an +an +an +an +an +an +hA +an +aq +eg +aq +iS +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(104,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iK +it +it +it +it +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +iL +it +it +it +it +it +iK +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dB +an +an +aq +au +jv +aV +aq +an +bs +eg +an +bA +bB +bX +cl +cl +hi +an +aq +eg +aq +bp +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(105,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +it +it +it +it +iL +iL +iL +iL +it +iL +iL +iL +it +it +iL +iL +it +it +iK +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +dB +jc +aN +aq +az +az +az +aq +an +aq +eg +an +bB +bB +bB +bB +hi +hi +an +hh +eg +aq +an +an +dB +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(106,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +it +it +it +it +it +it +it +it +it +iL +iL +iL +it +it +it +iL +iL +it +it +it +it +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jc +jy +jI +az +bb +az +aq +an +aq +eg +an +bC +bB +bY +is +dt +cG +an +aq +ht +an +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +dj +dj +dj +ac +ac +gW +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(107,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +it +iK +it +it +it +it +it +it +it +iL +iL +kn +it +it +it +iL +iL +it +it +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +dB +jc +bp +jo +az +bb +bb +eg +iW +eg +eg +an +an +an +an +an +an +an +an +aq +eg +aq +an +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dj +dj +dj +dj +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(108,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +it +it +it +it +it +it +it +it +iv +iv +kj +iv +iv +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +dB +an +an +au +aA +aI +aA +jg +an +eg +aq +an +aJ +bG +bE +cv +hq +cv +an +aq +eg +aq +aN +ao +dB +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(109,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +it +iv +iv +iM +iM +iM +iv +iv +it +it +iL +iL +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kg +dB +an +an +an +an +an +an +an +ct +bh +an +aK +bE +bE +bE +bE +lz +an +aq +eg +aq +iT +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(110,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +it +it +it +it +it +it +iv +iM +iM +iM +iM +iM +iv +it +it +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aV +jw +au +jh +an +eg +aq +an +bD +bE +bE +cI +hD +cP +nM +eg +eg +aq +bp +ao +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(111,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +it +it +it +it +it +iv +iP +iM +kl +iM +iM +iv +it +it +iL +iL +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jd +aN +jp +az +bb +bb +eg +iV +eg +aq +an +bE +bE +bE +cP +jq +bE +bE +aq +eg +aq +an +an +dB +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(112,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +it +it +it +iK +it +iv +iM +iM +iM +iM +iM +iv +it +it +iL +iL +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +it +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +dB +jd +jy +jJ +az +bb +az +aq +an +eg +aq +an +bF +bP +cm +ho +bE +lz +an +aq +eg +an +an +dB +dB +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(113,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +it +it +it +it +iv +iv +iQ +km +iQ +iv +iv +it +it +iL +iL +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +it +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +jd +bp +aq +az +az +az +aq +an +eg +nS +an +bF +bQ +cu +hp +js +hp +an +aq +eg +an +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(114,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +gx +gx +ab +it +it +it +iv +iv +iv +iv +iv +it +it +it +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +an +aq +aA +aI +aA +aq +an +in +nN +an +an +an +an +an +an +an +an +aq +ht +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(115,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +gx +gx +gx +gx +gx +gx +kt +kt +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +dB +dB +an +nU +an +an +an +aU +an +eg +eg +nV +ei +et +hj +hr +hs +et +nV +eg +eg +an +dB +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(116,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +an +as +aB +aH +an +an +an +ar +an +an +an +an +an +an +an +an +an +cM +hm +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(117,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kt +kt +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +cY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dB +dB +an +an +an +an +an +aX +bf +bb +an +bj +bH +an +kk +aq +aq +aq +io +az +bb +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(118,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ax +an +aF +cL +aw +jC +bb +bb +az +an +bk +bJ +an +aq +aq +aq +eg +cH +cQ +hH +an +dB +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(119,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +it +it +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dD +dH +dH +dH +dH +dH +dN +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ax +av +aw +ed +hu +an +aY +bc +bg +an +nU +an +an +aq +cp +eg +eg +aq +cQ +hI +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(120,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +it +iL +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +eG +eG +eH +eG +eG +ad +ad +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ax +aw +ed +ed +hv +an +hl +bd +az +an +jf +ay +an +aq +aq +aq +eg +cH +cQ +ee +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(121,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +it +iL +iL +iL +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ad +ad +jP +af +af +af +af +af +jP +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ax +aD +aM +du +hw +an +aZ +be +az +bi +hk +bL +an +bn +aq +aq +aq +aq +az +az +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(122,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +it +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +af +af +af +af +jB +af +af +af +af +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +dB +ax +aE +aQ +dv +an +an +ao +ao +ao +an +an +je +an +an +jD +jD +an +jA +jz +an +an +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(123,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +kx +ac +ch +ac +ac +ac +ac +ac +ac +ac +ad +ew +af +af +al +kf +ff +eQ +ak +af +af +eY +ad +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +ax +ax +ax +ax +ax +dB +dB +dB +dB +dB +dB +dB +dB +an +ao +ao +an +ao +ao +an +dB +dB +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(124,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +iL +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +af +af +ak +af +am +af +fe +af +af +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dB +dB +dB +dB +dB +dB +dB +ac +ac +ac +ac +ac +ac +dB +dB +dB +dB +dB +dB +dB +dB +dB +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(125,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +jM +af +af +af +jV +af +af +af +jM +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(126,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +gY +af +af +af +af +af +af +af +jR +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(127,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +iL +iL +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ch +ac +ac +ac +ac +ac +ad +gY +af +af +ak +af +ak +af +af +kD +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(128,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ch +ac +ac +ad +jQ +af +ak +jX +af +ka +ke +af +eA +ad +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dA +dC +dC +gO +dC +gO +dC +dC +dC +dC +lP +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(129,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iz +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ad +gY +af +jW +af +af +jU +jT +af +jR +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(130,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iz +iz +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +iL +iL +iL +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ad +jM +af +kb +gZ +af +af +jS +af +jM +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +es +ac +ac +dx +dz +dz +dz +dz +dz +gX +dz +dz +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(131,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iA +iC +gx +gx +iA +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +iL +iL +iL +it +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iK +kx +ac +ac +ac +ac +ac +ac +ac +ad +ad +af +af +ak +ak +af +kd +kc +af +af +ad +ad +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dy +dz +dz +dz +dz +dz +dz +dz +dz +gX +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(132,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iB +iC +iG +iC +iH +gx +gx +gx +gx +gx +gx +gx +gx +iK +it +iL +iL +iL +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ad +ex +af +af +af +jZ +af +jY +af +af +af +eZ +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +ga +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +lX +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(133,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iz +iA +iC +iC +iC +iJ +iz +gx +gx +gx +gx +gx +it +it +it +it +iL +iL +iL +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ad +ad +af +af +af +af +af +af +af +af +af +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dL +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(134,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iz +iz +iD +iH +iI +iz +iz +gx +gx +gx +gx +it +it +it +it +iL +iL +iL +it +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ch +ac +ch +ac +ac +ac +ac +ae +ad +ad +jO +af +af +af +af +af +jO +ad +ad +fb +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(135,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +iz +iz +iz +iz +iz +it +gx +gx +gx +it +it +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +ad +ad +eH +eG +lQ +eG +eH +ad +ad +cZ +fc +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dz +dz +dz +gX +dz +dz +dz +dz +dz +gX +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(136,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +gx +gx +gx +gx +it +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +iK +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +mw +bS +bS +eI +eM +eU +bS +bS +mw +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +gX +dz +dz +dz +dz +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(137,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +gx +gx +gx +it +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ch +ac +ag +cZ +bS +bS +eE +eJ +eR +eV +eE +bS +bS +cZ +fc +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +gX +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(138,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +hO +it +it +it +gx +gx +gx +it +it +iL +iL +iL +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ch +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +bS +eD +eF +eJ +eR +eV +eF +eD +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +dx +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(139,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +hO +hO +it +it +iE +gx +gx +gx +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +bS +eE +cZ +eJ +eR +eV +cZ +eE +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(140,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +hO +hO +it +it +it +gx +gx +it +it +it +iL +iL +iL +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ch +ac +ac +ac +ac +ac +ac +ah +cZ +bS +eF +cZ +eK +eR +eV +cZ +eF +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +gX +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +dz +kA +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(141,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +hO +hO +it +it +it +gx +it +it +it +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +bS +bS +cZ +eJ +lC +eV +cZ +bS +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +aG +dg +dg +dE +dE +dE +dE +dE +dE +hZ +hZ +dg +dg +if +lX +lY +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(142,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +hO +hO +it +it +it +it +it +it +it +it +it +iK +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ch +ac +ac +ac +ag +cZ +bS +bS +cZ +nJ +eS +nK +cZ +bS +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +bK +dh +di +dF +dO +dF +dh +dF +dF +dF +dF +ic +dp +nh +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(143,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +it +hO +it +it +it +it +it +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ch +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +bS +bS +bS +eJ +lC +eV +bS +bS +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +kA +bK +di +di +ds +di +di +dw +di +hY +di +di +di +dh +nh +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(144,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +it +iE +hO +hO +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +bS +bS +bS +eK +eR +eW +bS +bS +bS +cZ +fc +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +da +dk +di +dG +dG +dG +dG +dJ +dG +dI +dG +di +id +ni +lX +lY +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(145,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +it +hO +hO +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ky +ac +ac +ac +ac +ac +ac +ac +ac +ac +ag +cZ +cZ +bS +bS +eL +eT +eX +bS +bS +cZ +cZ +fc +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +kx +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +dx +dz +gX +dz +dz +db +dl +dr +dI +di +di +dU +fi +di +dh +dG +di +id +ni +lZ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(146,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ai +cZ +cZ +cZ +bS +bS +bS +bS +bS +cZ +cZ +cZ +fd +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dc +dm +di +dG +dP +di +dh +dW +dS +ia +dG +di +id +ni +lX +lY +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(147,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +kx +kx +ac +ac +ch +ac +ac +ac +ac +ac +ch +ac +ey +ez +eC +eC +eC +eC +eC +eC +eC +eC +eC +fa +ey +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +it +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dd +dn +di +dG +di +dS +di +hX +di +di +dG +di +ie +ni +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(148,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +ix +hO +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ky +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +ab +ab +ab +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +dx +dz +dz +dz +dz +dd +dn +ds +dG +di +dT +di +dh +di +dh +dG +di +id +ni +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(149,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +kx +kx +kx +kx +kx +kx +kx +ac +ac +ac +ac +ac +gP +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +gP +ac +dx +dz +dz +dz +dz +de +do +di +dG +di +dh +di +di +di +ib +dG +dw +id +nj +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(150,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ch +ac +ac +ac +ch +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +kx +kx +kx +ac +ac +ac +ac +kx +kx +kx +kx +ab +ab +ab +ab +ab +kx +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +gP +kx +kx +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +ac +kx +kx +lP +lX +dz +gX +dz +db +dl +di +dJ +dQ +di +dV +di +dU +dV +dI +dh +ie +ni +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(151,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +gP +ac +ac +ac +kx +kx +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +it +kx +ab +ab +lX +lX +dz +dz +da +dk +dw +dG +dI +dG +dG +dG +dG +dG +dG +di +id +ni +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(152,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +gP +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ab +ab +ab +ab +lX +lX +kA +bK +di +di +dh +di +di +dW +ds +di +di +di +di +di +nh +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(153,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +lX +lX +bK +dp +dh +dK +dR +dK +dK +dK +dh +dK +dK +di +dp +nh +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(154,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +ix +hO +hO +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +ab +kx +ac +ac +ac +ac +kx +kx +kx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +lX +df +dq +dq +dM +dM +dM +dZ +dM +dM +dM +dM +dq +dq +nk +lX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(155,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +it +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ch +ac +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +kx +kx +kx +it +kV +kx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +lX +lX +lX +dz +dz +lX +lX +lX +dz +dz +dz +lX +lX +lX +lX +lZ +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(156,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +hO +hO +hO +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +kx +kx +kx +kx +kx +kx +kx +ac +ch +ac +ch +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +gx +iv +iv +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +lX +lX +lZ +lX +ab +lX +lX +lX +lZ +lX +ab +gx +lX +lY +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(157,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +it +it +iF +it +it +it +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ch +ac +kx +kx +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +gx +gx +gx +iv +iv +gx +gx +gx +gx +it +it +gx +gx +lp +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +lY +ab +ab +ab +lY +ab +ab +lY +ab +ab +gx +gx +iL +iL +iL +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(158,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +it +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +ac +gW +ac +ac +ch +ac +ac +ac +ac +ch +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +iK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +gx +gx +gx +iv +iv +gx +gx +it +it +it +it +it +it +it +it +it +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +it +iL +iL +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(159,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +it +hO +hO +hO +hO +hO +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +ac +ac +ac +ac +ac +ac +ch +ac +ac +ac +ac +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +kU +it +it +gx +gx +nl +it +it +it +it +it +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +iL +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(160,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +hO +hO +hO +hO +hO +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kx +kx +kx +kx +kx +kx +kx +kx +kx +kx +kx +kx +kx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +it +it +gx +gx +it +it +it +it +it +it +it +gx +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +iL +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(161,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +hO +hO +hO +hO +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +it +kT +it +gx +gx +gx +gx +it +it +it +it +it +it +lu +lu +lu +it +iK +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +iL +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(162,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +gx +gx +gx +gx +gx +it +it +it +it +lu +it +it +it +lu +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(163,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ix +hO +hO +it +it +it +it +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +it +it +kU +it +gx +gx +gx +gx +gx +it +it +it +it +it +nI +it +lu +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +it +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(164,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +kU +it +it +it +gx +gx +gx +gx +gx +gx +lp +gx +lu +it +it +it +lu +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +iL +iL +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(165,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +iy +hO +it +it +it +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +kU +gx +gx +gx +gx +gx +gx +gx +gx +lB +lu +lu +iK +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +it +iL +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(166,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +it +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +gx +it +it +it +hO +hO +hO +ix +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +gx +ab +iL +iL +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(167,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +hL +hO +hO +hO +hO +hO +it +it +it +it +gx +gx +gx +it +it +it +it +gx +gx +hO +ix +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +kS +it +it +gx +it +kU +it +kT +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +ab +gx +gx +ab +iL +iL +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(168,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +hM +hP +hQ +hP +hW +hO +it +gx +it +it +it +it +it +it +it +it +gx +gx +gx +gx +hO +hO +ix +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +gx +ab +iL +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(169,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +hM +hQ +hR +hQ +ig +il +hO +gx +gx +gx +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +kU +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +ab +ab +iL +iL +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(170,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +hM +hP +hQ +hP +ih +hO +hO +gx +gx +gx +iv +iw +iv +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +kT +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +iL +iL +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(171,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +hL +hO +hO +hO +hO +hO +gx +gx +gx +gx +iv +iv +iv +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kU +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +it +iL +iL +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(172,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +kS +gx +it +it +kU +gx +gx +gx +gx +gx +gx +gx +lh +gx +it +it +kU +it +it +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +it +iL +iL +iL +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(173,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +it +it +gx +gx +gx +gx +gx +la +it +it +it +it +gx +gx +it +it +it +kU +gx +it +kS +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +it +iL +iL +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(174,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +ab +gx +gx +gx +it +gx +it +it +it +gx +gx +gx +gx +it +it +it +it +it +it +it +it +it +it +it +it +it +it +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +iL +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(175,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hO +hO +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +it +gx +gx +gx +gx +it +kU +it +gx +gx +kT +gx +it +gx +gx +it +it +it +it +it +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +iL +iL +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(176,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +hO +hU +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +gx +gx +gx +gx +it +it +it +gx +it +it +it +it +kU +gx +gx +lE +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +iL +iL +iL +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(177,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +iK +it +kU +it +gx +gx +gx +it +it +kT +it +it +it +it +kU +it +it +gx +it +it +it +it +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +iL +iL +iL +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(178,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +gx +gx +gx +gx +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +it +gx +it +kT +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +iL +iL +iL +iL +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(179,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +it +gx +gx +gx +gx +it +kU +it +it +ld +gx +lm +ld +gx +gx +gx +it +gx +it +it +it +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +iL +iL +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(180,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +it +gx +gx +gx +it +it +gx +gx +gx +le +le +le +lg +le +lf +gx +it +gx +gx +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(181,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +gx +gx +gx +gx +kU +it +gx +gx +gx +gx +li +ld +lq +lk +lv +gx +it +gx +gx +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +iL +iL +it +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(182,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +kT +it +gx +gx +gx +it +it +gx +gx +gx +lf +li +le +lr +le +ld +gx +it +gx +gx +it +it +kU +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iK +iL +iL +iL +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(183,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kS +gx +it +kU +gx +gx +gx +it +it +gx +gx +gx +gx +lj +le +li +le +lw +gx +it +gx +it +it +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +it +it +it +iL +iL +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(184,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +gx +gx +gx +kW +it +gx +gx +gx +gx +gx +ln +le +ld +lx +gx +it +gx +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +iL +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(185,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +gx +gx +gx +it +it +it +gx +gx +gx +gx +gx +ls +le +ly +gx +kT +gx +it +it +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +ab +ab +ab +iL +iL +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(186,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +gx +gx +gx +it +gx +kU +gx +gx +gx +gx +li +le +le +lo +gx +nm +gx +it +it +gx +it +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +it +iL +iL +it +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(187,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +gx +gx +gx +it +it +it +it +gx +gx +le +lk +le +ld +lA +gx +gx +gx +lF +gx +gx +kU +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +it +it +iL +iL +it +it +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(188,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kU +it +gx +gx +gx +gx +it +iE +it +it +lg +le +le +lg +lt +gx +gx +gx +it +it +it +gx +it +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +iL +iL +ab +it +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(189,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +gx +gx +gx +gx +gx +kU +it +gx +lk +lo +gx +gx +gx +gx +gx +it +gx +gx +gx +it +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +iL +iL +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(190,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +kU +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +gx +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +gx +gx +iL +iL +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(191,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +kT +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +gx +gx +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +gx +ab +ab +iL +iL +ab +ab +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(192,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +gx +gx +kY +it +it +ll +it +kT +it +ll +it +kT +it +it +it +gx +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +ab +gx +ab +it +iL +iL +it +it +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(193,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +kU +it +it +it +it +it +it +gx +gx +gx +gx +gx +gx +it +it +it +kU +gx +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +ab +ab +iL +iL +it +it +it +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(194,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +gx +it +kU +it +it +it +it +gx +it +gx +gx +gx +gx +it +it +gx +gx +gx +kT +it +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +gx +gx +ab +ab +gx +gx +gx +gx +gx +it +iL +iL +it +gx +it +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(195,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kS +it +it +it +it +kU +it +kT +it +it +it +gx +it +it +gx +it +gx +it +it +it +it +it +it +iK +gx +gx +it +it +it +kU +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +ab +gx +gx +gx +ab +ab +gx +gx +gx +ab +ab +gx +it +iL +iL +it +it +it +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(196,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +gx +gx +gx +gx +gx +it +it +gx +it +kU +gx +it +it +it +gx +gx +gx +it +kT +it +gx +it +it +it +gx +it +it +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +iL +iL +ab +ab +it +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(197,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +it +it +iK +it +gx +gx +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +gx +ab +ab +gx +gx +gx +gx +ii +ii +ab +ab +gx +iL +iL +it +ab +ab +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(198,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +gx +it +lp +it +it +it +it +gx +gx +it +kT +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +it +it +ab +it +iL +iL +it +ab +ab +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(199,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kT +it +iu +gx +it +lG +gx +gx +it +lK +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +ii +it +it +it +iL +iL +iL +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(200,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +kY +gx +it +it +it +gx +kU +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +it +it +iL +iL +iL +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(201,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kU +it +gx +gx +gx +it +it +it +it +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +ii +ii +mf +iL +iL +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(202,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +gx +gx +gx +gx +kU +gx +it +it +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ii +ii +ii +ii +ii +iL +mg +mh +it +it +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(203,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +lN +it +it +it +gx +gx +gx +gx +gx +it +it +iK +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +mM +im +mS +iL +iL +ii +it +it +iK +ii +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(204,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kS +it +it +it +lM +it +gx +gx +gx +it +lH +ii +ii +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ii +ii +ii +gx +ii +mO +im +ii +ii +ii +mS +ii +ii +ii +ii +ii +ii +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(205,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +kU +gx +it +it +kU +it +it +it +it +ii +iq +ii +gx +ii +ii +ii +ii +gx +ii +ii +ii +ii +gx +gx +ii +lb +im +ii +ii +ii +im +im +kF +iq +ii +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(206,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kU +it +gx +gx +gx +gx +gx +it +it +ii +ik +ii +ir +ii +ii +ii +kH +im +ii +ii +ii +kH +im +ii +ii +gx +ii +im +im +kF +kH +im +im +im +kF +kF +ii +mM +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(207,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +gx +gx +gx +lJ +it +lp +ik +im +ip +jK +im +im +ir +ir +ir +ir +im +ir +ir +ir +ir +ii +gx +ii +im +kF +kF +im +im +im +im +im +im +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(208,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +it +it +gx +gx +it +it +it +ii +ii +ii +jN +im +im +jK +im +im +jK +im +im +im +im +im +ii +ii +ii +im +my +kF +im +im +im +im +im +im +im +im +ii +gx +gx +gx +gx +gx +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(209,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +lL +it +it +it +it +it +it +it +ik +im +ip +im +im +im +im +im +ir +ir +im +im +im +im +im +ii +kO +ii +im +kF +kF +im +im +kJ +im +im +ii +ii +ii +ii +gx +gx +gx +gx +gx +gx +gx +ab +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(210,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +iK +gx +it +it +kU +it +ii +ik +ii +im +jK +im +im +im +ir +im +im +im +kJ +im +im +ii +ii +ii +im +im +kF +im +im +im +im +mI +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(211,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +kT +it +it +it +it +kU +ii +im +im +im +im +jK +ir +ir +im +im +im +im +im +ir +im +ii +ii +ii +ii +im +im +im +im +kF +ii +ii +gx +gx +gx +gx +gx +ab +gx +ab +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(212,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +it +it +it +lI +ii +ii +ii +kF +kF +kF +im +im +im +im +im +im +im +im +im +nL +kH +im +nL +im +im +im +im +kF +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(213,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +kT +it +gx +gx +ii +ii +kG +ii +ii +ii +ii +kI +im +im +im +ir +im +ii +im +kF +ii +mN +im +im +im +kF +mR +ii +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(214,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +it +gx +gx +gx +gx +ii +ii +ii +gx +gx +ii +ii +ir +ir +ir +ii +ii +ii +im +im +ii +ii +ii +ii +ii +ii +ii +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(215,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ir +im +ir +ii +kN +ii +kF +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(216,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +im +ii +ii +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(217,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +kK +kL +kM +ii +gx +ii +im +kF +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(218,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ii +ii +ii +ii +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(219,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +kF +mI +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(220,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(221,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lc +lc +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(222,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +iq +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(223,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +mI +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(224,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +iq +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(225,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(226,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(227,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(228,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +ab +gx +gx +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(229,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +ab +gx +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(230,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(231,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +iq +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(232,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(233,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +iq +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(234,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +jN +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(235,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +lS +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(236,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +lS +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(237,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +lS +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(238,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lT +mK +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(239,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(240,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +mI +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(241,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +mI +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(242,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(243,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(244,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +lS +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(245,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +nn +im +im +nn +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(246,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +no +jN +im +no +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(247,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +nn +jN +im +nn +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(248,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +no +im +lS +no +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(249,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +np +np +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(250,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +nq +nq +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(251,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +nr +nr +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(252,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(253,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +im +im +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(254,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ns +nt +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(255,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ii +ii +ii +ii +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +gx +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} diff --git a/_maps/RandomZLevels/snowdin.dmm b/_maps/away/snowdin.dmm similarity index 98% rename from _maps/RandomZLevels/snowdin.dmm rename to _maps/away/snowdin.dmm index e11baad9c770..def905ccba60 100644 --- a/_maps/RandomZLevels/snowdin.dmm +++ b/_maps/away/snowdin.dmm @@ -189,9 +189,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "aR" = ( /obj/structure/bed, @@ -278,9 +277,8 @@ /obj/structure/sign/poster/contraband/kudzu{ pixel_y = 32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bb" = ( /obj/structure/bed, @@ -329,9 +327,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bj" = ( /obj/structure/table/wood, @@ -383,9 +380,8 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bo" = ( /obj/effect/decal/cleanable/dirt, @@ -508,9 +504,8 @@ pixel_y = 5 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bB" = ( /obj/structure/closet/cabinet, @@ -640,7 +635,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Dorms APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -695,9 +690,8 @@ id_tag = "snowdindormhydro2"; name = "Rachel Migro's Private Quarters" }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "bU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -721,9 +715,8 @@ }, /obj/machinery/door/firedoor, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/research) "bW" = ( /obj/machinery/door/firedoor, @@ -801,7 +794,7 @@ dir = 1; name = "Kitchen APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -959,9 +952,8 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "cz" = ( /obj/machinery/door/airlock/public/glass{ @@ -995,9 +987,8 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/research) "cC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/research) "cD" = ( /obj/machinery/airalarm{ @@ -1026,7 +1017,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/research) "cF" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1044,7 +1035,7 @@ dir = 5 }, /obj/structure/spider/stickyweb, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice, +/mob/living/simple_animal/hostile/giant_spider/hunter/ice, /turf/open/floor/plasteel/freezer, /area/awaymission/snowdin/post/kitchen) "cH" = ( @@ -1303,9 +1294,8 @@ pixel_y = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -1322,9 +1312,8 @@ pixel_x = 5; pixel_y = -32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -1361,9 +1350,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "dg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -1444,7 +1432,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/research) "dm" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1479,9 +1467,8 @@ /area/awaymission/snowdin/post/kitchen) "ds" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "dt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -1680,17 +1667,15 @@ "dV" = ( /obj/effect/decal/cleanable/food/egg_smudge, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "dW" = ( /obj/structure/table, /obj/machinery/reagentgrinder, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/kitchen) "dX" = ( /turf/open/floor/plating/snowed/smoothed, @@ -1784,9 +1769,8 @@ }, /obj/effect/landmark/awaystart, /obj/item/bedsheet/red, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "ei" = ( /obj/effect/baseturf_helper/asteroid/snow, @@ -1827,7 +1811,7 @@ dir = 1; name = "Research Center APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -1847,7 +1831,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Mess Hall APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, @@ -1966,9 +1950,8 @@ /area/awaymission/snowdin/outside) "eF" = ( /obj/structure/mineral_door/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/outside) "eG" = ( /obj/structure/barricade/wooden, @@ -2039,9 +2022,8 @@ dir = 6 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "eS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -2082,9 +2064,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/dorm) "eV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -2419,7 +2400,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Outpost Hallway APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2479,9 +2460,8 @@ "fP" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "fQ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -2564,16 +2544,15 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/outside) "ga" = ( /obj/structure/table/wood, /obj/structure/fireaxecabinet{ pixel_y = -32 }, -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, +/obj/effect/spawner/random/exotic/snow_gear, /turf/open/floor/wood, /area/awaymission/snowdin/outside) "gb" = ( @@ -2584,14 +2563,14 @@ "gc" = ( /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "gd" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "ge" = ( @@ -2599,10 +2578,10 @@ /area/awaymission/snowdin/cave/cavern) "gf" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, +/obj/effect/spawner/random/exotic/antag_gear_strong, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "gg" = ( @@ -2804,9 +2783,8 @@ /turf/open/floor/plasteel/cafeteria, /area/awaymission/snowdin/post/messhall) "gC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/messhall) "gD" = ( /turf/open/floor/plating, @@ -2832,9 +2810,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "gG" = ( /obj/machinery/hydroponics/constructable, @@ -2868,9 +2845,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "gM" = ( /obj/item/stack/cable_coil{ @@ -2915,7 +2891,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Garage APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2934,14 +2910,14 @@ /obj/effect/decal/remains/human, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "gV" = ( /obj/effect/decal/cleanable/blood/old, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "gW" = ( @@ -3176,9 +3152,8 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) "hx" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "hy" = ( /obj/effect/decal/cleanable/dirt, @@ -3187,9 +3162,8 @@ /area/awaymission/snowdin/post/hydro) "hz" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "hA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -3221,7 +3195,7 @@ /obj/structure/destructible/cult/pylon, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "hG" = ( @@ -3420,9 +3394,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "ic" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -3471,10 +3444,10 @@ /area/awaymission/snowdin/cave) "il" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, +/obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "im" = ( @@ -3484,7 +3457,7 @@ }, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "in" = ( @@ -3494,7 +3467,7 @@ }, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "io" = ( @@ -3631,9 +3604,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "iw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -3649,9 +3621,8 @@ pixel_y = 32 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "ix" = ( /obj/effect/turf_decal/tile/neutral{ @@ -3753,11 +3724,6 @@ "iJ" = ( /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) -"iK" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/snowdin/post/hydro) "iL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ piping_layer = 4; @@ -3873,9 +3839,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "iU" = ( /obj/machinery/door/airlock/public/glass{ @@ -4008,9 +3973,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "jj" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/dorm) "jk" = ( /obj/machinery/door/airlock/public/glass{ @@ -4044,9 +4008,8 @@ }, /area/awaymission/snowdin/post) "jo" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "jp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -4059,9 +4022,8 @@ dir = 8 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "jq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -4210,9 +4172,8 @@ /area/awaymission/snowdin/post/garage) "jF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "jG" = ( /obj/effect/decal/cleanable/dirt, @@ -4258,7 +4219,7 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "jN" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, +/obj/effect/spawner/random/exotic/snow_gear, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "jO" = ( @@ -4268,7 +4229,7 @@ }, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "jP" = ( @@ -4327,9 +4288,8 @@ /area/awaymission/snowdin/post) "jW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "jX" = ( /obj/effect/turf_decal/tile/neutral, @@ -4366,20 +4326,14 @@ }, /turf/open/floor/plasteel/cafeteria, /area/awaymission/snowdin/post/messhall) -"kb" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/awaymission/snowdin/post/messhall) "kc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ piping_layer = 4; pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/messhall) "kd" = ( /obj/machinery/light{ @@ -4400,12 +4354,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) -"kf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/snowdin/post/hydro) "kg" = ( /obj/machinery/holopad, /turf/open/floor/plasteel, @@ -4431,9 +4379,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "kj" = ( /obj/effect/decal/cleanable/dirt, @@ -4613,7 +4560,7 @@ dir = 1; name = "Custodials APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -4720,9 +4667,8 @@ /area/awaymission/snowdin/post/messhall) "kP" = ( /obj/item/trash/candy, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/messhall) "kQ" = ( /obj/effect/turf_decal/tile/green{ @@ -4794,9 +4740,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/garage) "la" = ( /obj/structure/filingcabinet, @@ -5185,9 +5130,8 @@ dir = 9 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "lH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -5219,9 +5163,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "lL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -5230,9 +5173,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "lM" = ( /obj/machinery/door/airlock/external/glass, @@ -5312,10 +5254,10 @@ /area/awaymission/snowdin/outside) "lT" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "lU" = ( @@ -5524,27 +5466,24 @@ "ms" = ( /obj/machinery/hydroponics/constructable, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "mt" = ( /turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "mu" = ( /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "mv" = ( /obj/structure/sink{ dir = 8; pixel_x = 11 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/hydro) "mw" = ( /obj/structure/lattice/catwalk, @@ -5634,9 +5573,8 @@ dir = 8; pixel_x = -26 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "mI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -5646,9 +5584,8 @@ pixel_x = 5; pixel_y = 5 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "mJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -5784,17 +5721,15 @@ pixel_y = 5 }, /obj/machinery/light/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "nd" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post) "ne" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -5947,15 +5882,14 @@ /area/awaymission/snowdin/post/engineering) "nq" = ( /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "nr" = ( /obj/machinery/power/apc{ dir = 1; name = "Engineering APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel, @@ -6007,12 +5941,6 @@ }, /turf/open/floor/plasteel, /area/awaymission/snowdin/post/hydro) -"nz" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/snowdin/post/hydro) "nA" = ( /obj/structure/reagent_dispensers/watertank/high, /obj/item/reagent_containers/glass/bucket, @@ -6233,7 +6161,7 @@ dir = 1; name = "Security Outpost APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -6423,7 +6351,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Hydroponics APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel, @@ -6833,9 +6761,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "pw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ @@ -7018,17 +6945,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "pY" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "pZ" = ( /obj/machinery/portable_atmospherics/scrubber, @@ -7094,7 +7019,7 @@ /obj/structure/flora/rock/pile/icy, /turf/open/floor/engine/cult{ initial_gas_mix = "o2=0;n2=82;plasma=24;TEMP=120"; - temperature = 120 + initial_temperature = 120 }, /area/awaymission/snowdin/cave/cavern) "qh" = ( @@ -7116,9 +7041,8 @@ /turf/open/floor/plasteel/grimy, /area/awaymission/snowdin/post/cavern2) "ql" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "qm" = ( /obj/structure/table, @@ -7236,9 +7160,8 @@ dir = 10 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "qB" = ( /obj/structure/cable, @@ -7361,9 +7284,8 @@ name = "Turbine Gas Release"; pixel_y = -24 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "qT" = ( /obj/effect/turf_decal/tile/yellow, @@ -7427,11 +7349,10 @@ frequency = 1442; name = "Toxins Supply Control"; output_tag = "snowdin_toxins_out"; - sensors = list("snowdin_toxins" = "Tank") - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" + sensors = list("snowdin_toxins"="Tank") }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/engineering) "qY" = ( /obj/effect/turf_decal/tile/yellow, @@ -7454,7 +7375,7 @@ frequency = 1442; name = "Oxygen Supply Control"; output_tag = "snowdin_oxygen_out"; - sensors = list("snowdin_oxygen" = "Tank") + sensors = list("snowdin_oxygen"="Tank") }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -7468,7 +7389,7 @@ frequency = 1442; name = "Nitrogen Supply Control"; output_tag = "snowdin_nitrogen_out"; - sensors = list("snowdin_nitrogen" = "Tank") + sensors = list("snowdin_nitrogen"="Tank") }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ @@ -7613,9 +7534,8 @@ /area/awaymission/snowdin/post/cavern2) "ry" = ( /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern2) "rz" = ( /obj/structure/cable, @@ -7645,7 +7565,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Main Outpost APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -7731,16 +7651,14 @@ "rM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; - frequency = 1442; - id_tag = "snowdin_toxins_out"; + chamber_id = "snowdin_toxins_out"; name = "toxin out" }, /turf/open/floor/engine/plasma, /area/awaymission/snowdin/post/engineering) "rN" = ( /obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_toxins"; + chamber_id = "snowdin_toxins"; name = "gas sensor (toxins)" }, /turf/open/floor/engine/plasma, @@ -7748,16 +7666,14 @@ "rO" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; - frequency = 1442; - id_tag = "snowdin_oxygen_out"; + chamber_id = "snowdin_oxygen_out"; name = "oxygen out" }, /turf/open/floor/engine/o2, /area/awaymission/snowdin/post/engineering) "rP" = ( /obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_oxygen"; + chamber_id = "snowdin_oxygen"; name = "gas sensor (oxygen)" }, /turf/open/floor/engine/o2, @@ -7765,7 +7681,6 @@ "rQ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; - frequency = 1442; id_tag = "snowdin_nitrogen_out"; name = "nitrogen out" }, @@ -7773,8 +7688,7 @@ /area/awaymission/snowdin/post/engineering) "rR" = ( /obj/machinery/air_sensor{ - frequency = 1442; - id_tag = "snowdin_nitrogen"; + chamber_id = "snowdin_nitrogen"; name = "gas sensor (nitrogen)" }, /turf/open/floor/engine/n2, @@ -8307,7 +8221,7 @@ /area/awaymission/snowdin/outside) "ts" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, +/obj/effect/spawner/random/exotic/antag_gear_strong, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "tt" = ( @@ -8315,7 +8229,7 @@ /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "tu" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "tv" = ( @@ -8324,7 +8238,7 @@ /area/awaymission/snowdin/cave/cavern) "tw" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, +/obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "tx" = ( @@ -8358,7 +8272,7 @@ /area/awaymission/snowdin/outside) "tD" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/plating/snowed/cavern, /area/awaymission/snowdin/cave/cavern) "tE" = ( @@ -8387,14 +8301,14 @@ /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tL" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/nurse/ice, +/mob/living/simple_animal/hostile/giant_spider/nurse/ice, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tN" = ( /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/outside) "tO" = ( -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, +/obj/effect/spawner/random/exotic/antag_gear, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tP" = ( @@ -8430,7 +8344,7 @@ /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/outside) "tV" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/ice, +/mob/living/simple_animal/hostile/giant_spider/ice, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "tW" = ( @@ -8456,9 +8370,8 @@ /area/awaymission/snowdin/outside) "ub" = ( /obj/structure/bed, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/cavern1) "uc" = ( /obj/structure/table/wood, @@ -8476,9 +8389,8 @@ dir = 4 }, /obj/structure/closet/cabinet, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/cavern1) "ug" = ( /obj/structure/table, @@ -8488,12 +8400,12 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /obj/structure/cable, /obj/machinery/power/apc{ dir = 1; name = "Main Outpost APC"; - pixel_y = 23 + pixel_y = 25 }, /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) @@ -8503,9 +8415,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uk" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/snowdin/post/cavern1) "ul" = ( /turf/open/floor/plating, @@ -8543,7 +8454,7 @@ /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/outside) "uw" = ( -/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice, +/mob/living/simple_animal/hostile/giant_spider/hunter/ice, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "ux" = ( @@ -8611,9 +8522,8 @@ }, /area/awaymission/snowdin/post/cavern1) "uF" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uG" = ( /turf/open/floor/plasteel, @@ -8644,9 +8554,8 @@ /area/awaymission/snowdin/post/cavern1) "uM" = ( /obj/structure/table, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uN" = ( /obj/structure/table, @@ -8668,7 +8577,7 @@ /area/awaymission/snowdin/post/cavern1) "uP" = ( /obj/structure/spider/stickyweb, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter/ice, +/mob/living/simple_animal/hostile/giant_spider/hunter/ice, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "uQ" = ( @@ -8684,9 +8593,8 @@ /area/awaymission/snowdin/post/cavern1) "uS" = ( /mob/living/simple_animal/hostile/skeleton/plasmaminer, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "uU" = ( /obj/item/chair, @@ -9131,7 +9039,7 @@ /area/awaymission/snowdin/cave) "wn" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; icon_state = "snow_dug"; @@ -9164,17 +9072,17 @@ /area/awaymission/snowdin/cave) "wr" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/plating/asteroid/snow, /area/awaymission/snowdin/cave) "ws" = ( /obj/structure/closet/crate/wooden, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/plating/ice/smooth, /area/awaymission/snowdin/cave) "wt" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, +/obj/effect/spawner/random/exotic/snow_gear, /turf/open/floor/plating/asteroid/snow{ floor_variance = 0; icon_state = "snow_dug"; @@ -9443,9 +9351,8 @@ "xf" = ( /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xg" = ( /obj/effect/turf_decal/stripes/line, @@ -9496,14 +9403,13 @@ /obj/machinery/light/broken{ dir = 8 }, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xr" = ( -/obj/effect/spawner/lootdrop/crate_spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xs" = ( /obj/item/gun/energy/e_gun{ @@ -9537,7 +9443,7 @@ /turf/open/floor/engine/cult, /area/awaymission/snowdin/post/mining_dock) "xx" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -9551,9 +9457,8 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_dock) "xy" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xz" = ( /obj/machinery/door/firedoor, @@ -9659,24 +9564,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xK" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 6; - id = "snowdin_excavation_top"; - name = "snowdin excavation top"; - roundstart_template = /datum/map_template/shuttle/snowdin/excavation; - width = 6 - }, -/turf/open/floor/plasteel/elevatorshaft{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" +/obj/structure/ladder/unbreakable{ + height = 1; + id = "snc" }, -/area/awaymission/snowdin/cave) +/turf/open/floor/plasteel/elevatorshaft, +/area/awaymission/snowdin/post/mining_dock) "xL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ dir = 8 @@ -9687,7 +9584,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "xN" = ( @@ -9706,13 +9603,9 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "xP" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 6; - id = "snowdin_excavation_down"; - name = "snowdin excavation down"; - width = 6 +/obj/structure/ladder/unbreakable{ + height = 1; + id = "snb" }, /turf/open/floor/plasteel/elevatorshaft, /area/awaymission/snowdin/post/mining_dock) @@ -9847,9 +9740,8 @@ /obj/structure/closet/crate, /obj/item/relic, /obj/item/relic, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "yk" = ( /obj/structure/closet/crate, @@ -9872,27 +9764,11 @@ }, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) -"ym" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/shuttle_flight/snowdin/mining{ - dir = 8; - name = "Excavation Elevator Console"; - possible_destinations = "snowdin_excavation_top;snowdin_excavation_down"; - shuttleId = "snowdin_excavation" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/snowdin/post/mining_dock) "yo" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plating/snowed/smoothed, /area/awaymission/snowdin/cave) "yp" = ( @@ -9909,16 +9785,13 @@ /turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "yr" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 +/obj/structure/ladder/unbreakable{ + height = 2; + id = "snc" }, -/obj/machinery/computer/shuttle_flight/snowdin/mining{ - dir = 8; - name = "Excavation Elevator Console"; - possible_destinations = "snowdin_excavation_top;snowdin_excavation_down"; - shuttleId = "snowdin_excavation" +/turf/open/floor/plasteel/elevatorshaft{ + initial_gas_mix = "o2=22;n2=82;TEMP=180" }, -/turf/open/floor/plating/snowed, /area/awaymission/snowdin/cave) "ys" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, @@ -9935,8 +9808,7 @@ "yu" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; + chamber_id = "snowdin_toxins_mine_1"; name = "toxin out" }, /turf/open/floor/engine/plasma, @@ -9988,9 +9860,8 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "yC" = ( /obj/effect/turf_decal/stripes/line{ @@ -10012,9 +9883,8 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "yF" = ( /obj/effect/turf_decal/weather/snow, @@ -10164,8 +10034,7 @@ "za" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 4; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; + chamber_id = "snowdin_toxins_mine_1"; name = "toxin out" }, /turf/open/floor/engine/plasma, @@ -10444,8 +10313,8 @@ /area/awaymission/snowdin/outside) "zP" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, +/obj/effect/spawner/random/exotic/snow_gear, +/obj/effect/spawner/random/exotic/snow_gear, /turf/open/floor/wood, /area/awaymission/snowdin/igloo) "zQ" = ( @@ -10584,9 +10453,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "Ai" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "Aj" = ( /obj/effect/decal/cleanable/dirt, @@ -10730,9 +10598,8 @@ /area/awaymission/snowdin/outside) "AE" = ( /obj/item/pen, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "AF" = ( /obj/structure/table, @@ -10797,9 +10664,8 @@ /area/awaymission/snowdin/post/minipost) "AN" = ( /obj/item/key/atv, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "AO" = ( /obj/effect/turf_decal/tile/neutral, @@ -10835,13 +10701,13 @@ /area/awaymission/snowdin/cave) "AU" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/wood, /area/awaymission/snowdin/igloo) "AV" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/wood, /area/awaymission/snowdin/igloo) "AW" = ( @@ -10913,9 +10779,8 @@ /area/awaymission/snowdin/post/minipost) "Bf" = ( /obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/minipost) "Bg" = ( /obj/effect/turf_decal/weather/snow/corner{ @@ -11008,7 +10873,7 @@ dir = 1; name = "Recon Post APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -11056,7 +10921,7 @@ /area/awaymission/snowdin/cave) "Bw" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/machinery/light/small{ dir = 4 }, @@ -11225,7 +11090,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 1 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/machinery/light/small{ brightness = 3; dir = 8 @@ -12236,8 +12101,8 @@ /area/awaymission/snowdin/cave) "Er" = ( /obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/spawner/random/exotic/antag_gear_weak, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -12309,7 +12174,7 @@ "Ex" = ( /obj/structure/table/reinforced, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -12386,7 +12251,7 @@ /turf/open/floor/mineral/plastitanium{ initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1; - temperature = 180 + initial_temperature = 180 }, /area/awaymission/snowdin/cave) "EF" = ( @@ -12398,7 +12263,7 @@ /turf/open/floor/mineral/plastitanium{ initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1; - temperature = 180 + initial_temperature = 180 }, /area/awaymission/snowdin/cave) "EG" = ( @@ -12412,7 +12277,7 @@ /turf/open/floor/mineral/plastitanium{ initial_gas_mix = "o2=22;n2=82;TEMP=180"; planetary_atmos = 1; - temperature = 180 + initial_temperature = 180 }, /area/awaymission/snowdin/cave) "EH" = ( @@ -12650,7 +12515,7 @@ /area/awaymission/snowdin/outside) "Fn" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plating/snowed, /area/awaymission/snowdin/outside) "Fo" = ( @@ -12664,7 +12529,7 @@ /area/awaymission/snowdin/outside) "Fq" = ( /obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/machinery/light/small{ dir = 1 }, @@ -13160,9 +13025,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "GR" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "GS" = ( /obj/structure/window/reinforced/fulltile/ice, @@ -13196,9 +13060,8 @@ /area/awaymission/snowdin/post/mining_main/robotics) "GX" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/robotics) "GY" = ( /obj/effect/turf_decal/stripes/line, @@ -13232,9 +13095,8 @@ /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "Hf" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "Hg" = ( /obj/effect/decal/cleanable/dirt, @@ -13283,8 +13145,7 @@ "Hp" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 1; - frequency = 1442; - id_tag = "snowdin_toxins_mine_1"; + chamber_id = "snowdin_toxins_mine_1"; name = "toxin out" }, /turf/open/floor/engine/plasma, @@ -13313,9 +13174,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/robotics) "Hu" = ( /obj/machinery/holopad, @@ -13326,22 +13186,20 @@ /obj/machinery/power/apc{ dir = 4; name = "Robotics APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/white, /area/awaymission/snowdin/post/mining_main/robotics) "Hw" = ( /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Hx" = ( /obj/machinery/holopad, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Hy" = ( /obj/machinery/door/airlock/research/glass{ @@ -13373,9 +13231,8 @@ /area/awaymission/snowdin/post/mining_dock) "HD" = ( /obj/structure/table, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "HE" = ( /obj/structure/table, @@ -13452,9 +13309,8 @@ dir = 4; pixel_x = -23 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "HO" = ( /obj/effect/turf_decal/stripes/line, @@ -13467,9 +13323,8 @@ /area/awaymission/snowdin/post/mining_main/mechbay) "HQ" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main/mechbay) "HR" = ( /obj/effect/turf_decal/stripes/corner{ @@ -13559,9 +13414,8 @@ /area/awaymission/snowdin/post/mining_dock) "Ie" = ( /obj/structure/barricade/sandbags, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "If" = ( /obj/structure/sign/warning/nosmoking{ @@ -13733,9 +13587,8 @@ /area/awaymission/snowdin/post/mining_main) "II" = ( /obj/effect/decal/cleanable/oil, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "IJ" = ( /obj/structure/sign/warning/electricshock{ @@ -13754,7 +13607,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Main Outpost APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -13763,7 +13616,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Mechbay APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -13833,9 +13686,8 @@ /area/awaymission/snowdin/post/mining_main) "IY" = ( /obj/machinery/light, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) "Jc" = ( /obj/effect/turf_decal/tile/neutral{ @@ -13936,7 +13788,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) "Jp" = ( @@ -14351,14 +14203,9 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_main) "Kn" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 5; - id = "snowdin_mining_top"; - name = "snowdin mining top"; - roundstart_template = /datum/map_template/shuttle/snowdin/mining; - width = 5 +/obj/structure/ladder/unbreakable{ + height = 2; + id = "snb" }, /turf/open/floor/plasteel/elevatorshaft, /area/awaymission/snowdin/post/mining_main) @@ -14407,17 +14254,6 @@ }, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) -"Kt" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 5; - id = "snowdin_mining_down"; - name = "snowdin mining bottom"; - width = 5 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/awaymission/snowdin/post/mining_dock) "Ku" = ( /obj/machinery/light{ dir = 4 @@ -14451,7 +14287,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Mining Post APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -14551,36 +14387,9 @@ /obj/structure/sign/warning/docking{ pixel_x = 32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/awaymission/snowdin/post/mining_main) -"KO" = ( -/obj/machinery/computer/shuttle_flight/snowdin/mining{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/mining_main) -"KQ" = ( -/obj/machinery/computer/shuttle_flight/snowdin/mining{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/awaymission/snowdin/post/mining_dock) "KR" = ( /obj/effect/turf_decal/tile/brown{ dir = 1 @@ -14668,7 +14477,7 @@ /turf/open/floor/plasteel, /area/awaymission/snowdin/post/mining_dock) "La" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating/asteroid/snow/ice, /area/awaymission/snowdin/cave/cavern) "Lw" = ( @@ -14727,9 +14536,8 @@ /area/awaymission/snowdin/cave) "PI" = ( /obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/awaymission/snowdin/post/cavern1) "PR" = ( /obj/machinery/door/airlock/external{ @@ -14754,7 +14562,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Main Outpost APC"; - pixel_x = 24 + pixel_x = 25 }, /turf/open/floor/plating, /area/awaymission/snowdin/post/mining_dock) @@ -26980,7 +26788,7 @@ gA gA jx ka -kb +gC lz mn dO @@ -27750,7 +27558,7 @@ gA hV iF gD -kb +gC kO lC mo @@ -28736,7 +28544,7 @@ JP JP Km JP -KO +JP KV GP ac @@ -28991,7 +28799,7 @@ Go Jx JQ JQ -Kn +JQ JQ JQ KT @@ -29505,7 +29313,7 @@ Go Jy JQ JQ -JQ +Kn JQ JQ KU @@ -29806,7 +29614,7 @@ gH gH gH gJ -kf +hz iJ lI mt @@ -30318,14 +30126,14 @@ fT gJ hy gH -iK +hx gH hz hy lI mu mR -nz +mu nX ou oV @@ -30581,7 +30389,7 @@ hz gI lK ms -kf +hz nA nY ov @@ -30939,7 +30747,7 @@ xa xl xl xl -xK +xl xl xl an @@ -31452,7 +31260,7 @@ ai xb xl xl -xl +yr xl xl xl @@ -31970,7 +31778,7 @@ xl xl xl xl -yr +yp an ii ii @@ -62917,7 +62725,7 @@ Ka xO Ks Ka -KQ +Ka KZ wE bh @@ -63172,7 +62980,7 @@ wE JH Ys Ys -Kt +Ys Ys Ys KX @@ -63686,7 +63494,7 @@ wE JI Ys Ys -Ys +xP Ys Ys KY @@ -65893,7 +65701,7 @@ xB xJ xO xZ -ym +xZ yy yQ wE @@ -66148,7 +65956,7 @@ xg Ys Ys Ys -xP +Ys Ys Ys yz @@ -66661,7 +66469,7 @@ wX xg Ys Ys -Ys +xK Ys Ys Ys diff --git a/_maps/RandomZLevels/spacebattle.dmm b/_maps/away/spacebattle.dmm similarity index 99% rename from _maps/RandomZLevels/spacebattle.dmm rename to _maps/away/spacebattle.dmm index 34e1a50aa5b4..6fa5772a68a3 100644 --- a/_maps/RandomZLevels/spacebattle.dmm +++ b/_maps/away/spacebattle.dmm @@ -38,6 +38,7 @@ /area/awaymission/spacebattle/syndicate2) "ak" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate2) "al" = ( @@ -118,6 +119,7 @@ /area/awaymission/spacebattle/syndicate3) "aE" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate3) "aG" = ( @@ -208,6 +210,7 @@ /area/awaymission/spacebattle/syndicate2) "bb" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate1) "bc" = ( @@ -345,6 +348,7 @@ /area/awaymission/spacebattle/cruiser) "bJ" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/cruiser) "bK" = ( @@ -425,9 +429,8 @@ /turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "ca" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "cb" = ( /obj/machinery/computer/pod{ @@ -465,21 +468,6 @@ /mob/living/simple_animal/hostile/syndicate, /turf/open/floor/mineral/plastitanium/red, /area/awaymission/spacebattle/syndicate1) -"cm" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, -/area/awaymission/spacebattle/cruiser) -"cn" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, -/area/awaymission/spacebattle/cruiser) -"cp" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, -/area/awaymission/spacebattle/cruiser) "cq" = ( /obj/effect/mob_spawn/human/engineer{ mob_name = "Rosen Miller"; @@ -505,9 +493,8 @@ "cw" = ( /obj/item/ammo_casing/c10mm, /obj/item/ammo_casing/c10mm, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "cx" = ( /obj/item/stack/sheet/iron, @@ -583,11 +570,6 @@ /obj/item/ammo_casing/c10mm, /turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) -"cN" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/awaymission/spacebattle/cruiser) "cO" = ( /obj/effect/landmark/awaystart, /turf/open/floor/plasteel, @@ -931,9 +913,8 @@ mob_name = "Clay Dawson"; name = "Clay Dawson" }, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "eb" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ @@ -1255,6 +1236,7 @@ /area/awaymission/spacebattle/cruiser) "fl" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate4) "fm" = ( @@ -1442,9 +1424,8 @@ /area/awaymission/spacebattle/cruiser) "fL" = ( /obj/item/stack/sheet/iron, -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "fM" = ( /obj/item/ammo_casing/shotgun, @@ -1926,8 +1907,7 @@ /area/awaymission/spacebattle/cruiser) "hq" = ( /obj/structure/rack, -/obj/item/clothing/suit/space/hardsuit, -/obj/item/clothing/head/helmet/space/hardsuit, +/obj/item/clothing/suit/space/hardsuit/engine, /turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "hr" = ( @@ -2002,12 +1982,6 @@ /obj/item/instrument/violin, /turf/open/floor/wood, /area/awaymission/spacebattle/cruiser) -"hF" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, -/area/awaymission/spacebattle/cruiser) "hI" = ( /obj/structure/table/reinforced, /turf/open/floor/plasteel/white, @@ -2052,12 +2026,6 @@ /obj/structure/rack, /turf/open/floor/engine, /area/awaymission/spacebattle/cruiser) -"hQ" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, -/area/awaymission/spacebattle/cruiser) "hS" = ( /obj/machinery/computer/shuttle_flight{ dir = 4 @@ -2073,6 +2041,7 @@ /area/awaymission/spacebattle/syndicate7) "hU" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate7) "hV" = ( @@ -2206,9 +2175,8 @@ "iu" = ( /obj/effect/mob_spawn/human/syndicatesoldier, /obj/item/gun/ballistic/automatic/c20r, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "iv" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ @@ -2251,6 +2219,7 @@ /area/space/nearstation) "iF" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating/airless, /area/space/nearstation) "iG" = ( @@ -2327,6 +2296,7 @@ /area/awaymission/spacebattle/syndicate6) "jf" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/awaymission/spacebattle/syndicate6) "ji" = ( @@ -2467,7 +2437,7 @@ /area/awaymission/spacebattle/cruiser) "jE" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/awaymission/spacebattle/cruiser) "jF" = ( @@ -2490,12 +2460,12 @@ /area/awaymission/spacebattle/cruiser) "jI" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/engine, /area/awaymission/spacebattle/cruiser) "jJ" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/armory_contraband, +/obj/effect/spawner/random/contraband/armory, /turf/open/floor/plating, /area/awaymission/spacebattle/cruiser) "jK" = ( @@ -2524,9 +2494,8 @@ /obj/item/ammo_casing/c10mm, /obj/item/ammo_casing/c10mm, /obj/effect/decal/cleanable/blood, -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/spacebattle/cruiser) "jN" = ( /obj/structure/closet/crate, @@ -2603,7 +2572,7 @@ /turf/open/floor/engine, /area/awaymission/spacebattle/cruiser) "ka" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/awaymission/spacebattle/cruiser) "kb" = ( @@ -2793,6 +2762,11 @@ /obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, /turf/open/floor/plating, /area/awaymission/spacebattle/cruiser) +"kV" = ( +/obj/machinery/door/unpowered/shuttle, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/awaymission/spacebattle/cruiser) "vw" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/awaymission/spacebattle/syndicate5) @@ -2802,6 +2776,11 @@ "BO" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/awaymission/spacebattle/syndicate2) +"Cw" = ( +/obj/machinery/door/unpowered/shuttle, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/awaymission/spacebattle/cruiser) "Dv" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/awaymission/spacebattle/syndicate3) @@ -22460,7 +22439,7 @@ bM bM bM cc -cp +ca cc cr kl @@ -22973,9 +22952,9 @@ bO bO bO ci -cm +ca cw -cp +ca cc cQ cc @@ -23230,8 +23209,8 @@ hy bO bO ci -cn -cm +ca +ca cM cc cc @@ -23489,7 +23468,7 @@ bO Wv bM cx -cN +ca cM cc cc @@ -23744,9 +23723,9 @@ bM bM bM bM -cp +ca cc -cN +ca cc cc cr @@ -25319,7 +25298,7 @@ cc cc cc cc -cN +ca cc cL bT @@ -25577,8 +25556,8 @@ cc cc fm cM -cN -cN +ca +ca bT ab ab @@ -25835,7 +25814,7 @@ cc cc cc iu -cp +ca bT ab ab @@ -26090,9 +26069,9 @@ cc cc cc cc -cp -cN -cN +ca +ca +ca bT ab ab @@ -33265,7 +33244,7 @@ cc cc cc cc -cn +ca cc cc cc @@ -33522,8 +33501,8 @@ cc it cc fL -cn -cn +ca +ca cc cc cc @@ -34036,7 +34015,7 @@ dU dU dU ex -cp +ca fL fc bT @@ -34309,7 +34288,7 @@ gy gy gy bT -cp +ca cc bT cK @@ -34552,7 +34531,7 @@ cc ez cc cc -cp +ca cd fq jO @@ -34566,8 +34545,8 @@ gy gy gy cK -cp -cp +ca +ca bT cK cK @@ -34809,10 +34788,10 @@ cc cc cc cQ -cn +ca hs jM -cp +ca cK gy gy @@ -35063,12 +35042,12 @@ dB dV ei ei -cn -cm -cm -cn +ca +ca +ca +ca cK -hF +fL fM bT gy @@ -35567,8 +35546,8 @@ ab ab ab bS -cJ -cJ +kV +kV bT cc cc @@ -35578,9 +35557,9 @@ dh dh bT eC -cn +ca fL -cp +ca jK fs fO @@ -35594,11 +35573,11 @@ hq dh dh bT -cp +ca cc bT -cJ -cJ +kV +kV bS ab ab @@ -35828,9 +35807,9 @@ ab ab bT cc -cm +ca cK -cm +ca cc cc bT @@ -35849,9 +35828,9 @@ gZ bT cc cQ -cn +ca hs -cn +ca cc bT ab @@ -36085,10 +36064,10 @@ ab ab bT fL -cp +ca hs -cm -hQ +ca +fL cc bT jy @@ -36106,9 +36085,9 @@ gZ bT cc cc -cp +ca bT -cn +ca cc bT ab @@ -36342,9 +36321,9 @@ ab ab bT cc -cp +ca hs -hF +fL cc cc bT @@ -37887,7 +37866,7 @@ cc cc bT bT -cd +Cw bT bT cY @@ -37904,7 +37883,7 @@ eb ha bT bT -cd +Cw bT bT cc @@ -50734,7 +50713,7 @@ ab ab bT cc -cm +ca cc cc cc @@ -50990,11 +50969,11 @@ ab ab ab bT -cm -cn -cp -cp -cn +ca +ca +ca +ca +ca cc dJ cc @@ -51250,7 +51229,7 @@ bM bM bM bM -cm +ca it cc cc @@ -51508,7 +51487,7 @@ bO dc Wv bM -cp +ca cc cc cQ @@ -51764,9 +51743,9 @@ gJ bO bO dr -cn -cp -cn +ca +ca +ca cc jz cc @@ -52536,8 +52515,8 @@ bM bM bM cc -cn -cp +ca +ca cQ cc cc @@ -52790,7 +52769,7 @@ ab ab bT cc -cN +ca cc cc cc @@ -53046,7 +53025,7 @@ ab ab ab bT -cp +ca cc cc dJ diff --git a/_maps/away/thebeach.dmm b/_maps/away/thebeach.dmm new file mode 100644 index 000000000000..41b6a71e01ec --- /dev/null +++ b/_maps/away/thebeach.dmm @@ -0,0 +1,15461 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/indestructible/sandstone, +/area/awaymission/beach) +"ab" = ( +/turf/open/indestructible/binary{ + density = 1; + desc = "I can't move through this."; + icon = 'icons/misc/beach.dmi'; + icon_state = "water"; + name = "deep ocean water" + }, +/area/awaymission/beach) +"ac" = ( +/turf/open/floor/plating/beach/water, +/area/awaymission/beach) +"ad" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 1 + }, +/area/awaymission/beach) +"ae" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 8 + }, +/area/awaymission/beach) +"af" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 9 + }, +/area/awaymission/beach) +"ag" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 1 + }, +/area/awaymission/beach) +"ah" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 5 + }, +/area/awaymission/beach) +"ai" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 4 + }, +/area/awaymission/beach) +"aj" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 8 + }, +/area/awaymission/beach) +"ak" = ( +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"al" = ( +/obj/effect/overlay/palmtree_r{ + desc = "How did you get here?"; + icon_state = "palm2"; + name = "\proper island palm tree" + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"am" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 4 + }, +/area/awaymission/beach) +"an" = ( +/obj/effect/overlay/coconut{ + pixel_x = 17; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"ao" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 10 + }, +/area/awaymission/beach) +"ap" = ( +/turf/open/floor/plating/beach/coastline_t, +/area/awaymission/beach) +"aq" = ( +/turf/open/floor/plating/beach/coastline_t{ + dir = 6 + }, +/area/awaymission/beach) +"ar" = ( +/turf/open/floor/plating/beach/coastline_b, +/area/awaymission/beach) +"as" = ( +/obj/structure/flora/rock{ + desc = "A volcanic rock."; + name = "coastal rock" + }, +/obj/structure/flora/ausbushes/stalkybush{ + desc = "It can't be smoked."; + name = "sea weed" + }, +/turf/open/indestructible/binary{ + density = 1; + desc = "I can't move through this."; + icon = 'icons/misc/beach.dmi'; + icon_state = "water"; + name = "deep ocean water" + }, +/area/awaymission/beach) +"at" = ( +/obj/structure/flora/rock{ + desc = "A volcanic rock."; + name = "coastal rock" + }, +/turf/open/indestructible/binary{ + density = 1; + desc = "I can't move through this."; + icon = 'icons/misc/beach.dmi'; + icon_state = "water"; + name = "deep ocean water" + }, +/area/awaymission/beach) +"au" = ( +/obj/structure/closet/crate/wooden{ + desc = "Now this is what island exploration is all about."; + name = "Treasure Chest" + }, +/obj/item/clothing/head/pirate, +/obj/item/clothing/glasses/eyepatch, +/obj/item/clothing/suit/pirate, +/obj/item/melee/sabre{ + desc = "This isn't real however it can trick someone into thinking you have something real.."; + force = 0; + name = "foam pirate's sabre"; + throwforce = 0 + }, +/obj/item/melee/sabre{ + desc = "This isn't real however it can trick someone into thinking you have something real.."; + force = 0; + name = "foam pirate's sabre"; + throwforce = 0 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"av" = ( +/turf/open/floor/plating/beach/water{ + desc = "What's the difference?"; + name = "coastline water" + }, +/area/awaymission/beach) +"aw" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 6 + }, +/area/awaymission/beach) +"ax" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 10 + }, +/area/awaymission/beach) +"ay" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 4 + }, +/area/awaymission/beach) +"az" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 1 + }, +/area/awaymission/beach) +"aA" = ( +/obj/effect/overlay/palmtree_l, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aB" = ( +/mob/living/simple_animal/crab/kreb, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aC" = ( +/obj/item/flashlight/flare/torch, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aD" = ( +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aF" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aG" = ( +/obj/item/clothing/mask/gas/tiki_mask, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aH" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{ + pixel_x = -17; + pixel_y = 17 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aI" = ( +/obj/item/melee/skateboard{ + color = "#6666ff"; + desc = "Yes, surf boards have wheels. Stop laughing."; + name = "surf board"; + pixel_x = -15; + pixel_y = 1 + }, +/turf/open/floor/plating/beach/water, +/area/awaymission/beach) +"aJ" = ( +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = -14; + pixel_y = 15 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aK" = ( +/mob/living/simple_animal/crab, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aO" = ( +/obj/effect/baseturf_helper/beach/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aQ" = ( +/obj/machinery/gateway/away, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aS" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -12; + pixel_y = 14 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"aT" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner{ + dir = 8 + }, +/area/awaymission/beach) +"aX" = ( +/turf/closed/wall/mineral/sandstone, +/area/awaymission/beach) +"aY" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 5 + }, +/area/awaymission/beach) +"aZ" = ( +/obj/effect/overlay/palmtree_r, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"ba" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bb" = ( +/obj/structure/dresser{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bc" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bd" = ( +/turf/open/floor/wood, +/area/awaymission/beach) +"be" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bf" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 9 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bg" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 1 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bh" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 5 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bi" = ( +/obj/machinery/button/door{ + id = "changlinhut2"; + name = "changing room lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bj" = ( +/obj/machinery/button/door{ + id = "changlinhut1"; + name = "changing room lock"; + normaldoorcontrol = 1; + pixel_x = -24; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bk" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/glasses/heat, +/turf/open/floor/wood, +/area/awaymission/beach) +"bl" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "theloveshack1"; + name = "door lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/beach) +"bm" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "theloveshack2"; + name = "door lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/beach) +"bn" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "theloveshack3"; + name = "door lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/beach) +"bo" = ( +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/awaymission/beach) +"bp" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bq" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/telecomms/relay/preset/mining, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"br" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bs" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "changlinhut2"; + name = "changing room" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bt" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "changlinhut1"; + name = "changing room" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bu" = ( +/obj/item/reagent_containers/food/drinks/bottle/wine, +/obj/item/reagent_containers/food/drinks/bottle/rum, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/beach) +"bv" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bw" = ( +/turf/open/floor/plating/beach/coastline_b{ + dir = 9 + }, +/area/awaymission/beach) +"bx" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 10 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"by" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bz" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/stripes/asteroid/line{ + dir = 6 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bA" = ( +/obj/structure{ + desc = "Bar and beach south, dorms east."; + icon = 'icons/obj/stationobjs.dmi'; + icon_state = "signpost"; + name = "directions signpost" + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bB" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "theloveshack1"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bC" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "theloveshack2"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bD" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "theloveshack3"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bE" = ( +/obj/effect/overlay/palmtree_l{ + pixel_y = 25 + }, +/obj/effect/overlay/coconut{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bF" = ( +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/sand, +/obj/structure/table/wood, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bG" = ( +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/shoes/sandal, +/obj/structure/closet/crate, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bH" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bI" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "loveshack"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bJ" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "theloveshack4"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bK" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "theloveshack5"; + name = "Beach Hut" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"bL" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bM" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/effect/turf_decal/sand, +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bN" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/turf_decal/sand, +/obj/structure/sink{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bO" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/champagne, +/turf/open/floor/wood, +/area/awaymission/beach) +"bP" = ( +/obj/item/trash/chips{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bQ" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bR" = ( +/obj/machinery/button/door{ + id = "toilet1"; + name = "restroom lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bS" = ( +/obj/machinery/button/door{ + id = "toilet2"; + name = "restroom lock"; + normaldoorcontrol = 1; + pixel_x = -24; + specialfunctions = 4 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bT" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "loveshack"; + name = "love shack lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/red, +/turf/open/floor/wood, +/area/awaymission/beach) +"bU" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "theloveshack4"; + name = "door lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/beach) +"bV" = ( +/obj/structure/sign/poster/ripped{ + pixel_x = 32 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"bW" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "theloveshack5"; + name = "door lock"; + normaldoorcontrol = 1; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/awaymission/beach) +"bX" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "toilet1"; + name = "restroom stall" + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bY" = ( +/obj/machinery/door/airlock/sandstone{ + id_tag = "toilet2"; + name = "restroom stall" + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/white, +/area/awaymission/beach) +"bZ" = ( +/obj/structure/dresser{ + density = 0 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"ca" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"cb" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = -28 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cc" = ( +/obj/item/trash/can{ + pixel_x = 14; + pixel_y = 7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cd" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/vending/cola/starkist, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"ce" = ( +/obj/effect/turf_decal/sand, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cf" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/vending/cigarette, +/obj/structure/sign/poster/contraband/smoke{ + pixel_y = -32 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cg" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/vending/cola/space_up, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"ch" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"ci" = ( +/obj/structure/closet/gmcloset, +/turf/open/floor/wood, +/area/awaymission/beach) +"cj" = ( +/obj/structure/closet/secure_closet/bar, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/wood, +/area/awaymission/beach) +"ck" = ( +/obj/effect/mob_spawn/human/bartender/alive, +/turf/open/floor/wood, +/area/awaymission/beach) +"cl" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/wood, +/area/awaymission/beach) +"cm" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/wood, +/area/awaymission/beach) +"cn" = ( +/obj/machinery/vending/boozeomat/all_access{ + desc = "A technological marvel, supposedly able to mix just the mixture you'd like to drink the moment you ask for one. May not work for bartenders that don't have Nanotrasen bank accounts." + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"co" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/obj/structure/sign/picture_frame{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"cp" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/turf/open/floor/wood, +/area/awaymission/beach) +"cq" = ( +/obj/structure/table/wood, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/awaymission/beach) +"cr" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(25) + }, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/enzyme, +/turf/open/floor/wood, +/area/awaymission/beach) +"cs" = ( +/obj/machinery/processor, +/turf/open/floor/wood, +/area/awaymission/beach) +"ct" = ( +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cu" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cv" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cw" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/food/meat/slab/goliath, +/obj/item/food/meat/slab/xeno, +/obj/item/food/meat/slab/spider, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/bear, +/turf/open/floor/wood, +/area/awaymission/beach) +"cx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cy" = ( +/obj/effect/turf_decal/stripes/white/full, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cz" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cA" = ( +/obj/structure/mineral_door/wood{ + name = "bar" + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"cB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/ale, +/turf/open/floor/wood, +/area/awaymission/beach) +"cC" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/beach) +"cD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/awaymission/beach) +"cE" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/turf/open/floor/wood, +/area/awaymission/beach) +"cF" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime, +/turf/open/floor/wood, +/area/awaymission/beach) +"cG" = ( +/obj/item/toy/beach_ball, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cH" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cI" = ( +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cJ" = ( +/obj/effect/turf_decal/stripes/white/corner, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cK" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cL" = ( +/obj/structure/table, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cM" = ( +/obj/structure/table, +/obj/item/food/chips, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cN" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/sodawater, +/obj/item/reagent_containers/food/drinks/soda_cans/shamblers, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, +/obj/item/reagent_containers/food/drinks/soda_cans/air, +/obj/item/reagent_containers/food/drinks/soda_cans/canned_laughter, +/obj/item/reagent_containers/food/drinks/soda_cans/tonic, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cO" = ( +/obj/structure/chair, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cP" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -12 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 13 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cQ" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ + pixel_x = -12; + pixel_y = 3 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cR" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cS" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = -9; + pixel_y = -7 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cT" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cU" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/space_mountain_wind{ + pixel_x = 15 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cV" = ( +/obj/effect/overlay/coconut{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/plating/beach/coastline_t/sandwater_inner, +/area/awaymission/beach) +"cW" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -12 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cX" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -5 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cY" = ( +/obj/item/reagent_containers/food/drinks/soda_cans/starkist{ + pixel_x = -6 + }, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"cZ" = ( +/obj/item/clothing/head/collectable/paper{ + desc = "What looks like an ordinary paper hat is actually a rare and valuable collector's edition paper hat. Keep away from fire, Curators, and ocean waves." + }, +/turf/open/floor/plating/beach/water, +/area/awaymission/beach) +"da" = ( +/mob/living/simple_animal/parrot, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"db" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/turf/open/floor/wood, +/area/awaymission/beach) +"dc" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_syndie, +/turf/open/floor/wood, +/area/awaymission/beach) +"dd" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_red, +/turf/open/floor/wood, +/area/awaymission/beach) +"de" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman, +/turf/open/floor/wood, +/area/awaymission/beach) +"df" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/neck/necklace/dope, +/turf/open/floor/wood, +/area/awaymission/beach) +"dg" = ( +/obj/item/clothing/glasses/heat, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) +"iy" = ( +/obj/item/toy/seashell, +/turf/open/floor/plating/beach/coastline_t, +/area/awaymission/beach) +"MD" = ( +/obj/item/toy/seashell, +/turf/open/floor/plating/beach/sand, +/area/awaymission/beach) + +(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 +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 +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 +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 +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 +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 +"} +(3,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(4,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(5,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(6,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(7,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(8,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(9,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(10,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(11,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(12,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(13,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(14,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(15,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +as +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(16,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(17,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(18,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(19,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(20,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(21,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(22,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(23,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(24,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(25,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(26,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(27,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(28,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(29,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(30,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(31,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(32,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(33,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +aw +af +aj +aj +aj +ao +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(34,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +aw +af +ay +MD +ak +MD +aT +ao +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(35,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +aw +af +ay +MD +ak +ak +ak +ak +aT +ao +aY +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(36,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +aw +af +ay +ak +ak +ak +MD +ak +ak +ak +aT +aj +aj +ao +aY +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(37,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +aw +af +ay +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +aT +aj +aj +aj +aj +ao +aY +ae +ac +ac +ac +ac +ae +ae +ae +ae +ae +ae +ae +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(38,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +af +ay +ak +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aT +aj +ao +aY +ac +ac +ad +af +aj +aj +aj +aj +aj +ao +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(39,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +aA +ak +aD +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aT +ao +aY +ae +aw +ag +MD +aZ +ak +ak +ak +aT +ao +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(40,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +aA +ak +ak +ak +ak +ak +aD +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +MD +aT +aj +aj +aj +ay +ak +ak +ak +ak +ak +MD +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(41,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +ak +aC +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aK +ak +cG +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(42,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +aC +aF +aC +ak +ak +ak +ak +ak +ak +ak +aD +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(43,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +aA +ak +ak +aG +ak +aD +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(44,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +aC +aF +aC +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aA +ak +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(45,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +ak +aC +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aD +ak +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(46,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +aD +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ch +ak +ak +ak +ak +ak +ak +ak +ak +ak +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(47,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +aA +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +aZ +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(48,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aK +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(49,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +ba +ba +ba +ba +ba +ba +ba +ba +ak +ak +ak +ak +iy +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(50,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +aX +aX +aX +aX +cA +aX +ba +ba +ak +ak +ak +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(51,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ag +MD +ak +ak +ak +ak +ak +ak +ak +ak +aZ +bf +bp +bx +ak +ak +aX +aX +aX +aX +ak +ba +cd +aX +ci +bd +bd +bd +cB +cH +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(52,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +bg +bq +by +ak +ak +aX +bL +bQ +aX +ak +ba +ce +aX +cj +bd +bd +bd +cB +cH +ba +ak +ak +cP +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(53,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ax +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +bh +br +bz +ak +aA +aX +bM +bR +bX +ba +ba +ba +aX +ck +bd +bd +bd +cC +cH +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(54,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ak +ak +aD +aX +aX +aX +aX +ak +ba +ba +aX +cl +bd +bd +bd +cD +cH +ba +ak +ak +ak +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(55,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ax +ag +ak +ak +ak +ak +bf +bp +bx +ak +ak +ba +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +aX +cm +bd +bd +bd +cC +cH +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(56,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +bg +aQ +by +ba +ba +ba +ba +ba +ba +ba +ba +ba +ba +ba +ba +cf +aX +cn +bd +bd +bd +cE +cH +ba +ak +ak +cQ +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(57,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +bh +br +bz +ak +ak +ak +bA +ba +ba +ak +ak +ak +ak +ak +ba +ba +aX +co +bd +bd +bd +cF +cH +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(58,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +aX +aX +aX +aX +ak +ba +ba +aX +cp +bd +bd +bd +cC +cH +ba +ak +ak +cR +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(59,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +aX +bN +bS +bY +ba +ba +ba +aX +cq +bd +bd +bd +cC +cH +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(60,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +aX +bL +bQ +aX +ak +ba +ce +aX +bd +bd +bd +bd +cC +cH +ba +ak +aA +cS +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(61,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +aX +aX +aX +aX +ak +ba +ba +aX +aX +aX +aX +ak +ba +cg +aX +cr +cs +cw +bd +aX +cI +ba +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(62,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +aX +bb +bd +aX +ak +ba +ba +ak +ak +ak +ak +ak +ba +ba +aX +aX +aX +aX +aX +aX +ba +ba +ak +ak +cT +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(63,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +aX +bc +bi +bs +ba +ba +ba +bF +ak +ak +ak +ak +ba +ba +ba +ba +ba +ba +ba +ba +ba +ba +ak +ak +ak +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(64,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ax +ag +ak +ak +ak +ak +ak +aX +aX +aX +aX +ak +ba +ba +bG +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(65,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +bH +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(66,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ad +ag +aE +ak +ak +aA +ak +ak +ak +ak +ak +ak +ba +ba +bG +ak +ak +aZ +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +cK +cM +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(67,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ad +ag +ak +aH +dg +ak +aD +ak +ak +ak +ak +ak +ba +ba +bH +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +cL +cN +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(68,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +ba +ba +bG +ak +ak +ak +ak +ak +ak +aD +ak +ak +ak +ak +cG +ak +ak +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(69,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ax +ag +aE +ak +ak +ak +aX +aX +aX +aX +ak +ba +ba +bH +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aZ +ak +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(70,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ad +ag +ak +aJ +aE +ak +aX +bb +bj +bt +ba +ba +ba +bG +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aD +ak +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(71,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ad +ah +am +az +ak +aS +aX +bc +bd +aX +ak +ba +ba +bH +ak +ak +ak +aA +ak +ak +ak +aA +ak +ak +aA +ak +ak +aK +ak +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(72,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ai +ax +ah +am +az +aX +aX +aX +aX +ak +ba +ba +bG +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(73,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ai +ax +ag +ak +ak +ak +ak +ak +ba +ba +bH +ak +ak +ak +ak +ak +ak +ak +ak +ct +cx +cx +cx +cx +cJ +ak +ak +cU +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(74,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ag +aA +ak +ak +ak +ak +ba +ba +bG +ak +ak +ak +ak +ak +MD +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(75,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ba +ba +bH +ak +ak +ak +ak +ak +bv +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +ak +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(76,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ba +ba +ak +ak +ak +ak +ak +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +aZ +bo +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(77,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +aI +ac +ad +ag +ak +ak +ak +ak +ak +ba +ba +ak +ak +ak +ak +ak +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(78,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ag +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +aK +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(79,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ag +aX +bb +de +bu +aX +ba +ba +aX +bO +db +bZ +aX +ak +ak +ak +ak +cu +cy +cy +cy +cy +cy +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(80,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aw +ag +aX +bd +bd +bd +bB +ba +ba +bI +bd +bd +bd +aX +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +cV +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(81,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ae +aw +af +ay +aX +be +bl +bd +aX +ba +ba +aX +bd +bT +ca +aX +ak +aZ +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(82,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +aw +af +aj +ay +ak +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +aD +ak +cu +ak +ak +ak +ak +cu +ak +ak +ap +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(83,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ad +af +ay +aA +ak +ak +ak +ak +ak +ak +ak +ba +ba +ak +ak +ak +ak +ak +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +aT +ao +aY +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(84,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +aw +ag +ak +aK +ak +ak +ak +ak +ak +ak +ak +ba +ba +ak +ak +ak +ak +ak +ak +ak +ak +ak +cu +ak +ak +ak +ak +cu +ak +ak +ak +aT +ao +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(85,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +aw +af +ay +ak +ak +ak +ak +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +ak +ak +cv +cz +cz +cz +cz +cz +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(86,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +af +ay +ak +ak +ak +ak +ak +aX +bb +df +bu +aX +ba +ba +aX +bu +dc +bZ +aX +ak +ak +ak +ak +aZ +ak +ak +ak +ak +ak +ak +ak +cW +ak +ap +ar +ac +ac +ac +cZ +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(87,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +aw +ag +MD +ak +ak +ak +ak +ak +aX +bd +bd +bd +bC +ba +ba +bJ +bd +bd +bd +aX +ak +ak +ak +ak +aD +ak +ak +ak +ak +ak +ak +ak +cO +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(88,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +af +ay +ak +MD +ak +ak +ak +ak +aX +be +bm +bd +aX +ba +ba +aX +bd +bU +ca +aX +ak +ak +ak +ak +ak +ak +ak +ak +aZ +ak +ak +ak +cX +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(89,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +cO +ak +iy +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(90,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +ag +aA +aB +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ba +ba +ak +ak +ak +cb +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +cY +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(91,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bv +ak +ba +ba +ak +bP +bV +cc +ak +ak +ak +ak +ak +aA +ak +ak +ak +ak +ak +ak +ak +aK +MD +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(92,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +aO +ak +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ap +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(93,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ax +ag +MD +ak +ak +ak +ak +ak +aX +bb +dd +bu +aX +ba +ba +aX +bu +bk +bZ +aX +ak +ak +ak +ak +ak +ak +aK +ak +ak +ak +ak +ak +MD +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(94,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +aX +bd +bd +bd +bD +ba +ba +bK +bd +bd +bd +aX +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aA +aD +bo +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(95,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ax +ah +az +ak +ak +ak +ak +aX +be +bn +bd +aX +ba +ba +aX +bd +bW +ca +aX +ak +ak +aA +ak +ak +ak +ak +cG +ak +ak +ak +bo +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(96,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ax +ah +az +aK +ak +ak +aX +aX +aX +aX +aX +ba +ba +aX +aX +aX +aX +aX +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(97,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ax +ag +aA +ak +ak +ak +ak +ak +ak +ak +ak +bE +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(98,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +am +am +am +am +am +am +am +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(99,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ax +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +am +aq +bw +ai +ai +ai +ai +ai +ai +ai +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(100,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ax +ah +az +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +bo +aq +bw +ai +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(101,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ax +ag +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ap +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(102,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ah +az +ak +ak +ak +ak +bo +am +am +az +bo +aq +ar +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(103,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ax +ah +az +bo +am +am +aq +bw +ax +ah +aq +bw +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(104,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ax +ah +aq +bw +ai +ai +ac +ac +ai +ai +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(105,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ai +ai +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(106,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(107,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(108,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(109,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(110,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(111,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(112,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(113,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(114,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(115,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(116,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(117,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(118,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(119,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(120,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +av +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(121,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +ab +ab +ab +ab +ab +ab +at +ab +ab +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +at +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(122,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(123,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(124,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(125,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(126,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(127,1,1) = {" +aa +aa +ac +ae +ae +ae +ae +ae +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(128,1,1) = {" +aa +aa +ad +af +aj +aj +aj +ao +ar +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(129,1,1) = {" +aa +aa +ad +ag +ak +ak +da +ap +ar +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(130,1,1) = {" +aa +aa +ad +ag +au +an +ak +ap +ar +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(131,1,1) = {" +aa +aa +ad +ag +al +ak +MD +ap +ar +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(132,1,1) = {" +aa +aa +ad +ah +am +am +am +aq +ar +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(133,1,1) = {" +aa +aa +ac +ai +ai +ai +ai +ai +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(134,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 +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 +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 +"} +(135,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 +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 +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/RandomZLevels/totally_not_a_vietnam.dmm b/_maps/away/totally_not_a_vietnam.dmm similarity index 92% rename from _maps/RandomZLevels/totally_not_a_vietnam.dmm rename to _maps/away/totally_not_a_vietnam.dmm index 77022e920a22..954340b808a7 100644 --- a/_maps/RandomZLevels/totally_not_a_vietnam.dmm +++ b/_maps/away/totally_not_a_vietnam.dmm @@ -232,7 +232,7 @@ /area/awaymission/vietnam) "gi" = ( /obj/effect/light_emitter, -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4 }, /turf/open/floor/plating/dirt/jungle, @@ -275,7 +275,7 @@ /turf/open/floor/grass/gensgrass/dirty, /area/awaymission/vietnam) "ia" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4 }, /turf/open/floor/plating/dirt/jungle, @@ -306,7 +306,7 @@ /area/awaymission/vietnam) "je" = ( /obj/effect/light_emitter, -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, @@ -320,7 +320,7 @@ /turf/open/floor/plating/grass/jungle, /area/awaymission/vietnam) "jK" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, @@ -344,25 +344,25 @@ /turf/open/floor/rospilovo, /area/awaymission/vietnam/dark) "kc" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4 }, /turf/open/floor/plating/grass/jungle, /area/awaymission/vietnam) "ke" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4 }, -/obj/structure/barricade/wooden/stockade, +/obj/structure/deployable_barricade/wooden, /turf/open/floor/plating/grass/jungle, /area/awaymission/vietnam) "ki" = ( -/obj/structure/barricade/wooden/stockade, +/obj/structure/deployable_barricade/wooden, /turf/open/floor/plating/grass/jungle, /area/awaymission/vietnam) "kw" = ( /obj/effect/light_emitter, -/obj/structure/barricade/wooden/stockade, +/obj/structure/deployable_barricade/wooden, /turf/open/floor/plating/dirt/jungle, /area/awaymission/vietnam) "kZ" = ( @@ -397,7 +397,7 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/awaymission/vietnam) "lO" = ( -/obj/structure/barricade/wooden/stockade, +/obj/structure/deployable_barricade/wooden, /turf/open/floor/plating/dirt/jungle, /area/awaymission/vietnam) "lP" = ( @@ -417,7 +417,7 @@ /turf/open/floor/plating/dirt/jungle/dark, /area/awaymission/vietnam) "lX" = ( -/obj/item/shovel/spade/wzzz, +/obj/item/shovel/spade/german, /obj/item/secateurs, /turf/open/floor/plating/dirt/jungle/dark, /area/awaymission/vietnam) @@ -557,16 +557,14 @@ /turf/open/floor/wood, /area/awaymission/vietnam/dark) "sn" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/chisel, +/obj/structure/table, /turf/open/floor/grass/gensgrass/dirty/stone, /area/awaymission/vietnam/dark) "ss" = ( -/obj/anvil, /turf/open/floor/grass/gensgrass/dirty/stone, /area/awaymission/vietnam/dark) "st" = ( -/obj/item/shovel/spade/wzzz, +/obj/item/shovel/spade/german, /turf/open/floor/plating/dirt/jungle/dark, /area/awaymission/vietnam) "sv" = ( @@ -578,7 +576,7 @@ /obj/item/kitchen/fork, /obj/item/lighter, /obj/item/screwdriver/nuke, -/obj/item/melee/baton/loaded/german, +/obj/item/melee/baton/loaded, /obj/item/surgical_drapes, /turf/open/floor/wood, /area/awaymission/vietnam/dark) @@ -597,19 +595,13 @@ /obj/item/storage/box/emptysandbags, /turf/open/floor/wood, /area/awaymission/vietnam/dark) -"tf" = ( -/obj/item/blacksmith/tongs, -/obj/item/blacksmith/smithing_hammer, -/obj/structure/table/stone, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "tF" = ( /obj/machinery/hydroponics/soil, -/obj/item/shovel/spade/wzzz, +/obj/item/shovel/spade/german, /turf/open/floor/plating/dirt/jungle/dark, /area/awaymission/vietnam) "tH" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ layer = 4 }, /turf/open/floor/plating/grass/jungle, @@ -649,11 +641,11 @@ /area/awaymission/vietnam/dark) "vz" = ( /obj/structure/table/wood, -/obj/item/shovel/spade/wzzz, -/obj/item/shovel/spade/wzzz, -/obj/item/shovel/spade/wzzz, -/obj/item/shovel/spade/wzzz, -/obj/item/shovel/spade/wzzz, +/obj/item/shovel/spade/german, +/obj/item/shovel/spade/german, +/obj/item/shovel/spade/german, +/obj/item/shovel/spade/german, +/obj/item/shovel/spade/german, /turf/open/floor/wood, /area/awaymission/vietnam/dark) "vD" = ( @@ -746,10 +738,6 @@ "yP" = ( /turf/open/floor/grass/gensgrass/dirty, /area/awaymission/vietnam) -"yQ" = ( -/obj/structure/table/stone, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "zj" = ( /obj/structure/table/wood, /obj/item/seeds/cotton, @@ -840,18 +828,6 @@ /obj/item/reagent_containers/syringe/salacid, /turf/open/floor/wood, /area/awaymission/vietnam/dark) -"AM" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/ingot{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/blacksmith/ingot{ - pixel_x = -12; - pixel_y = -4 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "AQ" = ( /turf/closed/mineral/random/vietnam, /area/awaymission/vietnam/dark) @@ -890,8 +866,8 @@ /turf/open/floor/rospilovo/wood, /area/awaymission/vietnam/dark) "BH" = ( -/obj/structure/barricade/wooden/stockade, -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden, +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, @@ -910,28 +886,20 @@ /turf/open/water, /area/awaymission/vietnam/dark) "Cl" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ layer = 4 }, /turf/open/floor/plating/grass/jungle, /area/awaymission/vietnam) -"Cw" = ( -/obj/machinery/torch_fixture{ - dir = 4; - on = 1; - pixel_x = 32 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "CX" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ layer = 4 }, -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, @@ -944,18 +912,6 @@ /mob/living/simple_animal/hostile/poison/bees, /turf/open/floor/grass/gensgrass/dirty, /area/awaymission/vietnam) -"Do" = ( -/obj/structure/table/stone, -/obj/item/blacksmith/ingot{ - pixel_x = -10; - pixel_y = 1 - }, -/obj/item/blacksmith/ingot{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "Dp" = ( /obj/item/reagent_containers/syringe/convermol, /turf/open/floor/grass/gensgrass/dirty/stone/raw, @@ -973,7 +929,7 @@ /turf/open/floor/grass/gensgrass/dirty/stone/raw, /area/awaymission/vietnam/dark) "DM" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ dir = 4; layer = 2.8 }, @@ -984,7 +940,7 @@ /turf/open/water, /area/awaymission/vietnam) "DU" = ( -/obj/structure/barricade/wooden/stockade{ +/obj/structure/deployable_barricade/wooden{ layer = 4 }, /turf/open/floor/plating/dirt/jungle, @@ -1195,9 +1151,6 @@ /obj/item/reagent_containers/syringe/penacid, /turf/open/floor/grass/gensgrass/dirty/stone/raw, /area/awaymission/vietnam/dark) -"Jl" = ( -/turf/open/floor/grass/gensgrass/dirty/stone, -/area/awaymission/vietnam/dark) "Jr" = ( /obj/structure/rospilovo/water/luzha, /turf/open/floor/grass/gensgrass/dirty, @@ -1514,7 +1467,6 @@ /area/awaymission/vietnam/dark) "Tn" = ( /obj/structure/table/wood, -/obj/structure/table/wood, /obj/item/clothing/glasses/sunglasses, /turf/open/floor/rospilovo/plitka/full, /area/awaymission/vietnam/dark) @@ -1553,9 +1505,6 @@ /obj/structure/rospilovo/bochka/red, /turf/open/floor/rospilovo/plitka/full, /area/awaymission/vietnam/dark) -"UD" = ( -/turf/open/floor/grass/gensgrass/dirty/stone/raw, -/area/awaymission/vietnam/dark) "UL" = ( /obj/item/flashlight/flare/torch, /turf/open/floor/plating/beach/sand, @@ -2882,9 +2831,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -3116,11 +3065,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -3349,249 +3298,249 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -JD -kZ -kZ -kZ -kZ -kZ -kZ -kZ -PA -kZ -kZ -kZ -kZ -kZ -kZ -WE -Yo -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -ZH -Ow -Rj -Rj -Rj -"} -(8,1,1) = {" -Rj -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -YF -IU -lP -lP -DP -DP -DP -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Ew -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -IA -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -Zg -lP -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ -AQ +vb +vb +vb +vb +vb +vb +vb +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +JD +kZ +kZ +kZ +kZ +kZ +kZ +kZ +PA +kZ +kZ +kZ +kZ +kZ +kZ +WE +Yo +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +Ow +Rj +Rj +Rj +"} +(8,1,1) = {" +Rj +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +YF +IU +lP +lP +DP +DP +DP +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Ew +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +IA +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +Zg +lP +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -3817,16 +3766,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -4050,18 +3999,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb TI -UD -UD +vb +vb AQ AQ AQ @@ -4283,20 +4232,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -4517,21 +4466,21 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -4752,20 +4701,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -4986,20 +4935,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -5221,10 +5170,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -5456,10 +5405,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -5692,9 +5641,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -5927,9 +5876,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -6076,9 +6025,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -6161,11 +6110,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -6307,11 +6256,11 @@ AQ AQ AQ AQ -UD +vb XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -6395,13 +6344,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -6542,10 +6491,10 @@ AQ AQ AQ AQ -UD +vb XQ -UD -UD +vb +vb AQ AQ AQ @@ -6630,12 +6579,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb YF YF YF @@ -6779,7 +6728,7 @@ AQ AQ XQ XQ -UD +vb AQ AQ AQ @@ -6865,7 +6814,7 @@ AQ AQ AQ AQ -UD +vb YF YF YF @@ -6879,9 +6828,9 @@ IU YF XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -7011,10 +6960,10 @@ AQ AQ AQ AQ -UD +vb XQ XQ -UD +vb AQ AQ AQ @@ -7114,11 +7063,11 @@ IU YF XQ XQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -7348,14 +7297,14 @@ IU IU YF XQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -7584,13 +7533,13 @@ IU YF XQ XQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -7818,17 +7767,17 @@ IU IU YF XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ Gn JD @@ -8053,18 +8002,18 @@ IU IU YF XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Gn kZ kZ @@ -8188,7 +8137,7 @@ AQ AQ XQ XQ -UD +vb AQ AQ AQ @@ -8289,17 +8238,17 @@ IU YF Kr Kr -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb YF kZ kZ @@ -8422,8 +8371,8 @@ AQ AQ AQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -8524,17 +8473,17 @@ IU jC Kr Kr -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb YF kZ kZ @@ -8657,8 +8606,8 @@ AQ AQ AQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -8758,18 +8707,18 @@ IU IU jC Kr -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Gn kZ kZ @@ -8891,9 +8840,9 @@ YF AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -8993,14 +8942,14 @@ OL OL jC XQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -9126,9 +9075,9 @@ YF AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -9229,8 +9178,8 @@ OL YF XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -9361,9 +9310,9 @@ YF AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -9596,9 +9545,9 @@ YF AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -9831,9 +9780,9 @@ YF AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -10066,17 +10015,17 @@ YF AQ AQ Gj -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -10300,18 +10249,18 @@ AQ YF AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -10535,18 +10484,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -10772,16 +10721,16 @@ AQ AQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -11005,17 +10954,17 @@ AQ AQ AQ AQ -UD +vb XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -11104,7 +11053,7 @@ IU IU YF YF -UD +vb AQ AQ AQ @@ -11169,7 +11118,7 @@ AQ AQ AQ AQ -UD +vb lP IU IU @@ -11238,19 +11187,19 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ -UD +vb XQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -11338,8 +11287,8 @@ YF IU YF YF -UD -UD +vb +vb AQ AQ AQ @@ -11403,8 +11352,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb lP IU IU @@ -11473,8 +11422,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb Gn Gn Gn @@ -11482,11 +11431,11 @@ Gn Gn YF lP -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -11572,9 +11521,9 @@ AQ YF YF YF -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -11638,8 +11587,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb lP IU IU @@ -11706,9 +11655,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb Gn Gn yP @@ -11718,10 +11667,10 @@ yP yP lP lP -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -11755,8 +11704,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb Gn Gn jC @@ -11807,10 +11756,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -11872,8 +11821,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb lP lP IU @@ -11939,9 +11888,9 @@ Gn XQ XQ XQ -UD -UD -UD +vb +vb +vb lP Gn Gn @@ -11956,8 +11905,8 @@ Gn lP lP lP -UD -UD +vb +vb AQ AQ AQ @@ -11990,7 +11939,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -12042,11 +11991,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -12106,9 +12055,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb lP Zz IU @@ -12173,7 +12122,7 @@ Gn AQ XQ XQ -UD +vb XQ XQ XQ @@ -12191,8 +12140,8 @@ Zz Zz Zz lP -UD -UD +vb +vb AQ AQ AQ @@ -12225,7 +12174,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -12277,11 +12226,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -12341,9 +12290,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb lP IU IU @@ -12408,9 +12357,9 @@ Gn AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ Gn IU @@ -12426,8 +12375,8 @@ Zz Zz Zz lP -UD -UD +vb +vb AQ AQ AQ @@ -12459,8 +12408,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -12514,10 +12463,10 @@ AQ AQ AQ qK -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -12575,10 +12524,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb lP IU IU @@ -12644,8 +12593,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ YF IU @@ -12662,7 +12611,7 @@ Zz yP lP lP -UD +vb AQ AQ AQ @@ -12694,7 +12643,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -12749,10 +12698,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -12810,10 +12759,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb lP IU IU @@ -12880,7 +12829,7 @@ AQ AQ AQ AQ -UD +vb XQ YF IU @@ -12897,8 +12846,8 @@ yP yP yP lP -UD -UD +vb +vb AQ AQ AQ @@ -12929,7 +12878,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -12984,10 +12933,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -13045,10 +12994,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb lP IU IU @@ -13115,7 +13064,7 @@ AQ AQ AQ AQ -UD +vb XQ YF IU @@ -13133,7 +13082,7 @@ yP yP Gn lP -UD +vb AQ AQ AQ @@ -13163,8 +13112,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -13219,10 +13168,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -13279,11 +13228,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP IU IU @@ -13398,8 +13347,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -13454,9 +13403,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -13514,11 +13463,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -13584,7 +13533,7 @@ AQ AQ AQ AQ -UD +vb XQ XQ Gn @@ -13633,7 +13582,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -13689,9 +13638,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -13749,11 +13698,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -13819,7 +13768,7 @@ AQ AQ AQ XQ -UD +vb XQ XQ Gn @@ -13867,8 +13816,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -13923,10 +13872,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -13984,11 +13933,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -14102,7 +14051,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -14158,9 +14107,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -14218,12 +14167,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb lP Zz IU @@ -14290,8 +14239,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb Gn IU IU @@ -14336,8 +14285,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -14392,10 +14341,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -14454,11 +14403,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -14525,8 +14474,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb YF IU IU @@ -14560,18 +14509,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -14627,9 +14576,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -14689,11 +14638,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -14760,8 +14709,8 @@ gy AQ AQ AQ -UD -UD +vb +vb YF IU IU @@ -14793,18 +14742,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -14862,9 +14811,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -14923,12 +14872,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb lP Zz IU @@ -15027,18 +14976,18 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -15096,9 +15045,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -15159,11 +15108,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -15259,11 +15208,11 @@ Gn Gn XQ DA -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -15272,9 +15221,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -15331,9 +15280,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -15394,11 +15343,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP Zz IU @@ -15495,8 +15444,8 @@ Gn XQ HX XQ -UD -UD +vb +vb AQ AQ AQ @@ -15507,9 +15456,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -15544,7 +15493,7 @@ XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -15566,11 +15515,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -15629,11 +15578,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP IU IU @@ -15731,8 +15680,8 @@ XQ HX XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -15744,7 +15693,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -15774,12 +15723,12 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -15799,15 +15748,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -15864,11 +15813,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb lP IU IU @@ -15979,8 +15928,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -16009,12 +15958,12 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -16032,18 +15981,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -16100,10 +16049,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb lP IU IU @@ -16215,7 +16164,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -16244,12 +16193,12 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -16264,23 +16213,23 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -16335,10 +16284,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb YF IU IU @@ -16450,7 +16399,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -16479,7 +16428,7 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ @@ -16498,24 +16447,24 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -16569,11 +16518,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb YF IU IU @@ -16685,7 +16634,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -16713,8 +16662,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ @@ -16733,26 +16682,26 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -16805,10 +16754,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb hd IU IU @@ -16920,7 +16869,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -16947,9 +16896,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ @@ -16968,26 +16917,26 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17040,10 +16989,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb hd IU IU @@ -17149,13 +17098,13 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -17182,8 +17131,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ @@ -17202,28 +17151,28 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17276,9 +17225,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb hd IU IU @@ -17385,12 +17334,12 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -17417,7 +17366,7 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ @@ -17435,15 +17384,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17452,14 +17401,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17511,9 +17460,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb hd jr jr @@ -17623,8 +17572,8 @@ XQ XQ XQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -17652,7 +17601,7 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ @@ -17669,16 +17618,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb dK -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -17687,14 +17636,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17747,8 +17696,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb hd hd jr @@ -17857,9 +17806,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -17887,7 +17836,7 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ @@ -17902,18 +17851,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -17924,13 +17873,13 @@ AQ AQ AQ qK -UD -UD -UD -UD +vb +vb +vb +vb Lu -UD -UD +vb +vb AQ AQ AQ @@ -17982,9 +17931,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb hd jr jr @@ -18085,15 +18034,15 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -18122,11 +18071,11 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ -UD +vb AQ AQ AQ @@ -18137,16 +18086,16 @@ AQ AQ AQ qK -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -18160,13 +18109,13 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb li -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -18217,9 +18166,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb hd jr jr @@ -18322,8 +18271,8 @@ AQ AQ AQ Gj -UD -UD +vb +vb XQ XQ XQ @@ -18357,11 +18306,11 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ -UD +vb AQ AQ AQ @@ -18371,14 +18320,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -18397,12 +18346,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -18452,9 +18401,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb hd jr jr @@ -18592,12 +18541,12 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -18605,14 +18554,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -18632,13 +18581,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ JD JD @@ -18688,8 +18637,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb YF IU jr @@ -18827,25 +18776,25 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -18868,13 +18817,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb JD kZ kZ @@ -18924,7 +18873,7 @@ AQ AQ AQ AQ -UD +vb YF IU jr @@ -19062,25 +19011,25 @@ AQ AQ AQ AQ -UD +vb XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -19104,12 +19053,12 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ -UD -UD -UD +vb +vb +vb JD kZ kZ @@ -19159,7 +19108,7 @@ AQ AQ AQ AQ -UD +vb YF IU jr @@ -19301,20 +19250,20 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -19343,8 +19292,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb JD kZ kZ @@ -19394,7 +19343,7 @@ AQ AQ AQ AQ -UD +vb YF hj hj @@ -19536,18 +19485,18 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -19771,18 +19720,18 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -19974,8 +19923,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ @@ -20006,17 +19955,17 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -20216,9 +20165,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -20241,16 +20190,16 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -20453,9 +20402,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -20477,13 +20426,13 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -20712,11 +20661,11 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -20796,7 +20745,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -20901,9 +20850,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -20918,8 +20867,8 @@ AQ AQ AQ Lu -UD -UD +vb +vb XQ XQ XQ @@ -20947,10 +20896,10 @@ XQ XQ XQ XQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -21027,11 +20976,11 @@ Rj AQ AQ AQ -Jl -Jl +ss +ss AQ -Jl -UD +ss +vb AQ AQ AQ @@ -21039,7 +20988,7 @@ AQ AQ AQ AQ -UD +vb hd OL OL @@ -21134,12 +21083,12 @@ YF YF YF YF -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -21182,9 +21131,9 @@ XQ Iv XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -21262,19 +21211,19 @@ Rj AQ AQ bm -Jl -Jl -Jl -Jl -UD +ss +ss +ss +ss +vb AQ AQ AQ AQ AQ AQ -UD -Jl +vb +ss gy OL OL @@ -21371,10 +21320,10 @@ IU YF lP lP -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -21402,11 +21351,11 @@ XQ XQ XQ XQ -UD +vb XQ XQ XQ -UD +vb XQ XQ XQ @@ -21417,8 +21366,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -21497,19 +21446,19 @@ Rj AQ AQ bm -Jl +ss bf -Jl -Jl -Jl -UD +ss +ss +ss +vb AQ AQ AQ AQ AQ -UD -Jl +vb +ss gy OL OL @@ -21607,11 +21556,11 @@ IU yP Gn lP -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -21637,11 +21586,11 @@ XQ XQ XQ XQ -UD -UD +vb +vb XQ -UD -UD +vb +vb XQ XQ XQ @@ -21652,8 +21601,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -21732,19 +21681,19 @@ Rj AQ AQ AQ -Jl -Jl -Jl -Jl -Jl -Jl -UD -UD -UD -Jl -UD -UD -Jl +ss +ss +ss +ss +ss +ss +vb +vb +vb +ss +vb +vb +ss gy jr jr @@ -21843,10 +21792,10 @@ IU yP Gn lP -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -21870,12 +21819,12 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ XQ @@ -21887,9 +21836,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -21968,18 +21917,18 @@ AQ AQ AQ AQ -Jl -Jl +ss +ss bq cJ -Jl -Jl -UD -UD -Jl -Jl -UD -Jl +ss +ss +vb +vb +ss +ss +vb +ss gy jr jr @@ -22078,10 +22027,10 @@ yP yP yP lP -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -22106,16 +22055,16 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ @@ -22123,8 +22072,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -22202,19 +22151,19 @@ Rj AQ AQ AQ -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -UD -UD -Jl +ss +ss +ss +ss +ss +ss +ss +ss +ss +ss +vb +vb +ss gy jr jr @@ -22314,8 +22263,8 @@ yP qh Gn lP -UD -UD +vb +vb AQ AQ AQ @@ -22341,17 +22290,17 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ @@ -22359,8 +22308,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -22437,19 +22386,19 @@ Rj AQ AQ AQ -Jl -Jl -Jl -UD -UD -UD -Jl -Jl -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +vb +vb +vb +ss +ss +ss +ss +ss +ss +ss gy jr jr @@ -22549,8 +22498,8 @@ yP yP yP Gn -UD -UD +vb +vb AQ AQ AQ @@ -22573,11 +22522,11 @@ XQ XQ XQ XQ -UD -UD +vb +vb XQ XQ -UD +vb AQ AQ AQ @@ -22585,8 +22534,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ @@ -22594,8 +22543,8 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -22673,18 +22622,18 @@ AQ AQ AQ aT -Jl -UD -UD -AQ -AQ -UD -UD -UD -Jl -Jl -Jl -Jl +ss +vb +vb +AQ +AQ +vb +vb +vb +ss +ss +ss +ss gy Bg Bg @@ -22785,7 +22734,7 @@ yP yP Gn lP -UD +vb AQ AQ AQ @@ -22807,13 +22756,13 @@ AQ AQ AQ XQ -UD -UD -UD +vb +vb +vb XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -22821,17 +22770,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb XQ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -22908,18 +22857,18 @@ AQ AQ AQ Qh -UD -UD -UD +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD -Jl -Jl +vb +vb +vb +vb +ss +ss gy Bg Bg @@ -23042,14 +22991,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb XQ Iv -UD -UD +vb +vb AQ AQ AQ @@ -23057,17 +23006,17 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -23142,9 +23091,9 @@ Rj AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -23154,7 +23103,7 @@ AQ AQ AQ AQ -UD +vb hd jr jr @@ -23278,13 +23227,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -23293,16 +23242,16 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb XQ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -23377,9 +23326,9 @@ Rj AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -23516,9 +23465,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -23529,16 +23478,16 @@ AQ AQ AQ qK -UD -UD -UD +vb +vb +vb XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -23613,8 +23562,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -23764,16 +23713,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -23848,9 +23797,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -24001,14 +23950,14 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -24084,9 +24033,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -24204,8 +24153,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -24237,13 +24186,13 @@ AQ AQ AQ AQ -UD -UD +vb +vb XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -24319,9 +24268,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -24437,10 +24386,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -24477,8 +24426,8 @@ AQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ @@ -24555,14 +24504,14 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ AQ AQ -UD +vb ey ey hd @@ -24670,14 +24619,14 @@ YF YF AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -24790,15 +24739,15 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ -UD -UD -UD +vb +vb +vb ey hd hd @@ -24861,7 +24810,7 @@ yP Gn lP lP -Jl +ss AQ AQ AQ @@ -24907,12 +24856,12 @@ YF YF YF YF -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -25025,15 +24974,15 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ hd @@ -25094,9 +25043,9 @@ yP Gn Gn gy -Jl -UD -Jl +ss +vb +ss AQ AQ AQ @@ -25146,8 +25095,8 @@ YF YF YF lP -UD -UD +vb +vb AQ AQ AQ @@ -25182,8 +25131,8 @@ AQ XQ XQ XQ -UD -UD +vb +vb qK Lf AQ @@ -25261,13 +25210,13 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -25328,10 +25277,10 @@ yP yP Gn AQ -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ @@ -25416,11 +25365,11 @@ AQ AQ XQ XQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -25496,12 +25445,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -25563,9 +25512,9 @@ yP Gn Gn AQ -Jl -Jl -Jl +ss +ss +ss AQ AQ AQ @@ -25651,12 +25600,12 @@ AQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -25731,11 +25680,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -25798,9 +25747,9 @@ Gn Gn AQ AQ -Jl -Jl -Jl +ss +ss +ss AQ AQ AQ @@ -25887,17 +25836,17 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb LY -UD -UD -UD -UD +vb +vb +vb +vb jC OL OL @@ -25966,10 +25915,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -26033,10 +25982,10 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ @@ -26122,17 +26071,17 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb LY -UD -UD -UD -UD +vb +vb +vb +vb jC OL OL @@ -26201,10 +26150,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -26268,10 +26217,10 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ @@ -26356,18 +26305,18 @@ XQ JK XQ XQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb LY -UD -UD -UD -UD +vb +vb +vb +vb jC yP OL @@ -26435,10 +26384,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -26502,11 +26451,11 @@ AQ AQ AQ AQ -UD -Jl -Jl -UD -Jl +vb +ss +ss +vb +ss AQ AQ AQ @@ -26591,18 +26540,18 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb Mt -UD -UD -UD -UD +vb +vb +vb +vb lP Zz OL @@ -26670,9 +26619,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -26737,11 +26686,11 @@ AQ AQ AQ AQ -UD -Jl -Jl -Jl -Jl +vb +ss +ss +ss +ss AQ AQ AQ @@ -26827,17 +26776,17 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb LY -UD -UD -UD -UD +vb +vb +vb +vb lP Zz yP @@ -26904,10 +26853,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -26972,11 +26921,11 @@ AQ AQ AQ AQ -Jl -Jl +ss +ss Fw -Jl -Jl +ss +ss AQ AQ AQ @@ -27063,16 +27012,16 @@ XQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb LY -UD +vb MK -UD -UD +vb +vb lP Zz Zz @@ -27139,10 +27088,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -27207,11 +27156,11 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss AQ AQ AQ @@ -27219,7 +27168,7 @@ AQ AQ AQ AQ -UD +vb YF YF IU @@ -27292,9 +27241,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -27304,10 +27253,10 @@ qK Gj Gj LY -UD +vb MN -UD -UD +vb +vb jC yP yP @@ -27374,9 +27323,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -27442,11 +27391,11 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl -UD +ss +ss +ss +ss +vb AQ AQ AQ @@ -27454,8 +27403,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb lP YF IU @@ -27525,9 +27474,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -27541,8 +27490,8 @@ AQ AQ AQ MQ -UD -UD +vb +vb jC OL OL @@ -27609,9 +27558,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -27677,21 +27626,21 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb YF YF IU @@ -27758,9 +27707,9 @@ XQ HX XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -27777,7 +27726,7 @@ AQ AQ AQ Nf -UD +vb jC OL jC @@ -27843,10 +27792,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -27867,12 +27816,12 @@ Kr Kr Kr Kr -Jl +ss Kr Kr Kr Kr -Jl +ss gy Bg Bg @@ -27913,21 +27862,21 @@ AQ AQ AQ EF -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb YF YF IU @@ -27988,14 +27937,14 @@ yP Gn Gn Gn -UD +vb DA DA -UD -UD -UD +vb +vb +vb AQ -UD +vb AQ AQ AQ @@ -28012,7 +27961,7 @@ AQ AQ AQ AQ -UD +vb jC jC jC @@ -28078,36 +28027,36 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -Jl -Jl -Jl +ss +ss +ss gy Bg Bg Bg gy gy -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss +ss +ss +ss +ss +ss gy Bg Bg @@ -28148,21 +28097,21 @@ AQ AQ AQ EH -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ YF IU @@ -28230,8 +28179,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -28313,20 +28262,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ cC -Jl -Jl -Jl +ss +ss +ss gy Bg Bg @@ -28334,15 +28283,15 @@ Bg Bg gy gy -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss +ss +ss +ss +ss gy Bg Bg @@ -28383,10 +28332,10 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ @@ -28394,8 +28343,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -28466,8 +28415,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -28548,11 +28497,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -28573,11 +28522,11 @@ Kr Kr Kr Kr -Jl +ss Kr Kr Kr -Jl +ss gy Bg Bg @@ -28618,10 +28567,10 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl +ss +ss +ss +ss AQ AQ AQ @@ -28629,7 +28578,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -28701,9 +28650,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -28783,11 +28732,11 @@ AQ AQ AQ AQ -UD +vb li -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -28853,10 +28802,10 @@ AQ AQ AQ AQ -UD -Jl -Jl -Jl +vb +ss +ss +ss AQ AQ AQ @@ -28864,9 +28813,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -28937,9 +28886,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -29018,12 +28967,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -29087,11 +29036,11 @@ AQ AQ AQ AQ -Jl -UD -Jl -Jl -Jl +ss +vb +ss +ss +ss AQ AQ AQ @@ -29099,10 +29048,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -29174,8 +29123,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -29254,11 +29203,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -29322,11 +29271,11 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl -UD +ss +ss +ss +ss +vb AQ AQ AQ @@ -29335,9 +29284,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -29409,9 +29358,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -29489,11 +29438,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -29514,9 +29463,9 @@ dr cM pY sn -yQ -AM -Do +sn +sn +sn pY gy Bg @@ -29557,11 +29506,11 @@ AQ AQ AQ AQ -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss AQ AQ AQ @@ -29646,8 +29595,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -29724,11 +29673,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -29748,10 +29697,10 @@ Dd dr td pY -Jl -Jl -Jl -Jl +ss +ss +ss +ss pY gy Bg @@ -29792,10 +29741,10 @@ AQ AQ AQ AQ -Jl -Jl -UD -Jl +ss +ss +vb +ss Gn Gn Gn @@ -29881,9 +29830,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -29960,10 +29909,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -29984,9 +29933,9 @@ dr dc pY ss -Jl -Jl -Jl +ss +ss +ss lf gy Bg @@ -30027,9 +29976,9 @@ AQ AQ AQ AQ -Jl -Jl -UD +ss +ss +vb Gn Gn yP @@ -30117,8 +30066,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -30194,12 +30143,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -30218,10 +30167,10 @@ Dd dr dm pY -tf -Jl -Cw -Jl +sn +ss +ss +ss pY gy Bg @@ -30292,10 +30241,10 @@ IU yP Gn Dd -UD -Jl -UD -UD +vb +ss +vb +vb Dd Gn yP @@ -30352,13 +30301,13 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -30428,14 +30377,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -30526,12 +30475,12 @@ IU IU yP Gn -UD -Jl -Jl -Jl -Jl -UD +vb +ss +ss +ss +ss +vb Gn yP yP @@ -30586,15 +30535,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -30663,17 +30612,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb dD -UD -UD +vb +vb AQ AQ -UD +vb ey jC OL @@ -30761,12 +30710,12 @@ IU yP yP Gn -Jl -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss +ss Gn yP yP @@ -30821,16 +30770,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -30898,17 +30847,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb ey jC OL @@ -30996,12 +30945,12 @@ IU yP yP Gn -Jl -Jl -Jl -Jl -Jl -Jl +ss +ss +ss +ss +ss +ss Gn yP yP @@ -31054,19 +31003,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -31133,16 +31082,16 @@ AQ AQ AQ AQ -UD -UD +vb +vb cp -UD +vb cE -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb ey ey jC @@ -31231,12 +31180,12 @@ IU yP yP Gn -UD -Jl -Jl -Jl -Jl -Jl +vb +ss +ss +ss +ss +ss Gn yP yP @@ -31288,20 +31237,20 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb BS -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -31368,17 +31317,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb ey jC OL @@ -31467,10 +31416,10 @@ yP yP Gn Dd -UD -Jl -Jl -Jl +vb +ss +ss +ss Dd Gn yP @@ -31521,30 +31470,30 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -31604,14 +31553,14 @@ AQ AQ AQ bv -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb dG -UD +vb AQ AQ ey @@ -31756,13 +31705,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -31770,17 +31719,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -31839,13 +31788,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb dG -UD -UD +vb +vb AQ AQ AQ @@ -31990,14 +31939,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32006,17 +31955,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32075,11 +32024,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -32225,13 +32174,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32242,17 +32191,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32310,10 +32259,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -32460,13 +32409,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32478,16 +32427,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb li -UD +vb TI -UD -UD +vb +vb AQ AQ AQ @@ -32545,10 +32494,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -32694,13 +32643,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32714,14 +32663,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32780,9 +32729,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -32928,13 +32877,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -32951,9 +32900,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -33014,9 +32963,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -33163,13 +33112,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -33248,10 +33197,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -33397,14 +33346,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -33483,9 +33432,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -33632,13 +33581,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -33717,10 +33666,10 @@ Rj AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -33867,12 +33816,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -33953,9 +33902,9 @@ AQ AQ AQ qK -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -34075,8 +34024,8 @@ IU YF YF YF -UD -UD +vb +vb AQ AQ AQ @@ -34102,12 +34051,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -34187,10 +34136,10 @@ Rj AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -34310,9 +34259,9 @@ IU IU IU YF -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -34337,12 +34286,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -34423,10 +34372,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -34545,9 +34494,9 @@ IU IU IU YF -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -34570,13 +34519,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -34659,10 +34608,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -34678,7 +34627,7 @@ AQ AQ AQ AQ -UD +vb YF IU IU @@ -34781,8 +34730,8 @@ IU YF lP lP -UD -UD +vb +vb AQ AQ AQ @@ -34805,12 +34754,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -34895,11 +34844,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -34912,8 +34861,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb YF IU IU @@ -35014,11 +34963,11 @@ IU IU IU YF -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -35040,12 +34989,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35058,9 +35007,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -35130,12 +35079,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35147,8 +35096,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb YF IU IU @@ -35249,11 +35198,11 @@ IU IU YF YF -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -35274,13 +35223,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35293,10 +35242,10 @@ AQ AQ AQ qK -UD +vb MJ -UD -UD +vb +vb AQ AQ AQ @@ -35367,10 +35316,10 @@ AQ AQ AQ DA -UD -UD -UD -UD +vb +vb +vb +vb DA AQ AQ @@ -35381,9 +35330,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb YF IU IU @@ -35485,9 +35434,9 @@ IU YF AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -35509,13 +35458,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35527,11 +35476,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -35616,9 +35565,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb YF IU IU @@ -35745,13 +35694,13 @@ AQ AQ AQ Lf -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35760,14 +35709,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35836,13 +35785,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35851,9 +35800,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb YF IU IU @@ -35979,14 +35928,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -35995,14 +35944,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36072,12 +36021,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36087,7 +36036,7 @@ AQ AQ AQ AQ -UD +vb lP YF IU @@ -36215,13 +36164,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36229,17 +36178,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36307,12 +36256,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36450,13 +36399,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36464,17 +36413,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36542,13 +36491,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36685,31 +36634,31 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36776,14 +36725,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -36920,32 +36869,32 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37011,14 +36960,14 @@ AQ AQ AQ AQ -UD -UD +vb +vb dK -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -37155,33 +37104,33 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37246,14 +37195,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37390,33 +37339,33 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37480,15 +37429,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37624,34 +37573,34 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb li -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -37715,15 +37664,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37858,36 +37807,36 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -37950,14 +37899,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38092,37 +38041,37 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38185,14 +38134,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38326,41 +38275,41 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38420,14 +38369,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38551,52 +38500,52 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Lu -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38655,12 +38604,12 @@ AQ AQ AQ qK -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38787,51 +38736,51 @@ XQ XQ XQ XQ -UD -UD +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -38889,13 +38838,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39023,53 +38972,53 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39124,13 +39073,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39258,12 +39207,12 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39274,37 +39223,37 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb li -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39359,12 +39308,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39493,11 +39442,11 @@ XQ XQ XQ XQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -39510,37 +39459,37 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39595,11 +39544,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -39729,9 +39678,9 @@ XQ XQ XQ XQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -39745,38 +39694,38 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39830,12 +39779,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -39964,8 +39913,8 @@ XQ XQ XQ JK -UD -UD +vb +vb AQ AQ AQ @@ -39980,38 +39929,38 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40066,11 +40015,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -40199,7 +40148,7 @@ XQ XQ XQ XQ -UD +vb AQ AQ AQ @@ -40215,24 +40164,24 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40241,14 +40190,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40301,11 +40250,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -40451,22 +40400,22 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40476,14 +40425,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40536,10 +40485,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -40686,22 +40635,22 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40714,13 +40663,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40770,11 +40719,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -40922,21 +40871,21 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -40949,13 +40898,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41005,12 +40954,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41158,20 +41107,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41184,14 +41133,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41239,13 +41188,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41394,20 +41343,20 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41420,13 +41369,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41474,14 +41423,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41631,19 +41580,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41658,11 +41607,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -41709,14 +41658,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41867,19 +41816,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -41895,9 +41844,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -41944,14 +41893,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42104,17 +42053,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42130,9 +42079,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -42179,14 +42128,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42339,17 +42288,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42366,9 +42315,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ JD @@ -42415,14 +42364,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42575,17 +42524,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42601,11 +42550,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb JD kZ kZ @@ -42650,14 +42599,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42810,17 +42759,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -42837,10 +42786,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb JD kZ kZ @@ -42886,13 +42835,13 @@ AQ AQ AQ AQ -UD -UD +vb +vb dK -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -43045,17 +42994,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb li -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -43074,8 +43023,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb JD kZ kZ @@ -43121,13 +43070,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43281,16 +43230,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43355,14 +43304,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43516,17 +43465,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43590,14 +43539,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43752,18 +43701,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -43825,13 +43774,13 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb aO -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -43989,17 +43938,17 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44059,13 +44008,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44224,18 +44173,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44294,13 +44243,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44461,16 +44410,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44529,14 +44478,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44697,16 +44646,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44765,13 +44714,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -44933,15 +44882,15 @@ AQ AQ AQ qK -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45000,13 +44949,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45168,15 +45117,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45236,13 +45185,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45404,15 +45353,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45471,13 +45420,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45640,14 +45589,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45707,12 +45656,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45876,14 +45825,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -45942,13 +45891,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb eM -UD -UD +vb +vb AQ AQ AQ @@ -46113,12 +46062,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb TI -UD +vb AQ AQ AQ @@ -46177,13 +46126,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -46349,10 +46298,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -46412,13 +46361,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -46648,12 +46597,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -46884,12 +46833,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -47119,12 +47068,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -47354,12 +47303,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -47369,7 +47318,7 @@ AQ AQ AQ AQ -UD +vb lP YF YF @@ -47590,11 +47539,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -47604,12 +47553,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb lP YF YF @@ -47825,12 +47774,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -47839,15 +47788,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ YF @@ -48061,12 +48010,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -48076,12 +48025,12 @@ AQ AQ AQ qK -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -48296,13 +48245,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -48532,13 +48481,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -48578,18 +48527,18 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ YF YF @@ -48768,13 +48717,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -48814,15 +48763,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49003,13 +48952,13 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb dK -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -49049,15 +48998,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49072,12 +49021,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb lP lP lP @@ -49239,13 +49188,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49286,13 +49235,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49308,18 +49257,18 @@ AQ AQ AQ BS -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49475,13 +49424,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49521,11 +49470,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -49542,19 +49491,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49711,12 +49660,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49759,9 +49708,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -49778,16 +49727,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -49946,13 +49895,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -49994,9 +49943,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50013,14 +49962,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb Gw -UD -UD +vb +vb pG pG pG @@ -50182,13 +50131,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -50229,9 +50178,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50249,12 +50198,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb pG pG pG @@ -50305,8 +50254,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -50417,13 +50366,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -50464,9 +50413,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50484,11 +50433,11 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb pG pG pG @@ -50539,9 +50488,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50653,13 +50602,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -50699,9 +50648,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50720,9 +50669,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ pG pG @@ -50774,8 +50723,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -50889,15 +50838,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -50934,9 +50883,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -50954,9 +50903,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51008,9 +50957,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51125,23 +51074,23 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -51169,9 +51118,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51189,9 +51138,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51357,33 +51306,33 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb BS -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -51404,8 +51353,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -51424,9 +51373,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51477,8 +51426,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -51586,44 +51535,44 @@ AQ AQ AQ AQ -UD -UD +vb +vb pG pG pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD vb -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -51637,10 +51586,10 @@ AQ AQ AQ qK -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -51660,9 +51609,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51711,9 +51660,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51820,10 +51769,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb dK pG pG @@ -51831,22 +51780,22 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -51871,10 +51820,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -51895,9 +51844,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -51946,8 +51895,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -52054,13 +52003,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -52069,10 +52018,10 @@ pG pG pG pG -UD -UD -UD -UD +vb +vb +vb +vb pG pG pG @@ -52106,10 +52055,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52130,10 +52079,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52181,8 +52130,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -52289,12 +52238,12 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb ei -UD -UD +vb +vb pG pG pG @@ -52341,10 +52290,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52366,9 +52315,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -52416,7 +52365,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -52523,12 +52472,12 @@ AQ AQ AQ AQ -UD -UD +vb +vb Lu -UD -UD -UD +vb +vb +vb pG pG pG @@ -52576,8 +52525,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -52601,10 +52550,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52651,7 +52600,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -52757,13 +52706,13 @@ AQ AQ AQ AQ -UD -UD +vb +vb ei -UD -UD -UD -UD +vb +vb +vb +vb pG pG pG @@ -52809,10 +52758,10 @@ pG AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52836,10 +52785,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -52886,7 +52835,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -52991,12 +52940,12 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb pG pG pG @@ -53043,9 +52992,9 @@ pG pG pG AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -53072,10 +53021,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -53120,8 +53069,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -53228,8 +53177,8 @@ pG pG pG pG -UD -UD +vb +vb pG pG pG @@ -53307,10 +53256,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -53354,9 +53303,9 @@ AQ AQ AQ AQ -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -53543,10 +53492,10 @@ AQ AQ AQ AQ -UD -UD +vb +vb GO -UD +vb AQ AQ AQ @@ -53589,8 +53538,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -53778,10 +53727,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -53824,7 +53773,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -54014,10 +53963,10 @@ AQ AQ AQ AQ -UD +vb dK -UD -UD +vb +vb AQ AQ AQ @@ -54059,7 +54008,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -54249,10 +54198,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -54294,7 +54243,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -54483,10 +54432,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -54529,7 +54478,7 @@ AQ AQ AQ AQ -UD +vb AQ AQ AQ @@ -54716,12 +54665,12 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -54763,8 +54712,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -54952,10 +54901,10 @@ pG pG pG pG -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -54998,8 +54947,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ AQ @@ -55008,15 +54957,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -55187,10 +55136,10 @@ pG pG pG pG -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -55233,36 +55182,36 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -55422,11 +55371,11 @@ pG pG pG pG -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -55464,41 +55413,41 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb dK -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -55658,11 +55607,11 @@ pG pG pG pG -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -55694,46 +55643,46 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -55923,53 +55872,53 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb GO -UD -UD -UD -UD -vb -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Gw -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -56159,57 +56108,57 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Ki -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb JB -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -56398,54 +56347,54 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb LU -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -56548,8 +56497,8 @@ pG pG pG pG -UD -UD +vb +vb pG pG pG @@ -56634,56 +56583,56 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb JB -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb dK -UD -UD -UD +vb +vb +vb JB -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -56744,7 +56693,7 @@ Rj "} (235,1,1) = {" Rj -UD +vb pG pG pG @@ -56761,9 +56710,9 @@ pG pG pG pG -UD -UD -UD +vb +vb +vb pG pG pG @@ -56775,21 +56724,21 @@ pG pG pG pG -UD -UD -UD +vb +vb +vb pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -56873,52 +56822,52 @@ pG pG pG cg -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -56979,9 +56928,9 @@ Rj "} (236,1,1) = {" Rj -UD +vb aO -UD +vb pG pG pG @@ -56994,38 +56943,38 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57109,20 +57058,20 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -57133,28 +57082,28 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57214,55 +57163,55 @@ Rj "} (237,1,1) = {" Rj -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57351,9 +57300,9 @@ pG pG pG pG -UD -UD -UD +vb +vb +vb pG pG pG @@ -57370,26 +57319,26 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57455,33 +57404,33 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb eM -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57493,12 +57442,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57516,16 +57465,16 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb Fb -UD -UD -UD +vb +vb +vb pG pG pG @@ -57610,22 +57559,22 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57694,28 +57643,28 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57728,13 +57677,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57752,19 +57701,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -57847,20 +57796,20 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57936,15 +57885,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -57965,45 +57914,45 @@ AQ AQ AQ AQ -UD -UD +vb +vb Dp -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ qK -UD -UD +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD vb -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -58085,17 +58034,17 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb LU -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -58202,42 +58151,42 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -58321,17 +58270,17 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -58439,39 +58388,39 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb Dp -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb Dp -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb eM -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ AQ @@ -58510,7 +58459,7 @@ AQ AQ AQ AQ -UD +vb pG pG pG @@ -58556,17 +58505,17 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -58678,34 +58627,34 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb Lu -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -58745,8 +58694,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb pG pG pG @@ -58776,8 +58725,8 @@ pG pG pG pG -UD -UD +vb +vb pG pG pG @@ -58792,17 +58741,17 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -58917,28 +58866,28 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -58979,12 +58928,12 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb pG pG pG @@ -59010,11 +58959,11 @@ pG pG pG pG -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb pG pG pG @@ -59029,16 +58978,16 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -59153,15 +59102,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -59213,15 +59162,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -59243,16 +59192,16 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -59265,16 +59214,16 @@ pG pG pG pG -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -59283,8 +59232,8 @@ AQ AQ AQ AQ -UD -UD +vb +vb AQ AQ JD @@ -59448,16 +59397,16 @@ AQ AQ AQ AQ -UD +vb Ji -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -59479,15 +59428,15 @@ pG AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ pG @@ -59500,27 +59449,27 @@ pG pG pG pG -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ JD kZ @@ -59682,19 +59631,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb dK -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb pG pG pG @@ -59715,13 +59664,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -59743,19 +59692,19 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ JD kZ @@ -59916,16 +59865,16 @@ AQ AQ AQ qK -UD -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -59951,12 +59900,12 @@ AQ AQ AQ AQ -UD -UD +vb +vb LU -UD -UD -UD +vb +vb +vb AQ AQ AQ @@ -59979,17 +59928,17 @@ AQ AQ AQ AQ -UD +vb dK -UD -UD +vb +vb AQ AQ -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb AQ AQ JD @@ -60147,19 +60096,19 @@ pG pG pG pG -UD -UD -UD +vb +vb +vb Iu -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -60186,13 +60135,13 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -60215,15 +60164,15 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -60383,15 +60332,15 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -60421,14 +60370,14 @@ AQ AQ AQ qK -UD -UD -UD +vb +vb +vb JB -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -60453,10 +60402,10 @@ AQ AQ AQ AQ -UD -UD -UD -UD +vb +vb +vb +vb AQ AQ AQ @@ -60619,12 +60568,12 @@ pG pG pG pG -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb AQ AQ AQ @@ -60658,14 +60607,14 @@ AQ AQ AQ AQ -UD -UD -UD -UD -UD -UD -UD -UD +vb +vb +vb +vb +vb +vb +vb +vb AQ AQ AQ diff --git a/_maps/RandomZLevels/undergroundoutpost45.dmm b/_maps/away/undergroundoutpost45.dmm similarity index 97% rename from _maps/RandomZLevels/undergroundoutpost45.dmm rename to _maps/away/undergroundoutpost45.dmm index 8bfcc172882d..98345b64bb1e 100644 --- a/_maps/RandomZLevels/undergroundoutpost45.dmm +++ b/_maps/away/undergroundoutpost45.dmm @@ -7,10 +7,10 @@ /area/awaymission/undergroundoutpost45/caves) "ac" = ( /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "ad" = ( @@ -30,36 +30,22 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) -"aj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged1" - }, -/area/awaymission/undergroundoutpost45/central) "ak" = ( /obj/machinery/light/small/broken{ dir = 8 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "al" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/undergroundoutpost45/central) -"am" = ( -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "an" = ( @@ -75,9 +61,7 @@ dir = 4 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "aq" = ( @@ -102,17 +86,17 @@ pixel_x = -6; pixel_y = -34 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged4" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "ar" = ( +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plasteel{ dir = 8; - heat_capacity = 1e+006; - icon_state = "damaged3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "as" = ( @@ -545,10 +529,8 @@ /area/awaymission/undergroundoutpost45/central) "bt" = ( /obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, @@ -731,18 +713,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) -"bL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/central) -"bM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/central) "bN" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/official/nanotrasen_logo{ @@ -809,7 +779,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 351.9 + initial_temperature = 351.9 }, /area/awaymission/undergroundoutpost45/caves) "bX" = ( @@ -817,7 +787,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 351.9 + initial_temperature = 351.9 }, /area/awaymission/undergroundoutpost45/caves) "bY" = ( @@ -827,9 +797,9 @@ }, /area/awaymission/undergroundoutpost45/central) "bZ" = ( +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "ca" = ( @@ -867,9 +837,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cf" = ( @@ -916,9 +886,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cl" = ( @@ -926,9 +896,9 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cm" = ( @@ -945,9 +915,9 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "co" = ( @@ -1012,9 +982,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, @@ -1048,10 +1017,8 @@ }, /area/awaymission/undergroundoutpost45/central) "cz" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/filingcabinet, /obj/effect/decal/cleanable/dirt, @@ -1072,9 +1039,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, @@ -1097,9 +1063,9 @@ /area/awaymission/undergroundoutpost45/central) "cC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cD" = ( @@ -1118,16 +1084,9 @@ "cF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/grille, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" - }, -/area/awaymission/undergroundoutpost45/central) -"cG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cH" = ( @@ -1209,9 +1168,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cP" = ( @@ -1235,9 +1194,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "cS" = ( @@ -1341,9 +1300,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "de" = ( @@ -1380,18 +1339,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 }, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" - }, -/area/awaymission/undergroundoutpost45/central) -"dj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "dk" = ( @@ -1536,14 +1486,10 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "dx" = ( @@ -1623,9 +1569,8 @@ }, /area/awaymission/undergroundoutpost45/central) "dE" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light{ dir = 1 }, @@ -1768,9 +1713,9 @@ "dN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "dO" = ( @@ -2093,9 +2038,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 8 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "ev" = ( @@ -2240,6 +2185,7 @@ /area/awaymission/undergroundoutpost45/central) "eI" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating{ heat_capacity = 1e+006 }, @@ -2249,7 +2195,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "eK" = ( @@ -2258,7 +2204,7 @@ /obj/machinery/recharger{ pixel_y = 4 }, -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_x = -30 }, /obj/effect/decal/cleanable/dirt, @@ -2522,7 +2468,7 @@ dir = 1; network = list("uo45") }, -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ locked = 0; name = "Hydroponics APC"; pixel_y = -23; @@ -2607,7 +2553,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/central) "fo" = ( @@ -2647,10 +2593,8 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ dir = 4 @@ -2731,9 +2675,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "fA" = ( @@ -2835,7 +2779,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/central) "fK" = ( @@ -2867,9 +2811,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "fQ" = ( @@ -2883,10 +2827,8 @@ /area/awaymission/undergroundoutpost45/central) "fR" = ( /obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 }, @@ -3010,7 +2952,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "gg" = ( @@ -3082,9 +3024,9 @@ dir = 5 }, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "gq" = ( @@ -3152,7 +3094,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/crew_quarters) "gC" = ( @@ -3265,15 +3207,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) -"gQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/undergroundoutpost45/central) "gR" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -3320,9 +3253,8 @@ }, /area/awaymission/undergroundoutpost45/research) "gY" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 1 }, @@ -3377,7 +3309,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/research) "he" = ( @@ -3388,7 +3320,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/crew_quarters) "hf" = ( @@ -3404,10 +3336,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "hg" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -3420,7 +3350,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/crew_quarters) "hi" = ( @@ -3526,10 +3456,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "hs" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/camera{ c_tag = "Kitchen"; dir = 8; @@ -3574,9 +3502,9 @@ /area/awaymission/undergroundoutpost45/gateway) "hy" = ( /obj/machinery/portable_atmospherics/scrubber, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) "hz" = ( @@ -3855,10 +3783,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "ic" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/chair{ dir = 8 @@ -3905,12 +3831,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) -"ij" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/research) "ik" = ( /obj/structure/table/glass, /obj/item/stack/sheet/glass, @@ -4222,9 +4142,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "iN" = ( @@ -4243,9 +4163,7 @@ /obj/item/radio/off, /obj/item/radio/off, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) "iP" = ( @@ -4361,10 +4279,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -4427,10 +4343,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "jg" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/camera{ c_tag = "Gateway Chamber"; dir = 4; @@ -4665,9 +4579,9 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "jE" = ( @@ -4710,10 +4624,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "jK" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, @@ -4727,7 +4639,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/gateway) "jM" = ( @@ -4761,7 +4673,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/research) "jR" = ( @@ -4771,9 +4683,7 @@ pixel_y = 32 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "jS" = ( @@ -4810,7 +4720,7 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "jV" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 1; locked = 0; name = "UO45 Bar APC"; @@ -4906,9 +4816,9 @@ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "kc" = ( @@ -4925,7 +4835,7 @@ }, /area/awaymission/undergroundoutpost45/central) "kd" = ( -/obj/item/storage/backpack/satchel/tox, +/obj/item/storage/backpack/satchel/science, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/suit/toggle/labcoat/science, /obj/effect/decal/cleanable/dirt, @@ -4961,12 +4871,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) -"kg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/white{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/gateway) "kh" = ( /obj/item/kirbyplants{ layer = 5 @@ -5042,9 +4946,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "ko" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -5127,9 +5030,9 @@ "kv" = ( /obj/structure/closet/emcloset, /obj/item/clothing/mask/breath, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/central) "kw" = ( @@ -5280,9 +5183,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "kJ" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 1 }, @@ -5390,9 +5292,8 @@ }, /area/awaymission/undergroundoutpost45/research) "kT" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 1 }, @@ -5590,10 +5491,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -5662,9 +5561,8 @@ }, /area/awaymission/undergroundoutpost45/gateway) "lr" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -5856,7 +5754,7 @@ }, /area/awaymission/undergroundoutpost45/research) "lH" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ locked = 0; name = "UO45 Research Division APC"; pixel_y = -23; @@ -6105,13 +6003,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/gateway) -"mc" = ( -/turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" - }, -/area/awaymission/undergroundoutpost45/gateway) "md" = ( /turf/open/floor/plasteel/white{ heat_capacity = 1e+006 @@ -6261,9 +6152,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, @@ -6288,9 +6178,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/chair/wood{ dir = 8 }, @@ -6391,7 +6280,7 @@ }, /area/awaymission/undergroundoutpost45/gateway) "mE" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ locked = 0; name = "UO45 Gateway APC"; pixel_y = -23; @@ -6448,7 +6337,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/gateway) "mJ" = ( @@ -6736,11 +6625,8 @@ /area/awaymission/undergroundoutpost45/research) "nk" = ( /obj/structure/table, -/obj/item/cartridge/signal/toxins, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, +/obj/item/computer_disk/ordnance, +/obj/item/computer_disk/ordnance, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/cafeteria{ dir = 5; @@ -6842,9 +6728,9 @@ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "nu" = ( @@ -7044,10 +6930,8 @@ }, /area/awaymission/undergroundoutpost45/research) "nO" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 8 }, @@ -7116,7 +7000,7 @@ /obj/item/taperecorder{ pixel_x = -3 }, -/obj/item/paicard{ +/obj/item/pai_card{ pixel_x = 4 }, /turf/open/floor/plasteel/cafeteria{ @@ -7125,10 +7009,8 @@ }, /area/awaymission/undergroundoutpost45/research) "nT" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light{ dir = 8 }, @@ -7187,10 +7069,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -7320,9 +7200,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "oh" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -7533,9 +7412,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "ox" = ( @@ -7789,10 +7668,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "oT" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 4 }, @@ -7860,7 +7737,7 @@ /area/awaymission/undergroundoutpost45/engineering) "pa" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_air_sensor" + chamber_id = "UO45_air_sensor" }, /turf/open/floor/engine/air, /area/awaymission/undergroundoutpost45/engineering) @@ -7881,9 +7758,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "pd" = ( @@ -7974,9 +7851,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "pl" = ( @@ -8077,7 +7954,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "pv" = ( @@ -8088,7 +7965,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "pw" = ( @@ -8100,7 +7977,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/engineering) "px" = ( @@ -8361,9 +8238,9 @@ "pZ" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "qa" = ( @@ -8372,7 +8249,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "qb" = ( @@ -8418,9 +8295,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "qg" = ( @@ -8435,10 +8312,6 @@ }, /turf/open/floor/circuit/telecomms/server, /area/awaymission/undergroundoutpost45/research) -"qi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/telecomms, -/area/awaymission/undergroundoutpost45/research) "qj" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/sign/warning/securearea{ @@ -8496,9 +8369,8 @@ /area/awaymission/undergroundoutpost45/research) "qp" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/item/hand_labeler, /obj/item/clothing/neck/stethoscope, @@ -8532,10 +8404,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, @@ -8550,10 +8420,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "qv" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/carpet{ heat_capacity = 1e+006 }, @@ -8562,10 +8430,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/freezer{ heat_capacity = 1e+006 }, @@ -8595,7 +8461,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "qA" = ( @@ -8606,7 +8472,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "qB" = ( @@ -8617,7 +8483,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "qC" = ( @@ -8738,7 +8604,7 @@ input_tag = "UO45_air_in"; name = "Mixed Air Supply Control"; output_tag = "UO45_air_out"; - sensors = list("UO45_air_sensor" = "Tank") + sensors = list("UO45_air_sensor"="Tank") }, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -8791,10 +8657,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, /obj/machinery/rnd/server{ req_access = null }, @@ -8870,9 +8734,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "qY" = ( @@ -8968,9 +8832,7 @@ pixel_x = -24 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) "ri" = ( @@ -9080,7 +8942,7 @@ /turf/closed/wall/r_wall, /area/awaymission/undergroundoutpost45/engineering) "rp" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 8; name = "UO45 Engineering APC"; pixel_x = -25; @@ -9193,9 +9055,9 @@ /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "rz" = ( @@ -9234,9 +9096,9 @@ /obj/item/storage/box/lights/mixed, /obj/item/poster/random_contraband, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "rE" = ( @@ -9302,16 +9164,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) -"rK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" - }, -/area/awaymission/undergroundoutpost45/research) "rL" = ( /obj/machinery/door/airlock{ name = "Unisex Showers" @@ -9322,9 +9174,9 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "rM" = ( /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "rN" = ( @@ -9413,9 +9265,8 @@ }, /area/awaymission/undergroundoutpost45/crew_quarters) "rT" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9645,7 +9496,7 @@ }, /area/awaymission/undergroundoutpost45/mining) "sj" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ locked = 0; name = "UO45 Mining APC"; pixel_y = -23; @@ -9741,7 +9592,7 @@ "sr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - id_tag = "UO45_mix_in"; + chamber_id = "UO45_mix_in"; name = "distro out" }, /turf/open/floor/engine/vacuum, @@ -10140,7 +9991,7 @@ input_tag = "UO45_mix_in"; name = "Gas Mix Tank Control"; output_tag = "UO45_mix_in"; - sensors = list("UO45_mix_sensor" = "Tank") + sensors = list("UO45_mix_sensor"="Tank") }, /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ dir = 6 @@ -10178,7 +10029,7 @@ /area/awaymission/undergroundoutpost45/engineering) "tf" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_mix_sensor" + chamber_id = "UO45_mix_sensor" }, /turf/open/floor/engine/vacuum, /area/awaymission/undergroundoutpost45/engineering) @@ -10212,9 +10063,9 @@ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "tj" = ( @@ -10242,9 +10093,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "tm" = ( @@ -10564,9 +10415,9 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "tR" = ( @@ -10588,9 +10439,9 @@ dir = 4 }, /obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "tT" = ( @@ -10602,9 +10453,9 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "tU" = ( @@ -10684,7 +10535,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/crew_quarters) "uc" = ( @@ -10767,10 +10618,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ dir = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -23 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -10800,7 +10649,7 @@ input_tag = "UO45_n2_in"; name = "Nitrogen Supply Control"; output_tag = "UO45_n2_out"; - sensors = list("UO45_n2_sensor" = "Tank") + sensors = list("UO45_n2_sensor"="Tank") }, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, /obj/effect/turf_decal/tile/red, @@ -10851,7 +10700,7 @@ input_tag = "UO45_o2_in"; name = "Oxygen Supply Control"; output_tag = "UO45_o2_out"; - sensors = list("UO45_o2_sensor" = "Tank") + sensors = list("UO45_o2_sensor"="Tank") }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -10869,9 +10718,7 @@ dir = 9 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) "us" = ( @@ -10924,9 +10771,9 @@ "uy" = ( /obj/structure/closet, /obj/item/storage/belt/utility, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "uz" = ( @@ -10940,7 +10787,7 @@ /obj/machinery/computer/atmos_control{ dir = 4; name = "Tank Monitor"; - sensors = list("UO45_n2_sensor" = "Nitrogen", "UO45_o2_sensor" = "Oxygen", "UO45_mix_sensor" = "Gas Mix Tank") + sensors = list("UO45_n2_sensor"="Nitrogen","UO45_o2_sensor"="Oxygen","UO45_mix_sensor"="Gas Mix Tank") }, /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -11062,9 +10909,9 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "uO" = ( @@ -11072,9 +10919,9 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/research) "uP" = ( @@ -11090,9 +10937,9 @@ /obj/structure/chair{ dir = 8 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "uR" = ( @@ -11103,9 +10950,9 @@ /area/awaymission/undergroundoutpost45/crew_quarters) "uS" = ( /obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg3" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "uT" = ( @@ -11122,7 +10969,7 @@ /obj/machinery/computer/atmos_control{ dir = 4; name = "Distribution and Waste Monitor"; - sensors = list("UO45_air_sensor" = "Mixed Air Supply Tank", "UO45_distro_meter" = "Distribution Loop", "UO45_waste_meter" = "Waste Loop") + sensors = list("UO45_air_sensor"="Mixed Air Supply Tank","UO45_distro_meter"="Distribution Loop","UO45_waste_meter"="Waste Loop") }, /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -11162,9 +11009,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -11247,7 +11093,7 @@ /turf/open/floor/engine/n2, /area/awaymission/undergroundoutpost45/engineering) "ve" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1; id_tag = "UO45_n2_out"; name = "nitrogen out" @@ -11262,7 +11108,7 @@ /turf/open/floor/engine/o2, /area/awaymission/undergroundoutpost45/engineering) "vg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1; id_tag = "UO45_o2_out"; name = "oxygen out" @@ -11302,6 +11148,7 @@ /area/awaymission/undergroundoutpost45/research) "vk" = ( /obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, /turf/open/floor/plating{ heat_capacity = 1e+006 }, @@ -11317,7 +11164,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "vm" = ( @@ -11342,9 +11189,9 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "platingdmg1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/crew_quarters) "vp" = ( @@ -11480,7 +11327,7 @@ /area/awaymission/undergroundoutpost45/engineering) "vD" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_n2_sensor" + chamber_id = "UO45_n2_sensor" }, /obj/machinery/light/small, /turf/open/floor/engine/n2, @@ -11491,7 +11338,7 @@ /area/awaymission/undergroundoutpost45/engineering) "vF" = ( /obj/machinery/air_sensor{ - id_tag = "UO45_o2_sensor" + chamber_id = "UO45_o2_sensor" }, /obj/machinery/light/small, /turf/open/floor/engine/o2, @@ -11508,7 +11355,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/research) "vI" = ( @@ -11639,9 +11486,7 @@ pixel_y = -32 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/engineering) "vW" = ( @@ -11740,9 +11585,7 @@ dir = 4 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) "wg" = ( @@ -11788,7 +11631,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/mining) "wk" = ( @@ -11875,14 +11718,6 @@ heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) -"wt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/awaymission/undergroundoutpost45/mining) "wu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -11999,10 +11834,8 @@ }, /area/awaymission/undergroundoutpost45/engineering) "wC" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ heat_capacity = 1e+006 @@ -12222,10 +12055,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -12528,10 +12359,8 @@ /area/awaymission/undergroundoutpost45/mining) "xp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 23 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plasteel{ @@ -12660,9 +12489,7 @@ pixel_y = -1 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched2" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) "xE" = ( @@ -12830,9 +12657,7 @@ amount = 6 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) "xX" = ( @@ -12843,6 +12668,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, /turf/open/floor/plasteel{ heat_capacity = 1e+006 }, @@ -12855,10 +12681,8 @@ }, /area/awaymission/undergroundoutpost45/mining) "xZ" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel{ @@ -12879,9 +12703,7 @@ dir = 1 }, /turf/open/floor/plasteel{ - dir = 8; - heat_capacity = 1e+006; - icon_state = "floorscorched1" + heat_capacity = 1e+006 }, /area/awaymission/undergroundoutpost45/mining) "yc" = ( @@ -12917,6 +12739,7 @@ req_access_txt = "201" }, /obj/effect/turf_decal/sand, +/obj/structure/fans/tiny, /turf/open/floor/plasteel, /area/awaymission/undergroundoutpost45/mining) "yg" = ( @@ -12927,7 +12750,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/mining) "yh" = ( @@ -12936,7 +12759,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yi" = ( @@ -12945,7 +12768,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yj" = ( @@ -12956,7 +12779,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yk" = ( @@ -12966,7 +12789,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yl" = ( @@ -12977,7 +12800,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "ym" = ( @@ -12987,7 +12810,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yn" = ( @@ -12996,7 +12819,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yo" = ( @@ -13006,7 +12829,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yp" = ( @@ -13016,7 +12839,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yq" = ( @@ -13025,7 +12848,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yr" = ( @@ -13034,7 +12857,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yt" = ( @@ -13044,7 +12867,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yu" = ( @@ -13054,7 +12877,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yw" = ( @@ -13064,7 +12887,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yz" = ( @@ -13073,7 +12896,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yA" = ( @@ -13083,7 +12906,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yB" = ( @@ -13092,7 +12915,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yC" = ( @@ -13102,7 +12925,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yD" = ( @@ -13113,7 +12936,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "yH" = ( @@ -13124,7 +12947,7 @@ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; name = "Cave Floor"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "DJ" = ( @@ -13135,7 +12958,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "KE" = ( @@ -13150,7 +12973,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) "UM" = ( @@ -13161,7 +12984,7 @@ /turf/open/floor/plating{ heat_capacity = 1e+006; initial_gas_mix = "co2=173.4;n2=135.1;plasma=229.8;TEMP=351.9"; - temperature = 363.9 + initial_temperature = 363.9 }, /area/awaymission/undergroundoutpost45/caves) @@ -34110,7 +33933,7 @@ gL ke kC ji -mc +mb mH gw eJ @@ -38743,7 +38566,7 @@ nO ox pd gy -qi +rz qQ rz gz @@ -41789,7 +41612,7 @@ aC bq bq bq -am +al bY aC al @@ -42052,7 +41875,7 @@ aC cv cE cW -dj +ce ae bf eg @@ -42313,8 +42136,8 @@ cf dv dP eh -bL -bL +bS +bS eX fm fB @@ -42343,7 +42166,7 @@ pk nN nN qX -rK +pk nN tr tV @@ -42564,7 +42387,7 @@ bP cb cq ct -cG +cC cq dk an @@ -43602,7 +43425,7 @@ ez eN fa fp -bL +bS aS da gA @@ -43830,7 +43653,7 @@ ad ad ae ag -aj +ac ak aq ag @@ -43860,7 +43683,7 @@ el el fq fF -bL +bS ge gl gt @@ -44101,8 +43924,8 @@ bg bn aC bD -bL -bL +bS +bS ch cs aI @@ -44345,7 +44168,7 @@ ad ae ag al -am +al ar as at @@ -44358,9 +44181,9 @@ bg bo aC bE -bM +ci bT -bM +ci aS aS aS @@ -44601,7 +44424,7 @@ ad ad ae ag -am +al ap fu ag @@ -45136,7 +44959,7 @@ aC cA cI db -bM +ci dA dW en @@ -46423,7 +46246,7 @@ cN dd dp dD -bM +ci ep aS aS @@ -49776,7 +49599,7 @@ dh gq gb gH -gQ +fP gb hW gH diff --git a/_maps/RandomZLevels/wildwest.dmm b/_maps/away/wildwest.dmm similarity index 99% rename from _maps/RandomZLevels/wildwest.dmm rename to _maps/away/wildwest.dmm index 88f2efad52f0..8c1a61195ada 100644 --- a/_maps/RandomZLevels/wildwest.dmm +++ b/_maps/away/wildwest.dmm @@ -12,11 +12,6 @@ /obj/structure/destructible/cult/pylon, /turf/open/floor/engine/cult, /area/awaymission/wildwest/vault) -"ae" = ( -/turf/open/floor/plating{ - icon_state = "cultdamage5" - }, -/area/awaymission/wildwest/vault) "af" = ( /mob/living/simple_animal/hostile/faithless, /turf/open/floor/engine/cult, @@ -32,16 +27,6 @@ /obj/item/gun/ballistic/automatic/pistol, /turf/open/floor/wood, /area/awaymission/wildwest/mines) -"aj" = ( -/turf/open/floor/plating{ - icon_state = "cultdamage3" - }, -/area/awaymission/wildwest/vault) -"ak" = ( -/turf/open/floor/plating{ - icon_state = "cultdamage6" - }, -/area/awaymission/wildwest/vault) "al" = ( /obj/effect/gateway, /turf/open/floor/engine/cult, @@ -93,11 +78,6 @@ /obj/structure/destructible/cult/pylon, /turf/open/floor/circuit/off, /area/awaymission/wildwest/vault) -"aC" = ( -/turf/open/floor/plating{ - icon_state = "cultdamage2" - }, -/area/awaymission/wildwest/vault) "aD" = ( /turf/open/floor/carpet, /area/awaymission/wildwest/vault) @@ -33097,7 +33077,7 @@ ac ac ac ac -aj +ac ac ac ac @@ -34127,7 +34107,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -34644,7 +34624,7 @@ ac ac ac ac -ae +ac ac ac af @@ -34905,10 +34885,10 @@ ac ac ac ac -aj ac ac -ak +ac +ac ac ac ac @@ -35409,7 +35389,7 @@ ac ac ac ac -ae +ac ac ac ac @@ -35676,13 +35656,13 @@ ac ac ac ac -ak ac ac ac ac ac -aj +ac +ac ac ac ac @@ -36457,7 +36437,7 @@ ac ac ac ac -ak +ac ac af ac @@ -36696,7 +36676,7 @@ ac ac ac ac -ae +ac ac ac ac @@ -36957,7 +36937,7 @@ ac ac ac ac -ak +ac ac ac af @@ -36966,12 +36946,12 @@ ac ac ac ac -ae ac ac ac ac -aj +ac +ac ac ac ac @@ -37219,7 +37199,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -38255,7 +38235,7 @@ ac ac ac ac -aj +ac ac ac ac @@ -38270,7 +38250,7 @@ aD aD aD ac -aj +ac ac ac ac @@ -38494,7 +38474,6 @@ ab ac ac ac -aj ac ac ac @@ -38503,12 +38482,13 @@ ac ac ac ac -ae ac ac ac ac -aj +ac +ac +ac ac ac ac @@ -38770,7 +38750,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -39287,7 +39267,7 @@ ac af ac ac -aj +ac ac ac ac @@ -39531,7 +39511,7 @@ ac ag ac ac -aj +ac ac ag ac @@ -40565,7 +40545,7 @@ ac ac ac ac -aC +ac ac ac ac @@ -41081,7 +41061,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -42118,7 +42098,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -42869,7 +42849,7 @@ ac ac ag ag -aj +ac ac ag af @@ -43379,7 +43359,7 @@ aa ab ac ac -aj +ac ac ag ag @@ -43404,7 +43384,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -44690,7 +44670,7 @@ ac ac ac ac -ae +ac ac ac ac @@ -44952,7 +44932,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -45438,7 +45418,7 @@ ac ac ag ag -aj +ac ab ab ag @@ -45470,7 +45450,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -45723,7 +45703,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -46748,7 +46728,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -47268,7 +47248,7 @@ ac ac ac ac -ak +ac ac ac ac @@ -47779,7 +47759,7 @@ ac ac ac ac -ae +ac ac ac ac diff --git a/_maps/away/zombieprison.dmm b/_maps/away/zombieprison.dmm new file mode 100644 index 000000000000..8ed287c2efc3 --- /dev/null +++ b/_maps/away/zombieprison.dmm @@ -0,0 +1,74733 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"ab" = ( +/obj/item/fireaxe, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ad" = ( +/mob/living/simple_animal/hostile/zombie, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ae" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"af" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ag" = ( +/obj/structure/easel, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"ah" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ai" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"ak" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"al" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/prison/medicallog{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"an" = ( +/turf/closed/indestructible/fakeglass, +/area/awaymission/prison/start) +"ap" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"as" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"at" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"au" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access_txt = "3" + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"av" = ( +/obj/machinery/door/airlock/engineering/glass, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"aw" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ax" = ( +/obj/structure/sign/departments/chemistry, +/obj/effect/decal/cleanable/blood, +/turf/closed/wall, +/area/awaymission/prison/med) +"ay" = ( +/obj/item/clothing/glasses/night, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"az" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"aA" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"aB" = ( +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"aC" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 6; + name = "blue line" + }, +/obj/structure/fence{ + pixel_x = -15 + }, +/turf/open/floor/plasteel/dark{ + dir = 9 + }, +/area/awaymission/prison/rec) +"aD" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"aF" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/infiltrator, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"aH" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"aI" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle, +/obj/item/paper/fluff/awaymissions/prison/running, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"aK" = ( +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"aL" = ( +/obj/structure/table/wood, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"aM" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"aN" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage1, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"aO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"aQ" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage1, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"aR" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"aS" = ( +/obj/structure/bodycontainer/crematorium, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"aT" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/royalblue, +/area/awaymission/prison/cella) +"aU" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"aV" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"aW" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"aY" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"aZ" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"bb" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"bc" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6; + pixel_y = 14 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"bd" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/item/gun/energy/laser, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"be" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"bg" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"bh" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"bl" = ( +/obj/item/paper/fluff/awaymissions/prison/schizo, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"bq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/defibrillator_mount/loaded/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"br" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"bs" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"bt" = ( +/obj/item/healthanalyzer/advanced, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"bu" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"bv" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"by" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"bz" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"bD" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/turf/open/floor/noslip, +/area/awaymission/prison/cella) +"bE" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/hall) +"bG" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/structure/closet/firecloset{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"bI" = ( +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"bK" = ( +/obj/machinery/door/airlock/security{ + name = "interrogation"; + req_access_txt = "2" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"bL" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/bluespace, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"bM" = ( +/turf/open/floor/plating, +/area/awaymission/prison) +"bQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"bR" = ( +/turf/closed/indestructible/reinforced, +/area/space) +"bV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"bW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"bY" = ( +/obj/item/melee/baseball_bat, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"bZ" = ( +/obj/structure/toilet, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"cb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"cd" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"ce" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cf" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cg" = ( +/turf/closed/wall/bathhouse, +/area/awaymission/prison/solitary) +"ci" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"cj" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ck" = ( +/obj/structure/table/reinforced, +/obj/item/hivelordstabilizer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"cn" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage7, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"co" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"cp" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/item/chainsaw, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cq" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/atropine, +/obj/item/reagent_containers/hypospray/medipen/atropine, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"ct" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cu" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/ammo_box/magazine/sniper_rounds, +/obj/item/gun/ballistic/automatic/sniper_rifle, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"cv" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/solitary) +"cw" = ( +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cx" = ( +/obj/effect/mob_spawn/human/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cz" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"cC" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/item/clothing/under/scalamovprisoner, +/obj/item/clothing/under/scalamovprisoner, +/obj/item/clothing/under/scalamovprisoner, +/obj/item/clothing/under/scalamovprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"cD" = ( +/obj/structure/table, +/obj/item/stack/license_plates/empty/fifty, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"cE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"cI" = ( +/obj/item/megaphone/sec, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"cK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"cL" = ( +/obj/machinery/door/airlock/security, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"cM" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"cN" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"cQ" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"cT" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"cU" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage2, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"cX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"da" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"db" = ( +/obj/structure/table, +/obj/item/storage/box/beakers/variety, +/obj/item/storage/box/syringes, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"dc" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/carnivore, +/obj/item/storage/box/ingredients/carnivore, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"dd" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage5, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"de" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"dg" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"dh" = ( +/obj/structure/chair/sofa/bench{ + dir = 4; + pixel_x = 5 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"di" = ( +/obj/item/paper/fluff/awaymissions/prison/prisongang, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"dk" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"dl" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"dm" = ( +/obj/structure/rack, +/obj/item/ammo_box/c10mm, +/obj/item/ammo_box/c10mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"dn" = ( +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"do" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"dp" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/thermal, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"dr" = ( +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ds" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"dx" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"dy" = ( +/obj/structure/table/reinforced, +/obj/item/laser_pointer/upgraded, +/obj/item/storage/backpack/holding, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"dz" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/carpet/green, +/area/awaymission/prison/cella) +"dA" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"dC" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/freezer, +/area/space) +"dD" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"dE" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"dF" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"dG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"dH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/water_source{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"dI" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/awaymission/prison) +"dK" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/warden) +"dL" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"dM" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"dO" = ( +/obj/machinery/door/window, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"dQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"dR" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"dS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"dX" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/freezer, +/area/space) +"dY" = ( +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage3, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"dZ" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/clothing/shoes/combat/sneakboots, +/obj/item/clothing/under/syndicate/bloodred, +/obj/item/clothing/gloves/combat, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"eb" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/start) +"ec" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ee" = ( +/turf/open/indestructible/hotelwood, +/area/awaymission/prison/warden) +"eg" = ( +/obj/item/storage/firstaid/advanced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"ei" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ej" = ( +/obj/structure/destructible/cult/talisman, +/obj/item/book_of_babel, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"el" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"em" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/space) +"en" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"eo" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/gun/ballistic/automatic/mini_uzi, +/obj/item/ammo_box/c9mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"ep" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"eq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/card/id/away, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"er" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/prison/bitch, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"es" = ( +/obj/structure/fence/corner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"eu" = ( +/obj/structure/rack, +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"ey" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"ez" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"eA" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"eB" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"eC" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"eD" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/fans/tiny/invisible, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"eE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/indestructible/reinforced, +/area/awaymission/prison) +"eG" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"eI" = ( +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"eK" = ( +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"eL" = ( +/obj/machinery/button/door{ + id = "stage8"; + id_tag = null; + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"eN" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"eO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"eQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"eS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"eT" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/carpet/orange, +/area/awaymission/prison/cella) +"eU" = ( +/obj/item/paper/fluff/awaymissions/prison/entersurvivalhorror, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"eW" = ( +/obj/item/paper/fluff/awaymissions/prison/wardenwarn, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"eX" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison) +"eY" = ( +/obj/item/reagent_containers/food/drinks/bottle/applejack, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"eZ" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"fa" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"fb" = ( +/mob/living/simple_animal/hostile/netherworld/blankbody, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"fc" = ( +/obj/structure/fluff/empty_cryostasis_sleeper, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"fd" = ( +/obj/structure/table/wood, +/turf/open/indestructible/boss, +/area/awaymission/prison/warden) +"fe" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plating, +/area/awaymission/prison) +"fg" = ( +/obj/item/food/peanuts{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/food/candy{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/food/candy{ + pixel_x = -6 + }, +/obj/item/food/canned/beans, +/obj/item/food/canned/beans, +/obj/item/food/canned/peaches{ + pixel_x = 5 + }, +/obj/item/food/canned/peaches{ + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"fi" = ( +/obj/machinery/button/door/prison/stage6{ + pixel_x = 23 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/ship_in_a_bottle, +/obj/item/paper/fluff/awaymissions/prison/crumpled/medicallog2, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"fp" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"fq" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/clothing/suit/space/hardsuit/shielded/syndi, +/obj/item/clothing/glasses/thermal, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"fr" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ft" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/fountain/captain{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/paper/fluff/awaymissions/prison/wardenpostnote, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"fu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/gun/ballistic/shotgun{ + pixel_y = 10 + }, +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"fv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"fw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"fA" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"fB" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"fC" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"fD" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fE" = ( +/obj/machinery/door/airlock/security{ + name = "max security solitary cell" + }, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"fF" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fG" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fH" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"fI" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fJ" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"fM" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"fN" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/solitary) +"fP" = ( +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"fQ" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"fR" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"fU" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"fV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox, +/obj/item/storage/toolbox, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"fW" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"fX" = ( +/obj/structure/rack, +/obj/item/shield/riot/flash, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"fY" = ( +/turf/closed/wall, +/area/awaymission/prison/med) +"fZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"gb" = ( +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"gc" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/drugs, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"gg" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"gh" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"gi" = ( +/obj/structure/closet/secure_closet/tac, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"gl" = ( +/obj/structure/rack, +/obj/item/storage/backpack/chameleon, +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"gm" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"gn" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/implanter/storage, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"gp" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"gq" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"gs" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury, +/obj/item/reagent_containers/hypospray/medipen/survival/luxury, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"gt" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"gu" = ( +/obj/effect/spawner/structure/window/hollow/plasma/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/prison/cellb) +"gv" = ( +/obj/structure/chair/office{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"gw" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"gx" = ( +/obj/item/storage/backpack/holding, +/turf/open/floor/plasteel/freezer, +/area/space) +"gz" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"gC" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"gD" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"gE" = ( +/obj/structure/chair/office{ + dir = 8; + pixel_x = -12 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"gF" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/stack/sheet/animalhide/gondola, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"gG" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"gI" = ( +/obj/machinery/atmospherics/components/binary/crystallizer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"gL" = ( +/obj/item/storage/backpack/holding, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"gP" = ( +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"gQ" = ( +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"gT" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"gU" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"gV" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/carpet/red, +/area/awaymission/prison/cella) +"gX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"ha" = ( +/obj/structure/rack, +/obj/item/stack/sheet/cloth/ten, +/obj/item/clothing/gloves/combat, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"hb" = ( +/obj/effect/turf_decal/box/red, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"hc" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"hf" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/prison) +"hg" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"hj" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/space) +"hm" = ( +/obj/effect/spawner/structure/window/hollow/plasma/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/cellb) +"hr" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"hs" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"hv" = ( +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"hw" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"hx" = ( +/turf/closed/wall/r_wall, +/area/space) +"hy" = ( +/obj/structure/table/reinforced, +/obj/item/autosurgeon/organ/syndicate/laser_arm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"hB" = ( +/obj/structure/table/reinforced, +/obj/item/disk/tech_disk/spaceloot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"hC" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"hE" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/blood_loss, +/obj/item/reagent_containers/hypospray/medipen/blood_loss, +/obj/item/reagent_containers/hypospray/medipen/blood_loss, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"hF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"hM" = ( +/obj/machinery/vending/wallmed/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"hN" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"hO" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"hQ" = ( +/obj/structure/chair/sofa/corner{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"hT" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"hV" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/random, +/obj/item/slimecross/charged/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"hW" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"hX" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"ib" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 15 + }, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"ic" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"id" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"ih" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ij" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"ik" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"il" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"im" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/torso, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"in" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"io" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ir" = ( +/obj/item/clothing/shoes/combat/swat, +/obj/item/clothing/suit/space/swat, +/obj/item/clothing/mask/gas/sechailer/swat, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/clothing/gloves/combat, +/obj/structure/closet/secure_closet/contraband/armory{ + name = "SWAT gear" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"iv" = ( +/obj/item/card/id/advanced/prisoner, +/obj/item/card/id/advanced/prisoner, +/obj/item/card/id/advanced/prisoner, +/obj/item/card/id/advanced/prisoner, +/obj/item/card/id/advanced/prisoner, +/obj/item/card/id/advanced/prisoner, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"iw" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ix" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"iy" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"iz" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"iC" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"iD" = ( +/obj/structure/chair, +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"iE" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"iF" = ( +/obj/machinery/computer/station_alert, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"iH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"iJ" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"iK" = ( +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"iL" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"iM" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/solitary) +"iO" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"iP" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/lethal, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"iT" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"iU" = ( +/obj/item/clothing/under/scalamovprisoner, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"iV" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"iW" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"iX" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/fireaxe, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"iZ" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"jc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"je" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"jf" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/gun/ballistic/automatic/assault_rifle, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"jj" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"jo" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -2; + pixel_y = 18 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"jp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"jq" = ( +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"js" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"jv" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jw" = ( +/obj/machinery/door/airlock/public, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/freezer, +/area/space) +"jx" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/warden) +"jy" = ( +/obj/structure/sign/poster/official/no_erp, +/turf/open/floor/plasteel, +/area/space) +"jz" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"jA" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"jB" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"jC" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"jD" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"jF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"jH" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"jI" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jK" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"jL" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jN" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/prison/power, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jQ" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jR" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"jS" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"jU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/box, +/obj/item/reagent_containers/hypospray/medipen/oxandrolone, +/obj/item/reagent_containers/hypospray/medipen/ekit, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"jW" = ( +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"jY" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"kb" = ( +/obj/item/reagent_containers/hypospray/medipen/stimpack, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"kc" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"kd" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ke" = ( +/obj/structure/rack, +/obj/item/shield/riot/tele, +/obj/item/shield/riot/tele, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"ki" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"kk" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"kl" = ( +/obj/structure/rack, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"km" = ( +/obj/machinery/computer{ + dir = 4; + pixel_x = 13 + }, +/obj/machinery/computer{ + dir = 8; + pixel_x = -13 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"kq" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"kt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/water_source{ + pixel_y = 20 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ku" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"kw" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"ky" = ( +/obj/item/gun/ballistic/automatic/wt550, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"kz" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel/freezer, +/area/space) +"kA" = ( +/obj/machinery/destructive_scanner, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"kB" = ( +/mob/living/simple_animal/hostile/syndicate/melee, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"kE" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"kF" = ( +/obj/structure/bed, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"kG" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"kI" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"kJ" = ( +/obj/machinery/button/door/prison/stage2{ + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"kK" = ( +/obj/structure/table/reinforced, +/obj/item/kinetic_crusher, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"kO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"kP" = ( +/obj/item/reagent_containers/hypospray/medipen/survival/luxury, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"kQ" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/structure/fence{ + pixel_x = 15 + }, +/turf/open/floor/plasteel/dark{ + dir = 4 + }, +/area/awaymission/prison/rec) +"kR" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"kS" = ( +/turf/open/floor/carpet/orange, +/area/awaymission/prison/cella) +"kU" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"kV" = ( +/obj/structure/filingcabinet, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"kW" = ( +/obj/structure/table, +/obj/machinery/computer/bookmanagement, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"kX" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/bottle/wine{ + pixel_x = 12; + pixel_y = 15 + }, +/obj/item/clothing/head/helmet/police, +/obj/item/clothing/head/helmet/police, +/obj/item/clothing/head/helmet/police, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"kY" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"la" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"lc" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"ld" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"le" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"lf" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"li" = ( +/obj/machinery/fat_sucker, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"lk" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"ll" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"lo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"ls" = ( +/obj/machinery/door/airlock/security{ + name = "interrogation" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"lu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"lv" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"lw" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"lx" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_x = 15 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ly" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/solitary) +"lA" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"lB" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"lE" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"lG" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"lH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel/freezer, +/area/space) +"lI" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"lJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shield/riot/tele, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"lK" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"lL" = ( +/obj/item/paper/fluff/awaymissions/prison/ohno, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"lR" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"lS" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"lT" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/ertlog2, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"lU" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"lW" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/noslip, +/area/awaymission/prison/cella) +"lY" = ( +/obj/item/emptysandbag, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"ma" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/syndie, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"mb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"md" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"me" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/item/melee/baseball_bat, +/obj/item/melee/baseball_bat{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"mf" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"mg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp/green, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"mh" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"mi" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"mj" = ( +/mob/living/simple_animal/hostile/retaliate/ghost, +/obj/structure/chair/bronze, +/turf/open/floor/plasteel, +/area/space) +"mk" = ( +/obj/structure/rack, +/obj/item/clothing/under/suit/henchmen, +/obj/item/clothing/under/suit/henchmen, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ml" = ( +/obj/item/paper/fluff/awaymissions/prison/prisonernote, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"mm" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"mq" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"mr" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"mt" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile{ + name = "Unknown Horror"; + real_name = "Unknown Horror" + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"mu" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"mw" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"mA" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"mB" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/item/pickaxe/emergency, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"mD" = ( +/obj/structure/table/wood, +/obj/item/megaphone/sec, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"mF" = ( +/obj/structure/bed, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"mG" = ( +/obj/machinery/atmospherics/miner/plasma, +/turf/open/floor/plating, +/area/awaymission/prison) +"mH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/iv_drip{ + pixel_x = -5 + }, +/obj/machinery/iv_drip{ + pixel_x = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"mJ" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"mL" = ( +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"mM" = ( +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"mN" = ( +/obj/structure/table/reinforced, +/obj/item/ammo_box/c10mm, +/obj/item/ammo_box/c10mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"mR" = ( +/obj/structure/table, +/obj/item/ammo_box/c45, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"mS" = ( +/obj/structure/rack, +/obj/item/gun/medbeam, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"mT" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/prison/welcome, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"mU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"mW" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/vending/boozeomat/all_access, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"mY" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "stage8"; + id_tag = null + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"mZ" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"na" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"nb" = ( +/obj/structure/bed/maint, +/turf/open/floor/noslip, +/area/awaymission/prison/cella) +"nd" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/cake/birthday, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"nh" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"nj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"nk" = ( +/turf/closed/wall, +/area/awaymission/prison/guard) +"nm" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"nn" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood, +/obj/item/pen/fountain/captain{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"no" = ( +/obj/structure/table, +/obj/item/food/canned/beans, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"np" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"nq" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"ns" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"nv" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/cella) +"nw" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"nx" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"ny" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"nA" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"nB" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/ammo_box/magazine/m50, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"nE" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"nF" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/space) +"nG" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"nH" = ( +/obj/structure/table/reinforced, +/obj/item/rsf/cookiesynth, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"nI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"nM" = ( +/obj/structure/rack, +/obj/item/clothing/under/costume/villain, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"nP" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"nR" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/plating, +/area/awaymission/prison) +"nU" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"nV" = ( +/obj/machinery/door/airlock, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"nW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/warden) +"nX" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"nY" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_x = 15 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"nZ" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oa" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"ob" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/med) +"oc" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/wt550, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"od" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"of" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"oh" = ( +/obj/machinery/door/window, +/turf/open/floor/plasteel/freezer, +/area/space) +"oi" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage1, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"oj" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/awaymission/prison) +"ok" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage5, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"ol" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"om" = ( +/obj/item/paper/fluff/awaymissions/prison/dontopendeadinside, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"oo" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"op" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plating, +/area/awaymission/prison) +"oq" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"or" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"os" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ot" = ( +/obj/effect/mob_spawn/human/doctor, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_box/c38, +/obj/item/ammo_box/c38, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ou" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing/shotgun/buckshot, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ow" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"oA" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"oB" = ( +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oC" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"oD" = ( +/obj/item/gun/ballistic/automatic/assault_rifle, +/obj/item/storage/bag, +/obj/structure/closet/secure_closet/contraband, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oE" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"oG" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"oK" = ( +/obj/structure/table/wood/fancy/black, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"oL" = ( +/obj/machinery/computer/atmos_control/plasma_tank, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oM" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"oO" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/chocolatebunny, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"oP" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"oR" = ( +/obj/machinery/limbgrower, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"oU" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"oV" = ( +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"oX" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"oZ" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"pa" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/wt550m9, +/obj/item/ammo_box/magazine/wt550m9, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"pc" = ( +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/automatic/pistol, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"pe" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"pf" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/rec) +"pg" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"ph" = ( +/obj/item/gun/ballistic/automatic/pistol, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"pi" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/contraband/armory, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"pk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/filingcabinet/medical, +/obj/structure/window/plasma{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"pl" = ( +/obj/structure/destructible/cult/pylon, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"po" = ( +/obj/structure/closet/crate/trashcart/laundry, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"pq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage6, +/turf/open/indestructible/white, +/area/awaymission/prison/warden) +"pr" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"ps" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/prison/eggheadnote, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"pt" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"pu" = ( +/obj/structure/bed, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"pv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"pw" = ( +/obj/effect/decal/cleanable/blood/drip, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"pz" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"pA" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/carpet/purple, +/area/awaymission/prison/cella) +"pC" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"pD" = ( +/obj/structure/chair/e_chair, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"pG" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"pI" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/cella) +"pK" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/smg/space, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"pM" = ( +/obj/item/ammo_box/magazine/m45, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"pO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"pQ" = ( +/mob/living/simple_animal/hostile/construct/juggernaut/noncult{ + health = 350 + }, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"pS" = ( +/turf/open/floor/carpet/stellar, +/area/awaymission/prison/cella) +"pV" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"pW" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison) +"pX" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"pY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"pZ" = ( +/obj/structure/window/plasma{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"qb" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 9; + name = "blue line" + }, +/obj/structure/fence/post{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + dir = 6 + }, +/area/awaymission/prison/rec) +"qe" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"qf" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"qh" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"qi" = ( +/obj/structure/table/wood, +/obj/item/papercutter, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"qm" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"qn" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"qo" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"qp" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"qq" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"qs" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"qu" = ( +/obj/item/paper/fluff/awaymissions/prison/ertlog, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"qv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"qA" = ( +/obj/machinery/vending/snack/green, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"qB" = ( +/obj/structure/holohoop{ + density = 0; + pixel_y = 18 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/awaymission/prison/rec) +"qC" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/death) +"qG" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"qH" = ( +/obj/machinery/door/airlock/medical, +/obj/structure/firelock_frame, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"qJ" = ( +/obj/structure/chair/e_chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"qL" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/welding, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"qM" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"qO" = ( +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/warden) +"qP" = ( +/obj/structure/table, +/obj/item/megaphone/sec, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"qR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/clothing/glasses/thermal, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"qT" = ( +/obj/machinery/ore_silo, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"qU" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"qV" = ( +/obj/structure/table, +/obj/item/food/pizzaslice/meat, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"qX" = ( +/turf/open/floor/plating, +/area/awaymission/prison/death) +"qY" = ( +/turf/open/indestructible/boss, +/area/awaymission/prison/warden) +"qZ" = ( +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"rb" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"rd" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"rf" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"rg" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"ri" = ( +/obj/machinery/jukebox{ + req_access = null + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"rj" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"rk" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"rl" = ( +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"rm" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/exotic/languagebook, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"rn" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/structure/curtain{ + icon_state = "bathroom-closed" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ro" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/space) +"rr" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"rs" = ( +/obj/effect/turf_decal/tile/blue, +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"rt" = ( +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/awaymission/prison) +"rv" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"rx" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/storage/backpack/duffelbag/syndie/surgery, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"rA" = ( +/obj/item/ammo_casing/caseless, +/obj/item/ammo_casing/caseless{ + dir = 5 + }, +/obj/item/ammo_casing/caseless{ + dir = 9; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"rB" = ( +/obj/structure/toilet, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"rD" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage1, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"rF" = ( +/obj/item/clothing/gloves/color/latex, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"rI" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"rL" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/prison/guard) +"rO" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"rP" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/random, +/obj/item/slimecross/regenerative/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"rQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/closed/indestructible/reinforced, +/area/awaymission/prison) +"rU" = ( +/mob/living/simple_animal/hostile/prison/riotcop{ + atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 1, "min_co2" = 0, "max_co2" = 5, "min_n2" = 0, "max_n2" = 0); + health = 250; + name = "Grunt"; + unsuitable_atmos_damage = 0 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"rV" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage2, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"rW" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"rX" = ( +/mob/living/simple_animal/hostile/netherworld/blankbody, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"rY" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"sa" = ( +/obj/machinery/door/airlock/public, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"sf" = ( +/obj/machinery/chem_dispenser/chem_synthesizer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"si" = ( +/obj/item/chair, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"sk" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"sn" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/obj/structure/fence/post{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + dir = 10 + }, +/area/awaymission/prison/rec) +"sq" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"sr" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_box/c45, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ss" = ( +/obj/structure/sign/warning/chemdiamond, +/turf/closed/wall, +/area/awaymission/prison/med) +"st" = ( +/obj/item/melee/baseball_bat, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"su" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"sB" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"sC" = ( +/obj/machinery/stasis{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"sD" = ( +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"sF" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"sG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"sH" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/caseless, +/obj/item/ammo_casing/caseless{ + dir = 9; + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_casing/caseless{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"sI" = ( +/obj/structure/table/reinforced, +/obj/item/book_of_babel, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"sJ" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison) +"sK" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"sL" = ( +/obj/item/storage/backpack/holding, +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"sM" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"sO" = ( +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"sP" = ( +/obj/machinery/door/airlock, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"sQ" = ( +/obj/machinery/harvester, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"sR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"sS" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"sT" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"sU" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"sW" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"sX" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"sY" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"sZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tb" = ( +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tc" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"te" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"tf" = ( +/obj/item/electropack, +/turf/open/floor/plasteel, +/area/space) +"tg" = ( +/mob/living/simple_animal/hostile/zombie, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"th" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"tm" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"to" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage5, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"tq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"tr" = ( +/obj/machinery/abductor/experiment, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"ts" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"tv" = ( +/obj/item/circular_saw, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tw" = ( +/turf/closed/indestructible/cult, +/area/awaymission/prison/secret) +"ty" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"tA" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/pizzabox/infinite, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"tB" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"tC" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tD" = ( +/mob/living/simple_animal/hostile/zombie, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"tF" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"tH" = ( +/obj/structure/table/reinforced, +/obj/item/autosurgeon/organ/syndicate/anti_stun, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"tI" = ( +/obj/machinery/door/airlock/security, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"tL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"tM" = ( +/obj/machinery/door/airlock/security, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"tN" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"tO" = ( +/obj/machinery/button/door/prison/stage4{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"tR" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"tT" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tV" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"tW" = ( +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"tX" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"tY" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"tZ" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"ub" = ( +/obj/structure/table, +/obj/item/storage/backpack/holding, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"ud" = ( +/obj/structure/chair/sofa/bench{ + dir = 4; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ue" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ug" = ( +/obj/structure/filingcabinet/medical, +/obj/structure/window/plasma{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"uh" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ui" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"uj" = ( +/obj/structure/rack, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"uk" = ( +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"ul" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"un" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"up" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"uq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"ur" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"uu" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"uv" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"uz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating, +/area/awaymission/prison) +"uA" = ( +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"uD" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"uE" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"uI" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + id = "stage8"; + id_tag = null + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"uL" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"uM" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/fullupgrade, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"uN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/pen, +/obj/item/storage/belt/utility/full/engi, +/obj/item/paper/fluff/awaymissions/prison/residentevillogic, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"uO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"uR" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/american, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/enzyme{ + list_reagents = list(/datum/reagent/consumable/enzyme = 500); + name = "universe-sized universal enyzyme"; + volume = 500 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/item/storage/box/ingredients/american, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/delights, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/grains, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/sweets, +/obj/item/storage/box/ingredients/sweets, +/obj/item/storage/box/ingredients/sweets, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/storage/box/ingredients/wildcard, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"uT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"uV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"uW" = ( +/mob/living/simple_animal/hostile/zombie, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"uX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"uY" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/random/maintenance/five, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"va" = ( +/obj/structure/rack, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"vb" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"vc" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"vf" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"vg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"vi" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/curtain{ + icon_state = "bathroom-closed" + }, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"vj" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"vk" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"vl" = ( +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"vm" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"vo" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"vp" = ( +/mob/living/simple_animal/hostile/blob/blobbernaut/independent, +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"vr" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Containment Cell"; + req_access_txt = "55" + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"vs" = ( +/obj/machinery/button/door/prison/stage3{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"vt" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/space) +"vu" = ( +/obj/structure/bed, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"vA" = ( +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"vC" = ( +/obj/structure/closet/secure_closet/ert_med, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"vD" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"vE" = ( +/obj/structure/rack, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/obj/item/implanter/tracking, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"vG" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"vK" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"vM" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"vQ" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/guard) +"vR" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"vS" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"vU" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"vW" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"vX" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"vY" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"wc" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"wd" = ( +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"we" = ( +/obj/structure/table, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"wf" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"wg" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"wh" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"wi" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"wk" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"wl" = ( +/obj/effect/spawner/structure/window/hollow/plasma/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"wo" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"wu" = ( +/obj/structure/bed/roller, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"wv" = ( +/obj/structure/bed, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"ww" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"wA" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"wB" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"wE" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"wH" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/awaymission/prison) +"wI" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"wJ" = ( +/turf/open/floor/carpet/cyan, +/area/awaymission/prison/cella) +"wM" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"wN" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"wQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"wR" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"wS" = ( +/obj/structure/bookcase/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"wU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"wV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"wX" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/closed/wall/r_wall, +/area/awaymission/prison) +"wY" = ( +/obj/machinery/button/door/prison/stage7{ + pixel_x = 23 + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"wZ" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"xa" = ( +/obj/structure/curtain, +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"xc" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"xd" = ( +/obj/effect/landmark/awaystart, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"xe" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"xh" = ( +/obj/effect/mob_spawn/human/scalamovinmatehostile{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"xk" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"xl" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"xn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb{ + dir = 8 + }, +/turf/open/floor/plating, +/area/awaymission/prison) +"xo" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"xr" = ( +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"xt" = ( +/obj/structure/showcase/machinery/tv, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"xu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"xw" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/awaymission/prison) +"xx" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"xy" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"xz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"xG" = ( +/obj/item/paper/fluff/awaymissions/prison/scavenge, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"xI" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 8; + name = "blue line" + }, +/obj/structure/fence{ + pixel_x = -15 + }, +/turf/open/floor/plasteel/dark{ + dir = 8 + }, +/area/awaymission/prison/rec) +"xJ" = ( +/obj/structure/reagent_dispensers/servingdish, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"xK" = ( +/obj/structure/table, +/obj/item/taperecorder, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"xN" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/cafe) +"xP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/smartfridge/chemistry/preloaded, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"xQ" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"xR" = ( +/obj/structure/table/reinforced, +/obj/item/gun/medbeam, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"xU" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/cafe) +"xW" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"ya" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/carpet/cyan, +/area/awaymission/prison/cella) +"yb" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"yd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"yf" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"yh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"yk" = ( +/obj/effect/mob_spawn/human/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"yn" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/pie/pumpkinpie, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"yo" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"yq" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"yr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"ys" = ( +/obj/effect/decal/cleanable/blood/gibs/torso, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"yt" = ( +/obj/structure/table/reinforced, +/obj/item/language_manual/roundstart_species/five, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"yv" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"yw" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"yy" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"yz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"yA" = ( +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"yC" = ( +/obj/item/emptysandbag, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"yD" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"yE" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"yG" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"yH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"yK" = ( +/obj/item/gun/ballistic/shotgun/lethal, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"yM" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"yN" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"yO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/food/butter, +/obj/item/food/butter, +/obj/item/food/butter, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"yP" = ( +/obj/effect/turf_decal/box/red, +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"yQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"yS" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"yT" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"yX" = ( +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"yY" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"yZ" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"za" = ( +/obj/item/ammo_casing/shotgun/incendiary, +/obj/item/ammo_casing/shotgun/buckshot{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"zb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"zc" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ze" = ( +/obj/structure/fence/door, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"zf" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"zg" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"zh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"zi" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/rec) +"zj" = ( +/obj/structure/table, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/food/pigblanket, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"zl" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"zs" = ( +/obj/machinery/door/airlock/security, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"zt" = ( +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"zu" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Treatment Center"; + req_access_txt = "5" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"zv" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"zw" = ( +/obj/structure/table/wood, +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"zy" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 10 + }, +/obj/machinery/recharger{ + pixel_x = -10 + }, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"zC" = ( +/obj/item/paper/fluff/awaymissions/prison/keenan, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"zG" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/wt550, +/obj/item/ammo_box/magazine/wt550m9, +/obj/item/ammo_box/magazine/wt550m9, +/obj/item/ammo_box/magazine/wt550m9, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"zI" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"zJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/caseless, +/obj/item/ammo_casing/caseless{ + dir = 5; + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_casing/caseless{ + dir = 9; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"zK" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"zL" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"zM" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"zN" = ( +/obj/structure/lattice, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/space/basic, +/area/space) +"zO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/awaymission/prison) +"zR" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"zW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"zX" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"zY" = ( +/obj/item/paper/fluff/awaymissions/prison/piss, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"zZ" = ( +/turf/open/space/basic, +/area/space) +"Aa" = ( +/mob/living/simple_animal/hostile/blob/blobbernaut/independent, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Ac" = ( +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Ad" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Ah" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Ai" = ( +/obj/item/storage/firstaid/brute, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Al" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"Am" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/item/paper_bin{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/item/pen, +/obj/item/storage/belt/utility/full/engi, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"An" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/stellar, +/area/awaymission/prison/cella) +"Aq" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"As" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"At" = ( +/obj/structure/table, +/obj/item/food/bread/butteredtoast, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Au" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Aw" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"Ay" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/ammo_box/magazine/m9mm, +/obj/item/ammo_box/magazine/m9mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Az" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/cellb) +"AE" = ( +/obj/machinery/vending/cola/pwr_game, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"AG" = ( +/obj/structure/table/reinforced, +/obj/item/laser_pointer/upgraded, +/obj/item/cautery/alien, +/obj/item/circular_saw/alien, +/obj/item/hemostat/alien, +/obj/item/retractor/alien, +/obj/item/scalpel/alien, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"AI" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"AM" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"AO" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"AP" = ( +/obj/structure/curtain{ + icon_state = "bathroom-closed" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"AR" = ( +/obj/structure/chair/office{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/cella) +"AT" = ( +/obj/structure/table, +/obj/item/food/burger/cheese, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"AU" = ( +/obj/item/paper/fluff/awaymissions/prison/guardhousenotice, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"AW" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"AX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"AZ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Ba" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Bg" = ( +/obj/structure/table/reinforced, +/obj/item/language_manual, +/obj/item/language_manual, +/obj/item/language_manual, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Bh" = ( +/obj/structure/chair/sofa/bench{ + dir = 4; + pixel_x = 5 + }, +/obj/effect/mob_spawn/human/engineer, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Bi" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"Bj" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Bk" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"Bm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Bn" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"Bo" = ( +/obj/structure/table, +/obj/item/food/donut/apple, +/obj/item/food/donut/jelly/caramel{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Bp" = ( +/obj/structure/closet/crate/trashcart/filled, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Bq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Bs" = ( +/obj/structure/rack, +/obj/item/ammo_box/magazine/fg42, +/obj/item/ammo_box/magazine/fg42, +/obj/item/ammo_box/magazine/fg42, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Bt" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"Bv" = ( +/obj/structure/table/reinforced, +/obj/item/bodybag/bluespace, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Bw" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"Bx" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"Bz" = ( +/turf/open/indestructible/boss/air, +/area/space) +"BA" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"BB" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"BC" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"BD" = ( +/obj/structure/rack, +/obj/item/ammo_box/c45, +/obj/item/ammo_box/c45, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"BE" = ( +/obj/effect/mob_spawn/human/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"BI" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"BJ" = ( +/obj/structure/rack, +/obj/item/melee/classic_baton/telescopic, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"BM" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage1, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"BO" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"BS" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"BT" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"BV" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison) +"BW" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Cf" = ( +/obj/structure/closet/crate/trashcart/laundry, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Cg" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/item/card/id/away, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"Ch" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/plating, +/area/awaymission/prison) +"Ci" = ( +/obj/machinery/medipen_refiller, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Cj" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/storage/box/syndie_kit/chameleon, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Ck" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Cl" = ( +/obj/structure/curtain{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Cm" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Cn" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Co" = ( +/obj/structure/table, +/obj/item/gun/ballistic/automatic/pistol/makarov, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Cs" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Cu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Cv" = ( +/obj/item/paper/fluff/awaymissions/prison/orders, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Cw" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Cz" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"CA" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"CB" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"CC" = ( +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"CE" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"CF" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/start) +"CG" = ( +/obj/machinery/computer/monitor{ + dir = 1; + name = "backup power monitoring console" + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"CH" = ( +/obj/structure/closet/crate/trashcart/laundry, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"CJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"CL" = ( +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"CO" = ( +/obj/item/light/tube/broken, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"CP" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"CQ" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"CV" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"CW" = ( +/obj/structure/chair/greyscale{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"CY" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"CZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/awaymission/prison) +"Da" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"Db" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/start) +"Dc" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Dd" = ( +/obj/structure/table, +/obj/item/food/donut/jelly/slimejelly/choco, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"De" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"Df" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"Dg" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/structure/firelock_frame, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Dh" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Dj" = ( +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"Dk" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Dm" = ( +/obj/structure/closet/crate/secure/loot, +/turf/open/space/basic, +/area/space) +"Dn" = ( +/obj/effect/mob_spawn/human/engineer, +/obj/item/gun/ballistic/automatic/pistol/m1911/no_mag, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_x = 15 + }, +/obj/item/ammo_box/magazine/m45, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Dr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Ds" = ( +/obj/item/megaphone/sec, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Dt" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Dx" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/entertainment/drugs, +/obj/effect/spawner/random/entertainment/drugs, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Dy" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"DA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"DB" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"DD" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"DF" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison/cafe) +"DG" = ( +/obj/structure/table/reinforced, +/obj/item/inducer/sci, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"DH" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"DI" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"DK" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"DL" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"DM" = ( +/obj/item/kitchen/knife/hunting, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"DO" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"DP" = ( +/obj/structure/showcase/machinery/implanter{ + desc = "What is this stuff? What is the purpose?"; + name = "strange experiment pod" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"DQ" = ( +/turf/open/floor/plating, +/area/awaymission/prison/start) +"DR" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"DU" = ( +/mob/living/simple_animal/hostile/zombie, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"DV" = ( +/obj/machinery/door/airlock/security{ + name = "Contraband"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/space) +"DW" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/meta, +/obj/item/reagent_containers/glass/beaker/meta{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"DY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"DZ" = ( +/obj/structure/fence, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Ea" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Eb" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ed" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Ef" = ( +/obj/item/paper/fluff/awaymissions/prison/thestart, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Eg" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/solitary) +"Ej" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/paper/fluff/awaymissions/prison/dontopendeadinside, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Em" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"En" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Eo" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"Ep" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Eq" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Er" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Es" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"Et" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/hall) +"Ew" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Ey" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"EA" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"EC" = ( +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ED" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/riot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"EE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"EF" = ( +/obj/structure/table/reinforced, +/obj/item/lazarus_injector, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"EG" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"EH" = ( +/obj/item/bodybag, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"EJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/r_wall, +/area/awaymission/prison) +"EK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"EL" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall, +/area/awaymission/prison/med) +"EM" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"EN" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"EO" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"EP" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/ammo_box/magazine/m10mm, +/obj/item/ammo_box/magazine/m10mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"EQ" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ER" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/solitary) +"EZ" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"Fa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/closed/wall, +/area/awaymission/prison/med) +"Fd" = ( +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Ff" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Fh" = ( +/mob/living/simple_animal/hostile/megafauna/bubblegum/warden, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/warden) +"Fi" = ( +/obj/structure/rack, +/obj/item/radio/headset/chameleon, +/obj/item/clothing/head/helmet/justice, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Fj" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/orange, +/area/awaymission/prison/cella) +"Fl" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"Fm" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"Fp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Fq" = ( +/turf/open/indestructible/white, +/area/awaymission/prison/warden) +"Fr" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ft" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/vending/medical, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Fw" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/ekit, +/obj/item/reagent_containers/hypospray/medipen/ekit, +/obj/item/reagent_containers/hypospray/medipen/ekit, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Fz" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"FA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/obj/machinery/defibrillator_mount/loaded/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"FB" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"FE" = ( +/mob/living/simple_animal/hostile/zombie, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"FH" = ( +/mob/living/simple_animal/hostile{ + name = "Unknown Horror"; + real_name = "Unknown Horror" + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"FI" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"FK" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"FN" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/gun/ballistic/automatic, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"FR" = ( +/obj/machinery/harvester, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"FS" = ( +/obj/structure/girder, +/turf/open/space/basic, +/area/space) +"FT" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c100, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"FU" = ( +/obj/item/shield/riot, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"FV" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_upgrade/frames, +/obj/item/rcd_upgrade/furnishing, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"FX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced{ + pixel_y = -6 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 12 + }, +/obj/item/blood_filter, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"FZ" = ( +/obj/machinery/door/airlock/public, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"Gc" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Gd" = ( +/obj/effect/mob_spawn/human/doctor, +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Ge" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Gf" = ( +/obj/machinery/door/airlock/engineering, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Gh" = ( +/obj/structure/closet/secure_closet, +/obj/effect/spawner/random/medical/surgery_tool_advanced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Gj" = ( +/obj/machinery/door/airlock/public, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Gk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Gl" = ( +/obj/structure/rack, +/obj/item/clothing/under/scalamovguard, +/obj/item/clothing/under/scalamovguard, +/obj/item/clothing/under/scalamovguard, +/obj/item/clothing/under/scalamovguard, +/obj/item/clothing/under/scalamovguard, +/obj/item/clothing/under/scalamovguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Gm" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Gn" = ( +/turf/open/floor/carpet/royalblue, +/area/awaymission/prison/cella) +"Gp" = ( +/obj/structure/table, +/obj/item/storage/bag/tray/cafeteria, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Gq" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Gs" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Gu" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/broken{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Gv" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/effect/mob_spawn/human/engineer, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Gw" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Gy" = ( +/obj/machinery/door/airlock/security{ + name = "Contraband"; + req_access_txt = "63" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage2, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Gz" = ( +/obj/structure/closet/secure_closet, +/obj/item/storage/backpack/duffelbag/syndie/med/medicalbundle, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"GA" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"GB" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"GC" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"GE" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"GH" = ( +/obj/item/storage/box/beakers/bluespace, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"GL" = ( +/turf/closed/wall/bathhouse{ + name = "padded wall" + }, +/area/awaymission/prison/solitary) +"GM" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/death) +"GO" = ( +/obj/effect/mob_spawn/human/corpse/damaged, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"GP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"GQ" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"GR" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"GS" = ( +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"GV" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"GX" = ( +/obj/structure/closet/firecloset{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"GY" = ( +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"GZ" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage2, +/turf/open/floor/plating, +/area/awaymission/prison/guard) +"Hc" = ( +/obj/structure/fireaxecabinet/directional/west, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"He" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/closet/firecloset{ + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Hf" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Hh" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/carpet/stellar, +/area/awaymission/prison/cella) +"Hj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Hk" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Hm" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Hn" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Hs" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/storage/pill_bottle/psicodine, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"Hw" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"Hx" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"HA" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"HC" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"HE" = ( +/obj/item/storage/box/beakers/variety, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"HF" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/cake/vanilla_cake, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"HH" = ( +/obj/machinery/light/broken{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"HI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"HK" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"HL" = ( +/obj/structure/chair/greyscale, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"HN" = ( +/obj/effect/decal/cleanable/blood/tracks, +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"HO" = ( +/turf/closed/wall, +/area/space) +"HV" = ( +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"HX" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"HY" = ( +/obj/machinery/door/airlock/security{ + name = "bunks" + }, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"HZ" = ( +/obj/structure/table, +/obj/item/food/sausage, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Ia" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Ib" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"Ic" = ( +/obj/machinery/door/airlock/medical/glass, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Id" = ( +/obj/structure/table/reinforced, +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Ie" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/netherworld/blankbody, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Ih" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Ii" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Ij" = ( +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Ik" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison) +"Il" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Im" = ( +/turf/open/floor/carpet/red, +/area/awaymission/prison/cella) +"In" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/awaymission/prison/rec) +"Iq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry"; + req_access_txt = "5; 33" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Is" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"It" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/item/ammo_casing/caseless, +/obj/item/ammo_casing/caseless{ + dir = 5; + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/ammo_casing/caseless{ + dir = 9; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Iu" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"Iw" = ( +/turf/closed/wall/mineral/titanium, +/area/awaymission/prison) +"Ix" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"Iy" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/innards, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"IA" = ( +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"IB" = ( +/obj/machinery/vending/wallmed/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"ID" = ( +/obj/structure/chair/office{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/chair/office{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"IE" = ( +/obj/item/trash/can, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"IF" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"IG" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"IH" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"II" = ( +/obj/structure/rack, +/obj/item/implanter/krav_maga, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"IN" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"IO" = ( +/obj/structure/chair{ + dir = 1 + }, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"IP" = ( +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"IQ" = ( +/obj/structure/table/reinforced, +/obj/item/documents/syndicate, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"IR" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"IS" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"IU" = ( +/turf/open/floor/carpet/purple, +/area/awaymission/prison/cella) +"IV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"IY" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"IZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/awaymission/prison) +"Ja" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Jb" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Jc" = ( +/obj/effect/turf_decal/arrows, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Jg" = ( +/obj/structure/rack, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Jh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ji" = ( +/obj/machinery/gateway/away{ + calibrated = 0 + }, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/warden) +"Jk" = ( +/obj/item/ammo_casing/shotgun/incendiary, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Jl" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Jm" = ( +/mob/living/simple_animal/hostile/syndicate/ranged/smg, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Jn" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison) +"Jo" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Jp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing/shotgun, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Jt" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Ju" = ( +/obj/effect/mob_spawn/human/scientist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Jx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Jz" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"JA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"JD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"JF" = ( +/obj/machinery/door/airlock/security, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"JH" = ( +/obj/structure/chair/sofa/bench{ + dir = 4; + pixel_x = 5 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"JI" = ( +/obj/structure/water_source{ + pixel_x = -15; + pixel_y = 20 + }, +/obj/structure/closet/crate/bin{ + pixel_y = 15 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"JL" = ( +/obj/machinery/button/door/prison/stage5{ + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"JM" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"JO" = ( +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/plating, +/area/awaymission/prison) +"JP" = ( +/obj/structure/table/reinforced, +/obj/item/autosurgeon/organ/syndicate/reviver, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"JS" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"JT" = ( +/obj/structure/table, +/obj/item/healthanalyzer/advanced, +/obj/item/healthanalyzer/advanced{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"JV" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"JW" = ( +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/structure/closet/crate/secure/freezer, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"JX" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/table/reinforced, +/obj/item/organ/cyberimp/arm/surgery, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"JY" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/pie/applepie, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"Ka" = ( +/obj/structure/table, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Kd" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"Ke" = ( +/obj/structure/table, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"Kf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Kg" = ( +/obj/structure/rack, +/obj/item/katana, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Ki" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Kk" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Km" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/awaymission/prison) +"Kp" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Ks" = ( +/obj/machinery/computer{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/awaymission/prison/warden) +"Kt" = ( +/obj/effect/spawner/structure/window/hollow/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage5, +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"Ku" = ( +/obj/structure/rack, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Kz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"KB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"KC" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"KD" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"KF" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scalamovinmateally, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"KH" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"KI" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"KK" = ( +/obj/structure/closet/crate/secure/engineering, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"KL" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"KM" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall/r_wall, +/area/awaymission/prison) +"KO" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"KQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 4; + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"KR" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"KS" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/obj/structure/fence{ + pixel_x = 15 + }, +/turf/open/floor/plasteel/dark{ + dir = 5 + }, +/area/awaymission/prison/rec) +"KU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"KV" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"KW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"KX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/blue, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/pen/edagger{ + name = "suspicious pen" + }, +/obj/item/pen/fountain/captain{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/stamp/cmo{ + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"KY" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Lc" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Lh" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Li" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Lj" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"Lk" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Lm" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Ln" = ( +/obj/machinery/plate_press{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"Lp" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"Lq" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Lr" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/warden) +"Lt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Lu" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"Lv" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"Ly" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Lz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"LD" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"LE" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"LF" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"LG" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"LI" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"LJ" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"LM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"LN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/syndie/med/medicalbundle, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"LP" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"LQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"LT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"LU" = ( +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"LX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"LZ" = ( +/obj/structure/table, +/obj/item/storage/box/syringes/variety, +/obj/item/storage/box/syringes{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ma" = ( +/obj/structure/table, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/food/meatbun, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Mb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Mc" = ( +/obj/structure/rack, +/obj/item/healthanalyzer/advanced, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Mg" = ( +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Mi" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"Mj" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/footprints, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Ml" = ( +/obj/structure/table/wood, +/obj/item/paper/fluff/awaymissions/prison/mysterious, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"Mq" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Ms" = ( +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Mu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Mw" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Mx" = ( +/obj/structure/chair/office{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/chair/office{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/button/door/prison/stage4{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"My" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"MA" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"MD" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"ME" = ( +/obj/structure/chair/greyscale{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"MH" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"MI" = ( +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"MJ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"MK" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots/syndie, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"ML" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"MM" = ( +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"MN" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"MQ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"MS" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"MT" = ( +/obj/effect/mob_spawn/human/doctor, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"MV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/prison/doc, +/obj/effect/spawner/lootdrop/prison/doc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"MX" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/item/gun/ballistic/automatic/wt550, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"MY" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Na" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Nc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Nd" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Nf" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison/solitary) +"Ng" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Nh" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock/medical{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Nj" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Nk" = ( +/obj/machinery/computer{ + dir = 4 + }, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"Nl" = ( +/turf/open/floor/plasteel/freezer, +/area/space) +"Nn" = ( +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Nq" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Nt" = ( +/obj/item/paper/fluff/awaymissions/prison/love, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"Nv" = ( +/obj/structure/table/optable, +/obj/effect/spawner/random/medical/organs, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Nw" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/pen, +/obj/item/paper/fluff/awaymissions/prison/guardnote{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Ny" = ( +/obj/machinery/door/airlock/cult/friendly, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"NA" = ( +/obj/effect/decal/cleanable/blood, +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"NB" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"NF" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"NH" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"NI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"NJ" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/obj/structure/chair/greyscale{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"NK" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"NL" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage3, +/turf/open/floor/plating, +/area/awaymission/prison/solitary) +"NN" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop, +/obj/item/laser_pointer/upgraded, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"NT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"NV" = ( +/obj/effect/mob_spawn/human/corpse/syndicatesoldier, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"NW" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"NY" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Oa" = ( +/obj/structure/table, +/obj/item/paper/fluff/awaymissions/prison/welcome, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Oc" = ( +/turf/open/indestructible/white, +/area/awaymission/prison) +"Oe" = ( +/obj/machinery/door/airlock/security, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage3, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"Og" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Oh" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Oi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/medipen_refiller, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ol" = ( +/obj/structure/toilet, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Om" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"On" = ( +/obj/machinery/computer, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Op" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plating, +/area/awaymission/prison) +"Or" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Os" = ( +/obj/structure/table, +/obj/item/storage/box/beakers/variety, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"Ot" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "armouryaccessaway"; + name = "armory access"; + pixel_y = 25 + }, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Ov" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/exotic/syndie, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Ow" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Ox" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/wall, +/area/awaymission/prison/med) +"Oy" = ( +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Oz" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -6 + }, +/obj/item/paper_bin, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"OA" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"OC" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"OD" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"OE" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"OG" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"OH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"OI" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"OJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/laser_pointer/upgraded, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"OL" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"OM" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"ON" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"OP" = ( +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"OQ" = ( +/obj/machinery/shower{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"OR" = ( +/obj/effect/mob_spawn/human/corpse/syndicatecommando, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"OV" = ( +/turf/open/floor/noslip, +/area/awaymission/prison/cella) +"OW" = ( +/obj/machinery/door/airlock/security, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"OX" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"OY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/item/paper/fluff/awaymissions/prison/orders, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Pc" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Pe" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Pg" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Ph" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/awaymission/prison) +"Pi" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "63" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage5, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Pj" = ( +/obj/structure/bed/maint, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Pk" = ( +/obj/item/shield/riot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"Pn" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"Pr" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/guard) +"Ps" = ( +/obj/structure/barricade/sandbags, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Pt" = ( +/obj/machinery/door/airlock/engineering, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Pv" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"Py" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/vending/cola/red, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Pz" = ( +/obj/structure/table, +/obj/item/food/carneburrito, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"PA" = ( +/mob/living/simple_animal/hostile/prison/zombieriot, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"PC" = ( +/obj/structure/closet/secure_closet/ert_sec, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"PE" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/item/healthanalyzer/advanced, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"PG" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"PH" = ( +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"PI" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"PK" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/bluespace, +/obj/item/slimecross/industrial/grey, +/obj/item/slimecross/industrial/metal{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"PL" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse"; + req_access_txt = "63" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"PM" = ( +/obj/structure/table, +/obj/item/food/cornedbeef, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"PN" = ( +/obj/structure/rack, +/obj/item/ammo_box/c9mm, +/obj/item/ammo_box/c9mm, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"PP" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"PS" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"PT" = ( +/obj/machinery/door/airlock/security, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"PU" = ( +/obj/structure/table/wood, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"PV" = ( +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/cellb) +"PW" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"PZ" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"Qa" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Qc" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Qe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Qj" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Qm" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 3 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"Qn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Qp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/clothing/suit/armor/riot, +/obj/structure/rack, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/clothing/suit/armor/vest, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Qq" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Qu" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Qx" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"QA" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"QC" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"QE" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"QG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/ammo_box/magazine/m45, +/obj/item/ammo_box/magazine/m45, +/obj/item/ammo_box/c45, +/obj/item/ammo_box/c45, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"QH" = ( +/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"QI" = ( +/obj/structure/table/reinforced, +/obj/item/nuke_core_container, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"QK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray/cafeteria, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"QM" = ( +/obj/item/bodybag, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"QP" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"QQ" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"QT" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"QW" = ( +/obj/structure/closet/syndicate, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"QZ" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Ra" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/carpet/royalblue, +/area/awaymission/prison/cella) +"Rd" = ( +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Re" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Rf" = ( +/obj/structure/destructible/cult/tome, +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"Rh" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Rj" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Ro" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Rp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Rq" = ( +/obj/structure/table/reinforced, +/obj/item/food/bread/plain, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Rs" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Ru" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Cockpit"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"RC" = ( +/obj/structure/closet/secure_closet/tac, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"RD" = ( +/obj/structure/table/reinforced, +/obj/item/malf_upgrade, +/obj/item/disk/tech_disk/spaceloot{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"RG" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"RI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/rack, +/obj/item/clothing/under/scalamovdoc, +/obj/item/clothing/under/scalamovdoc, +/obj/item/clothing/under/scalamovdoc, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"RK" = ( +/obj/structure/table/reinforced, +/obj/item/language_manual, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"RL" = ( +/obj/structure/table, +/obj/item/food/muffin, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"RM" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"RP" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"RS" = ( +/mob/living/simple_animal/hostile/prison/riotcop, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"RT" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"RU" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/awaymission/prison) +"RW" = ( +/obj/structure/table/reinforced, +/obj/item/language_manual, +/obj/item/language_manual, +/obj/item/language_manual, +/obj/item/language_manual, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"RX" = ( +/obj/item/bodybag, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"RY" = ( +/turf/open/floor/carpet/blue, +/area/awaymission/prison/med) +"Sa" = ( +/obj/structure/toilet{ + pixel_y = 12 + }, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"Sc" = ( +/turf/open/floor/plasteel, +/area/space) +"Sd" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/awaymission/prison) +"Se" = ( +/obj/structure/table, +/obj/item/food/sandwich, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Sg" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Sh" = ( +/obj/structure/chair, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"Si" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Sj" = ( +/mob/living/simple_animal/hostile/prison/zombieert, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Sk" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Sl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"Sm" = ( +/obj/machinery/porta_turret/syndicate/energy{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"So" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage3, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Sp" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Sq" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Sr" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/cella) +"Ss" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"St" = ( +/obj/machinery/door/airlock/security, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Su" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Sw" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Sy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Sz" = ( +/obj/machinery/door/window, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scalamovguard, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"SA" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/solitary) +"SD" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/engineering/material_rare, +/obj/effect/spawner/random/engineering/material_rare, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"SE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"SF" = ( +/obj/machinery/computer/camera_advanced, +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"SG" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"SH" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"SI" = ( +/obj/machinery/vending/cola/red, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"SK" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"SM" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"SN" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"SR" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"SS" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"SU" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"SV" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/plating, +/area/awaymission/prison) +"SW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"SX" = ( +/obj/machinery/vending/wallmed/directional/north, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"SZ" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Ta" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Tb" = ( +/obj/machinery/door/airlock/hatch, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/secret) +"Tc" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Td" = ( +/obj/structure/bed, +/obj/effect/spawner/lootdrop/prison/guard, +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"Te" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Tf" = ( +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Th" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Ti" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/under/syndicate/bloodred, +/obj/item/clothing/under/syndicate/bloodred, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Tj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/gun/ballistic/automatic/pistol/m1911{ + pixel_y = 5 + }, +/obj/item/melee/classic_baton{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/melee/classic_baton{ + pixel_x = 6 + }, +/obj/item/gun/ballistic/automatic/pistol/m1911, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Tk" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/pie/cherrypie, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"Tl" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/damaged, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Tq" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"Tr" = ( +/obj/item/megaphone/command, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Ts" = ( +/obj/structure/chair/greyscale{ + dir = 1; + pixel_y = 15 + }, +/obj/structure/chair/greyscale{ + pixel_y = -6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Tt" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Tu" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"Tw" = ( +/obj/effect/spawner/structure/window/hollow/reinforced, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage3, +/turf/open/floor/plating, +/area/awaymission/prison/guard) +"Ty" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Tz" = ( +/obj/machinery/medipen_refiller, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"TC" = ( +/obj/effect/mob_spawn/human/doctor, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"TE" = ( +/obj/machinery/door/window, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scalamovdoc, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"TF" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"TH" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/carpet/cyan, +/area/awaymission/prison/cella) +"TI" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/obj/item/stack/sheet/animalhide/human, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"TK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"TL" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"TN" = ( +/obj/effect/spawner/lootdrop/prison/prisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"TO" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/space) +"TQ" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"TT" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"TW" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plating, +/area/awaymission/prison) +"TX" = ( +/obj/machinery/door/airlock/security{ + name = "solitary cell" + }, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"TY" = ( +/turf/open/floor/carpet/green, +/area/awaymission/prison/cella) +"Ud" = ( +/turf/open/floor/plasteel/cult, +/area/awaymission/prison/secret) +"Uh" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Ui" = ( +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor{ + id = "armouryaccessaway"; + name = "Armoury Access" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Uj" = ( +/obj/machinery/door/airlock/public, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage4, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison) +"Ul" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/random, +/obj/item/gun/syringe/syndicate, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Uo" = ( +/obj/structure/toilet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Up" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"Uq" = ( +/obj/structure/curtain, +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Us" = ( +/obj/machinery/hypnochair, +/turf/open/floor/plasteel, +/area/space) +"Ut" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/indestructible/reinforced, +/area/awaymission/prison/med) +"Uv" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Uw" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/up, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Ux" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"Uz" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"UD" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"UH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"UM" = ( +/obj/structure/chair/greyscale, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"UN" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"UO" = ( +/obj/item/gun/ballistic/revolver, +/obj/item/ammo_box/c38, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"UQ" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"UR" = ( +/obj/effect/turf_decal/tile/blue, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"US" = ( +/obj/structure/barricade/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"UT" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/turf/closed/wall, +/area/awaymission/prison/med) +"UU" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"UW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/closet/crate/trashcart/laundry, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"UX" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison) +"UY" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"Va" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/rec) +"Vc" = ( +/obj/item/hatchet, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"Ve" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/head/helmet/swat, +/obj/item/clothing/head/helmet/swat/nanotrasen, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet/police, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Vh" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/plating, +/area/awaymission/prison) +"Vi" = ( +/obj/machinery/door/window, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"Vj" = ( +/obj/machinery/door/airlock/security{ + name = "Guardhouse" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Vk" = ( +/mob/living/simple_animal/hostile/prison/zombieriot{ + desc = "Grung was known for brutality to make even the most sadistic, corrupt cop flinch. Even in undeath, his brute force knows no bounds."; + health = 300; + name = "Grung" + }, +/obj/structure/chair/office{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/chair/office{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Vl" = ( +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Vn" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Vo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/awaymission/prison) +"Vq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Vr" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Vs" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Vt" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Vv" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Vx" = ( +/obj/structure/table/optable, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"VA" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"VD" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/secure_data/laptop{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"VE" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/ammo_box/magazine/m45, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"VH" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/obj/item/stack/sheet/animalhide/lizard, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"VJ" = ( +/obj/item/melee/baseball_bat, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"VK" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"VL" = ( +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/awaymission/prison/cella) +"VM" = ( +/obj/effect/decal/cleanable/blood/innards, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"VN" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"VO" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"VP" = ( +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"VQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"VR" = ( +/mob/living/simple_animal/hostile/prison/coppistol, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"VS" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"VW" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/mob/living/simple_animal/hostile/prison/zombiedoc, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"VX" = ( +/obj/effect/decal/cleanable/blood/gibs/limb{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"VY" = ( +/obj/structure/curtain, +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Wa" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Wb" = ( +/obj/structure/falsewall/reinforced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"Wc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Wd" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"We" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Wf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/box/rubbershot{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/storage/box/lethalshot{ + pixel_x = 6 + }, +/obj/item/ammo_box/magazine/wt550m9{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/ammo_box/magazine/wt550m9{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Wg" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/solitary) +"Wh" = ( +/obj/structure/bookcase/random, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Wi" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4 + }, +/obj/item/ammo_casing/caseless, +/obj/item/ammo_casing/caseless{ + dir = 9; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Wk" = ( +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Wl" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Wm" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/awaymissions/prison/kitchennote, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Wo" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Wp" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"Wu" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Wv" = ( +/obj/item/reverse_bear_trap, +/turf/open/floor/plasteel, +/area/awaymission/prison/death) +"Ww" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Wy" = ( +/obj/structure/chair{ + dir = 4 + }, +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"WA" = ( +/obj/structure/showcase/machinery/cloning_pod{ + desc = "A strange pod for experiments of an unknown kind."; + name = "strange pod" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"WB" = ( +/obj/structure/table, +/obj/item/gun/ballistic/shotgun/lethal, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"WD" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"WE" = ( +/obj/structure/showcase/horrific_experiment, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"WF" = ( +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"WK" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"WM" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/gun/ballistic/automatic/wt550, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"WO" = ( +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"WQ" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"WR" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/secret) +"WS" = ( +/turf/closed/wall/r_wall, +/area/awaymission/prison/secret) +"WT" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"WU" = ( +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"WV" = ( +/obj/machinery/vending/hydroseeds, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"WY" = ( +/obj/structure/curtain, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"Xa" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"Xb" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Xc" = ( +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Xd" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/guard) +"Xe" = ( +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/cella) +"Xf" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Xj" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage6, +/turf/open/indestructible/white, +/area/awaymission/prison) +"Xl" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"Xo" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"Xp" = ( +/turf/open/floor/carpet/royalblack, +/area/awaymission/prison/guard) +"Xq" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"Xr" = ( +/obj/effect/spawner/lootdrop/prison/guard, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Xt" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Xv" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe/contraband/morphine, +/obj/item/reagent_containers/syringe/contraband/morphine, +/obj/item/reagent_containers/syringe/contraband/methamphetamine, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Xw" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Xx" = ( +/mob/living/simple_animal/hostile/prison/zombieguard, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"Xy" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"XA" = ( +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"XB" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"XC" = ( +/obj/machinery/gravity_generator/main, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"XD" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/awaymission/prison/med) +"XE" = ( +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"XH" = ( +/obj/effect/spawner/structure/window/hollow/plasma/reinforced, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/awaymission/prison/cella) +"XJ" = ( +/turf/closed/wall, +/area/awaymission/prison/hall) +"XL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"XM" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"XN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"XO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"XP" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/shield/riot/flash, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/gloves/combat, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"XQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"XR" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"XX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/indestructible/boss/air, +/area/awaymission/prison/warden) +"Ya" = ( +/obj/machinery/door/airlock, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/rec) +"Yd" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/guard) +"Ye" = ( +/obj/structure/bed/maint, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"Yf" = ( +/turf/open/floor/plasteel/shuttle, +/area/awaymission/prison) +"Yg" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/noslip, +/area/awaymission/prison/cellb) +"Yh" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"Yk" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/item/shard, +/obj/item/shard, +/obj/item/shard, +/obj/item/stack/sheet/cloth/five, +/obj/item/kitchen/knife/combat, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"Yn" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"Yq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Yu" = ( +/mob/living/simple_animal/hostile/prison/copsmg, +/turf/open/floor/carpet, +/area/awaymission/prison/solitary) +"Yv" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"YA" = ( +/obj/machinery/smartfridge, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"YB" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/food/chocolatebar, +/turf/open/floor/wood, +/area/awaymission/prison/cella) +"YC" = ( +/obj/machinery/vending/games, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"YD" = ( +/mob/living/simple_animal/hostile/prison/zombieprisoner, +/turf/open/floor/plating, +/area/awaymission/prison/death) +"YE" = ( +/obj/item/clothing/suit/space/fragile, +/turf/open/space/basic, +/area/space) +"YF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/guard) +"YH" = ( +/obj/effect/decal/cleanable/blood, +/turf/closed/indestructible/reinforced, +/area/awaymission/prison) +"YI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"YK" = ( +/obj/structure/table/reinforced, +/obj/item/melee/powerfist, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"YL" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/awaymission/prison/cella) +"YM" = ( +/obj/structure/fence, +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cella) +"YN" = ( +/obj/item/pickaxe/drill, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"YO" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"YP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"YQ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"YS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/hall) +"YX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/bodybag, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/guard) +"YZ" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/effect/mob_spawn/human/scalamovguard, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"Zb" = ( +/obj/structure/table/reinforced, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"Ze" = ( +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Zf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/plasteel, +/area/awaymission/prison/start) +"Zh" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/indestructible/boss, +/area/awaymission/prison/warden) +"Zi" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry"; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Zj" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"Zk" = ( +/obj/structure/water_source{ + dir = 8; + name = "sink"; + pixel_x = 12; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel/freezer, +/area/awaymission/prison/med) +"Zl" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/death) +"Zn" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/awaymission/prison/solitary) +"Zr" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plating, +/area/awaymission/prison) +"Zs" = ( +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/cellb) +"Zt" = ( +/obj/item/clothing/suit/apron, +/turf/open/floor/plasteel, +/area/awaymission/prison/cafe) +"Zw" = ( +/obj/machinery/door/airlock/security, +/turf/open/floor/plasteel, +/area/awaymission/prison/hall) +"Zx" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/awaymission/prison/cafe) +"ZA" = ( +/mob/living/simple_animal/hostile/prison/zombiedoc, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel, +/area/awaymission/prison/cellb) +"ZC" = ( +/obj/structure/closet/secure_closet, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"ZD" = ( +/obj/machinery/vending/games, +/turf/open/floor/carpet, +/area/awaymission/prison/guard) +"ZI" = ( +/obj/structure/bed, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ZJ" = ( +/obj/structure/closet/secure_closet, +/obj/effect/spawner/random/medical/surgery_tool_alien, +/turf/open/floor/plasteel/dark, +/area/awaymission/prison/med) +"ZL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/med) +"ZM" = ( +/mob/living/simple_animal/hostile/netherworld/blankbody, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"ZN" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/carpet, +/area/awaymission/prison/med) +"ZO" = ( +/obj/machinery/door/airlock/hatch, +/obj/machinery/door/poddoor/shutters/indestructible/prison/stage7, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) +"ZP" = ( +/obj/structure/table/reinforced, +/obj/item/melee/energy/sword, +/obj/item/paper_bin{ + pixel_x = -12; + pixel_y = 8 + }, +/obj/item/paper/fluff/awaymissions/prison/truth{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk/spaceloot, +/turf/open/floor/plasteel/showroomfloor, +/area/awaymission/prison/secret) +"ZQ" = ( +/obj/structure/chair/sofa/bench{ + dir = 8; + pixel_x = -5 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/vest/blueshirt, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest/durathread, +/turf/open/floor/plasteel/checker, +/area/awaymission/prison/cafe) +"ZR" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/plasteel, +/area/awaymission/prison/rec) +"ZT" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel, +/area/awaymission/prison) +"ZZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/bookmanagement, +/turf/open/floor/plasteel, +/area/awaymission/prison/med) + +(1,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(2,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(3,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(4,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(5,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(6,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(7,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(8,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(9,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(10,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(11,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(12,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(13,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(14,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(15,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(16,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(17,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(18,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(19,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +oh +Nl +lH +Nl +bR +bR +bR +oh +Nl +lH +Nl +bR +bR +dC +lH +Nl +bR +bR +bR +dC +Nl +lH +bR +bR +dC +Nl +lH +bR +lH +Nl +ro +bR +lH +Nl +ro +bR +lH +Nl +ro +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(20,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +dC +gx +vt +kz +bR +bR +bR +dC +Nl +vt +Nl +bR +bR +oh +vt +Nl +bR +bR +bR +oh +vt +Nl +bR +bR +oh +Nl +vt +bR +vt +Nl +nF +bR +vt +Nl +nF +bR +vt +Nl +nF +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(21,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +jw +bR +bR +bR +bR +bR +bR +dX +bR +bR +bR +bR +dX +bR +bR +bR +bR +bR +dX +bR +bR +bR +dX +bR +bR +bR +dX +bR +bR +bR +dX +bR +bR +bR +dX +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(22,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +Fl +aK +sF +gz +iM +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +Eg +dx +vA +vA +vA +vA +jz +Sr +dx +vA +vA +vA +vA +jz +Sr +dx +vA +vA +jz +Sr +dx +vA +vA +vA +jz +Sr +aT +Gn +ib +Sr +An +pS +ib +Sr +Fj +kS +ib +Sr +TH +wJ +ib +Sr +sL +Dj +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(23,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +ub +Xo +ki +gz +iM +GL +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +ix +OP +cg +gT +Lj +gz +gz +GL +Eg +ib +gV +Im +Im +Im +vA +Sr +ib +pA +IU +IU +IU +vA +Sr +ib +dz +TY +vA +Sr +ib +AR +pI +Xe +lw +Sr +Ra +Gn +cd +Sr +Hh +pS +cd +Sr +eT +kS +cd +Sr +ya +wJ +cd +Sr +vp +Dj +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(24,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +NN +tF +Ke +Iu +iM +GL +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +OP +OP +cg +Yu +dO +gz +gz +GL +Eg +Lp +Im +Im +Im +Im +vA +Sr +Lp +IU +IU +IU +IU +vA +Sr +Lp +TY +TY +vA +Sr +Lp +Xe +Xe +Xe +vA +Sr +Gn +Gn +vA +Sr +pS +pS +vA +Sr +kS +kS +vA +Sr +wJ +wJ +vA +Sr +Dj +vp +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(25,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +tO +Zn +Zn +Zn +gz +iM +GL +uv +OP +OP +cg +uv +OP +OP +cg +uv +OP +OP +cg +uv +OP +OP +cg +uv +OP +OP +cg +uv +OP +OP +cg +uv +OP +OP +cg +uv +Lj +gz +gz +GL +Eg +vA +vA +vA +vA +yn +oa +Sr +vA +vA +vA +vA +JY +oa +Sr +vA +vA +oO +oa +Sr +vA +vA +vA +YB +oa +Sr +oa +HF +vA +Sr +Hw +vA +vA +Sr +vA +Tk +oa +Sr +vA +nd +oa +Sr +Dj +Dj +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(26,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +aK +aK +aK +gz +iM +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +GL +fE +GL +GL +Eg +Sr +wl +wl +tM +wl +Sr +Sr +wl +wl +qG +wl +wl +Sr +Sr +qG +wl +wl +Sr +Sr +tM +XH +XH +Sr +Sr +Sr +Sr +wl +qG +Sr +Sr +qG +wl +Sr +qG +wl +Sr +Sr +qG +wl +Sr +Sr +Sr +Sr +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(27,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Wg +gz +gz +gz +Wg +iM +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +Eg +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +ur +SR +SR +SR +MH +SR +Cm +SR +SR +SR +SR +ur +SR +SR +SR +SR +SR +SR +SR +SR +oU +XQ +SR +SR +SR +SR +SR +SR +SR +vs +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(28,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +NL +iM +Oe +NL +NL +iM +cv +cv +cv +cv +Nf +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +ly +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +gz +Eg +SR +TT +TT +xx +TT +TT +TT +AI +TT +Xr +Gw +TT +TT +xx +TT +TT +TT +TT +Bm +TT +TT +yf +Gw +xx +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(29,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +fN +cv +ly +cv +cv +cv +cv +cv +SA +cv +cv +ly +cv +Nf +cv +cv +cv +cv +cv +cv +Nf +cv +cv +cv +cv +cv +cv +cv +SA +Nf +cv +cv +cv +cv +gz +Eg +SR +TT +TT +AI +TT +TT +TT +xx +TT +TT +Gw +TT +TT +TT +TT +TT +AI +TT +xx +TT +Bm +oo +TT +TT +TT +TT +TT +ik +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +xQ +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(30,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +fN +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +Eg +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +EG +SR +SR +wZ +MH +SR +SR +MH +SR +SR +ur +SR +SR +qZ +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(31,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +gz +gz +gz +sT +gz +gz +sT +PZ +gz +gz +gz +gz +gz +sT +gz +gz +gz +gz +gz +gz +gz +PZ +gz +sT +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +Eg +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(32,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +ER +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +Nf +cv +cv +SA +cv +cv +cv +cv +cv +cv +cv +SA +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +Nf +gz +Eg +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(33,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +cv +cv +SA +cv +ly +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 +cv +cv +cv +gz +Eg +Sr +ml +SR +Sr +SR +SR +Sr +SR +Xq +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +XQ +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(34,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +ER +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +gz +PZ +gz +gz +gz +gz +gz +gz +gz +gz +Eg +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +EG +Sr +Ol +ml +Sr +Ol +XQ +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +EG +Sr +Ol +SR +Sr +Sr +SR +TT +TT +xQ +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(35,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +xn +zO +TW +dI +bM +Ph +bM +dI +bM +Sd +bM +dI +bM +fe +bM +dI +bM +Op +bM +dI +bM +RU +bM +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +TX +GL +GL +GL +GL +fE +GL +GL +Eg +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(36,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +wH +TW +Zr +dI +bM +SV +bM +dI +bM +Ch +bM +dI +bM +mG +bM +dI +bM +JO +bM +dI +bM +nR +bM +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +GL +As +OP +OP +cg +As +OP +OP +cg +As +OP +OP +cg +As +OP +OP +cg +As +OP +OP +cg +As +OP +OP +cg +As +OP +OP +cg +As +Lj +gz +gz +GL +Eg +Sr +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +Sr +Sr +SR +xQ +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(37,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +TW +op +uz +dI +bM +bM +bM +dI +bM +bM +bM +dI +bM +bM +bM +dI +bM +bM +bM +dI +bM +bM +bM +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +GL +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +OP +ix +OP +cg +Da +dO +gz +gz +GL +Eg +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +ur +SR +SR +XQ +EG +SR +SR +SR +Hn +Xy +ur +SR +SR +XQ +SR +SR +SR +SR +SR +SR +SR +ur +SR +SR +SR +SR +SR +SR +SR +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(38,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +IZ +Km +Km +dI +CZ +Vo +xw +dI +CZ +Vo +Vo +dI +CZ +Vo +Vo +dI +CZ +Vo +Vo +dI +CZ +Vo +Vo +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +GL +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +vu +OP +OP +cg +Td +Lj +gz +gz +GL +Eg +SR +xx +TT +TT +TT +TT +TT +xx +Bm +bY +xx +Bm +Xr +xQ +TT +TT +TT +TT +TT +TT +il +TT +Gw +xQ +TT +TT +TT +xx +Bm +TT +TT +Xr +TT +Gw +TT +TT +TT +TT +TT +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(39,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +zZ +zZ +zZ +zZ +sJ +SE +Xl +UX +UX +SE +Yv +UX +UX +SE +yZ +UX +UX +SE +oL +UX +UX +SE +tV +UX +UX +SE +Au +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +gz +cv +gz +cv +gz +iM +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +GL +Eg +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Bm +xx +Gw +TT +TT +TT +Ff +xx +Bm +TT +xx +Gw +Bm +TT +MI +Iy +Te +TT +xQ +TT +xx +ik +TT +xx +TT +TT +AI +TT +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(40,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +qU +gm +qU +gm +gm +gm +ei +ei +gm +aY +Db +zZ +zZ +zZ +zZ +sJ +SE +UX +UX +DA +SE +UU +UX +by +IV +by +UX +by +SE +UX +UX +UX +fw +UX +UX +UX +mU +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Eg +Eg +Oe +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +Eg +SR +SR +SR +EG +SR +SR +SR +EG +XQ +SR +SR +SR +SR +ur +SR +SR +SR +SR +SR +SR +SR +XQ +ur +SR +SR +SR +SR +SR +SR +SR +SR +SR +ur +SR +SR +SR +SR +SR +SR +SR +EG +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(41,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +qU +fJ +qU +gm +gm +gm +gm +gm +gm +aY +Db +zZ +zZ +zZ +zZ +sJ +in +LM +Qe +HI +VQ +jc +qv +jc +Bq +jc +jc +LX +VQ +qv +jc +zW +SE +JD +Qe +jc +Ro +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +Sr +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +wl +qG +wl +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(42,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +qU +gm +qU +gm +gm +gm +gm +gm +gm +Zf +Db +zZ +zZ +zZ +zZ +sJ +UX +by +by +UX +UX +UX +by +DA +UX +UX +UX +UX +UX +UX +UX +SE +SE +IV +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(43,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +gm +gm +YQ +Db +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +SE +IV +SE +by +GO +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +EG +TT +TT +TT +SR +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Uo +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Ol +SR +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(44,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +mL +gm +YQ +Db +zZ +zZ +sJ +sJ +sJ +UX +UX +UX +UX +DA +UX +by +UX +UX +UX +UX +UX +DA +uW +by +SE +SE +SE +UX +UX +by +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +Sr +SR +Vl +Sr +Xq +SR +Sr +SR +SR +Sr +EG +XQ +Sr +SR +SR +Sr +SR +SR +Sr +SR +EG +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +XQ +SR +Sr +SR +SR +Sr +Sr +SR +TT +TT +xx +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(45,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +eb +eb +eb +eb +eb +gm +gm +gm +Db +sJ +sJ +sJ +by +UX +UX +UX +UX +UX +by +UX +UX +by +UX +UX +UU +by +UX +UX +UX +SE +SE +SE +UX +UX +UX +UX +by +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +EG +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +SR +kF +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(46,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +eb +gm +gm +gm +eb +gm +gm +gm +Db +GV +GV +sJ +by +UX +UX +UX +UX +ld +UX +QT +UX +sR +by +by +UX +UX +UX +UX +UX +qf +qf +qf +UX +UX +UX +UX +UX +rQ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +xx +SR +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +SR +TT +TT +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(47,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +eb +gm +gm +XC +av +gm +gm +gm +MY +UX +UX +Hf +UX +UX +by +DA +UX +UX +UX +UX +UX +UX +by +UX +UX +UX +UX +UX +UX +Er +UX +UX +ld +UX +UX +UX +UX +rQ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +Xq +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +EG +SR +SR +SR +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(48,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +GA +gm +eb +gm +gm +gm +eb +gm +gm +gm +MY +UX +UX +Hf +UX +UX +UX +UX +UX +UX +DA +UX +XB +XB +XB +aR +aR +CP +CP +uD +UX +Er +UX +UX +DA +UX +by +ld +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +xx +TT +TT +SR +qG +TT +TT +xx +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +AI +Bm +Gw +TT +TT +xx +TT +TT +TT +AI +TT +Gw +TT +xx +Bm +TT +xx +TT +TT +TT +TT +TT +TT +Ow +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +AI +TT +xx +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(49,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +GA +gm +eb +eb +eb +eb +eb +gm +gm +mL +Db +be +be +sJ +UX +ld +UX +UX +UX +UX +UX +UX +Ik +Ik +Ik +Ik +KM +Ik +Ik +wX +UX +Er +UX +UX +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +Sr +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +Bm +TT +TT +Pc +TT +TT +Gw +TT +TT +TT +TT +TT +Pc +Bm +TT +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(50,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +GA +gm +gm +gm +gm +gm +gm +gm +gm +KO +Db +sJ +sJ +sJ +UX +UX +UX +UX +by +DA +UX +UX +gg +gg +gg +Hc +rb +rb +rb +rb +UX +Er +xy +UX +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +qG +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +xx +TT +TT +TT +xx +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +xx +TT +Gw +TT +TT +Bm +Bm +TT +TT +xx +TT +Gw +TT +AI +TT +TT +TT +TT +Ow +TT +TT +TT +Xr +TT +xx +TT +TT +AI +TT +TT +TT +TT +TT +xx +TT +TT +TT +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(51,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +gm +gm +KO +Db +zZ +zZ +sJ +sJ +sJ +gg +UX +xy +UX +UX +UX +DA +UX +UX +UX +UX +ab +ty +UX +by +Er +UX +UX +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +Sr +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +Xq +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +SR +EG +SR +SR +SR +SR +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(52,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +gm +gm +MD +Db +zZ +zZ +zZ +zZ +sJ +gg +UX +DA +UX +UX +UX +UX +UX +UX +DA +UX +UX +UX +UX +DA +Kf +UX +UX +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +xx +TT +TT +EG +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +SR +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +Sr +SR +TT +TT +SR +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(53,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +gm +gm +yT +Db +zZ +zZ +zZ +zZ +sJ +gg +UX +DA +UX +FE +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +Er +UX +UX +UX +UX +UX +mB +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +Sr +SR +TT +TT +cz +TT +EG +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(54,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +Db +Db +Db +dn +Db +Db +Db +Db +Db +zZ +zZ +zZ +zZ +sJ +gg +UX +UX +UX +DA +UX +UX +sR +by +UX +UX +DA +DA +UX +DA +Er +DA +ad +by +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +SR +TT +TT +TT +SR +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +EG +XQ +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +Sr +SR +TT +TT +SR +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(55,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +rb +UX +ty +UX +UX +UX +UX +DA +ld +UX +by +UX +UX +UX +UX +Er +UX +UX +by +sR +DA +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +bR +bR +bR +bR +bR +bR +bR +bR +bR +SR +TT +TT +TT +SR +nv +nv +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +nv +nv +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +EG +Sr +tN +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +SR +Sr +tN +EG +Sr +tN +Sr +SR +TT +xx +SR +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(56,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +wo +wo +wo +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +rb +UX +UX +UX +UX +UX +UX +sR +UX +UX +UX +UX +by +sR +Ja +Er +DA +UX +UX +sR +UX +DA +DA +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +vQ +vQ +vQ +vQ +vQ +vQ +bR +bR +bR +bR +SR +TT +TT +TT +SR +nv +nv +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +nv +nv +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +EG +SR +Sr +SR +EG +Sr +XQ +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +SR +Sr +SR +Sr +SR +TT +TT +SR +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(57,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +VR +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +YH +sJ +sJ +UX +Er +Er +Er +Er +Er +Er +UX +UX +by +UX +UX +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +Pr +Ww +Wa +xK +Pr +Ww +Wa +xK +Pr +Vs +Wa +xK +Pr +ZD +rl +TE +rl +YZ +vQ +bR +bR +bR +bR +SR +TT +TT +TT +SR +nv +nv +nv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +nv +nv +nv +SR +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +SR +Pj +Sr +XQ +Pj +Sr +Pj +Sr +SR +TT +TT +SR +TT +SR +nv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(58,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +pv +UX +UX +UX +UX +Kf +UX +by +UX +DA +UX +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Sk +Ww +Ww +wi +Xd +wi +va +II +wi +wi +vQ +uj +Ww +Ww +Tf +vQ +vQ +Pr +Ww +Ss +CW +Pr +Ww +Ss +CW +Pr +Ww +Ss +CW +Pr +mZ +rl +eq +rl +XO +vQ +bR +zZ +zZ +bR +bR +cU +sJ +sJ +cU +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +mu +Ik +Ik +mu +sJ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(59,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +VR +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +Er +UX +UX +by +UX +Er +UX +UX +UX +UX +UX +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +iy +Ww +Vs +Ww +Ww +Ww +Ww +Ww +Ww +Ww +vQ +ED +vU +Ww +Tf +vQ +vQ +Pr +Re +Nw +Ww +Pr +Re +uX +Ww +Pr +Re +uX +Ww +Pr +mZ +rl +TE +rl +KF +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +Ik +Ik +Em +sJ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(60,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +Er +nZ +by +UX +UX +Er +UX +UX +DA +UX +UX +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +jq +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +vQ +RP +Ww +vl +Tf +vQ +vQ +Pr +Ww +Wc +Ww +Pr +Ww +Wc +Ww +Pr +Ww +Wc +Ww +Pr +kX +rl +eq +rl +Cg +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +Ik +Ik +Em +sJ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(61,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +wo +wo +wo +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +DA +Er +nZ +UX +UX +UX +Er +UX +DA +UX +UX +UX +ld +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Sk +Ww +Ww +kl +jq +BJ +rO +rO +rO +Ww +vQ +RP +Ww +Vs +Tf +vQ +vQ +Pr +Pr +Pr +ls +Pr +Pr +Pr +ls +Pr +Pr +Pr +bK +Pr +wV +rl +Sz +rl +KF +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Em +Ik +Ik +Em +sJ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(62,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +Qn +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +Er +nZ +UX +UX +UX +Er +UX +UX +UX +UX +UX +UX +UX +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +vQ +vQ +vQ +vQ +vQ +vQ +GZ +rV +GZ +vQ +vQ +Gq +Ww +Ww +Tf +vQ +vQ +vQ +Bn +eC +Th +cb +cb +cb +Th +cb +Ki +Ki +Mq +Pr +uN +rl +bu +rl +Cg +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +wf +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +Az +Az +RM +PV +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(63,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +eE +Pt +rQ +sJ +sJ +eE +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +gD +Ww +gD +vQ +Ww +Ww +Ww +Ww +rO +Ww +vQ +cK +AX +vr +Ey +vQ +vQ +vQ +sf +eC +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +zC +Pr +wV +rl +Sz +rl +wM +vQ +bR +zZ +zZ +bR +bR +Em +ld +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +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 +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 +PV +PV +PV +PV +PV +PV +PV +PV +PV +RM +Az +Az +RM +PV +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(64,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +GC +yz +yG +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +Ww +vU +Ww +rO +Ww +Ww +vQ +rO +rO +rO +rO +vQ +vQ +vQ +NB +Vi +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Th +HY +rl +rl +hF +rl +Qm +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +PV +RM +Az +Az +RM +PV +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(65,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +DA +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +GC +nZ +iW +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +gD +Ww +rk +Vs +Ww +Ww +rO +Ww +Ww +Aq +Ww +gD +Ww +gD +vQ +vQ +vQ +mA +Vi +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +le +Pr +Am +Aw +rl +rl +rl +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +PV +vm +Az +Az +vm +PV +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(66,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +Qn +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +sJ +sJ +sJ +sJ +Gf +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +rL +Ww +Ww +Ww +Ww +Ww +Ww +vQ +gD +Ww +Ww +Ww +vQ +vQ +vQ +IB +eC +xP +Ww +Ww +Th +xz +xz +Th +Mu +nI +Pr +Pr +Pr +Pr +Pr +nX +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +RM +Az +RM +RM +Az +RM +Qx +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +Zs +Az +Az +RM +RM +Az +Zs +RM +Az +RM +RM +Az +Az +RM +RM +Az +RM +RM +Az +RM +zY +Az +RM +nm +nm +nm +RM +PV +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(67,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +Mb +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +DA +PI +by +UX +UX +UX +UX +KL +KL +KL +KL +KL +KL +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +gD +rL +Ww +Ww +Ww +rO +Ww +Ww +vQ +Ww +Ww +gD +Ww +vQ +vQ +vQ +JW +eC +mH +Ww +Ww +Qp +yb +Py +XE +fU +fU +Pr +ts +Ix +eS +eS +Ix +vQ +bR +zZ +zZ +bR +bR +Em +ld +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +Fz +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +Zs +Az +rB +RM +Az +rB +Fz +Az +rB +RM +Az +Az +rB +RM +Az +rB +Fz +Az +rB +RM +Az +Az +rB +RM +Az +rB +Fz +Az +rB +RM +Az +RM +nm +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(68,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +Wl +Wl +Wl +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +DA +UX +DA +UX +DA +by +UX +dh +Bh +ud +ud +ud +ud +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +gD +Ww +Ww +rk +Vs +Ww +rO +rO +rO +Ww +Aq +Ww +gD +Ww +Ww +vQ +vQ +vQ +Bk +eC +fu +Ww +Ww +Th +XE +XE +XE +XE +XE +Pr +ts +Ix +Ix +Ix +Ix +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +Az +RM +RM +Az +RM +Zs +Az +RM +RM +Az +RM +nm +lU +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(69,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +Wl +UU +DA +Mb +UX +UX +UX +Ja +UX +UX +UX +ld +DA +UX +sJ +UX +DA +UX +by +by +sW +by +Nq +pV +pV +Wu +pV +pV +YH +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +gD +vQ +vQ +vQ +Tw +So +Tw +vQ +vQ +iZ +Ww +Ww +Ww +vQ +vQ +vQ +QA +eC +Wf +Ww +Ww +GP +de +aI +Ts +no +Yd +Pr +ts +Ix +Ix +Ix +Ix +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +Az +hm +IG +hm +hm +IG +hm +hm +IG +hm +Az +hm +IG +hm +hm +IG +hm +hm +IG +hm +Az +RM +nm +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(70,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +Wl +UX +UX +UX +UU +Cw +UX +ld +UX +UX +DA +DA +UX +UX +XA +UX +by +ld +by +UX +UX +UX +KL +KL +KL +Gk +KL +KL +YH +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +iZ +Ww +vQ +Gl +Ww +rO +rO +rO +Ay +vQ +rk +vQ +vQ +rk +vQ +vQ +vQ +kU +eC +Tj +Ww +Ww +gX +de +AT +Ts +QP +Yd +Pr +ts +Ix +Ix +gq +gq +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Fz +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +vf +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Kd +RM +RM +RM +RM +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(71,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +Wl +pC +UX +UX +ty +UX +UX +Mb +vX +xy +UX +UX +UX +UX +sJ +UX +UX +DA +UX +UX +by +UX +UX +UX +UX +YN +UX +oB +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +dm +Ww +Ww +Ww +Ww +nB +vQ +rO +rO +rO +rO +vQ +vQ +vQ +FX +YX +QG +Ww +Ww +gX +Ea +XE +XE +XE +XE +Pr +nk +nk +Ix +nk +nk +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +ML +nm +nm +nm +nm +nm +ML +nm +nm +ML +nm +nm +PA +nm +nm +VJ +nm +nm +nm +nm +Li +nm +PA +nm +nm +nm +ML +US +nm +nm +nm +nm +nm +nm +nm +Li +nm +nm +US +lU +nm +nm +nm +ML +nm +nm +US +nm +nm +nm +nm +lU +nm +nm +nm +US +nm +Az +hm +kG +Az +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(72,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +YH +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +DA +UX +UX +DA +AW +ll +UX +UX +UX +ld +DA +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +iZ +Ww +gD +vQ +ED +Ww +Ww +Vs +Ww +VE +vQ +Ww +gD +Ww +rO +Ui +Mq +Ui +Mq +AU +Ww +Ww +Ww +gX +de +Pz +Ts +At +Yd +Pr +OQ +nX +Ix +nX +XN +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +nm +nm +nm +nm +nm +nm +nm +nm +Ij +hw +nm +ML +nm +nm +nm +nm +nm +ML +nm +nm +ML +nm +nm +nm +nm +nm +nm +US +PA +nm +ML +nm +nm +ML +nm +nm +lU +nm +US +nm +nm +Li +nm +nm +nm +nm +nm +US +Li +nm +nm +nm +nm +nm +nm +US +Az +Si +nm +nm +nm +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(73,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +by +UX +yM +DA +UX +UX +UX +af +UX +UX +UX +UX +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +RP +Ww +Ww +Ww +Ww +EP +vQ +iZ +Ww +gD +rO +Pr +Mq +Pr +yH +AU +Ww +Ww +Ww +iH +de +JA +Ts +PM +Yd +Pr +nk +nk +Ix +nk +nk +vQ +bR +zZ +zZ +bR +bR +JF +Ik +Ik +zs +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +nm +nm +ML +nm +nm +dQ +ML +nm +nm +hw +nm +nm +nm +nm +ZA +nm +nm +nm +hw +hw +nm +nm +nm +nm +lU +Li +nm +US +nm +Ij +nm +Tr +nm +nm +nm +nm +zL +nm +US +nm +nm +nm +nm +Ij +nm +nm +nm +nm +ML +nm +nm +nm +lU +ML +nm +nm +hm +qe +nm +nm +kk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(74,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +by +jQ +si +UX +jv +DA +UX +Rp +UX +UX +Cw +UX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +iZ +Ww +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +gD +gD +Ww +rO +Ui +Mq +Ui +Mq +AU +Ww +Ww +Ww +iH +mW +XE +XE +XE +XE +Pr +OQ +nX +Ix +nX +XN +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +gL +nm +Li +nm +nm +nm +nm +nm +nm +nm +hw +nm +nm +nm +Ij +nm +nm +nm +nm +hw +nm +nm +nm +nm +nm +ML +nm +nm +nm +nm +VJ +nm +Li +nm +nm +nm +nm +nm +nm +nm +nm +Oh +nm +nm +TK +lU +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +hm +DL +nm +nm +kk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(75,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +vo +jL +jN +UX +UX +UX +UX +wX +hf +hf +oj +Ik +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +kl +Ww +iZ +Ww +gD +mw +vQ +Ww +Ww +Ww +rO +vQ +vQ +vQ +Ot +Th +Ww +Ww +Ww +le +Ea +XE +cQ +cQ +XE +Pr +nk +nk +Ix +nk +nk +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +nm +nm +nm +nm +nm +lU +nm +nm +nm +hw +nm +nm +nm +nm +Dr +ML +nm +nm +hw +nm +nm +Kz +pY +nm +nm +nm +nm +US +nm +nm +nm +lU +nm +nm +nm +TK +Li +nm +US +nm +nm +ML +nm +nm +nm +nm +nm +nm +nm +nm +nm +zL +nm +nm +nm +nm +hm +DL +nm +nm +kk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(76,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UM +UX +UX +UX +by +UX +DA +Ik +jI +kc +Mc +oX +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +gD +Ww +Ww +vQ +pa +wB +Ww +OL +Ww +Ww +vQ +to +vQ +vQ +to +vQ +vQ +vQ +SH +Th +Ww +Ww +Ww +le +yw +yq +jo +Rq +XE +Pr +OQ +nX +Ix +nX +XN +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +nm +nm +nm +Ij +nm +nm +nm +nm +nm +hw +nm +ML +nm +nm +nm +nm +nm +nm +lU +nm +nm +lU +nm +nm +nm +nm +ML +US +nm +nm +Oh +nm +nm +nm +ML +nm +nm +nm +US +nm +zL +nm +US +US +US +US +nm +ML +ML +nm +nm +nm +nm +nm +nm +nm +hm +NK +nm +nm +kk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(77,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +Gv +UX +jQ +jQ +Ia +by +UX +pM +hf +UX +UX +iX +UX +rQ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +Jb +Ww +Ww +iZ +Ww +OL +Ww +vQ +Ww +Ww +gD +Ww +vQ +vQ +vQ +SH +Th +Ww +Ww +xt +le +dc +XE +XE +sO +XE +Pr +nk +nk +Ix +nk +nk +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +nm +nm +lU +Li +nm +nm +nm +nm +nm +nm +hw +nm +nm +nm +nm +Li +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +US +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +US +nm +nm +Ij +US +nm +nm +US +nm +nm +nm +lU +nm +nm +nm +nm +nm +US +Az +qe +nm +nm +nm +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(78,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +DA +jL +kE +sr +by +si +DA +UX +Ik +UX +UX +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +iZ +Ww +Ww +vQ +oc +Ww +Ww +gD +Ww +Sk +vQ +gD +Ww +Ww +gD +vQ +vQ +vQ +SH +Th +Ww +Ww +Ww +le +yO +XE +sO +XE +XE +Pr +OQ +nX +Ix +nX +XN +vQ +bR +zZ +zZ +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Qx +RM +RM +Fz +RM +Zs +RM +RM +RM +RM +RM +RM +RM +RM +vf +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Kd +RM +RM +Kd +RM +RM +RM +RM +RM +RM +RM +RM +Kd +ML +nm +Az +hm +kG +Az +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(79,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +mb +DA +ME +UX +UX +UX +UX +KY +KR +yM +jR +iF +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Ww +Ww +Ww +vQ +iP +Ww +OL +Ww +iZ +eo +vQ +Ww +Ww +iZ +Ww +vQ +vQ +vQ +Hm +Th +Ww +Ww +Ww +le +JV +gw +uR +uq +zv +Pr +Pr +Pr +Pr +Pr +Pr +vQ +bR +bR +bR +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +RM +nm +RM +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +Az +nm +RM +RM +RM +RM +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(80,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +UX +UX +UX +UX +UX +DA +UX +UX +Ik +mf +lx +mR +hg +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Ww +Ww +gD +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +iZ +Ww +iZ +gD +vQ +vQ +vQ +Hm +Th +Ww +Ww +Ww +eQ +OY +KB +KB +wU +wU +wU +zb +lo +YF +YF +EE +vQ +bR +bR +bR +bR +bR +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +nm +RM +Az +RM +RM +Az +RM +RM +Az +Zs +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +nm +RM +nm +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(81,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +OI +wN +fr +fr +Sq +DA +UX +UX +EJ +On +Dn +nn +bz +rQ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Ww +Ww +Ww +vQ +BD +rO +Ww +Vs +Ww +PC +vQ +Ww +gD +Ww +Ww +vQ +vQ +vQ +He +Th +Ww +Ww +Ww +Ww +Wc +Ww +Wc +Ww +Ww +Ww +Ww +Ww +Ww +Th +bQ +vQ +sJ +sJ +sJ +sJ +sJ +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +RM +nm +vf +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +rB +RM +Az +nm +RM +nm +lU +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(82,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +sJ +sJ +sJ +sJ +XA +XA +sJ +sJ +YH +YH +sJ +sJ +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +vQ +Ww +iZ +Ww +vQ +OE +rO +Ww +Ww +Ww +RC +vQ +Ww +IR +IR +Ww +vQ +vQ +vQ +He +Th +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Th +Mq +bv +Ta +UX +UX +UX +PL +di +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +RM +Az +Qx +RM +Az +RM +RM +Az +Fz +RM +Az +RM +RM +Az +RM +nm +RM +Az +RM +RM +Az +RM +RM +Az +RM +Fz +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +RM +Az +RM +Zs +Az +RM +RM +Az +RM +RM +Az +Zs +RM +Az +RM +Ib +Az +zL +RM +nm +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(83,1,1) = {" +zZ +zZ +MJ +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +DI +rY +rY +bE +sJ +sJ +sJ +sJ +sJ +bR +bR +bR +HO +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +ok +rO +Ww +vU +Ww +Ww +QW +vQ +Xp +ft +ON +Xp +vQ +vQ +vQ +KU +Th +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Th +tq +Pr +Ta +UX +UX +Ta +Ik +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +nm +RM +Az +RM +mF +Az +Fz +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +Zs +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +RM +mF +Az +nm +RM +nm +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(84,1,1) = {" +zZ +zZ +MJ +Iw +bM +bM +Iw +Iw +Iw +Iw +Iw +Iw +Iw +Iw +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +sJ +oD +gl +Fi +Ik +Sc +Sc +Sc +HO +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +fX +rO +Ww +rO +Ww +jf +vQ +SF +Xp +aH +Xp +vQ +vQ +vQ +KU +Th +Ww +Ww +Cs +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Ww +Th +tq +Pr +Ta +UX +UX +Ta +Ik +Em +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +PV +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +RM +nm +RM +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +nm +RM +hw +hw +hw +th +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(85,1,1) = {" +zZ +zZ +MJ +Iw +bM +bM +Iw +WT +hX +gi +Gs +Gs +Gs +LD +Ka +Ka +Ka +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +sJ +rX +UX +rX +Ik +TO +Sc +Sc +HO +HO +FS +FS +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +Ww +Ww +Ww +vQ +PN +rO +Ww +rO +Ww +gn +vQ +Fm +Lv +fi +kV +vQ +vQ +vQ +NI +Th +uV +Wh +zw +mD +Qq +Wh +Wh +Wh +Th +Th +Th +Th +Th +Th +Th +Vj +UX +UX +UX +UX +qn +di +UX +UX +Em +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +XR +Az +XR +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 +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +PV +IG +Az +Az +IG +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(86,1,1) = {" +zZ +zZ +zZ +Iw +bM +bM +Iw +Yf +xd +Yf +Yf +Yf +Yf +Yf +Yf +Yf +Yf +Iw +Yf +hW +Vo +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +sJ +tA +rX +UX +Ik +Sc +Sc +TO +DV +Sc +Uv +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +vQ +sJ +Et +or +Et +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +sJ +sJ +sJ +sJ +Em +UX +UX +Em +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +Em +Ik +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(87,1,1) = {" +zZ +zZ +zZ +Iw +bM +bM +Iw +Yf +Yf +Yf +qu +Yf +Yf +Yf +Yf +Yf +Yf +Ru +MN +hW +Vo +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +sJ +FT +UX +UX +eD +em +Sc +Sc +HO +Sc +HO +Sc +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Pv +bg +Pv +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +lR +Ik +Ik +lR +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Uj +Ik +Uj +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(88,1,1) = {" +zZ +zZ +zZ +Iw +bM +bM +Iw +GX +Yf +Yf +Yf +aB +Yf +Yf +Yf +Yf +IH +Iw +WF +Tc +Vo +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +Dk +rY +rY +rY +bE +sJ +Cj +rX +UX +fA +Sc +Sc +Sc +DV +Sc +DV +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +UX +Em +lR +Em +Em +Em +wf +Em +Em +wf +oA +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +Em +Em +Em +mm +Em +Em +Em +Em +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(89,1,1) = {" +zZ +zZ +MJ +Iw +bM +bM +Iw +bG +jA +jA +jA +jA +Yf +jA +jA +jA +IH +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +bg +bg +bg +rY +bE +sJ +dZ +UX +rX +Ik +Sc +Sc +TO +HO +HO +FS +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +HO +HO +sJ +sJ +sJ +sJ +sJ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +UX +Em +sJ +UX +UX +UX +UX +UX +VA +UX +UX +UX +UX +UX +UX +DA +ld +UX +UU +DA +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +wd +UX +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(90,1,1) = {" +zZ +zZ +MJ +Iw +bM +bM +Iw +Iw +Iw +Iw +Iw +Iw +Ms +Iw +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +sJ +rX +UX +UX +Ik +Sc +Sc +Sc +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +HO +Sc +Sc +Ik +FN +rU +VH +sJ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +TN +Em +sJ +UX +UX +ld +UX +UX +UX +UX +UU +UX +UX +UX +UX +UX +VA +UX +UX +UX +UX +ld +UX +UX +UX +DA +UX +UX +UX +UX +UX +wd +UX +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(91,1,1) = {" +zZ +zZ +MJ +Iw +Iw +Iw +Iw +zZ +zZ +zZ +zZ +Iw +Yf +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +sJ +nM +ha +mk +Ik +Sc +em +Sc +FS +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +YE +zZ +zZ +zZ +zZ +zZ +Dm +zZ +zZ +HO +Sc +Sc +Sc +Ik +fq +SZ +cu +sJ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +UX +Em +lR +Em +Em +Em +Em +Em +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +Em +Em +UX +UX +UX +UX +wf +Em +Em +Em +Em +Em +mm +UX +UX +UX +Em +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(92,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Iw +Ms +Iw +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +Cn +rY +bE +sJ +Ik +Ik +Ik +Ik +zZ +FS +FS +zZ +zZ +zZ +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +em +Sc +TO +Ik +TI +UX +gF +sJ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pt +wo +pt +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Em +UX +UX +Em +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Em +Em +sJ +sJ +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(93,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +rt +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Sc +Sc +Ik +Ik +eD +Ik +sJ +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Ba +Th +Th +Th +UD +UD +Th +qA +vQ +pg +pg +pg +Mq +LT +Th +Wp +vQ +sJ +Em +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +Em +Em +sJ +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(94,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +bM +sJ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +DI +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +TO +HO +zZ +zZ +Dm +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +TO +Sc +Sc +Sc +Sc +Sc +HO +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Ba +pX +wR +HL +Dd +mr +NJ +AE +vQ +Mx +Vk +ID +Mq +Mw +Th +Wp +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(95,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +iK +Db +Db +an +an +an +an +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Sc +HO +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Sc +Sc +em +Sc +TO +HO +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +TN +Em +sJ +vQ +Qj +Th +Th +HL +qP +lc +ic +Th +vQ +uE +uE +uE +Mq +vG +Th +Wp +vQ +sJ +yd +ld +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +RM +nm +nm +RM +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(96,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +Nj +gm +gm +gm +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +YE +zZ +zZ +FS +Uv +Sc +Sc +HO +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Sc +Sc +Sc +Sc +Sc +HO +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Qj +pX +Mq +HL +lc +Bo +ic +Th +vQ +vQ +vQ +vQ +vQ +vQ +Th +SM +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(97,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +ih +gm +gm +gm +jF +gm +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +bg +bg +bg +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +FS +Sc +TO +Sc +HO +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Uv +zZ +zZ +zZ +Uv +Sc +TO +Sc +Uv +HO +HO +zZ +zZ +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Qj +Th +Th +Mq +nP +nP +Th +Th +Mq +Th +Th +Th +BB +Pr +Th +SM +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(98,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +MA +gm +gm +gm +gm +gm +gm +gm +gm +gm +Db +Db +Db +Db +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +md +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +em +Sc +Sc +HO +HO +HO +zZ +zZ +Uv +zZ +zZ +zZ +zZ +Sc +Sc +Uv +zZ +zZ +zZ +Uv +Uv +Uv +zZ +zZ +zZ +bR +bR +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +xG +Em +co +dY +Th +Th +Th +Pr +lG +Th +Th +Th +Pr +jB +Th +bh +BB +Pr +Th +SM +vQ +sJ +Em +UU +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(99,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +Db +Db +Db +Db +fR +gm +gm +gm +Db +Ew +gm +gm +rm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Uv +zZ +zZ +Uv +TO +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +Bw +rY +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +UX +vQ +Th +Th +Th +Pr +sB +Th +Th +ak +Pr +Th +Th +Th +BB +Pr +Th +Qc +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +VO +Ik +Ik +VO +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(100,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +fZ +gm +gm +gm +Db +sG +gm +fD +lT +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +Sc +hj +Sc +Sc +Sc +TO +Sc +Sc +em +Sc +Uv +Uv +Sc +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +Pv +bg +Pv +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +co +dY +Th +Th +Th +Th +Th +jB +Th +Th +Mq +Th +Th +bh +BB +Pr +Th +Qc +vQ +sJ +Em +DA +ld +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(101,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +jF +gm +gm +Db +ue +gm +ph +SD +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Sc +Sc +zN +zZ +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bE +bE +bE +bE +bE +bE +Et +IS +Et +bE +bE +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Dh +Th +Th +Th +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Pr +Th +Th +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +RM +nm +Up +lU +nm +nm +nm +nm +nm +nm +nm +nm +RM +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +Az +uk +wv +Az +uk +wv +Az +uk +wv +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(102,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +gm +Db +Jt +gm +yE +gc +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +HO +Sc +em +Sc +FS +HO +HO +HO +HO +HO +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +Bw +Bw +Bw +Pv +Bw +KH +Bw +Bw +Bw +bE +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Th +Mq +Mq +Th +Pr +Th +Th +wR +Th +Th +Th +Th +Th +Th +Th +Th +vQ +sJ +Em +UX +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +Az +uk +uk +Az +uk +uk +Az +uk +oZ +Az +uk +uk +Az +uk +uk +Az +uk +Nt +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +RM +nm +nm +nm +nm +nm +nm +US +US +US +US +nm +RM +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(103,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +gm +Db +uY +gm +yE +Ov +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +rY +rY +rY +bE +zZ +zZ +zZ +Dm +zZ +zZ +zZ +zZ +zZ +HO +Sc +Sc +Sc +FS +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bE +Bw +Bw +yK +JS +rY +rY +Pv +bg +rY +rY +rY +Bw +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Th +wR +Th +Th +CL +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +Th +vQ +sJ +Em +VA +UX +Em +sJ +bR +zZ +zZ +zZ +bR +bR +Em +Em +sJ +bR +Az +bZ +uk +Az +bZ +uk +Az +bZ +uk +Az +bZ +Yg +Az +bZ +uk +Az +bZ +uk +Az +bZ +uk +Az +bZ +uk +Az +bZ +uk +Az +bZ +uk +Az +RM +nm +nm +nm +nm +nm +US +nm +Kz +nm +nm +US +RM +Az +bZ +Yg +Az +bZ +uk +Az +bZ +uk +Az +bZ +Yg +Az +bZ +uk +Az +Az +bZ +uk +Az +bZ +Yg +Az +bZ +uk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(104,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +gm +Db +Db +Db +St +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +FS +Sc +Uv +Sc +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +DI +rY +rY +rY +Bw +KH +Pv +rY +JS +rY +rY +Bw +Bw +bE +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +vQ +Th +Th +Th +Dh +Pr +Th +vW +Th +Th +Th +wR +Th +Th +Th +Th +Th +vQ +sJ +wf +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +Em +Em +sJ +bR +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +RM +nm +nm +ML +nm +US +nm +Li +Li +nm +ML +nm +Kd +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(105,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +jF +gm +Db +rF +gm +yE +ul +Db +Db +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Sc +Uv +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bE +WK +WK +el +JS +DI +rY +lk +rY +Bw +rY +Bw +rY +rY +rY +rY +Bw +Bw +bE +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Em +UX +UX +wf +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Em +Em +sJ +bR +Az +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +IG +hm +hm +RM +nm +nm +nm +nm +nm +nm +Li +nm +pY +nm +nm +vf +Az +IG +hm +hm +IG +hm +Az +IG +hm +hm +IG +hm +hm +IG +hm +Az +hm +IG +hm +hm +IG +hm +hm +IG +hm +Az +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(106,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +gm +Db +dR +gm +yE +np +Db +xo +jF +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +xl +WK +rY +el +Bw +KW +rY +Bw +rY +rY +Bw +rY +rY +Bw +rY +Bw +Bw +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +lR +Em +Em +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +yd +Em +Em +Em +Em +Em +UX +UX +DA +UX +Uj +Em +Em +Em +Em +Em +Em +UX +UX +Em +Gj +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +nm +nm +nm +nm +nm +nm +nm +ML +nm +Li +nm +CB +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +RM +Qx +RM +RM +RM +RM +RM +RM +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(107,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +MQ +cL +fG +HV +jF +gm +Al +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Uv +rY +Uv +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bE +Bw +Bw +rY +rY +xl +WK +lY +yK +DI +rY +Bw +rY +bg +Dk +Bw +Bw +rY +Dk +rY +Bw +Bw +bE +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +sJ +UX +UX +DA +UX +UX +UX +UX +UX +DA +UX +UX +UX +st +ld +UU +UX +UX +UX +DA +UX +UX +UX +UX +Ik +UX +UX +UX +UX +UX +UX +UX +UX +Ik +Ik +RM +nm +nm +nm +nm +nm +nm +nm +lU +nm +nm +nm +nm +nm +nm +nm +ML +nm +nm +nm +Up +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +ML +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +ML +ML +nm +nm +ML +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(108,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +an +gm +gm +gm +yE +Db +MA +gm +iw +gm +Db +lB +gm +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +zZ +zZ +bE +rY +rY +xl +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Gy +Gy +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +rY +rY +rY +rY +WK +lY +rY +Dk +el +Bw +JS +bg +rY +Bw +Bw +rY +rY +rY +rY +Bw +Bw +Pv +aN +Bw +WK +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +UX +UX +Em +sJ +UX +UX +UX +ld +UX +UX +UX +UU +UX +oG +UX +UX +UX +UX +UX +UX +UX +ld +UX +UX +UU +UX +UX +Ik +UX +UX +UX +UX +UX +UX +UX +UX +Ik +Ik +RM +nm +nm +nm +nm +Li +nm +nm +nm +nm +nm +nm +nm +CB +nm +nm +nm +nm +lU +nm +nm +nm +Li +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +RM +RM +RM +Kd +Kd +RM +RM +RM +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +Up +nm +nm +nm +nm +nm +nm +nm +lU +nm +nm +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(109,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +HH +gm +gm +yE +Db +PP +gm +gm +fI +Db +fZ +qs +gm +hc +cC +Wk +Gu +cC +hb +Gu +cC +Wk +Db +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +id +id +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +rY +rY +KH +rY +yC +lY +rY +lE +Bw +rY +bg +Bw +rY +JS +Bw +rY +Dk +rY +JS +Bw +bg +aQ +rY +xl +rY +rY +rY +rY +rY +rY +rY +rY +rY +UX +UX +Em +lR +Em +Em +Em +Em +yd +wf +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Uj +Em +Em +Em +Em +Em +Em +Em +Em +Em +Gj +RM +nm +ML +nm +nm +nm +ML +hw +hw +hw +hw +Li +Li +RM +RM +RM +RM +RM +RM +RM +nm +ML +nm +nm +hw +hw +hw +hw +hw +nm +nm +nm +nm +RM +Az +Az +gu +gu +kG +gu +gu +Az +Az +RM +nm +nm +nm +US +nm +nm +nm +nm +nm +nm +nm +nm +lU +nm +RM +RM +RM +RM +RM +RM +nm +nm +nm +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(110,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +iK +Db +zZ +Db +eG +gm +gm +xo +Db +Db +mT +CF +Db +Db +CV +gm +jY +jF +vK +CV +os +jF +pw +gm +jF +gm +Db +Db +Db +bE +rY +rY +DI +rY +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +Gy +Gy +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +lk +rY +Dk +rY +Bw +rY +rY +yC +xl +WK +rY +Et +rY +Pv +rY +rY +rY +rY +Bw +rY +rY +rY +Bw +Pv +aN +Bw +WK +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +UX +UX +Em +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +bR +RM +nm +nm +nm +Up +ML +Li +hw +Li +nm +Li +ML +vf +Az +Az +hm +kG +hm +Az +Az +RM +nm +nm +nm +hw +CB +Li +TK +hw +nm +nm +nm +lU +RM +Az +DL +nm +nm +nm +nm +fa +kk +Az +RM +nm +nm +nm +US +nm +as +nm +nm +Li +nm +nm +nm +nm +RM +Az +hm +dM +dM +hm +Az +RM +nm +nm +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(111,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +BT +Db +zZ +Db +mJ +gm +yE +QH +cN +QH +bd +CO +Om +rI +Jc +jp +lu +It +HV +en +gm +fG +vb +jF +CV +ys +Db +VP +jF +bE +rY +rY +rY +rY +DI +Ps +rY +rY +rY +rY +rY +bg +rY +rY +Rh +rY +DI +bg +DI +DI +bg +rY +rY +Dk +rY +rY +rY +rY +Dk +rY +rY +bg +Pv +Bw +rY +Bw +rY +rY +rY +rY +rY +xl +Et +Et +Et +bg +rY +rY +rY +rY +rY +Bw +rY +Bw +Bw +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +Bw +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +nm +nm +nm +nm +hw +CB +oJ +Ds +Li +RM +Az +qe +qe +nm +qe +NK +Az +RM +nm +lU +nm +nm +yr +QZ +Li +ML +nm +nm +nm +nm +RM +gu +DL +RG +nm +nm +nm +nm +kk +gu +RM +Up +nm +nm +US +nm +nm +nm +nm +ML +nm +nm +nm +nm +RM +hm +NK +nm +nm +qe +hm +RM +nm +nm +RM +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(112,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +iK +Db +Db +Db +My +gm +yE +gm +Db +eI +za +zc +ou +Db +CV +CY +xo +Lk +sH +wc +HN +rI +rI +rI +rI +rI +OW +dS +Lt +Zw +rY +DI +DI +rY +rY +xl +DI +DI +rY +rY +DI +bg +DI +rY +DI +rY +bg +Dk +rY +bg +Cn +DI +rY +rY +Rh +DI +rY +DI +DI +DI +rY +bg +Pv +Bw +Bw +Bw +Bw +lk +Bw +Bw +Bw +Et +Et +Et +Et +Et +Bw +Bw +Bw +KH +Bw +Bw +Bw +Bw +Bw +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +Bw +UX +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +nm +nm +nm +nm +tc +Li +ML +Li +tc +vf +hm +RG +nm +nm +RG +nm +hm +RM +nm +nm +nm +nm +Up +ML +nm +Li +nm +nm +nm +ML +RM +gu +qe +nm +nm +km +nm +nm +qe +gu +RM +nm +nm +nm +US +nm +nm +TK +nm +nm +nm +nm +nm +nm +RM +hm +qe +fa +nm +gE +hm +RM +nm +nm +Qx +PV +PV +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(113,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +jF +Nj +gm +gm +gm +gm +gm +eU +gm +Db +Jp +gm +Jk +DM +Db +LP +VP +zJ +gm +rA +vK +BW +gm +jF +CV +Wd +gm +Db +LQ +Vq +bE +rY +DI +rY +rY +DI +xl +rY +rY +rY +rY +rY +bg +Cn +rY +rY +DO +bg +DI +rY +bg +Dk +rY +rY +rY +rY +rY +Dk +rY +rY +DI +DI +DI +YS +Pv +rY +Bw +rY +rY +rY +rY +xl +xl +Et +Et +Et +rY +rY +Dk +rY +rY +rY +Bw +rY +Bw +Bw +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +Bw +Ta +Ta +co +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +lU +nm +nm +Li +nm +Li +nm +hw +hw +RM +Az +nm +nm +nm +nm +nm +Az +RM +nm +nm +nm +hw +TK +Li +Kz +hw +nm +nm +nm +nm +RM +gu +DL +nm +nm +nm +nm +lv +OH +gu +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +RM +hm +qe +nm +nm +qe +hm +RM +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(114,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +fZ +gm +gm +gm +gm +gm +gm +jF +fG +Mj +gm +dl +zc +PE +TL +rI +TL +Wi +VP +MM +LP +CV +jY +gm +fG +jF +gm +CY +Db +Db +Db +bE +rY +DI +rY +rY +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +Pv +rY +rY +Dk +Bw +rY +rY +rY +xl +WK +rY +Et +rY +lk +bg +rY +rY +rY +Bw +rY +rY +Dk +Bw +Pv +aN +Bw +WK +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +UX +VR +Em +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +RM +nm +nm +nm +nm +nm +ML +nm +Li +tc +hw +nm +RM +Az +Az +hm +dM +hm +Az +Az +RM +ML +nm +nm +hw +hw +hw +hw +hw +nm +nm +nm +nm +RM +Az +DL +wg +nm +nm +nm +NK +Cv +Az +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +ML +nm +nm +RM +Az +hm +dM +dM +hm +Az +RM +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(115,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +MA +gm +cT +gm +fG +fG +gm +gm +gm +gm +Db +Db +CF +CF +Db +Db +gm +RT +jF +nh +cC +Wk +CJ +cC +yP +Ej +cC +Wk +Db +zZ +zZ +bE +xl +Ps +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +JS +rY +rY +rY +Bw +rY +rY +WK +xl +el +Bw +ds +NT +Bw +bg +rY +Bw +rY +rY +rY +rY +Bw +bg +aQ +rY +xl +rY +rY +rY +rY +jK +rY +rY +rY +rY +UX +UX +Em +lR +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +lf +lf +lf +lf +lf +Em +Em +Em +Em +Em +Em +Em +wf +Em +Uj +Em +Em +Em +Em +Em +Em +Em +Em +Gj +RM +nm +ML +nm +nm +Li +nm +nm +nm +nm +nm +nm +nm +RM +RM +RM +RM +RM +RM +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +Up +RM +Az +Az +gu +gu +kG +gu +gu +Az +Az +RM +nm +nm +lU +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +RM +RM +RM +RM +RM +RM +nm +ML +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(116,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +iK +Db +Db +Db +My +gm +gm +gm +Db +LI +gm +gm +Hk +Db +wE +gm +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +Db +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +rY +rY +rY +rY +Bw +Bw +xl +xl +ky +YS +lE +ds +rY +Pv +lk +rY +rY +rY +rY +Bw +Bw +Pv +aN +Bw +WK +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +UX +UX +Em +Ik +UX +UU +UX +UX +UX +ld +UX +UU +UX +UX +UX +Kk +Kk +Kk +Kk +Kk +Kk +UX +UX +UX +UX +UX +UX +UX +Ik +UX +UX +UX +UX +UX +UX +UX +Ik +Ik +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +Up +nm +nm +nm +nm +nm +nm +nm +ML +Up +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +RM +RM +RM +Kd +Kd +Kd +RM +RM +RM +nm +nm +nm +nm +nm +nm +lU +lU +nm +nm +nm +nm +nm +nm +ML +nm +nm +nm +ML +nm +nm +nm +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(117,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +DQ +Db +zZ +Db +MA +gm +gm +gm +Db +Gc +gm +gm +gm +Db +gm +LQ +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bE +Bw +Bw +rY +rY +rY +KH +Bw +yC +yC +Dc +NA +rY +rY +bg +Pv +Bw +rY +rY +Dk +Bw +Bw +bE +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +Ik +UX +UX +UX +UX +UX +UX +UX +UX +VA +ld +UX +Kk +Kk +Kk +Kk +Kk +UX +UX +UX +ld +UX +UX +UX +UX +Ik +UX +UX +UX +UX +UX +UX +UX +Ik +Ik +RM +nm +nm +nm +nm +nm +lU +nm +nm +nm +ML +nm +nm +nm +nm +ML +Li +nm +nm +nm +lU +nm +nm +Li +nm +nm +ML +nm +nm +lU +nm +lU +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +lU +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(118,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +iK +Db +zZ +Db +ih +gm +gm +gm +Al +gm +gm +gm +gm +Al +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Bw +rY +Bw +rY +rY +Bw +yC +yK +Bw +rY +rY +Pv +rY +rY +Bw +JS +Bw +Bw +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +lR +Em +Em +Em +DK +Em +Em +Em +Em +Em +Em +Em +Em +lf +lf +lf +Em +wf +Em +Em +Em +Em +Em +Em +Em +Uj +Em +Em +Em +Em +Em +Em +Em +Em +Gj +RM +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +lU +nm +nm +nm +nm +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(119,1,1) = {" +zZ +zZ +zZ +zZ +zZ +MJ +Iw +Iw +Iw +Iw +Iw +rt +rt +Iw +Iw +Db +gm +gm +gm +gm +Db +ul +gm +gm +Oa +Db +gm +Lk +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +Dk +DI +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bE +Bw +Bw +Dk +rY +rY +yC +Bw +rY +YS +rY +Bw +bg +JS +rY +rY +Bw +Bw +bE +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +bI +sJ +bI +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Uj +Ik +Uj +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +RM +ML +nm +RM +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +OD +Bt +CE +ML +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(120,1,1) = {" +zZ +MJ +Iw +Iw +Iw +Iw +Iw +GY +GY +Yf +Yf +Yf +Yf +Yf +Iw +Db +gm +gm +gm +gm +Db +fF +MA +gm +ul +Db +Db +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +bE +Bw +Bw +rY +rY +rY +xl +CA +YS +Bw +Dk +rY +rY +rY +Bw +Bw +bE +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +co +UX +co +sJ +GM +GM +GM +GM +GM +GM +GM +GM +qm +GM +qm +GM +GM +GM +GM +GM +GM +GM +GM +GM +sJ +Em +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +RM +nm +nm +RM +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(121,1,1) = {" +zZ +MJ +Iw +lI +lI +KK +sD +Yf +Yf +Yf +Yf +Yf +Iw +Iw +Iw +Db +gm +gm +gm +gm +Db +Db +Db +fM +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +bE +bE +Bw +Bw +rY +xl +xl +rY +Bw +rY +rY +rY +rY +Bw +Bw +bE +bE +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +qm +Tq +yo +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Sy +yo +qX +YD +qX +GM +sJ +Em +UX +Em +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +RM +nm +nm +RM +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Yg +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Yg +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(122,1,1) = {" +zZ +MJ +Iw +lI +lI +Or +Yf +Yf +Yf +Iw +Iw +Iw +Iw +zZ +zZ +an +gm +gm +gm +gm +Db +sG +gm +gm +TQ +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bE +Bw +Bw +xl +xl +DI +lk +rY +rY +rY +Bw +Bw +bE +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +Sh +qm +PH +Ze +Ze +Xf +Ze +Ze +Xf +jj +Ze +Ze +Ze +tL +au +VW +cG +qX +GM +sJ +wf +UX +Em +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +RM +nm +nm +Fz +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +Yg +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +Yg +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +Yg +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +uk +Az +Sa +Yg +Az +nm +ML +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(123,1,1) = {" +Iw +Iw +Iw +lI +lI +Or +Yf +Yf +Yf +Iw +Yf +CG +Vo +zZ +zZ +an +gm +gm +gm +gm +Db +ue +gm +gm +Dx +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +md +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bE +bE +Bw +WK +WK +Bw +Bw +Bw +Bw +Bw +Bw +bE +bE +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +Wv +qp +yo +Fd +jj +Ze +KI +Ze +Ze +Ze +Ze +KI +Ze +Ze +yo +qX +YD +qX +GM +sJ +Em +ld +Em +sJ +bR +zZ +mj +Sc +Sc +zZ +zZ +bR +bR +RM +ML +nm +RM +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Yg +uk +Az +uk +Yg +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +Yg +uk +Az +uk +Yg +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +uk +uk +Az +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(124,1,1) = {" +Iw +bM +Vh +Yf +Yf +Yf +Yf +Yf +Yf +Ru +Yf +hW +Vo +zZ +zZ +an +gm +gm +gm +gm +Db +SU +fJ +gm +TQ +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +KH +rY +Dk +Bw +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +qC +qC +qC +Ze +Ze +Ze +UN +UN +UN +Ze +Fd +Ze +qh +Ze +qC +qC +qC +qC +GM +sJ +Em +UX +Em +sJ +bR +zZ +mj +Sc +Us +zZ +zZ +bR +bR +RM +nm +nm +RM +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +uk +Ye +Az +nm +nm +RM +PV +PV +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(125,1,1) = {" +Iw +bM +Vh +Yf +Yf +Yf +Yf +Yf +Yf +Ru +Yf +hW +Vo +zZ +zZ +an +gm +gm +gm +gm +Db +Jt +gm +gm +TQ +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +xl +xl +xl +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +qm +Tq +yo +Ze +Ze +Ze +eg +bl +Ai +Ze +Ze +Ze +Ze +Sy +yo +qX +qX +qX +GM +sJ +Em +VA +Em +sJ +bR +zZ +mj +Sc +jy +zZ +zZ +bR +sJ +Bi +Ik +ZT +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +UX +UX +Em +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(126,1,1) = {" +Iw +Iw +Iw +Ty +Yf +Yf +Yf +Yf +Yf +Iw +Yf +Tc +Vo +zZ +zZ +an +gm +jF +gm +gm +Db +io +gm +gm +gc +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Pv +bg +bg +Pv +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +iD +qm +PH +Ze +jj +Zl +mi +Oz +YO +We +Mg +Xf +Ze +tL +au +Uz +IO +qX +GM +sJ +Em +UX +wf +sJ +bR +zZ +mj +Sc +jy +zZ +zZ +bR +sJ +Em +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +UX +UX +Em +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(127,1,1) = {" +zZ +MJ +Iw +tR +Yf +Yf +Yf +Yf +Yf +Iw +Iw +Iw +Iw +zZ +zZ +an +gm +gm +gm +gm +Db +Db +Db +Db +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +DI +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +KH +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +qm +Es +yo +Ze +Ze +Ze +UN +UN +UN +Ze +Ze +Ze +Ze +Ze +yo +qX +qX +qX +GM +sJ +Em +UX +Em +sJ +bR +zZ +mj +Sc +Us +zZ +zZ +bR +sJ +Em +UX +UX +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +UX +UX +UX +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(128,1,1) = {" +zZ +MJ +Iw +tR +Yf +Yf +Yf +Yf +Yf +Yf +Yf +Yf +Iw +Iw +Iw +an +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +rY +rY +DI +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +qC +qC +qC +Ze +Xf +Ze +Ze +Ze +Ze +Ze +qh +Ze +Ze +Ze +qC +qC +qC +qC +GM +sJ +Em +UX +Em +sJ +bR +zZ +mj +tf +Sc +zZ +zZ +bR +sJ +Bi +Ik +ZT +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +UX +ld +UX +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(129,1,1) = {" +zZ +MJ +Iw +Iw +Iw +Iw +Iw +Yf +Yf +Yf +Yf +Yf +Yf +Yf +Iw +Db +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +DI +rY +rY +rY +rY +DI +rY +rY +rY +rY +bg +bg +bg +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +Dk +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +pD +YD +Cz +Ze +KI +Fd +Ze +jj +Ze +Ze +Ze +KI +Ze +Ze +PT +qX +qX +LU +GM +sJ +Em +ld +Em +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +SR +TT +TT +nv +ir +sU +DH +DY +Ku +zG +ke +wh +hE +Fw +cq +tZ +Sr +Yn +TT +TT +Xw +Sr +Xw +Xw +Xw +nv +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Sr +Xw +Xw +er +SI +uA +Ah +Nd +rf +TT +PG +Xw +Xw +Xw +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(130,1,1) = {" +zZ +zZ +zZ +zZ +zZ +MJ +Iw +Iw +Iw +Iw +Iw +rt +rt +Iw +Iw +Db +fZ +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +rY +rY +rY +Dk +rY +rY +rY +rY +Dk +rY +rY +Cn +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +jS +UX +Em +sJ +GM +pD +Pn +qC +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +Ze +jj +kJ +qC +qX +qJ +qX +GM +sJ +Em +UX +Em +sJ +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +SR +TT +Gw +nv +TT +TT +TT +TT +TT +TT +TT +wh +TT +TT +TT +TT +Sr +Yn +sX +TT +Xw +wl +TT +TT +TT +Pi +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +YL +TT +TT +Sr +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Xw +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(131,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +iK +iK +Db +zZ +Db +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +od +od +od +rY +rY +rY +rY +DI +rY +rY +rY +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +Dk +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +GM +GM +GM +GM +GM +GM +GM +GM +qm +GM +qm +GM +GM +GM +GM +GM +GM +GM +GM +GM +sJ +Em +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +SR +Gw +Gw +nv +DH +TT +kR +DZ +DZ +DZ +DZ +es +TT +TT +TT +Gw +Kt +TT +TT +TT +TT +Sp +TT +TT +TT +Pi +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +Sr +TT +TT +jW +jW +jW +jW +eN +jW +jW +jW +jW +TT +Xw +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(132,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +DQ +DQ +Db +zZ +Db +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +XJ +tI +XJ +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pt +wo +pt +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +dr +sJ +dr +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Uj +Ik +Uj +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +SR +Gw +xx +nv +Jg +TT +ze +TT +TT +kB +TT +Jm +TT +TT +TT +Gw +dd +TT +TT +AI +TT +wl +TT +TT +TT +nv +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +Sr +TT +TT +jW +jW +jW +jW +jW +jW +jW +jW +jW +TT +TT +Sr +TT +xx +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(133,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +iK +iK +Db +Db +Db +fR +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +xl +xl +xl +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +KH +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +RS +Em +mu +Em +Em +lf +lf +lf +lf +lf +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +wf +NW +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +SR +TT +TT +nv +zX +TT +GQ +TT +TT +TT +TT +TT +TT +TT +TT +Gw +Kt +TT +TT +TT +TT +Sr +gv +gv +TT +nv +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +YL +TT +TT +TT +TT +Gw +AI +TT +TT +TT +TT +xc +TT +TT +jW +eN +zy +uM +jW +jW +jW +UY +jW +TT +TT +Sr +TT +TT +TT +xx +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(134,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +Nj +Nj +gm +gm +gm +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +Bj +jK +zf +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +Ik +UX +UX +Kk +Kk +Kk +Kk +Kk +Kk +UX +UX +UU +UX +UX +UX +ez +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +UX +SR +TT +TT +nv +eu +TT +ze +TT +TT +TT +aF +TT +pK +TT +TT +Gw +dd +TT +AI +TT +TT +Sr +Gm +Gm +Gm +nv +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +xc +TT +TT +jW +jW +PS +Ux +jW +jW +jW +jW +jW +TT +TT +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(135,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +gm +gm +gm +gm +gm +gm +gm +gm +gm +jF +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +fg +zf +IE +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +mu +Em +Em +Em +lf +lf +lf +lf +Em +Em +Em +Em +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +Em +wf +Em +Em +Em +Em +Em +Em +Em +Em +Em +Em +SR +TT +TT +nv +iO +TT +es +DZ +DZ +DZ +DZ +kR +TT +TT +TT +Gw +Kt +TT +TT +TT +TT +Sr +Sr +Sr +Sr +nv +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Sr +vR +TT +jW +jW +jW +jW +jW +jW +jW +jW +VL +TT +Xb +Sr +TT +TT +xx +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(136,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +MA +gm +gm +gm +jF +gm +gm +gm +gm +gm +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +ap +rY +eY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +zi +pf +sa +pf +bR +bR +bR +bR +bR +bR +bR +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +SR +TT +TT +nv +TT +TT +TT +TT +TT +TT +TT +wh +TT +TT +TT +TT +Sr +Hx +TT +TT +AI +TT +TT +TT +TT +nv +TT +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +Sr +vR +TT +jW +jW +jW +lS +jW +UY +jW +jW +jW +TT +Dy +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(137,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Db +Db +Db +Db +Db +an +an +an +an +Db +Db +Db +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +JM +IE +Bj +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +NW +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +zi +iT +fp +iT +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +SR +TT +TT +nv +IN +Bs +IN +mS +DH +DH +Kg +wh +gs +fV +fV +Xw +Sr +Hx +TT +TT +TT +TT +TT +TT +TT +nv +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +Sr +Ly +TT +jW +jW +jW +jW +jW +jW +jW +jW +jW +TT +TT +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(138,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +zf +rY +rY +bE +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Bw +rY +rY +Bw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +zi +zi +zi +zi +zi +zi +zi +pf +sa +pf +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +bR +bR +EG +TT +TT +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +nv +TT +TT +TT +TT +xx +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +AI +Gw +TT +TT +Sr +Ly +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(139,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +od +od +od +bE +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Bw +bg +bg +om +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +VA +Em +sJ +bR +zi +zi +nA +iT +nA +iT +iT +iT +iT +iT +iT +iT +De +iT +iT +De +iT +iT +iT +iT +cD +Ln +cD +Ln +cD +Ln +cD +Ln +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +YL +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +xx +TT +TT +TT +TT +TT +Sr +TT +TT +kY +cM +cM +bb +TT +kY +cM +cM +cM +bb +JL +Sr +Gw +Gw +Gw +Gw +Gw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(140,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bE +XJ +Nh +XJ +bE +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +HO +zu +zu +HO +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +nA +pG +aW +fp +iT +fp +fp +fp +fp +fp +fp +fp +fp +iT +fp +fp +pG +iT +fp +pG +fp +fp +fp +fp +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +xx +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +YL +TT +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +Sr +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(141,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +eO +FB +OG +fY +nq +Ac +Cl +nq +fY +nq +IA +nq +IA +nq +fY +nq +IA +nq +IA +nq +fY +nq +IA +nq +IA +nq +fY +nq +IA +nq +IA +nq +fY +nq +IA +WQ +IA +nq +fY +nq +IA +nq +IA +nq +fY +nq +IA +nq +IA +nq +fY +Jh +Pe +Pe +la +YP +YP +YP +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +nA +fp +aW +fp +iT +fp +pG +fp +fp +fp +fp +fp +fp +iT +fp +fp +fp +fB +iT +iT +iT +iT +iT +iT +iT +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +xx +TT +Gw +AI +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +AI +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(142,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +hr +OG +Tt +fY +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +iV +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +dG +Ac +KC +im +Lq +fY +eO +FB +FB +FB +FB +AO +Tt +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +iT +fp +fp +fp +fp +fp +fp +fp +fp +Va +fp +fp +fp +fp +fp +fp +fp +qq +fp +fp +pG +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +Gw +TT +TT +xx +TT +Gw +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +Sr +Sr +Sr +wl +wl +UH +wl +wl +Sr +Sr +TT +xx +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(143,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Jh +Pe +cy +fY +Ac +Ac +Ac +EM +fY +Ac +Ac +Ac +Ac +Ac +Ox +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Lm +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +Ac +Ac +Ac +Ac +fY +Ac +tX +hs +yD +Ih +fY +eO +FB +AO +FB +FB +FB +Tt +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +iT +fp +fp +qq +fp +fp +fp +pG +fp +iT +wS +wS +wS +wS +fp +uL +uL +fp +fp +fp +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +Gw +Gw +Gw +Gw +Gw +Gw +Gw +Gw +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Sr +Yn +TT +zI +zI +TT +TT +Xw +Xw +Sr +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(144,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +eO +FB +rs +fY +CH +Ac +Ac +Ac +fY +CH +Ac +Ac +Ac +Ac +fY +ny +Ac +Ac +Ac +Ac +fY +ny +Ac +Ac +Ac +Ac +fY +rW +Ac +Ac +Ac +Ac +fY +TF +Ac +Ac +Ac +Ac +fY +rW +Ac +Ac +iV +Ac +fY +XP +Nn +Cu +Sj +En +fY +eO +FB +FB +FB +FB +FB +Tt +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +yy +fp +ae +fp +iT +ww +fp +fp +fp +fp +fp +fp +fp +iT +fp +fp +fp +fp +fp +Sl +Sl +fp +fp +fp +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +xx +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +wl +Yn +TT +sX +TT +TT +TT +sX +Xw +wl +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +xx +Gw +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(145,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +ob +ob +ob +ob +ob +ob +ob +ob +tY +FB +Tt +fY +Vr +Ac +Ac +hv +fY +Vr +Ac +Ac +Ac +hv +fY +Vr +Ac +Ac +Ac +hv +fY +Vr +Ac +Ac +Ac +hv +fY +Vr +Ac +Ac +Ac +hv +fY +Vr +Ac +Ac +Ac +Zk +fY +Vr +Ac +Ac +Ac +hv +fY +Vr +Ac +nY +zl +IP +fY +Jh +FB +Pe +VD +ZZ +al +mg +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +yy +fp +ae +fp +iT +fp +fp +fp +fp +fp +fp +fp +fp +iT +wS +wS +wS +wS +fp +fp +oC +fp +oC +fp +ww +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +wl +Xw +TT +TT +TT +TT +TT +TT +TT +wl +TT +TT +TT +TT +Gw +Gw +Gw +Gw +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(146,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +EC +EC +yN +su +QE +vC +tT +fY +SW +gp +cy +fY +EZ +Ic +EZ +fY +fY +fY +EZ +Ic +EZ +Ox +fY +fY +EZ +Ic +EZ +fY +fY +fY +EZ +Ic +EZ +fY +fY +fY +EZ +Ic +EZ +fY +fY +fY +EZ +Ic +EZ +fY +fY +fY +EZ +Ic +EZ +fY +fY +fY +vi +rn +vi +fY +fY +Eb +FB +FB +FB +vY +FB +Tt +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +yy +fp +ae +fp +De +fp +fp +fp +fp +fp +fp +fp +fp +iT +fp +fp +fp +fp +fp +fp +IF +AM +xk +AM +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +AI +TT +YL +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +wl +Xw +TT +TT +TT +TT +TT +TT +TT +wl +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(147,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +FB +bt +cw +FB +gP +FB +FB +fY +SW +FB +FB +Fa +YP +FB +YP +YP +YP +iJ +YP +Yq +YP +YP +YP +YP +YP +FB +YP +YP +YP +OC +YP +FB +YP +YP +YP +YP +YP +FB +rr +YP +YP +iJ +YP +FB +YP +ce +fY +Oi +YP +FB +YP +EQ +EQ +EQ +la +Pe +la +YP +YP +FB +FB +cE +FB +FB +FB +wQ +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +iT +ai +aC +xI +xI +xI +xI +sn +fp +iT +fp +fp +fp +fp +pG +fp +aL +AM +xk +AM +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +xx +TT +TT +TT +TT +TT +TT +TT +xx +TT +wl +Yn +ku +TT +zR +TT +TT +TT +Xw +wl +TT +TT +TT +TT +TT +xx +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(148,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +ot +Yq +Yq +jC +FB +FB +FB +qH +Pe +FB +Yq +fY +IY +FB +FB +FB +FB +dD +FB +vj +FB +FB +iC +FB +dD +AO +FB +FB +WM +FB +FB +FB +FB +Fr +IY +FB +FB +FB +FB +hT +FB +FB +iC +FB +FB +FB +fY +FB +GE +FB +FB +FB +FB +FB +FB +FB +hT +IY +NH +FB +FB +FB +pZ +ug +ug +pk +ob +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +pt +wo +pt +sJ +bR +zi +zi +iT +iT +iT +iT +iT +ai +In +iT +iT +iT +iT +oM +fp +De +fp +fp +oC +fp +oC +fp +fp +fp +fp +fp +fp +iT +vS +iT +iT +iT +vS +EG +TT +TT +TT +TT +TT +xx +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +Sr +Hx +TT +Gm +Gm +TT +TT +Xw +Xw +Sr +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(149,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +cw +FB +UO +FB +FB +Yq +FB +fY +SW +FB +EN +fY +qo +Yq +FB +cx +Yq +dD +FB +FB +EN +yA +FB +dD +dD +dD +IY +Pe +lJ +MT +FB +EN +FB +FB +XM +FB +EN +ay +FB +Pe +FB +vj +FB +FB +AO +FB +fY +OG +FB +FB +iC +FB +EN +FB +FB +Yq +FB +FB +FB +EN +FB +Is +iE +FB +FB +Tt +ob +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +fp +ai +qB +gQ +iT +iT +iT +Bx +fp +iT +fp +fp +xk +AM +xk +AM +xk +AM +IF +AM +fp +De +pf +fp +fp +fp +pf +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +Gw +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +Sr +Sr +Sr +wl +wl +UH +wl +wl +Sr +Sr +TT +TT +TT +TT +TT +TT +TT +AI +Gw +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +Gw +TT +TT +xx +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(150,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Cf +Cf +Jl +bW +jU +jU +iz +UT +SW +Pe +Pe +fY +Bp +FB +OG +FB +FB +Yq +Yq +Yq +FB +FB +FB +FB +dD +XM +FB +Pe +FB +FB +FB +yA +FB +FB +FB +FB +FB +FB +Pe +FB +yA +QM +tv +IY +FB +FB +fY +dD +FB +hT +FB +FB +tv +FB +XM +FB +FB +FB +FB +Yq +FB +FB +FB +FB +FB +Tt +fY +co +Em +Em +wf +Em +DK +Em +Em +Em +wf +Em +co +Em +Em +Em +co +oi +Em +Em +UX +Em +sJ +bR +zi +zi +iT +fp +qq +fp +fp +ai +In +iT +iT +iT +iT +oM +fp +iT +fp +fp +IF +AM +xk +AM +xk +AM +xk +AM +fp +iT +pf +fp +fp +fp +pf +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(151,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +fY +fY +fY +fY +fY +fY +fY +fY +fY +LJ +fY +fY +FB +Yq +FB +FB +uh +FB +gp +FB +VM +tv +OG +FB +dD +rj +FB +Pe +Pe +FB +AO +FB +FB +FB +ec +DR +FB +yQ +FB +FB +FB +FB +FB +FB +FB +cx +LE +dD +FB +FB +rj +FB +FB +FB +EN +FB +vj +FB +hT +FB +FB +XM +FB +FB +FB +FB +BM +Ta +UX +UX +UX +UX +UX +UU +ld +UX +UX +UX +Ta +UX +UX +UX +Ta +rD +UX +UX +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +fp +ai +KS +kQ +kQ +kQ +kQ +qb +fp +iT +fp +fp +fH +fp +fH +fp +fH +fp +fH +fp +fp +iT +vS +iT +iT +iT +vS +SR +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +Gw +Gw +Gw +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(152,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +dF +Oy +fY +Zj +xe +OC +OC +fY +Eb +Yq +qM +FB +FB +Yq +aw +FB +FB +dD +FB +FB +IY +cx +FB +FB +FB +FB +Fr +FB +Pe +FB +FB +FB +FB +FB +FB +FB +XM +FB +IY +AO +FB +FB +FB +FB +EN +FB +LE +dD +FB +FB +EN +FB +FB +FB +FB +Pe +FB +iC +Yq +FB +yA +FB +FB +Yq +FB +Tt +fY +co +DK +Em +Em +wf +Em +Em +Em +DK +Em +Em +co +Em +Em +Em +co +oi +Em +Em +UX +Em +sJ +bR +zi +zi +iT +iT +De +iT +iT +iT +iT +iT +iT +iT +iT +iT +iT +iT +De +iT +iT +iT +iT +iT +iT +iT +iT +Va +iT +ag +zi +zi +zi +zi +zi +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +xx +TT +TT +TT +TT +TT +TT +TT +TT +TT +YL +TT +TT +TT +TT +AI +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(153,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Qu +mh +Ic +Na +FB +rj +Tt +zg +eO +FB +FB +hT +FB +FB +FB +GE +FB +dD +Bp +FB +FB +FB +FB +FB +FB +FB +EN +FB +FB +FB +FB +Yq +EK +FB +FB +FB +EN +FB +FB +FB +FB +FB +OG +FB +FB +FB +fY +SX +FB +FB +IY +Yq +DR +AO +FB +Pe +FB +EN +FB +FB +FB +FB +FB +FB +FB +Tt +ob +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +sJ +Ik +nV +Ik +sJ +bR +zi +zi +iT +fp +fp +fp +ww +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +iT +fp +fp +iT +zi +zi +zi +bR +bR +SR +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +YL +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +TT +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(154,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Ac +GB +fY +kt +hT +Yq +UW +zg +eO +FB +wk +FB +FB +Yq +EN +FB +zh +Lz +zh +zh +BA +FB +zh +zh +EO +zh +zh +zh +zh +FB +BA +zh +zh +FB +zh +BA +zh +Yq +zh +zh +zh +Yq +zh +Hj +FB +Yq +fY +FB +dD +OG +FB +cI +FB +FB +FB +Pe +OG +FB +FB +Cf +FB +FB +FB +EN +FB +RI +ob +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +oC +oC +fp +fp +oC +oC +fp +fp +fp +Wy +oC +fp +fp +oC +oC +fp +fp +pG +fp +fp +De +fp +fp +ag +zi +zi +zi +bR +bR +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +SR +SR +SR +SR +EG +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +OX +sS +YM +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(155,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +fY +fY +fY +bq +FB +EN +UW +jH +eO +FB +FB +FB +AO +FB +FB +FB +fY +fY +ax +Eo +Eo +Zi +XD +Eo +EL +fY +fY +fY +fY +xa +fY +fY +fY +xa +fY +fY +fY +Uq +fY +fY +fY +VY +Ox +fY +Tl +FB +fY +FB +FB +EH +Yq +FB +FB +EN +FB +hT +XM +FB +FB +FB +FB +FB +FB +FB +FB +RI +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +BI +EA +Tu +AM +BI +Tu +Tu +AM +fp +BI +Tu +Tu +AM +BI +Tu +dE +AM +fp +fp +fp +fp +iT +fp +fp +iT +zi +zi +zi +bR +bR +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +TT +TT +TT +TT +TT +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(156,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +dF +Oy +fY +Fp +FB +FB +Tt +Ox +eO +iC +OG +FB +FB +FB +FB +FB +fY +Qa +WU +OA +Xc +EN +FB +FB +tb +Ci +SK +fY +FB +FB +FB +fY +FB +FB +FB +Ox +FB +FB +FB +fY +FB +FB +EN +fY +Tl +FB +fY +Yq +FU +FB +FB +FB +FB +vj +FB +FB +FB +FB +yA +FB +AO +FB +FB +vj +FB +MV +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +BI +Tu +Tu +AM +BI +Tu +Tu +AM +fp +BI +Tu +Tu +AM +BI +EA +Tu +AM +fp +fp +fp +fp +iT +fp +fp +ag +zi +zi +zi +bR +bR +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +TT +TT +TT +TT +TT +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(157,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Qu +Lq +Ic +Na +FB +kb +Na +Dg +HA +FB +FB +FB +FB +vj +FB +FB +ss +FB +dL +Mi +OM +yX +Xa +Mi +Lu +Mi +Xv +fY +Jo +cw +FB +fY +ZI +Yq +FB +fY +pu +NH +FB +fY +pu +EN +FB +fY +Tl +FB +fY +aZ +zh +FB +nG +nG +nG +nG +nG +nG +FB +zh +zh +zh +zh +zh +FB +zh +zh +pO +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +NW +UX +Em +sJ +bR +zi +zi +iT +fp +fH +fH +fp +fp +fH +fH +fp +fp +fp +fH +fH +fp +fp +fH +fH +fp +fp +qq +fp +fp +iT +fp +fp +iT +zi +zi +zi +bR +bR +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +TT +TT +TT +TT +TT +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bD +OV +Sr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(158,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Ac +SG +fY +kt +FB +FB +kO +fY +eO +FB +Tt +kI +kI +uu +ah +FB +eA +FB +bc +bL +lK +HC +Mi +of +Mi +yX +je +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +Tl +Tt +fY +fY +fY +LE +fY +fY +fY +fY +fY +fY +LE +fY +fY +fY +zg +zg +fQ +zg +zg +fY +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +ww +fp +fp +fp +fp +fp +fp +fp +fp +iT +iT +iT +ag +zi +zi +zi +bR +bR +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +lW +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +lW +OV +Sr +TT +TT +TT +TT +TT +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +lW +OV +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +lW +OV +Sr +Sr +OV +OV +Sr +OV +OV +Sr +OV +OV +Sr +lW +OV +Sr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(159,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +fY +fY +fY +FA +wk +FB +kO +zg +eO +FB +Tt +Ep +Ep +vc +eO +FB +eA +FB +DW +Os +VX +of +NF +yX +Mi +of +JT +fY +fY +Ox +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +Tl +Tt +fY +gU +FB +Xx +Og +zK +zK +QQ +YC +Xt +eK +pr +hQ +fY +FB +FB +FB +ct +tC +zM +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +fp +pG +fp +fp +iT +zi +zi +zi +bR +bR +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +TT +eW +TT +eW +TT +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +OV +nb +Sr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(160,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +dF +JX +fY +eO +Yq +iC +Tt +zg +eO +FB +cw +Yq +FB +FB +AO +FB +ss +FB +Mi +ZL +OM +Mi +Mi +lK +bV +Mi +az +fY +ZI +FB +FB +fY +pu +FB +OG +fY +pu +Is +Yq +fY +pu +FB +FB +fY +Tl +Tt +fY +Lc +qM +yh +tm +WD +tm +SN +eB +eK +eK +VN +Vv +fY +FB +FB +FB +FB +uT +FB +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +iT +iT +iT +iT +iT +iT +iT +ey +ey +ey +iT +iT +iT +iT +iT +iT +iT +De +iT +iT +iT +iT +iT +iT +iT +iT +zi +zi +zi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +sJ +Xj +sJ +Xj +sJ +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(161,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Vx +Ac +Ic +Na +Yq +FB +Tt +zg +eO +HA +FB +Yq +FB +FB +FB +FB +fY +Qa +WU +OA +Xc +qM +EN +FK +FK +aV +LZ +fY +FB +FB +FB +fY +cw +FB +FB +fY +FB +uO +FB +fY +FB +FB +FB +fY +Tl +Tt +fY +JI +FB +ol +js +js +js +SS +BC +VS +BC +Ed +wA +fY +FB +RY +RY +RY +RY +FB +ob +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Em +UX +Em +sJ +bR +zi +zi +zi +zi +zi +zi +zi +zi +zi +pf +FZ +pf +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(162,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Ac +GB +fY +dH +FB +kP +Tt +fY +eO +AO +Yq +nU +FB +EN +FB +FB +fY +fY +EL +Eo +Eo +Iq +sk +vD +EL +fY +fY +fY +fY +xa +fY +fY +fY +xa +fY +fY +fY +xa +fY +fY +fY +xa +fY +fY +Tl +Nc +fY +cj +Uw +ZN +zK +zK +Og +yh +QC +eK +eK +Sg +VS +fY +FB +Hs +KQ +KX +fl +FB +ob +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Em +UX +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +ey +BS +ey +zi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(163,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +fY +Ox +fY +bq +Yq +OG +Tt +fY +eO +FB +HA +Yq +FB +FB +FB +FB +YP +YP +vg +YP +YP +FB +ce +ce +YP +sZ +YP +YP +YP +FB +YP +ce +YP +FB +YP +YP +YP +FB +YP +YP +YP +vj +YP +YP +FB +Tt +fY +BO +FB +Xx +HK +Ed +Ed +BC +eK +HK +Sg +eK +eK +fY +FB +xR +RY +ep +te +FB +ob +bR +bR +bR +bR +bR +bR +bR +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +Ik +nV +Ik +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +pf +FZ +pf +zi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(164,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +Ft +YP +YP +eO +FB +FB +UR +fY +eO +FB +Yq +FB +FB +kP +FB +FB +VM +FB +Yq +FB +FB +FB +Yq +FB +FB +FB +FB +FB +FB +AO +FB +EN +FB +FB +FB +Pe +Yq +lJ +FB +dD +FB +FB +FB +FB +EN +Tt +fY +eZ +Yq +eK +js +js +vM +SN +VS +sY +Lh +Ge +aD +fY +FB +RY +RY +RY +RY +FB +ob +bR +bR +bR +bR +bR +bR +bR +xU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(165,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +xu +zh +cX +cX +kd +kd +bs +fY +eO +FB +FB +FB +FB +AO +FB +FB +FB +EN +FB +FB +wu +FB +EN +IY +FB +Ef +QM +FB +pz +dD +FB +FB +FB +XM +FB +Pe +Yq +cp +Yq +dD +FB +FB +KD +FB +FB +Tt +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +bR +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +JH +JH +JH +JH +JH +JH +JH +GS +GS +GS +JH +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(166,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +ob +ob +ob +ob +ob +ob +ob +ob +eO +FB +EN +FB +cf +FB +FB +aw +FB +Is +OG +FB +FB +FB +AO +FB +FB +FB +FB +GE +FB +dD +FB +FB +OG +yA +FB +Pe +FB +yQ +Yq +FB +EN +FB +FB +FB +iC +Tt +ob +ob +ob +ob +ob +ob +Ut +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +bR +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +we +we +Gp +Gp +we +Gp +we +GS +GS +GS +we +Gp +we +we +Gp +we +GS +GS +Gp +we +Gp +Gp +Gp +GS +GS +Gp +Gp +we +Gp +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(167,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +eO +HA +FB +FB +FB +FB +hT +HA +FB +FB +FB +FB +FB +FB +FB +XM +FB +FB +FB +FB +tv +dD +FB +ay +FB +dD +FB +Pe +FB +FB +FB +dD +FB +XM +FB +FB +FB +Tt +ob +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +Sw +Sw +Sw +Sw +Sw +Sw +Sw +GS +GS +GS +Sw +Sw +Sw +Sw +Sw +Sw +GS +GS +Sw +Sw +Sw +Sw +Sw +GS +GS +Sw +Sw +Sw +Sw +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(168,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +eO +FB +FB +FB +AO +FB +FB +FB +FB +FB +FB +FB +FB +aw +VM +FB +OG +FB +EN +FB +FB +iC +FB +Fr +FB +dD +FB +FB +LF +FB +OG +dD +FB +FB +FB +FB +FB +Tt +ob +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +ri +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(169,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +zh +zh +zh +FB +zh +zh +sC +sC +sC +sC +EO +zh +zh +zh +zh +zh +zh +zh +zh +zh +FB +zh +zh +zh +zh +zh +zh +zh +Hj +zh +zh +Lz +zh +zh +zh +zh +zh +Tt +ob +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +JH +JH +JH +JH +JH +JH +JH +GS +GS +GS +JH +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(170,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +ob +fY +fY +fC +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +DD +fY +fY +fY +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ZO +ob +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +we +HZ +Gp +we +RL +Gp +qV +GS +GS +GS +we +we +Gp +Gp +we +we +GS +GS +Gp +we +Gp +Gp +we +GS +GS +Gp +Gp +Gp +Gp +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(171,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +fK +MS +HX +MS +fK +HX +mq +MS +HX +MS +mq +HX +MS +mq +HX +MS +po +MS +nx +nx +nx +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +Sw +Sw +Sw +Sw +Sw +Sw +Sw +GS +GS +GS +Sw +Sw +Sw +Sw +Sw +Sw +GS +GS +Sw +Sw +Sw +Sw +Sw +GS +GS +Sw +Sw +Sw +Sw +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(172,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +mq +MS +HX +wI +MS +HX +MS +oV +HX +Kp +mq +HX +MS +MS +HX +MS +MS +MS +MS +MS +nx +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(173,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +mq +MS +oV +HX +dA +MS +HX +BE +MS +HX +MS +MS +HX +MS +MS +HX +MS +MS +BE +MS +wI +nx +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +JH +JH +JH +JH +JH +JH +JH +GS +GS +GS +JH +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +JH +GS +GS +JH +JH +JH +JH +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(174,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +MS +MS +MS +MS +lL +MS +MS +MS +MS +BE +MS +MS +MS +oV +wI +MS +MS +MS +MS +MS +vE +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +we +Gp +zj +Gp +Ma +Se +Gp +GS +GS +tW +Gp +Gp +Gp +gh +Co +WB +GS +GS +Gp +Gp +Gp +Gp +we +GS +GS +Gp +we +Gp +we +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(175,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +rg +MS +HX +MS +Pk +HX +MS +MS +HX +MS +mq +HX +BE +MS +HX +MS +MS +Kp +MS +MS +NY +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +xU +GS +GS +Sw +Sw +Sw +Sw +Sw +Sw +Sw +GS +GS +GS +qL +Ve +ZQ +me +Sw +Yk +GS +GS +Sw +Sw +Sw +Sw +Sw +GS +GS +Sw +Sw +Sw +Sw +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(176,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +MS +mq +HX +mq +MS +HX +MS +MS +HX +Kp +MS +HX +MS +MS +HX +MS +MS +MS +MS +MS +ZC +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +bR +xU +YI +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +sJ +Em +Oc +Em +Oc +Em +sJ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(177,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +HX +MS +wI +MS +HX +MS +oV +HX +MS +MS +HX +MS +MS +HX +MS +mq +HX +MS +MS +aU +aU +MS +ZC +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +bR +xU +YI +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +Lr +Lr +jx +Fq +jx +Fq +jx +Lr +Lr +Lr +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(178,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +fY +fY +GR +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +fY +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +fc +fc +fc +fc +fc +fc +fc +fc +fc +fc +WS +Wo +ck +rP +PK +QI +bR +bR +zZ +zZ +zZ +bR +xU +YI +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +Lr +Lr +pq +Lr +pq +Lr +Lr +Lr +Lr +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(179,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +MS +MS +BE +MS +GR +MS +do +BE +MS +DU +MS +MS +MS +MS +MS +MS +mq +BE +MS +MS +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +WS +oq +Vn +tg +ij +yt +bR +bR +zZ +zZ +zZ +bR +xU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +iU +iU +iU +iU +iU +iU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Lr +Lr +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Lr +Lr +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(180,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +rg +MS +MX +MS +fY +MS +MS +MS +MS +MS +MS +TC +MS +fW +wI +MS +MS +MS +MS +MS +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +WS +ci +ij +ij +Vn +Ii +bR +bR +zZ +zZ +zZ +bR +xU +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +xh +xh +xh +xh +xh +xh +iv +Ad +Ad +xr +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +GS +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +Lr +jx +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +jx +Lr +Lr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(181,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +MS +Kp +wI +MS +fY +fY +fY +na +fY +fY +na +fY +fY +na +fY +fY +na +fY +fY +na +fY +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +gI +gI +Vn +Vn +Vn +Vn +Vn +Vn +kA +tr +WS +ci +Vn +Vn +Vn +Ii +bR +bR +zZ +zZ +zZ +bR +xU +Eq +Jz +Jz +Jx +QK +Ck +QK +Ck +xJ +gb +xN +DF +DF +DF +DF +DF +DF +xN +xN +pf +pf +pf +pf +pf +Ya +pf +pf +pf +pf +zi +sJ +sJ +sJ +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Lr +jx +jx +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +jx +jx +Lr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(182,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +BE +MS +MS +Gd +fY +ZJ +MS +MS +fY +Gz +MS +fY +Gh +MS +fY +ZC +MS +fY +Gh +MS +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +WS +WS +AP +WS +WS +WS +WS +WS +WS +WS +WS +ci +Vn +Vn +Vn +Ii +bR +bR +zZ +zZ +zZ +bR +xU +gb +gb +gb +gb +gb +gb +gb +gb +gb +gb +sP +WO +WO +un +un +WV +WV +rd +rd +pf +Yh +fp +yv +sq +fp +wS +wS +wS +wS +zi +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Lr +Lr +Lr +jx +jx +Fq +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Fq +jx +jx +Lr +Lr +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(183,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +mq +MS +hC +MS +fY +aU +MS +DU +fY +aU +MS +fY +AZ +MS +fY +aU +BE +fY +aU +DU +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +Vn +WS +Wo +YK +ZP +RD +DG +WS +Vn +tD +Vn +ij +Vn +bR +bR +zZ +zZ +zZ +bR +xU +hN +gb +gb +gb +gb +gb +gb +gb +gb +gb +YA +WO +WO +WO +WO +WO +WO +WO +WO +pf +Yh +fp +fp +fp +fp +fp +fp +fp +fp +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +Lr +jx +jx +Fq +Fq +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Fq +Fq +jx +jx +Lr +Lr +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(184,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +wI +MS +fK +at +nj +fY +MS +MS +MS +fY +Kp +Aa +fY +MS +DU +fY +MS +mq +fY +MS +MS +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +br +Mi +bR +bR +bR +bR +bR +bR +ij +Vn +ij +Vn +WS +mM +ZM +Vn +Vn +oq +WS +Vn +Vn +ij +ij +Vn +bR +bR +bR +bR +bR +bR +xU +Id +gb +gb +nw +nw +gb +gb +gb +gb +gb +xN +da +WO +Vc +WO +WO +Zt +WO +Df +pf +FI +fp +fp +fp +fp +rv +rv +rv +rv +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Lr +jx +jx +Fq +Fq +jx +ee +ee +ee +CC +CC +Lr +Lr +ee +ee +ee +ee +ee +ee +ee +ee +Lr +Lr +ee +ee +ee +ee +ee +ee +jx +Fq +Fq +jx +jx +Lr +Lr +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(185,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +aS +MS +MS +FR +FR +FR +fY +kw +iL +MS +fY +kw +LG +fY +kw +iL +fY +kw +LG +fY +kw +Nv +MS +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +hx +hx +hx +hx +hx +hx +ij +Vn +ij +tD +WS +mM +ZM +Vn +ZM +qT +WS +ij +dy +hV +Vn +Vn +bR +bR +bR +bR +bR +bR +xU +Ck +gb +aA +Ck +ui +gb +gb +gb +gb +Zb +xN +aM +WO +WO +Zt +WO +WO +WO +Df +pf +FI +fp +fp +fp +fp +fp +fp +fp +fp +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +jx +jx +Fq +Fq +jx +jx +ee +ee +CC +CC +ee +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +jx +jx +Fq +Fq +jx +jx +Lr +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(186,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +ob +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +BV +pW +pW +pW +pW +eX +Vn +tg +ij +Vn +WS +WS +WS +WY +WS +WS +WS +ij +Ul +XL +Vn +tD +bR +bR +bR +bR +bR +bR +xU +dg +gb +Wm +Ck +ui +gb +gb +gb +gb +Zb +xN +up +WO +WO +WO +WO +WO +WO +Df +pf +FI +fp +fp +fp +fp +ZR +ZR +ZR +ZR +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +Lr +Lr +Lr +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +CC +ee +CC +ee +ee +CC +ee +ee +ee +qY +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(187,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +BV +pW +pW +pW +pW +eX +Vn +Vn +ij +Vn +WS +WA +ci +Vn +Ii +WE +WS +tg +Vn +Vn +Vn +Vn +bR +bR +bR +bR +bR +bR +xU +dg +gb +Ng +oP +UQ +gb +gb +gb +gb +Rs +xN +WO +WO +WO +WO +WO +WO +WO +WO +pf +kW +fp +fp +fp +fp +fp +fp +fp +fp +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +Lr +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +ee +ee +ee +ee +qY +ee +ee +ee +ee +ee +ee +CC +CC +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(188,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +hx +hx +hx +hx +hx +hx +Vn +Vn +ij +Vn +WS +WA +ci +ZM +Ii +WA +WS +Vn +Vn +Vn +Vn +ij +bR +bR +zZ +zZ +zZ +bR +xU +Vt +gb +gb +gb +gb +gb +gb +gb +gb +Rs +xN +WO +yS +yS +yS +yS +yS +yS +WO +pf +kW +fp +fp +fp +fp +PW +PW +PW +PW +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +Lr +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +ee +ee +ee +qY +CC +CC +CC +ee +ee +ee +ee +ee +ee +ee +ee +qY +ee +ee +ee +CC +ee +ee +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(189,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +bR +bR +bR +bR +Vn +Vn +ij +Vn +WS +WA +ci +Vn +Ii +WA +WS +Vn +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +bR +xU +Rj +gb +gb +gb +gb +gb +gb +gb +gb +gb +xN +WO +WO +WO +WO +WO +WO +WO +WO +pf +dk +fp +fp +fp +fp +fp +fp +fp +fp +zi +bR +bR +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +qY +ee +ee +ee +qY +CC +ee +CC +qY +ee +qY +qY +ee +qY +ee +ee +CC +ee +qY +CC +CC +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(190,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +bR +bR +bR +bR +Vn +tD +ij +tD +WS +WE +ci +Vn +Ii +WE +WS +WS +CQ +WS +CQ +WS +bR +bR +zZ +zZ +zZ +bR +xU +gG +gb +kq +kq +kq +DB +DB +xW +xW +Zx +xN +db +yS +yS +yS +yS +yS +yS +WO +pf +ow +fp +fp +VK +VK +Tu +Tu +Tu +Tu +zi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +ee +ee +CC +qY +CC +CC +CC +CC +ee +CC +ee +ee +CC +ee +CC +ee +ee +ee +ee +CC +ee +CC +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(191,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +kA +Vn +ij +Vn +WS +WE +ci +ZM +Ii +WA +WS +Vn +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +bR +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +zi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +qY +ee +CC +ee +qY +CC +CC +ee +ee +qY +CC +CC +CC +ee +CC +CC +ee +CC +CC +qY +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(192,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +lA +Vn +Vn +ij +WS +WA +ci +Vn +Ii +WA +WS +Vn +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +bR +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +ee +ee +CC +ee +qY +CC +CC +CC +ee +CC +qY +CC +qY +qY +CC +CC +CC +CC +CC +ee +CC +CC +ee +ee +CC +CC +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(193,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +lA +Vn +Vn +Vn +WS +WA +ci +ZM +Ii +WA +WS +Vn +ZM +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +bR +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +Lr +ee +ee +CC +CC +ee +CC +CC +qY +qY +CC +CC +CC +CC +CC +ee +CC +CC +CC +CC +CC +CC +ee +ee +ee +ee +Lr +CC +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(194,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +lA +Vn +Vn +ij +WS +WA +ci +Vn +Ii +WE +WS +Vn +Vn +Vn +ij +Vn +bR +bR +zZ +zZ +zZ +bR +bR +xU +xU +xU +xU +xU +xU +xU +xU +xU +xU +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +CC +ee +Lr +CC +CC +CC +CC +ee +ee +qY +CC +qY +CC +qY +CC +CC +CC +qY +CC +ee +qY +CC +CC +ee +CC +CC +qY +CC +Lr +CC +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(195,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +lA +Vn +tD +ij +WS +WA +ci +ZM +Ii +WE +WS +hM +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +ee +ee +ee +CC +CC +ee +qY +CC +PU +PU +fd +XX +PU +fd +PU +qY +CC +CC +CC +CC +ee +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(196,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +lA +Vn +Vn +ij +WS +WE +ci +ZM +Ii +WE +WS +Vn +Ju +Vn +fb +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +ee +ee +ee +ee +ee +CC +ee +CC +CC +CC +CC +ee +ee +CC +CC +CC +CC +CC +fd +Nk +Nk +qO +Nk +Nk +PU +CC +CC +CC +CC +CC +ee +ee +ee +ee +ee +ee +ee +CC +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(197,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +mM +Vn +ij +Vn +WS +WE +ci +Vn +Ii +WA +WS +ij +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +ee +ee +ee +ee +ee +CC +CC +CC +CC +qY +ee +ee +CC +ee +ee +qY +CC +qO +Zh +dK +fv +Fh +CC +dK +fd +qO +CC +CC +CC +qY +ee +ee +ee +ee +ee +ee +ee +qY +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(198,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +ij +Vn +ij +Vn +WS +WE +ci +ZM +Ii +WA +WS +ij +FV +Vn +Vn +ij +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +ee +ee +ee +ee +ee +ee +ee +ee +ee +qY +ee +ee +ee +Lr +ee +qY +CC +qO +CC +CC +qO +qO +qO +CC +CC +qO +CC +CC +CC +CC +ee +Lr +CC +CC +ee +CC +CC +CC +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(199,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +ij +tg +ij +Vn +WS +WA +ci +Vn +Ii +WE +WS +Vn +AG +Vn +Vn +ij +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +CC +Lr +qY +CC +CC +qO +qO +qO +qO +Ji +qO +qO +qO +qO +qY +qY +CC +CC +CC +Lr +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(200,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +ij +ij +ij +Vn +WS +WA +ci +yk +Ii +WA +WS +ij +qR +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +sJ +sJ +ee +ee +ee +ee +ee +CC +CC +ee +ee +ee +CC +ee +ee +Lr +ee +qY +CC +qO +CC +CC +qO +qO +qO +CC +CC +qO +CC +qY +qY +CC +ee +Lr +ee +ee +ee +CC +CC +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(201,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +ij +ij +Vn +Vn +WS +WA +ci +Vn +Ii +WE +WS +ij +XL +Vn +Vn +aa +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +ee +ee +ee +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +CC +CC +CC +qO +qi +qO +vk +qO +qY +nW +PU +qO +CC +qY +CC +qY +ee +ee +ee +ee +ee +ee +ee +ee +CC +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(202,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +ij +ij +Ju +WS +WE +ci +Vn +Ii +WE +WS +Vn +ij +Vn +Vn +aa +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +qY +CC +CC +PU +yY +yY +qO +Ks +Ks +PU +CC +CC +CC +CC +ee +ee +CC +qY +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(203,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +Vn +WS +WE +ci +Vn +Ii +WE +WS +Vn +ij +fb +Vn +nE +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +Lr +ee +qY +ee +ee +ee +ee +ee +CC +CC +PU +Ml +PU +XX +PU +fd +PU +CC +CC +CC +CC +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(204,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +WS +WS +CQ +WS +WS +WS +WS +CQ +WS +WS +WS +Vn +Vn +ij +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +Lr +ee +ee +ee +ee +ee +CC +CC +CC +CC +ee +CC +CC +CC +CC +CC +CC +qY +CC +CC +qY +CC +ee +ee +CC +CC +Lr +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(205,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Tz +Vn +Vn +Vn +Vn +WS +DP +Vn +oR +WS +Vn +ZM +Vn +Vn +Vn +Rd +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +qY +ee +ee +qY +ee +CC +CC +qY +CC +CC +qY +CC +CC +CC +qY +CC +qY +CC +CC +CC +ee +ee +ee +ee +Lr +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(206,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +br +Mi +bR +bR +zZ +zZ +bR +bR +mM +Vn +Vn +Vn +Vn +WS +DP +Vn +oR +WS +Vn +Vn +Vn +ij +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +bR +bR +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +WR +hB +gC +hB +WS +Uh +Uh +Uh +fP +fP +Uh +Uh +Uh +WS +hB +gC +jD +hB +WS +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +qY +qY +ee +ee +ee +CC +ee +CC +CC +CC +CC +ee +CC +CC +CC +qY +CC +CC +CC +qY +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(207,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +ns +Vn +Vn +OJ +Vn +WS +DP +Vn +Vn +WS +Vn +Vn +Vn +ZM +ij +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +bR +bR +WS +gt +Uh +Uh +Uh +Uh +Ti +IQ +Uh +Uh +gt +ma +kK +RW +EF +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +Uh +fP +WS +fP +Uh +Uh +fP +Uh +fP +fP +fP +WS +Uh +fP +fP +fP +WS +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +qY +qY +ee +ee +CC +CC +CC +CC +ee +ee +ee +qY +CC +CC +CC +CC +CC +ee +CC +ee +CC +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(208,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +nE +Vn +ij +Vn +Vn +WS +WS +CQ +WS +WS +Vn +fb +Vn +Vn +ij +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +zZ +bR +bR +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Bg +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +WS +uI +uI +WS +WS +fP +fP +Uh +fP +hO +Uh +fP +fP +WS +WS +uI +uI +WS +WS +Lr +Lr +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +ee +ee +qY +ee +ee +CC +qY +CC +CC +ee +qY +CC +ee +CC +qY +ee +ee +CC +CC +CC +qY +ee +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(209,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +pe +Vn +ij +ij +ij +ij +Vn +RX +Vn +ij +ij +Vn +ij +Vn +ij +Vn +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +Uh +Uh +OR +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +gC +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +fP +Uh +Uh +Uh +fP +fP +hO +fP +Uh +fP +fP +Uh +fP +Uh +Uh +fP +WS +Lr +Lr +Lr +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +ee +ee +ee +ee +ee +wY +ee +CC +ee +ee +CC +ee +ee +CC +qY +CC +ee +ee +ee +ee +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(210,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sK +Vn +Dt +ij +Vn +Vn +ij +Vn +ij +Vn +Vn +ij +ij +Vn +ij +Vn +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +NV +Uh +Uh +RK +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +fP +Uh +Uh +hO +Uh +Uh +fP +fP +fP +fP +Uh +fP +fP +fP +fP +Uh +WS +bR +bR +bR +bR +jx +jx +Fq +Fq +jx +jx +Lr +ee +ee +ee +ee +ee +qY +Lr +Lr +ee +CC +ee +ee +ee +qY +ee +ee +Lr +Lr +CC +ee +CC +ee +ee +Lr +jx +jx +Fq +Fq +jx +jx +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(211,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sK +Vn +Dt +Vn +ij +Vn +ij +Ie +Vn +ij +ij +ij +Vn +ZM +ij +Vn +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +zt +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +fP +fP +fP +fP +aO +fP +fP +Uh +Uh +aO +fP +fP +fP +Uh +fP +fP +fP +Uh +WS +bR +bR +bR +bR +Lr +jx +jx +Fq +Fq +jx +jx +ee +ee +ee +ee +ee +ee +qY +ee +ee +ee +CC +CC +ee +ee +CC +CC +CC +ee +ee +ee +ee +ee +ee +jx +jx +Fq +Fq +jx +jx +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(212,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sM +Vn +GH +ZM +Vn +ij +ij +Vn +rx +Bv +nH +Ju +Vn +ij +ij +Vn +oE +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +tB +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +KV +Uh +Uh +Uh +Uh +zt +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +fP +fP +aO +Uh +Uh +fP +aO +fP +fP +fP +Uh +fP +Uh +fP +fP +Uh +WS +bR +bR +zZ +bR +Lr +Lr +jx +jx +Fq +Fq +jx +ee +ee +ee +ee +ee +ee +ee +qY +qY +ee +ee +ee +ee +CC +CC +CC +ee +CC +ee +ee +ee +ee +ee +jx +Fq +Fq +jx +jx +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(213,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sM +Vn +HE +Vn +Vn +ij +ij +Vn +Vn +Vn +Vn +Vn +Vn +ij +Vn +Vn +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +Uh +Uh +Uh +Uh +Uh +Su +Su +tH +Uh +Uh +Uh +Uh +Uh +zt +WS +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +hO +Uh +fP +Uh +Uh +hO +fP +Uh +fP +fP +fP +fP +fP +aO +fP +fP +Uh +WS +bR +zZ +zZ +zZ +Lr +Lr +Lr +jx +jx +Fq +Fq +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +ee +Fq +Fq +jx +jx +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(214,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +RX +Vn +Vn +Vn +ij +Vn +Vn +Vn +Rd +Vn +ij +Vn +Vn +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +WS +Uh +Uh +Uh +Uh +Uh +MK +JP +hy +Uh +Uh +Uh +Uh +Uh +Uh +WS +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +hO +fP +fP +fP +fP +aO +fP +aO +aO +Uh +fP +fP +aO +fP +fP +Uh +Uh +WS +bR +zZ +zZ +zZ +zZ +bR +bR +Lr +jx +jx +Fq +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +CC +CC +CC +ee +ee +ee +ee +ee +ee +Fq +jx +jx +Lr +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(215,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sQ +sQ +sQ +sQ +sQ +ZM +Vn +Vn +ij +Vn +ZM +ij +ij +Vn +Vn +Vn +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +fP +fP +fP +hO +fP +fP +fP +Uh +Uh +aO +fP +fP +fP +fP +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +bR +bR +Lr +Lr +jx +jx +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +jx +jx +Lr +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(216,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +ZM +Vn +Vn +Vn +Vn +ij +ij +ij +ij +Vn +Vn +Vn +li +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +WS +LN +Uh +Uh +NV +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +Uh +fP +fP +Uh +fP +fP +fP +aO +FH +aO +Uh +fP +Uh +fP +fP +fP +fP +fP +WS +bR +zZ +zZ +zZ +zZ +zZ +bR +Lr +Lr +Lr +jx +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +jx +Lr +Lr +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(217,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +WS +dp +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +OR +Uh +Uh +Uh +Uh +WS +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +Uh +fP +fP +fP +aO +Uh +aO +fP +fP +fP +Uh +fP +fP +Uh +fP +fP +fP +fP +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +Lr +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +ee +Lr +Lr +Lr +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(218,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +sQ +sQ +sQ +sQ +sQ +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +li +Vn +li +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +WS +ps +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +oE +Uh +Uh +Uh +Uh +fP +fP +fP +fP +fP +fP +Tb +fP +fP +Uh +fP +fP +fP +hO +mt +fP +fP +Uh +fP +fP +fP +Uh +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +sJ +cn +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(219,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +hx +CQ +CQ +hx +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +WS +gC +Uh +Uh +Uh +Uh +Pg +Uh +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +Uh +Uh +Uh +Uh +Uh +Uh +fP +fP +Uh +Uh +WS +fP +fP +fP +fP +fP +fP +fP +Uh +fP +Uh +Uh +fP +fP +fP +fP +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +pW +pW +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(220,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +bR +bR +bR +bR +bR +bR +hx +Vn +Vn +hx +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +WS +WS +WS +WS +WS +WS +WS +Wb +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +Uh +fP +fP +hO +fP +fP +aO +fP +fP +fP +fP +fP +aO +Uh +fP +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(221,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +hx +Vn +Vn +hx +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Uh +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +Uh +fP +fP +fP +fP +fP +fP +fP +fP +fP +aO +fP +fP +fP +Uh +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(222,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Sm +Vn +Vn +Sm +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +tw +tw +tw +tw +tw +tw +Ny +tw +tw +tw +tw +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +WS +Uh +Uh +fP +aO +fP +fP +fP +aO +Uh +Uh +Uh +aO +Uh +fP +fP +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(223,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Vn +Vn +Vn +Vn +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +Rf +Ud +Ud +Ud +Ud +Ud +Ud +Ud +oK +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +Uh +fP +aO +fP +fP +hO +fP +fP +Uh +fP +fP +fP +fP +Uh +Uh +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(224,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Vn +Vn +Vn +Vn +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +pl +Ud +Ud +Ud +Ud +Ud +Ud +Ud +oK +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +Uh +Uh +fP +fP +aO +fP +Uh +fP +fP +Uh +Uh +fP +fP +fP +fP +Uh +fP +eL +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(225,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Vn +Vn +Vn +Vn +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +ej +pQ +Ud +Ud +Ud +Ud +Ud +Ud +Ud +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +WS +uI +mY +WS +WS +Uh +fP +Uh +fP +fP +Uh +Uh +aO +WS +WS +mY +mY +WS +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(226,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Vn +Vn +Vn +Vn +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +pl +Ud +Ud +Ud +Ud +Ud +Ud +Ud +oK +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +fP +Uh +fP +Uh +WS +fP +Uh +Uh +Uh +Uh +Uh +fP +fP +WS +Uh +fP +fP +Uh +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(227,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +WS +Vn +Vn +hx +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +Rf +Ud +Ud +Ud +Ud +Ud +Ud +Ud +oK +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +hB +sI +hB +pi +WS +fP +Uh +Uh +Uh +Uh +Uh +Uh +Uh +WS +mN +WR +pc +gC +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(228,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +hx +Vn +Vn +hx +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +tw +tw +tw +tw +tw +tw +tw +tw +tw +tw +tw +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(229,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +hx +Vn +Vn +hx +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +Bz +Bz +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(230,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +hx +Il +Il +hx +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +pW +pW +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(231,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +Mi +Mi +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 +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 +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 +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(232,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +br +Mi +pW +pW +pW +pW +pW +pW +pW +pW +Jn +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +Jn +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +pW +Jn +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 +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 +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(233,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(234,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +bR +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(235,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(236,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(237,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(238,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(239,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(240,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(241,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(242,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(243,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(244,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(245,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(246,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(247,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(248,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(249,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(250,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(251,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(252,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(253,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(254,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} +(255,1,1) = {" +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +zZ +"} diff --git a/_maps/bashenka.json b/_maps/bashenka.json deleted file mode 100644 index 0d1ba5f3f4f7..000000000000 --- a/_maps/bashenka.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "version": 1, - "map_name": "Bashenka", - "map_path": "map_files/Bashenka", - "map_file": "bashenka.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_meta", - "emergency": "emergency_meta" - }, - "space_ruin_levels": 0, - "space_empty_levels": 0, - "traits":[ - {"Up": 1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/lava/plasma/ice_moon"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Up": 1, "Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"}, - {"Down": -1, "Linkage": null, "Gravity": true, "Baseturf": "/turf/open/openspace/fastload/planetmos"} - ] -} \ No newline at end of file diff --git a/_maps/blueshift.json b/_maps/blueshift.json new file mode 100644 index 000000000000..fa600ba09823 --- /dev/null +++ b/_maps/blueshift.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "map_name": "Blueshift", + "map_path": "stations", + "map_file": "blueshift.dmm", + "space_ruin_levels": 0, + "space_empty_levels": 0, + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_meta", + "emergency": "emergency_meta" + }, + "traits": [ + { + "Up": 1, + "Baseturf": "/turf/open/space", + "Linkage": "Cross" + }, + { + "Down": -1, + "Up": 1, + "Baseturf": "/turf/open/openspace", + "Linkage": "Cross" + }, + { + "Down": -1, + "Baseturf": "/turf/open/openspace", + "Linkage": "Cross" + } + ] +} diff --git a/_maps/box.json b/_maps/box.json new file mode 100644 index 000000000000..782a3cd2185d --- /dev/null +++ b/_maps/box.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "map_name": "Box", + "map_path": "stations", + "space_ruin_levels": 2, + "map_file": "boxstation.dmm", + "traits": [ + { + "Up": 1, + "Baseturf": "/turf/open/space", + "Linkage": "Cross" + }, + { + "Down": -1, + "Baseturf": "/turf/open/openspace", + "Linkage": "Cross" + } + ], + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + } +} diff --git a/_maps/boxstation.json b/_maps/boxstation.json deleted file mode 100644 index c1e2a2e37c89..000000000000 --- a/_maps/boxstation.json +++ /dev/null @@ -1,28 +0,0 @@ -{ - "version": 1, - "map_name": "Box Station", - "map_path": "map_files/BoxStation", - "space_ruin_levels": 3, - "map_file": [ - "BoxStationWhite_under.dmm", - "BoxStationWhite.dmm" - ], - "traits": [ - { - "Up": 1, - "Baseturf": "/turf/open/space", - "Linkage": "Cross" - }, - { - "Down": -1, - "Baseturf": "/turf/open/openspace", - "Linkage": "Cross" - } - ], - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - } -} diff --git a/_maps/construction.json b/_maps/construction.json new file mode 100644 index 000000000000..0dd89705ed55 --- /dev/null +++ b/_maps/construction.json @@ -0,0 +1,166 @@ +{ + "version": 1, + "map_name": "Construction", + "map_path": "stations", + "map_file": "construction.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + }, + "space_ruin_levels": 0, + "space_empty_levels": 0, + "minetype": "none", + "traits": [ + { + "Linkage": "Self" + } + ], + "job_changes": { + "engineer": { + "total_positions": -1, + "spawn_positions": -1 + }, + "atmos": { + "total_positions": -1, + "spawn_positions": -1 + }, + "scientist": { + "total_positions": 5, + "spawn_positions": 5 + }, + "roboticist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "geneticist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "doctor": { + "total_positions": 5, + "spawn_positions": 5 + }, + "virologist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "chemist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "qm": { + "total_positions": 1, + "spawn_positions": 1 + }, + "cargo_tech": { + "total_positions": 0, + "spawn_positions": 0 + }, + "mining": { + "total_positions": 3, + "spawn_positions": 3 + }, + "bartender": { + "total_positions": 0, + "spawn_positions": 0 + }, + "hydro": { + "total_positions": 0, + "spawn_positions": 0 + }, + "cook": { + "total_positions": 0, + "spawn_positions": 0 + }, + "janitor": { + "total_positions": 0, + "spawn_positions": 0 + }, + "curator": { + "total_positions": 0, + "spawn_positions": 0 + }, + "lawyer": { + "total_positions": 0, + "spawn_positions": 0 + }, + "chaplain": { + "total_positions": 0, + "spawn_positions": 0 + }, + "clown": { + "total_positions": 1, + "spawn_positions": 1 + }, + "mime": { + "total_positions": 1, + "spawn_positions": 1 + }, + "assistant": { + "total_positions": 0, + "spawn_positions": 0 + }, + "detective": { + "total_positions": 0, + "spawn_positions": 0 + }, + "warden": { + "total_positions": 0, + "spawn_positions": 0 + }, + "ai": { + "total_positions": 1, + "spawn_positions": 1 + }, + "cyborg": { + "total_positions": 1, + "spawn_positions": 1 + }, + "veteran": { + "total_positions": 0, + "spawn_positions": 0 + }, + "trader": { + "total_positions": 0, + "spawn_positions": 0 + }, + "paramedic": { + "total_positions": 0, + "spawn_positions": 0 + }, + "psychologist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "botanist": { + "total_positions": 0, + "spawn_positions": 0 + }, + "quartermaster": { + "total_positions": 1, + "spawn_positions": 1 + }, + "cargo_technician": { + "total_positions": 0, + "spawn_positions": 0 + }, + "bomj": { + "total_positions": 0, + "spawn_positions": 0 + }, + "prisoner": { + "total_positions": 0, + "spawn_positions": 0 + }, + "security_officer": { + "total_positions": 1, + "spawn_positions": 1 + }, + "russian_officer": { + "total_positions": 0, + "spawn_positions": 0 + } + } +} diff --git a/_maps/constructionstation.json b/_maps/constructionstation.json deleted file mode 100644 index 4b68f502805b..000000000000 --- a/_maps/constructionstation.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "version": 1, - "map_name": "Construction Station", - "map_path": "map_files/ConstructionStation", - "map_file": "ConstructionStation.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - }, - "space_ruin_levels": 0, - "space_empty_levels": 0, - "minetype": "none", - "traits": [ - { - "Linkage": "Self" - } - ], - "job_changes": { - "engineer": { - "total_positions": -1, - "spawn_positions": -1 - }, - "officer": { - "total_positions": 2, - "spawn_positions": 2 - }, - "hos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hop": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chief_engineer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "rd": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cmo": { - "total_positions": 0, - "spawn_positions": 0 - }, - "atmos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "scientist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "roboticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "geneticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "doctor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "virologist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chemist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "qm": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cargo_tech": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mining": { - "total_positions": 0, - "spawn_positions": 0 - }, - "bartender": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hydro": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cook": { - "total_positions": 0, - "spawn_positions": 0 - }, - "janitor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "curator": { - "total_positions": 0, - "spawn_positions": 0 - }, - "lawyer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chaplain": { - "total_positions": 0, - "spawn_positions": 0 - }, - "clown": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mime": { - "total_positions": 0, - "spawn_positions": 0 - }, - "assistant": { - "total_positions": 0, - "spawn_positions": 0 - }, - "detective": { - "total_positions": 0, - "spawn_positions": 0 - }, - "warden": { - "total_positions": 0, - "spawn_positions": 0 - }, - "ai": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cyborg": { - "total_positions": 0, - "spawn_positions": 0 - }, - "veteran": { - "total_positions": 0, - "spawn_positions": 0 - }, - "trader": { - "total_positions": 0, - "spawn_positions": 0 - }, - "paramedic": { - "total_positions": 0, - "spawn_positions": 0 - }, - "psychologist": { - "total_positions": 0, - "spawn_positions": 0 - } - } -} diff --git a/_maps/crashsite.json b/_maps/crashsite.json deleted file mode 100644 index ee9469fec342..000000000000 --- a/_maps/crashsite.json +++ /dev/null @@ -1,165 +0,0 @@ -{ - "version": 1, - "map_name": "Crash Site", - "map_path": "map_files/CrashSite", - "map_file": "CrashSite.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - }, - "space_ruin_levels": 0, - "space_empty_levels": 0, - "minetype": "none", - "traits": [ - { - "Mining": true, - "Gravity": true, - "Linkage": null, - "Baseturf": "/turf/open/floor/plating/asteroid/airless" - } - ], - "job_changes": { - "engineer": { - "total_positions": -1, - "spawn_positions": -1 - }, - "officer": { - "total_positions": 2, - "spawn_positions": 2 - }, - "hos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hop": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chief_engineer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "rd": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cmo": { - "total_positions": 0, - "spawn_positions": 0 - }, - "atmos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "scientist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "roboticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "geneticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "doctor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "virologist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chemist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "qm": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cargo_tech": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mining": { - "total_positions": 0, - "spawn_positions": 0 - }, - "bartender": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hydro": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cook": { - "total_positions": 0, - "spawn_positions": 0 - }, - "janitor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "curator": { - "total_positions": 0, - "spawn_positions": 0 - }, - "lawyer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chaplain": { - "total_positions": 0, - "spawn_positions": 0 - }, - "clown": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mime": { - "total_positions": 0, - "spawn_positions": 0 - }, - "assistant": { - "total_positions": 0, - "spawn_positions": 0 - }, - "detective": { - "total_positions": 0, - "spawn_positions": 0 - }, - "warden": { - "total_positions": 0, - "spawn_positions": 0 - }, - "ai": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cyborg": { - "total_positions": 0, - "spawn_positions": 0 - }, - "veteran": { - "total_positions": 0, - "spawn_positions": 0 - }, - "trader": { - "total_positions": 0, - "spawn_positions": 0 - }, - "paramedic": { - "total_positions": 0, - "spawn_positions": 0 - }, - "psychologist": { - "total_positions": 0, - "spawn_positions": 0 - } - } -} diff --git a/_maps/map_files/CTF/classic.dmm b/_maps/ctf/classic.dmm similarity index 100% rename from _maps/map_files/CTF/classic.dmm rename to _maps/ctf/classic.dmm diff --git a/_maps/map_files/CTF/cruiser.dmm b/_maps/ctf/cruiser.dmm similarity index 100% rename from _maps/map_files/CTF/cruiser.dmm rename to _maps/ctf/cruiser.dmm diff --git a/_maps/map_files/CTF/downtown.dmm b/_maps/ctf/downtown.dmm similarity index 98% rename from _maps/map_files/CTF/downtown.dmm rename to _maps/ctf/downtown.dmm index 9e11d16f8ffc..9fc3f595baaf 100644 --- a/_maps/map_files/CTF/downtown.dmm +++ b/_maps/ctf/downtown.dmm @@ -240,9 +240,8 @@ /obj/structure/sign/poster/random{ pixel_x = -32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ctf) "fw" = ( /obj/effect/turf_decal/trimline/red/line{ @@ -412,9 +411,8 @@ /obj/structure/table/wood{ resistance_flags = 64 }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ctf) "iy" = ( /obj/effect/turf_decal/trimline/red/line{ @@ -444,9 +442,8 @@ /turf/open/floor/plasteel/dark, /area/ctf) "iQ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ctf) "iW" = ( /obj/effect/turf_decal/stripes/line{ @@ -643,13 +640,6 @@ /obj/effect/decal/cleanable/shreds, /turf/open/floor/plasteel, /area/ctf) -"mf" = ( -/obj/effect/spawner/randomarcade{ - dir = 4; - resistance_flags = 64 - }, -/turf/open/floor/wood, -/area/ctf) "mj" = ( /turf/open/floor/plating/grass, /area/ctf) @@ -1217,10 +1207,7 @@ /turf/open/floor/plasteel, /area/ctf) "yi" = ( -/obj/effect/spawner/randomarcade{ - dir = 8; - resistance_flags = 64 - }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/wood, /area/ctf) "yp" = ( @@ -1762,11 +1749,6 @@ }, /turf/open/floor/plating, /area/ctf) -"Ie" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/ctf) "Ig" = ( /obj/effect/turf_decal/trimline/blue/line{ dir = 1 @@ -1885,21 +1867,6 @@ /obj/effect/decal/cleanable/shreds, /turf/open/floor/plasteel/dark, /area/ctf) -"JZ" = ( -/obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ctf) "Kd" = ( /obj/structure/flora/ausbushes/grassybush, /turf/open/floor/plating/grass, @@ -1952,11 +1919,6 @@ }, /turf/open/floor/plasteel, /area/ctf) -"KN" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/ctf) "KV" = ( /obj/effect/turf_decal/siding/white, /obj/effect/decal/cleanable/oil, @@ -3651,9 +3613,9 @@ Ag BH td Bh -mf yi -mf +yi +yi yi QC oq @@ -3803,9 +3765,9 @@ xs BH td Bh -mf yi -mf +yi +yi yi QC Lr @@ -4148,7 +4110,7 @@ vX dO RU kx -Ie +iQ iv Lr Kh @@ -4373,7 +4335,7 @@ BH BH xf Bx -KN +iQ ql ql fJ @@ -5173,7 +5135,7 @@ Te td rQ vU -JZ +vU vU rQ KD diff --git a/_maps/map_files/CTF/fourSide.dmm b/_maps/ctf/fourSide.dmm similarity index 98% rename from _maps/map_files/CTF/fourSide.dmm rename to _maps/ctf/fourSide.dmm index 2f813f9311e8..4e25f1e6eb3b 100644 --- a/_maps/map_files/CTF/fourSide.dmm +++ b/_maps/ctf/fourSide.dmm @@ -635,21 +635,6 @@ }, /turf/open/floor/plasteel, /area/ctf) -"Ah" = ( -/obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ctf) "AH" = ( /obj/structure/barricade/security/ctf, /obj/effect/turf_decal/tile/yellow, @@ -1176,21 +1161,6 @@ }, /turf/open/floor/plasteel/dark, /area/ctf) -"YW" = ( -/obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ctf) "Zd" = ( /obj/effect/turf_decal/tile/green{ dir = 4 @@ -1959,7 +1929,7 @@ ab sq ow ow -YW +ow sq ab cJ @@ -2571,7 +2541,7 @@ ab ab ow ow -YW +ow ab ab ab @@ -4388,7 +4358,7 @@ wA wA wb cC -Ah +zw Ci wA cJ diff --git a/_maps/map_files/CTF/limbo.dmm b/_maps/ctf/limbo.dmm similarity index 97% rename from _maps/map_files/CTF/limbo.dmm rename to _maps/ctf/limbo.dmm index 27feb85011ad..4f09d95cc82c 100644 --- a/_maps/map_files/CTF/limbo.dmm +++ b/_maps/ctf/limbo.dmm @@ -168,7 +168,6 @@ /area/ctf) "hh" = ( /obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, /turf/open/floor/plasteel/cult, /area/ctf) "hl" = ( @@ -265,10 +264,6 @@ }, /turf/open/floor/carpet/orange, /area/ctf) -"mP" = ( -/obj/structure/barricade/security/ctf, -/turf/open/floor/plasteel/cult, -/area/ctf) "ng" = ( /obj/effect/turf_decal/siding/yellow{ dir = 5 @@ -794,21 +789,6 @@ }, /turf/open/floor/carpet/orange, /area/ctf) -"GX" = ( -/obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/cult, -/area/ctf) "GZ" = ( /obj/effect/portal/permanent{ icon_state = "portal1"; @@ -1156,21 +1136,6 @@ "Xl" = ( /turf/closed/indestructible/riveted/uranium, /area/ctf) -"XC" = ( -/obj/structure/barricade/security/ctf, -/obj/structure/barricade/security/ctf, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cult, -/area/ctf) "Yl" = ( /obj/effect/portal/permanent{ icon_state = "portal1"; @@ -1469,7 +1434,7 @@ vw Tw Tw Tw -mP +hh Tw Tw Xl @@ -1535,9 +1500,9 @@ pz nB Tw Tw -mP hh -mP +hh +hh Tw Xl uh @@ -1603,7 +1568,7 @@ qH Tw Tw Tw -mP +hh Tw Tw Xl @@ -1804,7 +1769,7 @@ uh Xl Tw Tw -mP +hh Tw KY BK @@ -2467,7 +2432,7 @@ ef ef Xl Tw -mP +hh Tw Tw iv @@ -2481,7 +2446,7 @@ Bl Ly Tw Tw -mP +hh Tw Xl ef @@ -2524,7 +2489,7 @@ ny ny ny ep -XC +ep ep ny Xl @@ -2534,7 +2499,7 @@ uh uh Xl Tw -mP +hh Tw Tw jn @@ -2548,7 +2513,7 @@ Bl cu Tw Tw -mP +hh Tw Xl uh @@ -2558,7 +2523,7 @@ uh Xl sl Ga -GX +Ga Ga sl sl @@ -2601,7 +2566,7 @@ ef ef Xl Tw -mP +hh Tw Tw iv @@ -2615,7 +2580,7 @@ Bl Ly Tw Tw -mP +hh Tw Xl ef @@ -3278,7 +3243,7 @@ BK BK YT Tw -mP +hh Tw Tw Xl @@ -3479,7 +3444,7 @@ uh Xl Tw Tw -mP +hh Tw Tw Tw @@ -3545,9 +3510,9 @@ uh uh Xl Tw -mP hh -mP +hh +hh Tw Tw Np @@ -3613,7 +3578,7 @@ uh Xl Tw Tw -mP +hh Tw Tw Tw diff --git a/_maps/dawn.json b/_maps/dawn.json index 2605724e29aa..f7fe9286752f 100644 --- a/_maps/dawn.json +++ b/_maps/dawn.json @@ -1,14 +1,14 @@ { "version": 1, - "map_name": "Dawn", - "map_path": "map_files/Dawn", - "map_file": "dawn.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - }, + "map_name": "Dawn", + "map_path": "stations", + "map_file": "dawn.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + }, "job_changes": { "paramedic": { "total_positions": 0, diff --git a/_maps/deepspace/11x11_2_room_cafeteria.dmm b/_maps/deepspace/11x11_2_room_cafeteria.dmm new file mode 100644 index 000000000000..d5e8a42821a9 --- /dev/null +++ b/_maps/deepspace/11x11_2_room_cafeteria.dmm @@ -0,0 +1,391 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"c" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/tomatojuice{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"h" = ( +/obj/structure/table, +/obj/item/food/tomato_sauce{ + pixel_x = -1; + pixel_y = 11 + }, +/obj/item/food/kebab, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"l" = ( +/obj/effect/decal/cleanable/food/salt, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"m" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"p" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"q" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle/relic{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/food/burger/empoweredburger{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"r" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"s" = ( +/obj/structure/table, +/obj/item/food/hotdog, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"u" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"v" = ( +/obj/item/food/spacefreezy{ + pixel_y = 5 + }, +/obj/item/food/spacefreezy{ + pixel_y = 5 + }, +/obj/structure/closet/secure_closet/freezer/kitchen/mining, +/obj/item/food/spacefreezy{ + pixel_y = 5 + }, +/obj/item/food/spacefreezy{ + pixel_y = 5 + }, +/obj/item/food/hotdog, +/obj/item/food/hotdog, +/obj/item/food/hotdog, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"x" = ( +/obj/structure/table, +/obj/item/food/taco{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_y = 11; + pixel_x = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"y" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/mining, +/obj/item/food/cheesewheel, +/obj/effect/decal/cleanable/food/flour, +/obj/item/food/sandwich{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/food/sandwich{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/food/sandwich{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/food/burger/baconburger{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/food/burger/baconburger{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/food/burger/baconburger{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/food/burger{ + pixel_x = -4 + }, +/obj/item/food/burger{ + pixel_x = -4 + }, +/obj/item/food/burger{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"z" = ( +/obj/structure/table_frame, +/obj/effect/spawner/random/decoration/glowstick/on, +/obj/effect/decal/cleanable/plastic, +/obj/effect/decal/cleanable/shreds, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"B" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"C" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"D" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/food/burger{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"E" = ( +/obj/structure/table/reinforced, +/obj/item/food/pizza/sassysage, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"F" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left" + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"G" = ( +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"I" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"J" = ( +/obj/structure/table/reinforced, +/obj/item/food/pizza/meat, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"K" = ( +/obj/effect/spawner/random/decoration/glowstick/on, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"L" = ( +/obj/structure/table, +/obj/item/food/sandwich{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/flask/det{ + pixel_x = 7 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"M" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"O" = ( +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"S" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_y = 1; + pixel_x = -5 + }, +/obj/item/food/burger/baconburger{ + pixel_y = 5; + pixel_x = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"U" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"X" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/structure/window, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) +"Y" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Z" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) + +(1,1,1) = {" +u +u +u +u +u +p +u +u +u +u +u +"} +(2,1,1) = {" +u +v +y +Z +X +Y +Y +Y +Y +Y +u +"} +(3,1,1) = {" +u +r +K +G +F +Y +m +S +M +Y +u +"} +(4,1,1) = {" +u +B +E +J +I +Y +m +h +M +Y +u +"} +(5,1,1) = {" +Y +C +Y +O +Y +Y +m +x +M +Y +u +"} +(6,1,1) = {" +b +Y +Y +Y +C +Y +l +G +G +Y +u +"} +(7,1,1) = {" +Y +Y +m +D +M +G +m +z +M +Y +u +"} +(8,1,1) = {" +u +Y +m +c +M +G +m +s +M +Y +u +"} +(9,1,1) = {" +u +Y +m +L +M +G +m +q +M +Y +u +"} +(10,1,1) = {" +u +Y +Y +Y +Y +Y +Y +Y +Y +Y +u +"} +(11,1,1) = {" +u +u +u +u +u +U +u +u +u +u +u +"} diff --git a/_maps/deepspace/11x11_vault.dmm b/_maps/deepspace/11x11_vault.dmm new file mode 100644 index 000000000000..27d4e880e3c6 --- /dev/null +++ b/_maps/deepspace/11x11_vault.dmm @@ -0,0 +1,411 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"c" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope, +/obj/effect/mob_spawn/human/corpse/syndicatesoldier, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"d" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity/gold, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"i" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"j" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/silver{ + amount = 50; + pixel_x = -5 + }, +/obj/item/stack/sheet/mineral/silver{ + amount = 50; + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "����������� �����"; + pixel_x = -5 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"m" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/diamond{ + amount = 30 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"o" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/gold{ + amount = 50; + pixel_x = -5 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 50; + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"r" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"s" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 5 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"t" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"u" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"v" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"z" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"A" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"B" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/item/gun/ballistic/revolver/mateba, +/obj/item/ammo_box/a357, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"I" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"K" = ( +/obj/effect/abstract/doorway_marker, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"M" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"N" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Q" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"T" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/door/window/eastright{ + name = "����������� �����"; + pixel_x = 5 + }, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"U" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"V" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/ore_silo, +/turf/open/floor/noslip, +/area/ruin/unpowered) +"W" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +M +M +M +M +M +M +M +M +M +M +M +"} +(2,1,1) = {" +M +I +I +t +I +I +I +t +I +I +b +"} +(3,1,1) = {" +M +I +M +M +M +M +M +M +M +A +b +"} +(4,1,1) = {" +M +t +M +B +N +U +N +r +M +I +b +"} +(5,1,1) = {" +M +I +M +Q +E +l +j +W +v +b +b +"} +(6,1,1) = {" +M +I +M +Q +V +i +m +u +f +c +K +"} +(7,1,1) = {" +M +I +M +Q +s +T +o +W +v +b +b +"} +(8,1,1) = {" +M +t +M +d +O +U +O +z +M +I +b +"} +(9,1,1) = {" +M +I +M +M +M +M +M +M +M +A +b +"} +(10,1,1) = {" +M +I +I +t +I +I +I +t +I +I +b +"} +(11,1,1) = {" +M +M +M +M +M +M +M +M +M +M +M +"} diff --git a/_maps/RuinGeneration/11x8_vaporwave.dmm b/_maps/deepspace/11x8_vaporwave.dmm similarity index 84% rename from _maps/RuinGeneration/11x8_vaporwave.dmm rename to _maps/deepspace/11x8_vaporwave.dmm index 7519ea78d85c..5b0188eedad6 100644 --- a/_maps/RuinGeneration/11x8_vaporwave.dmm +++ b/_maps/deepspace/11x8_vaporwave.dmm @@ -9,6 +9,10 @@ }, /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) +"d" = ( +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/has_grav/powered/aesthetic) "e" = ( /turf/open/floor/holofloor/beach, /area/ruin/space/has_grav/powered/aesthetic) @@ -80,6 +84,14 @@ }, /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) +"z" = ( +/obj/effect/spawner/lootdrop/ruinloot/important, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/has_grav/powered/aesthetic) +"D" = ( +/mob/living/simple_animal/pet/gondola, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/has_grav/powered/aesthetic) "G" = ( /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) @@ -88,14 +100,15 @@ /turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "I" = ( -/turf/closed/wall/rust, +/obj/effect/spawner/random/clothing/costume, +/turf/open/floor/plasteel/vaporwave, /area/ruin/space/has_grav/powered/aesthetic) "L" = ( /obj/effect/overlay/palmtree_l, /turf/open/floor/holofloor/beach, /area/ruin/space/has_grav/powered/aesthetic) "O" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/space/has_grav/powered/aesthetic) "P" = ( /obj/structure/fans/tiny, @@ -114,6 +127,10 @@ /obj/item/instrument/eguitar, /turf/open/floor/holofloor/beach, /area/ruin/space/has_grav/powered/aesthetic) +"V" = ( +/obj/effect/spawner/random/medical/surgery_tool_advanced, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/has_grav/powered/aesthetic) "W" = ( /obj/structure/table/reinforced, /obj/item/clothing/glasses/sunglasses/big{ @@ -134,11 +151,11 @@ (1,1,1) = {" O O -I -I -I O -I +O +O +O +O a "} (2,1,1) = {" @@ -152,7 +169,7 @@ O a "} (3,1,1) = {" -I +O b q q @@ -164,7 +181,7 @@ a (4,1,1) = {" O h -G +d G Z i @@ -173,10 +190,10 @@ O "} (5,1,1) = {" O +V G -G -G -G +D +I G O m @@ -185,14 +202,14 @@ m O v v -G +z G G P X "} (7,1,1) = {" -I +O Q W G @@ -202,13 +219,13 @@ O p "} (8,1,1) = {" -I +O s o G H i -I +O O "} (9,1,1) = {" @@ -222,22 +239,22 @@ O a "} (10,1,1) = {" -I +O L T L r S -I +O a "} (11,1,1) = {" O O -I O -I -I -I +O +O +O +O a "} diff --git a/_maps/deepspace/11x9_botany.dmm b/_maps/deepspace/11x9_botany.dmm new file mode 100644 index 000000000000..d20620f3bfc1 --- /dev/null +++ b/_maps/deepspace/11x9_botany.dmm @@ -0,0 +1,331 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aM" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light, +/turf/open/floor/grass, +/area/ruin/unpowered) +"ca" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/sign/departments/botany/directional/west, +/turf/open/floor/grass, +/area/ruin/unpowered) +"cA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"eh" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"eP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"hQ" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"hY" = ( +/obj/structure/table, +/obj/item/hatchet{ + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"mq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qe" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"sg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"sj" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"sP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"tr" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"vn" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"xq" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"xu" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ay" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Fk" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Hx" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"JN" = ( +/obj/structure/table, +/obj/item/shovel/spade{ + pixel_y = 6 + }, +/obj/item/secateurs{ + pixel_y = 23 + }, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Lb" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"MF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"NH" = ( +/turf/template_noop, +/area/template_noop) +"NT" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Wq" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/sign/departments/botany/directional/west, +/turf/open/floor/grass, +/area/ruin/unpowered) +"XY" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +NH +NH +mj +mj +mj +mj +mj +NH +NH +"} +(2,1,1) = {" +NH +mj +mj +qe +sg +qe +mj +mj +NH +"} +(3,1,1) = {" +mj +mj +cA +tr +eh +tr +cA +mj +mj +"} +(4,1,1) = {" +mj +ca +cA +tr +vn +tr +cA +Wq +mj +"} +(5,1,1) = {" +mj +Lb +cA +tr +eh +tr +cA +aM +mj +"} +(6,1,1) = {" +mj +xq +cA +tr +sj +tr +cA +Hx +mj +"} +(7,1,1) = {" +mj +eP +sP +sP +Ay +sP +sP +MF +mj +"} +(8,1,1) = {" +mj +mq +NT +NT +NT +NT +NT +mq +mj +"} +(9,1,1) = {" +BO +NT +NT +NT +NT +NT +NT +NT +Fk +"} +(10,1,1) = {" +mj +hY +JN +NT +NT +NT +XY +xu +mj +"} +(11,1,1) = {" +mj +mj +mj +mj +hQ +mj +mj +mj +mj +"} diff --git a/_maps/deepspace/12x7_interrogation.dmm b/_maps/deepspace/12x7_interrogation.dmm new file mode 100644 index 000000000000..ba9fcd4196b6 --- /dev/null +++ b/_maps/deepspace/12x7_interrogation.dmm @@ -0,0 +1,676 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/engine, +/area/ruin/unpowered) +"b" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"c" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"d" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ruin/unpowered) +"e" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/table/reinforced, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/restraints/handcuffs, +/obj/item/screwdriver{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"g" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"h" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/wirecutters{ + pixel_x = 1; + pixel_y = -11 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"i" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"j" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/stack/medical/suture/emergency, +/obj/item/stack/medical/suture/emergency{ + pixel_y = 6; + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"k" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"l" = ( +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"m" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"n" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/assistant, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"o" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/item/electropack{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"p" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"q" = ( +/turf/open/floor/plasteel/dark/corner, +/area/ruin/unpowered) +"r" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/chair, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"s" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"t" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"u" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"v" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/item/razor{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/stack/cable_coil{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"w" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"x" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/safe, +/obj/effect/spawner/lootdrop/pins, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"y" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"z" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/melee/baseball_bat{ + desc = "A staple of security force interrogations."; + icon_state = "baseball_bat_metal"; + name = "kneecapper"; + pixel_x = -4 + }, +/obj/item/melee/baseball_bat{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"A" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"B" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"D" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/structure/table/reinforced, +/obj/item/shears{ + pixel_x = -5; + pixel_y = -6 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 7 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"F" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing/right{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/pen{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/item/folder/red{ + pixel_x = -2 + }, +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"G" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"H" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/lockbox/loyalty{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"I" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"J" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/wrench{ + pixel_x = -11 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"K" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/mob_spawn/human/corpse/assistant, +/turf/open/floor/engine, +/area/ruin/unpowered) +"L" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/ruin/unpowered) +"N" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/item/assembly/signaler{ + pixel_y = 5; + pixel_x = 15 + }, +/obj/item/assembly/signaler{ + pixel_y = 3; + pixel_x = 7 + }, +/obj/item/weldingtool{ + pixel_y = 3; + pixel_x = -6 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"P" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Q" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ruin/unpowered) +"R" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"S" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"T" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/ruinloot/security, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"U" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ruin/unpowered) +"V" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing/left{ + dir = 8 + }, +/obj/item/folder/red{ + pixel_x = -2 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"W" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 12; + pixel_x = 1 + }, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"X" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Y" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Z" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) + +(1,1,1) = {" +s +s +s +s +s +s +s +"} +(2,1,1) = {" +s +E +W +y +h +v +s +"} +(3,1,1) = {" +s +f +a +Q +A +J +s +"} +(4,1,1) = {" +s +p +L +r +I +O +s +"} +(5,1,1) = {" +s +e +R +B +K +N +s +"} +(6,1,1) = {" +s +z +u +k +g +o +s +"} +(7,1,1) = {" +s +c +V +b +F +G +s +"} +(8,1,1) = {" +s +t +U +D +d +w +s +"} +(9,1,1) = {" +s +Z +l +i +P +n +s +"} +(10,1,1) = {" +s +H +m +b +q +j +s +"} +(11,1,1) = {" +s +x +S +D +Y +T +s +"} +(12,1,1) = {" +s +s +s +X +s +s +s +"} diff --git a/_maps/RuinGeneration/13x13_corgarmoury.dmm b/_maps/deepspace/13x13_corgarmoury.dmm similarity index 99% rename from _maps/RuinGeneration/13x13_corgarmoury.dmm rename to _maps/deepspace/13x13_corgarmoury.dmm index d482799cd71e..657a0620b711 100644 --- a/_maps/RuinGeneration/13x13_corgarmoury.dmm +++ b/_maps/deepspace/13x13_corgarmoury.dmm @@ -42,7 +42,6 @@ /area/template_noop) "f" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/ruin/unpowered) "i" = ( diff --git a/_maps/deepspace/13x13_corgrobotics.dmm b/_maps/deepspace/13x13_corgrobotics.dmm new file mode 100644 index 000000000000..b0e618287794 --- /dev/null +++ b/_maps/deepspace/13x13_corgrobotics.dmm @@ -0,0 +1,649 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aO" = ( +/turf/closed/wall, +/area/ruin/unpowered) +"ba" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/cable_coil_box, +/obj/item/cable_coil_box, +/obj/item/cable_coil_box, +/obj/item/storage/part_replacer/bluespace/tier3, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"bs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"dd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"de" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/effect/spawner/lootdrop/ruinloot/science, +/obj/effect/spawner/lootdrop/ruinloot/science, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plating, +/area/ruin/unpowered) +"ee" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"fW" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"gc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/table, +/obj/item/mmi/posibrain{ + pixel_y = 6; + pixel_x = -3 + }, +/obj/item/mmi/posibrain{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"jM" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"jP" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"kB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/fire{ + empty = 1; + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ln" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mk" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"nu" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/ruin/unpowered) +"oe" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"oo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"oy" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"pa" = ( +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qp" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 + }, +/obj/machinery/requests_console{ + pixel_y = 32 + }, +/obj/item/stack/sheet/glass{ + amount = 40; + pixel_x = 3; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qH" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"uX" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"wk" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"zu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Bi" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/vending/wardrobe/robo_wardrobe{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Bs" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"BT" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ca" = ( +/obj/effect/spawner/random/decoration/glowstick, +/turf/open/floor/plating, +/area/ruin/unpowered) +"DW" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/item/cautery, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"EZ" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"Fz" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"FZ" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Hb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Iq" = ( +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"JM" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/borg/upgrade/syndicate, +/obj/item/borg/upgrade/thrusters, +/obj/item/borg/upgrade/selfrepair, +/obj/item/borg/upgrade/hypospray/expanded, +/obj/item/borg/upgrade/piercing_hypospray, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"JU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Kj" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"KX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Lh" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/ruin/unpowered) +"LO" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Robotics Deliveries" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"MP" = ( +/obj/structure/curtain, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ni" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"NA" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Oa" = ( +/obj/effect/spawner/random/decoration/glowstick, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Pb" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"Pw" = ( +/turf/template_noop, +/area/template_noop) +"RE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ruin/unpowered) +"RL" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/ruin/unpowered) +"SN" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"TH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Uk" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"UJ" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"UR" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/obj/structure/rack, +/turf/open/floor/plating, +/area/ruin/unpowered) +"VW" = ( +/obj/structure/closet/secure_closet/medical2{ + req_access = list(29) + }, +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"ZS" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +Pb +Pb +Uk +aO +Pb +Pb +Pb +Pb +Pb +Pb +wk +wk +wk +"} +(2,1,1) = {" +Pb +Bs +jM +Iq +fW +wk +UJ +JM +oy +Pb +jM +Oa +jM +"} +(3,1,1) = {" +NA +jM +ln +jM +jM +MP +KX +oo +EZ +Pb +jM +jM +SN +"} +(4,1,1) = {" +Kj +jM +jM +jM +jM +MP +Hb +dd +mk +Pb +jM +jM +jM +"} +(5,1,1) = {" +de +jM +jM +jM +ZS +wk +VW +DW +jP +Pb +wk +nu +wk +"} +(6,1,1) = {" +Pb +Ni +uX +zu +iV +wk +wk +Pb +Pb +Pb +qH +ba +wk +"} +(7,1,1) = {" +Pb +qp +TH +KX +KX +KX +kB +Pb +qH +qH +qH +qH +wk +"} +(8,1,1) = {" +Pb +pa +bs +JU +BT +JU +oe +Pb +qH +wk +wk +wk +wk +"} +(9,1,1) = {" +Pb +bm +bs +BT +BT +BT +LO +FZ +qH +wk +UR +wk +Pw +"} +(10,1,1) = {" +Pb +Fz +bs +gc +BT +gc +Bi +Pb +qH +qH +qH +wk +Pw +"} +(11,1,1) = {" +Pb +RL +Pb +ee +ee +ee +Pb +Pb +Ca +qH +qH +wk +Pw +"} +(12,1,1) = {" +wk +qH +Ca +qH +qH +qH +ba +qH +qH +Lh +RE +wk +Pw +"} +(13,1,1) = {" +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +wk +Pw +"} diff --git a/_maps/RuinGeneration/13x13_donutroom.dmm b/_maps/deepspace/13x13_donutroom.dmm similarity index 92% rename from _maps/RuinGeneration/13x13_donutroom.dmm rename to _maps/deepspace/13x13_donutroom.dmm index 414d96fabcdf..1bc1eddef569 100644 --- a/_maps/RuinGeneration/13x13_donutroom.dmm +++ b/_maps/deepspace/13x13_donutroom.dmm @@ -8,9 +8,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "o" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "s" = ( /turf/open/floor/plasteel, @@ -45,7 +44,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Y" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/13x13_hilberttest.dmm b/_maps/deepspace/13x13_hilberttest.dmm similarity index 98% rename from _maps/RuinGeneration/13x13_hilberttest.dmm rename to _maps/deepspace/13x13_hilberttest.dmm index 1ace68eec39a..adb0b09e9d09 100644 --- a/_maps/RuinGeneration/13x13_hilberttest.dmm +++ b/_maps/deepspace/13x13_hilberttest.dmm @@ -37,7 +37,7 @@ }, /area/ruin/unpowered) "s" = ( -/obj/item/paper/crumpled/docslogs, +/obj/item/paper/fluff/ruins/docslabnotes, /obj/item/pen, /turf/open/floor/plasteel/vaporwave, /area/ruin/unpowered) diff --git a/_maps/deepspace/13x13_medlab.dmm b/_maps/deepspace/13x13_medlab.dmm new file mode 100644 index 000000000000..c7de31f57453 --- /dev/null +++ b/_maps/deepspace/13x13_medlab.dmm @@ -0,0 +1,753 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/bonesetter{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/bonesetter{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/bonesetter{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"aZ" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"bz" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/storage/backpack/duffelbag/med, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"ca" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"cT" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"dJ" = ( +/obj/structure/table/reinforced, +/obj/item/solnce{ + pixel_x = 1 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"dN" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"dS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"er" = ( +/obj/machinery/smartfridge/organ, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"eR" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/hemostat{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/item/hemostat{ + pixel_y = -3 + }, +/obj/item/hemostat{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"fY" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ga" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"gh" = ( +/obj/structure/table/glass, +/obj/item/circular_saw{ + pixel_y = 15 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"gi" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/ruin/unpowered) +"gV" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"hf" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/material, +/area/ruin/unpowered) +"ix" = ( +/obj/structure/table/optable, +/turf/open/floor/circuit/red, +/area/ruin/unpowered) +"kN" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"lu" = ( +/obj/structure/table/glass, +/obj/item/cautery{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/retractor{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"my" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/blood_filter{ + pixel_y = -4 + }, +/obj/item/blood_filter{ + pixel_x = 2 + }, +/obj/item/blood_filter{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"oi" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ow" = ( +/obj/structure/table/optable, +/turf/open/floor/circuit/green, +/area/ruin/unpowered) +"oC" = ( +/obj/structure/table/glass, +/obj/item/surgicaldrill, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"oV" = ( +/obj/structure/table/glass, +/obj/item/hemostat{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"qY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/scalpel{ + pixel_y = 14 + }, +/obj/item/scalpel{ + pixel_y = 7 + }, +/obj/item/scalpel, +/turf/open/floor/light, +/area/ruin/unpowered) +"ry" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 3 + }, +/obj/item/healthanalyzer{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -10 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"td" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"tW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"uA" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"uV" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"wu" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"yL" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ze" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ck" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Medbay Desk" + }, +/obj/item/reagent_containers/glass/bottle/oxandrolone{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/sal_acid{ + pixel_x = 3 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"FE" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Gu" = ( +/obj/structure/table/glass, +/obj/item/surgical_drapes, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"HH" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"HQ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/scalpel, +/obj/item/scalpel{ + pixel_y = 7 + }, +/obj/item/scalpel{ + pixel_y = 14 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"HY" = ( +/obj/structure/table/glass, +/obj/structure/sign/departments/chemistry{ + pixel_x = -31 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ia" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"If" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"IH" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Kq" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"KG" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/poddoor/multi_tile/three_tile_ver{ + id = "solnce_lab" + }, +/obj/machinery/button/door{ + id = "solnce_lab"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"LO" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/item/paper/solnce, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Mt" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/scalpel{ + pixel_y = 14 + }, +/obj/item/scalpel{ + pixel_y = 7 + }, +/obj/item/scalpel, +/turf/open/floor/light, +/area/ruin/unpowered) +"Nk" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"Oh" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"OL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"OU" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8; + name = "Medbay Desk" + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/penacid{ + pixel_x = 7 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"Pe" = ( +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"PL" = ( +/obj/machinery/limbgrower, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"PX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Qm" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"QQ" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 2 + }, +/obj/item/screwdriver{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Rs" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"RR" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"VI" = ( +/turf/open/floor/material, +/area/ruin/unpowered) +"XE" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8; + name = "Medbay Desk" + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/synthflesh{ + pixel_x = 7 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"Zf" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Zr" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Zy" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +ca +"} +(2,1,1) = {" +ca +Qm +fY +HY +RR +eR +Ck +Mt +wu +oC +gh +er +ca +"} +(3,1,1) = {" +ca +IH +Pe +Pe +Pe +Pe +Pe +Pe +Pe +Pe +Pe +oV +ca +"} +(4,1,1) = {" +ca +FE +Pe +ow +Pe +kN +If +kN +Pe +ix +Pe +lu +ca +"} +(5,1,1) = {" +ca +dN +Pe +Rs +Pe +Nk +dJ +aZ +Pe +HH +Pe +Gu +ca +"} +(6,1,1) = {" +ca +PL +Pe +QQ +Pe +kN +LO +kN +Pe +ry +Pe +Zf +ca +"} +(7,1,1) = {" +ca +Zy +Pe +Pe +Pe +Pe +Pe +Pe +Pe +Pe +Pe +Zf +ca +"} +(8,1,1) = {" +ca +ze +Pe +uV +ga +Oh +Oh +Oh +Kq +uA +Pe +gV +ca +"} +(9,1,1) = {" +ca +Zr +td +Zr +ca +cT +cT +KG +ca +Zr +td +Zr +ca +"} +(10,1,1) = {" +ca +bz +Pe +OL +Zr +hf +hf +hf +Zr +Ia +Pe +PX +ca +"} +(11,1,1) = {" +ca +dS +Pe +tW +Zr +VI +VI +VI +Zr +dS +Pe +tW +ca +"} +(12,1,1) = {" +ca +my +OU +qY +ca +yL +VI +oi +ca +HQ +XE +aM +ca +"} +(13,1,1) = {" +ca +ca +ca +ca +ca +ca +gi +ca +ca +ca +ca +ca +ca +"} diff --git a/_maps/deepspace/13x13_shotelroom.dmm b/_maps/deepspace/13x13_shotelroom.dmm new file mode 100644 index 000000000000..3d70a5aa59c1 --- /dev/null +++ b/_maps/deepspace/13x13_shotelroom.dmm @@ -0,0 +1,734 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"aH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"bj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"bM" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"ca" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"ci" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"cm" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"dL" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/dress/skirt/purple, +/obj/item/clothing/under/dress/sundress, +/obj/item/clothing/under/pants/classicjeans, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/genetics_filler, +/obj/effect/spawner/lootdrop/genetics_good, +/turf/open/floor/wood, +/area/ruin/unpowered) +"eK" = ( +/obj/machinery/door/airlock/wood, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/wood, +/area/ruin/unpowered) +"gV" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"hl" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/reagent_containers/food/drinks/drinkingglass/filled/soda{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"hr" = ( +/obj/machinery/door/airlock/wood, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"hB" = ( +/turf/open/floor/carpet/blue, +/area/ruin/unpowered) +"hO" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/wood, +/area/ruin/unpowered) +"hX" = ( +/turf/open/floor/wood, +/area/ruin/unpowered) +"iu" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"iE" = ( +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/item/toy/plush/slimeplushie, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"kG" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"kX" = ( +/obj/item/paper/crumpled/bloody/ruins/lavaland/clown_planet/escape{ + info = "lol"; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/pen/fountain/captain{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"lQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/ruin/unpowered) +"mI" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/genetics_good, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"rn" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/food/cake/chocolate, +/obj/item/kitchen/knife, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"rZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"sl" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/reagent_containers/food/drinks/bottle/applejack{ + pixel_y = 2 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"uE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"vb" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/ruin/unpowered) +"vo" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/storage/fancy/egg_box{ + pixel_y = 12 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"vx" = ( +/obj/item/flashlight/lamp/green, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"xu" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"xv" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"xK" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"zy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"zU" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"AQ" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"BZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"CO" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_x = 1; + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"De" = ( +/obj/effect/turf_decal/siding/blue/corner, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Dm" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"EJ" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Gs" = ( +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"Hf" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"HA" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"HP" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"If" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/wood, +/area/ruin/unpowered) +"IC" = ( +/obj/structure/table/glass, +/obj/item/food/grown/harebell, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"IF" = ( +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"JH" = ( +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/clothing/gloves/color/latex, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ke" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Lq" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ow" = ( +/obj/machinery/door/airlock/public, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"OE" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"OM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Pk" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"PE" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Qn" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Qy" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"QP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Sr" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Sy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"UO" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Va" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"VB" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"WP" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/food/pizzabread, +/obj/item/food/egg{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/food/egg{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/carpet/orange, +/area/ruin/unpowered) +"WZ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Xm" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"XK" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"XZ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Ym" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"ZI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) + +(1,1,1) = {" +XK +cm +Qn +cm +XK +XK +XK +XK +XK +XK +XK +XK +XK +"} +(2,1,1) = {" +XK +cm +cm +cm +Ke +HA +XK +vx +If +EJ +dL +IC +XK +"} +(3,1,1) = {" +XK +cm +cm +cm +ac +gV +XK +AQ +vb +hB +hB +Pk +XK +"} +(4,1,1) = {" +XK +cm +cm +cm +ac +gV +XK +kX +hB +hB +hB +Pk +XK +"} +(5,1,1) = {" +XK +Xm +Xm +cm +iu +Qy +XK +Ym +xu +Sr +jd +OE +XK +"} +(6,1,1) = {" +XK +XK +HP +hr +HP +XK +XK +XK +eK +XK +XK +XK +XK +"} +(7,1,1) = {" +XK +UO +zy +hX +zy +aH +lQ +zy +hX +XK +mI +WZ +XK +"} +(8,1,1) = {" +XK +OM +Sy +Sy +Sy +Sy +ZI +hX +De +HP +rZ +uE +XK +"} +(9,1,1) = {" +XK +qM +iE +iE +iE +iE +QP +hX +hO +Ow +bM +BZ +XK +"} +(10,1,1) = {" +XK +qM +zU +sl +WP +ca +QP +xv +Va +HP +Hf +uE +XK +"} +(11,1,1) = {" +XK +qM +zU +hl +vo +ca +QP +hX +PE +XK +Lq +bj +Dm +"} +(12,1,1) = {" +XK +xK +Gs +rn +kG +VB +XZ +ci +CO +XK +IF +JH +XK +"} +(13,1,1) = {" +XK +XK +XK +XK +XK +XK +XK +XK +XK +XK +XK +XK +XK +"} diff --git a/_maps/RuinGeneration/13x13_supermatter_containment.dmm b/_maps/deepspace/13x13_supermatter_containment.dmm similarity index 88% rename from _maps/RuinGeneration/13x13_supermatter_containment.dmm rename to _maps/deepspace/13x13_supermatter_containment.dmm index 1ba5439a8790..1a0531711bf0 100644 --- a/_maps/RuinGeneration/13x13_supermatter_containment.dmm +++ b/_maps/deepspace/13x13_supermatter_containment.dmm @@ -4,7 +4,7 @@ /turf/open/floor/engine, /area/ruin/unpowered) "c" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "e" = ( /obj/machinery/field/generator, @@ -33,8 +33,11 @@ /turf/open/floor/engine, /area/ruin/unpowered) "K" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"L" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating, /area/ruin/unpowered) "N" = ( @@ -132,7 +135,7 @@ N (6,1,1) = {" c c -c +L c T T @@ -212,7 +215,7 @@ e G G G -c +L T T T diff --git a/_maps/RuinGeneration/13x17_permabrig.dmm b/_maps/deepspace/13x17_permabrig.dmm similarity index 90% rename from _maps/RuinGeneration/13x17_permabrig.dmm rename to _maps/deepspace/13x17_permabrig.dmm index 299b0a76f232..92bf58259dbb 100644 --- a/_maps/RuinGeneration/13x17_permabrig.dmm +++ b/_maps/deepspace/13x17_permabrig.dmm @@ -53,12 +53,12 @@ /turf/open/floor/plating, /area/ruin/unpowered) "kJ" = ( -/obj/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, +/obj/machinery/seed_extractor, /turf/open/floor/plasteel, /area/ruin/unpowered) "lv" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "lG" = ( /obj/structure/toilet{ @@ -67,12 +67,11 @@ /turf/open/floor/plasteel/freezer, /area/ruin/unpowered) "lI" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt2"; - name = "Cell 2" +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass{ + name = "Long-Term Cell 2" }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) "mj" = ( @@ -88,17 +87,9 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "pO" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 1"; - req_access_txt = "2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor, +/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel, /area/ruin/unpowered) "pR" = ( @@ -117,7 +108,6 @@ id_tag = "permabolt3"; name = "Cell 3" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) @@ -244,8 +234,6 @@ /area/ruin/unpowered) "BT" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/ruinloot/security, -/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel, /area/ruin/unpowered) "CC" = ( @@ -253,7 +241,6 @@ id_tag = "permabolt1"; name = "Cell 1" }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) @@ -267,8 +254,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Ez" = ( -/obj/structure/bed, /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel, /area/ruin/unpowered) "EM" = ( @@ -284,14 +271,12 @@ }, /turf/open/floor/plasteel/cafeteria, /area/ruin/unpowered) -"EW" = ( -/turf/closed/wall/r_wall, -/area/ruin/unpowered) "Fz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/paper, /obj/item/pen, +/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel, /area/ruin/unpowered) "FW" = ( @@ -352,9 +337,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "My" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "MX" = ( /obj/effect/turf_decal/tile/red{ @@ -382,14 +366,11 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "NZ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 2"; - req_access_txt = "2" - }, +/obj/machinery/door/airlock/security/glass, +/obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) "Oe" = ( @@ -420,7 +401,6 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel, /area/ruin/unpowered) "Qh" = ( @@ -429,6 +409,7 @@ pixel_x = -12; pixel_y = 2 }, +/obj/effect/spawner/lootdrop/ruinloot/security, /turf/open/floor/plasteel/freezer, /area/ruin/unpowered) "RC" = ( @@ -457,21 +438,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/ruin/unpowered) -"TT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/ruin/unpowered) -"VE" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Long-Term Cell 3"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ruin/unpowered) "VL" = ( /obj/machinery/holopad, /obj/effect/decal/cleanable/dirt, @@ -512,22 +478,22 @@ /area/ruin/unpowered) "ZT" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" Oe Oe Oe -EW -EW -EW -TT -TT -TT -EW -TT -TT +lv +lv +lv +ZT +ZT +ZT +lv +ZT +ZT lv bO xV @@ -535,26 +501,26 @@ ee lv "} (2,1,1) = {" -EW -EW -EW -EW +lv +lv +My +lv hU dQ -NR +Ez NR NR rp NR NR -VE +My bO bO wg lv "} (3,1,1) = {" -EW +lv Jw Nf sa @@ -563,10 +529,10 @@ RC NR VL NR -lv +My PN vM -lv +My bO bO mj @@ -583,8 +549,8 @@ NR NR Ha lv -lv -lv +My +My lv bO bO @@ -592,7 +558,7 @@ VT lv "} (5,1,1) = {" -EW +lv jz jz vY @@ -601,10 +567,10 @@ NR RC NR NR -lv -Ez +My NR -lv +NR +pO bO bO Xh @@ -630,7 +596,7 @@ PW lv "} (7,1,1) = {" -EW +lv Wr jz HD @@ -639,7 +605,7 @@ hq CE NR NR -lv +My RC vM lv @@ -659,8 +625,8 @@ NR NR NR lv -lv -lv +My +My lv bO bO @@ -668,7 +634,7 @@ Me lv "} (9,1,1) = {" -EW +lv AM SX NR @@ -677,10 +643,10 @@ NR NR NR NR -lv +My SO Fz -lv +My bO bO Me @@ -699,17 +665,17 @@ NR CC NR NR -pO +My bO bO Me lv "} (11,1,1) = {" -EW +lv cK -kJ NR +kJ EM pR Ty @@ -725,13 +691,13 @@ MX lv "} (12,1,1) = {" -EW -EW -EW -EW -EW -EW -EW +lv +lv +My +lv +lv +lv +lv xS xh fZ @@ -750,13 +716,13 @@ Oe Oe aW Oe -EW -EW -EW -EW -EW -EW -EW +lv +lv +lv +lv +lv +lv +lv bO AG bO diff --git a/_maps/RuinGeneration/13x17_pizzaroom.dmm b/_maps/deepspace/13x17_pizzaroom.dmm similarity index 95% rename from _maps/RuinGeneration/13x17_pizzaroom.dmm rename to _maps/deepspace/13x17_pizzaroom.dmm index 70e050ac9938..7cd53bf924fd 100644 --- a/_maps/RuinGeneration/13x17_pizzaroom.dmm +++ b/_maps/deepspace/13x17_pizzaroom.dmm @@ -61,6 +61,10 @@ /obj/item/food/pizzaslice/meat, /turf/open/floor/plating/asteroid, /area/ruin/unpowered) +"V" = ( +/obj/item/food/pizza/sassysage, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) (1,1,1) = {" b @@ -154,7 +158,7 @@ e e e d -F +V b "} (6,1,1) = {" @@ -243,7 +247,7 @@ I I I I -G +F G e e diff --git a/_maps/deepspace/13x18_shuttledock.dmm b/_maps/deepspace/13x18_shuttledock.dmm new file mode 100644 index 000000000000..1e6679c5d7f4 --- /dev/null +++ b/_maps/deepspace/13x18_shuttledock.dmm @@ -0,0 +1,511 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/unpowered) +"e" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"h" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "exploration_ex_cargo1"; + name = "Cargo Shutters" + }, +/obj/structure/fans/tiny, +/obj/machinery/button/door{ + id = "exploration_ex_cargo1"; + name = "Cargo Shutters Control"; + pixel_y = 32; + req_access_txt = "49" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"j" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"n" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"o" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"q" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/unpowered) +"s" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/unpowered) +"t" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"u" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"v" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"y" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"z" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"A" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"C" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"D" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "exploration_ex_cargo1"; + name = "Cargo Shutters" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"H" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"I" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"J" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"K" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"M" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"N" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Q" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"R" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"S" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"V" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"W" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"X" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Y" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Z" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) + +(1,1,1) = {" +R +R +R +R +R +R +R +R +R +R +R +R +R +R +e +J +e +I +"} +(2,1,1) = {" +l +z +Z +Z +Z +Z +Z +Z +Z +Z +Z +V +l +R +e +e +e +I +"} +(3,1,1) = {" +z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +V +o +e +e +e +S +"} +(4,1,1) = {" +Z +Z +Z +Z +Z +Z +Z +n +Z +Z +Z +Z +Z +o +e +e +e +I +"} +(5,1,1) = {" +Z +Z +Z +Z +Z +A +N +N +Q +Z +Z +Z +Z +o +e +e +e +I +"} +(6,1,1) = {" +Z +Z +Z +Z +Z +Z +Z +M +Z +Z +Z +Z +Z +o +e +e +e +I +"} +(7,1,1) = {" +K +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Z +Y +o +e +e +e +I +"} +(8,1,1) = {" +l +K +Z +Z +Z +Z +Z +Z +Z +Z +Z +Y +l +R +e +e +e +I +"} +(9,1,1) = {" +R +R +R +h +D +R +R +T +R +R +o +o +R +R +e +e +e +I +"} +(10,1,1) = {" +I +t +C +H +H +O +X +H +y +e +e +e +e +e +e +e +e +e +"} +(11,1,1) = {" +I +u +e +e +e +e +e +e +e +e +e +e +e +e +e +e +e +W +"} +(12,1,1) = {" +I +v +e +e +e +e +e +e +e +c +q +s +c +u +e +e +e +e +"} +(13,1,1) = {" +I +I +I +I +I +I +I +I +I +I +I +I +I +I +e +j +e +I +"} diff --git a/_maps/deepspace/13x9_cratestorage.dmm b/_maps/deepspace/13x9_cratestorage.dmm new file mode 100644 index 000000000000..5b5dde92bf6d --- /dev/null +++ b/_maps/deepspace/13x9_cratestorage.dmm @@ -0,0 +1,315 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"d" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/twenty, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"e" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/o2, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"g" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"i" = ( +/obj/effect/spawner/random/maintenance/eight, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"j" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/engineering, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"m" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"o" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/modular_computer/tablet/pda/clear, +/obj/effect/spawner/lootdrop/ruinloot/important, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"p" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/storage/pill_bottle/stimulant, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"q" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"r" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"s" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"t" = ( +/obj/effect/spawner/random/decoration/glowstick/on, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"u" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/stack/sheet/cardboard/fifty, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"x" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"z" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/spawner/random/exotic/antag_gear, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"C" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/armoury, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"D" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/pai_card, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"G" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"M" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/internals, +/obj/item/storage/firstaid/toxin, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"N" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"U" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"V" = ( +/obj/effect/spawner/lootdrop/genetics_filler, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"X" = ( +/obj/effect/spawner/random/clothing/gloves, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Y" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Z" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/syndicate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +U +U +U +U +U +U +U +U +U +"} +(2,1,1) = {" +U +g +i +p +Y +Y +g +M +U +"} +(3,1,1) = {" +U +O +g +g +C +g +g +u +U +"} +(4,1,1) = {" +U +O +t +g +g +g +g +c +U +"} +(5,1,1) = {" +U +g +g +U +s +g +d +l +U +"} +(6,1,1) = {" +g +g +g +r +x +g +g +g +g +"} +(7,1,1) = {" +G +g +g +r +g +j +g +g +q +"} +(8,1,1) = {" +g +g +g +r +Z +E +g +g +g +"} +(9,1,1) = {" +U +g +g +U +z +g +g +g +U +"} +(10,1,1) = {" +U +g +g +g +g +g +t +N +U +"} +(11,1,1) = {" +U +V +g +g +g +g +g +X +U +"} +(12,1,1) = {" +U +Y +Y +D +g +m +e +o +U +"} +(13,1,1) = {" +U +U +U +U +U +U +U +U +U +"} diff --git a/_maps/RuinGeneration/13x9_josito.dmm b/_maps/deepspace/13x9_josito.dmm similarity index 92% rename from _maps/RuinGeneration/13x9_josito.dmm rename to _maps/deepspace/13x9_josito.dmm index 8731f9502696..78662e9725e8 100644 --- a/_maps/RuinGeneration/13x9_josito.dmm +++ b/_maps/deepspace/13x9_josito.dmm @@ -5,7 +5,7 @@ /area/ruin/unpowered) "c" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/wood, /area/ruin/unpowered) "h" = ( @@ -43,13 +43,13 @@ /area/ruin/unpowered) "p" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/techstorage/medical, +/obj/effect/spawner/random/techstorage/medical_all, /turf/open/floor/carpet/purple, /area/ruin/unpowered) "r" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/spawner/lootdrop/minor/kittyears_or_rabbitears, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/clothing/kittyears_or_rabbitears, /turf/open/floor/carpet/purple, /area/ruin/unpowered) "s" = ( @@ -61,7 +61,7 @@ /turf/open/floor/carpet/purple, /area/ruin/unpowered) "u" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "x" = ( /obj/structure/table/wood, diff --git a/_maps/RuinGeneration/13x9_medical.dmm b/_maps/deepspace/13x9_medical.dmm similarity index 91% rename from _maps/RuinGeneration/13x9_medical.dmm rename to _maps/deepspace/13x9_medical.dmm index a125b75c99d6..50a25734a14c 100644 --- a/_maps/RuinGeneration/13x9_medical.dmm +++ b/_maps/deepspace/13x9_medical.dmm @@ -165,6 +165,18 @@ }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"H" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "I" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line, @@ -208,6 +220,24 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered) +"P" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "Q" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -218,7 +248,7 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "S" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "T" = ( /obj/effect/turf_decal/tile/blue, @@ -345,7 +375,7 @@ S "} (6,1,1) = {" S -j +H Q w K @@ -414,7 +444,7 @@ S s T x -u +P x u t diff --git a/_maps/RuinGeneration/13x9_researchlab.dmm b/_maps/deepspace/13x9_researchlab.dmm similarity index 100% rename from _maps/RuinGeneration/13x9_researchlab.dmm rename to _maps/deepspace/13x9_researchlab.dmm diff --git a/_maps/deepspace/17x11_2_room_corgbar.dmm b/_maps/deepspace/17x11_2_room_corgbar.dmm new file mode 100644 index 000000000000..0bbaaa44dbc4 --- /dev/null +++ b/_maps/deepspace/17x11_2_room_corgbar.dmm @@ -0,0 +1,663 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aW" = ( +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = -1 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"bF" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/machinery/newscaster{ + pixel_y = -30 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"co" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"cZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"dL" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/ruin/unpowered) +"eu" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"iA" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"lc" = ( +/obj/machinery/vending/boozeomat, +/obj/structure/sign/picture_frame/showroom/one{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"mE" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet{ + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"mI" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"nB" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"oF" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/wood, +/area/ruin/unpowered) +"pg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"pM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/beer, +/turf/open/floor/light, +/area/ruin/unpowered) +"pP" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"pR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/glass/rag, +/obj/item/storage/ashtray, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/turf/open/floor/light, +/area/ruin/unpowered) +"qM" = ( +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"rc" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"rC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/ale, +/turf/open/floor/light, +/area/ruin/unpowered) +"sg" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"sn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/safe/floor, +/obj/item/gun/ballistic/shotgun/fallout/cowboy, +/obj/item/ammo_box/fallout/tube357, +/obj/item/ammo_box/fallout/tube357, +/turf/open/floor/wood, +/area/ruin/unpowered) +"sq" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"tb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"tD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/mob/living/carbon/human/species/monkey/angry, +/turf/open/floor/wood, +/area/ruin/unpowered) +"tJ" = ( +/obj/structure/chair/sofa/right, +/obj/item/radio/intercom{ + pixel_x = -28; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"tK" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"uM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"wI" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"yv" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"yT" = ( +/obj/machinery/door/window/southright{ + dir = 8; + name = "Bar Door"; + req_one_access_txt = "25;28" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"zo" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"zI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/reagent_containers/food/drinks/mug/tea, +/turf/open/floor/wood, +/area/ruin/unpowered) +"zZ" = ( +/obj/item/beacon, +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Bh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Cb" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"Co" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/light, +/area/ruin/unpowered) +"CH" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"CL" = ( +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Dz" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"EL" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/wood, +/area/ruin/unpowered) +"FC" = ( +/obj/item/radio/intercom{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"In" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Kp" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"Lb" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"LP" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Od" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Ps" = ( +/obj/machinery/firealarm{ + pixel_y = -24 + }, +/obj/machinery/vending/cola, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Qb" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/item/storage/box/beakers, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Qc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Qj" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"RL" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"TC" = ( +/turf/open/floor/wood, +/area/ruin/unpowered) +"UP" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Ve" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/food/pizzaslice/pineapple{ + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"VL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/ruin/unpowered) +"VP" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"VV" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Wm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"Wn" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) +"XC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"XF" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/ruin/unpowered) +"XX" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) + +(1,1,1) = {" +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +"} +(2,1,1) = {" +uM +XF +tJ +pg +iA +mE +uM +XC +wI +FC +"} +(3,1,1) = {" +Qc +TC +oF +Dz +UP +TC +uM +XC +wI +mI +"} +(4,1,1) = {" +uM +TC +TC +TC +TC +TC +uM +XC +wI +wI +"} +(5,1,1) = {" +VP +TC +TC +TC +TC +TC +VP +VP +VP +VP +"} +(6,1,1) = {" +VP +CL +TC +TC +TC +TC +TC +sg +Cb +VP +"} +(7,1,1) = {" +VP +qM +TC +Lb +zI +sq +TC +Wn +aW +VP +"} +(8,1,1) = {" +VP +tK +TC +TC +TC +TC +TC +Qj +XX +VP +"} +(9,1,1) = {" +nB +dL +TC +zZ +Ve +sq +TC +Kp +pP +VP +"} +(10,1,1) = {" +nB +dL +TC +TC +TC +TC +TC +Wm +bF +VP +"} +(11,1,1) = {" +nB +eu +eu +eu +eu +eu +RL +Qj +rc +VP +"} +(12,1,1) = {" +VP +pR +cZ +rC +Co +pM +yT +CH +Qb +VP +"} +(13,1,1) = {" +VP +co +sn +tb +VL +tD +VV +TC +TC +LP +"} +(14,1,1) = {" +VP +EL +lc +zo +yv +In +Od +Bh +Ps +VP +"} +(15,1,1) = {" +VP +VP +VP +VP +VP +VP +VP +VP +VP +VP +"} diff --git a/_maps/RuinGeneration/17x13_cargo.dmm b/_maps/deepspace/17x13_cargo.dmm similarity index 90% rename from _maps/RuinGeneration/17x13_cargo.dmm rename to _maps/deepspace/17x13_cargo.dmm index 4d01a2347530..2ee83a55fb97 100644 --- a/_maps/RuinGeneration/17x13_cargo.dmm +++ b/_maps/deepspace/17x13_cargo.dmm @@ -44,19 +44,23 @@ /area/ruin/unpowered) "l" = ( /obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "n" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/ruin/unpowered) +"o" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) "r" = ( /obj/structure/rack, /turf/open/floor/mineral/titanium, /area/ruin/unpowered) "s" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/mineral/titanium, /area/ruin/unpowered) "t" = ( @@ -82,12 +86,12 @@ /turf/closed/wall/mineral/plastitanium, /area/ruin/unpowered) "w" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "y" = ( /obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plasteel, /area/ruin/unpowered) "B" = ( @@ -115,12 +119,12 @@ /area/ruin/unpowered) "G" = ( /obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel, /area/ruin/unpowered) "H" = ( /obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel, /area/ruin/unpowered) "I" = ( @@ -141,7 +145,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "M" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "N" = ( /obj/effect/turf_decal/tile/brown{ @@ -388,7 +392,7 @@ K V V V -M +o "} (14,1,1) = {" M @@ -403,7 +407,7 @@ K w V V -M +o "} (15,1,1) = {" M @@ -445,8 +449,8 @@ M M M M -M -M +o +o M M "} diff --git a/_maps/RuinGeneration/17x17_charliecrew.dmm b/_maps/deepspace/17x17_charliecrew.dmm similarity index 78% rename from _maps/RuinGeneration/17x17_charliecrew.dmm rename to _maps/deepspace/17x17_charliecrew.dmm index 7e642e89dc3f..870076712bab 100644 --- a/_maps/RuinGeneration/17x17_charliecrew.dmm +++ b/_maps/deepspace/17x17_charliecrew.dmm @@ -4,18 +4,17 @@ /area/ruin/unpowered) "aY" = ( /obj/effect/decal/remains/human, +/obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "bb" = ( -/obj/item/gun/energy/laser/retro/old{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plasteel, /area/ruin/unpowered) "bs" = ( /obj/machinery/door/airlock/highsecurity, +/obj/effect/mapping_helpers/airlock/locked, /turf/open/floor/plasteel, /area/ruin/unpowered) "bt" = ( @@ -38,6 +37,11 @@ dir = 1 }, /obj/effect/turf_decal/tile/purple, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/obj/machinery/iv_drip, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "dV" = ( @@ -51,8 +55,9 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "fE" = ( -/obj/effect/mob_spawn/human/oldsec, -/turf/open/floor/plasteel/showroomfloor, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, /area/ruin/unpowered) "fF" = ( /obj/machinery/door/airlock/hatch, @@ -71,11 +76,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "hp" = ( -/obj/item/gun/energy/laser/retro/old{ - pixel_x = 2; - pixel_y = 2 - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/horrific_experiment, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "hQ" = ( @@ -87,6 +89,10 @@ }, /obj/effect/turf_decal/tile/purple, /obj/machinery/chem_heater, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "iW" = ( @@ -101,13 +107,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) +"kA" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "kC" = ( -/obj/effect/mob_spawn/human/oldsci, /obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/oldpod, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "lf" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "lk" = ( /turf/closed/wall/r_wall, @@ -115,17 +128,29 @@ "lZ" = ( /obj/structure/table/reinforced, /obj/item/paper/fluff/ruins/oldstation, +/obj/item/storage/toolbox/syndicate, /turf/open/floor/plasteel, /area/ruin/unpowered) -"mj" = ( +"mh" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/table/reinforced, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mj" = ( /obj/item/gun/energy/e_gun/old, /obj/effect/decal/cleanable/dirt, +/obj/structure/safe, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "mW" = ( /obj/machinery/rnd/production/circuit_imprinter, /obj/item/reagent_containers/dropper, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "nX" = ( @@ -138,6 +163,15 @@ /obj/effect/turf_decal/tile/purple{ dir = 4 }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/closet/crate/freezer/blood, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "ps" = ( @@ -169,12 +203,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered) +"vR" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/ruin/unpowered) "wp" = ( /turf/open/floor/carpet/red, /area/ruin/unpowered) "ww" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "wJ" = ( @@ -211,6 +250,10 @@ name = "Robotics Operating Table" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Au" = ( @@ -235,6 +278,13 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Dy" = ( @@ -250,6 +300,9 @@ /obj/effect/turf_decal/tile/purple{ dir = 8 }, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Em" = ( @@ -264,22 +317,39 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "Gu" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "GX" = ( /obj/structure/closet/crate, /obj/item/storage/backpack/old, /obj/item/storage/backpack/old, +/obj/item/gun/energy/laser/retro, /turf/open/floor/plasteel, /area/ruin/unpowered) +"HT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "Iw" = ( /obj/machinery/the_singularitygen, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "JG" = ( -/obj/item/storage/toolbox/syndicate, /obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "Ks" = ( @@ -291,7 +361,6 @@ "KM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, -/obj/item/circular_saw, /obj/item/retractor, /obj/item/hemostat, /obj/item/scalpel{ @@ -300,6 +369,8 @@ /obj/item/cautery{ pixel_x = 4 }, +/obj/item/clothing/neck/stethoscope, +/obj/item/circular_saw, /turf/open/floor/plasteel, /area/ruin/unpowered) "KT" = ( @@ -312,6 +383,10 @@ /obj/item/pen, /turf/open/floor/carpet/red, /area/ruin/unpowered) +"LZ" = ( +/obj/structure/closet/secure_closet/security/science, +/turf/open/floor/carpet/red, +/area/ruin/unpowered) "OX" = ( /obj/machinery/computer{ dir = 4 @@ -321,27 +396,43 @@ /area/ruin/unpowered) "Pd" = ( /obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/fyellow/old, -/obj/item/clothing/gloves/color/fyellow/old, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "Pw" = ( -/obj/structure/showcase/machinery/oldpod, -/obj/effect/decal/cleanable/dirt, +/obj/structure/showcase/machinery/cloning_pod, /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "QB" = ( -/obj/effect/mob_spawn/human/oldeng, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, +/obj/structure/window/reinforced{ + pixel_y = -5 + }, +/turf/open/floor/plasteel/white, /area/ruin/unpowered) "Rr" = ( /turf/open/floor/plasteel/dark, /area/ruin/unpowered) +"SG" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/plasteel, +/area/ruin/unpowered) "Uh" = ( /obj/machinery/rnd/destructive_analyzer, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"UA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/personal, +/obj/item/gun/energy/laser/retro, +/turf/open/floor/plasteel, +/area/ruin/unpowered) "Vu" = ( /obj/structure/table/reinforced, /obj/item/clothing/suit/armor/vest/old, @@ -389,6 +480,10 @@ /obj/item/tank/internals/anesthetic, /obj/item/clothing/mask/breath/medical, /obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -5 + }, /turf/open/floor/plasteel/white, /area/ruin/unpowered) @@ -413,13 +508,13 @@ lf "} (2,1,1) = {" lk -yg +dV dV kC iW -bb +hp aY -yg +Pw lk GX sU @@ -427,15 +522,15 @@ sU wp wp wp -wp +LZ lf "} (3,1,1) = {" lk -Pw +iW bt -Pw -QB +iW +iW iW yg yg @@ -451,15 +546,15 @@ lf "} (4,1,1) = {" lk -yg dV -fE +dV +dV iW ww hp JG lk -uO +fE uO uO Wh @@ -478,7 +573,7 @@ Gu lk lk lk -uO +UA uO uO uO @@ -488,14 +583,14 @@ uO lf "} (6,1,1) = {" -lf +lk wJ VC VC Vu OX Pd -lf +Gu Ks uO uO @@ -507,14 +602,14 @@ sU lf "} (7,1,1) = {" -lf +lk Rr Rr Wt KT gZ Rr -lf +Gu lZ uO sU @@ -526,52 +621,52 @@ sU lf "} (8,1,1) = {" -lf +lk KT Rr Rr KT Rr Rr -lf +Gu te uO -sU -sU -sU -uO -sU -sU +vR +vR +bb +mh +bb +SG lf "} (9,1,1) = {" -lf +lk mj KT kw uh Iw Wc -lf +lk lf fF lf lf lf -lf -lf +Gu +Gu lf lf "} (10,1,1) = {" -lf -lf +lk +lk bs -lf -lf -lf -lf -lf +lk +Gu +Gu +lk +lk sU sU sU @@ -622,7 +717,7 @@ lf "} (13,1,1) = {" lf -nX +HT Uh mW Dg @@ -644,10 +739,10 @@ lf aW td td -aW +QB sU sU -aW +kA td aW td diff --git a/_maps/deepspace/19x19_abandonedzoo.dmm b/_maps/deepspace/19x19_abandonedzoo.dmm new file mode 100644 index 000000000000..afe46f4c8c48 --- /dev/null +++ b/_maps/deepspace/19x19_abandonedzoo.dmm @@ -0,0 +1,1030 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ac" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"ah" = ( +/turf/closed/mineral/random, +/area/ruin/unpowered) +"ai" = ( +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"aj" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"al" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"am" = ( +/mob/living/simple_animal/hostile/poison/bees, +/mob/living/simple_animal/hostile/poison/bees, +/mob/living/simple_animal/hostile/poison/bees, +/mob/living/simple_animal/hostile/poison/bees, +/mob/living/simple_animal/hostile/poison/bees, +/mob/living/simple_animal/hostile/poison/bees, +/turf/open/floor/grass, +/area/ruin/unpowered) +"an" = ( +/mob/living/simple_animal/hostile/poison/bees, +/turf/open/floor/grass, +/area/ruin/unpowered) +"ao" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/ruin/unpowered) +"ap" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub{ + will_burrow = 0 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"aq" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"ar" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"as" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"at" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"au" = ( +/obj/structure/flora/ausbushes/leafybush, +/mob/living/simple_animal/hostile/poison/bees, +/turf/open/floor/grass, +/area/ruin/unpowered) +"av" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"aw" = ( +/obj/structure/flora/rock, +/obj/machinery/light, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"ax" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/clothing/mask/surgical, +/obj/item/razor, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"ay" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"az" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/beakers, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"aB" = ( +/obj/machinery/light, +/mob/living/simple_animal/hostile/poison/bees, +/turf/open/floor/grass, +/area/ruin/unpowered) +"aC" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"aD" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bio Containment"; + req_one_access_txt = "47" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"aE" = ( +/obj/machinery/power/shieldwallgen/anchored, +/turf/open/floor/plating, +/area/ruin/unpowered) +"aG" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/floragun, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aI" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"aL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"aN" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"aP" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/random_virus, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"aR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"aS" = ( +/obj/structure/rack, +/obj/item/melee/baton/cattleprod, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aT" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/eva, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/head/helmet/space/eva, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aU" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/shield/riot, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aV" = ( +/obj/machinery/smartfridge/chemistry, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aW" = ( +/obj/structure/table/reinforced, +/obj/item/gun/syringe, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aX" = ( +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = 4 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aY" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/temperature{ + pin = /obj/item/firing_pin + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"aZ" = ( +/obj/structure/table/reinforced, +/obj/item/cultivator, +/obj/item/shovel, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"ba" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"bb" = ( +/obj/machinery/door/airlock/hatch{ + name = "Bio-Research Station" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"be" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bg" = ( +/obj/machinery/light, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bh" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bi" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/hypospray/medipen/stimpack, +/obj/item/reagent_containers/glass/bottle/mutagen, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bj" = ( +/obj/structure/table/reinforced, +/obj/item/surgicaldrill, +/obj/item/hemostat, +/obj/item/scalpel, +/obj/item/surgical_drapes, +/obj/item/retractor, +/obj/item/cautery, +/obj/item/circular_saw, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bk" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bl" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bm" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bn" = ( +/obj/structure/table/reinforced, +/obj/item/food/carrotfries, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bp" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"br" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bt" = ( +/obj/machinery/power/shieldwallgen/anchored, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bu" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bv" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"bw" = ( +/obj/machinery/light{ + dir = 1 + }, +/mob/living/simple_animal/hostile/carp, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bx" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating, +/area/ruin/unpowered) +"by" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"bz" = ( +/obj/machinery/space_heater, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bA" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"bB" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bC" = ( +/obj/structure/alien/weeds/node, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bD" = ( +/obj/item/clothing/mask/facehugger/dead, +/obj/structure/alien/weeds, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bF" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"bG" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"bH" = ( +/obj/structure/alien/resin/wall, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bI" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bJ" = ( +/mob/living/simple_animal/crab{ + faction = list("carp") + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"bK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/template_noop) +"bL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"bM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"bN" = ( +/obj/structure/grille/broken, +/obj/item/shard{ + icon_state = "small" + }, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bO" = ( +/obj/item/shard, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bP" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"bR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating/airless, +/area/template_noop) +"bT" = ( +/obj/structure/grille, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bU" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"bV" = ( +/obj/machinery/power/shieldwallgen, +/turf/template_noop, +/area/template_noop) +"bW" = ( +/obj/item/shard, +/turf/template_noop, +/area/template_noop) +"bX" = ( +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"lo" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"rY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/cable_coil/cut, +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/wirecutters, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Bb" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/mob/living/simple_animal/hostile/alien/drone, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"GF" = ( +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/sentinel, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"Ng" = ( +/obj/structure/alien/weeds, +/obj/structure/alien/weeds/node, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"QU" = ( +/obj/item/clothing/mask/facehugger/dead, +/obj/structure/alien/weeds, +/mob/living/simple_animal/hostile/alien/maid, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"Vt" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) + +(1,1,1) = {" +bt +ac +ac +ac +ac +bt +aa +aa +aa +aa +aa +aa +bt +ac +ac +ac +ac +bt +aa +"} +(2,1,1) = {" +ac +ah +ai +ar +ah +ac +aK +aK +aK +aK +aK +aK +ac +bu +bv +bI +bv +ac +aa +"} +(3,1,1) = {" +ac +ah +ap +ai +ai +aD +aL +aR +aL +aL +aR +aL +aD +bv +bv +bJ +bv +ac +aa +"} +(4,1,1) = {" +ac +ai +ah +ai +aw +ac +at +at +bb +bb +at +at +ac +bw +bv +bv +bv +ac +aa +"} +(5,1,1) = {" +ac +aj +ai +as +ar +ac +at +aS +ay +ay +be +at +ac +bx +bE +bv +bv +ac +aa +"} +(6,1,1) = {" +bt +ac +ac +ac +ac +aE +at +aT +ay +ay +bf +at +aE +ac +ac +ac +ac +bt +aa +"} +(7,1,1) = {" +aa +aa +aa +at +at +at +at +aU +ay +ay +bg +at +at +by +bF +bK +bK +bR +aa +"} +(8,1,1) = {" +aa +aa +aa +ac +ax +aG +aN +aV +ay +ay +bh +bm +bp +bz +at +at +at +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +ac +ay +ay +aO +ay +ay +ay +ay +ay +ay +ay +bG +bL +lo +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +ac +ay +ay +ay +ay +ay +ay +ay +ay +ay +ay +bG +bM +lo +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +ac +az +aI +aP +aW +ay +ay +bi +bn +br +bA +at +at +at +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +at +at +at +at +aX +ay +ay +bj +at +at +at +at +aa +aa +aa +aa +"} +(13,1,1) = {" +bt +ac +ac +ac +ac +aE +at +aY +ay +ay +bk +at +aE +ac +ac +ac +ac +bt +aa +"} +(14,1,1) = {" +ac +al +an +an +aA +ac +at +aZ +ay +ay +bl +at +ac +bB +Bb +QU +bH +ac +aa +"} +(15,1,1) = {" +at +am +am +ao +aB +ac +at +at +bb +bb +at +at +ac +bC +bH +bH +bB +bT +aa +"} +(16,1,1) = {" +Vt +an +aq +au +am +aD +aL +ba +aL +aL +rY +aL +aD +bD +bB +Ng +bO +bU +bW +"} +(17,1,1) = {" +at +ao +an +av +aC +ac +aQ +aQ +aQ +aQ +aQ +aQ +ac +GF +bB +bB +bX +bP +aa +"} +(18,1,1) = {" +bt +ac +ac +ac +ac +bt +aa +aa +aa +aa +aa +aa +bt +ac +ac +bN +bP +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bV +aa +"} diff --git a/_maps/deepspace/21x17_shuttledock.dmm b/_maps/deepspace/21x17_shuttledock.dmm new file mode 100644 index 000000000000..fe04e002d5b5 --- /dev/null +++ b/_maps/deepspace/21x17_shuttledock.dmm @@ -0,0 +1,690 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo2" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"b" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"c" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"e" = ( +/obj/effect/spawner/random/decoration/glowstick, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/box, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"h" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"i" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"j" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"k" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"n" = ( +/obj/effect/turf_decal/box, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"p" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"q" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"r" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/broken, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"s" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"t" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/dust, +/obj/machinery/light/red, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"u" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"v" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"w" = ( +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/greenglow/filled, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"x" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"z" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"A" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"B" = ( +/obj/effect/turf_decal/box, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"D" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"F" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"G" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"H" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"I" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"J" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"K" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"L" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"M" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"P" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"R" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"S" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/dust, +/obj/machinery/light/red, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"V" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"W" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"X" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Y" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/obj/structure/fans/tiny, +/obj/machinery/button/door{ + id = "exploration_ex_cargo1"; + name = "Cargo Shutters Control"; + pixel_x = 32; + req_access_txt = "49" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Z" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo2" + }, +/obj/structure/fans/tiny, +/obj/machinery/button/door{ + id = "exploration_ex_cargo2"; + name = "Cargo Shutters Control"; + pixel_x = 32; + req_access_txt = "49" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +F +F +F +F +F +F +F +F +F +F +F +F +F +k +h +k +F +"} +(2,1,1) = {" +F +q +k +k +k +k +k +k +k +k +k +k +k +k +k +k +F +"} +(3,1,1) = {" +F +u +k +k +k +k +k +k +k +k +k +k +k +k +k +k +F +"} +(4,1,1) = {" +F +c +k +k +F +F +i +i +i +i +i +F +F +k +k +k +F +"} +(5,1,1) = {" +F +k +k +k +F +R +p +A +A +A +z +R +F +k +k +k +F +"} +(6,1,1) = {" +F +H +e +k +i +p +A +A +A +A +A +z +i +k +k +k +F +"} +(7,1,1) = {" +F +D +k +t +F +A +A +A +A +A +A +A +F +G +e +k +F +"} +(8,1,1) = {" +F +w +V +s +W +A +A +A +A +A +A +A +a +E +k +k +F +"} +(9,1,1) = {" +F +n +V +s +Y +A +A +A +A +A +A +A +Z +E +k +k +F +"} +(10,1,1) = {" +F +f +k +S +F +A +A +A +l +A +A +A +F +T +k +k +F +"} +(11,1,1) = {" +F +H +k +P +F +A +A +A +l +A +A +A +F +M +k +k +F +"} +(12,1,1) = {" +F +k +k +s +v +A +A +X +l +j +A +A +F +B +k +k +F +"} +(13,1,1) = {" +F +k +k +r +F +A +A +A +L +A +A +A +F +k +k +k +F +"} +(14,1,1) = {" +F +k +e +k +i +A +A +A +A +A +A +A +i +k +k +k +F +"} +(15,1,1) = {" +F +k +k +k +i +A +A +A +A +A +A +A +i +k +k +k +F +"} +(16,1,1) = {" +F +k +k +k +i +J +A +A +A +A +A +x +i +k +k +k +F +"} +(17,1,1) = {" +F +k +k +k +F +R +J +A +A +A +x +R +F +k +k +k +F +"} +(18,1,1) = {" +F +k +k +k +F +F +i +i +i +i +i +F +F +k +k +c +F +"} +(19,1,1) = {" +F +k +k +k +k +k +k +k +k +k +k +k +k +k +k +I +F +"} +(20,1,1) = {" +F +k +k +k +k +k +k +k +k +k +k +k +k +k +k +K +F +"} +(21,1,1) = {" +F +k +b +k +F +F +F +F +F +F +F +F +F +F +F +F +F +"} diff --git a/_maps/deepspace/21x17_zavod.dmm b/_maps/deepspace/21x17_zavod.dmm new file mode 100644 index 000000000000..9a3ded32e97b --- /dev/null +++ b/_maps/deepspace/21x17_zavod.dmm @@ -0,0 +1,1045 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bz" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"bD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"cK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"dx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"dL" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"en" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"fG" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"gh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/greenglow/filled, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"gk" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"gr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"gR" = ( +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"hB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"hK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/conveyor, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"im" = ( +/obj/machinery/conveyor, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iv" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor_switch, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iI" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"iO" = ( +/obj/structure/railing/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/turf/open/floor/engine, +/area/ruin/unpowered) +"jl" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"jR" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/structure/plasticflaps, +/turf/open/floor/engine, +/area/ruin/unpowered) +"ke" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"kt" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"kN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"lp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/yellow/filled/arrow_cw{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"lA" = ( +/obj/effect/decal/cleanable/greenglow/filled, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mn" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"mv" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"mF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mQ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"oa" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"pk" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ruin/unpowered) +"pn" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"rD" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/machinery/conveyor_switch, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"rP" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"sJ" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"th" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"ug" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"uC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"uI" = ( +/obj/machinery/conveyor{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"we" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"wo" = ( +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"wH" = ( +/obj/structure/railing/left{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"xq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"xY" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"yt" = ( +/obj/effect/turf_decal/trimline/yellow/corner, +/obj/machinery/conveyor_switch, +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"AO" = ( +/obj/machinery/button/door{ + id = "exploration_ex_cargo2"; + name = "Cargo Shutters Control"; + pixel_x = 32; + req_access_txt = "49" + }, +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"Bl" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"BS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"Ca" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Cz" = ( +/obj/effect/decal/cleanable/wrapping, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"CK" = ( +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"DW" = ( +/obj/structure/railing/left{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ed" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"Ej" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/arrows, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"EK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"Fn" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"Fo" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"GA" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"GH" = ( +/obj/machinery/conveyor{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"GI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Hd" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo2" + }, +/turf/open/floor/plasteel/monofloor, +/area/ruin/unpowered) +"Hi" = ( +/obj/structure/railing/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"Jv" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/turf/open/floor/engine, +/area/ruin/unpowered) +"JC" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Ka" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ki" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Kx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/decal/cleanable/greenglow/filled, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"KL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"KT" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"NZ" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"OH" = ( +/obj/machinery/conveyor, +/turf/open/floor/engine, +/area/ruin/unpowered) +"OJ" = ( +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"OV" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Pc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Pv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"PE" = ( +/turf/open/floor/engine, +/area/ruin/unpowered) +"PM" = ( +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"Qg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/plasteel/dark/corner, +/area/ruin/unpowered) +"Ri" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor_switch, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Sw" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"SG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ruin/unpowered) +"TB" = ( +/obj/effect/decal/cleanable/plasma, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"Ua" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"UP" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Vn" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Vw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "exploration_ex_cargo1"; + name = "Cargo Shutters Control"; + pixel_x = 32; + req_access_txt = "49" + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ruin/unpowered) +"WD" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"WY" = ( +/obj/structure/railing/left{ + dir = 6 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"Yb" = ( +/obj/machinery/conveyor, +/obj/structure/plasticflaps, +/turf/open/floor/engine, +/area/ruin/unpowered) +"YW" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Zs" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Zt" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) + +(1,1,1) = {" +KT +KT +KT +KT +KT +KT +KT +KT +KT +KT +KT +KT +KT +UP +Bl +UP +KT +"} +(2,1,1) = {" +KT +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +Zs +KT +OJ +UP +UP +KT +"} +(3,1,1) = {" +KT +Zs +PE +PE +PE +PE +PE +PE +PE +PE +PE +Zs +JC +mn +UP +UP +KT +"} +(4,1,1) = {" +KT +Zs +PE +OH +OH +OH +ug +PE +PE +PE +PE +Zs +JC +mn +Sw +UP +KT +"} +(5,1,1) = {" +KT +Zs +PE +PE +PE +PE +ug +GH +GH +GH +PE +Zs +JC +mn +lA +UP +KT +"} +(6,1,1) = {" +KT +Zs +PE +OH +OH +OH +ug +PE +PE +PE +PE +Zs +JC +mn +UP +UP +KT +"} +(7,1,1) = {" +KT +Zs +KT +JC +JC +KT +jR +KT +JC +JC +KT +Zs +KT +pk +UP +UP +KT +"} +(8,1,1) = {" +KT +Zs +we +Ua +Ua +wH +sJ +iv +Ua +Ua +DW +Zs +KT +UP +UP +UP +KT +"} +(9,1,1) = {" +KT +jl +cK +cK +GA +lp +sJ +uC +jl +cK +cK +cK +AO +Kx +UP +en +KT +"} +(10,1,1) = {" +KT +kN +bz +th +wo +BS +sJ +Pc +kN +fG +UP +en +Hd +Ej +UP +UP +KT +"} +(11,1,1) = {" +KT +kN +Vn +oa +wo +bD +dx +KL +kN +UP +xY +UP +Hd +Ej +UP +UP +KT +"} +(12,1,1) = {" +KT +kN +Fo +rP +PM +gh +sJ +Pc +Zt +mQ +UP +rP +Hd +Ej +UP +UP +KT +"} +(13,1,1) = {" +KT +dL +pn +pn +EK +lp +sJ +uC +dL +pn +pn +pn +KT +Vw +UP +YW +KT +"} +(14,1,1) = {" +KT +gk +Zs +gk +gk +Ki +sJ +Ri +gk +Ed +cK +GA +KT +UP +UP +UP +KT +"} +(15,1,1) = {" +KT +KT +CK +KT +KT +KT +kt +KT +KT +JC +Ca +JC +KT +OJ +UP +UP +KT +"} +(16,1,1) = {" +KT +GI +Ka +Qg +KT +Hi +ug +Fn +ke +dL +UP +TB +JC +mn +UP +UP +KT +"} +(17,1,1) = {" +KT +hB +UP +gR +JC +hK +ug +PE +Jv +yt +UP +mv +JC +mn +UP +UP +KT +"} +(18,1,1) = {" +OV +gr +UP +gR +JC +Pv +ug +GH +Jv +kN +UP +wo +JC +mn +UP +UP +KT +"} +(19,1,1) = {" +KT +hB +UP +gR +JC +hK +ug +PE +WY +rD +UP +NZ +JC +mn +UP +UP +KT +"} +(20,1,1) = {" +KT +mF +xq +SG +KT +iO +uI +OH +Yb +im +dx +Cz +KT +pk +UP +UP +KT +"} +(21,1,1) = {" +KT +KT +iI +KT +KT +KT +KT +KT +KT +KT +KT +KT +KT +UP +WD +UP +KT +"} diff --git a/_maps/deepspace/21x19_solars.dmm b/_maps/deepspace/21x19_solars.dmm new file mode 100644 index 000000000000..5f81be1cc4df --- /dev/null +++ b/_maps/deepspace/21x19_solars.dmm @@ -0,0 +1,833 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"b" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"e" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"f" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"i" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"j" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"k" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"l" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plating, +/area/ruin/unpowered) +"o" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/template_noop) +"p" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"q" = ( +/turf/template_noop, +/area/template_noop) +"t" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/airless, +/area/template_noop) +"w" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/template_noop) +"y" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"z" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"B" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"E" = ( +/turf/open/floor/plating/asteroid/airless, +/area/template_noop) +"F" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/item/multitool, +/obj/structure/cable, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/ruin/unpowered) +"G" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"I" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"J" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"K" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"L" = ( +/obj/structure/cable, +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/template_noop) +"M" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/template_noop) +"N" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/airless, +/area/template_noop) +"O" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"P" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"Q" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"S" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/smes, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"U" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"V" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"W" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"Z" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) + +(1,1,1) = {" +q +q +q +q +q +q +q +q +q +q +V +q +q +q +q +q +q +q +q +q +q +q +q +z +z +q +q +q +q +"} +(2,1,1) = {" +q +q +q +q +q +q +q +q +q +V +V +V +q +q +q +q +V +V +q +q +q +q +z +z +q +q +q +q +q +"} +(3,1,1) = {" +q +q +q +q +q +W +o +W +i +i +i +i +i +W +W +t +i +i +i +W +q +z +z +q +q +q +q +q +q +"} +(4,1,1) = {" +q +q +q +q +q +W +q +G +V +G +V +G +V +z +q +G +V +G +V +W +z +z +q +q +q +q +q +q +q +"} +(5,1,1) = {" +q +q +q +q +q +i +V +M +J +M +V +M +J +M +V +w +J +M +V +W +z +q +q +q +q +q +q +q +q +"} +(6,1,1) = {" +q +q +q +q +q +i +G +M +J +M +V +M +J +M +V +w +J +M +G +G +V +q +q +q +q +q +q +q +q +"} +(7,1,1) = {" +q +q +q +q +V +i +V +M +J +M +G +M +J +M +G +w +J +M +V +G +V +V +V +V +q +q +q +q +q +"} +(8,1,1) = {" +q +q +q +V +V +G +G +M +J +M +V +M +J +M +V +w +J +M +G +G +G +G +G +G +G +G +z +q +q +"} +(9,1,1) = {" +q +q +i +i +i +G +V +M +k +M +V +M +k +M +V +w +k +M +V +G +V +V +V +V +f +f +f +f +f +"} +(10,1,1) = {" +q +q +i +V +G +V +V +V +k +V +V +V +k +E +V +V +k +E +V +G +V +V +b +b +b +K +Z +j +f +"} +(11,1,1) = {" +q +q +i +G +P +k +k +k +k +k +k +k +k +N +k +k +k +N +k +k +k +k +B +U +I +U +j +j +l +"} +(12,1,1) = {" +q +q +i +V +G +a +V +V +k +V +V +V +k +E +V +V +k +E +V +G +V +V +b +b +b +F +p +S +O +"} +(13,1,1) = {" +q +q +i +Q +i +z +q +M +k +L +V +M +k +L +V +M +k +M +V +G +V +V +V +V +f +f +f +f +f +"} +(14,1,1) = {" +q +q +q +q +q +z +G +M +J +L +V +M +J +L +V +M +J +M +G +G +G +G +G +G +G +G +G +f +q +"} +(15,1,1) = {" +q +q +q +q +q +i +V +M +J +L +G +M +J +L +G +M +J +M +V +G +V +q +q +z +V +V +V +f +q +"} +(16,1,1) = {" +q +q +q +q +q +i +G +M +J +L +V +M +J +L +V +M +J +M +G +z +q +q +q +z +q +V +V +f +q +"} +(17,1,1) = {" +q +q +q +q +V +i +V +M +J +L +q +M +J +L +V +M +J +M +V +i +z +z +z +z +f +f +f +f +f +"} +(18,1,1) = {" +q +q +q +q +V +i +V +G +V +G +q +z +V +G +V +G +y +q +V +i +V +q +q +q +b +j +j +j +f +"} +(19,1,1) = {" +q +q +q +V +V +i +i +i +W +W +W +W +W +i +i +i +W +o +W +i +G +V +q +G +e +j +j +j +l +"} +(20,1,1) = {" +q +q +q +V +V +V +V +q +q +q +q +q +q +V +V +V +q +q +q +z +G +V +V +V +b +j +j +j +f +"} +(21,1,1) = {" +q +q +q +q +V +V +q +q +q +q +q +q +q +q +V +q +q +q +q +q +z +G +V +V +f +f +f +f +f +"} diff --git a/_maps/deepspace/21x21_singularity.dmm b/_maps/deepspace/21x21_singularity.dmm new file mode 100644 index 000000000000..3635a5b4e327 --- /dev/null +++ b/_maps/deepspace/21x21_singularity.dmm @@ -0,0 +1,630 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"b" = ( +/obj/structure/particle_accelerator/particle_emitter/left, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"c" = ( +/turf/open/floor/plasteel, +/area/ruin) +"d" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin) +"f" = ( +/obj/machinery/field/generator/anchored, +/turf/open/floor/plating/no_generation, +/area/template_noop) +"g" = ( +/turf/closed/wall/riveted_wall, +/area/ruin) +"j" = ( +/obj/structure/sign/warning/radiation{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"l" = ( +/obj/machinery/the_singularitygen, +/turf/open/floor/plating/no_generation, +/area/template_noop) +"m" = ( +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"n" = ( +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin) +"o" = ( +/obj/machinery/power/rad_collector, +/turf/open/floor/plating/no_generation, +/area/template_noop) +"p" = ( +/obj/machinery/power/rad_collector, +/turf/open/floor/plasteel, +/area/ruin) +"q" = ( +/obj/structure/sign/warning/radiation{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"s" = ( +/obj/structure/particle_accelerator/power_box, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"v" = ( +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"x" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/ruin) +"z" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/ruin) +"A" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin) +"C" = ( +/turf/closed/wall/r_wall, +/area/ruin) +"D" = ( +/obj/structure/particle_accelerator/end_cap, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"E" = ( +/obj/machinery/computer, +/turf/open/floor/plasteel, +/area/ruin) +"F" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin) +"G" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"J" = ( +/obj/structure/particle_accelerator/particle_emitter/center, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"M" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"N" = ( +/obj/effect/decal/fakelattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"P" = ( +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"Q" = ( +/obj/structure/particle_accelerator/particle_emitter/right, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"R" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ruin) +"S" = ( +/turf/open/floor/plating/no_generation, +/area/template_noop) +"T" = ( +/obj/structure/particle_accelerator/fuel_chamber, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"U" = ( +/obj/machinery/particle_accelerator/control_box, +/turf/open/floor/plasteel/durasteel, +/area/ruin) +"W" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin) +"X" = ( +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +X +X +X +X +X +g +g +g +g +c +G +c +g +g +g +g +X +X +X +X +X +"} +(2,1,1) = {" +X +X +g +g +g +g +z +c +c +c +c +c +c +c +z +g +g +g +g +X +X +"} +(3,1,1) = {" +X +g +g +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +g +g +X +"} +(4,1,1) = {" +X +g +j +c +c +c +c +c +p +c +c +c +c +c +c +c +c +c +q +g +X +"} +(5,1,1) = {" +X +g +c +c +c +c +c +c +n +c +c +p +n +c +c +c +c +c +c +g +X +"} +(6,1,1) = {" +g +g +c +c +c +C +C +C +R +R +R +R +R +R +C +C +c +c +c +g +g +"} +(7,1,1) = {" +g +c +c +c +c +P +v +P +M +N +M +N +M +N +M +C +x +c +c +c +g +"} +(8,1,1) = {" +g +c +c +c +c +C +C +C +N +o +o +o +N +o +N +R +E +c +c +c +g +"} +(9,1,1) = {" +g +c +c +v +v +v +v +R +f +a +M +a +f +N +M +R +E +W +c +c +g +"} +(10,1,1) = {" +c +c +v +v +U +v +b +R +a +S +S +S +a +o +N +R +E +c +c +c +c +"} +(11,1,1) = {" +d +c +v +D +T +s +J +R +M +S +l +S +M +S +M +C +x +c +c +c +A +"} +(12,1,1) = {" +c +c +v +v +v +v +Q +R +a +S +S +S +a +o +N +R +E +c +c +c +c +"} +(13,1,1) = {" +g +c +c +v +v +v +v +R +f +a +M +a +f +N +M +R +E +W +c +c +g +"} +(14,1,1) = {" +g +c +c +c +c +C +C +C +N +o +o +o +N +o +N +R +E +c +c +c +g +"} +(15,1,1) = {" +g +c +c +c +c +P +v +P +M +N +M +N +M +N +M +C +x +c +c +c +g +"} +(16,1,1) = {" +g +g +c +c +c +C +C +C +R +R +R +R +R +R +C +C +c +c +c +g +g +"} +(17,1,1) = {" +X +g +c +c +c +c +c +c +m +c +c +p +m +c +c +c +c +c +c +g +X +"} +(18,1,1) = {" +X +g +j +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +g +X +"} +(19,1,1) = {" +X +g +g +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +g +g +X +"} +(20,1,1) = {" +X +X +g +g +g +g +z +c +c +c +c +c +c +c +z +g +g +g +g +X +X +"} +(21,1,1) = {" +X +X +X +X +X +g +g +g +g +c +F +c +g +g +g +g +X +X +X +X +X +"} diff --git a/_maps/deepspace/22x11_dissecting_room.dmm b/_maps/deepspace/22x11_dissecting_room.dmm new file mode 100644 index 000000000000..270c9cb07f5f --- /dev/null +++ b/_maps/deepspace/22x11_dissecting_room.dmm @@ -0,0 +1,1885 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"aj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/ruin/unpowered) +"aM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 9; + pixel_x = 7 + }, +/obj/item/bonesetter, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 15; + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"aZ" = ( +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"bz" = ( +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"cT" = ( +/obj/effect/turf_decal/trimline/brown/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs{ + pixel_y = 17 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"dC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/folder/red{ + pixel_y = 2; + pixel_x = -2 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"dJ" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"dN" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/leaper_sludge, +/turf/open/floor/plasteel/monofloor, +/area/ruin/unpowered) +"dS" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/item/wrench{ + pixel_y = -10; + pixel_x = -2 + }, +/obj/item/screwdriver{ + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"dT" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -10 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"eb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"er" = ( +/obj/machinery/smartfridge/organ, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"eR" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"fd" = ( +/obj/effect/decal/cleanable/plastic, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"fA" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/item/multitool{ + pixel_y = -10; + pixel_x = 4 + }, +/obj/item/wirecutters{ + pixel_y = 6; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"fQ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"fY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 4 + }, +/obj/item/weldingtool{ + pixel_y = -10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"ga" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "right"; + name = "First-Aid Supplies" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"gh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"gi" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"gV" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"hf" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"hP" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = -1; + pixel_x = 2 + }, +/obj/item/breathing_bag{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"ig" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"iu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/disk/design_disk/limbs/lizard{ + pixel_y = 7; + pixel_x = -2 + }, +/obj/item/disk/design_disk/limbs/plasmaman{ + pixel_y = -1; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ix" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"jb" = ( +/obj/effect/turf_decal/trimline/yellow/line, +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"ka" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "First-Aid Supplies" + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/clothing/gloves/color/latex/nitrile/polymer{ + pixel_y = -11 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"kc" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"kq" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"kN" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"lu" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"lY" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/wrapping, +/obj/effect/decal/cleanable/plasma, +/obj/effect/decal/cleanable/robot_debris, +/obj/effect/decal/cleanable/molten_object, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"ma" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"my" = ( +/obj/effect/turf_decal/trimline/red/warning, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"mH" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/decal/cleanable/blood/gibs{ + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"nj" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"nx" = ( +/obj/effect/decal/cleanable/shreds, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"nA" = ( +/obj/effect/turf_decal/trimline/brown/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"nE" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"nN" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"oa" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/item/scalpel{ + pixel_y = 7 + }, +/obj/item/retractor{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/cautery{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"oi" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/smartfridge/organ/alien, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ot" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/item/crowbar{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"ow" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"oC" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/item/storage/organbox, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"oV" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"pi" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/item/organ/zombie_infection, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"ps" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"qY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/corner, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/blood/lizard{ + pixel_y = 5; + pixel_x = -2 + }, +/obj/item/reagent_containers/blood/lizard{ + pixel_x = 6 + }, +/obj/item/blood_filter{ + pixel_y = -9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"qZ" = ( +/obj/structure/table/optable, +/obj/item/bodypart/chest/alien, +/obj/effect/decal/cleanable/insectguts{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/greenglow{ + pixel_y = -11 + }, +/obj/item/bodypart/r_arm/alien{ + pixel_x = -10 + }, +/obj/item/bodypart/head/alien{ + pixel_x = 9; + pixel_y = -7 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"rd" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/corner, +/obj/structure/table/reinforced, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"ry" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/item/shears{ + pixel_x = -4; + pixel_y = 16 + }, +/obj/item/circular_saw{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"td" = ( +/obj/structure/table/optable, +/mob/living/simple_animal/hostile/vanya/killermeat{ + maxHealth = 500; + health = 500 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/decal/cleanable/blood/gibs{ + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"te" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"tW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/organ/body_egg/alien_embryo, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"uA" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/gun/syringe, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/atropine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"uP" = ( +/obj/effect/turf_decal/trimline/purple/line, +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/ethereal, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"uU" = ( +/obj/item/bodypart/l_arm/alien, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"uV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/item/bodypart/head/robot{ + pixel_y = 11 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/bodypart/r_arm/robot{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/bodypart/l_leg/robot{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/bodypart/r_leg/robot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/bodypart/chest/robot, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"vW" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"ws" = ( +/obj/effect/turf_decal/trimline/purple/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"wu" = ( +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"wV" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 18; + pixel_x = -14 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 12; + pixel_x = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"xa" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"xk" = ( +/obj/effect/decal/cleanable/xenoblood{ + pixel_y = 6; + pixel_x = 14 + }, +/obj/item/bodypart/r_leg/alien{ + pixel_x = 17; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/xenoblood/xgibs/larva, +/obj/effect/decal/remains/xeno/larva, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"xm" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/russian, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"xo" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"xr" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"xw" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"xM" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 12; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 11; + pixel_x = 15 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"yL" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"yO" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"yU" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/geiger_counter{ + pixel_y = 3; + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"ze" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/purple/line, +/obj/structure/closet/crate/freezer/blood, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"zj" = ( +/obj/effect/turf_decal/trimline/red/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"BP" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"BQ" = ( +/obj/structure/safe, +/obj/item/autosurgeon/organ, +/obj/item/autosurgeon/organ/hud/medical, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Ck" = ( +/obj/effect/turf_decal/trimline/green/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"DV" = ( +/obj/effect/turf_decal/box/white/corners, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"Ea" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"El" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Fp" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"Fz" = ( +/obj/structure/table/glass, +/obj/item/gun/medbeam, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"FE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"Gh" = ( +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Gu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"GI" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 15; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 11; + pixel_x = -9 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"GY" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 8; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 8; + pixel_x = 14 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"Hi" = ( +/obj/effect/turf_decal/trimline/blue/warning, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 1; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Hv" = ( +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"HD" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"HH" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"HQ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/healthanalyzer{ + pixel_y = -9 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"HY" = ( +/obj/effect/turf_decal/trimline/green/corner, +/obj/structure/table, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 2 + }, +/obj/item/pen{ + pixel_x = -1 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"Ia" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/material, +/area/ruin/unpowered) +"If" = ( +/obj/effect/turf_decal/trimline/green/warning{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/splatter{ + pixel_y = -12; + pixel_x = -12 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"Ih" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 11; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + icon_state = "splatter2"; + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"Ii" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4; + pixel_y = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"Io" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_y = 13 + }, +/obj/effect/mob_spawn/human/corpse/cargo_tech, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Iv" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 8 + }, +/obj/item/scalpel{ + pixel_y = 14 + }, +/obj/item/hemostat{ + pixel_y = -3 + }, +/obj/item/surgicaldrill, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"IH" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"Jj" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 6; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = 8; + pixel_x = 18 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"Jr" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Kq" = ( +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Kr" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Kw" = ( +/obj/structure/table/optable, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/russian/ranged/officer, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Kx" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/robot_debris, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"KG" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"KZ" = ( +/obj/effect/turf_decal/trimline/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"LO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/cat_butcher, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"Md" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Mt" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"MA" = ( +/obj/item/bodypart/l_leg/alien, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"MJ" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"MQ" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 2 + }, +/obj/item/pen{ + pixel_x = -1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"Nk" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"Nz" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/end{ + dir = 8 + }, +/obj/effect/mob_spawn/human/corpse/der_cmo, +/obj/item/gun/ballistic/revolver/russian, +/turf/open/floor/plasteel/monofloor, +/area/ruin/unpowered) +"NM" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"Oh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/disk/design_disk/limbs/ethereal{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/disk/design_disk/limbs/felinid{ + pixel_y = -10; + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"OL" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"OU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"OX" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/line{ + dir = 4 + }, +/obj/item/bodypart/chest/larva{ + pixel_x = 6 + }, +/obj/item/bodypart/head/larva{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"Pb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"Pe" = ( +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"PL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"PX" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Qm" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"QQ" = ( +/obj/structure/table/reinforced, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/corner{ + dir = 8 + }, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"Rs" = ( +/obj/effect/turf_decal/trimline/green/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"RQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/item/mmi{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"RR" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"Sm" = ( +/obj/effect/turf_decal/trimline/brown/line, +/obj/effect/decal/cleanable/xenoblood/xgibs{ + pixel_y = -17; + pixel_x = -10 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"SQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "First-Aid Supplies" + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Ui" = ( +/obj/effect/decal/cleanable/blood/tracks{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plasteel/freezer, +/area/ruin/unpowered) +"UU" = ( +/obj/effect/turf_decal/trimline/green/line{ + dir = 1 + }, +/obj/structure/closet/body_bag, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"VI" = ( +/obj/machinery/limbgrower, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"VX" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"XE" = ( +/obj/effect/turf_decal/trimline/purple/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"Ya" = ( +/obj/effect/turf_decal/trimline/yellow/warning, +/obj/effect/decal/cleanable/blood/splatter{ + pixel_y = 15 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Yo" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_y = -12; + pixel_x = -8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/unpowered) +"YV" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/brown/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"Zf" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/item/folder/yellow{ + pixel_y = 2; + pixel_x = 3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"Zr" = ( +/obj/effect/spawner/structure/window/survival_pod, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Zy" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +nE +nE +nE +nE +nE +Ia +nE +nE +nE +nE +nE +"} +(2,1,1) = {" +nE +HY +RR +eR +Ck +te +wu +oC +gh +er +nE +"} +(3,1,1) = {" +nE +Rs +Pe +Pe +dJ +GI +zj +Pe +Hv +xm +nE +"} +(4,1,1) = {" +nE +ow +Kw +Pe +If +Jj +my +Pe +xr +lu +nE +"} +(5,1,1) = {" +nE +Rs +Pe +Pe +UU +ps +zj +Kr +Pe +oV +nE +"} +(6,1,1) = {" +nE +QQ +Iv +pi +LO +xM +hf +dC +ry +RQ +nE +"} +(7,1,1) = {" +nE +rd +nN +OX +Gu +ps +fQ +fY +fA +Zf +nE +"} +(8,1,1) = {" +nE +OL +Pe +xk +nA +GY +Kq +El +nx +gV +nE +"} +(9,1,1) = {" +nE +YV +qZ +MA +cT +mH +Ya +fd +lY +HH +nE +"} +(10,1,1) = {" +nE +Sm +uU +Gh +nA +xa +jb +Pe +Pe +Kx +nE +"} +(11,1,1) = {" +nE +tW +BP +oa +Ea +Ii +Nk +dS +ot +uV +nE +"} +(12,1,1) = {" +nE +qY +dT +yL +aa +kc +FE +HQ +hP +aM +nE +"} +(13,1,1) = {" +nE +ws +Pe +Jr +gi +Ii +bz +Pe +Pe +ix +nE +"} +(14,1,1) = {" +nE +ze +td +Pe +kq +Yo +Hi +Ui +Io +xo +nE +"} +(15,1,1) = {" +nE +uP +Md +Pe +gi +kN +bz +NM +MJ +Fp +nE +"} +(16,1,1) = {" +nE +KZ +XE +XE +IH +vW +Qm +KG +wV +VX +nE +"} +(17,1,1) = {" +nE +aZ +nj +Zr +Zr +Zr +Zr +Zr +DV +nj +nE +"} +(18,1,1) = {" +nE +yO +ma +Zr +yU +Mt +Fz +Zr +Ih +xw +nE +"} +(19,1,1) = {" +nE +nE +Zy +nE +PX +Nz +MQ +nE +Zy +nE +nE +"} +(20,1,1) = {" +nE +VI +Pb +ig +HD +dN +aj +ig +PL +SQ +nE +"} +(21,1,1) = {" +nE +oi +Oh +iu +OU +BQ +eb +ga +ka +uA +nE +"} +(22,1,1) = {" +nE +nE +nE +nE +nE +nE +nE +nE +nE +nE +nE +"} diff --git a/_maps/deepspace/23x21_telepadovo.dmm b/_maps/deepspace/23x21_telepadovo.dmm new file mode 100644 index 000000000000..2aefc4aecb95 --- /dev/null +++ b/_maps/deepspace/23x21_telepadovo.dmm @@ -0,0 +1,806 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"bA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"da" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"dS" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"ea" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"eE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"eP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"gj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"hp" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/soymilk, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"kd" = ( +/turf/template_noop, +/area/template_noop) +"mX" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"om" = ( +/obj/structure/safe/floor, +/obj/item/reagent_containers/hypospray/combat/nanites, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"oS" = ( +/obj/machinery/computer/telescience{ + dir = 8 + }, +/turf/open/floor/resin, +/area/ruin/unpowered) +"rG" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"sf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/stasis, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"ta" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"tJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"uq" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"uR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"vN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"wl" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"wr" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"wC" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Av" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/radio, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Az" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"AA" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"AG" = ( +/obj/structure/table/reinforced, +/obj/item/phone, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Bs" = ( +/turf/open/floor/plating/asteroid/airless, +/area/ruin/unpowered) +"Bz" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"BY" = ( +/obj/machinery/sleeper/syndie{ + dir = 8 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"CU" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"CV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Eq" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"EC" = ( +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"FJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"GX" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Il" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/autolathe/hacked, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Ip" = ( +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"JT" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"KK" = ( +/obj/machinery/computer/camera_advanced/syndie{ + dir = 8 + }, +/turf/open/floor/resin, +/area/ruin/unpowered) +"Mq" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/restraints/handcuffs/cable/zipties, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"RJ" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/obj/item/gps/science, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Sb" = ( +/obj/machinery/status_display, +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"Sw" = ( +/obj/machinery/light/small, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Ui" = ( +/turf/closed/mineral/random, +/area/ruin/unpowered) +"Vm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"WZ" = ( +/turf/open/floor/resin, +/area/ruin/unpowered) +"Xj" = ( +/obj/machinery/telepad, +/turf/open/floor/resin, +/area/ruin/unpowered) +"Xl" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"XP" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"Ys" = ( +/obj/item/flashlight, +/obj/structure/closet/cabinet, +/obj/item/radio, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) +"ZY" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/durasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +"} +(2,1,1) = {" +kd +kd +Bs +Bs +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +"} +(3,1,1) = {" +kd +kd +Bs +Ui +Ui +Ui +Ui +kd +Ui +Bs +kd +kd +kd +kd +kd +Ui +Ui +Ui +Ui +Ui +kd +"} +(4,1,1) = {" +kd +Bs +Bs +Ui +Ui +Ui +Ui +Ui +Ui +Ui +kd +kd +kd +kd +kd +Ui +mX +mX +Sb +mX +mX +"} +(5,1,1) = {" +kd +Bs +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +kd +Bs +kd +kd +kd +Ui +mX +Eq +Ip +Ip +rG +"} +(6,1,1) = {" +kd +Bs +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +kd +Ui +Ui +mX +tJ +Ip +GX +mX +"} +(7,1,1) = {" +kd +Bs +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +mX +uq +Ip +GX +mX +"} +(8,1,1) = {" +kd +kd +Ui +mX +mX +mX +mX +mX +mX +mX +mX +mX +mX +mX +mX +mX +mX +AG +Ip +vN +mX +"} +(9,1,1) = {" +kd +Ui +Ui +mX +ZY +wC +gj +Xl +Xl +Xl +mX +wr +Ip +Bz +Ip +Ip +Bz +Ip +Ip +GX +mX +"} +(10,1,1) = {" +Ui +Ui +Ui +mX +Ip +WZ +WZ +WZ +WZ +Ip +AA +Ip +Ip +mX +CU +da +mX +Ip +Ip +Sw +mX +"} +(11,1,1) = {" +kd +Ui +Ui +mX +XP +WZ +WZ +WZ +WZ +Ip +mX +Ip +eP +mX +bA +Az +AA +Ip +Ip +mX +mX +"} +(12,1,1) = {" +kd +kd +Ui +mX +ea +WZ +WZ +WZ +WZ +Ip +Bz +Ip +Ip +mX +Ip +Ip +AA +Az +Az +mX +Ui +"} +(13,1,1) = {" +kd +kd +Ui +mX +Il +WZ +Xj +WZ +WZ +Ip +Bz +Ip +Ip +mX +Bz +mX +mX +mX +mX +mX +Ui +"} +(14,1,1) = {" +kd +kd +Ui +mX +RJ +WZ +WZ +WZ +WZ +Ip +mX +eE +Ip +Ip +ta +ta +om +mX +Ui +Ui +Ui +"} +(15,1,1) = {" +kd +Ui +Ui +mX +ac +WZ +oS +KK +WZ +Ip +AA +Ip +Ip +Ip +dS +EC +uR +mX +Ui +Ui +Ui +"} +(16,1,1) = {" +kd +Ui +Ui +mX +CV +Ip +Ip +Ip +Ip +Ip +mX +JT +Ip +wl +hp +EC +Sw +mX +Ui +Ui +Ui +"} +(17,1,1) = {" +kd +kd +Ui +mX +mX +mX +mX +AA +AA +AA +mX +Ip +Ip +Ip +Av +EC +GX +mX +Ui +Ui +kd +"} +(18,1,1) = {" +kd +kd +Ui +Ui +Ui +Ui +mX +Ip +Ip +Ip +Bz +Vm +Vm +Vm +FJ +Az +Ip +mX +Ui +kd +kd +"} +(19,1,1) = {" +kd +kd +Ui +Ui +Ui +Ui +mX +Ys +BY +sf +mX +EC +Mq +Mq +mX +mX +mX +mX +Ui +Ui +kd +"} +(20,1,1) = {" +kd +kd +Ui +Ui +Ui +Ui +mX +mX +mX +mX +mX +mX +mX +mX +mX +Ui +Ui +Ui +Ui +Ui +kd +"} +(21,1,1) = {" +kd +kd +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +kd +"} +(22,1,1) = {" +kd +kd +kd +Ui +Ui +kd +kd +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +kd +kd +"} +(23,1,1) = {" +kd +kd +kd +kd +kd +kd +kd +Ui +kd +kd +kd +Ui +Ui +Ui +Ui +Ui +Ui +kd +kd +kd +kd +"} diff --git a/_maps/deepspace/40x34_bigderelict.dmm b/_maps/deepspace/40x34_bigderelict.dmm new file mode 100644 index 000000000000..e0c07b8b6767 --- /dev/null +++ b/_maps/deepspace/40x34_bigderelict.dmm @@ -0,0 +1,3260 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 6; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"av" = ( +/obj/structure/alien/resin/membrane/creature, +/turf/open/floor/plating/asteroid/airless, +/area/ruin) +"aB" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/netherworld{ + name = "Miss Tiggles" + }, +/turf/open/floor/plasteel, +/area/ruin) +"aC" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"aD" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin) +"aU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"bZ" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin) +"ce" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/plating/asteroid, +/area/ruin) +"dq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/ruin) +"dO" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/ruin) +"dY" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"ea" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"eb" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"eo" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/plasteel, +/area/ruin) +"ev" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"ew" = ( +/obj/structure/closet/crate, +/obj/item/target/syndicate, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/alien, +/obj/item/target, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"eH" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"eI" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/ruin) +"fx" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/poddoor{ + id = "bigderelictcheckpoint"; + name = "checkpoint security doors" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"fC" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/ruin) +"fH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"gh" = ( +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier{ + head = null; + name = "Tradeport Officer"; + random = 1 + }, +/obj/item/paper/crumpled/ruins/bigderelict1/coward, +/obj/effect/decal/cleanable/blood/old{ + name = "dried blood splatter"; + pixel_x = -29 + }, +/turf/open/floor/plasteel, +/area/ruin) +"gk" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"gB" = ( +/turf/open/space/basic, +/area/space) +"hu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"ik" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"in" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"iw" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"iB" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating, +/area/ruin) +"iH" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/random/exotic/tool, +/turf/open/floor/plasteel, +/area/ruin) +"iM" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"iQ" = ( +/obj/item/clothing/head/helmet, +/turf/open/floor/plasteel, +/area/ruin) +"iT" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"jJ" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"jN" = ( +/obj/structure/janitorialcart, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"ks" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/poddoor{ + id = "bigderelictcheckpoint"; + name = "checkpoint security doors" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"kF" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin) +"kQ" = ( +/obj/structure/alien/weeds/creature, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"kS" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/hyper, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"ll" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"lm" = ( +/obj/structure/alien/weeds/creature, +/obj/item/ammo_box/magazine/m45, +/obj/item/gun/ballistic/automatic/pistol/m1911{ + spawnwithmagazine = 0 + }, +/turf/open/floor/plasteel, +/area/ruin) +"lB" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating, +/area/ruin) +"lI" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 9; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"mm" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 10; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"mZ" = ( +/turf/closed/wall/mineral/titanium, +/area/ruin) +"na" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stack/sheet/plasteel/twenty, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"nL" = ( +/obj/item/shard, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"nP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"oh" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/storage/firstaid/toxin, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"ov" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"oz" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/o2, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"oA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"pA" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ruin) +"pK" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/storage/toolbox/electrical, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"pL" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 10; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"pR" = ( +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin) +"qh" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"qt" = ( +/obj/structure/grille/broken, +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating, +/area/ruin) +"qy" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/ruin) +"qB" = ( +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/plating, +/area/ruin) +"qV" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"ri" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"rp" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/ruin) +"ru" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"rD" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ruin) +"rH" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"rL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin) +"rU" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/door_assembly/door_assembly_mai{ + density = 0; + desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; + name = "pried-open airlock" + }, +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin) +"rX" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"sp" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"sr" = ( +/obj/structure/closet/crate, +/obj/item/storage/pill_bottle/stimulant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"sD" = ( +/obj/structure/alien/weeds/creature, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/ruin) +"sP" = ( +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin) +"tg" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"tz" = ( +/obj/structure/alien/weeds/creature, +/obj/item/ammo_box/magazine/m45, +/turf/open/floor/plasteel, +/area/ruin) +"tC" = ( +/obj/item/crowbar{ + pixel_x = -16; + pixel_y = -6 + }, +/turf/open/floor/engine, +/area/ruin) +"tV" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating, +/area/ruin) +"ub" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 10; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"ug" = ( +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel, +/area/ruin) +"vb" = ( +/obj/item/ammo_casing/c45{ + caliber = null; + desc = "A .45 bullet casing. This one is spent."; + name = "spent bullet casing" + }, +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"vn" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/ruin) +"vB" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/ruin) +"wp" = ( +/obj/structure/filingcabinet, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"wq" = ( +/turf/closed/wall/r_wall, +/area/ruin) +"wu" = ( +/turf/open/floor/engine, +/area/ruin) +"wx" = ( +/obj/item/ammo_casing/c45{ + caliber = null; + desc = "A .45 bullet casing. This one is spent."; + name = "spent bullet casing" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"wA" = ( +/obj/machinery/door/poddoor{ + id = "bigderelictship" + }, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"wM" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"wS" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 10; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"xd" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"xI" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin) +"xV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"xW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"ym" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"yt" = ( +/obj/structure/table, +/obj/item/clothing/gloves/fingerless, +/turf/open/floor/plasteel, +/area/ruin) +"yx" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ruin) +"yC" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"yK" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"yZ" = ( +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"zH" = ( +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/ruin) +"zR" = ( +/obj/machinery/door/poddoor{ + id = "bigderelictshipdock" + }, +/obj/machinery/button/door{ + id = "bigderelictshipdock"; + name = "tradepost entry doors"; + pixel_x = 32 + }, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/ruin) +"zV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/ruin) +"zX" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/iron, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"Aj" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel, +/area/ruin) +"Br" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin) +"Bw" = ( +/obj/structure/closet/crate/critter{ + name = "critter crate - mr.tiggles"; + opened = 1 + }, +/obj/item/paper/crumpled/ruins/bigderelict1/manifest, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"BQ" = ( +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"Cz" = ( +/obj/machinery/button/door{ + id = "bigderelictship"; + name = "shuttle cargo doors"; + pixel_x = 24 + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"CC" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 10; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"CJ" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/ruin) +"CN" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Db" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stack/sheet/cardboard/fifty, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"Dg" = ( +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/turf/open/floor/plasteel, +/area/ruin) +"Dk" = ( +/turf/closed/wall, +/area/ruin) +"Ds" = ( +/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 2 + }, +/obj/structure/alien/weeds/creature, +/obj/structure/table_frame, +/obj/item/stack/sheet/iron, +/obj/item/stack/sheet/plasteel, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"DB" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/ruin) +"DM" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating, +/area/ruin) +"DO" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/advanced, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"DQ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"DS" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin) +"DY" = ( +/obj/effect/decal/cleanable/xenoblood/xsplatter, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"Er" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"Ez" = ( +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/engine, +/area/ruin) +"EO" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plasteel, +/area/ruin) +"ER" = ( +/obj/item/ammo_casing/c45{ + caliber = null; + desc = "A .45 bullet casing. This one is spent."; + name = "spent bullet casing" + }, +/turf/open/floor/plasteel, +/area/ruin) +"Fa" = ( +/obj/structure/closet/crate/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/suit/radiation, +/obj/item/geiger_counter, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"Fz" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"FG" = ( +/obj/structure/alien/resin/wall/creature, +/turf/open/floor/plasteel, +/area/ruin) +"Gb" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"Gc" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/ruin) +"Gh" = ( +/obj/item/gps/spaceruin, +/turf/open/floor/plasteel, +/area/ruin) +"Gq" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"Gu" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/ruin) +"GA" = ( +/turf/closed/wall/riveted_wall, +/area/ruin) +"GG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"Ha" = ( +/obj/machinery/computer{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"He" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Hp" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + dir = 6; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating, +/area/ruin) +"HH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"HI" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/storage/toolbox/electrical, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/high, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"HP" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/ruin) +"Ig" = ( +/obj/effect/gibspawner/human, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"Ii" = ( +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/obj/structure/fans/tiny, +/obj/machinery/button/door{ + id = "exploration_ex_cargo1"; + name = "Cargo Shutters Control"; + pixel_y = 32; + req_access_txt = "49" + }, +/turf/open/floor/plasteel, +/area/ruin) +"IG" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/cloth/ten, +/obj/item/stack/sheet/cloth/ten, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"II" = ( +/turf/closed/mineral/random, +/area/space) +"IK" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"Ji" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"Ju" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"Jx" = ( +/turf/open/floor/plating, +/area/ruin) +"JB" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid, +/area/ruin) +"JL" = ( +/obj/structure/alien/resin/membrane/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Kg" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 6; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Km" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/engine, +/area/ruin) +"Ko" = ( +/turf/closed/mineral/random, +/area/ruin) +"KH" = ( +/obj/structure/closet/crate/secure/loot, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"KK" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin) +"Lh" = ( +/obj/structure/alien/weeds/creature, +/mob/living/simple_animal/hostile/netherworld{ + desc = "Awh its so sm-OH GOD WHAT THE FUCK."; + health = 25; + maxHealth = 25; + name = "hatchling"; + resize = 0.85 + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Lp" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 1; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Lx" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"LD" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/ruin) +"LF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/button/door{ + id = "bigderelictcheckpoint"; + name = "security checkpoint control"; + pixel_y = -24 + }, +/obj/structure/alien/weeds/creature, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/ammo_box/magazine/m45, +/turf/open/floor/plasteel/dark, +/area/ruin) +"LH" = ( +/obj/structure/table, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel, +/area/ruin) +"LK" = ( +/obj/item/chair, +/obj/structure/alien/weeds/creature, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"LL" = ( +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"LO" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"Mi" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"Ml" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating, +/area/ruin) +"Mn" = ( +/obj/machinery/door/poddoor{ + id = "bigderelictshipdock" + }, +/obj/machinery/button/door{ + id = "bigderelictshipdock"; + name = "tradepost entry doors"; + pixel_x = -32 + }, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/ruin) +"MO" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"MQ" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"MV" = ( +/obj/item/shard, +/obj/structure/alien/weeds/creature, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"Nq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"NK" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"On" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"OR" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Ph" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"Pn" = ( +/obj/structure/table, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"Pu" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/glowshroom/single, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ruin) +"PB" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering, +/turf/open/floor/plasteel, +/area/ruin) +"PN" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"PY" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin) +"Qj" = ( +/obj/machinery/light, +/turf/closed/wall/riveted_wall, +/area/ruin) +"Qn" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/exotic/technology, +/turf/open/floor/plasteel, +/area/ruin) +"Qt" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"Qv" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"QI" = ( +/obj/structure/closet/crate/internals, +/obj/item/storage/toolbox/emergency, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"QM" = ( +/obj/item/ammo_box/c45, +/turf/open/floor/plasteel, +/area/ruin) +"QQ" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"QS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"QV" = ( +/obj/structure/alien/resin/wall/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Rh" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"Rx" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"RU" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin) +"SF" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"SK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"SN" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/alien/gelpod, +/turf/open/floor/plasteel, +/area/ruin) +"SQ" = ( +/obj/structure/closet/crate/engineering, +/obj/item/multitool, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"SU" = ( +/obj/structure/alien/weeds/creature, +/obj/item/mop, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"Tc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"TK" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"TO" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 6; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"TT" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"TW" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin) +"Ub" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/ruin) +"Uf" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Uh" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/mechanical, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"Un" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"Uo" = ( +/obj/item/shard, +/turf/open/floor/plasteel, +/area/ruin) +"Uq" = ( +/turf/closed/wall/mineral/titanium/interior, +/area/ruin) +"Ur" = ( +/turf/template_noop, +/area/space) +"UD" = ( +/obj/structure/closet/crate, +/obj/item/modular_computer/tablet/pda/clear, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"UP" = ( +/obj/machinery/door/poddoor{ + id = "bigderelictshipdock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/ruin) +"UT" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin) +"UU" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/airless, +/area/space) +"Ve" = ( +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/ruin) +"Vf" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin) +"Vp" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/ruin) +"Vz" = ( +/obj/item/ammo_casing/c45{ + caliber = null; + desc = "A .45 bullet casing. This one is spent."; + name = "spent bullet casing" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"VO" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin) +"VY" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + dir = 9; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"WF" = ( +/obj/item/chair, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/alien/weeds/creature, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) +"Xe" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/gelpod, +/turf/open/floor/plating/asteroid, +/area/ruin) +"XJ" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin) +"XK" = ( +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"XO" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"XP" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/alien/weeds/creature, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ruin) +"XS" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/brute, +/turf/open/floor/mineral/titanium/yellow, +/area/ruin) +"XY" = ( +/obj/structure/alien/weeds/creature, +/obj/structure/alien/weeds/creature, +/obj/item/ammo_box/c45, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Yd" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ruin) +"Ym" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/ruin) +"Yp" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/airless, +/area/space) +"YA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin) +"YG" = ( +/obj/structure/alien/weeds/creature, +/turf/open/floor/plasteel, +/area/ruin) +"YK" = ( +/obj/structure/alien/weeds/creature, +/obj/effect/decal/cleanable/blood/old{ + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plasteel, +/area/ruin) +"YT" = ( +/turf/open/floor/plating/asteroid/airless, +/area/space) +"Za" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 5; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/alien/weeds/creature, +/turf/open/floor/plating/asteroid, +/area/ruin) +"Zu" = ( +/obj/structure/door_assembly/door_assembly_mai{ + density = 0; + desc = "A pried-open airlock. Scratch marks mark the sidings of the door."; + name = "pried-open airlock" + }, +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin) +"ZN" = ( +/turf/open/floor/plasteel, +/area/ruin) +"ZV" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/titanium/blue, +/area/ruin) + +(1,1,1) = {" +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +GA +Vf +GA +Ur +Ur +Ur +Ur +Ur +YT +YT +YT +YT +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +"} +(2,1,1) = {" +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +GA +ug +GA +GA +GA +GA +GA +YT +YT +II +YT +II +YT +YT +YT +YT +YT +YT +YT +YT +Ur +YT +Ur +Ur +Ur +"} +(3,1,1) = {" +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +GA +iQ +gh +wx +ZN +dO +GA +YT +II +II +II +II +II +II +II +YT +YT +YT +YT +YT +YT +YT +Ur +Ur +Ur +"} +(4,1,1) = {" +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +GA +qV +ea +QM +Gh +HP +GA +GA +GA +GA +GA +GA +GA +GA +GA +TW +TW +GA +GA +GA +GA +YT +YT +Ur +Ur +"} +(5,1,1) = {" +Ur +Ur +Ur +YT +YT +YT +YT +II +II +GA +kS +On +On +On +ZN +GA +ER +ZN +Fz +ER +YG +qy +EO +YG +Fz +ZN +ZN +eI +Jx +GA +YT +YT +Ur +Ur +"} +(6,1,1) = {" +YT +YT +YT +YT +YT +YT +YT +II +II +GA +qV +ea +ZN +On +On +GA +ER +YG +DY +YG +YG +vb +YK +BQ +BQ +mm +ZN +GA +Jx +GA +YT +Ur +Ur +Ur +"} +(7,1,1) = {" +YT +GA +TW +TW +GA +GA +GA +GA +GA +GA +GA +GA +GA +GA +PB +GA +Yd +Pu +GA +GA +GA +GA +GA +yx +yx +rD +GA +GA +Jx +GA +YT +Ur +Ur +Ur +"} +(8,1,1) = {" +YT +GA +zH +vn +dq +Vp +fC +fC +Rh +QS +yt +LH +dY +Ve +On +DB +ZN +Vz +GA +lI +SN +GA +Aj +ZN +ZN +rH +aC +GA +Jx +GA +YT +YT +Ur +Ur +"} +(9,1,1) = {" +YT +GA +ZN +ZN +ZN +ZN +ZN +ZN +ZN +ZN +ZN +ZN +ZN +ZN +On +ll +Dg +sD +GA +NK +XY +GA +rL +ZN +ZN +rH +Qn +GA +Jx +GA +YT +YT +Ur +Ur +"} +(10,1,1) = {" +YT +Mn +wu +wu +wu +wu +wu +wu +wu +wu +wu +wu +wu +wu +wu +On +YG +YG +GA +He +QV +GA +tg +IG +in +rH +UD +GA +Jx +GA +II +YT +Ur +Ur +"} +(11,1,1) = {" +YT +UP +wu +wu +wu +Uq +mZ +wA +wA +wA +mZ +ZV +mZ +Uq +wu +jN +YG +Dg +GA +ce +Ko +GA +ZN +ZN +ZN +rH +ZN +GA +Jx +GA +II +YT +Ur +Ur +"} +(12,1,1) = {" +YT +UP +wu +wu +wu +KK +Er +DO +LL +LL +ik +yZ +ik +mZ +wu +SU +YG +ZN +GA +Za +wS +GA +KH +ZN +ZN +rH +Gu +GA +Jx +GA +II +YT +Ur +Ur +"} +(13,1,1) = {" +YT +UP +wu +wu +wu +VO +oA +Ph +QI +QI +jJ +ik +Pn +rp +wu +Qt +wM +IK +GA +Ko +sp +GA +KH +ZN +iT +Qv +oh +GA +Jx +GA +II +II +YT +Ur +"} +(14,1,1) = {" +YT +UP +wu +wu +wu +mZ +mZ +XS +Fa +Bw +ik +WF +Ha +rp +wu +Qt +IK +Rh +GA +Ko +sp +GA +na +ZN +iH +rH +ZN +GA +Jx +GA +II +II +YT +Ur +"} +(15,1,1) = {" +YT +UP +wu +wu +wu +KK +Er +SF +SF +Uh +gk +Ju +zX +tV +Ez +CC +IK +IK +GA +lI +ag +GA +Ym +ZN +ZN +rH +KH +GA +Jx +GA +II +II +YT +Ur +"} +(16,1,1) = {" +YT +UP +wu +wu +wu +VO +oA +HI +HI +pK +Cz +ik +nL +mZ +Km +XP +Gb +mm +GA +XO +Ko +GA +sr +Db +Un +rH +KH +GA +Jx +GA +II +II +YT +Ur +"} +(17,1,1) = {" +YT +UP +wu +wu +wu +Uq +mZ +wA +wA +wA +mZ +ZV +mZ +Uq +wu +eH +YG +MQ +GA +Uf +Ko +GA +ZN +ZN +ZN +rH +wM +GA +Jx +GA +II +II +YT +YT +"} +(18,1,1) = {" +YT +zR +wu +wu +wu +wu +wu +wu +wu +wu +wu +tC +wu +wu +Km +Qt +YG +MQ +GA +Uf +QV +GA +ew +ZN +LD +rH +Gc +GA +Jx +GA +II +II +YT +YT +"} +(19,1,1) = {" +YT +GA +ZN +ZN +On +On +On +On +On +On +On +On +On +Qt +Qt +Qt +Qt +yK +GA +Uf +Lh +GA +Gq +ZN +XJ +Qv +SQ +GA +Jx +GA +II +II +YT +YT +"} +(20,1,1) = {" +YT +GA +XK +ZN +On +ZN +kF +yt +Rh +wM +UT +YG +Ig +YG +Qt +ZN +ZN +Lx +GA +XO +MO +GA +oz +On +On +TT +pL +GA +Jx +GA +II +YT +YT +YT +"} +(21,1,1) = {" +UU +GA +TW +TW +GA +CJ +GA +GA +Ii +vB +GA +GA +GA +GA +On +ZN +ZN +pA +GA +rU +GA +GA +GA +GA +GA +GA +Zu +GA +DM +GA +II +YT +YT +YT +"} +(22,1,1) = {" +Nq +YA +ov +ov +ov +ov +ov +ov +ov +ov +ov +Tc +Rx +wq +DQ +wq +wq +ks +GA +bZ +Ml +lB +lB +lB +iB +sP +Hp +DM +qB +GA +YT +YT +YT +YT +"} +(23,1,1) = {" +YA +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +Tc +wq +xW +wp +wq +HH +Qj +GA +GA +GA +GA +GA +RU +GA +GA +GA +GA +GA +YT +YT +YT +YT +"} +(24,1,1) = {" +ov +ov +ov +ov +ov +SK +ov +ov +ov +ov +ov +ov +Ji +TW +xW +MV +xV +HH +Uo +TW +MO +Ko +MO +MO +rX +av +II +II +II +II +YT +YT +YT +YT +"} +(25,1,1) = {" +ov +ov +ov +ov +fH +aU +aU +aU +ov +ov +ov +ov +Ji +TW +LO +LK +Ds +ev +YK +qt +kQ +eb +ri +ri +Kg +av +II +II +II +II +YT +YT +YT +Ur +"} +(26,1,1) = {" +ov +ov +ov +ov +ov +nP +ov +ov +ov +ov +ov +ov +Ji +TW +PY +LF +wq +On +zV +TW +MO +MO +Ko +Ko +MO +av +YT +YT +YT +YT +YT +Ur +Ur +Ur +"} +(27,1,1) = {" +hu +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +ov +GG +wq +wq +DS +wq +fx +GA +GA +GA +GA +GA +GA +pR +GA +QV +QV +QV +YT +YT +Ur +Ur +Ur +"} +(28,1,1) = {" +Nq +hu +ov +ov +ov +ov +ov +ov +ov +ov +ov +GG +Rx +GA +Fz +iw +Ub +Qt +FG +YG +qy +YG +YG +YG +eo +MO +MO +MO +QV +QV +Ur +Ur +Ur +Ur +"} +(29,1,1) = {" +gB +YT +YT +YT +YT +YT +Yp +UU +UU +UU +UU +UU +GA +GA +ZN +iw +ZN +On +FG +eo +YG +SN +YG +YG +YG +Lh +MO +MO +MO +QV +QV +QV +Ur +Ur +"} +(30,1,1) = {" +gB +YT +YT +YT +YT +YT +YT +YT +YT +UU +TW +TW +GA +yC +YG +iw +eo +Qt +FG +YG +lm +FG +FG +FG +FG +MO +MO +Xe +JB +MO +MO +QV +Ur +Ur +"} +(31,1,1) = {" +gB +gB +YT +YT +YT +YT +YT +YT +YT +YT +xI +Jx +Br +ZN +YG +iw +On +On +FG +YG +aB +FG +YG +eo +YG +MO +JB +YG +MO +Lh +MO +JL +Ur +Ur +"} +(32,1,1) = {" +gB +gB +gB +YT +YT +YT +YT +YT +YT +UU +TW +TW +GA +ru +YG +MQ +On +Dk +FG +FG +FG +FG +EO +YG +EO +JB +QV +QV +QV +QV +MO +JL +Ur +Ur +"} +(33,1,1) = {" +gB +gB +gB +gB +YT +YT +YT +YT +YT +YT +YT +YT +GA +VY +BQ +TO +ZN +FG +FG +eo +YG +FG +FG +FG +YG +MO +QV +MO +MO +MO +MO +QV +Ur +Ur +"} +(34,1,1) = {" +gB +gB +gB +gB +YT +YT +YT +YT +YT +YT +YT +YT +GA +iw +ZN +ZN +FG +FG +tz +YG +qy +EO +YG +FG +YG +YG +QV +OR +QV +QV +QV +QV +Ur +Ur +"} +(35,1,1) = {" +gB +gB +gB +gB +gB +YT +YT +YT +YT +YT +YT +YT +GA +ym +FG +Dk +FG +EO +YG +FG +FG +FG +YG +FG +qy +MO +QV +MO +QV +Ur +Ur +Ur +Ur +Ur +"} +(36,1,1) = {" +gB +gB +gB +gB +gB +gB +YT +YT +YT +YT +TW +TW +GA +Mi +FG +YG +FG +FG +FG +FG +eo +FG +YG +FG +YG +QV +QV +Lh +JL +Ur +Ur +Ur +Ur +Ur +"} +(37,1,1) = {" +gB +gB +gB +gB +gB +gB +gB +YT +YT +YT +xI +Jx +Br +iw +FG +YG +FG +EO +MO +QV +SN +QV +JB +QV +QV +QV +MO +YG +JL +Ur +Ur +Ur +Ur +Ur +"} +(38,1,1) = {" +gB +gB +gB +gB +gB +gB +gB +gB +YT +YT +TW +TW +GA +QQ +xd +aD +iM +ub +MO +QV +rX +MO +MO +OR +MO +MO +MO +Xe +QV +Ur +Ur +Ur +Ur +Ur +"} +(39,1,1) = {" +gB +gB +gB +gB +gB +gB +PN +TK +TK +TK +UU +UU +GA +GA +GA +GA +GA +qh +Lp +CN +Kg +MO +QV +QV +JL +JL +JL +QV +QV +Ur +Ur +Ur +Ur +Ur +"} +(40,1,1) = {" +gB +gB +gB +gB +gB +gB +gB +gB +gB +gB +gB +gB +YT +YT +II +II +QV +QV +QV +QV +QV +QV +QV +Ur +YT +YT +Ur +Ur +Ur +Ur +Ur +Ur +Ur +Ur +"} diff --git a/_maps/deepspace/41x41_corgasteroid.dmm b/_maps/deepspace/41x41_corgasteroid.dmm new file mode 100644 index 000000000000..b2210ebd9e11 --- /dev/null +++ b/_maps/deepspace/41x41_corgasteroid.dmm @@ -0,0 +1,2592 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aH" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"bw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"cl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"cr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ruin/unpowered) +"cP" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ed" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"eq" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"fN" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ge" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"gp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"he" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"hn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"hK" = ( +/turf/open/floor/plating/asteroid, +/area/space) +"ie" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door{ + id = "exploration_ex_cargo1"; + name = "Cargo Shutters Control"; + pixel_x = 32; + req_access_txt = "49" + }, +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"jk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"jG" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"jZ" = ( +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"kI" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"kN" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/ruin/unpowered) +"kS" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"lc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"lO" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"lZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"ma" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"mf" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"mj" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"mm" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"mE" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating/asteroid, +/area/space) +"nz" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"ou" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"oT" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/transit_tube/station/dispenser/reverse{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"po" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"qq" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qs" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/wrench, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"rp" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"sq" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"to" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"tH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/ruin/unpowered) +"uc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "exploration_ex_cargo1" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"uX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"vc" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/transit_tube/curved, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid, +/area/space) +"vj" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"vN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"vY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/turf/open/floor/plating, +/area/ruin/unpowered) +"vZ" = ( +/turf/open/space/basic, +/area/space) +"wg" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"wl" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"wr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"wS" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/ruin/unpowered) +"xE" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"xY" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"ym" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"zc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/ruin/unpowered) +"zL" = ( +/turf/closed/mineral/random, +/area/ruin/unpowered) +"Ai" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"As" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"AC" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/armoury, +/obj/effect/spawner/lootdrop/ruinloot/armoury, +/turf/open/floor/plating, +/area/ruin/unpowered) +"AQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"BA" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Cj" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x5, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Cl" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Co" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/space) +"Cr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"CX" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Dq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Dx" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/transit_tube/diagonal, +/turf/open/floor/plating/asteroid, +/area/space) +"EC" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"EF" = ( +/obj/structure/transit_tube/diagonal/crossing, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"EP" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Fv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Fw" = ( +/turf/closed/wall, +/area/ruin/unpowered) +"FG" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"FX" = ( +/obj/item/crowbar/red, +/turf/open/floor/plating, +/area/ruin/unpowered) +"FY" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/floor/plating/asteroid, +/area/space) +"GA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/ruin/unpowered) +"GM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"GV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Hc" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Hf" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid, +/area/space) +"Ht" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"HS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/unpowered) +"If" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"IL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"IX" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Jn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/ruin/unpowered) +"JK" = ( +/obj/structure/bonfire, +/obj/effect/spawner/lootdrop/ruinloot/important, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"JL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plating, +/area/ruin/unpowered) +"JP" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/ruin/unpowered) +"JU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Lj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Ln" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"LG" = ( +/obj/structure/lattice, +/turf/open/floor/plating/asteroid/no_generation, +/area/space) +"LM" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Mk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Nz" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"Ok" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"Ov" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Oz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"OX" = ( +/obj/effect/landmark/stationroom/maintenance/rdm10x5, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Pk" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"PF" = ( +/obj/effect/landmark/stationroom/maintenance/rdm10x10, +/turf/open/floor/plating, +/area/ruin/unpowered) +"PY" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"QV" = ( +/turf/open/space/basic, +/area/ruin/unpowered) +"Rb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/ruinloot/important, +/turf/open/floor/plating, +/area/ruin/unpowered) +"Ri" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"Rq" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"Rt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Rv" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid, +/area/space) +"RG" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid, +/area/space) +"RT" = ( +/obj/structure/window/reinforced/spawner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"SC" = ( +/obj/effect/spawner/structure/window/reinforced/partyhard, +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"SY" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Tt" = ( +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"Ue" = ( +/obj/structure/window/reinforced/spawner{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Uk" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/space/basic, +/area/space) +"UB" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/ruinloot/basic, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Vd" = ( +/obj/structure/transit_tube, +/turf/open/floor/plating/asteroid, +/area/space) +"Vn" = ( +/obj/structure/window/reinforced/spawner{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Vo" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) +"VF" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"VQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"VS" = ( +/turf/closed/mineral/random, +/area/space) +"WS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/no_generation, +/area/ruin/unpowered) +"Xy" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/floor/plating/asteroid, +/area/space) +"YT" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating/asteroid, +/area/ruin/unpowered) + +(1,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Uk +IX +RT +VF +"} +(2,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +mE +Ai +If +VF +"} +(3,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Ri +Pk +vj +mE +Vn +If +Ov +"} +(4,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Ri +vZ +vZ +vZ +vZ +vZ +vj +xY +PY +If +VF +"} +(5,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +vZ +vZ +vZ +vZ +hK +vj +Dx +Ue +CX +VF +"} +(6,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +hK +hK +hK +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Ri +Pk +Pk +Pk +Pk +Pk +vj +vj +vj +aH +vj +Co +VF +VF +"} +(7,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +eq +eq +eq +eq +eq +eq +VF +eq +VF +hK +hK +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +vZ +vZ +hK +hK +FY +vj +hK +hK +hK +hK +"} +(8,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +eq +Ai +Ai +jk +AQ +IL +rp +Cr +SY +Rv +hK +hK +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +hK +hK +hK +EF +vj +vj +vj +vj +vj +VS +"} +(9,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Ri +Pk +eq +Ai +Ai +Fv +po +Dq +VF +wr +eq +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +Rv +RG +hK +hK +vj +hK +hK +VS +VS +"} +(10,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +VF +eq +VF +VF +VF +GM +VF +VF +VF +Hf +Hf +Hf +Hf +vc +Vd +Xy +Vd +Xy +Vd +Xy +Vd +Xy +Xy +he +Rv +vj +vj +Pk +Pk +Ri +VS +VS +"} +(11,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +vZ +VF +Rq +Rq +Rq +Rq +OX +VF +kI +cP +oT +fN +qq +VF +VF +eq +eq +VF +VF +hK +vj +hK +hK +Rv +hK +hK +Pk +vZ +vZ +vZ +VS +"} +(12,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Ri +Pk +Pk +zL +VF +Rq +Rq +Rq +Rq +Rq +VF +Ht +UB +po +BA +po +VF +Rq +Rq +Rq +JP +VF +VF +VF +eq +VF +Rv +vj +vZ +Ri +vZ +vZ +vZ +vZ +"} +(13,1,1) = {" +vZ +Ri +vZ +vZ +vZ +vZ +vZ +vZ +vZ +Pk +zL +VF +Rq +Rq +Rq +Rq +Rq +VF +VQ +po +LM +po +vN +VF +Rq +Rq +Rq +Rq +VF +Rq +wg +Rq +mm +Rv +hK +vZ +vZ +vZ +vZ +vZ +vZ +"} +(14,1,1) = {" +vZ +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +QV +zL +VF +Rq +Rq +Rq +Rq +Rq +VF +hn +po +po +po +qf +VF +Rq +Rq +Rq +Rq +Oz +Rq +VF +VF +VF +Rv +vj +vZ +vZ +vZ +vZ +vZ +vZ +"} +(15,1,1) = {" +Pk +Pk +Pk +LG +LG +Pk +Pk +Pk +kN +zL +zL +VF +Rq +Rq +Rq +Rq +Rq +VF +VF +ym +VF +VF +VF +VF +Rq +Rq +Rq +Rq +VF +Rq +eq +hK +hK +Rv +hK +vZ +vZ +vZ +vZ +vZ +vZ +"} +(16,1,1) = {" +vZ +LG +to +to +to +to +zL +QV +kS +zL +jZ +VF +Rq +Rq +Rq +Rq +Rq +Oz +wS +Rq +mf +Rq +Rq +eq +Rq +Rq +Rq +Rq +VF +Rq +eq +vj +Rv +Ri +Pk +vZ +vZ +vZ +vZ +vZ +vZ +"} +(17,1,1) = {" +zL +zL +to +to +to +to +zL +zL +kS +Ok +jZ +VF +Rq +Rq +Rq +Rq +Rq +VF +VF +VF +VF +VF +Jn +VF +VF +VF +VF +VF +VF +Rq +VF +hK +Rv +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(18,1,1) = {" +GV +ma +to +to +to +Mk +GV +zL +zL +Ok +Tt +VF +Rq +Rq +Rq +Rq +Rq +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +PF +VF +Rq +eq +hK +Rv +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(19,1,1) = {" +ma +to +to +to +to +to +Mk +zL +zL +jZ +jZ +VF +Rq +Rq +Rq +Rq +Rq +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +FX +eq +Rv +Ri +Pk +Pk +Ri +vZ +vZ +vZ +vZ +vZ +"} +(20,1,1) = {" +to +to +to +to +to +to +to +zL +zL +jZ +jZ +VF +Rq +Rq +Rq +Rq +Rq +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +Rq +eq +hK +Ri +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(21,1,1) = {" +to +to +to +to +to +to +to +VF +vY +bw +qs +VF +VF +VF +ym +VF +VF +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +Rq +VF +hK +Ri +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(22,1,1) = {" +to +to +to +Rt +to +to +to +VF +AC +Rq +EC +VF +Rq +Rq +Rq +Rq +Cj +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Oz +Rq +eq +hK +Ri +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(23,1,1) = {" +to +to +lZ +ed +WS +to +to +FG +Hc +Rq +lc +VF +Rq +Rq +Rq +Rq +Rq +Oz +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Oz +Rq +eq +Ri +Ri +Pk +Pk +Ri +vZ +vZ +vZ +vZ +vZ +"} +(24,1,1) = {" +to +to +to +ed +to +to +to +ge +HS +HS +gp +VF +Rq +Rq +Rq +Rq +Rq +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +Rq +eq +vZ +Ri +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(25,1,1) = {" +to +to +to +ed +to +to +to +VF +jZ +jZ +jZ +VF +VF +VF +ym +VF +VF +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +Rq +VF +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(26,1,1) = {" +to +to +to +to +to +to +to +uc +JL +bw +bw +JU +VF +Rq +Rq +Rq +JP +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +Rq +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(27,1,1) = {" +to +to +to +to +to +to +to +ie +Ln +Rq +Rq +Cl +SC +Rq +Rq +Rq +Rq +VF +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +Rq +VF +zc +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(28,1,1) = {" +to +to +to +to +to +to +to +VF +uX +As +As +cr +VF +Rq +Rq +Rq +Rq +VF +VF +VF +VF +VF +VF +VF +VF +VF +VF +VF +VF +Rq +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(29,1,1) = {" +Lj +to +to +to +to +to +EP +VF +jZ +jZ +jZ +jZ +VF +Rq +Rq +Rq +Rq +cl +jZ +jZ +GA +Rb +tH +jZ +jZ +Ln +Rq +Rq +ou +Rq +VF +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(30,1,1) = {" +GV +Lj +to +to +to +EP +GV +zL +jZ +jZ +jZ +jZ +VF +Rq +Rq +Rq +Rq +VF +VF +jZ +jZ +jZ +jZ +jZ +jZ +zL +zL +zL +VF +VF +VF +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(31,1,1) = {" +zL +zL +to +zL +to +to +zL +zL +zL +jZ +jZ +jZ +VF +VF +VF +VF +VF +VF +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +zL +zL +vZ +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(32,1,1) = {" +vZ +zL +zL +zL +zL +zL +zL +zL +zL +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +YT +YT +YT +jZ +jZ +zL +zL +vZ +vZ +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(33,1,1) = {" +vZ +vZ +vZ +vZ +zL +zL +zL +zL +zL +xE +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +zL +zL +vZ +vZ +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(34,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +Fw +zL +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +JK +jZ +jZ +jZ +sq +zL +zL +Pk +Pk +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(35,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +zL +jZ +jZ +jZ +nz +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +jZ +nz +zL +zL +vZ +Pk +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(36,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +zL +zL +zL +sq +jZ +jZ +jZ +YT +YT +YT +jZ +jZ +jZ +wl +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(37,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +zL +zL +zL +zL +xE +jG +jZ +jZ +jZ +jZ +jZ +jZ +jZ +Vo +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(38,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +Fw +zL +jZ +jZ +jZ +jZ +jZ +jZ +jZ +mj +eq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(39,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +nz +nz +Nz +Vo +lO +zL +zL +zL +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(40,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +zL +zL +eq +eq +eq +zL +zL +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} +(41,1,1) = {" +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +zL +zL +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +vZ +"} diff --git a/_maps/RuinGeneration/49x47_autism.dmm b/_maps/deepspace/49x47_autism.dmm similarity index 96% rename from _maps/RuinGeneration/49x47_autism.dmm rename to _maps/deepspace/49x47_autism.dmm index 83e20b37f08a..a0fe288ae178 100644 --- a/_maps/RuinGeneration/49x47_autism.dmm +++ b/_maps/deepspace/49x47_autism.dmm @@ -28,9 +28,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "aM" = ( -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/austation/station) "aT" = ( /obj/effect/turf_decal/tile/blue{ @@ -69,7 +68,7 @@ /obj/item/assembly/igniter, /obj/item/assembly/igniter, /obj/item/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/status_display/evac{ pixel_y = 32 }, @@ -355,9 +354,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "dl" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "dn" = ( /obj/effect/turf_decal/tile/purple, @@ -594,7 +592,7 @@ /area/ruin/space/has_grav/austation/rnd) "fS" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/maint) @@ -768,7 +766,7 @@ /area/ruin/space/has_grav/austation/med) "hQ" = ( /obj/structure/lattice/catwalk, -/turf/template_noop, +/turf/open/space/basic, /area/space/nearstation) "hY" = ( /obj/effect/spawner/structure/window/reinforced, @@ -1009,9 +1007,8 @@ /area/ruin/space/has_grav/austation/maint) "kK" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "kL" = ( /obj/structure/chair/office/light{ @@ -1100,23 +1097,22 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "lm" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/restraints/handcuffs, /obj/effect/turf_decal/tile/red{ dir = 1 }, /obj/effect/turf_decal/tile/red{ dir = 4 }, -/obj/item/clothing/suit/space/hardsuit/rig_sec, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/suit_storage_unit{ + mask_type = /obj/item/clothing/mask/breath; + suit_type = /obj/item/clothing/suit/space/hardsuit/rig_sec + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "ln" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/austation/station) "lw" = ( /obj/structure/table/wood, @@ -1337,6 +1333,9 @@ req_access_txt = "5" }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/med) "mQ" = ( @@ -1455,6 +1454,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/restraints/handcuffs, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "nF" = ( @@ -1505,7 +1505,8 @@ /area/ruin/space/has_grav/austation/rnd) "nW" = ( /obj/machinery/computer/security{ - dir = 8 + dir = 8; + network = list("outpost") }, /obj/machinery/light{ dir = 4 @@ -1628,11 +1629,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/eng) -"pm" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/austation/station) "po" = ( /obj/machinery/autolathe, /obj/effect/decal/cleanable/dirt/dust, @@ -1644,9 +1640,8 @@ icon_state = "trimline" }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "pB" = ( /obj/effect/spawner/structure/window/reinforced, @@ -1675,7 +1670,6 @@ pixel_x = 32 }, /obj/effect/turf_decal/bot, -/obj/item/clothing/suit/space/hardsuit/rig_engineeringalt, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/eng) @@ -1699,6 +1693,11 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) +"qe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) "qf" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt/dust, @@ -1728,7 +1727,7 @@ /obj/item/weldingtool, /obj/item/assembly/voice, /obj/item/clothing/head/welding, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -1753,7 +1752,6 @@ "qT" = ( /obj/structure/table/reinforced, /obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, @@ -1765,8 +1763,18 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/crowbar, +/obj/item/radio, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) +"qW" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/austation/vault) "rg" = ( /obj/effect/turf_decal/stripes/line{ dir = 4; @@ -1792,7 +1800,7 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -2054,7 +2062,8 @@ /area/ruin/space/has_grav/austation/xeno) "ud" = ( /obj/machinery/computer/camera_advanced/xenobio{ - dir = 1 + dir = 1; + networks = list("outpost") }, /obj/machinery/light, /obj/machinery/requests_console{ @@ -2070,12 +2079,6 @@ /obj/structure/lattice, /turf/template_noop, /area/space/nearstation) -"ut" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, -/area/ruin/space/has_grav/austation/station) "uC" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -2132,13 +2135,13 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/austation/med) "vp" = ( /obj/structure/lattice, -/obj/item/shuttlespawner/diyshuttle, +/obj/item/shuttlespawner/explorer_mini, /turf/open/space/basic, /area/ruin/space/has_grav/austation/rnd) "vr" = ( @@ -2257,7 +2260,7 @@ /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/eng) "wm" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/elevatorshaft, @@ -2282,9 +2285,8 @@ "wz" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "wE" = ( /obj/machinery/door/airlock/maintenance_hatch{ @@ -2314,13 +2316,22 @@ /turf/closed/wall/rust, /area/ruin/space/has_grav/austation/med) "wS" = ( -/obj/item/multitool, -/turf/open/space/basic, -/area/ruin/space/has_grav/austation/rnd) +/obj/effect/turf_decal/trimline/yellow/line, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/austation/station) "wU" = ( /obj/machinery/status_display/evac, /turf/closed/wall/rust, /area/ruin/space/has_grav/austation/rnd) +"wW" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) "wZ" = ( /obj/effect/decal/cleanable/xenoblood/xgibs, /obj/effect/turf_decal/tile/neutral{ @@ -2341,7 +2352,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/xeno) @@ -2396,6 +2407,9 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/eng) "xB" = ( @@ -2497,6 +2511,7 @@ pixel_x = 28 }, /obj/structure/lattice, +/obj/item/clothing/suit/space/hardsuit/rig_excavation, /turf/open/space/basic, /area/ruin/space/has_grav/austation/rnd) "yL" = ( @@ -2596,8 +2611,8 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/item/clothing/suit/space/hardsuit/rig_excavation, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/multitool, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) "zU" = ( @@ -2677,9 +2692,8 @@ "Az" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/austation/station) "AD" = ( /obj/effect/turf_decal/tile/blue{ @@ -2698,9 +2712,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "AQ" = ( -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "Ba" = ( /obj/machinery/door/airlock/maintenance_hatch{ @@ -2765,9 +2778,8 @@ /area/ruin/space/has_grav/austation/station) "BA" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ruin/space/has_grav/austation/maint) "BG" = ( /obj/structure/closet/firecloset, @@ -2790,6 +2802,12 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/xeno) +"BQ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/card/id/advanced/gold/captains_spare, +/obj/effect/mapping_helpers/component_injector/areabound, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/austation/vault) "BS" = ( /obj/effect/turf_decal/tile/purple{ dir = 1 @@ -2913,25 +2931,24 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) "CF" = ( -/obj/machinery/holopad, /obj/item/radio/intercom{ name = "Station Intercom"; pixel_x = 26 }, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/suit_storage_unit{ + mask_type = /obj/item/clothing/mask/breath; + suit_type = /obj/item/clothing/suit/space/hardsuit/rig_engineeringalt + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/eng) -"CK" = ( -/obj/item/card/id/advanced/gold/captains_spare, -/turf/open/space/basic, -/area/ruin/space/has_grav/austation/rnd) "CL" = ( /obj/machinery/light{ dir = 1 @@ -2976,6 +2993,18 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/med) +"CX" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 8; + height = 12; + id = "explorer_mini_station"; + name = "Autism Station"; + roundstart_template = /datum/map_template/shuttle/ruin/explorer_mini; + width = 12 + }, +/turf/open/space/basic, +/area/template_noop) "Dk" = ( /obj/structure/bodycontainer/morgue, /obj/item/radio/intercom{ @@ -2987,6 +3016,9 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/med) "Dl" = ( @@ -3033,13 +3065,22 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/austation/med) "DN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" +/obj/machinery/camera/directional/east{ + network = list("outpost") }, -/area/ruin/space/has_grav/austation/station) +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/austation/rnd) +"Ea" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/austation/rnd) "Eg" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 4 @@ -3074,6 +3115,9 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/wood, /area/ruin/space/has_grav/austation/maint) +"EA" = ( +/turf/open/space/basic, +/area/template_noop) "EB" = ( /obj/effect/turf_decal/loading_area{ dir = 1 @@ -3155,9 +3199,12 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/eng) "Fz" = ( @@ -3232,6 +3279,9 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) "Gf" = ( @@ -3437,6 +3487,14 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/med) +"Hk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/has_grav/austation/med) "Hl" = ( /obj/machinery/chem_dispenser, /obj/machinery/button/door{ @@ -3497,10 +3555,17 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) +"HR" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/austation/station) "HS" = ( /obj/item/radio/intercom{ name = "Station Intercom"; @@ -3967,7 +4032,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/eng) "LA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste{ dir = 4 }, /turf/open/floor/engine/air{ @@ -4006,9 +4071,8 @@ icon_state = "trimline" }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "LT" = ( /obj/machinery/atmospherics/components/unary/cryo_cell, @@ -4064,7 +4128,8 @@ dir = 8 }, /obj/machinery/camera/xray{ - dir = 5 + dir = 5; + network = list("outpost") }, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, @@ -4129,9 +4194,8 @@ icon_state = "trimline" }, /obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "Ng" = ( /obj/machinery/door/firedoor, @@ -4223,16 +4287,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) -"NQ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4; - icon_state = "trimline" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/ruin/space/has_grav/austation/station) "NT" = ( /mob/living/simple_animal/slime, /obj/effect/decal/cleanable/dirt/dust, @@ -4267,6 +4321,16 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/eng) +"Ox" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, +/turf/open/floor/plasteel, +/area/ruin/space/has_grav/austation/station) "OA" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -4609,9 +4673,8 @@ /obj/structure/closet/crate/solarpanel_small, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/austation/station) "Rj" = ( /obj/structure/table/glass, @@ -4624,6 +4687,9 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/med) "Rw" = ( @@ -4726,7 +4792,7 @@ /area/ruin/space/has_grav/austation/xeno) "SE" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) @@ -4795,11 +4861,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/med) -"TV" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/austation/station) "Ub" = ( /obj/machinery/sleeper{ dir = 4 @@ -4976,9 +5037,8 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "VL" = ( /obj/effect/spawner/structure/window/reinforced/tinted, @@ -5046,9 +5106,8 @@ /area/ruin/space/has_grav/austation/maint) "WF" = ( /obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "WJ" = ( /turf/closed/wall/rust, @@ -5068,11 +5127,6 @@ /obj/structure/lattice, /turf/open/space/basic, /area/ruin/space/has_grav/austation/rnd) -"WV" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/ruin/unpowered) "Xl" = ( /obj/machinery/door/firedoor, /obj/effect/turf_decal/stripes/line{ @@ -5101,12 +5155,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/maint) -"Xx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/ruin/space/has_grav/austation/maint) "XB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ dir = 9 @@ -5148,6 +5196,9 @@ "XG" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/directional/north{ + network = list("outpost") + }, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/maint) "XV" = ( @@ -5156,7 +5207,6 @@ "XY" = ( /obj/structure/table/reinforced, /obj/machinery/light, -/obj/item/card/id/advanced/gold/captains_spare, /obj/item/radio, /obj/item/radio, /obj/item/radio, @@ -5327,7 +5377,15 @@ "Ze" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/rack, -/obj/item/food/cake/birthday, +/obj/item/flashlight/flare{ + pixel_y = 4 + }, +/obj/item/flashlight/flare{ + pixel_y = 1 + }, +/obj/item/flashlight/flare{ + pixel_y = 7 + }, /turf/open/floor/plating/rust, /area/ruin/space/has_grav/austation/eng) "Zf" = ( @@ -5394,12 +5452,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) -"ZO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/ruin/space/has_grav/austation/maint) "ZR" = ( /obj/structure/table/glass, /obj/item/assembly/igniter, @@ -5636,11 +5688,11 @@ lb oj ul ul -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (5,1,1) = {" @@ -5674,7 +5726,7 @@ jd aV Rw Rw -qf +qW we HB vG @@ -5685,11 +5737,11 @@ lb lb oj ul -NH -NH -NH -NH -NH +EA +EA +CX +EA +EA NH "} (6,1,1) = {" @@ -5734,11 +5786,11 @@ lb lb oj ul -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (7,1,1) = {" @@ -5783,11 +5835,11 @@ lb lb oj oj -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (8,1,1) = {" @@ -5832,11 +5884,11 @@ lb lb oj xV -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (9,1,1) = {" @@ -5881,11 +5933,11 @@ Rw lb oj xV -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (10,1,1) = {" @@ -5916,11 +5968,11 @@ ty Kj gY gY -ah +Hk Rw wm sx -sx +BQ sx sx sx @@ -5930,11 +5982,11 @@ Rw lb lb xV -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (11,1,1) = {" @@ -5979,11 +6031,11 @@ Rw lb lb xV -NH -NH -NH -NH -NH +EA +EA +EA +EA +EA NH "} (12,1,1) = {" @@ -6028,11 +6080,11 @@ Rw lb lb xV -xV -NH -NH -NH -NH +qe +EA +EA +EA +EA NH "} (13,1,1) = {" @@ -6077,11 +6129,11 @@ Rw lb lb lb -xV -NH -NH -NH -NH +qe +EA +EA +EA +EA NH "} (14,1,1) = {" @@ -6126,11 +6178,11 @@ Rw Lb lb lb -xV -xV -NH -NH -NH +qe +qe +EA +EA +EA NH "} (15,1,1) = {" @@ -6176,10 +6228,10 @@ Lb Lb Lb Lb -xV -NH -NH -NH +qe +EA +EA +EA NH "} (16,1,1) = {" @@ -6217,7 +6269,7 @@ yL yL Bf yL -yL +HR yL mn yL @@ -6225,17 +6277,17 @@ Fk xq cA tr -xV -NH -NH -NH +qe +EA +EA +EA NH "} (17,1,1) = {" Vr dt -TV -TV +ln +ln xu xu xu @@ -6275,9 +6327,9 @@ eP sP Ss hQ -ul -NH -NH +wW +EA +EA NH "} (18,1,1) = {" @@ -6305,7 +6357,7 @@ gh gh Tl gh -gh +Ox gh gh gh @@ -6324,19 +6376,19 @@ mq Lb Lb hQ -ul -NH -NH +wW +EA +EA NH "} (19,1,1) = {" vd -WV +dl dt dt ln WF -ut +kK kK Nm yL @@ -6373,9 +6425,9 @@ Lb Az Bs hQ -ul -NH -NH +wW +EA +EA NH "} (20,1,1) = {" @@ -6385,7 +6437,7 @@ AQ dt aM mS -NQ +pp pp sG VZ @@ -6420,11 +6472,11 @@ qb kS hY JN -DN +Bs hQ -ul -NH -NH +wW +EA +EA NH "} (21,1,1) = {" @@ -6432,12 +6484,12 @@ Vr Vr AQ dt -pm +ln Yg Yg Yg IA -yu +wS Lb hY Fz @@ -6471,9 +6523,9 @@ Lb Rb SP hQ -ul -ul -NH +wW +wW +EA NH "} (22,1,1) = {" @@ -6521,8 +6573,8 @@ Uh bs bs lb -ul -NH +wW +EA NH "} (23,1,1) = {" @@ -6553,7 +6605,7 @@ nj nj nj nj -nj +Ea Fz Sm bs @@ -6590,7 +6642,7 @@ NH bY gJ Fl -CK +Jh Jh wz pB @@ -6638,7 +6690,7 @@ Lb NH Fz WU -wS +Jh Jh wt bj @@ -6788,7 +6840,7 @@ XF bN eT bN -bN +DN bN bN EL @@ -7043,7 +7095,7 @@ nj nj nj nj -nj +Ea Fz Mj bs @@ -7228,7 +7280,7 @@ XV Zd eo dA -ZO +BA wG XV BG @@ -7272,9 +7324,9 @@ NH NH zp Id -ZO +BA gr -Xx +BA BA ny ny diff --git a/_maps/RuinGeneration/5x5_0_hallwaycross.dmm b/_maps/deepspace/5x5_0_hallwaycross.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_0_hallwaycross.dmm rename to _maps/deepspace/5x5_0_hallwaycross.dmm index 50326dcafabc..6f581ffb383b 100644 --- a/_maps/RuinGeneration/5x5_0_hallwaycross.dmm +++ b/_maps/deepspace/5x5_0_hallwaycross.dmm @@ -4,7 +4,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "m" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "n" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/deepspace/5x5_14_hallway-end-east.dmm b/_maps/deepspace/5x5_14_hallway-end-east.dmm new file mode 100644 index 000000000000..d714b3a835ff --- /dev/null +++ b/_maps/deepspace/5x5_14_hallway-end-east.dmm @@ -0,0 +1,64 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"n" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"o" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"F" = ( +/turf/template_noop, +/area/template_noop) +"I" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"M" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"R" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +a +R +o +R +a +"} +(2,1,1) = {" +a +R +R +R +a +"} +(3,1,1) = {" +a +M +M +M +a +"} +(4,1,1) = {" +n +n +F +n +n +"} +(5,1,1) = {" +F +I +F +I +F +"} diff --git a/_maps/deepspace/5x5_14_hallway-end-north.dmm b/_maps/deepspace/5x5_14_hallway-end-north.dmm new file mode 100644 index 000000000000..b7f969c240d3 --- /dev/null +++ b/_maps/deepspace/5x5_14_hallway-end-north.dmm @@ -0,0 +1,62 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"f" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"N" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"O" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"P" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"R" = ( +/turf/template_noop, +/area/template_noop) +"T" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"X" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) + +(1,1,1) = {" +R +O +X +X +X +"} +(2,1,1) = {" +P +O +T +f +f +"} +(3,1,1) = {" +R +R +T +f +N +"} +(4,1,1) = {" +P +O +T +f +f +"} +(5,1,1) = {" +R +O +X +X +X +"} diff --git a/_maps/deepspace/5x5_14_hallway-end-south.dmm b/_maps/deepspace/5x5_14_hallway-end-south.dmm new file mode 100644 index 000000000000..4e6901bdb4cc --- /dev/null +++ b/_maps/deepspace/5x5_14_hallway-end-south.dmm @@ -0,0 +1,64 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"c" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"g" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"j" = ( +/turf/template_noop, +/area/template_noop) +"C" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"P" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Q" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +g +g +g +c +j +"} +(2,1,1) = {" +P +P +C +c +d +"} +(3,1,1) = {" +Q +P +C +j +j +"} +(4,1,1) = {" +P +P +C +c +d +"} +(5,1,1) = {" +g +g +g +c +j +"} diff --git a/_maps/deepspace/5x5_14_hallway-end-west.dmm b/_maps/deepspace/5x5_14_hallway-end-west.dmm new file mode 100644 index 000000000000..1961da8a7621 --- /dev/null +++ b/_maps/deepspace/5x5_14_hallway-end-west.dmm @@ -0,0 +1,64 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"g" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"w" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"y" = ( +/turf/template_noop, +/area/template_noop) +"z" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"O" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"P" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"V" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) + +(1,1,1) = {" +y +w +y +w +y +"} +(2,1,1) = {" +z +z +y +z +z +"} +(3,1,1) = {" +g +V +V +V +g +"} +(4,1,1) = {" +g +P +P +P +g +"} +(5,1,1) = {" +g +P +O +P +g +"} diff --git a/_maps/RuinGeneration/5x5_1_hallwayvertical_eastwest_room.dmm b/_maps/deepspace/5x5_1_hallwayvertical_eastwest_room.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_1_hallwayvertical_eastwest_room.dmm rename to _maps/deepspace/5x5_1_hallwayvertical_eastwest_room.dmm index 03e1af388009..5b074aa14584 100644 --- a/_maps/RuinGeneration/5x5_1_hallwayvertical_eastwest_room.dmm +++ b/_maps/deepspace/5x5_1_hallwayvertical_eastwest_room.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "m" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_20_hallwayhorizontal.dmm b/_maps/deepspace/5x5_20_hallwayhorizontal.dmm similarity index 94% rename from _maps/RuinGeneration/5x5_20_hallwayhorizontal.dmm rename to _maps/deepspace/5x5_20_hallwayhorizontal.dmm index 46f7f1791511..a8cfa3eb844f 100644 --- a/_maps/RuinGeneration/5x5_20_hallwayhorizontal.dmm +++ b/_maps/deepspace/5x5_20_hallwayhorizontal.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "g" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "q" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_20_hallwayvertical.dmm b/_maps/deepspace/5x5_20_hallwayvertical.dmm similarity index 94% rename from _maps/RuinGeneration/5x5_20_hallwayvertical.dmm rename to _maps/deepspace/5x5_20_hallwayvertical.dmm index 020d1aaa6b71..dd10f209f9b2 100644 --- a/_maps/RuinGeneration/5x5_20_hallwayvertical.dmm +++ b/_maps/deepspace/5x5_20_hallwayvertical.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "M" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_4_room-dorm.dmm b/_maps/deepspace/5x5_4_room-dorm.dmm similarity index 97% rename from _maps/RuinGeneration/5x5_4_room-dorm.dmm rename to _maps/deepspace/5x5_4_room-dorm.dmm index 692f34867b5a..5210d6d29f36 100644 --- a/_maps/RuinGeneration/5x5_4_room-dorm.dmm +++ b/_maps/deepspace/5x5_4_room-dorm.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "b" = ( /obj/structure/bed, diff --git a/_maps/RuinGeneration/5x5_4_room-janitor_closet.dmm b/_maps/deepspace/5x5_4_room-janitor_closet.dmm similarity index 98% rename from _maps/RuinGeneration/5x5_4_room-janitor_closet.dmm rename to _maps/deepspace/5x5_4_room-janitor_closet.dmm index 4b646e0f6687..a812c81923a0 100644 --- a/_maps/RuinGeneration/5x5_4_room-janitor_closet.dmm +++ b/_maps/deepspace/5x5_4_room-janitor_closet.dmm @@ -50,7 +50,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "M" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "P" = ( /obj/effect/turf_decal/tile/green{ diff --git a/_maps/RuinGeneration/5x5_4_room-storage.dmm b/_maps/deepspace/5x5_4_room-storage.dmm similarity index 90% rename from _maps/RuinGeneration/5x5_4_room-storage.dmm rename to _maps/deepspace/5x5_4_room-storage.dmm index 76e5f92cadaa..777c6629353f 100644 --- a/_maps/RuinGeneration/5x5_4_room-storage.dmm +++ b/_maps/deepspace/5x5_4_room-storage.dmm @@ -1,11 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "e" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "f" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/unpowered) "i" = ( diff --git a/_maps/RuinGeneration/5x5_4_room-toilet.dmm b/_maps/deepspace/5x5_4_room-toilet.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_4_room-toilet.dmm rename to _maps/deepspace/5x5_4_room-toilet.dmm index 00d7e5d419ff..d480fbc6f376 100644 --- a/_maps/RuinGeneration/5x5_4_room-toilet.dmm +++ b/_maps/deepspace/5x5_4_room-toilet.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "q" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "K" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_5_hallwayroom_east.dmm b/_maps/deepspace/5x5_5_hallwayroom_east.dmm similarity index 94% rename from _maps/RuinGeneration/5x5_5_hallwayroom_east.dmm rename to _maps/deepspace/5x5_5_hallwayroom_east.dmm index 6f3f76b5f0bd..f6bec7d4a4d1 100644 --- a/_maps/RuinGeneration/5x5_5_hallwayroom_east.dmm +++ b/_maps/deepspace/5x5_5_hallwayroom_east.dmm @@ -6,7 +6,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "A" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_5_hallwayroom_west.dmm b/_maps/deepspace/5x5_5_hallwayroom_west.dmm similarity index 94% rename from _maps/RuinGeneration/5x5_5_hallwayroom_west.dmm rename to _maps/deepspace/5x5_5_hallwayroom_west.dmm index 89f4de7de443..a5a09a537461 100644 --- a/_maps/RuinGeneration/5x5_5_hallwayroom_west.dmm +++ b/_maps/deepspace/5x5_5_hallwayroom_west.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "i" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_6_hallwayvertical_east_room.dmm b/_maps/deepspace/5x5_6_hallwayvertical_east_room.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_6_hallwayvertical_east_room.dmm rename to _maps/deepspace/5x5_6_hallwayvertical_east_room.dmm index 60765f215401..85158a892fa8 100644 --- a/_maps/RuinGeneration/5x5_6_hallwayvertical_east_room.dmm +++ b/_maps/deepspace/5x5_6_hallwayvertical_east_room.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "E" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_6_hallwayvertical_west_room.dmm b/_maps/deepspace/5x5_6_hallwayvertical_west_room.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_6_hallwayvertical_west_room.dmm rename to _maps/deepspace/5x5_6_hallwayvertical_west_room.dmm index 4736de19fb77..cbe17ff29797 100644 --- a/_maps/RuinGeneration/5x5_6_hallwayvertical_west_room.dmm +++ b/_maps/deepspace/5x5_6_hallwayvertical_west_room.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "x" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_8_hallwayt-east.dmm b/_maps/deepspace/5x5_8_hallwayt-east.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_8_hallwayt-east.dmm rename to _maps/deepspace/5x5_8_hallwayt-east.dmm index 562fd1ef8939..a3c991a8d6d5 100644 --- a/_maps/RuinGeneration/5x5_8_hallwayt-east.dmm +++ b/_maps/deepspace/5x5_8_hallwayt-east.dmm @@ -12,7 +12,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "v" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "L" = ( /obj/effect/abstract/open_area_marker, diff --git a/_maps/RuinGeneration/5x5_8_hallwayt-north.dmm b/_maps/deepspace/5x5_8_hallwayt-north.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_8_hallwayt-north.dmm rename to _maps/deepspace/5x5_8_hallwayt-north.dmm index e0a8bdfb0d04..54026e9305d7 100644 --- a/_maps/RuinGeneration/5x5_8_hallwayt-north.dmm +++ b/_maps/deepspace/5x5_8_hallwayt-north.dmm @@ -21,7 +21,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "E" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_8_hallwayt-south.dmm b/_maps/deepspace/5x5_8_hallwayt-south.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_8_hallwayt-south.dmm rename to _maps/deepspace/5x5_8_hallwayt-south.dmm index d9f3268a6719..b5cbbd958c70 100644 --- a/_maps/RuinGeneration/5x5_8_hallwayt-south.dmm +++ b/_maps/deepspace/5x5_8_hallwayt-south.dmm @@ -7,7 +7,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "s" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "v" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_8_hallwayt-west.dmm b/_maps/deepspace/5x5_8_hallwayt-west.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_8_hallwayt-west.dmm rename to _maps/deepspace/5x5_8_hallwayt-west.dmm index b9d28788de05..893c55d087d3 100644 --- a/_maps/RuinGeneration/5x5_8_hallwayt-west.dmm +++ b/_maps/deepspace/5x5_8_hallwayt-west.dmm @@ -4,7 +4,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "z" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_cryo.dmm b/_maps/deepspace/5x5_cryo.dmm similarity index 93% rename from _maps/RuinGeneration/5x5_cryo.dmm rename to _maps/deepspace/5x5_cryo.dmm index 482ec8581727..08f265b13c12 100644 --- a/_maps/RuinGeneration/5x5_cryo.dmm +++ b/_maps/deepspace/5x5_cryo.dmm @@ -25,8 +25,8 @@ /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "u" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "x" = ( /obj/effect/abstract/doorway_marker, @@ -45,7 +45,7 @@ /turf/open/floor/plasteel/showroomfloor, /area/ruin/unpowered) "L" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "P" = ( /obj/structure/fluff/empty_sleeper/nanotrasen{ diff --git a/_maps/RuinGeneration/5x5_hern.dmm b/_maps/deepspace/5x5_hern.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hern.dmm rename to _maps/deepspace/5x5_hern.dmm index a280f9ceacf3..6c55b4afe398 100644 --- a/_maps/RuinGeneration/5x5_hern.dmm +++ b/_maps/deepspace/5x5_hern.dmm @@ -27,7 +27,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "W" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_hern_damaged.dmm b/_maps/deepspace/5x5_hern_damaged.dmm similarity index 92% rename from _maps/RuinGeneration/5x5_hern_damaged.dmm rename to _maps/deepspace/5x5_hern_damaged.dmm index bea1aeaf38c3..c053c0b58933 100644 --- a/_maps/RuinGeneration/5x5_hern_damaged.dmm +++ b/_maps/deepspace/5x5_hern_damaged.dmm @@ -27,10 +27,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "S" = ( -/turf/closed/wall, -/area/ruin/unpowered) -"V" = ( -/turf/open/floor/plating, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "W" = ( /obj/effect/abstract/doorway_marker{ @@ -49,7 +46,7 @@ S (2,1,1) = {" S k -V +u D S "} diff --git a/_maps/RuinGeneration/5x5_hernsw.dmm b/_maps/deepspace/5x5_hernsw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hernsw.dmm rename to _maps/deepspace/5x5_hernsw.dmm index 06f656a2d76c..132c3fd56084 100644 --- a/_maps/RuinGeneration/5x5_hernsw.dmm +++ b/_maps/deepspace/5x5_hernsw.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "k" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "G" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hernsw_damaged.dmm b/_maps/deepspace/5x5_hernsw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hernsw_damaged.dmm rename to _maps/deepspace/5x5_hernsw_damaged.dmm index e77e7095c050..a229754afabe 100644 --- a/_maps/RuinGeneration/5x5_hernsw_damaged.dmm +++ b/_maps/deepspace/5x5_hernsw_damaged.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "E" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "L" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hernw.dmm b/_maps/deepspace/5x5_hernw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hernw.dmm rename to _maps/deepspace/5x5_hernw.dmm index 3e29eaef5484..b766ee5f36a2 100644 --- a/_maps/RuinGeneration/5x5_hernw.dmm +++ b/_maps/deepspace/5x5_hernw.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "U" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_hernw_damaged.dmm b/_maps/deepspace/5x5_hernw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hernw_damaged.dmm rename to _maps/deepspace/5x5_hernw_damaged.dmm index ef91feed8b24..60571689abda 100644 --- a/_maps/RuinGeneration/5x5_hernw_damaged.dmm +++ b/_maps/deepspace/5x5_hernw_damaged.dmm @@ -25,7 +25,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "y" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "J" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hers.dmm b/_maps/deepspace/5x5_hers.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hers.dmm rename to _maps/deepspace/5x5_hers.dmm index fc7c5eef945d..8bb11e9352a1 100644 --- a/_maps/RuinGeneration/5x5_hers.dmm +++ b/_maps/deepspace/5x5_hers.dmm @@ -9,7 +9,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "r" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "v" = ( /obj/structure/closet/emcloset, diff --git a/_maps/RuinGeneration/5x5_hers_damaged.dmm b/_maps/deepspace/5x5_hers_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hers_damaged.dmm rename to _maps/deepspace/5x5_hers_damaged.dmm index 7c602776d0c3..44f062f44da7 100644 --- a/_maps/RuinGeneration/5x5_hers_damaged.dmm +++ b/_maps/deepspace/5x5_hers_damaged.dmm @@ -14,7 +14,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "E" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "F" = ( /turf/open/space/basic, diff --git a/_maps/RuinGeneration/5x5_hersw.dmm b/_maps/deepspace/5x5_hersw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hersw.dmm rename to _maps/deepspace/5x5_hersw.dmm index d0ff3f769c01..62a0e9457812 100644 --- a/_maps/RuinGeneration/5x5_hersw.dmm +++ b/_maps/deepspace/5x5_hersw.dmm @@ -10,7 +10,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "C" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "K" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hersw_damaged.dmm b/_maps/deepspace/5x5_hersw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hersw_damaged.dmm rename to _maps/deepspace/5x5_hersw_damaged.dmm index d1cd7b66d42e..b7ea81ace65b 100644 --- a/_maps/RuinGeneration/5x5_hersw_damaged.dmm +++ b/_maps/deepspace/5x5_hersw_damaged.dmm @@ -17,7 +17,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "B" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "H" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hesrnw.dmm b/_maps/deepspace/5x5_hesrnw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hesrnw.dmm rename to _maps/deepspace/5x5_hesrnw.dmm index 687d69b4f285..fc0adf261b78 100644 --- a/_maps/RuinGeneration/5x5_hesrnw.dmm +++ b/_maps/deepspace/5x5_hesrnw.dmm @@ -9,7 +9,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "t" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "z" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hesrnw_damaged.dmm b/_maps/deepspace/5x5_hesrnw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hesrnw_damaged.dmm rename to _maps/deepspace/5x5_hesrnw_damaged.dmm index 6dede296d823..10c8b516c05c 100644 --- a/_maps/RuinGeneration/5x5_hesrnw_damaged.dmm +++ b/_maps/deepspace/5x5_hesrnw_damaged.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "G" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "S" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_heswrn.dmm b/_maps/deepspace/5x5_heswrn.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_heswrn.dmm rename to _maps/deepspace/5x5_heswrn.dmm index 907a3e3a124f..9b7e23bcfcec 100644 --- a/_maps/RuinGeneration/5x5_heswrn.dmm +++ b/_maps/deepspace/5x5_heswrn.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "N" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_heswrn_damaged.dmm b/_maps/deepspace/5x5_heswrn_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_heswrn_damaged.dmm rename to _maps/deepspace/5x5_heswrn_damaged.dmm index 9117d52a4c8f..d67eb2a120b6 100644 --- a/_maps/RuinGeneration/5x5_heswrn_damaged.dmm +++ b/_maps/deepspace/5x5_heswrn_damaged.dmm @@ -18,7 +18,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "u" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "A" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hew_damaged.dmm b/_maps/deepspace/5x5_hew_damaged.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hew_damaged.dmm rename to _maps/deepspace/5x5_hew_damaged.dmm index 96d27e447ce8..acff6d588a69 100644 --- a/_maps/RuinGeneration/5x5_hew_damaged.dmm +++ b/_maps/deepspace/5x5_hew_damaged.dmm @@ -16,7 +16,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "F" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "M" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hewrn.dmm b/_maps/deepspace/5x5_hewrn.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hewrn.dmm rename to _maps/deepspace/5x5_hewrn.dmm index badc610f6686..cdd76dae1269 100644 --- a/_maps/RuinGeneration/5x5_hewrn.dmm +++ b/_maps/deepspace/5x5_hewrn.dmm @@ -12,7 +12,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "C" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "K" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hewrn_damaged.dmm b/_maps/deepspace/5x5_hewrn_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hewrn_damaged.dmm rename to _maps/deepspace/5x5_hewrn_damaged.dmm index 12466ede3cc9..df5566b692ce 100644 --- a/_maps/RuinGeneration/5x5_hewrn_damaged.dmm +++ b/_maps/deepspace/5x5_hewrn_damaged.dmm @@ -24,7 +24,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Q" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "W" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hewrns.dmm b/_maps/deepspace/5x5_hewrns.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hewrns.dmm rename to _maps/deepspace/5x5_hewrns.dmm index 1947c501e39a..1ba07ca3d82b 100644 --- a/_maps/RuinGeneration/5x5_hewrns.dmm +++ b/_maps/deepspace/5x5_hewrns.dmm @@ -19,7 +19,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "J" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "V" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hewrns_damaged.dmm b/_maps/deepspace/5x5_hewrns_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hewrns_damaged.dmm rename to _maps/deepspace/5x5_hewrns_damaged.dmm index 7f55caea0eb4..b2a1ae8e57d6 100644 --- a/_maps/RuinGeneration/5x5_hewrns_damaged.dmm +++ b/_maps/deepspace/5x5_hewrns_damaged.dmm @@ -8,7 +8,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "i" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hewrs.dmm b/_maps/deepspace/5x5_hewrs.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hewrs.dmm rename to _maps/deepspace/5x5_hewrs.dmm index c1f751aa8650..c006be3fbfe6 100644 --- a/_maps/RuinGeneration/5x5_hewrs.dmm +++ b/_maps/deepspace/5x5_hewrs.dmm @@ -9,7 +9,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "v" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "S" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hewrs_damaged.dmm b/_maps/deepspace/5x5_hewrs_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hewrs_damaged.dmm rename to _maps/deepspace/5x5_hewrs_damaged.dmm index d52736be0556..6f55880672f6 100644 --- a/_maps/RuinGeneration/5x5_hewrs_damaged.dmm +++ b/_maps/deepspace/5x5_hewrs_damaged.dmm @@ -6,7 +6,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "h" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "n" = ( /obj/effect/abstract/doorway_marker, diff --git a/_maps/RuinGeneration/5x5_hnersw.dmm b/_maps/deepspace/5x5_hnersw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnersw.dmm rename to _maps/deepspace/5x5_hnersw.dmm index 4025715cdcf2..705b192257af 100644 --- a/_maps/RuinGeneration/5x5_hnersw.dmm +++ b/_maps/deepspace/5x5_hnersw.dmm @@ -19,7 +19,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "x" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "Y" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hnersw_damaged.dmm b/_maps/deepspace/5x5_hnersw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnersw_damaged.dmm rename to _maps/deepspace/5x5_hnersw_damaged.dmm index 68fe14ba3e8f..b735aa67f48d 100644 --- a/_maps/RuinGeneration/5x5_hnersw_damaged.dmm +++ b/_maps/deepspace/5x5_hnersw_damaged.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "i" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "o" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hnesrw.dmm b/_maps/deepspace/5x5_hnesrw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnesrw.dmm rename to _maps/deepspace/5x5_hnesrw.dmm index bfa7decba227..5c6502cb524f 100644 --- a/_maps/RuinGeneration/5x5_hnesrw.dmm +++ b/_maps/deepspace/5x5_hnesrw.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "i" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "j" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hnesrw_damaged.dmm b/_maps/deepspace/5x5_hnesrw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnesrw_damaged.dmm rename to _maps/deepspace/5x5_hnesrw_damaged.dmm index 0a44ec53be92..782d32333e92 100644 --- a/_maps/RuinGeneration/5x5_hnesrw_damaged.dmm +++ b/_maps/deepspace/5x5_hnesrw_damaged.dmm @@ -12,7 +12,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "p" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "C" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hnewrs.dmm b/_maps/deepspace/5x5_hnewrs.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnewrs.dmm rename to _maps/deepspace/5x5_hnewrs.dmm index 6cd947f57838..d762e208f2cb 100644 --- a/_maps/RuinGeneration/5x5_hnewrs.dmm +++ b/_maps/deepspace/5x5_hnewrs.dmm @@ -10,7 +10,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "H" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "I" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hnewrs_damaged.dmm b/_maps/deepspace/5x5_hnewrs_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnewrs_damaged.dmm rename to _maps/deepspace/5x5_hnewrs_damaged.dmm index b379b4aa2221..bef07a187d0f 100644 --- a/_maps/RuinGeneration/5x5_hnewrs_damaged.dmm +++ b/_maps/deepspace/5x5_hnewrs_damaged.dmm @@ -16,7 +16,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "M" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "P" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hnresw.dmm b/_maps/deepspace/5x5_hnresw.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnresw.dmm rename to _maps/deepspace/5x5_hnresw.dmm index 7f658dfe9d21..605ccb0bc8ae 100644 --- a/_maps/RuinGeneration/5x5_hnresw.dmm +++ b/_maps/deepspace/5x5_hnresw.dmm @@ -4,7 +4,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "i" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "j" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hnresw_damaged.dmm b/_maps/deepspace/5x5_hnresw_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnresw_damaged.dmm rename to _maps/deepspace/5x5_hnresw_damaged.dmm index 276f8c0cf6e0..df159b9066df 100644 --- a/_maps/RuinGeneration/5x5_hnresw_damaged.dmm +++ b/_maps/deepspace/5x5_hnresw_damaged.dmm @@ -3,7 +3,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "m" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "v" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hns_damaged.dmm b/_maps/deepspace/5x5_hns_damaged.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hns_damaged.dmm rename to _maps/deepspace/5x5_hns_damaged.dmm index f3ff795b14e5..4a8ee41228c8 100644 --- a/_maps/RuinGeneration/5x5_hns_damaged.dmm +++ b/_maps/deepspace/5x5_hns_damaged.dmm @@ -6,7 +6,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "r" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "z" = ( /turf/open/space/basic, diff --git a/_maps/RuinGeneration/5x5_hnswre.dmm b/_maps/deepspace/5x5_hnswre.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnswre.dmm rename to _maps/deepspace/5x5_hnswre.dmm index cd18b74b903a..85c4f8fe7ee4 100644 --- a/_maps/RuinGeneration/5x5_hnswre.dmm +++ b/_maps/deepspace/5x5_hnswre.dmm @@ -19,7 +19,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "J" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "P" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hnswre_damaged.dmm b/_maps/deepspace/5x5_hnswre_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnswre_damaged.dmm rename to _maps/deepspace/5x5_hnswre_damaged.dmm index b49ce929f3c0..498e74eb81e0 100644 --- a/_maps/RuinGeneration/5x5_hnswre_damaged.dmm +++ b/_maps/deepspace/5x5_hnswre_damaged.dmm @@ -28,7 +28,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "G" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "S" = ( /obj/effect/abstract/open_area_marker, diff --git a/_maps/RuinGeneration/5x5_hnwres.dmm b/_maps/deepspace/5x5_hnwres.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hnwres.dmm rename to _maps/deepspace/5x5_hnwres.dmm index e1c2ef738688..965a03981480 100644 --- a/_maps/RuinGeneration/5x5_hnwres.dmm +++ b/_maps/deepspace/5x5_hnwres.dmm @@ -19,7 +19,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "R" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "Z" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hnwres_damaged.dmm b/_maps/deepspace/5x5_hnwres_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hnwres_damaged.dmm rename to _maps/deepspace/5x5_hnwres_damaged.dmm index 6318dc36d046..126ca2fe7d6f 100644 --- a/_maps/RuinGeneration/5x5_hnwres_damaged.dmm +++ b/_maps/deepspace/5x5_hnwres_damaged.dmm @@ -17,7 +17,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "D" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "G" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hsrnew.dmm b/_maps/deepspace/5x5_hsrnew.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hsrnew.dmm rename to _maps/deepspace/5x5_hsrnew.dmm index 02f4b4526077..aac7dcc61668 100644 --- a/_maps/RuinGeneration/5x5_hsrnew.dmm +++ b/_maps/deepspace/5x5_hsrnew.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "k" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "E" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/5x5_hsrnew_damaged.dmm b/_maps/deepspace/5x5_hsrnew_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hsrnew_damaged.dmm rename to _maps/deepspace/5x5_hsrnew_damaged.dmm index 63947669ffa5..621ac4c5e60a 100644 --- a/_maps/RuinGeneration/5x5_hsrnew_damaged.dmm +++ b/_maps/deepspace/5x5_hsrnew_damaged.dmm @@ -22,7 +22,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "E" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "F" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hswrne.dmm b/_maps/deepspace/5x5_hswrne.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hswrne.dmm rename to _maps/deepspace/5x5_hswrne.dmm index e51132bd274d..ce575598aeb4 100644 --- a/_maps/RuinGeneration/5x5_hswrne.dmm +++ b/_maps/deepspace/5x5_hswrne.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "W" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_hswrne_damaged.dmm b/_maps/deepspace/5x5_hswrne_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hswrne_damaged.dmm rename to _maps/deepspace/5x5_hswrne_damaged.dmm index bc50fa4ae1d1..eb881603f285 100644 --- a/_maps/RuinGeneration/5x5_hswrne_damaged.dmm +++ b/_maps/deepspace/5x5_hswrne_damaged.dmm @@ -4,7 +4,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "e" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "o" = ( /obj/structure/lattice, diff --git a/_maps/RuinGeneration/5x5_hwres.dmm b/_maps/deepspace/5x5_hwres.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hwres.dmm rename to _maps/deepspace/5x5_hwres.dmm index f5edb65b7811..c6f2becc40a0 100644 --- a/_maps/RuinGeneration/5x5_hwres.dmm +++ b/_maps/deepspace/5x5_hwres.dmm @@ -11,7 +11,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "w" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "F" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hwres_damaged.dmm b/_maps/deepspace/5x5_hwres_damaged.dmm similarity index 88% rename from _maps/RuinGeneration/5x5_hwres_damaged.dmm rename to _maps/deepspace/5x5_hwres_damaged.dmm index 5845c8feca47..ae833ba6852c 100644 --- a/_maps/RuinGeneration/5x5_hwres_damaged.dmm +++ b/_maps/deepspace/5x5_hwres_damaged.dmm @@ -22,12 +22,8 @@ "C" = ( /turf/open/floor/plasteel, /area/ruin/unpowered) -"D" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/ruin/unpowered) "F" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "V" = ( /obj/effect/abstract/doorway_marker{ @@ -45,7 +41,7 @@ F "} (2,1,1) = {" m -D +t d C F @@ -53,7 +49,7 @@ F (3,1,1) = {" m m -D +t d p "} diff --git a/_maps/RuinGeneration/5x5_hwrn.dmm b/_maps/deepspace/5x5_hwrn.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrn.dmm rename to _maps/deepspace/5x5_hwrn.dmm index b03ed9baf35d..9e67d513369b 100644 --- a/_maps/RuinGeneration/5x5_hwrn.dmm +++ b/_maps/deepspace/5x5_hwrn.dmm @@ -21,7 +21,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "N" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "W" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hwrn_damaged.dmm b/_maps/deepspace/5x5_hwrn_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrn_damaged.dmm rename to _maps/deepspace/5x5_hwrn_damaged.dmm index 02b581cd3cbc..43e9ae68b498 100644 --- a/_maps/RuinGeneration/5x5_hwrn_damaged.dmm +++ b/_maps/deepspace/5x5_hwrn_damaged.dmm @@ -23,7 +23,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "G" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "I" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hwrne.dmm b/_maps/deepspace/5x5_hwrne.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hwrne.dmm rename to _maps/deepspace/5x5_hwrne.dmm index b39b948defa4..ed9b3bcb089c 100644 --- a/_maps/RuinGeneration/5x5_hwrne.dmm +++ b/_maps/deepspace/5x5_hwrne.dmm @@ -16,7 +16,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "s" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "G" = ( /turf/open/floor/plasteel, diff --git a/_maps/RuinGeneration/5x5_hwrne_damaged.dmm b/_maps/deepspace/5x5_hwrne_damaged.dmm similarity index 88% rename from _maps/RuinGeneration/5x5_hwrne_damaged.dmm rename to _maps/deepspace/5x5_hwrne_damaged.dmm index 811a6b59daad..d9499f969f32 100644 --- a/_maps/RuinGeneration/5x5_hwrne_damaged.dmm +++ b/_maps/deepspace/5x5_hwrne_damaged.dmm @@ -12,10 +12,6 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered) -"v" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/ruin/unpowered) "x" = ( /turf/open/floor/plating, /area/ruin/unpowered) @@ -32,7 +28,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "N" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "X" = ( /turf/open/floor/plasteel, @@ -49,15 +45,15 @@ N N X x -v +b x "} (3,1,1) = {" D x -v +b e -v +b "} (4,1,1) = {" N diff --git a/_maps/RuinGeneration/5x5_hwrnes.dmm b/_maps/deepspace/5x5_hwrnes.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_hwrnes.dmm rename to _maps/deepspace/5x5_hwrnes.dmm index 0b60b4b1b9af..ed59870c4f13 100644 --- a/_maps/RuinGeneration/5x5_hwrnes.dmm +++ b/_maps/deepspace/5x5_hwrnes.dmm @@ -13,7 +13,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "A" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "O" = ( /obj/effect/abstract/open_area_marker{ diff --git a/_maps/RuinGeneration/5x5_hwrnes_damaged.dmm b/_maps/deepspace/5x5_hwrnes_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrnes_damaged.dmm rename to _maps/deepspace/5x5_hwrnes_damaged.dmm index af1e61a7726b..d8f44f28e86e 100644 --- a/_maps/RuinGeneration/5x5_hwrnes_damaged.dmm +++ b/_maps/deepspace/5x5_hwrnes_damaged.dmm @@ -25,7 +25,7 @@ /turf/open/space/basic, /area/ruin/unpowered) "G" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "K" = ( /turf/open/floor/plating, diff --git a/_maps/RuinGeneration/5x5_hwrns.dmm b/_maps/deepspace/5x5_hwrns.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrns.dmm rename to _maps/deepspace/5x5_hwrns.dmm index 02ca603905eb..7bddee7ea535 100644 --- a/_maps/RuinGeneration/5x5_hwrns.dmm +++ b/_maps/deepspace/5x5_hwrns.dmm @@ -31,7 +31,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "U" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/5x5_hwrns_damaged.dmm b/_maps/deepspace/5x5_hwrns_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrns_damaged.dmm rename to _maps/deepspace/5x5_hwrns_damaged.dmm index bf5a71c97a76..97a21803240f 100644 --- a/_maps/RuinGeneration/5x5_hwrns_damaged.dmm +++ b/_maps/deepspace/5x5_hwrns_damaged.dmm @@ -12,7 +12,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "w" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "I" = ( /turf/open/space/basic, diff --git a/_maps/RuinGeneration/5x5_hwrs.dmm b/_maps/deepspace/5x5_hwrs.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrs.dmm rename to _maps/deepspace/5x5_hwrs.dmm index 6a01f960b872..6e90d7800419 100644 --- a/_maps/RuinGeneration/5x5_hwrs.dmm +++ b/_maps/deepspace/5x5_hwrs.dmm @@ -8,7 +8,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "F" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "G" = ( /obj/item/kirbyplants/random, diff --git a/_maps/RuinGeneration/5x5_hwrs_damaged.dmm b/_maps/deepspace/5x5_hwrs_damaged.dmm similarity index 96% rename from _maps/RuinGeneration/5x5_hwrs_damaged.dmm rename to _maps/deepspace/5x5_hwrs_damaged.dmm index 47e5db2901d0..d0894f1c404a 100644 --- a/_maps/RuinGeneration/5x5_hwrs_damaged.dmm +++ b/_maps/deepspace/5x5_hwrs_damaged.dmm @@ -20,7 +20,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "U" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "V" = ( /turf/open/floor/plating, diff --git a/_maps/RuinGeneration/5x5_roomcross.dmm b/_maps/deepspace/5x5_roomcross.dmm similarity index 97% rename from _maps/RuinGeneration/5x5_roomcross.dmm rename to _maps/deepspace/5x5_roomcross.dmm index bf60e85feeaf..3491c4e3304c 100644 --- a/_maps/RuinGeneration/5x5_roomcross.dmm +++ b/_maps/deepspace/5x5_roomcross.dmm @@ -30,7 +30,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "y" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "B" = ( /obj/item/kirbyplants/random, diff --git a/_maps/RuinGeneration/5x5_shower.dmm b/_maps/deepspace/5x5_shower.dmm similarity index 95% rename from _maps/RuinGeneration/5x5_shower.dmm rename to _maps/deepspace/5x5_shower.dmm index f3129bf939b7..cba7e250d548 100644 --- a/_maps/RuinGeneration/5x5_shower.dmm +++ b/_maps/deepspace/5x5_shower.dmm @@ -19,7 +19,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "G" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "U" = ( /obj/machinery/shower{ diff --git a/_maps/deepspace/5x6_arsenal.dmm b/_maps/deepspace/5x6_arsenal.dmm new file mode 100644 index 000000000000..aeb54b08f080 --- /dev/null +++ b/_maps/deepspace/5x6_arsenal.dmm @@ -0,0 +1,200 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"b" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/ruin/unpowered) +"e" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "����������� �����" + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/alt, +/turf/open/floor/engine, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "����������� �����" + }, +/obj/structure/table/reinforced, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = -5 + }, +/obj/item/ammo_box/magazine/m9mm, +/obj/item/ammo_box/magazine/m9mm{ + pixel_x = 5 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"q" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel/catwalk_floor, +/area/ruin/unpowered) +"t" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/gun/ballistic/rifle/boltaction/kar98k, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "����������� �����" + }, +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/rifle/boltaction/kar98k{ + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"v" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + name = "����������� �����" + }, +/obj/structure/table/reinforced, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = -5 + }, +/obj/item/ammo_box/magazine/a792x57, +/obj/item/ammo_box/magazine/a792x57{ + pixel_x = 5 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"C" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/gun/ballistic/rifle/boltaction/kar98k/scope, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "����������� �����" + }, +/obj/structure/table/reinforced, +/obj/item/gun/ballistic/rifle/boltaction/kar98k/scope{ + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"H" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/ussr, +/obj/item/clothing/head/helmet/ussr, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "����������� �����" + }, +/turf/open/floor/engine, +/area/ruin/unpowered) +"I" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/retro/old, +/turf/open/floor/engine, +/area/ruin/unpowered) +"N" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/ruin/unpowered) +"T" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/engine, +/area/ruin/unpowered) + +(1,1,1) = {" +a +a +a +a +a +a +"} +(2,1,1) = {" +a +v +l +C +t +a +"} +(3,1,1) = {" +b +N +N +N +N +q +"} +(4,1,1) = {" +a +T +I +e +H +a +"} +(5,1,1) = {" +a +a +a +a +a +a +"} diff --git a/_maps/deepspace/5x7_smoke_room.dmm b/_maps/deepspace/5x7_smoke_room.dmm new file mode 100644 index 000000000000..60cea6ef5a70 --- /dev/null +++ b/_maps/deepspace/5x7_smoke_room.dmm @@ -0,0 +1,154 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aW" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/turf/open/floor/wood, +/area/ruin/unpowered) +"bI" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = -3 + }, +/obj/item/lighter, +/turf/open/floor/wood, +/area/ruin/unpowered) +"dA" = ( +/obj/structure/table/wood, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/ruin/unpowered) +"iZ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/ruin/unpowered) +"lE" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/plating/rust, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"mZ" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"nA" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/circuitboard/machine/microwave, +/turf/open/floor/wood, +/area/ruin/unpowered) +"oL" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/wood, +/area/ruin/unpowered) +"qG" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/ruin/unpowered) +"vW" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Id" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Lh" = ( +/turf/open/floor/wood, +/area/ruin/unpowered) +"NT" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/ruin/unpowered) +"Oa" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/ruin/unpowered) + +(1,1,1) = {" +mj +mj +mj +mj +vW +mj +mj +"} +(2,1,1) = {" +mj +iZ +Id +dA +qG +aW +mj +"} +(3,1,1) = {" +BO +Lh +Lh +Lh +Lh +nA +mj +"} +(4,1,1) = {" +mj +bI +mZ +oL +NT +Oa +mj +"} +(5,1,1) = {" +mj +lE +lE +lE +lE +mj +mj +"} diff --git a/_maps/deepspace/5x8_morgue.dmm b/_maps/deepspace/5x8_morgue.dmm new file mode 100644 index 000000000000..a6f71a54f11a --- /dev/null +++ b/_maps/deepspace/5x8_morgue.dmm @@ -0,0 +1,255 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"gy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iA" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"le" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance/seven, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"nW" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"qf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -11 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Fk" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"FA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/bubblegum, +/obj/effect/decal/cleanable/blood/gibs{ + pixel_y = -7 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"KO" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"OJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Px" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/cat_butcher, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Qv" = ( +/obj/structure/bodycontainer/morgue, +/obj/item/radio/intercom{ + name = "Station Intercom"; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera/directional/east{ + network = list("outpost") + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Td" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bottle/atropine{ + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"XV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/assistant, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Yb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/bubblegum{ + pixel_y = -16; + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"YI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/footprints, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +mj +mj +mj +mj +mj +mj +mj +mj +"} +(2,1,1) = {" +mj +KO +iA +Qv +nW +Td +KO +mj +"} +(3,1,1) = {" +BO +OJ +FA +YI +YI +YI +Yb +Fk +"} +(4,1,1) = {" +mj +Px +gy +XV +XV +qf +le +mj +"} +(5,1,1) = {" +mj +mj +mj +mj +mj +mj +mj +mj +"} diff --git a/_maps/RuinGeneration/5x9_gateway.dmm b/_maps/deepspace/5x9_gateway.dmm similarity index 100% rename from _maps/RuinGeneration/5x9_gateway.dmm rename to _maps/deepspace/5x9_gateway.dmm diff --git a/_maps/RuinGeneration/5x9_lounge.dmm b/_maps/deepspace/5x9_lounge.dmm similarity index 87% rename from _maps/RuinGeneration/5x9_lounge.dmm rename to _maps/deepspace/5x9_lounge.dmm index 3a5a28aaa8ec..e455b31188b2 100644 --- a/_maps/RuinGeneration/5x9_lounge.dmm +++ b/_maps/deepspace/5x9_lounge.dmm @@ -19,11 +19,11 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "t" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/plasteel, /area/ruin/unpowered) "G" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/plasteel, /area/ruin/unpowered) "J" = ( @@ -33,7 +33,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Z" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/deepspace/5x9_northernairlock.dmm b/_maps/deepspace/5x9_northernairlock.dmm new file mode 100644 index 000000000000..0b8fb5ee217f --- /dev/null +++ b/_maps/deepspace/5x9_northernairlock.dmm @@ -0,0 +1,99 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"j" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"q" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"s" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"E" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"M" = ( +/turf/template_noop, +/area/template_noop) +"O" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"S" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"V" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) + +(1,1,1) = {" +M +M +j +j +j +V +V +V +V +"} +(2,1,1) = {" +M +b +j +q +q +q +O +O +O +"} +(3,1,1) = {" +M +M +j +T +E +s +O +O +S +"} +(4,1,1) = {" +M +b +j +q +q +q +O +O +O +"} +(5,1,1) = {" +M +M +j +j +j +V +V +V +V +"} diff --git a/_maps/deepspace/5x9_southernairlock.dmm b/_maps/deepspace/5x9_southernairlock.dmm new file mode 100644 index 000000000000..02b20df956ce --- /dev/null +++ b/_maps/deepspace/5x9_southernairlock.dmm @@ -0,0 +1,101 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"h" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"n" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"t" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"y" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ruin/unpowered) +"E" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"P" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/template_noop) +"T" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"U" = ( +/turf/template_noop, +/area/template_noop) +"V" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"Y" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +V +V +V +V +E +E +E +U +U +"} +(2,1,1) = {" +T +T +T +t +t +t +E +P +U +"} +(3,1,1) = {" +Y +T +T +n +h +y +E +U +U +"} +(4,1,1) = {" +T +T +T +t +t +t +E +P +U +"} +(5,1,1) = {" +V +V +V +V +E +E +E +U +U +"} diff --git a/_maps/RuinGeneration/5x9_windowroom.dmm b/_maps/deepspace/5x9_windowroom.dmm similarity index 85% rename from _maps/RuinGeneration/5x9_windowroom.dmm rename to _maps/deepspace/5x9_windowroom.dmm index 676dea5c8fcc..651c1974fca5 100644 --- a/_maps/RuinGeneration/5x9_windowroom.dmm +++ b/_maps/deepspace/5x9_windowroom.dmm @@ -1,11 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "f" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "k" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/plasteel, /area/ruin/unpowered) "m" = ( @@ -36,7 +36,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "X" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" diff --git a/_maps/RuinGeneration/69x45_charliestation.dmm b/_maps/deepspace/69x45_charliestation.dmm similarity index 98% rename from _maps/RuinGeneration/69x45_charliestation.dmm rename to _maps/deepspace/69x45_charliestation.dmm index 82439d0ad372..69332846f35f 100644 --- a/_maps/RuinGeneration/69x45_charliestation.dmm +++ b/_maps/deepspace/69x45_charliestation.dmm @@ -365,10 +365,8 @@ /area/ruin/space/has_grav/ancientstation/rnd) "dk" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) "dl" = ( @@ -697,10 +695,8 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) "fW" = ( @@ -978,10 +974,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plasteel, @@ -1190,10 +1184,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -1475,10 +1467,8 @@ "mt" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, @@ -1836,9 +1826,8 @@ /area/ruin/space/has_grav/ancientstation/rnd) "pJ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/food/egg_smudge, /obj/structure/cable, /turf/open/floor/plasteel/cafeteria, @@ -2248,10 +2237,8 @@ /area/ruin/space/has_grav/ancientstation/engi) "tk" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plasteel, @@ -2418,10 +2405,8 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light{ dir = 4 }, @@ -2433,7 +2418,7 @@ /area/ruin/space/has_grav/ancientstation/comm) "uz" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) "uA" = ( @@ -2625,7 +2610,7 @@ /area/ruin/space/has_grav/ancientstation/rnd) "wD" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, @@ -2639,9 +2624,8 @@ /area/ruin/space/has_grav/ancientstation/rnd) "wQ" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) "wR" = ( @@ -3088,10 +3072,8 @@ /area/ruin/space/has_grav/ancientstation) "Av" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) @@ -3232,10 +3214,8 @@ /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) "BH" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, @@ -3269,10 +3249,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) "Cf" = ( @@ -3661,10 +3639,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light_switch{ pixel_y = 26 }, @@ -3980,7 +3956,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) "HM" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "HQ" = ( @@ -4254,7 +4230,7 @@ /area/ruin/space/has_grav/ancientstation/kitchen) "Kc" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "Kg" = ( @@ -4356,10 +4332,8 @@ /area/ruin/space/has_grav/ancientstation/deltaai) "Lh" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, @@ -4757,10 +4731,8 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) "NJ" = ( @@ -4955,10 +4927,8 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) "OL" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -5583,10 +5553,8 @@ dir = 8 }, /obj/structure/closet/crate/bin, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) "Ua" = ( @@ -5748,10 +5716,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) "UY" = ( @@ -6101,7 +6067,7 @@ /area/ruin/space/has_grav/ancientstation/deltacorridor) "XB" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "XF" = ( diff --git a/_maps/RuinGeneration/7x7_hallwaystrange.dmm b/_maps/deepspace/7x7_hallwaystrange.dmm similarity index 97% rename from _maps/RuinGeneration/7x7_hallwaystrange.dmm rename to _maps/deepspace/7x7_hallwaystrange.dmm index d4c38457d883..c9107b1cb33a 100644 --- a/_maps/RuinGeneration/7x7_hallwaystrange.dmm +++ b/_maps/deepspace/7x7_hallwaystrange.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "d" = ( /obj/effect/turf_decal/stripes/line{ @@ -41,7 +41,7 @@ /turf/open/floor/plasteel/elevatorshaft, /area/ruin/unpowered) "q" = ( -/turf/open/floor/plating/catwalk_floor, +/turf/open/floor/plasteel/catwalk_floor, /area/ruin/unpowered) "r" = ( /obj/effect/abstract/doorway_marker, diff --git a/_maps/RuinGeneration/8x7_latheroom.dmm b/_maps/deepspace/8x7_latheroom.dmm similarity index 88% rename from _maps/RuinGeneration/8x7_latheroom.dmm rename to _maps/deepspace/8x7_latheroom.dmm index 694b4f1dc301..5e713a5680d7 100644 --- a/_maps/RuinGeneration/8x7_latheroom.dmm +++ b/_maps/deepspace/8x7_latheroom.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "b" = ( /obj/structure/table, @@ -8,8 +8,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "e" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, /area/ruin/unpowered) "k" = ( /obj/structure/table, @@ -26,7 +26,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "z" = ( -/obj/machinery/door/airlock/glass, +/obj/machinery/door/airlock/public/glass, /turf/open/floor/plasteel, /area/ruin/unpowered) "C" = ( diff --git a/_maps/deepspace/8x8_craft_room.dmm b/_maps/deepspace/8x8_craft_room.dmm new file mode 100644 index 000000000000..b294b7965b22 --- /dev/null +++ b/_maps/deepspace/8x8_craft_room.dmm @@ -0,0 +1,381 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bo" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"bH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"ce" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"cq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight{ + pixel_y = -12 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"cZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"eC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"fw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"ic" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"nS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"rB" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"vW" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"wE" = ( +/obj/machinery/vending/assist, +/obj/machinery/light, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"xk" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"xR" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"xZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"yL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Bi" = ( +/obj/effect/turf_decal/bot, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/structure/closet/crate/cardboard, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"BT" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Cd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"FF" = ( +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_x = 3 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"IM" = ( +/obj/machinery/autolathe, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"KX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Lo" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30; + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stack/sheet/glass{ + amount = 30; + pixel_x = 12; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"LZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"MB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit{ + mask_type = /obj/item/clothing/mask/breath; + suit_type = /obj/item/clothing/suit/space/hardsuit/rig_engineeringalt + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"NH" = ( +/turf/template_noop, +/area/template_noop) +"NT" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ss" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"SC" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +NH +mj +mj +vW +mj +mj +NH +NH +"} +(2,1,1) = {" +mj +mj +MB +NT +bH +mj +mj +mj +"} +(3,1,1) = {" +mj +xZ +KX +NT +LZ +fw +BT +mj +"} +(4,1,1) = {" +mj +bo +nS +xR +IM +ic +xk +mj +"} +(5,1,1) = {" +BO +NT +NT +cq +yL +ic +wE +mj +"} +(6,1,1) = {" +mj +eC +Ss +cZ +cZ +rB +Lo +mj +"} +(7,1,1) = {" +mj +ce +Cd +Bi +FF +mi +SC +mj +"} +(8,1,1) = {" +mj +mj +mj +mj +mj +mj +mj +mj +"} diff --git a/_maps/deepspace/8x9_dosug.dmm b/_maps/deepspace/8x9_dosug.dmm new file mode 100644 index 000000000000..d01f8df151f6 --- /dev/null +++ b/_maps/deepspace/8x9_dosug.dmm @@ -0,0 +1,240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"cw" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"eU" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"nD" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"nM" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"rg" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard/fifty, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"ul" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"vW" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"xd" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/ruin/unpowered) +"xV" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/grass, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"En" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"HB" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"HR" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Jh" = ( +/obj/structure/table, +/obj/item/crowbar/large{ + desc = "Пахнет белыми мечтами."; + name = "большой брат ванечки" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Kq" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Nm" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"NH" = ( +/turf/template_noop, +/area/template_noop) +"NT" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Oa" = ( +/obj/structure/table/reinforced, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_x = -26; + use_power = 0 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Qc" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Tk" = ( +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"VU" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"XG" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"ZH" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +NH +mj +mj +vW +mj +mj +mj +mj +mj +NH +"} +(2,1,1) = {" +mj +mj +NT +NT +NT +VU +nM +nM +mj +mj +"} +(3,1,1) = {" +mj +XG +NT +NT +NT +NT +NT +NT +Oa +mj +"} +(4,1,1) = {" +BO +NT +NT +Nm +rg +HB +NT +NT +nD +mj +"} +(5,1,1) = {" +mj +Tk +NT +ul +Jh +cw +NT +NT +HR +mj +"} +(6,1,1) = {" +mj +mj +NT +NT +NT +NT +NT +NT +Qc +mj +"} +(7,1,1) = {" +NH +mj +eU +xV +xd +En +Kq +ZH +mj +mj +"} +(8,1,1) = {" +NH +mj +mj +mj +mj +mj +mj +mj +mj +NH +"} diff --git a/_maps/RuinGeneration/8x9_underrailpq.dmm b/_maps/deepspace/8x9_underrailpq.dmm similarity index 90% rename from _maps/RuinGeneration/8x9_underrailpq.dmm rename to _maps/deepspace/8x9_underrailpq.dmm index 0f7b2fa2c32a..b09ef7cff817 100644 --- a/_maps/RuinGeneration/8x9_underrailpq.dmm +++ b/_maps/deepspace/8x9_underrailpq.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "d" = ( /obj/structure/table/wood, @@ -12,7 +12,7 @@ /area/ruin/unpowered) "h" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/armory_contraband, +/obj/effect/spawner/random/contraband/armory, /obj/structure/sign/poster/random{ pixel_x = 32 }, @@ -27,7 +27,7 @@ "o" = ( /obj/structure/closet, /obj/item/stack/sheet/mineral/plasma/thirty, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/ruin/unpowered) "t" = ( @@ -48,6 +48,7 @@ /obj/item/reagent_containers/glass/bottle/morphine, /obj/item/clothing/suit/hooded/cloak/goliath, /obj/item/spear/bonespear, +/obj/item/stack/sheet/armor_plate/plasteel/three, /turf/open/floor/plasteel, /area/ruin/unpowered) "E" = ( @@ -69,9 +70,7 @@ /turf/open/floor/wood, /area/ruin/unpowered) "K" = ( -/obj/item/storage/backpack/duffelbag/syndie/x4{ - pixel_x = 7 - }, +/obj/item/storage/backpack/duffelbag/c4_no_slowdown, /turf/open/floor/plasteel, /area/ruin/unpowered) "M" = ( @@ -86,7 +85,7 @@ /area/ruin/unpowered) "R" = ( /obj/structure/table, -/obj/item/storage/blister/twocap/stimulant, +/obj/machinery/recharger, /turf/open/floor/wood, /area/ruin/unpowered) "S" = ( diff --git a/_maps/RuinGeneration/9x13_kitchen.dmm b/_maps/deepspace/9x13_kitchen.dmm similarity index 96% rename from _maps/RuinGeneration/9x13_kitchen.dmm rename to _maps/deepspace/9x13_kitchen.dmm index 7b9362a5d51b..cb3fae3c53cb 100644 --- a/_maps/RuinGeneration/9x13_kitchen.dmm +++ b/_maps/deepspace/9x13_kitchen.dmm @@ -64,6 +64,12 @@ /obj/machinery/vending/dinnerware, /turf/open/floor/plasteel/cafeteria, /area/ruin/unpowered) +"t" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/unpowered) "z" = ( /turf/open/floor/plasteel, /area/ruin/unpowered) @@ -107,7 +113,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "L" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "O" = ( /turf/open/floor/plasteel/cafeteria, @@ -154,7 +160,7 @@ L s O O -O +t O O L diff --git a/_maps/deepspace/9x13_medstorage.dmm b/_maps/deepspace/9x13_medstorage.dmm new file mode 100644 index 000000000000..f310c0eef6e1 --- /dev/null +++ b/_maps/deepspace/9x13_medstorage.dmm @@ -0,0 +1,627 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"b" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"c" = ( +/turf/open/floor/material, +/area/ruin/unpowered) +"d" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"e" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/material, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/medipen_refiller, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"g" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/material, +/area/ruin/unpowered) +"h" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"i" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"j" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"k" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"l" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"m" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"n" = ( +/obj/structure/table/glass, +/obj/machinery/door/window{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"o" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"p" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"q" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"r" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"s" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"t" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"u" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"v" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/stack/sheet/iron/ten, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"w" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"x" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"y" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"z" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/oxandrolone{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/sal_acid{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"A" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"B" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"C" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"D" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"F" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"G" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"I" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/stack/sheet/glass/five, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"J" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"K" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"L" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"M" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"N" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"P" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"Q" = ( +/obj/machinery/medipen_refiller, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"R" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"S" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"U" = ( +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"V" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"W" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"X" = ( +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"Y" = ( +/obj/structure/table/glass, +/obj/machinery/door/window{ + dir = 8 + }, +/obj/item/storage/firstaid, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) +"Z" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +t +c +e +c +t +t +t +t +t +t +t +t +t +"} +(2,1,1) = {" +t +c +D +S +t +a +R +i +J +n +K +M +t +"} +(3,1,1) = {" +t +c +D +Z +d +F +X +P +u +X +P +b +y +"} +(4,1,1) = {" +t +c +D +Z +L +X +l +x +o +x +j +p +t +"} +(5,1,1) = {" +t +c +D +Z +d +C +w +I +U +v +q +f +t +"} +(6,1,1) = {" +t +c +c +Z +A +X +r +E +B +E +W +Q +t +"} +(7,1,1) = {" +t +c +c +Z +d +N +X +G +k +X +G +O +t +"} +(8,1,1) = {" +t +c +c +m +t +h +V +V +T +Y +s +z +t +"} +(9,1,1) = {" +t +c +g +D +t +t +t +t +t +t +t +t +t +"} diff --git a/_maps/RuinGeneration/9x13_sleeproom.dmm b/_maps/deepspace/9x13_sleeproom.dmm similarity index 77% rename from _maps/RuinGeneration/9x13_sleeproom.dmm rename to _maps/deepspace/9x13_sleeproom.dmm index d9a75405ceaa..2108848bab9a 100644 --- a/_maps/RuinGeneration/9x13_sleeproom.dmm +++ b/_maps/deepspace/9x13_sleeproom.dmm @@ -3,6 +3,11 @@ /obj/structure/closet/secure_closet/personal, /turf/open/floor/carpet/blue, /area/ruin/unpowered) +"c" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) "d" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/carpet/orange, @@ -16,6 +21,7 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/orange, /area/ruin/unpowered) "h" = ( @@ -26,6 +32,11 @@ "j" = ( /turf/open/floor/carpet/orange, /area/ruin/unpowered) +"k" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) "l" = ( /obj/structure/bed, /obj/item/bedsheet/dorms, @@ -41,6 +52,7 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/purple, /area/ruin/unpowered) "p" = ( @@ -48,8 +60,13 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/spawner/lootdrop/ruinloot/medical, /turf/open/floor/carpet/blue, /area/ruin/unpowered) +"q" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) "s" = ( /turf/open/floor/plasteel, /area/ruin/unpowered) @@ -73,6 +90,11 @@ }, /turf/open/floor/plasteel, /area/ruin/unpowered) +"y" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) "z" = ( /obj/machinery/door/airlock{ id_tag = "Dorm3"; @@ -85,6 +107,7 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/cyan, /area/ruin/unpowered) "B" = ( @@ -102,12 +125,22 @@ }, /turf/open/floor/carpet/purple, /area/ruin/unpowered) +"H" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) "I" = ( /turf/open/floor/carpet/blue, /area/ruin/unpowered) "L" = ( /turf/open/floor/carpet/cyan, /area/ruin/unpowered) +"M" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) "O" = ( /obj/structure/chair/stool{ pixel_y = 8 @@ -122,7 +155,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Q" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "R" = ( /obj/structure/closet/secure_closet/personal, @@ -137,6 +170,14 @@ }, /turf/open/floor/carpet/cyan, /area/ruin/unpowered) +"W" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet/green, +/area/ruin/unpowered) "Y" = ( /obj/effect/abstract/open_area_marker{ dir = 1 @@ -239,11 +280,11 @@ Y s s s -s -s -s -s -s +k +k +k +k +k s s s @@ -253,13 +294,13 @@ e s s s -s -s -s -s -s -s -s +c +q +H +M +W +q +y s s s diff --git a/_maps/deepspace/9x13_teleporter.dmm b/_maps/deepspace/9x13_teleporter.dmm new file mode 100644 index 000000000000..9002323d715f --- /dev/null +++ b/_maps/deepspace/9x13_teleporter.dmm @@ -0,0 +1,216 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"c" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/bluespace, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"e" = ( +/obj/machinery/computer/teleporter{ + dir = 4 + }, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"g" = ( +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"k" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool/abductor, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"l" = ( +/obj/item/stack/ore/bluespace_crystal, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"q" = ( +/turf/template_noop, +/area/template_noop) +"r" = ( +/obj/structure/table, +/obj/item/cargo_teleporter, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"y" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"z" = ( +/obj/machinery/door/airlock/vault, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"B" = ( +/obj/structure/table, +/obj/item/hand_tele, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"I" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"L" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) +"N" = ( +/obj/structure/table, +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"P" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"Q" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"X" = ( +/turf/open/floor/plating/airless, +/area/ruin/unpowered) +"Z" = ( +/obj/item/stack/ore/bluespace_crystal, +/turf/open/floor/plasteel/airless, +/area/ruin/unpowered) + +(1,1,1) = {" +q +q +q +q +q +P +L +P +q +q +q +q +q +"} +(2,1,1) = {" +q +q +q +Q +q +P +g +P +q +Q +q +q +q +"} +(3,1,1) = {" +q +q +q +P +P +P +z +P +P +P +q +q +q +"} +(4,1,1) = {" +q +q +P +P +c +b +X +g +g +X +l +q +q +"} +(5,1,1) = {" +q +Q +P +B +g +g +g +g +g +g +X +Q +q +"} +(6,1,1) = {" +q +q +P +r +g +e +y +I +g +N +P +q +q +"} +(7,1,1) = {" +q +Q +X +b +X +g +g +Z +g +k +P +Q +q +"} +(8,1,1) = {" +q +q +X +X +b +X +g +g +g +P +P +q +q +"} +(9,1,1) = {" +q +q +q +l +X +P +P +P +P +P +q +q +q +"} diff --git a/_maps/deepspace/9x5_3_seperation.dmm b/_maps/deepspace/9x5_3_seperation.dmm new file mode 100644 index 000000000000..87ea00f53bc7 --- /dev/null +++ b/_maps/deepspace/9x5_3_seperation.dmm @@ -0,0 +1,101 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"f" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"j" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/unpowered) +"s" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"t" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"A" = ( +/turf/open/floor/plating/asteroid/no_generation, +/area/template_noop) +"E" = ( +/turf/open/floor/plating, +/area/ruin/unpowered) +"L" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Y" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +t +b +L +b +t +"} +(2,1,1) = {" +t +b +b +b +t +"} +(3,1,1) = {" +t +f +f +f +t +"} +(4,1,1) = {" +Y +s +A +s +Y +"} +(5,1,1) = {" +A +s +Y +s +A +"} +(6,1,1) = {" +Y +s +A +s +Y +"} +(7,1,1) = {" +t +f +f +f +t +"} +(8,1,1) = {" +t +E +E +E +t +"} +(9,1,1) = {" +t +t +j +t +t +"} diff --git a/_maps/deepspace/9x5_garden.dmm b/_maps/deepspace/9x5_garden.dmm new file mode 100644 index 000000000000..7127424d3087 --- /dev/null +++ b/_maps/deepspace/9x5_garden.dmm @@ -0,0 +1,212 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"bs" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"hx" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iX" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"mn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"qW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"yt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"zv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/poppy, +/obj/item/food/grown/cherries, +/obj/item/food/grown/tomato, +/obj/item/seeds/tea, +/obj/item/food/grown/watermelon, +/obj/item/seeds/harebell, +/obj/item/food/grown/wheat, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/food/grown/tea, +/obj/item/reagent_containers/glass/bottle/nutrient/rh, +/obj/item/seeds/tower, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Bf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/microwave{ + desc = "It looks really dirty."; + name = "maintenance microwave"; + pixel_y = 5 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Bs" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"BO" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Fk" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Hv" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"KH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Ne" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"NT" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +mj +mj +mj +mj +mj +"} +(2,1,1) = {" +mj +qW +yt +mn +mj +"} +(3,1,1) = {" +mj +iX +NT +zv +mj +"} +(4,1,1) = {" +mj +Bf +NT +Hv +mj +"} +(5,1,1) = {" +BO +NT +NT +NT +Fk +"} +(6,1,1) = {" +mj +Ne +NT +Hv +mj +"} +(7,1,1) = {" +mj +bs +NT +Bs +mj +"} +(8,1,1) = {" +mj +hx +KH +Hv +mj +"} +(9,1,1) = {" +mj +mj +mj +mj +mj +"} diff --git a/_maps/RuinGeneration/9x5_hallwaymaints.dmm b/_maps/deepspace/9x5_hallwaymaints.dmm similarity index 98% rename from _maps/RuinGeneration/9x5_hallwaymaints.dmm rename to _maps/deepspace/9x5_hallwaymaints.dmm index 7d8318500c2f..fb1aaefc407f 100644 --- a/_maps/RuinGeneration/9x5_hallwaymaints.dmm +++ b/_maps/deepspace/9x5_hallwaymaints.dmm @@ -41,7 +41,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "B" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "I" = ( /obj/effect/abstract/doorway_marker{ diff --git a/_maps/RuinGeneration/9x5_maintroom.dmm b/_maps/deepspace/9x5_maintroom.dmm similarity index 77% rename from _maps/RuinGeneration/9x5_maintroom.dmm rename to _maps/deepspace/9x5_maintroom.dmm index c04207722035..be711ecdedee 100644 --- a/_maps/RuinGeneration/9x5_maintroom.dmm +++ b/_maps/deepspace/9x5_maintroom.dmm @@ -2,6 +2,10 @@ "a" = ( /turf/open/floor/plasteel, /area/ruin/unpowered) +"f" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/ruin/unpowered) "w" = ( /obj/machinery/door/airlock/maintenance_hatch, /turf/open/floor/plating, @@ -9,6 +13,10 @@ "y" = ( /turf/open/floor/plating, /area/ruin/unpowered) +"E" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/ruin/unpowered) "Q" = ( /obj/effect/abstract/open_area_marker{ dir = 8 @@ -22,7 +30,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered) "Z" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) (1,1,1) = {" @@ -41,7 +49,7 @@ Z "} (3,1,1) = {" Z -y +f y y Z @@ -71,7 +79,7 @@ Z Z y y -y +E Z "} (8,1,1) = {" diff --git a/_maps/RuinGeneration/9x5_morgue.dmm b/_maps/deepspace/9x5_morgue.dmm similarity index 98% rename from _maps/RuinGeneration/9x5_morgue.dmm rename to _maps/deepspace/9x5_morgue.dmm index fc34a93e26a3..3d36607f2c1d 100644 --- a/_maps/RuinGeneration/9x5_morgue.dmm +++ b/_maps/deepspace/9x5_morgue.dmm @@ -24,7 +24,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered) "o" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "q" = ( /obj/effect/spawner/lootdrop/ruinloot/basic, diff --git a/_maps/deepspace/9x8_sec_room.dmm b/_maps/deepspace/9x8_sec_room.dmm new file mode 100644 index 000000000000..9f9494df46c4 --- /dev/null +++ b/_maps/deepspace/9x8_sec_room.dmm @@ -0,0 +1,339 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"eP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"iE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"km" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"lE" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/plating/rust, +/area/ruin/unpowered) +"mj" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"nv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"qb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"wm" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + pixel_x = -8; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"xO" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/space/basic, +/area/ruin/unpowered) +"CX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/guncase/shotgun, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"FV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Js" = ( +/obj/machinery/computer/security{ + dir = 8; + network = list("outpost") + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Kb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"NT" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"NX" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"OH" = ( +/obj/effect/abstract/open_area_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Py" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Qi" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Sg" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"VZ" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/crowbar, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"YW" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"Zt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/suit_storage_unit{ + mask_type = /obj/item/clothing/mask/breath; + suit_type = /obj/item/clothing/suit/space/hardsuit/rig_sec + }, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +mj +mj +mj +mj +mj +mj +mj +mj +"} +(2,1,1) = {" +NT +NT +NT +NT +NT +NT +NT +NT +"} +(3,1,1) = {" +OH +NT +NT +NT +NT +NT +NT +Qi +"} +(4,1,1) = {" +NT +NT +NT +NT +NT +NT +NT +NT +"} +(5,1,1) = {" +mj +mj +aT +lE +eP +lE +mj +mj +"} +(6,1,1) = {" +mj +CX +qb +YW +wm +NX +xO +mj +"} +(7,1,1) = {" +mj +Zt +Kb +Kb +nv +Kb +km +mj +"} +(8,1,1) = {" +mj +VZ +iE +FV +Js +Py +Sg +mj +"} +(9,1,1) = {" +mj +mj +mj +mj +mj +mj +mj +mj +"} diff --git a/_maps/deepspace/9x9_checkpoint.dmm b/_maps/deepspace/9x9_checkpoint.dmm new file mode 100644 index 000000000000..135150388b76 --- /dev/null +++ b/_maps/deepspace/9x9_checkpoint.dmm @@ -0,0 +1,354 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"b" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"c" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/ruinloot/security, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"e" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"i" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"k" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/ruin/unpowered) +"l" = ( +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"m" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"n" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ruin/unpowered) +"o" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"q" = ( +/turf/open/floor/plasteel/dark/corner, +/area/ruin/unpowered) +"r" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ruin/unpowered) +"t" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/ruin/unpowered) +"u" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"w" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ruin/unpowered) +"x" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"y" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ruin/unpowered) +"z" = ( +/obj/machinery/computer{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ruin/unpowered) +"A" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"B" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"C" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"D" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ruin/unpowered) +"E" = ( +/obj/machinery/computer{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"F" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"G" = ( +/obj/effect/turf_decal/trimline/red/filled/warning, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ruin/unpowered) +"K" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"N" = ( +/obj/machinery/computer{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ruin/unpowered) +"O" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ruin/unpowered) +"P" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ruin/unpowered) +"S" = ( +/obj/effect/spawner/random/decoration/glowstick/on, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/effect/abstract/open_area_marker{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"U" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"V" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"X" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/turf/open/floor/plasteel, +/area/ruin/unpowered) + +(1,1,1) = {" +C +C +C +C +C +i +T +i +C +"} +(2,1,1) = {" +C +b +N +E +C +y +i +q +C +"} +(3,1,1) = {" +C +K +x +f +C +u +A +u +C +"} +(4,1,1) = {" +C +n +S +l +u +r +i +O +C +"} +(5,1,1) = {" +U +i +X +e +u +P +i +l +C +"} +(6,1,1) = {" +C +m +B +z +u +k +i +o +C +"} +(7,1,1) = {" +C +P +a +c +C +u +F +u +C +"} +(8,1,1) = {" +C +k +G +t +C +D +i +w +C +"} +(9,1,1) = {" +C +C +C +C +C +i +V +i +C +"} diff --git a/_maps/RuinGeneration/9x9_chemlab.dmm b/_maps/deepspace/9x9_chemlab.dmm similarity index 85% rename from _maps/RuinGeneration/9x9_chemlab.dmm rename to _maps/deepspace/9x9_chemlab.dmm index 725c6a99dd20..d13425364c04 100644 --- a/_maps/RuinGeneration/9x9_chemlab.dmm +++ b/_maps/deepspace/9x9_chemlab.dmm @@ -5,15 +5,15 @@ }, /obj/effect/turf_decal/tile/yellow, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "b" = ( /turf/open/floor/plasteel, -/area/ruin) +/area/ruin/unpowered) "c" = ( /obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "d" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -24,7 +24,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/machinery/chem_heater, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "e" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -36,7 +36,7 @@ /obj/structure/rack, /obj/item/storage/box/beakers, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "f" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -45,7 +45,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "g" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -54,7 +54,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "i" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -64,7 +64,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "j" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -78,21 +78,21 @@ pixel_y = 7 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "k" = ( /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "m" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "n" = ( /obj/effect/abstract/open_area_marker, /turf/open/floor/plasteel, -/area/ruin) +/area/ruin/unpowered) "p" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -103,7 +103,7 @@ pixel_y = -25 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "q" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -115,11 +115,11 @@ layer = 2.7 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "s" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ruin) +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) "t" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -142,7 +142,7 @@ pixel_y = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "u" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -154,13 +154,13 @@ dir = 8 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "v" = ( /obj/effect/abstract/open_area_marker{ dir = 8 }, /turf/open/floor/plasteel, -/area/ruin) +/area/ruin/unpowered) "w" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -171,7 +171,7 @@ }, /obj/structure/closet/secure_closet/chemical, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "x" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -189,7 +189,7 @@ /obj/item/storage/pill_bottle, /obj/item/reagent_containers/syringe, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "y" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -201,7 +201,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "z" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/border_only{ @@ -216,7 +216,7 @@ req_access_txt = "5; 33" }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "A" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -226,7 +226,7 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "C" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -236,7 +236,7 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "D" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -244,7 +244,7 @@ /obj/effect/turf_decal/tile/yellow, /obj/machinery/chem_master, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "E" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -254,20 +254,20 @@ dir = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "F" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "G" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "I" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -277,7 +277,7 @@ pixel_y = -30 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "J" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -291,12 +291,8 @@ /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/syringe, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "K" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, /obj/machinery/door/firedoor/border_only, /obj/machinery/door/firedoor/border_only{ dir = 1 @@ -305,15 +301,16 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/door/airlock/medical/glass, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "L" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 }, /obj/effect/turf_decal/tile/yellow, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "M" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -323,18 +320,18 @@ }, /obj/machinery/vending/wardrobe/chem_wardrobe, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "N" = ( /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "O" = ( -/turf/closed/wall, -/area/ruin) +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) "T" = ( /obj/machinery/smartfridge/chemistry/preloaded, /turf/closed/wall, -/area/ruin) +/area/ruin/unpowered) "U" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -343,13 +340,13 @@ dir = 1 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "V" = ( /obj/effect/abstract/doorway_marker{ dir = 4 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "X" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -358,7 +355,7 @@ /obj/structure/rack, /obj/item/construction/plumbing, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "Y" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -374,16 +371,16 @@ pixel_y = 3 }, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) "Z" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 }, /obj/effect/turf_decal/tile/yellow, /obj/structure/table/glass, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /turf/open/floor/plasteel/white, -/area/ruin) +/area/ruin/unpowered) (1,1,1) = {" O diff --git a/_maps/RuinGeneration/9x9_elevator.dmm b/_maps/deepspace/9x9_elevator.dmm similarity index 98% rename from _maps/RuinGeneration/9x9_elevator.dmm rename to _maps/deepspace/9x9_elevator.dmm index 7841166ec06e..5d85516a5c95 100644 --- a/_maps/RuinGeneration/9x9_elevator.dmm +++ b/_maps/deepspace/9x9_elevator.dmm @@ -8,7 +8,7 @@ /turf/open/floor/carpet/red, /area/ruin/unpowered) "g" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "l" = ( /turf/closed/wall/r_wall, diff --git a/_maps/RuinGeneration/9x9_genetics.dmm b/_maps/deepspace/9x9_genetics.dmm similarity index 91% rename from _maps/RuinGeneration/9x9_genetics.dmm rename to _maps/deepspace/9x9_genetics.dmm index eca187fc76df..6f3d1a8460ec 100644 --- a/_maps/RuinGeneration/9x9_genetics.dmm +++ b/_maps/deepspace/9x9_genetics.dmm @@ -16,6 +16,7 @@ name = "Monkey Pen"; pixel_y = 2 }, +/obj/effect/spawner/lootdrop/genetics_filler, /turf/open/floor/plasteel/freezer, /area/ruin/unpowered) "d" = ( @@ -38,6 +39,13 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"g" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "h" = ( /obj/structure/window/reinforced{ dir = 1; @@ -103,7 +111,7 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered) "q" = ( -/turf/closed/wall, +/turf/closed/wall/riveted_wall, /area/ruin/unpowered) "s" = ( /obj/machinery/door/window/westleft{ @@ -252,6 +260,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/effect/spawner/lootdrop/genetics_good, /turf/open/floor/plasteel/white, /area/ruin/unpowered) "N" = ( @@ -281,6 +290,21 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel/white, /area/ruin/unpowered) +"U" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/plasteel/white, +/area/ruin/unpowered) "V" = ( /obj/machinery/computer/scan_consolenew, /obj/effect/turf_decal/tile/blue{ @@ -354,7 +378,7 @@ F "} (4,1,1) = {" q -v +U E T v @@ -367,7 +391,7 @@ q q D w -t +g W W J diff --git a/_maps/deepspace/9x9_minerroom.dmm b/_maps/deepspace/9x9_minerroom.dmm new file mode 100644 index 000000000000..4149ac85d82d --- /dev/null +++ b/_maps/deepspace/9x9_minerroom.dmm @@ -0,0 +1,399 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"c" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"e" = ( +/obj/item/stack/ore/plasma{ + amount = 20 + }, +/obj/item/stack/ore/titanium{ + amount = 20 + }, +/obj/item/stack/ore/uranium{ + amount = 20 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"f" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"g" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"h" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"i" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"l" = ( +/obj/effect/abstract/open_area_marker{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"n" = ( +/obj/structure/closet/crate, +/obj/item/stack/ore/diamond{ + amount = 5 + }, +/obj/item/stack/ore/bluespace_crystal{ + amount = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"p" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"q" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"s" = ( +/obj/structure/sign/departments/cargo, +/obj/effect/spawner/structure/window/reinforced/partyhard, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"t" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"u" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/engine, +/area/ruin/unpowered) +"v" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"w" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"y" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"z" = ( +/obj/machinery/door/airlock/mining/glass, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"A" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plasteel/monofloor, +/area/ruin/unpowered) +"C" = ( +/obj/item/stack/ore/iron{ + amount = 50 + }, +/obj/item/stack/ore/silver{ + amount = 30 + }, +/obj/item/stack/ore/gold{ + amount = 30 + }, +/obj/item/stack/ore/glass{ + amount = 50 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"D" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"F" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"I" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"J" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ruin/unpowered) +"K" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"L" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"M" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/mineral/silver{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"N" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"O" = ( +/turf/closed/wall/riveted_wall, +/area/ruin/unpowered) +"P" = ( +/obj/effect/abstract/open_area_marker, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 8; + output_dir = 4; + req_access = 0 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ruin/unpowered) +"U" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/sheetsnatcher, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"V" = ( +/obj/machinery/suit_storage_unit/mining, +/turf/open/floor/engine, +/area/ruin/unpowered) +"W" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left" + }, +/obj/item/stack/ore/bananium{ + amount = 10; + pixel_x = 10; + pixel_y = -3 + }, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/ruin/unpowered) +"X" = ( +/obj/effect/spawner/structure/window/reinforced/derelict, +/turf/open/floor/circuit, +/area/ruin/unpowered) +"Y" = ( +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) +"Z" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ore_box, +/turf/open/floor/plasteel/monofloor/dark, +/area/ruin/unpowered) + +(1,1,1) = {" +O +O +O +O +O +O +O +O +O +"} +(2,1,1) = {" +O +Y +c +Z +V +u +f +C +O +"} +(3,1,1) = {" +O +U +I +p +h +y +N +F +O +"} +(4,1,1) = {" +O +n +I +I +K +i +D +A +O +"} +(5,1,1) = {" +b +I +I +I +O +s +z +T +O +"} +(6,1,1) = {" +O +t +I +I +X +q +g +J +D +"} +(7,1,1) = {" +O +M +I +v +W +E +D +D +P +"} +(8,1,1) = {" +O +w +L +e +X +E +D +D +D +"} +(9,1,1) = {" +O +O +O +O +O +D +l +D +O +"} diff --git a/_maps/deepspace/9x9_teleporter.dmm b/_maps/deepspace/9x9_teleporter.dmm new file mode 100644 index 000000000000..80f5f5896ec7 --- /dev/null +++ b/_maps/deepspace/9x9_teleporter.dmm @@ -0,0 +1,238 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/ruin) +"e" = ( +/obj/structure/closet, +/obj/item/gps/spaceruin, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"g" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/ruin) +"i" = ( +/obj/item/shard, +/obj/item/electronics/apc, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/ruin) +"k" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"l" = ( +/turf/open/floor/plating/airless, +/area/ruin) +"n" = ( +/obj/effect/abstract/doorway_marker{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/ruin) +"p" = ( +/obj/effect/decal/cleanable/robot_debris/old, +/turf/open/floor/plating/airless, +/area/ruin) +"s" = ( +/obj/structure/frame/computer, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"v" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ruin) +"y" = ( +/turf/closed/wall/r_wall, +/area/ruin) +"z" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"A" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"C" = ( +/obj/structure/closet/crate, +/obj/item/aicard, +/obj/item/multitool, +/obj/item/weldingtool, +/obj/item/wrench, +/obj/item/circuitboard/computer/teleporter, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"D" = ( +/obj/item/stock_parts/cell, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/ruin) +"E" = ( +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"G" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/ruin) +"H" = ( +/turf/open/floor/plasteel, +/area/ruin) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight, +/turf/open/floor/plating/airless, +/area/ruin) +"J" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/beacon, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/ruin) +"K" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/ruin) +"L" = ( +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"N" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"P" = ( +/obj/effect/abstract/doorway_marker{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ruin) +"Q" = ( +/obj/effect/abstract/doorway_marker, +/turf/open/floor/plating/airless, +/area/ruin) +"S" = ( +/obj/machinery/teleport/station, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"V" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"W" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/mineral/plastitanium, +/area/ruin) +"Z" = ( +/obj/effect/spawner/random/structure/crate_abandoned, +/turf/open/floor/mineral/plastitanium, +/area/ruin) + +(1,1,1) = {" +a +z +y +y +n +y +y +z +a +"} +(2,1,1) = {" +a +y +y +E +l +k +y +y +a +"} +(3,1,1) = {" +y +y +N +D +I +K +E +y +y +"} +(4,1,1) = {" +y +s +H +d +p +l +G +C +y +"} +(5,1,1) = {" +y +S +l +l +J +g +d +l +Q +"} +(6,1,1) = {" +y +A +H +p +l +l +H +V +y +"} +(7,1,1) = {" +y +y +W +v +l +i +L +y +y +"} +(8,1,1) = {" +z +y +y +Z +l +e +y +y +z +"} +(9,1,1) = {" +a +a +y +y +P +y +y +a +a +"} diff --git a/_maps/deepspace/9x9_toxinstorage.dmm b/_maps/deepspace/9x9_toxinstorage.dmm new file mode 100644 index 000000000000..cf1e71e5e8b4 --- /dev/null +++ b/_maps/deepspace/9x9_toxinstorage.dmm @@ -0,0 +1,283 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"c" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ruin/unpowered) +"d" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/stimulum, +/turf/open/floor/engine, +/area/ruin/unpowered) +"e" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/canister/nob, +/turf/open/floor/engine, +/area/ruin/unpowered) +"i" = ( +/obj/effect/abstract/doorway_marker{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"j" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ruin/unpowered) +"k" = ( +/obj/vehicle/sealed/mecha/working/ripley/cargo, +/turf/open/floor/mech_bay_recharge_floor, +/area/ruin/unpowered) +"l" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ruin/unpowered) +"p" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nob, +/turf/open/floor/engine, +/area/ruin/unpowered) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/stimulum, +/turf/open/floor/engine, +/area/ruin/unpowered) +"r" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"t" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"v" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/tritium, +/turf/open/floor/engine, +/area/ruin/unpowered) +"z" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/bz, +/turf/open/floor/engine, +/area/ruin/unpowered) +"A" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"C" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/freon, +/turf/open/floor/engine, +/area/ruin/unpowered) +"D" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"E" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"F" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/ruin/unpowered) +"G" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"I" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"K" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/machinery/portable_atmospherics/canister/healium, +/turf/open/floor/engine, +/area/ruin/unpowered) +"N" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"O" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Q" = ( +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"R" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"T" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/healium, +/turf/open/floor/engine, +/area/ruin/unpowered) +"U" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/zauker, +/turf/open/floor/engine, +/area/ruin/unpowered) +"V" = ( +/turf/closed/wall/r_wall, +/area/ruin/unpowered) +"W" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Y" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/unpowered) +"Z" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/freon, +/turf/open/floor/engine, +/area/ruin/unpowered) + +(1,1,1) = {" +V +V +V +V +V +V +V +V +V +"} +(2,1,1) = {" +V +I +I +v +U +j +z +e +V +"} +(3,1,1) = {" +i +A +t +v +U +j +z +p +V +"} +(4,1,1) = {" +V +a +O +O +O +O +O +O +V +"} +(5,1,1) = {" +V +E +W +Q +Q +Q +Q +Q +V +"} +(6,1,1) = {" +V +D +G +r +r +r +R +R +V +"} +(7,1,1) = {" +V +k +N +d +F +c +Z +T +V +"} +(8,1,1) = {" +V +Y +N +q +l +c +C +K +V +"} +(9,1,1) = {" +V +V +V +V +V +V +V +V +V +"} diff --git a/_maps/delta.json b/_maps/delta.json new file mode 100644 index 000000000000..3f9ccd6188d9 --- /dev/null +++ b/_maps/delta.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "map_name": "Delta", + "map_path": "stations", + "map_file": "delta.dmm", + "shuttles": { + "emergency": "emergency_delta", + "ferry": "ferry_fancy", + "cargo": "cargo_delta", + "whiteship": "whiteship_delta" + } +} diff --git a/_maps/deltastation.json b/_maps/deltastation.json deleted file mode 100644 index b43e1873eb42..000000000000 --- a/_maps/deltastation.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 1, - "map_name": "Delta Station", - "map_path": "map_files/Deltastation", - "map_file": "DeltaStation2.dmm", - "shuttles": { - "emergency": "emergency_delta", - "ferry": "ferry_fancy", - "cargo": "cargo_delta", - "whiteship": "whiteship_delta" - } -} diff --git a/_maps/endpoint.dmm b/_maps/endpoint.dmm new file mode 100644 index 000000000000..df589311d3e8 --- /dev/null +++ b/_maps/endpoint.dmm @@ -0,0 +1,85205 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien24" + }, +/area/abductor_ship) +"ab" = ( +/turf/closed/indestructible/riveted, +/area/awaymission/errorroom) +"ac" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/elite_squad) +"ae" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"af" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/mineral_door/paperframe{ + name = "Guest Suite *A" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"ag" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/instrument/accordion, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"ah" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 8 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"ak" = ( +/turf/open/floor/carpet, +/area/wizard_station) +"al" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"am" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/clothing/mask/animal/pig, +/obj/item/clothing/mask/animal/horsehead, +/obj/item/clothing/mask/fakemoustache{ + pixel_y = 9 + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"an" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"ao" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"aq" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"ar" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/centcom/control) +"as" = ( +/turf/closed/indestructible/wood, +/area/centcom/holding) +"at" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien17" + }, +/area/abductor_ship) +"au" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien18" + }, +/area/abductor_ship) +"aw" = ( +/turf/closed/indestructible/syndicate, +/area/space) +"ax" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"ay" = ( +/obj/machinery/igniter/on, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"aA" = ( +/turf/closed/mineral/ash_rock, +/area/awaymission/errorroom) +"aB" = ( +/obj/item/pen{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/folder/red{ + pixel_x = -5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"aD" = ( +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/structure/closet/secure_closet/freezer/meat/open, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"aE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood{ + name = "Toilet" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"aF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/light/colour_cycle/dancefloor_a{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"aG" = ( +/obj/machinery/abductor/experiment{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"aH" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"aI" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/obj/effect/turf_decal/weather/side/corner, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"aK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/mirror/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"aL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/hidden{ + dir = 4 + }, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bombthreat) +"aM" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"aN" = ( +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"aO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"aP" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"aQ" = ( +/turf/closed/indestructible/rock/snow/no_init, +/area/centcom/control) +"aR" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"aS" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"aT" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"aU" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/rock/snow/no_init, +/area/syndicate_mothership) +"aV" = ( +/turf/closed/indestructible/rock/snow/no_init, +/area/syndicate_mothership) +"aW" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"aX" = ( +/obj/machinery/abductor/console{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"aY" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"aZ" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 4 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"ba" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"bb" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/saber/red, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"bc" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/open/floor/plasteel/dark, +/area/tdome/arena_source) +"bd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"be" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/mineral_door/paperframe{ + name = "Guest Suite *B" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"bf" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -2; + pixel_y = 13 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 1; + pixel_y = 14 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 4; + pixel_y = 15 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/camera/autoname/directional/east{ + network = list("nukie") + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"bg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_chemicalwarfare) +"bh" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"bi" = ( +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"bj" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/wood/large, +/area/centcom/holding) +"bk" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/elite_squad) +"bl" = ( +/obj/structure/closet/secure_closet/ert_engi, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"bm" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"bn" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"bo" = ( +/obj/machinery/abductor/pad{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"bp" = ( +/obj/machinery/door/airlock/hatch{ + name = "Gangway" + }, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"bq" = ( +/obj/structure/sign/flag/ua/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"br" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"bs" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"bt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"bu" = ( +/obj/machinery/door/poddoor{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"bv" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"bw" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"bx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"by" = ( +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"bz" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"bA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"bB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"bC" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bombthreat) +"bD" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"bE" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"bF" = ( +/obj/structure/sign/poster/contraband/gorlex_recruitment{ + pixel_y = 32 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"bG" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"bH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/energy_swords{ + pixel_y = 32 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"bJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"bK" = ( +/obj/effect/landmark/violence, +/turf/closed/indestructible/rock/snow/no_init, +/area/space) +"bL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"bM" = ( +/obj/machinery/door/poddoor/preopen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"bN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"bO" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"bP" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"bQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"bR" = ( +/turf/open/water{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/centcom/holding) +"bS" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"bT" = ( +/obj/structure/sign/flag/terragov/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"bU" = ( +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"bV" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"bW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"bX" = ( +/obj/machinery/computer/shuttle_flight, +/turf/open/floor/engine/cult, +/area/wizard_station) +"bZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/centcom/control) +"ca" = ( +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"cc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"cd" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien19" + }, +/area/abductor_ship) +"ce" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/centcom/office) +"cf" = ( +/obj/structure/table/wood, +/obj/item/food/sashimi, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"cg" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_l2"; + id_target = "ck_bot_l2" + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/centcom/control) +"ci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"cj" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/storage/fancy/egg_box, +/obj/item/food/grown/citrus/lime, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/citrus/lemon, +/obj/item/food/grown/watermelon, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"cl" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"cm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"cn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/centcom/control) +"co" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"cp" = ( +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership) +"cq" = ( +/turf/closed/indestructible/fakedoor{ + name = "Sub-Laboratory Elevator" + }, +/area/syndicate_mothership) +"cr" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/keycard/syndicate_bomb, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/expansion_bombthreat) +"cs" = ( +/turf/closed/indestructible/syndicate, +/area/centcom/control) +"ct" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 6 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"cu" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Personal Quarters" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"cv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"cx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"cy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"cB" = ( +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"cC" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"cD" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/centcom/control) +"cE" = ( +/turf/open/floor/circuit/green, +/area/tdome/arena) +"cF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"cG" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"cH" = ( +/turf/open/floor/plating/asteroid/dirty, +/area/centcom/holding) +"cI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/centcom/office) +"cJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"cK" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/saber/green, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"cM" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"cN" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"cO" = ( +/obj/machinery/abductor/experiment{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"cP" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"cQ" = ( +/turf/closed/indestructible/riveted, +/area/centcom/control) +"cR" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/centcom/control) +"cT" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"cU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"cW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"cX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeobserve) +"cY" = ( +/obj/structure/chair/bronze{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"da" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"db" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"dc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"dd" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"de" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"df" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/centcom/control) +"dg" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/ice/smooth/safe, +/area/syndicate_mothership) +"dh" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"di" = ( +/obj/machinery/abductor/console{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"dj" = ( +/obj/machinery/abductor/pad{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"dk" = ( +/obj/structure/closet/secure_closet/ert_engi, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"dl" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/centcom/holding) +"dm" = ( +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = -10; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 12; + pixel_y = 34; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 12; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 1; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 1; + pixel_y = 34; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = -10; + pixel_y = 34; + req_access_txt = "150" + }, +/turf/open/indestructible/white, +/area/centcom/control) +"dn" = ( +/obj/structure/fence/cut/large, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"do" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"dp" = ( +/obj/effect/duel_spawnpoint, +/turf/open/floor/plating/asteroid/basalt, +/area/duel/one) +"dq" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/centcom/control) +"ds" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"dt" = ( +/obj/structure/chair/stool/directional/south, +/obj/structure/sign/map/right{ + desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; + icon_state = "map-right-MS"; + pixel_y = 32 + }, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"du" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"dv" = ( +/turf/open/floor/circuit/green, +/area/tdome/arena_source) +"dw" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"dx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"dy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/centcom/control) +"dA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"dB" = ( +/turf/closed/indestructible/black, +/area/space) +"dC" = ( +/turf/open/floor/plasteel/stairs, +/area/syndicate_mothership) +"dD" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/centcom/control) +"dE" = ( +/obj/structure/closet/abductor, +/obj/item/storage/box/alienhandcuffs, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"dF" = ( +/obj/machinery/flasher{ + id = "tdomeflash"; + name = "Thunderdome Flash" + }, +/turf/open/floor/circuit/green, +/area/tdome/arena_source) +"dG" = ( +/obj/effect/turf_decal/weather/side, +/obj/effect/turf_decal/weather/side/corner{ + dir = 8 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"dH" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"dI" = ( +/obj/effect/landmark/mafia_game_area, +/turf/closed/indestructible/rock/snow/no_init, +/area/space) +"dJ" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"dK" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien15" + }, +/area/abductor_ship) +"dL" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Bathroom" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"dM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"dN" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/closed/indestructible/rock/snow/no_init, +/area/wizard_station) +"dO" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"dP" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"dQ" = ( +/obj/structure/chair/bronze{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"dR" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"dS" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"dT" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bombthreat) +"dU" = ( +/turf/open/floor/plating/asteroid/basalt/wasteland{ + initial_gas_mix = "TEMP=2.7" + }, +/area/centcom/holding) +"dV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"dW" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/dune/sandy, +/area/centcom/holding) +"dX" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"dY" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"dZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"ea" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"eb" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/chair/stool/directional/east, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"ec" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"ee" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"ef" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"eg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"eh" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"ei" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/open/floor/plasteel/dark, +/area/tdome/arena_source) +"ej" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"ek" = ( +/obj/machinery/vending/boozeomat/all_access{ + resistance_flags = 64 + }, +/turf/closed/indestructible/syndicate, +/area/centcom/circus) +"el" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"em" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"en" = ( +/obj/structure/showcase{ + desc = "A strange machine supposedly from another world. The Wizard Federation has been meddling with it for years."; + icon = 'icons/obj/machines/telecomms.dmi'; + icon_state = "processor"; + name = "byond random number generator" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"eo" = ( +/turf/open/floor/plasteel/stairs/right, +/area/centcom/control) +"ep" = ( +/obj/effect/turf_decal/box, +/obj/structure/punching_bag, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"eq" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena_source) +"er" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"es" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien12" + }, +/area/abductor_ship) +"et" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 4 + }, +/area/centcom/control) +"eu" = ( +/turf/open/indestructible/white, +/area/centcom/control) +"ev" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/large, +/area/centcom/holding) +"ew" = ( +/obj/item/banner/engineering/atmos/mundane, +/turf/closed/indestructible/syndicate, +/area/centcom/control) +"ex" = ( +/obj/item/retractor/alien, +/obj/item/hemostat/alien, +/obj/structure/table/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"ey" = ( +/obj/structure/showcase{ + desc = "A historical figure of great importance to the wizard federation. He spent his long life learning magic, stealing artifacts, and harassing idiots with swords. May he rest forever, Rodney."; + icon = 'icons/mob/mob.dmi'; + icon_state = "nim"; + name = "wizard of yendor showcase" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"ez" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"eA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"eB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"eC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"eD" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/obj/machinery/light, +/turf/open/floor/grass, +/area/centcom/control) +"eE" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"eF" = ( +/turf/open/floor/plasteel/stairs/old, +/area/centcom/control) +"eG" = ( +/obj/structure/chair/stool/directional/north, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"eH" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"eI" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"eJ" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Cockpit" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"eK" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"eL" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"eN" = ( +/obj/structure/speaking_tile, +/turf/closed/mineral/ash_rock, +/area/awaymission/errorroom) +"eO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/wood{ + name = "Bar" + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"eP" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/obj/structure/barricade/sandbags, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"eQ" = ( +/obj/structure/dresser, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"eS" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"eT" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/syndicate_mothership) +"eU" = ( +/obj/machinery/button/door/indestructible{ + id = "thunderdomehea"; + name = "Heavy Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"eW" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"eX" = ( +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"eY" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"eZ" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 15 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership) +"fb" = ( +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"fd" = ( +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/centcom/control) +"fe" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"ff" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/fancy/green, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"fg" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/shower/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"fh" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"fi" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 4 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fj" = ( +/obj/structure/table/abductor, +/obj/machinery/recharger, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fk" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"fl" = ( +/obj/machinery/computer/camera_advanced, +/turf/open/floor/wood, +/area/wizard_station) +"fn" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"fo" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"fp" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/civilian/curator/treasure_hunter, +/obj/item/clothing/under/dress/skirt, +/obj/item/clothing/under/shorts/black, +/obj/item/clothing/under/pants/track, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/neck/stripedredscarf, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/suit/curator, +/obj/item/clothing/suit/space/officer, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/glasses/eyepatch, +/obj/machinery/firealarm/directional/west, +/obj/item/card/id/advanced/centcom/ert/security, +/obj/item/clothing/head/beret/sec/navyofficer, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"fq" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien13" + }, +/area/abductor_ship) +"fr" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"fs" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/door/window/survival_pod{ + name = "Surgery"; + opacity = 1 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership) +"ft" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_chemicalwarfare) +"fu" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"fv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "centcombridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"fw" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"fx" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"fy" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 10 + }, +/obj/item/bedsheet/syndie{ + dir = 4 + }, +/obj/structure/bed{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"fz" = ( +/obj/structure/sign/poster/contraband/cc64k_ad, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"fA" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fC" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/machinery/reagentgrinder{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/structure/sign/poster/contraband/lizard{ + pixel_x = -32 + }, +/obj/structure/sign/poster/contraband/kudzu{ + pixel_y = 32 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"fD" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 3 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fE" = ( +/obj/structure/shuttle/engine/heater{ + resistance_flags = 3 + }, +/obj/structure/window/reinforced{ + color = "#008000"; + dir = 1; + resistance_flags = 3 + }, +/turf/open/lava/airless, +/area/wizard_station) +"fF" = ( +/obj/item/surgical_drapes, +/obj/item/paper/guides/antag/abductor, +/obj/item/scalpel/alien, +/obj/structure/table/abductor, +/obj/item/cautery/alien, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fG" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"fI" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"fJ" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/book/bible, +/turf/open/floor/wood/large, +/area/centcom/holding) +"fK" = ( +/obj/structure/closet/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"fL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_x = 32 + }, +/obj/machinery/recharger, +/obj/machinery/camera/autoname/directional/north{ + network = list("nukie") + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"fN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"fO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/left{ + pixel_y = 6 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"fP" = ( +/obj/structure/flora/ausbushes/rospilovo/pointybush{ + pixel_y = 12 + }, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"fQ" = ( +/mob/living/simple_animal/butterfly, +/obj/effect/light_emitter, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"fR" = ( +/turf/closed/indestructible/rock, +/area/centcom/holding) +"fS" = ( +/obj/effect/light_emitter, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"fT" = ( +/obj/structure/flora/ausbushes/rospilovo/pointybush{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"fU" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"fV" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"fW" = ( +/obj/structure/chair/stool/directional/south, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"fX" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien11" + }, +/area/abductor_ship) +"fY" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien6" + }, +/area/abductor_ship) +"fZ" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"ga" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bioterrorism) +"gb" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 6 + }, +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"gc" = ( +/obj/structure/railing/right{ + dir = 6 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"gd" = ( +/obj/structure/kitchenspike, +/obj/item/gun/magic/hook, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"ge" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/south{ + id = "syn_ordmix_vent"; + pixel_x = 5; + pixel_y = -29 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"gf" = ( +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gg" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gh" = ( +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"gi" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/stone, +/area/centcom/holding) +"gj" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"gk" = ( +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = 14; + pixel_y = -14 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"gm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/obj/effect/turf_decal/siding/thinplating_new/dark/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"go" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"gp" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"gq" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/north{ + network = list("nukie") + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"gr" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"gs" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"gt" = ( +/turf/closed/indestructible/iron, +/area/syndicate_mothership) +"gu" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/large, +/area/centcom/holding) +"gv" = ( +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = 14 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gw" = ( +/obj/structure/rospilovo/tree{ + pixel_x = -9; + pixel_y = 15 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gx" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"gy" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"gz" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"gA" = ( +/obj/structure/table/wood/fancy, +/obj/item/radio/headset, +/turf/open/floor/wood, +/area/wizard_station) +"gB" = ( +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gD" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien7" + }, +/area/abductor_ship) +"gE" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gF" = ( +/mob/living/simple_animal/butterfly, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gG" = ( +/obj/structure/flora/rock/pile{ + pixel_y = -16 + }, +/obj/structure/flora/ausbushes/rospilovo/pointybush{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gH" = ( +/obj/machinery/door/airlock/wood{ + name = "Red Team" + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"gI" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gJ" = ( +/obj/machinery/abductor/gland_dispenser, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"gK" = ( +/obj/structure/rospilovo/tree{ + pixel_x = -16; + pixel_y = 15 + }, +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gL" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"gM" = ( +/obj/structure/flora/ausbushes/rospilovo/sparsegrass{ + pixel_x = 10; + pixel_y = 3 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gN" = ( +/obj/structure/table/abductor, +/obj/item/surgicaldrill/alien, +/obj/item/circular_saw/alien, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"gO" = ( +/obj/structure/flora/rock{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/flora/rock, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "centcombridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"gQ" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/syndicate/personal, +/obj/item/stack/spacecash/c20, +/turf/open/floor/plasteel/tg/dark/textured_half, +/area/syndicate_mothership) +"gR" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"gS" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gT" = ( +/obj/structure/bed/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"gU" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/airlock/glass_large{ + name = "Disembarkents" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"gV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"gW" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gX" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/rospilovo/pointybush{ + pixel_y = 12 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"gY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/biogenerator, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"gZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"ha" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"hb" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"hc" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien8" + }, +/area/abductor_ship) +"hd" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"he" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/machinery/light/directional/north, +/turf/open/indestructible/white, +/area/centcom/control) +"hf" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/syndicate/personal, +/turf/open/floor/plasteel/tg/dark/textured_half, +/area/syndicate_mothership) +"hg" = ( +/turf/open/floor/plasteel/monofloor, +/area/duel/four) +"hh" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"hi" = ( +/obj/machinery/suit_storage_unit/mining, +/turf/open/indestructible/white, +/area/centcom/control) +"hj" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien9" + }, +/area/abductor_ship) +"hk" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Bunk Room 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"hl" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"hm" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"hn" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien3" + }, +/area/abductor_ship) +"ho" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 6 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"hp" = ( +/obj/structure/sign/poster/random, +/turf/closed/indestructible/syndicate, +/area/centcom/control) +"hq" = ( +/turf/closed/indestructible/abductor, +/area/abductor_ship) +"hr" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"hs" = ( +/obj/structure/chair, +/obj/effect/landmark/thunderdome/observe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"ht" = ( +/mob/living/simple_animal/pet/fox, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"hu" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/centcom/control) +"hv" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"hy" = ( +/obj/effect/turf_decal/weather/side, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"hz" = ( +/obj/structure/rospilovo/tree{ + pixel_x = -16; + pixel_y = 15 + }, +/obj/structure/flora/ausbushes/rospilovo/ywflowers{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/structure/flora/ausbushes/ywflowers{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/effect/light_emitter, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"hA" = ( +/obj/structure/flora/ausbushes/rospilovo/sparsegrass, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"hB" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien4" + }, +/area/abductor_ship) +"hC" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien5" + }, +/area/abductor_ship) +"hD" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Backstage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"hE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 1 + }, +/turf/open/floor/eighties/red, +/area/centcom/holding) +"hF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/indestructible/white, +/area/centcom/control) +"hH" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"hI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/self_ai_liberation{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"hK" = ( +/obj/machinery/abductor/experiment{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"hL" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"hM" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"hN" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/indestructible/white, +/area/centcom/control) +"hO" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"hP" = ( +/obj/structure/dresser, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_x = 32 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"hQ" = ( +/obj/item/kirbyplants/random, +/turf/open/indestructible/white, +/area/centcom/control) +"hR" = ( +/turf/closed/indestructible/sandstone, +/area/duel/two) +"hS" = ( +/obj/machinery/light/directional/north, +/turf/open/indestructible/white, +/area/centcom/control) +"hT" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"hU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/arena) +"hV" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/centcom/control) +"hW" = ( +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/elite_squad) +"hX" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 5 + }, +/obj/structure/dresser, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"hY" = ( +/obj/structure/sign/flag, +/turf/closed/indestructible/rock/snow/no_init, +/area/syndicate_mothership) +"hZ" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"ia" = ( +/obj/machinery/chem_master/condimaster{ + name = "HoochMaster 2000" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"ib" = ( +/obj/machinery/door/poddoor/preopen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"ic" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/indestructible/white, +/area/centcom/control) +"id" = ( +/obj/structure/table, +/turf/open/indestructible/white, +/area/centcom/control) +"ie" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"if" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/floor/holofloor/hyperspace, +/area/space) +"ih" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"ii" = ( +/obj/machinery/abductor/console{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"ij" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"ik" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/fancy/green, +/obj/item/candle/infinite{ + pixel_y = 6 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"im" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"in" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"io" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 10 + }, +/obj/item/toy/figure/syndie, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"ip" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/mineral_door/paperframe{ + name = "Guest Suite *C" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"iq" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"ir" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"is" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"it" = ( +/obj/effect/baseturf_helper/dune, +/turf/closed/indestructible/syndicate, +/area/centcom/circus) +"iu" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/centcom/control) +"iv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"iw" = ( +/turf/open/floor/wood/large, +/area/centcom/holding) +"ix" = ( +/obj/machinery/door/airlock/centcom{ + name = "Scarlet Dawn Access"; + req_access_txt = "109" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"iy" = ( +/turf/closed/indestructible/riveted, +/area/centcom/outdoors) +"iz" = ( +/obj/machinery/abductor/pad{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iA" = ( +/obj/machinery/abductor/experiment{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iB" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"iC" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"iD" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"iF" = ( +/obj/machinery/abductor/console{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"iH" = ( +/obj/machinery/abductor/pad{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"iJ" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 1 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iK" = ( +/obj/machinery/computer/camera_advanced/abductor{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iL" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"iM" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"iN" = ( +/obj/machinery/button/door/indestructible{ + id = "thunderdome"; + name = "Main Blast Doors Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"iO" = ( +/obj/structure/dresser, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"iP" = ( +/obj/item/rupee, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"iQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"iS" = ( +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 4 + }, +/area/syndicate_mothership) +"iT" = ( +/obj/structure/sink/kitchen/directional/west, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/mineral/plastitanium, +/area/centcom/holding) +"iU" = ( +/obj/structure/table/wood, +/obj/structure/plaque/static_plaque/golden{ + pixel_y = 32 + }, +/obj/item/clothing/accessory/medal/silver{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"iV" = ( +/obj/effect/landmark/abductor/scientist, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"iW" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/syndicate_mothership) +"iX" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"iY" = ( +/obj/structure/flora/ausbushes/genericbush{ + pixel_x = 54; + pixel_y = 71 + }, +/obj/structure/railing, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"iZ" = ( +/obj/effect/landmark/abductor/agent, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"ja" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"jb" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"jc" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"jd" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/centcom/control) +"je" = ( +/obj/structure/railing, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"jg" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Заблокировано."; + name = "External airlock" + }, +/area/centcom/control) +"jh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light/directional/east, +/turf/open/indestructible/white, +/area/centcom/control) +"ji" = ( +/obj/effect/landmark/abductor/scientist{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"jj" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"jl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"jm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/centcom/control) +"jn" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Дверь, ведущая дальше в пучину небытия."; + name = "Internal airlock" + }, +/area/centcom/control) +"jo" = ( +/obj/machinery/button{ + desc = "Открывает дверь при нажатии."; + name = "airlock cycle button"; + pixel_y = -24; + req_access_txt = "150" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"jp" = ( +/obj/effect/landmark/abductor/agent{ + team_number = 2 + }, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"jq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"jr" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"js" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"ju" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/centcom/office) +"jv" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"jx" = ( +/obj/structure/table/reinforced, +/obj/item/paper/fluff/stations/centcom/disk_memo{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/taperecorder{ + pixel_y = 15 + }, +/obj/item/stack/spacecash/c50, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"jy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"jz" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = 14 + }, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"jA" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/rospilovo/ywflowers{ + pixel_x = 17 + }, +/mob/living/simple_animal/parrot, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"jB" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"jC" = ( +/obj/item/shovel/spade{ + pixel_y = -14 + }, +/obj/item/cultivator, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"jD" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"jE" = ( +/obj/machinery/light/floor{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/grass/fairy, +/area/centcom/holding) +"jF" = ( +/turf/closed/indestructible/fakedoor{ + name = "Guest House Entrance" + }, +/area/centcom/holding) +"jG" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light, +/turf/open/floor/grass, +/area/centcom/control) +"jH" = ( +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/obj/machinery/light/cold/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"jI" = ( +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/turf/open/floor/plating/grass{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/outdoors) +"jJ" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"jK" = ( +/obj/machinery/button{ + desc = "Открывает дверь при нажатии."; + name = "airlock cycle button"; + pixel_x = -24; + req_access_txt = "150" + }, +/turf/open/indestructible/white, +/area/centcom/control) +"jL" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 4; + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"jM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/machinery/chem_dispenser/mutagensaltpeter, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"jN" = ( +/obj/machinery/button{ + desc = "Открывает дверь при нажатии."; + name = "airlock cycle button"; + pixel_y = -24; + req_access_txt = "150" + }, +/turf/open/indestructible/white, +/area/centcom/control) +"jO" = ( +/turf/closed/indestructible/opsglass, +/area/centcom/holding) +"jP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"jQ" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"jR" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"jS" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 1 + }, +/area/centcom/control) +"jT" = ( +/turf/closed/indestructible/syndicate, +/area/centcom/circus) +"jU" = ( +/turf/closed/indestructible/opsglass, +/area/centcom/circus) +"jV" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"jW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"jY" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Не открывается."; + name = "airlock" + }, +/area/centcom/circus) +"jZ" = ( +/obj/machinery/vending/cola, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"ka" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical/old, +/obj/structure/sign/poster/contraband/pwr_game{ + pixel_y = 32 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"kb" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/keycard/syndicate_chem, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/expansion_chemicalwarfare) +"kc" = ( +/turf/closed/indestructible/fakedoor{ + name = "Guest House Back Entrance" + }, +/area/centcom/holding) +"ke" = ( +/obj/lab_monitor{ + pixel_y = 4; + plane = -1 + }, +/turf/closed/indestructible/syndicate, +/area/centcom/circus) +"kf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"kg" = ( +/obj/effect/light_emitter, +/turf/closed/indestructible/opsglass, +/area/centcom/circus) +"kh" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/airlock/hatch{ + name = "Workout Room" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/elite_squad) +"ki" = ( +/turf/closed/indestructible/fakedoor{ + desc = "Дверь, ведущая на свободу."; + name = "Internal airlock" + }, +/area/centcom/circus) +"kj" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"kk" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/tray, +/turf/open/floor/carpet, +/area/wizard_station) +"kl" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plating/ice/smooth/safe, +/area/syndicate_mothership) +"km" = ( +/turf/closed/indestructible/fakedoor{ + desc = "�����, ������� ������ � ������ �������."; + name = "airlock" + }, +/area/centcom/control) +"kn" = ( +/turf/open/floor/holofloor/hyperspace, +/area/space) +"ko" = ( +/obj/effect/light_emitter, +/turf/open/floor/plasteel/stairs/old{ + dir = 1 + }, +/area/centcom/control) +"kp" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 5 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"kq" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 10 + }, +/turf/open/floor/plating/ice/smooth/safe, +/area/syndicate_mothership) +"kr" = ( +/obj/structure/closet/syndicate/resources/everything{ + storage_capacity = 40 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"ks" = ( +/obj/effect/mob_spawn/human/donate/artist, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"kt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/chem_dispenser/fullupgrade{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white, +/area/centcom/circus) +"ku" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"kv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/ert_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"kx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"ky" = ( +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"kz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"kA" = ( +/obj/structure/closet/secure_closet/ert_med, +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + pixel_y = -32; + use_power = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"kB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"kC" = ( +/obj/machinery/button{ + desc = "Открывает дверь при нажатии."; + name = "airlock cycle button"; + pixel_y = 24; + req_access_txt = "150" + }, +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"kD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"kE" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"kF" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/centcom/control) +"kG" = ( +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"kH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/syndicate_mothership) +"kJ" = ( +/obj/structure/sign/flag/mothic/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"kK" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"kL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"kM" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"kN" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"kO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"kP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/reagent_dispensers/plumbed{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/centcom/holding) +"kQ" = ( +/obj/machinery/light/cold/directional/east, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"kR" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"kS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/computer/pandemic, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"kT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"kU" = ( +/obj/structure/closet{ + anchored = 1; + name = "Plasmaman suits" + }, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/under/plasmaman/engineering, +/obj/item/clothing/under/plasmaman/botany, +/obj/item/clothing/under/plasmaman/janitor, +/obj/item/clothing/under/plasmaman/chef, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman/engineering, +/obj/item/clothing/head/helmet/space/plasmaman/botany, +/obj/item/clothing/head/helmet/space/plasmaman/janitor, +/obj/item/clothing/head/helmet/space/plasmaman/white, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"kV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/titanium{ + name = "Experiments Wing Decontamination" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"kW" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"kX" = ( +/obj/structure/cable, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"kZ" = ( +/turf/closed/indestructible/fakeglass, +/area/centcom/officetwo) +"la" = ( +/turf/closed/indestructible/necropolis, +/area/duel/one) +"lb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"lc" = ( +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/circus) +"lf" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/power{ + pixel_y = 32 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"lg" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"lh" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"li" = ( +/obj/effect/turf_decal/weather/side{ + dir = 6 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"lj" = ( +/obj/machinery/camera{ + c_tag = "Green Team"; + network = list("thunder"); + pixel_x = 12; + pixel_y = -10; + resistance_flags = 64 + }, +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"lk" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/item/camera/detective{ + desc = "A polaroid camera with extra capacity for social media marketing."; + name = "Professional camera" + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"ll" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/ert_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"lm" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/dune, +/area/centcom/holding) +"ln" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"lo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"lp" = ( +/turf/open/floor/wood/parquet, +/area/duel/three) +"lr" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"ls" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/light/colour_cycle/dancefloor_a{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"lt" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"lu" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"lv" = ( +/obj/structure/closet/secure_closet/ert_sec, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"lx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"ly" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"lz" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"lA" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/circus) +"lB" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"lC" = ( +/obj/machinery/button{ + desc = "Открывает дверь при нажатии."; + name = "airlock cycle button"; + pixel_y = 24; + req_access_txt = "150" + }, +/turf/open/indestructible/white, +/area/centcom/control) +"lD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/flag/che/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"lE" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 9 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"lF" = ( +/turf/closed/indestructible/fakeglass, +/area/tdome/tdomeadmin) +"lG" = ( +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"lH" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"lI" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"lJ" = ( +/obj/item/mop, +/obj/structure/sink/kitchen/directional/west, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"lK" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"lL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"lM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"lN" = ( +/turf/open/floor/plating{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"lO" = ( +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"lP" = ( +/obj/structure/table, +/obj/item/construction/plumbing{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/construction/plumbing{ + pixel_x = 2 + }, +/obj/item/construction/plumbing{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"lQ" = ( +/obj/structure/rack, +/obj/item/nullrod/scythe/vibro{ + damtype = "stamina"; + force = 30; + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/nullrod/claymore/glowing{ + damtype = "stamina"; + force = 30 + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"lR" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"lS" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8; + resistance_flags = 64 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/circus) +"lT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"lU" = ( +/obj/item/screwdriver{ + pixel_x = 1; + pixel_y = 23 + }, +/obj/item/clothing/glasses/science{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/machinery/reagentgrinder{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/structure/noticeboard/directional/east, +/obj/item/grenade/chem_grenade{ + pixel_x = -4 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -4 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -4 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"lV" = ( +/obj/structure/sink/kitchen/directional/west, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"lW" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 8; + resistance_flags = 64 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/circus) +"lX" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"lY" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"lZ" = ( +/obj/structure/table/wood, +/obj/item/integrated_circuit_printer/upgraded/prog, +/obj/item/integrated_circuit_printer/upgraded/prog{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/centcom/circus) +"ma" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"mb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"mc" = ( +/obj/structure/bed{ + dir = 4 + }, +/obj/item/bedsheet/syndie{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/smooth_half, +/area/syndicate_mothership) +"md" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/manifold, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"me" = ( +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"mf" = ( +/turf/open/floor/wood/tile, +/area/duel/three) +"mg" = ( +/obj/structure/railing, +/turf/open/floor/plating/snowed/safe, +/area/syndicate_mothership) +"mh" = ( +/obj/machinery/light, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/centcom/control) +"mi" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"mj" = ( +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"mk" = ( +/turf/open/floor/stone, +/area/centcom/holding) +"ml" = ( +/turf/open/lava/smooth, +/area/duel/one) +"mn" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/integrated_circuit_printer/debug{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"mo" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"mp" = ( +/obj/structure/chair/bronze{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"mq" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"mr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"ms" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/structure/chair/sofa/bench/right, +/obj/structure/sign/poster/contraband/donut_corp{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/stone, +/area/syndicate_mothership) +"mt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bombthreat) +"mu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"mv" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/item/storage/fancy/cigarettes/cigars, +/obj/item/toy/figure/dsquad, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"mw" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"mx" = ( +/turf/open/floor/dz/green, +/area/centcom/control) +"my" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/showcase/machinery/tv{ + desc = "Static fills the screen. If you can find the VCR, you might be able to watch those old Heist Movies again."; + name = "\improper Static Filled Tube(TM) Television" + }, +/obj/structure/sign/poster/contraband/rip_badger{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"mz" = ( +/obj/machinery/duct, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"mA" = ( +/obj/machinery/door/airlock/vault{ + name = "Artifact storage" + }, +/turf/open/floor/plating{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"mB" = ( +/obj/item/rcl/pre_loaded, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"mC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/centcom/control) +"mD" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/centcom/circus) +"mE" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"mF" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/light/colour_cycle/dancefloor_b{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"mG" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"mH" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"mI" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"mK" = ( +/obj/structure/sign/poster/contraband/c20r{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"mL" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor{ + req_access_txt = "101" + }, +/obj/item/ammo_box/magazine/r37, +/obj/item/gun/ballistic/automatic/pitbull/r37, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"mN" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"mO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"mP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"mQ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "FBBZ1"; + name = "Security Shutters" + }, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"mR" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"mS" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/construction/rcd/combat/admin, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"mT" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/mob_spawn/human/donate/artist, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"mU" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"mV" = ( +/obj/structure/sink/directional/east, +/obj/structure/mirror/directional/west, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"mW" = ( +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"mX" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"mY" = ( +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"mZ" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"nb" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"nc" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 10 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"nd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"ne" = ( +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"nf" = ( +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"ng" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open{ + name = "freezer" + }, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/berries, +/obj/item/food/grown/berries, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cherries, +/obj/item/food/grown/cherries, +/obj/item/food/grown/redbeet, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"nh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Dining Hall" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"ni" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"nj" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/closet/cardboard/metal, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"nk" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"nm" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien23" + }, +/area/abductor_ship) +"nn" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"no" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_chemicalwarfare) +"nq" = ( +/obj/structure/fence/corner{ + dir = 6 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"nr" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"ns" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/syndiemoth{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"nu" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8; + resistance_flags = 64 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"nv" = ( +/obj/structure/chair/office, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"nw" = ( +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"nx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"ny" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/centcom/control) +"nz" = ( +/turf/closed/indestructible/fakedoor{ + name = "Tac-Com" + }, +/area/syndicate_mothership) +"nB" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"nC" = ( +/obj/machinery/camera/motion/thunderdome/xray{ + alpha = 0; + c_tag = "Artists' Den"; + network = list("thunder"); + resistance_flags = 227; + view_range = 8 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"nE" = ( +/turf/open/floor/grass, +/area/centcom/holding) +"nF" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_fridgerummage) +"nG" = ( +/obj/structure/window/paperframe{ + can_atmos_pass = 0 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"nH" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"nI" = ( +/obj/machinery/door/airlock/centcom{ + name = "Centcom Bridge"; + req_access_txt = "109" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"nJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"nK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"nM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"nN" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/floor/holofloor/hyperspace, +/area/centcom/supplypod/supplypod_temp_holding) +"nO" = ( +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"nP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/centcom/circus) +"nQ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"nR" = ( +/obj/structure/chair/stool/directional/north, +/obj/effect/landmark/start/nukeop, +/obj/structure/sign/poster/contraband/donk_co{ + pixel_y = -32 + }, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"nS" = ( +/obj/machinery/door/airlock/vault{ + name = "Power generator room" + }, +/turf/open/floor/plasteel/tg/white/side{ + dir = 4 + }, +/area/centcom/circus) +"nT" = ( +/obj/machinery/chem_heater{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white/small, +/area/centcom/circus) +"nU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"nV" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"nW" = ( +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"nX" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"nY" = ( +/obj/structure/table_frame/wood, +/obj/item/stack/sheet/mineral/wood{ + amount = 2 + }, +/obj/machinery/power/rtg/abductor, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"nZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/processor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"oa" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"ob" = ( +/obj/structure/sign/plaques/kiddie/badger{ + desc = "A list of names is engraved on this plaque. 'May their heroic sacrifices inspire your bravery' is carved at the bottom."; + name = "\improper Operative Remembrance Plaque"; + pixel_y = 27 + }, +/obj/structure/bed/dogbed/cayenne, +/mob/living/simple_animal/hostile/carp/cayenne, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"oc" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"od" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/goatplushie, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"oe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4; + pixel_x = -4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"of" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"og" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"oh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"oi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"oj" = ( +/obj/structure/sign/flag/ssc/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"ok" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ol" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "Bunk Room 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"om" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/weather/side{ + dir = 5 + }, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"on" = ( +/obj/machinery/door/airlock/vault{ + name = "Power generator room" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/locked{ + max_integrity = 1500; + req_access_txt = "150" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/mapping_helpers/airlock/cutaiwire, +/turf/open/floor/plasteel/tg/dark/textured, +/area/centcom/circus) +"oo" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"op" = ( +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bombthreat) +"oq" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"or" = ( +/obj/structure/closet, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/iv_drip, +/obj/item/roller, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/reagent_containers/medigel/synthflesh, +/obj/item/defibrillator, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"os" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"ot" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/carpet, +/area/wizard_station) +"ou" = ( +/obj/machinery/oven, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"ov" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"ow" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"ox" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/bag/tray, +/obj/item/kitchen/fork, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"oy" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"oz" = ( +/obj/effect/landmark/error, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"oA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Performance Room" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"oB" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8; + resistance_flags = 64 + }, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"oC" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"oD" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"oE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"oF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"oG" = ( +/obj/structure/window/paperframe{ + can_atmos_pass = 0 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"oH" = ( +/turf/open/floor/plasteel/tg/white/textured_large, +/area/centcom/circus) +"oI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"oJ" = ( +/obj/item/toy/figure/syndie, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"oK" = ( +/obj/structure/cable, +/obj/structure/frame, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"oL" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/pen{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/machinery/light/cold/directional/west, +/obj/item/stack/spacecash/c200{ + pixel_y = 17 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"oM" = ( +/obj/machinery/door/airlock/vault{ + name = "Artifact storage" + }, +/turf/open/floor/plasteel/tg/dark/textured, +/area/centcom/circus) +"oN" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/syndicate/personal, +/obj/structure/sign/poster/contraband/gorlex_recruitment{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"oO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"oP" = ( +/turf/open/floor/grass/fairy, +/area/centcom/holding) +"oR" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"oS" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"oT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"oV" = ( +/obj/vehicle/sealed/car/fucking_tank{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"oW" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"oX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"oY" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_r1"; + id_target = "ck_top_r1" + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/centcom/control) +"oZ" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/snowed/safe, +/area/syndicate_mothership) +"pa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"pb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/structure/musician/piano, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"pc" = ( +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"pd" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership) +"pe" = ( +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"pf" = ( +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/uranium{ + amount = 20 + }, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"pg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"ph" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/dune, +/area/centcom/holding) +"pi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"pj" = ( +/obj/machinery/griddle, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"pk" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/syndicate_mothership/expansion_bombthreat) +"pn" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/gun/magic/wand/resurrection/debug, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"po" = ( +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"pp" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"pq" = ( +/obj/item/paper_bin, +/obj/item/pen/fountain, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"pr" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"pt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"pu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"pv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"pw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/chasm, +/area/centcom/control) +"px" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"py" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"pz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"pA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"pB" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"pC" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"pD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"pE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"pF" = ( +/obj/structure/sign/warning/radiation{ + pixel_x = -32 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"pG" = ( +/turf/open/floor/wood/tile, +/area/centcom/holding) +"pH" = ( +/obj/machinery/door/poddoor{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"pI" = ( +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"pK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/chem_dispenser/fullupgrade{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white, +/area/centcom/circus) +"pL" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 7; + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white/small, +/area/centcom/circus) +"pM" = ( +/turf/open/floor/circuit/red, +/area/syndicate_mothership) +"pN" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 9 + }, +/obj/structure/dresser, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"pO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"pP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"pR" = ( +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"pS" = ( +/obj/effect/turf_decal/siding/red, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/stack/spacecash/c10{ + pixel_x = -19; + pixel_y = 10 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"pT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"pU" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"pV" = ( +/obj/machinery/autolathe/hacked{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/centcom/circus) +"pW" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/closed/indestructible/rock/snow/no_init, +/area/syndicate_mothership) +"pX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"pY" = ( +/obj/structure/sign/poster/contraband/free_drone{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"pZ" = ( +/obj/item/shield/riot/kevlar, +/obj/item/shield/riot/kevlar{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/rack, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qa" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"qb" = ( +/obj/machinery/flasher{ + id = "tdomeflash"; + name = "Thunderdome Flash" + }, +/turf/open/floor/circuit/green, +/area/tdome/arena) +"qc" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"qd" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"qe" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"qf" = ( +/obj/structure/table/wood, +/turf/open/floor/engine/cult, +/area/wizard_station) +"qg" = ( +/turf/open/floor/wood, +/area/wizard_station) +"qi" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"qj" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood, +/area/wizard_station) +"qk" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"ql" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"qm" = ( +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"qn" = ( +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/centcom/circus) +"qo" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"qp" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/figure/wizard, +/turf/open/floor/carpet, +/area/wizard_station) +"qq" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"qr" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood/large, +/area/centcom/holding) +"qs" = ( +/turf/closed/indestructible/fakeglass{ + color = "#008000" + }, +/area/wizard_station) +"qt" = ( +/obj/structure/table, +/obj/item/construction/plumbing/research{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/construction/plumbing/research{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/construction/plumbing/research{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qu" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/centcom/holding) +"qv" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plating, +/area/syndicate_mothership) +"qw" = ( +/obj/structure/rack, +/obj/item/storage/part_replacer/bluespace/tier2, +/obj/item/storage/part_replacer/bluespace/tier3, +/obj/item/storage/part_replacer/bluespace/tier4, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"qx" = ( +/obj/structure/rack, +/obj/item/katana, +/obj/item/katana{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"qz" = ( +/obj/effect/turf_decal/weather/side{ + dir = 9 + }, +/obj/effect/turf_decal/weather/side/corner, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"qA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"qC" = ( +/obj/item/storage/crayons, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"qD" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 4; + dwidth = 12; + height = 17; + id = "syndicate_away"; + name = "syndicate recon outpost"; + roundstart_template = /datum/map_template/shuttle/infiltrator/basic; + width = 23 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"qE" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"qG" = ( +/obj/structure/closet/secure_closet/ert_sec, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"qI" = ( +/obj/machinery/vending/clothing{ + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qJ" = ( +/obj/machinery/vending/engivend{ + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qK" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"qL" = ( +/obj/structure/sign/poster/contraband/masked_men{ + pixel_x = 32 + }, +/obj/machinery/chem_dispenser/fullupgrade, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"qM" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/landmark/holding_facility, +/turf/open/floor/wood/large, +/area/centcom/holding) +"qN" = ( +/obj/item/vending_refill/engivend{ + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/andromeda_bitters{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"qQ" = ( +/obj/machinery/vending/medical{ + contraband = list(); + premium = list(/obj/item/reagent_containers/hypospray/medipen=100,/obj/item/storage/belt/medical=100,/obj/item/sensor_device=100,/obj/item/storage/firstaid/advanced=100,/obj/item/shears=100); + products = list(/obj/item/stack/medical/gauze=100,/obj/item/reagent_containers/syringe=100,/obj/item/reagent_containers/dropper=100,/obj/item/healthanalyzer=100,/obj/item/stack/sticky_tape/surgical=100,/obj/item/healthanalyzer/wound=4,/obj/item/stack/medical/ointment=100,/obj/item/stack/medical/suture=100,/obj/item/stack/medical/bone_gel/four=100); + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"qS" = ( +/obj/machinery/vending/donksofttoyvendor{ + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qT" = ( +/turf/closed/indestructible/fakedoor{ + name = "Scarlet Dawn Access" + }, +/area/tdome/tdomeadmin) +"qU" = ( +/obj/machinery/vending/games{ + resistance_flags = 64 + }, +/obj/machinery/light/floor, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"qV" = ( +/obj/structure/table/wood, +/obj/item/extinguisher/robust{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"qW" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"qX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/oven{ + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"qY" = ( +/turf/open/floor/plating, +/area/syndicate_mothership) +"qZ" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien21" + }, +/area/abductor_ship) +"rb" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"rc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"rd" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"re" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"rf" = ( +/turf/open/floor/dune, +/area/centcom/holding) +"rg" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"rh" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien22" + }, +/area/abductor_ship) +"ri" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/storage/bag/trash/bluespace{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"rk" = ( +/obj/item/plunger{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/construction/plumbing, +/obj/item/reagent_containers/dropper{ + pixel_x = 5; + pixel_y = 14 + }, +/obj/structure/noticeboard/directional/west, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"rl" = ( +/obj/structure/falsewall/wood, +/obj/structure/mirror, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"rn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"ro" = ( +/obj/effect/duel_spawnpoint, +/turf/open/space/basic, +/area/duel/two) +"rp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/analyzer{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/pipe_dispenser{ + desc = "A device used to rapidly pipe things. This one has a curious abundance of warning labels."; + name = "Syndicate Rapid Pipe Dispenser (RPD)"; + pixel_y = -3 + }, +/obj/item/flamethrower/full, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"rq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"rr" = ( +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"rt" = ( +/obj/structure/table/wood, +/obj/item/paint/anycolor{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/paint/anycolor{ + pixel_x = -5 + }, +/obj/item/paint/anycolor{ + pixel_x = 7 + }, +/obj/item/paint/anycolor{ + pixel_x = 1; + pixel_y = -4 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rv" = ( +/obj/structure/table/wood, +/obj/item/checkers_kit, +/obj/item/toy/crayon/spraycan/infinite{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/toy/crayon/spraycan/infinite{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rw" = ( +/obj/structure/dresser, +/obj/item/camera{ + pixel_y = 16 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rx" = ( +/obj/structure/sign/flag/russia/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"rz" = ( +/obj/machinery/vending/mechcomp{ + contraband = list(); + premium = list(/obj/item/multitool/mechcomp=42); + products = list(/obj/item/mechcomp/button=42,/obj/item/mechcomp/delay=42,/obj/item/mechcomp/speaker=42,/obj/item/mechcomp/textpad=42,/obj/item/mechcomp/pressurepad=10,/obj/item/mechcomp/grav_accelerator=10,/obj/item/mechcomp/math=42,/obj/item/mechcomp/list_packer=12,/obj/item/mechcomp/list_extractor=12,/obj/item/mechcomp/find_regex=7,/obj/item/mechcomp/timer=7,/obj/item/mechcomp/microphone=7,/obj/structure/disposalconstruct/mechcomp=10); + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"rB" = ( +/obj/machinery/vending/sustenance{ + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rC" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Observation Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"rD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"rE" = ( +/obj/machinery/vending/autodrobe/all_access{ + products = list(/obj/item/storage/backpack=100,/obj/item/clothing/suit/chickensuit=1,/obj/item/clothing/head/chicken=1,/obj/item/clothing/under/rank/civilian/clown/blue=1,/obj/item/clothing/under/rank/civilian/clown/green=1,/obj/item/clothing/under/rank/civilian/clown/yellow=1,/obj/item/clothing/under/rank/civilian/clown/orange=1,/obj/item/clothing/under/rank/civilian/clown/purple=1,/obj/item/clothing/under/costume/gladiator=1,/obj/item/clothing/head/helmet/gladiator=1,/obj/item/clothing/under/rank/captain/suit=1,/obj/item/clothing/under/rank/captain/suit/skirt=1,/obj/item/clothing/head/flatcap=1,/obj/item/clothing/suit/toggle/labcoat/mad=1,/obj/item/clothing/shoes/jackboots=1,/obj/item/clothing/under/costume/schoolgirl=1,/obj/item/clothing/under/costume/schoolgirl/red=1,/obj/item/clothing/under/costume/schoolgirl/green=1,/obj/item/clothing/under/costume/schoolgirl/orange=1,/obj/item/clothing/head/kitty=1,/obj/item/clothing/under/dress/skirt=1,/obj/item/clothing/head/beret=1,/obj/item/clothing/accessory/waistcoat=1,/obj/item/clothing/under/suit/black=1,/obj/item/clothing/head/that=1,/obj/item/clothing/under/costume/kilt=1,/obj/item/clothing/head/beret=1,/obj/item/clothing/head/beret=1,/obj/item/clothing/head/beret=1,/obj/item/clothing/accessory/waistcoat=1,/obj/item/clothing/glasses/monocle=1,/obj/item/clothing/head/bowler=1,/obj/item/cane=1,/obj/item/clothing/under/suit/sl=1,/obj/item/clothing/mask/fakemoustache=1,/obj/item/clothing/suit/bio_suit/plaguedoctorsuit=1,/obj/item/clothing/head/plaguedoctorhat=1,/obj/item/clothing/mask/gas/plaguedoctor=1,/obj/item/clothing/suit/toggle/owlwings=1,/obj/item/clothing/under/costume/owl=1,/obj/item/clothing/mask/gas/owl_mask=1,/obj/item/clothing/suit/toggle/owlwings/griffinwings=1,/obj/item/clothing/under/costume/griffin=1,/obj/item/clothing/shoes/griffin=1,/obj/item/clothing/head/griffin=1,/obj/item/clothing/suit/apron=1,/obj/item/clothing/under/suit/waiter=1,/obj/item/clothing/suit/jacket/miljacket=1,/obj/item/clothing/under/costume/pirate=1,/obj/item/clothing/suit/pirate=1,/obj/item/clothing/head/pirate=1,/obj/item/clothing/head/bandana=1,/obj/item/clothing/head/bandana=1,/obj/item/clothing/under/costume/soviet=1,/obj/item/clothing/head/ushanka=1,/obj/item/clothing/suit/imperium_monk=1,/obj/item/clothing/mask/gas/cyborg=1,/obj/item/clothing/suit/chaplainsuit/holidaypriest=1,/obj/item/clothing/suit/chaplainsuit/whiterobe=1,/obj/item/clothing/head/wizard/marisa/fake=1,/obj/item/clothing/suit/wizrobe/marisa/fake=1,/obj/item/clothing/under/dress/sundress=1,/obj/item/clothing/head/witchwig=1,/obj/item/staff/broom=1,/obj/item/clothing/suit/wizrobe/fake=1,/obj/item/clothing/head/wizard/fake=1,/obj/item/staff=3,/obj/item/clothing/mask/gas/sexyclown=1,/obj/item/clothing/under/rank/civilian/clown/sexy=1,/obj/item/clothing/mask/gas/sexymime=1,/obj/item/clothing/under/rank/civilian/mime/sexy=1,/obj/item/clothing/under/rank/civilian/mime/skirt=1,/obj/item/clothing/mask/animal/rat/bat=1,/obj/item/clothing/mask/animal/rat/bee=1,/obj/item/clothing/mask/animal/rat/bear=1,/obj/item/clothing/mask/animal/rat/raven=1,/obj/item/clothing/mask/animal/rat/jackal=1,/obj/item/clothing/mask/animal/rat/fox=1,/obj/item/clothing/mask/animal/frog=1,/obj/item/clothing/mask/animal/rat/tribal=1,/obj/item/clothing/mask/animal/rat=1,/obj/item/clothing/suit/apron/overalls=1,/obj/item/clothing/head/rabbitears=1,/obj/item/clothing/head/sombrero=1,/obj/item/clothing/head/sombrero/green=1,/obj/item/clothing/suit/poncho=1,/obj/item/clothing/suit/poncho/green=1,/obj/item/clothing/suit/poncho/red=1,/obj/item/clothing/under/costume/maid=1,/obj/item/clothing/under/rank/civilian/janitor/maid=1,/obj/item/clothing/glasses/cold=1,/obj/item/clothing/glasses/heat=1,/obj/item/clothing/suit/whitedress=1,/obj/item/clothing/under/rank/civilian/clown/jester=1,/obj/item/clothing/head/jester=1,/obj/item/clothing/under/costume/villain=1,/obj/item/clothing/shoes/singery=1,/obj/item/clothing/under/costume/singer/yellow=1,/obj/item/clothing/shoes/singerb=1,/obj/item/clothing/under/costume/singer/blue=1,/obj/item/clothing/suit/hooded/carp_costume=1,/obj/item/clothing/suit/hooded/ian_costume=1,/obj/item/clothing/suit/hooded/bee_costume=1,/obj/item/clothing/suit/snowman=1,/obj/item/clothing/head/snowman=1,/obj/item/clothing/mask/joy=1,/obj/item/clothing/head/cueball=1,/obj/item/clothing/under/suit/white_on_white=1,/obj/item/clothing/under/costume/sailor=1,/obj/item/clothing/head/delinquent=1,/obj/item/clothing/head/wig/random=3,/obj/item/clothing/head/shrine_wig=1,/obj/item/clothing/suit/shrine_maiden=1,/obj/item/clothing/suit/changshan_red=1,/obj/item/clothing/suit/changshan_blue=1,/obj/item/clothing/suit/cheongsam_red=1,/obj/item/clothing/suit/cheongsam_blue=1,/obj/item/gohei=1); + resistance_flags = 64 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rF" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/grass, +/area/centcom/holding) +"rG" = ( +/obj/machinery/vending/chetverochka{ + resistance_flags = 64; + tiltable = 0 + }, +/obj/item/radio/ancient{ + anchored = 1; + desc = "Какая-то дылда положила аплинк на самый верх вендомата. Теперь его не достать."; + layer = 4.01; + pixel_y = 19 + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"rI" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"rJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/dune, +/area/centcom/holding) +"rK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"rL" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Game Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"rM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"rN" = ( +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"rO" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien2" + }, +/area/abductor_ship) +"rP" = ( +/obj/structure/statue/uranium/nuke, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"rQ" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"rR" = ( +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/stasis, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"rS" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 10 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"rT" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/airlock/hatch{ + name = "Security Checkpoint" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"rU" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "War Room" + }, +/turf/open/floor/plasteel/tg/textured_large, +/area/syndicate_mothership) +"rW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"rX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/crate/bin{ + pixel_y = 6 + }, +/turf/open/floor/stone, +/area/centcom/holding) +"rY" = ( +/obj/structure/musician/piano, +/turf/open/floor/dune/sandy, +/area/centcom/holding) +"rZ" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"sa" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"sb" = ( +/obj/structure/chair/stool/directional/west, +/obj/effect/landmark/start/nukeop, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"sc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/flag/kazakh/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"sd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"se" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"sf" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/oven, +/obj/structure/sign/poster/contraband/eat{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"sg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red/corner, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"sh" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"si" = ( +/obj/machinery/air_sensor{ + chamber_id = "nukiebase"; + name = "syndicate ordnance gas sensor" + }, +/turf/open/floor/engine/vacuum, +/area/syndicate_mothership/expansion_bombthreat) +"sj" = ( +/obj/structure/lattice, +/turf/open/chasm, +/area/centcom/control) +"sk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"sl" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"sm" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/toy/toy_xeno, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"sn" = ( +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"so" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeobserve) +"sp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"sq" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"sr" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"ss" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"st" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Supply"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/pod_storage) +"su" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"sv" = ( +/obj/machinery/shower/directional/south, +/obj/item/soap/syndie, +/obj/structure/curtain, +/obj/machinery/door/window/survival_pod, +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"sw" = ( +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"sy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/north{ + network = list("nukie") + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"sz" = ( +/obj/structure/bed, +/obj/item/bedsheet/syndie, +/turf/open/floor/plasteel/tg/smooth_half, +/area/syndicate_mothership) +"sA" = ( +/turf/open/floor/plating/ice/smooth/safe, +/area/syndicate_mothership) +"sB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"sD" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"sE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"sG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"sH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"sI" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/centcom/control) +"sJ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "centcomsouthenter"; + name = "South Enter Shutters Control"; + pixel_x = -5 + }, +/obj/machinery/button/door{ + id = "centcomnorthenter"; + name = "North Enter Shutters Control"; + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"sL" = ( +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"sM" = ( +/obj/effect/turf_decal/weather/side/corner, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"sN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"sO" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"sP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"sQ" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_l3"; + id_target = "ck_top_l3" + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/centcom/control) +"sR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/window/paperframe{ + can_atmos_pass = 0 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"sS" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"sT" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"sU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"sV" = ( +/obj/item/toy/plush/lizard_plushie/green{ + name = "Spots-The-Operative" + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"sX" = ( +/obj/machinery/door/airlock/silver{ + name = "Shower" + }, +/turf/open/floor/plasteel/white, +/area/tdome/tdomeobserve) +"sY" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/chair/stool/directional/east, +/obj/effect/landmark/start/nukeop, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"sZ" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"ta" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"tc" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"td" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"te" = ( +/obj/effect/turf_decal/weather/side, +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"tg" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"th" = ( +/obj/machinery/light/cold/directional/east, +/obj/machinery/vending/snack/teal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"ti" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"tk" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"tl" = ( +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"tm" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"tn" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"to" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"tp" = ( +/obj/structure/destructible/cult/forge{ + desc = "An engine used in powering the wizard's ship"; + name = "magma engine" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"tq" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"tr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"ts" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"tt" = ( +/obj/structure/window/reinforced{ + color = "#008000"; + dir = 1; + resistance_flags = 3 + }, +/turf/open/lava, +/area/wizard_station) +"tv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"tw" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"tx" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"tz" = ( +/turf/open/floor/plating/asteroid/basalt, +/area/duel/one) +"tA" = ( +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"tB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"tF" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/obj/structure/lattice, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"tG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"tI" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/control) +"tJ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"tK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"tM" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Locker Room"; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"tN" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/radio/headset/headset_cent, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"tO" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"tP" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/wizard_station) +"tQ" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/centcom/holding) +"tR" = ( +/obj/machinery/door/airlock/wood{ + name = "Blue Team" + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"tS" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/centcom/control) +"tT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"tU" = ( +/obj/item/storage/pill_bottle{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/storage/pill_bottle{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"tV" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/snowed/safe, +/area/syndicate_mothership) +"tX" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"tY" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/structure/sign/poster/contraband/energy_swords{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"tZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/centcom/office) +"ua" = ( +/obj/effect/landmark/holding_facility, +/turf/open/floor/wood/large, +/area/centcom/holding) +"ud" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Shrine" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"ue" = ( +/obj/structure/closet{ + anchored = 1; + desc = "A storage unit for plasmaman internals, courtesy of the Spider Clan."; + icon_state = "emergency"; + name = "Plasmaman emergency closet" + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"uf" = ( +/obj/structure/fence/cut/medium, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"ug" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e" + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"uh" = ( +/obj/effect/duel_controller, +/turf/open/floor/plasteel/monofloor, +/area/duel/four) +"ui" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/elite_squad) +"uj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"uk" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/radio/headset/headset_cent, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ul" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"um" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"un" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red, +/obj/item/toy/nuke{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"uo" = ( +/obj/effect/turf_decal/siding/wideplating, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "General Quarters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/dark/textured_half, +/area/syndicate_mothership) +"up" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"uq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"ur" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"us" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"ut" = ( +/obj/structure/chair/stool/directional/west, +/turf/open/floor/dune/sandy, +/area/centcom/holding) +"uu" = ( +/obj/structure/fence/door, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"uv" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"uw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"ux" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/storage/basket, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"uy" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"uz" = ( +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = -10; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 12; + pixel_y = 34; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 12; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 1; + pixel_y = 23; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = 1; + pixel_y = 34; + req_access_txt = "150" + }, +/obj/machinery/button{ + desc = "It's a secret!"; + name = "secret button"; + pixel_x = -10; + pixel_y = 34; + req_access_txt = "150" + }, +/obj/effect/baseturf_helper/dune, +/turf/open/indestructible/white, +/area/centcom/control) +"uA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"uC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"uE" = ( +/obj/machinery/light/floor, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"uG" = ( +/obj/structure/barricade/sandbags, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"uI" = ( +/obj/structure/window/paperframe{ + can_atmos_pass = 0 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"uJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"uM" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"uN" = ( +/obj/machinery/light/small/directional/south, +/obj/item/watertank{ + pixel_x = -10 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"uO" = ( +/obj/structure/fence, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"uP" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tg/smooth_half, +/area/syndicate_mothership) +"uQ" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"uR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"uS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/chasm, +/area/centcom/control) +"uU" = ( +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"uX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"uY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"uZ" = ( +/obj/structure/closet/crate/bin, +/obj/item/soap/syndie, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"va" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "centcombridge" + }, +/turf/open/floor/plating, +/area/centcom/control) +"vb" = ( +/obj/machinery/door/poddoor/shuttledock{ + checkdir = 1; + name = "Syndicate Blast Door"; + turftype = /turf/open/floor/grass/snow/safe + }, +/turf/open/floor/plating, +/area/syndicate_mothership) +"vd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"ve" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"vf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"vg" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"vh" = ( +/obj/structure/cable, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"vi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"vj" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"vk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"vl" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"vm" = ( +/obj/structure/closet/crate/cardboard, +/turf/open/floor/plating, +/area/syndicate_mothership) +"vn" = ( +/obj/item/gun/energy/ionrifle, +/obj/structure/rack, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"vp" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/door/airlock/hatch{ + name = "Gangway" + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"vq" = ( +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership) +"vr" = ( +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"vs" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"vt" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/mineral_door/paperframe{ + name = "Guest Suite *D" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"vu" = ( +/turf/closed/indestructible/riveted, +/area/centcom/office/living) +"vv" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"vw" = ( +/obj/machinery/chem_master{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white/small, +/area/centcom/circus) +"vx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_chemicalwarfare) +"vy" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/structure/chair/sofa/bench, +/obj/machinery/light/cold/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/stone, +/area/syndicate_mothership) +"vz" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"vA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"vB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"vC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership/elite_squad) +"vD" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"vE" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"vF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"vG" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"vH" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/centcom/control) +"vI" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/obj/machinery/door/airlock/titanium{ + name = "Experiments Wing Decontamination" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 8 + }, +/area/syndicate_mothership) +"vJ" = ( +/obj/machinery/vending/coffee{ + default_price = 0; + extra_price = 0; + fair_market_price = 0; + name = "\improper Jim Norton's Quebecois Coffee" + }, +/turf/open/floor/wood/large, +/area/centcom/holding) +"vK" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"vL" = ( +/obj/structure/lattice/catwalk, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"vM" = ( +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"vN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"vO" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"vP" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "centcombridge" + }, +/turf/open/floor/plating, +/area/centcom/control) +"vR" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Sky Bridge" + }, +/turf/open/floor/plasteel/tg/textured_large, +/area/syndicate_mothership) +"vS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"vT" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/airlock/hatch{ + name = "Kitchen" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/elite_squad) +"vU" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Sector A" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"vV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/centcom/control) +"vX" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"vY" = ( +/obj/structure/table/optable/abductor, +/turf/open/floor/plating/abductor, +/area/abductor_ship) +"vZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"wa" = ( +/obj/machinery/autolathe, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"wb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_chemicalwarfare) +"wc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/assembly/flash, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"wd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"wg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/cold/directional/west{ + dir = 2 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"wh" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"wj" = ( +/obj/structure/signpost/salvation{ + icon = 'icons/obj/structures.dmi'; + icon_state = "ladder10"; + invisibility = 100 + }, +/turf/open/floor/plating/ashplanet/wateryrock{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; + planetary_atmos = 0 + }, +/area/awaymission/errorroom) +"wk" = ( +/turf/open/floor/plasteel/stairs/left, +/area/centcom/control) +"wl" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"wm" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/corner, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"wo" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/centcom/control) +"wp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/indestructible{ + dir = 1; + id = "centcomsouthenter" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"wq" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 5 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"wr" = ( +/turf/open/floor/plastic, +/area/syndicate_mothership/expansion_fridgerummage) +"ws" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"wt" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"wu" = ( +/obj/effect/duel_controller, +/turf/open/floor/plating/asteroid/basalt, +/area/duel/one) +"wv" = ( +/turf/closed/indestructible/riveted, +/area/ai_multicam_room) +"ww" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"wx" = ( +/turf/open/ai_visible, +/area/ai_multicam_room) +"wy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"wA" = ( +/turf/closed/indestructible/black, +/area/start) +"wB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/chasm, +/area/centcom/control) +"wC" = ( +/obj/effect/landmark/start/new_player, +/turf/open/floor/plating, +/area/start) +"wD" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"wE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"wF" = ( +/obj/effect/landmark/ai_multicam_room, +/turf/open/ai_visible, +/area/ai_multicam_room) +"wG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Centcom Officer Cabinet" + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"wH" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"wI" = ( +/obj/effect/landmark/ctf, +/turf/closed/indestructible/rock/snow/no_init, +/area/space) +"wJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"wK" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"wL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/centcom/control) +"wM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/centcom/control) +"wN" = ( +/obj/machinery/light, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/centcom/control) +"wP" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 6 + }, +/obj/item/toy/katana{ + desc = "As seen in your favourite Japanese cartoon."; + name = "anime katana" + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"wR" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"wT" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"wU" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"wV" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"wW" = ( +/turf/open/floor/engine/vacuum, +/area/syndicate_mothership/expansion_bombthreat) +"wX" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"wY" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"wZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"xa" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"xb" = ( +/obj/structure/toilet, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/machinery/door/window/survival_pod, +/turf/open/floor/plasteel/tg/showroomfloor, +/area/centcom/holding) +"xd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/centcom/control) +"xe" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/centcom/control) +"xg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"xh" = ( +/turf/open/floor/engine, +/area/centcom/control) +"xi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"xj" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"xk" = ( +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"xl" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xn" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xo" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"xp" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 9 + }, +/obj/structure/sign/poster/contraband/gorlex_recruitment{ + pixel_y = 32 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"xq" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mob_spawn/human/corpse/nanotrasensoldier, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"xr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/wallframe/newscaster{ + pixel_x = -6 + }, +/obj/item/flashlight/lamp/bananalamp{ + pixel_x = 9; + pixel_y = 9 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"xs" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xt" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xu" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + id = "pod3_away"; + name = "NT CentCom: Recovery field #4"; + width = 3 + }, +/turf/open/floor/engine, +/area/centcom/control) +"xv" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"xw" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + req_access_txt = "101" + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + req_access_txt = "101" + }, +/obj/item/construction/rcd/arcd{ + pixel_y = 4 + }, +/obj/item/construction/rcd/arcd, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"xx" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/riveted, +/area/centcom/supplypod) +"xy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/c20r{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"xz" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xA" = ( +/obj/structure/grille/indestructable/shocking, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/duel) +"xB" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"xD" = ( +/obj/machinery/computer/camera_advanced{ + dir = 4 + }, +/turf/open/floor/wood, +/area/wizard_station) +"xE" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/airlock/public/glass{ + name = "Cafeteria" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/elite_squad) +"xF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4; + pixel_x = -4; + pixel_y = 8 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"xG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"xH" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"xJ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/crate/freezer{ + name = "fruits and veggies freezer" + }, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/pineapple, +/obj/item/food/grown/pineapple, +/obj/item/food/grown/cherries, +/obj/item/food/grown/cherries, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/bell_pepper, +/obj/item/food/grown/bell_pepper, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/parsnip, +/obj/item/food/grown/parsnip, +/obj/item/food/grown/redbeet, +/obj/item/food/grown/redbeet, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/peas, +/obj/item/food/grown/peas, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/banana, +/obj/item/food/grown/banana, +/obj/item/food/grown/apple, +/obj/item/food/grown/apple, +/turf/open/floor/plastic, +/area/syndicate_mothership/expansion_fridgerummage) +"xK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/white, +/area/centcom/circus) +"xL" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/saber/green, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"xN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/centcom/control) +"xO" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/microwave, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"xP" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"xQ" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_r1"; + id_target = "ck_bot_r1" + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/centcom/control) +"xR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -29 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"xS" = ( +/obj/structure/sign/poster/contraband/bountyhunters{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"xU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/centcom/control) +"xW" = ( +/obj/machinery/door/window/survival_pod{ + name = "Frosted Door"; + opacity = 1 + }, +/turf/open/floor/plasteel/tg/freezer, +/area/syndicate_mothership) +"xX" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership/elite_squad) +"xY" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"xZ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"ya" = ( +/obj/machinery/door/airlock/titanium{ + name = "Restroom" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"yc" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yd" = ( +/turf/closed/wall/mineral/wood, +/area/syndicate_mothership) +"ye" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/centcom/control) +"yf" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"yg" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"yi" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"yk" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + id = "pod4_away"; + name = "NT CentCom: Recovery field #2"; + width = 3 + }, +/turf/open/floor/engine, +/area/centcom/control) +"yl" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"ym" = ( +/obj/structure/closet/crate/cardboard/mothic, +/obj/machinery/camera/autoname/directional/west{ + network = list("nukie") + }, +/turf/open/floor/plating, +/area/syndicate_mothership) +"yn" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"yo" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"yp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership/expansion_bombthreat) +"yq" = ( +/obj/effect/landmark/thunderdome/admin, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeadmin) +"yr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"yt" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yu" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 9 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"yv" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood, +/area/wizard_station) +"yw" = ( +/obj/structure/sign/poster/contraband/lizard{ + pixel_x = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"yx" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/centcom/control) +"yy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/centcom/control) +"yz" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"yA" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"yB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"yC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"yD" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/computer/arcade/amputation{ + dir = 1 + }, +/turf/open/floor/eighties/red, +/area/centcom/holding) +"yG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yH" = ( +/obj/item/clothing/shoes/galoshes{ + pixel_y = -8 + }, +/obj/item/storage/belt/janitor{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/watertank/janitor{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/pushbroom{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"yJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer{ + pixel_y = 3 + }, +/obj/item/plant_analyzer, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/spray/chemsprayer/bioterror{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"yK" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"yL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"yM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Botanical Garden" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"yN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"yO" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"yP" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"yR" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + id = "pod2_away"; + name = "NT CentCom: Recovery field #3"; + width = 3 + }, +/turf/open/floor/engine, +/area/centcom/control) +"yS" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/sign/poster/contraband/cybersun_six_hundred{ + pixel_x = 32 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/west{ + network = list("nukie") + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"yT" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"yU" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"yV" = ( +/obj/structure/closet/secure_closet/ert_med, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"yW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"yX" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark/end, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"yY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/item/documents{ + desc = "Some kind of paperwork."; + name = "documents" + }, +/obj/item/documents{ + desc = "Some kind of paperwork."; + name = "documents" + }, +/obj/item/documents{ + desc = "Some kind of paperwork."; + name = "documents" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"za" = ( +/obj/structure/closet/crate, +/obj/item/vending_refill/autodrobe, +/obj/item/stack/sheet/paperframes/fifty, +/obj/item/stack/sheet/paperframes/fifty, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/fancy/candle_box, +/obj/item/storage/box/lights/mixed, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"zb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bioterrorism) +"zc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_x = -9 + }, +/obj/machinery/button/door{ + id = "centcombridge"; + name = "bridge access control"; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"zd" = ( +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"ze" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"zf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"zg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"zh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/centcom/control) +"zj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"zl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"zn" = ( +/obj/structure/table/wood/fancy, +/obj/item/camera/spooky, +/turf/open/floor/carpet, +/area/wizard_station) +"zo" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/reagent_containers/food/condiment/vinegar, +/obj/item/reagent_containers/food/condiment/quality_oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"zp" = ( +/obj/structure/closet/crate, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/multitool, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"zq" = ( +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"zs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"zt" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/open/floor/dz/green, +/area/centcom/that_zone) +"zu" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zv" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"zw" = ( +/obj/machinery/light/floor{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/floor/grass/fairy, +/area/centcom/holding) +"zx" = ( +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"zy" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 7; + id = "pod_away"; + name = "NT CentCom: Recovery field #1"; + width = 5 + }, +/turf/open/floor/engine, +/area/centcom/control) +"zz" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zA" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"zB" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/wizard_station) +"zD" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"zE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"zF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"zG" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"zH" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/wizard_station) +"zI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/toy/plush/nukeplushie{ + name = "Sir Flash Nukedon"; + pixel_x = -2; + pixel_y = 14 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"zJ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zK" = ( +/obj/item/statuebust{ + pixel_y = 12 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/wood, +/area/wizard_station) +"zL" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/rospilovo/pointybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/turf/open/floor/grass, +/area/centcom/control) +"zM" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Armoury" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"zN" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zO" = ( +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"zP" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"zQ" = ( +/obj/structure/table/wood, +/obj/structure/madman_computer{ + pixel_y = 12 + }, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"zR" = ( +/obj/effect/turf_decal/weather/side{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"zS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"zT" = ( +/obj/structure/sink/kitchen/directional/south, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"zU" = ( +/obj/structure/flora/rock/boulder, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/syndicate_mothership) +"zV" = ( +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"zW" = ( +/obj/structure/flora/rock/boulder{ + icon_state = "boulder2" + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"zX" = ( +/obj/machinery/vending/magivend, +/turf/open/floor/engine/cult, +/area/wizard_station) +"zY" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"Aa" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"Ab" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/centcom/control) +"Ac" = ( +/obj/structure/table/wood, +/obj/structure/plaque/static_plaque/thunderdome{ + pixel_y = -32 + }, +/obj/item/clothing/accessory/medal{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"Ae" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/item/stack/spacecash/c1{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Ah" = ( +/obj/machinery/vending/snack, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ai" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"Aj" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Ak" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/pill_bottle/dice{ + icon_state = "magicdicebag" + }, +/turf/open/floor/carpet, +/area/wizard_station) +"Al" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/palebush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/rospilovo/reedbush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"Am" = ( +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"An" = ( +/obj/structure/chair/office, +/obj/effect/landmark/ert_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Ao" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Ap" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/photo_album, +/obj/machinery/light, +/turf/open/floor/carpet, +/area/wizard_station) +"Aq" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Ar" = ( +/obj/machinery/light, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/centcom/control) +"As" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"At" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Au" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Aw" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/wood, +/area/centcom/control) +"Ax" = ( +/obj/machinery/shuttle_manipulator, +/turf/open/floor/circuit/green, +/area/centcom/brief) +"Az" = ( +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/expansion_chemicalwarfare) +"AA" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"AB" = ( +/obj/machinery/light, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/centcom/control) +"AC" = ( +/obj/machinery/door/poddoor/ert, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plasteel, +/area/centcom/brief) +"AD" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_r3"; + id_target = "ck_bot_r3" + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/centcom/control) +"AE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/centcom/holding) +"AF" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"AG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199"; + pixel_x = -4 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"AH" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"AI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"AJ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"AK" = ( +/obj/structure/flora/rock/boulder{ + icon_state = "boulder3" + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"AO" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"AQ" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"AR" = ( +/obj/structure/flora/rock/boulder{ + icon_state = "boulder4" + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"AS" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"AT" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"AV" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"AW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"AX" = ( +/obj/effect/duel_controller, +/turf/open/space/basic, +/area/duel/two) +"AY" = ( +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/centcom/control) +"AZ" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"Ba" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"Bb" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Study" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bc" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/centcom/control) +"Bd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 5 + }, +/obj/structure/sign/poster/contraband/rip_badger{ + pixel_x = 32 + }, +/obj/machinery/biogenerator, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"Be" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Bf" = ( +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Bg" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Bi" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Bj" = ( +/obj/lab_monitor{ + pixel_y = 4; + plane = -1 + }, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"Bk" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Bl" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Break Room" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bm" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bn" = ( +/obj/structure/table/wood, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/ointment, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bo" = ( +/obj/structure/table/wood, +/obj/item/retractor, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bp" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/turf/open/floor/dz/green, +/area/centcom/control) +"Bq" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"Br" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Bs" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/wizrobe/magusblue, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/obj/structure/mirror/magic{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Bt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/indestructible{ + dir = 8; + id = "centcomnorthenter" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Bu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Bv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Bw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Bx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Bz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"BA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/centcom/control) +"BB" = ( +/obj/structure/table/wood/fancy, +/obj/item/skub{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"BD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"BE" = ( +/obj/machinery/atmospherics/components/trinary/mixer, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"BF" = ( +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"BG" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"BH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/centcom/control) +"BI" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/clothing/head/wizard/magus, +/obj/item/staff, +/turf/open/floor/engine/cult, +/area/wizard_station) +"BJ" = ( +/obj/item/food/meat/slab/human/mutant/lizard, +/turf/open/floor/grass, +/area/wizard_station) +"BK" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/grass, +/area/wizard_station) +"BL" = ( +/obj/effect/decal/remains/xeno/larva, +/turf/open/floor/grass, +/area/wizard_station) +"BM" = ( +/turf/open/floor/plasteel/stairs/right, +/area/centcom/holding) +"BN" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grass, +/area/wizard_station) +"BP" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/toy/katana, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/item/gun/ballistic/automatic/pistol/toy, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/centcom/control) +"BQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/centcom/control) +"BR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "FBBZ1"; + name = "Security Shutters" + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"BS" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"BU" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"BW" = ( +/obj/structure/chair/comfy/teal, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"BY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"BZ" = ( +/obj/structure/destructible/cult/tome, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ca" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/clothing/suit/wizrobe/red, +/obj/item/clothing/head/wizard/red, +/obj/item/staff, +/obj/item/clothing/shoes/sandal/magic, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Cb" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Cc" = ( +/turf/open/floor/grass, +/area/wizard_station) +"Cd" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Cg" = ( +/obj/item/food/meat/slab/corgi, +/turf/open/floor/grass, +/area/wizard_station) +"Ch" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ci" = ( +/obj/structure/destructible/cult/talisman{ + desc = "An altar dedicated to the Wizards' Federation" + }, +/obj/item/kitchen/knife/ritual, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Cj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "centcombridge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Ck" = ( +/turf/open/floor/plasteel/stairs/left, +/area/centcom/holding) +"Cl" = ( +/obj/item/clothing/shoes/sandal/marisa, +/obj/item/clothing/suit/wizrobe/marisa, +/obj/item/clothing/head/wizard/marisa, +/obj/item/staff/broom, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Cm" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/dune, +/area/centcom/holding) +"Cn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/stone, +/area/centcom/holding) +"Co" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Cp" = ( +/obj/effect/decal/cleanable/blood/splatter, +/mob/living/simple_animal/hostile/netherworld{ + name = "Experiment 35b" + }, +/turf/open/floor/grass, +/area/wizard_station) +"Cq" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/wrench{ + desc = "A little smidgeon of Freon..."; + name = "Freon" + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Cr" = ( +/obj/effect/landmark/start/wizard, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Cs" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Cu" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Cv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/centcom/control) +"Cw" = ( +/obj/structure/closet, +/obj/item/clothing/under/costume/jabroni, +/obj/item/clothing/under/costume/geisha, +/obj/item/clothing/under/costume/kilt, +/obj/item/clothing/under/costume/roman, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"Cx" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"Cy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel, +/area/centcom/control) +"CA" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel, +/area/centcom/control) +"CB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/duct, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"CD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"CE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/machinery/newscaster/directional/north, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel, +/area/centcom/control) +"CF" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome" + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeobserve) +"CG" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"CH" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"CI" = ( +/obj/effect/turf_decal/weather/side{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"CJ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = -11 + }, +/obj/item/storage/belt/medical, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership) +"CK" = ( +/obj/structure/closet/cardboard, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/obj/machinery/camera/autoname/directional/west{ + network = list("nukie") + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"CL" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"CM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"CN" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"CO" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"CP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/window{ + id = "FBBZ1"; + name = "Security Shutters" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"CQ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"CR" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"CS" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/centcom/control) +"CT" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/item/dualsaber/toy, +/obj/item/gun/ballistic/shotgun/toy, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/centcom/control) +"CU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"CV" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"CW" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"CX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"CY" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"CZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Da" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Db" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dc" = ( +/obj/machinery/light/floor/directional/south, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/engine, +/area/centcom/control) +"Dd" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/syndicate_pistol{ + pixel_y = 32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"De" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/grass, +/area/wizard_station) +"Dg" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/snack/orange, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Dk" = ( +/obj/structure/fence/cut/large, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Dl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dm" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Dn" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Dp" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Dq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Dr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/caution{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Ds" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dt" = ( +/obj/structure/railing/left, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"Du" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dv" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"Dw" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Dx" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"Dy" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"Dz" = ( +/obj/item/food/meat/slab/human/mutant/slime, +/turf/open/floor/grass, +/area/wizard_station) +"DB" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"DC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"DD" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"DE" = ( +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"DF" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"DG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Backup Emergency Shuttle Dock"; + req_access_txt = "CentCom" + }, +/obj/structure/fans/tiny/invisible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"DH" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"DI" = ( +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"DJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"DK" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"DL" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/centcom/control) +"DM" = ( +/turf/open/floor/plasteel/tg/smooth_edge{ + dir = 4 + }, +/area/syndicate_mothership/elite_squad) +"DN" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"DO" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/grass, +/area/wizard_station) +"DP" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"DR" = ( +/turf/closed/indestructible/fakeglass, +/area/tdome/tdomeobserve) +"DS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Backup Emergency Shuttle Dock"; + req_access_txt = null + }, +/obj/structure/fans/tiny/invisible, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/door/poddoor/shutters/indestructible, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"DT" = ( +/mob/living/simple_animal/bot/medbot/mysterious{ + desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; + faction = list("neutral","silicon","creature"); + name = "Nobody's Perfect" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DU" = ( +/obj/machinery/light, +/turf/open/floor/engine/cult, +/area/wizard_station) +"DV" = ( +/obj/item/food/meat/slab/xeno, +/turf/open/floor/grass, +/area/wizard_station) +"DW" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"DX" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"DY" = ( +/obj/docking_port/mobile/emergency/backup{ + dir = 8 + }, +/turf/open/chasm, +/area/centcom/outdoors) +"Ea" = ( +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"Eb" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Observation Deck" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ec" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ed" = ( +/obj/effect/turf_decal/weather/side/corner{ + dir = 8 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Ee" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Storage" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ef" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/centcom/control) +"Eg" = ( +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/light/cold/directional/east, +/obj/item/gun/syringe/syndicate, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Eh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bar/directional/east, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"Ei" = ( +/turf/closed/indestructible/fakedoor{ + name = "Scarlet Dawn Access" + }, +/area/centcom/control) +"Ej" = ( +/obj/machinery/camera/autoname/directional/east{ + network = list("nukie") + }, +/obj/structure/shipping_container/donk_co, +/turf/open/floor/plating, +/area/syndicate_mothership) +"Ek" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"El" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Em" = ( +/turf/open/floor/plasteel/goonplaque{ + desc = "This is a plaque commemorating the thunderdome and all those who have died at its pearly blast doors." + }, +/area/tdome/tdomeobserve) +"En" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Eo" = ( +/obj/structure/sign/poster/contraband/free_key, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"Ep" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Dojo" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Eq" = ( +/obj/item/clothing/suit/wizrobe/black, +/obj/item/clothing/head/wizard/black, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"Er" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Et" = ( +/obj/effect/baseturf_helper/dune, +/turf/open/floor/plating/asteroid, +/area/centcom/outdoors) +"Eu" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/bot{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"Ev" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ew" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomegen"; + name = "General Supply" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Ex" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Ey" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Ez" = ( +/obj/item/cardboard_cutout, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"EA" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/obj/item/dice, +/turf/open/floor/carpet, +/area/wizard_station) +"ED" = ( +/obj/machinery/door/airlock/centcom{ + name = "Centcom East"; + req_access_txt = "109" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"EF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"EG" = ( +/obj/structure/rack, +/obj/item/storage/lockbox/loyalty, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"EH" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"EI" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"EJ" = ( +/obj/machinery/shower/directional/east, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership/expansion_chemicalwarfare) +"EK" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 8 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"EL" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"EM" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tdome/arena) +"EN" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"EO" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"EP" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"EQ" = ( +/turf/open/floor/plasteel/white, +/area/wizard_station) +"ET" = ( +/obj/structure/mirror/magic{ + pixel_y = 28 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"EU" = ( +/obj/item/cautery/alien, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"EW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"EX" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"EY" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"EZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fa" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/revolver{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"Fb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/floor/engine, +/area/centcom/control) +"Fc" = ( +/obj/machinery/vending/tool, +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"Fd" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/closet/emcloset, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"Fe" = ( +/obj/item/coin/antagtoken, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/wizard_station) +"Ff" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"Fi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fl" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Fm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fn" = ( +/obj/machinery/door/airlock/hatch{ + name = "Tool Closet" + }, +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"Fo" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Sky Bridge" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/textured_large, +/area/syndicate_mothership) +"Fp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fq" = ( +/obj/structure/bed, +/obj/item/bedsheet/wiz, +/turf/open/floor/carpet, +/area/wizard_station) +"Fr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/centcom/control) +"Fs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Ft" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fu" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fv" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fw" = ( +/obj/effect/turf_decal/weather/side{ + dir = 1 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Fx" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Fy" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Fz" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/centcom/control) +"FA" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_x = -32 + }, +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bombthreat) +"FB" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"FC" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/centcom/holding) +"FD" = ( +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"FE" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"FF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"FH" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/assembly/timer{ + pixel_x = 12; + pixel_y = -9 + }, +/obj/item/assembly/timer{ + pixel_x = 15 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/assembly/signaler{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/assembly/timer{ + pixel_x = 18; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"FI" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"FJ" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/centcom/control) +"FK" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/centcom/control) +"FM" = ( +/obj/machinery/door/airlock/centcom{ + name = "Administrative Office"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/wood, +/area/centcom/office) +"FN" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"FO" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"FP" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_y = -32 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"FQ" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"FR" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/centcom/control) +"FT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/papercutter, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"FU" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/centcom/control) +"FV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"FW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"FY" = ( +/turf/closed/indestructible/riveted, +/area/centcom/officetwo) +"Ga" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gb" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"Gc" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"Gd" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"Ge" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Gf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gg" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"Gi" = ( +/obj/structure/lattice/catwalk, +/turf/open/chasm, +/area/centcom/control) +"Gj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/obj/structure/chair/office/light, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Gk" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"Gl" = ( +/obj/structure/punching_bag, +/turf/open/floor/carpet, +/area/wizard_station) +"Gm" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"Gn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Go" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/weather/side, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gq" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/centcom/control) +"Gr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Gs" = ( +/turf/open/floor/circuit/red/off, +/area/syndicate_mothership/expansion_bioterrorism) +"Gt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership) +"Gu" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Gv" = ( +/obj/structure/chair/stool/directional/north, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Gw" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien20" + }, +/area/abductor_ship) +"Gx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/centcom/control) +"Gy" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien10" + }, +/area/abductor_ship) +"Gz" = ( +/obj/structure/fence/door/opened, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"GA" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"GB" = ( +/obj/effect/light_emitter{ + light_range = 16; + set_cap = 2.5; + set_luminosity = 16 + }, +/turf/open/floor/engine, +/area/centcom/outdoors) +"GC" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"GD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"GE" = ( +/turf/open/floor/engine, +/area/centcom/outdoors) +"GF" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Supply"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/supplypod/pod_storage) +"GG" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"GH" = ( +/obj/machinery/computer/camera_advanced/base_construction/centcom{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"GI" = ( +/turf/open/floor/carpet/black, +/area/centcom/holding) +"GJ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"GK" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + req_access_txt = "101" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "ck_ops"; + name = "spec ops shutters" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"GO" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"GP" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"GQ" = ( +/obj/structure/table/wood, +/obj/item/food/chawanmushi, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"GR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/emcloset, +/obj/item/stack/spacecash/c100, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"GS" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Medical Bay" + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"GU" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"GV" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/circuit/red/off, +/area/syndicate_mothership/expansion_bioterrorism) +"GW" = ( +/obj/machinery/light/directional/south, +/obj/effect/landmark/holding_facility, +/turf/open/floor/wood/large, +/area/centcom/holding) +"GZ" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Hb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Hc" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Hd" = ( +/obj/structure/shipping_container/gorlex, +/turf/open/floor/plating, +/area/syndicate_mothership) +"Hf" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Hi" = ( +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/expansion_bombthreat) +"Hk" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Hl" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/duct, +/obj/item/clothing/suit/apron, +/turf/open/floor/mineral/plastitanium, +/area/centcom/holding) +"Hm" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/centcom/control) +"Hn" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/centcom/control) +"Ho" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Hp" = ( +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/centcom/control) +"Hq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Hr" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_r2"; + id_target = "ck_bot_r2" + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/centcom/control) +"Hs" = ( +/obj/structure/table/reinforced, +/obj/item/syndicatedetonator{ + desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press." + }, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"Ht" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership/expansion_bombthreat) +"Hu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Hv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Hw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Hx" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plating, +/area/centcom/control) +"Hy" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"HA" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"HB" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"HC" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"HD" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_l1"; + id_target = "ck_bot_l1" + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/centcom/control) +"HG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"HH" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/centcom/office) +"HI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/computer/arcade/battle{ + dir = 1 + }, +/turf/open/floor/eighties/red, +/area/centcom/holding) +"HJ" = ( +/obj/machinery/light_switch/directional/west, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"HK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/centcom/control) +"HL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/cold/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"HN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"HO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/instrument/piano_synth, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"HQ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/delivery, +/obj/item/food/grown/banana, +/obj/item/food/grown/banana, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/vanillapod, +/obj/item/food/grown/vanillapod, +/obj/item/food/grown/sugarcane, +/obj/item/food/grown/sugarcane, +/obj/item/food/grown/oat, +/obj/item/food/grown/oat, +/obj/item/food/grown/grapes, +/obj/item/food/grown/grapes, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/carrot, +/obj/item/food/grown/apple, +/obj/item/food/grown/ambrosia/vulgaris, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"HR" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Sky Bridge" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/textured_large, +/area/syndicate_mothership) +"HS" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership) +"HT" = ( +/obj/effect/turf_decal/tile/dark, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"HU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"HV" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"HW" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"HX" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "centcombridge" + }, +/turf/open/floor/plating, +/area/centcom/control) +"HZ" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Ia" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ib" = ( +/obj/structure/grille/indestructable/shocking, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/duel/four) +"Ic" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Ie" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"If" = ( +/obj/effect/turf_decal/weather/side{ + dir = 9 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Ih" = ( +/turf/open/chasm, +/area/centcom/control) +"Ii" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/control) +"Ij" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Il" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/centcom/control) +"In" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"Io" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Ip" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Iq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"Ir" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Is" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"It" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/centcom/office) +"Iu" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Iw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/computer/camera_advanced{ + dir = 8; + networks = list("nukie") + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"Ix" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/vending/medical, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Iy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Iz" = ( +/turf/closed/indestructible/fakedoor{ + name = "CentCom Sector A" + }, +/area/centcom/control) +"IB" = ( +/turf/open/chasm, +/area/centcom/outdoors) +"IC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"ID" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"IE" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"IF" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"IH" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"II" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/centcom/control) +"IJ" = ( +/obj/item/stack/sheet/mineral/sandbags, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"IL" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"IM" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Tinted Window"; + opacity = 1 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership) +"IN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"IO" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"IP" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"IQ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"IR" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"IS" = ( +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"IT" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/centcom/control) +"IV" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/grass, +/area/centcom/control) +"IW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"IX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"IY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"Ja" = ( +/obj/structure/chair/comfy/brown{ + color = "#66b266"; + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Jb" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/box/holy/follower, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Jc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Jd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Je" = ( +/obj/structure/table/reinforced, +/obj/item/food/grown/tea/astra{ + pixel_y = 13 + }, +/obj/item/food/grown/soybeans{ + pixel_y = 13 + }, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"Jf" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/griddle, +/obj/structure/sign/poster/contraband/syndiemoth{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"Jg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/clipboard, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Jh" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ji" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Jj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"Jk" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/centcom/control) +"Jl" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Jm" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs/cable/pink, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"Jn" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership/elite_squad) +"Jo" = ( +/obj/effect/duel_controller, +/turf/open/floor/wood/tile, +/area/duel/three) +"Jp" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Jq" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Jr" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Js" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Jt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/wizard_station) +"Ju" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Jv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/vending/drugs, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/centcom/control) +"Jw" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"Jx" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Jy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"Jz" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"JB" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"JC" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"JD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"JE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"JF" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_away"; + json_key = "ferry"; + name = "NT CentCom: Ferry dock"; + width = 5 + }, +/turf/open/floor/engine, +/area/centcom/outdoors) +"JG" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/table/optable, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/syndicate_mothership) +"JH" = ( +/obj/machinery/vending/hydroseeds, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"JI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"JJ" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"JK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"JL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"JM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"JN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"JO" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Backstage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"JP" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/keycard/syndicate_fridge, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/expansion_fridgerummage) +"JQ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/indestructible/riveted, +/area/centcom/brief) +"JR" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"JS" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"JT" = ( +/obj/structure/closet/crate/freezer{ + name = "pantry crate" + }, +/obj/structure/sign/poster/contraband/moffuchis_pizza{ + pixel_y = -32 + }, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/vanillapod, +/obj/item/food/grown/vanillapod, +/obj/item/food/grown/herbs, +/obj/item/food/grown/herbs, +/obj/item/food/grown/cocoapod, +/obj/item/food/grown/cocoapod, +/obj/item/food/grown/aloe, +/obj/item/food/grown/coffee, +/obj/item/food/grown/coffee, +/turf/open/floor/plastic, +/area/syndicate_mothership/expansion_fridgerummage) +"JU" = ( +/obj/machinery/door/airlock/external{ + name = "Ferry Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"JV" = ( +/obj/effect/turf_decal/weather/side{ + dir = 5 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"JW" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/centcom/control) +"JX" = ( +/obj/machinery/button/flasher/indestructible{ + id = "tdomeflash" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"JY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"JZ" = ( +/obj/machinery/door/airlock/external{ + name = "Ferry Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Kb" = ( +/obj/item/wrench{ + pixel_y = -16 + }, +/obj/item/wirecutters{ + pixel_y = 3 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Kf" = ( +/obj/machinery/door/poddoor{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Kg" = ( +/obj/structure/chair/comfy/brown{ + color = "#902c2f" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Kh" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien14" + }, +/area/abductor_ship) +"Ki" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/centcom/control) +"Kj" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 1 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"Kk" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/machinery/light/warm/directional/north, +/obj/item/toy/cards/deck{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/clothing/mask/cigarette/robust{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/ash{ + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"Kl" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/centcom/control) +"Km" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/machinery/light/directional/south, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"Ko" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Kr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ks" = ( +/obj/structure/table/wood, +/obj/structure/plaque/static_plaque/golden{ + pixel_y = 32 + }, +/obj/item/clothing/accessory/lawyers_badge{ + desc = "A badge of upmost glory."; + name = "thunderdome badge" + }, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"Ku" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/turf/open/floor/grass, +/area/centcom/control) +"Kw" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Kx" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"Kz" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + req_access_txt = "101" + }, +/obj/item/rcd_ammo/large{ + pixel_x = -8; + pixel_y = -8 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/rcd_ammo/large, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"KA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/obj/structure/chair/greyscale{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"KB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/item/stamp/centcom{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"KC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"KE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"KG" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/chair/greyscale{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"KH" = ( +/obj/machinery/modular_computer/console/preset/id/centcom{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"KI" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom" + }, +/obj/machinery/door/poddoor/shutters{ + id = "ck_inlet"; + name = "arrival shutters" + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"KK" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"KN" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"KO" = ( +/obj/machinery/door/poddoor{ + id = "syn_ordmix_vent" + }, +/turf/open/floor/engine/vacuum, +/area/syndicate_mothership/expansion_bombthreat) +"KQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/rxglasses, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/item/storage/box/beakers/bluespace{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"KR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"KS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/item/folder/red, +/obj/item/pen/red, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"KT" = ( +/obj/structure/fluff/arc{ + density = 0; + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/grass, +/area/centcom/control) +"KU" = ( +/obj/structure/sign/poster/contraband/lamarr{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"KV" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8; + name = "Toilet Door"; + opacity = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1; + name = "Frosted Window"; + opacity = 1 + }, +/obj/structure/toilet/greyscale{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"KW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -2; + pixel_y = 12 + }, +/obj/item/defibrillator/compact/loaded, +/obj/item/stack/medical/bone_gel{ + pixel_x = 9; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"KX" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/centcom/control) +"KY" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"KZ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/centcom/control) +"La" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/syndicate/personal, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"Lb" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Lc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ld" = ( +/obj/machinery/door/airlock/hatch{ + name = "Closet" + }, +/turf/open/floor/plasteel/tg/smooth_edge, +/area/syndicate_mothership) +"Le" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Lf" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Lg" = ( +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/obj/structure/table/wood, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Lh" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Li" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"Lk" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_l2"; + id_target = "ck_top_l2" + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/centcom/control) +"Ll" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"Lm" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"Ln" = ( +/obj/structure/reagent_dispensers/plumbed, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Lo" = ( +/obj/structure/chair/office, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Lp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Lq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Lr" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/corner, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ls" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/trimline/red/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Lt" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Lu" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall/mineral/wood, +/area/centcom/holding) +"Lv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Lx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Ly" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 6 + }, +/obj/item/toy/figure/ninja, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"Lz" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"LA" = ( +/obj/machinery/griddle, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"LB" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"LC" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/rack, +/obj/item/storage/bag/plants, +/obj/item/clothing/suit/apron, +/obj/item/hatchet, +/obj/machinery/camera/autoname/directional/west{ + network = list("nukie") + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"LD" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"LE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"LF" = ( +/obj/structure/rack, +/obj/item/nullrod/claymore/saber/red{ + damtype = "stamina"; + force = 30 + }, +/obj/item/nullrod/claymore/katana{ + damtype = "stamina"; + force = 30; + pixel_x = -8; + pixel_y = -1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"LG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"LH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"LI" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 10 + }, +/obj/machinery/smartfridge/chemistry/virology/preloaded{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"LJ" = ( +/obj/machinery/sleeper, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"LK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"LM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/centcom/office) +"LN" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"LO" = ( +/obj/machinery/sleeper, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"LP" = ( +/obj/structure/rack, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"LQ" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership/expansion_bioterrorism) +"LR" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -2; + pixel_y = 13 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 1; + pixel_y = 14 + }, +/obj/machinery/light/cold/directional/north, +/obj/item/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"LS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/chem_seller, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"LU" = ( +/obj/structure/bed/dogbed/cayenne{ + name = "Paprika's bed" + }, +/mob/living/simple_animal/hostile/carp/cayenne{ + aggro_vision_range = 1; + desc = "It's Paprika! One of the Spider Clan's lovable Space Carp!"; + faction = list("neutral"); + name = "Paprika"; + real_name = "Paprika" + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"LV" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"LW" = ( +/obj/item/pen{ + pixel_x = 9; + pixel_y = 18 + }, +/obj/structure/sign/poster/contraband/syndiemoth{ + pixel_x = -32 + }, +/obj/item/storage/box/beakers{ + pixel_x = -4; + pixel_y = 17 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/assembly/igniter{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/assembly/igniter{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"LX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"LY" = ( +/obj/machinery/shower/directional/south, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/tg/freezer, +/area/syndicate_mothership) +"LZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"Ma" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"Mb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Mc" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Supply"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Md" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"Me" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Mf" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"Mg" = ( +/obj/structure/sign/poster/contraband/gorlex_recruitment{ + pixel_x = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Mh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Mi" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/centcom/office/living) +"Mj" = ( +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"Mk" = ( +/obj/structure/sign/flag/soviet/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Ml" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Mm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Mo" = ( +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Mp" = ( +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + icon_state = "rightsecure"; + name = "Thunderdome Booth"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Mq" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Mr" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/food/nachos{ + pixel_x = 7; + pixel_y = -14 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"Ms" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Mt" = ( +/obj/structure/chair, +/obj/effect/landmark/thunderdome/observe, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Mu" = ( +/turf/open/floor/plasteel/stairs, +/area/centcom/circus) +"Mv" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Security"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Mw" = ( +/turf/closed/indestructible/riveted/uranium, +/area/wizard_station) +"Mx" = ( +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"My" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"MA" = ( +/obj/machinery/chem_mass_spec{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/white/small, +/area/centcom/circus) +"MB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"MC" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"MD" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/button/door/indestructible{ + id = "ck_outlet"; + name = "outlet control"; + pixel_x = 25; + pixel_y = 25; + req_access_txt = "101" + }, +/obj/machinery/button/door/indestructible{ + id = "ck_inlet"; + name = "inlet control"; + pixel_x = 25; + pixel_y = 39; + req_access_txt = "101" + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"ME" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 8; + icon_state = "rightsecure"; + name = "CentCom Customs"; + req_access_txt = "109" + }, +/obj/machinery/door/window/eastleft, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"MF" = ( +/obj/machinery/chem_dispenser/chem_synthesizer, +/obj/structure/table/wood, +/turf/open/floor/plasteel/tg/dark/small, +/area/centcom/circus) +"MH" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"MJ" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"MK" = ( +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/syndicate_mothership) +"MN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"MO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area, +/obj/lab_monitor{ + pixel_x = -32; + pixel_y = 4; + plane = -1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"MP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"MQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"MR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/tg/smooth, +/area/syndicate_mothership) +"MS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"MT" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/gun/energy/laser, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"MU" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"MV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"MW" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"MY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/mail, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"MZ" = ( +/obj/item/soap/homemade, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Na" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"Nb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Nc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Nd" = ( +/obj/docking_port/stationary{ + dwidth = 25; + height = 50; + id = "emergency_syndicate"; + name = "Syndicate Auxiliary Shuttle Dock"; + width = 50 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Ne" = ( +/obj/structure/chair/stool/bar/directional/west, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Nf" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/tdome/tdomeadmin) +"Ng" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Ni" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 3; + height = 7; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/assault_pod/default; + width = 7 + }, +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"Nj" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Nk" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/centcom/supplypod/pod_storage) +"Nl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/keycard_auth/directional/north{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"Nn" = ( +/obj/structure/table/wood/fancy/royalblue, +/obj/item/instrument/piano_synth, +/obj/item/instrument/saxophone, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"No" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/mineral_door/paperframe{ + name = "Spectator's Lounge" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Np" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Nq" = ( +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Nr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible, +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/expansion_bombthreat) +"Ns" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/camera_film, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Nt" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Nu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Nv" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Nw" = ( +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "XCCQMLoad2" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/centcom/control) +"Nx" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Ny" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/computer/shuttle_flight/ferry/request{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Nz" = ( +/obj/machinery/chem_master, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"NA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"ND" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/centcom/office) +"NE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"NF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"NG" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"NH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/wood{ + name = "Kitchen" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"NI" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"NJ" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/tdome/arena) +"NK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/silver_ids, +/obj/machinery/button/door/indestructible{ + id = "ck_ops"; + name = "ops control"; + pixel_x = -25; + req_access_txt = "101" + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"NL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine, +/area/centcom/control) +"NM" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/tdome/tdomeobserve) +"NN" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/monkey_recycler, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bioterrorism) +"NP" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"NR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"NS" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"NT" = ( +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"NU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"NV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood{ + name = "Custodial Closet" + }, +/turf/open/floor/stone, +/area/centcom/holding) +"NW" = ( +/obj/structure/sign/departments/medbay{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/centcom/control) +"NX" = ( +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/control) +"NY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"NZ" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "XCCQMLoad2"; + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Oa" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 10 + }, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"Ob" = ( +/turf/open/floor/plasteel, +/area/centcom/control) +"Oc" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"Od" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Oe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Of" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Shuttle"; + req_access_txt = "106" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Oh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Oi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"Oj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/engine, +/area/syndicate_mothership/expansion_bioterrorism) +"Ok" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/ert_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"Ol" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership/expansion_bioterrorism) +"Om" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Oo" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/door/window/brigdoor/southright{ + req_access_txt = "101" + }, +/obj/item/ammo_box/magazine/r37, +/obj/item/gun/ballistic/automatic/pitbull/r37, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Op" = ( +/obj/structure/table/wood, +/obj/item/food/grown/tea/astra, +/obj/item/food/grown/soybeans, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Oq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/wood{ + name = "Freezer" + }, +/turf/open/floor/stone, +/area/centcom/holding) +"Or" = ( +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"Os" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/processor/slime, +/obj/machinery/atmospherics/components/unary/outlet_injector, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bioterrorism) +"Ot" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bombthreat) +"Ov" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Shuttle"; + req_access_txt = "106" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Ox" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 8; + height = 7; + id = "supply_away"; + json_key = "cargo"; + name = "NT CentCom: Cargo Shuttle Dock"; + width = 20 + }, +/turf/open/floor/engine, +/area/centcom/outdoors) +"Oy" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Oz" = ( +/obj/effect/bump_teleporter{ + id = "ck_top_l3"; + id_target = "ck_bot_l3" + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/centcom/control) +"OA" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera/autoname/directional/north{ + network = list("nukie") + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"OB" = ( +/obj/structure/table/wood, +/obj/item/pizzabox, +/obj/item/storage/crayons{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/crayons{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"OC" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/circuit/red/off, +/area/syndicate_mothership/expansion_bioterrorism) +"OD" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"OE" = ( +/obj/machinery/door/poddoor/shutters/indestructible{ + dir = 1; + id = "ck_tank" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"OF" = ( +/obj/machinery/door/airlock/centcom{ + name = "Briefing Room"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"OG" = ( +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"OH" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"OJ" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"OL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"OM" = ( +/obj/machinery/computer/camera_advanced/xenobio, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bioterrorism) +"ON" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"OO" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/centcom/control) +"OP" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"OQ" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"OS" = ( +/obj/structure/chair/bronze{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"OT" = ( +/obj/structure/rack, +/obj/item/nullrod/claymore{ + damtype = "stamina"; + force = 30; + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/nullrod/claymore/darkblade{ + damtype = "stamina"; + force = 30; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"OU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Electrical Room" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"OW" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/centcom/control) +"OX" = ( +/obj/machinery/door/airlock/vault{ + name = "Power generator room" + }, +/turf/open/floor/holofloor/carpet{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"OY" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"OZ" = ( +/obj/structure/bookcase/random, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Pa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"Pb" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Pc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Pd" = ( +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"Pe" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/grass, +/area/centcom/control) +"Pf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"Pg" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"Ph" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/centcom/supplypod/pod_storage) +"Pi" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"Pj" = ( +/obj/structure/closet/crate/bin, +/obj/item/clothing/head/xenos, +/obj/item/xenos_claw, +/obj/item/grown/log/bamboo, +/obj/item/grown/log/bamboo, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Pk" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Pm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Pn" = ( +/obj/structure/chair/stool/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Po" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Pp" = ( +/obj/structure/closet/secure_closet/freezer/meat/open, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/obj/item/food/meat/slab/synthmeat, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Pq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"Pr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Locker Room"; + req_access_txt = "101" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Ps" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"Pu" = ( +/obj/structure/shipping_container/gorlex/red, +/turf/open/floor/plating, +/area/syndicate_mothership) +"Pv" = ( +/obj/structure/rack, +/obj/machinery/light/cold/directional/west, +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = 12 + }, +/obj/item/wrench{ + desc = "A little smidgeon of Freon..."; + name = "Freon" + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = -4; + pixel_y = -8 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/stock_parts/micro_laser/high{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/melee/powerfist, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Pw" = ( +/obj/structure/table/wood{ + flags_1 = 4; + resistance_flags = 68 + }, +/turf/open/floor/wood/parquet, +/area/duel/three) +"Px" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Pz" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"PA" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"PB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"PC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"PD" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"PE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 25; + height = 50; + id = "emergency_away"; + json_key = "emergency"; + name = "NT CentCom: Emergency Shuttle Dock"; + width = 50 + }, +/turf/open/floor/engine, +/area/centcom/control) +"PF" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/centcom/control) +"PH" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"PJ" = ( +/obj/effect/turf_decal/weather/side/corner, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"PK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "East Wing" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"PL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"PM" = ( +/obj/structure/table, +/obj/item/newspaper, +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"PN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"PO" = ( +/obj/machinery/button/door/indestructible{ + id = "ck_tank"; + pixel_x = 32; + pixel_y = 32; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"PR" = ( +/obj/machinery/button/door/directional/south{ + desc = "Looks like the elevator is under maintenance.."; + name = "Elevator Button" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 1 + }, +/area/syndicate_mothership) +"PS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"PT" = ( +/obj/machinery/light/small/red/directional/west, +/obj/structure/sign/poster/contraband/soviet_propaganda{ + pixel_x = -32 + }, +/obj/item/stack/sheet/cardboard/fifty, +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"PU" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"PV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"PW" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"PX" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"PZ" = ( +/obj/effect/turf_decal/weather/side{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"Qa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"Qb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"Qc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/machinery/recharger, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Qd" = ( +/obj/machinery/light/cold/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Qe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Qf" = ( +/obj/structure/shipping_container/donk_co, +/turf/open/floor/plating, +/area/syndicate_mothership) +"Qg" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/crate/bin, +/obj/item/camera_film, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Qh" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/syndicate{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"Qi" = ( +/obj/item/clipboard, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Qj" = ( +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"Ql" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"Qm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"Qn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"Qo" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; + name = "Engine Room" + }, +/obj/structure/barricade/wooden, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Qp" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Qq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/zipties, +/obj/item/crowbar/red, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Qr" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Qs" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Qt" = ( +/obj/lab_monitor{ + pixel_y = 36; + plane = -1; + what_pic = "survive" + }, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"Qu" = ( +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Qv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Qw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass/fairy, +/area/centcom/holding) +"Qx" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"Qz" = ( +/obj/structure/railing/corner, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"QA" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"QB" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e" + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"QC" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"QD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"QE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"QF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"QG" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom" + }, +/obj/machinery/door/poddoor/shutters{ + id = "ck_outlet"; + max_integrity = 9999999999999999; + name = "arrival shutters"; + obj_integrity = 9999999999999999 + }, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"QH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/secure/science, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"QI" = ( +/obj/machinery/grill, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"QJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/closed/indestructible/rock/snow/no_init, +/area/space/nearstation) +"QK" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Shuttle"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"QL" = ( +/obj/structure/fence/cut/large{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"QM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"QN" = ( +/obj/machinery/door/airlock/centcom{ + name = "Paper Storage" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"QO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"QP" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"QR" = ( +/turf/closed/wall/mineral/wood, +/area/centcom/holding) +"QS" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Shuttle"; + req_access_txt = "106" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/centcom/control) +"QT" = ( +/obj/item/stack/spacecash/c20, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"QU" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"QV" = ( +/turf/open/space/basic, +/area/duel/two) +"QW" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/brflowers, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/centcom/control) +"QY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"QZ" = ( +/obj/structure/fence, +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Ra" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Rb" = ( +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"Rc" = ( +/turf/open/floor/circuit/green, +/area/centcom/brief) +"Re" = ( +/obj/machinery/light/cold/directional/west, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Rf" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/machinery/light, +/turf/open/floor/grass, +/area/centcom/control) +"Rg" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"Rh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Ri" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"Rk" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/machinery/light/cold/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bioterrorism) +"Rl" = ( +/turf/closed/indestructible/fakedoor{ + name = "BUNKER 4337" + }, +/area/syndicate_mothership) +"Rm" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Rn" = ( +/turf/closed/indestructible/riveted, +/area/centcom/supplypod/loading) +"Rp" = ( +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"Rq" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/structure/chair/sofa/bench/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/stone, +/area/syndicate_mothership) +"Rr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"Rs" = ( +/turf/open/floor/plating/asteroid/basalt/airless, +/area/centcom/holding) +"Rt" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"Ru" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/toy/spinningtoy, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"Rw" = ( +/obj/machinery/door/airlock/centcom{ + name = "Orbital Drop Pod Loading"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Rx" = ( +/obj/machinery/door/airlock/centcom{ + name = "Briefing Room"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Ry" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Rz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"RA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"RB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/four) +"RC" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"RD" = ( +/turf/closed/indestructible/opsglass, +/area/syndicate_mothership/expansion_bioterrorism) +"RE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"RF" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/machinery/door/airlock/titanium{ + name = "Medical Bay" + }, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership) +"RG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"RH" = ( +/obj/structure/closet/crate/freezer{ + name = "meat freezer" + }, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/gondola, +/obj/item/food/meat/slab/xeno, +/obj/item/food/meat/slab/xeno, +/obj/item/food/meat/slab/xeno, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/killertomato, +/obj/item/food/meat/slab/spider, +/obj/item/food/meat/slab/penguin, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/turf/open/floor/plastic, +/area/syndicate_mothership/expansion_fridgerummage) +"RI" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome Administration"; + req_access_txt = "102" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeadmin) +"RJ" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating/snowed/icemoon, +/area/syndicate_mothership) +"RK" = ( +/turf/open/floor/dune/sandy, +/area/centcom/holding) +"RL" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"RM" = ( +/obj/structure/ladder/unbreakable{ + height = 2; + id = "ert1"; + name = "durable ladder" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"RN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/structure/noticeboard/directional/east, +/obj/item/folder/red, +/obj/item/stack/spacecash/c20{ + pixel_y = 9 + }, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"RO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"RP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/cold/directional/east, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/syndicate_mothership/expansion_bombthreat) +"RQ" = ( +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"RR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"RS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"RT" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 1 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"RU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sink/kitchen/directional/south, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"RW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"RX" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/grass, +/area/centcom/control) +"RY" = ( +/obj/effect/turf_decal/tile/dark/fourcorners, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"RZ" = ( +/obj/machinery/chem_mass_spec, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Sa" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"Sb" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership/expansion_bombthreat) +"Sc" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/control) +"Sd" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"Se" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Sf" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Sg" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/sink/directional/south, +/obj/item/shovel/spade{ + pixel_x = -4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"Sh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Si" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Sk" = ( +/obj/machinery/button/door/indestructible{ + id = "thunderdomegen"; + name = "General Supply Control"; + req_access_txt = "102" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Sl" = ( +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Sm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Red" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Sn" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "XCCQMLoad2" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"So" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Sp" = ( +/obj/structure/table/wood, +/obj/item/food/syndicake{ + pixel_y = 3 + }, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"Sr" = ( +/obj/structure/table/wood, +/obj/item/gun/magic/wand{ + desc = "Used in emergencies to reignite magma engines."; + max_charges = 0; + name = "wand of emergency engine ignition" + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"Ss" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/stone, +/area/centcom/holding) +"St" = ( +/obj/machinery/door/poddoor{ + id = "XCCQMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "XCCQMLoad2" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/centcom/control) +"Su" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/can, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Sv" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/sign/poster/contraband/gorlex_recruitment{ + pixel_y = -32 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"Sw" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"Sx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/shipping_container/nanotrasen, +/turf/open/floor/engine, +/area/centcom/supplypod/pod_storage) +"Sy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Sz" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"SA" = ( +/obj/machinery/camera/motion/thunderdome{ + pixel_x = 10 + }, +/turf/open/floor/circuit/green, +/area/tdome/arena) +"SB" = ( +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 8 + }, +/area/syndicate_mothership) +"SC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"SD" = ( +/obj/machinery/camera{ + c_tag = "Red Team"; + network = list("thunder"); + pixel_x = 11; + pixel_y = -9; + resistance_flags = 64 + }, +/obj/effect/landmark/thunderdome/two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"SE" = ( +/obj/machinery/vending/cigarette/syndicate, +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"SF" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/mineral/titanium/yellow, +/area/syndicate_mothership) +"SH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/floor, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"SJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/bluespace, +/area/centcom/supplypod/loading/ert) +"SL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"SM" = ( +/obj/effect/turf_decal/trimline/red, +/obj/effect/turf_decal/trimline/red, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"SN" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"SO" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"SP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/centcom/control) +"SQ" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bioterrorism) +"SR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"SS" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_r3"; + id_target = "ck_top_r3" + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/centcom/control) +"ST" = ( +/obj/structure/barricade/sandbags, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"SU" = ( +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"SV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"SW" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"SX" = ( +/obj/structure/table/wood, +/obj/structure/plaque/static_plaque/thunderdome{ + pixel_y = -32 + }, +/obj/item/clothing/accessory/medal/gold{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/clothing/accessory/medal/gold, +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeobserve) +"SY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_chemicalwarfare) +"SZ" = ( +/obj/effect/turf_decal/weather/side{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/circus) +"Tb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"Tc" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plastic/fifty, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/centcom/circus) +"Te" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Tf" = ( +/obj/structure/sign/poster/contraband/moffuchis_pizza{ + pixel_x = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Tg" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Ti" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/large, +/area/centcom/holding) +"Tj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/chetverochka/pharma, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Tk" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Tl" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/tg/dark/textured_half{ + dir = 4 + }, +/area/syndicate_mothership) +"Tm" = ( +/obj/machinery/status_display/evac, +/turf/closed/indestructible/riveted, +/area/centcom/control) +"Tn" = ( +/turf/open/floor/carpet, +/area/syndicate_mothership) +"To" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Tp" = ( +/obj/structure/rack, +/obj/item/katana/cursed{ + desc = "A gift from your benefactors."; + force = 20 + }, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership) +"Tq" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"Tr" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Ts" = ( +/obj/effect/duel_spawnpoint, +/turf/open/floor/wood/parquet, +/area/duel/three) +"Tu" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeobserve) +"Tv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"Tw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Tx" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/grass, +/area/centcom/brief) +"Ty" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/centcom/brief) +"TB" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/centcom/brief) +"TC" = ( +/obj/structure/sign/flag/mars/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"TD" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/brief) +"TE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"TF" = ( +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_bioterrorism) +"TG" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/centcom/brief) +"TH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/carpet/stellar, +/area/centcom/circus) +"TI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"TJ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"TK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"TL" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/centcom/supplypod) +"TM" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Supply"; + req_access_txt = "106" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/supplypod) +"TN" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/keycard/syndicate_bio, +/turf/open/floor/plasteel/tg/smooth_half{ + dir = 4 + }, +/area/syndicate_mothership/expansion_bioterrorism) +"TO" = ( +/turf/closed/indestructible/riveted, +/area/centcom/brief) +"TP" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/item/paper/pamphlet/centcom/visitor_info, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"TQ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/food/grown/rice, +/obj/item/food/grown/rice, +/obj/item/food/grown/rice, +/obj/item/food/grown/rice, +/obj/item/food/grown/rice, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion/red, +/obj/item/food/grown/onion/red, +/obj/item/food/grown/coffee, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"TR" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"TS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"TU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/supplypod/pod_storage) +"TV" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"TW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"TX" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"TY" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"TZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Ua" = ( +/obj/structure/sign/flag/tizira/directional/north, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Ub" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"Uc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"Ud" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel, +/area/centcom/control) +"Uf" = ( +/obj/item/melee/ersh, +/obj/structure/toilet, +/turf/open/floor/plasteel/freezer, +/area/centcom/control) +"Ug" = ( +/obj/structure/sink/kitchen/directional/west, +/turf/open/floor/plasteel/tg/cafeteria, +/area/centcom/holding) +"Uh" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Ui" = ( +/turf/closed/indestructible/riveted, +/area/centcom/office) +"Uj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Uk" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Ul" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/centcom/brief) +"Um" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/supplypod) +"Un" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"Uo" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/centcom/supplypod) +"Up" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/centcom/supplypod) +"Uq" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("nukie") + }, +/turf/open/floor/plating, +/area/syndicate_mothership/elite_squad) +"Ur" = ( +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"Uu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/centcom/officetwo) +"Uw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/chetverochka, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Ux" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Uy" = ( +/obj/structure/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/melee/baton/loaded, +/obj/item/melee/energy/sword/saber/red, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Uz" = ( +/obj/machinery/door/airlock/centcom{ + name = "CentCom Supply"; + req_access_txt = "106" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "ck_outlet"; + name = "arrival shutters" + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"UA" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_l1"; + id_target = "ck_top_l1" + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/centcom/control) +"UD" = ( +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/obj/machinery/door/poddoor/shutters/indestructible{ + name = "Subterrainian Cargo Lift" + }, +/turf/open/floor/plasteel/tg/dark/textured_half, +/area/syndicate_mothership) +"UE" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/centcom/control) +"UF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/centcom/control) +"UG" = ( +/obj/structure/closet/secure_closet/ert_com, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"UH" = ( +/obj/structure/window/reinforced/survival_pod{ + name = "Frosted Window"; + opacity = 1 + }, +/obj/item/soap/syndie, +/turf/open/floor/plasteel/tg/freezer, +/area/syndicate_mothership) +"UI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"UJ" = ( +/obj/machinery/newscaster, +/turf/closed/indestructible/riveted, +/area/centcom/office) +"UK" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/centcom/office) +"UL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Shower" + }, +/obj/item/soap/deluxe, +/turf/open/floor/plasteel/showroomfloor, +/area/centcom/office) +"UM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"UN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"UO" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/nukeop_leader, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership/elite_squad) +"UP" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"UQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"US" = ( +/obj/effect/turf_decal/tile/dark, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"UT" = ( +/obj/structure/railing, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"UU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"UV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"UW" = ( +/obj/machinery/shuttle_manipulator, +/turf/open/floor/circuit/red, +/area/syndicate_mothership) +"UX" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"UY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"UZ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Va" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"Vb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"Vc" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/engine, +/area/syndicate_mothership/expansion_bioterrorism) +"Ve" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Vg" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Vh" = ( +/obj/effect/duel_spawnpoint, +/turf/open/floor/plasteel/monofloor, +/area/duel/four) +"Vi" = ( +/obj/effect/turf_decal/tile/yellow/half, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/half, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 8 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 4 + }, +/area/centcom/holding) +"Vj" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeobserve) +"Vk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Vl" = ( +/obj/machinery/door/poddoor{ + id = "thunderdomegen"; + name = "General Supply" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Vm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"Vo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"Vp" = ( +/turf/closed/indestructible/wood, +/area/duel/three) +"Vq" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"Vr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"Vs" = ( +/obj/effect/light_emitter{ + set_cap = 1; + set_luminosity = 4 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 1 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Vt" = ( +/obj/structure/dresser, +/obj/item/storage/backpack/satchel, +/turf/open/floor/carpet, +/area/wizard_station) +"Vu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/turf/open/floor/plasteel/catwalk_floor, +/area/syndicate_mothership/elite_squad) +"Vv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeobserve) +"Vw" = ( +/obj/effect/turf_decal/weather/side{ + dir = 10 + }, +/obj/structure/fluff/tram_rail{ + pixel_y = 17 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Vx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/centcom/supplypod) +"Vy" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Vz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/engine, +/area/centcom/control) +"VB" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light, +/turf/open/floor/grass, +/area/centcom/control) +"VC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/lava/plasma/ice_moon, +/area/syndicate_mothership) +"VD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/three) +"VE" = ( +/obj/machinery/light/cold/directional/east, +/turf/open/floor/plating, +/area/syndicate_mothership) +"VF" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"VG" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pen/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"VI" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"VJ" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/half{ + dir = 8 + }, +/obj/effect/turf_decal/siding{ + color = "#2e2e2e"; + dir = 4 + }, +/turf/open/floor/plasteel/tg/textured_half{ + dir = 1 + }, +/area/centcom/holding) +"VK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external, +/turf/open/floor/plating, +/area/syndicate_mothership) +"VL" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"VM" = ( +/turf/open/floor/plasteel, +/area/tdome/arena) +"VN" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/indestructible{ + dir = 1; + id = "centcomsouthenter" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"VO" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/centcom/holding) +"VP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"VQ" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"VR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/stone, +/area/centcom/holding) +"VT" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"VU" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/centcom/brief) +"VV" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"VX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"VY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/tdome/tdomeobserve) +"VZ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"Wb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Wc" = ( +/obj/effect/turf_decal/weather/side, +/turf/open/floor/wood{ + baseturfs = /turf/open/floor/plating/asteroid + }, +/area/centcom/circus) +"Wf" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Wg" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/smoke{ + pixel_y = 31 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Wh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Wi" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Wj" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Wk" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Wl" = ( +/turf/open/floor/plasteel/grimy, +/area/tdome/tdomeadmin) +"Wm" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Wo" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Wr" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/centcom/control) +"Ws" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/centcom/holding) +"Wt" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/centcom/control) +"Wu" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/centcom/control) +"Wv" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Ww" = ( +/obj/machinery/defibrillator_mount/directional/north, +/obj/machinery/stasis, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"Wx" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4; + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"Wy" = ( +/obj/effect/bump_teleporter{ + id = "ck_bot_r2"; + id_target = "ck_top_r2" + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/centcom/control) +"Wz" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"WA" = ( +/turf/closed/indestructible/abductor{ + icon_state = "alien16" + }, +/area/abductor_ship) +"WB" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/indestructible/riveted, +/area/centcom/office) +"WC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/wizard_station) +"WD" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"WE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/unlocked, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"WF" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/centcom/office) +"WG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/centcom/office) +"WH" = ( +/obj/machinery/computer/security/telescreen, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"WI" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/elite_squad) +"WJ" = ( +/turf/closed/indestructible/riveted, +/area/centcom/supplypod/pod_storage) +"WK" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/meat/slab/rawcrab, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/fishmeat, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/plastic, +/area/syndicate_mothership/expansion_fridgerummage) +"WL" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plating, +/area/syndicate_mothership) +"WM" = ( +/turf/closed/indestructible/fakedoor{ + name = "Scarlet Dawn Access" + }, +/area/centcom/brief) +"WN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"WO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 8 + }, +/turf/open/floor/engine, +/area/centcom/control) +"WP" = ( +/obj/structure/ladder/unbreakable{ + height = 1; + id = "ert1"; + name = "durable ladder" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"WQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/dune, +/area/centcom/holding) +"WS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/icemoon, +/area/syndicate_mothership) +"WT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"WU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"WV" = ( +/obj/structure/rack, +/obj/item/nullrod/claymore/saber{ + damtype = "stamina"; + force = 30; + pixel_x = 5; + pixel_y = -3 + }, +/obj/item/nullrod/claymore/katana{ + damtype = "stamina"; + force = 30 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood/parquet, +/area/centcom/holding) +"WX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod) +"WY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/supplypod/pod_storage) +"WZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/syndicate_mothership/expansion_bombthreat) +"Xa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/centcom/control) +"Xb" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"Xc" = ( +/turf/closed/indestructible/fakedoor{ + desc = "���������� ������� ��� ������� ���� ���-�� ���������� �."; + name = "Centcom Bridge" + }, +/area/centcom/control) +"Xg" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"Xh" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/centcom/office) +"Xi" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/tg/smooth_half, +/area/syndicate_mothership) +"Xj" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership) +"Xk" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/centcom/office) +"Xl" = ( +/obj/structure/table/rolling, +/turf/open/floor/mineral/titanium, +/area/syndicate_mothership/elite_squad) +"Xm" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Xn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"Xo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"Xp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Xr" = ( +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"Xs" = ( +/obj/structure/table/wood, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tdome/tdomeobserve) +"Xt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Xu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/brief) +"Xv" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Xw" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/grimy, +/area/centcom/brief) +"Xx" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/mineral/plastitanium/red, +/area/syndicate_mothership/expansion_bombthreat) +"Xy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/centcom/brief) +"Xz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/tdome/tdomeadmin) +"XA" = ( +/obj/structure/flora/ausbushes/reedbush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/centcom/brief) +"XB" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/turf/open/floor/stone, +/area/centcom/holding) +"XC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"XD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"XE" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/one) +"XF" = ( +/turf/open/space/transit, +/area/space) +"XG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"XH" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"XI" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/centcom/control) +"XJ" = ( +/obj/structure/chair/comfy/lime, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"XK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"XM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/centcom/control) +"XN" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/storage/box/handcuffs, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XO" = ( +/obj/structure/chair/greyscale{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"XP" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/obj/item/camera, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XQ" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-15"; + pixel_x = -6; + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XR" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/beebox{ + name = "Shrine" + }, +/turf/open/floor/wood, +/area/centcom/holding) +"XS" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/tdome/arena) +"XU" = ( +/obj/effect/turf_decal/weather/side{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/elevatorshaft, +/area/centcom/control) +"XV" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XW" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"XY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/white, +/area/centcom/circus) +"Ya" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Yb" = ( +/obj/effect/turf_decal/siding/thinplating_new/dark{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership) +"Yc" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Ye" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/chasm, +/area/centcom/control) +"Yg" = ( +/obj/machinery/igniter/on, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Yh" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/syndicate_mothership) +"Yi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"Yj" = ( +/obj/effect/spawner/structure/window/reinforced/indestructable, +/turf/open/floor/plating, +/area/centcom/control) +"Yl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/centcom/control) +"Ym" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_bombthreat) +"Yn" = ( +/obj/machinery/modular_computer/console/preset/id/centcom, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Yo" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/supplypod/pod_storage) +"Yp" = ( +/obj/machinery/computer/communications, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Yq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/machinery/vending/wallmed/directional/north{ + use_power = 0 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/plasteel/grimy, +/area/centcom/office/living) +"Yr" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/folder/white, +/obj/item/melee/chainofcommand, +/obj/item/stamp/centcom, +/turf/open/floor/plasteel/grimy, +/area/centcom/office/living) +"Ys" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/centcom/supplypod/loading/two) +"Yt" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/item/storage/secure/safe{ + pixel_x = 32; + pixel_y = 24 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/turf/open/floor/plasteel/grimy, +/area/centcom/office/living) +"Yv" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/centcom/brief) +"Yw" = ( +/obj/effect/landmark/thunderdome/one, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Yx" = ( +/obj/structure/table/wood, +/obj/item/bikehorn/golden{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/engine/cult, +/area/wizard_station) +"YA" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/tdome/tdomeobserve) +"YC" = ( +/obj/machinery/door/airlock/centcom{ + name = "Briefing Room"; + req_access_txt = "101" + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"YD" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/plating/asteroid/dirty, +/area/centcom/holding) +"YE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/tdomeobserve) +"YF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"YG" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/tg/small, +/area/centcom/circus) +"YH" = ( +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 15 + }, +/obj/item/grenade/chem_grenade, +/obj/item/stack/cable_coil, +/obj/item/reagent_containers/glass/beaker, +/obj/machinery/light/cold/directional/west, +/obj/item/stack/cable_coil, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/syndicate_mothership/expansion_chemicalwarfare) +"YI" = ( +/obj/structure/closet/cardboard, +/obj/item/banhammer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/wizard_station) +"YJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/stone, +/area/centcom/holding) +"YK" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/cold/directional/west, +/obj/item/seeds/cannabis{ + pixel_y = 8 + }, +/obj/item/cultivator{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/syndicate_mothership/expansion_bioterrorism) +"YM" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/control) +"YN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"YO" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/directional/south, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/centcom/office) +"YP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"YQ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"YR" = ( +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/centcom/control) +"YS" = ( +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"YU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/sofa/corp/right{ + pixel_y = 6 + }, +/turf/open/floor/carpet/black, +/area/centcom/holding) +"YV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/dark, +/area/centcom/officetwo) +"YW" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"YX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/centcom/office) +"YY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/wood{ + name = "Washroom" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"YZ" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"Zb" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"Zc" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"Zd" = ( +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"Ze" = ( +/obj/structure/chair/bronze{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/syndicate_mothership) +"Zf" = ( +/obj/effect/baseturf_helper/asteroid/snow, +/turf/open/floor/dz/green, +/area/centcom/control) +"Zg" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Zh" = ( +/turf/closed/wall/mineral/diamond, +/area/syndicate_mothership) +"Zi" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/centcom/control) +"Zj" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/syndicate_mothership/expansion_chemicalwarfare) +"Zk" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/centcom/control) +"Zl" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office) +"Zm" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/centcom/office) +"Zn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/centcom/brief) +"Zo" = ( +/turf/closed/indestructible/syndicate, +/area/syndicate_mothership/expansion_bioterrorism) +"Zp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tdome/tdomeadmin) +"Zq" = ( +/obj/structure/chair/stool/directional/south, +/obj/structure/sign/map/left{ + desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; + icon_state = "map-left-MS"; + pixel_y = 32 + }, +/obj/effect/landmark/start/nukeop, +/turf/open/floor/wood/tile, +/area/syndicate_mothership/elite_squad) +"Zr" = ( +/obj/machinery/door/airlock/centcom{ + name = "Administrative Office"; + req_access_txt = "109" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/office/living) +"Zs" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/obj/effect/turf_decal/weather/side/corner{ + dir = 4 + }, +/turf/open/floor/grass/snow/safe, +/area/syndicate_mothership) +"Zt" = ( +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"Zu" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"Zv" = ( +/turf/open/floor/plasteel/tg/smooth_edge{ + dir = 8 + }, +/area/syndicate_mothership/elite_squad) +"Zw" = ( +/turf/closed/indestructible/riveted, +/area/centcom/supplypod) +"Zx" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/carpet/royalblack, +/area/centcom/office/living) +"Zy" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tdome/arena) +"Zz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"ZA" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZB" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZC" = ( +/obj/structure/flora/ausbushes/rospilovo/grassybush, +/obj/structure/flora/ausbushes/rospilovo/stalkybush, +/obj/structure/flora/ausbushes/pointybush, +/obj/structure/flora/ausbushes, +/obj/structure/flora/ausbushes/rospilovo/ywflowers, +/turf/open/floor/grass, +/area/tdome/tdomeadmin) +"ZD" = ( +/obj/structure/bookcase/random, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/indestructible/riveted, +/area/centcom/supplypod/pod_storage) +"ZG" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters/indestructible{ + dir = 1; + id = "centcomsouthenter" + }, +/turf/open/floor/plasteel, +/area/centcom/control) +"ZH" = ( +/turf/closed/indestructible/riveted, +/area/tdome/tdomeobserve) +"ZI" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/ice/smooth/safe, +/area/syndicate_mothership) +"ZJ" = ( +/turf/closed/indestructible/riveted, +/area/tdome/tdomeadmin) +"ZK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/centcom/control) +"ZL" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new/dark, +/obj/structure/closet/syndicate/personal, +/obj/machinery/camera/autoname/directional/west{ + network = list("nukie") + }, +/turf/open/floor/plasteel/tg/dark/textured_half, +/area/syndicate_mothership) +"ZN" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZO" = ( +/obj/vehicle/ridden/scooter/skateboard{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/wizard_station) +"ZP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/washing_machine, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/tg, +/area/syndicate_mothership) +"ZT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/lab_monitor{ + pixel_y = 36; + plane = -1 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/mineral_door/paperframe{ + name = "Blue" + }, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) +"ZV" = ( +/turf/open/floor/engine/cult, +/area/wizard_station) +"ZW" = ( +/turf/closed/indestructible/rock/snow/no_init, +/area/space) +"ZX" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/centcom/brief) +"ZY" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/tg/sepia, +/area/centcom/holding) + +(1,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(2,1,1) = {" +ZW +if +if +if +if +if +if +if +if +if +if +if +if +if +if +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +no +no +no +no +no +no +no +aV +ZW +aV +aV +aV +aV +aV +aV +Zo +Zo +Zo +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(3,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +no +ft +tU +rk +YH +LW +EJ +no +aV +aV +aV +Zo +Zo +Zo +Zo +Zo +ga +Gs +OC +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(4,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +no +Cq +sL +sL +sL +sL +sL +no +eH +eH +eH +Zo +fC +bf +LI +YK +RD +Gs +Gs +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(5,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +no +Uk +us +us +us +us +NI +no +eT +eT +eT +Zo +yJ +SQ +gm +yX +RD +RD +RD +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(6,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +no +lf +fG +JY +vx +wb +uC +no +eT +eT +eT +Zo +kS +Aa +Gd +Ol +RD +GV +Gs +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(7,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +no +Iu +gy +SM +Od +Od +CM +no +eH +cq +eH +Zo +LR +Aa +gm +dO +RD +Gs +Gs +Zo +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +TO +TO +TO +TO +TO +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(8,1,1) = {" +ZW +if +kn +kn +kn +kn +if +if +if +if +if +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +pW +pW +pW +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +aV +no +Sz +sq +AW +bg +SY +KC +no +xp +vd +tY +RD +Sg +wm +eL +LQ +RD +RD +RD +Zo +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +TO +TO +TO +TO +TO +TO +TO +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(9,1,1) = {" +ZW +if +kn +kn +kn +kn +if +nN +nN +nN +if +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +eH +eH +eH +aV +pW +pW +qm +pW +pW +pW +pW +aV +aV +aV +ZW +ZW +ZW +aV +no +Zj +dY +dY +dY +dY +bn +Az +Yb +pd +jV +TN +ir +Gd +TF +TF +NN +RD +Vc +zb +QJ +QJ +PL +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +qs +qs +qs +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +TO +TO +TO +WM +TO +TO +TO +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(10,1,1) = {" +ZW +if +kn +kn +kn +kn +if +nN +nN +nN +if +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +eH +eH +pd +eH +eH +pW +qm +qm +qm +aR +lr +pW +pW +pW +aV +aV +ZW +ZW +aV +no +RQ +sL +Lo +sL +sL +sL +kb +Yb +pd +jV +RD +Bd +jM +OM +Rk +Os +RD +Oj +zb +QJ +QJ +md +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +Mw +Mw +Bm +BZ +Ch +BZ +DP +Mw +qs +qs +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +Yv +ZA +gj +ta +iG +br +uk +sD +Yv +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(11,1,1) = {" +ZW +if +kn +kn +kn +kn +if +nN +nN +nN +if +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +eH +eH +pd +pd +pd +sA +eH +qm +qm +qm +QL +lr +lr +lr +pW +pW +aV +aV +aV +aV +no +no +Nz +qL +Eg +lU +RZ +Az +Yb +pd +jV +Zo +Zo +Zo +Zo +Zo +Zo +Zo +Zo +Zo +vL +in +xv +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +xD +qg +Bb +ZV +ZV +ZV +ZV +ZV +Eb +ZV +ZV +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +ZB +gh +gh +gh +gh +gh +SN +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(12,1,1) = {" +ZW +if +kn +kn +kn +kn +if +if +if +if +if +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +eH +eH +pd +pd +pd +pd +pd +eH +eH +qm +qm +aR +lr +lr +lr +lr +pW +pW +pW +pW +pW +pW +no +no +no +no +no +no +no +pe +pd +FQ +bC +td +Vy +Pv +FH +mt +FA +bC +bC +bC +bC +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +gA +yv +qg +Mw +ZV +ZV +ZV +ZV +ZV +Mw +ZV +ak +ZV +Mw +Mw +Mw +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +TO +ZW +TO +TO +ZD +gh +ul +sZ +GU +gh +OZ +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(13,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +eH +pd +pd +pd +pd +pd +pd +pd +eH +eH +qm +uu +lr +lr +lr +lr +lr +lr +qm +qm +lr +lr +eH +HS +IM +gl +oL +sd +vq +Yb +pd +jV +Hi +AJ +Nc +Gj +yl +tK +FV +WE +Nr +WZ +wW +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +qg +qg +qg +qg +Mw +Bm +BZ +ZV +BZ +DP +Mw +ZV +ZV +ZV +Mw +Eq +EU +YI +Mw +Mw +qs +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +TO +TO +TO +TO +TO +TO +ZN +gh +Xw +Qj +Ma +gh +Be +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(14,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +eH +eH +eH +eH +Rl +eH +pd +pd +pd +eH +qm +aR +lr +lr +lr +lr +lr +qm +qm +qm +qm +lr +eH +JG +fs +Ba +tT +jV +RF +Yb +pd +jV +cr +op +op +op +op +ur +Ot +ge +bC +si +wW +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +fl +qj +qg +qg +zH +Mw +Mw +qs +qs +qs +Mw +Mw +Ec +ak +ZV +Ee +Ev +Ev +tP +Qo +ZV +ZV +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +TO +Tx +TO +TO +WM +TO +TO +ZP +tg +iG +tg +iG +tg +hO +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(15,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +eH +eH +Dy +nw +eH +eH +Rl +eH +eH +mg +aR +lr +lr +lr +lr +qm +qm +qm +qm +qm +qm +eH +CJ +eZ +bz +do +sy +vq +Yb +pd +jV +Hi +rp +sT +mw +Xx +MP +uA +dZ +Nr +pk +wW +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +Mw +Mw +gA +qg +qg +qg +zK +Mw +Bn +ZV +ZV +ZV +DT +Mw +ZV +ZV +ZV +Mw +Ez +Fe +ZO +Mw +Mw +Qo +Mw +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +TO +Ty +Ul +UM +WN +Xn +YC +ZR +iG +GD +bE +xG +iG +Ra +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(16,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +lr +lr +eH +hm +XO +uQ +eH +cp +Fd +eH +mg +aR +lr +lr +lr +qm +qm +qm +qm +qm +bk +bk +bk +bk +bk +bk +nF +nF +nF +lx +lb +Sv +bC +Au +BE +JI +Au +kz +Ym +wg +dT +KO +KO +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +co +en +Mw +Mw +Mw +rC +Mw +Mw +Mw +Bo +ZV +ZV +ZV +DU +Mw +ZV +ak +ZV +Mw +Mw +Mw +Mw +Mw +ZV +ZV +tp +tt +Mw +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +TO +TB +Ul +UN +WP +Xo +TO +ZT +nv +tO +Ax +EY +hL +Jp +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(17,1,1) = {" +ZW +if +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +kn +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +lr +lr +lr +eH +Am +aB +eH +eH +Rl +eH +eH +mg +aR +lr +lr +lr +qm +qm +qm +qm +hW +hW +bk +xO +hI +oI +sf +nF +WK +nF +eH +kV +eH +bC +bJ +Jy +rc +nr +HU +XK +Ht +bC +Sb +Sb +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +qs +ZV +ZV +ZV +qs +ZV +ZV +ZV +yU +zX +Mw +ZV +ZV +ZV +ZV +ZV +qs +ZV +ZV +ZV +Mw +EA +AQ +Vt +Mw +qf +ZV +ZV +tt +fE +dN +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GB +GE +GE +GE +GE +GE +GB +cQ +cQ +ZW +TO +TD +Ul +UQ +WT +Xu +YC +ZR +An +ti +Rc +VG +ll +qK +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(18,1,1) = {" +ZW +if +if +if +if +if +if +if +if +if +if +if +if +if +if +if +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +lr +lr +lr +lr +eH +vq +vq +eH +tV +tV +tV +tV +oZ +bP +lr +lr +qm +qm +qm +qm +hW +hW +Jn +bk +Jf +ve +ve +ve +JP +wr +nF +fg +cp +KG +bC +sE +xy +RP +ss +ea +cF +yp +bC +aL +aL +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +qs +bX +ZV +ZV +eJ +ZV +ZV +ZV +ZV +ZV +Bl +ZV +ZV +Ci +Cr +ZV +Eb +ZV +ak +ZV +cu +ak +Fq +ak +qs +Sr +ZV +ZV +tt +fE +dN +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +ZW +TO +TG +TO +TO +WM +TO +TO +ZX +nv +yN +Wv +sa +hL +Jr +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(19,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +QZ +Dk +QZ +QZ +eH +uO +uf +eH +uO +uO +dn +uO +uO +nq +lr +lr +lr +qm +qm +qm +hW +Xl +Rp +vT +ve +ve +ve +qP +nF +JT +nF +GR +cp +KA +bC +bC +bC +bC +bC +bC +bC +bC +bC +tF +tF +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +qs +ZV +ZV +ZV +qs +ZV +ZV +ZV +zl +Ah +Mw +ZV +ZV +ZV +ZV +ZV +qs +ZV +ZV +ZV +Mw +Gl +Jt +kk +Mw +qf +ZV +ZV +tt +fE +dN +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +ZW +TO +TO +TO +TO +TO +TO +TO +ZP +iG +Ok +kv +Ok +iG +ok +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(20,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +qm +qm +qm +hW +rZ +Rp +bk +RU +UO +ve +Gm +nF +RH +nF +ja +cp +LC +eH +LY +xW +Mg +Jz +yw +DB +Tf +bC +bC +bC +bC +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +el +ey +Mw +Mw +Mw +rL +Mw +Mw +Mw +Bs +ZV +ZV +ZV +DU +Mw +ZV +ak +ZV +Mw +Mw +Mw +Mw +Mw +Yx +ZV +tp +tt +Mw +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +TO +Yv +cT +xY +zS +WT +zS +PV +CR +Yv +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(21,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +pW +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +hW +Rp +Rp +WI +da +aM +Mr +kL +nF +xJ +nF +eH +vI +eH +eH +LY +UH +uj +FD +FD +KV +KV +eH +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +Mw +Mw +ak +ql +ak +zn +Ak +Mw +BI +Ca +Cl +ZV +ZV +Mw +ZV +ZV +ZV +Mw +EO +MZ +Aj +Mw +Mw +qs +Mw +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +PN +PN +PN +TI +PN +UV +cQ +TO +TO +TO +JQ +AC +AC +AC +JQ +TO +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(22,1,1) = {" +aU +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +dJ +Rp +uM +bk +jb +gr +gr +rD +nF +nF +nF +wX +sB +hl +eH +eH +eH +ya +eH +eH +eH +eH +eH +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +ot +qp +tn +ak +Ap +Mw +Mw +qs +qs +qs +Mw +Mw +Ec +ak +ZV +dL +EQ +EQ +VZ +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +OE +DN +DN +DN +DN +DN +UY +cQ +Xy +Yv +dk +hH +lo +lo +lo +Vm +yV +Yv +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(23,1,1) = {" +hY +xq +zY +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +hZ +Rp +Rp +kh +Zv +Zv +Zv +Zv +xE +gV +xS +lL +lL +MR +hl +eH +ZS +tk +Eo +Kk +QC +Fa +vq +li +JV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +qq +ak +ql +ak +qs +BJ +BN +Cp +De +BN +qs +ZV +ZV +ZV +Mw +ET +WC +BB +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +OE +DN +DN +oV +DN +DN +UY +cQ +TB +Ul +bl +VU +mL +Zd +xw +FW +kA +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(24,1,1) = {" +aV +zQ +AF +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +Xl +Rp +Rp +ui +vC +Vu +Vu +Vu +ac +sB +ne +Zh +ob +lL +Fg +uo +Li +Li +hl +IN +lg +lg +vq +hy +bm +JV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +ot +zB +tn +qs +BK +Cc +BK +Dz +BK +qs +ZV +ak +ZV +Mw +Mw +Mw +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +OE +PO +DN +DN +DN +DN +UY +cQ +TG +Ul +UG +VU +Oo +Zd +Kz +FW +lv +TO +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(25,1,1) = {" +aV +zU +AK +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +hZ +Rp +Rp +kh +DM +DM +DM +DM +xE +sB +ne +ne +ne +hb +Ai +eH +bH +zG +lT +zG +my +zI +vq +hy +qm +DE +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +qq +ak +qs +BL +Cg +BN +Cc +BN +qs +ZV +ZV +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +Qa +Qa +Qa +TK +Qa +Vb +cQ +XA +Yv +EG +kO +Zn +Zn +Zn +of +qG +Yv +TO +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(26,1,1) = {" +aV +zW +AR +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +hW +hW +EK +Oa +bk +bW +eb +sY +Gb +bk +Gt +hl +hl +gq +kX +kX +eH +eH +hk +eH +ol +eH +eH +eH +hy +qm +DE +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +Mw +Mw +BN +Cc +BK +DO +DV +Mw +qs +qs +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +TO +TO +TO +Lp +aT +Qq +jc +yL +TO +TO +TO +Rn +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(27,1,1) = {" +aV +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +hW +ep +xk +bk +Zq +dR +Sp +eG +bk +ms +ne +ne +mK +eH +iq +eH +mc +IY +yd +Or +mc +eH +li +sM +qm +DE +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +Mw +Mw +Mw +Mw +Mw +Mw +Mw +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +QW +cQ +ZW +ZW +ZW +Zw +Zw +Zw +Zw +Zw +Zw +Zw +xx +Zw +Zw +Zw +xx +Zw +Zw +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(28,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +hW +Uq +ho +bk +dt +OB +Qh +nR +bk +vy +ne +ne +MR +Ld +uN +eH +iO +uP +yd +Xi +eQ +eH +hy +qm +qm +DE +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +Ii +cQ +ZW +ZW +ZW +Zw +XD +XD +XD +XD +XD +vE +Zw +VD +VD +VD +VD +VD +Pa +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(29,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +hW +hW +xX +bk +Cx +sb +aW +PU +bk +Rq +ne +ne +bv +eH +lV +eH +sz +KU +yd +me +sz +eH +OG +dP +qm +DE +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +Hp +cQ +cQ +ZW +ZW +Zw +Xr +Xr +Xr +Xr +Xr +pA +Zw +Pd +Pd +Pd +Pd +Pd +Jj +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(30,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +hW +hW +bk +hW +hW +hW +hW +bk +er +vR +vR +kX +eH +eH +eH +vq +vq +eH +vq +vq +eH +eH +hy +qm +DE +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +GE +JF +GE +GE +GE +cQ +xo +Yj +xo +cQ +ZW +ZW +Zw +Xr +Rt +Xr +Xr +Rt +pA +Zw +tq +Pd +tq +Pd +tq +Jj +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(31,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +ST +bk +bk +qm +qm +qm +qm +vq +er +SB +SB +kX +vq +pD +eH +kx +kx +kx +kx +kx +eH +eH +hy +qm +bm +wq +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +ZW +ZW +cQ +ZW +ZW +ZW +ZW +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +GE +GE +cQ +JU +cQ +GE +GE +xo +Qb +QY +SC +cQ +ZW +ZW +Zw +Rt +Rt +Rt +Rt +Rt +pA +Zw +tq +Pd +tq +Pd +tq +Jj +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(32,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +ST +qm +qm +qm +qm +qm +qm +vq +oq +SB +SB +qa +vq +pD +li +vK +vK +vK +vK +vK +vK +vK +sM +qm +qm +Zs +vK +vK +JV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +GE +GB +cQ +JW +cQ +GB +GE +cQ +Qm +Rb +SH +cQ +cQ +cQ +Zw +Xr +Xr +Xr +Xr +Rt +pA +Zw +tq +tq +tq +tq +tq +Jj +Zw +iy +iy +iy +iy +iy +iy +iy +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(33,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +ST +qm +qm +qm +qm +qm +qm +vq +oq +SB +SB +qa +vq +pD +hy +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +aR +qm +qm +bm +JV +aV +ZW +ZW +ZW +ZW +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +cQ +oY +Wy +SS +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Yj +cQ +JZ +cQ +Yj +cQ +cQ +Qm +Rb +SH +cQ +Hn +Ii +Zw +XE +XE +XE +XE +XE +qR +Zw +sP +sP +sP +sP +sP +vB +Zw +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(34,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +ST +ST +qm +qm +qm +qm +qm +vq +er +lX +jD +kX +vq +pD +hy +qm +qm +qm +qm +lr +qm +qm +lr +qm +qm +Gz +qm +qm +qm +DE +aV +aV +aV +aV +aV +ZW +ZW +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +XF +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +dq +FJ +kF +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +cQ +cQ +cQ +Bj +Ei +cQ +xo +Hx +Hx +Kl +Hx +Hx +Ny +xo +Qn +Ri +SJ +cQ +Yj +Yj +Zw +Zw +WJ +WJ +WJ +st +WJ +WJ +WJ +st +WJ +WJ +WJ +WJ +WJ +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(35,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +eP +lr +qm +qm +qm +qm +vq +er +pY +ku +kX +vq +pD +hy +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +aR +qm +qm +qm +DE +aV +aV +ZI +qm +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Hn +Yj +dq +FJ +kF +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +zL +Al +Yj +BP +zV +Fp +Yj +HB +IW +Ko +Lc +Ml +NA +cQ +cQ +Rw +cQ +TL +rm +Vo +WU +rm +WJ +WY +pX +WY +WY +WY +WY +WY +rn +Nk +Nk +Nk +WJ +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(36,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +qm +qm +qm +vq +oq +SB +SB +qa +vq +pD +hy +qm +qm +qm +Qz +eH +VX +VX +VX +Qz +VX +eH +hd +qm +qm +DE +qm +qm +qm +qm +qm +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +TV +Yj +YW +Ek +Dw +cQ +xh +xh +xu +xh +yB +xh +yR +xh +cQ +Yj +Yj +xo +BQ +zV +zV +GK +HN +IX +Kr +IX +IX +NE +OF +Qs +DN +SL +TM +Um +Um +Um +Um +GF +Yo +Yo +Yo +Yo +Yo +Yo +Yo +TU +Nk +Sx +Nk +Ph +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(37,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +qm +qm +qm +vq +oq +SB +SB +qa +vq +pD +hy +qm +qm +qm +UT +zq +Ea +Ea +Ea +Ea +Ea +zq +lB +hd +qm +DE +aV +qm +qm +qm +dg +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hu +Yj +FE +zV +VT +cQ +xl +xl +xz +yt +yD +xl +xz +xl +zz +zN +zN +oW +Cb +zV +zV +GK +Ia +Jc +Jc +Jc +Jc +NF +OF +Qs +DN +SO +TM +Um +Um +Um +Um +GF +Yo +Yo +Yo +Yo +Yo +Yo +Yo +TU +Nk +Nk +Nk +Ph +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(38,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +qm +qm +qm +qm +vq +er +bF +SB +kX +vq +pD +hy +qm +lr +Qz +wV +zq +Ea +Ea +Ea +Ea +Ea +zq +Ea +DX +qm +DE +aV +aV +qm +dg +sA +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Wt +Yj +FE +zV +zV +wk +yT +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +Ft +Yj +Ie +Jh +Kw +Lh +Mo +NG +cQ +Qt +Rx +cQ +TL +Un +Vr +WX +Un +WJ +tB +Pq +Ll +Ll +Ll +Ll +Ll +oE +Nk +Nk +Nk +WJ +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(39,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +qm +qm +qm +ST +qm +qm +vq +er +lX +jD +kX +vq +pD +hy +qm +qm +UT +Ea +zq +BU +VC +VC +VC +My +zq +Ea +jv +qm +DE +aV +qm +qm +kl +ZI +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +II +cQ +pg +zV +zV +wo +yT +zV +zV +zV +zV +zV +yT +zV +zV +zV +zV +zV +zV +Ek +Fu +xo +Yj +Yj +cQ +cQ +Mv +cQ +cQ +QD +RC +SR +Zw +Uo +Uo +Zw +Zw +WJ +WJ +WJ +st +WJ +WJ +WJ +st +WJ +WJ +WJ +ZF +WJ +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(40,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +qm +qm +qm +ST +ST +qm +qm +vq +oq +SB +SB +qa +vq +pD +hy +qm +qm +UT +Ea +ec +kB +rr +rr +rr +jq +mX +Ea +Ea +hd +DE +aV +kq +qm +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +fd +Yj +FE +zV +zV +eo +yT +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +tJ +Yj +Ii +Ii +cQ +Lr +Mx +NK +cQ +QE +RM +SV +cQ +Up +Vx +Zw +TE +TE +TE +TE +TE +wy +Zw +JE +JE +JE +JE +JE +Pi +Zw +IB +IB +IB +IB +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(41,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +qm +qm +qm +qm +qm +ST +qm +qm +qm +vq +oq +SB +SB +qa +vq +pD +OG +dP +qm +qm +vO +kB +rr +rr +rr +rr +rr +jq +EX +Ea +DX +DE +aV +aV +qm +qm +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Gq +Yj +Jk +hV +wh +cQ +xB +xn +xB +xB +xB +xB +xB +xB +xB +xB +xB +xn +Cd +zV +LV +Yj +Ii +Hn +cQ +Ls +MD +NP +cQ +QF +RO +Te +cQ +Zw +Zw +Zw +sn +sn +sn +sn +sn +py +Zw +Mj +Mj +Mj +Mj +Mj +GJ +Zw +iy +iy +iy +iy +iy +iy +iy +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(42,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +ST +qm +qm +qm +vq +er +SB +SB +kX +vq +pD +eH +hy +qm +qm +Kx +rr +rr +rr +rr +rr +rr +rr +Na +Ea +DX +DE +aV +aV +aV +qm +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +II +cQ +Yj +Yj +Yj +cQ +wN +xo +xN +yx +yx +yx +yx +yx +yx +yx +Ar +cQ +Cy +zV +Fv +Yj +Yj +Yj +xo +cQ +ME +Yj +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Zw +Ys +sn +Ys +Ys +Ys +py +Zw +Dv +Dv +Dv +Mj +Mj +GJ +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(43,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +eH +eH +eH +eH +eH +eH +qm +qm +qm +qm +eH +eH +Gt +Gt +Fo +HR +kX +eH +eH +eH +ee +qm +qm +Gc +Ni +rr +rr +rr +rr +rr +rr +Na +Ea +hd +DE +aV +aV +aV +qm +qm +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Hn +Yj +Hn +Ii +zL +Yj +Ih +Yj +xP +AZ +As +mx +mx +mx +xP +AZ +As +Yj +CA +zV +Fx +xs +xs +Jl +cQ +Lv +xZ +xZ +OJ +cQ +Lv +Tj +TP +Uw +VP +Zw +Ys +sn +Ys +sn +Ys +py +Zw +Mj +Mj +Dv +Mj +Mj +GJ +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(44,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +vm +qv +Ej +mQ +eH +vq +vq +vq +vq +eH +Wg +jH +OP +me +me +sr +dC +dC +Oc +hy +qm +qm +Gc +rr +rr +rr +rr +rr +rr +rr +Na +Ea +DX +bm +JV +aV +qm +oJ +qm +QT +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +TV +Yj +Wt +KT +Hn +Yj +Ih +Yj +Aw +Aw +Aw +mx +zt +mx +Aw +Aw +Aw +Yj +CA +yT +zV +zV +yT +Js +KI +Lx +zV +yT +Js +QG +Lx +zV +zV +Ek +VQ +Zw +Ys +Ys +Ys +sn +Ys +py +Zw +Dv +Dv +Dv +Dv +Dv +GJ +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(45,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +mQ +gU +Tl +iS +iS +Tl +gU +sw +sB +Ho +me +ih +eH +eH +eH +eH +HV +dP +qm +RJ +WS +rr +rr +rr +rr +rr +zv +lz +qm +qm +qm +DE +aV +oJ +rP +oJ +qm +kl +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hu +Yj +JC +Hp +JC +Yj +Ih +Yj +AS +Bp +AA +mx +Zf +mx +AS +Bp +AA +Yj +CA +zV +Fz +xn +xn +Ju +cQ +LD +MN +NS +ON +cQ +RR +xB +Cd +zV +VP +Zw +sp +sp +sp +sp +sp +su +Zw +sN +sN +sN +sN +sN +RB +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(46,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +Pu +qY +qY +mQ +Gk +Tl +iS +iS +Tl +Gk +sw +sB +Ho +me +PR +eH +eT +eT +eH +eH +OG +dP +qm +vz +WS +rr +rr +rr +zv +uw +qm +qm +qm +Ed +If +aV +aV +oJ +qm +dg +sA +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +Wt +cQ +Yj +Yj +Yj +cQ +mh +xo +xU +yy +yy +yy +yy +yy +yy +yy +AB +cQ +CE +zV +FN +Yj +Yj +Yj +xo +cQ +cQ +cQ +cQ +cQ +cQ +Tm +TR +zV +VQ +TL +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +Zw +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(47,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +WL +eH +eH +vq +pC +wK +vq +eH +Dd +tw +ba +me +me +UD +eT +eT +eT +eH +aV +hy +qm +fV +ao +gt +bp +gt +PW +fV +qm +Ed +vD +If +aV +aV +aV +aV +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Hn +Yj +AY +KZ +mH +cQ +xZ +xs +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xs +CH +zV +FO +Yj +Ii +Ii +cQ +LJ +MO +NT +OQ +cQ +Ii +Yj +TX +zV +VQ +Sd +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(48,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +Hd +qY +vq +nj +FT +MS +lg +Jm +eH +xH +CL +ba +me +me +UD +eT +eT +eT +eH +aV +OG +Vs +fV +DE +vq +nw +vq +hy +fV +lr +DE +aV +aV +aV +aV +aV +aV +fR +fR +fR +fR +fR +fR +fR +fR +fR +fR +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +TV +Yj +At +zV +zV +wk +yT +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +oR +Yj +Hn +Ii +cQ +LO +MU +NU +OW +cQ +Hn +Yj +TX +zV +VT +xZ +Tm +YF +yW +RE +cQ +PZ +VN +Uh +jd +cQ +Hu +bM +mC +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(49,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +Nd +vb +qY +qY +qY +CP +lg +lg +lg +lg +lg +rT +sw +sB +Ho +me +OA +eH +eT +eT +eH +eH +aV +aV +OG +rI +DE +vq +uE +vq +dG +pU +CY +If +aV +fR +fR +fR +fR +fR +fR +Rs +dU +dU +Rs +Rs +Rs +Rs +dU +dU +fR +fR +fR +fR +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hu +cQ +oX +zV +zV +wo +yT +zV +zV +zV +zV +zV +yT +zV +zV +zV +zV +zV +zV +En +FP +cQ +Yj +Yj +cQ +LS +ID +ID +OY +cQ +RX +Yj +TX +yT +zV +zV +Er +yT +zV +zV +Er +eF +wp +zV +zV +ix +vS +bM +Ge +Ei +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(50,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +CP +BR +ns +lg +LH +CU +eH +VV +th +yS +me +ih +eH +eH +eH +eH +aV +aV +aV +aV +Vw +If +vq +nw +vq +te +eH +Fw +aV +aV +fR +Rs +Rs +dU +Rs +Rs +Rs +Rs +Rs +Rs +dU +Rs +dU +Rs +as +as +as +as +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Wt +Yj +At +zV +zV +eo +yT +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +FR +Yj +Ix +Jv +KQ +LX +ID +ID +Pb +cQ +Yj +cQ +TY +zV +Wf +Xb +Tm +YM +WD +Sd +cQ +XU +ZG +zV +Il +cQ +rj +bM +bZ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(51,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +iW +qY +WL +eH +eH +eH +Iw +RN +fL +eH +eH +er +eH +rU +rU +eH +jZ +bG +eH +eH +eH +eH +eH +eH +vq +vq +nw +eH +pR +EI +qz +aV +fR +fR +dU +Rs +as +as +as +as +as +Rs +dU +dU +Rs +Rs +Rs +as +ng +VF +mG +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +II +Yj +At +zV +Wf +cQ +xt +xt +yc +xt +xt +xt +zu +xt +zJ +zP +zP +bV +CQ +zV +FU +GS +ID +ID +ID +ID +ID +ID +Pk +cQ +Sc +Ob +Ub +zV +VQ +Sd +cQ +cQ +cQ +cQ +cQ +cQ +cQ +nI +cQ +cQ +cQ +Yj +Yj +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(52,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +Tr +CN +eH +eH +eH +eH +eH +Fc +PT +vq +sw +sw +DF +Bf +Bf +Re +Yh +eC +vp +Yb +uE +nw +nw +nw +eH +aV +aV +aV +aV +fR +Rs +Rs +Rs +jO +og +PC +Je +as +as +jO +jO +jO +jO +as +as +Pp +bU +cG +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +fd +Yj +TJ +En +yP +cQ +xh +xh +yk +xh +yQ +xh +zy +xh +cQ +Yj +Yj +xo +CS +zV +Ga +Yj +IL +IL +IL +LZ +LZ +NW +Px +cQ +Sd +Ob +Uc +zV +Wm +xo +cQ +YN +nX +Pf +zV +zV +zV +UZ +Yj +Hn +cQ +JC +Zk +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZH +ZH +ZH +ZH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +ZW +"} +(53,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +GZ +rN +eH +gQ +ze +vn +eH +ka +mj +vq +sw +sw +Pn +sg +Dq +Ae +Gv +eC +eH +eH +eH +eH +eH +eH +eH +aV +qm +aV +fR +fR +Rs +Rs +Rs +jO +pj +BF +qe +QR +uv +Wx +jL +TQ +cj +Ln +QR +aD +bU +HW +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Gq +Yj +vH +xe +cD +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +zL +Al +Yj +CT +zV +Gf +cQ +IP +Jw +KW +xo +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Uz +cQ +cQ +XG +YP +Ob +Pf +zV +zV +zV +zV +Yj +Ii +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZH +nn +Mf +NM +fk +Nf +dw +ZC +Nf +sU +Nf +lI +aq +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(54,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +Qf +qY +Xj +QA +eH +La +mr +Tp +eH +eH +Fn +Gt +Wk +sw +Pn +un +UW +Qc +Gv +eC +xj +eH +aV +aV +aV +aV +aV +aV +qm +aV +fR +Rs +Rs +dU +Rs +jO +ou +yg +yg +eO +mz +mz +mz +mz +mz +mz +Oq +bU +oc +gd +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +vH +xe +cD +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +cQ +cQ +cQ +Yj +Er +Yj +cQ +cQ +cQ +cQ +cQ +MY +NY +Pz +QH +NY +cQ +Ud +zV +VP +cQ +BG +DC +BG +cQ +HX +HX +HX +cQ +cQ +Yj +cQ +ZW +ZW +ZW +ZW +ZW +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +NM +NM +ZH +ZJ +ZJ +Nf +Nf +ZJ +ZJ +ZJ +Nf +Nf +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(55,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +xg +eS +eH +hf +mr +IJ +vq +sw +sw +sB +sw +sw +Pn +pS +pM +zs +Gv +eC +wl +eH +aV +qm +qm +aV +qm +aV +aV +aV +fR +Rs +Rs +Rs +Rs +jO +DW +yg +BF +QR +zT +CB +GI +GI +Ip +uZ +QR +QR +QR +QR +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +ZW +ZW +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +cQ +UA +Lk +sQ +cQ +cQ +xh +xh +xh +cQ +xh +xh +xh +cQ +cQ +cQ +Bj +Db +zV +Gg +Hc +IQ +JB +JB +cQ +Nb +Nb +Nb +Nb +Nb +Yj +CH +zV +Wo +cQ +XH +zV +zV +gP +pP +ws +zc +wc +va +Dx +cQ +ZW +ZW +ZW +ZW +ZW +ZH +KK +oa +Me +ZH +jB +Hb +Bg +Qx +YA +ZH +CZ +du +cX +Ql +Xz +sH +cW +Xz +RI +Xz +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(56,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +qY +qY +GZ +sw +eH +oN +dx +dx +zM +JL +JL +sB +sw +sw +Pn +KS +Hv +zA +Gv +eC +SF +eH +aV +aV +aV +aV +aV +aV +aV +fR +fR +Rs +dU +Rs +Rs +jO +lh +Ug +BF +QR +Lu +kT +GI +GI +Op +QR +QR +bR +bR +bR +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Ei +zV +zV +zV +zV +zV +zV +zV +Mc +zV +zV +zV +zV +zV +Mc +zV +zV +zV +Xc +Bw +zV +zV +Cj +DN +DN +BW +Uj +va +eD +cQ +ZW +ZW +ZW +ZW +ZW +ZH +aS +go +BS +sX +BS +BS +BS +BS +BS +Pr +sl +Bx +cX +Ql +Xz +pu +Gh +Xz +RI +Xz +Zp +Zp +ZJ +qT +ZJ +ZW +ZW +ZW +ZW +"} +(57,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +vb +qY +VE +ym +Xj +To +eH +ZL +Ps +CK +vq +sw +sw +sB +sw +sw +tc +gs +gs +gs +gp +eC +fz +eH +eH +aV +fR +fR +fR +fR +fR +fR +Rs +Rs +Rs +Rs +Rs +as +as +as +NH +QR +od +cf +fh +GQ +fh +fe +QR +bR +bR +bR +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +HD +cg +Oz +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +ZW +ZW +cQ +IB +IB +IB +IB +cQ +IB +IB +IB +cQ +cQ +cQ +cQ +Dg +et +Go +Hm +Hm +Hm +KX +cQ +Nj +NZ +xB +xB +Sf +Yj +Cd +zV +Wf +cQ +Bw +zV +Ff +cQ +Bj +MH +Xt +cc +va +IT +cQ +ZW +ZW +ZW +ZW +ZW +ZH +Qp +hv +IF +ZH +vg +vg +vg +vg +vg +ZH +Yi +wZ +ZH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +Zp +Zp +Zp +Zp +ZJ +ZW +ZW +ZW +ZW +"} +(58,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +eH +eH +eH +eH +eH +eH +eH +eH +eH +eH +eH +eH +vq +kH +vq +kj +vl +Hs +jx +jR +zx +eC +nz +sV +eH +aV +fR +Rs +fR +dU +Rs +Rs +Rs +dU +Rs +dU +Rs +Rs +dU +as +Rm +tQ +El +Ne +sS +sS +gR +El +tQ +VR +VR +VR +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +vH +xe +cD +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aQ +ZW +ZW +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +ED +cQ +Yj +Yj +Yj +Yj +cQ +Np +Ob +PA +Ob +Si +cQ +Ud +zV +VP +cQ +Bw +zV +wH +cQ +oo +DN +Kg +wd +va +JC +cQ +ZW +ZW +ZW +ZW +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +sl +Bx +ZH +Uy +Uy +Uy +Uy +Uy +Uy +ZJ +Zp +Ry +Zp +Zp +ZJ +ZW +ZW +ZW +ZW +"} +(59,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +eH +eH +lr +lr +lr +lr +eH +eH +lr +lr +lr +lr +vq +qY +vq +Qd +vl +Tn +Ze +Tn +zx +kQ +eH +eH +eH +aV +fR +fR +fR +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +Rs +jO +bU +iB +pG +AI +Ux +Ux +iv +pG +rX +RK +RK +RK +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Ei +cQ +cQ +cQ +cQ +cQ +Bj +vH +xe +cD +Bj +cQ +cQ +cQ +cQ +cQ +Ei +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +Dl +EF +cQ +Hn +IT +JC +KY +cQ +Nq +Of +PF +QK +Sl +cQ +cQ +Mc +cQ +cQ +XI +zV +Zi +cQ +ov +DN +oT +Bv +va +NX +cQ +ZW +ZW +ZW +ZW +ZH +Lm +NM +Iy +Xp +xa +Mq +vk +YE +vk +YE +vX +Wb +wZ +ZH +Ew +Ew +Ew +Ew +Ew +Ew +ZJ +ZJ +ZJ +se +se +ZJ +ZW +ZW +ZW +ZW +"} +(60,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +vq +qY +vq +eH +vq +lu +Tn +Hy +vq +eH +eH +aV +aV +aV +fR +Rs +Rs +Rs +Rs +Rs +dU +Rs +Rs +Rs +dU +Rs +Rs +jO +bU +iB +pG +pG +tQ +tQ +pG +pG +Ss +RK +RK +RK +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +zV +zV +wT +zV +zV +zV +zV +zV +zV +zV +zV +zV +wT +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +wT +zV +zV +zV +zV +zV +Co +fU +Wu +wT +zV +En +En +En +zV +wT +Co +fU +Wu +zV +zV +zV +zV +zV +zV +zV +wT +zV +zV +zV +zV +zV +zV +zV +zV +zV +wT +zV +zV +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Br +Dr +zV +cQ +Hp +IV +Hn +JC +cQ +Nv +Om +PF +Ob +Sn +cQ +Uf +UF +Wr +cQ +Bw +zV +cl +cQ +EN +DN +XJ +GH +va +ye +cQ +ZW +ZW +ZW +ZW +ZH +ww +NM +Yi +wZ +xa +eB +dM +vi +dM +vi +dM +vi +OL +ZH +rQ +qW +qW +qW +qW +ha +NJ +AV +ZJ +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +"} +(61,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +vq +MK +vq +lr +vq +vq +vq +vq +vq +lr +pW +aV +qm +aV +fR +Rs +Rs +Rs +dU +Rs +dU +dU +Rs +Rs +Rs +dU +Rs +as +ZY +tQ +pG +pG +mp +dQ +pG +pG +Ss +RK +RK +dW +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +wL +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Fr +Fr +Fr +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ab +vV +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Bt +Bt +Bt +cQ +cQ +cQ +cQ +cQ +cQ +Nw +Ov +PF +QS +St +cQ +cQ +cQ +cQ +cQ +Bw +zV +Ff +cQ +cQ +IR +rM +Jg +va +Hp +cQ +ZW +ZW +ZW +ZW +ZH +Mf +NM +sl +Dm +ZH +ZH +so +ZH +ZH +ZH +ZH +ZH +ZH +ZH +lH +Hf +Lz +Lz +Hf +EM +NJ +AV +ZJ +Zp +Zp +Nf +uy +ZJ +ZW +ZW +"} +(62,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +vq +qY +vq +lr +lr +lr +lr +lr +lr +lr +pW +aV +qm +aV +fR +dU +Rs +Rs +Rs +as +as +as +as +jO +jO +as +as +as +nG +QR +bS +pG +ik +ff +pG +pG +Ss +RK +rY +RK +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Bu +Ds +zV +cQ +GB +GE +GE +GE +GE +GE +Ox +GE +GE +GE +GE +GE +GE +GB +cQ +Bw +zV +zV +Cj +DN +DN +fn +Is +va +Rf +cQ +ZW +ZW +ZW +ZW +ZH +bD +NM +Yi +wZ +ZH +zo +Ve +Le +RS +dA +RS +xR +SU +ZH +lH +Lz +SD +Lz +Lz +EM +NJ +AV +ZJ +Zp +Zp +Nf +Km +ZJ +ZW +ZW +"} +(63,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +vq +qY +vq +lr +lr +lr +lr +lr +lr +lr +pW +pW +aV +aV +fR +Rs +Rs +Rs +Rs +jO +pN +fy +oG +iw +iw +yE +nG +Qg +vJ +QR +pG +pG +OS +cY +pG +pG +Cn +RK +ut +RK +jO +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +bd +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +EH +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +Du +EW +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +XH +zV +zV +fv +kE +Yl +oF +nK +va +Ku +cQ +ZW +ZW +ZW +ZW +ZH +Mf +NM +sl +Bx +ZH +HQ +Ve +LA +QI +fZ +qX +cU +pa +ZH +lH +Hf +Lz +Lz +Hf +EM +NJ +AV +ZJ +Zp +Zp +Nf +uy +ZJ +ZW +ZW +"} +(64,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +vq +VK +vq +lr +lr +lr +lr +lr +lr +lr +lr +pW +aV +fR +fR +Rs +dU +Rs +Rs +jO +Rg +ug +af +iw +iw +HI +nG +Ws +iw +QR +nh +nh +QR +QR +nh +nh +as +as +as +as +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +ED +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +BG +DC +BG +cQ +vP +vP +vP +cQ +cQ +Yj +cQ +ZW +ZW +ZW +ZH +ZH +NM +ZH +Yi +wZ +ZH +nZ +Tk +re +TS +TS +TS +ej +bN +ZH +Fy +Lf +Lf +Lf +Lf +Qu +NJ +AV +ZJ +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +"} +(65,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qD +qm +qm +qm +lr +lr +lr +lr +lr +lr +pW +aV +fR +Rs +Rs +Rs +Rs +dU +jO +kp +Ly +oG +iw +iw +hE +nG +lk +iw +ev +ae +nB +QR +Dh +iw +iw +jO +dU +Rs +Rs +Rs +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +zV +EZ +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +XM +Bw +Ob +Gp +zV +zV +zV +zV +Yj +FK +cQ +ZW +ZW +ZW +ZH +Oe +Wj +YE +zf +ez +ZH +uX +Tk +AT +ZH +xi +ox +TZ +ZH +ZH +Kf +Kf +Kf +Kf +Kf +Kf +ZJ +ZJ +ZJ +ZJ +sG +ZJ +ZJ +ZW +ZW +ZW +"} +(66,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +aV +fR +Rs +Rs +Rs +Rs +dU +as +QR +QR +QR +Gu +Ti +QR +QR +vf +iw +Ns +ae +nB +QR +QR +Gu +iw +as +Rs +Rs +dU +Rs +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +mO +Gn +Ir +uS +FF +Gn +Ir +uS +FF +Gn +Ir +uS +uS +uS +uS +uS +FF +Gn +Ir +uS +FF +Gn +Ir +uS +Gi +Gi +Gi +uS +FF +Gn +Ir +uS +FF +Gn +Ir +uS +FF +Gn +Vz +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +Bw +zV +Ff +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +YQ +Md +Gp +zV +zV +zV +zV +Yj +tI +cQ +ZW +ZW +ZW +ZH +Ij +rA +vi +dM +rK +ZH +qo +dS +Ic +so +Qv +Fs +Fs +DR +Yg +jy +vF +Da +Da +Ya +jy +Yg +lF +jr +Jq +Zp +Oy +ZJ +ZW +ZW +ZW +"} +(67,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +aV +fR +Rs +dU +Rs +Rs +Rs +jO +lE +io +uI +iw +iw +gZ +QR +QR +Gu +FC +ae +nB +bw +nG +iw +iw +jO +Rs +dU +Rs +Rs +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +NL +Dc +UE +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +Gi +Gi +Gi +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +Gi +Gi +Gi +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +eA +Dc +Fb +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +BD +zV +Ff +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +Yj +Yj +Yj +cQ +cQ +ED +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZH +ZH +ZH +ZH +JO +ZH +ZH +ZH +ZH +ZH +ZH +Mt +Fs +hs +DR +VM +VM +VM +VM +VM +VM +VM +VM +lF +yq +Wl +Zp +qA +ZJ +ZJ +ZJ +ZW +"} +(68,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +Rs +Rs +Rs +Rs +jO +qE +QB +be +iw +iw +qy +Ck +Ck +iw +iw +ae +nB +bw +nG +iw +iw +jO +Rs +Rs +Rs +Rs +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +LE +tv +Tb +pw +mP +tv +Tb +pw +mP +tv +Tb +pw +pw +pw +pw +pw +mP +tv +Tb +pw +mP +tv +Tb +pw +Gi +Gi +Gi +pw +mP +tv +Tb +pw +SP +ZK +Oh +pw +mP +tv +Ef +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +Bw +zV +Ff +cQ +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +GE +cQ +cQ +Ii +iu +JC +Yj +XC +kD +EF +uY +Yj +VB +cQ +ZW +ZW +ZH +Qi +um +NM +vi +lM +ZH +LG +VY +LG +ZH +hs +Fs +hs +DR +sc +KN +KN +KN +KN +KN +KN +hU +lF +yq +Wl +Zp +lt +Nf +oy +ZJ +ZW +"} +(69,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +Rs +Rs +dU +Rs +jO +hX +gb +uI +iw +iw +qy +BM +BM +iw +iw +Lq +QO +QR +QR +Gu +iw +as +Rs +Rs +dU +Rs +fR +ZW +ZW +ZW +ZW +ZW +ZW +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +Bw +zV +Ff +cQ +GB +GE +GE +GE +GE +GE +GB +GE +GE +GE +GE +GE +GE +GB +cQ +cQ +cQ +cQ +cQ +cQ +HC +HC +HC +HC +cQ +cQ +cQ +cQ +cQ +ZH +AH +eK +Mp +Bx +al +ZH +NM +NM +NM +ZH +Vj +Fs +JS +DR +TC +yr +yr +yr +yr +yr +yr +VM +lF +Tg +Zp +Zp +tN +Nf +uy +ZJ +ZW +"} +(70,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +Rs +Rs +Rs +as +as +QR +QR +QR +Gu +iw +QR +QR +QR +QR +iQ +QM +GI +fh +nG +iw +iw +jO +dU +Rs +Rs +dU +fR +fR +fR +fR +fR +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +xd +uJ +jm +sj +xd +uJ +jm +sj +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +xd +uJ +jm +Ih +Ih +sj +Ih +Ih +mO +Gn +Ir +uS +WO +ma +mu +Ih +Ih +Ih +Ih +Ih +rW +ma +mu +Ih +Ih +Ih +Ih +sj +xd +uJ +jm +sj +xd +uJ +jm +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +Bw +zV +Fi +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +YR +DL +KY +Yj +Vk +EW +bt +jW +Yj +jG +cQ +cR +Ki +ZH +NM +Rz +NM +Bx +sl +ZH +Ks +zm +SX +ZH +hs +Fs +hs +DR +kJ +Rh +Rh +Rh +Rh +Rh +Rh +VM +lF +yq +Wl +Zp +GP +ZJ +Nf +ZJ +ZW +"} +(71,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +dU +Rs +Rs +Rs +jO +xb +mV +QR +HT +iw +iw +ux +rg +nG +MW +GI +bO +GI +CV +nG +iw +iw +jO +Rs +Rs +dU +Rs +Rs +Rs +Rs +Rs +fR +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +eA +xh +UE +sj +eA +xh +UE +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +eA +xh +UE +sj +sj +sj +sj +sj +NL +Dc +UE +Gi +eA +xh +Fb +sj +sj +sj +sj +sj +NL +xh +Fb +Ih +Ih +Ih +Ih +Ih +eA +xh +UE +sj +eA +xh +UE +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +BG +DC +BG +xo +Hq +Hq +JD +cQ +cQ +Nx +OD +PM +QU +Su +cQ +cQ +UI +Wz +Xg +cQ +Yj +Yj +Yj +cQ +cQ +cQ +ED +cQ +cQ +cQ +cQ +Yj +Yj +ZH +gL +Tu +fx +OL +Cs +ZH +NM +NM +NM +ZH +hs +Fs +hs +DR +tl +Rh +Rh +Rh +Rh +Rh +Rh +VM +lF +yq +Wl +Zp +mo +Nf +uy +ZJ +ZW +"} +(72,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +dU +Rs +dU +jO +xb +bi +YY +US +iw +iw +EP +rg +nG +MW +Dp +QR +ax +LU +QR +Gu +iw +as +dU +Rs +Rs +Rs +Rs +dU +Rs +dU +Rs +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +SP +ZK +Oh +sj +SP +ZK +Oh +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +SP +ZK +Oh +Ih +Ih +sj +Ih +Ih +LE +tv +Tb +pw +SP +ZK +PE +Ih +Ih +Ih +Ih +Ih +eg +tv +MQ +Ih +Ih +Ih +Ih +Ih +SP +ZK +Oh +sj +SP +ZK +Oh +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +Bw +zV +Fj +Gp +Fj +Fj +Fj +Fj +Mh +Fj +Fj +Fj +Fj +Fj +Tw +Mh +Fj +Fj +Fj +Mh +Fj +Fj +Fj +Fj +Pf +MB +mi +yG +JK +JN +cQ +ib +pz +ZH +bs +cv +cv +cv +mb +Va +LK +yC +dd +gz +hs +Fs +hs +DR +rx +Rh +Rh +cE +cE +Rh +Rh +VM +lF +WH +Nu +Qe +eU +Nf +oy +ZJ +ZW +"} +(73,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +Rs +Rs +dU +jO +sv +rb +QR +HT +iw +iw +nH +RY +nG +MW +GI +mE +GI +fI +nG +iw +Ti +as +jO +jO +as +Rs +Rs +Rs +Rs +Rs +Rs +Rs +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +BD +zV +zV +Gr +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +an +zV +zV +zV +an +mi +os +bM +Js +CF +Vv +cv +Em +cv +yz +DK +vj +vj +vj +OH +Qv +Fs +hs +DR +Mk +Rh +Rh +qb +SA +Rh +Rh +VM +lF +Ja +Io +TW +iN +ZJ +Nf +ZJ +ZW +"} +(74,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +dU +Rs +Rs +as +as +QR +QR +QR +Gu +iw +QR +QR +QR +QR +Ng +Ux +GI +fh +nG +iw +iw +tQ +AE +VO +as +cH +YD +cH +cH +cH +YD +cH +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +BH +zV +Fm +Gp +Hw +Ff +Ff +Ff +Ff +Ff +Ff +Hw +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Ff +Hw +Ff +vZ +Bw +zV +Ff +Pf +Sh +cQ +ib +Oi +ZH +EL +cv +cv +cv +mb +gz +tr +wE +Ey +ZH +hs +Fs +hs +DR +oj +Rh +Rh +cE +cE +Rh +Rh +VM +lF +JX +bQ +IC +Sk +Nf +oy +ZJ +ZW +"} +(75,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +aV +fR +Rs +Rs +Rs +Rs +Rs +jO +pN +fy +uI +iw +iw +qy +Ck +Ck +iw +iw +aO +AI +QR +QR +Gu +iw +gu +mk +mk +jF +cH +cH +cH +cH +cH +cH +cH +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +cQ +DG +cQ +cQ +cQ +cQ +Yj +Yj +Yj +Yj +cQ +cQ +cQ +Yj +Yj +Yj +Yj +cQ +Yj +Yj +cQ +Yj +cQ +Yj +cQ +pE +zF +pE +cQ +Yj +cQ +Yj +Yj +ZH +Lt +Tu +PS +Xp +Cs +ZH +NM +NM +NM +ZH +hs +Fs +hs +DR +bT +Rh +Rh +Rh +Rh +Rh +Rh +VM +lF +yq +Wl +Zp +mo +Nf +uy +ZJ +ZW +"} +(76,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +aV +fR +dU +Rs +Rs +Rs +Rs +jO +Rg +ug +ip +iw +iw +qy +BM +BM +iw +iw +zj +nB +hr +nG +iw +iw +gu +mk +mk +jF +cH +cH +cH +cH +cH +cH +cH +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +xd +uJ +jm +sj +sj +sj +sj +sj +sj +sj +sj +sj +xd +uJ +jm +sj +sj +sj +sj +sj +xd +uJ +jm +sj +sj +sj +sj +sj +sj +sj +sj +sj +nJ +uJ +df +sj +sj +sj +sj +sj +xd +uJ +jm +sj +sj +sj +sj +sj +sj +sj +sj +sj +xd +uJ +jm +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +DH +Yj +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Hn +Yj +Bw +zV +Fi +Yj +uU +cQ +ye +Pe +ZH +NM +Rz +NM +Bx +bh +ZH +iU +qV +Ac +ZH +hs +Fs +hs +DR +Ua +Rh +Rh +Rh +Rh +Rh +Rh +VM +lF +yq +Wl +Zp +yi +ZJ +Nf +ZJ +ZW +"} +(77,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +aV +fR +fR +Rs +dU +Rs +dU +jO +kp +wP +uI +ua +GW +QR +QR +QR +Gu +iw +xr +nB +jJ +nG +iw +iw +tQ +XB +gi +as +cH +YD +cH +cH +cH +YD +cH +fR +Ei +zV +cn +Ih +Ih +Ih +Ih +eA +xh +UE +sj +sj +sj +sj +sj +sj +sj +sj +sj +eA +xh +UE +sj +sj +sj +sj +sj +eA +xh +UE +sj +sj +sj +sj +sj +sj +sj +sj +sj +NL +xh +Fb +sj +sj +sj +sj +sj +eA +xh +UE +sj +sj +sj +sj +sj +sj +sj +sj +sj +eA +xh +UE +Ih +Ih +Ih +Ih +HK +zV +Ei +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +DJ +cQ +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +TV +Yj +Bw +zV +Ff +Yj +Bc +cQ +cQ +cQ +ZH +AH +FI +Mp +Bx +bB +ZH +NM +NM +NM +ZH +Vj +Fs +JS +DR +bq +jl +jl +jl +jl +jl +jl +VM +lF +Tg +Zp +Zp +Vg +Nf +oy +ZJ +ZW +"} +(78,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +uG +uG +uG +lr +pW +aV +aV +fR +Rs +Rs +Rs +Rs +as +QR +QR +QR +qM +ua +kU +nG +YU +iw +iw +zE +nB +QR +QR +iw +Ti +as +jO +jO +as +Rs +Rs +Rs +Rs +Rs +Rs +dU +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +SP +ZK +Oh +sj +sj +sj +sj +sj +sj +sj +sj +sj +SP +ZK +Oh +sj +sj +sj +sj +sj +SP +ZK +Oh +sj +sj +sj +sj +sj +sj +sj +sj +sj +js +ZK +BA +sj +sj +sj +sj +sj +SP +ZK +Oh +sj +sj +sj +sj +sj +sj +sj +sj +sj +SP +ZK +Oh +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +DN +Yj +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +hu +Yj +Bw +zV +Ff +Yj +sI +cQ +ZW +ZW +ZH +Qi +tx +NM +Xv +nM +ZH +VY +LG +VY +ZH +Mt +Fs +hs +DR +lD +KN +KN +KN +KN +KN +KN +hU +lF +yq +Wl +Zp +CG +Nf +uy +ZJ +ZW +"} +(79,1,1) = {" +aV +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +qm +qm +qm +qm +qm +qm +qm +qm +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +uG +lr +lr +lr +pW +qm +aV +fR +Rs +Rs +Rs +Rs +jO +lE +nc +uI +ua +ua +ue +nG +fO +iw +iw +ae +nB +SE +QR +iw +iw +as +dU +dU +Rs +Rs +Rs +Rs +dU +Rs +Rs +Rs +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +DN +Yj +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Wt +Yj +Bw +zV +Ff +Yj +Zk +cQ +ZW +ZW +ZH +ZH +ZH +ZH +JO +ZH +ZH +ZH +ZH +ZH +ZH +hs +Fs +hs +DR +VM +VM +VM +VM +VM +VM +VM +VM +lF +yq +Wl +Zp +Jx +ZJ +ZJ +ZJ +ZW +"} +(80,1,1) = {" +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +pW +pW +pW +aV +aV +fR +dU +Rs +Rs +Rs +jO +qE +QB +vt +ua +ua +QR +QR +QR +PK +PK +QR +QR +QR +QR +PK +PK +as +dU +Rs +Rs +Rs +dU +Rs +Rs +Rs +dU +dU +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +DN +Yj +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +II +Yj +Bw +zV +Ff +Yj +ar +cQ +ZW +ZW +ZH +Oe +Mq +Xv +YE +iI +ZH +CW +Ao +MC +ly +Qv +Fs +Fs +DR +Yg +Zy +zg +vv +vv +XS +Zy +Yg +lF +jr +mo +Zp +Oy +ZJ +ZW +ZW +ZW +"} +(81,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +uG +uG +lr +pW +pW +aV +aV +aV +fR +fR +Rs +Rs +Rs +dU +jO +hX +gb +uI +bj +bj +QR +vr +aE +iw +iw +tQ +oP +jE +tQ +iw +iw +jO +Rs +Rs +as +as +as +as +as +as +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Yj +DQ +Yj +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +fd +Yj +BD +zV +Ff +Yj +IT +cQ +ZW +ZW +ZH +Ij +Bk +dM +RA +ez +ZH +UP +Ao +CX +gz +vN +vN +Po +ZH +ZH +pH +pH +pH +pH +pH +pH +ZJ +ZJ +ZJ +ZJ +sG +ZJ +ZJ +ZW +ZW +ZW +"} +(82,1,1) = {" +ab +aA +aA +aA +aA +aA +aA +aA +aA +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +qm +qm +lr +lr +uG +uG +uG +uG +lr +lr +lr +lr +uG +uG +lr +lr +uG +uG +uG +uG +lr +lr +pW +qm +aV +qm +aV +fR +Rs +Rs +Rs +Rs +dU +as +as +as +as +jO +jO +as +as +as +iw +iw +tQ +oP +oP +tQ +iw +iw +jO +Rs +Rs +as +mN +pB +jQ +pq +qC +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +xd +uJ +jm +sj +xd +uJ +jm +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +xd +uJ +jm +Ih +Ih +sj +Ih +Ih +mO +Gn +Ir +uS +xd +uJ +df +Ih +Ih +Ih +Ih +Ih +pv +Gn +RW +Ih +Ih +Ih +Ih +Ih +xd +uJ +jm +sj +xd +uJ +jm +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +DS +cQ +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Gq +Yj +Bw +zV +Ff +Yj +JC +cQ +ZW +ZW +ZH +ZH +NM +ZH +Yi +Bz +ZH +Dn +Ao +Ao +nx +Ao +Ao +Ao +po +ZH +VI +yn +yn +yn +yn +vG +NJ +MT +ZJ +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +"} +(83,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +qm +qm +lr +lr +lr +lr +lr +lr +lr +lr +pW +pW +lr +lr +lr +lr +lr +lr +lr +lr +lr +lr +pW +qm +aV +qm +aV +fR +dU +Rs +dU +Rs +Rs +Rs +Rs +Rs +dU +Rs +Rs +Rs +dU +jO +iw +iw +tQ +oP +oP +tQ +iw +iw +as +Rs +dU +as +za +bU +bU +sO +mB +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +eA +xh +UE +sj +eA +xh +UE +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +eA +xh +UE +sj +sj +sj +sj +sj +NL +Dc +UE +Gi +eA +xh +Fb +sj +sj +sj +sj +sj +NL +xh +Fb +Ih +Ih +Ih +Ih +Ih +eA +xh +UE +sj +eA +xh +UE +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +DY +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +JC +Yj +Bw +zV +Ff +Yj +tS +cQ +ZW +ZW +ZW +ZH +cM +NM +bh +Bx +ZH +JJ +Ao +Ao +Ao +Ao +Ao +Ao +Lg +ZH +eW +nk +Yw +Yw +nk +Wi +NJ +MT +ZJ +Zp +Zp +Nf +uy +ZJ +ZW +ZW +"} +(84,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +qm +lr +lr +lr +lr +lr +lr +lr +pW +pW +pW +pW +lr +lr +lr +lr +lr +lr +lr +lr +lr +pW +aV +aV +aV +aV +fR +Rs +Rs +dU +dU +Rs +Rs +Rs +Rs +dU +dU +Rs +Rs +Rs +jO +iw +iw +tQ +oP +zw +tQ +iw +iw +as +jO +jO +as +zp +bU +bU +bU +wa +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +SP +ZK +Oh +sj +SP +ZK +Oh +sj +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +SP +ZK +Oh +Ih +Ih +sj +Ih +Ih +LE +tv +Tb +pw +Zz +Ji +Pm +Ih +Ih +Ih +Ih +Ih +KR +Ji +Pm +Ih +Ih +Ih +Ih +sj +SP +ZK +Oh +sj +SP +ZK +Oh +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +KY +Yj +Bw +zV +Ff +Yj +JC +cQ +ZW +ZW +ZW +ZH +Vq +NM +Yi +Bz +ZH +Xs +Ao +ia +iM +rd +ef +zO +fu +ZH +eW +Yw +lj +Yw +Yw +Wi +NJ +MT +ZJ +Zp +Zp +Nf +Km +ZJ +ZW +ZW +"} +(85,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +pW +pW +pW +pW +lr +lr +pW +pW +aV +aV +pW +pW +pW +pW +lr +lr +lr +lr +lr +pW +pW +qm +aV +aV +aV +fR +as +jO +kc +jO +as +jO +jO +jO +jO +as +jO +jO +jO +as +Gu +iw +QR +nG +nG +QR +Gu +iw +QR +oe +xF +QR +sR +OU +sR +QR +QR +as +as +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +sj +Ih +Ih +Ih +sj +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +sj +sj +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +JC +Yj +Bw +zV +Ff +Yj +Hn +cQ +ZW +ZW +ZW +ZH +GA +NM +bh +Dm +ZH +ZH +hD +ZH +ZH +ZH +ZH +ZH +ZH +ZH +eW +nk +Yw +Yw +nk +Wi +NJ +MT +ZJ +Zp +Zp +Nf +uy +ZJ +ZW +ZW +"} +(86,1,1) = {" +ab +aA +lG +lG +lG +lG +lG +lG +lG +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +pW +pW +pW +pW +aV +ZW +ZW +aV +aV +aV +pW +pW +pW +pW +pW +pW +pW +aV +aV +qm +qm +aV +fR +as +fJ +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +Qr +iw +iw +Qr +iw +iw +iw +iw +iw +iw +iw +iw +Fl +QR +yO +yH +as +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +sj +mO +Gn +Ir +uS +FF +Gn +Ir +uS +FF +Gn +Ir +uS +uS +uS +uS +uS +FF +Gn +Ir +uS +FF +Gn +Ir +uS +Gi +Gi +Gi +uS +FF +Gn +Ir +uS +xd +uJ +jm +uS +FF +Gn +Vz +sj +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +cQ +Hn +Yj +Bw +zV +Fi +Yj +JC +cQ +ZW +ZW +ZW +ZH +ww +NM +Yi +Bz +cX +Hk +YE +Xv +YE +Xv +YE +Xv +Xp +ZH +wt +Se +Se +Se +Se +kM +NJ +MT +ZJ +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +"} +(87,1,1) = {" +ab +aA +iP +iP +iP +lG +lG +lG +lG +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +aV +aV +qm +aV +aV +aV +fR +as +Jb +iw +iw +qr +iw +iw +iw +iw +qr +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +iw +NV +bU +lJ +as +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +NL +Dc +UE +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +Gi +Gi +Gi +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +Gi +Gi +Gi +Gi +eA +Dc +UE +Gi +eA +Dc +UE +Gi +eA +Dc +Fb +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Xh +Xh +Xh +Xh +Ui +Ui +Ui +zh +So +zh +FY +FY +FY +FY +FY +FY +ZH +wY +ZH +RL +OL +cX +rA +UU +dM +UU +dM +Ms +kf +Bz +ZH +Vl +Vl +Vl +Vl +Vl +Vl +ZJ +ZJ +ZJ +se +se +ZJ +ZW +ZW +ZW +ZW +"} +(88,1,1) = {" +ab +eN +iP +iP +iP +lG +lG +oz +wj +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +aV +aV +fR +as +sR +ud +sR +QR +sR +oA +oA +sR +QR +sR +Ep +sR +QR +nG +nG +QR +nG +nG +QR +sR +Ep +sR +QR +sR +sR +yM +yM +sR +QR +QR +as +as +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +LE +tv +Tb +pw +mP +tv +Tb +pw +mP +tv +Tb +pw +pw +pw +pw +pw +mP +tv +Tb +pw +mP +tv +Tb +pw +Gi +Gi +Gi +pw +mP +tv +Tb +pw +mP +tv +Tb +pw +mP +tv +Ef +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Xh +XN +YS +HZ +Bi +wD +Ui +Bw +zV +Xa +FY +pO +Uu +PX +KH +FY +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +bh +Bx +ZH +xL +xL +xL +xL +xL +xL +ZJ +Zp +VL +Zp +Zp +ZJ +ZW +ZW +ZW +ZW +"} +(89,1,1) = {" +ab +aA +iP +iP +iP +lG +lG +lG +lG +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +aV +aV +aV +aV +aV +fR +as +Cm +rf +Cm +QR +kN +Ur +Ur +kN +QR +or +bU +PH +QR +tX +fI +LN +fI +Ip +QR +Lb +bU +or +QR +Pj +pG +pG +pG +pG +Aq +gx +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Xh +XP +YX +tZ +It +ow +Ui +Bw +zV +fN +wG +Rr +Eu +KB +In +FY +ZW +ZH +UX +Nt +Me +ZH +vg +vg +vg +vg +vg +ZH +Yi +Bz +ZH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +Zp +Zp +Zp +Zp +ZJ +ZW +ZW +ZW +ZW +"} +(90,1,1) = {" +ab +aA +lG +lG +lG +lG +lG +lG +lG +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +fR +as +rf +ph +rf +QR +Ur +Ur +Ur +Ur +QR +Ww +bU +bU +No +MV +MV +MV +MV +MV +No +bU +bU +rR +QR +AG +cm +cm +cm +cm +cJ +gY +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Ui +XQ +YZ +de +ju +cI +Ui +cx +zV +Jd +FY +HG +nU +KE +Nl +FY +ZW +ZH +QP +go +BS +sX +BS +BS +BS +BS +BS +tM +bh +Bx +cX +Ql +Xz +JM +Mb +Xz +RI +Xz +Zp +Zp +ZJ +qT +ZJ +ZW +ZW +ZW +ZW +"} +(91,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +fR +as +lm +XR +rJ +QR +Ur +Ur +Ur +Ur +QR +DI +bU +PH +QR +cP +fI +fI +fI +fI +QR +Lb +bU +DI +QR +nE +dl +nE +nE +nE +Pc +dl +as +fR +fR +cQ +bd +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +EH +cQ +ZW +Ui +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +IB +Ui +XV +Zb +Pg +LM +HH +FM +Gx +zV +Ff +FY +HL +nW +nW +YV +FY +ZW +ZH +zD +oC +IF +ZH +Cu +ln +lR +lY +CD +ZH +Sy +Xm +cX +Ql +Xz +Mm +Ex +Xz +RI +Xz +Zp +Zp +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(92,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wF +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +fR +as +Cm +WQ +Cm +QR +yu +ah +Vi +rS +QR +sR +Sm +sR +QR +YJ +YJ +YJ +YJ +YJ +QR +sR +ZU +sR +QR +rF +nE +nE +nE +dl +Pc +dl +as +fR +fR +cQ +zV +cn +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ye +Gi +wB +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +Ih +HK +zV +cQ +ZW +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +UJ +WB +Ui +XW +Zc +JR +LM +ce +Ui +IH +zV +Ff +FY +Iq +nW +nW +mZ +FY +ZW +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +ZH +NM +NM +ZH +ZJ +ZJ +Nf +Nf +ZJ +ZJ +ZJ +Nf +Nf +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(93,1,1) = {" +ab +aA +iP +iP +iP +lG +iP +iP +iP +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +fR +as +as +as +as +as +vs +pp +is +FB +QR +Cw +Ur +kN +uR +lE +Vi +ah +Vi +rS +uR +kN +Ur +Cw +QR +nE +nE +nE +nE +nE +Pc +dl +as +fR +fR +cQ +zV +wM +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +Cv +Cv +Cv +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +ny +dy +zV +cQ +ZW +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +Ui +UK +WF +Xk +XX +YX +tZ +ND +YO +Ui +Bw +zV +Ff +FY +FY +tm +oS +mZ +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZH +mI +hh +NM +wJ +Nf +qc +yA +Nf +wJ +Nf +yA +aH +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +"} +(94,1,1) = {" +ab +aA +aA +aA +aA +aA +aA +aA +aA +aA +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +fR +as +fR +fR +fR +as +kp +VJ +aZ +ct +QR +OT +Ur +Ur +gH +Kj +is +pp +is +ug +uR +fW +Ur +lQ +QR +dl +nE +nE +qu +nE +Pc +dl +as +as +fR +cQ +zV +zV +zV +wU +zV +zV +zV +zV +zV +zV +zV +zV +zV +wU +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +zV +wU +zV +zV +zV +zV +zV +up +IS +GG +wU +zV +Ek +Ek +Ek +zV +wU +up +IS +GG +zV +zV +zV +zV +zV +zV +zV +wU +zV +zV +zV +zV +zV +zV +zV +zV +zV +wU +zV +zV +zV +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +Ui +UL +WG +Ui +Yc +Zg +rq +Zm +mv +Ui +Bw +zV +Fi +FY +FY +FY +FY +QN +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZH +ZH +ZH +ZH +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +ZW +ZW +ZW +ZW +ZW +"} +(95,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +as +LB +am +Nn +nV +QR +LF +Ur +fW +uR +RT +pp +is +pp +QB +uR +fW +Ur +WV +QR +Qw +Qw +Qw +QR +kP +oh +Wh +jP +as +fR +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Ei +cQ +cQ +cQ +cQ +cQ +Bj +dq +FJ +kF +Bj +cQ +cQ +cQ +cQ +cQ +Ei +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +Ui +Ui +Ui +Ui +Yn +Zl +iD +Zm +sJ +Ui +Bw +zV +Ff +Yj +Gq +FY +pT +nW +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(96,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +as +jO +jO +jO +jO +as +Ru +Ur +fW +uR +Kj +is +pp +is +ug +tR +Ur +Ur +sm +as +as +as +as +as +Hl +pG +pG +JH +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +dq +FJ +kF +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +Ui +Yp +Zm +vM +SW +CO +Ui +oO +zV +Ff +Yj +II +FY +RG +GO +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(97,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +as +fR +fR +fR +fR +as +jO +jO +jO +as +hT +aZ +VJ +aZ +hM +as +jO +jO +jO +as +Rs +dU +Rs +as +iT +Kb +jC +by +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +xQ +Hr +AD +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +vu +vu +Zr +vu +vu +vu +vu +Bw +zV +Ff +Yj +JC +FY +NR +nW +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(98,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +as +fR +fR +fR +as +jO +jO +jO +jO +jO +as +fR +fR +fR +as +fR +fR +fR +as +jO +jO +jO +jO +as +fR +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +vu +Yq +Zt +HJ +fp +Tv +vu +Bw +zV +Ff +Yj +Gq +FY +yY +nW +FY +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(99,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ZW +ZW +ZW +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +vu +Yr +Zu +Zt +Zt +cB +Mi +BD +zV +Ff +Yj +ye +FY +FY +kZ +FY +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(100,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +vu +Yt +Zx +aK +AO +hP +vu +Bw +zV +Ff +Yj +OO +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(101,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +vu +vu +vu +vu +vu +vu +vu +zh +So +zh +cQ +Yj +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(102,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wx +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Gq +Yj +Bw +zV +Ff +Yj +ye +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(103,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +wv +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +II +Yj +Bw +zV +Ff +Yj +JC +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(104,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +OO +Yj +Bw +zV +Fi +Yj +Gq +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(105,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +ye +cQ +zh +So +zh +cQ +JC +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(106,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +vU +cQ +cQ +cQ +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(107,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +KY +Yj +bM +bM +bM +Yj +tS +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(108,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +KY +Yj +vA +EW +tG +Yj +Hn +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(109,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +Iz +cQ +cQ +cQ +cQ +IB +IB +IB +iy +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(110,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Bw +zV +Ff +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(111,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +la +la +la +la +la +la +cQ +Bw +zV +Fi +cQ +Vp +Vp +Vp +Vp +Vp +Vp +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(112,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +dp +tz +tz +ml +ml +la +cQ +Bw +zV +Ff +cQ +Vp +Ts +lp +lp +Pw +Pw +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(113,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +tz +tz +tz +tz +tz +la +cQ +cx +zV +Xa +cQ +Vp +lp +mf +mf +mf +Pw +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(114,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +tz +tz +wu +tz +tz +la +Iz +Gx +zV +fN +Iz +Vp +lp +mf +Jo +mf +lp +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(115,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +tz +tz +tz +tz +tz +la +cQ +IH +zV +Jd +cQ +Vp +Pw +mf +mf +mf +lp +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(116,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +ml +ml +tz +tz +dp +la +cQ +BD +zV +Ff +cQ +Vp +Pw +Pw +lp +lp +Ts +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(117,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +la +la +la +la +la +la +la +cQ +Bw +zV +Ff +cQ +Vp +Vp +Vp +Vp +Vp +Vp +Vp +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(118,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Bw +zV +Ff +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(119,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +hR +hR +hR +hR +hR +hR +cQ +Bw +zV +Fi +cQ +Ib +Ib +Ib +Ib +Ib +Ib +Ib +vh +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(120,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +QV +QV +QV +QV +ro +hR +cQ +Bw +zV +Ff +cQ +Ib +hg +hg +hg +hg +Vh +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(121,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wA +wA +wA +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +QV +QV +QV +QV +QV +hR +cQ +cx +zV +Xa +cQ +Ib +hg +hg +hg +hg +hg +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(122,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wA +wC +wA +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +QV +QV +AX +QV +QV +hR +Iz +Gx +zV +fN +Iz +Ib +hg +hg +uh +hg +hg +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(123,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wA +wA +wA +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +QV +QV +QV +QV +QV +hR +cQ +IH +zV +Jd +cQ +Ib +hg +hg +hg +hg +hg +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(124,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +ro +QV +QV +QV +QV +hR +cQ +BD +zV +Ff +cQ +Ib +Vh +hg +hg +hg +hg +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(125,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +hR +hR +hR +hR +hR +hR +hR +cQ +Bw +zV +Ff +cQ +Ib +Ib +Ib +Ib +xA +Ib +Ib +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(126,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +cQ +Bw +zV +Ff +cQ +vh +cQ +cQ +cQ +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(127,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +Bw +zV +Ff +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(128,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +vU +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(129,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +KY +Yj +bM +bM +bM +Yj +tS +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(130,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +KY +Yj +vA +EW +tG +Yj +Hn +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(131,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cQ +cQ +cQ +cQ +Iz +cQ +cQ +cQ +cQ +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(132,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(133,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(134,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(135,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(136,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(137,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(138,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(139,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(140,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(141,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(142,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(143,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(144,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(145,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(146,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(147,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(148,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(149,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(150,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(151,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(152,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(153,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(154,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(155,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(156,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(157,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +wI +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(158,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(159,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(160,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(161,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(162,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(163,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(164,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(165,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(166,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(167,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(168,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(169,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(170,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(171,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +dI +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(172,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(173,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(174,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(175,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(176,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(177,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(178,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(179,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +bK +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(180,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(181,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(182,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(183,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(184,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(185,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(186,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(187,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(188,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(189,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(190,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(191,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(192,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(193,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(194,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(195,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(196,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(197,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(198,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(199,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(200,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(201,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(202,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(203,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(204,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(205,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(206,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(207,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(208,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(209,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(210,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(211,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(212,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(213,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(214,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(215,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(216,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(217,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(218,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(219,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(220,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} +(221,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +it +jT +jT +jT +ki +jT +jT +jT +jT +jT +ki +jT +jT +jT +jT +ZW +ZW +ZW +ZW +"} +(222,1,1) = {" +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +jT +lN +lN +lN +lN +lN +lN +lN +lN +lN +lN +lN +lN +lN +jT +ZW +ZW +ZW +ZW +"} +(223,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +aw +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +cs +cs +lN +jT +jT +jT +jT +jT +jT +jT +jT +jT +jT +jT +lN +jT +ZW +ZW +ZW +ZW +"} +(224,1,1) = {" +aw +bb +bb +bb +bb +bb +bb +aw +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +ij +zV +jS +jS +cs +lN +jT +MF +pV +Tc +pn +jT +pr +oK +nP +jj +jT +lN +jT +ZW +ZW +ZW +ZW +"} +(225,1,1) = {" +aw +bc +bc +bc +bc +bc +bc +aw +aw +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +zV +zV +jS +ko +cs +lN +jT +mS +qn +qn +mT +jT +mD +qn +nP +LP +jT +lN +jT +jT +jT +ZW +ZW +"} +(226,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +em +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +zV +zV +jS +jS +cs +lN +jT +mn +qn +qn +nY +jT +pf +px +nP +qw +jT +lN +lN +lN +jT +ZW +ZW +"} +(227,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +em +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +WA +Kh +es +Gy +fY +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +WA +Kh +es +Gy +fY +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +et +et +cs +ZW +ZW +ZW +ZW +cs +cs +cs +cs +cs +cs +cs +cs +cs +zV +zV +jT +jT +jT +mA +jT +jT +oM +jT +jT +jT +jT +jT +on +jT +jT +mA +jT +lN +jT +ZW +ZW +"} +(228,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +em +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +Gw +at +ds +ex +fF +gD +hq +dB +dB +dB +dB +dB +dB +dB +dB +dB +Gw +at +iJ +ex +fF +gD +hq +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +et +et +cs +ZW +ZW +ZW +ZW +cs +eE +eX +gk +gw +eX +gI +eX +cs +im +zV +jU +Bq +IE +IE +IE +IE +ni +nb +nb +nb +nb +pF +pt +nb +zR +ky +jT +lN +jT +ZW +ZW +"} +(229,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +em +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +qZ +aG +mY +eI +mY +gJ +rO +dB +dB +dB +dB +dB +dB +dB +dB +dB +qZ +hK +mY +iV +mY +gJ +rO +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +dm +eu +cs +cs +cs +cs +cs +cs +eX +fP +gf +gB +gF +gK +eX +cs +zV +zV +jU +kG +yK +to +to +cN +ca +pI +pI +pI +pI +pI +qi +pI +tA +qJ +jT +lN +jT +ZW +ZW +"} +(230,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +em +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +rh +aX +mY +vY +mY +gN +hn +dB +dB +dB +dB +dB +dB +dB +dB +dB +rh +ii +mY +vY +mY +gN +hn +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +dm +eu +eF +eF +eF +eF +eF +eu +fb +fQ +fb +gE +eX +gf +gS +hp +ij +zV +jY +kG +BY +pc +pc +Dt +sh +pI +pI +pI +pI +pI +qi +pI +tA +qN +jT +lN +jT +ZW +ZW +"} +(231,1,1) = {" +aw +bu +bu +bu +bu +bu +bu +aw +aw +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +nm +bo +mY +fi +mY +gT +hB +dB +dB +dB +dB +dB +dB +dB +dB +dB +nm +iz +mY +iZ +mY +gT +hB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +uz +eu +eF +eF +eF +eF +eF +eu +Et +fS +fb +fb +fb +gF +eX +cs +iC +zV +jU +kG +BY +pc +pc +MJ +Mu +pI +pI +pI +pI +pI +qi +pI +tA +qI +jT +lN +jT +ZW +ZW +"} +(232,1,1) = {" +ay +bx +db +dh +dh +dV +bx +ay +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +aa +au +dE +fj +fK +hc +hC +dB +dB +dB +dB +dB +dB +dB +dB +dB +aa +au +dE +fj +fK +hc +hC +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +dm +eu +cs +cs +ew +cs +cs +cs +eX +fT +gv +fb +fb +fS +gW +cs +iL +zV +jU +kG +DD +TH +TH +gc +GC +PD +PD +PD +PD +aY +qi +pI +tA +lP +jT +lN +jT +ZW +ZW +"} +(233,1,1) = {" +aN +aN +aN +aN +aN +aN +aN +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +cd +dK +fq +fX +hj +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +cd +dK +fq +fX +hj +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +dD +dD +cs +ZW +ZW +ZW +ZW +cs +fo +gf +gf +gf +fS +fS +fb +hp +iX +zV +jU +yo +kW +kW +kW +kK +aI +oD +oD +oD +oi +nO +sk +PD +SZ +qQ +jT +lN +jT +ZW +ZW +"} +(234,1,1) = {" +aP +bA +bA +bA +bA +bA +bA +aP +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +dD +dD +cs +ZW +ZW +ZW +ZW +cs +fw +gg +eX +eX +gG +fb +fb +cs +cs +jo +jT +kC +mq +oD +oD +oD +Sw +zd +zd +zd +yf +oD +nd +oD +oi +qS +jT +lN +jT +ZW +ZW +"} +(235,1,1) = {" +aN +bL +bL +bL +bL +bL +bL +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +ZW +ZW +ZW +ZW +cs +cs +cs +cs +cs +cs +gM +fb +ht +cs +cs +ke +kG +qd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +IO +qU +jT +lN +jT +ZW +ZW +"} +(236,1,1) = {" +aN +ci +ci +ci +ci +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +fo +gX +fb +iY +jz +kg +kG +qd +zd +Tq +zd +zd +ts +zd +qk +zd +zd +Tq +zd +IO +ri +jT +lN +jT +ZW +ZW +"} +(237,1,1) = {" +aN +ci +ci +ci +ci +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +gO +eX +hz +je +jA +kg +kG +qd +zd +Tq +zd +zd +zd +nC +zd +zd +zd +Tq +zd +IO +rl +jT +lN +jT +ZW +ZW +"} +(238,1,1) = {" +aN +ci +ci +dv +dv +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +eX +fo +hA +je +jI +kg +kG +qd +zd +Tq +zd +zd +eY +zd +YG +zd +zd +Tq +zd +IO +rt +jT +lN +jT +ZW +ZW +"} +(239,1,1) = {" +aN +ci +ci +dF +dv +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +jg +cs +jT +kC +qd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +zd +IO +qt +jT +lN +jT +ZW +ZW +"} +(240,1,1) = {" +aN +ci +ci +dv +dv +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +he +eu +eu +jK +jU +kG +nQ +mR +mR +mR +HA +zd +zd +zd +nf +mR +mR +mR +pi +rv +jT +lN +jT +ZW +ZW +"} +(241,1,1) = {" +aN +ci +ci +ci +ci +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +hi +eu +eu +eu +ki +ie +uq +Eh +Eh +om +nQ +mR +mR +mR +pi +CI +nb +nb +zR +kr +jT +lN +jT +ZW +ZW +"} +(242,1,1) = {" +aN +ci +ci +ci +ci +ci +ci +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +WA +Kh +es +Gy +fY +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +WA +Kh +es +Gy +fY +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +hF +jh +hF +jU +kR +wR +kR +wR +lK +Sa +HO +pb +ag +nb +PJ +pI +pI +tA +rw +jT +lN +jT +ZW +ZW +"} +(243,1,1) = {" +aN +cy +cy +cy +cy +cy +cy +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +Gw +at +dX +ex +fF +gD +hq +dB +dB +dB +dB +dB +dB +dB +dB +dB +Gw +at +iK +ex +fF +gD +hq +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +jn +cs +ek +lc +lc +lc +lc +ls +fr +lO +PB +pI +pI +pI +pI +pI +tA +rz +jT +lN +jT +ZW +ZW +"} +(244,1,1) = {" +aP +bA +bA +bA +bA +bA +bA +aP +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +qZ +cO +mY +fA +mY +gJ +rO +dB +dB +dB +dB +dB +dB +dB +dB +dB +qZ +iA +mY +ji +mY +gJ +rO +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +hN +eu +eu +jT +lc +lc +lc +lc +mF +fr +lO +mU +pI +pI +pI +pI +pI +tA +rB +jT +lN +jT +ZW +ZW +"} +(245,1,1) = {" +aN +aN +aN +aN +aN +aN +aN +aN +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +rh +di +mY +vY +mY +gN +hn +dB +dB +dB +dB +dB +dB +dB +dB +dB +rh +iF +mY +vY +mY +gN +hn +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +hQ +eu +eu +ke +lc +lc +lc +lc +aF +Wc +lO +mU +pI +pI +pI +pI +pI +tA +rE +jT +lN +jT +ZW +ZW +"} +(246,1,1) = {" +ay +cC +dc +dH +dH +eh +cC +ay +aw +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +nm +dj +mY +fD +mY +gT +hB +dB +dB +dB +dB +dB +dB +dB +dB +dB +nm +iH +mY +jp +mY +gT +hB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +hS +eu +eu +jT +lA +lS +lW +lZ +mF +mW +oB +nu +PD +PD +PD +PD +PD +SZ +rG +jT +lN +jT +ZW +ZW +"} +(247,1,1) = {" +aw +bu +bu +bu +bu +bu +bu +aw +aw +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +aa +au +dE +fj +fK +hc +hC +dB +dB +dB +dB +dB +dB +dB +dB +dB +aa +au +dE +fj +fK +hc +hC +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +hQ +eu +eu +jT +jT +jT +jT +jT +jT +jT +jT +jT +nS +jT +jT +jT +jT +OX +jT +jT +lN +jT +ZW +ZW +"} +(248,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +eq +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +cd +dK +fq +fX +hj +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +cd +dK +fq +fX +hj +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +ic +eu +eu +cs +lC +eu +eu +jS +jS +jT +MA +xK +oH +XY +MA +jT +pZ +ky +qx +jT +lN +jT +ZW +ZW +"} +(249,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +eq +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +id +eu +jN +km +eu +eu +eu +jS +ko +jT +nT +xK +oH +XY +nT +jT +pZ +ks +qx +jT +lN +jT +ZW +ZW +"} +(250,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +eq +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +cs +hS +eu +eu +jS +jS +jT +pL +xK +oH +XY +pL +jT +pZ +ky +qx +jT +lN +jT +ZW +ZW +"} +(251,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +eq +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +cs +cs +cs +cs +cs +cs +jT +vw +kt +oH +pK +vw +jT +jT +OX +jT +jT +lN +jT +ZW +ZW +"} +(252,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +ei +eq +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +jT +jT +jT +nS +jT +jT +jT +jT +lN +lN +lN +lN +jT +ZW +ZW +"} +(253,1,1) = {" +aw +bc +bc +bc +bc +bc +bc +aw +aw +aw +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +jT +lN +lN +lN +lN +lN +lN +lN +jT +jT +jT +ZW +ZW +"} +(254,1,1) = {" +aw +cK +cK +cK +cK +cK +cK +aw +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +jT +jT +jT +jT +jT +jT +ki +jT +jT +ZW +ZW +ZW +ZW +"} +(255,1,1) = {" +aw +aw +aw +aw +aw +aw +aw +aw +ZW +ZW +ZW +ZW +ZW +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +dB +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +ZW +"} diff --git a/_maps/experro.json b/_maps/experro.json deleted file mode 100644 index f9a31ebec247..000000000000 --- a/_maps/experro.json +++ /dev/null @@ -1,173 +0,0 @@ -{ - "version": 1, - "map_name": "Ex-Perro", - "map_path": "map_files/Experro", - "map_file": "experro.dmm", - "space_ruin_levels": 0, - "space_empty_levels": 0, - "minetype": "none", - "traits": [ - { - "Mining": true, - "Gravity": true, - "Linkage": null, - "Baseturf": "/turf/open/floor/plating/grass" - } - ], - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - }, - "job_changes": { - "engineer": { - "total_positions": -1, - "spawn_positions": -1 - }, - "officer": { - "total_positions": 2, - "spawn_positions": 2 - }, - "hos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "bomj": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mechanic": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hop": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chief_engineer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "rd": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cmo": { - "total_positions": 0, - "spawn_positions": 0 - }, - "atmos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "scientist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "roboticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "geneticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "doctor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "virologist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chemist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "qm": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cargo_tech": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mining": { - "total_positions": 0, - "spawn_positions": 0 - }, - "bartender": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hydro": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cook": { - "total_positions": 0, - "spawn_positions": 0 - }, - "janitor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "curator": { - "total_positions": 0, - "spawn_positions": 0 - }, - "lawyer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chaplain": { - "total_positions": 0, - "spawn_positions": 0 - }, - "clown": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mime": { - "total_positions": 0, - "spawn_positions": 0 - }, - "assistant": { - "total_positions": 0, - "spawn_positions": 0 - }, - "detective": { - "total_positions": 0, - "spawn_positions": 0 - }, - "warden": { - "total_positions": 0, - "spawn_positions": 0 - }, - "ai": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cyborg": { - "total_positions": 0, - "spawn_positions": 0 - }, - "veteran": { - "total_positions": 0, - "spawn_positions": 0 - }, - "trader": { - "total_positions": 0, - "spawn_positions": 0 - }, - "paramedic": { - "total_positions": 0, - "spawn_positions": 0 - }, - "psychologist": { - "total_positions": 0, - "spawn_positions": 0 - } - } -} diff --git a/_maps/kilo.json b/_maps/kilo.json new file mode 100644 index 000000000000..e023caef0ef1 --- /dev/null +++ b/_maps/kilo.json @@ -0,0 +1,23 @@ +{ + "version": 1, + "map_name": "Kilo", + "map_path": "stations", + "map_file": "kilo.dmm", + "space_ruin_levels": 4, + "shuttles": { + "emergency": "emergency_kilo", + "ferry": "ferry_kilo", + "cargo": "cargo_kilo", + "whiteship": "whiteship_kilo" + }, + "job_changes": { + "cook": { + "additional_cqc_areas": [ + "/area/service/bar/atrium" + ] + }, + "captain": { + "special_charter": "asteroid" + } + } +} diff --git a/_maps/kilostation.json b/_maps/kilostation.json deleted file mode 100644 index 2e5a12298f6c..000000000000 --- a/_maps/kilostation.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "version": 1, - "map_name": "Kilo Station", - "map_path": "map_files/KiloStation", - "map_file": "KiloStation.dmm", - "space_ruin_levels": 4, - "shuttles": { - "emergency": "emergency_kilo", - "ferry": "ferry_kilo", - "cargo": "cargo_kilo", - "whiteship": "whiteship_kilo" - }, - "job_changes": { - "cook": { - "additional_cqc_areas": ["/area/service/bar/atrium"] - }, - "captain": { - "special_charter": "asteroid" - } - } -} diff --git a/_maps/map_files/Mafia/mafia_ayylmao.dmm b/_maps/mafia/mafia_ayylmao.dmm similarity index 97% rename from _maps/map_files/Mafia/mafia_ayylmao.dmm rename to _maps/mafia/mafia_ayylmao.dmm index bfdb1e98d563..024280ae0fae 100644 --- a/_maps/map_files/Mafia/mafia_ayylmao.dmm +++ b/_maps/mafia/mafia_ayylmao.dmm @@ -7,9 +7,8 @@ /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, @@ -70,9 +69,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "x" = ( /obj/machinery/door/poddoor/preopen{ diff --git a/_maps/map_files/Mafia/mafia_ball.dmm b/_maps/mafia/mafia_ball.dmm similarity index 90% rename from _maps/map_files/Mafia/mafia_ball.dmm rename to _maps/mafia/mafia_ball.dmm index 9888821abf97..664d7cfa33d4 100644 --- a/_maps/map_files/Mafia/mafia_ball.dmm +++ b/_maps/mafia/mafia_ball.dmm @@ -12,30 +12,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /obj/machinery/door/airlock/maintenance_hatch{ max_integrity = 99999; @@ -96,9 +88,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) (1,1,1) = {" @@ -219,7 +210,7 @@ b b d d -i +e h c b @@ -231,7 +222,7 @@ a b b c -i +e b b j @@ -446,7 +437,7 @@ b p l b -i +e c b a @@ -557,7 +548,7 @@ b b c h -i +e d d b diff --git a/_maps/map_files/Mafia/mafia_gothic.dmm b/_maps/mafia/mafia_gothic.dmm similarity index 92% rename from _maps/map_files/Mafia/mafia_gothic.dmm rename to _maps/mafia/mafia_gothic.dmm index 3d41f9b16cf8..959da5bf527d 100644 --- a/_maps/map_files/Mafia/mafia_gothic.dmm +++ b/_maps/mafia/mafia_gothic.dmm @@ -12,30 +12,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /turf/closed/indestructible/fakedoor, /area/mafia) @@ -90,9 +82,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "D" = ( /obj/effect/landmark/mafia, @@ -264,7 +255,7 @@ b b d d -i +e h c b @@ -276,7 +267,7 @@ a b b c -i +e b b j @@ -491,7 +482,7 @@ b p l b -i +e c b a @@ -602,7 +593,7 @@ b b c h -i +e d d b diff --git a/_maps/map_files/Mafia/mafia_lavaland.dmm b/_maps/mafia/mafia_lavaland.dmm similarity index 96% rename from _maps/map_files/Mafia/mafia_lavaland.dmm rename to _maps/mafia/mafia_lavaland.dmm index 46fba11afdee..16f75008ca73 100644 --- a/_maps/map_files/Mafia/mafia_lavaland.dmm +++ b/_maps/mafia/mafia_lavaland.dmm @@ -9,30 +9,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /obj/machinery/door/airlock/external{ max_integrity = 99999; @@ -124,9 +116,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "w" = ( /obj/effect/turf_decal/trimline/brown/filled/line{ @@ -480,7 +471,7 @@ Y Y d d -i +e h c Y @@ -492,7 +483,7 @@ a Y Y c -i +e Y Y j @@ -707,7 +698,7 @@ Y p l Y -i +e c Y a @@ -818,7 +809,7 @@ Y Y c h -i +e d d Y diff --git a/_maps/map_files/Mafia/mafia_snow.dmm b/_maps/mafia/mafia_snow.dmm similarity index 95% rename from _maps/map_files/Mafia/mafia_snow.dmm rename to _maps/mafia/mafia_snow.dmm index 079f985380b7..6a849dd726c4 100644 --- a/_maps/map_files/Mafia/mafia_snow.dmm +++ b/_maps/mafia/mafia_snow.dmm @@ -9,30 +9,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /obj/machinery/door/airlock/maintenance_hatch{ max_integrity = 99999; @@ -311,7 +303,7 @@ a b b s -i +e s s j @@ -637,7 +629,7 @@ b b s h -i +e d d s diff --git a/_maps/map_files/Mafia/mafia_spiderclan.dmm b/_maps/mafia/mafia_spiderclan.dmm similarity index 91% rename from _maps/map_files/Mafia/mafia_spiderclan.dmm rename to _maps/mafia/mafia_spiderclan.dmm index 4a7fdd1dfadc..44f82f77cc11 100644 --- a/_maps/map_files/Mafia/mafia_spiderclan.dmm +++ b/_maps/mafia/mafia_spiderclan.dmm @@ -16,30 +16,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /turf/closed/wall/mineral/wood{ desc = "A door that goes nowhere. How kafkaesque."; @@ -95,9 +87,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "B" = ( /obj/structure/showcase{ @@ -231,7 +222,7 @@ S S d d -i +e h c S @@ -243,7 +234,7 @@ a S S c -i +e S S j @@ -458,7 +449,7 @@ S p o S -i +e c S a @@ -569,7 +560,7 @@ S S c h -i +e d d S diff --git a/_maps/map_files/Mafia/mafia_syndie.dmm b/_maps/mafia/mafia_syndie.dmm similarity index 95% rename from _maps/map_files/Mafia/mafia_syndie.dmm rename to _maps/mafia/mafia_syndie.dmm index a2bda6ce2da2..5e683f84d8fd 100644 --- a/_maps/map_files/Mafia/mafia_syndie.dmm +++ b/_maps/mafia/mafia_syndie.dmm @@ -18,30 +18,22 @@ /turf/open/floor/plating, /area/mafia) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "g" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/mafia) "h" = ( /obj/structure/grille/indestructable, /turf/open/floor/plating, /area/mafia) -"i" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/mafia) "j" = ( /obj/machinery/door/airlock/maintenance_hatch{ max_integrity = 99999; @@ -152,9 +144,8 @@ /area/mafia) "v" = ( /obj/mafia_game_board, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/mafia) "w" = ( /turf/closed/indestructible/syndicate, @@ -407,7 +398,7 @@ w w d d -i +e h c w @@ -419,7 +410,7 @@ a w w c -i +e w w j @@ -634,7 +625,7 @@ w p b w -i +e c w a @@ -745,7 +736,7 @@ w w c h -i +e d d w diff --git a/_maps/map_files/Bashenka/bashenka.dmm b/_maps/map_files/Bashenka/bashenka.dmm deleted file mode 100644 index e80d92e3392f..000000000000 --- a/_maps/map_files/Bashenka/bashenka.dmm +++ /dev/null @@ -1,686603 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"aaj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"aar" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"aaT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"aaY" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"abe" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"abf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"abx" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"abL" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"abT" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"acf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"acM" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/primary/starboard) -"acQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"acV" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"adj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/service/bar/atrium) -"adp" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/medicine, -/obj/item/wrench/medical, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"adv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/exit/departure_lounge) -"adW" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aee" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"aes" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"aez" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/aft) -"aeQ" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"aeZ" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"afg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area/red{ - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"afh" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"agm" = ( -/obj/machinery/nanite_chamber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"agn" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"agw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"agz" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmful{ - fan_out_items = 1; - lootcount = 2; - lootdoubles = 0 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"agA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"agI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"agK" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ahe" = ( -/turf/closed/wall/rust, -/area/hallway/primary/aft) -"ahg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"ahk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ahE" = ( -/turf/open/floor/plasteel/stairs/right, -/area/commons/dorms) -"ahO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ahW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"ahY" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aih" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aii" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ail" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aiA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"aiD" = ( -/obj/machinery/computer/upload/ai, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"aiH" = ( -/obj/structure/table/reinforced, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aiX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ajS" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ajU" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio{ - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"aka" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"akq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"alf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"alp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/science/mixing) -"alr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"alA" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"alC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"alF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"alT" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/machinery/camera/autoname, -/obj/structure/table, -/obj/item/clothing/suit/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/suit/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath/cheap, -/obj/item/clothing/mask/breath/cheap, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"alU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/research) -"amm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"amN" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"amO" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ang" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/cell/high{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/stock_parts/cell/high{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"anl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"anG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aon" = ( -/obj/structure/table/glass, -/obj/item/cartridge/chemistry{ - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 3 - }, -/obj/item/cartridge/medical{ - pixel_x = -3 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"aoO" = ( -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"apb" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"apo" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"apv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aqn" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aqo" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"aqt" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"aqK" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"aqY" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aqZ" = ( -/obj/structure/railing, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ara" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/reinforced, -/obj/item/food/mint, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"aru" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"asE" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"asM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel, -/area/security/prison) -"asN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/virology) -"ata" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"atz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium, -/area/engineering/break_room) -"atG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avf" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"avl" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"avS" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"awD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"awY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"axk" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"axu" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"axx" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/virology) -"axJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery/room_b) -"axS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"axY" = ( -/obj/structure/ladder, -/obj/structure/cable, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"ayM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/ore_box, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ayR" = ( -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"azd" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"azg" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"azV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aAh" = ( -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"aAx" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/command) -"aAK" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"aAN" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 1"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"aCb" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aCO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aCQ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aEc" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"aEd" = ( -/obj/effect/turf_decal/trimline/green/corner, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"aEv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aES" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"aFt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aFv" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aFX" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"aGg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"aGi" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"aGp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"aGA" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet/orange, -/area/hallway/secondary/exit/departure_lounge) -"aGK" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"aGR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium{ - dir = 4 - }, -/area/security/prison) -"aGT" = ( -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"aGU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aIc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"aIn" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aIU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aIV" = ( -/obj/structure/closet/toolcloset, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aJF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"aJN" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"aJW" = ( -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"aKD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"aKI" = ( -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/xenobiology) -"aKL" = ( -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"aLl" = ( -/obj/machinery/recharge_station, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"aLt" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/research) -"aLF" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aMz" = ( -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"aMA" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"aMN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aNe" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"aNL" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aNV" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/light, -/turf/open/floor/carpet, -/area/commons/dorms) -"aOc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOd" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aOC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"aOD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"aOK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"aOR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/morgue) -"aPe" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/hallway/primary/aft) -"aPE" = ( -/obj/structure/table/reinforced, -/turf/open/floor/carpet/black, -/area/service/bar) -"aPL" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/computer/arcade/battle, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"aPM" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"aQd" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"aQJ" = ( -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aQP" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"aRd" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"aRe" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"aRo" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"aRw" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"aRU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/plasteel, -/area/command/heads_quarters/captain/private) -"aSC" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"aSR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSZ" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aTv" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aTw" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"aTL" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"aUd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"aUm" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"aUG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aUO" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"aUU" = ( -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"aUV" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"aVl" = ( -/obj/machinery/computer/atmos_control/toxinsmix{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"aVt" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aVJ" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/research) -"aWa" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aWi" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aWE" = ( -/obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"aWF" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"aWL" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"aWR" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aXu" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aXv" = ( -/obj/structure/sign/decksign{ - cur_deck = 2 - }, -/turf/closed/wall/r_wall, -/area/service/bar/atrium) -"aXR" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aYp" = ( -/turf/open/floor/noslip, -/area/science/research) -"aYu" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYZ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"aZe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"aZq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bax" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bbp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"bbH" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/rd) -"bce" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"bcu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bcv" = ( -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bcx" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"bdc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bdd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bds" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"bdu" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bdL" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdP" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/machinery/camera{ - c_tag = "Xenobiology - Starboard"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"bee" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bej" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bel" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bfb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"bfc" = ( -/turf/closed/indestructible/black, -/area/icemoon/surface/outdoors) -"bfh" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command) -"bfu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bfN" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bgw" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"bgN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bhm" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"bhF" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"bhU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bhV" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"bil" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/service/bar/atrium) -"bin" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"biB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"bji" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bjS" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bks" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/clothing/glasses/sunglasses/big, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"blg" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"blp" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bls" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"blJ" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"blS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"blT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"blU" = ( -/obj/structure/rack, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bma" = ( -/obj/structure/plaque/static_plaque/atmos, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bmd" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"bmW" = ( -/obj/effect/turf_decal/trimline/green/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"bnc" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"boT" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"bpr" = ( -/obj/structure/bed, -/obj/item/bedsheet/qm, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"bqd" = ( -/turf/open/floor/plasteel/stairs/left, -/area/service/bar/atrium) -"bqs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/mixing) -"bqu" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bqO" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 3 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"brb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bsd" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/turf/open/space/basic, -/area/command/gateway) -"bsY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"btK" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"btP" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"bul" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"buo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"buH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"buQ" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/command) -"buW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/hydroponics) -"bvm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"bwt" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bxk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bxv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"bxA" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"bxK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"byo" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"byx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"bzb" = ( -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bzk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/medical/medbay/central) -"bzl" = ( -/obj/machinery/power/tesla_coil, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"bzv" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bzw" = ( -/obj/machinery/bluespace_beacon, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"bzE" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bAw" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bAL" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"bAS" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"bAY" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bBw" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bBN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bCA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bDL" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"bDM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bEj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"bEy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bEU" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/storage/eva) -"bFy" = ( -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"bFQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/science/research) -"bHD" = ( -/turf/closed/mineral/random/vietnam, -/area/boxplanet/surface) -"bHF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bHI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"bHK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIY" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research) -"bJm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJv" = ( -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"bJM" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/dark, -/area/science/research) -"bJR" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bKq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bKs" = ( -/obj/structure/rack, -/obj/effect/turf_decal/delivery, -/obj/item/beacon, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/command/gateway) -"bKw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel, -/area/science/research) -"bKP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"bKV" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bKZ" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"bLg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bLF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/medium{ - dir = 4 - }, -/area/hallway/secondary/entry) -"bLJ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/medical/medbay/central) -"bLO" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/commons/dorms) -"bMa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/medical/medbay/central) -"bMb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"bMG" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"bML" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"bMY" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bNk" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/science/research) -"bNT" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/secondary/entry) -"bNY" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"bOa" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bOu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bOv" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/glasses/welding, -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bOE" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/stack/rods/fifty, -/obj/item/gps, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bOJ" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bOP" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"bOS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bPU" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/tree/jungle{ - pixel_y = -69 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"bQr" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/service/bar/atrium) -"bQI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"bRG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/lawoffice) -"bSd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"bSo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bSq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"bSs" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/turf/open/floor/plasteel, -/area/medical/virology) -"bSH" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSL" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bST" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"bSZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"bTn" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"bTW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/turret_protected/ai_upload) -"bUf" = ( -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"bUk" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"bUy" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"bUG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"bVz" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVE" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"bVO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bVX" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"bWf" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bWB" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bWZ" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bXH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/cargo/storage) -"bYm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bYp" = ( -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bYZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"bZe" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"caf" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"cak" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"caq" = ( -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"caO" = ( -/obj/structure/table, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"caX" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cbl" = ( -/obj/structure/table/wood, -/obj/item/storage/box/beanbag, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/turf/open/floor/carpet/black, -/area/service/bar) -"cbw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ccd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ccC" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/boxplanet/surface) -"ccJ" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/lawyer, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"ccQ" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"cdz" = ( -/turf/open/floor/plasteel/white/corner, -/area/medical/virology) -"cdB" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cdL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cdW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cev" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/machinery/light, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"cgc" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cgi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"che" = ( -/obj/structure/dresser, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"chv" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/hallway/secondary/exit/departure_lounge) -"chB" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"chF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/commons/dorms) -"chR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"chT" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"chU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/service/bar/atrium) -"chW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"ciO" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/computer/arcade/orion_trail{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ciQ" = ( -/turf/open/floor/plating, -/area/maintenance/solars) -"cjq" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/service/bar/atrium) -"cjY" = ( -/obj/machinery/smartfridge/organ, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"ckl" = ( -/obj/structure/bonfire, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"ckr" = ( -/obj/machinery/vending/cart, -/turf/open/floor/carpet/black, -/area/command) -"ckv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/library) -"ckz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ckA" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/command) -"ckN" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"cld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"clf" = ( -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"clE" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"clK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/xenobiology) -"cmz" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"cmM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson/engine, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"cmW" = ( -/turf/open/floor/plasteel/dark, -/area/science/research) -"cne" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white/side, -/area/medical/sleeper) -"cnM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"cnP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"com" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/plasteel/dark/snowdin, -/area/science/research) -"coK" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/pen/red, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"coS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"cpK" = ( -/obj/machinery/atmospherics/miner/n2o, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"cpZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"cqW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"crn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"crN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"csK" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"csL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"csV" = ( -/turf/closed/wall/r_wall, -/area/medical/surgery/room_b) -"csW" = ( -/obj/machinery/plate_press, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side, -/area/security/prison) -"cth" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ctj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ctA" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cug" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cuH" = ( -/turf/open/floor/plasteel/stairs{ - dir = 4 - }, -/area/hallway/primary/aft) -"cuI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cuX" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cvg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cvL" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/hop) -"cwb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"cwk" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cwx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/medical/medbay/central) -"cwF" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cxl" = ( -/obj/structure/table, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cxo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"cyw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/security/detectives_office) -"cyF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"cyR" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cyT" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/command/heads_quarters/rd) -"czk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars) -"czp" = ( -/obj/structure/table/reinforced, -/obj/item/lighter, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"czs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/cargo/storage) -"czB" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"czC" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"czL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAs" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"cAL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cBv" = ( -/obj/structure/rack, -/obj/item/grown/log/tree{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/grown/log/tree{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"cCx" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cDc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/science/research) -"cDT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/research) -"cEo" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cEx" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery/room_b) -"cEE" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"cFd" = ( -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/central) -"cGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/commons/dorms) -"cGu" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cGH" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"cGQ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cHB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"cHE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"cHF" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Upload"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cHM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cIr" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"cJr" = ( -/obj/machinery/nanite_chamber, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"cKb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"cKi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"cKn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"cKV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cLB" = ( -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"cLD" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cLR" = ( -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"cMp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"cMr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/mob/living/carbon/human/species/monkey, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"cMM" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"cMQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/research) -"cMT" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/secondary/command) -"cNM" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"cOe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"cOi" = ( -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"cOt" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cOU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"cPX" = ( -/obj/structure/sign/decksign, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cQn" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"cQx" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/commons/dorms) -"cRb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cRJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/openspace, -/area/maintenance/solars) -"cSb" = ( -/obj/machinery/processor/slime, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/command) -"cSs" = ( -/obj/structure/table/reinforced, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/turf/open/floor/plasteel, -/area/science/mixing) -"cSF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cSI" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cTv" = ( -/obj/structure/closet/crate/secure/loot, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cTy" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cTD" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cTH" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cTL" = ( -/obj/machinery/telecomms/processor/preset_two, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cUe" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/hallway/secondary/exit/departure_lounge) -"cUi" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cUj" = ( -/obj/machinery/vending/medical, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cUr" = ( -/obj/structure/displaycase/trophy, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command) -"cUy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cUK" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"cUY" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"cVm" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/snowdin, -/area/science/research) -"cVw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cVX" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"cWh" = ( -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"cWm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/primary/aft) -"cWr" = ( -/obj/machinery/monkey_recycler, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cWZ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"cXf" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"cXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cXW" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"cYh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/cargo/storage) -"cYx" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cYO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"cYP" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"cZw" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/commons/dorms) -"cZE" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/obj/item/stack/medical/mesh, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/syringe/multiver, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/gauze, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"cZU" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cZZ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"das" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"daN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"daX" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"dbh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dbt" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"dbx" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"dbT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"ddA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"ddI" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"ddJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"deg" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"deh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"deJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dfe" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"dfo" = ( -/turf/open/floor/plasteel/dark/side, -/area/commons/dorms) -"dfv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dfT" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"dgc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dgt" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"dgE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dgI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"dhD" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/icemoon, -/area/science/research) -"dhV" = ( -/obj/structure/closet/boxinggloves, -/turf/open/floor/plasteel, -/area/commons/dorms) -"dih" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/service/bar/atrium) -"diq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"diF" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"diN" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"diV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"djd" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"djo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"djx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/research) -"djQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"djZ" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 8; - input_dir = 4; - output_dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dkO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"dlg" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dlq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dlT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dmv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dnv" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"dnD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"doh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"dom" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"doE" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/starboard) -"doS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"dpw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/cargo/storage) -"dqc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"dqm" = ( -/turf/open/floor/plasteel, -/area/command/gateway) -"dqn" = ( -/obj/machinery/vending/autodrobe, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/theater) -"drj" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"drx" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"drD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"drS" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/surgery/room_b) -"dsf" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dsw" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"dsx" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dtj" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dtq" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"dud" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"duV" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dvd" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/sleeper) -"dvm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"dvT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"dwc" = ( -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"dwt" = ( -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"dwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"dwT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/medical/medbay/central) -"dxB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command) -"dxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"dyN" = ( -/obj/structure/sign/decksign{ - cur_deck = 6 - }, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"dzj" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dzF" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/green/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"dAx" = ( -/obj/item/pickaxe, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"dAH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/tier_2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dAU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dAW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/research) -"dBq" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"dBM" = ( -/obj/effect/turf_decal/stripes/red/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dCp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/hallway/secondary/command) -"dDj" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"dDo" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel, -/area/science/research) -"dDV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dEb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"dEf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"dEm" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dEo" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dEI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/kitchen) -"dEP" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"dFf" = ( -/turf/open/floor/plasteel/stairs/right, -/area/medical/medbay/central) -"dFy" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"dGk" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot_red, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dGN" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"dHE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dHQ" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"dIv" = ( -/obj/structure/table/wood/fancy/black, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"dIy" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dIO" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"dJP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dKD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"dKE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"dKT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"dLp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"dMb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/commons/dorms) -"dMd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/medical/medbay/central) -"dMe" = ( -/obj/effect/turf_decal/stripes/red/corner, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"dMv" = ( -/turf/open/floor/plasteel/grimy, -/area/command) -"dMy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/ce) -"dMV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"dNq" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/chapel/main) -"dNz" = ( -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"dNH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/research) -"dNW" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/wood, -/area/service/library) -"dOo" = ( -/obj/machinery/ore_silo, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/ai_monitored/command/nuke_storage) -"dOC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dOV" = ( -/obj/structure/altar_of_gods, -/obj/item/storage/book/bible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"dPg" = ( -/obj/machinery/vending/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dPC" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"dPZ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/command/gateway) -"dQs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"dQt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"dRc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dRd" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dRq" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"dRJ" = ( -/obj/machinery/computer/gateway_control{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"dSg" = ( -/obj/structure/closet/secure_closet/detective, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"dSp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"dSt" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/trimline/green/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"dTl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/hallway/secondary/command) -"dTC" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"dTI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/suit_storage_unit/captain, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/command/heads_quarters/captain/private) -"dUt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dVy" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"dVF" = ( -/obj/structure/closet/athletic_mixed, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel, -/area/commons/dorms) -"dWu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dWS" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"dWX" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"dXb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dYN" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dYZ" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/wood, -/area/service/library) -"dZg" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dZk" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dZu" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"dZJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"dZY" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eac" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"eah" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"eav" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"eaK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eaM" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"eaV" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/science/research) -"ece" = ( -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"ech" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/sleeper) -"ecu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ecI" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"edm" = ( -/turf/open/floor/plasteel/dark/side, -/area/science/research) -"edZ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"eee" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"eek" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"eey" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"eeL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/medical/medbay/central) -"efc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"efh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"efr" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"efx" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"efZ" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"egz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"egO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"eie" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/service/bar/atrium) -"eit" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ejp" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"ejJ" = ( -/obj/machinery/button/door{ - id = "PermaLockdown"; - name = "Panic Button"; - pixel_x = -24; - pixel_y = 7; - req_access_txt = "2" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ejZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"ekg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ekp" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ekM" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"ekO" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"elc" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"elt" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"elw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ema" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"ems" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"enm" = ( -/obj/structure/rack, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"eof" = ( -/obj/effect/turf_decal/trimline/red/filled/end{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"eoD" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/rd) -"eqG" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"eqY" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"erp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"erH" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/commons/dorms) -"erS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"esd" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/head/kitty, -/obj/item/clothing/under/costume/maid, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"esi" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"esP" = ( -/turf/open/floor/plasteel, -/area/service/hydroponics) -"etn" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/detective, -/turf/open/floor/wood, -/area/security/detectives_office) -"ets" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"etP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"euG" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"evt" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"evL" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"evN" = ( -/obj/structure/table, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"ewi" = ( -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command) -"ewO" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"exh" = ( -/obj/effect/mapping_helpers/dead_body_placer, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/medical/morgue) -"exl" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"exq" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"exK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"exU" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/medbay/central) -"eyF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"eyO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ezy" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ezT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"eAD" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"eBz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/black, -/area/service/bar) -"eBD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command) -"eBI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"eBU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"eBW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/lab) -"eBY" = ( -/obj/structure/rack, -/obj/item/storage/bag/trash, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"eCr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"eDe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eDs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"eDu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eDE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"eDW" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump/on/orange{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"eEa" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"eEy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"eEA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"eEU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"eEW" = ( -/obj/structure/tank_dispenser, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"eFp" = ( -/turf/open/floor/plasteel, -/area/science/research) -"eGT" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"eHz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eHA" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/manufactory) -"eHU" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"eIB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"eIG" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"eKm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/beacon, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"eKn" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"eKt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"eKA" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/security/prison) -"eKT" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"eLn" = ( -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel/grimy, -/area/command) -"eLL" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/hop) -"eLP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"eLW" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"eMq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"eNn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eNT" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"eNV" = ( -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"ePQ" = ( -/obj/item/storage/cans/sixbeer, -/turf/open/floor/glass/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"ePS" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"eQn" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eQx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"eQR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"eRD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"eSg" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/command) -"eTs" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eTG" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 6 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"eTJ" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"eUB" = ( -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"eUD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/beacon, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"eUE" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"eUN" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eUS" = ( -/obj/structure/table/wood, -/obj/item/aicard, -/obj/item/storage/secure/briefcase, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command) -"eVo" = ( -/obj/machinery/vending/medical, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"eVD" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/security/detectives_office) -"eVV" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"eVX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eWn" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"eWP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/command) -"eXm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"eXn" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eXr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"eXF" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"eXM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eYA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/entry) -"eYZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eZy" = ( -/obj/machinery/ai_slipper/smartfoam, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eZT" = ( -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"eZZ" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fan" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"fbg" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"fbB" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"fbE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"fcQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fel" = ( -/turf/open/floor/plasteel, -/area/engineering/break_room) -"feY" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/virology) -"feZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"ffm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"fft" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"fgn" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"fgK" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fgW" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"fha" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fhh" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fhA" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"fhE" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"fhO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fiu" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"fix" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"fiM" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/hop) -"fjt" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fjM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"fkp" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fkT" = ( -/obj/machinery/grill, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"flp" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"flq" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side, -/area/medical/chemistry) -"flS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"fmv" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"fmN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"fmR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/cargo/storage) -"fna" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fng" = ( -/obj/structure/table/wood, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"fnl" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fnO" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"foU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/lawoffice) -"fpg" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"fph" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"fpu" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fpv" = ( -/turf/open/floor/noslip, -/area/service/bar/atrium) -"fpX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/grass, -/area/cargo/storage) -"fpZ" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"fqj" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"fqV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"frk" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"frv" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"frG" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"fsm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"fsN" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"fti" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ftn" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"fty" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"ftL" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/ce) -"ftZ" = ( -/obj/structure/table, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"fug" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"ful" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"fuA" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/item/stamp/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/command) -"fuH" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"fvi" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"fvr" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"fvv" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"fvD" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fvL" = ( -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"fwf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"fwm" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"fwJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"fwT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fxJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fxM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fxT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"fyh" = ( -/turf/open/chasm/jungle, -/area/boxplanet/surface) -"fyy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fyI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"fzc" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/command) -"fzi" = ( -/obj/structure/table/wood, -/obj/item/camera/detective, -/obj/item/hand_labeler, -/obj/item/folder/red, -/turf/open/floor/wood, -/area/security/detectives_office) -"fzl" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"fzL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"fAs" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"fAB" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"fAC" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs, -/area/hallway/primary/aft) -"fBs" = ( -/obj/structure/destructible/cult/tome, -/obj/item/book/codex_gigas, -/turf/open/floor/wood, -/area/service/library) -"fBC" = ( -/obj/machinery/computer/shuttle_flight/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fCd" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = -2 - }, -/obj/item/cartridge/detective, -/obj/item/cartridge/detective, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"fCv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fDf" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/ce) -"fDo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/service/bar/atrium) -"fDq" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"fDB" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fDI" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fEt" = ( -/obj/structure/sign/decksign{ - cur_deck = 7 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/starboard) -"fEy" = ( -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fEC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/theater) -"fEM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fES" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/pen/red, -/turf/open/floor/wood, -/area/lawoffice) -"fFg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"fFi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fFn" = ( -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fFE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fFJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fGv" = ( -/obj/structure/filingcabinet/employment, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"fGX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"fHr" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/theater) -"fHA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/pdapainter/research, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fHV" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"fIa" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"fIh" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fIm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fIt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/command) -"fIO" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/red, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fJf" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fJQ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/tank/internals/plasma, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fKJ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"fKU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fLc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"fLe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/service/bar/atrium) -"fLk" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet, -/area/commons/dorms) -"fLH" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fMf" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fMi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/research) -"fMI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"fNv" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fOh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/plasteel, -/area/medical/virology) -"fOl" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fOu" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"fOM" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/snowdin, -/area/science/research) -"fOU" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fPp" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/command) -"fPt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fPw" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"fPW" = ( -/obj/structure/rack, -/obj/effect/turf_decal/delivery/red, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"fQe" = ( -/obj/machinery/door/window/brigdoor/southleft, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"fQA" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"fQZ" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hallway/primary/starboard) -"fRb" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fRx" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"fSp" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/science/research) -"fSx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"fSG" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/clothing/glasses/meson{ - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fSZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fTu" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fTw" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fTH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"fTI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"fTW" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"fUe" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"fUD" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/medbay/central) -"fUJ" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fUR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fVf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/manufactory) -"fVn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fVu" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fVz" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"fVG" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fWl" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/service/theater) -"fWD" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fWN" = ( -/obj/structure/cable, -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fXn" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fXq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"fXr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fXw" = ( -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"fXM" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"fXO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"fYn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fZV" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"fZW" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"gaD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gaG" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gaZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gbj" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gbs" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gbt" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gbv" = ( -/obj/structure/table, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gbL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"gcq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"gct" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/morgue) -"gcv" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin 4" - }, -/obj/structure/barricade/wooden/crude/snow, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"gcV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gcY" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/wood, -/area/lawoffice) -"gdk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gdI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light, -/turf/open/floor/grass, -/area/cargo/storage) -"geB" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"geN" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"geQ" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"geV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"gfd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"gfe" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/research) -"gfT" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "71" - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/mixing) -"gfW" = ( -/obj/machinery/computer/operating, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/surgery/room_b) -"ggb" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"ggB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ghd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"ghV" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gih" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"giw" = ( -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"giG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"giO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/central) -"gjZ" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gka" = ( -/obj/machinery/copytech_platform, -/turf/open/floor/plating, -/area/engineering/manufactory) -"gkg" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"gkM" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"glj" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"gma" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"gmg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gmh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/loot_site_spawner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gmG" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"gmT" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gmY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"gnj" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gnp" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gnN" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"gnW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side, -/area/security/prison) -"gok" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/commons/dorms) -"goG" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"goL" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"goM" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gpn" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gpw" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 3"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"gpC" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"gpK" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"gpQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/multitool, -/obj/item/pen/red, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gpT" = ( -/obj/structure/closet/crate, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/onion, -/obj/item/food/grown/onion, -/obj/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"gpW" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"gqm" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/carpet/black, -/area/command) -"gqv" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"grd" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"grf" = ( -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"grj" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"grE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/commons/dorms) -"grN" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"gsj" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"gsp" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/exit/departure_lounge) -"gsX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/entry) -"gte" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"gti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"gtQ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gtR" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"guc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"guh" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"guq" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/engineering/break_room) -"gur" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"guB" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"guI" = ( -/obj/structure/cable, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"guK" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"gvd" = ( -/turf/closed/mineral/random/jungle, -/area/icemoon/surface/outdoors) -"gvk" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"gvs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"gwd" = ( -/obj/machinery/autolathe, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gwh" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/chemistry) -"gwo" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/medical/medbay/central) -"gwv" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/science/research) -"gwD" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"gwW" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gxh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/icemoon, -/area/medical/medbay/central) -"gxR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/science/research) -"gyD" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"gzv" = ( -/obj/effect/turf_decal/trimline/green/line, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gzH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gAi" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -14; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command) -"gAv" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gAx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"gAZ" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"gBY" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"gCo" = ( -/turf/closed/wall/r_wall, -/area/medical/sleeper) -"gCs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/orange, -/area/hallway/secondary/exit/departure_lounge) -"gDB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gDF" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gDU" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"gEW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"gFb" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"gFe" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gFp" = ( -/obj/machinery/pdapainter, -/turf/open/floor/plasteel/grimy, -/area/command) -"gFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"gFO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gGg" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gGj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gGz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gGL" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gGN" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"gGW" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gHf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gHL" = ( -/obj/machinery/power/solar, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/solars/starboard/aft) -"gIH" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"gIN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gIT" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gJn" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"gJs" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"gKi" = ( -/obj/structure/closet/secure_closet/cytology, -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gKn" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"gKr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"gKD" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/commons/dorms) -"gKW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/turret_protected/ai_upload) -"gLf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gLg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"gLx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gLO" = ( -/turf/open/openspace/airless, -/area/science/server) -"gMc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"gMl" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gMS" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gNd" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gNj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gNZ" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"gOl" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gOE" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gOR" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"gPk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"gPx" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/wood{ - amount = 15 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"gPV" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"gPY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"gQf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"gQh" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gQE" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"gQH" = ( -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gQN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"gQX" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/carpet/black, -/area/command) -"gRu" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"gRz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/service/bar/atrium) -"gRS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"gSd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/commons/dorms) -"gSr" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"gSK" = ( -/obj/structure/table/reinforced, -/obj/item/cartridge/engineering{ - pixel_y = 6 - }, -/obj/item/cartridge/engineering{ - pixel_x = 6 - }, -/obj/item/cartridge/engineering{ - pixel_x = -6 - }, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/ce) -"gSS" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/research) -"gTc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gTm" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"gTZ" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/reset/purge{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/ai_module/supplied/protect_station{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ai_module/zeroth/onehuman, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"gUk" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gUp" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/research) -"gUt" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gUA" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gUI" = ( -/turf/open/floor/plasteel/white/side, -/area/medical/sleeper) -"gVe" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"gVi" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/hallway/primary/aft) -"gVy" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"gVz" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gVB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gVW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gWu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gWv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"gWA" = ( -/turf/closed/wall/r_wall, -/area/commons/dorms) -"gWE" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"gXq" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"gXu" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"gXy" = ( -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/starboard) -"gXD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"gXZ" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/storage/box/deputy, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"gYC" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"gYH" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"gYW" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"gYY" = ( -/obj/machinery/button/door{ - id = "kitchenside"; - name = "Kitchen Side Shutters"; - pixel_x = 26; - pixel_y = -8; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"gZn" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"gZo" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gZy" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gZE" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gZH" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet/black, -/area/service/bar) -"has" = ( -/obj/structure/bookcase/random, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"haA" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"haL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"hbm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hbq" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"hbv" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"hbH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"hbJ" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"hci" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel, -/area/science/mixing) -"hcM" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 10 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hdf" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"hdr" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"heb" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"hec" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hel" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"hez" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/aft) -"heO" = ( -/obj/machinery/door/airlock{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"hfi" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/chemistry) -"hfx" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"hfG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"hgk" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"hhf" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"hhp" = ( -/obj/structure/rack, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"hhy" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"hhz" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner, -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"hhA" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hhC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"hhK" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"hhZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hia" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/door/window/eastright{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"hiu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light, -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = -5 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 - }, -/obj/item/geiger_counter, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hiz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"hiP" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"hjb" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hjf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hjt" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"hkc" = ( -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/carpet/black, -/area/service/bar) -"hkm" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hkn" = ( -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/theater) -"hko" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hks" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hlt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"hlH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"hmx" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hmS" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"hmT" = ( -/obj/machinery/mechpad, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"hmV" = ( -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark/side, -/area/service/bar/atrium) -"hns" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"hny" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hnD" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"hnR" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"hoc" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/item/stamp/ce, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"hof" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"hok" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"hop" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"hoH" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hpl" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hps" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"hpu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"hpw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"hpV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hpX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/machinery/navbeacon/wayfinding{ - location = "Escape" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hqu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hqD" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hqQ" = ( -/obj/machinery/computer{ - dir = 4 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"hra" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"hrc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hsb" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"hsK" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hsU" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"hsW" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/entry) -"htY" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"hue" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"huh" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"huP" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/pen/blue, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"hvD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"hvH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hwf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"hwh" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel, -/area/science/research) -"hwY" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hxe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hxt" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hyd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hyP" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hzt" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"hzA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hzZ" = ( -/turf/closed/mineral/random/vietnam, -/area/icemoon/surface/outdoors) -"hAh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"hAU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hBV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"hCq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"hCF" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/command) -"hCQ" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"hCY" = ( -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"hDa" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/loading_area/red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hDo" = ( -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hEg" = ( -/obj/structure/cable, -/obj/item/beacon, -/turf/open/floor/wood, -/area/service/library) -"hEh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"hFA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hFN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"hFR" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"hFW" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hGw" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"hGx" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hGS" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"hHc" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hHk" = ( -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"hHo" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/engineering/break_room) -"hHC" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hHI" = ( -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"hHS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hIf" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"hIJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"hIK" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/stamp/hop, -/obj/item/pen, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"hIX" = ( -/obj/structure/table/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"hJe" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"hJH" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/chemistry) -"hJK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hJL" = ( -/obj/structure/barricade/wooden/dark, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"hJX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hKO" = ( -/obj/structure/barricade/wooden/crude/snow, -/obj/effect/decal/cleanable/blood/tracks, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"hLl" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"hLO" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/ai_monitored/command/nuke_storage) -"hLQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"hLZ" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/carpet/black, -/area/service/bar) -"hMm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/science/server) -"hMz" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"hMG" = ( -/obj/machinery/door/airlock/command{ - name = "Lift" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"hMW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"hMX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"hNb" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hNm" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hNE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/cartridge/quartermaster{ - pixel_y = 6 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = -6 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6 - }, -/obj/item/gps/mining, -/obj/machinery/camera/autoname, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"hNP" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hNX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hOa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"hOd" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/beerkeg, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"hOC" = ( -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"hOQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"hOT" = ( -/obj/machinery/lazylift_button, -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/shuttle/turbolift/primary) -"hPI" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hPN" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"hPO" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"hQd" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"hQk" = ( -/obj/machinery/light, -/turf/open/openspace, -/area/shuttle/turbolift/primary) -"hQl" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"hQw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hQx" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"hRk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"hRq" = ( -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"hRQ" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/structure/curtain, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/primary/aft) -"hRY" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/aft) -"hSu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"hTf" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"hTw" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hTG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/service/bar/atrium) -"hUc" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hUF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hVs" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"hVt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hVZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"hWP" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/commons/dorms) -"hXu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"hXD" = ( -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hXP" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - desc = "Whatever it is, it reeks of foul, putrid froth."; - list_reagents = list(/datum/reagent/consumable/ethanol/bacchus_blessing = 15); - name = "Delta-Down"; - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"hXQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"hYd" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hYj" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"hYy" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hYI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"hYZ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"hZk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"hZN" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"iah" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iaS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ibW" = ( -/obj/structure/lattice, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"icu" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"icz" = ( -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/command/nuke_storage) -"icC" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"icE" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat/security, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"icR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"icX" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"ida" = ( -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/storage) -"idb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"idl" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"idr" = ( -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"idt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"idK" = ( -/turf/open/floor/plasteel/dark, -/area/security/prison) -"idP" = ( -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"iet" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"ieI" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"ieV" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"ifb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ifl" = ( -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ifp" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"igF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"igN" = ( -/obj/machinery/disposal/delivery_chute{ - desc = "Enter at your own risk!"; - dir = 8; - name = "\improper Pipeline to Brazil" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/door/window/westright{ - name = "Brazil Pipe Access"; - req_access_txt = "31" - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/cargo/storage) -"ihh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"ihv" = ( -/obj/structure/table/reinforced, -/obj/machinery/chem_dispenser/drinks{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"ihJ" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Fitness Ring" - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"iiV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"iiX" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ikb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"ikx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ikA" = ( -/obj/machinery/airalarm/mixingchamber{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"ikC" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/hallway/secondary/command) -"ilz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ilE" = ( -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"ilN" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/item/reagent_containers/spray/pepper, -/obj/item/clothing/gloves/color/orange, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ilY" = ( -/turf/closed/wall/r_wall, -/area/service/library) -"imK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ioe" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ioo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ipu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"iqd" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iqq" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"iqw" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"iqy" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/science/research) -"iqN" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iqW" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"irl" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/command/nuke_storage) -"irx" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"isp" = ( -/turf/open/floor/plasteel/stairs/left, -/area/commons/dorms) -"itb" = ( -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"itL" = ( -/obj/machinery/door/airlock/research{ - name = "Break Room"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"itP" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"iur" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iux" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/pdapainter/medbay, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"iuG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"iuV" = ( -/obj/structure/closet/secure_closet/hos, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"iuY" = ( -/obj/machinery/door/airlock/research{ - name = "Nanite Lab"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"ivK" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ivT" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"iwe" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/medbay/central) -"iwS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ixg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/command) -"ixn" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"ixr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"ixK" = ( -/obj/structure/table/wood, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ixN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/secondary/command) -"iya" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/command) -"iyn" = ( -/obj/structure/closet/masks, -/turf/open/floor/plasteel, -/area/commons/dorms) -"iyz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"izj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/research) -"izn" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"izr" = ( -/turf/open/floor/plasteel/stairs/right, -/area/service/bar/atrium) -"izH" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"izQ" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"izV" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"iAa" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit/departure_lounge) -"iAh" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/fastload/planetmos, -/area/solars/starboard/aft) -"iBm" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iCk" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"iCn" = ( -/obj/machinery/biogenerator, -/turf/closed/wall/r_wall, -/area/service/hydroponics) -"iCq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"iCw" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iCP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"iDj" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/medical/medbay/central) -"iDk" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/science/research) -"iDM" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"iEV" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/commons/dorms) -"iEW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iFz" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/commons/dorms) -"iFN" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"iGf" = ( -/obj/machinery/chem_master/condimaster{ - name = "BrewMaster 3000" - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iGn" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"iGG" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/command/gateway) -"iGK" = ( -/turf/open/floor/plasteel/stairs{ - dir = 8 - }, -/area/hallway/primary/aft) -"iGS" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"iGV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iGZ" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"iHd" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"iHe" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"iHS" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"iHT" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"iIG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"iIK" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"iJx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iJG" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/light, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"iKd" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iKu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"iKK" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/main) -"iLa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"iLA" = ( -/obj/structure/ladder, -/obj/structure/cable, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"iLW" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/surgery/room_b) -"iMa" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"iMJ" = ( -/obj/item/beacon, -/turf/open/floor/plasteel/grimy, -/area/command) -"iML" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"iNi" = ( -/obj/machinery/libraryscanner, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/service/library) -"iNQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"iNT" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"iOg" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"iOQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 6 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"iOT" = ( -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/solars/starboard/aft) -"iOV" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"iPF" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"iPG" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/landmark/start/prisoner, -/obj/item/toy/plush/pkplush, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"iPJ" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/supplied/freeform, -/obj/item/ai_module/reset, -/obj/item/ai_module/supplied/quarantine, -/obj/item/ai_module/core/full/asimov{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/ai_module/core/freeformcore{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"iPQ" = ( -/turf/open/floor/plasteel, -/area/commons/dorms) -"iQc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"iQo" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"iQr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"iQt" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"iQR" = ( -/obj/structure/closet/crate/secure/loot, -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"iRM" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/commons/dorms) -"iSk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"iTM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"iTQ" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"iUy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/security/brig) -"iUJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"iUK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iUP" = ( -/obj/machinery/computer/operating, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/medical/surgery/room_b) -"iUT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iVe" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/science/research) -"iVh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/service/bar/atrium) -"iVk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"iVC" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iVF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"iVK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"iVX" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"iWi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"iWA" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"iXb" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"iXf" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"iXi" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iXA" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/service/bar/atrium) -"iXB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/primary/starboard) -"iXH" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iXO" = ( -/obj/machinery/camera/autoname, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iXY" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iYw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iZj" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/research) -"iZF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"jah" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jap" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"jar" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jaV" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"jbN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"jdl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jdz" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/mob/living/carbon/human/species/monkey, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"jdL" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jdZ" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"jen" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/lab) -"jez" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jeF" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"jeG" = ( -/obj/structure/railing, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"jeN" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"jfe" = ( -/turf/open/floor/noslip, -/area/medical/medbay/central) -"jfA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jfD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jfI" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/security/detectives_office) -"jga" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"jgI" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"jgS" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jgT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jgU" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"jgY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"jiv" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jjl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jjy" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"jjQ" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jkc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jkV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jlk" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"jlC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"jlT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jmd" = ( -/obj/effect/turf_decal/stripes/red/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jnd" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jnf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/fastload/planetmos, -/area/solars/starboard/aft) -"jnr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jnt" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"jnw" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jnX" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"jou" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"joI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"joO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"jpd" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"jpw" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/security/brig) -"jpF" = ( -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/computer/arcade/battle{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jpR" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jpU" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/storage/fancy/egg_box, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jpW" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jqv" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"jqE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/aft) -"jqV" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jrm" = ( -/turf/open/floor/plasteel/dark/side, -/area/science/xenobiology) -"jro" = ( -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"jrR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/theater) -"jsb" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/grass/jungle, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"jsi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"jsl" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jsn" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"jtc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/research) -"jtw" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmless{ - fan_out_items = 1; - lootcount = 3; - lootdoubles = 0 - }, -/obj/effect/spawner/lootdrop/aimodule_neutral{ - fan_out_items = 1; - lootcount = 3; - lootdoubles = 0 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"jtA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"jtF" = ( -/obj/item/food/grown/ash_flora/cactus_fruit, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/boxplanet/surface) -"jtM" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/under/dress/redeveninggown, -/obj/machinery/light, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"jtN" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jtS" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jub" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"juo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"jvJ" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/ai_monitored/command/nuke_storage) -"jwl" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"jwB" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"jwF" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"jxd" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jxn" = ( -/obj/structure/table/reinforced, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"jxt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jxD" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/obj/machinery/vending/chetverochka/pharma, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"jxK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/gateway) -"jxQ" = ( -/obj/structure/sign/decksign{ - cur_deck = 8 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"jxU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium{ - dir = 8 - }, -/area/security/brig) -"jxZ" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"jym" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"jyq" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"jyu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jzc" = ( -/mob/living/simple_animal/slime, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/xenobiology) -"jze" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"jzm" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"jzP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jzT" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jAi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/suit/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/suit/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath/cheap, -/obj/item/clothing/mask/breath/cheap, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"jAj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"jAQ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jBd" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Cabin 2" - }, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"jCj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jCA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"jCR" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jCU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"jCX" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/service/theater) -"jCZ" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"jDw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"jDR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"jDT" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/storage/fancy/cigarettes, -/obj/item/clothing/mask/gas/sechailer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jED" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/hallway/secondary/command) -"jEN" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/central) -"jFa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/dorms) -"jFq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"jFB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"jFG" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jGd" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/trimline/green/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"jGg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/command) -"jGz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jGJ" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"jHv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/medium{ - dir = 4 - }, -/area/command) -"jHR" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"jIC" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 9 - }, -/area/hallway/secondary/exit/departure_lounge) -"jIP" = ( -/turf/open/openspace/airless, -/area/engineering/atmos) -"jJa" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/pen/fourcolor, -/turf/open/floor/carpet/black, -/area/command) -"jJe" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jJf" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"jJK" = ( -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"jKn" = ( -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jKE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/engineering/break_room) -"jKV" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"jKW" = ( -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"jMd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"jMj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"jMo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"jMJ" = ( -/turf/open/floor/carpet/black, -/area/commons/dorms) -"jMV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"jNk" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"jNt" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"jNw" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/command) -"jNO" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jNT" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) -"jOb" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/service/bar) -"jOc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"jRm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"jRr" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle/b, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"jSc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jSf" = ( -/obj/machinery/door/airlock{ - name = "Auxiliary Storage Closet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"jTb" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/server) -"jTq" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jTL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jTP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"jUm" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"jVG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"jWc" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jWg" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jWA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"jWI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jXe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"jXx" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"jXL" = ( -/turf/closed/wall/r_wall, -/area/service/bar/atrium) -"jXT" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jXU" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/research) -"jYi" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"jYO" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"jYR" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"jZn" = ( -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"jZu" = ( -/turf/open/chasm/jungle, -/area/icemoon/surface/outdoors) -"jZC" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"kbz" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"kbL" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"kcw" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/science/research) -"kcA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kcD" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"kcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"kdc" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kdJ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kdT" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ken" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"keC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"keE" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kfJ" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"kfM" = ( -/obj/structure/closet, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wrench, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/service/bar) -"kgz" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"khe" = ( -/mob/living/simple_animal/slime, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"kip" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kiu" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"kix" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"kiH" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"kiM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"kiT" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/medical/morgue) -"kji" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kjA" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kjP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"kjU" = ( -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"kkp" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kkv" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"kkF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/cargo/storage) -"klE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"klO" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel, -/area/science/mixing) -"klT" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"kmu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kmO" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"kmP" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"knE" = ( -/obj/structure/displaycase/captain{ - req_access = null; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"knL" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"koi" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/medbay/central) -"kon" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"kqs" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kqD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"kqE" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command) -"kqY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"krA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/commons/dorms) -"krU" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/service/library) -"ksi" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"ksp" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"ksP" = ( -/obj/machinery/computer/bounty{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ktE" = ( -/turf/open/floor/carpet/green, -/area/commons/dorms) -"ktS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"kuj" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"kuw" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"kuA" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kvM" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin 4" - }, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"kvY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"kwd" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"kwg" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"kwk" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"kwU" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"kxL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/mechbay) -"kxW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kyQ" = ( -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"kyU" = ( -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"kzl" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"kzp" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/central) -"kzQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kAc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kAV" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"kAY" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kBl" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"kBF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"kBV" = ( -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"kCn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"kCJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"kDq" = ( -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kDr" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/grimy, -/area/command) -"kDx" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kEc" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kEo" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/right, -/area/commons/dorms) -"kEx" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kEI" = ( -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"kEJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kES" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kFf" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kFq" = ( -/obj/structure/window/reinforced, -/turf/open/floor/glass/reinforced, -/area/hallway/secondary/entry) -"kFy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"kFM" = ( -/turf/closed/wall/r_wall, -/area/command) -"kGC" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"kGS" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/weldingtool, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"kGT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"kHA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kHF" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kIb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kIC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"kIQ" = ( -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kIS" = ( -/obj/machinery/bookbinder, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/service/library) -"kJf" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kJl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kJz" = ( -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"kKm" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kKt" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"kKB" = ( -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kKD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"kKN" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"kKP" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kMo" = ( -/obj/structure/aquarium, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kMx" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"kMS" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/break_room) -"kNe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"kNn" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/command) -"kNE" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel, -/area/medical/virology) -"kNI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"kOA" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"kOT" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"kOU" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"kPc" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kPy" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/break_room) -"kPU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"kPV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium, -/area/commons/dorms) -"kQq" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"kQW" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"kRf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/loot_site_spawner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kSm" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kSu" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/book/granter/spell/smoke/lesser, -/obj/item/organ/heart, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/item/nullrod, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"kSQ" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/entry) -"kTg" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"kTn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research) -"kTE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"kTI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"kUT" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kVf" = ( -/obj/structure/sign/decksign{ - cur_deck = 1 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"kVs" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"kVt" = ( -/obj/structure/rack, -/mob/living/simple_animal/parrot/poly, -/obj/item/crowbar, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"kVM" = ( -/turf/open/floor/plasteel/icemoon, -/area/science/research) -"kWj" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy"; - req_access_txt = "5; 69" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kWC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"kWI" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"kWP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kXe" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"kXl" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"kXS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kXT" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/storage/eva) -"kYP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/primary/aft) -"kZB" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 9 - }, -/area/ai_monitored/command/nuke_storage) -"kZZ" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/command) -"lah" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/cargo/storage) -"laH" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"laL" = ( -/obj/structure/table/wood, -/obj/item/instrument/eguitar, -/obj/item/toy/crayon/spraycan/lubecan{ - charges = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/theater) -"laP" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/engineering/break_room) -"lbi" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"lbm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lbo" = ( -/turf/open/floor/plasteel/white/side, -/area/hallway/primary/aft) -"lbp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"lbW" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lch" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"lcl" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/hallway/secondary/command) -"lcw" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lcN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"ldg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"ldm" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/science/research) -"ldt" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/research) -"ldx" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ldL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/exit/departure_lounge) -"lea" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "11" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"leb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"leq" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/lawoffice) -"leJ" = ( -/obj/structure/railing, -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/hallway/primary/aft) -"leO" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/commons/dorms) -"leV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"lfz" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"lfB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"lfI" = ( -/obj/machinery/smartfridge/organ, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/medical/morgue) -"lgc" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"lgy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lhi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lho" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lhG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/science/mixing) -"liG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/engineering/break_room) -"liJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/research_director, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/rd) -"liR" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of NT SS13"; - width = 23 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/boxplanet/surface) -"liZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ljf" = ( -/obj/machinery/copytech, -/turf/open/floor/plating, -/area/engineering/manufactory) -"lju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ljA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ljI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/research) -"lkP" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"lkT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lkX" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "NT SS13: Port bay"; - width = 5 - }, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"lli" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"lls" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"llI" = ( -/turf/open/floor/plasteel, -/area/cargo/storage) -"llP" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"lmB" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/manufactory) -"lmO" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"lmU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"lnj" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"lnp" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"lnC" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"lnV" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"loh" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"loi" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"lot" = ( -/obj/structure/table/reinforced, -/obj/item/storage/photo_album/bar, -/turf/open/floor/carpet/black, -/area/service/bar) -"lox" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"loG" = ( -/obj/docking_port/stationary{ - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/delta; - width = 7 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"loY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"lpb" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"lpd" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"lpy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"lpF" = ( -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access_txt = "3" - }, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"lpT" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"lpZ" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/medical/virology) -"lql" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"lqD" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/command) -"lqG" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"lqL" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lra" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"lrS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/reinforced, -/obj/item/food/dough, -/obj/item/reagent_containers/glass/bowl, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lsw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"lsJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"lty" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"lub" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"lum" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"lup" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lur" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"luV" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/service/bar/atrium) -"lvf" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"lvl" = ( -/obj/structure/window/reinforced, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"lvD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/command) -"lvN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"lvS" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lwx" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"lxq" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"lxy" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/morgue) -"lxz" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"lxN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"lyk" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lyp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"lyv" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"lyU" = ( -/obj/structure/rack, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"lyV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lzb" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"lzi" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"lzY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"lAo" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"lAp" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/machinery/light, -/turf/open/floor/plasteel/white/corner, -/area/medical/sleeper) -"lAq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"lAI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lAL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"lBp" = ( -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/exit/departure_lounge) -"lBs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"lBw" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"lBD" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"lCl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/security/prison) -"lCt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"lCC" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/hallway/primary/aft) -"lCR" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/stamp/hos, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"lCV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"lDb" = ( -/turf/closed/wall/r_wall, -/area/medical/morgue) -"lDG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"lDN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"lDQ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lDV" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"lDZ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"lEd" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"lEx" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"lEO" = ( -/obj/structure/rack, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"lEY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"lFK" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"lFN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"lFS" = ( -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lGd" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"lGD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lHf" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/central) -"lHy" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Cabin 3" - }, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"lHz" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/primary/aft) -"lHB" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"lHG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lIc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lIC" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench/combat, -/turf/open/floor/plasteel/grimy, -/area/command) -"lIP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"lJC" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lJS" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lKd" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"lKj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lKu" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"lKv" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"lKI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"lKP" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"lLd" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"lMv" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lMI" = ( -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/grimy, -/area/command) -"lNH" = ( -/obj/structure/fans/tiny, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/cargo/storage) -"lOc" = ( -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"lPb" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lPj" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology - Secure Cell"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"lPV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lQh" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"lQp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"lQu" = ( -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"lRU" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"lSv" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"lSA" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"lSV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"lSW" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/vending/wallmed{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lSZ" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"lTn" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/command) -"lUe" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lVa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"lVe" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lVD" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"lVG" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lWi" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"lWz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"lWD" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"lWR" = ( -/turf/open/floor/plasteel/stairs/left, -/area/medical/medbay/central) -"lWW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lXl" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"lXm" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"lXL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"lXW" = ( -/obj/item/beacon, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lXX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lYr" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lYv" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/structure/curtain, -/turf/open/floor/plasteel/white/side, -/area/hallway/primary/aft) -"lYF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"lYO" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lYZ" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/glass/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"lZa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/beacon, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"lZe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lZp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"lZK" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"lZP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"maq" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"maS" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"mbe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"mbz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"mbA" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"mbJ" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"mbO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"mbQ" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"mbX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mcr" = ( -/obj/machinery/stasis, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/sleeper) -"mcu" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/wood, -/area/service/library) -"mcU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/hallway/secondary/entry) -"mcW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"mdS" = ( -/obj/structure/railing/corner, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/entry) -"mee" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"met" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mez" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"meQ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mgh" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mgl" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mgB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium, -/area/medical/medbay/central) -"mgH" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mhB" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"mhK" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/command) -"mhU" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"mhZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"miO" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"mjQ" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mka" = ( -/obj/structure/filingcabinet/employment, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/lawoffice) -"mkx" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"mkJ" = ( -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/engine/vacuum, -/area/hallway/primary/aft) -"mkK" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"mkM" = ( -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/command/nuke_storage) -"mkN" = ( -/obj/structure/table/wood, -/obj/item/storage/lockbox/medal, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"mlc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"mll" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"mma" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"mmn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mmx" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"mmX" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mnq" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mnD" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command) -"mnS" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"mnX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/genetics) -"moh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/plasteel, -/area/security/prison) -"mou" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"mpf" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"mpA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/solars) -"mpQ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/commons/dorms) -"mqf" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mqr" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"mqu" = ( -/obj/structure/table/wood, -/obj/item/food/grown/citrus/orange{ - pixel_x = -13; - pixel_y = 9 - }, -/obj/item/trash/plate, -/obj/item/toy/plush/beeplushie{ - pixel_x = 14; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/command) -"mqJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"mrg" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"mrA" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"mrO" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"mrZ" = ( -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"mso" = ( -/obj/machinery/door/airlock/glass_large, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"msF" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars) -"msQ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"msY" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/plasteel/grimy, -/area/command) -"mtb" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/command) -"mtE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"mtX" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/wood, -/area/command) -"mtY" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"muq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mvn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"mwa" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"mwv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"mwU" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"mxz" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"mxV" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"mya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"myk" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"myP" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"mzb" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"mzd" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mzu" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"mzw" = ( -/obj/effect/turf_decal/trimline/red/filled/end{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"mzB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mAw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mBa" = ( -/turf/open/floor/plasteel, -/area/command) -"mBm" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"mBr" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mBD" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/surgery/room_b) -"mBS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"mCj" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark/side, -/area/service/bar/atrium) -"mCp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"mCB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"mDb" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/commons/dorms) -"mDm" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/medical/medbay/central) -"mEs" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"mEz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mEV" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"mFh" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mFq" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"mFy" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"mFN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mFW" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"mGd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/kitchen) -"mGF" = ( -/obj/effect/landmark/start/ai, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"mGG" = ( -/obj/machinery/computer/monitor, -/turf/open/floor/plasteel/grimy, -/area/command) -"mGT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/main) -"mHt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mIi" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/grimy, -/area/command) -"mIG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"mIH" = ( -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/central) -"mJs" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mJP" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mJY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"mKo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/energy/temperature/security, -/obj/item/gun/energy/ionrifle, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"mKy" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mKI" = ( -/turf/open/floor/plasteel/stairs/left, -/area/engineering/break_room) -"mKQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mKS" = ( -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"mLk" = ( -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"mLB" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/black, -/area/service/bar) -"mLL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"mLP" = ( -/turf/open/floor/wood, -/area/service/library) -"mLU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"mLY" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mMd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"mMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mMR" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mNO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mNP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"mOi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"mOl" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"mOn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/aft) -"mPI" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mPR" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/command) -"mQq" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"mQz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"mRF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters" - }, -/turf/open/floor/plating, -/area/security/prison) -"mRO" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"mSb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mSf" = ( -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"mSj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mSs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"mSP" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"mUf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"mUt" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mUE" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"mUM" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"mUU" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mVh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mVD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/bar/atrium) -"mVG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mVX" = ( -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door_buttons/access_button{ - dir = 1; - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = 26; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mWg" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"mWD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"mWI" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"mWQ" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"mXZ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/left, -/area/engineering/break_room) -"mYg" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mYl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/medbay/central) -"mYm" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mYo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mYS" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"mYY" = ( -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"mZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/cargo/storage) -"mZH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"mZP" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"mZX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nam" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nao" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"naR" = ( -/obj/machinery/iv_drip, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/sleeper) -"nbK" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ncD" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/service/library) -"ndi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ndG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"ndI" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"ndN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"ner" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library) -"nfl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium, -/area/service/bar/atrium) -"nfn" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nhu" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nhP" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"nii" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nij" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"niJ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"nji" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"njk" = ( -/turf/closed/wall, -/area/tcommsat/server) -"njs" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plasteel/icemoon, -/area/science/research) -"njA" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"nkb" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"nln" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"nlw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nly" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nlH" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"nlV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nlY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nmb" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"nmh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"nmC" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/maintenance/solars) -"nns" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nnE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nnG" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/break_room) -"nnH" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"nnQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"nog" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"now" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"npo" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"npr" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"npu" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"npM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/commons/dorms) -"npO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nqd" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nqu" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nqQ" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"nrd" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"nrg" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/item/paper/monitorkey, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"nrs" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nru" = ( -/obj/machinery/atmospherics/components/binary/circulator{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"nrx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"nsb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"nsy" = ( -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"nsF" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ - desc = "This coffee cup has an image depicting a cute moth person on it!"; - name = "\improper Dragon Coffee"; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/toy/plush/moth{ - desc = "A plushie made as PR material for a company trying to sell the moth equivalent of monkey cubes."; - name = "\improper Blocked Moth"; - pixel_x = 7; - pixel_y = 2 - }, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command) -"nta" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ntq" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"ntt" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/service/library) -"ntL" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"nul" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nuo" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"nuu" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"nvW" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nwm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"nwR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nwV" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nxp" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"nyl" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"nzh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"nzj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nzI" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nAe" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"nAC" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/secondary/entry) -"nBg" = ( -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nBl" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"nBR" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"nBS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"nCk" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"nCr" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nCC" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nCJ" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"nDC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/engineering/break_room) -"nDG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nDP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/library) -"nEl" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"nEx" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"nEA" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nEC" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"nEF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"nFK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nGs" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"nGu" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"nGG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/noslip, -/area/science/research) -"nHw" = ( -/obj/structure/table/reinforced, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"nHC" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"nIB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/entry) -"nIE" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nIG" = ( -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"nJb" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/lawoffice) -"nJk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"nJq" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/service/bar) -"nJD" = ( -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = -32 - }, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"nKk" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit/departure_lounge) -"nKv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/command) -"nKH" = ( -/turf/open/floor/noslip, -/area/engineering/break_room) -"nKM" = ( -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"nKQ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"nLc" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/turf/open/floor/plasteel/white/side, -/area/medical/storage) -"nLL" = ( -/obj/structure/fence/door, -/obj/structure/barricade/wooden/crude/snow, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"nMa" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"nMi" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"nMj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/hallway/secondary/entry) -"nMy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"nMD" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nMP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"nMR" = ( -/obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"nNc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/mechbay) -"nNk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"nNl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"nOE" = ( -/turf/open/floor/carpet/black, -/area/command) -"nOQ" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"nPd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"nPm" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"nPY" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nQd" = ( -/obj/machinery/power/rtg, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"nQQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"nRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nSm" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/turf/open/floor/plasteel, -/area/command/gateway) -"nSq" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nSO" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nTr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nTs" = ( -/turf/closed/wall/r_wall, -/area/service/theater) -"nUt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"nUu" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/break_room) -"nUC" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nVb" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"nVg" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nVy" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nVE" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"nVM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"nWc" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"nWm" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"nWy" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nWC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump{ - desc = "IM GONNA, IM GONNA, IM GONNA POOOOMP AGHHH."; - name = "\improper 20 Year Old Poomper" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"nXm" = ( -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"nXv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nXK" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nYW" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"nZq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/commons/dorms) -"nZH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nZJ" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nZP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/grimy, -/area/command) -"obj" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"obE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"obG" = ( -/obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"ocm" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/secondary/command) -"ocx" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"odd" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"odD" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"oea" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"oeo" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"oes" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/storage/eva) -"ofm" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"ofn" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"ofA" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/trimline/green/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"ofJ" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"ofZ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/left, -/area/commons/dorms) -"ogA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ogE" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ogQ" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/science/research) -"ohj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ohy" = ( -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"ohA" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ohD" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oia" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/science/research) -"oid" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"oil" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"oiB" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/medical/medbay/central) -"ojl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"ojA" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ojH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"ojP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/plasteel/icemoon, -/area/science/research) -"okM" = ( -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 4; - pixel_y = 26; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/virology) -"olt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"olA" = ( -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"olY" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"omj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"omw" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs{ - dir = 1 - }, -/area/hallway/primary/aft) -"omD" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/science/research) -"omG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"onj" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"onm" = ( -/obj/effect/turf_decal/loading_area/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"onO" = ( -/turf/open/floor/plasteel/stairs/left, -/area/maintenance/solars) -"oog" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"oon" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oot" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/black, -/area/service/bar) -"oqc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oql" = ( -/turf/closed/wall/rust, -/area/boxplanet/surface) -"oqt" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/research) -"oqA" = ( -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"oqQ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"orb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ori" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/chair/plastic{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/snowdin, -/area/science/research) -"orF" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/green/corner, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"osB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"osM" = ( -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"osN" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/hallway/secondary/exit/departure_lounge) -"ouf" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ouw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ovn" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ovC" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/chemistry) -"ovJ" = ( -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ovZ" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"owu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/storage) -"owR" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/primary/starboard) -"owT" = ( -/obj/item/chair, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"oxe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"oxq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oxQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"oxR" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"oyW" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"oyZ" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"ozd" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"ozw" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ozD" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/brig) -"ozK" = ( -/turf/open/floor/plasteel, -/area/medical/morgue) -"ozQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"ozR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"oAH" = ( -/obj/structure/table, -/obj/item/hand_tele, -/turf/open/floor/plasteel, -/area/command/gateway) -"oBs" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"oBC" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oCb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"oCc" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/dropper, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oCf" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"oCp" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"oCE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"oCG" = ( -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"oCM" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"oDq" = ( -/obj/structure/table/reinforced, -/obj/item/food/energybar, -/obj/item/kitchen/fork/plastic, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"oEk" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"oEl" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"oEX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"oFF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oFT" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"oFV" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/starboard) -"oFY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/research) -"oGc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oHl" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oHF" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"oHH" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/borg/upgrade/rename, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"oHS" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain, -/obj/item/soap/deluxe, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/hop) -"oIp" = ( -/obj/machinery/power/solar_control{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"oII" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"oIV" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"oJI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"oKd" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"oKh" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"oKl" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oKS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oKZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oLp" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"oMJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"oMR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oMT" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/trimline/green/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"oNd" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = 28 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/command) -"oNw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/components/binary/pump/on/orange{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"oNy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"oOj" = ( -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"oPp" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/storage/crayons, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/theater) -"oPr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"oPB" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/grimy, -/area/command) -"oQp" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"oQx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel, -/area/science/mixing) -"oQA" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"oRa" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"oRG" = ( -/obj/machinery/announcement_system, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"oSh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oSt" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"oSy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oSz" = ( -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"oSF" = ( -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -25; - pixel_y = -5 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"oSS" = ( -/obj/machinery/computer/atmos_alert, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"oTk" = ( -/obj/machinery/nanite_programmer, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"oTQ" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"oTX" = ( -/obj/effect/landmark/start/warden, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"oUC" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"oVq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"oVx" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"oVS" = ( -/obj/structure/closet/cardboard, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"oVX" = ( -/turf/open/floor/plasteel/dark/side, -/area/engineering/break_room) -"oWn" = ( -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"oXd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oXh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oXj" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"oXn" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"oXo" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"oXO" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"oYJ" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/ai_monitored/command/nuke_storage) -"oYL" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"oYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/medium{ - dir = 8 - }, -/area/hallway/secondary/entry) -"oYW" = ( -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"oZd" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oZn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/black, -/area/service/bar) -"oZR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"oZZ" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/grass/jungle, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"pad" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"paf" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"pat" = ( -/obj/structure/table/wood/fancy/black, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"paA" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"paD" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/command/nuke_storage) -"paS" = ( -/obj/effect/loot_site_spawner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"pct" = ( -/obj/structure/chair/sofa/right, -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/command) -"pcv" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/starboard) -"pcx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pdf" = ( -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/boxplanet/surface) -"pds" = ( -/obj/structure/bookcase/random, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pem" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pen" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"peB" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"peO" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"pfe" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery/room_b) -"pgh" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pgH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/hallway/primary/starboard) -"pgT" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"phj" = ( -/obj/structure/toilet/greyscale{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"phq" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/surgery/room_b) -"phu" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"phv" = ( -/obj/effect/decal/cleanable/blood/tracks{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"phL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pip" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"pis" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"piy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"piN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"piX" = ( -/obj/machinery/teleport/station, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"pjN" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/camera, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/command) -"pkq" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"pkR" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"pkS" = ( -/turf/closed/indestructible/black, -/area/boxplanet/surface) -"plI" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/command) -"pmJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"pmZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pod" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"pop" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"poF" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research) -"poG" = ( -/turf/open/openspace, -/area/maintenance/solars) -"poU" = ( -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/hop) -"ppF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ppK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"prg" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"prt" = ( -/turf/open/openspace, -/area/hallway/secondary/entry) -"prA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"psc" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"ptv" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"ptE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"ptI" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ptM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ptZ" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/storage/box/drinkingglasses, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/box/drinkingglasses, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pvq" = ( -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/structure/table, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"pvs" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"pvN" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"pwy" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Hall" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"pwz" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pwE" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pwL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/service/bar/atrium) -"pxt" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/commons/dorms) -"pxD" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/virology) -"pxE" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"pxT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"pye" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pys" = ( -/obj/effect/mapping_helpers/ianbirthday, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"pyC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"pyW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"pzk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"pzm" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pzx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"pzz" = ( -/obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pzC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pBj" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"pBp" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/item/book/manual/wiki/toxins, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"pBv" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pBX" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"pCn" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pCz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pDT" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/security/detectives_office) -"pEu" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"pEI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/hallway/secondary/entry) -"pES" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/service/bar/atrium) -"pEZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pFh" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"pFM" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"pFN" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"pFO" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"pFP" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/starboard) -"pGu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pGE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium, -/area/service/bar/atrium) -"pGN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pGT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pHb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"pHi" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Fitness Ring" - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"pHw" = ( -/obj/effect/landmark/start/paramedic, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"pHx" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pHL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"pIm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/command) -"pIo" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/command) -"pIt" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"pIA" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"pIP" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pJx" = ( -/obj/effect/landmark/start/mime, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"pJH" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/chemistry) -"pKu" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"pLe" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/science/research) -"pLy" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"pLA" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pLN" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command) -"pLQ" = ( -/turf/open/floor/noslip, -/area/commons/dorms) -"pLT" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"pMB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"pNk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"pNn" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/bounty, -/obj/item/soap/deluxe, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"pNq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"pNB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/cargo{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pOi" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"pPj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars) -"pPY" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pQp" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pQG" = ( -/turf/closed/wall/r_wall, -/area/command/gateway) -"pQT" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"pRc" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pRj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"pRN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pSi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pSt" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"pSG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/extinguisher/mini, -/obj/item/extinguisher/mini, -/obj/machinery/camera{ - c_tag = "Xenobiology - Port"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"pSV" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pTk" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pTK" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"pTQ" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pUz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pUA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/engineering/break_room) -"pUL" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pVe" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"pVg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pVk" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"pVq" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"pVv" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"pVN" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pWh" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"pWl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pWN" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"pXA" = ( -/obj/machinery/stasis, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery/room_b) -"pXX" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"pYh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pYy" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/left, -/area/commons/dorms) -"pYG" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"pYX" = ( -/obj/effect/landmark/start/head_of_security, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"pYZ" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"pZf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pZj" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"pZz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"pZC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"pZO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"qcb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"qcl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"qcr" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/trash/candy, -/obj/item/trash/chips, -/obj/item/trash/energybar, -/obj/item/trash/semki, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"qcu" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qcL" = ( -/obj/machinery/computer/bounty{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"qcN" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"qdc" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/chemistry) -"qdo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qdp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qdG" = ( -/obj/structure/sign/decksign{ - cur_deck = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"qea" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"qee" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/commons/dorms) -"qeh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"qeB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qfd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"qfw" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"qfM" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"qgk" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qgt" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qgG" = ( -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"qgM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/lab) -"qhe" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qhE" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/door/window/eastleft{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"qhV" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/command) -"qiK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"qiQ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"qjx" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qjM" = ( -/obj/structure/closet/secure_closet/hop, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/item/clothing/suit/ianshirt, -/obj/item/bedsheet/ian, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"qjY" = ( -/mob/living/simple_animal/mouse/brown/tom, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"qkd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qkf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"qkI" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/command) -"qls" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"qlH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"qmC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/noslip, -/area/science/research) -"qmF" = ( -/obj/structure/displaycase/trophy, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/carpet/black, -/area/command) -"qns" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"qnG" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"qnM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"qoh" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/icemoon, -/area/icemoon/surface/outdoors) -"qou" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"qoF" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/mixing/chamber"; - dir = 4; - name = "Toxins Chamber APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"qpY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"qqf" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"qrw" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/wood, -/area/lawoffice) -"qrT" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot_red, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qsd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qsj" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"qtn" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/black, -/area/commons/dorms) -"qtI" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command) -"qtN" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"qtW" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"qub" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"quM" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/science/research) -"qva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"qvl" = ( -/obj/effect/turf_decal/delivery/red, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"qvv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qvL" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"qwI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"qxq" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/item/melee/chainofcommand, -/obj/item/coin/adamantine{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"qxA" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qxO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"qxW" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"qyj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"qym" = ( -/turf/open/openspace/airless, -/area/hallway/secondary/entry) -"qyn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"qyF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"qyW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qzt" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qzy" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qzC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"qzW" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"qBf" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qBl" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"qBK" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/mechbay) -"qBR" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qDa" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qDp" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qDt" = ( -/obj/structure/bed, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"qDw" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"qDB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qDW" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"qEi" = ( -/obj/structure/table, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"qEp" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qEA" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"qFa" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qFi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"qFn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"qFq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qFF" = ( -/obj/structure/sign/decksign{ - cur_deck = 3 - }, -/turf/closed/wall/r_wall, -/area/commons/dorms) -"qGr" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qHs" = ( -/turf/open/floor/glass/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"qHv" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qHz" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qHG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"qHO" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/ai_monitored/storage/eva) -"qHQ" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qHR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qHU" = ( -/obj/structure/window/reinforced, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"qJd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qJw" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qJF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"qJI" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"qKQ" = ( -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qKX" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"qLb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qLp" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qLs" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"qLv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/start/clown, -/turf/open/floor/plasteel, -/area/service/theater) -"qMn" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"qMG" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"qMQ" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qMX" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_y = -28; - req_access_txt = "3" - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"qMY" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"qNc" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"qNr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/nanite) -"qND" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"qNP" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qOa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qOv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"qOy" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qPc" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qPe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"qPi" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/sleeper) -"qPp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qPF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"qPK" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"qPL" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qPR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/mixing) -"qQp" = ( -/obj/machinery/vending/wallmed{ - pixel_y = 30 - }, -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"qQr" = ( -/obj/machinery/power/generator{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"qQM" = ( -/obj/structure/table, -/obj/item/book/fish_catalog, -/obj/item/storage/fish_case/random, -/obj/item/storage/fish_case/random, -/obj/item/storage/fish_case/random, -/obj/item/storage/fish_case/random, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qQV" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qSc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qSf" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/disks_nanite{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/disks_nanite{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"qSy" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qSD" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/break_room) -"qSN" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qSV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qSW" = ( -/turf/open/floor/plasteel/stairs/right, -/area/science/research) -"qTd" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"qTO" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/hallway/secondary/entry) -"qUW" = ( -/turf/open/floor/plasteel/stairs/right, -/area/maintenance/solars) -"qVu" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/research) -"qVN" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qVO" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"qVY" = ( -/obj/structure/table/reinforced, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"qWe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"qWt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qWD" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qWP" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"qXf" = ( -/obj/structure/table/wood, -/obj/item/restraints/handcuffs, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"qXq" = ( -/obj/structure/table, -/obj/machinery/computer/bookmanagement, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"qYj" = ( -/obj/structure/safe, -/obj/item/gun/ballistic/automatic/tommygun, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c10000, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/command/nuke_storage) -"qYS" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qYY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"qZz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"qZP" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"raa" = ( -/turf/open/floor/plasteel/dark, -/area/security/main) -"raL" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"raT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"rbd" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rbf" = ( -/obj/structure/cable, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/solars) -"rcx" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/service/bar/atrium) -"rdm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rdF" = ( -/obj/machinery/atmospherics/components/binary/circulator/cold/flipped, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rdP" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"ree" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/commons/dorms) -"reF" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/surgery/room_b) -"rfx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/entry) -"rfA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rfN" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"rgi" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rgl" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"rgz" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"rgI" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rgV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"rgX" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rhC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rhL" = ( -/obj/structure/table/reinforced, -/obj/item/holosign_creator/robot_seat/bar, -/turf/open/floor/carpet/black, -/area/service/bar) -"rii" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"rim" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"riu" = ( -/obj/effect/turf_decal/delivery/red, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"riy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"riA" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/commons/dorms) -"riC" = ( -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"riK" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/entry) -"rje" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rjL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"rjO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rjV" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rke" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"rkp" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rkr" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"rkJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rli" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle/b, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rlq" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/central) -"rma" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"rmb" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"rmp" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rmx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/xenobiology) -"rmz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rmA" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"rmU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"rnF" = ( -/obj/structure/table/wood, -/obj/item/lighter, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/command) -"rnV" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"rnW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"roh" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"rom" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"ror" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"roP" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rpt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rqk" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rqG" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rrs" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rru" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/service/kitchen) -"rry" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"rrO" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rsj" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rsz" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"rsE" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/central) -"rsJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"rtK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"rtV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rui" = ( -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/exit/departure_lounge) -"ruk" = ( -/obj/machinery/computer, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"rvc" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command) -"rvo" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rvp" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"rvs" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"rvO" = ( -/obj/machinery/computer/nanite_cloud_controller, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"rvP" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rvU" = ( -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rwy" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"rwI" = ( -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"rxc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rxn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"rxo" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rxR" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ryA" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ryM" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"ryQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"rzn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rzP" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"rAh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"rAn" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility/full, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"rAq" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rAI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command) -"rBo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rBw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rBV" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/science/research) -"rCd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rCo" = ( -/obj/machinery/computer/prisoner/management{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"rDc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rDF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rDM" = ( -/obj/structure/table, -/obj/machinery/door/window/eastleft{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/gun/syringe, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"rDS" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/trimline/green/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rDW" = ( -/obj/structure/rack, -/obj/item/grown/log/tree{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/grown/log/tree, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"rFf" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rFi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"rFl" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/lab) -"rFo" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"rGo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/plasteel, -/area/security/prison) -"rGJ" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rGV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/deepfryer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"rHy" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"rHD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/science/research) -"rHU" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rIE" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"rIH" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"rIZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rKb" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/server"; - dir = 1; - name = "Telecomms Server APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rKj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"rKs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rKW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rLk" = ( -/obj/machinery/light, -/turf/open/openspace, -/area/maintenance/solars) -"rLM" = ( -/obj/machinery/computer/rdconsole, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"rLY" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_y = 11 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = 11 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = -2 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = -2 - }, -/obj/item/clothing/mask/gas, -/obj/item/crowbar, -/obj/item/wrench, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"rMh" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rMq" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rMH" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"rNB" = ( -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"rNF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/primary/aft) -"rNL" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"rNO" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"rOa" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"rOs" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/lipstick/random, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"rOU" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rPn" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"rPN" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"rQp" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rQs" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/chemistry) -"rQu" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"rQz" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rQG" = ( -/obj/structure/chair, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"rRb" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rRi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"rRp" = ( -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/central) -"rRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rRv" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"rRz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/tier_2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rRA" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"rRP" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rSq" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"rSs" = ( -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rSR" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"rSV" = ( -/obj/item/robot_suit, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"rTI" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"rTJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rTZ" = ( -/obj/structure/sign/decksign{ - cur_deck = 9 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit/departure_lounge) -"rUg" = ( -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rVf" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"rVg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"rVx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"rVT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/hallway/primary/starboard) -"rVU" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"rVY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"rWa" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/white/side, -/area/medical/chemistry) -"rWr" = ( -/obj/structure/bed/dogbed/runtime, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"rXo" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/medbay/central) -"rXP" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rXS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rYk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rYE" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"rZb" = ( -/turf/open/floor/plasteel/dark/side, -/area/service/bar/atrium) -"rZy" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/science/research) -"rZU" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"rZV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"saG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"sba" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"sbc" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"sbM" = ( -/obj/structure/bookcase/random, -/obj/machinery/camera/autoname, -/turf/open/floor/wood, -/area/service/library) -"sbS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"scA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"scD" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"scE" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"sdb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sdk" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"sdo" = ( -/obj/structure/urinal{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"sdx" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sdy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sdL" = ( -/obj/structure/fence/door/opened{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"sdS" = ( -/turf/open/floor/engine/vacuum, -/area/commons/dorms) -"sep" = ( -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"sez" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"sff" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"sfn" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"sfE" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"sgi" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sgK" = ( -/turf/open/openspace/airless, -/area/science/xenobiology) -"sgO" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"shf" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 5" - }, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"shh" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"shm" = ( -/obj/structure/table, -/obj/machinery/syndicatebomb/training, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"shD" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/green/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"shP" = ( -/obj/structure/rack, -/obj/item/storage/box/prisoner, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"shQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"sjg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/service/bar/atrium) -"sjO" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sjQ" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"sko" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"sla" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"slm" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"slF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"smc" = ( -/obj/structure/bed/dogbed/mcgriff, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"smH" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"sna" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/delivery/red, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"snD" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "DeltaStation emergency evac bay"; - width = 30 - }, -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"snJ" = ( -/turf/open/openspace/airless, -/area/cargo/storage) -"snM" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"snO" = ( -/obj/structure/railing, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"snV" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"soa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"spf" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/medical/medbay/central) -"spm" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"spr" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"spP" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"sqj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sqw" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sqE" = ( -/turf/open/floor/plasteel, -/area/science/xenobiology) -"srw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"srx" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"srN" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sse" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"ssD" = ( -/obj/effect/turf_decal/delivery/red, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"ssQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"stf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"stH" = ( -/obj/machinery/computer/atmos_alert, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"stS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/beacon, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"suz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"suB" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"suU" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"svC" = ( -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"svV" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"swj" = ( -/turf/closed/wall/r_wall, -/area/cargo/storage) -"sxh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"sxm" = ( -/obj/structure/table/reinforced, -/obj/item/food/mint, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"sxr" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"sxB" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sxC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"sxD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"sxH" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/clothing/head/nursehat, -/obj/item/clothing/under/rank/medical/doctor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"syo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"syp" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"syz" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"syA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs{ - dir = 1 - }, -/area/hallway/primary/aft) -"syH" = ( -/obj/structure/table/wood, -/obj/item/storage/box/evidence, -/obj/item/flashlight/seclite, -/turf/open/floor/carpet/black, -/area/security/detectives_office) -"syY" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/command) -"sAa" = ( -/obj/structure/closet/secure_closet/bar, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/service/bar) -"sAc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"sAq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"sAF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sAI" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"sAT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sBa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sBp" = ( -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/ai_monitored/command/nuke_storage) -"sBs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/bz, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"sBD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/science/mixing) -"sBU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/wood, -/area/lawoffice) -"sDk" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"sDT" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sDU" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sEb" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/entry) -"sEf" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/command) -"sEB" = ( -/obj/machinery/camera/autoname, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sFp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sFC" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"sFW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"sGe" = ( -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"sGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"sHh" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/rag, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/carpet/black, -/area/service/bar) -"sHu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"sHT" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sIc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"sIe" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"sIp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sIr" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sIG" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sIM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"sIR" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sJd" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/commons/dorms) -"sJl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/structure/filingcabinet/medical, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"sJG" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"sKc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/turret_protected/ai_upload) -"sKh" = ( -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"sKx" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"sKy" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sKC" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"sKH" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"sLy" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"sMG" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"sMR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel, -/area/science/mixing) -"sMW" = ( -/obj/structure/table/reinforced, -/obj/item/storage/cans/sixsoda, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"sNl" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"sNN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sNU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"sOd" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sOk" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"sOs" = ( -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"sOt" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/mechbay) -"sOL" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"sOS" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sOY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/medical/morgue) -"sPf" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/turret_protected/ai_upload) -"sPt" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"sPv" = ( -/obj/structure/cable, -/turf/open/floor/carpet/black, -/area/service/bar) -"sPw" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sQO" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sQP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"sRv" = ( -/obj/effect/mapping_helpers/iannewyear, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"sRF" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"sRI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"sRZ" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"sSn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"sTa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sTn" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"sTs" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"sTQ" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/commons/dorms) -"sTS" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/mob/living/carbon/human/species/monkey, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"sTT" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sTZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"sUN" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"sUW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sUX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sVh" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sVm" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sVp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sVO" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery/room_b) -"sVU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Misc Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"sVY" = ( -/turf/open/floor/plasteel, -/area/maintenance/solars) -"sWm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"sWo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"sXo" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen, -/turf/open/floor/wood, -/area/security/detectives_office) -"sXr" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"sXx" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"sYd" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"sYn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"sYI" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sYJ" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/starboard) -"sZf" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"sZx" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sZD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"sZR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"taW" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"tbn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"tbt" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tbw" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"tci" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"tcQ" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"tcU" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/head/kitty, -/obj/item/clothing/head/rabbitears, -/obj/item/clothing/under/dress/redeveninggown, -/turf/open/floor/wood, -/area/icemoon/surface/outdoors) -"tdN" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/item/stock_parts/cell/bluespace, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tee" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/assembly/signaler, -/turf/open/floor/plasteel, -/area/science/mixing) -"teh" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"teB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"teO" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"tfD" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/black, -/area/command) -"tgp" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"the" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"thp" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"thy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/command/heads_quarters/ce) -"thP" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"thT" = ( -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"thW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"tif" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"tiH" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tjg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/turret_protected/ai_upload) -"tjr" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"tjG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tjH" = ( -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"tkl" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"tkP" = ( -/obj/machinery/door/window/brigdoor/northleft, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"tkR" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tlq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"tlH" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tmw" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"tne" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/starboard) -"tny" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/black, -/area/service/bar) -"tnY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"toa" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tov" = ( -/obj/structure/barricade/wooden/dark, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"toK" = ( -/obj/machinery/computer/atmos_control{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"toM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"tpr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/primary/starboard) -"tpZ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tqL" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/obj/effect/turf_decal/delivery/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side, -/area/security/prison) -"tqT" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/main) -"tqV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"trx" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"trH" = ( -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"trN" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/maintenance/solars) -"tsf" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white/side, -/area/medical/chemistry) -"tsw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"tsz" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"tsN" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"tsX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/holosign_creator/robot_seat/restaurant, -/turf/open/floor/plasteel, -/area/service/kitchen) -"ttj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/mechbay) -"tty" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ttG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ttQ" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24;10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tue" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"tuf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"tuR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tvj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"tvr" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/clothing/suit/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/suit/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath/cheap, -/obj/item/clothing/mask/breath/cheap, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"tvS" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"tvW" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"twu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"twB" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"txb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/lab) -"txm" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"txu" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"txv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"txP" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"tyc" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 3 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"tze" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tzj" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"tzu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/commons/dorms) -"tzx" = ( -/obj/structure/chair/office, -/turf/open/floor/carpet/black, -/area/command) -"tAl" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tAR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/science/mixing) -"tBH" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tBJ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"tCb" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tCd" = ( -/obj/structure/bed, -/obj/item/bedsheet/ce, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"tCw" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tCF" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"tCZ" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/lighter, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"tDc" = ( -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"tEb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/commons/dorms) -"tEc" = ( -/turf/open/openspace, -/area/shuttle/turbolift/primary) -"tEt" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"tEE" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"tER" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/research/explosive_compressor, -/turf/open/floor/plasteel, -/area/science/mixing) -"tFi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"tFo" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"tFr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/start/cook, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"tFu" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/turf/open/floor/wood, -/area/command) -"tFH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"tFM" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"tGC" = ( -/obj/machinery/dna_scannernew, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"tGU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/mechbay) -"tHc" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"tHf" = ( -/obj/machinery/camera/autoname, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"tHB" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tHM" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/science/research) -"tIa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"tIz" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"tIP" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"tIQ" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"tIU" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"tJo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"tJB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tJT" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"tJU" = ( -/obj/machinery/mecha_part_fabricator, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tKd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tKo" = ( -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 24; - pixel_y = -4; - req_access_txt = "39" - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/virology) -"tKq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"tLq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tLN" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tMI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"tMZ" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tNY" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"tOD" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"tOL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"tON" = ( -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"tPf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"tPh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tPq" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/boxplanet/surface) -"tPr" = ( -/turf/open/floor/plasteel/dark, -/area/science/lab) -"tQb" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"tQg" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"tQE" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"tQS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"tQV" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/carpet/black, -/area/command) -"tRb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"tRj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"tRu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"tRx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/solars) -"tRB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"tRE" = ( -/obj/structure/table, -/obj/item/storage/firstaid/emergency, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"tRN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"tRZ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"tSv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"tSB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"tSP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/detectives_office) -"tSV" = ( -/obj/effect/turf_decal/stripes/red/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tTF" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/surgery/room_b) -"tUj" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"tUq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel, -/area/science/mixing) -"tUE" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"tVf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/science/research) -"tVr" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"tVV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"tWn" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"tWp" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/ai_monitored/command/nuke_storage) -"tXh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"tXI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/science/research) -"tYV" = ( -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/server) -"tZa" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uap" = ( -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"uaI" = ( -/obj/structure/dresser, -/obj/machinery/light, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"uaP" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/right, -/area/commons/dorms) -"uaR" = ( -/obj/structure/rack, -/obj/item/disk/tech_disk{ - pixel_y = 6 - }, -/obj/item/disk/tech_disk{ - pixel_x = 6 - }, -/obj/item/disk/tech_disk{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"uba" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/brig) -"ubp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ubF" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"ubI" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/maintenance/solars) -"ubL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ubV" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/engineering/break_room) -"ubY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ucl" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ucz" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/structure/curtain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white/side, -/area/hallway/primary/aft) -"ucF" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ucJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"ucU" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/starboard) -"udB" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"udK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"ued" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/orange, -/area/hallway/secondary/exit/departure_lounge) -"uee" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uep" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"uer" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/food/chips, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ueX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ufj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"ufk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ufp" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/effect/landmark/start/ai/secondary, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"ufO" = ( -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/boxplanet/surface) -"ufX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ugD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"ugK" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"ugO" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ugW" = ( -/obj/structure/chair/plastic{ - dir = 1 - }, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"uhl" = ( -/obj/machinery/gibber, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"uhA" = ( -/obj/structure/dresser, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"uhH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/morgue) -"uhL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uhO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/sleeper) -"uib" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"uis" = ( -/obj/structure/table, -/obj/item/kitchen/knife, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"uiE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"uiJ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/medical/morgue) -"uiV" = ( -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"ujq" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/science/server) -"uju" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ujx" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"ujB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"ujJ" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ujO" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ujT" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"ukk" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"ukq" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/storage/crayons, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"ulr" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ulz" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"umh" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"uml" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "31;48" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"umJ" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"unn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"unN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/hallway/secondary/exit/departure_lounge) -"uok" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"uoO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/delivery/red, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uoY" = ( -/turf/closed/wall, -/area/maintenance/solars) -"upd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"upp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"upx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"upC" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"upJ" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"uqe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"uqk" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"uqz" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"uqK" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"urq" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"urr" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/delivery/red, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"urJ" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/science/research) -"usc" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/medical/morgue) -"usd" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/sleeper) -"usr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"usN" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"utr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"utZ" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/healthanalyzer, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uua" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/service/kitchen) -"uus" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uuL" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uva" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/command) -"uvc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/engineering/break_room) -"uvu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uvB" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uvP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"uwh" = ( -/obj/structure/closet/crate/trashcart/laundry, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"uwA" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"uwY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"uxJ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"uxY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/security/brig) -"uxZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uyI" = ( -/turf/open/openspace/airless, -/area/service/bar/atrium) -"uyL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"uyQ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"uzg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uzj" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/research) -"uzn" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"uzo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"uzv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/secondary/command) -"uAW" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"uBE" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/potato, -/obj/item/seeds/tomato, -/obj/item/seeds/carrot, -/obj/item/seeds/grass, -/obj/item/seeds/ambrosia, -/obj/item/seeds/wheat, -/obj/item/seeds/pumpkin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uBW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uCy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"uCL" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/commons/dorms) -"uCO" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"uCV" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"uDj" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uDH" = ( -/turf/open/floor/engine, -/area/engineering/supermatter) -"uDM" = ( -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"uDW" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Manufactory"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"uEm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uEo" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"uEt" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uEJ" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"uEW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"uFb" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"uGn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"uGC" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"uGH" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"uGU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uGX" = ( -/obj/structure/railing/corner, -/obj/machinery/light, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"uGZ" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uHe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/command) -"uHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uHC" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"uHV" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"uIg" = ( -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/command) -"uIr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"uIw" = ( -/turf/open/floor/plasteel/stairs/left, -/area/science/research) -"uIJ" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/flashlight/lantern, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"uIK" = ( -/obj/structure/table, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"uIL" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"uIO" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uJb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"uJh" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"uJi" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit/departure_lounge) -"uJx" = ( -/obj/machinery/computer/nanite_chamber_control, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"uJy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/cargo/storage) -"uJV" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/command) -"uJX" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/command) -"uKi" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/ai_monitored/command/nuke_storage) -"uKO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"uKP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uKQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uLm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uLt" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"uLI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command) -"uMf" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"uMj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uMs" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"uMS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"uNc" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Workshop" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"uNi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"uNp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"uND" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/science/research) -"uPe" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"uPs" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"uQn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uQB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uQE" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"uQL" = ( -/obj/machinery/door/airlock/vault{ - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"uQS" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"uRD" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"uRE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"uRG" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/lab) -"uSh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/medical/medbay/central) -"uSk" = ( -/obj/structure/table/glass, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/sleeper) -"uSS" = ( -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"uST" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"uTv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"uTR" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"uTX" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uUA" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uVb" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"uVj" = ( -/obj/item/chair, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"uVD" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"uXe" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"uYt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"uYB" = ( -/turf/open/floor/carpet/black, -/area/cargo/storage) -"uYU" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"uYZ" = ( -/obj/structure/closet/wardrobe/science_white, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/mixing) -"uZg" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"uZj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/solars) -"uZX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uZY" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/security/prison) -"vah" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vaq" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"vba" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/virology) -"vbp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"vbz" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"vcs" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"vcB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vcH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"vcM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"vdc" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"vdn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/engineering/break_room) -"vdP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vdR" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vdX" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/secondary/entry) -"ved" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/central) -"veG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"veN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"veU" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/pdapainter/security, -/turf/open/floor/plasteel/dark, -/area/security/main) -"vfm" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"vfs" = ( -/turf/closed/wall/r_wall, -/area/engineering/manufactory) -"vft" = ( -/obj/effect/landmark/start/paramedic, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"vfu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vgA" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"vgK" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/maintenance/solars) -"vgP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"vhy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vhJ" = ( -/obj/structure/table, -/obj/item/paper_bin, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"vib" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"viw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"viQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"viR" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"viX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/commons/dorms) -"vjp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"vjB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vjC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"vjD" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"vjH" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"vjT" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"vjY" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"vkz" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vla" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"vly" = ( -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"vlJ" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/commons/dorms) -"vlM" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vmL" = ( -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vmM" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/turf/open/floor/plasteel/dark, -/area/science/research) -"vnc" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"vnd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/glass/reinforced, -/area/hallway/secondary/entry) -"vnJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/engineering/break_room) -"vog" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"vol" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"voQ" = ( -/turf/open/floor/plating, -/area/engineering/manufactory) -"voS" = ( -/obj/structure/fence, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"voZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"vpz" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"vqd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"vqf" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"vqV" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vre" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/command/heads_quarters/rd) -"vrj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/medical/medbay/central) -"vru" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/primary/starboard) -"vrB" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vsa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"vsg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"vsi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vth" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"vtv" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"vtz" = ( -/turf/open/floor/wood, -/area/command) -"vua" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"vub" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vud" = ( -/obj/machinery/chem_master/condimaster{ - name = "HoochMaster 2000" - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/service/bar) -"vvq" = ( -/turf/open/floor/plating, -/area/cargo/storage) -"vvy" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"vvF" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel/grimy, -/area/command) -"vvO" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vvP" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/command) -"vwa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/medical/medbay/central) -"vwY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vxq" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"vxQ" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel, -/area/command/gateway) -"vxV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"vye" = ( -/turf/open/floor/wood, -/area/security/detectives_office) -"vyf" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer, -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"vyt" = ( -/obj/structure/chair/plastic, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"vyL" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"vyN" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"vyX" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"vzd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vzf" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Quarters"; - req_access_txt = "57" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vAc" = ( -/obj/effect/turf_decal/loading_area/red{ - dir = 1 - }, -/obj/structure/sink/greyscale{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"vAi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vAA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"vAR" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vAU" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/service/chapel/main) -"vBh" = ( -/turf/open/floor/plasteel, -/area/science/mixing) -"vCJ" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"vCL" = ( -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"vCN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vCQ" = ( -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"vCV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel, -/area/science/mixing) -"vDb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"vDk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"vDx" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"vEe" = ( -/obj/structure/table/wood, -/obj/item/toy/crayon/spraycan/mimecan{ - charges = 5 - }, -/obj/item/food/baguette, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"vEo" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/food/grown/poppy/lily, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"vEr" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"vEv" = ( -/turf/open/floor/plasteel/dark/side, -/area/medical/medbay/central) -"vEH" = ( -/obj/effect/turf_decal/delivery, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"vER" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vET" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"vFp" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"vFR" = ( -/obj/structure/table/reinforced, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/biopsy_tool{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vFT" = ( -/obj/machinery/lazylift/master, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"vGi" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"vGM" = ( -/turf/closed/wall/r_wall, -/area/science/nanite) -"vGN" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"vGO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"vHg" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vHy" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/computer/arcade/orion_trail, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"vIe" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/exit/departure_lounge) -"vIy" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"vIz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vIV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vJE" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vJW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vJX" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vKi" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/command/gateway) -"vKj" = ( -/obj/structure/weightmachine/stacklifter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"vKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/plasteel, -/area/security/prison) -"vKB" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/loading_area/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vKT" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/commons/dorms) -"vLQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/research) -"vLZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/right, -/area/commons/dorms) -"vMi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vMx" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vMA" = ( -/obj/structure/table, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"vMC" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"vMH" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"vMM" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/item/clothing/glasses/welding, -/obj/item/wrench, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"vNr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/science/research) -"vNA" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "NT SS13: Public Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"vNH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"vNM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"vNO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vNR" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"vNU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"vOs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"vOu" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"vOw" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/medical/medbay/central) -"vOG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/secondary/entry) -"vOK" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"vON" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"vOO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"vPr" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"vPC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vPL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/mechbay) -"vQo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vQP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"vQT" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"vRq" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/hallway/secondary/entry) -"vRr" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"vRu" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vRQ" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"vRR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"vRU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/engineering/break_room) -"vSJ" = ( -/obj/structure/sign/decksign{ - cur_deck = 5 - }, -/turf/closed/wall/r_wall, -/area/science/research) -"vTb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vTq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/carpet/royalblack, -/area/command/heads_quarters/captain/private) -"vTN" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vUc" = ( -/obj/effect/loot_site_spawner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vUl" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"vUH" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/hallway/secondary/exit/departure_lounge) -"vVo" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"vVH" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/hallway/secondary/exit/departure_lounge) -"vWi" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command) -"vWH" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"vWT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"vXi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/command) -"vXk" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"vXz" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/plasteel/grimy, -/area/command) -"vXJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"vXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vYs" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"vZb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/goonplaque, -/area/hallway/secondary/exit/departure_lounge) -"vZk" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"vZq" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/primary/aft) -"vZr" = ( -/turf/open/floor/carpet/black, -/area/service/bar) -"vZF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vZK" = ( -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"vZL" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"vZP" = ( -/turf/closed/wall/r_wall, -/area/medical/storage) -"vZR" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"vZZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel, -/area/command/gateway) -"waw" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/brig) -"waM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"waY" = ( -/turf/open/floor/plasteel/stairs/right, -/area/engineering/break_room) -"wbp" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"wbC" = ( -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"wcr" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"wcG" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"wcP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wcQ" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"wcT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"wdg" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/commons/dorms) -"wdD" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"wdE" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"wdO" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"wdU" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wdV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"wej" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"wem" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"wet" = ( -/turf/closed/wall/r_wall, -/area/service/kitchen) -"weJ" = ( -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"weL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"weS" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/grimy, -/area/command) -"wfi" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lawoffice) -"wfG" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"wfR" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/surgery/room_b) -"wgh" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 9; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/command) -"wgj" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"wgm" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/entry) -"wgo" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wgy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wgM" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"wgN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"whp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"whH" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"whS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"wib" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"wiz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/research) -"wiK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wjo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wjs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wkb" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/hallway/secondary/entry) -"wkV" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"wkW" = ( -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/hallway/primary/aft) -"wlE" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wlX" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wmo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/bar) -"wmw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"wmW" = ( -/obj/structure/table/optable, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"wnb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/medical/medbay/central) -"wnr" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wnR" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"wnY" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"woj" = ( -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"wov" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"woL" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"woQ" = ( -/obj/machinery/telecomms/relay/preset/station, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"woW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"wpa" = ( -/turf/closed/wall/r_wall, -/area/lawoffice) -"wpn" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research) -"wps" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/white/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"wpN" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"wpU" = ( -/obj/machinery/light, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"wqf" = ( -/obj/structure/table, -/obj/item/paicard, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"wqg" = ( -/turf/closed/wall/r_wall, -/area/service/chapel/main) -"wqk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wql" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"wqp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/storage/eva) -"wqr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"wqx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"wqI" = ( -/obj/machinery/porta_turret/ai, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"wqN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/hallway/secondary/entry) -"wqT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"wri" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/hallway/primary/starboard) -"wrk" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"wrq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/library) -"wsw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wsx" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wsC" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wsS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"wtt" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wtu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/universal, -/obj/item/reagent_containers/blood/lizard, -/obj/item/reagent_containers/blood/ethereal, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"wtI" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command) -"wtO" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wuD" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"wuH" = ( -/obj/machinery/door/airlock/medical{ - name = "Auxilliary Surgical Theatres"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"wvG" = ( -/obj/effect/landmark/start/cook, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"wvI" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"wwa" = ( -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Office"; - req_access_txt = "41" - }, -/turf/open/floor/carpet/black, -/area/cargo/storage) -"wwd" = ( -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"wwA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wwM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"wwQ" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wwS" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wwV" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plating/rust, -/area/hallway/primary/aft) -"wxj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"wxN" = ( -/obj/machinery/door/airlock/external/glass, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/science/research) -"wxO" = ( -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"wxQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/trimline/green/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"wyd" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"wyh" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"wyB" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"wyW" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"wzD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wAf" = ( -/turf/open/floor/plasteel/dark/side, -/area/medical/morgue) -"wAn" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"wAY" = ( -/obj/structure/table/reinforced, -/obj/item/storage/cans/sixbeer, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"wAZ" = ( -/turf/closed/wall/r_wall, -/area/service/hydroponics) -"wBq" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"wBI" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wBN" = ( -/obj/structure/table, -/obj/item/key/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"wBW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/processor, -/obj/effect/turf_decal/delivery/red, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/service/kitchen) -"wCg" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"wCp" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/medical/morgue) -"wCJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"wCP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/primary/aft) -"wCR" = ( -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wCS" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"wDo" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"wDA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/entry) -"wEf" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wEu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wEL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/right{ - dir = 4 - }, -/area/engineering/break_room) -"wFa" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/medbay/central) -"wFD" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/aft) -"wFT" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/solars) -"wGW" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/exit/departure_lounge) -"wHm" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/research) -"wHL" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Chamber"; - req_access_txt = "16" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"wHQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"wIj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/light, -/turf/open/floor/grass, -/area/cargo/storage) -"wIA" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_y = 5 - }, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"wIN" = ( -/obj/machinery/light, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"wIZ" = ( -/obj/structure/closet/toolcloset, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wJu" = ( -/turf/open/floor/wood, -/area/lawoffice) -"wKv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/science/research) -"wKz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"wKC" = ( -/obj/item/stack/sheet/mineral/coal/ten{ - pixel_x = -7 - }, -/obj/item/stack/sheet/mineral/coal/ten{ - pixel_x = 7; - pixel_y = 8 - }, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"wLy" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/engineering/main) -"wLC" = ( -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wLN" = ( -/obj/structure/ladder, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"wLR" = ( -/obj/effect/turf_decal/trimline/green/corner, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"wMA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/medical/virology) -"wMC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/medbay/central) -"wNe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/medical/medbay/central) -"wNz" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wNY" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"wOv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/storage) -"wOE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"wPE" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/turf_decal/delivery/red, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"wPW" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"wQj" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wQo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wQB" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/suit/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/suit/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_y = 8 - }, -/obj/item/clothing/head/helmet/space/eva{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath/cheap, -/obj/item/clothing/mask/breath/cheap, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"wQE" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"wQO" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"wRv" = ( -/obj/structure/rack, -/obj/item/paicard, -/obj/item/storage/firstaid, -/obj/item/storage/firstaid, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"wSI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"wSL" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wTi" = ( -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"wTt" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"wTw" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"wTE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"wUj" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"wUx" = ( -/obj/machinery/camera/autoname, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wUG" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - pixel_x = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wVn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"wVo" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"wVE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wVO" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"wVX" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wWe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"wWi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wWq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wWs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/stairs/medium{ - dir = 1 - }, -/area/service/bar/atrium) -"wWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"wWY" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/main) -"wXd" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"wXx" = ( -/obj/structure/ladder, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/yellow/line, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"wXO" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/sleeper) -"wXP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/engineering/break_room) -"wYd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wYv" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wYM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wYR" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/engineering/break_room) -"wZr" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"wZy" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"wZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xab" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"xai" = ( -/obj/machinery/ai_slipper/smartfoam, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"xaw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"xax" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xaz" = ( -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = -26 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/carpet/black, -/area/command/heads_quarters/hos) -"xbK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xbT" = ( -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/medbay/central) -"xcS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xdg" = ( -/obj/effect/turf_decal/delivery/red, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"xdo" = ( -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"xdz" = ( -/obj/structure/cable, -/turf/open/floor/noslip, -/area/engineering/break_room) -"xef" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/virology) -"xey" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side, -/area/ai_monitored/command/nuke_storage) -"xeF" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xeO" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"xeR" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 6" - }, -/turf/open/floor/carpet/black, -/area/commons/dorms) -"xeU" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/command/heads_quarters/rd) -"xfo" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"xfv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xfN" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/item/toy/cards/deck, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xgg" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"xgz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/server) -"xgD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xgE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"xgF" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"xgH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xgV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/service/bar/atrium) -"xhL" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"xij" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xiC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"xjv" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"xjG" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xjO" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xjV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xlC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xlN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"xmw" = ( -/obj/structure/railing, -/turf/open/floor/plating/dirt/jungle/wasteland, -/area/boxplanet/surface) -"xmD" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xmH" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xmS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xmZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"xnj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"xod" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"xoe" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 4" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xop" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"xov" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/exit/departure_lounge) -"xoz" = ( -/obj/structure/barricade/wooden/crude/snow, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/plating/beach/sand/cataclysmdda, -/area/icemoon/surface/outdoors) -"xpe" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xpC" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xpG" = ( -/turf/open/floor/plasteel/stairs/right{ - dir = 1 - }, -/area/science/research) -"xpN" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"xqn" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"xqt" = ( -/turf/closed/wall/r_wall/syndicate/nodiagonal, -/area/shuttle/turbolift/primary) -"xqy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"xqM" = ( -/turf/open/openspace/airless, -/area/commons/dorms) -"xqO" = ( -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"xqR" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xrg" = ( -/obj/structure/table/reinforced, -/obj/item/nanite_scanner{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/nanite_scanner{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/nanite_remote{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/nanite_remote{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xry" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xrX" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"xsp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"xsI" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xsJ" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xsY" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"xtc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"xto" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/exit/departure_lounge) -"xtA" = ( -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"xtC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/stairs/right{ - dir = 8 - }, -/area/hallway/primary/starboard) -"xtH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command) -"xtI" = ( -/obj/machinery/telecomms/hub/preset, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"xtN" = ( -/obj/structure/table/glass, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"xui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"xux" = ( -/obj/structure/table, -/turf/open/floor/plating/dirt/jungle/dark, -/area/icemoon/surface/outdoors) -"xuR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xuY" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xvv" = ( -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xvL" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/medical/virology) -"xwI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xwL" = ( -/obj/effect/turf_decal/delivery/red, -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel, -/area/science/research) -"xwY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xxr" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/maintenance/solars) -"xxZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xyb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xyq" = ( -/obj/structure/table/glass, -/obj/item/storage/box/masks, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/sleeper) -"xyt" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"xyA" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/science/mixing) -"xzp" = ( -/turf/open/floor/plasteel/stairs/left{ - dir = 1 - }, -/area/hallway/primary/starboard) -"xzS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"xAp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel, -/area/science/mixing) -"xAw" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"xAE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/noslip, -/area/hallway/primary/starboard) -"xAL" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/storage/eva) -"xAU" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/hallway/primary/aft) -"xAY" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xBG" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xBZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command) -"xCa" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/tree/jungle/small{ - pixel_y = -16 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"xCe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/brig) -"xDl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"xDH" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xEc" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"xEk" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"xEm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/plasteel, -/area/security/prison) -"xEP" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"xFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xGs" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/service/bar) -"xGW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"xGZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"xHF" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xHR" = ( -/turf/open/floor/plasteel/white, -/area/medical/storage) -"xIr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xIw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/noslip, -/area/engineering/break_room) -"xIA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"xJf" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xJs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"xJx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"xJJ" = ( -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"xKO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/stairs/left{ - dir = 8 - }, -/area/hallway/secondary/exit/departure_lounge) -"xKW" = ( -/turf/open/openspace/fastload/planetmos, -/area/boxplanet/surface) -"xLa" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"xLx" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xLJ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"xLM" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xMc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"xMr" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/left{ - dir = 4 - }, -/area/hallway/secondary/entry) -"xMX" = ( -/obj/machinery/nanite_programmer, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xNp" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"xNW" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xNX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) -"xOf" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xOg" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"xOC" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"xOI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/aft) -"xOZ" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/service/bar/atrium) -"xPC" = ( -/obj/structure/dresser, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"xQq" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/icemoon/surface/outdoors) -"xRh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xRs" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"xRP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"xSr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"xSL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"xSU" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xTq" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xTN" = ( -/obj/structure/cable, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"xTP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xUh" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"xUk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"xUM" = ( -/obj/structure/rack, -/obj/effect/turf_decal/delivery, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/wirecutters{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"xVX" = ( -/obj/structure/window/reinforced, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/hop) -"xWd" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xWt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/gateway) -"xWA" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"xWC" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xXM" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/ai_monitored/command/nuke_storage) -"xXR" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xXV" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xYd" = ( -/turf/closed/wall/rust, -/area/icemoon/surface/outdoors) -"xYe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"xYU" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/service/chapel/main) -"xZd" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yad" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/sleeper) -"yam" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"yaT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"yaX" = ( -/obj/machinery/light, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/cargo/storage) -"ybd" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plasteel, -/area/maintenance/solars) -"ybu" = ( -/turf/closed/wall/r_wall, -/area/science/genetics) -"yby" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"ybE" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/icemoon, -/area/science/research) -"ybK" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ybL" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ycn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"ycy" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ycG" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ydd" = ( -/obj/item/storage/cans/sixbeer, -/turf/open/floor/engine/hull{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"ydz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ydG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ydK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ydM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/icemoon, -/area/cargo/storage) -"ydP" = ( -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"yei" = ( -/turf/open/floor/plating/rust, -/area/boxplanet/surface) -"yeW" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yeY" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"yfn" = ( -/obj/item/beacon, -/turf/open/floor/noslip, -/area/hallway/secondary/command) -"yfp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"yfv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"ygg" = ( -/turf/closed/wall/r_wall, -/area/service/bar) -"ygm" = ( -/turf/open/floor/plasteel/dark, -/area/science/server) -"ygt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ygI" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"yhI" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"yhS" = ( -/turf/open/floor/engine/hull/reinforced{ - initial_gas_mix = "o2=22;n2=82;TEMP=180" - }, -/area/boxplanet/surface) -"yhY" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/carpet/black, -/area/service/bar) -"yiy" = ( -/obj/effect/turf_decal/trimline/white/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"yiN" = ( -/obj/structure/rack, -/obj/item/clothing/head/helmet/alt{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"yiQ" = ( -/obj/machinery/atmospherics/pipe/multiz, -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"yjp" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"yjz" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/starboard) -"yjR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars) -"ykc" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ykl" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"ykp" = ( -/obj/effect/turf_decal/trimline/green/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ykE" = ( -/obj/effect/landmark/start/ai/secondary, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"ykK" = ( -/turf/open/floor/carpet, -/area/commons/dorms) -"ylb" = ( -/obj/effect/turf_decal/trimline/yellow/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ylD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"ylJ" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ylX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"ymd" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/landmark/start/prisoner, -/obj/item/toy/plush/moth, -/turf/open/floor/plasteel/dark, -/area/security/prison) - -(1,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(2,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(3,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(4,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(5,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(6,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(7,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(8,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(9,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(10,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(11,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(12,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(13,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(14,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(15,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(16,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -vNA -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(17,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(18,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(19,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(20,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(21,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(22,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(23,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -roh -aTw -rQu -ece -hXP -xYd -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(24,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -rQu -ece -ece -ece -ece -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(25,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -ece -ece -ece -ece -ece -gcv -aJW -aJW -aJW -aJW -aJW -bFy -bFy -nLL -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(26,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -ece -ece -ece -ece -coK -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(27,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -tcU -aUV -ece -rQu -dPC -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(28,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(29,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(30,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(31,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(32,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(33,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(34,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(35,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(36,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(37,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -dAx -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(38,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(39,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -dAx -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(40,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(41,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -hJL -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(42,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(43,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aJW -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(44,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(45,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(46,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(47,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(48,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(49,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -tov -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(50,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -aJW -bFy -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(51,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -aJW -aJW -bFy -bFy -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(52,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -aJW -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(53,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -aJW -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(54,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(55,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(56,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(57,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -gvd -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(58,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aJW -aJW -aJW -bFy -bFy -hzZ -hzZ -gvd -gvd -gvd -hzZ -hzZ -hzZ -jZu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(59,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -aJW -bFy -bFy -bFy -hzZ -hzZ -gvd -gvd -gvd -gvd -gvd -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(60,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -bFy -bFy -hzZ -hzZ -hzZ -gvd -gvd -gvd -gvd -gvd -gvd -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(61,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -jZu -jZu -hzZ -hzZ -gvd -gvd -gvd -gvd -gvd -gvd -gvd -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(62,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -vMH -jZu -jZu -hzZ -gvd -gvd -gvd -gvd -gvd -gvd -gvd -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -aJW -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(63,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -vMH -jZu -jZu -hzZ -gvd -gvd -gvd -gvd -gvd -gvd -gvd -hzZ -hzZ -bFy -bFy -aJW -aJW -aJW -aJW -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(64,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -vMH -jZu -jZu -hzZ -hzZ -gvd -gvd -gvd -gvd -hzZ -hzZ -hzZ -bFy -bFy -aJW -aJW -bFy -bFy -bFy -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(65,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -fng -nmb -xYd -lQu -fng -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -vMH -bFy -bFy -hzZ -hzZ -gvd -gvd -gvd -hzZ -hzZ -hzZ -bFy -bFy -aJW -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(66,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -xYd -aJW -qDt -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -aJW -bFy -bFy -hzZ -hzZ -gvd -gvd -gvd -hzZ -xYd -bFy -bFy -bFy -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -xYd -xYd -wQE -wQE -wQE -xYd -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(67,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -qDt -aJW -xYd -bFy -icE -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aJW -aJW -aJW -bFy -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -lQu -xYd -hzZ -hzZ -bFy -bFy -bFy -bFy -nLL -bFy -bFy -xYd -xux -lQu -lQu -lQu -wQE -bFy -bFy -bFy -hzZ -xYd -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(68,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -grf -xYd -grf -xYd -xYd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -bFy -bFy -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -ifp -bFy -bFy -bFy -owT -aJW -lQu -lQu -wQE -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -tov -tov -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(69,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -aeZ -xux -bFy -eaM -bFy -hqQ -vMA -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -bFy -bFy -bFy -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -aJW -aJW -lQu -xYd -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -tov -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(70,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -gPx -eXF -dgt -uis -aMz -xYd -ruk -aJW -aJW -bFy -bFy -aJW -vhJ -xYd -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -bFy -bFy -bFy -bFy -aJW -aJW -aJW -bFy -bFy -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -aJW -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -jZu -jZu -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -lQu -xYd -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -xYd -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(71,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xux -aJW -lnj -hYj -eNV -hKO -eNV -eNV -fvv -aJW -bFy -bFy -bFy -xoz -aJW -bFy -bFy -bFy -ifp -bFy -bFy -aJW -aJW -aJW -aJW -bFy -aJW -aJW -drx -drx -drx -drx -drx -drx -bFy -bFy -aJW -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -qDt -xYd -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(72,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -aJW -ilE -ckl -qoh -ilE -xYd -lQu -aJW -aJW -aJW -fvv -bFy -bFy -xYd -bFy -bFy -aJW -bFy -nLL -gQE -bFy -aJW -bFy -bFy -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -bFy -aJW -aJW -aJW -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -xYd -xYd -xYd -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(73,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -hYj -ilE -lls -lQu -nKM -aJW -aJW -bFy -bFy -aJW -bFy -bFy -xoz -bFy -gQE -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -aJW -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(74,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -cBv -rDW -xgg -lQu -ckN -xYd -aJW -bFy -bFy -aJW -rQG -vMA -acV -xYd -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -aJW -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(75,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -bFy -bFy -bFy -aJW -rQG -vMA -uVj -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -bFy -bFy -bFy -aJW -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -jZu -jZu -xQq -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aPM -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(76,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -sVU -xYd -xYd -xYd -xYd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -xQq -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(77,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -mrg -aJW -aJW -bFy -nQd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(78,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bzl -lQu -aJW -aJW -uQE -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(79,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bzl -lQu -lQu -lQu -aJW -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(80,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -pLT -lQu -lQu -lQu -tQg -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(81,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -ftZ -oXO -lQu -eLP -qEi -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(82,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -xYd -xYd -xYd -xYd -xYd -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(83,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(84,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(85,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(86,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -nLL -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(87,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(88,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -aJW -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(89,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aJW -aJW -aJW -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(90,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -ahe -gSr -rwI -uGX -ahe -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(91,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(92,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(93,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(94,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(95,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(96,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ahe -iPF -rwI -hhz -ahe -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(97,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(98,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(99,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -xYd -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(100,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(101,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(102,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -ahe -wwV -rwI -hhz -ahe -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(103,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(104,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(105,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(106,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(107,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -voS -sdL -voS -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(108,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ahe -iPF -rwI -hhz -ahe -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(109,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(110,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -jZu -jZu -vMH -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(111,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(112,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(113,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(114,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -vNH -hns -vNH -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(115,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -bdu -lum -xAY -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(116,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -lMv -iGK -wYv -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -xYd -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(117,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -hNX -diV -wtt -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(118,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -mBm -mBm -uZX -mBm -mBm -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -xYd -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(119,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -vNH -vNH -vNH -vNH -mBm -rjV -lhi -uEt -mBm -vNH -vNH -vNH -vNH -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(120,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -alT -wPW -nlH -nlH -rZU -omw -qDp -eHz -rqG -fAC -gYW -wPW -wPW -wPW -bAY -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(121,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -wQB -vAA -lum -lum -xvv -vNH -sTa -veG -rqG -vNH -fzl -lum -lum -hFN -ybL -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(122,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -jAi -hBV -wWe -wWe -pHL -syA -ifb -xxZ -suz -aez -xRh -wWe -wWe -pZO -mUE -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(123,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -wQB -jMj -lum -lum -uTR -mBm -ata -mgl -nqd -mBm -nMi -lum -lum -jMj -lSZ -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(124,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -tvr -hvD -gVy -pvq -mKS -mBm -lSW -mgl -rqG -mBm -fpg -lwx -gVy -hvD -rma -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(125,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -mBm -mBm -mBm -kYP -vZq -mBm -mBm -mBm -djd -fWD -grj -mBm -mBm -mBm -vZq -wCP -mBm -mBm -mBm -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(126,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -nij -wFD -ylb -qVN -wfG -sVp -gbj -azg -myk -mBm -ets -mgl -bdL -gDF -gbj -gbj -gbj -rRq -mBm -pHx -ucF -jqE -qWP -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(127,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -wLN -hez -mgl -lqL -mmX -oxq -mgl -rqG -myk -mBm -eZy -hXD -mgl -fWD -mgl -mgl -mgl -oFF -oKZ -cKV -gcV -mOn -pOi -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(128,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -vqf -hRY -qgt -fti -aQd -xFM -hGx -aNL -myk -mBm -qDp -mgl -dBM -gZE -hGx -hGx -hGx -bJm -mBm -bSH -mBr -xOI -fhE -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -xYd -jaV -lQu -nGu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -bFy -bFy -bFy -bFy -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(129,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -mBm -mBm -mBm -sQO -mBm -mBm -mBm -cPX -djd -fWD -grj -mBm -mBm -mBm -lHz -rNF -mBm -mBm -mBm -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bFy -bFy -bFy -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(130,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -kgz -hps -itb -qqf -cWm -mBm -vdR -mgl -rqG -mBm -fUe -lEd -wPW -qFn -jxD -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -xYd -jaV -lQu -nGu -xYd -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(131,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -lYv -anl -uap -uap -gVi -mBm -qDp -mgl -nqd -mBm -iGn -lum -lum -jMj -nHC -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(132,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -lbo -anl -uap -uap -aPe -mBm -gaZ -hqu -jmd -aez -tVr -wWe -wWe -jsi -axu -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(133,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -ucz -hJK -oCb -uap -gVi -wQj -qDp -ggB -rqG -vNH -fzl -lum -uYt -jMd -wtu -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -oql -mWg -yei -cWh -oql -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(134,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -hRQ -xAU -xAU -xAU -vCL -mBm -sTa -veG -rqG -fAC -pFO -gVy -gVy -gVy -tRE -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(135,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -mBm -mBm -sdo -sdo -mBm -kDx -leb -rRb -mBm -vNH -vNH -vNH -vNH -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -oql -mWg -yei -cWh -oql -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(136,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -mBm -mBm -bHK -mBm -mBm -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(137,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -hNX -fxJ -wtt -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(138,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -vNH -gUt -cuH -xBG -vNH -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -oql -mWg -yei -cWh -oql -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(139,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -bdu -lum -xAY -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(140,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -vNH -lsw -vNH -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -oql -mWg -yei -cWh -oql -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(141,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(142,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(143,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -sxr -lQu -sPt -oql -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(144,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(145,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -xYd -sxr -lQu -sPt -xYd -bfc -bfc -bfc -bfc -bfc -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(146,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ahe -wwV -rwI -hhz -ahe -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bFy -bFy -bFy -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(147,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bFy -bFy -bFy -bFy -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(148,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -xYd -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(149,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -bFy -lQu -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(150,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(151,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(152,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mkJ -mBm -fyh -fyh -fyh -fyh -ahe -iPF -rwI -hhz -ahe -fyh -fyh -fyh -fyh -mBm -mkJ -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(153,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -mBm -mBm -mBm -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(154,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(155,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(156,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(157,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(158,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ahe -iPF -rwI -hhz -ahe -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(159,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(160,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -vMH -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(161,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -vMH -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(162,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(163,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -lCC -wkW -leJ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(164,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -ahe -lAo -rwI -icX -ahe -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(165,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -fyh -fyh -fyh -fyh -fyh -fyh -fyh -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(166,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(167,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(168,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(169,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(170,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(171,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(172,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(173,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(174,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(175,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(176,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(177,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(178,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -tov -bFy -bFy -lQu -aPM -bFy -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(179,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -tov -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -nLL -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -jZu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(180,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -tov -tov -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -ifp -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -jZu -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(181,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -mbA -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -drx -drx -drx -drx -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(182,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -jZu -bFy -bFy -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(183,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -hzZ -hzZ -jZu -jZu -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(184,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(185,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(186,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(187,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(188,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(189,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(190,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(191,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(192,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -lQu -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(193,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(194,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -tov -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(195,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(196,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(197,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -bFy -bFy -lQu -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(198,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -lQu -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -xYd -lQu -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(199,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(200,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(201,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -vMH -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(202,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -jZu -vMH -jZu -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(203,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -vMH -jZu -jZu -jZu -bFy -bFy -bFy -bFy -aPM -bFy -bFy -hJL -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(204,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -bFy -bFy -bFy -bFy -bFy -jZu -jZu -bFy -bFy -bFy -bFy -bFy -bFy -hJL -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(205,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -lQu -lQu -bFy -hzZ -hzZ -hzZ -jZu -aPM -bFy -bFy -bFy -bFy -hJL -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(206,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -xYd -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -bFy -bFy -hJL -bFy -bFy -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(207,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(208,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -jZu -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(209,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(210,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(211,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(212,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(213,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(214,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -aPM -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(215,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -xYd -lQu -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(216,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -lQu -xYd -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(217,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(218,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -aPM -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(219,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -tov -tov -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(220,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -tov -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(221,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(222,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -jZu -jZu -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(223,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(224,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(225,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(226,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(227,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(228,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(229,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(230,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bFy -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(231,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(232,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(233,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(234,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(235,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(236,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(237,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(238,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(239,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(240,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(241,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(242,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(243,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(244,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(245,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(246,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(247,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(248,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(249,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(250,1,1) = {" -bfc -bfc -bfc -bfc -bfc -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -hzZ -bfc -bfc -bfc -bfc -bfc -"} -(251,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(252,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(253,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(254,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} -(255,1,1) = {" -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -bfc -"} - -(1,1,2) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(3,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(4,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(5,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(6,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(7,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(8,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(9,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(10,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(11,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(12,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(13,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(14,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(15,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(16,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(17,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(18,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(19,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(20,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(21,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(22,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(23,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(24,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(25,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(26,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(27,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(28,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(29,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(30,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(31,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(32,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(33,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(34,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(35,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(36,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(37,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(38,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(39,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(40,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(41,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(42,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(43,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(44,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(45,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(46,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(47,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(48,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(49,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(50,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(51,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(52,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(53,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(54,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(55,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(56,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(57,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(58,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(59,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(60,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -xKW -xKW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(61,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -bds -bds -bds -bds -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -bds -bds -bds -bds -bds -bds -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(62,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -ibW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -xKW -xKW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(63,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(64,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(65,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(66,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(67,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(68,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(69,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(70,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(71,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -ibW -xKW -xKW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(72,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -egO -egO -egO -egO -egO -egO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(73,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ibW -xKW -xKW -xKW -xKW -ibW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(74,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(75,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(76,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(77,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(78,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(79,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(80,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(81,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(82,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(83,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(84,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(85,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(86,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(87,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(88,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(89,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(90,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(91,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(92,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(93,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(94,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(95,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xOC -oNy -oNy -xOC -ibW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -ibW -xOC -oNy -oNy -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(96,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -oNy -mFy -wvI -oNy -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -oNy -tCw -bjS -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(97,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mll -cuX -oNy -ibW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -ibW -oNy -ybK -fvr -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(98,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -cuX -oNy -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -oNy -ybK -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(99,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -cuX -oNy -oNy -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -oNy -oNy -ybK -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(100,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -bej -mbJ -wpN -tWn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -paA -wpN -onj -nMD -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(101,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -loh -bej -oNy -oNy -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -oNy -oNy -nMD -iJG -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(102,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -sPw -cth -qvl -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -qvl -sxB -tSV -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(103,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -mmx -bej -qvl -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -ldx -nMD -mmx -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(104,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -mmx -bej -asE -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -riu -nMD -mmx -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(105,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -dMe -eIG -pSt -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -riu -irx -grd -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(106,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -loh -bej -oNy -oNy -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -oNy -oNy -nMD -iJG -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(107,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -bej -mbJ -wpN -tWn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -paA -wpN -onj -nMD -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(108,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mll -bej -oNy -oNy -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -oNy -oNy -nMD -fvr -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(109,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -bej -lWi -oNy -xKW -xKW -xKW -xKW -nEx -xKW -xKW -xKW -xKW -oNy -bYp -nMD -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(110,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -bej -qNc -xOC -xOC -xOC -oNy -oNy -oNy -oNy -oNy -xOC -xOC -xOC -qNc -nMD -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(111,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -guh -hNb -hko -hko -hko -hko -hko -hko -hko -hko -hko -hko -hko -hko -hko -gwW -cXW -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(112,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -loh -rRi -mya -mya -mya -mya -mya -mya -jOc -mya -mya -mya -mya -mya -mya -vOO -iJG -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(113,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -sTs -iqW -tLN -tLN -tLN -tLN -tLN -grd -nFK -dMe -tLN -tLN -tLN -tLN -tLN -iqW -bSL -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(114,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -oNy -oNy -oNy -oNy -xOC -pKu -nFK -dTC -xOC -oNy -oNy -oNy -oNy -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(115,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xOC -irx -xui -eIG -xOC -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(116,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -oNy -vdX -oYR -kSQ -oNy -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(117,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xOC -lIc -jGz -afh -xOC -xKW -xKW -xKW -xKW -xKW -ibW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(118,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xOC -wSL -efc -vvO -xOC -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(119,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -oNy -oNy -oNy -oNy -xOC -wSL -efc -vvO -xOC -oNy -oNy -oNy -oNy -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(120,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -wqf -dud -qNc -mmx -mmx -qTO -vQo -jze -xbK -hsW -mmx -mmx -qNc -dud -upJ -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(121,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -lKd -icR -vQP -vQP -vQP -wqN -aOc -sez -lXX -eYA -vQP -vQP -vQP -gLx -kdT -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(122,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -oql -rzP -yei -hCQ -oql -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -qNc -hyd -rOa -wcG -wcG -vRq -wSL -bJv -vvO -riK -wcG -wcG -sZx -nFK -qNc -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(123,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -tPq -pdf -xmw -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mmx -hyd -oqQ -mmx -ftn -xOC -iQo -gMS -vvO -xOC -gUk -ryQ -cLD -nFK -mmx -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(124,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mmx -hyd -oqQ -ryQ -hwY -xOC -hPI -lho -xqt -xqt -xqt -xqt -xqt -nFK -mmx -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(125,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xOC -xOC -xOC -vOG -mdS -xOC -xOC -xOC -oMR -bJv -xqt -tMI -vjp -aIc -xqt -gsX -xOC -xOC -xOC -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(126,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -frk -sEb -oBC -uUA -uZg -nDG -qWD -nAC -prt -sgi -rXP -bJv -xqt -vFT -tDc -lzi -xqt -iVX -xOC -iDM -oon -fZV -ygI -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(127,1,2) = {" -pkS -ufO -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -nIE -fbB -gMS -wLC -sYI -upd -nzI -prt -prt -hPI -lcw -wkb -hMG -waM -tDc -uXe -xqt -vsi -aFt -dOC -gMS -uiV -gNd -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(128,1,2) = {" -pkS -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -pkS -pkS -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -oql -rzP -yei -hCQ -oql -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -kiu -pWN -txm -hYy -bfN -mNO -aih -pEI -prt -sqw -aSZ -bJv -hOT -waM -tDc -lzi -xqt -vER -xOC -exq -iIK -wgm -uVD -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oql -rzP -yei -hCQ -oql -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(129,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -bHD -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -bHD -bHD -bHD -bHD -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xOC -xOC -xOC -nMj -xMr -xOC -xOC -kVf -uee -bJv -xqt -xNX -sse -agI -xqt -rfx -xOC -xOC -xOC -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(130,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mmx -hyd -oqQ -cGu -hwY -xOC -vrB -lho -xqt -xqt -xqt -xqt -xqt -imK -mmx -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -oql -rzP -yei -hCQ -oql -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(131,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -oql -paf -yei -xhL -oql -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mmx -hyd -oqQ -mmx -ftn -xOC -wSL -gMS -vvO -xOC -gUk -cGu -cLD -imK -mmx -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(132,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -qNc -hyd -vtv -xWA -xWA -qTO -wSL -bJv -vvO -hsW -xWA -xWA -nCr -imK -qNc -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(133,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -tPq -pdf -xmw -fyh -fyh -fyh -fyh -fyh -fyh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -lKd -upx -vQP -vQP -vQP -wqN -aOc -cHE -deJ -nIB -mbz -mbz -mbz -sAF -kdT -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oql -mWg -yei -cWh -oql -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(134,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -fyh -fyh -fyh -fyh -ufO -ufO -oql -paf -yei -xhL -oql -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -uer -sDU -qNc -mmx -mmx -vRq -wSL -vog -vvO -riK -mmx -mmx -qNc -sDU -sdx -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(135,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -pkS -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -oNy -oNy -oNy -oNy -xOC -xjV -ken -uus -xOC -oNy -oNy -oNy -oNy -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oql -mWg -yei -cWh -oql -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(136,1,2) = {" -pkS -ufO -ufO -bHD -bHD -bHD -bHD -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xOC -xOC -bOa -xOC -xOC -xKW -xKW -xKW -xKW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(137,1,2) = {" -pkS -ufO -ufO -ufO -bHD -bHD -bHD -pkS -pkS -pkS -pkS -pkS -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -fyh -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -rCd -syo -met -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(138,1,2) = {" -pkS -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oNy -mcU -bLF -wDA -oNy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oql -mWg -yei -cWh -oql -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(139,1,2) = {" -pkS -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -pkS -pkS -pkS -pkS -pkS -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -gUk -weL -mmx -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(140,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -oNy -tJB -oNy -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oql -mWg -yei -cWh -oql -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(141,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -bHD -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(142,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(143,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -oql -paf -yei -xhL -oql -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(144,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tPq -pdf -xmw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(145,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -oql -paf -yei -xhL -oql -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(146,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -klT -rgl -weL -kAV -klT -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(147,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(148,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(149,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(150,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(151,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pdf -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -ibW -xKW -xKW -ibW -lXl -bNT -vnd -kFq -dnv -ibW -xKW -xKW -ibW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(152,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -qym -xOC -ibW -ibW -ibW -ibW -klT -tze -weL -kAV -klT -ibW -ibW -ibW -ibW -xOC -qym -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(153,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xOC -xOC -xOC -ibW -xKW -xKW -ibW -lXl -bNT -vnd -kFq -dnv -ibW -xKW -xKW -ibW -xOC -xOC -xOC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(154,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(155,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(156,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(157,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(158,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -klT -rgl -weL -kAV -klT -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(159,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(160,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(161,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(162,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lXl -xEk -vnd -oKh -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(163,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -xKW -xKW -xKW -xKW -xKW -lXl -bNT -vnd -kFq -dnv -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(164,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -uoY -uoY -phu -uoY -uoY -ufO -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(165,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -pPj -uoY -uoY -uoY -iHT -iUJ -bTn -uoY -uoY -uoY -pPj -pPj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(166,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -ssD -rPN -sVY -uoY -uoY -hsU -uoY -uoY -sVY -rPN -ssD -pPj -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(167,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -pPj -pPj -sVY -sVY -aGi -dVy -iUJ -dVy -pYZ -sVY -sVY -pPj -pPj -pPj -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(168,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -mpA -ciQ -uZj -sVY -sVY -trN -dVy -eKm -dVy -onO -sVY -sVY -wFT -ciQ -tRx -ccC -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(169,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -pPj -pPj -sVY -sVY -ubI -xGZ -onm -aOC -qUW -sVY -sVY -pPj -pPj -pPj -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(170,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -rNO -rdP -sVY -iCk -dVy -urr -dVy -xop -sVY -rdP -rNO -pPj -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(171,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pPj -pPj -uoY -uoY -uoY -aKL -yjR -dVy -uoY -uoY -uoY -pPj -pPj -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(172,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -uoY -uoY -uoY -uoY -uoY -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(173,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -uoY -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(174,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(175,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(176,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(177,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(178,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(179,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(180,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(181,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(182,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(183,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(184,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(185,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(186,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(187,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(188,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(189,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(190,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(191,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(192,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(193,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(194,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(195,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(196,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(197,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(198,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(199,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(200,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(201,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(202,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(203,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(204,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(205,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(206,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(207,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -liR -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(208,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(209,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(210,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -jtF -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(211,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(212,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(213,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(214,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(215,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(216,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(217,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(218,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(219,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(220,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(221,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(222,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(223,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(224,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(225,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(226,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(227,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(228,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(229,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(230,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(231,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(232,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(233,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(234,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(235,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(236,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(237,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(238,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(239,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(240,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(241,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(242,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(243,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(244,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(245,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(246,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(247,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(248,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(249,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(250,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(251,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(252,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(253,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(254,1,2) = {" -pkS -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -ufO -pkS -"} -(255,1,2) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -dEI -dEI -dEI -dEI -dEI -wet -xKW -xKW -xKW -xKW -xKW -ygg -wmo -wmo -wmo -wmo -wmo -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -uhl -gWE -mSf -fhA -npo -wet -mVD -mVD -mVD -mVD -mVD -ygg -jOb -sAa -hkc -cbl -yhY -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -dWX -ddI -gvs -vOu -kix -wet -xLJ -jGJ -cyF -cyF -liZ -nJq -sPv -eBz -dFy -fTI -elt -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -kBl -kBl -xnj -mhB -dEP -wet -lKP -ozw -sNl -aAh -wTi -ygg -vud -eqY -lFN -vZr -kfM -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -wet -wet -heO -wet -wet -wet -jXL -iIG -aUm -uHV -dzF -ygg -ygg -ygg -cNM -ygg -ygg -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -sOs -mGd -yfp -fMI -sGe -chW -rDS -qHQ -jxn -hnR -wTi -gZH -aPE -ihv -lFN -hnD -hLZ -wmo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -wBW -sGe -iuG -dom -mGd -lCt -rsj -aAh -wTE -qeB -hlt -oot -mLB -oZn -tny -wmw -sHh -wmo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -tQb -rru -wvG -lrS -sGe -tsX -rsj -aAh -tJo -rvU -wTi -gZH -aPE -vZr -xGs -vZr -vZr -wmo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -ara -sGe -rGV -nqQ -mGd -dQs -rsj -aAh -wyd -uHV -wTi -gZH -bqO -aPE -rhL -lot -czp -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -wIA -jyu -bMb -tFr -gYY -uua -dSt -sXx -gte -hnR -wTi -vZr -gZH -gZH -gZH -gZH -gZH -ygg -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wet -wet -wet -oCG -wet -wet -wet -jXL -eWn -bAS -gFb -fNv -xOg -xOg -xOg -xOg -euG -mJs -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nTs -fHr -jCX -hwf -jrR -eGT -jrR -hkn -ctj -rjO -aAh -aAh -vYs -hnR -hdr -aAh -dzF -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nTs -nTs -nTs -odd -nTs -nTs -nTs -nTs -ozw -qdp -aAh -aAh -vYs -hnR -hdr -aAh -wTi -hmV -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nTs -laL -oPp -eyF -oSz -vEe -nTs -aPL -ozw -qdp -wLR -rRP -rRP -rRP -rRP -rRP -aRd -mCj -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nTs -dqn -qLv -rFi -oSz -lKu -nTs -vHy -ozw -qdp -ugO -wAZ -wAZ -buW -buW -buW -buW -wAZ -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nTs -fWl -fEC -tXh -pJx -rOs -nTs -mrA -ozw -qdp -bmW -wAZ -uTX -aFv -dEm -dEm -aFv -jzT -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -ilY -ilY -ilY -ilY -ilY -ilY -kbL -ozw -qdp -wTi -wAZ -lbW -esP -esP -iXi -esP -wlX -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -dNW -fBs -ilY -krU -krU -ilY -ilY -fUR -qdp -wTi -wAZ -fIO -nWy -esP -esP -nWy -tlH -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -dYZ -mLP -ncD -mLP -mLP -krU -nDP -ozw -qdp -wTi -wAZ -jpW -wwQ -esP -esP -nWy -pUL -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -heb -mcu -ner -mLP -mLP -krU -nDP -pZz -rBo -eah -buW -tPh -esP -xIr -esP -iXi -svV -buW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -oRa -mFq -bOP -hEg -xaw -sOL -mso -dvT -viQ -qvv -qPc -tjG -fEy -wzD -esP -ulr -uoO -buW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -ntt -mLP -mLP -mLP -wrq -ckv -ckv -wxQ -rjO -wTi -buW -nSq -esP -mKQ -esP -esP -svV -buW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -iNi -kIS -krU -mLP -jFB -krU -nDP -ozw -hOa -wTi -iCn -duV -ajS -ajS -ajS -qQV -iGf -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -ilY -ilY -sbM -mLP -mLP -obG -nDP -ozw -hOa -bmW -wAZ -sna -mMR -tkR -nXK -wAZ -wAZ -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ilY -ilY -ilY -nDP -nDP -nDP -ilY -ilY -qHQ -hOa -dIO -wAZ -buW -buW -buW -buW -wAZ -wAZ -wAZ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -kUT -vEr -guB -aGT -aGT -rcx -aAh -adj -aAh -bqd -aGT -aGT -guB -vEr -vyX -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -wyh -deh -kji -kji -kji -sjg -axS -pwL -rjO -nfl -bce -bce -bce -alf -ukk -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -guB -lpy -tIU -mtY -mtY -luV -aAh -fpv -aAh -izr -mtY -mtY -hgk -joI -guB -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -aGT -lpy -rIE -aGT -aGT -jXL -snV -aAh -aAh -jXL -aGT -bDL -lpT -joI -aGT -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -aGT -lpy -rIE -aGT -bML -jXL -tHf -tJT -xqt -xqt -xqt -xqt -xqt -joI -aGT -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -jXL -jXL -jXL -chU -pES -jXL -jXL -jXL -uNi -fpv -xqt -tEc -tEc -tEc -xqt -xgV -jXL -jXL -jXL -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -teO -oyZ -qjx -gwD -cjq -diq -aAh -aAh -aAh -qSy -aAh -fpv -xqt -tEc -tEc -tEc -xqt -mqf -jXL -iGS -bnc -dih -cGH -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -pEu -lWD -aAh -uJh -hLl -lju -aAh -aAh -aAh -qSy -jXx -bQr -hMG -tEc -tEc -hQk -xqt -hOa -nAe -mSb -aAh -rZb -kFf -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -ems -xOZ -avf -qSN -bil -pzx -aAh -aAh -aAh -qSy -aAh -fpv -hOT -tEc -tEc -tEc -xqt -qSV -jXL -jub -xfo -eie -uVb -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -jXL -jXL -jXL -fDo -iXA -jXL -jXL -aXv -peO -fpv -xqt -tEc -tEc -tEc -xqt -fLe -jXL -jXL -jXL -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -aGT -lpy -rIE -aGT -bML -jXL -kTI -tJT -xqt -xqt -xqt -xqt -xqt -qls -aGT -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -aGT -lpy -rIE -aGT -aGT -jXL -aAh -aAh -aAh -jXL -aGT -qJF -lpT -qls -aGT -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -guB -lpy -mma -vRQ -vRQ -rcx -aAh -aAh -aAh -bqd -vRQ -vRQ -aSC -qls -guB -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mVD -wyh -ojH -qnM -qnM -qnM -wWs -ahk -eBI -ahk -pGE -qnM -qnM -qnM -tFi -ukk -mVD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -uIL -bmd -guB -aGT -aGT -luV -aEd -lEY -sXx -izr -aGT -aGT -guB -bmd -uIK -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -mVD -mVD -mVD -mVD -jXL -jXL -jSf -jXL -jXL -mVD -mVD -mVD -mVD -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -jXL -jGd -iCq -oMT -jXL -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -hTG -gRz -iVh -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -fuH -aGT -avl -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -shD -cHB -ofA -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -uyI -jXL -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -jXL -uyI -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -jXL -jXL -jXL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -lkX -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jro -jro -jro -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uoY -uoY -uoY -uoY -uoY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -pPj -pPj -pPj -uoY -mUf -oIp -kMx -uoY -pPj -pPj -pPj -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -poG -poG -rLk -uoY -xxr -vgK -xxr -uoY -cRJ -poG -poG -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -poG -poG -poG -pPj -sVY -czC -sVY -pPj -poG -poG -poG -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iAh -iAh -iAh -iAh -iAh -iAh -iOT -rbf -msF -msF -msF -rbf -czC -czC -czC -rbf -msF -msF -msF -rbf -iOT -iAh -iAh -iAh -iAh -iAh -iAh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -poG -poG -poG -pPj -sVY -doh -sVY -pPj -poG -poG -poG -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -poG -poG -poG -pPj -sVY -iLA -sVY -pPj -poG -poG -poG -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gHL -jnf -gHL -jnf -gHL -jnf -gHL -pPj -pPj -pPj -pPj -uoY -oCp -ybd -gTm -uoY -pPj -pPj -pPj -pPj -gHL -jnf -gHL -jnf -gHL -jnf -gHL -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uoY -pPj -czk -pPj -uoY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nmC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,3) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -jFa -jFa -jFa -jFa -jFa -wqg -xKW -xKW -xKW -xKW -xKW -wqg -jFa -jFa -jFa -jFa -jFa -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -vqV -snO -uPs -ohy -myP -wqg -wqg -mGT -mGT -mGT -wqg -wqg -iGZ -ohy -cQn -vlM -rQp -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -uqK -ofZ -bUG -myP -wqg -jyq -weJ -vAU -weJ -kSu -wqg -lXm -ldg -iRM -fVu -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -giw -kEo -rVg -vZL -wqg -bhm -hel -vRR -lzY -cev -wqg -sdk -awD -gKD -ovZ -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -npM -gZy -uPs -ohy -spm -wqg -vEo -ukq -fSx -weJ -tUE -wqg -myP -ohy -oYW -qOy -oHl -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -qEp -gnj -gWA -gWA -gWA -wqg -wqg -wqg -pFM -wqg -wqg -wqg -gWA -gWA -gWA -ccQ -qJw -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -qEp -bEj -gWA -ykK -fLk -wqg -idr -idr -lWz -idr -idr -wqg -esd -ktE -gWA -bEj -qJw -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -bEj -bKZ -ykK -aNV -wqg -ksi -uIJ -eNT -uIJ -kiM -wqg -lty -ktE -kvM -bEj -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -bEj -gWA -gWA -gWA -wqg -aGK -pat -dOV -dIv -uGC -wqg -gWA -gWA -gWA -bEj -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -oSy -ttG -gWA -mLk -oXo -wqg -idr -idr -lZa -idr -aQP -wqg -fgn -jZn -gWA -oKS -chR -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -bEj -jBd -mLk -uaI -wqg -sJG -iFN -ucJ -jZC -xYU -wqg -uhA -jZn -shf -bEj -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qYY -vYm -gWA -mLk -mou -wqg -sJG -xYU -uiE -sJG -xYU -wqg -vdc -jZn -gWA -fFJ -gzH -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -bEj -gWA -gWA -gWA -wqg -sJG -xYU -uiE -sJG -xYU -wqg -gWA -gWA -gWA -bEj -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -qEp -bEj -lHy -cLB -jtM -wqg -cVX -xYU -uiE -sJG -hQx -wqg -sJd -jMJ -xeR -bEj -qJw -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -jXT -bEj -gWA -cLB -vvy -wqg -nln -thP -uiE -cXf -aES -wqg -qtn -jMJ -gWA -bEj -jJe -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -cgi -bEj -gWA -gWA -gWA -wqg -dNq -dNq -pwy -dNq -dNq -wqg -gWA -gWA -gWA -bEj -ree -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -lFS -jWI -jCR -jCR -igF -ykp -fgK -oZd -rXS -orF -jWg -bUk -fjt -kHF -kHF -mYS -eUN -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -gzv -wqk -hbm -acf -loY -ihJ -aGU -ioo -viX -rUg -isp -ohy -eHU -ohy -qxW -hSu -ghV -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -gzv -wsC -wjs -xqy -mlc -lgc -kjA -frv -gSd -pwE -uaP -ohy -iXb -wjo -iiV -hSu -ghV -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -gzv -wsC -wjs -stS -bKP -lgc -nfn -frv -gSd -aqZ -ohy -ohy -eCr -udB -fXO -hSu -ghV -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -gzv -wsC -uwY -bKP -bKP -lgc -qQM -frv -gSd -gAv -pYy -ohy -tuf -xSL -hhZ -hSu -ghV -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -gzv -pHi -hrc -hrc -hrc -anG -kMo -frv -grE -tzu -vLZ -sGP -vKj -fix -hyP -tOL -ghV -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -wxO -evt -mZP -mZP -mZP -mZP -oqc -keE -iCP -sVh -gIT -hny -hny -hny -hny -tNY -lVG -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -iyn -ekp -dVF -dhV -gWA -nao -kxW -iPQ -gWA -gUA -iPQ -hWP -erH -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -jFa -jFa -jFa -jFa -gWA -iPQ -kxW -iPQ -gWA -jFa -jFa -jFa -jFa -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -oKd -qVO -clE -ohy -ohy -pxt -sIp -tEb -idb -isp -ohy -ohy -clE -qVO -wUG -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -oII -eRD -sGP -sGP -sGP -gok -aGU -krA -ubL -kPV -dKD -dKD -dKD -biB -aIn -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -clE -nUt -kmO -cEE -cEE -wdg -iPQ -pLQ -iPQ -ahE -cEE -cEE -ahY -hpV -clE -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -ohy -nUt -adW -ohy -ohy -gWA -xqR -iPQ -iPQ -gWA -ohy -aCb -sRZ -hpV -ohy -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -ohy -nUt -adW -ohy -lVD -gWA -sEB -iEV -xqt -xqt -xqt -xqt -xqt -hpV -ohy -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -gWA -cGn -sTQ -gWA -gWA -gWA -xsp -pLQ -xqt -tEc -tEc -tEc -xqt -dMb -gWA -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gJn -vKT -oKl -vJX -mDb -atG -iPQ -iPQ -iPQ -vAR -iPQ -pLQ -xqt -tEc -tEc -tEc -xqt -pBv -gWA -fIh -sZf -mpQ -oQA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -hNP -uCL -iPQ -dBq -pVN -aUG -iPQ -iPQ -iPQ -vAR -bLO -vlJ -hMG -tEc -tEc -hQk -xqt -lkT -vZF -nog -iPQ -dfo -wXx -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -tOD -iFz -sIr -ptI -cZw -vzd -iPQ -iPQ -iPQ -vAR -iPQ -pLQ -hOT -tEc -tEc -tEc -xqt -uyQ -gWA -vkz -rbd -leO -fDq -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -gWA -qee -riA -gWA -gWA -qFF -nam -pLQ -xqt -tEc -tEc -tEc -xqt -nZq -gWA -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -ohy -nUt -adW -ohy -lVD -gWA -fwT -iEV -xqt -xqt -xqt -xqt -xqt -hSu -ohy -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -ohy -nUt -adW -ohy -ohy -gWA -iPQ -iPQ -iPQ -gWA -ohy -lAq -sRZ -hSu -ohy -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -clE -nUt -iet -uqk -uqk -pxt -iPQ -iPQ -iPQ -isp -uqk -uqk -nKQ -hSu -clE -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jFa -oII -dEf -sGP -sGP -sGP -gok -aGU -stf -aGU -chF -sGP -sGP -sGP -gXD -aIn -jFa -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -esi -kwg -clE -ohy -ohy -wdg -iPQ -iPQ -iPQ -ahE -ohy -ohy -clE -kwg -uCO -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -gWA -gWA -gWA -nam -jWc -cQx -gWA -gWA -gWA -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -jro -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -sdS -sdS -xqM -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -xqM -sdS -sdS -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gWA -gWA -gWA -gWA -gWA -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -njk -njk -njk -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -njk -njk -njk -njk -aqK -aWF -mqr -njk -njk -njk -njk -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -nPm -taW -wgM -vaq -xdo -xdo -rgz -cTL -lFK -sfn -wVO -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -rgz -xdo -xdo -xdo -xdo -xtI -rgz -rgz -rgz -rgz -rgz -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -rKb -xdo -mbQ -mbQ -fHV -hMW -kfJ -mbQ -mbQ -rgz -oRG -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -rgz -rgz -rgz -rgz -rgz -afg -rgz -rgz -rgz -rgz -rgz -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -sXr -syz -nnH -umJ -rgz -axY -rgz -pkq -vUl -now -dZu -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -njk -njk -njk -njk -vyN -nGs -sDk -njk -njk -njk -njk -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -njk -njk -njk -njk -njk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,4) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -lDb -lDb -lDb -lDb -lDb -vZP -xKW -xKW -xKW -xKW -xKW -vZP -jDw -jDw -jDw -jDw -jDw -jHR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -eKT -aOR -ozK -exh -trx -vZP -owu -owu -owu -owu -owu -vZP -xtN -kNE -xvL -fXw -mEV -jHR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -oil -wCp -usc -wAf -trx -vZP -izV -izV -vbz -rDM -vXk -vZP -bSs -cdz -feY -xef -axx -jHR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -lfI -sOY -qKX -ghd -ozK -nLc -xHR -mQz -aRo -hYI -qhE -vZP -lpZ -vba -pxD -tKo -asN -jHR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -yhI -lxy -kiT -wAf -trx -vZP -kOT -icu -wuD -xHR -hia -vZP -wMA -fOh -jHR -jHR -okM -jHR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -eKT -uhH -sxC -uiJ -trx -vZP -eVo -lqG -aGg -vft -fpZ -vZP -jHR -jHR -jHR -bBw -voZ -jDw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -lDb -lDb -lDb -gct -lDb -lDb -vZP -vZP -owu -vZR -owu -vZP -vZP -fLH -rgi -jHR -jHR -mVX -jDw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -utZ -yjp -mmn -uQB -vHg -vHg -yjp -bvm -agw -olY -yjp -vHg -vHg -nZJ -cRb -cRb -tif -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -cUj -hDo -fTu -rTJ -fOU -fDI -fTu -mYo -nwR -fOU -vHg -fDI -fTu -mYo -nwR -fRb -fTw -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -csV -csV -axJ -wuH -axJ -csV -ful -fPt -ilz -ful -gCo -gCo -uhO -wem -lDG -uhO -gCo -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -iUP -iLW -drS -dnD -sVO -csV -ewO -rzn -uKP -oCc -gCo -lAp -qPi -lfB -uTv -yad -xyq -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -mBD -wcT -wcT -wVn -cEx -axJ -bAL -gur -toM -bSd -uhO -cne -lVa -aaT -oid -lVa -wXO -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -cjY -wcT -hfx -hiz -tTF -axJ -sKx -xUk -lBs -bKV -uhO -gUI -bbp -pQT -eUD -lVa -ech -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -wfR -tbn -tbn -wVn -pfe -axJ -rsE -wMC -ved -jEN -uhO -cne -lVa -aar -oid -pHw -naR -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -gfW -phq -reF -mLL -pXA -csV -cGQ -mYo -nwR -adp -gCo -uSk -mcr -mNP -nMP -dvd -usd -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -csV -csV -csV -axJ -wuH -axJ -csV -ful -fPt -ilz -ful -gCo -gCo -uhO -keC -lDG -uhO -gCo -gCo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -mgH -vHg -bvm -czL -lPV -mbX -hjf -dgc -cAL -vfu -uMj -ahO -rBw -hvH -qFi -uIO -aXR -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -rKW -rXo -veN -mYl -oGc -iCw -jKn -osB -rTJ -uEm -oGc -iCw -oGc -osB -rTJ -fOU -whp -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -umh -pNq -nBR -pNq -umh -umh -ful -jMo -kDq -jMo -ful -xUh -xUh -vNU -kWj -vNU -xUh -xUh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -kOA -vZK -shQ -eee -rPn -umh -xDl -vah -tKq -olY -wFa -xUh -flq -blg -bfu -cCx -qdc -vNU -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -qQp -woj -jFq -woj -gZn -umh -gMc -rRp -xlN -cFd -kzp -xUh -tsf -aWE -wov -pzz -gwh -vNU -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -aon -doS -xIA -sRF -rWr -umh -evL -lHf -sMG -nXm -giO -xUh -rWa -vMC -vMC -lHB -hJH -vNU -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -iux -flp -woj -woj -oTQ -umh -gMc -xbT -mIH -koi -kzp -xUh -ovC -pJH -pJH -hfi -rQs -xUh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -umh -umh -umh -sxH -fPw -wBq -umh -glj -vHg -cpZ -vHg -rlq -xUh -udK -lnC -tyc -xUh -xUh -xUh -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -umh -umh -umh -umh -umh -ful -rnV -kqY -pgT -ful -xUh -vNU -vNU -vNU -xUh -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -slm -fnO -hJe -mYY -mYY -oiB -fvL -wnb -fvL -lWR -mYY -mYY -hJe -fnO -txP -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -ryM -tRu -ndN -ndN -ndN -eeL -uCy -dwT -scA -mgB -pZf -pZf -pZf -phL -aeQ -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -hJe -nwm -kQq -eKn -eKn -vOw -fvL -jfe -fvL -dFf -eKn -eKn -pPY -hof -hJe -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -mYY -nwm -pTk -mYY -mYY -ful -hbv -fvL -fvL -ful -jzP -kTg -uEJ -hof -mYY -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -mYY -nwm -pTk -mYY -mxz -ful -iOV -wdE -xqt -xqt -xqt -xqt -xqt -hof -mYY -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -ful -ful -ful -ful -cwx -spf -ful -ful -ful -uyL -jfe -xqt -tEc -tEc -tEc -xqt -bMa -ful -ful -ful -ful -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -qfM -exU -dRd -kwk -oIV -xmZ -fvL -fvL -fvL -iOV -fvL -jfe -xqt -tEc -tEc -tEc -xqt -rfN -ful -xgF -wdD -iDj -qtN -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -uQS -fUD -fvL -dZg -lGd -wqT -fvL -fvL -fvL -iOV -urq -mDm -hMG -tEc -tEc -hQk -xqt -mtE -aes -gRS -fvL -vEv -qND -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -jar -iwe -gGN -jwF -fvi -teB -fvL -fvL -fvL -iOV -fvL -jfe -hOT -tEc -tEc -tEc -xqt -rfN -ful -fKJ -huh -bLJ -jnw -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -ful -ful -ful -ful -uSh -gwo -ful -ful -qdG -mQq -jfe -xqt -tEc -tEc -tEc -xqt -bzk -ful -ful -ful -ful -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -mYY -nwm -pTk -mYY -mxz -ful -ktS -wdE -xqt -xqt -xqt -xqt -xqt -hof -mYY -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -mYY -nwm -pTk -mYY -mYY -ful -fvL -fvL -hQl -ful -mYY -wDo -uEJ -hof -mYY -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -hJe -nwm -dfe -bVX -bVX -oiB -fvL -fvL -fvL -lWR -bVX -bVX -hzt -hof -hJe -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jMo -ryM -kTE -tIa -tIa -tIa -vwa -jXe -vrj -qWe -dMd -pCz -pCz -pCz -jkV -aeQ -jMo -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -pen -kqD -hJe -mYY -mYY -vOw -vxV -wNe -buo -dFf -mYY -mYY -hJe -lQh -bxA -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -ful -ful -ful -ful -ful -ful -tSB -ydG -iTM -ful -ful -ful -ful -ful -ful -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ful -ful -ful -lah -pIP -pIP -lyk -ful -djZ -uml -gxh -ful -jjy -vUc -aYu -cTv -ful -ful -ful -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -ayM -eQn -llI -pRN -rMq -sqj -wYM -nZH -sBa -kEc -swj -hFW -vcB -wOv -iUK -wEu -hUc -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -lli -lli -lli -swj -swj -xpe -wZR -lbm -fyy -pNB -swj -gOE -llI -nVg -llI -vvq -mYm -lli -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -gfd -nEF -nEF -nEF -aiA -lli -tiH -wsw -rMq -jou -ksP -swj -oVS -jxt -rgI -czs -vvq -bOJ -lli -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sZR -tjH -tjH -tjH -iVF -lli -fBC -jfD -vIV -sdb -pUz -swj -lpb -bXH -rtV -qWt -jxt -gFe -lli -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sZR -tjH -tjH -tjH -iVF -lli -lli -lli -mSj -brb -oXd -swj -wWq -jkc -rIZ -hVt -xSU -paS -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sZR -tjH -tjH -tjH -loG -uGU -jez -vjB -jxt -idt -dZk -swj -swj -kKm -hNm -swj -swj -swj -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sZR -tjH -tjH -tjH -iVF -lli -lli -lli -llI -kkF -jxt -dEo -iUK -mSj -dlq -bWf -rYk -xHF -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sZR -tjH -tjH -tjH -iVF -lli -jxt -llI -wVE -gmh -aYy -iBm -aYy -kRf -mFN -hkm -sIG -qcu -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -cwb -gPk -gPk -gPk -piN -lli -jxt -fhO -llI -nvW -llI -mUt -llI -ida -iEW -mUt -llI -gwd -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -swj -swj -lli -ydM -swj -ydM -swj -cvg -ida -jxt -ida -llI -ohD -vcB -ida -llI -gpQ -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -aUU -uJy -cxo -uYB -cYO -cYO -wwa -jxt -llI -llI -llI -llI -aTv -llI -llI -kzQ -hcM -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -aUU -mhZ -cYO -cYO -svC -qcL -swj -llI -hhA -jxt -mwU -rTI -rTI -rTI -mOl -cZU -phv -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -aUU -swj -hNE -uYB -cYO -hQd -lli -wVX -lli -suB -mrZ -lli -lli -lli -swj -swj -igN -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -aUU -swj -etP -bpr -jzm -fXq -lli -wwA -lli -jah -rNL -lli -wbC -wbC -yaX -swj -cYh -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -swj -swj -aUU -swj -swj -lli -lli -lli -lli -vJE -lli -vJE -dwt -lli -wbC -qcb -wbC -swj -fpX -swj -swj -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -snJ -swj -ntL -swj -wbC -wbC -wbC -wbC -wbC -pXX -wbC -wbC -wbC -wbC -wbC -qcb -qcb -swj -wIj -swj -snJ -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -swj -swj -kiH -swj -wbC -qcb -wbC -qcb -wbC -qcb -wbC -wbC -wbC -qcb -wbC -wbC -wbC -swj -fmR -swj -swj -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -kiH -swj -wbC -wbC -wbC -qcb -wbC -qcb -wbC -wbC -wbC -wbC -wbC -qcb -wbC -swj -dpw -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -iQR -swj -wbC -wbC -wbC -wbC -qcb -wbC -wbC -qcb -wbC -qcb -wbC -wbC -wbC -swj -gdI -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -ntL -swj -wbC -qcb -wbC -wbC -wbC -wbC -wbC -qcb -wbC -wbC -qcb -wbC -wbC -swj -mZe -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -ntL -swj -wbC -wbC -qcb -qcb -wbC -wbC -wbC -wbC -qcb -wbC -wbC -wbC -wbC -swj -cYh -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -ntL -swj -wbC -wbC -wbC -tjH -tjH -tjH -xod -xod -tjH -tjH -qcb -qcb -qcb -swj -mZe -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -swj -swj -swj -fGX -tjH -tjH -tjH -xKW -xKW -xKW -xKW -xKW -tjH -tjH -tjH -wpU -swj -lNH -swj -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uqe -uqe -uqe -yhS -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -yhS -yhS -yhS -uqe -ycn -ycn -ycn -uqe -uqe -uqe -yhS -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uqe -jro -jro -ycn -ycn -ycn -ycn -ycn -ycn -ycn -ycn -ycn -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -ycn -jro -ycn -ycn -ycn -ycn -jro -jro -jro -ycn -uqe -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -ycn -ycn -ycn -jro -jro -ycn -ycn -ycn -jro -ycn -uqe -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -ycn -ycn -ycn -jro -ycn -ycn -ycn -ycn -jro -jro -jro -uqe -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uqe -ycn -ycn -jro -jro -jro -jro -haL -haL -jro -jro -ycn -uqe -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -uqe -uqe -uqe -yhS -uqe -ycn -ycn -ycn -uqe -yhS -yhS -yhS -uqe -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -uqe -uqe -uqe -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,5) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vQT -rVx -rVx -rVx -rVx -rVx -vQT -xKW -xKW -xKW -xKW -xKW -nyl -kTn -kTn -kTn -kTn -kTn -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -xAp -nWC -oQx -tAR -uYZ -vQT -dwc -xNp -xNp -xNp -dwc -nyl -rrs -vmM -fHA -xWC -alU -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -xAp -oqA -oqA -oqA -tzj -tee -dwc -qJI -dtq -qJI -dwc -rAq -cmW -cmW -ufk -lQp -fKU -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -tUq -feZ -oqA -oqA -fTW -cSs -dwc -qPF -xtA -wdV -dwc -bJM -cmW -uzj -cmW -mqJ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vQT -xyA -sxh -oqA -oqA -aMA -vyf -dwc -gWv -nWm -gWv -dwc -jnX -cmW -syp -vLQ -mqJ -gGW -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vQT -qOa -djQ -pWl -oqA -oqA -aVl -ndG -eDW -pIA -oNw -ufj -vQT -vQT -vQT -vQT -itL -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vQT -qPR -bqs -qwI -tER -oqA -iTQ -dbx -gWv -cIr -gWv -dbx -sBD -ppK -sMR -vQT -nlY -woL -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -vjC -mwv -dSp -lxN -lxN -lxN -ikA -osM -oqA -oSF -aZq -gbL -klO -sMR -vQT -mqJ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -alp -sxh -xgE -aRe -aRe -iQc -aRe -xGW -aRe -wyB -gfT -axk -vBh -lvN -vQT -mMd -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -xab -hci -qkf -rLY -qHz -pBp -kon -pVg -qoF -mpf -lhG -kKN -klO -vCV -vQT -mqJ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -rVx -vQT -vQT -mSP -vQT -vQT -vQT -vQT -vQT -vQT -vQT -vQT -xMc -dIy -xMc -vQT -eKt -fKU -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -cmW -nEA -kNe -gmg -dAW -gNj -nul -dAW -akq -cmW -pBj -pBj -pBj -pBj -pBj -npO -hpu -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -syp -gGg -nlV -suU -syp -aJF -pMB -cmW -vqd -cmW -pBj -bbH -jJK -cyT -pBj -cnP -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ybu -ybu -mnX -goL -mnX -ybu -ybu -ybu -nyl -gLf -cmW -pBj -eoD -pNk -xeU -pBj -cnP -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ybu -jdz -kES -qfd -jgU -tGC -vGi -ybu -rAq -wiz -cmW -pBj -liJ -qxO -vre -pBj -rfA -cmW -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ybu -cMr -kIQ -bxK -iQr -rRA -caq -ybu -gUp -vqd -cmW -pBj -pzk -nIG -pzk -pBj -cnP -mzu -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ybu -sTS -kIQ -sIc -wcP -kIQ -kIQ -ybu -jXU -vqd -cmW -cmW -nEA -ecu -uzn -cmW -cnP -cmW -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mnX -nMR -wCR -bYZ -kIQ -kIQ -ydP -ybu -xJf -sff -xgD -dAW -dAW -wCJ -dAW -cDT -ueX -suU -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mnX -oVx -eDs -nHw -qiK -jKV -wBI -ybu -nyl -cOt -nyl -bUy -bUy -bUy -bUy -lox -ayR -lox -lox -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vGM -qNr -iuY -qNr -vGM -vGM -vGM -vGM -oFT -saG -gVz -bUy -ang -qyj -xjv -hhf -bel -exl -bUy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -qNr -cJr -wKz -qSf -xrg -byo -agm -vGM -aUd -oxQ -rjL -bUy -apb -qgM -txb -mvn -mBS -hiP -lox -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -qNr -uJx -gIH -ffm -bUf -hIf -bUf -vGM -dDo -kjP -kOU -bUy -kvY -nsb -kzl -laH -sla -uaR -lox -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vGM -xMX -xXV -bUf -bUf -bUf -mCB -vGM -nyl -nSO -nyl -bUy -tPr -eBW -kzl -tPr -tPr -kbz -bUy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -vGM -vGM -vGM -hHI -rvO -oTk -hHI -vGM -uSS -eEy -fVz -bUy -bOv -spP -ofJ -kWI -bUy -bUy -bUy -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -vGM -qNr -qNr -qNr -qNr -vGM -exK -fLc -kuj -bUy -lox -lox -lox -lox -bUy -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -kcw -iiX -uND -cmW -cmW -rBV -xtc -qeh -yaT -uIw -cmW -cmW -uND -iiX -kXe -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -aLt -utr -oFY -oFY -oFY -gxR -ipu -iVk -crN -bFQ -dNH -dNH -dNH -izj -jwB -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -uND -mqJ -spr -fVG -fVG -xpG -eFp -aYp -eFp -qSW -fVG -fVG -idl -cMQ -uND -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -cmW -mqJ -gOl -cmW -cmW -nyl -rZy -eFp -eFp -nyl -cmW -syp -tHM -cMQ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -cmW -mqJ -gOl -cmW -iVe -nyl -ldt -aVJ -xqt -xqt -xqt -xqt -xqt -cMQ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -nyl -nyl -nyl -nyl -cDc -eaV -nyl -nyl -nyl -jsl -aYp -xqt -tEc -tEc -tEc -xqt -wKv -nyl -nyl -nyl -nyl -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -fha -qVu -uib -poF -gSS -bHI -eFp -eFp -eFp -ldt -eFp -aYp -xqt -tEc -tEc -tEc -xqt -kwU -nyl -wpn -aqt -gwv -bST -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -uYU -iZj -eFp -ldm -pLe -drD -eFp -eFp -eFp -ldt -fSp -quM -hMG -tEc -tEc -hQk -xqt -the -fMi -sba -eFp -edm -iqy -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -wVo -wHm -iqq -yiQ -gfe -uKO -eFp -eFp -eFp -ldt -eFp -aYp -hOT -tEc -tEc -tEc -xqt -kwU -nyl -bIY -jTq -bNk -geN -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -nyl -nyl -nyl -nyl -tVf -urJ -nyl -nyl -vSJ -exK -aYp -xqt -tEc -tEc -tEc -xqt -rHD -nyl -nyl -nyl -nyl -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -cmW -mqJ -gOl -cmW -iVe -nyl -ljI -aVJ -xqt -xqt -xqt -xqt -xqt -cMQ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -cmW -mqJ -gOl -cmW -cmW -nyl -eFp -eFp -pWh -nyl -cmW -vth -tHM -cMQ -cmW -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -uND -mqJ -gGL -gMl -gMl -rBV -eFp -aYp -eFp -uIw -gMl -gMl -nns -cMQ -uND -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kTn -aLt -vGO -oFY -dNH -dNH -oia -crN -gFM -crN -bFQ -dNH -dNH -dNH -jtc -jwB -kTn -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -iDk -djx -rGJ -jAj -suU -xpG -xtc -txv -yaT -qSW -cmW -cmW -uND -bcx -fvD -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -nyl -iQt -cWZ -cWZ -lzb -cWZ -iQt -exK -rAh -kuj -hMz -hMz -hMz -hMz -hMz -hMz -nyl -nyl -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iQt -iQt -iQt -sOt -sOt -nNc -sOt -iQt -eFp -rAh -eFp -hMz -txu -hHc -ror -cdL -hMz -hMz -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iQt -aLl -mUM -grN -grN -guI -aQJ -qZz -eFp -fLc -pWh -hMz -pSG -sqE -fDB -lAL -sqE -gKi -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -qZz -sOt -sOt -aQJ -mwa -grN -mwa -qZz -eFp -fLc -eFp -hMz -hMz -cSb -fna -nRq -abf -hTw -dKE -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -qZz -aQJ -aQJ -aQJ -bgw -grN -wIN -iQt -eFp -fLc -eFp -hwh -dKE -vFR -sqE -fXr -tnY -vNM -dKE -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -qZz -qBK -qBK -pod -gnN -grN -guK -qZz -rRv -hLQ -crN -bKw -vMx -gVB -ssQ -ssQ -eav -dKT -dKE -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iQt -eUB -hmT -tGU -kxL -vPL -ttj -jCZ -gHf -vsg -eFp -hMz -hMz -cWr -sqE -fXr -gKr -bji -dKE -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iQt -iQt -iQt -iQt -qZz -jYR -qZz -qZz -fVz -fLc -kuj -hMz -dKE -dKE -jrm -rmx -dKE -dKE -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -hIX -aiH -tCF -edZ -nmh -vMM -tCF -eFp -fLc -pWh -hMz -khe -jNT -jrm -rmx -gPY -aKI -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -jqv -hRq -rmb -rFl -uRG -rFl -tCF -omD -pxT -eFp -hMz -gpw -jNT -jrm -rmx -gPY -yeY -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -wmW -lxq -lxq -tJU -rSV -iWA -omG -rRv -pxT -eFp -hMz -dKE -dKE -jrm -rmx -dKE -dKE -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -qVY -dbT -gpK -rAn -aqY -fjM -toa -gHf -tXI -eFp -hMz -yeY -jNT -jrm -rmx -gPY -qea -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -gRu -oHH -gpK -jKW -bCA -qTd -omG -fVz -fLc -eFp -hMz -yeY -jNT -jrm -rmx -gPY -yeY -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -omG -gpK -gpK -gpK -jen -jen -jen -tCF -eFp -pxT -eFp -hMz -dKE -dKE -jrm -rmx -dKE -dKE -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -tCF -xeO -qEA -wRv -fAB -xRs -wwd -tCF -eFp -pxT -eFp -hMz -aAN -jNT -jrm -rmx -gPY -yeY -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -eFp -pxT -pWh -hMz -nYW -jNT -jrm -rmx -gPY -jzc -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mWQ -mWQ -mWQ -iNQ -htY -lch -lbp -lEx -jTb -mWQ -rRv -fLc -kuj -hMz -dKE -dKE -jrm -clK -dKE -dKE -hMz -hMz -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mWQ -gLO -mWQ -vfm -juo -vfm -ujq -ygm -dWu -tYV -jnr -pxT -eFp -hMz -hMz -sBs -fna -pyC -pRj -sqE -hMz -sgK -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mWQ -mWQ -mWQ -viw -wCg -bfb -hMm -dDV -gAZ -mWQ -fVz -qmC -eFp -ogQ -hMz -kwd -sqE -sqE -sqE -sqE -hMz -hMz -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -mWQ -bwr -nGG -srw -xwL -hMz -izQ -xij -xeF -smH -bdP -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -cVm -kVM -dhD -ojP -ybE -njs -kTn -thT -eFp -eFp -eFp -nyl -hMz -iWi -dKE -xjO -dKE -hMz -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -cVm -kVM -kVM -kVM -kVM -kVM -wxN -eFp -eFp -eFp -eFp -kuj -hMz -lPj -yeY -yeY -yeY -yeY -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -cVm -kVM -kVM -kVM -kVM -kVM -kTn -vNr -pVq -oqt -pVq -vNr -hMz -nYW -yeY -yeY -yeY -aKI -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -cVm -kVM -kVM -kVM -kVM -kVM -nyl -kTn -kTn -kTn -kTn -kTn -hMz -yeY -yeY -yeY -yeY -yeY -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nyl -ori -com -ori -ori -fOM -nyl -xKW -xKW -xKW -xKW -xKW -hMz -hMz -hMz -hMz -hMz -hMz -hMz -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,6) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -ofm -ofm -ofm -vfs -vfs -vfs -xKW -xKW -xKW -xKW -xKW -vfs -vfs -vfs -dHQ -dHQ -dHQ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -gXu -qLs -gXu -vfs -nuo -vfs -eHA -eHA -eHA -eHA -eHA -vfs -tHc -vfs -gjZ -gjZ -bzv -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -gXu -hhC -gXu -vfs -pVe -pVe -voQ -voQ -voQ -voQ -voQ -voQ -pVe -vfs -gjZ -gjZ -bzv -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -rYE -qyn -rYE -vfs -ozQ -fVf -voQ -gka -voQ -ljf -voQ -fVf -gXq -vfs -xXR -bOE -qrT -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -fYn -mVh -hiu -vfs -lmB -fVf -fVf -fVf -fVf -fVf -fVf -fVf -pVe -vfs -nBl -bzb -dGk -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -azV -rpt -oZR -vfs -qiQ -njA -vfs -vfs -vfs -vfs -vfs -njA -qiQ -vfs -nBl -bzb -hYZ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dRc -ndi -bYm -vfs -vfs -uDW -vfs -dbh -bSo -kmu -vfs -uDW -vfs -vfs -dHQ -oea -dHQ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dRc -uDj -iwS -xcS -xcS -rDc -xcS -uLm -uDj -iwS -xcS -rDc -xcS -xcS -xcS -xcS -lea -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -vCN -qDa -kIb -eDE -obE -erp -agA -aic -vAi -sAc -muq -uzg -ppF -gIN -vTb -nPd -blT -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -ubY -kIb -uDj -ydz -trH -uDH -uDH -sFW -wcQ -sFW -uDH -uDH -trH -xyb -jdL -slF -pGN -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -kPc -kIb -fSG -ydz -eMq -uDH -uDH -rdF -qQr -nru -uDH -uDH -eMq -xyb -fJQ -slF -rFf -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -kPc -kIb -xuY -ydz -uDH -uDH -uDH -sFW -wcQ -sFW -uDH -uDH -uDH -xyb -hks -slF -rFf -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -kPc -kIb -ePS -mzB -uDH -uDH -uDH -rdF -qQr -nru -uDH -uDH -uDH -gGj -niJ -slF -rFf -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dAH -kIb -uDj -mzB -uDH -uDH -uDH -sFW -wcQ -sFW -uDH -uDH -uDH -gGj -uDj -slF -rRz -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dAH -kIb -uDj -mzB -tKd -uDH -uDH -rdF -qQr -nru -uDH -uDH -tKd -gGj -uDj -slF -rRz -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -fxM -vNO -uDj -mzB -trH -uDH -uDH -eQx -wcQ -daN -uDH -uDH -trH -gGj -uDj -iah -vIz -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -unn -fFE -kIb -jSc -qdo -hQw -uhL -bEy -rDc -aEv -hAU -cKi -wgy -lWW -vTb -sWm -cmM -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -mVG -pYh -fVn -dlT -dlT -dlT -bOS -dlT -nVM -dlT -dlT -dlT -dlT -gFO -pYh -pYh -uxZ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dHQ -oMJ -jtN -oMJ -oMJ -dHQ -dHQ -dHQ -iKK -dHQ -dHQ -dHQ -oMJ -bKq -pwz -oMJ -dHQ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oMJ -tHB -uDj -ogA -aWR -uGZ -gnp -dHQ -dNz -uKQ -aIV -dHQ -rSs -hDa -pye -uDj -jdL -qDw -oMJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oMJ -tHB -jdL -ogA -uDj -uDj -iJx -dHQ -gma -aSR -wIZ -wLy -kKB -hDa -qsd -uDj -uDj -lPb -oMJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oMJ -tHB -wQo -lZe -dmv -uDj -xax -dHQ -vib -vdP -vDx -dHQ -kKB -vKB -dUt -rDF -uDj -ivK -oMJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -oMJ -jpR -aLF -uuL -uDj -jdL -uDj -dHQ -oMJ -wWY -oMJ -dHQ -abe -jdL -uDj -uDj -uDj -ivK -oMJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dHQ -dHQ -dHQ -tdN -xmD -ryA -qzt -dHQ -fel -pmZ -fel -dHQ -iXY -aLF -uDj -pCn -dHQ -dHQ -dHQ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -dHQ -dHQ -dHQ -dHQ -dHQ -dHQ -oXh -dXD -abx -dHQ -dHQ -dHQ -dHQ -dHQ -dHQ -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -cMM -nMa -abL -kSm -kSm -wYR -fel -uvc -fel -mKI -kSm -kSm -abL -nMa -vRr -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -vOK -fSZ -uep -uep -uep -vRU -nnE -xIw -prA -atz -vla -vla -vla -hbH -lbi -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -abL -yfv -bwt -bzE -bzE -laP -fel -nKH -fel -waY -bzE -bzE -hZN -jbN -abL -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -kSm -yfv -tci -kSm -kSm -riC -wUx -fel -fel -riC -kSm -tvS -whH -jbN -kSm -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -kSm -yfv -tci -kSm -goM -riC -hxt -rxo -xqt -xqt -xqt -xqt -xqt -jbN -kSm -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -riC -riC -riC -riC -wXP -guq -riC -riC -riC -cGZ -nKH -xqt -tEc -tEc -tEc -xqt -pUA -riC -riC -riC -riC -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -qBl -kPy -tbt -sHT -itP -jTL -fel -fel -fel -hxt -fel -nKH -xqt -tEc -tEc -tEc -xqt -lvS -riC -bqu -wlE -kMS -fnl -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -gQh -nUu -fel -hqD -iur -aOK -fel -fel -fel -hxt -mnq -hHo -hMG -tEc -tEc -hQk -xqt -dXD -tpZ -hHS -fel -oVX -wyW -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -kJf -qSD -nly -cyR -oEl -vMi -fel -fel -fel -hxt -fel -nKH -hOT -tEc -tEc -tEc -xqt -lvS -riC -tvW -tZa -nnG -efr -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -riC -riC -riC -riC -wEL -ubV -riC -riC -dyN -oXh -nKH -xqt -tEc -tEc -tEc -xqt -vnJ -riC -riC -riC -riC -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -kSm -yfv -tci -kSm -goM -riC -dJP -rxo -xqt -xqt -xqt -xqt -xqt -jbN -kSm -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -kSm -yfv -tci -kSm -kSm -riC -fel -fel -jjQ -riC -kSm -dfT -whH -jbN -kSm -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -abL -yfv -uxJ -tBJ -tBJ -wYR -fel -xdz -fOl -mXZ -rxn -rxn -bdd -jbN -abL -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jDR -vCJ -pHb -dwS -dwS -dwS -jKE -cSF -nDC -cSF -liG -dwS -dwS -dwS -kXS -icC -jDR -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -xWd -rsz -abL -kSm -kSm -laP -pSi -vdn -vub -waY -kSm -kSm -abL -rsz -gbv -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -riC -riC -ndI -ndI -ndI -ndI -ndI -ndI -oXh -ikx -abx -peB -peB -peB -peB -peB -peB -riC -riC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -eXn -qYS -toK -wdU -ndI -fel -hue -fel -peB -sLy -kEI -fDf -xsI -peB -peB -peB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -xgH -qDB -aAK -msQ -mzd -pSV -dvm -fel -hue -fel -kGT -oWn -oWn -ftL -clf -clf -iNT -peB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dvm -pop -ocx -nwV -gpn -tgp -uvB -dvm -fel -cVw -prA -iHd -wSI -kVs -dMy -clf -clf -hdf -peB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dvm -rnW -rnW -nwV -gpn -tgp -hpl -dvm -fel -hue -fel -kGT -nuu -eqG -thy -clf -clf -tCd -peB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -dvm -nlw -nlw -bAw -pcx -nVy -gpn -ndI -sUX -uQn -hUF -peB -kVt -tCZ -gSK -hoc -xTP -oCf -peB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -ndI -ndI -dvm -mPI -ndI -tRj -wNz -xJs -ndI -ndI -ndI -ndI -ndI -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -wnR -wnR -ddJ -fph -dfv -qxA -uIr -iUT -uBW -pis -sAq -fIm -jnd -qva -ojl -cOi -cOi -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -jtA -wnR -izH -jpd -nhu -aAK -uMf -xpC -rvP -xpC -sTn -scD -wgo -jpd -uAW -hOC -cYP -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -wnR -wnR -hfG -pZC -iXO -tBH -nji -vmL -fFi -lHG -gti -hjb -mjQ -pZC -pVk -cOi -cOi -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -ndI -ndI -gpn -tBH -vEH -vmL -sdy -vmL -kJz -uju -gpn -ndI -ndI -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -rNB -rNB -fqV -qva -qxA -kdJ -eEW -vmL -sdy -vmL -uLt -snM -eDu -qva -qzC -kyU -kyU -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -lmU -cpK -viR -jpd -qPL -tBH -lpd -vmL -lXW -vmL -xqn -uju -hHC -jpd -jdZ -cLR -qgG -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -rNB -rNB -oXj -pZC -qFq -oSt -oSS -kAY -wiK -lHG -kGS -hjb -qxA -pZC -tue -kyU -kyU -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -ndI -ndI -gpn -tBH -stH -vmL -sdy -vmL -jym -uju -bul -ndI -ndI -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -sep -sep -tlq -qva -qxA -kdJ -gOR -sbS -fcQ -vmL -lBD -uju -eDu -qva -tvj -uGH -uGH -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -jWA -hHk -tIQ -jpd -gaG -tBH -diF -vmL -sdy -vmL -olt -tgp -hsK -jpd -jlk -lcN -hFR -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -jIP -ndI -sep -sep -tFo -pZC -iXO -oSt -tFH -lHG -nTr -vmL -sAq -qBf -mjQ -pZC -nEC -uGH -uGH -ndI -jIP -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -jeF -ndI -ndI -ndI -ndI -ndI -aRw -tBH -ugD -das -ygt -vmL -nsy -tgp -bul -ndI -ndI -ndI -ndI -ndI -wnR -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -sZD -nVE -lLd -qMY -vJW -qcl -jdl -kuA -jNt -xDH -eDe -xDH -vFp -jAQ -jdl -mgh -dzj -gtQ -ohA -nVE -tPf -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -lSA -gYH -iYw -pmJ -rQz -gQH -gYH -ubp -fWN -eaK -nsy -gpn -gpn -gpn -gpn -gpn -wwS -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -fUJ -nji -vmL -nsy -ndI -ndI -gpW -vmL -vmL -aCQ -nsy -gpn -gpn -ndI -jpd -jpd -jpd -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -iVC -aWL -vmL -nsy -tMZ -ndI -ugK -fEM -mJP -rkJ -lIP -aee -gWu -vbp -sRI -qHG -wnR -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -oUC -nji -aWa -jYO -tMZ -ndI -dvm -dvm -dvm -dvm -dvm -ndI -tMZ -ndI -wnR -wnR -wnR -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -bma -ndI -ndI -ndI -xKW -xKW -xKW -xKW -xKW -ndI -ndI -ndI -jsn -jsn -jsn -ndI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,7) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -fyI -fyI -fyI -fyI -fyI -ofn -xKW -xKW -xKW -xKW -xKW -ofn -fyI -fyI -fyI -fyI -fyI -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -sAI -ulz -pgh -blp -lVe -ofn -ofn -aZe -aZe -aZe -ofn -ofn -nPY -nPY -nPY -nPY -nPY -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -tSv -mMM -cXp -jjl -wnY -aZe -ixn -bSZ -lYF -uNp -hlH -aZe -nUC -buH -dtj -buH -ckz -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -tSv -yeW -xmS -yeW -wnY -aZe -iuV -cMp -pYX -mkK -lCR -aZe -elw -hmx -hmx -mFh -wnY -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -xsJ -vyL -qFa -xry -rqk -aZe -fCd -iZF -eEa -xaz -gXZ -aZe -nPY -rje -nPY -pem -wnY -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -sYd -sYd -qKQ -sYd -sYd -ofn -ofn -aZe -mhU -aZe -ofn -ofn -fyI -sYd -sYd -nzj -wnY -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -jCj -buH -qkd -mLY -pRc -qub -qgk -xZd -lGD -ccd -usN -gVW -thW -fpu -lJC -eyO -cug -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -rvp -yeW -yeW -yeW -lyV -gbt -lgy -xfv -mZX -uEW -wWi -mFh -qNP -fyI -dPg -caO -pQp -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -pvN -pvN -pvN -pvN -nqu -wnY -lnV -iyz -hop -iyz -lnV -tSv -fhh -sYd -fyI -fyI -fyI -sYd -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -yiN -aVt -enm -pvN -jiv -wnY -lnV -gBY -eof -hhK -lnV -vCQ -lYr -waw -dxH -whS -usr -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -sKh -qtW -aaY -mJY -dAU -wnY -iyz -xiC -tQS -xUM -iyz -tSv -eVX -sYd -mcW -eEU -fug -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -czB -qtW -qMX -pvN -uMS -rrO -iyz -tjr -ylX -rCo -iyz -xwI -rdm -ozD -dxH -whS -usr -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -nCJ -qtW -aaY -ddA -bWB -cTH -iyz -wBN -oTX -qvL -iyz -bZe -oEk -sYd -mcW -eEU -fug -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -eQR -lyp -miO -bcv -wYd -wnY -iyz -smc -ylX -nCk -iyz -tSv -eVX -uba -dxH -whS -usr -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -lpF -mKo -eTG -pvN -tIz -bMY -lnV -aqn -mzw -eTJ -lnV -gaD -nBg -sYd -xCe -tmw -cqW -fyI -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pvN -pvN -pvN -pvN -pvN -mAw -wnY -lnV -iyz -iyz -iyz -lnV -tSv -meQ -dsw -eIB -eIB -eIB -dsw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -eZZ -rgX -pTQ -ovJ -dAU -qMQ -hJX -buH -buH -buH -hJX -xLM -wEf -eIB -jDT -qBR -iqN -dsw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -amm -alF -buH -jfA -rmz -mSs -rmp -aWi -lKj -aWi -geB -aWi -pLA -cYx -uzo -agn -maS -eIB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -fFn -elw -hmx -qPp -qJd -iqd -sYd -rvo -fFg -rvo -dsw -eIB -eIB -dsw -vcs -npu -veU -eIB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -eXM -vgP -iGV -nCC -efh -wnY -fyI -qhe -jNO -iaS -eIB -gih -vXJ -gZo -sko -qGr -dsx -dsw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -wxj -wxj -tsz -qHU -vgA -bMY -sYd -uxY -jxU -jpw -dsw -gih -gdk -raa -jqV -qGr -qHR -eIB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fyI -vOs -vOs -lsJ -lOc -xOf -wnY -fyI -eEA -aKD -eEA -eIB -gih -gbs -sHu -ezT -lYO -qHR -eIB -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -iUy -eBU -fxT -sgO -tSv -uwA -sYd -ycy -fbE -ycy -dsw -caX -lJS -qHv -qHv -tqT -xsY -dsw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYd -sYd -sYd -hhp -llP -elw -riy -sYd -ptM -gTc -sUW -dsw -shm -xAw -wZr -wdO -dsw -dsw -dsw -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -sYd -sYd -sYd -fyI -fyI -sYd -iXH -rxc -xNW -dsw -eIB -eIB -eIB -eIB -dsw -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -ujT -pTK -vWH -rkr -rkr -xzp -sAT -wsS -oSh -fQZ -rkr -rkr -vWH -pTK -hVs -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -fiu -mLU -wWR -wWR -wWR -pgH -pEZ -bQI -wqr -iXB -hXQ -hXQ -hXQ -jap -sUN -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -vWH -pyW -scE -tbw -tbw -wri -bVz -eZT -bVz -owR -tbw -tbw -gJs -vDb -vWH -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -rkr -pyW -fAs -rkr -rkr -sYJ -cSI -bVz -bVz -sYJ -rkr -fqj -ejp -vDb -rkr -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -rkr -pyW -fAs -rkr -sbc -sYJ -eTs -goG -xqt -xqt -xqt -xqt -xqt -vDb -rkr -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -sYJ -sYJ -sYJ -sYJ -bBN -vru -sYJ -sYJ -sYJ -qyW -eZT -xqt -tEc -tEc -tEc -xqt -xtC -sYJ -sYJ -sYJ -sYJ -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -aka -oFV -vTN -lup -tne -eNn -bVz -bVz -bVz -eTs -bVz -eZT -xqt -tEc -tEc -tEc -xqt -cgc -sYJ -hYd -cUi -pcv -hPO -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -gNZ -ucU -bVz -ekO -ttQ -hFA -bVz -bVz -bVz -eTs -aXu -kXl -hMG -tEc -tEc -hQk -xqt -vhy -qzy -mZH -bVz -gXy -bin -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -aNe -pFP -bee -ujJ -doE -jTP -bVz -bVz -bVz -eTs -bVz -eZT -hOT -tEc -tEc -tEc -xqt -cgc -sYJ -ezy -xLx -yjz -iHe -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -sYJ -sYJ -sYJ -sYJ -rVT -acM -sYJ -sYJ -fEt -iXH -eZT -xqt -tEc -tEc -tEc -xqt -tpr -sYJ -sYJ -sYJ -sYJ -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -rkr -pyW -fAs -rkr -sbc -sYJ -jCU -goG -xqt -xqt -xqt -xqt -xqt -vDb -rkr -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -rkr -pyW -fAs -rkr -rkr -sYJ -bVz -bVz -sIR -sYJ -bls -gVe -ejp -vDb -rkr -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -vWH -pyW -yiy -uMs -uMs -xzp -bVz -eZT -bVz -fQZ -uMs -uMs -twB -vDb -vWH -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -iVK -tUj -blS -wWR -wWR -wWR -pgH -pEZ -xAE -wqr -iXB -hXQ -hXQ -hXQ -fzL -sUN -iVK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -oyW -gcq -rkr -rkr -rkr -wri -sAT -jgY -oSh -owR -rkr -rkr -vWH -qsj -geQ -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -sYJ -sYJ -wpa -wpa -wpa -wpa -wpa -wpa -iXH -alr -xNW -iHS -iHS -iHS -iHS -iHS -iHS -sYJ -sYJ -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wpa -wpa -wpa -wfi -ccJ -rHy -wJu -wpa -efZ -alr -xjG -iHS -fPW -bMG -hPN -cyw -iHS -iHS -iHS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wpa -lEO -wPE -vET -huP -bks -haA -bRG -bcu -wHQ -nrs -tSP -vye -vye -vye -vye -ixr -pBX -iHS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bRG -wJu -wJu -wJu -sBU -foU -mbO -gYC -nii -fft -lUe -kkv -mWD -xRP -oVq -vye -ixr -fGv -tSP -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bRG -wJu -wfi -wJu -eac -cOe -wJu -bRG -dgE -aIU -nrs -tSP -lSv -fzi -sXo -vye -ieV -syH -tSP -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bRG -xEP -fES -hhy -wJu -wJu -wJu -wpa -chB -alr -kWP -iHS -qXf -etn -vye -vye -ixr -dSg -tSP -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -wpa -leq -gcY -mFW -qrw -mka -nJb -wpa -bVz -alr -bVz -iHS -jfI -pDT -hmS -eVD -ixr -lyv -iHS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -fZW -fZW -fZW -fZW -fZW -fZW -fZW -apv -bOu -lDQ -fZW -fZW -fZW -fZW -fZW -fZW -fZW -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -csW -ifl -cbw -alC -pzm -qcr -fZW -nxp -hZk -nxp -fZW -cKb -nBS -djo -hxe -rZV -uvu -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -gnW -fan -aCO -gAx -qjY -xzS -fZW -sNN -nzh -sNN -fZW -ekg -dkO -dkO -cqK -dkO -rGo -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -tqL -vcM -bgN -jlT -tqV -fwJ -fZW -uZY -aGR -eKA -fZW -uBE -dkO -dkO -uHg -dkO -moh -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -csW -ifl -qns -cbw -gtR -eBY -fZW -cdW -ail -fTH -fZW -rKs -vXT -tRB -qSc -dkO -vKu -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -fZW -fZW -uNc -ahg -fZW -fZW -fZW -oxR -leV -oxR -fZW -fZW -fZW -xEm -mEz -bLg -bVO -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -hok -fIa -wrk -aGp -fZW -ouf -ejJ -tuR -pGT -tuR -lra -kBV -fZW -hoH -lCl -eKA -vRu -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -hok -aoO -xSr -qZP -fZW -oog -idK -oCE -raT -mOi -idK -xmH -fZW -oDq -xSr -iXf -mzb -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -uwh -aoO -xSr -iXf -fZW -jgS -dqc -dqc -xuR -guc -shP -ilN -fZW -jpU -xSr -iXf -drj -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -yhS -fZW -ozR -woW -xSr -iXf -fZW -fZW -mRF -mRF -fwm -mRF -mRF -fZW -fZW -rMH -xSr -iXf -wgj -fZW -yhS -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -fZW -qnG -tuR -gPV -iXf -fZW -pds -qXq -tuR -wOE -tuR -qzW -wCS -fZW -xwY -xSr -iXf -rMH -fZW -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -fZW -vcM -hIJ -jgT -uEo -dgI -fgW -bHF -bHF -hpw -bHF -bHF -pzC -dgI -gQN -tAl -mWI -lyU -fZW -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -jro -fZW -vjT -dDj -iKd -tLq -nrd -nkb -guc -guc -guc -guc -guc -nkb -rvs -idK -omj -iXf -ptZ -fZW -jro -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -yhS -yhS -fZW -wbp -dkO -aOd -tLq -iXf -fZW -ahg -xoe -fZW -xoe -ahg -fZW -tLq -idK -idK -iXf -gpT -fZW -yhS -yhS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -wbp -dkO -aOd -eit -dWS -fZW -idK -nta -fZW -rVY -idK -fZW -tLq -idK -idK -iXf -aiX -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -wbp -asM -aOd -eit -pGu -fZW -iPG -phj -fZW -phj -ymd -fZW -cuI -guc -guc -vcH -aiX -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -obj -rMh -fsN -vcM -jYi -fZW -ahg -ahg -fZW -ahg -ahg -fZW -ciO -jpF -vjH -xfN -cxl -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -fZW -fZW -fZW -fZW -fZW -fZW -fZW -xKW -xKW -xKW -xKW -xKW -fZW -fZW -ahg -ahg -ahg -fZW -fZW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,8) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -kFM -eBD -eBD -kFM -kFM -kFM -xKW -xKW -xKW -xKW -xKW -kFM -kFM -kFM -kFM -kFM -kFM -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -rgV -ckA -ckA -kqE -qkI -kFM -eBD -eBD -eBD -eBD -eBD -kFM -bhF -xBZ -xBZ -sxm -rVU -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -vWi -vtz -vtz -vtz -qkI -kFM -msY -pFh -gkg -kjU -msY -kFM -eAD -upC -upC -upC -nEl -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -vtz -cUY -cUY -plI -kFM -kFM -mIi -dMv -rwy -dMv -vXz -kFM -kFM -rvc -rii -upC -gpC -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eBD -vtz -rnF -mtb -kZZ -kFM -rLM -dMv -dMv -iMJ -dMv -dMv -vNR -kFM -bfh -wgh -upC -vAc -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eBD -vtz -tFu -syY -vtz -kFM -lMI -wZy -dMv -fQA -dMv -vvP -knL -kFM -aAx -mqu -upC -upC -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eBD -vtz -mtX -lTn -kZZ -kFM -mGG -dMv -nZP -qlH -kcV -dMv -gFp -kFM -bfh -gAi -upC -btK -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -vtz -mnD -oJI -plI -kFM -kFM -kDr -dMv -egz -dMv -lIC -kFM -kFM -qtI -wtI -upC -sMW -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -vWi -vtz -tsw -vtz -qkI -kFM -eLn -wZy -egz -vvP -bNY -kFM -cmz -upC -cKn -upC -wAY -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -dxB -vtz -uLI -kqE -qkI -kFM -vvF -dMv -egz -dMv -cAs -kFM -bVE -upC -wqx -upC -hOd -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -kFM -jNw -uva -kFM -kFM -kFM -kFM -eBD -hjt -eBD -kFM -kFM -kFM -kFM -vXi -mPR -kFM -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -weS -dMv -kPU -vsa -cSo -klE -cSo -cSo -sTZ -cSo -cSo -klE -cSo -vsa -sWo -dMv -dMv -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -weS -dMv -dMv -cld -dMv -dMv -dMv -dMv -dMv -dMv -dMv -dMv -dMv -cld -dMv -dMv -dMv -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -cUr -rAI -pct -pIm -nsF -ewi -eUS -rAI -rAI -rAI -rAI -rAI -rAI -bxv -dMv -dMv -dMv -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -qmF -dMv -gqm -pIm -tfD -nOE -gQX -dMv -rAI -dMv -tQV -nOE -dMv -bxv -dMv -nOE -ckr -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -weS -dMv -dMv -bxv -dMv -xYe -iKu -dMv -rAI -dMv -jGg -sEf -dMv -bxv -dMv -tzx -qhV -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kFM -has -dMv -oCM -bSq -lKI -mCp -mIG -cSo -uJb -cSo -fuA -pjN -lKI -nKv -oCM -jJa -uJX -kFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -thp -thp -thp -vzf -thp -thp -thp -gkM -soa -oPB -tFM -tFM -tFM -ieI -tFM -tFM -tFM -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -oHS -fiM -thp -orb -mRO -ixK -thp -dMv -soa -dMv -tFM -daX -knE -kCJ -tFM -tVV -pNn -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -cvL -poU -eLL -uRE -uHC -kGC -thp -kFM -iMa -kFM -tFM -qxq -mrO -kBF -bax -xqO -bWZ -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -thp -thp -thp -pys -pad -hIK -thp -nZP -fIt -kcV -tFM -wAn -cak -acQ -tFM -tFM -tFM -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -xPC -xTN -xVX -sRv -pVv -qjM -thp -fzc -jHv -pIo -tFM -mkN -rmA -rmA -nWc -nJD -che -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -cZZ -dbt -fQe -pVv -kmP -izn -thp -mBa -xtH -pLN -tFM -dTI -rmA -rmA -tkP -qMG -aYZ -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -thp -thp -thp -gQf -pVv -pVv -ioe -thp -eBD -wgN -eBD -tFM -aRU -rmA -rmA -vTq -tFM -tFM -tFM -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -thp -thp -thp -thp -thp -thp -vVo -bxk -amO -tFM -tFM -tFM -tFM -tFM -tFM -pIt -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -jNk -oBs -xdg -aFX -aFX -ikC -kKP -nNl -kKP -kNn -aFX -aFX -xdg -oBs -qou -pIt -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -srx -tRN -xJx -xJx -xJx -jED -nMy -dZJ -dMV -lvD -cOU -cOU -cOU -oxe -fbg -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -xdg -nQQ -ivT -tRZ -tRZ -lcl -kKP -tON -kKP -hCF -tRZ -tRZ -bJR -bhU -xdg -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -aFX -nQQ -kuw -aFX -aFX -pIt -aru -kKP -kKP -pIt -aFX -jJf -tQE -bhU -aFX -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -aFX -nQQ -kuw -aFX -dRq -pIt -kqs -xEc -xqt -xqt -xqt -xqt -xqt -bhU -aFX -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -pIt -pIt -pIt -pIt -ixN -iya -pIt -pIt -pIt -ljA -tON -xqt -tEc -tEc -tEc -xqt -uzv -pIt -pIt -pIt -pIt -pIt -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -fXM -uJV -gqv -lmO -btP -kJl -kKP -kKP -kKP -kqs -kKP -tON -xqt -tEc -tEc -tEc -xqt -lql -pIt -uFb -nbK -fPp -hGw -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -fmv -pLy -kKP -sfE -gvk -iLa -kKP -kKP -kKP -kqs -xai -yfn -hMG -tEc -tEc -hQk -xqt -bxk -oeo -uGn -kKP -uIg -gDU -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -rim -oXn -hbq -wcr -xrX -hAh -kKP -kKP -kKP -kqs -kKP -tON -hOT -tEc -tEc -tEc -xqt -lql -pIt -kkp -jUm -eSg -vpz -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -pIt -pIt -pIt -pIt -dTl -buQ -pIt -pIt -jxQ -vVo -tON -xqt -tEc -tEc -tEc -xqt -eWP -pIt -pIt -pIt -pIt -pIt -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -aFX -nQQ -kuw -aFX -dRq -pIt -uvP -xEc -xqt -xqt -xqt -xqt -xqt -bhU -aFX -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -aFX -nQQ -kuw -aFX -aFX -pIt -kKP -kKP -pxE -pIt -aFX -rry -tQE -bhU -aFX -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -xdg -nQQ -pvs -ubF -ubF -ikC -kKP -uDM -vIy -mhK -bDM -bDM -wps -bhU -xdg -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -bsY -srx -flS -kWC -kWC -kWC -dCp -wwM -oEX -wwM -ixg -kWC -kWC -kWC -kFy -fbg -bsY -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -qfw -ksp -xdg -aFX -aFX -lcl -sSn -fsm -cHM -hCF -aFX -aFX -xdg -ksp -evN -pIt -pIt -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pIt -pIt -pIt -pIt -pIt -pIt -pIt -pIt -vVo -ahW -amO -maq -maq -maq -maq -maq -maq -maq -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -eUE -eUE -eUE -eUE -eUE -eUE -eUE -amN -dQt -kKP -maq -xpN -nrg -pkR -hRk -maq -maq -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -kZB -jvJ -hLO -sBp -oYJ -eUE -eUE -kKP -dQt -kKP -maq -cUK -jga -ntq -hXu -ycG -ydK -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -uKi -blJ -blJ -kKD -icz -eUE -lZK -kKP -sNU -crn -hCq -fwf -ntq -ptE -sJl -ujO -gyD -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -paD -vjD -aqo -sYn -xey -uQL -cnM -qOv -hVZ -dEb -oOj -ujB -wql -xgz -csL -ujO -lBw -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -irl -blJ -blJ -lCV -icz -eUE -lKv -kKP -hEh -tty -hCq -nVb -ntq -iML -sJl -ujO -mbQ -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -dOo -qYj -xXM -mkM -tWp -eUE -eUE -kKP -dQt -kKP -maq -ajU -tEt -aaa -jRm -ycG -rhC -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -eUE -eUE -eUE -eUE -eUE -eUE -eUE -eUE -kKP -dQt -kKP -maq -nOQ -aJN -pkR -iOQ -maq -maq -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -pQG -pQG -pQG -pQG -pQG -pQG -pQG -iSk -wib -amO -maq -maq -maq -maq -maq -maq -maq -maq -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -xJJ -rIH -frG -mUU -vxQ -dRJ -pQG -kKP -dQt -kKP -rom -wUj -ylD -wNY -caf -ylD -wUj -rom -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -rsJ -mbe -ejZ -lZP -gLg -rmU -bsd -kKP -dQt -kKP -fty -qHO -lDN -qHO -qHO -qHO -qHO -rom -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -pip -sjQ -vGN -vWT -upp -oHF -bsd -kKP -nnQ -qOv -hCY -dLp -oes -shh -blU -kXT -lDV -rom -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -ihh -jMV -joO -uok -hra -xWt -dPZ -wwM -cUy -kKP -fty -xAL -wqp -bEU -bEU -bEU -bEU -rom -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -cZE -nSm -avS -vKi -mee -dqm -pQG -kKP -dQt -kKP -rom -wXd -ylD -eVV -apo -ylD -rFo -rom -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -pQG -pQG -pQG -jxK -mKy -jxK -pQG -kKP -dQt -kKP -wej -wej -wej -wej -wej -wej -wej -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -tkl -tkl -tkl -rke -mee -bKs -pQG -amN -dQt -lqD -wej -gsj -ojA -ojA -lZp -vxq -hTf -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -iGG -mEs -bzw -lSV -yby -aOD -aTL -vIy -gmY -uHe -alA -coS -coS -coS -uPe -sxD -tEE -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pQG -vjY -ujx -piX -lfz -oAH -vZZ -pQG -vVo -dQt -ocm -wej -ucl -eXm -tEE -qpY -eXm -ucl -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -nrx -nrx -nrx -nrx -nrx -nrx -pQG -sSn -fsm -cHM -wej -wej -wej -wej -wHL -wej -wej -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -jtw -boT -iqw -boT -vol -nrx -geV -kKP -dQt -kKP -sKC -wej -kcD -piy -dGN -sxD -oYL -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -iPJ -sPf -aiD -gKW -boT -nrx -cMT -kKP -wib -kKP -jwl -wej -hMX -sFC -olA -bdc -eek -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -wqI -sPf -sKH -bTW -qyF -cHF -cnM -qOv -jVG -kKP -kEx -wej -ykE -lvl -mGF -raL -ufp -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -gTZ -sKc -pYG -tjg -boT -nrx -oNd -kKP -kKP -kKP -xyt -wej -jlC -jxZ -eey -bdc -nNk -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -agz -boT -iqw -boT -vol -nrx -pIt -bsY -bsY -bsY -pIt -wej -kcD -tEE -npr -tEE -oYL -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nrx -nrx -nrx -nrx -nrx -nrx -nrx -xKW -xKW -xKW -xKW -xKW -wej -wej -wej -wej -wej -wej -wej -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,9) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} - -(1,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(2,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(3,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(4,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(5,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(6,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(7,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(8,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(9,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(10,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(11,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(12,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(13,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(14,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(15,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(16,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(17,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(18,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(19,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(20,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(21,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(22,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(23,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(24,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(25,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(26,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(27,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(28,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(29,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(30,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(31,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(32,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(33,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(34,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(35,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(36,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(37,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(38,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(39,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(40,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(41,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(42,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(43,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(44,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(45,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(46,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(47,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(48,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(49,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(50,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(51,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(52,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(53,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(54,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(55,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(56,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(57,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(58,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(59,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(60,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(61,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(62,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(63,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(64,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(65,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(66,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(67,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(68,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(69,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(70,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(71,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(72,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(73,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(74,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(75,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(76,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(77,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(78,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(79,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(80,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(81,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(82,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(83,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(84,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(85,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(86,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(87,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(88,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(89,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(90,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(91,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(92,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(93,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(94,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(95,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -aEc -kKt -kKt -kKt -kKt -kKt -qPK -xKW -xKW -xKW -xKW -xKW -aEc -kKt -kKt -kKt -kKt -kKt -qPK -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(96,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -vyt -jro -wKC -fkT -jro -hGS -kKt -kKt -kKt -kKt -kKt -oLp -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(97,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -vyt -qHs -qHs -qHs -jro -ugW -jro -jro -jro -jro -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(98,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -ydd -lYZ -qHs -ePQ -tcQ -jro -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(99,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(100,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -qHs -qHs -qHs -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(101,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -qHs -qHs -jro -jro -jro -jro -jro -jro -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(102,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(103,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jro -jro -qHs -qHs -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(104,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -qHs -qHs -qHs -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(105,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(106,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(107,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(108,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(109,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -qHs -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(110,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(111,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(112,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(113,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -nKk -kIC -xlC -kIC -nKk -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(114,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -nKk -ovn -qLp -jxd -nKk -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(115,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -kIC -qLp -qLp -qLp -kIC -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(116,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -nKk -kHA -twu -xTq -nKk -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(117,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -jeN -jro -jro -jro -jro -jro -jro -nKk -nKk -kip -nKk -nKk -jro -jro -jro -jro -jro -jro -jeG -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(118,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -jro -jro -jro -jro -nKk -qLp -gGz -qLp -nKk -jro -jro -jro -jro -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(119,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -kIC -kIC -nKk -rtK -gGz -yam -nKk -kIC -kIC -kIC -kIC -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(120,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -uST -lnp -fMf -fJf -fJf -ptv -kHA -byx -aMN -vIe -fJf -fJf -fMf -lnp -vua -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(121,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -ylJ -nXv -giG -giG -giG -sIM -sFp -ikb -kcA -adv -vDk -vDk -vDk -oPr -qDW -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(122,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fMf -gDB -sOk -pZj -pZj -lRU -qLp -kyQ -qLp -wGW -pZj -pZj -lvf -lXL -fMf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(123,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fJf -gDB -cTD -fJf -fJf -nKk -wsx -qLp -qLp -nKk -fJf -mxV -sIe -lXL -fJf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(124,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fJf -gDB -cTD -fJf -xLa -nKk -ctA -cwk -xqt -xqt -xqt -xqt -xqt -lXL -fJf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(125,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -nKk -xKO -mez -nKk -nKk -nKk -ouw -kyQ -xqt -tEc -tEc -tEc -xqt -ema -nKk -nKk -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(126,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -vZk -lDZ -azd -mYg -iAa -dHE -qLp -qLp -qLp -ctA -qLp -kyQ -xqt -tEc -tEc -tEc -xqt -uRD -nKk -csK -woQ -gsp -fXn -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(127,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -uCV -xov -qLp -odD -ogE -hzA -qLp -qLp -qLp -ctA -dZY -gmG -hMG -tEc -tEc -hQk -xqt -aii -jFG -mHt -qLp -lBp -rSq -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(128,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -rxR -aUO -wnr -sTT -uJi -qLb -qLp -qLp -qLp -ctA -qLp -kyQ -hOT -tEc -tEc -tEc -xqt -uRD -nKk -hec -ecI -xto -wkV -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(129,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -nKk -afC -efx -nKk -nKk -rTZ -rtK -kyQ -xqt -tEc -tEc -tEc -xqt -aaj -nKk -nKk -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(130,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fJf -gDB -cTD -fJf -xLa -nKk -ctA -cwk -xqt -xqt -xqt -xqt -xqt -lXL -fJf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(131,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fJf -gDB -cTD -fJf -fJf -nKk -qLp -qLp -tCb -nKk -fJf -kEJ -sIe -lXL -fJf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(132,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -fMf -gDB -tsN -agK -agK -ptv -qLp -kyQ -qLp -vIe -agK -agK -kdc -lXL -fMf -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(133,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -kIC -ylJ -ufX -giG -giG -giG -sIM -sFp -kNI -kcA -adv -vDk -vDk -vDk -fCv -qDW -kIC -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(134,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -hsb -gEW -fJf -fJf -fJf -lRU -kHA -ldL -aMN -wGW -fJf -fJf -fMf -fkp -ykc -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(135,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -nKk -nKk -nKk -jtS -vwY -dlg -nKk -nKk -nKk -nKk -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(136,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -ued -loi -mnS -loi -ued -qLp -gGz -qLp -ued -lxz -mnS -loi -ued -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(137,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -dYN -prg -rVf -jIC -jnt -jnt -abT -qLp -gGz -qLp -ggb -jnt -jnt -osN -vUH -sQP -dsf -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(138,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -fOu -oQp -rVf -xov -qLp -qLp -qLp -qLp -gGz -qLp -qLp -qLp -qLp -lBp -vUH -srN -psc -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(139,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -wTt -sOd -rVf -xov -qLp -qLp -qLp -kHA -dXb -aMN -qLp -qLp -qLp -lBp -vUH -jgI -lkP -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(140,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -dYN -oQp -rVf -cUe -vVH -vVH -gKn -qLp -gGz -qLp -rui -vVH -vVH -chv -vUH -ykl -vPr -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(141,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nhP -qcN -aGA -kQW -kQW -kQW -aGA -qLp -gGz -qLp -aGA -kQW -kQW -kQW -aGA -rHU -cdB -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(142,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -jtS -qLp -qLp -qLp -vZb -qLp -qLp -qLp -dlg -nKk -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(143,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -psc -vly -ued -xov -qLp -rui -vVH -vVH -nJk -vVH -vVH -gKn -qLp -lBp -ued -kCn -vPr -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(144,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -cdB -teh -rVf -xov -qLp -lBp -ued -jRr -ozd -wQO -ued -xov -qLp -lBp -vUH -jCA -dYN -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(145,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -wTw -lur -rVf -xov -qLp -lBp -iOg -uqz -xCa -qMn -cTy -xov -qLp -lBp -vUH -mkx -vnc -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(146,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -fRx -rkp -rVf -xov -qLp -lBp -erS -sDT -vON -pFN -deg -xov -qLp -lBp -vUH -srN -wTw -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(147,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -elc -sKy -rVf -xov -qLp -lBp -rOU -uqz -bPU -qMn -rSR -xov -qLp -lBp -vUH -hOQ -dYN -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(148,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -dYN -vly -rVf -xov -qLp -lBp -rli -cwF -diN -vPr -oZZ -xov -qLp -lBp -vUH -jCA -roP -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(149,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -sOS -rkp -rVf -xov -qLp -lBp -ued -lub -jsb -chT -ued -xov -qLp -lBp -vUH -tIP -idP -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(150,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -fRx -prg -ued -xov -qLp -ggb -jnt -jnt -rKj -jnt -jnt -abT -qLp -lBp -ued -tIP -dYN -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(151,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -nKk -jtS -qLp -qLp -qLp -gGz -qLp -qLp -qLp -dlg -nKk -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(152,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -hbJ -rkp -gCs -fmN -fmN -fmN -gCs -qLp -gGz -qLp -gCs -fmN -fmN -fmN -gCs -eXr -cdB -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(153,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -eLW -lur -rVf -jIC -jnt -jnt -abT -qLp -gGz -qLp -ggb -jnt -jnt -osN -vUH -tIP -bhV -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(154,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -cEo -rkp -rVf -xov -qLp -qLp -qLp -kHA -ohj -aMN -qLp -qLp -qLp -lBp -vUH -rHU -cdB -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(155,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -vPr -ekM -rVf -xov -qLp -qLp -qLp -qLp -qLp -qLp -qLp -qLp -qLp -lBp -vUH -tRb -roP -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(156,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -cEo -vly -unN -abT -sVm -qLp -qLp -qLp -qLp -qLp -qLp -qLp -sVm -ggb -unN -rHU -dYN -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(157,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -hpX -qPe -gmT -kIC -qLp -sjO -qLp -kIC -vPC -qPe -eYZ -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(158,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -kAc -kIC -kAc -kIC -kIC -kIC -kIC -kIC -kAc -kIC -kAc -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(159,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -nKk -nKk -nKk -nKk -lAI -kIC -lAI -kIC -xKW -xKW -xKW -kIC -wtO -kIC -awY -nKk -nKk -nKk -nKk -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(160,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -snD -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(161,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(162,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(163,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(164,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(165,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(166,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(167,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(168,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(169,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(170,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(171,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(172,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(173,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(174,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(175,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(176,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(177,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(178,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(179,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(180,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -xKW -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(181,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(182,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(183,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(184,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(185,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(186,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(187,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(188,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(189,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(190,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(191,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(192,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(193,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(194,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(195,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(196,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(197,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(198,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(199,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(200,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(201,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(202,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(203,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(204,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(205,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(206,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(207,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(208,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(209,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(210,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(211,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(212,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(213,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(214,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(215,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(216,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(217,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(218,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(219,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(220,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(221,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(222,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(223,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(224,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(225,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(226,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(227,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(228,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(229,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(230,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(231,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(232,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(233,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(234,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(235,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(236,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(237,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(238,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(239,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(240,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(241,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(242,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(243,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(244,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(245,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(246,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(247,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(248,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(249,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(250,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(251,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(252,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(253,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(254,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} -(255,1,10) = {" -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -pkS -"} diff --git a/_maps/map_files/BoxStation/BoxStationWhite.dmm b/_maps/map_files/BoxStation/BoxStationWhite.dmm deleted file mode 100644 index bdc9fef7e371..000000000000 --- a/_maps/map_files/BoxStation/BoxStationWhite.dmm +++ /dev/null @@ -1,111985 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/openspace/airless, -/area/space) -"aab" = ( -/obj/effect/landmark/stationroom/brig/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"aac" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aad" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"aah" = ( -/obj/effect/landmark/stationroom/bridge/random, -/turf/closed/wall, -/area/security/checkpoint/supply) -"aai" = ( -/obj/effect/landmark/stationroom/maintenance/rdm11x14_sw, -/turf/open/openspace/airless, -/area/space) -"aaj" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aak" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aal" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/processing) -"aam" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"aan" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/closed/wall, -/area/service/fitness) -"aao" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aaq" = ( -/obj/effect/loot_site_spawner, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aat" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/processing) -"aau" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"aaw" = ( -/obj/effect/landmark/carpspawn, -/turf/open/openspace/airless, -/area/space) -"aax" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"aaA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"aaB" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aaC" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Fore"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"aaE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"aaG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/service/fitness) -"aaH" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aaI" = ( -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aaK" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aaM" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"aaN" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/ladder, -/obj/effect/turf_decal/box, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"aaP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/fitness) -"aaS" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"aaU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aaV" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aaW" = ( -/obj/machinery/computer/holodeck, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aaX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aaY" = ( -/obj/effect/landmark/stationroom/engine/random, -/turf/open/openspace/airless, -/area/space) -"abs" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"abO" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/service/chapel/office) -"abX" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"abY" = ( -/obj/structure/grille, -/turf/open/openspace/airless, -/area/space/nearstation) -"acy" = ( -/obj/structure/lattice, -/obj/item/stack/cable_coil, -/turf/open/openspace/airless, -/area/space/nearstation) -"acV" = ( -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"acW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"ads" = ( -/obj/machinery/power/solar{ - id = "auxsolareast"; - name = "Port Auxiliary Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"adt" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"adu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/airless, -/area/solars/port/fore) -"adx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"ady" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/solars/port/fore) -"adz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"adA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"adE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"adM" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"adT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/airless, -/area/solars/starboard/fore) -"adU" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/solars/starboard/fore) -"adV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"adW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"adX" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall, -/area/engineering/main) -"aef" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aeu" = ( -/obj/machinery/camera{ - c_tag = "Engineering Access" - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"aeD" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"aeQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"aeR" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aeS" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aeT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"aeW" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"afa" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 12; - height = 18; - id = "emergency_home"; - name = "NT SS13: Emergency Shuttle Dock"; - width = 32 - }, -/turf/open/openspace/airless, -/area/space) -"afm" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/fore) -"afp" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"afs" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"afx" = ( -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"afE" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"afT" = ( -/turf/open/openspace, -/area/service/library/upper) -"agd" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/aft) -"agv" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 4 - }, -/obj/machinery/computer/security/mining, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"agT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/main) -"ahk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"ahn" = ( -/turf/closed/wall, -/area/maintenance/fore/secondary) -"ahw" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"ahx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "engineering security door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"ahB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/main) -"ahF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/engineering/main) -"ahJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aib" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aic" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aif" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"air" = ( -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/lawoffice) -"aiK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/main) -"aiL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engineering/main) -"aiS" = ( -/obj/item/stack/rods, -/turf/open/openspace/airless, -/area/space/nearstation) -"aiT" = ( -/turf/closed/wall, -/area/security/processing) -"aiU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/security/processing) -"aiV" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"aiY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"aje" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ajh" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/closet/secure_closet/courtroom, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aji" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/plaque/static_plaque/golden{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajj" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/camera{ - c_tag = "Courtroom North" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"ajk" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajl" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajm" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ajn" = ( -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"ajo" = ( -/turf/closed/wall, -/area/security/courtroom) -"ajp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"ajq" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ajr" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer, -/turf/open/floor/plasteel, -/area/security/processing) -"ajs" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel, -/area/security/processing) -"ajt" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock North" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aju" = ( -/obj/machinery/computer/security/labor, -/turf/open/floor/plasteel, -/area/security/processing) -"ajE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajI" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ajL" = ( -/obj/machinery/camera{ - c_tag = "Engineering East"; - dir = 8 - }, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ajM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajO" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajQ" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajR" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/item/gavelhammer, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ajS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Court Cell"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ajT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ajU" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/monitor{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ajV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ajW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ajX" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ajZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aka" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akc" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"akd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"akn" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"akw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aky" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"akA" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"akC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"akG" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/security/processing) -"akH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akJ" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"akP" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/mining_thing/burned{ - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akV" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"akY" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akZ" = ( -/obj/item/stack/sheet/iron/five, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ala" = ( -/obj/machinery/door/window/eastright{ - name = "Bar Access" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"alb" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alc" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ald" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"ale" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alg" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"alh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ali" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alj" = ( -/obj/machinery/camera{ - c_tag = "Holodeck Control"; - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aln" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2"; - shuttledocked = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/processing) -"alp" = ( -/turf/open/floor/plating, -/area/security/processing) -"alq" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"alr" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"als" = ( -/obj/structure/mineral_door/wood{ - name = "Maintenance Bar" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"alu" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"alv" = ( -/obj/structure/table/wood, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"alF" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alG" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alI" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alJ" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"alK" = ( -/obj/machinery/vending/boozeomat/all_access, -/turf/closed/wall, -/area/maintenance/port/aft) -"alN" = ( -/obj/structure/light_construct{ - dir = 8 - }, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"alO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"alP" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"alQ" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"alR" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"alS" = ( -/obj/structure/cable, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"alT" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"alU" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"alV" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alW" = ( -/obj/item/cigbutt/cigarbutt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alZ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Waste Tank" - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"amb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"amc" = ( -/obj/machinery/computer/shuttle_flight/labor{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ame" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"amm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"amr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom) -"amt" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"amu" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"amv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"amw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"amx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amy" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/maintenance/solars/port/fore) -"amz" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"amA" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/fore) -"amB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"amC" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amE" = ( -/obj/structure/bed, -/obj/effect/landmark/xeno_spawn, -/obj/item/bedsheet/dorms, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amF" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/coin/iron, -/obj/item/coin/diamond, -/obj/item/coin/diamond, -/obj/item/coin/diamond, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/item/toy/sword, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 27 - }, -/obj/item/trash/plate, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"amJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/aft) -"amK" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/r_wall, -/area/security/processing) -"amM" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prisoner Processing"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"amO" = ( -/obj/structure/musician/piano{ - icon_state = "piano" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"amP" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"amR" = ( -/obj/structure/light_construct, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"amS" = ( -/obj/item/stack/cable_coil{ - amount = 7; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"amY" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"amZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"anb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"and" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"anf" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ang" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/port/fore"; - dir = 8; - name = "Port Bow Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Fore Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"anh" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"ani" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"anj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ank" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anm" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ann" = ( -/obj/item/electronics/airalarm, -/obj/item/circuitboard/machine/seed_extractor, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ano" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anp" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anq" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"anr" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck/cas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = -7 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ans" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/processing) -"ant" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"anu" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the exit."; - id = "laborexit"; - name = "exit button"; - normaldoorcontrol = 1; - pixel_x = 26; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"anv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/processing) -"anw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"anx" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"any" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"anz" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"anA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"anB" = ( -/obj/item/chair/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"anC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/security/courtroom) -"anD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"anF" = ( -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"anG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"anH" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"anI" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"anJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anK" = ( -/obj/effect/decal/cleanable/food/egg_smudge, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anL" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anN" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/processing) -"anO" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "NT SS13: Fore bay"; - roundstart_template = /datum/map_template/shuttle/labour/box; - width = 9 - }, -/turf/open/openspace/airless, -/area/space) -"anP" = ( -/obj/machinery/door/airlock/security{ - id_tag = "laborexit"; - name = "Labor Shuttle"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/processing) -"anQ" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"anR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"anS" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"anU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/courtroom) -"anV" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"anX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Courtroom South"; - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"anY" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"anZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aoa" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aob" = ( -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aof" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"aoh" = ( -/obj/machinery/power/solar_control{ - id = "auxsolareast"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"aoi" = ( -/obj/structure/cable, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"aoj" = ( -/obj/machinery/camera{ - c_tag = "Fore Port Solar Access" - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aok" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aol" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aom" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aon" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoo" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/monkey_recycler, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoq" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/security/processing) -"aor" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aos" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aot" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aou" = ( -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock South"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/security/processing"; - dir = 2; - name = "Labor Shuttle Dock APC"; - pixel_x = 0; - pixel_y = -23 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aox" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway West"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoy" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "Security" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"aoz" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoC" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoD" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoF" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aoH" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aoI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aoJ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aoK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aoL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aoM" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/starboard/fore) -"aoN" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/maintenance/solars/starboard/fore) -"aoO" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"aoP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aoQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aoR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoS" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoT" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/corn, -/obj/item/seeds/corn{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoU" = ( -/obj/structure/bed, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoW" = ( -/obj/structure/table, -/obj/item/stamp, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoX" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoZ" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Monitoring" - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/engineering/atmos) -"apa" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"apb" = ( -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/security/processing) -"apc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/fore) -"apd" = ( -/turf/closed/wall, -/area/security/detectives_office) -"apg" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aph" = ( -/turf/closed/wall, -/area/lawoffice) -"apj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"apk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"apm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"app" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apr" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/fore/secondary"; - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aps" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fitness Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apw" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air Out" - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apx" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Maintenance"; - req_access_txt = "12;24" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apy" = ( -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"apA" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/starboard/fore"; - dir = 8; - name = "Starboard Bow Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"apB" = ( -/obj/machinery/camera{ - c_tag = "Fore Starboard Solars"; - dir = 1 - }, -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"apC" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"apD" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2O Outlet Pump" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"apG" = ( -/obj/machinery/portable_atmospherics/canister/water_vapor, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"apJ" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"apL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apM" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apN" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"apO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apR" = ( -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/turf/open/floor/plating, -/area/security/processing) -"apS" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"apU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/wood, -/area/maintenance/fore) -"apX" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/service/fitness) -"aqb" = ( -/obj/machinery/button/door{ - id = "kanyewest"; - name = "Privacy Shutters"; - pixel_y = 24 - }, -/obj/item/storage/briefcase, -/obj/structure/rack, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aqd" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aqf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"aqg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aqi" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aql" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aqo" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aqp" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aqq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aqr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/closed/wall, -/area/service/fitness) -"aqu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall, -/area/service/fitness) -"aqv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aqw" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqx" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"aqy" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqz" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqA" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqB" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqC" = ( -/obj/machinery/computer/slot_machine{ - balance = 15; - money = 500 - }, -/obj/item/coin/iron, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqD" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/coin/gold, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqK" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqO" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqP" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/fore"; - dir = 1; - name = "Port Bow Maintenance APC"; - pixel_x = -1; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqR" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"aqS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/potato{ - name = "\improper Beepsky's emergency battery" - }, -/turf/open/floor/plating, -/area/security/processing) -"aqW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"aqY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Law office"; - pixel_x = -32 - }, -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/lawoffice) -"aqZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"arb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"ard" = ( -/obj/machinery/door/poddoor/preopen{ - id = "lawyer_blast"; - name = "privacy door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/lawoffice) -"are" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/lawoffice) -"arf" = ( -/turf/closed/wall, -/area/commons/dorms) -"ari" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/commons/dorms) -"arj" = ( -/turf/closed/wall, -/area/service/fitness) -"ark" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet, -/area/commons/dorms) -"arl" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/fitness) -"arn" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aro" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"arp" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arq" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arr" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ars" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/fore"; - dir = 1; - name = "Starboard Bow Maintenance APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"art" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Fore Starboard Solar Access" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aru" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arv" = ( -/obj/structure/table, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arw" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arx" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ary" = ( -/obj/structure/closet, -/obj/item/coin/iron, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arz" = ( -/obj/item/coin/gold, -/obj/item/coin/iron, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arB" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"arC" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"arE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"arG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"arK" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"arM" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arN" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arO" = ( -/obj/machinery/monkey_recycler, -/obj/item/food/monkeycube, -/obj/item/food/monkeycube, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arP" = ( -/turf/closed/wall, -/area/maintenance/fore) -"arR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/lawoffice) -"arT" = ( -/obj/structure/rack, -/obj/item/storage/briefcase, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/lawoffice) -"arU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"arX" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/stamp/law, -/turf/open/floor/wood, -/area/lawoffice) -"arZ" = ( -/obj/structure/filingcabinet, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"asa" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"asd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/ladder, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"asf" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/service/fitness/kachalka) -"asg" = ( -/turf/closed/wall, -/area/commons/vacant_room) -"ash" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ask" = ( -/obj/structure/dresser, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"asl" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/filingcabinet/employment, -/turf/open/floor/wood, -/area/lawoffice) -"asm" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/commons/dorms) -"asn" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/lawyer, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"asp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/wood, -/area/commons/dorms) -"asq" = ( -/obj/machinery/camera{ - c_tag = "Fitness Room" - }, -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"asr" = ( -/obj/structure/closet/boxinggloves, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/item/clothing/shoes/jackboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"ass" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"ast" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"asu" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cab1"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/commons/dorms) -"asv" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/railing/corner, -/turf/open/floor/wood, -/area/service/library/upper) -"asx" = ( -/obj/structure/door_assembly/door_assembly_mai, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asz" = ( -/obj/structure/table, -/obj/item/food/donut, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asA" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asB" = ( -/turf/closed/wall, -/area/maintenance/department/electrical) -"asC" = ( -/turf/open/floor/plasteel/airless, -/area/space/nearstation) -"asE" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"asF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"asH" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"asI" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"asJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"asK" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"asL" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cab2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/obj/item/toy/plush/bear, -/turf/open/floor/carpet, -/area/commons/dorms) -"asM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/service/fitness) -"asO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asP" = ( -/obj/structure/chair/stool, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"asQ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"asR" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/fore) -"asS" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/fore) -"asT" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/fore) -"asV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/railing/corner, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"asY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/fitness) -"asZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"ata" = ( -/obj/machinery/navbeacon/wayfinding/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"atb" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"atc" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 3 - }, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/security/detectives_office) -"atd" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ate" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"atf" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"atg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"ath" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"atj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"atm" = ( -/turf/open/floor/carpet, -/area/commons/dorms) -"ato" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"atp" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"atr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"att" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"atv" = ( -/obj/structure/table, -/obj/item/shard, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/shard{ - icon_state = "small" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atw" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atx" = ( -/obj/machinery/button/door{ - id = "maint3"; - name = "Blast Door Control C"; - pixel_x = -14; - pixel_y = 28 - }, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aty" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"atA" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atB" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atC" = ( -/obj/item/stack/rods/fifty, -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/autolathe/hacked, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atE" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atF" = ( -/obj/machinery/recharge_station, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atG" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/department/electrical"; - dir = 1; - name = "Electrical Maintenance APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/monitor, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atH" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"atI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"atJ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atK" = ( -/obj/structure/table/wood, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/prison{ - dir = 1; - pixel_y = -27 - }, -/turf/open/floor/wood, -/area/lawoffice) -"atL" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atQ" = ( -/obj/machinery/door/airlock{ - id_tag = "Cab1"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"atR" = ( -/obj/effect/landmark/carpspawn, -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"atS" = ( -/turf/closed/wall, -/area/space/nearstation) -"atT" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atU" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atV" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/fitness) -"atW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atZ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aua" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aub" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"auc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"auf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; - req_access_txt = "4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aug" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/detective, -/turf/open/floor/carpet, -/area/security/detectives_office) -"auh" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"aui" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/item/camera/detective, -/obj/item/hand_labeler, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aum" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"aun" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"aup" = ( -/obj/machinery/door/airlock{ - id_tag = "Cab2"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aus" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"auu" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"auw" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"aux" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/railing/corner, -/turf/open/floor/plasteel, -/area/commons/dorms) -"auy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"auz" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/training_machine, -/obj/item/target, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"auA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/training_toolbox{ - pixel_y = 5 - }, -/obj/item/training_toolbox{ - pixel_y = -2 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"auB" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auC" = ( -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/maintenance/starboard/fore) -"auD" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auE" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"auG" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auI" = ( -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"auJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"auL" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/department/electrical) -"auM" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/maintenance/department/electrical) -"auO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"auP" = ( -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"auQ" = ( -/turf/open/floor/plasteel/monofloor, -/area/construction/mining/aux_base) -"auS" = ( -/obj/machinery/requests_console{ - department = "Crew Quarters"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Dormitory North" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"auU" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"auW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"auX" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auY" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_y = 28 - }, -/obj/item/shard{ - icon_state = "medium" - }, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auZ" = ( -/obj/structure/frame/computer, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ava" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avc" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ave" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"avf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemical Storage"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/fore) -"avj" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"avk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"avl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avm" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Quartermaster Maintenance"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"avn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avo" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/department/electrical) -"avp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"avq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"avr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"avu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/fitness) -"avx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/fitness) -"avC" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Aft"; - dir = 1; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"avD" = ( -/obj/item/clothing/gloves/boxing/green, -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/waterbottle, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avF" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"avJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"avK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"avL" = ( -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"avM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"avO" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"avP" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"avQ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Auxillary Base Construction"; - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"avS" = ( -/obj/item/circuitboard/machine/stasis, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avT" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "north-east of NT SS13"; - width = 23 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"avV" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avW" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"avZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"awc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"awd" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/fore"; - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"awf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"awh" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 30 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"awj" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"awk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"awl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"awm" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"awn" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"awo" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Dorm 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"awq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"awt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/dorms) -"awv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"awx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"awy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/fitness) -"awz" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"awA" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"awB" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/fitness) -"awC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"awD" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"awF" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awG" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awH" = ( -/obj/machinery/button/door{ - id = "maint1"; - name = "Blast Door Control A"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "maint2"; - name = "Blast Door Control B"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awJ" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awK" = ( -/obj/structure/table/glass, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awL" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"awP" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/ladder, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"awQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"awT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Maintenance"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"awU" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"awW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"awY" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"awZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"axa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"axb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"axc" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assault_pod/mining, -/obj/machinery/computer/security/telescreen/auxbase{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"axe" = ( -/obj/structure/frame/machine, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axf" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axg" = ( -/obj/structure/table/glass, -/obj/item/storage/bag/trash, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axh" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"axj" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Firefighting Equipment"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"axn" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"axu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"axw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/electrolyzer, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"axx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"axG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"axH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"axI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"axQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/fitness) -"axR" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"axT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"axV" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"axX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"axY" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"axZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aya" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/service/theater"; - dir = 8; - name = "Theatre APC"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"ayb" = ( -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"ayg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"ayj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ayk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ayl" = ( -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ayn" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ayq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"ayr" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"ays" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayt" = ( -/obj/structure/table/glass, -/obj/item/hemostat, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayu" = ( -/obj/structure/table/glass, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"ayB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"ayD" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ayE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"ayF" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/aquarium, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"ayG" = ( -/turf/closed/wall/r_wall, -/area/command/gateway) -"ayI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"ayO" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"ayP" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"ayV" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"ayX" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"ayY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ayZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aza" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"azd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aze" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/commons/dorms"; - name = "Dormitory APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"azf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"azh" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"azi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Garden Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"azk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"azl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"azm" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"azn" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"azp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/service/fitness) -"azr" = ( -/obj/machinery/priem_steklotara, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"azy" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"azA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"azB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"azC" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"azE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"azF" = ( -/turf/closed/wall, -/area/service/hydroponics/garden) -"azI" = ( -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"azJ" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"azK" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"azL" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"azM" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"azN" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"azO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"azQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"azX" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"azZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAa" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAb" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aAc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAh" = ( -/turf/closed/wall, -/area/commons/toilet) -"aAk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAl" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAp" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"aAq" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/hallway/secondary/service) -"aAr" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/hallway/secondary/service) -"aAs" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aAt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAv" = ( -/obj/structure/closet, -/obj/effect/landmark/blobstart, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aAz" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"aAB" = ( -/obj/structure/cable, -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"aAC" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"aAD" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aAE" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aAF" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aAG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aAH" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aAI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aAJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aAO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aAP" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aAQ" = ( -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aAS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aAT" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aAU" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aAV" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aAX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aAY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"aAZ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aBa" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"aBb" = ( -/obj/item/assembly/mousetrap, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aBc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBe" = ( -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aBg" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aBh" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance"; - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aBm" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aBn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aBo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"aBu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aBw" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table/glass, -/obj/item/seeds/tower, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aBy" = ( -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aBz" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aBA" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aBB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aBD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/service/fitness) -"aBE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/bounty{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aBF" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aBG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aBI" = ( -/turf/closed/wall, -/area/security/checkpoint/auxiliary) -"aBL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Tool Storage Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aBM" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aBO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"aBQ" = ( -/turf/closed/wall, -/area/commons/storage/primary) -"aBR" = ( -/turf/closed/wall/r_wall, -/area/commons/storage/primary) -"aBS" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aBT" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aBU" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/command/nuke_storage"; - dir = 1; - name = "Vault APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aBV" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aBW" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aBZ" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aCb" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"aCd" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"aCe" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/bikehorn/rubberducky, -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aCf" = ( -/obj/machinery/camera{ - c_tag = "Theatre Storage" - }, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aCg" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/maintenance/fore/upper) -"aCh" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aCj" = ( -/obj/structure/table/wood, -/obj/item/book/fish_catalog{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/fish_feed{ - pixel_x = 7 - }, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"aCl" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/service"; - dir = 1; - name = "Service Hall APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aCm" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aCn" = ( -/obj/structure/table/reinforced, -/obj/item/soap{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aCp" = ( -/obj/machinery/camera{ - c_tag = "Arrivals North"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aCq" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console{ - department = "Theatre"; - name = "theatre RC"; - pixel_x = -32 - }, -/obj/item/food/baguette, -/obj/item/toy/dummy, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aCr" = ( -/turf/closed/wall, -/area/service/theater) -"aCs" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aCu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/closed/wall, -/area/service/fitness) -"aCw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall, -/area/service/fitness) -"aCx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/closed/wall, -/area/service/fitness) -"aCy" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aCz" = ( -/obj/structure/cable, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCA" = ( -/obj/structure/cable, -/obj/structure/railing, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aCC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "maint1" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCL" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aCO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aCP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aCQ" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aCR" = ( -/turf/closed/wall, -/area/service/chapel/main) -"aCT" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aCW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/construction/mining/aux_base) -"aCY" = ( -/obj/machinery/computer/security, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aCZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aDa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aDb" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDc" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aDd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aDf" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aDg" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aDh" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDi" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aDj" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aDk" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage" - }, -/obj/machinery/requests_console{ - department = "Tool Storage"; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDl" = ( -/obj/structure/table, -/obj/item/t_scanner, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDm" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDn" = ( -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDo" = ( -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDp" = ( -/obj/structure/displaycase/winner/robust, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDq" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aDr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aDs" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aDt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aDv" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aDw" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aDx" = ( -/obj/machinery/door/window{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aDy" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"aDz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"aDC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/freezer, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/fore/upper) -"aDD" = ( -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aDE" = ( -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/siding/white/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aDH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"aDI" = ( -/obj/structure/table/wood, -/obj/item/storage/fish_case/random/freshwater{ - pixel_x = -8; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/drinks/beer/light{ - pixel_x = 8; - pixel_y = 13 - }, -/obj/machinery/button/door{ - id = "aquaprivacy"; - name = "Privacy Shutters"; - pixel_x = -8; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"aDK" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aDL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDN" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDO" = ( -/obj/structure/table/reinforced, -/obj/item/food/urinalcake{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDR" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/lipstick/random{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/random{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aDS" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDT" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aDV" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"aDW" = ( -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aDX" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aDY" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aDZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aEa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aEc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/service/theater) -"aEh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aEi" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Chapel Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aEl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEm" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun"; - name = "Holy Driver" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"aEn" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/service/chapel/main) -"aEs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aEz" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - dir = 4; - name = "Entry Hall APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aEA" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 18 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aEE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aEF" = ( -/obj/structure/table/glass, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cocoapod, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/service/hydroponics/garden"; - dir = 2; - name = "Garden APC"; - pixel_x = -23; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aEG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aEI" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aEJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aEL" = ( -/obj/machinery/door/airlock{ - name = "Garden" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aEM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aEN" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aEO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"aEP" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aEQ" = ( -/obj/machinery/computer/gateway_control, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aER" = ( -/obj/machinery/camera{ - c_tag = "Gateway"; - dir = 4 - }, -/obj/structure/table, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/item/storage/firstaid/regular, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aES" = ( -/obj/structure/table, -/obj/item/radio/off{ - pixel_y = 6 - }, -/obj/item/radio/off{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aET" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aEU" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aEV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fore) -"aEY" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"aFd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFe" = ( -/obj/machinery/camera{ - c_tag = "Dormitory South"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aFh" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aFi" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/toilet"; - dir = 4; - name = "Dormitory Bathrooms APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aFj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/service/theater) -"aFk" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/service/theater) -"aFl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/dresser, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/service/theater) -"aFm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aFn" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aFr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/service/library/upper) -"aFu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aFv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aFw" = ( -/turf/closed/wall, -/area/service/chapel/office) -"aFx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aFz" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aFA" = ( -/obj/machinery/computer/pod/old{ - density = 0; - icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_standby"; - id = "chapelgun"; - name = "Mass Driver Controller"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aFB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aFG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aFH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aFI" = ( -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aFJ" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aFK" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aFL" = ( -/obj/item/radio/off, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/auxiliary"; - name = "Security Checkpoint APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aFM" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aFN" = ( -/obj/structure/table/glass, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/crowbar, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aFO" = ( -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aFP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aFQ" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aFR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aFS" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aFT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aFU" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aFW" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aFX" = ( -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aFY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aFZ" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aGa" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aGb" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aGc" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("vault") - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aGd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aGe" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aGf" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aGg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGh" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aGk" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Fitness Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"aGl" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aGm" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aGn" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aGo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aGp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aGq" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aGr" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/clown, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"aGz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/circuitboard/machine/vendatray, -/obj/item/circuitboard/machine/vendatray, -/obj/item/camera, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/item/toner/large, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aGA" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 19 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aGB" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 20 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aGD" = ( -/obj/structure/table/wood, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"aGE" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"aGF" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 17 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/railing/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"aGI" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aGM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aGP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aGQ" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"aGU" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aGY" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aGZ" = ( -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"aHa" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/paper, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aHe" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aHf" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aHg" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office" - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aHh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aHi" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aHj" = ( -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aHk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aHl" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aHo" = ( -/obj/structure/table/glass, -/obj/item/food/grown/poppy, -/obj/item/food/grown/harebell, -/turf/open/floor/plasteel/monofloor, -/area/service/chapel/main) -"aHq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/chapel/main) -"aHs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aHu" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aHv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aHw" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/commons/dorms) -"aHx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/auxiliary) -"aHz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aHA" = ( -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aHD" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aHE" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/item/crowbar, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aHF" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"aHG" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aHH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aHI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"aHJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aHK" = ( -/obj/machinery/computer/chef_order, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aHL" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"aHO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"aHT" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Dormitory" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aHU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aHV" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aHW" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aHX" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aHZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/closet/crate/wooden/toy, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"aId" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/green/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"aIj" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 21 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aIl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aIr" = ( -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"aIt" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/sign/painting/library_private{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aIu" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aIv" = ( -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aIw" = ( -/obj/structure/easel, -/obj/structure/sign/painting/library_private{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aIx" = ( -/obj/item/toy/crayon/spraycan{ - pixel_x = 7; - pixel_y = 14 - }, -/obj/structure/table/wood, -/obj/structure/sign/painting/library_private{ - pixel_x = 32 - }, -/obj/structure/sign/painting/library_private{ - pixel_y = 32 - }, -/obj/item/wirecutters, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aIy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aIz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aIA" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aIB" = ( -/obj/structure/bodycontainer/crematorium{ - id = "crematoriumChapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aIC" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aIG" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/vacant_room/office"; - dir = 8; - name = "Vacant Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aIH" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/pipe_dispenser, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_x = 24; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/mining/aux_base"; - dir = 2; - name = "Auxillary Base Construction APC"; - pixel_x = 0; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aII" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aIJ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIM" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIN" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/analyzer, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aIO" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Lounge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIP" = ( -/obj/structure/sign/map/left{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIR" = ( -/obj/structure/sign/map/right{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aIS" = ( -/obj/structure/table/glass, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/bucket, -/obj/item/plant_analyzer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aIT" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table/glass, -/obj/item/plant_analyzer, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aIU" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aIV" = ( -/obj/machinery/button/door{ - id = "stationawaygate"; - name = "Gateway Access Shutter Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aIW" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aIX" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aIY" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aIZ" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/firstaid/regular, -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/primary"; - name = "Primary Tool Storage APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aJa" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/command/gateway"; - dir = 8; - name = "Gateway APC"; - pixel_x = -25; - pixel_y = -1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aJb" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aJc" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aJd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/port) -"aJe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"aJh" = ( -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"aJi" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"aJj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/fore) -"aJk" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aJw" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"aJz" = ( -/obj/machinery/camera{ - c_tag = "Dormitory Toilets"; - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"aJB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aJD" = ( -/obj/effect/turf_decal/arrows, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"aJF" = ( -/turf/open/floor/wood, -/area/service/library/artgallery) -"aJG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_x = 25; - req_access_txt = "22" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aJJ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aJM" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp{ - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aJN" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aJO" = ( -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aJS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aJT" = ( -/obj/structure/table/wood, -/obj/item/nullrod, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aJU" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aJV" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aJW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aJZ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aKa" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"aKc" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway Access"; - req_access_txt = "62" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"aKd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"aKe" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel/monofloor, -/area/service/chapel/main) -"aKh" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aKj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aKk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aKl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aKm" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Garden" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"aKn" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/hydroponics/garden) -"aKp" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/primary) -"aKs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/primary) -"aKw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"aKy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/fore) -"aKA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "stationawaygate"; - name = "Gateway Access Shutters" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"aKB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/gateway) -"aKH" = ( -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aKK" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aKY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aKZ" = ( -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aLb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aLc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aLe" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aLg" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/library/upper) -"aLh" = ( -/obj/structure/sign/painting/library_private{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aLj" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aLl" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLm" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLr" = ( -/obj/effect/loot_site_spawner, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aLu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Auxillary Base Construction"; - req_one_access_txt = "32;47;48" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aLv" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aLw" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aLy" = ( -/obj/structure/chair/comfy/beige, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aLz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aLA" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aLB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aLC" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"aLD" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aLE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLG" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/port"; - dir = 1; - name = "Port Hall APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"aLJ" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLL" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aLT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aMs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aMz" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aMI" = ( -/obj/structure/table, -/obj/item/grenade/chem_grenade/antiweed, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aMJ" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aMK" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/chapel/office"; - name = "Chapel Office APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aML" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aMM" = ( -/obj/machinery/camera{ - c_tag = "Chapel North" - }, -/obj/structure/tank_holder/oxygen/red, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aMN" = ( -/obj/machinery/navbeacon/wayfinding/det, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aMO" = ( -/obj/structure/table/wood, -/obj/item/food/chips, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"aMP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aMQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMW" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aMX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"aMY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aMZ" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"aNa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aNb" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aNd" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aNe" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"aNf" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aNg" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"aNh" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aNi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/goonplaque, -/area/hallway/secondary/entry) -"aNj" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=CHW"; - location = "Lockers" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aNl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aNP" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aNR" = ( -/obj/structure/table/wood, -/obj/item/ashtray, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"aNS" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aNT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aNU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aNV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Art" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library/artgallery) -"aNW" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aNX" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1481; - name = "Confessional Intercom"; - pixel_x = 25 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aNY" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aOa" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"aOb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"aOc" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aOd" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aOe" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aOg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/railing/corner, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aOh" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aOi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aOj" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes{ - pixel_y = 2 - }, -/obj/item/lighter/greyscale{ - pixel_x = 4; - pixel_y = 2 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aOk" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"aOl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOo" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOp" = ( -/obj/machinery/camera{ - c_tag = "Port Hallway 3"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aOr" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOt" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aOx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aOy" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aOz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"aOU" = ( -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aOY" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aOZ" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/service/hydroponics) -"aPa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aPd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/service/library/upper) -"aPf" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/library/upper) -"aPg" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aPh" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/invisible, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aPi" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/camera, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aPk" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"aPm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aPn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aPo" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"aPq" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"aPr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Escape Arm Holding Area"; - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"aPs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aPt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aPv" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aPx" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aPy" = ( -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"aPz" = ( -/turf/closed/wall, -/area/maintenance/port) -"aPA" = ( -/turf/closed/wall, -/area/commons/locker) -"aPB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"aPC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aPD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aPE" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall, -/area/commons/locker) -"aPF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/art) -"aPG" = ( -/turf/closed/wall, -/area/commons/storage/art) -"aPH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aPI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"aPK" = ( -/turf/closed/wall, -/area/commons/storage/emergency/port) -"aPL" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"aPN" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"aPQ" = ( -/turf/closed/wall, -/area/commons/storage/tools) -"aPU" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aQo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aQq" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aQr" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aQs" = ( -/obj/structure/destructible/cult/tome, -/obj/item/clothing/under/suit/red, -/obj/item/book/codex_gigas, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aQt" = ( -/obj/effect/landmark/blobstart, -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aQv" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/service/chapel/main) -"aQw" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aQy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"aQz" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1481; - name = "Confessional Intercom"; - pixel_x = 25 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aQA" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aQC" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aQE" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aQF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2"; - safety_mode = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aQG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aQH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aQI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aQJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aQK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aQL" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"aQM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"aQN" = ( -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aQO" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQP" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQR" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQS" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aQU" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQV" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQY" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aQZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aRa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aRc" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aRd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aRe" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/closet/emcloset, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"aRf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aRL" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"aRO" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aRP" = ( -/obj/machinery/camera{ - c_tag = "Library South"; - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aRQ" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/engine/cult, -/area/service/library/upper) -"aRR" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aRS" = ( -/turf/open/floor/carpet, -/area/service/chapel/main) -"aRV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aRW" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aRX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"aRY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aRZ" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aSa" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aSb" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aSc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aSd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aSf" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway"; - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aSg" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"aSh" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aSi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aSk" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aSl" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aSm" = ( -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aSr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aSs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/storage/tools) -"aSt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aSN" = ( -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage" - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aSQ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aSR" = ( -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"aSV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aSW" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aSX" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"aTb" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aTc" = ( -/obj/machinery/door/window/northright{ - dir = 8; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aTd" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aTe" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aTf" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"aTg" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"aTh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aTi" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"aTj" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aTl" = ( -/obj/machinery/status_display/evac{ - layer = 4; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/randomarcade{ - dir = 4 - }, -/obj/structure/sign/departments/evac{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"aTm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aTn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock"; - safety_mode = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aTo" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"aTr" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aTt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"aTu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aTv" = ( -/obj/structure/altar_of_gods, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aTw" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTx" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aTy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aTz" = ( -/obj/structure/table, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aTB" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aTC" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aTD" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/camera{ - c_tag = "Locker Room East"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTE" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/storage/box/shipping, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aTF" = ( -/obj/structure/table, -/obj/item/camera_film, -/obj/item/camera, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aTG" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"aTH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aTI" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aTJ" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aTK" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"aTL" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aTP" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"aTV" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/service/hydroponics) -"aUi" = ( -/turf/open/floor/glass, -/area/service/hydroponics) -"aUl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aUo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUp" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUy" = ( -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/airalarm/directional/east, -/turf/open/openspace, -/area/service/hydroponics) -"aUA" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUB" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/paper, -/turf/open/floor/wood, -/area/service/library/upper) -"aUC" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aUD" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aUE" = ( -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/service/library/upper) -"aUF" = ( -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/service/library/upper) -"aUG" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aUH" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"aUI" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"aUJ" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"aUK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aUL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"aUM" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 2"; - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aUN" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUO" = ( -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUP" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUQ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUR" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"aUU" = ( -/obj/structure/closet/wardrobe/grey, -/obj/machinery/requests_console{ - department = "Locker Room"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aUW" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aUX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aUZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"aVh" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/fore"; - dir = 8; - name = "Fore Primary Hallway APC"; - pixel_x = -25 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway"; - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aVC" = ( -/obj/structure/lattice, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/openspace, -/area/maintenance/port/aft) -"aVJ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/glass, -/area/service/hydroponics) -"aVL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/hallway/primary/starboard) -"aVN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aVO" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/service/library/upper) -"aVQ" = ( -/turf/open/floor/wood, -/area/service/library/upper) -"aVR" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aVS" = ( -/obj/structure/table/wood, -/obj/item/camera_film, -/obj/item/camera_film, -/turf/open/floor/wood, -/area/service/library/upper) -"aVT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"aVU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aVV" = ( -/obj/machinery/camera{ - c_tag = "Chapel South"; - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"aVW" = ( -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"aVX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aWa" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aWc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"aWd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library/upper) -"aWe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aWf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aWh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aWi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aWj" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"aWl" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aWm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aWn" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/shoes/jackboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"aWo" = ( -/obj/machinery/camera{ - c_tag = "Locker Room West"; - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aWq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aWr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aWs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aWt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aWv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aWx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aWy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/cartridge/quartermaster, -/obj/item/coin/silver, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"aWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aWD" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"aWQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"aXm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"aXp" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aXq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aXr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXt" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/lapvend, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/vending/modularpc, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXw" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aXy" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aXz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/court{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/security/courtroom) -"aXA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aXB" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aXD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"aXF" = ( -/turf/open/openspace, -/area/service/fitness) -"aXG" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/hallway/secondary/exit) -"aXI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aXL" = ( -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"aXN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aXP" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port) -"aXQ" = ( -/turf/closed/wall, -/area/commons/toilet/locker) -"aXR" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/openspace, -/area/hallway/primary/starboard) -"aXU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"aXV" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"aXW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aXX" = ( -/obj/machinery/door/airlock/engineering{ - name = "Vacant Office A"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aXY" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aXZ" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/brig/upper) -"aYa" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port"; - dir = 8; - name = "Port Maintenance APC"; - pixel_x = -25; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aYb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aYe" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aYf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aYi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"aYq" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aYw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aYA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aYH" = ( -/obj/structure/table, -/obj/item/razor, -/obj/structure/window{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"aYP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aYS" = ( -/obj/structure/closet, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/under/suit/black_really, -/obj/structure/window{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"aYT" = ( -/obj/machinery/camera{ - c_tag = "Hydroponics South"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"aYU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"aYV" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aYX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"aYY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aYZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"aZd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/service/library/upper) -"aZe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aZg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aZh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"aZj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"aZk" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aZl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aZm" = ( -/obj/machinery/camera{ - c_tag = "Escape Arm Airlocks"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"aZn" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aZo" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aZr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aZs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/port) -"aZt" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aZv" = ( -/obj/machinery/door/airlock{ - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"aZx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"aZA" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"aZB" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"aZE" = ( -/turf/closed/wall, -/area/cargo/storage) -"aZH" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"aZI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"aZK" = ( -/turf/closed/wall, -/area/cargo/sorting) -"ban" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bap" = ( -/obj/machinery/holopad{ - name = "botany requests holopad" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bas" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/service/library/upper) -"bat" = ( -/obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library/upper) -"bau" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"baw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bax" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"baz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"baB" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/chapel/main"; - name = "Chapel APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"baD" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/exit"; - dir = 8; - name = "Escape Hallway APC"; - pixel_x = -25 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"baE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"baF" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"baG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"baJ" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"baL" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"baN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"baO" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/toilet/locker"; - dir = 4; - name = "Locker Restrooms APC"; - pixel_x = 24; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"baS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"baU" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"baV" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"baW" = ( -/turf/open/floor/glass/reinforced, -/area/service/chapel/main) -"baX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"baY" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/qm) -"baZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/court{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/security/courtroom) -"bba" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bbb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bbc" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bbg" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bbj" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bbq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bbr" = ( -/obj/machinery/camera{ - c_tag = "Locker Room South"; - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"bbs" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"bbt" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bbv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/miningdock) -"bbB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bbD" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/library/upper) -"bbF" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/chapel/main) -"bbG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bbJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bbK" = ( -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/maintenance/port) -"bbL" = ( -/obj/machinery/door/airlock{ - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bbN" = ( -/obj/machinery/washing_machine, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"bbO" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"bbP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bbQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bbR" = ( -/turf/open/floor/plasteel, -/area/cargo/office) -"bbT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bbU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"bbZ" = ( -/turf/closed/wall/r_wall, -/area/service/electronic_marketing_den) -"bca" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon, -/turf/open/openspace/airless, -/area/space/nearstation) -"bcb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"bci" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"bcj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"bck" = ( -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bcl" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bcs" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bct" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bcu" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Locker Room Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"bcv" = ( -/obj/machinery/status_display/evac{ - layer = 4; - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bcx" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 5" - }, -/obj/structure/sign/departments/holy{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bcz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bcA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bcB" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bcC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/port/aft) -"bcE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "QM Desk"; - req_access_txt = "41" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bcF" = ( -/obj/structure/grille, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"bcG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bcH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bcI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bcJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bcK" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bcL" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bcM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bcO" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bcS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bcV" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"bdo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"bdp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bds" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 4"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bdu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bdv" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP2"; - location = "Stbd" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"bdw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bdy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bdz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"bdA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock"; - safety_mode = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bdC" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bdD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bdE" = ( -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = -30 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"bdH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bdJ" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bdL" = ( -/obj/effect/landmark/blobstart, -/obj/item/clothing/suit/ianshirt, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port) -"bdM" = ( -/obj/item/latexballon, -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port) -"bdO" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bdS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/stamp, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp/qm{ - pixel_x = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bdT" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal"; - dir = 8; - name = "Disposal APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"bdU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bdW" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/brig/upper) -"bdZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bek" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"ben" = ( -/obj/machinery/newscaster/directional/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"ber" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bes" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"beu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bew" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/plating, -/area/maintenance/port) -"bex" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bez" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"beA" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/cargo/sorting) -"beB" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"beE" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"beF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"beG" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"beH" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"beI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"beJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"beK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"beL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"beM" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"beN" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"beO" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"beP" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beQ" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/structure/sign/warning/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beS" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beU" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beW" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/reinforced, -/obj/item/stack/wrapping_paper{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/stack/package_wrap{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"beZ" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bfa" = ( -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bfb" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"bfc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"bfe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bfg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bfh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bfj" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"bfm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/office) -"bfn" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"bft" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"bfM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bfN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bfR" = ( -/obj/structure/table/reinforced, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bfT" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"bfU" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bfV" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"bfW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bfX" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bfY" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bfZ" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bga" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/sign/departments/science{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bgb" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bgc" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"bgd" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/hallway/secondary/exit) -"bge" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"bgf" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgg" = ( -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"bgh" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"bgi" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 3 & 4"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"bgj" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bgk" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bgp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"bgr" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"bgt" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bgu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bgv" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x3, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bgA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bgB" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/sorting) -"bgD" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2" - }, -/obj/machinery/camera{ - c_tag = "Cargo Delivery Office"; - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgE" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bgV" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bht" = ( -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/siding/thinplating/dark, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "mech bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bhv" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bhw" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bhx" = ( -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bhy" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bhz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bhA" = ( -/turf/closed/wall, -/area/science/research) -"bhB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bhC" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"bhD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - name = "интерьерная дверь"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd"; - name = "research lab shutters" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/lab) -"bhE" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/glasses/welding, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/sign/plaques/robust/bronze{ - pixel_y = 33 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bhF" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bhH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bhI" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bhJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bhL" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 1; - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bhN" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bhO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bhR" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bhS" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bhT" = ( -/obj/structure/grille, -/obj/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"bhU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bhV" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bhW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"bhX" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 1 - }, -/turf/closed/wall, -/area/cargo/sorting) -"bhZ" = ( -/obj/machinery/door/window/eastleft{ - icon_state = "right"; - name = "Incoming Mail"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"bia" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"bib" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"biv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"biw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"biA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"biB" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"biF" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 2 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"biG" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"biH" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"biI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"biK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biL" = ( -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biO" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - network = list("ss13","rd") - }, -/obj/machinery/button/door{ - id = "robotics"; - name = "Shutters Control Button"; - pixel_x = 6; - pixel_y = 24; - req_access_txt = "29" - }, -/obj/structure/table, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biP" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biQ" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"biR" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"biS" = ( -/obj/machinery/camera{ - c_tag = "Research Division Access" - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"biU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"biV" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"biW" = ( -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"biX" = ( -/obj/machinery/camera{ - c_tag = "Research and Development"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/obj/machinery/button/door{ - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bja" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjb" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bje" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjf" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bjh" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bji" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bjk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"bjl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bjq" = ( -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bjs" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "31" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bjt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bjv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bjw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bjL" = ( -/obj/structure/cable, -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bjP" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"bjZ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bka" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bkh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bki" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bkj" = ( -/turf/open/floor/plating, -/area/security/brig/upper) -"bkk" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/bar"; - name = "Bar APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/line, -/obj/item/kirbyplants/fullysynthetic, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"bkn" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/item/camera, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bko" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/machinery/aug_manipulator, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"bkp" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/cargo/storage) -"bkq" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bkr" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bks" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bkt" = ( -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/table, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bkv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bkw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bkx" = ( -/obj/machinery/status_display/supply{ - pixel_y = 2 - }, -/turf/closed/wall, -/area/cargo/sorting) -"bky" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"bkz" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "disposal exit vent" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bkB" = ( -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bkC" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bkD" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"bkE" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bkF" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bkG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"bkJ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"blh" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"blq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/department/medical/morgue"; - dir = 4; - name = "Morgue Maintenance APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"bls" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/crowbar/large, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"blu" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"blv" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"blw" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"blx" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"bly" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"blz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"blA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"blB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"blC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"blE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"blF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "robo1" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"blG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"blH" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"blI" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"blJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/rnd/production/protolathe/department/science, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"blK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"blL" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"blM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"blO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"blS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"blU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/commons/dorms) -"blV" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"blW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/storage) -"blX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/white, -/area/science/research) -"blY" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/toy/figure/qm{ - pixel_x = -6 - }, -/obj/item/gps/mining{ - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"blZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bma" = ( -/obj/structure/table/glass, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bmd" = ( -/obj/machinery/lapvend, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"bme" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/vending/modularpc, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"bmf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bmi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"bmk" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bmv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bmJ" = ( -/obj/structure/railing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bmP" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bnb" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"bnc" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"bng" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/lab) -"bni" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bnj" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/cable_coil, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bnk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bnl" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"bnn" = ( -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bno" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bnp" = ( -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bnq" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/science/lab) -"bnr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Research Division" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bnv" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bnw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bnx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bny" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bnz" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bnA" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/table, -/obj/item/stamp/denied{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/stamp, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bnE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bnG" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bnI" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/cargo/office) -"bnJ" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"bnK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/cargo/office) -"bnL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"boc" = ( -/obj/structure/sign/departments/custodian{ - pixel_y = -32 - }, -/turf/open/openspace/airless, -/area/space) -"bod" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"boe" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bon" = ( -/turf/closed/wall/r_wall, -/area/science/genetics) -"boq" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bor" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/razor, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bos" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/robotics/lab"; - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bou" = ( -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bov" = ( -/obj/structure/table, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/crowbar, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/radio/headset/headset_sci{ - pixel_x = -3 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"box" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"boy" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/bot, -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"boz" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"boA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/lab) -"boB" = ( -/turf/closed/wall, -/area/science/lab) -"boD" = ( -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boE" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/item/cautery{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boG" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boI" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/storage) -"boJ" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"boL" = ( -/obj/structure/table, -/obj/item/retractor, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"boM" = ( -/turf/open/floor/plasteel/white/corner, -/area/science/research) -"boN" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = -30 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"boO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"boQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"boR" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"boS" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"boT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"boY" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/aft) -"bpo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bpq" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bpB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bpH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bpJ" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bpR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bpS" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bpT" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bpU" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/instrument/piano_synth/headphones/spacepods, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bpW" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bpX" = ( -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bqa" = ( -/obj/machinery/door/window/eastright{ - name = "Robotics Surgery"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bqd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "robo2" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"bqe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"bqg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bqh" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bqi" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bqj" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bql" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bqo" = ( -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/obj/machinery/autolathe, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bqp" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/table/reinforced, -/obj/item/dest_tagger, -/obj/item/dest_tagger, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bqs" = ( -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"bqu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bqR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"bqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"brm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"brq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door{ - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"brr" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"brs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bru" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"brv" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"bry" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Genetics Lab Maintenance"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/computer/scan_consolenew, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"brE" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access_txt = "8;12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"brK" = ( -/turf/open/floor/plating, -/area/cargo/storage) -"brL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"brM" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"brO" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"brQ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bsn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bsw" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/robotics/lab) -"bsz" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bsA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"bsH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bsL" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"bsO" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsP" = ( -/obj/structure/table/optable{ - name = "Robotics Operating стол" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsQ" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsR" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsS" = ( -/obj/machinery/camera{ - c_tag = "Robotics Lab - South"; - dir = 1; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/computer/mechpad{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bsT" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"bsU" = ( -/obj/structure/table/optable{ - name = "Robotics Operating стол" - }, -/obj/item/surgical_drapes, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bsW" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"bsX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bsZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/navbeacon/wayfinding/research, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bth" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"btm" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 12 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"bto" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"btp" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"btq" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard) -"btr" = ( -/obj/machinery/camera{ - c_tag = "Cargo Receiving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8; - req_access_txt = "31" - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bts" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"btt" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"btu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"btv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"btw" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bty" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"btA" = ( -/obj/machinery/camera{ - c_tag = "Research Division West" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"btB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"btP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"btS" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"btW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"buc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bud" = ( -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"buj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bup" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bur" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"buu" = ( -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"buy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"buz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"buD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"buE" = ( -/obj/machinery/computer/bounty{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"buF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"buH" = ( -/obj/machinery/door/airlock/research{ - name = "Research Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"buI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"buL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"buT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"buU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bvd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"bvf" = ( -/obj/machinery/camera{ - c_tag = "Research Division North"; - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"bvg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bvi" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fitness Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"bvx" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"bvB" = ( -/obj/machinery/camera{ - c_tag = "Genetics Access"; - dir = 8; - network = list("ss13","medbay"); - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bvF" = ( -/obj/machinery/power/apc{ - areastring = "/area/cargo/qm"; - dir = 1; - name = "Quartermaster APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/closet/secure_closet/quartermaster, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bvH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"bvK" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"bvL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bvQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvR" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bvS" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bvT" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bvU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bvV" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"bvX" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/computer/bounty{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bvY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bvZ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/multitool, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bwd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"bwe" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"bwk" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/port/aft) -"bwp" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bwM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bwN" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -5; - pixel_y = 28; - req_access_txt = "47" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bwQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/qm{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"bwT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bwU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bwV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bwW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"bwX" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bwY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bxd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bxf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bxg" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/aft) -"bxi" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/item/radio/intercom{ - pixel_x = 0; - pixel_y = 29 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bxk" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"bxm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 4; - name = "Toxins Storage APC"; - pixel_x = 25 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bxt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxu" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/item/toy/plush/snakeplushie, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bxv" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bxw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bxx" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"bxy" = ( -/turf/closed/wall, -/area/cargo/miningdock) -"bxA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bxC" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bxM" = ( -/obj/structure/chair/office, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"bxW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/carpet, -/area/service/library/upper) -"byb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"byc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"byf" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"byg" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Quartermaster Maintenance"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"byh" = ( -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/science/server) -"byi" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"byj" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/checkpoint/science) -"byk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"byl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/qm) -"byn" = ( -/obj/item/radio/intercom{ - pixel_y = -35 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"byp" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"byr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/fore) -"byt" = ( -/obj/effect/spawner/lootdrop/botanical_waste, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"byu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"byx" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"byz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/qm) -"byD" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"byE" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"byG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"byH" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"byK" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byO" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byT" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"byU" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/closet/mini_fridge, -/obj/item/kitchen/knife, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"bzc" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/hydroponics) -"bze" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"bzs" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bzt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bzu" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bzv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bzw" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/server) -"bzx" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bzy" = ( -/obj/machinery/camera{ - c_tag = "Server Room"; - network = list("ss13","rd"); - pixel_x = 22 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/server"; - dir = 1; - name = "Server Room APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bzz" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -30 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/security/science, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bzA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"bzC" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bzD" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/research, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bzE" = ( -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bzF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/miningdock) -"bzJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bzL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bzM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bzN" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bzO" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 9 - }, -/obj/item/paper_bin{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"bzR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/maintenance/port) -"bzT" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/cargo/storage) -"bzV" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/machinery/door/window{ - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"bzZ" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"bAa" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bAb" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bAd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bAn" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Mining Maintenance"; - req_access_txt = "48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bAo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/supply"; - dir = 1; - name = "Cargo Security APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bAw" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"bAy" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"bAz" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"bAA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bAB" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bAC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bAD" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bAE" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 4; - network = list("ss13","rd") - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bAG" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bAH" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bAI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bAJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bAK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bAL" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bAM" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bAR" = ( -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"bAS" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay South"; - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"bAT" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bAU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bAV" = ( -/obj/machinery/door/window/westleft{ - name = "Janitorial Delivery"; - req_access_txt = "26" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/janitor) -"bAZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bBa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bBf" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bBD" = ( -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"bBG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bBI" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bBR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft) -"bBS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 4; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"bBU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bBV" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = -32 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/server) -"bBW" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bBX" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bBY" = ( -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bBZ" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCa" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/science"; - name = "Science Security APC"; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCb" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCc" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"bCd" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 15 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bCf" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCg" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCh" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCi" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCj" = ( -/obj/structure/extinguisher_cabinet{ - dir = 2; - pixel_x = 0; - pixel_y = -28 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCk" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bCm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/office) -"bCp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bCq" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"bCr" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bCs" = ( -/turf/closed/wall, -/area/engineering/storage/tech) -"bCt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding/janitor, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bCv" = ( -/turf/closed/wall, -/area/service/janitor) -"bCw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bCx" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"bCz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bCE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bCI" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"bCJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bCS" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/port/fore) -"bCX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bDb" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bDc" = ( -/turf/closed/wall, -/area/command/heads_quarters/rd) -"bDd" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bDe" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"bDf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bDg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bDh" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bDi" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"bDj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bDk" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/requests_console{ - department = "Mining"; - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bDl" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"bDm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bDn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"bDo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bDq" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/key/janitor, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDr" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDv" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDw" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDx" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDy" = ( -/obj/machinery/camera{ - c_tag = "Tech Storage" - }, -/obj/machinery/power/apc{ - areastring = "/area/engineering/storage/tech"; - dir = 1; - name = "Tech Storage APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDz" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/ladder, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bDG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bDH" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDJ" = ( -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDK" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/vehicle/ridden/janicart, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDL" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Custodial Closet APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bDP" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 1; - freq = 1400; - location = "Janitor" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/janitor) -"bDQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bDY" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bEg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"bEn" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bEo" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"bEp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/rd"; - dir = 1; - name = "RD Office APC"; - pixel_y = 25 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/paicard, -/obj/item/taperecorder{ - pixel_x = -3; - pixel_y = 2 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bEq" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"bEr" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bEs" = ( -/turf/closed/wall, -/area/science/mixing) -"bEt" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bEx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bEz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bEA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bEC" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"bEE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEF" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bEJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bEO" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bEP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bEQ" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bET" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bEU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bEX" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bEZ" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bFa" = ( -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bFb" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bFc" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bFe" = ( -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bFf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/janitor, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bFg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bFj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bFk" = ( -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bFm" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/structure/cable, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFn" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bFr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Custodial Maintenance"; - req_access_txt = "26" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bFI" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bFO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"bFQ" = ( -/obj/structure/table, -/obj/item/aicard, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bFR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bFS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"bFU" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bFW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bFX" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/science/mixing"; - dir = 4; - name = "Toxins Lab APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bFY" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "8;12" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bGc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/science/mixing) -"bGd" = ( -/obj/machinery/doppler_array/research/science{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"bGe" = ( -/turf/closed/wall, -/area/science/test_area) -"bGf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bGi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bGk" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bGm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bGn" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bGo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bGs" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"bGt" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/ai, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"bGu" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"bGv" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/multitool, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bGw" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bGx" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bGy" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/service, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bGz" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bGB" = ( -/obj/structure/table, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = -29 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bGC" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room Access"; - req_access_txt = "8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bGD" = ( -/obj/structure/janitorialcart, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bGE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"bGF" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bGG" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bGK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bGL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bGM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bGN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bGO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bGQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bGY" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/cartridge/signal/toxins, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bHc" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"bHd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bHe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bHf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bHh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bHl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHm" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bHo" = ( -/obj/machinery/pinpointer_dispenser, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"bHp" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bHs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bHu" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/research/explosive_compressor, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bHv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/computer/security/telescreen/toxins{ - dir = 8; - pixel_x = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bHw" = ( -/obj/item/target, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bHy" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bHz" = ( -/obj/item/stack/ore/iron, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bHA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bHC" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bHD" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bHE" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bHG" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/techstorage/command, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"bHI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHJ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHN" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHO" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHP" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHQ" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bHR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 2"; - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHU" = ( -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bIb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bIe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bIo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bIs" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"bIv" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/shower{ - pixel_y = 16 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bIx" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bIy" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bIz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"bIA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bIB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"bIC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bID" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/aft) -"bIE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bIG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bIK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bIM" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/wrench, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bIO" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/machinery/door/window/survival_pod{ - dir = 8; - name = "Observation Deck"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bIQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bIR" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bIS" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "7" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bIT" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/xenobiology) -"bIU" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bIV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bIW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bIX" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"bIY" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bIZ" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bJa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bJb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48"; - shuttledocked = 1 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bJc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 10; - id = "mining_home"; - name = "NT SS13: Mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/large; - width = 7 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"bJd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bJe" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bJf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bJg" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"bJh" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd_secure, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"bJi" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"bJj" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bJk" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/medical, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bJl" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bJm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bJn" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bJq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bJr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"bJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/aft"; - name = "Aft Maintenance APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"bJu" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/construction) -"bJy" = ( -/obj/structure/table, -/obj/structure/showcase/machinery/microwave, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"bJz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bJA" = ( -/turf/open/openspace, -/area/maintenance/aft) -"bJB" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"bJC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"bJD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"bJH" = ( -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 26 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bJK" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning, -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bJN" = ( -/turf/closed/wall, -/area/science/xenobiology) -"bJO" = ( -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"bJR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bJT" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bJZ" = ( -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bKa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bKb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bKc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bKd" = ( -/obj/machinery/camera{ - c_tag = "Toxins Launch Room Access"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bKe" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/science/mixing) -"bKf" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "7" - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bKg" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"bKh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bKi" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bKj" = ( -/obj/machinery/camera{ - c_tag = "Mining Dock External"; - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bKk" = ( -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bKl" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bKm" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/cargo/miningdock) -"bKn" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/obj/item/shovel{ - pixel_x = -5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bKo" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bKp" = ( -/obj/structure/closet/crate, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"bKq" = ( -/obj/machinery/vendor/mining, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"bKt" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bKu" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bKy" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"bKA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"bKE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bKF" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bKG" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bKJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bKK" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bKL" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bKP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - name = "Delivery Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bKU" = ( -/obj/machinery/door/airlock/engineering{ - locked = 1; - name = "Construction Area"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"bKW" = ( -/obj/structure/table, -/obj/item/folder/white, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bLb" = ( -/obj/structure/table, -/obj/item/pen, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bLc" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_x = 26 - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bLe" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bLf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bLh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bLi" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bLj" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bLk" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bLl" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"bLm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"bLn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bLo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bLp" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bLq" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"bLr" = ( -/obj/item/target/alien/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera/preset/toxins{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bLu" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bLv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bLx" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bLy" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bLz" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bLA" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/multitool, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bLC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction) -"bLD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bLE" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bLF" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/power/apc{ - areastring = "/area/cargo/sorting"; - name = "Delivery Office APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bLG" = ( -/obj/machinery/button/door{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - pixel_x = -26; - pixel_y = -8; - specialfunctions = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"bLH" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/hallway/primary/aft) -"bLI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bLJ" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bLK" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bLL" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bLM" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bLN" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bLO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/aft) -"bLP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bLS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"bLT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"bLU" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bLY" = ( -/mob/living/simple_animal/pet/dog/corgi/pig, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bMg" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director RC"; - pixel_x = -2; - pixel_y = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMi" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bMk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bMl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Directors Observation Deck"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMo" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Research Director Observation"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMq" = ( -/obj/machinery/door/window/brigdoor{ - name = "Research Director Observation"; - req_access_txt = "30" - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bMr" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"bMs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/science/research) -"bMt" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bMu" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bMv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bMw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bMx" = ( -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump/on/orange{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bMy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "mix to port" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bMz" = ( -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bMA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing/chamber) -"bMB" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bMC" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bMD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bME" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bMJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"bMK" = ( -/turf/closed/wall, -/area/engineering/atmos) -"bML" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bMM" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMN" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMP" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"bMR" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bMS" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North East" - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMT" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bMU" = ( -/obj/structure/rack, -/obj/item/pipe_dispenser{ - pixel_y = 6 - }, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser{ - pixel_y = -6 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMV" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bMX" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bNb" = ( -/obj/structure/showcase/mecha/marauder, -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/maintenance/port/fore) -"bNc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bNp" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bNq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bNr" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bNt" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bNu" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bNv" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bNw" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bNx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bNy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bNz" = ( -/obj/machinery/camera{ - c_tag = "Toxins Lab East"; - dir = 8; - network = list("ss13","rd"); - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing/chamber) -"bNA" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bNB" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bNC" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bND" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bNE" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bNF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bNG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"bNH" = ( -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/item/paper_bin{ - pixel_x = -3 - }, -/obj/item/pen{ - pixel_x = -3 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"bNI" = ( -/turf/closed/wall, -/area/construction) -"bNJ" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/construction) -"bNK" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"bNL" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction) -"bNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bNQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bNR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bNS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bNT" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics North West"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bNU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bNV" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOd" = ( -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOh" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bOi" = ( -/turf/open/openspace/airless, -/area/maintenance/port/fore) -"bOl" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bOm" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bOo" = ( -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = 26 - }, -/obj/structure/cable, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bOr" = ( -/obj/structure/cable, -/obj/machinery/rnd/production/techfab/department/service, -/obj/machinery/camera{ - c_tag = "Service Hallway West"; - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"bOv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bOw" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"bOx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bOy" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bOz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bOB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bOC" = ( -/obj/effect/turf_decal/trimline/green/line, -/turf/open/floor/plastic, -/area/hallway/secondary/service) -"bOD" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bOE" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bOF" = ( -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/components/binary/pump/on/orange{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4; - name = "port to mix" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bOH" = ( -/obj/machinery/meter, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = -25; - pixel_y = 5 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -25; - pixel_y = -5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"bOI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing/chamber) -"bOJ" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bOK" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bOM" = ( -/obj/structure/table, -/obj/item/folder/blue, -/obj/item/pen/blue, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bON" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kanyewest"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"bOO" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/engineering"; - dir = 8; - name = "Engineering Security APC"; - pixel_x = -25 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bOQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bOS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Atmospherics Delivery"; - req_access_txt = "24" - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bOU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bOW" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bOX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bOY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bPa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bPd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bPf" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Laboratory"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bPm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bPn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"bPs" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/taperecorder, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/misc_lab"; - dir = 4; - name = "Testing Lab APC"; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bPx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bPz" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bPA" = ( -/obj/effect/spawner/xmastree/rdrod, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bPB" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = -26; - pixel_y = 6; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bPC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bPD" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bPJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bPK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/misc_lab) -"bPL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bPN" = ( -/turf/closed/wall, -/area/science/misc_lab) -"bPO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bPP" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bPQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bPS" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"bPT" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/aft) -"bPW" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bPZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bQa" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bQb" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/table, -/obj/item/modular_computer/tablet/preset/advanced, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"bQc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/construction) -"bQd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bQe" = ( -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "10" - }, -/obj/item/radio/off, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bQg" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bQh" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQi" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"bQj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/engineering/atmos) -"bQl" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bQm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"bQo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQp" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQq" = ( -/obj/machinery/camera{ - c_tag = "Security Post - Engineering"; - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bQr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bQs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bQt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bQv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Equipment"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bQw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bQx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bQy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"bQA" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bQB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bQC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bQE" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/kitchen"; - name = "Kitchen APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/white/line, -/obj/item/kirbyplants/fullysynthetic, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"bQK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bQO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bQQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bQT" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bQU" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bQZ" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab) -"bRc" = ( -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"bRe" = ( -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"bRf" = ( -/obj/structure/table/wood, -/obj/item/circuitboard/machine/chem_dispenser/drinks, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"bRg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bRi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bRj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bRk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bRl" = ( -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction) -"bRm" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bRo" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bRq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/hallway/primary/aft) -"bRr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bRu" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bRv" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRw" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bRx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engineering/atmos) -"bRy" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRz" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bRE" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bRF" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bRJ" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"bRK" = ( -/obj/machinery/atmospherics/miner/carbon_dioxide, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bRL" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bRN" = ( -/obj/machinery/camera{ - c_tag = "Service Hallway East"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/white/line, -/turf/open/floor/plasteel/showroomfloor, -/area/hallway/secondary/service) -"bRS" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bRT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/door/window/brigdoor/southright{ - name = "Research Director Observation"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"bRU" = ( -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/structure/rack, -/obj/item/storage/box/lights/tubes, -/obj/item/crowbar/red, -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"bRV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bSc" = ( -/obj/structure/table, -/obj/machinery/button/ignition{ - id = "testigniter"; - pixel_x = -6; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "testlab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = 2; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bSd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bSe" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"bSh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"bSm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"bSn" = ( -/obj/machinery/space_heater, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"bSo" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"bSp" = ( -/obj/structure/grille/broken, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bSq" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bSs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bSt" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Telecomms Monitoring"; - dir = 8; - network = list("tcomms") - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bSv" = ( -/obj/machinery/camera{ - c_tag = "Construction Area"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"bSw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bSx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"bSz" = ( -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/plating, -/area/construction) -"bSB" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bSC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bSD" = ( -/obj/structure/table, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/structure/plaque/static_plaque/atmos{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bSE" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 24; - pixel_y = 4; - req_access_txt = "24" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/engineering/atmos) -"bSF" = ( -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/multitool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bSG" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/atmospherics, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bSH" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bSM" = ( -/obj/machinery/atmospherics/miner/toxins, -/obj/effect/turf_decal/tile/hex/purple, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bSN" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"bSO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bSR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bTh" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bTi" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bTj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/mining_rack, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"bTl" = ( -/turf/open/floor/engine, -/area/science/misc_lab) -"bTo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"bTr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bTs" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"bTx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bTz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bTG" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bTH" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bTI" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bTJ" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/aft"; - dir = 8; - name = "Aft Hall APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bTK" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bTL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/item/mining_thing/amd, -/obj/item/mining_thing/amd{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"bTM" = ( -/obj/machinery/atmospherics/miner/n2o, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bTN" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bTO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bTP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bTQ" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/neutral{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bTR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bTX" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bTZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bUc" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_x = 30 - }, -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/tcommsat/computer) -"bUi" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/computer/security/telescreen/rd{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"bUl" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bUn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bUo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bUq" = ( -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"bUr" = ( -/obj/structure/chair, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bUt" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUx" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUy" = ( -/obj/machinery/navbeacon/wayfinding/tcomms, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bUE" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bUF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bUG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bUH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bUI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bUJ" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUK" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External" - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bUL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bUO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bUP" = ( -/obj/machinery/door/airlock/atmos{ - name = "Turbine Access"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"bUQ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bUR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bUS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bUU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bUV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"bUW" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"bVb" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bVc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVg" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVk" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"bVo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"bVp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bVs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bVt" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/toxins, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bVu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/openspace/airless, -/area/engineering/atmos) -"bVv" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bVw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bVx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/airless, -/area/maintenance/port/aft) -"bVy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bVA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVC" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVE" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVF" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVI" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bVJ" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bVM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bVN" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Access"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bVO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bVP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bVQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bVR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"bVS" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"bVT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External to Filter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"bVU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bVV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/engineering/atmospherics_engine) -"bVW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"bVY" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bVZ" = ( -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bWa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bWb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"bWc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"bWd" = ( -/obj/structure/sign/warning/deathsposal{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bWh" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bWm" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bWo" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/science/research) -"bWr" = ( -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"bWs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bWt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bWu" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bWv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"bWw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"bWz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWB" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bWC" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bWD" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bWE" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bWF" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/tcommsat/server"; - dir = 1; - name = "Telecomms Server APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bWG" = ( -/obj/machinery/telecomms/server/presets/security, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bWH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/tcommsat/computer"; - dir = 1; - name = "Telecomms Monitoring APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bWI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"bWJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bWK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bWL" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bWM" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bWN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bWO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bWP" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bWQ" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bWR" = ( -/obj/structure/ladder, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"bWS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"bWU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bXe" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Observation - Port Fore"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/science/xenobiology) -"bXh" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"bXk" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AIE"; - location = "AftH" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bXn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bXq" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bXr" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"bXt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"bXv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"bXx" = ( -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"bXy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/port/aft) -"bXz" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bXA" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bXB" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bXC" = ( -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bXD" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bXE" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bXG" = ( -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bXH" = ( -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bXI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bXJ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bXK" = ( -/obj/structure/sign/poster/official/build, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bXL" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bXM" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXO" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bXP" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bXQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bXR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bXS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bXT" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics West"; - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/binary/crystallizer, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bXX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bXY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bYi" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/misc_lab) -"bYj" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bYl" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bYn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYo" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Test Chamber Monitor"; - network = list("test") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"bYp" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYq" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYr" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYs" = ( -/obj/structure/closet/crate, -/obj/item/clothing/under/color/lightpurple, -/obj/item/stack/spacecash/c200, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYu" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Space" - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/port/aft) -"bYw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"bYx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/port/aft) -"bYy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Incinerator Access"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden{ - name = "wooden barricade (CLOSED)" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYz" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bYA" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bYB" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bYC" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bYD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"bYE" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYH" = ( -/turf/closed/wall, -/area/engineering/break_room) -"bYI" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"bYL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"bYM" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYN" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"bYO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bYQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bYS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bYU" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bYV" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz{ - color = "#ffc600" - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"bZb" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 1; - networks = list("xeno_pens") - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bZc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"bZe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"bZg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bZi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bZj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZk" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZl" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Port" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZm" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bZr" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bZt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bZu" = ( -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bZv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"bZx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZy" = ( -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"bZz" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"bZB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"bZD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"bZF" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/stock_parts/cell/high/plus; - dir = 8; - name = "Atmospherics APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"bZI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bZJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bZK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"bZL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bZM" = ( -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bZN" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"bZO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bZT" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"bZU" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"bZZ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/camera{ - c_tag = "Testing Lab"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"cac" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cad" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cae" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"caf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/maintenance/port/aft) -"cag" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cai" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cak" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cal" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"can" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cao" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/advanced_airlock_controller/directional/north{ - exterior_pressure = 20 - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"cas" = ( -/obj/item/cigbutt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cau" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"cav" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"caw" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"cax" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cay" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"caA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"caC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"caF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - name = "output gas connector port" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"caG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"caI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"caM" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caT" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"caX" = ( -/obj/machinery/sparker{ - id = "testigniter"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"caY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"cba" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"cbb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cbc" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"cbe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/nanite_cloud_controller, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"cbf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cbh" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cbi" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cbj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/port/aft) -"cbk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Space" - }, -/turf/open/floor/plating/airless, -/area/maintenance/port/aft) -"cbl" = ( -/obj/machinery/camera{ - c_tag = "Telecomms Server Room"; - dir = 4; - network = list("tcomms") - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cbn" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cbp" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cbq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/mob/living/simple_animal/parrot/poly, -/obj/machinery/pdapainter/engineering, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cbr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"cbt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway 1"; - dir = 8; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbu" = ( -/obj/machinery/power/apc{ - areastring = "/area/engineering/break_room"; - dir = 8; - name = "Engineering Foyer APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"cbv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Delivery Access"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cbw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cby" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbz" = ( -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"cbA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"cbC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"cbD" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"cbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Incinerator" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"cbH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Incinerator to Output" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cbK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cbL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cbP" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cbR" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cbV" = ( -/obj/machinery/camera{ - c_tag = "Testing Chamber"; - dir = 1; - network = list("test","rd") - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"cca" = ( -/obj/machinery/power/solar{ - id = "portsolar"; - name = "Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"ccd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/storage) -"cce" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - locked = 1; - name = "Construction Area Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ccf" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ccg" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cch" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cci" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"ccj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ccl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ccp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ccs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"cct" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ccu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ccv" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccw" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"ccx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ccy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"ccA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ccB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"ccC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"ccD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"ccE" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ccF" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ccG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"ccI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/aft) -"ccN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ccP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"ccQ" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ccR" = ( -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ccV" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ccW" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ccY" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ccZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cda" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdb" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdc" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cdd" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cde" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cdf" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cdg" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 4; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cdh" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdk" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cdl" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cdm" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cdq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cds" = ( -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Access"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdv" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdw" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cdx" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"cdA" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"cdD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cdE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"cdF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cdH" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"cdI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cdJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"cdR" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"cdU" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cdV" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cdW" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/aft"; - dir = 8; - name = "Port Quarter Maintenance APC"; - pixel_x = -25; - pixel_y = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdZ" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cea" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ceb" = ( -/obj/machinery/telecomms/bus/preset_one, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cec" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"ced" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cee" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"ceg" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cei" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cen" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"ceo" = ( -/obj/machinery/keycard_auth{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cev" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cew" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"cex" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South West"; - dir = 4 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ceA" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ceB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ceD" = ( -/obj/machinery/computer/turbine_computer{ - dir = 1; - id = "incineratorturbine" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ceE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ceF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"ceM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/meter/atmos/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceO" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceQ" = ( -/obj/effect/landmark/blobstart, -/obj/structure/training_machine, -/turf/open/floor/engine, -/area/science/misc_lab) -"ceR" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceS" = ( -/obj/item/stack/sheet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceT" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceU" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ceV" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceW" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"ceY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceZ" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage"; - req_access_txt = "11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cfa" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cfb" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"cfc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"cfe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cfk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/turbine{ - dir = 1; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfo" = ( -/obj/structure/table, -/obj/item/storage/fish_case/random/freshwater{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/storage/fish_case/random/freshwater{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/storage/fish_case/random/freshwater{ - pixel_x = -6; - pixel_y = 13 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"cfu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cfv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Firefighting Equipment"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"cfx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating/airless, -/area/maintenance/solars/port/aft) -"cfD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfF" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/ce) -"cfG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cfH" = ( -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/obj/machinery/holopad, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cfI" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"cfK" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/main) -"cfL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cfN" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cfT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"cfU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = 6; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfX" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/ignition{ - id = "Incinerator"; - pixel_x = -6; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cga" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"cgk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/smartfridge/extract/preloaded, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cgm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgp" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgt" = ( -/obj/structure/cable, -/obj/machinery/power/terminal, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cgu" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"cgy" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cgz" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"cgA" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"cgB" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"cgC" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"cgD" = ( -/obj/machinery/camera{ - c_tag = "Aft Port Solar Access"; - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgE" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"cgF" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgG" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgO" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson{ - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cgR" = ( -/turf/open/floor/plasteel, -/area/engineering/main) -"cgV" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cgW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cgX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cgY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 Outlet Pump"; - target_pressure = 4500 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cgZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 Outlet Pump"; - target_pressure = 4500 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cha" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"chb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"chd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"che" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 Outlet Pump" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"chf" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics South East"; - dir = 1 - }, -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"chg" = ( -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"chk" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"chr" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"chz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chA" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chB" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"chC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chD" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"chE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"chH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"chJ" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"chL" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/solars/port/aft) -"chN" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"chO" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"chR" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"chS" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"chY" = ( -/obj/machinery/the_singularitygen{ - icon_state = "beacon0" - }, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"cia" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cic" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cid" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cie" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cij" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cik" = ( -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cim" = ( -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cin" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cio" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ciu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"civ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"ciz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"ciL" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciQ" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "portsolar"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"ciR" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/port/aft"; - dir = 4; - name = "Port Quarter Solar APC"; - pixel_x = 24; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Aft Port Solar Control"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"ciS" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/maintenance/solars/port/aft) -"ciT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ciU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"ciW" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"ciX" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/am_containment, -/obj/item/am_containment, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"ciY" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"ciZ" = ( -/turf/open/floor/plating, -/area/engineering/main) -"cjb" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cjc" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cjf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cjg" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer RC"; - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cji" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cjj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 27; - pixel_y = -10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cjl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"cjm" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"cjo" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/construction) -"cjr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"cju" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = 38; - pixel_y = 6 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cjw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cjx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/trunk/multiz/down, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cjz" = ( -/obj/structure/table, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cjD" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cjE" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjF" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cjG" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cjH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/airless, -/area/solars/port/aft) -"cjI" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"cjJ" = ( -/turf/closed/wall/r_wall, -/area/engineering/engine_smes) -"cjM" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering Secure Storage"; - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"cjN" = ( -/obj/machinery/power_restarter, -/turf/closed/wall, -/area/engineering/engine_smes) -"cjO" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"cjR" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "10;13" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"cjS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cjU" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cjV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"cjX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/command/heads_quarters/ce"; - dir = 4; - name = "CE Office APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cjY" = ( -/obj/structure/table/reinforced, -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/cartridge/engineering{ - pixel_x = 3 - }, -/obj/item/cartridge/atmos, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cka" = ( -/obj/structure/table, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"ckc" = ( -/obj/machinery/meter, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"ckf" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Incinerator Output Pump"; - target_pressure = 4500 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ckg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"ckj" = ( -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = 8; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cko" = ( -/obj/structure/disposalpipe/trunk/multiz/down{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ckt" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/solars/starboard/aft"; - dir = 8; - name = "Starboard Quarter Solar APC"; - pixel_x = -25; - pixel_y = 3 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"cku" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"ckB" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"ckC" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"ckD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"ckG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"ckI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"ckK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"ckL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"ckO" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Chief Engineer"; - req_access_txt = "56" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ckQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/suit_storage_unit/mining/eva, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ckS" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ckU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"ckV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"ckW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"ckX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"ckY" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"ckZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"clb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"clc" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/openspace/airless, -/area/engineering/atmos) -"cld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"clf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/maintenance/disposal/incinerator) -"clh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 1; - on = 0 - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"clj" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ - id_tag = "atmos_incinerator_airlock_exterior"; - name = "Turbine Exterior Airlock" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"clp" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"clv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"clw" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"clx" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/starboard/aft) -"cly" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Control"; - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/maintenance/solars/starboard/aft) -"clz" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"clB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"clG" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"clJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engineering/main) -"clM" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"clQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/main) -"clR" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_construction, -/obj/item/clothing/glasses/meson, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"clT" = ( -/obj/machinery/atmospherics/miner/nitrogen, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"clU" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"clV" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/obj/effect/turf_decal/tile/hex/blue, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"clW" = ( -/obj/machinery/atmospherics/miner/oxygen, -/obj/effect/turf_decal/tile/hex/blue, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"clY" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"cmb" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/plating/icemoon, -/area/maintenance/disposal/incinerator) -"cmd" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cmo" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmr" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmw" = ( -/obj/machinery/power/solar_control{ - dir = 1; - id = "starboardsolar"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"cmx" = ( -/obj/structure/cable, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"cmD" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"cmF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/chem_seller/engineering, -/turf/open/floor/plasteel, -/area/engineering/main) -"cmG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/closet/wardrobe/engineering_yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cmI" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"cmN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/engineering/main"; - dir = 1; - name = "Engineering APC"; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cmV" = ( -/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ - id = "spbrig" - }, -/obj/structure/fans/tiny, -/obj/machinery/button/door{ - id = "spbrig"; - name = "Blast Door Control"; - pixel_x = -28; - req_access_txt = "2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"cmW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cmX" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/construction) -"cmZ" = ( -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/igniter{ - id = "Incinerator" - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cna" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cnk" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cnr" = ( -/obj/machinery/door/window/southleft{ - name = "Engineering Delivery"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"cnt" = ( -/obj/machinery/camera{ - c_tag = "Engineering West"; - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cnv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"cny" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cnA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cnE" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cnX" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cnY" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cnZ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"coa" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cop" = ( -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cor" = ( -/obj/machinery/power/turbine{ - luminosity = 2 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cou" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"coZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cpa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"cpb" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cpe" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cph" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/openspace/airless, -/area/space/nearstation) -"cpq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cps" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel, -/area/engineering/main) -"cpF" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cpP" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/openspace/airless, -/area/space/nearstation) -"cpQ" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cpV" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cpW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cpX" = ( -/obj/machinery/computer{ - desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out error messages."; - dir = 8; - name = "Broken Computer" - }, -/obj/item/shard{ - icon_state = "small" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqn" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqo" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqp" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cqq" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cqs" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cqx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cqy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"cqz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqH" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqK" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/field/generator, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"cqL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"cqN" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqP" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqQ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqR" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engineering/main) -"cqU" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"cqY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/engineering/main) -"crk" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/solars/starboard/aft) -"cro" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/engineering/main) -"crp" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/main) -"crA" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"crC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/airless, -/area/solars/starboard/aft) -"crP" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"crR" = ( -/turf/open/floor/plating, -/area/engineering/atmos) -"crW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"crY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"csb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"csg" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "10;13" - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"csi" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/turf/open/floor/plating, -/area/maintenance/aft) -"csl" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"csn" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/openspace/airless, -/area/space/nearstation) -"cso" = ( -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"csD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"csM" = ( -/obj/structure/railing, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"csN" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"csO" = ( -/obj/structure/transit_tube/horizontal, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"csT" = ( -/obj/effect/spawner/xmastree, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"csU" = ( -/obj/structure/transit_tube/station/reverse, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"cta" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65;13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ctb" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ctg" = ( -/obj/structure/closet/emcloset{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"cth" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cti" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ctj" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Pod Access"; - dir = 1; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cto" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "65" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctp" = ( -/turf/open/floor/plating/airless, -/area/ai_monitored/turret_protected/aisat_interior) -"ctr" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/item/folder{ - pixel_x = 3 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cts" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctv" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"ctz" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teledoor"; - name = "MiniSat Teleport Access" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctB" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"ctE" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ctF" = ( -/obj/machinery/button/door{ - id = "teledoor"; - name = "MiniSat Teleport Shutters Control"; - pixel_y = 25; - req_access_txt = "17;65" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctG" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ctJ" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ctK" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Teleporter"; - req_access_txt = "17;65" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctL" = ( -/obj/machinery/teleport/station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"ctM" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctP" = ( -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ctQ" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctT" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"ctV" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat_interior"; - dir = 4; - name = "MiniSat Foyer APC"; - pixel_x = 24 - }, -/obj/structure/chair, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctX" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Teleporter"; - dir = 1; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ctZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cua" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat_interior) -"cuc" = ( -/obj/structure/rack, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cud" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_y = -24; - req_access = null; - req_access_txt = "65" - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuf" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cug" = ( -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace/airless, -/area/space/nearstation) -"cui" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"cuj" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"cul" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuo" = ( -/turf/open/openspace, -/area/ai_monitored/turret_protected/aisat/hallway) -"cup" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"cuq" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber North"; - dir = 1; - network = list("aicore") - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cus" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/ai_monitored/turret_protected/aisat_interior) -"cuv" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cux" = ( -/obj/machinery/door/window{ - dir = 4; - name = "AI Core Door"; - req_access_txt = "16" - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cuy" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuG" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cuS" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/pingsky, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cva" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"cvb" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"cvd" = ( -/turf/open/openspace, -/area/ai_monitored/turret_protected/aisat_interior) -"cve" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cvf" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"cvk" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvl" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cvo" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat/hallway"; - name = "Chamber Hallway Turret Control"; - pixel_x = 32; - pixel_y = -24; - req_access = null; - req_access_txt = "65" - }, -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cvp" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) -"cvr" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cvu" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvv" = ( -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 - }, -/obj/machinery/door/window{ - dir = 8; - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cvw" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvA" = ( -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/research) -"cvC" = ( -/obj/machinery/camera{ - c_tag = "MiniSat External NorthEast"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"cvG" = ( -/obj/machinery/porta_turret/ai{ - dir = 4; - installation = /obj/item/gun/energy/e_gun - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvJ" = ( -/obj/machinery/porta_turret/ai{ - dir = 4; - installation = /obj/item/gun/energy/e_gun - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvM" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Core Hallway"; - dir = 4; - network = list("aicore") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cvT" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/landmark/event_spawn, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/hallway) -"cvX" = ( -/obj/machinery/camera{ - c_tag = "MiniSat External NorthWest"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"cvZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"cwe" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"cwf" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation"; - req_one_access_txt = "65" - }, -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwg" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwh" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwk" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwm" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwp" = ( -/obj/structure/chair/office, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"cwt" = ( -/obj/machinery/door/airlock/command/glass{ - name = "AI Core"; - req_access_txt = "65" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cwA" = ( -/obj/structure/cable, -/obj/structure/ladder, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai) -"cwB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cwD" = ( -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"cwT" = ( -/obj/structure/table, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/modular_computer/tablet/preset/cheap, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cwV" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cxl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"cxn" = ( -/obj/structure/lattice, -/obj/effect/landmark/carpspawn, -/turf/open/openspace/airless, -/area/space/nearstation) -"cxE" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "NT SS13: Port bay"; - width = 5 - }, -/turf/open/openspace/airless, -/area/space) -"cxJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plating, -/area/security/processing) -"cxN" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"cxP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plating, -/area/security/processing) -"cxW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"cxY" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/openspace, -/area/hallway/secondary/entry) -"cya" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"cyb" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/secondary/entry) -"cyd" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "NT SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/openspace/airless, -/area/space) -"cyg" = ( -/turf/closed/wall, -/area/maintenance/fore/upper) -"cyh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Security Escape Airlock"; - req_access_txt = "2"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cyi" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cyl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 2" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cyp" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock"; - safety_mode = 1 - }, -/obj/machinery/navbeacon/wayfinding{ - location = "Escape" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cyr" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Airlock"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cyt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 4" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cyu" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 3" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cyD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"cyE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cyL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyT" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "NT SS13: Cargo Bay"; - width = 12 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"cyU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"czg" = ( -/obj/machinery/camera/autoname, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"czk" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65;13" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"czK" = ( -/turf/closed/wall, -/area/commons/vacant_room/office) -"czN" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"czS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"czU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/space/nearstation) -"czY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"czZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cAa" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste In"; - target_pressure = 4500 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"cAb" = ( -/obj/structure/closet, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cAc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cAy" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAz" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cAA" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAB" = ( -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAC" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAD" = ( -/obj/structure/table, -/obj/item/kitchen/knife, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAE" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 2 - }, -/obj/item/food/mint{ - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAF" = ( -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAH" = ( -/obj/machinery/processor, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAI" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAJ" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAK" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAL" = ( -/obj/structure/cable, -/mob/living/simple_animal/hostile/lizard{ - name = "Wags-His-Tail"; - real_name = "Wags-His-Tail" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/janitor) -"cAN" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"cAQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"cAR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"cAS" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = /area/ai_monitored/turret_protected/ai; - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cAT" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"cAU" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External SouthWest"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"cAW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"cAX" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External SouthEast"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"cAZ" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"cBa" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -9 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -9 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cBb" = ( -/obj/machinery/door/window{ - dir = 8; - name = "AI Core Door"; - req_access_txt = "16" - }, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cBc" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -28; - pixel_y = -28 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -31 - }, -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 28; - pixel_y = -28 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman{ - anchored = 1; - sheets = 40 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cBd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "rnd2"; - name = "research lab shutters" - }, -/turf/open/floor/plating, -/area/science/genetics) -"cBe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"cBf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"cBh" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"cBi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/landmark/start/quartermaster, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"cBk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"cBl" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"cBm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cBn" = ( -/obj/machinery/camera{ - c_tag = "Locker Room Toilets"; - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"cBq" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"cBu" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"cBx" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"cBy" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"cBz" = ( -/obj/machinery/door/window/brigdoor/southright{ - name = "Research Director Observation"; - req_access_txt = "30" - }, -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"cBA" = ( -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_y = 24 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"cBB" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"cBC" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/storage/tech) -"cBD" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/aft) -"cBE" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"cBF" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -35 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"cBG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"cBH" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/aft) -"cBI" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cBJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"cBK" = ( -/obj/item/radio/intercom{ - pixel_y = -35 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cBL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cBM" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/rcl/pre_loaded, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cBN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cBO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cBP" = ( -/obj/machinery/meter, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"cBS" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/aisat/hallway) -"cBV" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/engineering/atmos) -"cBZ" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cCb" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - amount = 5 - }, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/construction) -"cCc" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/construction) -"cCd" = ( -/turf/open/floor/plasteel, -/area/construction) -"cCe" = ( -/turf/open/openspace, -/area/construction) -"cCf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction) -"cCh" = ( -/obj/item/bedsheet/red, -/mob/living/simple_animal/bot/secbot/beepsky{ - name = "Officer Beepsky" - }, -/turf/open/floor/plating, -/area/security/processing) -"cCi" = ( -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/lawoffice) -"cCl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cCs" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/shieldgen, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"cCB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"cCC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"cCD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"cCE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"cCF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"cCG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"cCI" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/obj/effect/turf_decal/tile/hex/purple, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"cCL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCS" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Plasma Outlet Pump" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cCY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"cDm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) -"cDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"cDY" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"cDZ" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"cFi" = ( -/obj/machinery/camera{ - c_tag = "Research Division South"; - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"cFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"cFO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"cGA" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"cHx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cHD" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 14 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cHE" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Mech Bay Maintenance"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"cHF" = ( -/obj/machinery/button/door{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"cHG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"cHH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"cHJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"cHK" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cHM" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cHN" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cHO" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "robo1" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"cHP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHQ" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/robotics/mechbay"; - dir = 2; - name = "Mech Bay APC"; - pixel_x = 0; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"cHR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "robo1" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHT" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cHV" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "robo2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"cHW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHX" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/glasses/welding, -/obj/item/multitool{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cHZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"cIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "robo2" - }, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cIc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cId" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/science/robotics/lab) -"cIe" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cIf" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cIg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cIh" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cJT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"cKn" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/storage) -"cKV" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cLT" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cMz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cMC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cMN" = ( -/turf/closed/wall, -/area/engineering/atmospherics_engine) -"cMQ" = ( -/obj/machinery/power/solar{ - id = "starboardsolar"; - name = "Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"cMY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cNG" = ( -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"cNI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"cNJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"cNM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/sorting) -"cNN" = ( -/turf/closed/wall, -/area/service/electronic_marketing_den) -"cNR" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNS" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard"; - dir = 4; - name = "Starboard Maintenance APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNV" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_one_access_txt = "8;12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNW" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cNX" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "8;12" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOe" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOw" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cOx" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPn" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz{ - color = "#8000b6" - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"cPA" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cQQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"cRz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = -31 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"cRH" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"cRJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"cRS" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cSg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cSi" = ( -/obj/machinery/navbeacon/wayfinding/minisat_access_ai, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cSF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"cSL" = ( -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 10; - req_access_txt = "24" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -10; - req_access_txt = "10" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"cSM" = ( -/obj/machinery/computer/station_alert, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cSN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cSQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"cSR" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/camera{ - c_tag = "Engineering SMES" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cST" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"cSU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"cSV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cSW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cSX" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cSY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/computer/security/telescreen/engine{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cSZ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cTa" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"cTb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"cTf" = ( -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 4; - name = "Engineering RC"; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cTE" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cTF" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cTJ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"cTX" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/kirbyplants/dead, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"cUE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"cUO" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cVb" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cVy" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/structure/railing, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cWB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/cargo/miningdock"; - dir = 1; - name = "Mining Dock APC"; - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"cXt" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cXK" = ( -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cYU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"cYY" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"cZn" = ( -/obj/structure/lattice, -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"cZW" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dab" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/openspace, -/area/maintenance/starboard/fore) -"dam" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"daq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/pdapainter/research, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"daA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"dbg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"dby" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Observation - Starboard Aft"; - dir = 8; - network = list("ss13","rd","xeno_pens") - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/science/xenobiology) -"dbB" = ( -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"dcg" = ( -/turf/open/openspace, -/area/maintenance/space_hut/plasmaman) -"dci" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"dcv" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dcL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"dcW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dde" = ( -/obj/structure/closet/wardrobe/white, -/obj/item/clothing/shoes/jackboots, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ddy" = ( -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/mob/living/carbon/human/species/monkey, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/grass, -/area/science/genetics) -"ddD" = ( -/obj/structure/table, -/obj/item/toy/plush/slimeplushie, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"des" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"dfx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"dgB" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/status_display/supply{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"dgS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/lab) -"dif" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"diH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"djb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"djq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dju" = ( -/obj/structure/cable, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"dkX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dkY" = ( -/turf/closed/wall/r_wall, -/area/engineering/manufactory) -"dlg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dly" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"dni" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dnP" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"dpw" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dpM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpX" = ( -/obj/machinery/light/floor/directional/west, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"dpZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"dqL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"drK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/table, -/obj/item/ai_module/core, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"dsi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/holopad, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"dsk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"dso" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dtc" = ( -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/lawoffice) -"dti" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"dtD" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"dvn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dvL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"dvO" = ( -/obj/structure/displaycase/labcage, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"dvV" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dwb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"dxb" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dxS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"dyD" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dyN" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/item/storage/secure/safe{ - pixel_x = -23 - }, -/obj/item/storage/box/evidence, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"dzA" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"dzN" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dAb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"dAx" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"dAQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"dBc" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dBs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dBB" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"dCj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"dCp" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"dCG" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dCN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/science/mixing/chamber"; - dir = 8; - name = "Toxins Chamber APC"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"dEM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/line, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"dFo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/aft) -"dFs" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"dFB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig/upper) -"dFW" = ( -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"dGr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dGF" = ( -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"dGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"dHp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/dorms) -"dHL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/hallway/secondary/exit) -"dHX" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dJF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"dKO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"dMf" = ( -/turf/closed/wall, -/area/science/genetics) -"dMZ" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/structure/table/reinforced, -/obj/item/transfer_valve{ - pixel_x = -9 - }, -/obj/item/transfer_valve{ - pixel_x = 9 - }, -/obj/item/transfer_valve, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"dNE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dPG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"dPI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dPT" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dQw" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/aft) -"dQA" = ( -/obj/structure/sign/painting/library_secure, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"dSr" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/aft) -"dSI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dUO" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"dVu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"dXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"dYq" = ( -/obj/structure/sign/departments/nanites, -/turf/closed/wall, -/area/science/nanite) -"dYK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/table, -/obj/item/storage/secure/safe{ - dir = 1; - pixel_x = 6; - pixel_y = -28 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"dZy" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"dZX" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"eah" = ( -/obj/structure/ladder, -/turf/open/floor/plasteel/monofloor, -/area/engineering/break_room) -"ect" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 16 - }, -/turf/open/openspace, -/area/hallway/primary/starboard) -"ecF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"edu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"eey" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"eeV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"efp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/pod_parts/core, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"efV" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 13 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"egr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"egt" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"egS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ehP" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor"; - req_one_access_txt = "12;63;48;50" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"eib" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"eic" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/fitness) -"eja" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"eje" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ejP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ekE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"elb" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"elu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"elM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"elU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"elW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"emD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"emH" = ( -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"enf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"eoa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"eow" = ( -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"eoM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"epI" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"erc" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 26 - }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"ero" = ( -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"esK" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"etp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"etC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"etH" = ( -/obj/machinery/computer/rdconsole{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "rnd2"; - name = "Research Lab Shutter Control"; - pixel_x = 6; - pixel_y = -25; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "Biohazard"; - name = "Biohazard Shutter Control"; - pixel_x = -6; - pixel_y = -25; - req_access_txt = "47" - }, -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 6; - pixel_y = -38; - req_access_txt = "55" - }, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Xenobiology Containment Blast Doors"; - pixel_x = -6; - pixel_y = -38; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"eui" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"ewM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 2; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"ewO" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"eyg" = ( -/obj/structure/lattice/catwalk, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"eyF" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"eAi" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc{ - areastring = "/area/commons/vacant_room/commissary"; - dir = 4; - name = "Vacant Commissary APC"; - pixel_x = 24; - pixel_y = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"eAk" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"eAl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"eAs" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics Internal Airlock"; - req_access_txt = "24" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eBy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"eCj" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/storage/belt/utility, -/obj/item/clothing/glasses/meson, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"eDm" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/obj/structure/table, -/obj/item/stock_parts/scanning_module/adv{ - pixel_x = -7 - }, -/obj/item/stock_parts/manipulator/nano{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"eFD" = ( -/obj/structure/table/glass, -/obj/item/storage/box/disks{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"eHb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"eHV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"eIS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"eJf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"eKA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"eLr" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"eMe" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/locker"; - dir = 4; - name = "Locker Room APC"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"eMw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"eNq" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"ePi" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ePZ" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/port) -"eQN" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"eQV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eRz" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/openspace/airless, -/area/space/nearstation) -"eSG" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/storage) -"eSP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"eUb" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"eVy" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"eVL" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"eVV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/plasteel, -/area/science/lab) -"eWd" = ( -/obj/structure/tank_holder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eXc" = ( -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/maintenance/port/fore) -"eXW" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"eYf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"eZO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"faQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"fbj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/starboard) -"fbm" = ( -/obj/structure/table, -/obj/item/paper_bin, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"fbo" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"fbQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fcG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"fdN" = ( -/turf/closed/wall/r_wall, -/area/security/brig/upper) -"ffQ" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Observation - Port Aft"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/science/xenobiology) -"ffV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ffZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"fgW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/science/xenobiology) -"fhf" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"fif" = ( -/obj/structure/cable, -/obj/structure/chair{ - dir = 1 - }, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fja" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"fjg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fkb" = ( -/obj/structure/cable, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/aft) -"fkd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"fkR" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 27; - receive_ore_updates = 1 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"flc" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = 11 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = -2 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"flk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"fnr" = ( -/obj/effect/decal/cleanable/vomit, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"fnC" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"for" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"fpE" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"fpI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"fpR" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fql" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"fqP" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fqQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/requests_console{ - department = "Genetics"; - name = "Genetics Requests Console"; - pixel_y = 30 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"fqR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/aft) -"fqV" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/cargo/office) -"frg" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/openspace/airless, -/area/space/nearstation) -"frR" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics Internal Airlock"; - req_access_txt = "24" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/aft) -"fsC" = ( -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/science/research) -"fsD" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"fsM" = ( -/obj/machinery/light/floor/directional/west, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"fuf" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/ashtray{ - pixel_x = -7; - pixel_y = 1 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"fva" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"fvi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"fvI" = ( -/obj/effect/landmark/blobstart, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/construction) -"fxj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"fxq" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"fxD" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/secondary/exit) -"fxH" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"fAu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"fBs" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = -30 - }, -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"fBW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fDu" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"fDP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"fDQ" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"fEe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"fEF" = ( -/obj/structure/lattice/catwalk, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_y = -3 - }, -/turf/open/space/basic, -/area/space/nearstation) -"fGF" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"fGO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"fJn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"fJp" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab Entrance"; - network = list("ss13","rd") - }, -/turf/open/openspace, -/area/science/xenobiology) -"fKF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"fKT" = ( -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"fLe" = ( -/obj/machinery/power/apc{ - areastring = "/area/lawoffice"; - dir = 4; - name = "Law Office APC"; - pixel_x = 23; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"fLm" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fLu" = ( -/turf/open/floor/plating, -/area/construction) -"fLI" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fMc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/brown, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"fMJ" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/aquarium, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"fMU" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"fNo" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"fNF" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/maintenance/aft) -"fQI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"fQN" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/openspace, -/area/ai_monitored/storage/eva) -"fSv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"fTd" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"fTq" = ( -/obj/structure/sign/painting/library_private{ - pixel_y = -32 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library/artgallery) -"fUr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"fVn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"fVG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"fWm" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fWY" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"fXM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"fYE" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"fYQ" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"fZk" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"fZo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"fZW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"gby" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"gbz" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"gcJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"gcN" = ( -/obj/structure/transit_tube_pod, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"gcP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"gdq" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_y = 4 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gef" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"geE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"ggz" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"ghb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"giN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"gjb" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/courtroom) -"gjl" = ( -/turf/closed/wall, -/area/cargo/qm) -"gju" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/blue, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"gjP" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor/window, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "aquaprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"gjZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"glg" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"gnd" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/openspace, -/area/science/xenobiology) -"gnX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"goW" = ( -/obj/structure/sign/prison/kolesa{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/hand_labeler_refill{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/swab, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"gpE" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, -/obj/machinery/button/door{ - id = "lawyer_blast"; - name = "Privacy Shutters"; - pixel_x = 25; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/lawoffice) -"gpU" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"gqs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"gqv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"grb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gsj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gsz" = ( -/obj/machinery/camera{ - c_tag = "Fitness Room South"; - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"gvx" = ( -/obj/structure/marker_beacon, -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"gvF" = ( -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"gvI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"gwH" = ( -/obj/machinery/navbeacon/wayfinding/atmos, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"gxK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"gyL" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lantern, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"gzY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"gBt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gCc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"gCu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"gCA" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gDw" = ( -/obj/machinery/door/airlock/research{ - name = "Nanites Lab Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"gEl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gES" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"gFW" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gFX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"gGJ" = ( -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/xenobiology) -"gHg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/service/hydroponics) -"gHj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"gHG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"gIN" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gIX" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"gJi" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gJk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"gJx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"gJG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"gKn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"gKu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"gKw" = ( -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"gKN" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/candle{ - pixel_y = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"gKT" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/service/fitness/kachalka) -"gKW" = ( -/obj/spacepod/prebuilt/sec, -/turf/open/floor/engine, -/area/security/brig/upper) -"gLH" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"gLN" = ( -/turf/open/floor/plasteel, -/area/security/brig/upper) -"gMJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/manufactory) -"gNu" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"gNQ" = ( -/obj/item/stack/sheet/glass, -/obj/structure/table/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/stock_parts/scanning_module, -/obj/machinery/power/apc{ - areastring = "/area/science/lab"; - dir = 4; - name = "Research Lab APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/lab) -"gOD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gPK" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"gQq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/fans/tiny, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"gQv" = ( -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"gRa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gRl" = ( -/obj/machinery/camera{ - c_tag = "Engineering MiniSat Access"; - dir = 4 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"gRI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"gRL" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/service/hydroponics) -"gRM" = ( -/obj/machinery/power/rad_collector, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"gSS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/aft) -"gUc" = ( -/turf/closed/wall, -/area/service/library/artgallery) -"gWd" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"gXs" = ( -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"gXL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"gZd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"gZq" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"gZB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"gZQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"gZY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"ham" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hao" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pod_parts/armor/industrial, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"haw" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"haX" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"hbV" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"hcu" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"hcC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hcN" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"hdj" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"hdr" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"hds" = ( -/obj/structure/cable, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/wood, -/area/service/library/artgallery) -"her" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/science/xenobiology) -"hhs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/fore) -"hhN" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"hit" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"hjn" = ( -/obj/structure/railing, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"hnW" = ( -/turf/open/openspace, -/area/maintenance/fore/secondary) -"hox" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"hoH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hpB" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hpU" = ( -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/turbolift/primary) -"hqG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"hqR" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/service/chapel/main) -"hrT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal/incinerator"; - dir = 1; - name = "Incinerator APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/tier_2, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hsB" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One"; - shuttledocked = 1 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"htP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/engineering/main) -"htY" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"hun" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"huy" = ( -/obj/effect/turf_decal/siding/thinplating, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"huX" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"hvj" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"hvm" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"hvN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"hvP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"hvV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"hwf" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/stock_parts/capacitor, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"hwm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/openspace, -/area/shuttle/turbolift/primary) -"hwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hxt" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engineering/main) -"hxK" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"hxM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"hyg" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"hyU" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Space Pods"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"hyW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hzx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/processing) -"hAm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hAo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"hAK" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"hBA" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"hBY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hCx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"hDb" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/xenobiology) -"hDx" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hFg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_2_lavaland"; - name = "lavaland" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"hFm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"hFF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"hFK" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark/side{ - dir = 9 - }, -/area/hallway/secondary/exit) -"hGn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/qm) -"hGE" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"hGP" = ( -/obj/machinery/chem_master, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hHq" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"hHz" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"hHY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hJg" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/science/xenobiology) -"hJD" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/miningdock) -"hKG" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"hLa" = ( -/turf/open/openspace/airless, -/area/space/nearstation) -"hLX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"hNj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"hNs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"hOv" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hOV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hOX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"hPr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"hPw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/power/apc{ - areastring = "/area/cargo/office"; - name = "Cargo Office APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"hPI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"hQK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/dresser, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"hQL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"hRv" = ( -/obj/structure/table, -/obj/item/vending_refill/hydronutrients, -/obj/item/vending_refill/hydroseeds, -/obj/item/vending_refill/wardrobe/hydro_wardrobe, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hRM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;38" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"hSc" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"hSl" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hSN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/item/pipe_dispenser{ - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"hTc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"hUk" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"hUv" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #3 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"hUJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hWx" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"hWz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"hYG" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"hYM" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"hYR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hZh" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"hZk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/nanite) -"iap" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"iax" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/engine/hull/reinforced, -/area/engineering/atmos) -"ibj" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/rd{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"ibk" = ( -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"ibv" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"ibG" = ( -/obj/structure/table, -/obj/item/storage/box/disks_nanite{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"ice" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/tier_2, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ico" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/xenobiology) -"icG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"icS" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/nanite) -"icX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"ieY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"ift" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"ifu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ifv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"ifX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/manufactory) -"igQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"igR" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"iiq" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"iiu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"iiA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ijw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"ilp" = ( -/obj/structure/grille, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"imY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ink" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"inq" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/rack, -/obj/item/clothing/suit/hooded/wintercoat/science{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/science{ - pixel_x = -1 - }, -/obj/item/clothing/shoes/winterboots{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/clothing/shoes/winterboots, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"inO" = ( -/obj/item/trash/raisins, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"inR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plastic/fifty, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"inW" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ioa" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"ioD" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ioJ" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ioQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"ioU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"ipb" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/commons/fitness/recreation) -"ipJ" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/cargo/qm) -"iqh" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmospherics_engine) -"itz" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"itG" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"iup" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"ive" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"ivS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"iwf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/service/library/upper) -"ixk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"izk" = ( -/obj/structure/closet/l3closet/scientist, -/obj/item/extinguisher, -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"izD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"izT" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/office) -"iAa" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel, -/area/engineering/main) -"iAh" = ( -/obj/structure/cable, -/obj/machinery/power/terminal, -/turf/open/floor/engine, -/area/science/misc_lab) -"iAm" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"iBR" = ( -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"iBZ" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"iCi" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"iCr" = ( -/obj/structure/railing, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"iCP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"iCY" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"iDG" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"iEJ" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"iES" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/sign/departments/science/alt{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iFY" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"iHA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"iHL" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"iHT" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"iIh" = ( -/obj/structure/marker_beacon, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"iIA" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"iMv" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"iMA" = ( -/obj/structure/flora/rock/jungle, -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/science/genetics) -"iMH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"iOI" = ( -/obj/structure/rack, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iPh" = ( -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/openspace/airless, -/area/engineering/atmos) -"iSc" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/service/fitness/kachalka) -"iSv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"iSD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"iSG" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"iTW" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"iTX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"iUk" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"iXf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"iYp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"iYy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"iYK" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"iYO" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"iZT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"jaL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"jce" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"jdl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"jdp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"jeT" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Research Director"; - req_access_txt = "30" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"jfe" = ( -/turf/open/floor/engine, -/area/security/brig/upper) -"jfp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"jgu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jgv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jhV" = ( -/obj/structure/chair/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"jia" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - networks = list("xeno_pens") - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"jid" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jiK" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"jjr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jkE" = ( -/obj/machinery/navbeacon/wayfinding/sec, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"jlv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"jly" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jmN" = ( -/turf/open/openspace, -/area/hallway/primary/starboard) -"jmS" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/security/brig/upper) -"jmV" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/service/library/upper) -"jnu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"jnZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmospherics_engine) -"jog" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/processing) -"jox" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/security/brig/upper) -"joy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"jqP" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"jrH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "rnd2"; - name = "research lab shutters" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"jsj" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"jtl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"jtT" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"jtY" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Hallway"; - req_one_access_txt = "65" - }, -/obj/structure/cable, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat/hallway) -"jue" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jva" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jvp" = ( -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"jxy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"jxQ" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"jyu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jyz" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jyF" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"jzl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"jAd" = ( -/obj/machinery/light/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/engineering/engine_room/external) -"jAD" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"jAU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"jAX" = ( -/obj/vehicle/sealed/mecha/working/ripley/cargo, -/turf/open/floor/mech_bay_recharge_floor, -/area/cargo/office) -"jAY" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/secondary/exit) -"jBm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "manufactory1"; - name = "manufactory shutters" - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"jBV" = ( -/obj/machinery/computer/warrant{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"jCq" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jFE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"jGc" = ( -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"jHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jHL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"jHW" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/mineral/plasma, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"jIa" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/hallway/secondary/exit) -"jIZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"jJk" = ( -/turf/open/openspace, -/area/space) -"jKv" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"jKx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"jLL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"jMP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"jNu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/service/library/upper) -"jOX" = ( -/obj/structure/closet/secure_closet/cytology, -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"jQL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"jQO" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"jQV" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"jSw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"jSz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"jSI" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"jUW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"jVc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"jVi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/security/brig/upper) -"jVl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jVC" = ( -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/wood, -/area/service/library/upper) -"jXm" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"jXH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"jXI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jYM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"jYO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"jZc" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"jZG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/spacepod_equipment/cargo/large, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"kao" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kaO" = ( -/obj/structure/table, -/obj/item/storage/box/aquarium_props{ - pixel_y = 8 - }, -/obj/item/storage/box/aquarium_props, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"kbm" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kcq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"kdH" = ( -/obj/machinery/computer/warrant{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"kdV" = ( -/obj/structure/cable, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"keS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"keW" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 27 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kgG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"khg" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"khB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"khR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"kif" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/main) -"kiB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"kjo" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"kjF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"kki" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/tesla_coil, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"klc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"klg" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"kli" = ( -/turf/open/openspace, -/area/maintenance/port/aft) -"klw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"klU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"kmh" = ( -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"kmt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"kmN" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"knx" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/space/nearstation) -"knE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"kpx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"kqK" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"krF" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"ksH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ktl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kul" = ( -/turf/closed/wall, -/area/engineering/engine_smes) -"kwA" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"kwE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kwK" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -9 - }, -/obj/item/assembly/igniter{ - pixel_x = -9; - pixel_y = -2 - }, -/obj/item/assembly/igniter{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/item/assembly/igniter{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"kxe" = ( -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"kxC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"kxE" = ( -/turf/open/openspace, -/area/ai_monitored/storage/eva) -"kzT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"kBs" = ( -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kCx" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kCF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kCV" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/aft) -"kEj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/security/brig/upper) -"kEN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"kFd" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"kFx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kGS" = ( -/obj/structure/table/glass, -/obj/item/radio/headset/headset_sci{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/folder/white{ - pixel_x = 2 - }, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = 11; - pixel_y = 7 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kHv" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"kHM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"kIh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"kJd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kKA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kKM" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/openspace, -/area/science/xenobiology) -"kKV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/security/brig/upper) -"kLM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"kLR" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"kLX" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/fore/secondary) -"kMf" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/science/research) -"kNm" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/security/detectives_office) -"kNS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"kOd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/manufactory) -"kOf" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"kOw" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"kOy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"kOV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kPd" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/item/trash/can, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"kQg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/xenobiology"; - name = "Xenobiology APC"; - pixel_y = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"kRC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"kRN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"kSC" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"kSG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"kSN" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"kTk" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kUN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"kWe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"kWA" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kWY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"kXf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/junglebush/c, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/grass, -/area/science/genetics) -"kXt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"kYg" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"kYr" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"kYB" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/openspace, -/area/maintenance/space_hut/plasmaman) -"kZR" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"lbE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"lcg" = ( -/obj/machinery/nanite_chamber, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"ldT" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/science/research) -"lfv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"lho" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ljd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ljG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ljU" = ( -/obj/structure/lattice, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/openspace, -/area/hallway/secondary/entry) -"lkd" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"lkx" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lkE" = ( -/obj/structure/grille/broken, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"lmG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lmZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/lawoffice) -"lnI" = ( -/obj/structure/lattice, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"lob" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"lpr" = ( -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"lpz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"lqM" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"lro" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"lsJ" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"lsY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"ltd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ltG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"luT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"lvH" = ( -/obj/machinery/navbeacon/wayfinding/vault, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"lwb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light, -/obj/structure/closet/secure_closet/personal, -/obj/item/stack/spacecash/c1000, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"lwo" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"lww" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lwA" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lxd" = ( -/obj/structure/table, -/obj/item/discovery_scanner{ - pixel_y = 11 - }, -/obj/item/research_disk_pinpointer, -/obj/structure/railing, -/obj/machinery/light_switch{ - pixel_x = -20 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/science/research) -"lxk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lxt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"lxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"lxI" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/ai_monitored/command/nuke_storage) -"lxY" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"lAd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"lAB" = ( -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"lBE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engineering/engine_room/external) -"lCd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lCi" = ( -/obj/docking_port/stationary/public_mining_dock{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"lCj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"lDM" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"lEd" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"lEW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"lFP" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"lGQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/disposal) -"lGX" = ( -/obj/machinery/lazylift_button, -/turf/closed/wall/r_wall, -/area/shuttle/turbolift/primary) -"lHR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"lHZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lIi" = ( -/obj/structure/railing{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"lIm" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"lIp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"lJt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"lJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"lJC" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lJI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"lKr" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/science/xenobiology) -"lLB" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Antechamber"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"lNB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"lOV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 4500; - name = "waste vent" - }, -/obj/effect/turf_decal/tile/hex/brown, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"lPm" = ( -/obj/structure/railing/corner, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"lPo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"lQm" = ( -/obj/machinery/camera{ - c_tag = "Nanite Lab"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/nanite_programmer, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"lQG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"lSv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"lSB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"lSQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_smes) -"lST" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"lUd" = ( -/obj/effect/spawner/structure/window, -/obj/structure/sign/departments/xenobio{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"lUO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"lWA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lXr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"lXC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"lYr" = ( -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding/gateway, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/command/gateway) -"lYu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"lYU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"maP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mbn" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"mcm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"mcv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/engineering/manufactory) -"mcH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"mcM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"mcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"mdr" = ( -/obj/machinery/nuclearbomb/beer, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"mfc" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"mhM" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"miQ" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/port) -"mjk" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"mjo" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"mjy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mkp" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plating, -/area/engineering/manufactory) -"mkA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"mlr" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/cable, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"mmF" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"mpY" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"mqq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"mqM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/science/xenobiology) -"mra" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"msC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"mtK" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"mut" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"mvb" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"mwr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/docking_port/stationary/random/icemoon{ - dir = 8; - id = "pod_lavaland"; - name = "lavaland" - }, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"mwI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"myl" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/storage) -"myT" = ( -/obj/machinery/light/floor/directional/east, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"mzk" = ( -/obj/structure/railing{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"mzA" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"mzW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mBm" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "rnd2"; - name = "research lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/science/nanite) -"mBy" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"mEJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"mEP" = ( -/obj/structure/lattice, -/obj/structure/marker_beacon, -/turf/open/openspace/airless, -/area/space/nearstation) -"mFD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Space Pods"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"mFF" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/science/research) -"mFY" = ( -/obj/machinery/vending/modularpc, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mHi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"mJd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"mJM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Experimentor Lab"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"mJV" = ( -/obj/machinery/light/floor/directional/north, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"mKh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mKI" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"mMq" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"mNk" = ( -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"mNB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"mNE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"mOV" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #1 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"mPh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"mPl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"mPw" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/science/xenobiology) -"mRq" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/art"; - dir = 4; - name = "Art Storage"; - pixel_x = 23; - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"mSd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"mSf" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"mSz" = ( -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"mSB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"mSL" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/fore) -"mSR" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/aft) -"mTi" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"mVj" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"mWF" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mYO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"ncN" = ( -/obj/machinery/navbeacon/wayfinding/court, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"ndE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"ndH" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/service/hydroponics/garden) -"ndV" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 5; - id = "trader_transport_station"; - name = "NT SS13: Trader Transport dock"; - width = 5 - }, -/turf/open/openspace/airless, -/area/space) -"nec" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"neA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"nfd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nfm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nfx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nhG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/electronic_marketing_den) -"nhN" = ( -/obj/structure/railing{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"nhT" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"nig" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"nit" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"niA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/advanced_airlock_controller/directional/north, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"niR" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"njO" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"nls" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"nlV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"nmC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"nnm" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"nnA" = ( -/obj/machinery/door/airlock{ - name = "Observatory Access" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nop" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"npc" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nph" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"npF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"nro" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"nru" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"nsn" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/engineering/engine_smes) -"nsK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nsT" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"ntc" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"nvc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"nvx" = ( -/obj/machinery/light/floor/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nxa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/displaycase/winner/engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"nxv" = ( -/obj/machinery/power/apc{ - areastring = "/area/construction"; - name = "Construction Area APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction) -"nxx" = ( -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "55" - }, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"nyd" = ( -/obj/machinery/navbeacon/wayfinding/chapel, -/turf/open/floor/carpet, -/area/service/chapel/main) -"nye" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmos) -"nyM" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/openspace, -/area/maintenance/port/aft) -"nzH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"nzP" = ( -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"nAf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"nAu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - id = "Secure StorageBackdoor"; - name = "secure storage" - }, -/obj/machinery/button/door{ - id = "Secure StorageBackdoor"; - name = "Storage Backdoor"; - pixel_y = 26; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/storage) -"nCl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"nDQ" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"nEm" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 8; - output_dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"nEs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"nEJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"nEP" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"nFd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nFu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor"; - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"nGm" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"nGp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"nGv" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 29 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"nGZ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"nHU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"nJo" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/aft) -"nJz" = ( -/obj/structure/tank_holder/oxygen/yellow, -/turf/open/floor/plating, -/area/maintenance/port) -"nKZ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"nLv" = ( -/obj/structure/statue/gold/robust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"nLO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"nMb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"nMr" = ( -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"nMO" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nOa" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"nOh" = ( -/obj/machinery/camera/autoname, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"nOx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"nOS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"nPP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"nPT" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"nRQ" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"nSw" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/multi_tile/three_tile_ver, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"nSx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nSY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"nTP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/carpet, -/area/service/library/upper) -"nTU" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"nUc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"nVb" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"nWm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"nWq" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/engine/hull, -/area/space/nearstation) -"nWA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Air Supply Maintenance"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nWC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nWM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"nXi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"nXv" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/space/nearstation) -"nXP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"nXT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/miningdock) -"nXU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nZb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"oaB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/locker) -"oaV" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ocP" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate{ - name = "satellites crate" - }, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"odj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"oei" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"oeR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"oeS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"ofT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/aft) -"ogj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ogF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ohj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ohW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"ojE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"okp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/corner, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"oku" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"okD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"okE" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"okO" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"olh" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"olR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"omf" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/engineering/main) -"omB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"omQ" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/engineering/atmos) -"opg" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plating, -/area/maintenance/aft) -"opl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"opF" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/space/nearstation) -"orP" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"osa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"osK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"otB" = ( -/obj/machinery/computer/atmos_control/toxinsmix, -/obj/machinery/airalarm/mixingchamber{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing/chamber) -"ous" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/openspace, -/area/hallway/primary/starboard) -"ouv" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"ouO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ovq" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "biohazard containment door" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"owD" = ( -/obj/machinery/meteor_catcher{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"owZ" = ( -/obj/structure/sign/painting/library, -/turf/open/openspace/airless, -/area/space) -"ozc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"ozs" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"ozO" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = 28 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_y = -25 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"ozX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"oAk" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"oBH" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 1; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 1; - name = "Supply multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/fore/upper) -"oDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"oEj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/mecha_part_fabricator, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"oEV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"oGl" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 1; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 1; - name = "Supply multi deck pipe adapter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig/upper) -"oGr" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"oGP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"oHH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"oHT" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"oHU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"oHY" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oJa" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"oJP" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/machinery/button/door{ - id = "manufactory1"; - layer = 3.3; - name = "Manufactory Privacy"; - pixel_x = -33; - pixel_y = 32; - req_access_txt = "10" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/vending/mechcomp, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"oLb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"oLz" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/maintenance/port) -"oMc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"oMB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/space/nearstation) -"oMN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"oNH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"oNK" = ( -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"oPj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"oPk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"oPy" = ( -/turf/open/openspace, -/area/commons/fitness/recreation) -"oQK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/comfy/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"oQS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"oSZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"oUq" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"oUT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"oVD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"oVV" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/obj/structure/reagent_dispensers/watertank, -/turf/open/openspace, -/area/science/xenobiology) -"oWq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 1; - id = "vroomshutter"; - name = "Vacant Room Shutter" - }, -/turf/open/floor/plating, -/area/commons/vacant_room) -"oWF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"oXE" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor"; - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"oXS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"oYH" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"paQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"pca" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"pch" = ( -/obj/machinery/light, -/obj/structure/lattice, -/turf/open/openspace, -/area/service/fitness/kachalka) -"pck" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"pcT" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"pdB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing/corner, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pdC" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"pdQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"pfj" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/tools"; - dir = 1; - name = "Auxiliary Tool Storage APC"; - pixel_y = 23 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"pga" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"pgn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"pgo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/engine/hull/reinforced, -/area/engineering/atmos) -"pgP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"piD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"pjk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pjA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/autolathe, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"pkM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"plh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 1; - id = "vroomshutter"; - name = "Vacant Room Shutter" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/vacant_room) -"pmQ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pnj" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/openspace, -/area/science/xenobiology) -"pnG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"pnH" = ( -/obj/structure/cable, -/obj/structure/railing/corner, -/turf/open/floor/plating, -/area/maintenance/aft) -"poM" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pqt" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_y = -29 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"pqx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/hfr_box/corner{ - pixel_x = -7; - pixel_y = 14 - }, -/obj/item/hfr_box/body/fuel_input{ - pixel_x = 9; - pixel_y = 14 - }, -/obj/item/hfr_box/body/moderator_input{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/hfr_box/body/waste_output{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/hfr_box/core{ - pixel_x = 11; - pixel_y = -4 - }, -/obj/item/hfr_box/body/interface{ - pixel_x = -5; - pixel_y = -4 - }, -/obj/item/hfr_box/corner{ - pixel_y = 21 - }, -/obj/item/hfr_box/corner{ - pixel_x = 1; - pixel_y = 11 - }, -/obj/item/hfr_box/corner{ - pixel_x = 1; - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"pqP" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/toner, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/item/storage/box, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/office) -"prl" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/science/xenobiology) -"psy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"psC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"psY" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"ptd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ptw" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"ptX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pvj" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"pvE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"pwd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"pwU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding/dorms, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"pxz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"pxC" = ( -/obj/machinery/door/poddoor/multi_tile/four_tile_hor, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"pxP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"pxT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"pyz" = ( -/obj/structure/table, -/obj/item/taperecorder, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pyT" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"pzn" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - name = "NT SS13: escape pod #2 loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"pzs" = ( -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"pzA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/engineering/engine_smes"; - dir = 1; - name = "SMES room APC"; - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"pzD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"pAm" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"pBV" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"pCj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"pDu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/nanite_programmer, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"pFd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"pFy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/maintenance/aft) -"pFK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"pFS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"pGt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"pGX" = ( -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"pIc" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"pIS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pKc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - dir = 4 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/cargo/qm) -"pKm" = ( -/obj/structure/table, -/obj/item/nanite_remote{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/nanite_scanner, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"pKX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"pLn" = ( -/obj/machinery/conveyor/inverted{ - dir = 5; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"pLB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"pLG" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"pLY" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pNh" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/item/stack/sheet/iron/five, -/obj/item/circuitboard/machine/paystand, -/obj/item/stack/cable_coil/five, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"pND" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"pNL" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pNV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/locker) -"pNZ" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"pOJ" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"pOY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"pQE" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/railing, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"pRR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"pSN" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"pTT" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"pUq" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pUr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"pUz" = ( -/turf/open/openspace, -/area/maintenance/starboard/aft) -"pUF" = ( -/turf/open/floor/engine/hull/reinforced, -/area/space/nearstation) -"pVb" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/closed/wall, -/area/cargo/sorting) -"pVg" = ( -/obj/structure/table, -/obj/item/storage/box/matches, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pVw" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"pWb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"pYD" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pZL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"qaq" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/brig/upper) -"qas" = ( -/obj/structure/tank_dispenser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"qaX" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "rnd2"; - name = "research lab shutters" - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"qbE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"qbG" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research) -"qbW" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"qcR" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/cable_coil, -/obj/item/pen{ - pixel_x = -5; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"qcV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"qde" = ( -/obj/item/crowbar, -/obj/item/wrench, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/hallway/primary/aft) -"qea" = ( -/obj/machinery/nanite_chamber, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"qfo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qfD" = ( -/obj/machinery/monkey_recycler, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"qfZ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/vending/engivend, -/turf/open/floor/plating, -/area/engineering/main) -"qgD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"qgT" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/emitter, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"qgW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"qhl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/maintenance/starboard/fore) -"qhm" = ( -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"qhs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"qhx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"qhI" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"qhM" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics Internal Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/engineering/atmos) -"qhY" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"qiq" = ( -/obj/structure/cable, -/obj/effect/landmark/stationroom/medbay/random, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"qjT" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qkW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"qlI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Aquariums" - }, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "aquaprivacy"; - name = "Privacy Shutters" - }, -/turf/open/floor/plasteel/white, -/area/commons/fitness/recreation) -"qod" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"qor" = ( -/obj/machinery/light/small, -/obj/structure/railing/corner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"qoQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"qqB" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate{ - name = "satellites crate" - }, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"qqL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"qrm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"qrH" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Monkey Pen"; - pixel_y = 2; - req_access_txt = "9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/flora/junglebush/b, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/grass, -/area/science/genetics) -"qrU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"qsk" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "10;13" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) -"qtr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"qub" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"quT" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/openspace/airless, -/area/space/nearstation) -"qvJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"qvP" = ( -/turf/closed/wall/rust, -/area/maintenance/space_hut/plasmaman) -"qyX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"qAa" = ( -/obj/structure/grille/broken, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"qBd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"qBr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"qBw" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"qCj" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"qDx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"qDX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"qEv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"qEw" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"qGG" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"qGZ" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/carpet, -/area/security/detectives_office) -"qHw" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"qHQ" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"qIY" = ( -/obj/structure/lattice, -/obj/machinery/light/floor/directional/north, -/turf/open/openspace, -/area/cargo/storage) -"qJP" = ( -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"qKn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/obj/machinery/camera/autoname, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"qKu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"qKE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating/corner, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"qLv" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"qLT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"qLU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"qOq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/fore) -"qOF" = ( -/mob/living/simple_animal/bot/atmosbot{ - auto_patrol = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding/dockarrival, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"qPa" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qQe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/port) -"qQp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"qQB" = ( -/obj/machinery/space_heater, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard) -"qQH" = ( -/obj/effect/spawner/lootdrop/minor/bowler_or_that, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qQO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"qRg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"qRB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qRI" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall/r_wall, -/area/science/storage) -"qRW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/computer/shuttle_flight/mining/common{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"qSe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"qSw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"qSG" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qVo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/engineering/engine_room/external) -"qVu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"qWw" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/security/courtroom"; - dir = 8; - name = "Courtroom APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/courtroom) -"qXo" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qXK" = ( -/obj/effect/landmark/start/mechanic, -/turf/open/floor/plasteel/dark, -/area/engineering/manufactory) -"qYh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"qYI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"qYX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"raw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"rbi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"rcZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rdP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"reJ" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rfd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rfS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library/upper) -"rhT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"rif" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/engineering/manufactory) -"riP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rjj" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/hallway/secondary/entry) -"rkf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"rlx" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Observation - Starboard Fore"; - dir = 8; - network = list("ss13","rd","xeno_pens") - }, -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/science/xenobiology) -"rms" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/fore) -"rmD" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"rmP" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/port) -"rmU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"rmV" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"rmX" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"roc" = ( -/obj/machinery/camera{ - c_tag = "MiniSat External South"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"rpc" = ( -/turf/closed/wall, -/area/service/fitness/kachalka) -"rpp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"rpW" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"rqx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"rtc" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"ruP" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/service/fitness/kachalka) -"rvh" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/openspace/airless, -/area/space/nearstation) -"rvy" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"rvI" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/junglebush/large{ - pixel_y = 0 - }, -/turf/open/floor/grass, -/area/science/genetics) -"rvZ" = ( -/turf/open/openspace/airless, -/area/maintenance/starboard/aft) -"rwo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"rwR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"rxu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ryy" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics Internal Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engineering/atmos) -"ryM" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rzp" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"rAf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"rAv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"rAI" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rCo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/storage) -"rCp" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/white, -/area/science/research) -"rCO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"rCU" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rDO" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"rEs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rFc" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"rFx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"rFU" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Laboratory"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"rGY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/processor/slime, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"rHg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room) -"rHj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/commons/dorms) -"rIz" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rIU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/shipping, -/obj/item/clothing/head/soft, -/obj/item/clothing/head/soft, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"rIY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"rJb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/hydroponics) -"rKb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/secondary/exit) -"rKc" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Research Division Delivery"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"rKn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/power/mining_rack, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"rKC" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rKJ" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rKP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"rLp" = ( -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/construction) -"rLr" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"rLP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"rNl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"rNm" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"rNn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"rNw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"rNK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/tcommsat/computer) -"rOY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"rPu" = ( -/obj/structure/urinal{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet) -"rPX" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/port) -"rQv" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"rRQ" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/commons/fitness/recreation) -"rSF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rST" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/cargo/office) -"rTp" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rVk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"rVn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"rVS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/obj/effect/landmark/blobstart, -/turf/open/openspace, -/area/maintenance/aft) -"rXH" = ( -/turf/open/openspace, -/area/hallway/secondary/entry) -"rXP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rYJ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"rZs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"rZu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"rZx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rZR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/emproof, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_smes) -"sag" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"sby" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"scd" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"scI" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"sdg" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"sdX" = ( -/turf/closed/wall, -/area/cargo/office) -"seK" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sfq" = ( -/turf/open/openspace, -/area/maintenance/port) -"sfw" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/openspace, -/area/shuttle/turbolift/primary) -"sfZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engineering/atmos) -"sgn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"sgT" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"she" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"shN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sij" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"siA" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"siM" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/fitness) -"sjr" = ( -/turf/open/openspace, -/area/science/research) -"sjK" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/turf/open/floor/plating, -/area/maintenance/aft) -"skX" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"slk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"slD" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"smh" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Torture room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit) -"spc" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/openspace, -/area/ai_monitored/turret_protected/ai) -"srx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/office) -"srC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ssM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"std" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"stm" = ( -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/aft) -"suU" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"svb" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/crowbar/large, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"sve" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "rnd2"; - name = "research lab shutters" - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"swH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"sxs" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sxH" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sAl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sBm" = ( -/obj/structure/ladder, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"sBw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"sBJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sDm" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"sDF" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"sEr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"sFh" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sFC" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"sFK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"sFL" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"sGD" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aquaprivacy"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"sHk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"sHn" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sHE" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Shuttle Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"sHS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"sIs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"sID" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"sIU" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port) -"sIY" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"sLJ" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/office) -"sMK" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/starboard"; - name = "Starboard Primary Hallway APC"; - pixel_y = -23 - }, -/obj/structure/closet/emcloset, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sNp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sNT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"sNY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sOr" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"sOs" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sPn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sPJ" = ( -/obj/machinery/meter, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"sRa" = ( -/obj/machinery/light/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engineering/engine_room/external) -"sSC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sST" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"sSZ" = ( -/turf/open/openspace, -/area/cargo/storage) -"sTE" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sTL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sUt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"sUw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/turf_decal/siding/thinplating, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"sVd" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"sVw" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"sVx" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sVV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/railing/corner, -/turf/open/floor/plating, -/area/maintenance/aft) -"sXk" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/engineering/main) -"sXG" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"sZx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"sZy" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/smartfridge/extract/preloaded, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"sZI" = ( -/turf/open/openspace, -/area/ai_monitored/command/nuke_storage) -"tav" = ( -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"taJ" = ( -/obj/structure/table, -/obj/item/blackmarket_uplink, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"taM" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"tbd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Test Chamber"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "testlab"; - name = "test chamber blast door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"tcm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"tcY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"tde" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"tdh" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"tdi" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"tdH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"tex" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"teP" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"tgl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/science/nanite) -"tgF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/storage) -"thl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"thp" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -11; - pixel_y = -24 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber Core"; - dir = 1; - network = list("aicore") - }, -/obj/machinery/door/window{ - dir = 4; - name = "AI Core Door"; - req_access_txt = "16" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"thG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"tiS" = ( -/obj/structure/closet/bombcloset, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"tjy" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"tkL" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tln" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tlx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tlA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tmg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"tnv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tnO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"toG" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"tpr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"tqd" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/commons/dorms) -"tqp" = ( -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"tqt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"trb" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"trl" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"trt" = ( -/obj/structure/railing, -/obj/effect/turf_decal/stripes/line, -/obj/structure/window/reinforced/survival_pod, -/turf/open/floor/plasteel/cafeteria, -/area/command/heads_quarters/rd) -"tsw" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"tsJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/botany{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/primary/starboard) -"tti" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/commons/dorms) -"tuQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"tvB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"tvC" = ( -/turf/closed/wall, -/area/maintenance/department/medical/morgue) -"twv" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"twQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"txJ" = ( -/turf/open/floor/plating/airless, -/area/engineering/engine_room/external) -"tyV" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"tAl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tBB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tBR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"tCA" = ( -/obj/structure/holosign/barrier/atmos, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"tCP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tDw" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"tEa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"tEt" = ( -/turf/open/floor/carpet, -/area/service/library/upper) -"tFV" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tGa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tGh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/starboard) -"tHO" = ( -/turf/closed/wall, -/area/service/library/upper) -"tIX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"tIY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tJc" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"tJL" = ( -/turf/open/floor/plating, -/area/engineering/manufactory) -"tKl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"tKq" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"tKB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Dormitories Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"tKG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab) -"tLf" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"tLJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/security/brig/upper) -"tOc" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Fitness Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"tOC" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"tPs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"tPR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"tPU" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/aft) -"tQj" = ( -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"tQk" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage" - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"tQV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"tRJ" = ( -/obj/structure/table/glass, -/obj/item/biopsy_tool{ - pixel_x = -10; - pixel_y = 3 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tSp" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"tSG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tUj" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"tUv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"tUz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"tVJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"tVW" = ( -/obj/structure/closet/l3closet/scientist{ - pixel_x = -2 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"tYi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"tYs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"tZr" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"tZx" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"ubw" = ( -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/nanite_cloud_controller, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"uck" = ( -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding/techstorage, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"udy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/mechpad, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"uea" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ueE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"ufT" = ( -/obj/machinery/navbeacon/wayfinding/dockaux, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ugb" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "secure storage" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage) -"ugl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"uhz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"ujh" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light, -/obj/machinery/airalarm/directional/south, -/turf/open/openspace, -/area/science/xenobiology) -"uka" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"ukc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/fore) -"ukp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ukx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uky" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"ulh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ulo" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"unT" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"uos" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"upN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab South"; - dir = 1; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"uqs" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uqv" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/cargo/storage) -"urf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"usR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"usX" = ( -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"uvi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"uvu" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/aft) -"uwb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"uxp" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"uyj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"uyy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel/dark/side, -/area/engineering/atmospherics_engine) -"uyZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"uza" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"uzl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"uzD" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"uAV" = ( -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"uBp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uCq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"uCO" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"uDe" = ( -/obj/machinery/navbeacon/wayfinding/cargo, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"uDR" = ( -/obj/machinery/computer/piratepad_control/civilian{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/office) -"uES" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"uFw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"uGz" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/aft) -"uGA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"uGU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"uHA" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"uIi" = ( -/obj/machinery/navbeacon/wayfinding/dockesc, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"uIU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/lawoffice) -"uLo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"uNa" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uNu" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"uNC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/nanite) -"uNM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"uOg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"uOk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/purple/filled/warning{ - dir = 1 - }, -/obj/structure/railing/corner, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"uOI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/turf/open/openspace, -/area/hallway/primary/starboard) -"uQL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"uQT" = ( -/obj/structure/railing{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"uRe" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"uRD" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/service/hydroponics) -"uRH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/courtroom) -"uSi" = ( -/obj/structure/table, -/obj/item/spacepod_key/sec{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/brig/upper) -"uSD" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"uSF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"uTi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "commissaryshutter"; - name = "Commissary Shutter Control"; - pixel_x = 26; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"uTP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"uTV" = ( -/obj/machinery/light/floor/directional/east, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"uUp" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uUy" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/tier_2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"uUz" = ( -/obj/structure/chair, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uVJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library/upper) -"uVS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/aft"; - name = "Starboard Quarter Maintenance APC"; - pixel_y = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uWf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/engineering/manufactory) -"uWy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"uWQ" = ( -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"uXr" = ( -/obj/machinery/power/mining_rack, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"uYj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"vai" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"vaj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vbs" = ( -/obj/structure/lattice/catwalk, -/obj/item/instrument/guitar, -/turf/open/space/basic, -/area/space/nearstation) -"vbD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"vcm" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/engineering/main) -"vcF" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"vdl" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"vdA" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vdJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"vdW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"vgF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"vgL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library/upper) -"vgS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"vhj" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/glass, -/area/service/hydroponics) -"vhK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"viD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"vjx" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"vkD" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"vly" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"vlB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"vmJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"vmV" = ( -/obj/machinery/door/firedoor/heavy, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"voe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"vos" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/openspace/airless, -/area/space/nearstation) -"vpb" = ( -/obj/item/latexballon, -/mob/living/simple_animal/hostile/retaliate/frog, -/turf/open/floor/plating, -/area/maintenance/port) -"vqM" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/storage) -"vqO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"vsa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"vth" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"vtn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"vvO" = ( -/obj/structure/lattice, -/obj/machinery/light/floor/directional/south, -/turf/open/openspace, -/area/cargo/storage) -"vwG" = ( -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"vxh" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vxX" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vyy" = ( -/obj/structure/table, -/obj/item/stock_parts/capacitor/adv, -/obj/item/stock_parts/micro_laser/high{ - pixel_x = 20; - pixel_y = 5 - }, -/obj/item/stock_parts/matter_bin/adv{ - pixel_x = -16; - pixel_y = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"vyA" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics/garden) -"vyN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"vzp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"vAD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"vBt" = ( -/obj/machinery/navbeacon/wayfinding/disposals, -/turf/open/floor/plating, -/area/maintenance/disposal) -"vBE" = ( -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vBU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vBW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"vBY" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vCt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"vDl" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"vDJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"vGb" = ( -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 4; - id = "rnd2"; - name = "research lab shutters" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/genetics) -"vGf" = ( -/turf/open/openspace, -/area/maintenance/starboard/fore) -"vHt" = ( -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"vHV" = ( -/turf/closed/wall, -/area/engineering/manufactory) -"vIn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vIB" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/service/library/upper) -"vIU" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"vJX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/fore/upper) -"vKX" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/detectives_office"; - dir = 8; - name = "Detective's Office APC"; - pixel_x = -25 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"vLg" = ( -/turf/closed/wall, -/area/service/hydroponics) -"vLz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"vNp" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/storage/box/syringes{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vOr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/binary/volume_pump/on{ - dir = 1; - name = "Air to Distro" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"vPt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"vPE" = ( -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"vRi" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"vRS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/engineering/atmos) -"vRX" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/service/library/upper) -"vTF" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "71" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/science/storage) -"vUk" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"vVh" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"vVn" = ( -/turf/open/space/basic, -/area/space) -"vWg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vWu" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber North"; - network = list("aicore") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"vWz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot_red, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"vXB" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plating, -/area/engineering/main) -"vZo" = ( -/turf/closed/wall/r_wall, -/area/shuttle/turbolift/primary) -"way" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/power/tesla_coil, -/turf/open/floor/plasteel/dark, -/area/engineering/storage) -"waR" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wba" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage) -"wbt" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"wbI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wbV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/newspaper, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"wbY" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"wcD" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wfU" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/mixing) -"wfV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wgh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"wgp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/robotics/mechbay) -"wgr" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/aft) -"wgB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"whd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/hydroponics) -"whq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off/dark/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"whK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/royalblue, -/area/commons/dorms) -"win" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"wiz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"wiT" = ( -/obj/effect/turf_decal/tile/dark, -/obj/effect/turf_decal/tile/dark{ - dir = 1 - }, -/obj/effect/turf_decal/tile/dark{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wkN" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - dir = 8; - id = "rnd2"; - name = "research lab shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/nanite) -"wlf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/commons/vacant_room) -"wlg" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"wlp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/main) -"wlS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"woA" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Manufactory"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"woW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"woX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"woZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"wpb" = ( -/obj/structure/lattice, -/turf/open/openspace, -/area/service/hydroponics) -"wpc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"wph" = ( -/obj/docking_port/stationary{ - dheight = 4; - dir = 8; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "NT SS13: Auxiliary base bay"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"wpN" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"wrL" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/button/door{ - id = "vroomshutter"; - name = "Vacant Room Shutter Control"; - pixel_x = 26; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/commons/vacant_room) -"wrS" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"wsl" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 1; - id = "vroomshutter"; - name = "Vacant Room Shutter" - }, -/obj/machinery/vending/custom, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/vacant_room) -"wsx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"wsV" = ( -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"wuB" = ( -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"wuK" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"wuQ" = ( -/obj/structure/lattice, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/openspace, -/area/hallway/primary/starboard) -"wwi" = ( -/obj/machinery/light/floor/directional/south, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"wxR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/circuitboard/machine/copytech{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/circuitboard/machine/copytech_platform, -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"wxX" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/misc_lab) -"wxZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/starboard) -"wyA" = ( -/obj/structure/sign/painting/library_private, -/turf/closed/wall, -/area/lawoffice) -"wyU" = ( -/obj/effect/landmark/stationroom/bar/random, -/turf/open/openspace/airless, -/area/space) -"wyV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wzm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"wAo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"wAK" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"wBr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/robotics/lab) -"wCe" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/hex/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red{ - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"wCN" = ( -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"wCV" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "NT SS13: Public Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/openspace/airless, -/area/space) -"wDj" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wDv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit) -"wEX" = ( -/obj/effect/turf_decal/siding/white{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"wFi" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wFs" = ( -/obj/structure/cable/multilayer/multiz, -/obj/structure/lattice/catwalk, -/turf/open/openspace, -/area/space/nearstation) -"wGh" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"wGG" = ( -/obj/effect/turf_decal/tile/hex/brown, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/brown{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"wHm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"wHs" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom) -"wHy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"wHP" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wIs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wIB" = ( -/turf/open/floor/engine/hull, -/area/space/nearstation) -"wJR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"wJU" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"wLe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wLh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"wLw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"wMY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wNw" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/effect/turf_decal/siding/white{ - dir = 4 - }, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"wND" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"wNL" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/openspace, -/area/engineering/atmospherics_engine) -"wOy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"wOE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"wOO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/commons/fitness/recreation) -"wQy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wSh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_x = -3; - pixel_y = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wTy" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/chapel/main) -"wTX" = ( -/obj/machinery/light/floor/directional/west, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"wTZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wUi" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = 28 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_y = -25 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"wUs" = ( -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"wUA" = ( -/obj/machinery/door/airlock/command{ - name = "MiniSat Access"; - req_access_txt = "65" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/manufactory) -"wVu" = ( -/turf/open/openspace, -/area/service/hydroponics) -"wVJ" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 1"; - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"wWb" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/table/greyscale, -/turf/open/floor/plating, -/area/maintenance/aft) -"wWi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"wXs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"wXW" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/engineering/atmos) -"wZy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research) -"xaK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmospherics_engine) -"xaZ" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xcn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) -"xdE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"xdF" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"xek" = ( -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"xeu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"xeP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"xfD" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/genetics"; - dir = 4; - name = "Genetics Lab APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"xfL" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/department/medical/morgue) -"xgD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sunnybush, -/mob/living/carbon/human/species/monkey, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/grass, -/area/science/genetics) -"xhW" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/aft) -"xjG" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig/upper) -"xjH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/wood, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"xjU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xjX" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Escape Pod 2"; - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"xkP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"xlt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xnE" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"xog" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library/artgallery) -"xpa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"xqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"xqP" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"xrm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"xsJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"xsX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/auxiliary) -"xtj" = ( -/turf/closed/wall/r_wall, -/area/lawoffice) -"xtF" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig/upper) -"xtO" = ( -/obj/item/wrench, -/obj/item/screwdriver, -/obj/structure/rack, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"xvB" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"xwK" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"xwN" = ( -/turf/open/floor/plating, -/area/engineering/engine_smes) -"xwT" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"xxf" = ( -/turf/open/openspace, -/area/shuttle/turbolift/primary) -"xxn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"xxQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"xxS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/storage) -"xyM" = ( -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xzN" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Shuttle Bay" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"xzQ" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"xzS" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/science/research"; - dir = 4; - name = "Misc Research APC"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"xAo" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/monofloor/white, -/area/science/mixing) -"xAL" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"xBz" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"xBQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/engineering/atmos) -"xCJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"xDk" = ( -/turf/closed/wall, -/area/science/nanite) -"xDT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Spacepod Room"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/engineering/engine_room/external) -"xEI" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/decal/cleanable/dirt, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/monofloor, -/area/science/misc_lab) -"xEM" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xFm" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable/multilayer/multiz, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"xFr" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xGu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library/artgallery) -"xGx" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/comfy/black, -/turf/open/floor/wood, -/area/service/library/upper) -"xHM" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"xIa" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xIl" = ( -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"xJB" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/engine, -/area/security/brig/upper) -"xJE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xJT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"xKf" = ( -/obj/machinery/power/apc{ - areastring = "/area/commons/storage/emergency/port"; - dir = 1; - name = "Port Emergency Storage APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/commons/storage/emergency/port) -"xKL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"xKR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"xLT" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"xMA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"xMR" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/paper/guides/jobs/holopad_hydro, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xMX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore/secondary) -"xOY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/department/electrical) -"xPm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xQc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"xQe" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xQh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xQs" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"xQt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xQE" = ( -/obj/machinery/camera{ - c_tag = "Hydroponics North" - }, -/turf/open/openspace, -/area/service/hydroponics) -"xQP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/engine, -/area/service/electronic_marketing_den) -"xQY" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/main) -"xUB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xVy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/port) -"xVC" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xVJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xWr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"xWD" = ( -/turf/open/openspace, -/area/commons/dorms) -"xXe" = ( -/obj/structure/closet/radiation, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"xXh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"xYx" = ( -/turf/open/openspace, -/area/science/xenobiology) -"xYO" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/monofloor, -/area/engineering/manufactory) -"xYR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"xYY" = ( -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_access_txt = "63; 42" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"yay" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"ybf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ybq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding/library, -/turf/open/floor/carpet, -/area/service/library/upper) -"yck" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/openspace, -/area/science/xenobiology) -"ycx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ycE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"ydc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ydz" = ( -/obj/machinery/navbeacon/wayfinding/tools, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/storage/primary) -"ydA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/locker) -"ygI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"ygJ" = ( -/obj/structure/sign/departments/cargo{ - pixel_x = -32 - }, -/obj/structure/ladder, -/turf/open/floor/plasteel/monofloor, -/area/cargo/office) -"yhR" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/openspace/airless, -/area/space/nearstation) -"yiW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/science/research) -"yji" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"yjj" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"yjr" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced/survival_pod{ - dir = 8 - }, -/turf/open/floor/glass/reinforced, -/area/science/xenobiology) -"yjv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/engineering/atmos) -"yjN" = ( -/turf/open/openspace, -/area/service/fitness/kachalka) -"ylC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/openspace, -/area/science/xenobiology) - -(1,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(2,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(3,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(4,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(5,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(6,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(7,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(8,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(9,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(10,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(11,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(12,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(13,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(14,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(15,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(16,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(17,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(18,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(19,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(20,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mEP -aaa -aaa -mEP -aaa -aaa -mEP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(21,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(22,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -bca -nXv -bca -bca -nXv -bca -bca -nXv -bca -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(23,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eui -eBy -eBy -eBy -eBy -eBy -eBy -eBy -nSY -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(24,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -xQP -hcN -dpX -gvF -gvF -gvF -dpX -nGZ -nHU -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(25,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -xQP -mJV -gvF -gvF -gvF -gvF -gvF -wwi -nHU -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(26,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -bbZ -xQP -gvF -gvF -gvF -gvF -gvF -gvF -gvF -qrm -bbZ -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(27,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaw -aaa -gXs -aaa -gXs -arB -awW -hFg -awW -arB -xQP -gvF -gvF -gvF -gvF -gvF -gvF -gvF -nHU -arB -awW -mwr -awW -arB -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(28,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -arB -auP -auP -auP -arB -qKn -gvF -gvF -gvF -gvF -gvF -gvF -gvF -gQq -arB -auP -auP -auP -arB -gXs -gXs -gXs -gXs -gXs -eRz -eRz -eRz -eRz -eRz -gXs -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(29,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -arB -auP -auP -auP -arB -mzA -gvF -gvF -gvF -gvF -gvF -gvF -gvF -nHU -arB -auP -auP -auP -arB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(30,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -arB -auP -auP -auP -arB -jdp -gvF -gvF -gvF -gvF -gvF -gvF -gvF -xdE -arB -auP -auP -auP -arB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(31,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -gXs -awW -auP -hUv -auP -awW -xQP -mJV -gvF -gvF -gvF -gvF -gvF -wwi -nHU -awW -auP -pzn -auP -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(32,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -eRz -eRz -eRz -aaa -aaa -aaa -eRz -eRz -eRz -eRz -eRz -aaa -gXs -arB -asE -nRQ -asE -asE -uwb -xBz -uTV -gvF -gvF -gvF -uTV -mbn -nHU -asE -asE -iCY -asE -arB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(33,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -alU -alU -alU -alU -alU -alU -alU -caI -caI -alU -alU -alU -asE -cwV -auP -auP -bTX -ndE -pFS -pFS -pFS -pFS -pFS -pFS -pFS -sFK -bTX -auP -auP -tyV -arB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wCV -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(34,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -alU -amC -amC -amC -amC -cpV -amC -aKY -amC -amC -amC -amC -mBy -auP -auP -xjX -asE -qVu -oeR -iZT -gef -cRJ -lJt -gCu -qVu -pRR -asE -ieY -auP -wVJ -aAC -aaa -aaa -aaa -aaa -aaa -asE -asE -xzN -asE -asE -gXs -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(35,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -alU -alU -amC -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -avP -iEJ -asE -asE -cNN -nhG -cNN -pck -nsT -pck -cNN -nhG -cNN -asE -asE -fYE -avP -arB -aaa -aaa -aaa -aaa -aaa -awW -ieY -vly -xwK -awW -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(36,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -alU -akP -cpV -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -aBB -ayk -wIs -awW -wgB -uos -uos -uos -eoa -uos -ktl -uos -dNE -asE -mcv -sAl -diH -arB -aaa -aaa -aaa -aaa -aaa -arB -arB -sHE -arB -aAC -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(37,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -caI -akY -amC -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -wMY -aQG -nUc -qhY -gRa -okp -gOD -gOD -lXC -gOD -gOD -fpI -lYU -qhY -tnO -aQG -ogj -awW -aaa -aaa -aaa -aaa -aaa -arB -qRW -jzl -awW -aAD -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(38,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -caI -aqJ -amC -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -pLY -lJC -azy -awW -mjy -dEM -wAo -bbj -jIZ -fsM -bbj -jKx -wbI -awW -cIh -lJC -aRY -awW -aaa -aaa -aaa -aaa -aaa -arB -jVc -itz -beK -kxe -cyt -cyd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(39,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -fEF -vbs -eRz -gXs -caI -bkD -amC -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -cxY -rXH -awW -jXm -fWm -dEM -ffV -oWF -jIZ -bbj -pGX -jKx -cKV -arB -awW -rXH -ljU -arB -aaa -aaa -aaa -aaa -aaa -awW -awZ -jzl -awW -awW -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(40,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -caI -akY -aKY -apJ -apN -apN -apN -apN -wph -apN -apN -apN -apN -apJ -rXH -rXH -nhN -aAG -mjy -dEM -ptd -kiB -hoH -kiB -fZo -jKx -wbI -aOg -uQT -rXH -rXH -awW -aaa -aaa -aaa -aaa -aaa -awW -awZ -aQH -azz -iCi -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(41,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -alU -cpe -amC -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -rXH -rXH -rXH -ioJ -mjy -dEM -bbj -ham -qOF -sHS -bbj -jKx -wbI -aOe -rXH -rXH -rXH -fZW -aaa -aaa -aaa -aaa -aaa -sFC -awZ -itz -ayl -aAE -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(42,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -eRz -eRz -eRz -gXs -alU -alU -amC -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -rXH -rXH -rXH -aAH -mjy -dEM -bbj -nMb -nfd -fZo -bbj -jKx -wbI -aOh -rXH -rXH -rXH -awW -aaa -aaa -aaa -aaa -aaa -awW -awZ -ufT -ayl -bgi -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(43,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -alU -bLU -apJ -apN -apN -apN -apN -apN -apN -apN -apN -apN -apJ -rXH -rXH -dti -rxu -mjy -dEM -ptd -kiB -eJf -kiB -fZo -jKx -wbI -uSF -lIi -rXH -rXH -awW -aaa -aaa -aaa -aaa -aaa -awW -awZ -ayn -azA -bgh -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(44,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -alU -amC -apJ -apN -apN -apN -apN -lCi -apN -apN -apN -apN -apJ -cyb -rXH -awW -bHo -fWm -dEM -lpr -bbj -hWz -lsJ -ouO -jKx -qPa -arB -awW -rXH -cyb -arB -aaa -aaa -aaa -aaa -aaa -awW -awZ -jzl -awW -awW -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(45,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -alU -amC -apJ -apJ -apJ -ajZ -asF -atp -asF -asF -asF -asF -apJ -axh -jyz -uNa -awW -mjy -dEM -bbj -nvx -kcq -bbj -jQL -jKx -wbI -awW -jly -jyz -aeW -awW -aaa -aaa -cxE -aaa -aaa -awW -awZ -itz -beL -kxe -cyu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(46,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -caI -amC -cqq -qbW -apJ -asH -atI -atI -arE -atI -atI -auc -avp -axI -rLP -rqx -mpY -mjy -wOy -mSd -mSd -woX -mSd -mSd -gZB -wbI -fTd -gJk -xCJ -qSG -arB -aaa -aWa -aXI -awW -aaa -arB -awY -jzl -awW -aAD -awW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(47,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -eRz -gXs -caI -amC -cqq -qbW -apJ -asI -auQ -auQ -aCX -aCX -aCX -aub -aLu -axH -rLP -ogj -awW -sby -wTZ -kCF -kCF -cIg -kCF -kCF -kCF -rfd -awW -aPt -xCJ -aRZ -arB -awW -awW -wTX -awW -awW -arB -awZ -aQH -azB -awW -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(48,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -eRz -gXs -caI -amC -cqq -qbW -apJ -asJ -cTE -avQ -axc -aCT -atb -aIH -apJ -clB -aIK -azC -arB -arB -arB -awW -siA -vjx -siA -awW -arB -arB -arB -aPv -xCJ -aRZ -asE -aAF -awW -cyl -awW -baF -asE -bbb -itz -beN -arB -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(49,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -alU -amC -cjc -amC -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -apJ -axG -dGP -ifu -aAI -kWA -sBJ -sBJ -sBJ -wLe -awx -sBJ -aLv -kWA -sBJ -aBc -aBn -aBn -aDZ -aEk -aFB -aGi -aOx -aTh -aVU -aVU -itz -beM -aAC -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(50,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alU -amC -amC -amC -amC -amC -amC -yjj -amC -qub -vmJ -lAd -ljd -axb -ayr -azD -aAJ -azD -aCp -aEz -azD -aHu -nOS -itz -itz -aNb -itz -itz -hqG -itz -aTr -aUM -itz -vdW -aWc -baG -itz -tPs -itz -beM -arB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(51,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -alU -alU -alU -alU -jXI -alU -alU -alU -gLH -osK -amC -amC -alU -alU -alU -alU -alU -aBI -aBI -aBI -aBI -aBI -wHm -aKj -aLw -aLw -aLw -aLw -aQI -aNh -czK -czK -czK -czK -aXX -czK -czK -bbc -beO -beO -beO -beO -beO -beO -beO -beO -aaa -aaa -aaa -gXs -aaa -aaa -gXs -gXs -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -nXv -gXs -gXs -gXs -lnI -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(52,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aoR -amC -aoS -amC -amC -cwT -hwf -alU -hPr -hCx -aol -aol -aol -aol -aol -aol -fpE -aBI -aCL -aEG -aFI -aBI -aIM -aKk -aLy -aNd -aOj -aPx -aQJ -ayl -czK -aIG -aUy -aWm -aWf -aUQ -czK -bhN -bcl -beQ -pLn -bhI -bjb -bkz -blS -bnv -aaa -gXs -aaa -gXs -aaa -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(53,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -alU -aoX -alU -amC -amC -dAb -mjk -alU -rIz -hCx -alU -alU -alU -alU -alU -aol -aol -aBI -aCs -aEE -aFH -aGZ -aIJ -aKk -aLj -aMO -aNR -aOY -aQJ -ayl -czK -aUN -aUQ -aUO -aOy -aUQ -czK -bjk -beO -beP -bgj -beO -bja -beO -bja -lGQ -gXs -gXs -gXs -gXs -gXs -eRz -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(54,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCS -alU -alU -aoT -amC -dAb -qLv -alU -alU -hCx -alU -aon -ays -axe -alU -alU -aol -aBI -aCY -xsX -aFK -aHy -aIM -axk -aLz -aNe -aNe -aQo -aQJ -aSb -czK -aUQ -aUA -aWr -aPa -aUQ -czK -bjk -beO -beS -bgj -bhJ -bjd -bkB -cAI -lGQ -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaS -aaS -aaS -aaS -aaS -aaS -gXs -aaa -gXs -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaS -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(55,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -alU -apL -aqK -anJ -anJ -anJ -aqL -alU -hCx -alU -auX -avS -amC -dde -alU -aol -aBI -aDc -aEI -bxM -aHa -aIM -aKk -aLj -aNe -aNe -aPx -aRd -ayl -czK -aUP -aUO -aXL -aPm -aUO -czK -bjk -beO -beR -bgj -bgj -bjc -vBt -cAF -lGQ -gXs -gXs -nXv -nXv -nXv -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -gXs -nXv -nXv -nXv -nXv -owD -nXv -nXv -nXv -nXv -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -aaa -gXs -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(56,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -quT -aaS -aaS -gXs -gXs -gXs -alU -apM -aCW -amC -amC -amC -aom -alU -hCx -alU -auZ -bsU -axf -amC -alU -aol -aBI -aDf -aEI -aFM -aHy -awM -aKk -aLA -tdi -aNf -aLA -aRd -aSd -czK -aUQ -aUW -aXL -aPm -baJ -czK -bjk -beO -beU -bgk -bhL -bjc -cAF -blV -beO -aPz -qQe -aPz -sIU -aPz -qQe -aPz -miQ -miQ -miQ -gXs -gXs -gXs -gXs -gXs -aaa -gXs -gXs -aaa -aaa -aaa -nXv -aaa -nXv -aaa -aaa -aaa -gXs -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -chJ -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(57,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abY -aaa -gXs -aaa -gXs -aaa -gXs -aaa -acy -aaa -gXs -aaa -aiS -aaa -aaS -aaa -aaa -aaa -alU -apO -amC -amC -amC -amC -aqM -alU -lho -alU -auY -amC -amC -ayt -alU -aol -aBl -aCZ -aEJ -aFL -aBI -aIO -tCP -rjj -asE -asE -rjj -vaj -gQv -czK -aUl -aUR -aWs -aPn -aUQ -czK -bjk -beO -beO -beO -beZ -bje -bkC -cAJ -beO -lkd -lkd -lkd -lkd -pmQ -lkd -lkd -lkd -gpU -bCq -mra -mra -mra -mra -gXs -gXs -eRz -gXs -gXs -gXs -gXs -nXv -aaa -nXv -aaa -aaa -gXs -gXs -aaa -aaa -gXs -aaS -aaS -aaS -aaS -aaS -gXs -gXs -aaa -cjH -aaa -gXs -gXs -aaS -aaS -quT -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(58,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abY -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -aaS -gXs -gXs -gXs -alU -alU -aqO -aqO -aFG -aqO -sFL -alU -lho -alU -ava -qbW -axg -ayu -azF -azF -azF -azF -azF -azF -azF -aIQ -aKk -aLC -aNg -aOk -aPy -aRd -ayl -czK -aUO -aUO -aUO -aXY -aZn -czK -bbg -bdZ -bdu -bdT -beO -bjf -beO -beO -beO -sfq -oLz -sfq -sfq -sfq -oLz -sfq -sfq -inW -bCq -scd -fLm -fLm -mra -aaa -aaa -eRz -aaa -gXs -aaa -aaa -nXv -aaa -eyg -aaa -gXs -gXs -aaa -aaa -aaa -gXs -aaS -aaa -aaa -gXs -aaa -gXs -aaa -aaa -cjH -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(59,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -abY -gXs -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -gXs -gXs -aaa -aaa -gXs -aaa -alU -alU -alU -alU -alU -arG -alU -ash -alU -alU -alU -alU -alU -azF -aAP -vIU -aAP -aEF -aFN -azF -aIP -aKl -xJE -vIn -aLB -aLB -aQK -ayl -czK -aUQ -aUQ -aXN -aUO -aUQ -czK -bcI -aPz -bjk -aSg -aSg -aYf -aSg -aQL -aPz -sfq -oLz -sfq -sfq -sfq -oLz -sfq -sfq -inW -bCq -gIN -rAI -ioD -mra -aaa -aaa -eRz -aaa -gXs -aaa -aaa -nXv -aaa -nXv -gXs -gXs -aaa -aaa -aaa -aaa -gXs -aaS -gXs -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(60,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abY -aaa -acV -adu -acV -gXs -acV -adu -acV -gXs -acV -adu -acV -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -caI -cyi -dpM -rSF -atN -atN -atN -eje -cMz -azF -aAU -aAQ -aDa -mVj -aAQ -azF -aIR -myT -ayl -aNi -ayl -myT -lEd -aSf -czK -czK -czK -czK -czK -czK -czK -aPz -aPz -bjk -aSg -aTu -bjg -aSg -aSg -kKA -kbm -kbm -kbm -kbm -iiA -kbm -fnr -kbm -nVb -kYg -hOV -inO -bRg -mra -gXs -gXs -eRz -gXs -eRz -eRz -eRz -eRz -gXs -nXv -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -aaa -cjH -cjH -cjH -cjH -cjH -cjH -chL -cjH -cjH -cjH -cjH -cjH -cjH -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(61,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -gXs -aaa -caI -ogF -dpM -alU -alU -alU -alU -alU -kOy -azi -aAx -aBm -avJ -qgD -aAQ -azF -azF -azF -aLD -dpZ -jid -aPz -aPz -aPz -aPz -nJz -aWj -aXP -aZr -baL -aSg -bcK -aPz -bjk -aSg -bfh -aPz -aPz -aPz -aPz -aPz -qQe -aPz -sIU -aPz -qQe -aPz -aPz -aPz -bCq -bCq -bgV -bCq -bCq -bCq -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -gXs -gXs -aaS -gXs -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(62,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -aaS -aaS -gXs -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -gXs -aaa -ajV -alR -alR -alR -alR -alU -alU -alU -aqP -dpM -alU -bOi -eXc -bOi -alU -qQO -azF -aAT -aBw -aDg -avY -vyA -aHz -aIS -aKn -aLE -aOz -lmG -aPz -aQL -aSg -aSg -aSg -aWl -aSg -aZs -baN -bbK -bcM -bdH -bdD -dfx -bjg -bji -bkF -nWq -wIB -wIB -wIB -wIB -nWq -wIB -wIB -wIB -wIB -wIB -nWq -bCq -kli -kli -bwk -bCq -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -gXs -gXs -aaa -gXs -aaS -aaa -aaa -aaa -gXs -aaa -aaa -aaa -chL -aaa -aaa -aaa -gXs -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(63,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -aaa -aaa -adu -aaa -aaa -aaa -adu -aaa -aaa -aaa -adu -aaa -aaa -ajV -ajV -ajV -alQ -amy -ang -alR -aoj -amC -apP -ogF -dpM -alU -eXc -bNb -eXc -alU -qQO -azF -aAS -aFP -avK -rNn -fDP -fDP -fDP -aKm -cYU -aNj -lmG -aPz -aPz -aPz -aUT -aQM -aQM -aQM -aQM -aQM -aQM -bcL -aQM -bdC -bfM -bfM -bjh -bkE -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -kli -kli -bwk -bCq -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -nXv -aaa -aaa -gXs -gXs -aaa -aaa -gXs -aaS -gXs -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(64,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -gXs -abs -adu -adu -ady -ady -ady -ady -ady -ady -ady -ady -ady -ady -ady -adu -ajW -wuK -alh -auO -amA -auO -anI -dpM -dpM -bKK -riP -dpM -alU -bOi -eXc -bOi -alU -qQO -azF -aAU -aBG -aAQ -aAQ -aAQ -aBM -aAQ -aKn -aLE -wWi -aOm -aPB -aQM -aQM -aYY -bcK -aPz -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aYA -bkF -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -bwk -bwk -bwk -bCq -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -gXs -gXs -aaa -aaa -aaa -gXs -aaS -aaa -cjH -cjH -cjH -cjH -cjH -cjH -chL -cjH -cjH -cjH -cjH -cjH -cjH -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(65,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -aaa -aaa -adu -aaa -aaa -aaa -adu -aaa -aaa -aaa -adu -aaa -aaa -ajV -ajV -ajV -alS -amz -anh -anH -aok -anJ -bPO -aFJ -arK -alU -alU -ali -alU -alU -qQO -azF -teP -iHT -aAP -aAQ -aFO -aHA -aIT -azF -aLG -aNl -aOl -aPA -aPA -aPA -aPA -aPA -aPA -aXQ -aZt -aXQ -aZt -aXQ -aZt -aXQ -pNV -aXQ -hPI -bkF -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -kli -kli -kli -bCq -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -gXs -gXs -aaa -aaa -aaa -aaa -gXs -aaS -acy -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(66,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -quT -aaS -gXs -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -gXs -aaa -ajV -alR -alR -alR -alR -aom -amC -apP -amC -arN -cLT -cMY -amC -amC -mjo -qQO -azF -azF -ndH -azF -aEL -azF -azF -azF -azF -fxj -aNl -xUB -aPA -aQO -aSh -aTw -aUU -aWn -aXQ -aZv -aXQ -bbL -aXQ -bdJ -aXQ -bgr -aXQ -hPI -bkF -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -nyM -kli -kli -bCq -mra -mra -mra -bCq -bCq -bCq -bCq -aaa -nXv -gXs -aaa -aaa -aaa -aaa -aaa -gXs -quT -aaa -aaa -aaa -gXs -aaa -aaa -aaa -chL -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(67,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -gXs -gXs -aaa -aaa -alU -alF -anj -anJ -anl -aoU -alU -amC -arM -alU -atT -asO -avV -alU -atr -atN -aAV -aBQ -aDh -aDo -aFQ -aHe -aIN -aKp -aLE -gFX -faQ -aPA -uea -ciz -ciz -ciz -aQN -aXQ -aYe -bfa -bfa -bbq -bct -bfa -bfa -aXQ -xqh -bkE -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -lwA -bwp -bwp -hDx -hOV -nKZ -bHE -bHE -hOV -bHE -bCq -bCq -nXv -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -gXs -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(68,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -acV -adu -acV -gXs -acV -adu -acV -gXs -acV -adu -acV -aaa -gXs -gXs -gXs -alU -alF -anl -amC -alU -alU -alU -tZr -alU -alU -apP -alU -alU -alU -alU -alU -xYR -aBL -aDd -wpc -aFR -wpc -wpc -aJZ -cYU -urf -aOo -aPA -aQQ -aUt -aSV -aUo -aUX -aXp -baO -aZo -aUm -bcO -baw -cBn -aaj -aXQ -hPI -bkF -wIB -wIB -wIB -wIB -wIB -nWq -cyT -wIB -wIB -wIB -wIB -wIB -bCq -fqP -bCq -bCq -bCq -mra -mra -mra -bCq -vBY -lWA -bHE -bCq -nXv -aaa -aaa -bZm -aaa -gXs -aaa -aaa -aaS -aaa -cjH -cjH -cjH -cjH -cjH -cjH -chL -cjH -cjH -cjH -cjH -cjH -cjH -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(69,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gvx -mSz -mSz -mSz -bDl -mSz -gvx -aaa -aaa -aaa -aaa -aaS -gXs -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -gXs -gXs -aaa -aaa -alU -alU -lwo -alU -alU -aaa -alU -amC -amC -amC -arN -alU -avW -amC -ayx -alU -qQO -aBQ -aDb -jvp -aFY -sIY -poM -aKp -aLE -xsJ -aOt -aPA -aQP -kWY -aTx -aTB -aWo -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -aXQ -hPI -aPz -cZn -gXs -boI -jZc -brJ -boI -brJ -ntc -cKn -gXs -rvh -gXs -ilp -wIB -wIB -wIB -wIB -nWq -wIB -wIB -bCq -bCq -bCq -seK -bCq -nXv -aaa -aaa -bVz -gXs -gXs -aaa -aaa -aaS -gXs -cca -cca -cca -cca -cca -aaa -chL -aaa -cca -cca -cca -cca -cca -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(70,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSz -mSz -mSz -mSz -mSz -mSz -mSz -mSz -aaa -aaa -aaa -aaS -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -acV -adu -acV -aaa -aaS -aaa -aaa -alU -amD -anm -amC -caI -aaa -caI -amC -alU -asO -atL -alU -avX -axf -amC -alU -qQO -aBQ -aDl -bxk -aFS -sIY -aIX -aBQ -aLE -xsJ -aOp -aPA -aQR -kWY -aTz -aTz -aWq -aXs -aYH -ydA -bbO -aPA -bdM -aPz -bgt -bhS -hPI -aZE -blW -blW -blW -bqj -brK -blW -brK -bvT -blW -aZE -blW -blW -aZE -wIB -nWq -wIB -wIB -wIB -wIB -wIB -nWq -wIB -bCq -bHE -bCq -nXv -gXs -nXv -bVz -nXv -nXv -aaa -aaa -aaS -aaa -aaa -gXs -aaa -gXs -aaa -aaa -chL -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(71,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gvx -bDl -mSz -qvP -qvP -qvP -qvP -qvP -qvP -gXs -gXs -gXs -aaS -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -aaS -gXs -gXs -alU -xqP -amC -amC -caI -gXs -caI -amC -alU -alU -alU -alU -alU -axj -alU -alU -qQO -aBQ -aDk -jvp -avZ -sIY -aIW -aBQ -aLE -ayq -aOi -aPC -oaB -oaB -aTz -aUp -aWq -aXr -wJR -cBh -bbN -aPA -bdL -aPz -bgt -bhR -hPI -aZE -xxS -vRi -blW -bqi -cyD -blW -cyD -bvS -blW -bkt -rIU -hNs -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -skX -bCq -nXv -aaa -gXs -vhK -aaa -nXv -aaa -aaa -aaS -aaS -aaS -gXs -gXs -gXs -gXs -gXs -cjH -gXs -gXs -gXs -gXs -gXs -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(72,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSz -mSz -mSz -qvP -kYB -wlg -iBR -iBR -dnP -aaa -aaa -aaa -aaS -aaS -aaS -aaS -aaS -quT -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaa -aaa -alU -amE -ann -amC -alU -aaa -caI -amC -alU -arN -atU -alU -atU -amC -atJ -alU -qQO -aBQ -aDn -jvp -ydz -aHD -aIZ -aBQ -aLE -xsJ -aOq -aPD -aQT -ixk -aTC -aTC -aUY -aXv -aYS -aZx -bbO -aPA -vpb -aPz -aSg -bhT -hPI -bzT -eZO -dPG -boJ -bql -brL -btr -bnw -bvV -gZd -eZO -pdC -pdC -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -bHE -bCq -nXv -aaa -gXs -bVz -gXs -nXv -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -cfx -chO -cfx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(73,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gvx -mSz -mSz -mSz -qvP -dcg -wlg -hdj -xrm -dnP -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -alU -alU -alU -bgf -alU -aaa -alU -amC -amC -amC -amC -alU -aqO -amC -atJ -alU -qQO -aBQ -aDm -jvp -avZ -jvp -aIY -aBQ -fxj -xsJ -xUB -aPA -aQS -aCO -aTB -aTx -aWq -aXt -aPA -aPA -aPA -aPA -aPA -aPz -pQE -sgT -hPI -aZE -ffZ -pdC -lPm -tQV -arC -ioU -lIm -huX -vlB -pdC -pdC -pdC -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -bHE -bCq -nXv -aaa -bVx -caf -aaa -nXv -gXs -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -usR -chN -cfx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(74,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSz -jGc -mSz -mSz -qvP -dcg -kjo -xrm -xrm -dnP -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -alU -amF -alU -amC -alU -gXs -alU -alU -alU -alU -amC -alU -alU -bLU -alU -alU -qQO -aBQ -aDp -jvp -aFU -jvp -aJb -aKp -aLE -xsJ -aOl -aPE -aQV -aUv -aSi -aQN -aWq -aXw -aZB -aZB -aZB -aZB -aPA -aSg -bew -aYw -bjl -aZE -mNk -wlS -pTT -sSZ -sSZ -uqv -sSZ -sSZ -des -pdC -dci -dgB -aZE -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -uUp -bCq -mra -bCq -bCq -cbj -aaa -nXv -gXs -gXs -bCq -bCq -bCq -bCq -bCq -bCq -cfw -usR -cyK -cfx -cfx -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(75,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mSz -mSz -mSz -mSz -qvP -qvP -dnP -tCA -dnP -qvP -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -alU -alU -alU -amC -alU -gXs -aaH -alU -arO -alU -amC -avc -alU -vgS -atN -atN -aAO -aBQ -mFY -jvp -jvp -jvp -aIU -aKa -aLE -xsJ -aOl -aPA -aQU -aQN -aQN -aQN -aWq -aXw -aZA -aZA -aZA -aZA -aPA -ePZ -dwu -sfq -sfq -aZE -bkn -cFs -pTT -sSZ -sSZ -uqv -sSZ -sSZ -des -pdC -pzD -tdh -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bCq -bPS -bCq -bSn -amO -bCq -cbj -bLv -bXv -bLv -gXs -bCq -cAy -cAB -ccY -cAD -cAH -cfw -cgA -cKd -ciQ -cfw -bCq -mra -mra -bCq -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(76,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gvx -mSz -mSz -bDl -mSz -mSz -oMB -oMB -mSz -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -caI -anK -caI -aaH -atR -alU -alU -alU -atW -atW -alU -axn -alU -aoX -atJ -aBQ -aDq -qjT -aFZ -aHE -aJc -aKs -aLK -xpa -aOr -aPA -aQX -aQN -aQN -aQN -nru -aXA -izD -aYX -aYX -bbs -aPA -rmP -dwu -oLz -oLz -aZE -pca -uTP -pTT -sSZ -sSZ -uqv -sSZ -sSZ -des -pdC -pzD -bkG -blW -nWq -wIB -wIB -wIB -wIB -wIB -wIB -wIB -nWq -bCq -iIA -aad -amu -amP -bCq -cbk -bCq -niA -bLv -gXs -bCq -cAA -cqo -bHE -ccZ -cAK -cfw -cgC -nJo -ciS -cfw -waR -bHE -wDj -bCq -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(77,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gvx -mSz -mSz -mSz -mSz -bDl -gvx -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -alU -amC -alU -aaH -gXs -gXs -aaH -alU -ali -ali -alU -fMU -ayz -ayz -ayz -aBR -aBR -aBR -aBR -aBR -aBR -aBR -aLJ -ccC -aOl -aPA -aQW -aQW -aTD -aQW -njO -aQW -qSw -mSB -eMe -bbr -bcu -bxw -aXU -sfq -sfq -aZE -goW -cFs -pTT -uqv -qIY -uqv -vvO -uqv -kYr -rtc -pzD -bkJ -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bLv -akZ -bRc -bSo -amR -bCq -bVy -bCq -cyE -bLv -bLv -bCq -bHE -cAC -ccZ -cAE -ceV -cfw -cgB -jtl -ciR -cfw -bLu -iTW -cAK -bCq -bCq -bCq -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(78,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gvx -mSz -mSz -mSz -mSz -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -caI -aKY -caI -asC -gXs -aaH -gXs -aaa -aaa -gXs -aqQ -neA -byr -sZI -lxI -sZI -lxI -sZI -lxI -sZI -sZI -crY -aLM -joy -aOs -aPG -aPG -aPG -aPG -aPG -aPA -aPA -aPA -aPA -aPA -aPA -aPA -byc -pRK -sfq -sfq -aZE -mlr -cFs -pTT -sSZ -sSZ -uqv -sSZ -sSZ -sSZ -elb -pzD -krF -blW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -mra -bPS -bRf -bSo -amS -bCq -bVB -bHE -hwS -bYu -bZk -bCq -cTF -bCq -bCq -bCq -bCq -cfw -cgE -chS -cfw -cfw -bCq -bHE -wHP -bHE -mWF -mra -gXs -gXs -gXs -gXs -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(79,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -atR -gXs -gXs -caI -amC -caI -asC -aaH -gXs -aaa -aaa -aaa -aaa -aqQ -vqO -byr -lxI -aBa -aBa -aBa -aBa -aBa -aBa -lxI -crY -aLL -bDe -aOl -aPF -aQY -aSk -aTE -aPG -aWu -aYa -uWy -uWy -uWy -uWy -oQS -byd -nlV -bzR -bzR -avm -wND -tqt -pTT -sSZ -sSZ -uqv -sSZ -sSZ -sSZ -elb -qHQ -bAS -aZE -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -mra -bPT -bRe -bSo -ani -bCq -bVA -bWw -bXw -bYt -bZj -bCq -bHE -bCq -bSq -cdW -ceW -bCq -cgD -hHY -bUt -bUt -rEs -bUt -bUt -wcD -mWF -mra -gXs -aaa -aaa -aaa -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(80,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -caI -caI -alU -aab -bLU -alU -alU -alU -aaH -gXs -aaa -gXs -gXs -aqQ -vqO -byr -sZI -aBa -aBT -aDs -aEN -aGb -aBa -sZI -aJd -aLN -ccC -qoQ -aPH -aRa -aRa -aTG -aPG -aWx -gjl -gjl -gjl -gjl -gjl -gjl -byg -gjl -gjl -aZE -aZE -bSe -hvV -pTT -uqv -qIY -uqv -vvO -uqv -mzk -iYO -qBd -fql -blW -wIB -wIB -wIB -wIB -bJc -wIB -wIB -wIB -wIB -mra -bPS -alv -bSo -bPS -bCq -bVD -bWy -bXx -bYw -sSC -bYy -ycx -bTz -ycx -ptX -ukx -bCq -bLu -hHY -bHE -vUk -bCq -bCq -bCq -bCq -bCq -bCq -gXs -aaa -aaa -aaa -eRz -ctv -ctv -ctv -ctv -ctv -ctv -ctv -ctv -ctv -ctv -eRz -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(81,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -caI -alV -amG -ano -amC -aon -aoW -alU -aqQ -aqQ -aqQ -aqQ -aqQ -arP -bWt -ayB -lxI -aBa -aBS -aDr -aEM -aGa -aHF -crY -crY -aLN -ccC -aOl -aPF -aQZ -mRq -aTF -aPG -aWx -gjl -baS -aZI -pKc -blY -bdS -bdU -ckQ -byz -dju -bAZ -klc -hvV -pTT -sSZ -sSZ -uqv -sSZ -sSZ -nph -fja -bwS -pdC -blW -wIB -nWq -bbv -bbv -bJb -bbv -bbv -nWq -wIB -bCq -ala -alK -bPS -anq -bCq -bVC -bWx -bcC -bYv -bZl -bCq -bHE -bCq -cda -cgF -bCq -bCq -bHE -hHY -bHE -bHE -pYD -bCq -oaV -bCq -dzN -gXs -gXs -aaa -aaa -aaa -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(82,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -caI -aKY -amC -anp -amC -amC -amC -ank -aqR -aqR -aGh -aqR -aqR -afm -vqO -byr -sZI -aBa -aBV -alu -lvH -aGd -aHG -aJe -aKw -aLP -aMR -aNU -aPG -aPG -aPG -aPG -aPG -wfV -gjl -buD -bcJ -baY -oQK -bxu -bfg -byl -bhW -bjt -geE -hvV -hvV -pTT -sSZ -sSZ -uqv -sSZ -sSZ -pVw -eNq -uyZ -pdC -blW -wIB -wIB -bbv -bHz -dUO -bKk -bbv -wIB -wIB -bCq -alg -alN -amB -anr -bCq -bVF -bWA -bXy -bYx -bWz -bCq -bHE -bCq -bQa -sPn -cyL -tKl -hHY -xQh -bHE -bHE -bHE -dCG -lWA -sxH -nXv -aaa -aaa -aaa -aaa -aaa -eRz -eRz -qJP -qJP -qJP -qJP -qJP -qJP -qJP -qJP -qJP -eRz -ctv -eRz -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(83,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -caI -alW -amH -ano -anL -aoo -aoX -alU -aqQ -aqQ -aqQ -aqQ -aqQ -arP -elU -byr -lxI -aBa -aBU -aDt -aEO -aGc -aHF -crY -crY -aLN -aMQ -aNT -aPI -bfe -bfe -bfe -xxn -aWx -gjl -bvF -hGn -bbP -bvY -bcE -bgA -bex -byz -dcL -nHG -pdC -pdC -pTT -bkp -sSZ -uqv -sSZ -sSZ -bxx -qRg -eYf -pdC -blW -wIB -wIB -bbv -bHy -dUO -bKj -bbv -wIB -wIB -bCq -bTs -bPS -amI -anB -bCq -bVE -bWz -bHE -bHE -bLu -bCq -bLu -bCq -cdb -bSs -bCq -cqn -cQm -bCq -bCq -bCq -uUp -bCq -bCq -bCq -nXv -gXs -gXs -aaa -eRz -eRz -eRz -eRz -qJP -hSN -pqx -lCj -luT -efp -hao -jZG -qJP -qJP -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(84,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -caI -caI -alU -alU -caI -alU -alU -alU -aaa -aaa -aaa -aaa -nXv -aqQ -vqO -byr -sZI -aBa -aBW -aDv -aEP -aGe -aBa -sZI -crY -aLN -xVy -aOt -aPK -aPK -aPK -aPK -aPK -aEs -gjl -fkd -cBi -bcJ -bcS -aWy -gjl -gjl -ipJ -sdX -srx -sdX -sdX -sdX -sdX -bCo -bCo -bCo -sdX -sdX -byD -bwU -byn -aZE -wIB -bxy -bxy -bxy -bJd -bKm -bxy -wIB -wIB -bCq -als -cOw -amJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aai -cgG -bCq -bwk -bCq -bHE -bHE -iap -bCq -mra -mra -mra -mra -jAD -ctv -ctv -eRz -qJP -csb -xek -xek -xek -xek -xek -tPR -vLz -qJP -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(85,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aqQ -vqO -byr -lxI -aBa -aBa -aBa -aBa -aBa -aBa -lxI -crY -aLN -xVy -aOl -tsw -aPK -aSl -aTH -aPK -hPI -gjl -gjl -bvU -bvX -bwQ -gjl -gjl -sLJ -jAX -bju -biv -bmf -bfm -boN -bqo -brO -btt -buE -bvZ -sdX -bfm -bwT -bfm -bxy -bxy -bxy -ahw -bHA -nXT -bKl -bxy -wIB -wIB -bCq -bHE -bRg -bTx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bLv -bHE -bHE -bCq -bCq -xVC -pyz -bJe -mra -jAD -eRz -eRz -eRz -qJP -tKq -xek -xek -xek -xek -xek -xek -fSv -qJP -eRz -ctv -eRz -eRz -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(86,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aqQ -neA -byr -sZI -lxI -sZI -lxI -sZI -lxI -sZI -sZI -crY -aLN -xVy -qoQ -tuQ -aRc -cpF -aTJ -aPK -cCl -bts -gjl -gjl -gjl -gjl -gjl -bbt -igQ -eVL -eVL -pFK -ioQ -huy -buF -dbB -dbB -btu -iHL -dbB -rmD -daA -bwW -uxp -bxy -bDk -agv -byE -byE -hJD -byE -bbv -wIB -wIB -mra -bQa -bHE -bHE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bLv -bHE -bHE -nnA -bHE -bHE -uUz -pVg -mra -dzN -gXs -aaa -gXs -raw -eSP -xek -xek -xek -xek -xek -xek -sNT -qJP -qJP -qJP -ctv -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(87,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -arP -avd -arP -fMU -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE -ayE -aLl -aMT -aOl -aPL -aPK -xKf -aTI -aPK -aWB -akj -aQy -sST -bbU -dfx -rPX -pVb -bgB -bhX -bgB -biF -bkw -bnE -bny -jXH -vAD -bjv -btv -buc -gXL -eVL -bwV -hPw -bxy -bAb -byE -byE -bEQ -bGM -bKn -bbv -wIB -wIB -mra -bPZ -bHE -bHE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bLv -cqH -cqH -bCq -nvc -sFh -bHE -taJ -mra -aaH -gXs -aaa -gXs -qJP -oGP -xek -xek -xek -xek -xek -xek -dKO -pxC -sRa -lBE -cZn -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(88,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -arP -ave -arP -axu -qqL -qgW -qgW -qgW -qgW -qgW -qgW -qgW -qgW -aKy -aLn -aMU -aOw -aPN -aPK -aSm -aTK -tav -tav -tav -tav -oPj -oXE -tav -tav -bfj -aZK -bia -aZK -bjs -bkx -bfm -bnA -bGi -jMP -dZy -bpB -bek -bxA -bIg -bwX -eey -byG -bAm -bBG -bDo -bEP -bGm -bKp -bbv -nWq -wIB -mra -bHE -bHE -bSs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bCq -bLv -wba -wba -wba -nAu -wba -wba -wba -wba -cqY -cqY -cqY -qJP -eSP -xek -xek -xek -xek -xek -xek -uOg -fDQ -txJ -txJ -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(89,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -arP -arP -arP -cya -arP -axt -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -aLm -xVy -lmG -aPQ -aPQ -aPQ -aPQ -tav -xtO -aYi -nzH -aqW -bbQ -bLG -tav -aZH -aZK -bhZ -aZK -cNM -aZK -bnG -bnz -dbB -uFw -dbB -vVh -bud -nGm -bIs -nit -daA -bzF -bBa -byE -byE -cBB -byE -bKo -bxy -wIB -wIB -bCq -bHE -alT -bLu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bwk -kli -wba -gZq -sID -tlx -tlx -ciU -rCo -wba -rwR -fEe -oei -xDT -sZx -xek -xek -xek -xek -xek -xek -uOg -fDQ -txJ -txJ -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(90,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anO -aaa -aaa -aaa -aaa -arP -asQ -aqR -aqR -arP -axt -ayG -azK -aBe -aBe -aDj -aER -aFX -aHj -aJa -aKc -dvn -aMV -lmG -aPQ -pfj -aRV -aSW -tav -ouv -rFx -aYZ -aTt -bcG -kRN -tav -aZH -bgD -bfN -bgE -bbB -cNI -bfm -boS -bfm -bNK -sdX -nEm -bfm -bwe -bwd -bwY -bwd -bwe -cWB -bBI -ibv -bGn -bGn -bKq -bxy -wIB -wIB -bCq -bOK -bCq -bCq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -bwk -aVC -bwk -wba -eQN -cCs -qgT -way -cqK -jSw -ugb -oAk -ciZ -vXB -qJP -uRe -xek -xek -xek -xek -xek -xek -fSv -xwT -jAd -qVo -cZn -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(91,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiU -aln -aiU -aaa -aiU -anN -aiU -aaa -aaa -aaa -arP -asP -aqR -aqR -hdr -kIh -ayG -azJ -azM -azL -aDi -aEQ -aFW -aHh -aIV -ayG -aLN -xVy -lmG -aSs -dFs -aSt -jiK -tav -tqp -avr -pIc -baX -bcH -bdE -tav -aZH -bnL -cNJ -cNJ -bbJ -cNI -bnI -boR -vVh -uFw -ygJ -nro -izT -bwd -bvL -byI -byH -bwe -bAn -bxy -bxy -bxy -bxy -bxy -bxy -mra -mra -bCq -bHE -mra -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bLv -kli -bwk -kli -wba -rZu -cCs -qgT -way -gbz -cjO -wba -gJx -wlp -vcm -qJP -hxM -nEs -qLT -nEs -nEs -sXG -qhx -fva -qJP -qJP -qJP -eRz -ctv -eRz -eRz -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(92,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aiU -alp -aiU -aaa -aiU -alp -aiU -gXs -gXs -gXs -arP -arP -arP -arP -arP -bIo -ayG -azM -aBg -aBZ -aDx -aET -lYr -bCx -aHJ -aKA -aLN -aMY -pga -aRf -bPL -aSc -hSc -tav -pNh -avr -avr -bbT -gRI -kRN -tav -aZH -beF -cNG -cNG -bjw -bmk -bbR -boT -pvE -uDe -buI -dbB -uDR -bwd -ccR -byK -byT -bwe -cay -bHE -bCq -bHD -bJe -bCq -bLu -bHE -bHE -bHE -bHE -mra -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bCq -bCq -bCq -bCq -wba -osa -cCs -ocP -way -cqK -cAQ -wba -giN -ciZ -omf -qJP -qJP -qJP -qJP -qJP -qJP -qJP -qJP -qJP -qJP -gXs -ctv -eRz -eRz -ctv -ctv -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(93,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -eRz -gXs -gXs -gXs -aiV -aiV -aiV -akG -cxJ -aiU -amK -aiU -cxP -aoq -aiV -aiT -aiT -arP -asR -aqR -arP -awc -axt -ayG -azL -azM -azJ -aDw -aES -aJh -aHv -aJh -aKA -aLN -aOz -lmG -aSs -tQk -aSa -aSr -tav -wbV -kWe -gES -uTi -lHR -eAi -tav -beA -bqp -cNG -cNG -bLF -aZK -gby -dbB -dbB -cBq -dbB -aJD -fqV -bwd -bxC -byL -byO -bwe -bAo -bHE -bGo -bHC -bHE -bCq -bCq -mra -mra -bHE -mra -bCq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bSp -bHE -bPW -bHE -wba -xKR -cCs -qqB -way -kki -cAQ -wba -xQY -kif -qfZ -ccw -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -ctv -ctv -eRz -aaa -aaa -aaa -aaY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(94,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -fdN -fdN -fdN -fdN -fdN -fdN -xtF -xtF -xtF -ctv -eRz -aaa -aaa -aaa -aiV -ajs -akb -akI -akI -amc -aiV -ant -akI -aos -aiV -apR -cCh -arP -asT -aqR -avf -aqR -tvB -ayG -azN -aBe -aBe -aDy -aEU -aGf -aHL -aJi -aKB -aLT -aOz -lmG -aPQ -nTU -aTL -aTP -tav -tav -swH -swH -baU -nXi -bcV -bcV -bfn -beW -bfR -bKF -bNH -aZK -bnJ -bty -dbB -uFw -bty -bty -pqP -bwd -byM -bAd -bBf -bwe -bAJ -ccu -bCq -bHE -bJf -bCq -aaa -gXs -mra -bHE -mra -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cQm -bCq -bJf -bLu -bRg -wba -tgF -vqM -ccd -ohW -tln -cqL -wba -aeT -ciZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(95,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -cmV -qbE -xJB -wgh -fUr -fdN -hQL -jqP -tZx -ctv -eRz -gXs -gXs -gXs -aiU -ajr -aka -akH -alq -amb -aiU -ans -aat -aor -apb -alp -aqS -arP -asS -aqR -arP -awd -axt -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -ayG -aaa -aaa -aaa -aPQ -aSs -aSs -aSs -tav -aaa -aaa -aaa -aaa -aaa -aaa -tav -aZK -aZK -cNI -bKP -cNI -aZK -bnK -bnK -bqu -qYX -bnK -bnK -rST -bwe -bwe -bwe -bwe -aah -bAI -bCd -bCq -bCq -bCq -bCq -mra -mra -mra -bOK -mra -mra -mra -bCq -ljG -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -uBp -cbw -bCq -bCq -bCq -bCq -wba -wba -wba -wba -wba -wba -wba -wba -ozc -ccw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(96,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -nhT -jfe -jfe -gKW -jVi -hyU -lIp -gCc -tYs -ctv -eRz -aaa -aaa -aaa -aiU -aju -akd -akK -aal -ame -amM -anv -jog -aou -aiV -aiT -aiT -arP -arP -arP -arP -awf -axx -aEV -aqR -aqR -avq -pxP -aqZ -aqZ -qOq -gvI -arP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCr -bAK -cdv -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -jfp -sTL -uBp -bUx -bVI -bVI -bVI -bVI -bVI -bVI -bVI -bVI -bVI -bVI -bVI -bCq -pIS -ccu -ciT -bCq -bSs -ceY -bHE -cmD -cnr -chD -cgR -cpq -tEa -cfu -ccw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(97,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -nhT -jfe -jfe -jfe -kKV -mFD -ift -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -ajt -iSD -akJ -alr -alq -aiU -anu -hzx -aot -apc -aqR -aqR -aqR -afm -apS -apS -dlg -neA -ayI -azO -aBh -akL -aHx -aEV -aGg -aHx -cUE -apg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCq -bCq -bCq -mra -mra -mra -bCq -mra -mra -mra -mra -mra -mra -bCq -bCq -aWQ -bVI -bWB -bWB -bYz -bWB -cag -cbl -bYz -bWB -bWB -bVI -cax -cbx -cdh -ccu -bQa -bHE -bHE -bHE -ccw -ccw -chB -emH -cpW -sgn -cqN -cro -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(98,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -xIl -tIX -ioa -woW -eoM -fdN -lIp -uLo -dly -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiV -anP -aiV -xtj -aph -aph -aph -aph -apS -aqR -axt -cyg -cyg -azQ -cyg -cyg -aHx -aqR -aGg -aHx -aHx -arP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -bCq -tOC -grb -bVI -bWD -bXA -bYB -bWB -cai -bWB -ccg -cdd -cea -bVI -ljG -cby -cdj -cdv -jfp -jfp -jfp -cfe -cfD -khR -chE -khR -eAl -cji -cDZ -cro -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(99,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -fdN -uSi -fdN -fdN -aXZ -fdN -lIp -uLo -knE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ukc -mzW -aph -air -aqY -arU -apU -vDJ -hhs -nGv -cyg -tUz -azE -bJy -cyg -rms -aqR -aqR -mSL -aJj -arP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bEU -bEU -bEU -bEU -bEU -aaa -gXs -aaa -aaa -gXs -gXs -bCq -pYD -cay -bVI -bWC -bXz -bYA -bWB -bWB -bWB -ccf -cdc -cdZ -bVI -aje -cjJ -cjJ -cjJ -cjJ -cjJ -cjJ -cjJ -cjJ -cfL -rIY -cBO -wuB -cDB -cqP -cro -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(100,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -gXs -fdN -fdN -fdN -jox -bkj -fdN -ekE -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aau -xlt -cCi -uIU -arR -lmZ -wyA -aph -aph -bIo -cyg -kaO -azE -cfo -cyg -cyg -nig -nig -nig -nig -nig -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -bEU -bGt -bHG -bJh -bEU -gXs -gXs -aaa -aaa -mra -mra -bCq -yji -rZx -bVI -bWF -bXC -bXC -ssM -cak -ssM -bXC -bXC -cec -bVI -cay -cjJ -gRM -ciX -cjM -chY -ckB -ckB -cjJ -cnY -rIY -wuB -wuB -cqx -cqR -crp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(101,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -gXs -bdW -bkj -qaq -bkj -jmS -fdN -lIp -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ukc -mzW -aph -arT -ata -lPo -jBV -auh -aph -axt -cyg -byU -aDz -eVy -vJX -oBH -nig -kxE -kxE -eAk -dVu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bEU -bGs -cBC -bJg -bEU -aaa -gXs -gXs -gXs -mra -ljG -jfp -jfp -caC -bVI -bWE -bXB -bYC -bWB -jSI -bWB -cch -cde -ceb -bVI -cay -cjJ -gRM -xwN -ciW -gRM -ckB -ckC -cjJ -cnX -rIY -cps -cpX -cqz -cqQ -ccw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(102,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -quT -gXs -gXs -gXs -gXs -eRz -gXs -fdN -fdN -fdN -fdN -bkj -bkj -fdN -uka -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anQ -mzW -ard -are -cxl -pUr -asn -atK -aph -axt -cyg -ayP -aum -aBo -pGt -aCg -nig -fQN -kxE -kxE -vbD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCs -bEU -bGu -bHI -bJi -bEU -bCs -bCs -bNI -bNI -bNI -cce -bNI -bNI -dBs -bVI -bWG -bXD -bYz -bYz -bXC -bYz -bYz -cdf -ced -bVI -cay -cjJ -gRM -xwN -xwN -xwN -ckC -ckC -cjJ -coa -coJ -clJ -clJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(103,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -dFB -dFB -kEj -oGl -xtF -rCO -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -mzW -ard -gpE -arX -asl -fLe -dtc -aph -axt -cyg -cyg -aDC -cyg -cyg -cyg -nig -kxE -kxE -kxE -vbD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDv -bEX -bFa -bFb -sDF -bKt -bLx -bCs -bNJ -bRl -cCe -bLC -cCf -bNI -dBs -bVI -bXC -bWB -bYz -bVJ -cal -bVJ -bYz -bWB -bXC -bVI -cay -cjJ -cjJ -ciY -ciY -cjJ -cjJ -cjJ -cjJ -cnZ -rIY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(104,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -vZo -vZo -vZo -vZo -vZo -lIp -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -aox -aph -aph -aph -aph -aph -aph -aph -axt -aCb -aGq -aGo -srC -wNw -aDE -nig -nig -nig -nig -nig -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDx -bFa -bFa -bHJ -bFa -bFa -bLz -bCs -bNJ -fLu -cCe -bJC -gWd -bNI -dBs -bVJ -bWI -bWI -bWI -bVJ -cao -bVJ -bWI -bWI -bWI -bVJ -cay -cjJ -pzA -cjb -cjb -rZR -kul -cmG -cnt -pWb -pFd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(105,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -vZo -xxf -hwm -xxf -vZo -etC -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -anR -mzW -apd -fBs -dyN -wUs -apd -vsa -vDJ -awh -aCb -ayO -uWQ -aHO -wOO -wEX -csM -oPy -oPy -oPy -sGD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDw -bEZ -bGv -bFb -bJj -bKu -bLy -bCs -cCe -fLu -bNJ -bJD -gWd -bNI -dBs -bVJ -bWH -bXE -bWI -bZr -can -cbn -cci -cdg -cee -bVJ -cay -cjJ -cia -lSQ -ecF -ckD -rdP -cmL -cfG -cfu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(106,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -vZo -xxf -xxf -xxf -hpU -lIp -uLo -xjG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anx -ukc -mzW -apd -yay -mSf -bLE -apd -auf -apd -axt -aCb -ayF -uWQ -uWQ -wOO -wEX -iCr -ipb -ipb -ipb -sGD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDz -bFa -bFa -uck -bFa -bFa -bFa -bCs -bNL -fLu -cCe -bJD -nxv -bNI -dBs -bVJ -bOo -mcV -bWI -bXG -bSd -bXG -bVw -bOD -cBK -bVJ -cay -cjJ -cid -cSQ -cen -ckG -rdP -cbf -cjS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(107,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -vZo -xxf -sfw -xxf -lGX -lIp -uLo -tYs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -mzW -apd -aob -bLE -adV -vKX -pgP -apd -axt -aCb -aCj -fhf -uWQ -wOO -wEX -iCr -oPy -oPy -jJk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDy -bFb -bGw -bFb -bJk -bFa -bLA -bCs -cCd -bQc -bKA -rKP -bSv -bNI -dBs -bVJ -bOl -rNK -bPQ -bQK -bYF -bTI -bUy -bWs -ceg -bVJ -cay -cjJ -cic -cSQ -cST -cTa -ceZ -clQ -cgR -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(108,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quT -gXs -fdN -dFB -vZo -vZo -vZo -vZo -vZo -uhz -hTc -wOE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -mzW -bON -bLE -aMN -bLY -qGZ -klg -apd -axt -aCb -aDI -qEw -uWQ -wOO -wEX -hjn -oPy -oPy -jJk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bAM -bFa -bGy -bFc -bJm -bFa -bHO -bCs -fvI -fLu -cCe -rLp -cCc -bNI -dBs -bVJ -fbm -bOM -bWI -sBm -bSt -bUc -bVb -bWv -cei -bVJ -cay -cjJ -cid -cSQ -cSU -cTb -rdP -rIY -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(109,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -dFB -dFB -dFB -dFB -dFB -tLJ -uhz -ibk -gLN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -aau -xlt -baV -enf -arb -pvj -atc -aug -apd -axt -aCb -fMJ -uWQ -uWQ -wOO -wEX -gIX -aCb -aCb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bAL -bCE -bGx -bFb -bJl -bHh -bHN -bCs -cjo -fLu -cCe -rLp -cCb -bNI -dBs -bVJ -bVJ -bVJ -bVJ -bVJ -bVJ -bVJ -bVJ -bWu -bVJ -bVJ -cay -cjJ -cie -cdT -cCY -cnA -rdP -cfg -pLG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(110,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -fdN -fdN -fdN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -any -ukc -mzW -apd -aqb -jYO -arZ -kNm -aui -apd -axt -aCb -ayX -uWQ -qYh -wOO -cRH -wCN -fuf -aCb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bFa -bCJ -bDA -bET -bJn -bHi -bHQ -bCs -cjo -bJu -cCd -cmX -bSz -bNI -dBs -dBs -dBs -dBs -dBs -dBs -dBs -bCq -bVd -bWK -bYp -bCq -cay -cjJ -kul -cSR -cSV -cjN -kul -cTf -pLG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(111,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -pUF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -mzW -apd -apd -bON -bON -bON -apd -apd -awj -rRQ -aCb -gjP -gjP -qlI -gjP -gjP -aCb -aCb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCs -bCs -bCs -bFe -bCs -bCs -bCs -bCs -bNI -bNI -bKU -bNI -bNI -bNI -bCq -bCq -bCq -bCq -bCq -bCq -cZW -bCq -bVc -bWJ -bYn -bZB -caC -cjJ -cSM -cSN -cSW -ckI -rdP -ahJ -vkD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(112,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -bcF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -mzW -apk -anw -anw -anw -anw -aVh -avj -awl -azZ -ayY -azZ -azZ -lHZ -vBU -azZ -nFd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cav -cav -cav -bFj -cav -cav -bHR -bIe -cav -bJz -cav -cav -cav -bTJ -cav -cav -bWL -cav -cav -bZx -bSR -bUl -bVf -bZt -bYE -bCq -bUt -nsn -cij -cjf -cSX -ckK -rdP -dso -pLG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(113,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -anS -aoy -apj -lro -lro -lro -lro -oEV -oEV -pKX -lro -asZ -aBO -aBO -aBO -tQj -tQj -tQj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cau -cau -cau -bSw -bGN -bHj -cau -cau -cau -cau -cau -cau -cBH -cau -cau -cau -cau -cau -cau -bQQ -bSw -cbr -cau -bXk -bYq -bCq -pYD -cjJ -cdk -cMC -cSY -ckI -rdP -ahJ -cnv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(114,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -nDQ -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anx -ukc -aoz -apm -aqd -kJd -asa -atd -anA -avk -gsj -aAa -ayZ -aAa -aBu -aAa -aAa -aAa -aAa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHP -bCp -bYI -bFq -bGO -bHl -bLI -bLI -bLI -bOR -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bQg -bYI -bDG -bHP -cbt -bVh -bZC -bYM -cfb -cfb -cfb -cfb -cfb -cfb -cfb -ccw -cmN -hOX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(115,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -rCU -asg -asg -ehP -asg -ahn -ahn -ahn -awm -ahn -ahn -ahn -ahn -ahn -ahn -ahn -ahn -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bCv -bCv -bCv -bCv -bJq -bzs -bLH -bRq -bRq -bOQ -bRq -bRq -qde -bTK -bUE -bWM -bXJ -bMK -bYH -bYH -bYH -bYH -bVg -bXn -bYG -cfb -cfF -cfb -cik -cjg -cjU -cfb -clM -jjr -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(116,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -aoB -oWq -aqf -gzY -asg -xMX -wLh -wLh -awn -edu -nOx -edu -edu -edu -edu -edu -edu -aoa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bAT -bDL -bDq -bCv -wiz -bKy -bLK -bLK -bLK -bOT -bQi -bRs -bSC -lJI -bUG -bVO -bWO -bXK -pjA -bZz -caw -bYH -bVo -bXq -bZe -cfb -cfH -cSL -cim -cim -ceo -cfb -cfa -tmg -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(117,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -nDQ -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anw -ukc -aoB -asg -lSB -cqU -asg -nls -arf -arf -arf -arf -arf -arf -arf -arf -arf -arf -edu -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bDH -bFf -bGB -bCv -wiz -bKy -bLJ -bLJ -bNP -bOS -bQh -bRr -bSB -bMK -bUF -bVN -bWN -bLK -kSG -bRi -bZy -cbu -bVM -bXI -bYO -cfc -cgO -ccj -cBM -cdU -cSZ -ckL -nxa -tmg -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(118,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -pUF -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ulh -jkE -aoB -wsl -wlf -rHg -asg -aqg -arf -hQK -qcV -arf -btB -hxK -arf -pwd -tti -arf -edu -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bDK -bFi -bGE -bCv -ukp -bKy -bLM -bLM -bNQ -bOd -bOd -bOd -bSD -bMK -bUH -bVQ -bWN -bXM -bYL -cew -bTh -bZy -bZy -bXI -bZg -bZD -cbq -ccl -cdm -cio -cjY -ckL -htP -tmg -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(119,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -pUF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anz -rNw -aoB -plh -lXr -dsi -asg -aqg -arf -whK -eIS -arf -mqq -aun -arf -psY -rkf -arf -edu -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bDJ -bCt -bGD -bCv -wiz -bKy -bLL -bLL -bNQ -bOU -gwH -bOd -bOd -bRx -bOb -bVP -bWP -bXL -bYK -bRj -bVp -bVp -bVp -bXH -bZy -cfc -cbp -bTr -cin -cjj -cjX -ckO -kmt -kmt -cny -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(120,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wyV -rbi -aoD -asg -elu -lwb -asg -aqg -arf -auw -amZ -arf -ayV -rHj -arf -aCd -klU -arf -edu -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cBy -bDM -bCw -bDr -bCv -wiz -bKy -bLN -bLN -bNS -bOX -bQm -bRv -bQj -bTN -bOY -bRA -bWQ -bWQ -bYN -bRm -caA -caA -bZy -ccs -bZu -cfb -dQA -cfc -cfc -cfb -cfb -cfb -clR -tmg -wuB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(121,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nsK -aax -xjU -oWq -kEN -wrL -asg -aqg -arf -arf -awo -arf -arf -aAb -arf -arf -aDK -arf -wbt -ahn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -boc -bCv -bAU -cAL -bFg -bFs -bJt -bKy -bLK -aoZ -bNR -bOW -bQl -bRu -bSE -bRx -bUI -bVR -bWQ -bOO -bQe -bRk -bTi -caA -eah -bXI -bZy -adz -cfK -aeD -aeD -aeS -ahx -ahB -cmF -tmg -cev -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(122,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wyV -sag -aoC -asg -nFu -asg -asg -aqg -tKB -aAX -ohj -lCd -lCd -keS -pdB -cFO -egS -aFe -dHp -aHT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -apG -bFk -bDs -bCv -wiz -bID -bLK -bMK -bMK -bMK -bRx -bRx -bMK -bMK -bUJ -bVS -bWQ -bXP -cBI -bRS -bTH -caA -bZy -acW -bVp -adA -adW -kmt -kmt -aeT -agT -ahF -aiK -cbK -kHM -cgf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(123,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gEl -sag -aoF -nOa -aKh -wLh -wLh -vai -arf -aux -igR -pwU -oHY -fJn -iUk -xWD -xWD -aFd -fJn -aHH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bAV -bCv -bCv -bCv -wiz -bZN -bLK -bML -bNT -bOV -bXQ -bRw -bSF -cbC -bPa -bQk -bWQ -bXO -bQq -bRo -bTG -caA -aam -adt -adx -adM -adX -aeu -aeQ -afs -ahx -ccw -aiL -ajq -ajI -ajL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(124,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kdH -uRH -gjb -ajo -aqg -arf -arf -arf -arf -auU -xWD -xWD -tde -aAh -aAh -aAh -aAh -aFh -aAh -aAh -aAh -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCv -bDP -bCv -bAw -fbo -wiz -bBR -bLK -bMN -bNV -bIb -bQo -bRz -bSH -bOd -bTP -bQn -bWQ -bWQ -bWQ -bWQ -bWQ -bWQ -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -ccw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(125,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wHs -xYY -wHs -wHs -wHs -wHs -wHs -anC -anU -anC -ajo -aqg -arf -aqo -asp -arf -auS -xWD -xWD -tde -aAh -pcT -aCm -aDL -aFf -aBy -aHU -aJz -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bzs -bAw -pnH -cfX -bHU -bsH -qQp -bLK -bMM -bOd -bIG -bOd -bRy -bSG -bOd -bUK -bVT -bMQ -iMH -cbA -bZF -cbA -xBQ -ccv -cdw -cex -tkL -cfN -oHT -bLK -yhR -yhR -yhR -yhR -yhR -yhR -qsk -cDm -xcn -eMw -eMw -thl -oMc -cjR -crW -csg -cuh -eRz -aaa -gXs -nXv -gXs -gXs -ctv -ctv -ctv -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(126,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajh -ajM -cXt -alb -alG -aXz -qWw -hcu -oeS -aoH -ajo -aqg -arf -asm -blU -atQ -avn -xWD -xWD -tde -aAh -fWY -aDO -aDQ -aFi -aGl -awq -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bCz -xQc -bFn -bJA -bJA -dFo -bKE -bLK -bMP -bOd -bOd -bOd -bOd -bOd -bOd -bTP -bUV -iup -bWU -bWU -cfT -bWU -bWU -vyN -vyN -vyN -vyN -bOd -cgW -eAs -yhR -bOh -bOh -bOh -bOh -gXs -ccw -ccw -rKJ -hxt -iAa -slD -crP -ccw -sXk -cfK -cuh -eRz -eRz -eRz -nXv -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -ctv -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(127,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajj -ajP -aky -alc -alI -amr -amY -bJB -anV -ajo -ajo -nls -arf -ari -asu -arf -auW -xWD -xWD -ejP -aAh -rPu -aCn -aDM -aAh -aAh -aAh -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bzs -bzs -bFm -ccM -rVS -cBD -ccJ -bLO -bMO -bKJ -bOe -bQp -bQp -bQp -bQp -bUL -bVU -wHy -bXR -bYQ -kUN -bQp -bQp -bOd -bOd -bOd -iDG -psC -cgV -civ -cph -cDY -ckU -clT -bOh -gXs -gXs -dkY -dkY -dkY -dkY -woA -gMJ -dkY -dkY -dkY -cuh -cuh -cuh -cuh -cuh -ctv -eRz -ctv -ctv -ctv -eRz -ctv -ctv -ctv -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(128,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aji -ajO -ajn -ajn -alH -amr -aSX -bJB -anY -ajo -apq -aqg -arf -arf -arf -arf -auW -xWD -xWD -tde -aAh -rPu -aBy -aDM -aAh -aGm -aHV -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bzs -bFp -bJA -bJA -bJA -bKG -bLK -bsn -bMR -bQs -bMR -bMR -bOd -bOd -bOd -ccy -bMQ -bOd -bTP -dJF -bOd -bQp -bOd -vWz -ygI -jxQ -ygI -cgY -ciu -bVu -cBP -ckW -clU -bOh -gXs -gXs -dkY -oJP -lob -hFF -cjl -pnG -cjV -dkY -gXs -gXs -gXs -gXs -aaa -cuh -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -gXs -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(129,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajl -ajR -rmU -ald -alJ -amt -ajp -ncN -anX -ajo -app -aqi -arf -ask -atm -arf -avl -xWD -xWD -aza -aAh -aAh -aAh -aDS -aAh -aAh -aAh -aDN -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bzs -cVy -ccM -ccM -ccM -bHp -bLK -bMK -bMQ -bQv -bMQ -bMK -bXT -bOd -bOd -nye -bMQ -bOd -bTP -aaE -bOd -bQp -bOd -bOd -ccA -uyj -ygI -cgX -bMQ -yhR -bOh -bOh -bOh -bOh -gXs -gXs -dkY -svb -bqs -bqs -fAu -bqs -fDu -dkY -jBm -jBm -dkY -gXs -gXs -cuh -aaa -aaa -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(130,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajk -ajQ -ajn -ajn -alH -amr -amY -hHz -aaA -ajo -aps -jce -arf -tqd -aHw -aup -uGU -awv -axX -aze -aAh -aBz -aBz -aDU -aAh -aGn -aHW -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bzs -fkb -bJA -bJA -bJA -cJT -bLK -bMT -cbA -bPd -cBF -bMK -bMK -cbD -bOd -ccy -bMK -cBV -bTP -aaE -bOd -bQp -bOd -bOd -ccA -jQO -psC -cha -civ -cph -cDY -ckY -clW -bOh -gXs -dkY -dkY -czg -nAf -tJL -fAu -tJL -bqs -tJL -bqs -xYO -jBm -gXs -aaa -cuh -gXs -gXs -gXs -gXs -gXs -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(131,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aiY -ajE -ajH -akn -ale -amr -amY -hHz -gNu -ajo -apr -jce -arf -ark -asL -arf -avu -awt -axV -azd -azX -aAZ -aCe -aDT -aAh -aAh -aAh -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wyU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ato -bLK -bMS -bOd -bQw -bOd -bRE -bMQ -sfZ -bZJ -cCD -bMQ -cQQ -bUS -aaE -bOd -qiq -bOd -bOd -ccF -jxQ -ygI -cgZ -ciu -clc -cBP -ckX -clV -bOh -gXs -jBm -fZk -afp -mNB -tJL -dCj -tJL -tJL -tJL -bqs -kmN -jBm -gXs -aaa -cuh -aaa -aaa -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(132,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajm -ajS -ayD -trb -akA -baZ -amY -hHz -lsY -ajo -apt -jce -arj -arj -arj -arj -avx -awz -axR -avx -aAh -aBA -aBA -aDP -aAh -aGp -aHX -aBy -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -xFr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gqv -bLK -bMV -bOd -bRB -bVQ -bRF -bMQ -sfZ -ccx -cCE -bMQ -cdx -bUS -aaE -bOd -bQp -bOd -vWz -hhN -eHb -ygI -chb -bMQ -yhR -bOh -bOh -bOh -bOh -gXs -jBm -hZh -qXK -mNB -bqs -fAu -tJL -tJL -tJL -bqs -oku -jBm -gXs -aaa -cuh -gXs -gXs -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(133,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cAN -aaa -ajo -ajo -ajo -ajo -ajo -ajo -ajo -ajo -jsj -ajo -apt -aql -apv -arl -asM -atV -avw -awy -axQ -azj -arj -aAh -aAh -aAh -aAh -aAh -aAh -aAh -aAh -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dBc -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -bLK -bMU -bOd -bQp -bOd -bRE -bMQ -axw -bOd -cbG -bMQ -cdA -ceA -aaE -bOd -bQp -bOd -bOd -cBJ -tpr -imY -ckV -jFE -cpP -fYQ -gju -wCe -bOh -gXs -jBm -oEj -ozX -hvP -mcC -jHL -tJL -tJL -bqs -bqs -vyy -jBm -gXs -gXs -cuh -aaa -aaa -gXs -gXs -gXs -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(134,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahn -aic -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -aoJ -anb -aoJ -anZ -apu -arj -asb -asV -aus -aus -awA -axT -azl -aAl -arj -aCq -aDR -aFl -aGD -aHZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bba -uQL -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -bLK -bMX -bQx -rVn -bUR -cMN -cMN -hit -rFU -bWb -cMN -dBB -bhO -bYT -mNE -awk -mNE -mNE -mNE -kjF -mNE -chd -bQy -iPh -ckc -clb -clY -bOh -gXs -dkY -dkY -eCj -inR -tJL -fQI -kOd -icX -tJL -tJL -mkp -jBm -gXs -aaa -cuh -aaa -aaa -gXs -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(135,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahk -aoJ -aib -aif -aif -anG -atg -atg -atg -atg -atg -for -anb -aif -anD -aoI -arj -arn -auu -aXF -aXF -aXF -aXF -azk -aAk -arj -aCf -aDY -aFj -aGr -aHI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -ber -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ukp -iqh -cMN -hit -bPf -hit -cMN -bSN -jnZ -xaK -bVV -hit -bOd -bUS -iTX -rVk -nMr -bOd -bOd -bOd -uyj -mNE -std -bMQ -yhR -bOh -bOh -bOh -bOh -gXs -gXs -dkY -dkY -dkY -uWf -cgv -tJL -tJL -tJL -tJL -eDm -jBm -gXs -aaa -cuh -aaa -aaa -gXs -aaa -aaa -jAD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(136,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahn -rpc -rpc -rpc -ijw -tOc -ijw -rpc -rpc -rpc -and -nZb -ahn -ahn -apx -ahn -arj -asr -auu -aXF -aXF -aXF -aXF -azn -aAn -arj -aCh -aEc -aFk -biB -biB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aOU -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -pgn -pgn -pgn -pgn -bRJ -pgn -bVW -cPn -bWc -tdH -oGr -bUS -bZK -bOd -bQp -bOd -bOd -bOd -kOf -psC -chf -pZL -gKn -cDY -bPm -bRK -bOh -gXs -gXs -bzs -haX -dkY -dkY -kHv -tJL -akc -dkY -dkY -dkY -dkY -dkY -dkY -cuh -gXs -gXs -gXs -gXs -gXs -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(137,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rpc -ruP -asf -chR -awP -aGQ -yjN -iSc -rpc -aLr -nZb -ahn -aoK -apw -aqp -arj -asq -auu -aXF -aXF -aXF -aXF -azm -aAm -arj -aCr -aEb -aCr -aCr -aCr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -uqs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -wsV -wsV -wsV -wsV -wsV -wsV -wNL -hWx -cCF -hit -bOd -bUS -bZK -cbz -bQp -bOd -bOd -vWz -jxQ -ygI -che -cjr -pgo -cBP -bQr -bRL -bOh -gXs -bzs -bzs -bAw -csl -dkY -ggz -tJL -niR -dkY -tJL -tJL -tJL -tJL -ifX -cuh -aaa -gXs -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(138,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -rpc -asf -yjN -iSc -yjN -iSc -yjN -yjN -gKT -aQC -nZb -ahn -aoL -apy -aqq -arj -ast -auu -aXF -aXF -aXF -aXF -siM -aAp -aBC -aya -aEA -aBE -aGz -bOr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYU -gjZ -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -ive -kSN -kSN -kSN -kSN -kSN -wNL -bWR -ccB -cMN -rDO -bUS -bZK -bOd -bQp -bOd -bOd -bOd -uyj -ygI -nfm -bMQ -pLB -bOh -bOh -bOh -bOh -gXs -bzs -cdH -pNL -pUq -qSe -hvN -tJL -bqs -hsB -mOV -tJL -tJL -tJL -ewM -cuh -aaa -gXs -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(139,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -rpc -asf -iSc -iSc -iSc -iSc -iSc -pch -rpc -ahn -khB -ahn -ahn -ahn -ahn -arj -ass -jKv -aaN -apX -apX -asd -azf -aAo -arj -ayb -azI -azI -bqR -bOC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -wsV -wsV -wsV -wsV -wsV -wsV -wNL -qhs -cCG -hit -bOd -bUS -ksH -bVQ -bQp -bOd -bOd -bOd -wrS -psC -chg -pZL -cph -cDY -bQt -bSM -bOh -gXs -bzs -tPU -iHA -csl -dkY -hFm -hFm -wxR -dkY -tJL -tJL -tJL -tJL -ifX -cuh -aaa -gXs -aaa -aaa -aaa -eRz -eRz -eRz -eRz -quT -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -eRz -eRz -eRz -eRz -eRz -quT -eRz -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(140,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -rpc -asf -yjN -iSc -yjN -iSc -yjN -yjN -rpc -aRe -nZb -jce -brY -anF -anF -bvi -vth -aua -aeZ -eic -awB -axY -azh -gsz -arj -aDV -aAq -azI -aGI -aId -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -wsV -wsV -wsV -wsV -wsV -wsV -wNL -bYV -iYp -gHG -oGr -bUS -rAf -bOd -bQp -bOd -bOd -vWz -jxQ -ygI -cCS -cjr -bVu -cBP -jAU -cCI -bOh -gXs -bzs -wgr -wpN -csl -dkY -gMJ -wUA -dkY -dkY -dkY -dkY -dkY -dkY -dkY -cuh -aaa -atR -gXs -gXs -gXs -quT -aaa -aaa -aaa -aaa -aaa -eRz -eRz -eRz -quT -quT -eRz -eRz -quT -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -quT -eRz -eRz -eRz -eRz -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(141,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -rpc -asf -iSc -iSc -iSc -iSc -iSc -iSc -rpc -aef -bmJ -jce -cjI -cjI -aqr -asY -aaG -aaG -atZ -aaP -aaP -asK -azp -azp -aBD -aCu -aDV -aCl -bze -bkk -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qXo -wxZ -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -nOh -wsV -wsV -wsV -wsV -wsV -wNL -bYV -uyy -gHG -oGr -bUS -rAf -bOd -bQp -bOd -bOd -bOd -uyj -ygI -hun -bMQ -yhR -bOh -bOh -bOh -bOh -gXs -bzs -pyT -oPk -csl -dkY -gRl -kmh -kNS -vHV -aaa -gXs -aaa -gXs -gXs -cuh -aaa -gXs -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quT -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(142,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -rpc -asf -yjN -iSc -yjN -iSc -yjN -yjN -rpc -lfv -aPU -jce -jce -jce -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAq -aCy -bEx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -bdo -beu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -ive -kSN -kSN -kSN -kSN -kSN -wNL -hWx -cCB -cMN -dAx -bUS -rAf -bOd -qLU -bOd -bOd -bOd -wGh -psC -apa -pZL -cph -cDY -bQA -bTM -bOh -hLa -bPn -bAw -hbV -bBR -dkY -kmh -kmh -mmF -vHV -aaa -gXs -aaa -gXs -gXs -cuh -gXs -gXs -aaa -aaa -aaa -jAD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quT -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(143,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -gXs -rpc -win -aKd -nop -nop -xFm -ath -atj -aGk -lfv -ahn -boq -boq -bjq -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAr -aDW -bIK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdp -bci -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -wsV -wsV -wsV -wsV -wsV -wsV -wNL -bYV -uyy -bft -oGr -bUS -rAf -bOd -bOd -bOd -bOd -vWz -jxQ -ygI -apF -cjr -bVu -cBP -bQB -bTQ -bOh -gXs -bPn -csi -oPk -bZN -dkY -opl -gcN -rpW -rif -cGA -gXs -aaa -gXs -gXs -cuh -gXs -aaa -aaa -gXs -gXs -bcF -bcF -bcF -bcF -bcF -gXs -aaa -gXs -gXs -gXs -aaa -aaa -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -cAU -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(144,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -rpc -iMv -hBA -scI -pzs -pzs -pzs -atf -rpc -bez -ahn -kLX -kLX -bmP -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aDV -aFn -aGA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -vWg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -aXm -aXm -aXm -bvd -bWS -aXm -pkM -xLT -cdE -hit -bOd -bUS -rAf -bOd -bOd -bOd -bOd -bOd -uyj -ygI -gJi -bMQ -yhR -bOh -bOh -bOh -bOh -gXs -bPn -haX -oPk -bzs -dkY -ifX -ifX -ifX -vHV -gXs -cso -gXs -gXs -gXs -cuh -gXs -gXs -gXs -gXs -bcF -bcF -wIB -wIB -wIB -bcF -bcF -bcF -bcF -bcF -gXs -gXs -gXs -gXs -bcF -bcF -bcF -bcF -bcF -bcF -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -aaa -aaa -aaa -aaa -eRz -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(145,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -rpc -pzs -hBA -scI -atf -atf -atf -atf -rpc -blh -ahn -hnW -hnW -cjm -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aHK -aDW -bIK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -rKC -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wiz -iqh -cCC -iqh -iqh -iqh -iqh -iqh -iqh -iqh -iqh -iqh -bOd -bUS -rAf -bOd -bOd -bOd -bOd -bOd -uyj -psC -dcv -pZL -cph -cDY -alZ -vwG -bOh -gXs -bzs -haX -oPk -bzs -gXs -aaa -aaa -aaa -gXs -gXs -frg -nXv -cuh -cuh -cuh -gXs -aaa -aaa -gXs -bcF -wIB -wIB -iIh -wIB -wIB -wIB -wIB -wIB -bcF -bcF -bcF -bcF -lkE -bcF -wIB -nWq -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -gXs -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(146,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -rpc -rpc -rpc -ate -ate -ate -rpc -rpc -rpc -bes -ahn -kLX -kLX -kdV -aqu -aaC -aro -aro -aro -aro -aro -aro -aro -aro -avC -aCw -aDV -aJk -bLd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -owZ -tFV -jLL -tFV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bKL -gSS -bLT -bLT -bLT -bLT -bLT -bLT -bLT -ccI -rNm -jdl -cAa -bTO -rAf -bOd -bOd -bOd -bOd -vWz -jxQ -uNM -hpB -cjr -bVu -cBP -clh -dtD -bOh -gXs -bzs -csl -aEY -bzs -gXs -aaa -aaa -aaa -gXs -aaa -csn -csD -cta -cua -cua -aaa -aaa -aaa -gXs -bcF -wIB -nWq -wIB -wIB -wIB -wIB -nWq -wIB -cvX -wIB -wIB -nWq -wIB -wIB -cva -cva -cva -cva -cva -cva -cva -cva -ozO -cva -cva -cva -cva -cva -cva -cva -cva -gXs -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(147,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -gXs -nXv -nXv -bgu -hnW -hnW -bmP -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAr -aDW -bLf -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dSr -cdH -dSr -bzs -agd -dSI -rwo -tSp -bOd -bUS -rZs -oGr -bOd -bOd -bOd -bOd -uyj -vWz -wiT -jnu -yhR -bOh -bOh -bOh -bOh -gXs -bzs -csl -oPk -bPn -gXs -aaa -aaa -aaa -gXs -aaa -csn -cua -cui -ctg -cua -cua -cua -cua -cua -cua -cua -cuj -cuj -cuj -cuj -cuj -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cva -cva -cva -cva -cwv -cvp -cvr -cvl -cvp -hvm -cwv -cvp -hvm -cva -cva -cva -gXs -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(148,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -bgu -kLX -kLX -bmP -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAq -aKK -bLD -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bba -oVD -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vBW -auE -ugl -vOr -fxq -whq -nPT -bQx -bOd -bOd -bOd -bUs -psC -hSl -pZL -vos -cDY -fMc -wGG -bOh -gXs -bzs -csl -oPk -bPn -gXs -gXs -gXs -gXs -gXs -csD -csO -csD -czk -cti -cua -cua -ajT -ajU -ctQ -cuc -cuj -lxY -lLB -mMq -pqt -cuj -cvk -cvw -cvG -cvM -cvw -cvZ -cvG -cvw -cvw -cvf -cwh -cwm -cwr -cAT -cAZ -cAZ -hKG -cAZ -cAZ -lpz -cAT -hvm -cva -cva -cva -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(149,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bgu -hnW -hnW -bmP -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAr -aNS -bLS -bQE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dSI -bLK -bLK -bLK -bLK -gcJ -bLK -bLK -ccE -bOd -bOd -gKw -oUT -fLI -jFE -iax -sPJ -lOV -wGG -bOh -gXs -bzs -bAw -qAa -bzs -gXs -aaa -aaa -aaa -gXs -csD -csN -cSg -cuR -cth -cua -ctr -ctP -ctG -ctP -cth -cuj -cus -cvd -cus -cvd -cuy -cvk -cuo -cvu -cuo -cvu -cuo -cvu -cuo -cvu -cva -cwg -cvl -cwr -cAT -cuq -cva -cva -cvv -cva -cBb -cva -gPK -cva -cva -cva -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(150,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -ahn -ahn -ahn -nzP -aqu -aro -aro -aro -aro -aro -aro -aro -aro -aro -aro -aCw -aAq -aNS -aGB -avI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lDM -jaL -jaL -jaL -jaL -ojE -caM -mKI -yjv -bOd -bOd -crA -bLK -bLK -bLK -pUF -bOh -bOh -bOh -bOh -gXs -kCV -bAw -oPk -bzs -gXs -aaa -aaa -aaa -gXs -csD -csU -cSg -cSi -cuR -cto -cuR -ctT -ctJ -ctT -cuR -cul -cve -cuG -cuS -cve -cvo -jtY -cBS -cBS -cBS -cvT -cBS -cBS -cBS -cBS -cwf -cAZ -cAZ -cwt -bzV -cwA -cva -cAS -dCp -cBa -cBc -cva -vWu -cva -cva -cva -roc -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(151,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -ahn -brM -aan -asY -asY -asY -aaU -aaP -aaP -att -aBD -aBD -aBD -aCx -aDV -aUK -bMJ -aaI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -cBm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -hYM -uYj -vRS -ccG -wXW -sEr -omQ -qhM -crR -ryy -pUF -pUF -pUF -pUF -gXs -gXs -frR -bAw -qAa -frR -gXs -gXs -gXs -gXs -gXs -csD -ctb -cSg -cuy -ctj -cua -cts -ctP -ctP -ctT -cud -cuj -cus -cvd -cus -cvd -cuy -cvk -cuo -cvu -cuo -cvu -cuo -cvu -cuo -cvu -cwe -cup -cvl -cwr -cAT -cuv -cva -cva -thp -cva -cux -cva -hvm -cva -cva -cva -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(152,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -aaa -ahn -jce -jce -cpa -mcH -arj -aaV -akw -akw -auy -arj -vGf -vGf -vGf -vGf -aUZ -bLS -bRN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -rTp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qkW -bLK -bLK -bLK -fNo -bLK -bLK -bLK -bLK -bzs -bzs -bzs -bzs -bzs -bzs -bzs -bAw -oPk -bzs -aaa -aaa -aaa -aaa -gXs -csD -csD -csD -csD -cti -cua -cua -ctA -cuy -ctV -cug -cuj -sVd -pdQ -tUj -trl -cuj -cvk -cvw -cvJ -cvw -cvw -cvw -cvJ -cvw -cvw -cvb -cwk -cwp -cwr -cAT -cAW -cAW -icG -cAW -cAW -spc -cAT -hvm -cva -cva -cva -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(153,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -quT -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaa -gXs -gXs -aaa -aaa -aaa -ahn -anF -ahn -jce -and -arj -aaW -akV -hNj -auz -arj -vGf -alP -alP -alP -alP -aGP -alP -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -aHs -ghb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ccK -keW -xxQ -cdJ -wWb -bzs -bZN -uvu -cdH -bzs -uGz -dQw -bzs -bzs -haX -xKL -kgG -sUt -bzs -gXs -gXs -gXs -gXs -gXs -eRz -aaa -aaa -aaa -aaa -ctp -cua -ctz -ctK -cua -cua -cua -cuj -cuj -cuj -cuj -cuj -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cvk -cva -cva -cva -cva -cwB -cvp -cvr -cvl -cvp -hvm -cwB -cvp -hvm -cva -cva -cva -gXs -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(154,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -aaS -gXs -gXs -aaa -aaa -aaa -aaa -ahn -anF -anF -jce -wAK -arj -aaX -alj -aqv -auA -arj -vGf -alP -azr -aDX -alP -aAc -anf -bpJ -eow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aYV -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bDQ -sjK -kFx -bHd -bAw -bzs -fNF -bAw -bAw -bzs -bAw -bAw -wzm -bzs -bzs -czN -bzs -bzs -bzs -gXs -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -gXs -cua -ctF -ctM -ctX -cua -wIB -nWq -wIB -wIB -wIB -wIB -nWq -wIB -cvC -wIB -wIB -nWq -wIB -wIB -cva -cva -cva -cva -cva -cva -cva -cva -wUi -cva -cva -cva -cva -cva -cva -cva -cva -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(155,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -aaS -gXs -aaa -aaa -aaa -aaa -nXv -alP -alP -alP -cqp -alP -alP -alP -alP -arp -alP -alP -akC -alP -cVb -aBb -alP -bOm -bSY -vLg -cjw -cnE -vLg -vLg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tFV -jLL -tFV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nEJ -bHd -bAw -bzs -boY -csi -bAw -bzs -bzs -bAw -bAw -bAw -csl -sBw -bzs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -aaa -gXs -cua -ctE -ctL -ajX -cua -wIB -wIB -iIh -wIB -wIB -wIB -wIB -wIB -bcF -bcF -bcF -bcF -bcF -bcF -wIB -nWq -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -gXs -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(156,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaS -gXs -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -gXs -gXs -aaa -aaa -aaa -aaa -aaa -nXv -aak -anf -aaB -arr -arr -arr -tAl -pOY -adE -brm -brm -atB -alP -fnC -kPd -alP -arr -aAc -vLg -aKH -aMI -vLg -wVu -wVu -gHg -cfI -aUi -aVJ -aSR -aSR -qBw -rJb -aYV -wxZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dkX -bHd -clp -bzs -bAw -bAw -etp -opg -bzs -bAw -bAw -bAw -csl -oPk -bPn -gXs -aaa -gXs -aaa -aaa -aaa -gXs -eRz -aaa -aaa -aaa -aaa -gXs -cua -cua -cua -cua -cua -bcF -wIB -wIB -wIB -bcF -bcF -lkE -bcF -bcF -gXs -gXs -gXs -gXs -bcF -bcF -bcF -bcF -bcF -bcF -cva -cva -cva -cva -cva -cva -cva -cva -cva -cva -aaa -aaa -aaa -aaa -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(157,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -ads -adT -ads -gXs -ads -adT -ads -gXs -ads -adT -ads -aaa -gXs -aaa -aaa -aaa -aaa -aaa -nXv -alP -alP -alP -aqy -anf -anf -awI -awF -cpb -anf -brm -anf -alP -fxH -alP -alP -byt -aIj -aJB -aMs -cxW -vLg -wVu -wVu -wVu -aSQ -vhj -vhj -aFT -jYM -gBt -bod -aTy -gjZ -aYV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xQs -cgz -eKA -ofT -flk -flk -pFy -pFy -oLb -tcm -aaM -kgG -kgG -sUt -bPn -gXs -gXs -gXs -gXs -gXs -gXs -gXs -eRz -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -bcF -bcF -bcF -bcF -bcF -gXs -aaa -gXs -gXs -gXs -aaa -aaa -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -cAX -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(158,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -auC -auC -alP -alP -alP -alP -axZ -alP -alP -alP -mHi -alP -alP -anf -anf -bck -aFm -aIl -vLg -aMz -aDe -vLg -wVu -wVu -wVu -wpb -wVu -wVu -bFw -aDD -qfo -dHX -aYV -mwI -aXx -gFW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lbE -bHd -bAw -bzs -bAw -bAw -bAw -bAw -bzs -uGA -bAw -csi -bAw -haX -bPn -gXs -aaa -aaa -aaa -gXs -aaa -gXs -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(159,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaS -aaS -gXs -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -gXs -aaa -aaa -aaa -aaa -amw -aof -aof -aof -aof -arq -asv -atv -awI -aoQ -auD -alP -auB -anf -anf -aCz -cmW -bjL -xWr -bTZ -vLg -aSN -cRz -vLg -wpb -wpb -wpb -wpb -wpb -wpb -bFw -aYP -she -rJb -aYV -wxZ -aYV -lkx -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -lbE -bHd -bAw -bzs -bAw -pyT -bAw -bAw -bzs -fKF -bAw -bAw -cdH -ceF -bzs -gXs -aaa -aaa -aaa -gXs -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(160,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -aaa -aaa -adT -aaa -aaa -aaa -adT -aaa -aaa -aaa -adT -aaa -aaa -gXs -aaa -aaa -amw -amw -amw -aoh -aoN -apA -aof -ars -anf -arx -awI -anf -anf -alP -cmW -dGr -dGr -aCA -nGp -kSC -aGW -vLg -vLg -aOZ -djb -vLg -xQE -wVu -wVu -wpb -wVu -wVu -bFw -aDD -she -dAQ -aYV -wxZ -aYV -sxs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZU -caS -bLT -ccN -dPI -bAw -bzs -bAw -bAw -bAw -haX -bzs -qvJ -bAw -bAw -bzs -bzs -bzs -nXv -aaa -aaa -aaa -gXs -aaa -aaa -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -quT -quT -gXs -eRz -eRz -eRz -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -pNZ -eRz -quT -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(161,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -abX -adT -adT -adU -adU -adU -adU -adU -adU -adU -adU -adU -adU -adU -adT -adT -adT -adT -amv -oJa -cxN -aRX -aoM -aRX -aqw -pOY -pOY -pOY -pOY -anf -qor -alP -alP -iYK -alP -alP -vGf -vGf -dab -vLg -aYq -vBE -cHx -bzc -wVu -wVu -wVu -wpb -wVu -wVu -bFw -nec -ban -xMR -bap -wxZ -wLw -sMK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bZT -wiz -bFr -dPI -bAw -kBs -bzs -bAw -nmC -bAw -haX -bzs -wsx -bAw -bAw -mSR -bAw -xhW -nXv -gXs -gXs -gXs -gXs -gXs -gXs -eRz -aaa -aaa -eRz -quT -quT -eRz -eRz -eRz -quT -gXs -gXs -quT -eRz -eRz -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -quT -gXs -quT -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -eRz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(162,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -aaa -aaa -adT -aaa -aaa -aaa -adT -aaa -aaa -aaa -adT -aaa -aaa -gXs -aaa -aaa -amw -amw -amw -aoi -aoO -apB -aqx -art -aoP -aaK -pOY -anf -aaq -vGf -apE -anf -avD -alO -vGf -vGf -dab -vLg -aJO -cjx -djq -boe -uRD -uRD -uRD -uRD -uRD -uRD -aYb -uAV -dpw -lxk -bdp -bci -beB -tvC -tvC -xfL -rvy -rzp -bgg -mkA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bAw -bAw -bAw -bID -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bID -pjk -bHd -bAw -bAw -bAw -bzs -bzs -bzs -bzs -bzs -bzs -viD -bzs -bzs -bUU -bUU -bUU -xXh -xXh -bUU -bUU -bUU -aaa -aaa -eRz -eRz -eRz -eRz -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(163,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -quT -aaS -acy -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -gXs -aaa -aaa -aaa -aaa -amw -aof -aof -aof -aof -iYK -alP -alP -pOY -anf -dvV -vGf -apE -anf -atw -alP -vGf -vGf -dab -vLg -aJN -hRv -cjz -bzc -gRL -gRL -aTV -gRL -aUz -gRL -nnm -aYT -qhI -tsJ -olR -bcb -xVJ -cTJ -cHD -gxK -gxK -gxK -blq -sdg -gxK -gxK -gxK -slk -btm -buy -brr -bdO -jaL -jaL -jaL -sVV -dam -dam -dam -dam -kao -elM -kwE -bLT -bLT -bLT -bLT -bLT -efV -bLT -bLT -bLT -bLT -gSS -bLT -caT -bFo -xQc -xQc -xQc -kOV -xQc -xQc -xQc -xQc -fqR -xQt -twQ -czY -bUU -ice -odj -bYS -bYS -pxT -cXK -vtn -aaa -aaa -eRz -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(164,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -apC -aqy -anf -alP -awH -pOY -aty -jue -vGf -apE -tlA -awC -alP -hvj -omB -aGF -vLg -vLg -vLg -vLg -vLg -vLg -rJb -vLg -rJb -vLg -rJb -vLg -whd -vLg -vLg -sTE -amm -sTE -bfT -cHE -bfT -bfT -bfT -bfT -bnc -bfV -bfV -bfV -bfV -bto -buL -bvB -bzs -bxg -bBR -bAw -stm -bJA -bJA -bJA -bJA -bJA -jtT -bzs -csl -hUk -iiu -haX -bAw -wiz -qCj -bAw -bAw -bAw -bzs -bAw -bAw -cdH -bAw -bAw -bAw -bzs -bAw -csl -bAw -bAw -bzs -cOe -cmI -aAY -bUU -ice -gcP -gcP -gcP -ckg -ckg -ckg -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(165,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -ads -adT -ads -gXs -ads -adT -ads -gXs -ads -adT -ads -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -apC -anf -anf -alP -atx -cSF -anf -jue -vGf -apE -aAs -awE -alP -aIr -jSz -aGE -uOI -uOI -aVL -uOI -fbj -uOI -uOI -aVL -uOI -uOI -ect -wuQ -aXR -jmN -bup -aYV -bcj -aYV -bfT -cHF -biG -blw -blu -bnb -bfT -bor -bpS -bsO -bfV -bvx -buH -byf -byf -byf -byf -tLf -tLf -tLf -tLf -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -tJc -mPl -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -cNW -maP -cmI -aAY -bUU -hrT -bXS -bZI -bYS -hyW -ceD -ckg -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(166,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -gXs -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -apC -anf -alP -alP -apE -auG -alP -alO -alP -alP -alP -alP -alP -aIr -jSz -aWD -jmN -jmN -jmN -jmN -ous -jmN -jmN -jmN -jmN -jmN -tGh -jmN -jmN -jmN -cRS -aYV -aVN -bfU -bhu -cHG -bkh -bkh -biI -cHQ -bfT -boE -bsQ -bsQ -box -boz -buU -byf -bzu -bAz -bzu -tLf -bIM -bMl -bMq -xYx -lKr -xYx -fgW -lKr -xYx -bDb -inq -bRU -usX -uOk -ylC -bXe -ylC -ylC -ylC -ylC -ylC -her -ylC -ylC -ylC -ffQ -ylC -ylC -ylC -qKu -opF -maP -cmI -bTR -fGO -bVv -lxG -fbQ -lJB -tSG -ceE -chm -ckf -clf -clf -clf -clf -cpN -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(167,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -ads -adT -ads -aaa -aaS -gXs -gXs -gXs -gXs -gXs -gXs -gXs -apC -arA -anf -asx -anf -pOY -alP -anf -qBr -aty -alP -anf -alP -alP -hRM -alP -jmN -jmN -jmN -jmN -ous -jmN -jmN -jmN -jmN -jmN -tGh -jmN -jmN -jmN -sHn -bdp -aXq -bfU -bhu -wgp -biH -cHN -blv -bls -bfT -boD -bsQ -bsP -box -btw -buT -byf -bzt -bAy -bBS -tLf -bJH -bMm -cBz -xYx -lKr -xYx -xYx -lKr -xYx -bDb -izk -usX -usX -nLO -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -qKu -knx -maP -cmI -nSx -bUO -bVY -bXW -bZL -cbE -bZL -cfk -ckg -ckg -bUU -cmb -bUU -aaa -aaa -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(168,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -aiS -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -apC -alP -alP -alP -aty -pOY -avF -pOY -dcW -dGr -aAu -dGr -aCD -aEa -aFv -gUc -aIu -bCI -bCI -aIt -gUc -tHO -tHO -xGx -aUB -jmV -jNu -khg -tHO -tHO -tHO -bcv -vdJ -bfU -bhu -cHH -xJT -xJT -gZQ -blx -bfT -boL -bsQ -bsR -box -bWr -buT -byf -bzw -bAB -bBV -tLf -bEn -bMm -trt -xYx -lKr -xYx -xYx -lKr -xYx -bDb -jOX -usX -usX -oDZ -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -yck -bIx -knx -mtK -cmI -fjg -bUU -bVZ -bXX -bZM -cbF -cdD -cfU -bUO -ckj -bUO -cmd -bUU -bUU -cpQ -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(169,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -quT -aaS -aaS -gXs -aaa -aaa -gXs -gXs -gXs -gXs -alO -aqz -aru -alP -anf -anf -avE -anf -aty -awD -aAt -aty -aCC -tBB -dGr -xjH -xog -xog -xog -xog -aNV -nTP -bya -uVJ -uVJ -uVJ -qDX -uVJ -ben -bas -tHO -xPm -cBk -aXx -bht -cHJ -biG -blw -bjP -bnb -bfT -boG -bqa -cIe -box -bWr -buT -byh -bzv -bAA -bBU -tLf -bKW -bMm -bNr -bIy -bJK -yjr -yjr -yjr -bIO -bPB -nxx -hHq -hHq -oHH -prl -prl -prl -bRV -iSv -sUw -wSh -cbR -hGP -cgk -chr -gdq -mPw -prl -ujh -bDb -knx -mtK -cBN -bTS -bUP -bWa -bXY -cas -cbH -cdF -cfY -cju -ckk -clj -cmZ -cop -cor -cqs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(170,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -alO -anf -anf -asy -anf -anf -alP -alP -xvB -sVw -alP -alP -alP -tnv -aFu -gUc -aIw -aJS -qod -aMJ -aNP -tEt -dXS -iwf -ybq -iwf -eHV -uVJ -tEt -bau -tHO -hAm -fVG -sTE -bfV -cHK -blA -blA -blA -box -box -cHU -cHZ -cIf -box -btA -buT -byf -bzy -bAD -bBX -tLf -bLb -bMn -bPx -bRT -cqy -bLc -qhm -oYH -bOx -bPD -ueE -ueE -ueE -jUW -bMk -bMk -bMk -tex -bMi -ero -xyM -xyM -xQe -jia -vdA -ccQ -dzA -iSv -ddD -qyX -knx -maP -fif -qRB -bUQ -bWd -bYS -caF -cbI -cdI -cfZ -bUO -ckZ -bUO -cna -bUU -bUU -cpQ -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(171,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -gXs -gXs -aaa -aaa -aaa -gXs -gXs -alO -aqA -anf -alP -anf -anf -alP -awJ -anf -alP -aAv -anf -alP -tBB -tIY -gUc -aIv -xGu -aJF -hds -gUc -aPd -asw -aRO -aRO -aUC -aVQ -uVJ -rfS -bat -bbD -rcZ -vdJ -beE -bfV -bhv -biK -blz -blz -bly -bos -bpR -rFc -bsS -box -bWr -buT -byf -bzx -bAC -bBW -tLf -bLh -bMo -bPz -bDc -bDc -bDc -bDc -fkR -bIQ -bPC -cBG -cBG -cBG -mcm -qKE -elW -elW -elW -elW -tUv -xAL -rNl -ycE -pAm -pAm -pAm -uzD -ccP -iOI -nPP -czU -czZ -dni -eQV -bUU -bWh -bYU -caG -cbL -ceB -cga -cld -cld -bUU -bUU -bUU -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(172,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -gXs -alP -alP -alO -alP -alP -alP -alP -alP -alP -awG -alP -alP -auD -anf -apE -anf -mdr -alP -jyu -tIY -gUc -aIx -iFY -aLh -fTq -gUc -aVO -jVC -afT -afT -eLr -aVQ -uVJ -aLH -twv -bbD -rcZ -vdJ -bds -bfV -bhx -biL -okE -cHO -blG -bfc -cHV -cIa -udy -box -bWr -bvc -byf -byf -byf -byf -tLf -bMg -bMp -bPA -bUi -cTX -drK -bDc -bNp -gJG -egr -bQN -dqL -dqL -paQ -bVk -rGY -rLr -bZb -tRJ -uza -uza -xMA -eib -bQN -dqL -qYI -emD -emD -qfD -qyX -knx -maP -cmI -cbM -bUU -bUU -bUU -bUU -bUU -bUU -bUU -bUU -bUU -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(173,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -alP -anf -anf -bgv -alP -apD -aEl -anf -arx -anf -anf -alP -alP -iYK -alP -alP -alP -awG -jyu -aFw -aFw -aFw -aFw -aFw -aFw -abO -aPf -aQq -aRP -hYG -clG -aFr -aWd -aXV -aac -vgL -hcC -aWi -aYV -bfV -bhw -cHM -okE -blB -blF -cHS -cHW -cIb -bsT -box -btP -buT -byi -bzz -bAE -bBY -bDc -bEo -bFI -bHe -bIz -afx -dvO -bDc -bIv -bIR -sIs -bLe -prl -prl -prl -oVV -bWm -sij -sZy -fpR -vNp -gCA -hAo -lxt -bSO -prl -prl -prl -prl -kKM -bDb -wFs -mtK -cmI -cbM -mtK -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(174,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -alP -anf -anf -anf -lqM -anf -anf -arw -asA -asA -cUO -alP -awL -anf -qBr -apE -aBF -aBF -jyu -awF -aFw -aIB -aJJ -aKZ -aMW -aFw -tHO -tHO -vRX -aTc -aUD -aVS -tEt -kpx -bax -bbD -rcZ -vdJ -dif -bfV -bfV -biO -okE -cHP -cHR -bou -bpT -bqd -wBr -box -btS -buT -byi -bwN -bAG -bCa -bDc -bEq -bIC -oNK -bIB -daq -dYK -bDc -pnj -xzQ -sIs -jQV -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -ylC -bIx -knx -mtK -cmI -cbM -mtK -aaa -aaa -gXs -aaa -aaa -bcF -bcF -bcF -bcF -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(175,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -aaa -alP -anf -anf -anf -awG -qDx -anf -arv -asz -atA -anf -alP -awK -anf -awD -apE -anf -anf -aEC -aFx -aGM -aIy -aJG -cAz -aMK -aFw -aPg -aQr -tHO -aTb -aVQ -aVR -tEt -kpx -aUD -bbD -rcZ -vdJ -aYV -bfW -bhy -biN -okE -bni -blM -bou -cHX -cIc -wBr -buj -bWr -boO -byj -bwM -byJ -bBZ -bDc -bEp -bCX -bEJ -bIA -rQv -egt -bDc -fJp -htY -sIs -kqK -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -xYx -pCj -knx -maP -cgm -cdq -maP -gXs -gXs -gXs -gXs -gXs -bcF -wIB -wIB -wIB -bcF -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(176,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -alP -alP -alP -alP -alP -alP -alP -aqB -arx -anf -anf -anf -alP -bQd -cmW -cmW -tGa -cmW -cmW -cmW -aFw -aFw -aFw -aFw -aLb -aFw -aFw -aPi -aQt -aRQ -aVQ -aUF -aLg -tEt -kpx -vIB -tHO -lww -vdJ -aXx -bfX -bhz -biQ -okE -blC -bou -cHT -bou -cId -dbg -bsw -bDm -vgF -byk -bzD -bxv -bCc -bDc -bFQ -bDj -bDY -ibj -hGE -esK -bDc -gnd -hDb -sIs -eja -mqM -yck -yck -rlx -mqM -yck -yck -yck -yck -yck -mqM -yck -yck -yck -dby -yck -yck -yck -pCj -opF -maP -lSv -cvO -maP -aaa -aaa -gXs -aaa -aaa -bcF -wIB -nWq -wIB -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(177,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -alP -anf -qBr -anf -aoP -aoP -alP -alP -apE -alP -iYK -alP -alP -bQC -anf -anf -apE -anf -anf -aCI -aFw -aHf -aIz -aJM -aLa -cBZ -aFw -aPh -aQs -tHO -aTd -aUE -aVT -tEt -kpx -aZd -tHO -aYV -vdJ -aYV -bfX -bhy -biP -bko -blE -bnj -bov -bpU -brq -bsW -buj -bWr -buT -byk -bzC -bAH -bCb -bDc -erc -bDf -oNK -bGY -oNK -etH -bDc -gGJ -hJg -bPJ -kQg -bJN -bJN -bJN -bJN -bJN -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -bDb -cNW -maP -lSv -cvO -maP -aaa -aaa -gXs -aaa -aaa -bcF -wIB -iIh -wIB -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(178,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -gXs -gXs -alO -anf -anf -anf -anf -anf -mfc -anf -anf -anf -anf -aty -lqM -bQC -anf -asA -apE -arx -arx -aCI -aFw -aGU -aIC -aJU -aLe -aFw -aFw -aCR -aCR -aCR -aCR -aCR -aCR -aWe -aMP -aCR -aCR -bcs -vdJ -aYV -iES -bfV -bfV -bfV -bfV -bfV -box -bpW -brs -box -box -vcF -lYu -byk -byk -byk -byk -bDc -bEg -jeT -bEg -bEg -bEg -bEg -bMr -bJN -bIT -ico -lUd -bJN -mFF -qcR -rCp -ldT -bPN -tiS -tVW -wbY -xEI -bQZ -hOv -eWd -nMO -kTk -cmo -cgp -cOe -cOe -cNW -cNW -sVx -cAc -mtK -bcF -bcF -bcF -lkE -bcF -bcF -wIB -wIB -wIB -lkE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(179,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -alP -amx -anf -anf -anf -anf -alP -alP -alP -asB -asB -asB -avo -awT -avo -asB -asB -asB -aoQ -aCI -aFw -aHg -aIA -aJT -aLc -aFw -aFz -haw -aFz -aRR -aTe -aUG -aFz -aRS -aXW -baz -aCR -bcx -aWt -aYV -bfY -bhA -biR -bkq -bjZ -bvx -boz -boM -bzE -bsX -bsz -btW -bxf -bzE -bzE -bzE -bzE -bDd -cvA -biA -cBf -bzE -bHc -iYy -bsX -bzE -cvA -hox -fsC -bzE -bzE -bzE -bzE -bWo -bPK -bQO -vHt -bQO -vHt -bQZ -xaZ -cmI -ybf -fBW -cmI -cmI -cmI -cmI -cmI -cmI -lSv -cAb -cko -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(180,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -alP -alP -alP -alP -alP -anf -alP -aqD -arz -asB -atD -avL -auJ -xeu -auI -cgt -aAB -asB -aoP -aCI -aFw -aGY -aII -aJW -gKu -aMX -aFz -baW -aUI -aUI -aTg -aUI -aTg -aRS -aZg -aFz -bbF -aYV -aWv -aYU -vxX -bhB -bgp -bhU -cCL -blX -ovq -gqs -bsZ -wZy -wZy -ceX -bpH -mut -mut -cBx -mut -bAa -thG -msC -bEr -tYi -bHf -dvL -bFR -bIE -hLX -oXS -bJr -bJr -mcM -okD -okD -hyg -bJO -bmv -rOY -ltG -fXM -wQy -nXU -nXU -ceM -cgo -sNp -dxb -jgv -jgv -ydc -czS -cOb -bMB -cNW -nWq -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bcF -bcF -bcF -bcF -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(181,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -gXs -gXs -gXs -gXs -gXs -alP -anf -alP -aqC -ary -asB -atC -auJ -auI -xeu -auI -cgt -iBZ -asB -auD -aCI -aFw -aHi -aHi -aJV -aFw -aFw -aFz -baW -aTf -aPk -aTf -aUH -aPk -aRS -aZg -hqR -bbF -aYV -vdJ -aYV -bfZ -bhA -biS -bkr -blH -bvx -boy -bpX -bxd -bBD -bsA -bvH -bvf -klw -kFd -kFd -bzA -bzZ -xzS -jlv -eXW -kRC -qbG -kFd -kFd -bvH -kFd -cFi -kFd -cwD -woZ -bBD -kFd -kMf -bPK -uCq -qEv -sHk -caY -bQZ -cNW -cNW -nWA -cNW -cNW -ctZ -cNW -cNW -cmI -hBY -cNW -cNW -cNW -cNW -cNW -cNW -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(182,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -eRz -eRz -aaa -aaa -gXs -alP -sOr -alP -alP -alP -asB -atE -auI -auI -xeu -auI -toG -aAB -asB -aCR -aEi -aFw -aHl -okO -okO -aFw -aMM -aNW -aQw -aRS -aRS -aRS -aRS -aRS -aRS -aZg -aRS -bbF -aYV -vdJ -aYV -bga -bgc -bgc -bgc -bgc -bgc -boB -qaX -jrH -sve -bhA -sjr -dYq -mBm -wkN -wkN -xDk -qRI -bvK -vTF -bvK -bvK -bvK -eSG -bMs -bMs -bMs -bhA -bEt -bDn -bEz -bFS -bJT -ldT -bPN -tDw -cba -gZY -cbc -bQZ -cOe -cOe -cPA -cNW -qQH -cvO -kCx -cNW -cmI -hBY -cmr -cNW -bNB -ryM -kZR -cOT -wIB -wIB -iIh -wIB -wIB -wIB -wIB -wIB -wIB -bcF -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(183,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -gXs -gXs -alP -anf -apE -anf -anf -asB -dsk -auI -auI -xeu -auI -auI -aAz -asB -ozs -aEh -aFz -aFz -aHk -aFz -aTe -aML -aNW -wTy -aRS -aRS -aTv -nyd -aRS -aRS -aZg -aRS -bbF -bdp -aWi -aYV -bfX -bhC -eVV -bks -blI -bnn -dgS -cvA -bxd -qHw -lxd -sjr -xDk -qea -hAK -ibG -lQm -bvK -bCk -bzM -aDH -bCf -bCf -bvK -nXv -nXv -nXv -bEs -bEs -bGc -bHm -bGc -bEs -bEC -bXh -bYj -olh -bOv -lST -bQZ -cdR -hYR -ceO -cNW -cgp -cvO -cOe -cNW -cmI -bZO -cbb -cNW -reJ -aJw -aJw -cOT -wIB -wIB -wIB -wIB -wIB -wIB -wIB -iIh -nWq -wIB -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(184,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -aaa -aaa -gXs -alP -anf -alP -aqE -arA -asB -atG -ayj -awQ -eUb -bZv -azw -aAz -asB -aFz -avM -aCP -aCP -pxz -axa -axa -ayg -jhV -gyL -tVJ -cdl -tVJ -tVJ -tVJ -tVJ -aZg -aRS -bbF -aYV -vdJ -aYV -bfX -bhD -biV -biW -blK -bnp -bng -boQ -bxe -qHw -suU -mTi -xDk -tgl -qGG -oMN -ubw -bvK -bCk -bzM -kLR -myl -bCh -dGF -bMu -bMu -bMu -dGF -bQU -mJd -fvi -nWM -bXr -bEC -bOw -bYj -qEv -bOv -cka -bQZ -cdR -hYR -dwb -cNW -cNW -cvO -cNW -cNW -cNW -cOe -lSv -cuf -cOe -pUz -pUz -cOT -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bcF -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(185,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -eRz -gXs -alP -anf -alP -alP -alP -asB -atF -auJ -auJ -aAz -qtr -xOY -rpp -asB -aCQ -aFz -aFz -aFz -aFz -csT -aFz -aFz -aFz -baW -aUI -aTg -aTi -aTg -aTg -aRS -aZg -hqR -bbF -aYV -bdv -aYV -bgb -bhC -biU -biW -blJ -bno -boA -cwD -biA -qHw -bWr -bWr -gDw -hZk -cBe -icS -uCO -bvK -bxi -byp -bzJ -bFO -bCg -dGF -bMt -uSD -bNt -dGF -bQT -mPh -fvi -bSh -vDl -bEC -jHW -bYj -qEv -bZZ -bPN -bPN -bQZ -bQZ -bQZ -bQZ -cOe -cvO -cNW -aaa -cNW -cNW -wFi -cNW -cOe -pUz -pUz -cOT -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -wIB -bcF -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(186,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -eRz -gXs -alP -anf -awG -awD -aoQ -asB -atH -auJ -avO -awU -ccD -fKT -ewO -asB -aFz -aFz -aFA -aFz -aFz -aFz -aFz -aFz -aFz -baW -aTf -aTf -aPk -aUJ -aPk -aRS -aZg -aFz -bbF -aYV -vdJ -aYV -bgc -bgc -biX -bhV -bka -blZ -bnk -bpo -bvg -qHw -bWr -bWr -gDw -hZk -uNC -biw -bUq -bvK -cBu -bzM -kLR -bFO -bCj -dGF -bMw -cBE -bOE -dGF -bQT -mPh -fvi -bUn -lEW -bEC -fsD -nCl -bYm -uvi -bTl -bTl -eyF -bTl -bTl -bQZ -cou -cvO -cOT -aaa -cOT -cgm -mKh -cNW -ePi -cNW -cNW -cNW -bcF -bcF -bcF -bcF -bcF -bcF -lkE -lkE -bcF -bcF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(187,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -alO -anf -awG -anf -awF -asB -auL -auJ -auJ -bUW -pND -fKT -ewO -asB -aCR -aEm -aCR -aQv -aQv -aQv -aQv -aCR -aNY -aCR -aQA -aCR -aTj -unT -aVV -aXB -aZh -baB -aCR -beG -bdw -beG -bgc -bhE -bkv -biW -blL -biW -biW -bpX -bth -qHw -bWr -uNu -xDk -gnX -epI -uzl -cbe -bvK -iiq -bzM -bzL -bCi -bCi -dGF -bMv -bNu -bMv -dGF -nEP -mPh -bLP -bSh -kwA -bEC -bOy -bYj -bYl -uvi -bTl -bTl -bTl -bTl -ceQ -bQZ -npc -cvO -cOT -aaa -cOT -lSv -cNW -cNW -cNW -cNW -rvZ -rvZ -aaS -aaS -aaS -aaS -aaS -gXs -gXs -gXs -aaS -quT -aaS -aaS -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(188,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -alO -anf -alP -anf -awF -asB -auM -bDi -bQb -bYD -ccD -fKT -ewO -asB -aCR -bfb -aCR -aHo -aKe -aKe -aKe -aCR -aNX -aPo -aQz -aCR -aCR -aCR -aCR -aXy -aZe -aCR -aCR -aPq -bdy -beI -bgc -bhF -bib -bki -bma -gNQ -bnl -bpq -vdl -kXt -yiW -cAR -xDk -lcg -xEM -pKm -pDu -bvK -bxm -byu -bzN -byb -byb -kzT -bMx -bNw -bOF -fcG -qas -bJR -bNc -bUo -bNq -bEC -bOB -bPs -bYo -bSc -bTl -bTl -tKG -bTl -bTl -bQZ -cgu -chA -cNW -aaa -cNW -lSv -cNW -gXs -gXs -gXs -gXs -gXs -aaS -aaa -gXs -aaa -acy -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(189,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -alO -anf -anf -nfx -anf -asB -asB -asB -asB -asB -iSG -xHM -nSw -asB -aCR -aEn -aCR -aHq -aHq -aHq -aHq -aCR -aCR -aCR -aCR -aCR -aTl -aUL -aVW -aXD -aZj -baD -bbG -aPq -bdy -beH -bgc -bgc -bgc -bgc -bgc -bgc -rKc -bon -vGb -cBd -cBd -cBd -dMf -dMf -cBd -bEC -bEC -bEC -bvK -vTF -bvK -bvK -bvK -bGQ -bMv -bNv -bMv -dGF -otB -tjy -fvi -piD -upN -bQZ -lQG -bQZ -bSx -lAB -bYi -bYi -bQZ -bQZ -bQZ -bQZ -cNW -chz -cNW -cNW -cNW -lSv -cNW -aaa -aaa -aaa -aaa -aaa -aaS -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(190,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -alP -anf -anf -anf -xnE -alP -gXs -aaa -aaa -atS -gXs -gXs -gXs -atS -gXs -aaa -gXs -aaa -aaa -aaa -gXs -aMZ -aOb -aPr -wXs -cbJ -mvb -dFW -dFW -czO -aZl -baE -baE -bcA -bdz -beJ -bge -bhH -buz -buz -bnx -boB -bnr -bon -pOJ -jxy -buu -qrU -kGS -bzO -taM -bEC -rYJ -rYJ -rYJ -bFW -uky -xdF -dCN -bLi -bMz -bNy -bOH -xAo -bFU -vzp -bNc -bUn -oUq -bQZ -ulo -bQZ -bTj -rKn -uXr -uXr -bQZ -cmo -cNW -cOx -cNW -chC -ciL -cOe -cOe -clv -cOT -aaa -aaa -aaa -aaa -aaa -quT -gXs -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(191,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -alP -alP -awG -anf -anf -alP -aaa -aaa -aaa -atS -aaa -aaa -gXs -atS -gXs -aaa -gXs -aaS -aaa -aaS -gXs -aMZ -aOa -aVX -aTm -aRL -tBR -tBR -wDv -aWh -aZk -bcz -bcz -bcz -dFW -dFW -mhM -bky -bqh -qQB -blO -boB -bnq -bon -uHA -bru -gHj -gHj -gHj -xeP -bAR -bEC -pBV -fGF -bFU -bEA -voe -bGA -nWm -vmV -bMy -bNx -bOG -vmV -kOw -bSk -fvi -bUn -wfU -bQZ -tbd -bQZ -bTL -bTo -bTl -bTl -bQZ -cOe -cNW -cNW -cNW -ccp -ydc -ydc -ydc -mKh -cOT -aaa -aaa -aaa -aaa -aaa -gXs -aaa -cMQ -crC -cMQ -gXs -cMQ -crC -cMQ -gXs -cMQ -crC -cMQ -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(192,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -gXs -alP -alP -anf -dyD -alO -aaa -aaa -aaa -aaH -aaa -aaa -gXs -atS -gXs -aaa -gXs -aaS -aaa -aaS -gXs -cbJ -aOd -oSZ -oNH -cbJ -dFW -dFW -oSZ -mYO -uIi -dFW -dFW -oNH -cBl -dFW -bmd -bky -bky -bky -boH -buz -bnx -bon -mJM -psy -bsL -bsL -bsL -rAv -eFD -bEC -uUy -uUy -uUy -bFX -glg -bGF -bKa -uES -bMA -bNz -bOI -uES -lNB -lNB -bNU -vCt -bVs -bQZ -bXt -caX -rmV -itG -bTl -cbV -bQZ -cOe -ceS -cae -cNW -jVl -ciL -cjE -bMB -clw -cNW -gXs -gXs -gXs -gXs -gXs -gXs -gXs -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(193,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -alP -anf -dyD -alO -aaa -aaa -aaa -dzN -aaa -aaa -aaa -atS -gXs -aaa -gXs -aaS -aaS -aaS -gXs -cbJ -aOc -aPs -aPs -cbJ -aPs -ivS -mEJ -mYO -aZm -ivS -aPs -bcB -aPs -aPs -bme -bky -eRz -bky -bky -bky -lUO -bon -brz -brv -kxC -ifv -fVn -xkP -cYY -bEC -bEC -bEC -bEC -bEC -bEC -bGC -bEC -bEC -bEC -bEC -bEC -bEC -dMZ -bGk -dyk -ptw -bGz -bQZ -oHU -bZc -rmV -kLM -bTl -bTl -bQZ -cOe -ceR -cOe -cbv -uVS -cNW -cjD -cjD -cjD -cjD -cnj -aaa -aaa -aaa -aaa -gXs -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -gXs -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(194,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -eRz -gXs -alP -anf -dyD -qhl -gXs -gXs -gXs -atS -gXs -gXs -gXs -atS -gXs -aaa -gXs -gXs -gXs -gXs -gXs -cbJ -cbJ -cbJ -aQF -cbJ -aTn -cbJ -aNa -smh -aNa -cbJ -cyp -cbJ -bdA -cbJ -cbJ -bky -eRz -bky -chk -chk -bEG -bon -tcY -bmi -bsL -bsL -rhT -ink -pSN -ddy -rvI -bon -bEF -bky -bEO -bGK -bKc -cNW -bMB -bNA -dPT -bEC -bJZ -flc -vPE -kwK -bVt -bQZ -rmV -iAh -wxX -bTl -bTl -bTl -bQZ -cOx -cOx -ckS -cNW -jVl -cds -cjD -ckt -cly -cmw -cnj -cnj -cnj -aaa -aaa -gXs -aaa -aaa -crC -aaa -aaa -aaa -crC -aaa -aaa -aaa -crC -aaa -aaa -aaa -gXs -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(195,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eRz -gXs -alP -sDm -sDm -alP -aaa -aaa -aaa -atS -aaa -aaa -aaa -gXs -eRz -aaa -gXs -aaa -aaa -aaS -gXs -gXs -gXs -aNa -aQE -aNa -aQE -aNa -hFK -rKb -jIa -aNa -aQE -aNa -aQE -aNa -aaa -gXs -eRz -bky -coZ -iAm -bEG -bon -fqQ -wJU -bqe -nXP -bqe -npF -vPt -qrH -xgD -bon -bEE -bFY -bKb -bGG -bxW -cNX -nXU -nXU -jCq -bEC -bEC -bEC -bEC -bEC -bEC -bQZ -bQZ -bQZ -bQZ -bQZ -bQZ -bQZ -bQZ -cNW -cNW -cNW -cNW -jVl -dxS -cjF -iXf -clx -iXf -cnk -iCP -cyU -crC -crC -crC -crC -crk -crk -crk -crk -crk -crk -crk -crk -crk -crk -crk -crC -crC -ctB -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(196,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -alP -alP -alP -alP -eRz -eRz -eRz -atS -quT -gXs -gXs -eRz -eRz -aaa -gXs -aaa -aaa -aaS -gXs -gXs -aaa -aNa -aQE -aNa -aQE -aNa -jAY -nLv -fxD -aNa -aQE -aNa -aQE -aNa -gXs -gXs -bky -bky -dZX -btp -bEG -bon -bur -xfD -jyF -orP -xXe -lFP -jyF -kXf -iMA -bon -bEG -bky -bHs -bGL -bKd -cNW -bMC -cOe -jHt -shN -nXU -bqU -nXU -nXU -nXU -nXU -nXU -sNY -nXU -nXU -bSm -nXU -nXU -bOz -rXP -bSm -nXU -cct -cdu -cjG -cku -clz -cmx -cnj -cnj -cnj -aaa -aaa -gXs -aaa -aaa -crC -aaa -aaa -aaa -crC -aaa -aaa -aaa -crC -aaa -aaa -aaa -gXs -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(197,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -gXs -aaa -aaa -aaa -atS -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaS -aaS -aaS -aaa -aNa -aeR -aNa -aQE -aNa -aXG -dHL -bgd -aNa -aQE -aNa -afE -aNa -gXs -aaa -bky -bUr -gKN -jva -bEG -bon -bry -bon -bon -bon -bon -bon -bon -bon -bon -bon -bEG -bEs -bEs -bIS -bEs -bEs -bEs -cNW -sOs -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cOe -cNW -cNW -cNW -cNW -cjD -cjD -cjD -cjD -cnj -aaa -aaa -aaa -aaa -gXs -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -gXs -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(198,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aNa -aQE -aNa -aQE -aNa -aNa -aNa -aNa -aNa -aQE -aNa -aQE -aNa -gXs -aaa -bky -cbP -hUJ -btp -boH -ltd -brQ -buz -buz -buz -buz -buz -eeV -buz -buz -buz -bEI -bEs -bHu -bIV -bKf -bLk -bEs -bNC -cOe -cOe -cOe -cOe -cOe -cOe -cOe -cOe -cOe -bYr -cOe -cad -cbi -cNW -ccW -cdV -cOe -cNW -cgy -ccV -cNW -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(199,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -avT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaw -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aNa -cyh -aRW -aTo -aNa -aaa -gXs -aaa -aNa -aTo -aRW -cyr -aNa -eRz -eRz -bky -bZi -bZi -bZi -bky -bky -bky -bky -bky -brE -bky -bky -bky -bky -cNV -bky -bEs -bEs -cBA -bIU -bKe -bLj -bEs -bNB -cac -bPP -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cNW -cOe -cac -cbh -cNW -ccV -cOe -cOe -cfv -cBL -cdu -cNW -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -cMQ -crC -cMQ -gXs -cMQ -crC -cMQ -gXs -cMQ -crC -cMQ -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(200,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -afa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -gXs -aaa -bky -btp -brH -bvQ -bxt -cNT -bCm -bDh -bEs -bGd -bHv -bIW -bKe -bLm -bEs -rmX -xIa -vxh -cNW -aaa -aaa -gXs -aaa -gXs -cNW -bYs -cOe -cae -cOe -jgu -cOe -cOe -ceT -cNW -cOe -chH -cNW -gXs -gXs -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -gXs -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(201,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -eRz -eRz -eRz -gXs -bZi -bqg -brG -brG -cNR -brG -brG -bDg -bEs -bGc -bGc -bGc -bEs -bLl -bEs -cOT -cOT -cOT -cNW -aaa -aaa -gXs -aaa -gXs -cNW -cNW -cOT -cOT -cOT -cNW -cNW -cNW -cPH -cNW -cNW -cNW -cNW -gXs -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -quT -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -cMQ -crC -cMQ -aaa -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(202,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaw -aaS -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -quT -aaa -aaa -eRz -gXs -bZi -btq -brI -bvR -cNS -byx -nWC -bky -bky -gXs -gXs -gXs -gXs -aaa -gXs -gXs -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -nXv -gXs -aaa -aaa -aaa -gXs -gXs -cNW -ceU -cNW -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaS -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -gXs -aaa -quT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(203,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -eRz -gXs -bky -bky -bky -bky -bky -bky -bky -bky -gXs -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -nXv -gXs -aaa -aaa -aaa -aaa -gXs -cNW -cPI -cNW -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(204,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -eRz -gXs -gXs -gXs -aaa -gXs -gXs -gXs -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -aaa -aaa -aaa -gXs -nXv -nXv -nXv -gXs -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(205,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -eRz -eRz -eRz -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(206,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(207,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(208,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaa -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(209,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(210,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ndV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(211,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -gXs -aaS -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(212,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -gXs -aaS -aaS -aaS -aaS -aaS -aaS -quT -aaa -aaa -aaa -aaa -aaa -pNZ -aaS -quT -aaa -aaa -aaa -aaa -aaa -pNZ -aaS -aaS -aaS -aaS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cxn -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(213,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(214,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nXv -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(215,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(216,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(217,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(218,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(219,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(220,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(221,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(222,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(223,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -aaa -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(224,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bGf -bLo -bGf -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(225,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bIX -bGf -bLn -bGf -bIX -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(226,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bGf -bGf -bKh -bLo -bMD -bGf -bGf -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(227,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -bGe -bGe -bIY -bKg -bKg -bKg -bND -bGe -bGe -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(228,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -bGf -bHw -bJa -bKg -bLp -bKg -bNF -bOJ -bGf -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(229,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -bGe -bGe -bIZ -bKg -bKg -bKg -bNE -bGe -bGe -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(230,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bGf -bGf -bKi -bLr -bME -bNG -bNG -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(231,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bIX -bGf -bLq -bGf -bIX -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(232,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -bGf -bGe -bGf -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(233,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(234,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -gXs -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(235,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(236,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -gXs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(237,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(238,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(239,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(240,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(241,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(242,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(243,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(244,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(245,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(246,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(247,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(248,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(249,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(250,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(251,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(252,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(253,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(254,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} -(255,1,1) = {" -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -vVn -"} diff --git a/_maps/map_files/BoxStation/BoxStationWhite_under.dmm b/_maps/map_files/BoxStation/BoxStationWhite_under.dmm deleted file mode 100644 index 7787dcac8cae..000000000000 --- a/_maps/map_files/BoxStation/BoxStationWhite_under.dmm +++ /dev/null @@ -1,83375 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood/large, -/area/service/library) -"ad" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bookcase/random, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ae" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ag" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"ah" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"ai" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External SouthWest Bottom"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aj" = ( -/obj/machinery/button/door{ - id = "rndres"; - name = "Shutters Control Button"; - pixel_y = 32; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "rndres"; - name = "research reserve shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"al" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"am" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"ao" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ap" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aq" = ( -/obj/item/westposter, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"ar" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"as" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"at" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"au" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 5" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"aw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"ay" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"az" = ( -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"aA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"aB" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aC" = ( -/turf/open/floor/carpet, -/area/service/library) -"aE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"aF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"aG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"aH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"aI" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"aJ" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"aK" = ( -/turf/closed/wall/r_wall, -/area/cargo/exploration_dock) -"aL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"aM" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"aN" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/sparker{ - id = "executionburn"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"aO" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/security/prison) -"aP" = ( -/obj/structure/punching_bag, -/obj/effect/decal/cleanable/blood, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/fitness/kachalka) -"aQ" = ( -/turf/open/space/basic, -/area/maintenance/bottom_station_maints/north) -"aR" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"aS" = ( -/obj/machinery/door/airlock{ - id_tag = "Cab3"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aT" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/qm/perch) -"aW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"bb" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"bc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bd" = ( -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"be" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bf" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"bg" = ( -/obj/effect/landmark/start/bomj, -/obj/structure/bed/maint, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"bh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bi" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"bj" = ( -/obj/structure/bed/maint, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"bk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor2"; - req_one_access_txt = "12;63;48;50" - }, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "vroomshutter2"; - name = "Vacant Room Shutter" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"bl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bm" = ( -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"bo" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/pickaxe/mini, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"bp" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"br" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"bt" = ( -/obj/machinery/computer/sat_control{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research/abandoned) -"bv" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/wood/fifty, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"bw" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"bx" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"by" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"bz" = ( -/obj/structure/bed, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/bedsheet/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"bA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"bB" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"bC" = ( -/turf/closed/wall/r_wall, -/area/shuttle/turbolift/primary) -"bD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/library) -"bE" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"bF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"bG" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"bH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west{ - pixel_x = -23 - }, -/turf/open/floor/carpet, -/area/service/library) -"bJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"bK" = ( -/turf/closed/wall/r_wall, -/area/cargo/warehouse) -"bL" = ( -/obj/item/stack/ammonia_crystals, -/obj/item/stack/ammonia_crystals, -/obj/item/stack/ammonia_crystals, -/obj/item/stack/ammonia_crystals, -/obj/item/stack/ammonia_crystals, -/obj/structure/rack, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"bM" = ( -/obj/structure/table, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare{ - pixel_y = 4 - }, -/obj/item/flashlight/flare{ - pixel_y = 8 - }, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"bN" = ( -/turf/open/floor/grass, -/area/service/hydroponics) -"bO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/space) -"bP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"bQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/meeting_room) -"bS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/breakroom) -"bT" = ( -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"bV" = ( -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"bW" = ( -/obj/structure/cable, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"bX" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"bZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"cb" = ( -/turf/open/floor/plating, -/area/engineering/storage/tech) -"cd" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"cf" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"cg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ci" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"cj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/meeting_room) -"ck" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/security/prison) -"cl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"cm" = ( -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"cn" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"co" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"cp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"cr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ct" = ( -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"cv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"cw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"cx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"cy" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"cz" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"cA" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"cB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"cC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/service/library) -"cD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/tank_holder/extinguisher{ - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"cE" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Atmospherics"; - req_one_access_txt = "65" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"cF" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"cG" = ( -/obj/machinery/camera{ - c_tag = "MiniSat Antechamber Bottom"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cH" = ( -/obj/structure/sign/departments/mait, -/turf/closed/wall, -/area/maintenance/bottom_station_maints) -"cL" = ( -/obj/item/reagent_containers/syringe, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"cM" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"cN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"cO" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"cP" = ( -/obj/structure/rack, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQ" = ( -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/engine, -/area/science/research/abandoned) -"cR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmospherics_engine) -"cS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"cU" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"cV" = ( -/obj/effect/loot_site_spawner, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"da" = ( -/turf/closed/wall, -/area/cargo/warehouse) -"db" = ( -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"dc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"dd" = ( -/obj/structure/closet/emcloset, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"de" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"df" = ( -/obj/machinery/skill_station, -/turf/open/floor/wood/parquet, -/area/service/library) -"dg" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"di" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/space) -"dj" = ( -/turf/closed/wall, -/area/commons/dorms) -"dl" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/security/prison) -"dn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"dp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port) -"dq" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"dr" = ( -/obj/structure/table, -/obj/item/radio/headset/headset_exploration, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"ds" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"dt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"du" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"dv" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 4" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"dw" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"dx" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"dy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"dB" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x5, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"dC" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"dD" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"dE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dF" = ( -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"dG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"dH" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"dJ" = ( -/obj/structure/table, -/obj/item/pen, -/obj/item/instrument/harmonica, -/turf/open/floor/plasteel, -/area/security/prison) -"dK" = ( -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"dL" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"dM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "executionflash"; - pixel_x = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"dP" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"dQ" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat/service"; - name = "Service Bay Turret Control"; - pixel_x = 27; - req_access = null; - req_access_txt = "65" - }, -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"dR" = ( -/turf/open/indestructible/turbolift, -/area/shuttle/turbolift/primary) -"dS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"dT" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"dW" = ( -/obj/structure/stairs/west, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/turf/open/floor/plating, -/area/security/prison) -"eb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/item/storage/secure/safe{ - pixel_x = -23 - }, -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"ed" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"eh" = ( -/obj/machinery/lazylift/master, -/turf/open/indestructible/turbolift, -/area/shuttle/turbolift/primary) -"ei" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"ej" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ek" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"el" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"em" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"en" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"eo" = ( -/obj/effect/turf_decal/siding/wideplating/dark/end{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/fuel_pellet, -/obj/item/fuel_pellet, -/obj/item/fuel_pellet, -/turf/open/floor/plating, -/area/cargo/qm/perch) -"ep" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"er" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"et" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"eu" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x10, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ev" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"ew" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"ex" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"ey" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"eC" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eE" = ( -/obj/machinery/door/airlock/command/glass{ - name = "EVA Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"eF" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"eG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"eH" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"eI" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/tcommsat/server/upper) -"eJ" = ( -/obj/machinery/scanner_gate, -/turf/open/floor/plating, -/area/security/prison) -"eK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"eN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"eO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"eP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table_frame, -/obj/item/wirerod, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eQ" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"eU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"eW" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"eX" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"eY" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"eZ" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 6" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"fa" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"fb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"fc" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"fd" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fe" = ( -/turf/closed/wall, -/area/maintenance/space_hut) -"fg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"fh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"fi" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"fj" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"fl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/wood/large, -/area/service/library) -"fm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"fn" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"fq" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"fr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"fs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"ft" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel, -/area/security/prison) -"fu" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"fv" = ( -/obj/structure/bookcase/random/religion, -/turf/closed/wall, -/area/service/library) -"fw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"fx" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x10, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"fz" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Xenobiology External Airlock"; - opacity = 0 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"fA" = ( -/turf/closed/wall, -/area/service/library) -"fC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/mining{ - name = "Exploration Bay"; - req_one_access_txt = "31;49" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"fD" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"fE" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"fF" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"fH" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"fJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"fK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"fL" = ( -/obj/structure/grille, -/obj/structure/window{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"fM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"fO" = ( -/obj/structure/rospilovo/cover{ - pixel_x = 16 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"fP" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"fQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"fS" = ( -/obj/machinery/button/door{ - id = "xenobio4"; - layer = 3.3; - name = "Xenobio Pen 4 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"fT" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"fV" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"fZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"gb" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gd" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ge" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"gg" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"gi" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gj" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 1; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 1; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"gk" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gl" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"gn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"go" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"gp" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/space) -"gq" = ( -/obj/structure/displaycase/trophy, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/wood/parquet, -/area/service/library) -"gr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"gs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"gt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"gw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"gx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gy" = ( -/turf/closed/wall/r_wall, -/area/service/fitness) -"gz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gA" = ( -/obj/structure/chair/stool, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -30; - prison_radio = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"gD" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"gE" = ( -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"gG" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Exploration Bay" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"gJ" = ( -/obj/machinery/door/airlock{ - id_tag = "Cab4"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"gK" = ( -/obj/machinery/flasher{ - id = "visitorflash"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"gM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/dresser, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"gN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gO" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Starboard Aft"; - dir = 8; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"gQ" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"gR" = ( -/obj/structure/rospilovo/komod{ - pixel_x = -4; - pixel_y = 10 - }, -/obj/structure/rospilovo/radio{ - pixel_x = -4; - pixel_y = 28 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"gT" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/box, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"gU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gV" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/parquet, -/area/service/library) -"gW" = ( -/obj/structure/table, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"gY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"gZ" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"ha" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"hb" = ( -/obj/structure/rospilovo/doski/doski4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"hc" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"hd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"he" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "NT SS13: Arrivals dock"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"hf" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"hi" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"hj" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"hk" = ( -/obj/machinery/door/firedoor, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"hl" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/stairs/west{ - invisibility = 101; - layer = 2 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hn" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"ho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"hp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"hr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"ht" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"hu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hx" = ( -/turf/closed/wall, -/area/ai_monitored/command/nuke_storage) -"hy" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"hz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Chamber Observation"; - req_one_access_txt = "65" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"hA" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/security/prison) -"hB" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 8"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"hF" = ( -/obj/structure/table, -/obj/item/weldingtool, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hG" = ( -/obj/structure/bed/maint, -/obj/item/toy/plush/bear, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"hH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"hI" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"hJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hK" = ( -/obj/machinery/telecomms/relay/preset/station, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"hL" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"hM" = ( -/turf/closed/wall, -/area/maintenance/bottom_station_maints/east) -"hN" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints) -"hO" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"hQ" = ( -/obj/structure/table, -/obj/item/electropack{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"hT" = ( -/obj/structure/ladder, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"hU" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"hW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/tier_2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"hX" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hZ" = ( -/obj/machinery/light/floor, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"ib" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"id" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External South Bottom"; - network = list("minisat"); - start_active = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ie" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/indestructible/turbolift, -/area/shuttle/turbolift/primary) -"if" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"ig" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ih" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"ii" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"ij" = ( -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"ik" = ( -/obj/structure/stairs/south, -/turf/open/floor/wood, -/area/service/library) -"il" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ip" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"iq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"ir" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"is" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"it" = ( -/obj/machinery/button/door{ - id = "permaouter"; - name = "Outer Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = -7; - req_access_txt = "2"; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - id = "permainner"; - name = "Inner Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - pixel_y = 7; - req_access_txt = "2"; - specialfunctions = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/indestructible/turbolift, -/area/shuttle/turbolift/primary) -"iy" = ( -/obj/machinery/door/firedoor/closed, -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"iz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"iA" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/maintenance/space_hut) -"iC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"iE" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"iF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"iG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/space) -"iI" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"iK" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 16; - pixel_y = 5 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iL" = ( -/obj/machinery/door/firedoor/closed, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"iN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"iO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"iP" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"iQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"iR" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"iS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"iT" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/fore) -"iU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"iV" = ( -/obj/machinery/mass_driver/shack{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/space_hut) -"iW" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"iY" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iZ" = ( -/obj/effect/spawner/randomarcade{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ja" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"jb" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"jc" = ( -/obj/structure/disposalpipe/trunk/multiz{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/white/box, -/turf/open/floor/plating, -/area/service/hydroponics) -"je" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ji" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"jk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"jl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"jm" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"jn" = ( -/obj/machinery/atmospherics/components/binary/circulator/cold{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"jo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"jq" = ( -/turf/closed/wall/r_wall, -/area/cargo/exploration_prep) -"jr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"js" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"jt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"ju" = ( -/obj/item/food/fishmeat/carp/dry, -/obj/item/food/fishmeat/carp/dry/donbas, -/obj/item/food/fishmeat/carp/dry/donbas, -/obj/item/food/fishmeat/carp/dry/donbas, -/obj/effect/spawner/lootdrop/maint_drugs, -/obj/effect/spawner/lootdrop/maint_drugs, -/obj/structure/table/rospilovo, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"jv" = ( -/obj/structure/sign/departments/xenobio{ - pixel_x = -32 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"jw" = ( -/obj/structure/table, -/obj/item/clothing/mask/surgical, -/turf/open/floor/engine, -/area/science/xenobiology) -"jx" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"jz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"jA" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"jB" = ( -/turf/closed/wall/r_wall, -/area/cargo/meeting_room) -"jC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"jD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"jF" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/item/hand_labeler, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"jG" = ( -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/window/westright{ - dir = 1; - name = "Transfer Room"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"jJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"jK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"jL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research/abandoned) -"jM" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"jN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"jO" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"jP" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"jQ" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"jR" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"jS" = ( -/obj/structure/bookcase/random/fiction, -/turf/closed/wall, -/area/service/library) -"jU" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"jW" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"jX" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 2"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"jY" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"ka" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"kb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"kd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"ke" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"kf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/space) -"kg" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/turret_protected/aisat/hallway) -"kh" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ki" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"kj" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"kk" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"km" = ( -/obj/machinery/vending/sustenance, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"ko" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"kq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"ks" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"kt" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"ku" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"kv" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"kw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor"; - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"kz" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"kA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"kB" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"kC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/fitness) -"kD" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/maintenance/bottom_station_maints) -"kE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"kG" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"kH" = ( -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"kI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"kJ" = ( -/turf/open/space/basic, -/area/space/nearstation) -"kL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"kN" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Mass Driver"; - req_access_txt = "12" - }, -/obj/machinery/door/window{ - name = "Mass Driver"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/shack{ - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"kO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"kP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"kQ" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port) -"kS" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"kT" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"kU" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"kV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"kW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"kY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"kZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"la" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Permabrig Kitchen" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lb" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"lc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"ld" = ( -/obj/structure/table, -/obj/machinery/oven, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"lf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"li" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"lj" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cab3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"ll" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"lm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ln" = ( -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"lo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"lp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"lq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) -"lr" = ( -/obj/machinery/computer/bookmanagement, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/prison) -"lt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research/abandoned) -"lw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"ly" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"lz" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"lA" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/atmos) -"lB" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"lC" = ( -/obj/structure/rack, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "EVA South"; - dir = 1 - }, -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"lD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/service/library) -"lE" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lF" = ( -/obj/machinery/autolathe/hacked, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"lG" = ( -/obj/structure/table/wood, -/obj/item/coin/silver, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"lH" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"lI" = ( -/obj/structure/table, -/obj/item/razor, -/obj/item/storage/backpack/duffelbag/sec/surgery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"lJ" = ( -/obj/structure/holosign/barrier/atmos, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"lK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"lL" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"lM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/closet/secure_closet/injection, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"lN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "executionfireblast"; - name = "Transfer Area Lockdown"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "2" - }, -/obj/machinery/button/flasher{ - id = "executionflash"; - pixel_x = 24; - pixel_y = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"lP" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"lQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/fitness/kachalka) -"lV" = ( -/obj/machinery/atmospherics/components/binary/circulator/flipped{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"lW" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"lY" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ma" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"mc" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"md" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"me" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"mf" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mg" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"mi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"mj" = ( -/obj/machinery/hydroponics/soil, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mk" = ( -/obj/machinery/lazylift_button, -/turf/closed/wall/r_wall, -/area/shuttle/turbolift/primary) -"mm" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"mo" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"mr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"ms" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mt" = ( -/obj/machinery/mecha_part_fabricator/maint, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mu" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"mv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"mw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/west) -"mx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"mA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"mB" = ( -/obj/structure/rospilovo/doski, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"mC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research/abandoned) -"mD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"mE" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/griddle, -/turf/open/floor/plasteel, -/area/security/prison) -"mF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"mG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"mH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"mI" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"mJ" = ( -/obj/structure/ladder, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"mK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/stripes{ - dir = 5 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"mM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"mP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/north) -"mR" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"mS" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"mT" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"mV" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"mW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"mY" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"mZ" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/service/hydroponics) -"na" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"nb" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"nc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"nd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/research{ - name = "Research Break Room"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/breakroom) -"ne" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"ng" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"nh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"nk" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit/departure_lounge) -"nl" = ( -/obj/machinery/button/door{ - id = "xenobio2"; - layer = 3.3; - name = "Xenobio Pen 2 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"nm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"nn" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"no" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"nq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"nr" = ( -/obj/machinery/light/floor, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"ns" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"nt" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"nv" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Exploration Bay" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"nw" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"nx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"ny" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "vroomshutter2"; - name = "Vacant Room Shutter" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"nz" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x3, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"nA" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"nB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"nC" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space/nearstation) -"nD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"nE" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"nF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"nH" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"nI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/storage/eva"; - dir = 1; - name = "EVA Storage APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"nJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/curtain/red, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/service/library) -"nK" = ( -/turf/closed/wall/r_wall, -/area/service/fitness/kachalka) -"nM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"nO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"nQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"nR" = ( -/obj/structure/table, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"nS" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints) -"nT" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/smartfridge/disks, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"nU" = ( -/obj/structure/rospilovo/switcher, -/turf/closed/wall, -/area/maintenance/bottom_station_maints/north) -"nV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/service/library) -"nX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"nZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"oa" = ( -/turf/closed/wall/rust, -/area/maintenance/space_hut/plasmaman) -"ob" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"oc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"od" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/research/abandoned) -"oe" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"og" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"oh" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"oi" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"oj" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"ol" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"om" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"on" = ( -/obj/structure/table, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"ou" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"ov" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"ow" = ( -/obj/structure/rospilovo/battery{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 12; - pixel_y = 20 - }, -/obj/structure/rospilovo/televizor/broken{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ox" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port) -"oy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Hall - Fore"; - dir = 6; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"oz" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"oB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"oE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"oF" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"oG" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"oI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"oM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"oN" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"oO" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"oP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/tcommsat/server/upper) -"oQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"oR" = ( -/obj/structure/table, -/obj/item/electropack, -/obj/item/screwdriver, -/obj/item/wrench, -/obj/item/clothing/head/helmet, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/button/ignition{ - id = "executionburn"; - pixel_x = -24; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "executionspaceblast"; - name = "Vent to Space"; - pixel_x = -25; - pixel_y = -5; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"oS" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"oT" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/prison) -"oU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"oV" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"oW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"oX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"pa" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/hallway) -"pb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"pc" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"pd" = ( -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"pe" = ( -/obj/structure/rospilovo/doski/doski2, -/obj/structure/rospilovo/painting/stalin{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = -9; - pixel_y = 19 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"pf" = ( -/turf/closed/wall, -/area/maintenance/port) -"pg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"ph" = ( -/obj/machinery/power/generator, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"pi" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/floor/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"pk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"pm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"pp" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"pq" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x5, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"pr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"ps" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"pt" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External SouthEast Bottom"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/painmachine, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"pw" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"px" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"py" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"pA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"pB" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"pC" = ( -/obj/machinery/button/door{ - id = "xenobio9"; - layer = 3.3; - name = "Xenobio Pen 9 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"pF" = ( -/obj/machinery/iv_drip, -/turf/open/floor/engine, -/area/science/xenobiology) -"pH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"pI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"pJ" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"pK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/structure/table, -/obj/item/gun/ballistic/rifle/boltaction/taser, -/obj/item/gun/ballistic/rifle/boltaction/taser, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"pM" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"pN" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"pP" = ( -/obj/structure/dresser, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"pQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"pT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"pU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"pV" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"pW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"pZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"qb" = ( -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"qd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"qf" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/research/abandoned) -"qg" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x10, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"qh" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"qj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"qk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ql" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"qm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"qn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/hydroponics) -"qo" = ( -/obj/item/bedsheet/random, -/obj/structure/bed/maint, -/obj/machinery/button/door{ - id = "cells"; - name = "Shutters Control Button"; - pixel_x = -24; - pixel_y = 8; - req_access_txt = "29" - }, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/effect/decal/cleanable/cum, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"qq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"qr" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"qs" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"qt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"qu" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"qv" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"qw" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/corner, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"qz" = ( -/obj/machinery/power/apc{ - areastring = "/area/security/execution/transfer"; - dir = 4; - name = "Prisoner Transfer Centre"; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"qA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/service/library) -"qB" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"qC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 5"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"qD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"qE" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"qF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"qH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"qI" = ( -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -30; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"qK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"qM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qN" = ( -/obj/structure/rospilovo/vanna{ - pixel_x = 6; - pixel_y = 12 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"qO" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"qP" = ( -/obj/structure/chair/sofa/corp{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"qQ" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"qR" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"qS" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"qT" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"qU" = ( -/obj/structure/table/reinforced, -/obj/structure/window{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/security/prison) -"qW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"qZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ra" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rb" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rd" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ri" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"rj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rk" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/prison) -"rl" = ( -/obj/structure/table, -/obj/item/storage/bag/plants/portaseeder, -/obj/item/storage/bag/plants/portaseeder, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"rm" = ( -/turf/closed/wall, -/area/maintenance/bottom_station_maints) -"rn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/book/manual/chef_recipes, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"rp" = ( -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"rq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/vending_refill/custom, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"rs" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Common Room" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"ru" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"rv" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"rw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"rx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"ry" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"rz" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"rA" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 1 North"; - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/floor/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"rD" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"rE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"rF" = ( -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"rG" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"rH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"rI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"rJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"rK" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"rL" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/maintenance/bottom_station_maints) -"rM" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints) -"rN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light/blacklight, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"rO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"rP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"rQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rR" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rS" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/structure/table, -/obj/machinery/door_buttons/access_button, -/obj/item/clothing/mask/gas{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"rU" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"rW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"rX" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"rY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"rZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"sb" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sc" = ( -/obj/structure/rospilovo/shina3, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"se" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research/abandoned) -"sf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/prison) -"sg" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Dorm 6" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"sh" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck{ - pixel_x = 2 - }, -/obj/item/clothing/mask/balaclava{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"sk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"sm" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"sn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"so" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"sp" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"sq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"ss" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz{ - color = "#ffc600"; - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"st" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"su" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sv" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"sw" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"sx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Service Bay"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"sy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"sA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"sB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sC" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"sE" = ( -/obj/machinery/button/door{ - id = "xenobio11"; - layer = 3.3; - name = "Xenobio Pen 11 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"sF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"sG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"sI" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"sJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sK" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"sM" = ( -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Prisoner Transfer Centre"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"sN" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"sP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"sQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"sR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"sS" = ( -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"sT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/reagent_dispensers/servingdish, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/security/prison) -"sU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"sW" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"sX" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"sY" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port) -"ta" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/security/prison) -"tb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/commons/dorms) -"td" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/smartfridge/drying_rack, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"te" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"tf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"tg" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"ti" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"tj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"tk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"tl" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"tm" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"tp" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"tq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"tr" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plasteel/monofloor, -/area/space) -"ts" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"tt" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/siding/thinplating/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"tu" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder/constructed, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"tw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"tx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ty" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"tz" = ( -/obj/structure/table, -/obj/item/kitchen/fork/plastic, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"tB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"tC" = ( -/obj/structure/table, -/obj/item/lighter/greyscale{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/kitchen/spoon{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical/old{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"tD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/xenobiology) -"tE" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"tF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"tG" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"tH" = ( -/obj/machinery/button/door{ - id = "xenobio8"; - layer = 3.3; - name = "Xenobio Pen 8 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"tI" = ( -/obj/structure/curtain/red, -/turf/open/floor/carpet, -/area/service/library) -"tJ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/port) -"tK" = ( -/obj/structure/stairs/east, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"tL" = ( -/obj/structure/chair, -/obj/machinery/flasher{ - id = "transferflash"; - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"tM" = ( -/obj/item/airlock_painter, -/obj/structure/lattice, -/obj/structure/closet, -/turf/open/openspace/airless, -/area/space/nearstation) -"tN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"tP" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"tQ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"tR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"tS" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"tT" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"tV" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"tW" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x5, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"tX" = ( -/obj/item/stack/rods/fifty, -/turf/open/floor/plating, -/area/security/prison) -"tY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"tZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/prison) -"ua" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"ub" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Kill Chamber"; - normalspeed = 0; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"uc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"ud" = ( -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman/biogen, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"ue" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "49" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"uf" = ( -/obj/item/beacon, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"ug" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"uh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"uj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"ul" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"um" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"un" = ( -/turf/closed/wall, -/area/engineering/storage_shared) -"up" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ur" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"us" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"uu" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External NorthEast Bottom"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"uv" = ( -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"uw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"ux" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"uy" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel, -/area/security/prison) -"uz" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 7"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"uA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small, -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"uB" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"uC" = ( -/turf/closed/wall, -/area/service/fitness) -"uD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"uE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"uF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"uJ" = ( -/obj/machinery/door/airlock/security{ - name = "Permabrig Visitation" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"uM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/fans/tiny, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"uN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"uP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"uQ" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/security/prison) -"uR" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"uS" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -27; - pixel_y = 4 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"uT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"uU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"uV" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server/upper) -"uX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/arrows{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"uY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"uZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"va" = ( -/obj/structure/lattice, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/space/basic, -/area/space/nearstation) -"vb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"vc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"vd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ve" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"vg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vh" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"vi" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vj" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vk" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"vl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"vm" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vn" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vp" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"vr" = ( -/obj/machinery/light, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"vt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"vu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vw" = ( -/obj/structure/bookcase/random, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vB" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"vD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/exploration_dock) -"vF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"vG" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"vH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"vI" = ( -/obj/structure/closet/crate, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/onion, -/obj/item/food/grown/onion, -/obj/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/obj/item/food/meat/rawcutlet/plain, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"vK" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"vL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"vN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"vO" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"vP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"vQ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/hydroponics/soil, -/turf/open/floor/plasteel, -/area/security/prison) -"vR" = ( -/obj/effect/landmark/start/bomj, -/obj/structure/chair/brevno/log2, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"vS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"vV" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vW" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vX" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/potato, -/obj/item/seeds/tomato, -/obj/item/seeds/carrot, -/obj/item/seeds/grass, -/obj/item/seeds/ambrosia, -/obj/item/seeds/wheat, -/obj/item/seeds/pumpkin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/prison) -"vY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/emergency/old{ - pixel_y = 7 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"vZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"wa" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"wb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"wc" = ( -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/space/nearstation) -"wd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/pen{ - desc = "Writes upside down!"; - name = "astronaut pen" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"wf" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/security/prison) -"wg" = ( -/obj/machinery/portable_atmospherics/canister/bz, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"wh" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"wl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wn" = ( -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"wp" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"wq" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"ws" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"wt" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wu" = ( -/obj/structure/cable, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"wv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"ww" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"wy" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"wz" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"wA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"wB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wC" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"wD" = ( -/obj/machinery/autolathe, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wE" = ( -/obj/structure/holohoop, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"wF" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"wI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"wJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"wL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wN" = ( -/obj/machinery/navbeacon/wayfinding/eva, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"wP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"wQ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"wR" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/science/xenobiology) -"wS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"wT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"wU" = ( -/obj/machinery/effector, -/turf/closed/wall/r_wall, -/area/service/fitness/kachalka) -"wV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"wW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"wX" = ( -/obj/machinery/vending/chetverochka, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wY" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"wZ" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = -9; - pixel_y = 13 - }, -/obj/item/toy/crayon/spraycan{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"xa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"xb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"xc" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 5"; - req_access_txt = "55" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xd" = ( -/obj/machinery/camera/autoname, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"xf" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"xg" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xh" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"xi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/exploration_prep) -"xj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"xk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"xn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"xp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/hydroponics) -"xq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"xr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"xt" = ( -/obj/structure/table, -/obj/item/scalpel{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xu" = ( -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"xw" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"xy" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cab4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"xz" = ( -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"xA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/tile/brown, -/obj/structure/table, -/obj/item/book/manual/wiki/telescience, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"xD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"xE" = ( -/obj/machinery/door/window/southleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "Gas Storage"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 6 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"xF" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xH" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"xI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/security/prison) -"xJ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"xK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/wood/parquet, -/area/service/library) -"xO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"xP" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/item/reagent_containers/food/drinks/thermos{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"xQ" = ( -/obj/machinery/button/door{ - id = "vroomshutter2"; - name = "Vacant Room Shutter Control"; - pixel_x = 26; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/item/circuitboard/machine/vendor, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"xR" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"xS" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"xU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating/rust, -/area/maintenance/bottom_station_maints) -"xV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"xW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"xX" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"xY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"xZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ya" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"yb" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/starboard/fore) -"yc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"yd" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"ye" = ( -/turf/closed/wall, -/area/maintenance/bottom_station_maints/south) -"yf" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"yg" = ( -/obj/structure/table/reinforced, -/obj/item/food/energybar, -/obj/structure/window{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"yh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"yj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"yk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/carpet, -/area/service/library) -"yl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/fitness/kachalka) -"ym" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"yq" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark/end, -/obj/item/radio/intercom{ - pixel_y = -35 - }, -/turf/open/floor/plating, -/area/cargo/qm/perch) -"yr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ys" = ( -/obj/machinery/door/airlock/command{ - name = "EVA"; - req_access_txt = "18" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"yt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"yu" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/machinery/door/poddoor/shutters/prison, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"yv" = ( -/obj/structure/closet/crate/large, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"yw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"yx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"yz" = ( -/obj/structure/sink/kitchen{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"yB" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"yE" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber South Bottom"; - dir = 1; - network = list("aicore") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"yH" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"yI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"yK" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/storage/box/drinkingglasses, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/box/drinkingglasses, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/white, -/area/security/prison) -"yL" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"yM" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"yO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"yR" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/decal/cleanable/cum, -/obj/structure/cable, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"yS" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"yT" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"yU" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"yW" = ( -/obj/machinery/light/floor, -/obj/structure/cable, -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"yX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"yY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"yZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"za" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"zb" = ( -/obj/structure/sign/warning/coldtemp, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"zc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ze" = ( -/turf/closed/wall, -/area/service/fitness/kachalka) -"zf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"zi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"zj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/toilet/greyscale{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"zk" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/head/welding, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"zl" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"zm" = ( -/obj/machinery/exoscanner, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"zn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/plate_press, -/turf/open/floor/plasteel, -/area/security/prison) -"zp" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"zs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/tier_2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"zt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"zu" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"zv" = ( -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/xenobiology) -"zw" = ( -/turf/open/floor/plating, -/area/security/prison) -"zx" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"zy" = ( -/turf/closed/wall/r_wall, -/area/science/research/abandoned) -"zz" = ( -/obj/machinery/light, -/obj/machinery/chem_master/condimaster, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"zA" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 9"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"zB" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"zE" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"zF" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"zG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"zH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"zK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"zL" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/cable, -/obj/item/radio/intercom{ - pixel_x = 0; - pixel_y = 29 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"zM" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"zN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/siding/thinplating, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"zP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"zS" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"zT" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"zV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"zX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"zY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Aa" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Ab" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Ac" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"Ad" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Ae" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"Af" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Ag" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 5 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"Ah" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Ak" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/fitness/kachalka) -"Al" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"Am" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"An" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Ao" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"Ap" = ( -/obj/machinery/light, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"Aq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"Ar" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"As" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Au" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"Aw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"Ax" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/screwdriver, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"AA" = ( -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"AB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"AC" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"AD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"AE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel, -/area/security/prison) -"AF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"AG" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"AH" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel, -/area/security/prison) -"AJ" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"AK" = ( -/obj/machinery/light, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"AO" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"AP" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"AQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Port Mid"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"AR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"AS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"AV" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"AW" = ( -/obj/structure/table, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/security/prison) -"AX" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"AY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"AZ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"Bb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Bc" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/bottom_station_maints) -"Bd" = ( -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"Bf" = ( -/obj/structure/table, -/obj/item/rack_parts, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Bg" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Bj" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Bl" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"Bm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"Bo" = ( -/obj/structure/table, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/security/prison) -"Bp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Bq" = ( -/obj/structure/chair/office, -/turf/open/floor/wood/parquet, -/area/service/library) -"Bs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"Bt" = ( -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"Bv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/security/execution/transfer) -"Bx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"BA" = ( -/obj/structure/table, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/southleft, -/turf/open/floor/plasteel, -/area/security/prison) -"BB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"BC" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"BD" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"BE" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/fitness/kachalka) -"BG" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/space) -"BH" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"BI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"BJ" = ( -/turf/closed/wall, -/area/security/prison/safe) -"BK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/science/research/abandoned) -"BL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"BM" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"BN" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat/service"; - dir = 4; - name = "MiniSat Service Bay APC"; - pixel_x = 24 - }, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"BO" = ( -/turf/closed/wall/r_wall, -/area/science/breakroom) -"BP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"BQ" = ( -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"BR" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"BS" = ( -/obj/machinery/camera{ - c_tag = "Prison Public Area"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"BT" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"BU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"BV" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"BW" = ( -/obj/structure/rospilovo/intercom{ - pixel_x = -32 - }, -/obj/machinery/hydroponics/soil, -/obj/item/seeds/berry, -/obj/item/seeds/berry, -/obj/item/seeds/berry, -/obj/item/seeds/berry, -/turf/open/floor/noslip, -/area/maintenance/bottom_station_maints/north) -"BX" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"BZ" = ( -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -30; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ca" = ( -/obj/structure/ladder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"Cb" = ( -/turf/open/floor/plasteel/monofloor, -/area/space) -"Cc" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Cd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"Cf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Cg" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/service/hydroponics) -"Ch" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Ci" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Cj" = ( -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Ck" = ( -/turf/closed/wall, -/area/cargo/exploration_dock) -"Cl" = ( -/obj/structure/tank_holder/oxygen/red, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Co" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Yard" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Cp" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Cq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Cr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Ct" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/melee/flyswatter, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/queen_bee/bought, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/suit/beekeeper_suit, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"Cu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Cv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"Cw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Cy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"CA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"CB" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Service Bay"; - req_one_access_txt = "65" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"CC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"CD" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/parquet, -/area/service/library) -"CE" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"CF" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"CG" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck, -/obj/item/storage/pill_bottle/dice{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/ashtray{ - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"CH" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"CI" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Bay 1 South" - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/floor/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"CJ" = ( -/obj/machinery/door/firedoor, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"CK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science Requests Console"; - pixel_x = -30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research/abandoned) -"CN" = ( -/obj/machinery/space_heater/improvised_chem_heater, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"CP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"CR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"CS" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"CT" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 8; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 8; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"CU" = ( -/obj/machinery/light/small/red, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"CV" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 10"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"CW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"CX" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"CY" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"CZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Da" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"Db" = ( -/obj/structure/stairs/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"Dc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Dd" = ( -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmospherics_engine) -"De" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Df" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"Dh" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"Dj" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"Dk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"Dl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"Dn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Do" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Dp" = ( -/obj/structure/bookcase/random/adult, -/turf/closed/wall, -/area/service/library) -"Dq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Ds" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"Dt" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Du" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Dv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"Dx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"Dy" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"Dz" = ( -/obj/structure/table, -/obj/item/clothing/suit/hooded/wintercoat/science, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"DB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"DC" = ( -/obj/structure/closet/crate/maint, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port) -"DD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 1; - id = "vroomshutter2"; - name = "Vacant Room Shutter" - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"DE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "18" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"DF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"DH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"DJ" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"DK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining{ - name = "Exploration Bay"; - req_one_access_txt = "31;49" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"DM" = ( -/obj/machinery/camera{ - c_tag = "Xeno Test Chamber"; - dir = 4; - network = list("ss13","test","rd","xeno") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"DN" = ( -/obj/effect/turf_decal/stripes/line, -/mob/living/simple_animal/bot/atmosbot{ - auto_patrol = 0 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"DP" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"DS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"DT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"DU" = ( -/obj/machinery/button/door{ - id = "xenobio10"; - layer = 3.3; - name = "Xenobio Pen 10 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"DV" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/power/apc{ - name = "Lower Hydroponics APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"DW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"DX" = ( -/obj/structure/chair, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ec" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ee" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/exodrone, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"Ef" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"Eg" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Eh" = ( -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Ei" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Ej" = ( -/obj/machinery/button/door{ - id = "xenobio6"; - layer = 3.3; - name = "Xenobio Pen 6 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"Ek" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"El" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Em" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"En" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/security/prison) -"Eo" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Ep" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Eq" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Er" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"Et" = ( -/obj/effect/landmark/start/bomj, -/obj/structure/chair/brevno, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Eu" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/vendor/exploration, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"Ev" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"Ew" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Ex" = ( -/turf/closed/wall, -/area/maintenance/bottom_station_maints/west) -"Ey" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/internals, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"EB" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmospherics_engine) -"EF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"EH" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Dorm 5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"EL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"EM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"EN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"EP" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"EQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ER" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"EU" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"EW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"EX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"EY" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"EZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"Fa" = ( -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"Fb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Fd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"Fe" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"Fg" = ( -/turf/closed/wall, -/area/cargo/exploration_prep) -"Fh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Fi" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"Fj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Fk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Fl" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/service/fitness) -"Fn" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Fo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Fp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Fq" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"Fr" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"Ft" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Fu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/science{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"Fv" = ( -/obj/structure/stairs/south, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"Fw" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"Fx" = ( -/obj/structure/cable, -/obj/item/wrench, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Fy" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Fz" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"FA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"FC" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/qm/perch) -"FE" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"FF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"FG" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"FI" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"FK" = ( -/obj/machinery/button/door{ - id = "misclab"; - name = "Test Chamber Blast Doors"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "55" - }, -/obj/machinery/button/door{ - id = "xenobiomain"; - name = "Containment Blast Doors"; - pixel_x = 26; - pixel_y = -38; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"FL" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"FN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"FO" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Forestry" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/prison) -"FP" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"FR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"FS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - id_tag = "commissarydoor"; - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"FT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"FV" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"FW" = ( -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"FX" = ( -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"FZ" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Ga" = ( -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"Gb" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"Ge" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"Gf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Gg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"Gh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"Gi" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"Gj" = ( -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/science/breakroom) -"Gk" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"Gl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/service/hydroponics) -"Gm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Gn" = ( -/obj/structure/bookcase/random/reference, -/turf/closed/wall, -/area/service/library) -"Gp" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Gq" = ( -/obj/structure/mineral_door/iron{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints/north) -"Gr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"Gs" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"Gt" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Gu" = ( -/obj/effect/landmark/stationroom/maintenance/rdm10x5, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Gx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Gy" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Gz" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"GA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"GB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"GC" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"GD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"GE" = ( -/obj/machinery/light/small, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"GF" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"GG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"GH" = ( -/obj/structure/bookcase/random, -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"GI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"GK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"GL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"GM" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/rack, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"GO" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"GQ" = ( -/turf/open/genturf, -/area/maintenance/bottom_station_maints/west) -"GR" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"GS" = ( -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"GU" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"GV" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"GW" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"GZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Ha" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"Hb" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Starboard Fore"; - dir = 8; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Hc" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"Hd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"He" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"Hf" = ( -/obj/machinery/light_switch/directional/north, -/obj/structure/displaycase/trophy, -/turf/open/floor/wood/parquet, -/area/service/library) -"Hg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Hh" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"Hk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"Hl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor, -/area/science/research/abandoned) -"Hm" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Research Lab Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"Hp" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "MiniSat External NorthWest Bottom"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"Hq" = ( -/obj/effect/loot_site_spawner, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"Hr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Ht" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Hu" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Hv" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"Hx" = ( -/obj/structure/stairs/west{ - invisibility = 101; - layer = 2 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"Hz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"HA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"HB" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"HC" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"HF" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"HG" = ( -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"HH" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"HJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/science/research/abandoned) -"HM" = ( -/obj/structure/rack, -/obj/item/disk/design_disk/adv/kar98k_ammo, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"HN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "18" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"HO" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"HQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"HR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"HT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"HU" = ( -/obj/effect/decal/cleanable/molten_object/large, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"HV" = ( -/obj/structure/rospilovo/porog{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"HW" = ( -/obj/structure/rospilovo/truba, -/obj/item/reagent_containers/food/drinks/boyarka{ - pixel_x = 4; - pixel_y = 10 - }, -/obj/structure/sign/flags/soviet{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"HX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"HY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"HZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ia" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"Ic" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Id" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 11"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Ie" = ( -/turf/closed/wall, -/area/security/prison) -"Ih" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"Ii" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"Ij" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Ik" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 1" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"Il" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"Im" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera/autoname, -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Io" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"Ip" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"Iq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/security/prison) -"Is" = ( -/obj/machinery/camera{ - c_tag = "Library North" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"It" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/floor/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Iu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Iv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"Iw" = ( -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Iy" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"Iz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"IA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/prisoner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"IB" = ( -/obj/structure/rospilovo/propane/dual{ - pixel_x = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"IC" = ( -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"ID" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"IF" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"IG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"IH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"II" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"IK" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"IL" = ( -/obj/machinery/camera/autoname, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"IM" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Prison Workshop"; - dir = 4; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -30; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"IN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"IO" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"IP" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"IQ" = ( -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"IS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/turf/open/floor/wood/large, -/area/service/library) -"IU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"IV" = ( -/obj/structure/punching_bag, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"IW" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plating, -/area/security/prison) -"IX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"IY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"IZ" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Ja" = ( -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"Jc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Jd" = ( -/obj/structure/table, -/turf/open/floor/engine, -/area/science/xenobiology) -"Je" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Jg" = ( -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Ji" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"Jj" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"Jk" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Jl" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/trash/chips, -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/security/prison) -"Jm" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/obj/structure/stairs/east, -/obj/structure/railing, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"Jo" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 11 - }, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/security/prison) -"Jp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"Jq" = ( -/obj/structure/bonfire/prelit{ - density = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Jt" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ju" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Jv" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/storage/bag/ore, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Jw" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 9"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"JA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"JC" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"JD" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"JE" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"JF" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"JG" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"JH" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"JK" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"JM" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Xenobiology Exit"; - req_one_access_txt = "12;13;55" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"JN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/chair/comfy/teal, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"JO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"JP" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Starboard Mid"; - dir = 8; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"JQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"JR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"JS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"JT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"JU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"JV" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"JW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"JX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"JY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"Kb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Kc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ke" = ( -/obj/structure/closet/crate/bin, -/obj/item/clothing/mask/vape, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"Kf" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"Ki" = ( -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"Kk" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"Kl" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 4; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"Km" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permainner"; - name = "Permabrig Transfer" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Kn" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"Ko" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"Kp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"Kq" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/science/research/abandoned) -"Kr" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"Kt" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - name = "Supply multi deck pipe adapter" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"Ku" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Kv" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Kw" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"Kx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Kz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"KA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"KC" = ( -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"KD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"KF" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"KG" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -3; - pixel_y = 4 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera/motion{ - c_tag = "EVA Motion Sensor" - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"KH" = ( -/obj/machinery/power/apc{ - areastring = "/area/cargo/warehouse"; - dir = 8; - name = "Cargo Warehouse APC"; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"KI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"KJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"KK" = ( -/obj/structure/rospilovo/doski/doski3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"KL" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"KM" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/turret_protected/aisat/hallway) -"KN" = ( -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"KO" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"KP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"KQ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"KR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/library) -"KS" = ( -/turf/open/floor/plating, -/area/maintenance/space_hut) -"KT" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/orange, -/area/commons/dorms) -"KU" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"KV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"KY" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/parquet, -/area/service/library) -"La" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"Lc" = ( -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Ld" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Le" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"Lf" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Lh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"Li" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Lk" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/controller{ - pixel_y = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"Ll" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port) -"Lm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/multitool, -/obj/effect/spawner/lootdrop/space/cashmoney, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Ln" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/multitool/circuit{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"Lo" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Lp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"Lr" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"Ls" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Lt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Lv" = ( -/obj/structure/table, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"Lw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/library) -"Lx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"Ly" = ( -/obj/effect/turf_decal/trimline/neutral/corner, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Lz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/hallway/secondary/exit/departure_lounge) -"LB" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"LC" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"LD" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/mining{ - name = "Exploration Bay"; - req_one_access_txt = "31;49" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"LE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"LF" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"LH" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"LI" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"LJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"LK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/service/hydroponics) -"LL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"LM" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"LN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"LO" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"LP" = ( -/turf/closed/wall/r_wall, -/area/space) -"LS" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Port Fore"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"LT" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/service/hydroponics) -"LV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"LW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small{ - pixel_y = 0 - }, -/obj/effect/decal/cleanable/cum, -/obj/effect/decal/cleanable/cum, -/obj/effect/decal/cleanable/cum, -/obj/item/blackmarket_uplink, -/turf/open/floor/plasteel/freezer, -/area/service/fitness/kachalka) -"LY" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"LZ" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Mb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"Mc" = ( -/obj/structure/bed/prison/bed, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"Md" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"Me" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmospherics_engine) -"Mf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"Mh" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"Mj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Mk" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Kill Chamber"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"Ml" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/service/hydroponics) -"Mm" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"Mn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"Mp" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"Mr" = ( -/obj/machinery/door/window/eastright{ - name = "Fitness Ring" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Ms" = ( -/turf/closed/wall, -/area/cargo/meeting_room) -"Mt" = ( -/obj/structure/rospilovo/shina2{ - pixel_x = 6; - pixel_y = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"Mu" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/service/fitness/kachalka) -"Mv" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - dir = 4; - name = "Scrubbers multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Mw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Mx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"My" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"Mz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"MA" = ( -/obj/machinery/camera{ - c_tag = "Xeno Test Chamber Enterance"; - dir = 8; - network = list("ss13","test","rd","xeno") - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"MB" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"MC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"ME" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"MF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"MG" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"MH" = ( -/obj/structure/rospilovo/water/bochka/kap{ - pixel_x = -6; - pixel_y = 9 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"MI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"MJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"MK" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ML" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"MM" = ( -/turf/closed/wall/r_wall, -/area/cargo/qm/perch) -"MO" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"MP" = ( -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"MQ" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"MR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"MS" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"MU" = ( -/obj/structure/cable, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"MV" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"MW" = ( -/obj/effect/turf_decal/tile/blue, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"MY" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"MZ" = ( -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"Na" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Nc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"Nd" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/seeds/cotton/durathread, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Ne" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Nf" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/plantgenes, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"Ni" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/xenobiology) -"Nl" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Nm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"Nn" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"No" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Dorm 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"Np" = ( -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"Nq" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/circuit/green, -/area/science/breakroom) -"Nr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/west, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"Ns" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Nt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Nv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"Nw" = ( -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "misclab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/xenobiology) -"Nx" = ( -/obj/item/storage/bag/trash, -/turf/open/floor/plating, -/area/security/prison) -"Ny" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bottle/ammonia, -/turf/open/floor/plating, -/area/security/prison) -"Nz" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"NA" = ( -/obj/machinery/vending/games, -/turf/open/floor/wood/parquet, -/area/service/library) -"NB" = ( -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"ND" = ( -/obj/effect/landmark/start/botanist, -/obj/machinery/holopad, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"NE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"NG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"NI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"NJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"NK" = ( -/obj/structure/ladder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/aft) -"NL" = ( -/obj/structure/ladder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"NM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/medical, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/cargo/warehouse) -"NP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"NQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"NR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"NS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"NT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/execution/transfer) -"NU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"NV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"NX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/stack/package_wrap, -/turf/open/floor/wood/parquet, -/area/service/library) -"NY" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"NZ" = ( -/obj/structure/beebox, -/turf/open/floor/grass, -/area/service/hydroponics) -"Oa" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"Ob" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison/safe) -"Oc" = ( -/obj/machinery/door/airlock{ - name = "Permabrig Showers" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Od" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Oe" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 Outlet Pump" - }, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Of" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm5"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"Og" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"Oi" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Oj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/wood/large, -/area/service/library) -"Ol" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"Om" = ( -/obj/structure/sign/painting/library, -/turf/closed/wall, -/area/maintenance/port) -"Oo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"Oq" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"Or" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"Os" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 1"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Ot" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Ou" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Ov" = ( -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"Ox" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat/hallway) -"Oy" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"Oz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/space/basic, -/area/space/nearstation) -"OA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"OB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"OE" = ( -/obj/machinery/camera/autoname, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"OF" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 11"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"OG" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"OH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"OI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"OJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/execution/transfer) -"OK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"OL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"OM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"ON" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"OO" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio11"; - name = "Xenobio Pen 11 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"OP" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"OS" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"OT" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"OU" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"OV" = ( -/obj/structure/rospilovo/water/luzha, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"OW" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"OX" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"OY" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fitness Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Pc" = ( -/obj/machinery/status_display/evac{ - layer = 4; - pixel_y = 32 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"Pd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Pe" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -35 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"Pf" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Ph" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Pi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens - Port Aft"; - dir = 4; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Pk" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Pl" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"Pn" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/aft) -"Po" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"Pp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"Pq" = ( -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"Pr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"Pu" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"Pv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"Pw" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"Px" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"Py" = ( -/obj/structure/rospilovo/clocks{ - pixel_y = 37 - }, -/obj/structure/rospilovo/plita{ - pixel_y = 9 - }, -/obj/item/reagent_containers/glass/beaker/meta{ - pixel_x = 7; - pixel_y = -7 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"Pz" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"PA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio8"; - name = "Xenobio Pen 8 Blast Door" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"PB" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 7"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"PE" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"PF" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"PG" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"PH" = ( -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"PJ" = ( -/obj/structure/ladder, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"PK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"PL" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"PM" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"PN" = ( -/obj/structure/ladder, -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/plasteel/monofloor/dark, -/area/tcommsat/server/upper) -"PP" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"PQ" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"PR" = ( -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_y = 30 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"PS" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"PT" = ( -/obj/effect/decal/cleanable/blood/xtracks, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"PU" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat/hallway"; - dir = 4; - name = "MiniSat Chamber Hallway APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"PV" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"PW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"PX" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"PY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"Qa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/prison) -"Qb" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Xenobiology Pens Hall - Aft"; - dir = 1; - network = list("ss13","rd","xeno_pens") - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Qc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"Qd" = ( -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"Qe" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/thinplating{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"Qf" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/service) -"Qg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet/donk, -/area/commons/dorms) -"Qh" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"Qi" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/airlock/maintenance{ - name = "Dormitories Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Qj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"Qk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Qm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/ashtray, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Qn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Qo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Qp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/engine, -/area/engineering/atmospherics_engine) -"Qs" = ( -/obj/machinery/light/small{ - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"Qt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"Qu" = ( -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"Qv" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"Qx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"Qy" = ( -/turf/closed/wall, -/area/cargo/qm/perch) -"Qz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/east) -"QB" = ( -/obj/machinery/button/door{ - id = "xenobio3"; - layer = 3.3; - name = "Xenobio Pen 3 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"QC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"QD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/siding/wideplating{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"QE" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Core Hallway Bottom"; - dir = 4; - network = list("aicore") - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"QF" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"QG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"QH" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"QI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"QJ" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plating, -/area/security/prison) -"QK" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/decal/cleanable/insectguts, -/obj/item/clothing/under/costume/jabroni, -/obj/structure/cable, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"QL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"QM" = ( -/obj/structure/chair/sofa/corp/corner{ - dir = 1 - }, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"QN" = ( -/obj/machinery/light/small, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"QO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"QP" = ( -/turf/open/floor/wood/large, -/area/service/library) -"QQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"QT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/science/research/abandoned) -"QV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"QW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/melee/fan{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"QX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"QY" = ( -/obj/structure/ladder, -/obj/effect/turf_decal/box, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"QZ" = ( -/obj/machinery/hydroponics/soil, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Ra" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/starboard/fore) -"Rb" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"Rc" = ( -/obj/structure/cable, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"Rf" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"Rg" = ( -/obj/machinery/button/flasher{ - id = "transferflash"; - pixel_x = 24 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Ri" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Rj" = ( -/turf/open/floor/wood/parquet, -/area/service/library) -"Rk" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/holosign_creator/atmos{ - pixel_x = -1; - pixel_y = -14 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"Rl" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/maintenance/bottom_station_maints/east) -"Rm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"Rn" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Ro" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"Rq" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"Rr" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/space/basic, -/area/space) -"Rs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"Ru" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Rv" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"Rw" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"Rx" = ( -/obj/structure/stairs/north, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Ry" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Rz" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x4, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"RB" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/security/prison) -"RD" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat/atmos"; - name = "Atmospherics Turret Control"; - pixel_x = -27; - req_access = null; - req_access_txt = "65" - }, -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"RE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"RI" = ( -/obj/machinery/light/floor/directional/north, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"RJ" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"RK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"RM" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"RN" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"RO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"RP" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Laundry" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"RQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"RR" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/passive_vent, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/science/xenobiology) -"RS" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm6"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/green, -/area/commons/dorms) -"RT" = ( -/obj/machinery/door/firedoor, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"RU" = ( -/obj/effect/landmark/stationroom/maintenance/rdm5x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"RV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"RW" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"RX" = ( -/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ - color = "#ff0000"; - name = "Scrubbers multi deck pipe adapter" - }, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"RY" = ( -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz{ - color = "#8000b6"; - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmospherics_engine) -"RZ" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentyfour_twentyfour, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/plating, -/area/maintenance/port) -"Sa" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/purple, -/area/commons/dorms) -"Sb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Sd" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Se" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"Sf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"Sg" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 10"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Sh" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"Si" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/machinery/navbeacon/wayfinding{ - location = "Arrival Shuttle" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"Sj" = ( -/obj/effect/landmark/start/bomj, -/obj/structure/chair/brevno/log2, -/obj/structure/chair/brevno, -/obj/item/instrument/guitar, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"Sk" = ( -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/turret_protected/aisat/atmos"; - dir = 8; - name = "MiniSat Atmospherics APC"; - pixel_x = -25 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"Sl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"Sm" = ( -/obj/structure/sign/departments/mait/alt, -/turf/closed/wall, -/area/commons/vacant_room/commissary/second) -"Sq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Sr" = ( -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Ss" = ( -/turf/open/floor/plating/rust{ - initial_gas_mix = "TEMP=2.7" - }, -/area/maintenance/space_hut/plasmaman) -"St" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Su" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"Sv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"Sw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"Sx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Sy" = ( -/obj/structure/statue/sandstone/assistant, -/turf/open/floor/plating, -/area/space/nearstation) -"Sz" = ( -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"SA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"SC" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"SD" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Greenhouse Access"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"SE" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/turf/open/floor/plasteel, -/area/security/prison) -"SF" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"SG" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"SH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"SI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"SJ" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"SK" = ( -/obj/item/petri_dish/random{ - pixel_y = 5 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"SL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"SM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"SN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"SO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"SP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/service) -"SQ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Fitness" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/fitness) -"SR" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/hallway) -"SU" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"SW" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "18" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"SX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"SZ" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/crowbar, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"Ta" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical/old, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"Tb" = ( -/obj/structure/curtain{ - color = "#ff0000"; - open = 0 - }, -/turf/open/floor/plasteel/freezer, -/area/service/fitness/kachalka) -"Tc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/airlock/mining{ - name = "Exploration Bay"; - req_one_access_txt = "31;49" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"Td" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/bot, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Te" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Tf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"Tg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Dormitories Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Th" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Ti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Tj" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/item/pen, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood/parquet, -/area/service/library) -"Tk" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"Tm" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -23 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/component_printer, -/turf/open/floor/plasteel/monofloor, -/area/science/research/abandoned) -"Tn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"To" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"Tp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Tq" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"Ts" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Tt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "vroomshutter2"; - name = "Vacant Room Shutter" - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary/second) -"Tu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "prison blast door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"Tv" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Visitation Observation"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Tw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"Tx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shieldgen, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/science/research/abandoned) -"Ty" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space/nearstation) -"Tz" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"TA" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"TB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"TC" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"TD" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 3" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"TE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"TF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/solars/port/fore) -"TI" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"TK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"TL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"TO" = ( -/obj/machinery/camera{ - c_tag = "Prison Visitation"; - dir = 1; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"TP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"TQ" = ( -/obj/structure/cable, -/obj/machinery/light/floor/directional/south, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"TR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"TS" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"TT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"TU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"TW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"TX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"TY" = ( -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"TZ" = ( -/obj/item/clothing/glasses/meson, -/obj/item/flashlight, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Ua" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"Ub" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/storage/eva) -"Uc" = ( -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"Ud" = ( -/obj/structure/bed, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet/cyan, -/area/commons/dorms) -"Uf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"Ui" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Uj" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"Uk" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"Ul" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Uo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"Up" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Ur" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Uu" = ( -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"Uw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"Ux" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/four, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/security/prison) -"Uy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/price_tagger, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Uz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"UB" = ( -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"UC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/security/execution/transfer) -"UD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"UE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"UH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"UI" = ( -/turf/closed/wall, -/area/commons/vacant_room/commissary/second) -"UL" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"UM" = ( -/obj/structure/stairs/south, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"UN" = ( -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, -/obj/structure/cable, -/turf/open/floor/carpet/purple, -/area/science/breakroom) -"UQ" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"UR" = ( -/obj/structure/bed/maint, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/fitness/kachalka) -"UU" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/decal/cleanable/insectguts, -/obj/item/clothing/under/costume/jabroni, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"UV" = ( -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"UX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"UY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/bottom_station_maints) -"UZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"Va" = ( -/obj/effect/loot_site_spawner, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"Vb" = ( -/obj/machinery/button/door{ - id = "xenobio1"; - layer = 3.3; - name = "Xenobio Pen 1 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"Vc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"Vd" = ( -/obj/structure/ladder, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Ve" = ( -/obj/effect/turf_decal/siding/thinplating{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/warehouse) -"Vf" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"Vg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Vh" = ( -/obj/item/paper/crumpled, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/space/nearstation) -"Vi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Vj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Vk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Vl" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Permabrig Maintenance"; - req_access_txt = "1" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"Vo" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 30 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/service) -"Vp" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"Vq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"Vr" = ( -/obj/structure/rospilovo/bochka/red{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/structure/rospilovo/bochka/red{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/structure/rospilovo/bochka/red{ - pixel_x = -5; - pixel_y = -4 - }, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"Vs" = ( -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/security/prison) -"Vt" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Vu" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/candle, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"Vv" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"Vw" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/security/prison) -"Vy" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/genturf, -/area/maintenance/bottom_station_maints) -"Vz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"VA" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 4"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"VB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"VC" = ( -/turf/closed/wall/r_wall, -/area/maintenance/bottom_station_maints/south) -"VD" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/security/prison/safe"; - dir = 4; - name = "Prison Wing Cells APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/security/prison) -"VE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"VF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"VG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/research/abandoned) -"VH" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/plating, -/area/maintenance/port) -"VI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"VJ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"VL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"VM" = ( -/obj/item/eastposter, -/obj/machinery/turntable, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"VN" = ( -/turf/open/floor/engine, -/area/science/research/abandoned) -"VQ" = ( -/turf/closed/wall/r_wall, -/area/service/library) -"VS" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood/parquet, -/area/service/library) -"VT" = ( -/obj/effect/decal/cleanable/cum, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"VY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Isolation Cell"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"VZ" = ( -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/security/prison) -"Wa" = ( -/obj/structure/closet/crate/bin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/trash/sosjerky, -/obj/item/trash/boritos, -/obj/item/trash/can, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/modular_computer/tablet/preset/cheap, -/turf/open/floor/plasteel, -/area/security/prison) -"Wb" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"Wd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/mob/living/simple_animal/bot/atmosbot{ - auto_patrol = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/entry) -"Wf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Wg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Wh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Wi" = ( -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Wj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Wk" = ( -/obj/structure/frame/machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"Wl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"Wn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"Wo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/floor/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Wp" = ( -/obj/machinery/computer/piratepad_control/civilian, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Wq" = ( -/turf/closed/wall, -/area/service/hydroponics) -"Wr" = ( -/obj/machinery/porta_turret/ai{ - dir = 4; - installation = /obj/item/gun/energy/e_gun - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/aisat/hallway) -"Ws" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Wt" = ( -/obj/structure/window/reinforced, -/turf/open/floor/engine, -/area/science/xenobiology) -"Wu" = ( -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_one_access_txt = "25" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Ww" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"Wx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"Wy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel/dark, -/area/engineering/atmospherics_engine) -"Wz" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"WA" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_prep) -"WB" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"WC" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"WD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"WG" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"WI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"WK" = ( -/obj/effect/landmark/stationroom/maintenance/rdm3x3, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"WN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"WO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"WP" = ( -/obj/structure/ladder, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"WQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"WS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"WT" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"WW" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"WY" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"WZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Xb" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/fitness/kachalka) -"Xc" = ( -/turf/closed/wall, -/area/maintenance/bottom_station_maints/north) -"Xd" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 3"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"Xf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"Xg" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/service/hydroponics) -"Xi" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"Xk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Xl" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 7" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"Xm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Xn" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"Xo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/hydroponics/soil, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Xp" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "65" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/monofloor, -/area/ai_monitored/turret_protected/aisat/hallway) -"Xq" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Xr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"Xs" = ( -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/research/abandoned) -"Xv" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/security/prison) -"Xw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm/perch) -"Xx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Xy" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"Xz" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"XA" = ( -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/wood/parquet, -/area/service/library) -"XB" = ( -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_x = -30; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/microwave, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/security/prison) -"XF" = ( -/obj/machinery/door/airlock/security{ - name = "Permanent Cell 2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"XG" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"XH" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Atmospherics"; - dir = 4; - network = list("minisat"); - start_active = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"XI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/south) -"XJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"XK" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat AI Chamber North Bottom"; - network = list("aicore") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"XM" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plating, -/area/security/prison) -"XO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/structure/cable, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"XQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/cargo/meeting_room) -"XR" = ( -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/east) -"XS" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"XT" = ( -/obj/machinery/button/door{ - id = "xenobio7"; - layer = 3.3; - name = "Xenobio Pen 7 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"XU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"XV" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/fitness/kachalka) -"XW" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen 8"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"XX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/turf/open/genturf, -/area/maintenance/bottom_station_maints/north) -"XY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"XZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Ya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Yd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"Ye" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Yf" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "space shutters" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"Yg" = ( -/obj/machinery/door/poddoor{ - id = "executionspaceblast" - }, -/turf/open/floor/plating, -/area/security/execution/transfer) -"Yh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Yi" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/decal/cleanable/cum, -/turf/open/floor/carpet/peaks, -/area/service/fitness/kachalka) -"Yk" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio10"; - name = "Xenobio Pen 10 Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"Yl" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Ym" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Yn" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"Yo" = ( -/obj/machinery/button/door{ - id = "xenobio5"; - layer = 3.3; - name = "Xenobio Pen 5 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"Yp" = ( -/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ - color = "#0000ff"; - dir = 4; - name = "Supply multi deck pipe adapter" - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Yq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/security/prison) -"Yr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/service/hydroponics) -"Yt" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"Yu" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"Yw" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/service/hydroponics) -"Yx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"Yy" = ( -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"Yz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood/large, -/area/service/library) -"YA" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/mob/living/simple_animal/bot/atmosbot, -/turf/open/floor/engine, -/area/science/research/abandoned) -"YB" = ( -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plating/rust, -/area/maintenance/space_hut/plasmaman) -"YC" = ( -/obj/structure/ladder, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"YD" = ( -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"YE" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"YF" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"YG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/cargo/warehouse) -"YH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research/abandoned) -"YI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wideplating, -/turf/open/floor/plasteel/monofloor/dark, -/area/science/research/abandoned) -"YJ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/chem_dispenser/botany, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"YK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"YL" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/atmosbot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"YM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"YO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"YP" = ( -/obj/structure/cable/multilayer/multiz, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/south) -"YR" = ( -/obj/structure/table, -/obj/item/blacksmith/gun_parts/kar98k, -/obj/machinery/light/small{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/monofloor, -/area/maintenance/bottom_station_maints/north) -"YT" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"YU" = ( -/obj/item/blackmarket_uplink, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"YV" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"YX" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary/second) -"YZ" = ( -/obj/machinery/door/airlock/security{ - name = "Prison Workshop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Za" = ( -/obj/structure/lattice, -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space/nearstation) -"Zb" = ( -/obj/item/device/flashlight/slamp, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/fitness/kachalka) -"Zc" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"Zd" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_prep) -"Ze" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/cargo/meeting_room) -"Zf" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/storage/eva) -"Zg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor, -/area/space) -"Zh" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio9"; - name = "Xenobio Pen 9 Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"Zi" = ( -/obj/machinery/power/apc/highcap/five_k{ - areastring = /area/security/prison; - dir = 1; - name = "Prison Wing APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"Zj" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/closed/wall, -/area/service/library) -"Zl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"Zm" = ( -/turf/open/space/basic, -/area/space) -"Zo" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen 2"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Zq" = ( -/obj/structure/disposalpipe/trunk/multiz, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"Zs" = ( -/turf/open/floor/circuit, -/area/tcommsat/server/upper) -"Zt" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet, -/area/maintenance/bottom_station_maints/north) -"Zu" = ( -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/west) -"Zv" = ( -/obj/structure/rospilovo/radiation/stop{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) -"Zy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/poddoor/preopen{ - id = "xenobiomain"; - name = "containment blast door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/science/xenobiology) -"Zz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/bed, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"ZA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"ZD" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"ZF" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/floor/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/secondary/entry) -"ZG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ZH" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/prison) -"ZJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"ZK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/science/xenobiology) -"ZL" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"ZM" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/plasteel/monofloor, -/area/commons/dorms) -"ZN" = ( -/obj/effect/turf_decal/stripes/box, -/obj/structure/cable/multilayer/multiz, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"ZO" = ( -/obj/item/radio/intercom{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/dark, -/area/service/fitness) -"ZP" = ( -/obj/structure/mirror{ - pixel_y = 30 - }, -/obj/structure/sink{ - pixel_y = 16 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/maintenance/bottom_station_maints/north) -"ZQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/engineering/atmospherics_engine) -"ZR" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints) -"ZS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/east) -"ZU" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"ZV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/service/library) -"ZW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Shields Control"; - req_access_txt = "10" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ZX" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/trimline/green/filled/end{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ZY" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/science/xenobiology) -"ZZ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/dark, -/area/shuttle/turbolift/primary) - -(1,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(2,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(3,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(4,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(5,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(6,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(7,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(8,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(9,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(10,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(11,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(12,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(13,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(14,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(15,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(16,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(17,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(18,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(19,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(20,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(21,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(22,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(23,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(24,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(25,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(26,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(27,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(28,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(29,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -bw -bw -PG -PG -PG -bw -bw -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(30,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -ah -Zm -Zm -PG -bw -jb -jb -bw -bw -bw -jb -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(31,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -bw -PG -PG -PG -bw -bw -bw -PG -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(32,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(33,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -PG -PG -PG -PG -PG -PG -PG -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(34,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(35,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -Zm -bw -bw -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -Zm -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(36,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(37,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Zm -Vv -Vv -Vv -Yt -Vv -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Vv -Vv -Vv -Vv -Vv -Zm -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(38,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -Vv -Gi -TU -RI -wa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -qr -TQ -rw -li -Vv -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(39,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -vZ -FR -OI -OI -OI -Zm -Zm -Zm -Zm -Zm -Zm -Zm -OI -OI -OI -lm -Al -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(40,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -Cv -oE -pi -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -CI -co -tk -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(41,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -Wd -ke -kG -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -vB -LF -DN -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(42,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -wI -fK -TS -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -Db -HB -uf -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(43,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -co -Kz -rA -Vv -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -ZF -ve -mM -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(44,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Vv -fw -Kz -OI -OI -OI -Zm -Zm -Zm -Zm -Zm -Zm -Zm -OI -OI -OI -JY -JC -Vv -PG -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(45,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -AF -KA -TU -RI -wa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -dq -Bd -Si -AF -iF -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(46,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -Vv -Vv -jf -Vv -Yt -Vv -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Vv -Vv -Vv -Vv -eX -Vv -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(47,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -GC -GC -Ij -fb -GC -PG -PG -Zm -Zm -Zm -he -Zm -Zm -Zm -PG -PG -Ew -NP -CZ -GC -PG -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(48,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -ah -Zm -bw -GC -pN -wj -Cr -GC -GC -GC -PG -PG -PG -PG -PG -PG -PG -PG -PG -Ew -Ij -RE -GC -PG -bw -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -PG -PG -PG -PG -PG -Za -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(49,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -GC -rU -wj -QO -wj -Sh -GC -GC -GC -PG -PG -PG -GC -GC -Ew -GC -GC -ji -CZ -GC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(50,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -gd -PG -bw -GC -GC -cB -fb -fb -fb -fb -HT -GC -Ew -Ew -Ew -GC -jx -pJ -Tq -rp -Ij -CZ -GC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(51,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -ib -PG -bw -PG -GC -GC -GC -GC -NP -fb -vm -GC -rp -rp -nz -GC -ji -Ij -NP -HT -CZ -CZ -GC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(52,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -ib -PG -bw -PG -PG -PG -PG -GC -Cp -CZ -CZ -JQ -fN -fJ -fN -gr -CZ -GZ -EL -EL -sk -GC -GC -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -Zm -bw -bw -bw -bw -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(53,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -fe -iB -fe -fe -fe -fe -fe -PG -GC -GC -GC -dg -GC -rp -fJ -rp -GC -dg -GC -GC -GC -GC -GC -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -PG -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -Zm -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(54,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -fe -iV -kN -Ao -KS -YE -tF -PG -PG -Zm -GC -Ew -GC -GC -ns -GC -GC -Ew -GC -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -PG -Zm -bw -bw -bw -bw -bw -PG -Zm -PG -Zm -Zm -Zm -Zm -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(55,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -fe -fe -fe -kA -Lr -Vu -tF -PG -Sy -Zm -Zm -Zm -Zm -GC -AD -GC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -PG -bw -bw -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(56,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -tF -Gr -Ov -OK -tF -PG -PG -Zm -Zm -Zm -Zm -GC -je -GC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -bw -bw -bw -bw -pf -dp -pf -dp -pf -dp -pf -dp -pf -PG -PG -PG -bw -bw -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(57,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -fe -JG -fe -fe -fe -bw -PG -Zm -Zm -Zm -Zm -Ew -AD -Ew -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -bw -bw -Zm -pf -pf -Om -DC -DC -DC -fL -Ll -Ll -ox -pf -bw -bw -bw -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(58,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -kS -kS -kS -Zm -Zm -PG -PG -PG -Zm -Zm -Zm -Ew -AD -Ew -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -bw -PG -Zm -pf -wZ -fD -fD -fD -fD -sY -fD -fD -kQ -pf -bw -bw -bw -bw -Zm -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(59,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Ew -AD -Ew -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -bw -bw -PG -PG -Zm -pf -RZ -fD -kQ -fD -wy -sY -fD -VH -fD -pf -pf -pf -pf -pf -Zm -Zm -bw -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(60,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -GC -AD -GC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -PG -bw -bw -PG -PG -PG -Zm -pf -cz -GW -fD -vV -fD -fu -fD -fD -wy -tJ -fD -fD -fD -pf -Zm -Zm -Zm -bw -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(61,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -yS -yS -GC -yS -GC -PG -PG -PG -Zm -Zm -Zm -GC -AD -GC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -PG -PG -PG -pf -pf -pf -dp -pf -dp -pf -dp -pf -dp -pf -pf -pf -EY -pf -kj -PG -PG -PG -bw -bw -PG -PG -PG -bw -bw -bw -bw -PG -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(62,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -am -am -wA -am -am -Zm -Zm -Zm -Zm -Zm -GC -Ty -yS -nC -yS -Zm -Zm -PG -PG -PG -PG -GC -QF -GC -PG -PG -PG -PG -PG -Za -PG -PG -PG -PG -PG -PG -PG -PG -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -kj -dW -Fq -oS -kj -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(63,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -am -xX -kq -Pl -am -Zm -Zm -Zm -Zm -Zm -yS -yS -tM -wc -yS -Zm -Zm -PG -Zm -Zm -Zm -PG -Oz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -bw -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -kj -Tk -fV -wq -kj -Zm -Zm -PG -Zm -Zm -Zm -Zm -ah -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(64,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -wA -TF -iT -Pl -wA -PG -Zm -Zm -Zm -Zm -GC -Vh -Ty -yS -nC -Zm -Zm -PG -Zm -Zm -Zm -PG -Oz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -pQ -fV -em -vi -pQ -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(65,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -CE -CT -JU -Pl -am -PG -Zm -Zm -Zm -Zm -GC -yS -nC -GC -GC -PG -PG -PG -PG -PG -PG -PG -Oz -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -bw -bw -Zm -PG -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -pQ -fV -Kr -vi -pQ -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(66,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -am -am -wA -am -am -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Oz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -bw -bw -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -kj -Jm -Fq -vi -kj -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(67,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Oz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -kj -kj -kj -kj -kj -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(68,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -hx -bp -hx -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(69,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -oa -oa -oa -oa -oa -oa -oa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -hx -Ac -hx -PG -PG -PG -PG -bw -bw -bw -bw -PG -bw -bw -bw -bw -bw -bw -bw -PG -mw -KI -KI -mw -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(70,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -lJ -UV -vq -vq -vq -UV -oa -Ss -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -hx -Ip -hx -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -KI -GQ -GQ -mw -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -PG -Zm -PG -PG -PG -PG -PG -PG -PG -bw -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(71,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -oa -oa -UV -oa -oa -oa -iL -oa -oa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -hx -Ac -hx -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -KI -GQ -GQ -bK -YG -bK -YG -bK -YG -bK -YG -MM -MM -aU -aU -MM -MM -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(72,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -oa -lF -PE -oa -YB -UV -vq -vq -oa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -lp -Ac -hx -hx -hx -hx -hx -hx -PG -PG -PG -PG -PG -Ex -Ex -Ex -Ex -Ex -mw -mw -mw -GQ -GQ -da -go -KH -mg -oX -mg -SI -mg -Qy -zm -eo -FC -yq -MM -PG -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(73,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -oa -oa -oa -oa -oa -vq -vq -gT -CU -oa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -lp -Ac -Ac -Ac -Ac -Ac -Ac -IH -JW -JW -JW -JW -JW -SM -Vj -Vj -Vj -Vj -Vj -Vj -Yp -tP -GQ -da -mg -Gg -mg -da -mg -mg -mg -Qy -Qy -dn -uB -uv -aU -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(74,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -yu -qo -UV -ud -oa -zl -eg -zG -xR -oa -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -lp -Ac -hx -hx -hx -hx -hx -hx -PG -PG -PG -PG -PG -Ex -Ex -Ex -Ex -Ex -mw -Iw -Xk -XY -Wf -Pp -Hr -GI -Ru -Hx -Ru -Ru -Ru -hl -Qy -ux -sP -LY -aU -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -DT -ZJ -YM -DT -DT -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(75,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -yu -UV -UV -kn -oa -oa -iy -oa -oa -oa -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -hx -Ac -hx -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -Zm -Zm -Zm -kJ -mw -sp -Zu -GQ -GQ -da -Fj -Ft -Ft -PL -Ft -Ft -rF -Fe -Qy -Xr -wn -uv -aU -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -DT -Kt -pZ -Pn -DT -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(76,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -oa -oa -oa -Ol -Ki -Ki -Ki -yv -oa -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -hx -Ac -hx -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -Zm -PG -KI -Vd -Zu -GQ -GQ -da -kd -IU -tx -aI -db -aI -yU -Fe -Qy -Ee -us -Xw -MM -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -YM -NU -NK -Gh -YM -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(77,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -oa -oa -bM -bL -Ta -oa -oa -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -aM -aM -aM -aM -aM -aM -rz -en -rz -aM -bw -PG -PG -PG -Zm -Zm -Zm -PG -bw -PG -PG -PG -PG -PG -KI -Zu -Zu -Zu -GQ -da -zN -aI -db -zT -db -Ey -HO -kT -Qy -Qy -Tc -jq -jq -xi -xi -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -DT -BM -BM -BM -DT -PG -VC -VC -VC -VC -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(78,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -oa -oa -oa -oa -oa -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -VE -GB -GB -nf -GB -GB -na -ic -aM -bw -Zm -Zm -PG -Zm -ah -Zm -PG -bw -Zm -Zm -Zm -Zm -Zm -KI -GV -Zu -Zu -GQ -da -kY -zT -db -aI -LB -zT -HO -kt -Fv -Fg -nO -yM -qP -AV -xi -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -DT -DT -YM -DT -DT -PG -VC -Np -Np -VC -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(79,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -Bs -TY -TY -TY -TY -TY -Sf -Nm -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -Zm -Zm -mw -Ry -Zu -Zu -GQ -da -me -aI -db -CP -db -aI -HO -kt -Fv -Fg -kV -qu -oN -dr -xi -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -VC -Np -YP -VC -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(80,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -Bs -TY -TY -TY -TY -TY -Sf -BU -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -PG -Zm -mw -Ex -PX -PX -Ex -da -nc -zT -db -aI -db -zT -HO -tT -Fg -Fg -pU -WA -WA -bE -aK -vD -vD -vD -aK -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -VC -VC -yw -VC -VC -VC -VC -Np -oz -VC -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(81,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -Bs -TY -TY -TY -TY -TY -Sf -Nm -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -PG -Zm -mw -Zu -Zu -Zu -Rz -da -nq -aI -db -aI -db -aI -HO -AP -Fg -ry -Tn -TE -WA -Se -Ck -bo -CR -Jg -aK -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -ah -Zm -Zm -VC -VC -VC -VC -VC -ye -ye -Np -Np -Np -Np -fT -ye -AA -oz -yw -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(82,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -mv -TY -TY -TY -TY -TY -Sf -ID -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -PG -Zm -KI -Zu -Zu -Zu -Zu -da -nF -NM -Su -Hh -Nc -zT -HO -Ru -LD -xY -bF -Dk -Dk -Iv -fC -Pd -Pd -Pd -ue -Rr -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -bw -PG -yw -Np -Np -Np -Np -Np -RT -Np -Np -Np -Np -SF -ja -Np -oz -VC -Zm -Zm -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(83,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -Bs -TY -TY -TY -TY -TY -Sf -Nm -aM -bw -Zm -Zm -PG -PG -PG -PG -PG -bw -PG -PG -PG -PG -Zm -KI -Zu -Zu -Zu -Zu -ul -bA -RK -Bb -Hu -Ve -RK -tt -Ru -Fg -Eu -Qx -Zd -bY -PK -Ck -Yl -CH -fi -aK -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -VC -VC -VC -VC -VC -VC -VC -oz -oz -oz -oz -oz -oz -oz -oz -VC -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(84,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -bw -aM -uw -TY -TY -TY -TY -TY -Sf -Nm -aM -bw -bw -bw -bw -bw -bw -bw -PG -bw -Zm -Zm -Zm -PG -Zm -KI -Zu -Zu -Zu -Zu -da -tm -da -da -da -da -da -da -da -Fg -Fg -DK -Fg -jq -jq -aK -vD -vD -vD -aK -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -oz -Np -Np -Np -Np -Np -Np -Np -VC -VC -VC -VC -VC -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(85,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -Bs -TY -TY -TY -TY -TY -Sf -Nm -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -PG -Zm -mw -Zu -Zu -Zu -Zu -Na -zK -Wf -Wf -Wf -Wf -Wf -Wf -Wf -ng -Fd -OM -tO -ng -gC -mw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -oz -Np -Np -WT -Np -Np -Np -Np -RT -Np -Np -Np -VC -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(86,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -SO -kP -kP -sQ -kP -kP -Lh -nB -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -PG -PG -PG -bw -mw -mw -KI -KI -mw -mw -mw -mw -jB -Ms -Ms -Ms -Ms -Ms -Ms -pS -bQ -hr -jB -KU -mw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -VC -zM -ye -ye -ye -ye -ye -ye -ye -ye -ye -ye -Np -yw -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(87,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -aM -aM -aM -aM -aM -aM -rz -bp -rz -aM -bw -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -PG -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -jB -vG -QC -Qc -Vf -xA -Ms -pS -QQ -xk -jB -aW -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -yw -as -ye -SF -SF -mS -ye -SF -SF -SF -ci -ye -Np -yw -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(88,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -Oz -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -PG -PG -PG -PG -PG -PG -PG -cj -wJ -Rc -HA -Yy -Dx -cj -XQ -QQ -hr -cj -aW -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -oz -ye -SF -SF -SF -ye -SF -SF -SF -SF -ye -Np -yw -PG -PG -PG -bw -PG -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(89,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -mP -mP -mP -mP -jR -mP -mP -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -cj -JN -gw -mx -Ze -WO -nv -tR -QQ -hr -cj -aW -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -yw -oz -Xi -SF -SF -SF -RT -SF -SF -SF -SF -XI -Np -yw -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -PG -bw -PG -PG -Zm -PG -bw -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(90,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -OL -Bt -Bt -Bt -eU -Bt -OL -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -cj -wJ -fQ -mx -Yy -Dx -cj -pS -is -hr -cj -aW -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -PG -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -oz -ye -SF -SF -SF -ye -SF -SF -SF -SF -ye -SF -yw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(91,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -mP -mP -Bt -Bt -Bt -eU -Bt -mP -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -cj -JS -Yy -Ca -Yy -Iz -Ms -pS -bm -hr -cj -aW -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -yw -oz -ye -SF -SF -SF -ye -SF -SF -SF -SF -ye -Xf -VC -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(92,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -bw -bw -bw -bw -PG -PG -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -PG -bw -bw -bw -bw -bw -bw -PG -PG -PG -PG -PG -PG -PG -PG -bw -bw -PG -OL -Mw -eU -eU -eU -eU -Bt -OL -bw -bw -PG -PG -bw -bw -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -PG -Zm -Zm -jB -Pz -RV -mr -cn -wW -Ms -Pc -DB -mW -jB -aW -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -RJ -ye -ye -ye -ye -ye -ye -VC -VC -VC -VC -VC -VC -bw -bw -bw -bw -bw -PG -bw -PG -PG -bw -bw -bw -bw -bw -bw -bw -PG -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(93,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -PG -PG -Zm -Zm -Zm -PG -Zm -bw -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -bw -bw -PG -Zm -OL -eU -Bt -Bt -Bt -fF -Bt -OL -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -jB -jB -jB -gG -jB -jB -jB -jB -jB -jB -jB -aW -PG -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -oz -jY -SF -ja -SF -Np -Np -VC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(94,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Uu -Yg -Yg -Yg -Uu -NT -Uu -NT -Uu -Zm -bw -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -bw -Zm -PG -mP -mP -Eq -Xc -ap -ap -SW -ap -ap -RQ -RQ -ap -PG -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -jB -mr -jB -PG -Zm -Zm -PG -Zm -Zm -aW -bw -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -VC -zx -ye -ye -ye -SF -Np -Np -VC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(95,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -Uu -UC -Dv -sU -OJ -lI -oR -rv -Uu -Zm -bw -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -ah -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -bw -Zm -mP -mP -cV -eU -Bt -ap -dx -Ub -EP -Mp -XO -ZU -ap -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -PG -aW -bw -PG -PG -PG -VC -VC -VC -VC -eK -VC -VC -eK -VC -VC -VC -VC -eK -VC -VC -eK -VC -VC -VC -eK -VC -VC -oz -Np -Np -ye -TC -Np -Np -VC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(96,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Uu -aN -dK -ht -OJ -lM -oO -GM -xh -Zm -bw -bw -bw -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -bw -Zm -OL -cV -Bt -eU -Bt -ap -Au -qq -yB -UZ -bl -Yn -be -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -aW -aW -aW -aW -aW -ML -Th -Th -Th -Th -Th -Th -Th -GA -kF -RT -Np -Np -Np -Np -Np -Np -XI -Np -Np -Np -Np -oz -Np -Np -ye -SF -Np -Np -yw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(97,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Uu -aZ -dM -Cd -jG -lN -pk -rJ -Uu -Zm -Zm -PG -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -bw -PG -bw -bw -bw -bw -bw -bw -Zm -OL -cV -Bt -eU -Bt -ap -KG -wr -aL -eE -jD -Kp -jF -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -VC -VC -VC -VC -eK -VC -VC -VC -ye -cS -ye -ye -MG -ye -MG -MG -MG -ye -Np -oz -oz -oz -oz -SF -SF -ye -SF -VC -VC -VC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(98,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -bw -PG -PG -Uu -Uu -Uu -Uu -Uu -Uu -pu -rN -Uu -NT -Uu -PG -bw -Zm -Zm -PG -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -OL -Bt -fF -eU -Bt -ap -mD -wS -BX -UZ -bl -TB -lC -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -VC -Em -Ti -Np -ye -ye -ye -ye -ye -ye -ye -Np -oz -Np -ye -ye -ye -hc -ye -hc -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(99,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -Ux -Ii -zw -eJ -Uu -pK -rV -xD -Bm -Uu -PG -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -bw -PG -PG -mP -OL -OL -OL -mP -mP -mP -Xc -eU -eU -fE -ap -Hv -pH -bB -vh -bl -wd -cD -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -PG -Zm -VC -fT -GL -jt -jt -jt -AG -jt -jt -jt -jt -jt -jt -EM -SF -SF -SF -SF -SF -SF -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(100,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -Jo -QJ -uQ -eJ -Uu -qt -rW -xE -Bv -Uu -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -Zm -PG -bw -bw -PG -mP -mP -YR -bv -HM -Xc -Bt -Bt -Xc -Eg -Xc -Xc -ap -ap -ap -ap -ap -Nv -TB -ug -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -PG -Zm -VC -no -FA -ye -Np -Np -ye -Np -Np -Np -Np -Np -Np -EM -Np -Np -Np -Np -Np -SF -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(101,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -aO -tX -zw -eJ -Uu -qz -rZ -wv -Bx -Uu -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -bw -PG -Zm -bw -Zm -OL -RM -yL -yL -fF -ek -fF -fF -tj -Xx -ao -gj -ap -sC -MY -ap -ap -dG -lw -bc -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -VC -SF -cS -ye -Np -Np -ye -ye -ye -ye -ye -ye -ye -Dq -ye -ye -ye -ye -ye -St -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(102,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -bw -PG -II -II -Ie -Ie -yf -Ie -Uu -Uu -sM -Uu -Uu -Uu -yj -yj -yj -II -yj -yj -yj -II -Zm -Zm -bw -PG -Zm -bw -Zm -OL -RM -yL -Bt -Bt -Xc -Bt -Bt -DW -oF -oF -MO -ap -Zf -Yn -ex -ys -bl -wN -zX -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -jP -RO -RO -fq -RO -RO -fq -RO -RO -RO -fq -nS -nS -VC -Ad -MC -RT -Np -Np -Np -Np -Np -Np -ye -Xf -Np -EM -ye -SF -SF -mS -ye -SF -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(103,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -Vp -Vp -Vp -hA -jW -fY -qD -sf -II -II -hQ -Vt -Vt -Vt -et -Vt -Vt -Pw -II -II -PG -bw -PG -Zm -bw -Zm -OL -RM -yL -Bt -Xc -Xc -fF -fF -DW -yL -yL -fF -HN -Yn -iE -Yn -ap -Px -uE -iq -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -RO -cb -qv -GO -qv -ZN -ti -qv -cb -cb -fq -Sx -bJ -oG -yZ -VC -VC -VC -VC -eK -eK -eK -VC -VC -VC -VC -EM -ye -SF -SF -SF -ye -SF -VC -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(104,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -Vp -bC -bC -bC -bC -bC -oe -st -rx -II -Zi -qb -qb -Yq -qb -qb -qb -PW -lE -yj -Zm -bw -bw -PG -bw -PG -mP -Xc -vk -Xc -Xc -Bt -eF -Xc -SX -Xc -Xc -Xc -ap -ap -ap -ap -ap -nI -EX -cD -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -RO -qv -To -Lp -pz -pz -pz -pz -pz -pz -mA -eN -ln -ye -VC -VC -PG -PG -Zm -Zm -PG -Zm -Zm -PG -PG -VC -EM -XI -SF -SF -SF -XI -SF -yw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(105,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -Vp -bC -dR -ie -dR -bC -Dn -su -Tu -oT -DH -Fo -Fo -Fo -Kb -qR -qb -qb -wX -yj -PG -bw -bw -PG -Zm -PG -mP -Bt -fF -fF -fF -fF -fF -Xc -nD -eU -eU -eU -eU -eU -eU -nH -DE -jD -yx -za -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -fq -zL -cb -Sw -cb -qv -cb -cb -cb -Qs -fq -wP -ln -ln -nS -PG -PG -uV -uV -oP -oP -oP -uV -uV -PG -VC -EM -ye -SF -SF -SF -ye -SF -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(106,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -II -Vp -bC -eh -dR -dR -ZZ -qb -sG -rx -II -rj -it -Gf -GD -Rg -LH -kW -XJ -Pk -yj -Zm -Zm -bw -PG -Zm -PG -mP -Bt -fF -Bt -Xc -Xc -Xc -Xc -cw -wp -Xc -eH -Xc -Bt -Bt -Bt -ap -cy -Yn -SZ -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -RO -YC -qv -JO -qv -qv -qv -qv -cb -cb -fq -wP -ln -ln -nS -PG -uV -uV -nr -mI -Zs -mI -yW -uV -Zm -VC -EM -ye -SF -SF -SF -ye -fa -VC -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(107,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -Vp -bC -dR -iv -dR -mk -Ci -Kc -II -II -II -II -WY -GU -II -II -II -II -II -II -II -Zm -bw -PG -Zm -PG -mP -Bt -fF -Bt -Xc -cV -cV -Xc -Xq -Xc -Xc -yL -Xc -Bt -Bt -Bt -ap -Lv -Mh -bx -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -RO -YU -qv -ql -qv -bt -DJ -qv -qv -cb -fq -wP -rm -ln -EN -Zm -oP -mI -mI -kI -xb -Jp -Zc -uV -Zm -VC -EM -ye -ye -ye -ye -ye -SF -VC -VC -VC -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(108,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -ag -bC -bC -bC -bC -bC -qE -gx -uy -II -Kv -gz -gz -Hg -gz -iK -Ie -zn -IM -Vs -II -PG -bw -PG -Zm -PG -mP -Xc -nm -Xc -Xc -Bt -Bt -Bt -cw -fF -dT -yL -Xc -Bt -Bt -Bt -ap -ap -ap -ap -ap -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -dw -RO -RO -fq -RO -RO -fq -RO -RO -fq -fq -wP -rm -ln -EN -PG -oP -hK -Zs -EF -PN -ll -eI -uV -PG -VC -EM -ye -SF -SF -hc -SF -SJ -hc -SF -SF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(109,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -oj -Ul -ev -Fb -Ph -Tv -BS -kz -ZH -II -tL -qb -qR -Fo -Kb -og -Ie -Gy -Mb -VZ -II -Zm -bw -PG -Zm -PG -mP -Bt -fF -Bt -Xc -Bt -Bt -Bt -cw -Bt -Xc -Bt -Xc -Xc -Xc -OL -Xc -fF -fF -qQ -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -kD -kD -kD -kD -PG -bw -PG -PG -PG -nS -wP -rm -ln -EN -Zm -oP -mI -mI -Hk -xV -jl -sm -uV -Zm -VC -sH -ye -hc -hc -ye -hc -ye -ye -Cw -SF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(110,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -bw -PG -II -qE -vO -gW -FT -KJ -II -II -II -II -II -DX -Fp -Gt -GD -Gf -aB -Ie -zn -Tp -Xm -II -Zm -bw -PG -Zm -PG -mP -Bt -fF -Bt -Xc -Bt -Bt -Bt -cw -Bt -Xc -Bt -yL -Bt -Bt -Bt -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -nS -nS -nS -nS -Zm -nS -nS -EN -nS -nS -wP -rm -ln -nS -PG -uV -uV -hZ -mI -Zs -mI -hZ -uV -Zm -VC -EM -Np -SF -Np -ye -Np -Va -ye -Np -SF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(111,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -dX -dX -II -dX -NY -II -mf -up -ta -Ie -Ie -Ie -Ie -iA -Km -Ie -Ie -Ie -Ie -YZ -II -II -II -PG -PG -PG -Ym -fF -fF -Bt -Xc -bd -cw -cw -cw -Bt -Xc -Bt -fF -fF -fF -fF -yH -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -RU -nS -bw -nS -dP -dP -RU -rm -wP -ln -ln -nS -PG -PG -uV -uV -oP -oP -oP -uV -uV -PG -VC -EM -EM -EM -Np -ye -Np -Va -ye -Np -SF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(112,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -qb -iI -AH -iI -Ot -II -vQ -ms -HZ -wf -Vw -En -Ie -Ht -gz -gz -wB -qI -gz -QG -Sq -Wa -II -bw -bw -bw -mP -Bt -fF -Bt -Xc -Bt -jr -Bt -Bt -GE -Xc -Xc -Xc -Xc -Xc -Xc -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -dP -nS -Zm -nS -dP -dP -dP -rm -wP -rm -CJ -nS -nS -PG -PG -Zm -Zm -PG -Zm -Zm -PG -PG -VC -IL -Np -EM -Np -ye -Np -Va -ye -Np -nQ -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(113,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -eG -yd -AW -IP -PV -II -Xo -sR -at -at -at -at -FO -DH -Fo -Fo -Fo -Fo -Fo -Fo -Fo -Wg -aF -Zm -PG -Zm -mP -Bt -fF -GE -Xc -Xc -qJ -Xc -Xc -Xc -Xc -Bt -Bt -Bt -Bt -Bt -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -EN -dP -dP -dP -EN -Zm -EN -dP -dP -dP -zi -wP -rm -ln -ln -nS -nS -nS -nS -EN -EN -EN -nS -nS -VC -VC -Np -PJ -EM -Np -ye -Np -Np -ye -Np -oz -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(114,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -II -gK -Ar -Bo -Je -TO -II -vQ -jO -Gp -vn -rk -vX -Ie -HF -Gf -Fp -WI -Gf -Qn -Gf -GD -Wh -aF -Zm -PG -Zm -mP -Bt -fF -fF -nm -fF -jr -jr -jr -jr -pb -jr -jr -Bt -Bt -Bt -Xc -Xc -nm -Xc -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -dP -nS -Zm -nS -dP -dP -dP -rm -wP -rm -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -QN -ye -Np -Np -Np -EM -SF -SF -SF -SF -hc -SF -oz -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(115,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -Mj -bG -BA -iI -Du -II -mj -gi -PF -BJ -BJ -BJ -BJ -HQ -Jt -BJ -BJ -BJ -BJ -Ie -RP -Ie -II -Zm -PG -mP -mP -Bt -fF -yL -Xc -Bt -fF -Bt -Bt -Bt -Xc -Bt -jr -Bt -Bt -Bt -Xc -fF -fF -qQ -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -dP -nS -PG -nS -dP -dP -dP -rm -hR -rm -rm -ln -ln -ln -ln -ln -ln -ln -rm -ln -ln -ye -Np -Np -ye -EM -Np -Np -Np -Np -ye -Np -oz -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(116,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -uJ -II -II -II -II -II -Ie -Ie -Ie -BJ -bz -IA -BJ -HG -Ku -BJ -IA -bz -BJ -QV -Sv -Wl -II -Zm -PG -OL -yL -yL -yL -yL -Xc -Xc -PP -Xc -Xc -Xc -Xc -Bt -jr -Bt -Bt -Bt -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -rm -FZ -rm -nS -Zm -nS -rm -rm -rm -rm -wP -wP -rm -rm -rm -rm -rm -rm -rm -CJ -rm -rm -ye -ye -ye -ye -ye -EM -Np -ye -ye -ye -ye -ye -XG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -jb -bw -Zm -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(117,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -aw -bH -eO -yj -km -mo -XB -sT -xI -BJ -zj -NQ -XF -HX -Kx -Ik -NQ -zj -BJ -Rf -Sv -WD -aF -Zm -PG -OL -yL -yL -yL -yL -Xc -Bt -fF -Bt -Bt -Bt -Xc -Xc -Ya -Xc -Xc -Xc -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -tG -nS -Zm -nS -dP -dP -tG -rm -dP -wP -wP -wP -wP -wP -Xz -wP -wP -wP -rm -ln -ye -Np -Np -Np -Np -EM -Np -ye -Np -Np -Np -nt -oz -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(118,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -PG -II -aA -bP -fr -yj -kE -qb -qb -tl -xK -BJ -BJ -BJ -BJ -HX -KF -BJ -BJ -BJ -BJ -Rm -SA -Uo -aF -PG -mP -mP -nm -Xc -dj -dj -dj -dj -dj -dj -dj -dj -dj -dj -jr -Bt -Xc -aQ -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -EN -dP -dP -dP -EN -Zm -EN -dP -dP -dP -zi -dP -ln -dP -ln -ln -ln -ln -iO -dP -wP -rm -ln -St -Np -Np -Np -Np -WN -oz -pm -oz -oz -oz -oz -oz -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(119,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -II -II -bZ -fr -yj -kE -Yq -qR -tz -xS -BJ -bz -IA -BJ -HX -Li -BJ -IA -bz -BJ -Rm -Uo -WS -II -Zm -mP -fF -fF -qQ -dj -gM -uZ -dj -Qg -hL -dj -Ia -PM -dj -jr -Bt -Xc -aQ -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -dP -dP -dP -nS -PG -nS -dP -dP -dP -rm -ln -ln -dP -un -un -un -un -un -ln -wP -rm -ln -ye -ye -Np -Np -ye -JR -ye -ye -Np -Np -Np -Np -SF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(120,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -ck -fs -iW -kL -Mj -Mj -uT -xZ -BJ -zj -NQ -dv -HX -Kx -TD -NQ -zj -BJ -Ie -Vl -Ie -II -Zm -mP -fF -fF -fF -dj -xq -fm -dj -tV -JX -dj -pp -ey -dj -jr -Bt -Xc -OL -Xc -Xc -nm -Xc -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -rm -FZ -rm -nS -Zm -nS -rm -rm -rm -rm -rm -ln -dP -un -Ko -br -sq -un -ln -wP -rm -ln -Uc -ye -ye -ye -ye -ob -ln -ye -ye -ye -ye -ye -ye -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(121,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -cm -fr -yj -la -mE -qU -vp -yg -BJ -BJ -BJ -BJ -ep -Lo -BJ -BJ -BJ -BJ -Rq -Vp -Xv -II -Zm -mP -fF -fF -fF -dj -RS -Qt -dj -Of -lK -dj -Ud -aG -dj -jr -jr -Bt -Bt -Xc -fF -fF -qQ -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -ln -ln -gn -nS -nS -nS -nb -dP -dP -gQ -rm -TW -zi -un -jK -Rs -Il -ZW -wP -wP -rm -dP -Fy -CJ -ln -ln -rm -ob -ln -rm -ln -ln -ln -ln -dP -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(122,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -bZ -ft -yj -lc -mF -qW -vt -yz -BJ -bz -IA -BJ -HX -LI -BJ -IA -bz -BJ -RB -VD -XM -II -PG -mP -fF -fF -fF -dj -dj -sg -dj -dj -EH -dj -dj -No -dj -dj -jr -Bt -Bt -Xc -fF -fF -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -FZ -ln -ln -ln -ln -rm -Fy -dP -dP -dP -dP -rm -ln -dP -un -fH -UH -uA -un -qO -wP -cH -dP -nA -rm -rm -CJ -rm -ob -ln -Bc -ln -ln -ln -ln -dP -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(123,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -II -aA -gc -yj -ld -nR -rn -vI -yK -BJ -zj -NQ -eZ -HX -Kx -au -NQ -zj -Qu -II -II -II -II -Zm -mP -fF -fF -fF -fF -Qi -oI -Yd -Yd -Yd -rQ -Yx -Yx -aT -dj -jr -jr -jr -sX -jr -jr -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -ln -ln -ln -ln -FZ -tp -dP -dP -dP -dP -zi -ln -dP -un -un -un -un -un -rm -wP -wP -wP -dP -CJ -ln -dP -rm -ob -ln -rm -ln -ln -ln -ln -dP -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(124,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -II -cu -gk -Ie -Ie -Ie -Ie -Ie -Ie -BJ -BJ -BJ -BJ -Iq -KF -BJ -BJ -BJ -Qu -Zm -Zm -PG -PG -PG -mP -PP -dj -dj -dj -dj -jo -MP -Pr -MP -py -dj -Tg -dj -dj -Xc -Xc -Xc -Xc -fF -jr -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -nS -EN -EN -nS -CJ -CJ -nS -rm -rm -FZ -FZ -rm -rm -dP -dP -dP -dP -rm -ln -dP -rm -ln -ln -dP -ln -rm -rm -rm -wP -ln -rm -rm -zi -rm -ps -nS -nS -nS -nS -nS -nS -nS -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(125,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -aF -cx -gz -iY -wB -oc -fd -gz -BZ -BJ -bz -IA -BJ -HX -LV -BJ -IA -bz -Qu -Zm -Zm -PG -Zm -Zm -mP -Bt -dj -Ev -Sa -dj -vg -dD -TA -MP -Ua -dj -uF -il -Xc -Bt -oi -Bt -Xc -fF -jr -fF -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -nS -ln -ln -ln -ln -ln -ln -ln -rm -dP -dP -dP -gQ -rm -dP -dP -dP -dP -rm -ln -dP -rm -ln -ln -ln -ln -ln -ln -rm -wP -QN -rm -ln -ob -ob -ob -nS -PG -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -bw -bw -bw -bw -bw -PG -bw -bw -bw -bw -bw -bw -PG -bw -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(126,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -aF -cN -Uf -Uf -WZ -Uf -Uf -Uf -zc -BJ -zj -NQ -JV -HX -Kx -Xl -NQ -zj -Qu -Zm -Zm -PG -Zm -Zm -mP -Bt -dj -tg -js -aS -ed -fc -kk -if -eC -dj -uF -PQ -Xc -cL -Bt -Bt -Xc -Xc -ua -Xc -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -ln -ln -ln -ln -ln -ln -ln -ln -rm -dP -dP -dP -dP -rm -rm -rm -rm -rm -rm -ln -dP -CJ -ln -rm -rm -rm -rm -rm -rm -wP -ln -rm -ln -ob -rm -al -nS -Zm -Zm -PG -bw -bw -jb -jb -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -jb -bw -jb -jb -bw -jb -jb -jb -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(127,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -PG -PG -II -Ie -Ie -Ie -Ie -Ie -Ie -HQ -Jt -BJ -BJ -BJ -BJ -HX -Lo -BJ -BJ -BJ -Qu -PG -PG -PG -PG -PG -mP -Bt -dj -pM -lj -dj -ed -iP -ZM -TA -gN -dj -uF -uF -Ei -uF -uF -uF -Ei -uF -jr -Bt -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -EN -ln -ln -ln -dP -dP -dP -dP -dP -FZ -dP -dP -dP -dP -FZ -dP -dP -dP -dP -FZ -ln -dP -rm -ln -ln -ln -ln -ln -ln -rm -ir -rm -rm -CJ -Qk -rm -dP -nS -Zm -Zm -PG -Zm -bw -bw -bw -bw -PG -bw -bw -bw -bw -bw -bw -bw -bw -PG -bw -bw -bw -bw -PG -bw -bw -bw -bw -bw -bw -bw -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(128,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -aF -dl -gA -iZ -SE -vw -Ie -XU -hd -hd -hd -ih -GF -HX -Lo -Ob -Oo -Zz -Qu -Zm -Zm -PG -Zm -Zm -mP -Bt -dj -dj -dj -dj -tb -lG -sh -TA -qk -dj -fF -CN -Xc -Bt -Bt -Bt -Xc -Bt -jr -Bt -Xc -Bt -Bt -Bt -Bt -Bt -Bt -Bt -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -EN -ln -ln -ln -dP -ln -ln -ln -ln -rm -dP -dP -dP -dP -nS -ln -ln -ln -ln -rm -dP -nA -rm -ln -ln -ln -ln -ln -ln -CJ -wP -rm -ln -ln -ob -rm -dP -nS -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(129,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -aF -du -gD -jm -lf -lf -rs -vP -zP -Uf -Ec -qF -er -HX -Kx -VY -NQ -zj -Qu -Zm -Zm -PG -Zm -Zm -mP -Bt -dj -pP -az -dj -ed -BH -dD -Or -rR -dj -fF -tu -Xc -OL -OL -Xc -Xc -Bt -jr -jr -uh -jr -jr -jr -jr -jr -jr -Bt -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -ln -ln -ln -dP -ln -ln -ln -AK -rm -dP -dP -dP -dP -rm -ln -ln -ln -ln -rm -dP -dP -rm -ln -ln -rm -rm -rm -rm -rm -xU -Qk -ob -ob -ob -rm -dP -nS -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(130,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -aF -dJ -hn -jp -lr -om -Ie -Ie -Ie -Co -Ie -Ie -Ie -HX -tZ -BJ -BJ -BJ -Qu -bw -bw -bw -bw -bw -mP -Bt -dj -hU -KT -gJ -ed -Le -MP -ne -dj -dj -lb -Xc -Xc -Zm -Zm -Xc -wp -Bt -Bt -Bt -Xc -Bt -Bt -Bt -Bt -Bt -jr -Bt -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -ln -ln -ln -dP -ln -ln -ln -ln -rm -rm -rm -rm -rm -rm -ln -ln -ln -ln -rm -dP -dP -FZ -dP -dP -dP -tp -dP -dP -FZ -xU -rm -ln -ln -ln -rm -dP -nS -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(131,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -II -aF -aF -aF -II -II -II -vW -zV -CA -Ek -FP -Ie -IK -Lo -Ie -Oq -Qd -aF -Zm -Zm -PG -Zm -Zm -mP -Bt -dj -Kk -xy -dj -NE -uK -Wx -KP -dj -Bt -fF -Bt -Xc -OL -OL -Xc -Xc -ka -Xc -Xc -Xc -Xc -Xc -Xc -Xc -ka -uh -Xc -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -nS -rm -rm -rm -FZ -rm -rm -rm -rm -rm -ln -gn -ln -ln -rm -rm -rm -rm -rm -rm -dP -ln -rm -rm -rm -rm -rm -rm -rm -rm -rL -rm -ln -ln -ln -rm -dP -nS -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(132,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -II -wl -zY -CY -qb -Qa -Ie -cN -Mn -Oc -OA -Qh -aF -Zm -Zm -PG -Zm -Zm -mP -XX -dj -dj -dj -dj -dj -SQ -La -dj -dj -Bt -fF -Bt -Bt -Bt -Xc -fF -fF -fF -fF -dB -Xc -fF -fF -fF -fF -fF -jr -jr -jr -jr -eu -Xc -dP -ln -dP -ln -ln -ln -ln -ln -nb -ln -ij -ij -ij -ij -Iy -ij -ij -ln -dP -dP -dP -ij -ij -cl -ij -ij -ij -ij -ij -ij -ln -Hq -Hq -Hq -rm -dP -dP -tG -rm -FX -rm -ln -ln -ln -rm -dP -nS -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(133,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -II -wt -Ae -Df -Ae -FV -Ie -Ie -Nn -Ie -ON -Qd -II -PG -PG -PG -PG -PG -mP -fF -Bt -uC -Bj -so -ZO -sy -Ui -UB -Fl -fF -fF -fF -fF -fF -ka -fF -fF -fF -fF -fF -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -jr -Xc -ij -ln -ij -ij -ij -ij -ij -ij -ij -ij -dP -hN -hN -hN -FZ -dP -ij -ij -ij -ij -ij -ij -ij -cl -ij -ij -ij -ij -ln -AX -ln -ln -ln -ln -rm -dP -dP -dP -zi -ei -rm -ln -ln -ln -rm -dP -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(134,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -II -wE -AE -Dl -EZ -FW -Ie -IW -Nx -Ie -OS -Qh -aF -Zm -Zm -PG -Zm -Zm -mP -fF -Bt -uC -Uw -Hz -Hz -aH -As -SH -gy -mP -mP -Bt -Bt -eF -Xc -fF -fF -fF -fF -fF -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -jr -Xc -ij -ln -ln -rm -rm -rm -qB -rm -rm -rm -rm -rm -rm -rm -rm -rm -rm -rm -rm -rm -rm -zi -zi -rm -rm -Vy -ln -ln -ln -EB -EB -EB -EB -EB -EB -dP -dP -dP -rm -ei -rm -ln -ln -ln -rm -dP -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(135,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -II -wY -Bl -Ds -Bl -Ge -Ie -Jl -Ny -Ie -OU -hI -aF -Zm -Zm -PG -PG -PG -mP -fF -Bt -uC -px -Ly -Lf -Lf -KC -fZ -gy -PG -mP -mP -Bt -fF -Xc -Xc -Xc -ka -Xc -Xc -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -jr -Xc -ij -ln -IN -rm -dP -dP -dP -dP -Gu -rm -dP -dP -dP -dP -FZ -dP -dP -dP -dP -zi -ln -ln -dP -ln -EB -EB -EB -EB -EB -EB -RX -Dd -cR -Me -EB -rm -rm -rm -rm -ks -rm -rm -rm -rm -rm -dP -nS -nS -Zm -PG -Zm -Zm -Zm -PG -PG -PG -PG -va -PG -PG -PG -PG -PG -PG -PG -va -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(136,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -PG -II -II -aF -aF -II -nK -nK -nK -nK -nK -nK -nK -nK -nK -Zm -PG -Zm -Zm -OL -fF -fF -OY -px -TI -px -Aa -IF -fZ -kC -PG -Zm -rP -Bt -fF -fF -Bt -Xc -Bt -Bt -Bt -ka -fF -fF -fF -fF -fF -fF -fF -fF -fF -jr -ka -ij -dP -IN -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -rm -FZ -rm -rm -rm -ln -ln -hN -ln -EB -hW -Am -Am -Am -Tf -tB -tB -RY -cv -EB -ln -ln -ln -ln -ei -CJ -ln -ln -ln -rm -dP -qS -nS -IY -nS -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(137,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -Zm -nK -aP -aq -xz -mJ -MU -MU -LO -nK -Zm -PG -Zm -Zm -mP -fF -gE -uC -IX -TI -iC -ym -IF -fZ -kC -Zm -Zm -rP -Bt -Bt -fF -Bt -Xc -Bt -fF -fF -ka -fF -fF -fF -fF -fF -fF -fF -fF -fF -jr -mi -iU -ob -rE -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -tG -rm -ln -ln -ln -hN -ln -EB -Ha -Aq -Aq -Aq -uD -el -el -He -pr -oW -ei -xU -ei -ei -ei -rm -ln -ln -ln -ln -dP -ln -FI -ln -LZ -PG -PG -PG -PG -PG -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(138,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -bw -bw -bw -bw -Zm -Zm -Zm -yl -Ak -BE -sW -xz -yR -IC -UU -Mu -PG -PG -bw -bw -mP -fF -fF -uC -px -yh -ma -Mr -MJ -fZ -gy -Zm -Zm -mP -Bt -Bt -fF -Bt -Xc -Bt -IG -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -Dy -yO -Fz -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -dP -rm -ln -ln -dP -hN -ln -EB -wC -vd -vd -vd -uq -UX -rd -WP -UE -EB -Ww -rm -rm -CJ -rm -rm -rm -KL -ln -ln -dP -Cl -nS -IY -nS -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(139,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -yl -pd -MR -lU -PT -MU -IC -te -wU -PG -bw -mP -mP -mP -Xc -UQ -uC -pW -JD -iC -ho -QY -vK -gy -Zm -Zm -mP -Bt -Bt -fF -Bt -Xc -Bt -fF -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -UY -yO -rE -qB -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -tp -rm -ln -ln -ln -dP -ln -EB -TX -Oe -jn -Qp -Qp -iQ -lz -KV -Er -EB -ei -rm -ln -ln -ln -ln -rm -rm -rm -rm -ln -nS -nS -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(140,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -nK -UR -sW -iX -VT -MU -IC -Ga -nK -PG -bw -mP -MH -Bt -Bt -OV -uC -uC -uC -La -SQ -uC -uC -gy -mP -mP -mP -Bt -Bt -fF -Bt -Xc -Bt -fF -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -UY -yO -IN -qB -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -rm -rm -rm -rm -rm -ln -ln -dP -ln -EB -ip -Cj -ph -ty -kU -vN -ZG -ss -OB -EB -ei -rm -ln -ln -ln -ln -rm -jU -jU -jU -ln -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(141,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -nK -bj -EW -QX -jk -QK -IC -Yi -nK -PG -bw -mP -nE -Bt -Zv -fF -oi -gl -lL -ya -yr -ka -fF -Xc -Bt -Bt -Xc -Xc -Xc -nm -Xc -Xc -Xc -nm -Xc -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -UY -yO -IN -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -ln -dP -dP -ln -EB -dS -Oe -lV -FN -FN -jN -Md -ss -OB -EB -ei -rm -rm -rm -rm -rm -rm -rm -rm -rm -zi -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(142,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -yl -Zb -HU -iX -nx -MU -mc -WC -nK -PG -bw -mP -Bt -Bt -Bt -HV -Bt -fF -ka -hp -yr -lL -fF -ru -Bt -Bt -Bt -Bt -Bt -fF -fF -fF -fF -IG -Bt -Xc -Xc -Xc -Xc -Xc -ka -ka -Xc -Xc -Xc -Xc -Xc -Oa -iz -qB -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -ln -dP -dP -ln -EB -kb -kZ -kZ -kZ -ig -xn -qm -GG -oU -EB -ei -rm -ln -ln -rm -dP -dP -dP -gQ -rm -ln -EN -PG -PG -bw -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(143,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -yl -My -Po -tw -ju -Fr -ze -Tb -nK -PG -mP -mP -Do -nU -Do -Gq -Xc -Xc -Xc -ya -yI -lL -DP -Xc -Bt -Bt -Bt -Xc -Xc -Xc -Xc -Xc -Xc -fF -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fx -Xc -UY -yO -rE -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -ln -hN -dP -ln -EB -de -ZQ -ZQ -ZQ -qm -gt -AB -ss -OB -EB -bW -rm -ln -ln -rm -dP -dP -dP -dP -rm -AJ -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -lA -lA -lA -lA -lA -PG -PG -PG -PG -PG -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(144,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -nK -IV -VM -Xb -Kf -XV -ze -LW -nK -PG -mP -gR -Mc -BW -QZ -mB -bg -hG -Xc -lQ -Yh -nk -mP -mP -mP -Bt -Bt -Xc -ri -pV -Sz -ad -Xc -fF -fF -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -UY -yO -rE -rm -dP -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -ln -hN -dP -ln -EB -zs -VL -mT -ly -ws -Rk -Wy -lH -wV -EB -ei -rm -ln -ln -rm -dP -dP -dP -dP -TW -dP -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -lA -lA -mH -XH -Sk -lA -pa -pa -pa -pa -PG -Hp -PG -PG -pa -pa -pa -pa -pa -pa -pa -pa -PG -PG -PG -ai -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(145,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -bw -PG -PG -PG -nK -nK -nK -yl -yl -yl -nK -nK -nK -PG -mP -ow -hb -fF -yL -yL -fF -Ja -Xc -hp -Cq -nk -Zm -Zm -mP -Bt -fF -Xc -zS -Sz -hT -GH -Xc -IG -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -Qj -xa -IN -rm -rm -rm -qB -rm -SK -rm -dP -dP -dP -dP -rm -dP -dP -dP -dP -rm -ln -ln -dP -ln -EB -EB -EB -EB -EB -uM -EB -EB -EB -EB -EB -ei -rm -ln -ln -rm -dP -dP -dP -dP -rm -dP -EN -PG -PG -bw -PG -PG -PG -PG -PG -PG -PG -va -PG -PG -PG -PG -PG -PG -PG -va -PG -PG -PG -PG -PG -PG -lA -Og -sI -Xy -sK -Gb -pa -gg -Jj -pa -pa -pa -pa -pa -pa -CF -CF -CF -CF -SR -SR -cF -cF -cF -cF -cF -cF -cF -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(146,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -mP -pe -Et -fO -fF -fF -fF -nw -Xc -hp -nM -nk -Zm -Zm -mP -Bt -eF -Xc -CG -Sz -Sz -mK -Xc -MQ -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -UY -xa -IN -rm -ln -ln -ln -rm -rm -rm -rm -rm -dP -dP -rm -dP -dP -dP -dP -rm -ln -ln -dP -ln -EB -dH -hq -hq -hq -vc -hq -Bg -EB -ln -ln -ei -rm -ln -ln -rm -dP -dP -dP -dP -rm -dP -nS -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -lA -CS -sI -oh -Xn -sK -Xp -kg -kg -kg -kg -CF -CF -CF -CF -CF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(147,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -mP -HW -Sj -fF -Jq -fF -fF -qN -Xc -Qo -nh -FF -PG -PG -OL -Bt -fF -Xc -ZP -Zt -Sz -YD -Wu -yL -yL -ka -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -ka -rE -yO -IN -rm -ln -ln -ln -rm -dP -dP -tG -rm -dP -dP -rm -dP -dP -dP -dP -rm -ln -ln -dP -rm -EB -EB -EB -lo -mV -zu -Bf -Eo -EB -Kw -ln -ei -rm -ln -ln -rm -rm -rm -rm -rm -rm -dP -nS -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -lA -lA -Dj -aE -sK -MW -pa -CF -CF -CF -kg -CF -CF -CF -CF -CF -cF -cf -cU -BR -cU -BR -IQ -BR -cU -BR -cU -cf -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(148,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -mP -Py -vR -fF -KK -fF -fF -sc -Xc -hp -nh -nk -Zm -Zm -mP -DP -IG -Xc -Uk -Sz -BL -eW -Xc -yL -yL -ka -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -ka -rE -yO -rE -FZ -dP -dP -dP -FZ -dP -dP -dP -rm -dP -dP -rm -dP -dP -dP -dP -rm -ln -ln -dP -rM -dP -ln -EB -EB -EB -EB -EB -EB -EB -ln -ln -ei -FZ -dP -dP -dP -dP -dP -dP -dP -dP -dP -nS -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -xJ -lA -lA -lA -cE -lA -pa -pa -pa -pa -KM -pa -pa -pa -pa -pa -cF -ZD -cU -BR -cU -BR -cU -BR -cU -BR -cU -BR -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(149,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -PG -mP -Vr -Mt -tC -vY -IB -mP -mP -mP -XZ -CW -nk -Zm -Zm -mP -wp -fF -Xc -Xc -Xc -Xc -Xc -Xc -fF -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -rE -yO -IN -rm -ln -ln -ln -rm -dP -dP -dP -rm -dP -dP -rm -dP -dP -dP -dP -rm -ln -ln -dP -FZ -dP -ln -ln -ln -ln -ln -ln -CJ -ln -ln -ln -ei -hM -hM -hM -hM -Yu -hM -hM -hM -hM -UL -Qz -Qz -Qz -Qz -Qz -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -xJ -xJ -Uj -cG -rK -RD -pa -CF -JK -CF -kg -QE -Dh -CF -JK -FE -cF -XK -cU -cU -cU -cU -cU -cU -cU -cU -cU -yE -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(150,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -bw -mP -mP -mP -mP -mP -mP -mP -PG -FF -VB -Yh -nk -Zm -Zm -mP -wp -fF -Bt -Bt -cV -cV -Bt -Bt -fF -Bt -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -rE -yO -IN -rm -ln -ln -ln -rm -rm -FZ -rm -rm -dP -dP -rm -dP -dP -rm -FZ -rm -rm -zi -zi -rm -dP -ei -ei -ei -ZR -ei -ei -Ww -ei -ei -ei -ei -hM -Fa -dL -dL -dL -dL -pq -hM -Fa -dL -dL -dL -dL -dL -ds -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -xJ -xJ -sw -Uj -rK -Uj -pa -JK -Wr -JK -Ox -ay -JK -JK -Wr -Ox -hz -qs -cU -BR -cU -JF -cU -bX -cU -BR -cU -BQ -cF -cF -id -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(151,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -nk -qM -yr -nk -mP -mP -mP -Xc -nm -Xc -Xc -Xc -Xc -Xc -Xc -nm -Xc -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -Qj -iU -ln -rm -ln -rm -ln -rm -dP -dP -tG -rm -dP -dP -rm -dP -dP -rm -ei -wu -ei -ZR -ei -ei -nN -ei -rm -rm -rm -zi -rm -rm -rm -rm -rm -zi -hM -Fa -dL -dL -dL -dL -dL -hM -Fa -ku -hM -dL -dL -dL -ds -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -xJ -xJ -Uj -Uj -rK -dQ -pa -CF -JK -CF -kg -bV -bT -PU -Ox -um -cF -Pq -cU -cU -cU -cU -cU -cU -cU -cU -cU -cU -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(152,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -FF -hp -yr -hH -Xc -Bt -fF -fF -fF -fF -IG -nm -fF -Ri -fF -fF -IG -Xc -fF -fF -fF -fF -fF -fF -fF -fF -fF -fF -Xc -Iy -mq -CJ -rm -ln -ln -ln -FZ -dP -dP -dP -rm -dP -dP -rm -rm -rm -rm -ei -rm -rm -rm -zi -rm -rm -rm -rm -ln -ln -dP -ln -ln -rm -ln -ln -dP -hM -hM -dL -dL -dL -dL -dL -hM -hM -hM -hM -hM -Yu -Yu -Qz -Qz -Qz -Qz -Qz -OE -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -bw -xJ -Qf -Qf -Qf -CB -Qf -pa -pa -pa -pa -KM -pa -pa -pa -pa -pa -cF -ZD -cU -BR -cU -BR -cU -BR -cU -BR -cU -BR -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(153,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -nk -Ch -yr -ZA -Xc -xd -fF -Sm -UI -FS -UI -Wq -Wq -Wq -Wq -Wq -fF -Xc -Xc -Xc -Xc -Xc -ka -ka -Xc -Xc -Xc -Xc -Xc -ij -iU -QN -rm -ln -ln -ln -rm -dP -dP -dP -rm -ln -ln -ln -ln -ln -rm -ei -rm -ln -ln -ln -CJ -ln -ln -rm -ln -ln -dP -ln -ln -rm -ln -ln -dP -ln -hM -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -qg -Qz -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -Qf -Qf -Vo -SP -bi -yY -pa -CF -CF -CF -kg -CF -CF -CF -CF -CF -cF -cf -cU -uR -cU -BR -dF -dh -cU -BR -cU -cf -cF -cF -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(154,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -FF -hp -Vk -Xc -Xc -Bt -IG -UI -YF -oB -Sr -Wq -mm -tE -Kl -Wq -oF -ar -oF -oF -fn -oF -oF -oF -CC -oF -Te -wP -wP -ge -SN -ij -rm -rm -ln -ln -rm -rm -FZ -rm -rm -rm -rm -ln -ln -ln -CJ -dy -rm -ln -ln -ln -rm -jU -jU -rm -ln -ln -dP -dP -ln -rm -ln -ln -dP -ln -dt -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Qf -Rb -LL -Ro -lB -bi -Xp -kg -kg -kg -kg -CF -CF -CF -CF -CF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -cF -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(155,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -nk -Zl -yr -Xc -fF -fF -fF -UI -YX -GS -Rv -Wq -Nf -rG -rG -Wq -xp -Wq -Wq -Wq -Wq -Wq -Wq -Wq -Wq -Wq -rm -ln -dP -UY -SN -ij -ij -rm -rm -CJ -rm -dP -dP -dP -dP -tW -rm -ln -ln -iO -CJ -ei -rm -ln -ln -QN -rm -rm -rm -rm -ln -ln -dP -dP -ln -rm -ln -ln -dP -ln -dt -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Qf -Rb -LL -Fi -bi -EU -pa -pc -gZ -pa -pa -pa -pa -pa -pa -CF -CF -CF -CF -SR -SR -cF -cF -cF -cF -cF -cF -cF -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(156,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -FF -ya -yr -ka -fF -fE -fF -UI -Nd -oB -AR -Wq -nT -rG -xW -RW -BI -WW -AC -Wq -NZ -bN -LT -Ml -mZ -Wq -ln -ln -ln -ij -SN -ij -ij -rm -ln -ln -CJ -dP -dP -dP -dP -dP -rm -rm -rm -rm -rm -ei -rm -ln -rm -rm -rm -ln -ln -CJ -ln -ln -dP -dP -ln -CJ -ln -ln -dP -ln -hM -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Qf -Qf -zk -sx -BN -Qf -pa -pa -pa -pa -PG -uu -PG -PG -pa -pa -pa -pa -pa -pa -pa -pa -PG -PG -PG -pt -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(157,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -bw -Zm -nk -Ju -Sb -Xc -fF -fF -Ri -UI -rY -Sr -sS -Wq -rl -rG -qK -Yw -oQ -qK -UM -Wq -Ct -SC -bN -bN -vl -Wq -ln -ln -ln -ij -SN -ij -ij -rm -ln -ln -rm -dP -dP -dP -dP -dP -rm -ln -ln -ln -rm -ei -rm -ln -ln -ln -CJ -ln -ln -CJ -ln -ln -dP -dP -dP -FZ -dP -dP -dP -ln -hM -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -ds -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Qf -Qf -Qf -Qf -Qf -PG -PG -PG -PG -PG -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(158,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -bw -Zm -FF -ya -sB -Xc -UI -UI -UI -UI -UI -kw -UI -UI -AO -rG -SL -Wq -PR -qK -rG -wF -rD -HC -SD -Yr -LK -Wq -ln -ln -ln -dP -SN -ij -ij -rm -ln -rm -rm -rm -rm -FZ -rm -rm -rm -ln -ln -ln -rm -nN -rm -rm -rm -rm -rm -ln -ln -rm -ln -dP -dP -dP -ln -rm -ln -ln -ln -ln -hM -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -ds -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(159,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -tQ -tQ -cr -tQ -tQ -Zm -bw -Zm -nk -vS -Cf -VF -UI -eb -jQ -Lc -vT -Mz -kO -UI -UI -xf -rG -Wq -Qe -cM -Hc -OW -ND -OW -OW -OW -zz -Wq -ln -ln -ln -dP -SN -ij -ij -CJ -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -CJ -ei -FZ -dP -dP -ln -rm -rm -rm -rm -ln -dP -dP -dP -ln -rm -ln -ln -ln -ln -hM -dL -dL -dL -dL -dL -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(160,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -tQ -Da -Cy -PH -tQ -Zm -bw -Zm -FF -ya -Cf -hO -UI -Im -Mz -Mz -DF -tq -Mz -Mx -UI -jC -BB -Wq -MB -bb -YL -hy -uP -jA -QH -Pu -DV -Wq -ln -ln -dP -dP -ei -ij -ij -CJ -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -ln -CJ -ei -FZ -dP -dP -dP -dP -ln -ln -CJ -ln -dP -dP -ln -ln -CJ -ln -ln -ln -hM -hM -hM -hM -Yu -hM -hM -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(161,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -cr -qd -yb -PH -cr -Zm -bw -Zm -nk -ya -Cf -El -DD -QW -Mz -OH -HR -OH -Mz -rq -UI -Wq -Wq -Wq -ZX -BD -BC -Vq -Fw -Tz -BC -JE -BC -Wq -hM -hM -hM -hM -mR -hM -hM -hM -hk -hM -hM -ln -ln -ln -ln -ln -ln -hM -hM -cq -hM -mR -hM -OG -zB -dP -dP -dP -ln -CJ -ln -ln -dP -ln -ln -CJ -ln -ln -pB -hM -Dz -PS -Fa -Fa -Fa -Fa -hM -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -Qz -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(162,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -xw -fP -Ra -PH -tQ -PG -bw -PG -FF -oM -Cf -wh -DD -Uy -Iu -Wn -Gx -OH -Mz -xP -UI -jc -Cg -Gl -gb -BD -BP -Vq -aR -Tz -BP -JE -BP -Wq -Fa -Fa -Fa -fh -dc -dL -eY -dL -dL -dL -hM -hM -hM -hM -hM -hM -hM -hM -dc -dc -mR -NL -hM -hM -hM -hM -hM -hM -hM -hM -hM -hM -cq -hM -hM -hM -hM -hM -hM -hM -eY -Fa -Fa -Fa -hM -hM -hM -dL -dL -dL -mY -dL -dL -dL -dL -dL -dL -Qz -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(163,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -tQ -tQ -cr -tQ -tQ -Zm -bw -Zm -nk -YK -Cf -Af -DD -xQ -OH -Mz -Gx -Mz -Mz -Lm -UI -Wq -Wq -Wq -td -yT -rb -qw -ra -Xg -rb -xH -YJ -Wq -Fa -Fa -dL -dL -dc -dc -dc -dc -AS -dc -dc -dc -dc -dc -dc -dc -Hd -dc -dc -dL -cq -dc -dc -hM -Fa -Fa -Fa -Fa -Fa -ER -ER -ER -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -dL -hM -hM -hM -hM -hM -Yu -Yu -Qz -Qz -Qz -Qz -Qz -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(164,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -bw -PG -FF -Qm -sJ -wh -UI -UI -Tt -ny -bk -UI -UI -UI -UI -MF -LE -Wq -Wq -xO -Wq -qn -Wq -qn -Wq -qn -Wq -Wq -hM -hk -hM -hM -hM -hM -rt -hM -hM -hM -cq -hM -hM -hM -hM -hM -hM -hM -hM -hM -hM -Nz -dc -sN -dL -dL -dL -dL -dL -dL -dL -dL -dL -oV -ER -ER -ER -ER -ER -ER -OX -ZL -ER -Fa -Fa -dL -dL -dL -dL -dL -sN -dL -dL -Qz -PG -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(165,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -bw -Zm -bw -Zm -FF -wL -sJ -sJ -ae -uY -LN -LN -mp -An -yc -zH -It -zf -zf -ef -tN -cg -zf -zf -NS -Wj -LJ -zH -zp -lL -Fa -Fa -Fa -Fa -Fa -Fa -ol -hM -Fa -Fa -dL -Sd -dL -dL -hM -dL -dL -dL -zF -hM -Fa -Fa -dc -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -dL -Qz -Qz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(166,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -bw -Zm -bw -Zm -nk -Wp -Ye -Ye -xg -Ye -Ye -Ws -NV -Nt -Ye -Ws -Ws -Ws -Ws -hX -Ws -qZ -Ws -Ye -Ws -TL -Ye -Ye -zp -lL -Fa -Fa -Fa -Fa -Fa -Fa -ol -cq -dL -dL -dL -Fa -Fa -ku -hM -dL -dL -dL -dL -hM -hM -hM -Wi -Qv -jw -Wb -Wb -DM -Wb -Jd -Qv -gs -uc -Mk -Qv -LS -YV -Wb -JH -Wb -Wb -JH -AQ -Wb -JH -Wb -Wb -JH -Pi -Wb -xj -dL -Qz -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(167,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -bw -PG -bw -PG -nk -Td -uX -ya -Bp -hp -hp -De -Uz -pA -UD -yt -Wo -Ou -vz -Ts -fM -uU -Ne -uU -EQ -QL -Ns -ya -zp -lL -hM -hM -hM -hM -hM -Fa -ol -hM -dL -dL -dL -dL -Fa -dL -cq -dL -dL -dL -dL -cq -Fa -dL -dc -Qv -xt -Wb -jJ -wR -Ni -Jd -Qv -RR -uk -hj -Qv -Wb -MS -Wb -JH -MS -Wb -JH -Wb -Wb -JH -Wb -Wb -JH -Wb -Wb -xj -dL -Qz -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(168,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -Zm -bw -PG -nk -nk -FF -FF -nk -FF -nk -FF -nk -FF -nk -FF -nk -lL -lL -lL -lL -lL -lL -Lz -lL -FF -lL -FF -lL -lL -ol -ol -ol -ol -ol -ol -ZS -hM -hM -cq -hM -hM -Fa -dL -hM -dL -dL -dL -dL -hM -Fa -dL -dc -Qv -sv -Wb -Wb -Ah -Wb -pF -Qv -ur -mG -ou -Qv -AY -Wb -Wb -sF -Wb -Wb -sF -Wb -Wb -sF -Wb -Wb -sF -Wb -jJ -xj -cO -Qz -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(169,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -Zm -bw -PG -PG -PG -Zm -Zm -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -VQ -gq -Rj -jj -sA -nJ -ZV -KR -bI -KR -lD -KR -yk -fA -ol -hM -hM -hM -hM -hM -cq -hM -dL -dL -WK -hM -dL -dL -hM -dL -dL -dL -dL -hM -Fa -dL -dc -Qv -Qv -LM -IZ -pI -Wb -LM -Qv -Qv -ub -zb -Qv -WQ -xc -lY -qj -VA -Kn -HY -Xd -kh -KD -jX -FG -TK -GR -xj -LM -cO -Qz -Qz -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(170,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -VQ -Hf -Rj -Rj -Rj -tI -sn -aC -Lw -cC -aC -aC -KR -vH -ol -hM -dL -dL -Oi -hM -dL -cq -dL -dL -dL -cq -Fa -dL -hM -hM -lP -lP -hM -hM -Fa -dL -dc -Qv -RN -JA -Nw -KN -JA -JA -RN -Qv -oy -Gm -Qv -qh -qC -Yo -Pf -MK -fS -Pf -Dt -QB -ct -Zo -nl -ct -Os -Vb -Qv -cO -lW -Qz -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(171,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -PG -PG -bw -PG -VQ -Is -VS -KY -Rj -fv -nV -Zj -Gn -Oj -jS -Dp -nV -fA -eQ -hM -dL -dL -dL -hM -dL -hM -dL -dL -dL -hM -Fa -dL -hM -dL -dL -dL -zF -hM -Fa -dL -dc -Qv -Fx -ZY -ki -MZ -xr -ZY -Vz -Zy -Cu -ZY -qT -Nl -MV -ZY -QI -ZY -ZY -ZY -ZY -ZY -ZY -ZY -VJ -QI -ZY -AZ -cp -cO -Jk -Qz -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(172,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -bw -Zm -bD -Bq -Tj -gV -vL -fv -nV -ik -Gn -qA -jS -Dp -aa -fA -dL -hM -dL -dL -dL -cq -dL -hM -hM -cq -hM -hM -Fa -dL -hM -dL -dL -dL -dL -hM -Eh -cO -dc -Qv -wg -ii -Cc -kX -Fk -Dc -jz -ov -sE -Id -hJ -DU -Sg -hJ -pC -zA -hJ -tH -XW -hJ -XT -PB -hJ -Ej -Gz -Qb -Qv -cO -hi -ds -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(173,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -bw -PG -bD -CD -gV -NX -vL -fv -Yz -Zj -Gn -QP -jS -Dp -fl -VQ -XS -Qz -dL -dL -dL -hM -dL -hM -dL -dL -WK -hM -dL -dL -cq -dL -dL -dL -dL -cq -Fa -dL -dc -Qv -Fu -nX -cA -OP -cA -cA -pg -Qv -wz -OF -OO -Oy -CV -Yk -Zh -Jw -Mm -tS -hB -PA -rX -uz -lq -WG -Gs -ZK -LM -zE -Fa -Qz -PG -Zm -Zm -bw -Zm -bw -Zm -Zm -PG -kS -kS -kS -kS -bw -Ep -Zm -Zm -Zm -Zm -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(174,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -PG -VQ -XA -FL -FL -Rj -fv -QP -Zj -Gn -QP -jS -Dp -IS -VQ -PG -Qz -dL -dL -dL -hM -dL -cq -dL -dL -dL -cq -Fa -dL -hM -dL -dL -dL -dL -hM -Fa -dL -dc -Qv -rS -NR -JT -ZY -FK -ZY -cd -Qv -Wb -Wb -vF -Wb -Wb -vF -Wb -Wb -vF -Wb -Wb -vF -Wb -Wb -vF -Wb -Wb -Ab -Ef -cO -cO -Qz -PG -Zm -Zm -PG -Zm -PG -Zm -MI -MI -MI -Yf -dE -kS -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(175,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -VQ -xM -NA -df -vb -fv -QP -Zj -Gn -QP -jS -Dp -QP -VQ -PG -Qz -Qz -ds -Qz -Qz -ds -hM -dL -dL -dL -hM -hM -cq -hM -dL -dL -dL -dL -hM -hM -hM -wb -Qv -NJ -Tw -MA -tD -zv -Qv -Qv -Qv -Wb -Wb -Wt -Wb -MS -Wt -Wb -Wb -Wt -Wb -Wb -Wt -Wb -Wb -Wt -Wb -Wb -Wb -Ef -Fa -cO -Qz -PG -PG -PG -PG -Zm -PG -PG -MI -TT -YO -HH -dE -kS -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(176,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -VQ -VQ -bD -bD -VQ -VQ -bD -VQ -VQ -bD -VQ -VQ -bD -VQ -PG -PG -PG -PG -PG -PG -PG -Qz -ds -ds -ds -hM -Fa -dL -hM -hM -hM -hM -hM -hM -hM -Fa -dc -Qv -Qv -iN -Qv -Qv -tK -Qv -ER -Qv -Wb -Wb -Wt -Hb -Od -Wt -Wb -Wb -Wt -Wb -Od -JP -Wb -Wb -Wt -Wb -Od -gO -Ef -Fa -cO -Qz -PG -Zm -Zm -PG -PG -PG -Zm -MI -gY -gY -Fh -dE -kS -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(177,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -PG -PG -PG -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -PG -PG -PG -PG -PG -ds -Fa -dL -dL -dL -dL -dL -dL -Fa -hM -lW -dc -hM -Ls -Vg -jv -Qv -Qv -Qv -ER -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -Qv -cO -cO -Qz -PG -Zm -Zm -Zm -PG -Zm -Zm -MI -eP -oL -oL -dE -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(178,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -PG -PG -kS -Qz -hM -Rl -Fa -dL -Fa -Fa -Fa -Fa -dL -Fa -hM -PS -ko -TR -Vi -Vi -Fa -Fa -ER -ER -ER -ER -ER -ER -ER -ER -Ld -ER -LC -dL -OT -ER -kH -Fa -Fa -Mv -jM -ER -ER -ER -hM -cO -on -Qz -Qz -MI -MI -MI -dE -MI -MI -MI -oL -oL -oL -dE -Ep -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(179,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -ah -PG -Zm -Zm -PG -Zm -PG -Zm -Zm -PG -bw -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -kS -fz -ME -JM -dL -dL -Fa -Fa -vr -hM -lP -hM -hM -Fa -Vg -hM -Fa -NG -Lt -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -Vi -nZ -DS -cO -cO -cO -YT -cO -dL -Fa -Fa -Zq -cP -pw -Jc -Rn -vu -BT -oL -tf -TP -dE -Ep -bw -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(180,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -PG -Zm -Zm -bw -bw -bw -bw -bw -bw -PG -PG -PG -PG -PG -kS -BO -BO -BO -dL -Fa -Fa -Fa -Fa -hM -ko -Vi -Up -Vi -ha -hM -kB -Jv -TZ -Qz -Qz -Qz -Qz -Qz -ww -dd -Fa -ER -Fa -Fa -Fa -Fa -WB -Fa -XR -Fa -Fa -lW -ER -ER -dL -ER -hM -ER -hi -dL -dL -iR -HH -uj -HH -HH -iS -gY -gY -gY -gY -MI -MI -MI -MI -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(181,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -BO -Nq -BO -BO -BO -zy -zy -zy -zy -Vg -Fa -zy -zy -zy -zy -zy -zy -zy -Qz -PG -PG -PG -Qz -Qz -Qz -Qz -ds -Qz -ds -Qz -Qz -Qz -Qz -Qz -Qz -Qz -ds -Qz -Qz -dL -ER -Qz -Qz -Qz -Qz -Qz -MI -HH -HH -HH -HH -hF -uN -bh -ts -bh -ts -bh -bh -dC -kv -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(182,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -bw -bw -Zm -Zm -Zm -PG -BO -hf -uS -QM -BO -Nr -zy -Kq -zy -Vg -XR -zy -Xs -Wz -Wz -wT -fj -zy -Zm -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -PG -Zm -Qz -dL -eY -Qz -Zm -Zm -Zm -Zm -MI -Fn -Fn -hu -HH -vj -gY -Ur -gU -gU -gU -gU -Ic -MI -MI -PG -PG -PG -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(183,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -BO -UN -Ag -Pe -BO -NI -zy -Kq -zy -Hm -zy -zy -Gk -VN -VN -VN -cQ -HJ -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -bw -Zm -Qz -Fa -mu -Qz -PG -PG -PG -PG -MI -gY -gY -gY -HH -HH -xF -HH -HH -mt -VI -Vc -HH -SU -dE -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(184,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -bS -by -rO -aJ -BO -Sl -zy -aj -zy -YH -CK -se -Gk -VN -qf -VN -cQ -HJ -PG -PG -PG -PG -bw -PG -PG -bw -bw -bw -bw -bw -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Qz -Qz -Qz -Qz -Zm -Zm -Zm -Zm -MI -Rx -HH -nn -HH -HH -gY -HH -HH -Vc -HH -Vc -HH -IO -dE -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(185,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -PG -bS -NB -tY -Ke -BO -NI -zt -NI -VG -md -qH -Mf -Gk -VN -VN -VN -cQ -HJ -PG -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -PG -Zm -Zm -Zm -Zm -Zm -MI -Rx -HH -nn -HH -HH -gY -CX -sb -Fn -ej -ej -wD -MI -MI -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(186,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -PG -PG -PG -PG -PG -PG -PG -PG -bw -PG -PG -PG -PG -bS -NB -GK -GK -nd -rH -Pv -rH -rI -nj -ew -Mf -YA -VN -VN -VN -cQ -zy -PG -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -PG -Zm -Zm -Zm -Zm -Zm -MI -MI -MI -MI -dE -MI -MI -MI -MI -dE -dE -dE -MI -MI -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(187,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -bS -NB -pT -Ap -BO -zy -zy -zy -zy -lt -BK -mC -SG -Ih -bf -Ih -Io -zy -PG -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(188,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -BO -xu -Lx -BV -Gj -zy -KQ -wQ -Rw -yX -QT -od -PY -Lk -zy -zy -zy -zy -PG -Zm -Zm -Zm -bw -Zm -Zm -ah -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(189,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -BO -BO -BO -BO -BO -zy -QD -jL -YI -Hl -Hl -QT -Hl -Tm -zy -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(190,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -zy -Aw -KO -Ji -fg -Wk -Tx -Ax -Ln -zy -PG -PG -PG -bw -bw -bw -bw -bw -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(191,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -zy -zy -zy -zy -bu -bu -bu -zy -zy -zy -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(192,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -PG -PG -bw -PG -bw -bw -bw -PG -bw -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -PG -Zm -Zm -Zm -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(193,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -LP -LP -iG -LP -LP -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(194,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -bw -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -LP -Cb -bO -tr -LP -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(195,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -bw -Zm -Zm -PG -PG -PG -bw -PG -bw -bw -PG -bw -bw -bw -bw -bw -bw -bw -bw -bw -bw -PG -PG -bw -PG -PG -PG -PG -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -iG -Cb -gp -Zg -iG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(196,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -bw -bw -bw -bw -bw -bw -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -LP -Cb -kf -BG -di -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(197,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -LP -LP -iG -LP -LP -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(198,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(199,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(200,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(201,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -PG -Zm -PG -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(202,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(203,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(204,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(205,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(206,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -PG -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(207,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(208,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(209,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(210,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(211,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(212,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(213,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(214,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(215,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(216,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(217,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(218,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(219,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(220,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(221,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(222,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(223,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(224,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(225,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(226,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(227,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(228,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(229,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(230,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(231,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(232,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(233,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(234,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(235,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(236,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(237,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(238,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(239,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(240,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(241,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(242,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(243,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(244,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(245,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(246,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(247,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(248,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(249,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(250,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(251,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(252,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(253,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(254,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} -(255,1,1) = {" -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -Zm -"} diff --git a/_maps/map_files/ConstructionStation/ConstructionStation.dmm b/_maps/map_files/ConstructionStation/ConstructionStation.dmm deleted file mode 100644 index 0389cde7c016..000000000000 --- a/_maps/map_files/ConstructionStation/ConstructionStation.dmm +++ /dev/null @@ -1,69680 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"ae" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space) -"aj" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"al" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"am" = ( -/obj/structure/lattice, -/obj/item/clothing/gloves/color/yellow, -/turf/open/space/basic, -/area/space) -"ap" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"as" = ( -/obj/structure/table/reinforced, -/obj/item/weldingtool/experimental, -/obj/item/crowbar/power, -/obj/item/screwdriver/power, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aL" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aN" = ( -/obj/structure/chair/comfy/shuttle, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aU" = ( -/turf/open/floor/plating/asteroid/airless/cave, -/area/space/nearstation) -"aV" = ( -/obj/structure/chair/comfy/shuttle, -/obj/effect/landmark/start/captain, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bd" = ( -/turf/open/space/basic, -/area/tcommsat/oldaisat) -"bi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bl" = ( -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"br" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"bu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bv" = ( -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"bw" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/science/research) -"bx" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bA" = ( -/obj/effect/landmark/latejoin, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bB" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bJ" = ( -/obj/structure/table, -/obj/item/pizzabox/pineapple, -/obj/item/gun/energy/laser/retro, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bW" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cc" = ( -/obj/structure/table, -/obj/item/pizzabox/vegetable, -/obj/item/kitchen/knife, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ce" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"ci" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"cj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cx" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/oldaisat) -"cz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"cD" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"cG" = ( -/obj/structure/table, -/obj/item/integrated_circuit_printer, -/obj/item/gps{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cO" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cT" = ( -/obj/machinery/door/airlock, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"cY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"dc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"de" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser{ - pixel_y = 7 - }, -/obj/item/pipe_dispenser, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"df" = ( -/obj/structure/table/reinforced, -/obj/item/gps{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/gps{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dl" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dx" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/rods{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dA" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"dI" = ( -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dJ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"dT" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"dZ" = ( -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"eb" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ef" = ( -/obj/machinery/door/airlock, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ei" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ew" = ( -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"eE" = ( -/turf/closed/wall, -/area/space) -"eP" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"eW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"fd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"fj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"fl" = ( -/obj/structure/table/reinforced, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"fn" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"fq" = ( -/turf/open/floor/plating/asteroid/airless/cave, -/area/command/gateway) -"fy" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"fA" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"fC" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"fH" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/hud/diagnostic, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/storage/bag/ore, -/turf/open/floor/plating, -/area/construction/storage_wing) -"fI" = ( -/turf/closed/wall/mineral/plastitanium, -/area/cargo/storage) -"fS" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research) -"gi" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"gu" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gx" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gA" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gD" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"gK" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/engineering/storage_shared) -"gM" = ( -/obj/structure/closet/crate/medical, -/obj/item/circuitboard/machine/chem_dispenser, -/obj/item/circuitboard/machine/chem_dispenser, -/obj/item/circuitboard/machine/chem_dispenser, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gP" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gQ" = ( -/obj/machinery/pdapainter, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"gR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"gU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"gV" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"gX" = ( -/obj/item/stack/sheet/plasteel, -/turf/open/space/basic, -/area/space) -"ha" = ( -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = null - }, -/turf/open/floor/plating, -/area/cargo/storage) -"hc" = ( -/obj/item/stock_parts/subspace/transmitter, -/turf/open/space/basic, -/area/space) -"hm" = ( -/obj/item/stack/cable_coil, -/turf/open/space/basic, -/area/space) -"hA" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hH" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"hJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"hL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/command, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/science/research) -"hU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ih" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"is" = ( -/obj/structure/frame/machine, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"iw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ix" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"iy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iD" = ( -/obj/item/card/id/departmental_budget/car, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iM" = ( -/obj/item/card/id/advanced/gold/captains_spare, -/obj/item/areaeditor/blueprints, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iP" = ( -/obj/item/gun/energy/disabler{ - pixel_y = 4 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = -4 - }, -/obj/item/melee/baton/loaded, -/obj/item/assembly/flash, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs, -/obj/structure/closet/crate/secure/gear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iR" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/advanced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iS" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/science/research) -"iT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iW" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jd" = ( -/obj/machinery/door/airlock/external/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"je" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"jl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/space) -"jw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jx" = ( -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"jH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jY" = ( -/obj/structure/lattice, -/obj/item/construction/rcd/loaded, -/turf/open/space/basic, -/area/space) -"jZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ka" = ( -/obj/machinery/monkey_recycler, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"kd" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 12; - height = 18; - id = "emergency_home"; - name = "NT SS13: emergency evac bay"; - width = 32 - }, -/turf/open/space/basic, -/area/space) -"ke" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/construction/storage_wing) -"kr" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"kA" = ( -/obj/structure/closet/radiation{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"kG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"li" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ls" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lz" = ( -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"lA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lB" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"mb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"me" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/construction/rcd/loaded, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"mf" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"mo" = ( -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"mu" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"my" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/construction/storage_wing) -"mz" = ( -/turf/open/floor/plating, -/area/science/research) -"mC" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/turf/open/floor/plating, -/area/construction/storage_wing) -"mG" = ( -/obj/structure/closet/crate/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plating, -/area/construction/storage_wing) -"mL" = ( -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"mT" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"na" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"nj" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pickaxe/drill, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plating, -/area/construction/storage_wing) -"nl" = ( -/obj/structure/closet/crate/science, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"nr" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"nv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nw" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, -/area/space) -"nC" = ( -/obj/structure/closet/crate/science, -/obj/machinery/light/small, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe/department/cargo, -/obj/item/circuitboard/machine/protolathe/department/engineering, -/obj/item/circuitboard/machine/protolathe/department/medical, -/obj/item/circuitboard/machine/protolathe/department/science, -/obj/item/circuitboard/machine/protolathe/department/security, -/obj/item/circuitboard/machine/protolathe/department/service, -/turf/open/floor/plating, -/area/construction/storage_wing) -"nK" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nL" = ( -/obj/structure/closet/crate/engineering, -/obj/item/construction/rcd/loaded, -/obj/item/construction/rcd/loaded, -/obj/item/crowbar/power, -/obj/item/crowbar/power, -/obj/item/screwdriver/power, -/obj/item/screwdriver/power, -/obj/item/weldingtool/experimental, -/obj/item/weldingtool/experimental, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"nO" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/science/research) -"nS" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nW" = ( -/turf/closed/wall, -/area/mine/lobby) -"nZ" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"od" = ( -/obj/structure/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"om" = ( -/turf/closed/wall/r_wall, -/area/mine/lobby) -"ov" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oA" = ( -/obj/structure/closet/crate/engineering, -/obj/item/construction/rcd/loaded, -/obj/item/construction/rcd/loaded, -/obj/item/crowbar/power, -/obj/item/crowbar/power, -/obj/item/screwdriver/power, -/obj/item/screwdriver/power, -/obj/item/weldingtool/experimental, -/obj/item/weldingtool/experimental, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"oI" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oJ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"oM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/mine/lobby) -"oO" = ( -/turf/open/floor/circuit/green, -/area/mine/lobby) -"oV" = ( -/turf/closed/wall, -/area/engineering/storage_shared) -"pd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/mine/lobby) -"pf" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/window/brigdoor/southleft, -/obj/item/folder/documents{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pr" = ( -/obj/item/circuitboard/machine/telecomms/hub, -/turf/open/space/basic, -/area/space) -"pD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/ore_box, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"pQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/ore_box, -/turf/open/floor/plasteel, -/area/mine/lobby) -"qa" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"qh" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/starboard/fore) -"qp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/electrical{ - pixel_y = -13 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"qq" = ( -/obj/structure/table/reinforced, -/obj/item/circuitboard/machine/autolathe, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qt" = ( -/obj/machinery/autolathe/hacked, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qw" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qE" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plating, -/area/construction/storage_wing) -"qN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"qQ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"qR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"qS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/nuclearbomb/selfdestruct, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"qT" = ( -/obj/machinery/door/airlock/vault{ - req_access_txt = "20" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"qW" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/seven, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"rf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rk" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"rq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rt" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ru" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rx" = ( -/obj/structure/table, -/obj/item/pizzabox/meat, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rI" = ( -/obj/machinery/door/airlock/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/research) -"rX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rY" = ( -/turf/open/floor/plasteel, -/area/mine/lobby) -"sa" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/turf/open/floor/plating, -/area/science/research) -"sh" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/science/research) -"sl" = ( -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel, -/area/science/research) -"sr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"sz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"sL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"sQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"sU" = ( -/obj/item/stock_parts/subspace/crystal, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"sV" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"ta" = ( -/obj/structure/closet/supplypod, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"ti" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tn" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/observer_start, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tt" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/space/basic, -/area/space) -"tF" = ( -/obj/structure/closet/firecloset/full{ - anchored = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tH" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tS" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"tT" = ( -/obj/item/stock_parts/micro_laser, -/turf/open/space/basic, -/area/space) -"uf" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"ug" = ( -/obj/structure/safe, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/spacecash/c500, -/obj/machinery/light/small, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"um" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pickaxe/mini, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/tools{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"ux" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vf" = ( -/obj/item/circuitboard/machine/telecomms/bus, -/turf/open/space/basic, -/area/space) -"vm" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"vp" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/gps/mining, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vI" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/item/disk/nuclear, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vQ" = ( -/obj/item/stock_parts/subspace/treatment, -/turf/open/space/basic, -/area/tcommsat/oldaisat) -"wf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wp" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wq" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, -/area/space) -"wt" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wB" = ( -/turf/open/floor/plasteel/airless, -/area/space) -"wD" = ( -/obj/item/stock_parts/subspace/filter, -/turf/open/space/basic, -/area/space) -"wH" = ( -/turf/open/floor/plating, -/area/construction/storage_wing) -"wM" = ( -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/window/brigdoor/northleft, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wN" = ( -/obj/machinery/vendor/exploration, -/turf/open/floor/plating, -/area/science/research) -"wO" = ( -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wU" = ( -/obj/structure/table/reinforced, -/obj/item/slime_scanner, -/obj/item/storage/bag/bio, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wW" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/gravity_generator/main/station, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"wZ" = ( -/obj/structure/lattice, -/turf/closed/mineral, -/area/mine/unexplored) -"xr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/bounty{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xO" = ( -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 8; - pixel_y = -10; - stored_files = list(/datum/computer_file/program/contract_uplink) - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"xP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/mine/lobby) -"xQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"xT" = ( -/turf/open/floor/plating, -/area/mine/lobby) -"yc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel, -/area/science/research) -"yd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"ye" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yo" = ( -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"yr" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"yt" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"yy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"yE" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yI" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yP" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel, -/area/science/research) -"za" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"zc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/fore) -"ze" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"zj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/storage) -"zo" = ( -/obj/item/circuitboard/machine/telecomms/server, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"zs" = ( -/obj/structure/sign/poster/contraband/free_drone{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/lobby) -"zC" = ( -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"zD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"zI" = ( -/obj/machinery/rnd/server, -/turf/open/floor/plasteel/dark, -/area/science/research) -"zS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plating, -/area/science/research) -"Ah" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"Al" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"Au" = ( -/turf/closed/wall, -/area/construction/storage_wing) -"Av" = ( -/obj/structure/frame/machine, -/turf/open/floor/plasteel, -/area/science/research) -"Aw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/research) -"Ay" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research) -"AA" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"AD" = ( -/obj/structure/lattice, -/obj/item/solar_assembly, -/turf/open/space/basic, -/area/space) -"AE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"AG" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"AH" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"AJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"AQ" = ( -/obj/item/multitool, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"AS" = ( -/turf/open/floor/plasteel, -/area/science/research) -"Bd" = ( -/obj/machinery/door/airlock/public/glass{ - welded = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Bh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"Bj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Bl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Bm" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/plasteel/dark, -/area/science/research) -"Bq" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plating, -/area/science/research) -"Bs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/science/research) -"BB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BE" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"BF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/lobby) -"BM" = ( -/turf/open/floor/plating/airless, -/area/space) -"BN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BU" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BV" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BW" = ( -/obj/machinery/door/window/brigdoor/southleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"BY" = ( -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BZ" = ( -/obj/machinery/door/airlock/external, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/lobby) -"Ca" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"Cc" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"Cf" = ( -/obj/item/stack/sheet/glass, -/turf/open/space/basic, -/area/space) -"Cj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plating, -/area/science/research) -"Cs" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"Cw" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Cy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/research) -"Cz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/layer2, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/science/research) -"CB" = ( -/turf/closed/wall, -/area/science/research) -"CI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"CJ" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, -/turf/open/floor/plating, -/area/mine/lobby) -"CK" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"CL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/science/xenobiology) -"CU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"CX" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"De" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"Dj" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"Dl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"Dm" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"Dp" = ( -/obj/item/stock_parts/subspace/ansible, -/turf/open/space/basic, -/area/space) -"Dz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"DC" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/cargo/storage) -"DF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plating, -/area/mine/lobby) -"DI" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"DL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Ea" = ( -/obj/item/stock_parts/micro_laser, -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"Eh" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"Ei" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Er" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"Eu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"EA" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"EB" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/multitool, -/obj/item/wirecutters, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"EG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plasteel, -/area/cargo/storage) -"EO" = ( -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/command/gateway) -"Fe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/mine/lobby) -"Ff" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"Fg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"Ft" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"FE" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"FG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"FK" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"FU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"FY" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"Gc" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gk" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gm" = ( -/obj/structure/cable, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Gt" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"GA" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/gloves/color/fyellow/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GK" = ( -/turf/closed/wall, -/area/tcommsat/oldaisat) -"GO" = ( -/obj/machinery/suit_storage_unit, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"GU" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/plasteel/dark, -/area/science/research) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"Ha" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"He" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hh" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hm" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HC" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HE" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"HL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"HM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"HP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HS" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HT" = ( -/turf/closed/mineral/random, -/area/mine/unexplored) -"HU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"HW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Ia" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/rank/cargo/miner{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/under/rank/cargo/miner{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/under/rank/cargo/miner, -/obj/structure/table, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Ib" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/space/basic, -/area/mine/lobby) -"Ic" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/space) -"Ih" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner, -/turf/open/space/basic, -/area/mine/unexplored) -"Ij" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space) -"Ik" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/space/basic, -/area/mine/eva) -"Ir" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/science/research) -"Is" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Iu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"IE" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"IF" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"IK" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/turf/open/floor/plasteel, -/area/mine/eva) -"IR" = ( -/obj/structure/table, -/obj/item/gun/energy/kinetic_accelerator, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"IT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/eva) -"IV" = ( -/obj/machinery/door/airlock/science/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"IW" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"IY" = ( -/obj/structure/sign/departments/medbay{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"Ja" = ( -/turf/closed/mineral, -/area/mine/unexplored) -"Jd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"Ji" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Jk" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"Jo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Js" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/space) -"Jy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JF" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/research) -"JG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JH" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JM" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JO" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JQ" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/cargo/storage) -"JZ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Kg" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"Kj" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"Ko" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"Kq" = ( -/obj/machinery/suit_storage_unit/exploration, -/turf/open/floor/plating, -/area/science/research) -"Kw" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Ky" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/science/research) -"KB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"KH" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"KM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"KW" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"KZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"Lm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/eva) -"Lo" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"Lu" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva) -"LD" = ( -/obj/machinery/door/airlock/external, -/turf/open/floor/plating, -/area/science/research) -"LF" = ( -/obj/machinery/computer/gateway_control, -/turf/open/floor/plating, -/area/command/gateway) -"LK" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/mine/eva) -"LL" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/eva) -"Mg" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/eva) -"Mm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MA" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MK" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/space/basic, -/area/mine/lobby) -"ML" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner/north, -/turf/open/space/basic, -/area/mine/unexplored) -"MO" = ( -/obj/structure/frame, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"MZ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/space/basic, -/area/mine/eva) -"Nc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Nd" = ( -/obj/structure/table, -/obj/item/kitchen/knife/combat/survival{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/kitchen/knife/combat/survival{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/kitchen/knife/combat/survival, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/sign/poster/contraband/space_cube{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Nh" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Nz" = ( -/turf/open/floor/plating, -/area/cargo/storage) -"NF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"NL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plasteel, -/area/cargo/storage) -"NO" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/mine/eva) -"NY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Ol" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"On" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/mine/eva) -"Or" = ( -/turf/closed/mineral/random, -/area/command/gateway) -"Ov" = ( -/obj/structure/table, -/obj/item/flashlight/seclite{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/flashlight/seclite{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"Ow" = ( -/obj/machinery/door/airlock/command/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/tcommsat/computer) -"OD" = ( -/turf/open/floor/plasteel, -/area/command/gateway) -"OE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"OG" = ( -/turf/open/floor/plating, -/area/command/gateway) -"OK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"OO" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OT" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"OW" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"Pq" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plating, -/area/command/gateway) -"Pv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall, -/area/science/research) -"Pw" = ( -/obj/structure/frame/machine, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/oldaisat) -"Py" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall, -/area/science/xenobiology) -"PB" = ( -/obj/item/circuitboard/machine/telecomms/broadcaster, -/turf/open/space/basic, -/area/tcommsat/oldaisat) -"PE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/mine/lobby) -"PH" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"PJ" = ( -/obj/structure/cable, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"PL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"PR" = ( -/obj/item/shard, -/turf/open/space/basic, -/area/space) -"Qc" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01"; - luminosity = 2 - }, -/area/command/gateway) -"Ql" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/command/gateway) -"Qr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/lobby) -"QD" = ( -/obj/item/circuitboard/machine/telecomms/processor, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"QH" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"QL" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/lobby) -"QN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"QS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/mine/unexplored) -"QU" = ( -/obj/item/flashlight, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"QX" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"Rf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Rl" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"Rr" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Rt" = ( -/obj/item/pickaxe/mini, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Rz" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"RB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"RO" = ( -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"RU" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/space/basic, -/area/space) -"RY" = ( -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 10; - pixel_y = -6 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Si" = ( -/obj/machinery/door/airlock/command/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"Sk" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Sl" = ( -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Sv" = ( -/obj/item/clothing/mask/breath{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Sx" = ( -/obj/item/stock_parts/subspace/filter, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"Sz" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"SC" = ( -/turf/closed/wall, -/area/science/xenobiology) -"SJ" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"SK" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"SP" = ( -/obj/structure/frame/machine, -/turf/open/space/basic, -/area/space) -"SR" = ( -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel, -/area/science/research) -"ST" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Td" = ( -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Te" = ( -/obj/machinery/door/window/brigdoor/northleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Tn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"To" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Tw" = ( -/obj/item/circuitboard/machine/telecomms/receiver, -/turf/open/floor/circuit/green/telecomms, -/area/tcommsat/oldaisat) -"TF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"TI" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/mine/unexplored) -"TP" = ( -/obj/machinery/door/airlock/public/glass{ - welded = 1 - }, -/turf/open/floor/plating, -/area/science/research) -"TR" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/xenobiology) -"TU" = ( -/obj/machinery/door/airlock/public/glass{ - welded = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research) -"TV" = ( -/obj/item/stock_parts/subspace/amplifier, -/turf/open/space/basic, -/area/space) -"TW" = ( -/turf/open/space/basic, -/area/mine/unexplored) -"TZ" = ( -/obj/machinery/power/solar, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"Ua" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 2; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"Uo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Uu" = ( -/obj/item/pickaxe/mini, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"UB" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UT" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"UU" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"UV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UZ" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/xenobiology) -"Va" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Vc" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vq" = ( -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/machinery/button/door{ - id = "xeno"; - name = "Containment Control"; - pixel_x = 23; - req_access_txt = "55" - }, -/obj/item/slimepotion/slime/sentience, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research) -"VQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"VS" = ( -/obj/machinery/door/window/brigdoor/southleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Wa" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"Wd" = ( -/obj/item/stack/sheet/glass, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Wy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WD" = ( -/turf/open/floor/plating, -/area/tcommsat/oldaisat) -"WJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WL" = ( -/obj/item/circuitboard/computer/comm_server, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"WQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WU" = ( -/obj/structure/frame/computer{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"WY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xp" = ( -/obj/machinery/door/airlock/science/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xu" = ( -/obj/item/circuitboard/computer/message_monitor, -/obj/item/stack/sheet/glass, -/turf/open/floor/plating/airless, -/area/space) -"XN" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/airless, -/area/space) -"XX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Yc" = ( -/turf/open/space/basic, -/area/space) -"Yd" = ( -/obj/machinery/light, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Yn" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Yq" = ( -/obj/item/stack/cable_coil/cut, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"Yu" = ( -/turf/closed/wall, -/area/command/gateway) -"YD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YI" = ( -/obj/machinery/light, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YL" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/mineral/plastitanium, -/area/cargo/storage) -"YQ" = ( -/obj/item/solar_assembly, -/turf/open/space/basic, -/area/space) -"YT" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"YW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Zr" = ( -/turf/closed/wall, -/area/tcommsat/computer) -"ZD" = ( -/obj/item/clothing/suit/space/orange, -/obj/item/clothing/head/helmet/space/orange, -/obj/item/tank/internals/oxygen/yellow, -/obj/structure/closet, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZG" = ( -/obj/item/gps, -/obj/structure/table/reinforced, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"ZI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZK" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZS" = ( -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"ZT" = ( -/obj/machinery/door/airlock/command, -/turf/open/floor/plating/airless, -/area/tcommsat/computer) -"ZU" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZV" = ( -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"ZW" = ( -/turf/closed/wall, -/area/mine/eva) -"ZY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZZ" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) - -(1,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(2,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(3,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(4,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(5,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(6,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(7,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(8,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(9,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(10,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(11,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(12,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(13,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -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 -"} -(14,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -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 -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 -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 -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 -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 -"} -(15,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -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 -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 -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 -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 -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 -"} -(16,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(17,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(18,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(19,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(20,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(21,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(22,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(23,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(24,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(25,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -kd -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(26,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -iy -ke -iy -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(27,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -iy -wH -iy -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(28,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Au -wH -iy -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(29,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Au -kr -iy -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -YQ -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 -Yc -"} -(30,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Yc -Yc -Cw -Yc -Yc -Cw -Cw -Au -wH -Au -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Ij -Yc -Cw -Yc -Yc -Yc -Cw -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 -Yc -Yc -"} -(31,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Au -Au -Au -Au -wH -Au -Au -Cw -Cw -Cw -jv -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -Yc -Cw -Cw -Cw -YQ -Ij -Yc -Cw -Yc -Yc -YQ -Cw -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 -Yc -Yc -"} -(32,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Cw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Au -fA -qE -iD -wH -my -Au -CB -CB -CB -Pv -CB -JF -CB -CB -CB -CB -Yc -Cw -Cw -am -Cw -Cw -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 -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 -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 -YQ -Ij -Yc -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(33,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -ap -ap -eb -fj -bi -gU -hL -ap -mL -mL -mL -mL -ap -nj -gM -iM -wH -mC -Au -Cs -Cs -Ir -zS -CB -mz -CB -mz -mz -TP -Cw -Cw -Yc -Cw -Cw -Cw -RU -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 -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 -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 -AD -Ij -Cw -Cw -Yc -Yc -Cw -Cw -Cw -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 -Yc -"} -(34,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -ap -fl -fC -hA -aL -gV -hU -jd -pJ -lS -cX -dE -nr -qN -qN -iP -wH -mC -Au -rR -Bs -Iu -BE -LD -qQ -CB -mz -VF -TU -Yc -Cw -Cw -Cw -Cw -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 -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 -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 -Yc -Cw -Ij -Cw -Yc -YQ -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 -Yc -Yc -Yc -Yc -Yc -"} -(35,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -am -ap -as -fC -aL -bl -wW -ic -ap -ce -cz -cY -mT -ap -fH -wH -iR -wH -mG -Au -Cy -Cc -Iu -nO -CB -CB -CB -AS -fY -CB -Cw -Cw -Cw -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 -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 -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 -Yc -Yc -Yc -Cw -Ij -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(36,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -ap -me -fC -gV -aL -hA -ic -ap -ci -mT -ci -mT -ap -oA -qR -sL -kG -nl -Au -Cz -Cj -QX -Iu -Bq -CB -Kq -AS -br -CB -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Cw -Ij -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(37,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -ap -ap -AE -aM -bu -hD -bY -ap -kA -cD -mu -na -ap -nL -Gt -sQ -wH -nC -Au -Cz -CI -CI -jg -sa -CB -wN -AS -br -CB -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Ij -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(38,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -Au -Au -sV -Au -Au -CB -CB -CB -CB -za -CB -CB -CB -SR -Ah -CB -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(39,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -AH -gu -bx -ru -ru -ru -ru -AH -gu -CX -AH -fS -gP -ti -Dj -nK -CB -sh -Eh -To -QN -Ol -Ol -Ol -Ol -PL -CB -Yc -Yc -Cw -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 -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 -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 -Wd -Yc -Yc -Cw -Yc -Yc -Zr -QH -Zr -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(40,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -ih -aN -Dj -Dj -bZ -Dj -Dj -AH -Dj -Dj -AH -gx -Dj -ti -li -Dj -Ay -Ky -Er -KM -PL -uf -uf -uf -uf -Lo -CB -Yc -Yc -Cw -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 -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 -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 -Cw -Cw -Cw -Cw -Cw -Cw -Zr -Zr -zC -Zr -Yc -Yc -GK -GK -GK -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 -Yc -Yc -"} -(41,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -ih -aV -bA -bJ -cc -rx -cj -cT -Dl -Dl -ef -xM -xM -tn -ls -xM -IV -KM -KM -AS -AS -dT -CB -yc -NF -oJ -CB -Yc -Yc -Cw -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 -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 -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 -Cw -WL -Cw -Cw -Cw -eE -Zr -ZG -zC -Zr -Yc -Yc -GK -Pw -GK -GK -GK -GK -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 -"} -(42,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -ih -aN -Dj -Dj -pQ -Dj -Dj -AH -dc -Dm -AH -oI -Dj -ti -lA -Dj -Ay -sl -Eu -AS -AS -bw -CB -CB -hS -CB -CB -Yc -Yc -Cw -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 -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 -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 -BM -Cw -Cw -Xu -XN -YT -Zr -FY -zC -Zr -GK -GK -GK -Tw -Sx -QD -MO -GK -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 -"} -(43,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -AH -AH -bB -bW -bW -bW -bW -oV -oV -oV -oV -gA -Dj -ti -lB -od -CB -yP -AS -AS -AS -iS -CB -Ua -Tn -OE -CB -Yc -Yc -Cw -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 -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 -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 -BM -WU -Cw -Yq -BM -ZT -zC -zC -Ow -WD -Ea -Si -cx -WD -yo -bv -GK -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 -"} -(44,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -AH -AH -ih -ih -ih -ih -oV -GO -GO -oV -oV -oV -iW -oV -oV -CB -Av -AS -AS -AS -cG -CB -GU -Bm -zI -CB -Yc -Yc -Cw -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 -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 -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 -Cw -BM -BM -Zr -ZS -FY -Zr -GK -GK -GK -AQ -sU -zo -is -GK -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 -"} -(45,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Yc -Cw -Cw -Cw -Yc -oV -de -dI -ei -oV -gQ -je -dI -qh -CB -Aw -AS -ix -CB -CB -CB -CB -CB -CB -CB -Yc -Yc -Cw -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 -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 -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 -eE -eE -eE -Zr -gi -zC -Zr -Yc -Yc -GK -UU -bd -GK -GK -GK -tT -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 -"} -(46,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -oV -df -Dz -eW -gD -eW -je -dI -qq -CB -AS -AS -AS -CB -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Zr -Zr -zC -Zr -Yc -Yc -GK -PB -vQ -PR -wD -Yc -hm -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 -"} -(47,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -oV -dl -dI -fi -oV -dI -je -dI -qt -CB -AS -AS -AS -CB -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Zr -QH -Zr -Yc -Yc -Yc -SP -Yc -TV -vf -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 -"} -(48,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -oV -dx -dI -fn -oV -gR -jl -mb -qw -CB -AS -AS -AS -CB -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TV -tt -Yc -SP -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 -"} -(49,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -oV -dA -dJ -fy -oV -dI -je -dI -qW -CB -Bd -CB -Bd -CB -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -pr -Yc -Yc -hc -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 -"} -(50,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -oV -dC -dZ -dC -oV -hH -je -dI -qW -oV -BM -BM -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -Cw -Yc -Yc -Yc -Yc -Yc -Dp -Yc -Yc -tt -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 -"} -(51,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -al -qk -zc -zc -zc -zc -zc -zc -zc -zc -zc -zc -zc -zc -qk -qk -qk -zc -oV -hJ -je -dI -rk -oV -BM -Cw -jY -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Ij -Cw -Yc -Yc -Yc -Yc -Dp -Yc -Cf -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 -"} -(52,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -Yc -Cw -Yc -Yc -oV -hJ -je -mf -oV -oV -Yc -Cw -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Ij -Yc -YQ -Yc -Yc -Yc -Yc -Yc -Yc -Yc -PR -Yc -tt -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 -"} -(53,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -Yc -Cw -Yc -Cw -oV -oV -jw -oV -oV -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Cw -Cw -Yc -Cw -Ij -Yc -Yc -Cw -Cw -Yc -Yc -Yc -Yc -SP -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 -"} -(54,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -Yc -Cw -Cw -Cw -gK -dI -jH -dI -oV -Yc -Yc -Cw -Cw -Cw -Cw -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -YQ -Yc -Cw -Ij -Yc -Yc -YQ -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 -Yc -Yc -Yc -Yc -Yc -"} -(55,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -Yc -am -Cw -Yc -oV -iw -jR -dI -oV -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Cw -Cw -Ij -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -tt -Yc -wD -Yc -Yc -Yc -tt -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(56,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Cw -TZ -qk -TZ -Yc -Cw -Cw -Yc -Yc -oV -dI -jZ -dI -oV -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -YQ -Yc -Cw -Yc -Ij -AD -Yc -Yc -YQ -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -PR -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 -"} -(57,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Yc -Cw -Yc -Cw -Yc -Cw -Yc -Cw -Cw -Cw -Yc -Yc -oV -dC -dC -dC -oV -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Cw -Yc -Ij -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -gX -Yc -tt -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 -"} -(58,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Yc -Cw -Cw -Cw -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -YQ -Yc -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(59,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Cw -Yc -Cw -Cw -Cw -Cw -Yc -Yc -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -Cw -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(60,1,1) = {" -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 -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 -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 -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(61,1,1) = {" -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 -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 -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 -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(62,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(63,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(64,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -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 -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 -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 -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 -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 -"} -(65,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(66,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(67,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(68,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(69,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(70,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(71,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(72,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(73,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(74,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(75,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(76,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(77,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(78,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(79,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(80,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(81,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(82,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(83,1,1) = {" -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 -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 -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -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 -"} -(84,1,1) = {" -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 -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 -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(85,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(86,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(87,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(88,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(89,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -Yc -Yc -"} -(90,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -Yc -"} -(91,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(92,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(93,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(94,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(95,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(96,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(97,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(98,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(99,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -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 -"} -(100,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(101,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(102,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(103,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(104,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(105,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(106,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(107,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(108,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(109,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(110,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(111,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(112,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(113,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(114,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(115,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(116,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(117,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(118,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(119,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(120,1,1) = {" -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 -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(121,1,1) = {" -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 -ZV -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(122,1,1) = {" -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 -ZV -ZV -ZV -HT -HT -HT -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(123,1,1) = {" -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 -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(124,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(125,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -"} -(126,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -"} -(127,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -TW -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -Yc -"} -(128,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -mo -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -"} -(129,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ZV -TW -TW -TW -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -aj -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -Yc -"} -(130,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -"} -(131,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -"} -(132,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -Yc -"} -(133,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -Yc -"} -(134,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ab -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -"} -(135,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -"} -(136,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -"} -(137,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -"} -(138,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(139,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -fI -CK -fI -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 -Yc -Yc -"} -(140,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -fI -KW -fI -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 -Yc -Yc -"} -(141,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -Yc -fI -fI -fI -KW -fI -fI -fI -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 -"} -(142,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -fI -fI -Va -fI -lz -fI -nv -fI -fI -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 -"} -(143,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -jx -jx -Ja -Ja -Ja -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 -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 -Yc -Yc -fI -TF -Ji -KW -KW -Nz -qD -Jo -fI -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 -"} -(144,1,1) = {" -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -jx -jx -jx -Ja -Ja -Ja -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 -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 -Yc -DC -cO -lL -Nz -Nz -Nz -qD -cO -DC -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 -"} -(145,1,1) = {" -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 -ZV -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Or -Or -Yu -Yu -Yu -Yu -Yu -OG -Or -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Ja -Ja -Ja -jx -jx -Td -jx -Ja -Ja -Ja -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 -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 -Yc -DC -cO -lL -pm -NY -zj -qD -iT -DC -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 -"} -(146,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yu -OD -OD -Qc -OD -fq -fq -Ql -OG -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -jx -vm -jx -jx -Ja -Ja -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 -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 -Yc -fI -yr -lL -OL -Ei -xr -qD -VQ -fI -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 -"} -(147,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yu -OG -Pq -OD -OG -LF -fq -fq -OG -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -jx -jx -Ja -Ja -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 -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 -Yc -Yc -fI -fI -lL -Nz -ha -Nz -qD -fI -fI -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 -"} -(148,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yu -OG -OG -Ql -OG -OG -fq -fq -fq -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -jx -jx -Ja -Ja -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 -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 -Yc -Yc -Yc -DC -Sk -Jd -fI -Jd -yt -DC -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 -"} -(149,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yu -EO -OD -Ql -fq -Or -fq -fq -Yu -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -DC -NL -Nz -fI -Nz -EG -DC -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 -"} -(150,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -JQ -ux -RB -YL -RB -fd -JQ -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 -"} -(151,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -Ja -Ja -Ja -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 -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 -Yc -Yc -Yc -Yc -Yc -Rz -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 -Yc -Yc -Yc -Yc -"} -(152,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Ja -Ja -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(153,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -eP -ZV -ZV -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(154,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -vm -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -ZV -TW -TW -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(155,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(156,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -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 -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(157,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -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 -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(158,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -TW -TW -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 -eE -Yc -BM -Cw -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(159,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -eE -wB -ta -xO -BM -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(160,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -eE -BM -Ic -wB -wB -eE -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(161,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -HT -jx -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -nw -Js -nw -eE -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(162,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -BM -wq -eE -eE -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(163,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -TW -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(164,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -eP -ZV -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(165,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -Ja -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Cw -Cw -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(166,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(167,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -Ja -Ja -om -om -om -om -om -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -Ja -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(168,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -Ja -Ja -om -oM -oO -oM -om -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(169,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -Ja -om -oO -qS -oO -om -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(170,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -Ja -om -pd -oO -pd -om -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -TW -TW -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(171,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -Ja -om -om -qT -om -om -nW -nW -nW -nW -nW -nW -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(172,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -rf -nW -Ja -nW -AA -CJ -EB -GA -nW -nW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -TW -TW -TW -TW -ZV -ZV -ZV -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -Yc -"} -(173,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -Ja -Ja -om -om -rq -nW -nW -nW -AG -CU -Fe -CU -HH -nW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -Yc -Yc -Yc -"} -(174,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -Ja -Ja -om -pf -rq -tS -nW -xP -AG -GG -Ff -GG -HL -nW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(175,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -Ja -Ja -om -om -rq -ug -nW -xQ -AJ -De -Fg -GH -nW -nW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -Ja -Ja -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(176,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -nW -rf -nW -nW -xT -Bh -DF -Ft -GY -HM -nW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -Ja -jx -Ja -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(177,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -nW -rI -nW -nW -nW -nW -nW -FE -nW -nW -nW -nW -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -ZV -Ja -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(178,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -pj -rL -um -nW -yd -Bj -DI -FG -Ha -HP -IW -nW -Ja -Ja -Ja -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -ZV -ZV -Ja -jx -RO -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(179,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -pl -rN -vp -nW -ye -Bl -nW -FK -BF -HQ -IY -nW -Ja -Ja -Ja -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -Ja -Ja -Ja -Ja -TW -TW -ZV -Ja -jx -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(180,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -pD -rX -vI -nW -yE -BB -nW -FU -BF -HS -Jk -nW -Ja -Ja -Ja -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -ZV -jx -jx -jx -jx -jx -jx -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(181,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -pH -rY -vO -nW -nW -BF -nW -Gc -nW -nW -nW -nW -nW -nW -Ja -HT -HT -Rt -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -ZV -ZV -jx -jx -Ja -jx -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(182,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -nW -pT -rX -wf -wM -yI -BB -DL -FU -He -BB -rY -rY -OK -nW -Ja -HT -QU -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -Ja -jx -jx -Ja -Ja -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(183,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -Ja -Ja -nW -qa -sr -wp -wO -ze -BN -DP -Gf -Hg -Hg -Jy -Mm -OO -PE -Qr -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(184,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -Ja -Ja -nW -qp -sz -wt -nW -zs -BQ -DV -BQ -Hh -HU -JA -rY -OT -nW -Ja -ZV -ab -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -jx -Ja -Ja -Ja -Ja -Ja -Ja -Ja -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(185,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -Ja -Ja -nW -nW -nW -nW -nW -nW -BU -nW -Gk -nW -HW -JE -MA -nW -nW -nW -nW -Rf -TI -TI -TI -TI -TI -TI -TI -TI -TI -ZV -ZV -ZV -jx -jx -jx -Ja -Ja -Ja -Ja -Ja -Ja -Ja -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(186,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -jx -jx -jx -HT -HT -Ja -Ja -Ja -Ja -Ja -Ja -Ja -nW -BV -nW -nW -nW -Ia -JG -MH -OW -PH -BY -QL -Rl -TI -TW -TI -TW -TW -TW -TW -TW -ZV -ZV -Ja -Ja -Ja -jx -jx -jx -Ja -Ja -Ja -Ja -Ja -Ja -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -"} -(187,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -jx -jx -jx -HT -Ja -Ja -Ja -Ja -Ja -Ja -Ja -nW -BY -nW -Ja -nW -nW -JH -nW -nW -nW -nW -nW -Rr -TI -TW -TI -TI -TI -TI -TI -TI -ZV -Ja -Ja -Ja -Ja -Ja -jx -jx -jx -Ja -Ja -Ja -Ja -Sv -ZV -ZV -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -"} -(188,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -jx -jx -jx -Ja -Ja -Ja -Ja -Ja -Ja -Ja -nW -BZ -nW -Ja -Al -nW -JM -nW -Ca -PJ -PJ -QS -QS -wZ -wZ -TI -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -Ja -Ja -jx -jx -jx -Ja -Ja -RY -Sz -jx -ZV -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -Yc -"} -(189,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -ew -jx -jx -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -jx -zD -Ca -DW -Gm -Ca -nW -JO -nW -Ca -TI -TI -TI -wZ -wZ -Ja -wZ -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -jx -jx -Sl -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -"} -(190,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -jx -jx -jx -jx -nZ -jx -jx -jx -jx -Al -Al -Al -jx -Ca -Ib -JZ -MK -Hm -TW -TW -TW -TW -wZ -Ja -wZ -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -Yc -"} -(191,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -aj -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -Ca -Ih -JZ -ML -Hm -TW -TW -TW -TW -TI -TW -TI -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -Yc -"} -(192,1,1) = {" -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -jx -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -Hm -Ih -JZ -ML -Hm -TI -TI -TI -TI -TI -TI -TI -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -"} -(193,1,1) = {" -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 -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HC -Ih -JZ -ML -HC -TW -TW -wZ -TW -TW -TW -TI -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -"} -(194,1,1) = {" -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 -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -Hm -Ih -JZ -ML -Hm -TW -Ja -wZ -Ja -Ja -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -"} -(195,1,1) = {" -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 -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -Hm -Ih -JZ -ML -Hm -TW -Ja -wZ -Ja -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -Yc -"} -(196,1,1) = {" -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 -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -TW -Hm -Ih -JZ -ML -Hm -TW -TW -wZ -Ja -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -"} -(197,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -ZV -TI -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TI -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -SC -SC -SC -SC -SC -SC -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -Yc -"} -(198,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TI -TW -TW -TI -TI -TI -Hm -Ih -JZ -ML -Hm -TI -TI -TI -TI -TI -TI -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -SC -Vl -Vl -ZM -ZM -SC -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(199,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -TW -TI -TW -TW -TI -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TI -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -SC -Kw -Vl -ZU -YJ -SC -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(200,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TI -TW -TW -TI -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TI -TW -TW -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -SC -Vr -WJ -ZY -DJ -SC -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(201,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TI -TI -TI -wZ -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TI -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -jx -SC -Vw -WQ -ZZ -ZZ -Py -CL -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(202,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TI -TW -Ja -wZ -Ja -TW -HC -Ih -JZ -ML -HC -ZV -TW -TI -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -jx -jx -SC -SC -SC -WY -SC -SC -SC -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(203,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TI -Ja -Ja -wZ -Ja -TW -HE -Ih -JZ -ML -HE -ZV -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -jx -SC -Uo -Vx -Xh -ov -rt -SC -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(204,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TI -wZ -wZ -wZ -wZ -TI -HE -Ih -JZ -ML -HE -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -jx -SC -UB -VB -Xi -nS -tH -SC -jx -jx -jx -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(205,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TI -TW -Ja -wZ -TW -TW -HE -Ik -JZ -MZ -Al -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -jx -jx -SC -SC -SC -Xp -SC -SC -SC -jx -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(206,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TI -TW -TW -TI -TW -TW -Al -ZW -Kg -ZW -Al -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -jx -jx -jx -jx -jx -jx -SC -XX -SC -jx -jx -jx -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(207,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TI -TW -TW -TI -TW -TW -Al -ZW -Kj -ZW -Al -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -SC -SC -SC -SC -SC -jx -SC -Yd -SC -jx -SC -SC -SC -SC -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(208,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TI -TW -TW -TI -TI -TI -ZW -ZW -Ko -ZW -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -SC -SJ -SK -SK -SC -SC -SC -Yn -SC -SC -SC -SK -SK -SK -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(209,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TI -TW -TW -TI -TW -ZV -ZW -Is -KB -Nd -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -SC -SK -SK -SK -Te -UC -VS -Xi -Te -UC -BW -SK -SJ -SK -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(210,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -Yc -Yc -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TI -TW -TW -TI -TW -ZV -ZW -IE -KH -Nh -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -SC -SK -SJ -SK -SC -SC -SC -YD -SC -SC -SC -SK -SK -SK -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(211,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TI -TW -TW -TI -ZV -ZV -ZW -IF -KZ -NO -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -SC -SC -SC -SC -SC -UT -SC -YI -SC -aU -SC -SC -SC -SC -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(212,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TI -TW -TW -TI -ZV -Ja -ZW -IK -KZ -On -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -jx -jx -jx -jx -jx -jx -SC -XX -SC -aU -aU -jx -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(213,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TI -TW -ZV -ZV -ZV -Ja -ZW -IR -Lm -Ov -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -jx -jx -jx -SC -SC -SC -Xp -SC -SC -SC -jx -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(214,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -ZV -ZV -ZV -jx -jx -Ja -ZW -ZW -Lu -ZW -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -jx -SC -UV -VZ -YW -bo -tF -SC -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -"} -(215,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -HT -jx -jx -Ja -Ja -ZW -LK -ZW -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -ST -SC -SC -SC -ZI -yy -EA -SC -jx -jx -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(216,1,1) = {" -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 -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 -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -HT -HT -jx -jx -jx -Ja -ZW -LL -ZW -Ja -Ja -HT -HT -HT -HT -HT -HT -jx -jx -aj -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -jx -jx -jx -TR -UZ -Wa -ZI -OU -ka -SC -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(217,1,1) = {" -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 -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 -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -jx -jx -jx -jx -ZW -Mg -ZW -HT -Ja -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -jx -jx -jx -jx -SC -SC -SC -ZK -Vq -wU -SC -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(218,1,1) = {" -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 -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 -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -jx -jx -jx -IT -Al -IT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -Ja -jx -SC -Vc -Wy -UC -Wy -ZD -SC -jx -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(219,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -TW -TW -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -jx -jx -Al -Al -Al -jx -HT -HT -HT -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -SC -SC -SC -SC -SC -SC -SC -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(220,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -Ja -Ja -TW -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -Uu -Nc -HT -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -jx -jx -jx -jx -jx -jx -jx -jx -jx -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(221,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -Ja -Ja -TW -ZV -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -vm -jx -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -jx -jx -jx -jx -jx -jx -jx -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(222,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -Ja -Ja -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -jx -jx -jx -jx -jx -jx -jx -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(223,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -Ja -Ja -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(224,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -Ja -TW -TW -ZV -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(225,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -Ja -Ja -TW -TW -TW -ZV -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(226,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -ZV -ZV -TW -TW -TW -TW -TW -TW -eP -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(227,1,1) = {" -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -eP -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(228,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(229,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(230,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(231,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(232,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(233,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(234,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(235,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(236,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(237,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(238,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(239,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(240,1,1) = {" -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -HT -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 -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 -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 -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 -"} -(241,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(242,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(243,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(244,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(245,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(246,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(247,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(248,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(249,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(250,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(251,1,1) = {" -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -ae -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(252,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(253,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(254,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} -(255,1,1) = {" -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 -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 -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 -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 -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 -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 -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 -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 -Yc -Yc -Yc -Yc -Yc -Yc -Yc -"} diff --git a/_maps/map_files/CrashSite/CrashSite.dmm b/_maps/map_files/CrashSite/CrashSite.dmm deleted file mode 100644 index 9d2dc164b708..000000000000 --- a/_maps/map_files/CrashSite/CrashSite.dmm +++ /dev/null @@ -1,69324 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ae" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/closed/mineral/random, -/area/mine/unexplored) -"aj" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"ap" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"bi" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bl" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/gravity_generator) -"bo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bu" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bx" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/gravity_generator) -"bA" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bE" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bJ" = ( -/obj/effect/landmark/start/captain, -/obj/structure/fluff/empty_sleeper/syndicate/captain, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/gravity_generator) -"bY" = ( -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"bZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"cc" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/fluff/empty_cryostasis_sleeper, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ce" = ( -/obj/effect/landmark/latejoin, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"cz" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"cD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"cO" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cT" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/fluff/empty_cryostasis_sleeper, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cX" = ( -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"cY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"dc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"de" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"df" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/fluff/empty_sleeper/nanotrasen, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"dx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dC" = ( -/obj/machinery/door/airlock/external/glass, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"dI" = ( -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"dJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"dZ" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"eb" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"ef" = ( -/obj/structure/closet/radiation{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"eh" = ( -/obj/item/construction/rcd/loaded, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"ei" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ew" = ( -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"eE" = ( -/turf/closed/wall, -/area/mine/unexplored) -"eQ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 50 - }, -/obj/item/stack/rods{ - amount = 50; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"eW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fd" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fj" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fl" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fn" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fC" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fI" = ( -/turf/closed/wall, -/area/cargo/storage) -"fR" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"fX" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"gb" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gu" = ( -/obj/vehicle/ridden/wheelchair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gA" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gD" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"gK" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gM" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gP" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/pickaxe/drill, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gR" = ( -/obj/structure/closet/crate, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/hud/diagnostic, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/storage/bag/ore, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gU" = ( -/obj/structure/closet/crate/engineering, -/obj/item/construction/rcd/loaded, -/obj/item/construction/rcd/loaded, -/obj/item/crowbar/power, -/obj/item/crowbar/power, -/obj/item/screwdriver/power, -/obj/item/screwdriver/power, -/obj/item/weldingtool/experimental, -/obj/item/weldingtool/experimental, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"gV" = ( -/obj/structure/closet/crate/engineering, -/obj/item/construction/rcd/loaded, -/obj/item/construction/rcd/loaded, -/obj/item/crowbar/power, -/obj/item/crowbar/power, -/obj/item/screwdriver/power, -/obj/item/screwdriver/power, -/obj/item/weldingtool/experimental, -/obj/item/weldingtool/experimental, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"ha" = ( -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = 8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = 24; - pixel_y = -8; - req_access_txt = null - }, -/turf/open/floor/plating, -/area/cargo/storage) -"hA" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hD" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hE" = ( -/turf/closed/wall/rust, -/area/engineering/storage_shared) -"hH" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plating, -/area/construction/storage_wing) -"hJ" = ( -/obj/structure/closet/crate/medical, -/obj/item/circuitboard/machine/chem_dispenser, -/obj/item/circuitboard/machine/chem_dispenser, -/obj/item/circuitboard/machine/chem_dispenser, -/turf/open/floor/plating, -/area/construction/storage_wing) -"hL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"hU" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"ic" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ih" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/storage/toolbox/electrical, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ip" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"iw" = ( -/turf/closed/mineral/random, -/area/hallway/secondary/entry) -"iy" = ( -/turf/closed/wall/rust, -/area/hallway/secondary/entry) -"iz" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"iD" = ( -/turf/closed/wall/rust, -/area/construction/storage_wing) -"iM" = ( -/obj/item/card/id/departmental_budget/car, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iP" = ( -/obj/item/card/id/advanced/gold/captains_spare, -/obj/item/areaeditor/blueprints, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iR" = ( -/obj/item/gun/energy/disabler{ - pixel_y = 4 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = -4 - }, -/obj/item/melee/baton/loaded, -/obj/item/assembly/flash, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs, -/obj/structure/closet/crate/secure/gear, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"iT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"jd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"je" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"jl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jm" = ( -/turf/closed/wall/r_wall/rust, -/area/mine/unexplored) -"jw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/science/research) -"jC" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jH" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"jZ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ka" = ( -/obj/machinery/monkey_recycler, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"kd" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 12; - height = 18; - id = "emergency_home"; - name = "NT SS13: emergency evac bay"; - width = 32 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"ke" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/construction/storage_wing) -"kr" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"ky" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"kA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kD" = ( -/obj/effect/turf_decal/bot_white, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"kG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lb" = ( -/obj/structure/table, -/obj/item/crowbar/large, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"li" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ls" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lz" = ( -/obj/machinery/door/airlock/external, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"lA" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lB" = ( -/obj/structure/closet/crate/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lJ" = ( -/obj/structure/closet/crate/science, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lS" = ( -/obj/structure/closet/crate/science, -/obj/machinery/light/small, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/circuit_imprinter, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe, -/obj/item/circuitboard/machine/protolathe/department/cargo, -/obj/item/circuitboard/machine/protolathe/department/engineering, -/obj/item/circuitboard/machine/protolathe/department/medical, -/obj/item/circuitboard/machine/protolathe/department/science, -/obj/item/circuitboard/machine/protolathe/department/security, -/obj/item/circuitboard/machine/protolathe/department/service, -/turf/open/floor/plating, -/area/construction/storage_wing) -"lV" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lW" = ( -/obj/structure/table, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mb" = ( -/obj/machinery/autolathe/hacked, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"me" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"mf" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/small, -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"mo" = ( -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"mu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research) -"my" = ( -/obj/machinery/door/airlock/science/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"mC" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"mE" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"mG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/research) -"mK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/research) -"mL" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/layer2, -/turf/open/floor/plating, -/area/science/research) -"mT" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/science/research) -"na" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/science/research) -"nd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating, -/area/science/research) -"ne" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nj" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"nl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plating, -/area/science/research) -"nr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"nv" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nw" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, -/area/mine/unexplored) -"nC" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"nL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"nS" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nW" = ( -/turf/closed/wall, -/area/mine/lobby) -"nZ" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"od" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/science/research) -"oe" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"om" = ( -/turf/closed/wall/r_wall, -/area/mine/lobby) -"ov" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"oI" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"oM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/mine/lobby) -"oO" = ( -/turf/open/floor/circuit/green, -/area/mine/lobby) -"oV" = ( -/turf/closed/wall, -/area/engineering/storage_shared) -"oX" = ( -/turf/closed/wall/rust, -/area/engineering/gravity_generator) -"pd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/mine/lobby) -"pf" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/window/brigdoor/southleft, -/obj/item/folder/documents{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pD" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/ore_box, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pJ" = ( -/turf/open/floor/plating, -/area/construction/storage_wing) -"pN" = ( -/turf/closed/wall/rust, -/area/mine/lobby) -"pQ" = ( -/obj/machinery/suit_storage_unit, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"pT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/ore_box, -/turf/open/floor/plasteel, -/area/mine/lobby) -"pX" = ( -/turf/open/floor/plating/rust, -/area/mine/unexplored) -"qa" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"qh" = ( -/obj/structure/table/reinforced, -/obj/item/gps, -/obj/item/gps{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/item/storage/toolbox/mechanical, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qk" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"qp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/electrical{ - pixel_y = -13 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"qq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"qt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall, -/area/science/research) -"qw" = ( -/obj/structure/closet/crate/solarpanel_small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"qz" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"qD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qE" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"qF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"qN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"qP" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"qR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"qS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/nuclearbomb/selfdestruct, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"qT" = ( -/obj/machinery/door/airlock/vault{ - req_access_txt = "20" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"qW" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/advanced, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/construction/storage_wing) -"qX" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/item/construction/rcd/loaded, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"rf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rk" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/landmark/observer_start, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rt" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ru" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rI" = ( -/obj/machinery/door/airlock/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"rL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rO" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"rR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"rX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"rY" = ( -/turf/open/floor/plasteel, -/area/mine/lobby) -"sh" = ( -/obj/machinery/door/airlock/engineering, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"sj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"sl" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"sr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"sz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"sL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"sQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"sV" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"sW" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/science/research) -"ta" = ( -/obj/structure/closet/supplypod, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/mine/unexplored) -"ti" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel, -/area/science/research) -"tn" = ( -/obj/structure/table, -/obj/item/integrated_circuit_printer, -/obj/item/gps{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/science/research) -"tF" = ( -/obj/structure/closet/firecloset/full{ - anchored = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tH" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tI" = ( -/obj/item/pickaxe/rusted, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"tP" = ( -/turf/closed/wall/r_wall/rust, -/area/mine/lobby) -"tS" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"ud" = ( -/obj/effect/turf_decal/sand, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ug" = ( -/obj/structure/safe, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/machinery/light/small, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"um" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pickaxe/mini, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/tools{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"ux" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vm" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"vp" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/gps/mining, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vI" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/disk/nuclear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"vP" = ( -/mob/living/simple_animal/hostile/asteroid/goldgrub, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"wf" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wp" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wq" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, -/area/mine/unexplored) -"wt" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wx" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/research) -"wB" = ( -/turf/open/floor/plasteel/airless, -/area/mine/unexplored) -"wE" = ( -/turf/open/floor/plating, -/area/science/research) -"wH" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/research) -"wM" = ( -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/window/brigdoor/northleft, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wO" = ( -/obj/machinery/door/airlock/mining, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"wU" = ( -/obj/structure/table/reinforced, -/obj/item/slime_scanner, -/obj/item/storage/bag/bio, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wW" = ( -/turf/closed/wall, -/area/construction/storage_wing) -"xg" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/components/unary/portables_connector, -/turf/open/floor/plasteel, -/area/science/research) -"xx" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 2; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xF" = ( -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"xM" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xO" = ( -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = 8; - pixel_y = -10; - stored_files = list(/datum/computer_file/program/contract_uplink) - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/mine/unexplored) -"xP" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/mine/lobby) -"xQ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"xT" = ( -/turf/open/floor/plating, -/area/mine/lobby) -"yd" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"ye" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yl" = ( -/turf/open/floor/plating, -/area/engineering/storage_shared) -"yt" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"yv" = ( -/turf/closed/wall/rust, -/area/science/xenobiology) -"yy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"yE" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yI" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/mine/lobby) -"yP" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"zc" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"ze" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"zj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/storage) -"zs" = ( -/obj/structure/sign/poster/contraband/free_drone{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/lobby) -"zD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"zT" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Al" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"At" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Au" = ( -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel, -/area/science/research) -"Av" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Aw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"Ay" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"AA" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"AE" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"AG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"AH" = ( -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"AJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"AN" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/research) -"AS" = ( -/obj/structure/table/reinforced, -/obj/item/circuitboard/machine/autolathe, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"Bd" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"Bh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"Bj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Bl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Bn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/mine/lobby) -"Bs" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/seven, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"BB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/lobby) -"BM" = ( -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"BN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"BU" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BV" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BW" = ( -/obj/machinery/door/window/brigdoor/southleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"BY" = ( -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"BZ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"Ca" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"Cc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/science/research) -"Cj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/science/research) -"Cs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"Cy" = ( -/obj/machinery/door/airlock/public/glass, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Cz" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"CB" = ( -/turf/closed/wall, -/area/science/research) -"CC" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"CI" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"CJ" = ( -/obj/structure/rack, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, -/turf/open/floor/plating, -/area/mine/lobby) -"CK" = ( -/obj/machinery/door/airlock/external, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"CL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"CQ" = ( -/mob/living/simple_animal/hostile/megafauna/swarmer_swarm_beacon, -/turf/open/floor/plating/rust, -/area/mine/unexplored) -"CU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"CX" = ( -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel, -/area/science/research) -"De" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"Dj" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/frame/machine, -/turf/open/floor/plasteel, -/area/science/research) -"Dl" = ( -/obj/structure/frame/machine, -/turf/open/floor/plasteel, -/area/science/research) -"Dm" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/science/research) -"Dz" = ( -/obj/machinery/door/airlock/public/glass{ - welded = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"DC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"DF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plating, -/area/mine/lobby) -"DI" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"DL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DS" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/floor/plating/rust, -/area/mine/unexplored) -"DV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"DW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Ei" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Er" = ( -/obj/effect/turf_decal/sand/plating, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/research) -"EA" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"EB" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/multitool, -/obj/item/wirecutters, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"EG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Fe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/mine/lobby) -"Ff" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"Fg" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"Ft" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"FE" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"FG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"FK" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"FS" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"FU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gc" = ( -/obj/machinery/door/airlock/public/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gk" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Gm" = ( -/obj/structure/cable, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Gt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"GA" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/gloves/color/fyellow/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"GO" = ( -/turf/open/floor/plasteel, -/area/science/research) -"GY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plating, -/area/mine/lobby) -"Ha" = ( -/obj/machinery/door/airlock/medical/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"He" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hh" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Hm" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HC" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/obj/machinery/power/floodlight{ - anchored = 1 - }, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HE" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"HH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"HL" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"HM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/lobby) -"HP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HS" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"HU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/lobby) -"HW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen/double, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Ia" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/rank/cargo/miner{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/under/rank/cargo/miner{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/clothing/under/rank/cargo/miner, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Ib" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/lobby) -"Ic" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/mine/unexplored) -"Ih" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Ik" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/eva) -"Is" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Iu" = ( -/obj/machinery/door/airlock/command, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"IE" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"IF" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"IK" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/pickaxe{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/obj/item/storage/bag/ore, -/turf/open/floor/plasteel, -/area/mine/eva) -"IR" = ( -/obj/structure/table, -/obj/item/gun/energy/kinetic_accelerator, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, -/turf/open/floor/plasteel, -/area/mine/eva) -"IT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating/airless, -/area/mine/eva) -"IV" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/plasteel/dark, -/area/science/research) -"IW" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"IY" = ( -/obj/structure/sign/departments/medbay{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"Ja" = ( -/turf/closed/mineral, -/area/mine/unexplored) -"Jd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"Ji" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Jk" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/lobby) -"Jl" = ( -/turf/closed/wall/rust, -/area/mine/eva) -"Jo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Js" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/mine/unexplored) -"Jy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JH" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JM" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/fireaxecabinet{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JO" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"JQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/cargo/storage) -"JZ" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/lobby) -"Kd" = ( -/obj/machinery/light/broken, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"Kg" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"Kj" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"Ko" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/airlock/mining/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"Ky" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"KB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"KH" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"KM" = ( -/obj/machinery/rnd/server, -/turf/open/floor/plasteel/dark, -/area/science/research) -"KW" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"KZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"Lm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"Lu" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/eva) -"LK" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_y = 32 - }, -/obj/effect/turf_decal/sand, -/turf/open/floor/plating, -/area/mine/eva) -"LL" = ( -/obj/effect/turf_decal/sand, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/eva) -"Mg" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/eva) -"Mm" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MA" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"MK" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/lobby) -"ML" = ( -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"MZ" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/eva) -"Nc" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Nd" = ( -/obj/structure/table, -/obj/item/kitchen/knife/combat/survival{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/kitchen/knife/combat/survival{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/kitchen/knife/combat/survival, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/sign/poster/contraband/space_cube{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Nh" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/eva) -"Nz" = ( -/turf/open/floor/plating, -/area/cargo/storage) -"NL" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plasteel, -/area/cargo/storage) -"NO" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/mine/eva) -"NY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Og" = ( -/turf/closed/wall/rust, -/area/science/research) -"On" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/mine/eva) -"Ov" = ( -/obj/structure/table, -/obj/item/flashlight/seclite{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/flashlight/seclite{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"OD" = ( -/turf/open/floor/plasteel, -/area/mine/unexplored) -"OG" = ( -/turf/open/floor/plating, -/area/mine/unexplored) -"OK" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/storage) -"OO" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OT" = ( -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel, -/area/mine/lobby) -"OU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"OW" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"Pq" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plating, -/area/mine/unexplored) -"Py" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/closed/wall/rust, -/area/science/xenobiology) -"PE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/rust, -/area/mine/lobby) -"PH" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/sand, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/lobby) -"PJ" = ( -/obj/structure/cable, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Qc" = ( -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01"; - luminosity = 2 - }, -/area/mine/unexplored) -"Qi" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01"; - luminosity = 2 - }, -/area/engineering/gravity_generator) -"Ql" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/mine/unexplored) -"Qr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/lobby) -"QL" = ( -/obj/machinery/door/airlock/external, -/obj/effect/turf_decal/sand, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/lobby) -"QS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"QU" = ( -/obj/item/flashlight, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Rf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Rl" = ( -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/unexplored) -"Rr" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/sand, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/mine/lobby) -"Rt" = ( -/obj/item/pickaxe/mini, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Rz" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"RB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"RO" = ( -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"RY" = ( -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 10 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 10; - pixel_y = -6 - }, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Sk" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Sl" = ( -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -7; - pixel_y = -4 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Sv" = ( -/obj/item/clothing/mask/breath{ - pixel_x = 7; - pixel_y = 9 - }, -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Sz" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"SC" = ( -/turf/closed/wall, -/area/science/xenobiology) -"SJ" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"SK" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"ST" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Td" = ( -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"Te" = ( -/obj/machinery/door/window/brigdoor/northleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"TF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"TR" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/xenobiology) -"TW" = ( -/turf/open/floor/plating/asteroid/airless, -/area/mine/unexplored) -"Uo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Uu" = ( -/obj/item/pickaxe/mini, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"UB" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UT" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/turf/open/floor/plating/asteroid/airless/cave, -/area/mine/unexplored) -"UV" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"UZ" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/xenobiology) -"Va" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Vc" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vq" = ( -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Vx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/machinery/button/door{ - id = "xeno"; - name = "Containment Control"; - pixel_x = 23; - req_access_txt = "55" - }, -/obj/item/slimepotion/slime/sentience, -/obj/item/reagent_containers/food/drinks/coffee, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"VS" = ( -/obj/machinery/door/window/brigdoor/southleft, -/obj/machinery/door/poddoor/preopen{ - id = "xeno"; - name = "Creature Cell" - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"VU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/mine/lobby) -"VZ" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Wa" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"Wy" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"WY" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Xp" = ( -/obj/machinery/door/airlock/science/glass, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"XO" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"XX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Yd" = ( -/obj/machinery/light, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Yn" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YI" = ( -/obj/machinery/light, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"YL" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/cargo/storage) -"YW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"Zd" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZD" = ( -/obj/item/clothing/suit/space/orange, -/obj/item/clothing/head/helmet/space/orange, -/obj/item/tank/internals/oxygen/yellow, -/obj/structure/closet, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZK" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZU" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZV" = ( -/turf/closed/mineral/random, -/area/mine/unexplored) -"ZW" = ( -/turf/closed/wall, -/area/mine/eva) -"ZY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ZZ" = ( -/obj/machinery/atmospherics/components/trinary/filter/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) - -(1,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(2,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(3,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(4,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(5,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(6,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(7,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(8,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(9,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(10,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(11,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(12,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(13,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(14,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(15,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(16,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(17,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(18,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(19,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(20,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(21,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(22,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -kd -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(23,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -iD -ke -iD -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(24,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -ZV -ZV -ZV -iD -pJ -iD -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(25,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iD -pJ -wW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(26,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iD -kr -iD -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(27,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iD -pJ -iD -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(28,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iD -iD -iD -iD -pJ -wW -iD -ZV -ZV -ZV -qq -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(29,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oX -oX -oX -oX -oX -oX -oX -oX -iD -gM -hH -iM -pJ -ls -iD -Og -Og -Og -qt -CB -ZV -CB -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(30,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -bl -bW -cj -cY -ap -dI -dI -dI -dI -ap -gP -hJ -iP -pJ -lA -iD -mC -mC -od -qw -Og -ZV -Og -Cc -AN -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(31,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -bx -bx -bx -qX -dc -dC -dJ -eW -fy -fS -gD -gQ -gQ -iR -pJ -lA -iD -mG -nd -qF -qz -Og -ZV -Og -wE -jz -Er -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(32,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Qi -bx -bY -cz -de -oX -dZ -fi -fA -fj -oX -gR -pJ -qW -pJ -lB -iD -mK -CC -qF -qE -Og -wx -Og -At -Cj -CB -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(33,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -bl -bA -kD -bu -de -oX -eb -fj -eb -fj -oX -gU -hL -iW -ky -lJ -wW -mL -nl -nj -qF -Og -wE -Og -GO -Cs -CB -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(34,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oX -bi -bB -bZ -cD -dl -ap -ef -fl -fC -fX -ap -gV -hU -jd -pJ -lS -iD -mL -nr -nr -qN -CB -mK -Og -GO -Cs -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(35,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oX -oX -ap -oX -oX -ap -oX -oX -oX -oX -oX -oX -iD -iD -je -iD -iD -Og -Og -Og -CB -qP -CB -wH -CB -Au -Cy -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(36,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iy -bE -cc -cT -cT -cT -cT -iy -jC -gb -iy -hA -ic -ru -AE -lV -Og -mT -nC -oA -qR -sL -sL -sL -sL -Gt -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(37,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iy -df -AE -AE -dx -AE -Kd -me -AE -AE -iy -hD -AE -ru -kA -AE -mu -na -nK -nL -Gt -sQ -sQ -sQ -sQ -Cz -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(38,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iy -bJ -ce -AE -dA -ei -ei -fn -fH -fH -gK -Aw -Aw -rk -kG -Aw -my -nL -nL -GO -GO -sV -CB -xg -Av -CI -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(39,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iy -df -ud -AE -gA -iw -iw -iy -fR -gu -me -mE -AE -ru -kI -AE -mu -CX -nV -GO -GO -sW -Og -CB -Iu -CB -CB -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(40,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iw -iw -iw -iw -iw -iw -iw -iy -iy -iy -iy -ne -AE -ru -lb -lW -Og -Dj -GO -GO -GO -ti -Og -xx -Ay -Ky -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(41,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -iy -hE -oV -sh -hE -hE -hE -Dl -GO -GO -GO -tn -Og -xM -IV -KM -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(42,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oV -pQ -sj -yl -AH -hE -Dm -GO -oI -CB -CB -Og -Og -Og -CB -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(43,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -pQ -sj -yl -AS -hE -GO -GO -GO -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(44,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -ih -sj -yl -mb -hE -GO -GO -GO -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(45,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -qh -rR -lg -Bd -hE -GO -GO -GO -Og -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(46,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -eQ -sj -yl -Bs -hE -Dz -CB -Dz -CB -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(47,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -oe -sj -yl -Bs -hE -eh -BM -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(48,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -ip -sj -yl -mf -hE -BM -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(49,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -ip -sj -yP -oV -oV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(50,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -oV -sh -oV -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(51,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -zc -sj -zc -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(52,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -iz -jl -li -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(53,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oV -qk -jw -jH -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -jm -DS -jm -jm -jm -DS -jm -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(54,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -hE -sl -hE -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -DS -pX -pX -pX -pX -pX -DS -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(55,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -xF -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -jm -pX -jm -DS -jm -pX -jm -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(56,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -hE -jR -hE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -jm -pX -DS -CQ -DS -pX -jm -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(57,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -oV -jZ -oV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -jm -pX -jm -DS -jm -pX -jm -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(58,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -DS -pX -pX -pX -pX -DS -ZV -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(59,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -jm -DS -jm -jm -jm -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(60,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -tI -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(61,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(62,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(63,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(64,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(65,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(66,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(67,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(68,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(69,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(70,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(71,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(72,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(73,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(74,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(75,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(76,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(77,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(78,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(79,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(80,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(81,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(82,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(83,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(84,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(85,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(86,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(87,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(88,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(89,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(90,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(91,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(92,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(93,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(94,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(95,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(96,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(97,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(98,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(99,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(100,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(101,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(102,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(103,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(104,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(105,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(106,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(107,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(108,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(109,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(110,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(111,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(112,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(113,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(114,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(115,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(116,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(117,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(118,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(119,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(120,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(121,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(122,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(123,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(124,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(125,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(126,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(127,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(128,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -mo -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(129,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -aj -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(130,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(131,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(132,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(133,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(134,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(135,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(136,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(137,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(138,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(139,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -fI -CK -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(140,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -fI -KW -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(141,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -fI -fI -fI -KW -fI -fI -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(142,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -fI -fI -Va -fI -lz -fI -nv -fI -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(143,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -cX -cX -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -fI -TF -Ji -KW -KW -XO -qD -Jo -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(144,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cO -lL -Nz -Nz -Nz -qD -cO -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(145,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -eE -Ql -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -cX -cX -Td -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -lL -zj -NY -zj -qD -iT -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(146,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -OD -OD -Qc -OD -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -cX -vm -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -lL -OL -Ei -OL -qD -VQ -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(147,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -OG -Pq -OD -OG -OG -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -lL -Nz -ha -Nz -qD -fI -fI -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(148,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -OG -OG -Ql -OG -OG -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -DC -Sk -Jd -fI -Jd -yt -DC -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(149,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -OD -OD -Ql -cX -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -DC -NL -Nz -fI -Nz -EG -DC -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(150,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -JQ -ux -RB -YL -RB -fd -JQ -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(151,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Rz -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(152,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(153,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(154,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -vm -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(155,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(156,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(157,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(158,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -ZV -BM -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(159,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -wB -ta -xO -BM -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(160,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -eE -BM -Ic -wB -wB -eE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(161,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -cX -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -nw -Js -nw -eE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(162,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -BM -wq -eE -eE -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(163,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(164,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(165,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(166,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(167,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -Ja -Ja -tP -om -tP -om -tP -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(168,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -Ja -Ja -tP -oM -oO -oM -om -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(169,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -Ja -tP -oO -qS -oO -tP -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(170,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -tP -pd -oO -pd -tP -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(171,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -tP -tP -qT -om -om -nW -pN -pN -pN -nW -nW -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(172,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -nW -rf -nW -Ja -pN -AA -CJ -EB -GA -nW -pN -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -TW -TW -TW -TW -TW -TW -TW -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(173,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -om -om -Bn -nW -pN -pN -AG -CU -Fe -CU -HH -pN -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(174,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -tP -pf -rq -tS -nW -xP -AG -GG -Ff -GG -HL -pN -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(175,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -tP -om -rq -ug -pN -xQ -AJ -De -Fg -GH -nW -pN -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(176,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -pN -rf -nW -pN -xT -Bh -DF -Ft -GY -HM -pN -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -cX -Ja -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(177,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -nW -pN -rI -nW -pN -pN -pN -nW -FE -nW -nW -pN -pN -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -Ja -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(178,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -pj -rL -um -pN -yd -Bj -DI -FG -Ha -HP -IW -pN -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -TW -Ja -cX -RO -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(179,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -pl -rN -vp -pN -ye -Bl -nW -FK -BF -HQ -IY -pN -Ja -Ja -Ja -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -Ja -cX -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(180,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -pD -rX -vI -pN -yE -BB -pN -FU -BF -HS -Jk -nW -Ja -Ja -Ja -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -TW -cX -cX -cX -cX -cX -cX -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(181,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -pH -rY -vO -nW -pN -BF -pN -Gc -nW -nW -pN -pN -pN -nW -Ja -ZV -ZV -Rt -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -cX -cX -Ja -cX -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(182,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -pT -rX -wf -wM -yI -BB -DL -FU -He -VU -rY -rY -OK -pN -Ja -ZV -QU -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -cX -cX -Ja -Ja -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(183,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -Ja -Ja -pN -qa -sr -wp -wO -ze -BN -DP -Gf -Hg -Hg -Jy -Mm -OO -PE -Qr -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -Ja -Ja -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(184,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -Ja -Ja -pN -qp -sz -wt -nW -zs -BQ -DV -BQ -Hh -HU -JA -rY -OT -pN -Ja -TW -FS -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -cX -Ja -Ja -Ja -Ja -Ja -Ja -Ja -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(185,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -Ja -Ja -nW -nW -pN -pN -nW -nW -BU -pN -Gk -nW -HW -JE -MA -nW -nW -nW -nW -Rf -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -cX -cX -cX -Ja -Ja -Ja -Ja -Ja -Ja -Ja -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(186,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -pN -BV -pN -pN -pN -Ia -JG -MH -OW -PH -BY -QL -Rl -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -cX -cX -cX -Ja -Ja -Ja -Ja -Ja -Ja -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(187,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -pN -BY -pN -Ja -pN -pN -JH -pN -pN -pN -nW -nW -Rr -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -cX -cX -cX -Ja -Ja -Ja -Ja -Sv -TW -TW -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(188,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -cX -cX -cX -Ja -Ja -Ja -Ja -Ja -Ja -Ja -nW -BZ -nW -Ja -Al -pN -JM -nW -Ca -PJ -PJ -QS -QS -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -cX -Ja -Ja -RY -Sz -cX -TW -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(189,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ew -cX -cX -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -cX -zD -Ca -DW -Gm -Ca -pN -JO -nW -Ca -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -cX -cX -Sl -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(190,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -nZ -cX -cX -cX -cX -Al -Al -Al -cX -Ca -Ib -JZ -MK -Hm -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(191,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -aj -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -Ca -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(192,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -cX -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(193,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -HC -Ih -JZ -ML -HC -TW -TW -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(194,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -Hm -Ih -JZ -ML -Hm -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(195,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -Hm -Ih -JZ -ML -Hm -TW -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(196,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -TW -Hm -Ih -JZ -ML -Hm -TW -TW -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(197,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -yv -yv -yv -yv -SC -SC -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(198,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -SC -ZI -ZI -ZM -ZM -yv -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(199,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -SC -rO -ZI -ZU -zT -yv -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(200,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -yv -Vr -WJ -ZY -DJ -yv -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(201,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Ja -TW -TW -Hm -Ih -JZ -ML -Hm -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -cX -yv -Vw -WQ -ZZ -ZZ -Py -CL -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(202,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -HC -Ih -JZ -ML -HC -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -cX -cX -yv -SC -SC -WY -SC -SC -SC -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(203,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -HE -Ih -JZ -ML -HE -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -yv -Uo -Vx -Xh -ov -rt -yv -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(204,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -HE -Ih -JZ -ML -HE -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -yv -UB -VB -Xi -nS -tH -yv -cX -cX -cX -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(205,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -HE -Ik -JZ -MZ -Al -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -cX -cX -SC -SC -yv -Xp -SC -yv -yv -cX -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(206,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Al -ZW -Kg -Jl -Al -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -cX -cX -cX -cX -cX -cX -yv -XX -yv -cX -cX -cX -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(207,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -TW -Al -ZW -Kj -Jl -Al -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -SC -SC -SC -SC -SC -cX -yv -Yd -yv -cX -SC -yv -yv -yv -SC -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(208,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -ZW -ZW -Ko -ZW -ZW -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -yv -SJ -SK -SK -SC -SC -SC -Yn -SC -SC -SC -SK -SK -SK -yv -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(209,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -Jl -Is -KB -Nd -ZW -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -yv -SK -SK -SK -Te -UC -VS -Xi -Te -UC -BW -SK -SJ -SK -yv -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(210,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -TW -Jl -IE -KH -Nh -ZW -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -yv -SK -SJ -SK -SC -yv -yv -YD -SC -yv -yv -SK -SK -SK -yv -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(211,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Jl -IF -KZ -NO -Jl -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -SC -SC -yv -yv -yv -UT -SC -YI -SC -cX -SC -yv -yv -yv -yv -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(212,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -Jl -IK -KZ -On -Jl -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -cX -cX -cX -cX -cX -cX -SC -XX -SC -cX -cX -cX -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(213,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -TW -Ja -ZW -IR -Lm -Ov -Jl -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -cX -cX -yv -yv -SC -Xp -yv -yv -yv -cX -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(214,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -TW -cX -cX -Ja -ZW -ZW -Lu -ZW -Jl -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -cX -SC -UV -VZ -YW -bo -tF -SC -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(215,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -cX -cX -Ja -Ja -ZW -LK -Jl -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -ST -SC -SC -SC -Zd -yy -EA -yv -cX -cX -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(216,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -cX -cX -cX -Ja -Jl -LL -Jl -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -aj -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -cX -cX -cX -TR -UZ -Wa -ZI -OU -ka -yv -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(217,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -cX -cX -cX -cX -Jl -Mg -ZW -ZV -Ja -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -cX -cX -cX -cX -SC -SC -SC -ZK -Vq -wU -yv -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(218,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -Ja -TW -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -IT -Al -IT -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -Ja -cX -yv -Vc -Wy -UC -Wy -ZD -yv -cX -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(219,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -Al -Al -Al -cX -ZV -ZV -ZV -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -SC -yv -yv -yv -yv -yv -yv -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(220,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -Uu -Nc -ZV -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -cX -cX -cX -cX -cX -cX -cX -cX -cX -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(221,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -vm -cX -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -cX -cX -cX -cX -cX -cX -cX -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(222,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -cX -cX -cX -cX -cX -cX -cX -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -Ja -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(223,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -Ja -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(224,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -Ja -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(225,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -Ja -Ja -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(226,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -TW -vP -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(227,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(228,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -TW -TW -TW -TW -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(229,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(230,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(231,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(232,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(233,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(234,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(235,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(236,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(237,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(238,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(239,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(240,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(241,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(242,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(243,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(244,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(245,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(246,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(247,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(248,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(249,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(250,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(251,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ae -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(252,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(253,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(254,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} -(255,1,1) = {" -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -ZV -"} diff --git a/_maps/map_files/Dawn/dawn.dmm b/_maps/map_files/Dawn/dawn.dmm deleted file mode 100644 index c1119c55a888..000000000000 --- a/_maps/map_files/Dawn/dawn.dmm +++ /dev/null @@ -1,78393 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/open/space/basic, -/area/space) -"ab" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"ac" = ( -/turf/closed/wall, -/area/science/research) -"ad" = ( -/turf/closed/wall, -/area/command) -"ae" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/command) -"af" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/assembly/timer, -/obj/item/assembly/signaler, -/turf/open/floor/plasteel, -/area/command) -"ag" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/command) -"ah" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel, -/area/command) -"ai" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security, -/turf/open/floor/plasteel, -/area/command) -"aj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/computer/communications, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"ak" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/white/side, -/area/command) -"al" = ( -/obj/machinery/computer/crew, -/turf/open/floor/plasteel/white/side, -/area/command) -"am" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/ids, -/turf/open/floor/plasteel, -/area/command) -"an" = ( -/obj/structure/table/reinforced, -/obj/item/storage/lockbox/medal, -/turf/open/floor/plasteel, -/area/command) -"ao" = ( -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = -32 - }, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/plasteel, -/area/command) -"ap" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/xenobiology) -"aq" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/hand_tele, -/turf/open/floor/plasteel, -/area/command) -"ar" = ( -/turf/open/floor/plasteel, -/area/command) -"as" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"at" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command) -"au" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command) -"av" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"aw" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/command) -"ax" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"ay" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"az" = ( -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/command) -"aA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plasteel, -/area/command) -"aB" = ( -/obj/structure/displaycase/captain, -/turf/open/floor/plasteel, -/area/command) -"aD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/command) -"aE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"aF" = ( -/turf/open/floor/plasteel/white, -/area/science/research) -"aG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/command) -"aH" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/plasteel, -/area/command) -"aI" = ( -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/id, -/turf/open/floor/plasteel, -/area/command) -"aJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"aK" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/disk/nuclear, -/turf/open/floor/plasteel, -/area/command) -"aL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/command) -"aM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"aN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"aO" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"aP" = ( -/obj/structure/fireaxecabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/command) -"aQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command) -"aR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command) -"aS" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/obj/item/assembly/flash, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/command) -"aT" = ( -/obj/structure/chair/comfy/black{ - dir = 1; - name = "Command Station" - }, -/obj/effect/landmark/start/captain, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = 29; - pixel_y = 6; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/command) -"aU" = ( -/obj/structure/table/reinforced, -/obj/item/hand_tele, -/obj/item/melee/chainofcommand, -/turf/open/floor/plasteel, -/area/command) -"aV" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"aW" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"aY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/command) -"aZ" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/command) -"ba" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"bb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bc" = ( -/turf/closed/wall, -/area/maintenance/fore) -"bd" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"be" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"bf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bg" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall, -/area/command) -"bi" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bj" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/command) -"bk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"bl" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/command) -"bn" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/xenobiology) -"bp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command) -"bq" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"br" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bs" = ( -/obj/machinery/monkey_recycler, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bt" = ( -/obj/machinery/processor/slime, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bu" = ( -/turf/closed/wall, -/area/cargo/storage) -"bv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"bw" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"by" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"bz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"bA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"bB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command) -"bC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/command) -"bD" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"bF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/rnd/bepis, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bG" = ( -/obj/machinery/smartfridge/extract, -/obj/machinery/camera{ - c_tag = "Xenobiology South" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bH" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bI" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bJ" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/research) -"bK" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/computer/shuttle_flight/mining, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bM" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/rnd/production/techfab/department/cargo, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bN" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/vendor/mining, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bO" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay North" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/mineral/ore_redemption{ - input_dir = 8; - output_dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bQ" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "supply dock loading door" - }, -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"bR" = ( -/turf/closed/wall, -/area/security/brig) -"bS" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bU" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "supply dock loading door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"bV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bW" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/multitool, -/turf/open/floor/plasteel/white, -/area/science/research) -"bX" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/white, -/area/science/research) -"bY" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/science/research) -"bZ" = ( -/obj/structure/closet/wardrobe/science_white, -/turf/open/floor/plasteel/white, -/area/science/research) -"ca" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/command) -"cb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/science/research) -"cc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/science/xenobiology) -"cd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ce" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"cf" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"cg" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"ch" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/cargo/storage) -"ci" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit/telecomms/server, -/area/science/research) -"cj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ck" = ( -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/obj/machinery/rnd/server, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/research) -"cm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"co" = ( -/obj/structure/rack, -/obj/item/storage/box/teargas{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/camera{ - c_tag = "Security Office North"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cp" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cq" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay) -"cr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"cs" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"ct" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"cy" = ( -/obj/structure/closet/secure_closet/captains, -/turf/open/floor/plasteel, -/area/command) -"cz" = ( -/obj/structure/table, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/obj/machinery/camera{ - c_tag = "Research and Development" - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"cA" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"cB" = ( -/obj/structure/table, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cD" = ( -/turf/open/floor/plasteel, -/area/cargo/storage) -"cF" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/mecha_part_fabricator{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cG" = ( -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/plasteel, -/area/command) -"cH" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plasteel/white, -/area/science/research) -"cI" = ( -/obj/structure/sign/departments/chemistry, -/turf/closed/wall/r_wall, -/area/medical/medbay) -"cK" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63"; - security_level = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/contraband/armory, -/obj/effect/spawner/lootdrop/armory_contraband, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -27; - pixel_y = 3 - }, -/obj/machinery/button/door{ - id = "rnd"; - name = "Shutters Control Button"; - pixel_x = -24; - pixel_y = -6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cS" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"cT" = ( -/obj/machinery/power/apc{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"cU" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/research) -"cV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"cW" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"cY" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/research) -"cZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"da" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"db" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"dc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"de" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"df" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"dh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"dk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dl" = ( -/obj/machinery/door/airlock/command{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/research) -"do" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dp" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/research) -"dq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dr" = ( -/obj/machinery/rnd/destructive_analyzer, -/turf/open/floor/plasteel, -/area/science/research) -"ds" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/closet/secure_closet/miner, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dt" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"du" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/exploration, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"dw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dx" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"dz" = ( -/turf/open/floor/plasteel, -/area/science/research) -"dA" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/spas12/rubber, -/obj/item/gun/ballistic/shotgun/spas12/rubber, -/obj/item/gun/ballistic/shotgun/spas12/rubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"dB" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dC" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dD" = ( -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway" - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"dH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dI" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"dM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/research) -"dP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dQ" = ( -/obj/machinery/rnd/production/techfab/department/science, -/turf/open/floor/plasteel, -/area/science/research) -"dR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/structure/fans/tiny, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/storage) -"dS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dT" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"dV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dX" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dY" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel, -/area/engineering/main) -"dZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"ea" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ed" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/research) -"ef" = ( -/obj/structure/table, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eg" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eh" = ( -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel, -/area/science/research) -"ei" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ej" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"ek" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "31" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"el" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"en" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"eo" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ep" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/start/warden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"eq" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/energy/temperature/security, -/obj/item/gun/energy/ionrifle, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/security/armory) -"er" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"es" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"et" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63"; - security_level = 2 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eu" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/science/research) -"ev" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/white, -/area/science/research) -"ew" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel/white, -/area/science/research) -"ex" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/turf/open/floor/plasteel/white, -/area/science/research) -"ey" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"ez" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eC" = ( -/obj/machinery/light/small, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"eD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"eE" = ( -/obj/machinery/camera{ - c_tag = "Cargo Recieving Dock"; - dir = 4 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -24; - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/flasher{ - id = "PCell 3"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eL" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eM" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/research) -"eN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research) -"eO" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "Toxins Launcher Bay Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/research) -"eP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/science/research) -"eQ" = ( -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/shower{ - pixel_y = 18 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eT" = ( -/obj/structure/closet/secure_closet/miner, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/cargo/storage) -"eV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"eY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fd" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"fe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ff" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fg" = ( -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fh" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"fj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"fk" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"fl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/storage/crayons, -/obj/machinery/camera{ - c_tag = "Dormitory" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/science/research) -"fo" = ( -/obj/machinery/door/window/northleft{ - name = "Mass Driver Door" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"fp" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/command{ - name = "Server Room"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/door/firedoor, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fr" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"fs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ft" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"fu" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fv" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"fw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fz" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fB" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fE" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"fF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"fG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"fH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"fI" = ( -/obj/machinery/doppler_array{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"fK" = ( -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4"; - security_level = 6 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"fL" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/research) -"fM" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/closet/secure_closet/miner, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fP" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/melee/baton/loaded, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"fS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fT" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fU" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"fV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fW" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"fX" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"fY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ga" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gd" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/item/melee/baton/loaded, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ge" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/firecloset, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"gg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/science/research) -"gh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"gi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"gj" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"gk" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/fore) -"gl" = ( -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"gm" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/science/research) -"gn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"go" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gp" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"gq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gr" = ( -/obj/structure/table, -/obj/item/taperecorder, -/obj/item/storage/box/evidence, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gs" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/service/hydroponics) -"gw" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"gx" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - dir = 2; - id = "toxinsdriver"; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gz" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"gA" = ( -/obj/machinery/door/airlock/research{ - name = "Toxins Lab"; - req_access_txt = "7" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gB" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/assembly/timer, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gD" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gE" = ( -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"gF" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/white, -/area/science/research) -"gG" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall, -/area/science/research) -"gH" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"gI" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/maintenance/starboard) -"gJ" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plating, -/area/maintenance/starboard) -"gK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gM" = ( -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gN" = ( -/obj/structure/table, -/obj/item/storage/firstaid, -/obj/item/multitool, -/obj/item/clothing/head/soft, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gP" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = 32; - pixel_y = 0 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gR" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"gS" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"gT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/secure/safe{ - pixel_y = 28 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"gU" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office" - }, -/obj/item/camera/detective, -/obj/item/taperecorder, -/turf/open/floor/carpet, -/area/security/detectives_office) -"gV" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"gW" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - req_access_txt = "7" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gY" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ha" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hb" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hd" = ( -/obj/structure/tank_dispenser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"he" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hf" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hg" = ( -/obj/structure/table/reinforced, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hh" = ( -/obj/structure/table/reinforced, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hi" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hj" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hl" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hm" = ( -/obj/structure/sign/warning/biohazard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"hn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"ho" = ( -/obj/structure/chair/stool, -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_y = 27 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"hp" = ( -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hq" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -25 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hs" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"ht" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3" - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"hu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"hv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hw" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hx" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"hz" = ( -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, -/turf/open/floor/engine, -/area/science/mixing) -"hA" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"hB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"hC" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"hD" = ( -/obj/machinery/vending/cola, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"hE" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"hG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hH" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"hI" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/detective, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/security/detectives_office) -"hJ" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/carpet, -/area/security/detectives_office) -"hK" = ( -/obj/structure/table, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hM" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hO" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"hP" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hQ" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"hR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hS" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"hT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hU" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"hV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1" - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"hW" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/door/window/eastright{ - req_access_txt = "7" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hY" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"ia" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/turf/open/floor/engine, -/area/science/mixing) -"ib" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix, -/turf/open/floor/engine, -/area/science/mixing) -"ic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"id" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing) -"ie" = ( -/obj/effect/turf_decal/arrows{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"ig" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"ii" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"ij" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ik" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"il" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"im" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"in" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ip" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"iq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"ir" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"is" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/hallway/secondary/exit) -"it" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"iu" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iv" = ( -/obj/structure/closet/crate{ - name = "Gold Crate" - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/storage/belt/champion, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"iw" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ix" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iy" = ( -/obj/machinery/light, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iz" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iA" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iB" = ( -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iD" = ( -/obj/machinery/camera{ - c_tag = "Research Division Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"iE" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = 25; - pixel_y = -5 - }, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = 25; - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, -/turf/open/floor/engine, -/area/science/mixing) -"iG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"iH" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/central"; - dir = 4; - name = "Central Hall APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"iI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iM" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"iN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"iO" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"iP" = ( -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"iQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Airlock" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"iR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"iT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/maintenance/port) -"iU" = ( -/turf/closed/wall, -/area/maintenance/port) -"iV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"iW" = ( -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"iX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"iY" = ( -/obj/item/coin/silver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/coin/silver{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/coin/silver{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/coin/silver{ - pixel_x = -6; - pixel_y = 5 - }, -/obj/item/coin/silver{ - pixel_x = 5; - pixel_y = -8 - }, -/obj/structure/closet/crate{ - name = "Silver Crate" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"iZ" = ( -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"ja" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jb" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"jc" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"jd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/exit) -"je" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"jf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jg" = ( -/turf/closed/wall, -/area/medical/medbay) -"jh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ji" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"jj" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"jk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jl" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/conveyor{ - dir = 4; - id = "toxins" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"jm" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/conveyor{ - dir = 4; - id = "toxins" - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"jn" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 1; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"jp" = ( -/obj/structure/table, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"js" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jt" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"ju" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jv" = ( -/obj/structure/cable, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("SS13") - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jw" = ( -/obj/structure/safe, -/obj/item/clothing/head/bearpelt, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jx" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"jy" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jz" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"jA" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jB" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/mineral/stacking_machine{ - stack_amt = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jD" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - req_access_txt = "53" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jE" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"jF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"jH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"jI" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"jJ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jL" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/vending/wardrobe/medi_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jM" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/item/reagent_containers/hypospray, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jN" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/item/gun/syringe, -/obj/item/reagent_containers/dropper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jP" = ( -/obj/machinery/vending/medical, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jQ" = ( -/obj/structure/closet/wardrobe/white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jR" = ( -/obj/structure/closet/wardrobe/white, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jS" = ( -/obj/structure/table, -/obj/item/surgicaldrill, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"jT" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"jU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"jV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"jW" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"jZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ka" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kc" = ( -/obj/structure/table, -/obj/item/hemostat, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kd" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/scalpel, -/obj/item/circular_saw, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ke" = ( -/obj/structure/table, -/obj/item/retractor, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kf" = ( -/obj/structure/table, -/obj/item/cautery, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kg" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"kh" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"ki" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"kj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"kl" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"km" = ( -/obj/structure/table, -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"kn" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ko" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kp" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/port) -"kq" = ( -/obj/machinery/recycler, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ks" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ku" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kw" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kx" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ky" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kz" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kC" = ( -/obj/structure/table, -/obj/item/surgical_drapes, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kD" = ( -/obj/machinery/camera{ - c_tag = "Toxins Lab"; - dir = 1; - network = list("SS13") - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"kE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"kF" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"kG" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"kH" = ( -/obj/machinery/stasis, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kI" = ( -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"kJ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research) -"kK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kL" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kN" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kO" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"kQ" = ( -/obj/machinery/disposal, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"kR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"kS" = ( -/turf/closed/wall, -/area/service/janitor) -"kU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"kV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"kW" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"kX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kY" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"kZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/medbay) -"la" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lc" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ld" = ( -/obj/machinery/camera{ - c_tag = "Escape"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"le" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"lj" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"lk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"ll" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"lm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ln" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Custodial Closet" - }, -/obj/item/paper/guides/recycler, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"lo" = ( -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - cell_type = /obj/item/stock_parts/cell/high; - dir = 8; - name = "Arrivals Hallway APC"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"lp" = ( -/obj/machinery/light/small, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"lq" = ( -/obj/machinery/power/apc{ - areastring = "/area/service/janitor"; - dir = 4; - name = "Custodial Closet APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/janitor) -"lr" = ( -/obj/machinery/camera{ - c_tag = "Medbay North"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ls" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel, -/area/service/janitor) -"lt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lu" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"lv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lw" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ly" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lz" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lC" = ( -/obj/structure/cable, -/obj/effect/landmark/observer_start, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"lD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/spawner/xmastree, -/turf/open/floor/plasteel, -/area/service/bar) -"lE" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"lF" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North"; - dir = 8; - network = list("MiniSat"); - start_active = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lG" = ( -/obj/structure/table, -/obj/item/storage/box/lights/bulbs, -/obj/item/storage/box/lights/tubes, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/turf/open/floor/plasteel, -/area/service/janitor) -"lH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/janitor) -"lI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lN" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/machinery/camera{ - c_tag = "Medbay Foyer" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lP" = ( -/obj/machinery/computer/med_data, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/medical/medbay) -"lU" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"lV" = ( -/obj/structure/closet/l3closet/janitor, -/turf/open/floor/plasteel, -/area/service/janitor) -"lW" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"lZ" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/b_minus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/b_plus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/a_plus, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ma" = ( -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/janitor) -"mb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Bridge"; - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command) -"md" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"me" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mf" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mg" = ( -/obj/machinery/door/airlock/medical{ - name = "Medbay Reception"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ml" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/vending/snack, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mp" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mq" = ( -/turf/open/floor/plasteel, -/area/service/janitor) -"mr" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel, -/area/service/janitor) -"ms" = ( -/obj/structure/table, -/obj/machinery/airalarm/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/service/janitor) -"mt" = ( -/obj/machinery/power/apc{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"mu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/hallway/secondary/exit) -"mv" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"mw" = ( -/obj/structure/chair/comfy/beige, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"mx" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"my" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/wrench, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mz" = ( -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - on = 1; - target_temperature = 80 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mC" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mD" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mE" = ( -/turf/closed/wall, -/area/maintenance/aft) -"mF" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"mG" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"mH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"mI" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/service/janitor) -"mJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/janitor) -"mK" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "26" - }, -/turf/open/floor/plating, -/area/service/janitor) -"mM" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mN" = ( -/turf/closed/wall, -/area/service/bar) -"mO" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/service/bar) -"mP" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"mQ" = ( -/obj/effect/spawner/structure/window, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "bar" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/service/bar) -"mR" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"mS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mU" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/medbay) -"mW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"mZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"na" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"nc" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"nd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ne" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/service/bar) -"nf" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/spawner/randomarcade, -/turf/open/floor/plasteel, -/area/service/bar) -"ng" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"nh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"nj" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/lighter/greyscale, -/turf/open/floor/carpet, -/area/hallway/secondary/exit) -"nk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/service/bar) -"nm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"nn" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"no" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"np" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/service/bar) -"nq" = ( -/obj/structure/sign/warning/securearea{ - desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; - icon_state = "monkey_painting"; - name = "Mr. Deempisi portrait"; - pixel_x = -28; - pixel_y = -4 - }, -/obj/machinery/vending/boozeomat, -/obj/machinery/button/curtain{ - id = "bar"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/bar) -"nr" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/wood, -/area/service/bar) -"ns" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" - }, -/obj/machinery/door/firedoor, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "bar" - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Diner" - }, -/obj/machinery/door/firedoor, -/obj/structure/curtain/cloth/fancy/mechanical{ - id = "bar" - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/chem_seller, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/service/hydroponics) -"nw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - name = "Research and Development Desk"; - req_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rnd" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/research) -"nx" = ( -/obj/structure/table, -/obj/item/storage/box/beakers, -/obj/item/storage/box/beakers, -/obj/item/storage/pill_bottle/epinephrine, -/obj/item/storage/pill_bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ny" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera{ - c_tag = "Chemistry" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nz" = ( -/obj/machinery/smartfridge/chemistry, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - id_tag = null; - name = "Cryo"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"nF" = ( -/obj/machinery/camera{ - c_tag = "Surgery"; - dir = 8 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"nG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"nH" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/camera, -/turf/open/floor/carpet, -/area/hallway/secondary/exit) -"nI" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"nJ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/janitorialcart, -/obj/item/mop, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"nK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/janitor) -"nL" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"nM" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/service/janitor) -"nN" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port) -"nO" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"nP" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plating, -/area/maintenance/port) -"nR" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"nT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel, -/area/service/bar) -"nV" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"nX" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet, -/area/service/bar) -"nY" = ( -/obj/structure/table/reinforced, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/service/bar) -"nZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/service/bar) -"oa" = ( -/obj/item/radio/intercom{ - pixel_x = 25 - }, -/turf/open/floor/wood, -/area/service/bar) -"ob" = ( -/obj/machinery/chem_dispenser, -/obj/item/reagent_containers/glass/beaker/large, -/obj/machinery/button/door{ - desc = "A remote control-switch for privacy shutters."; - id = "chemistry_shutters"; - name = "Privacy Shutters"; - pixel_x = -24; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oc" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/landmark/start/chemist, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"od" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oe" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"of" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"og" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Medbay South"; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"oj" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/maintenance/port) -"ok" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ol" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"om" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"on" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/exit) -"oo" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - name = "Hydroponics Desk"; - req_one_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"op" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oq" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"or" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/carpet, -/area/service/bar) -"ot" = ( -/turf/open/floor/wood, -/area/service/bar) -"ou" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/cultivator, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ov" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/hatchet, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ow" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ox" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oy" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oD" = ( -/obj/machinery/camera{ - c_tag = "Hydroponics"; - dir = 8 - }, -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/button/door{ - desc = "A remote control switch for the genetics doors."; - id = "GeneticsDoor"; - name = "Genetics Exit Button"; - normaldoorcontrol = 1; - pixel_x = 0; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oF" = ( -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oG" = ( -/obj/machinery/airalarm/directional/north, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 7 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oH" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/vending/wardrobe/gene_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"oK" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"oL" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle North" - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"oM" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"oN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"oO" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/chem_dispenser/drinks/beer{ - density = 0; - dir = 8; - pixel_x = 24 - }, -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/service/bar) -"oP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oQ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oR" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oS" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oY" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"oZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar) -"pa" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/bar) -"pb" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/hardhat/cakehat, -/turf/open/floor/carpet, -/area/service/bar) -"pc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"pd" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/hallway/secondary/exit) -"pe" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"pf" = ( -/obj/machinery/smartfridge/food, -/turf/open/floor/plasteel, -/area/service/bar) -"pi" = ( -/obj/structure/displaycase/labcage, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"pj" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pk" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pl" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/screwdriver, -/obj/item/radio/headset/headset_med, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pm" = ( -/obj/structure/closet/secure_closet/medical1, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pn" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"po" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"pq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cold Chamber"; - network = list("burnchamber") - }, -/turf/open/space/basic, -/area/space) -"pr" = ( -/obj/structure/table, -/obj/item/storage/box/rxglasses, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"ps" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"pt" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"pu" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"pv" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/light/small{ - brightness = 5; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"px" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/clown, -/turf/open/floor/plasteel, -/area/service/bar) -"pA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"pB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pC" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"pD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pF" = ( -/obj/structure/table/reinforced, -/turf/open/floor/carpet, -/area/service/bar) -"pG" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pH" = ( -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pJ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"pK" = ( -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"pL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"pM" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"pN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"pO" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"pP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"pQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"pR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/closed/wall, -/area/service/bar) -"pS" = ( -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"pT" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Quarters"; - req_access_txt = "58" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"pU" = ( -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/bar) -"pV" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pW" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pY" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pZ" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qa" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"qc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qd" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"qe" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"qf" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "57" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"qg" = ( -/obj/machinery/door/airlock{ - name = "Kitchen cold room"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qh" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qj" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qk" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"ql" = ( -/obj/machinery/oven, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qm" = ( -/obj/machinery/griddle, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qn" = ( -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "28" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/bar) -"qp" = ( -/obj/structure/cable, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"qq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter, -/turf/open/space/basic, -/area/maintenance/aft) -"qr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qt" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qv" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qx" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/research) -"qC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qD" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qE" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/aft) -"qF" = ( -/obj/machinery/power/apc{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"qG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/aft) -"qH" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qI" = ( -/obj/structure/kitchenspike, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/item/food/meat/slab/monkey, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qJ" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qK" = ( -/obj/machinery/gibber, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"qL" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qM" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qN" = ( -/obj/structure/table, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qO" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1; - network = list("SS13") - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qP" = ( -/turf/open/floor/plating/airless, -/area/space) -"qQ" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qR" = ( -/obj/machinery/processor, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"qS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"qT" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"qU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"qV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"qW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"qX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ra" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Cargo Office" - }, -/obj/machinery/cell_charger, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rb" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"rd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/bar) -"re" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/bar) -"rf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"rg" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"rh" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"ri" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"rj" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"rk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"rl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"rm" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rn" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"ro" = ( -/turf/closed/wall, -/area/engineering/main) -"rp" = ( -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/plasteel, -/area/engineering/main) -"rq" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"rr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/maintenance/aft) -"rs" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ru" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/maintenance/aft) -"rv" = ( -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rw" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rx" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"ry" = ( -/obj/machinery/power/smes{ - charge = 1.5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rz" = ( -/obj/machinery/power/smes{ - charge = 1.5e+006 - }, -/obj/machinery/camera{ - c_tag = "SMES Room" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rA" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rC" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rD" = ( -/obj/machinery/vending/cola, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rE" = ( -/obj/machinery/vending/snack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rG" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rH" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/machinery/air_sensor/atmos/carbon_tank, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"rI" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/machinery/air_sensor/atmos/nitrous_tank, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"rJ" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/purple, -/obj/machinery/air_sensor/atmos/toxin_tank, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"rK" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"rL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"rM" = ( -/turf/open/floor/plasteel, -/area/engineering/main) -"rN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/main) -"rO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rP" = ( -/obj/machinery/computer/monitor{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rQ" = ( -/obj/machinery/vending/coffee, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rR" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rS" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/purple, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"rT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engineering/main) -"rU" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"rV" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"rW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rX" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"rY" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"rZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/mime, -/turf/open/floor/plasteel, -/area/service/bar) -"sa" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/engineering/main) -"sc" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall/r_wall, -/area/engineering/main) -"sd" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security Office South"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"se" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"sf" = ( -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"sh" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"si" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_smes) -"sj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sk" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"sl" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/engineering/main) -"sn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"so" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/engineering/atmos) -"sp" = ( -/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/visible/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ss" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"st" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"su" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible/layer2, -/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sx" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/main) -"sy" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/food/pie/cream, -/turf/open/floor/carpet, -/area/service/bar) -"sz" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sA" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"sB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/chem_seller/engineering, -/turf/open/floor/plasteel, -/area/engineering/main) -"sE" = ( -/obj/machinery/door/airlock/engineering{ - name = "SMES Room"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"sF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/engineering/main) -"sG" = ( -/turf/closed/wall, -/area/engineering/atmos) -"sH" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sM" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sN" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sO" = ( -/obj/structure/transit_tube_pod, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/main) -"sP" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"sS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"sT" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/main) -"sU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sV" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/engineering/main) -"sW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/main) -"sX" = ( -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/engineering/main) -"sY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ta" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway South"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"td" = ( -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tf" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tg" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"th" = ( -/obj/machinery/rnd/production/techfab/department/engineering, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"tj" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/engineering/main) -"tk" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"tl" = ( -/obj/structure/transit_tube/horizontal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tm" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tn" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"to" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/engineering/main) -"tp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tq" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engineering/main) -"tr" = ( -/obj/structure/cable, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/chief_engineer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ts" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tt" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"tu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/medbay) -"tv" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty{ - pixel_y = -4 - }, -/obj/item/pipe_dispenser{ - pixel_y = -6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tw" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/cable, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ty" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/engineering/main) -"tz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"tA" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tB" = ( -/obj/structure/transit_tube, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"tC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/engineering/main) -"tD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tE" = ( -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"tF" = ( -/obj/structure/closet/wardrobe/chemistry_white, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"tG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"tH" = ( -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tI" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tK" = ( -/obj/machinery/atmospherics/components/binary/circulator/cold{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"tL" = ( -/obj/machinery/power/generator, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"tM" = ( -/obj/machinery/atmospherics/components/binary/circulator{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/main) -"tN" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"tO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"tQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/table, -/obj/item/pipe_dispenser{ - pixel_y = 6 - }, -/obj/item/circuitboard/machine/thermomachine, -/obj/item/circuitboard/machine/thermomachine, -/turf/open/floor/plasteel, -/area/engineering/main) -"tR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tV" = ( -/turf/closed/wall/r_wall, -/area/cargo/qm) -"tW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/cargo/qm) -"tX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/cargo/qm"; - dir = 1; - name = "Quartermaster APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ua" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"ub" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"ue" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/engineering/main) -"uf" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"ug" = ( -/obj/machinery/light, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/engineering/main) -"uh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ui" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engineering/main) -"uj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plating, -/area/engineering/main) -"uk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ul" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engineering/main) -"um" = ( -/obj/structure/table, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/apc, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel, -/area/engineering/main) -"un" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/engineering/main) -"uo" = ( -/obj/machinery/camera, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engineering/main) -"up" = ( -/obj/machinery/firealarm/directional/north, -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/item/toy/figure/qm{ - pixel_x = -6 - }, -/obj/item/gps/mining{ - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uq" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/coin/silver, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ur" = ( -/obj/machinery/camera, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plasteel, -/area/engineering/main) -"us" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/engineering/main) -"ut" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/qm) -"uu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uv" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/main) -"uw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ux" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/computer/cargo{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"uD" = ( -/obj/structure/table, -/obj/machinery/light/small, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -6; - pixel_y = 9 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/plasteel, -/area/engineering/main) -"uF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/engineering/main) -"uG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/closed/wall, -/area/engineering/main) -"uH" = ( -/obj/machinery/light/small, -/obj/structure/reagent_dispensers/watertank/high, -/turf/open/floor/plasteel, -/area/engineering/main) -"uI" = ( -/obj/structure/transit_tube/crossing, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"uJ" = ( -/mob/living/carbon/human/species/monkey/punpun, -/obj/machinery/chem_dispenser/drinks{ - density = 0; - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/service/bar) -"uK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"uL" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"uN" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"uO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"uP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"uQ" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engineering/main) -"uR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uS" = ( -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"uT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/engineering/main) -"uU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uV" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/engineering/main) -"uW" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space/basic, -/area/space) -"uX" = ( -/obj/structure/transit_tube/diagonal/topleft, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"uY" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engineering/main) -"va" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space/basic, -/area/space) -"vb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/engineering/main) -"vc" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/engineering/main) -"vd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/engineering/main) -"ve" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/main) -"vf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vh" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vi" = ( -/obj/machinery/camera{ - c_tag = "Burn Chamber"; - network = list("burnchamber") - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space) -"vk" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space/basic, -/area/space) -"vl" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"vm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"vp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/engineering/main) -"vu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engineering/main) -"vv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vw" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vx" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vy" = ( -/obj/machinery/button/door{ - id = "burndoor"; - name = "Burn Chamber Vent Control"; - pixel_x = 25; - pixel_y = 5 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel, -/area/engineering/main) -"vz" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vC" = ( -/obj/item/analyzer, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/engineering/main) -"vD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vF" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating, -/area/engineering/main) -"vL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vM" = ( -/obj/machinery/atmospherics/components/binary/volume_pump{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vN" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engineering/main) -"vP" = ( -/obj/machinery/door/poddoor{ - id = "burndoor"; - name = "Mixer Room Vent" - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"vQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vR" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space/basic, -/area/space) -"vS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"vT" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"vU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engineering/main) -"vV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle South"; - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"vW" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/main) -"vY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"vZ" = ( -/obj/machinery/light, -/turf/open/floor/plating, -/area/engineering/main) -"wa" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/conveyor{ - dir = 4; - id = "toxins" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"wb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"wc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"wd" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat) -"we" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat) -"wf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wg" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wh" = ( -/turf/open/floor/plasteel, -/area/cargo/qm) -"wi" = ( -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wk" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wl" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"ws" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"wt" = ( -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"ww" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wy" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/item/paper/monitorkey, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"wz" = ( -/turf/open/space, -/area/space) -"wA" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"wB" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"wC" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"wE" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"wF" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"wG" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wI" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - id = "Cell 2"; - name = "Cell 2"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"wJ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"wK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"wL" = ( -/obj/docking_port/stationary{ - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/space/basic, -/area/space) -"wM" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/aft) -"wN" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"wO" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"wP" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"wQ" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"wR" = ( -/obj/structure/window/reinforced/fulltile, -/obj/structure/transit_tube, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"wT" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat) -"wU" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"wV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"wW" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"wX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"wY" = ( -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/command) -"xb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command) -"xc" = ( -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/command) -"xd" = ( -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command) -"xe" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command) -"xg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command) -"xh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/command) -"xi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/command) -"xj" = ( -/obj/machinery/conveyor{ - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"xk" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"xl" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xm" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/stamp, -/obj/item/stamp/denied, -/obj/item/pen/red, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xn" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"xo" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xp" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xq" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xr" = ( -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"xs" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/science/test_area) -"xt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/exploration_dock) -"xv" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xy" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/wardrobe/cargotech, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xz" = ( -/obj/machinery/autolathe, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xB" = ( -/obj/structure/cable, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xC" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/conveyor{ - dir = 4; - id = "toxins" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"xH" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "toxins" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"xI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xL" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"xM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xN" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"xO" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/command/nuke_storage"; - dir = 1; - name = "Vault APC"; - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/command/nuke_storage) -"xP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/southright{ - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"xQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HOSOffice"; - name = "security shutters" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"xR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xS" = ( -/turf/closed/wall, -/area/cargo/qm) -"xT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Vault Security Office"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"xU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xV" = ( -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = 28 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"xW" = ( -/mob/living/simple_animal/sloth/citrus, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xY" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/cargo/qm) -"ya" = ( -/obj/machinery/vending/security, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yb" = ( -/obj/structure/filingcabinet, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yc" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yd" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/security/detectives_office) -"ye" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/restraints/handcuffs, -/obj/item/storage/fancy/cigarettes, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/carpet, -/area/security/detectives_office) -"yf" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 3"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/hallway/primary/central) -"yh" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/hallway/primary/central) -"yi" = ( -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yj" = ( -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/flasher{ - id = "PCell 3"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for privacy shutters."; - id = "HOSOffice"; - name = "Privacy Shutters"; - pixel_x = -4; - pixel_y = 25; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"yl" = ( -/obj/machinery/washing_machine, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ym" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yn" = ( -/obj/structure/closet/crate, -/obj/item/clothing/head/chefhat, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"yo" = ( -/obj/item/flashlight, -/obj/machinery/camera{ - c_tag = "Engine Room"; - dir = 1; - network = list("SS13") - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"yp" = ( -/turf/open/floor/goonplaque{ - desc = "In loving memory of Giacommand; the original creator of ministation. Rest in peace you magnificent spaceman." - }, -/area/hallway/primary/central) -"yq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"yr" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"ys" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/detectives_office) -"yt" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Bar"; - dir = 1; - network = list("SS13") - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar) -"yu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yw" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/primary/central) -"yx" = ( -/turf/open/floor/carpet, -/area/hallway/primary/central) -"yy" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Dorm 1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yB" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yC" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/hallway/primary/central) -"yD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yG" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yH" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yP" = ( -/obj/machinery/door/window/eastleft, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yS" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/carpet, -/area/hallway/primary/central) -"yT" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yW" = ( -/obj/machinery/door/window/eastright, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"yY" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"yZ" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"za" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/hallway/primary/central) -"zc" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Dorm 2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zd" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ze" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zf" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zg" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zi" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"zk" = ( -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"zn" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"zo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - name = "Bar Door"; - req_access_txt = null; - req_one_access_txt = "25;28" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"zw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zx" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zy" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zz" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zA" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"zC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"zD" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"zE" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"zG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"zH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_x = -34; - req_one_access_txt = "32;47;48" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"zI" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zJ" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/accounting, -/obj/item/folder/blue{ - pixel_x = -13 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zK" = ( -/obj/structure/closet/crate/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"zM" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"zN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat) -"zP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"zQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zR" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zS" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zT" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zU" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zV" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"zX" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"zY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"zZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"Aa" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber"; - dir = 4; - network = list("MiniSat") - }, -/mob/living/silicon/robot/shell, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Ab" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"Ac" = ( -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ad" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ae" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Af" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ag" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"Ah" = ( -/mob/living/simple_animal/pet/dog/corgi, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ai" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Aj" = ( -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay 1"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"Ak" = ( -/obj/structure/closet/secure_closet/hop, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Al" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 4; - network = "tcommsat" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Am" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"An" = ( -/obj/machinery/photocopier, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ao" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Aq" = ( -/obj/machinery/vending/cart, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Ar" = ( -/obj/machinery/pdapainter, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"As" = ( -/turf/closed/wall, -/area/command/heads_quarters/hop) -"At" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Au" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Aw" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI core shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Ax" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"Az" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AA" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AC" = ( -/obj/structure/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"AD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"AE" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"AF" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber"; - req_access_txt = "65" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AG" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat) -"AH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"AI" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"AJ" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_y = -25 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = 28 - }, -/obj/machinery/button/door{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters control"; - pixel_x = 23; - pixel_y = -23; - req_access_txt = "16" - }, -/obj/machinery/button/door{ - id = "AI Core shutters"; - name = "AI Core shutters control"; - pixel_x = 24; - pixel_y = 22; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AK" = ( -/obj/machinery/telecomms/broadcaster/preset_left/birdstation, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"AM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AN" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AO" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AP" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"AR" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"AS" = ( -/obj/machinery/door/airlock/engineering/glass{ - autoclose = 0; - frequency = 1449; - id_tag = "tcomm_airlock_interior"; - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"AU" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai"; - name = "AI Chamber turret control"; - pixel_x = -5; - pixel_y = 24 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"AV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/aisat) -"AW" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"AX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"AY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"AZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Ba" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"Bb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Bc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Bd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Be" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space, -/area/space) -"Bf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bg" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bi" = ( -/turf/open/floor/circuit/telecomms/mainframe, -/area/ai_monitored/turret_protected/aisat) -"Bj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"Bk" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"Bl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bn" = ( -/obj/docking_port/stationary{ - dir = 1; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"Bo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"Br" = ( -/obj/machinery/telecomms/server/presets/common/birdstation, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"Bs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/ai_monitored/turret_protected/aisat) -"Bt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit/telecomms/mainframe, -/area/ai_monitored/turret_protected/aisat) -"Bu" = ( -/obj/machinery/telecomms/message_server, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"Bv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Bw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Bx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"By" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Bz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"BC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"BD" = ( -/obj/machinery/telecomms/processor/preset_one/birdstation, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"BE" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"BF" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"BG" = ( -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BK" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"BL" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BM" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/power/terminal{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BN" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"BO" = ( -/obj/structure/sign/warning/radiation/rad_area, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat) -"BP" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"BQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"BR" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"BS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"BT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/firecloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small, -/turf/open/floor/plasteel/white, -/area/science/research) -"BU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/detectives_office) -"BV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"BW" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/service/bar) -"BX" = ( -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"BY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"BZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/closet/crate{ - name = "solar pack crate" - }, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/circuitboard/computer/solar_control, -/obj/item/electronics/tracker, -/obj/item/paper/guides/jobs/engi/solars, -/turf/open/floor/plating, -/area/engineering/main) -"Ca" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"Cb" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Cc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"Cd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 5; - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"Ce" = ( -/obj/docking_port/stationary{ - dir = 8; - height = 18; - id = "emergency_home"; - name = "BoxStation emergency evac bay"; - width = 32 - }, -/turf/open/space/basic, -/area/space) -"Cf" = ( -/obj/machinery/button/ignition{ - id = "burnchamber"; - pixel_x = 25 - }, -/turf/open/floor/plating, -/area/engineering/main) -"Cg" = ( -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plating/airless, -/area/engineering/main) -"Ch" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/obj/machinery/sparker{ - id = "burnchamber"; - pixel_x = -25 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"Cj" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar) -"Ck" = ( -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"Cp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"Cx" = ( -/obj/structure/chair/stool, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Burn Chamber Telescreen"; - network = list("burnchamber"); - pixel_y = -30 - }, -/turf/open/floor/plating, -/area/engineering/main) -"Cy" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/hallway/primary/central) -"CE" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"CK" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"CQ" = ( -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"CR" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"CS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"CX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"CY" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"CZ" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/item/areaeditor/blueprints, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"Dj" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay) -"Dm" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Ds" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"Dv" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"DD" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"DF" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"DH" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"DI" = ( -/obj/structure/cable, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_x = -32; - pixel_y = 28 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_x = -32; - pixel_y = 36 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"DN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"DO" = ( -/obj/machinery/telecomms/receiver/preset_left/birdstation, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"DP" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/aicard, -/obj/item/stamp/rd, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"DY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"Ee" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ej" = ( -/obj/structure/table, -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/cartridge/chemistry{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/cartridge/medical{ - pixel_x = 4 - }, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"Em" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ep" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/plunger, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Es" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"Ev" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/engineering/main) -"Ew" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"EA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway 2"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"EF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/fore) -"EQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ES" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"EU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"EZ" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"Fb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/engineering/main) -"Fe" = ( -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Fg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"Fh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Fp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/coldtemp, -/turf/open/floor/plating, -/area/science/xenobiology) -"Fq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Fr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Fs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"Ft" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Fu" = ( -/obj/structure/punching_bag, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"Fx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/aft) -"Fy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/chem_dispenser, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"FB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Storage"; - req_access_txt = "11" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"FD" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"FE" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/miner/carbon_dioxide, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"FH" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"FL" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"FS" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"FW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/medbay) -"Gb" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 8 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"Gc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ge" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Gh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"Gm" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Go" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/science, -/turf/closed/wall/r_wall, -/area/science/research) -"Gt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall/r_wall, -/area/science/mixing) -"Gx" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Gy" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Gz" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/storage) -"GA" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"GB" = ( -/turf/closed/wall/r_wall, -/area/engineering/engine_smes) -"GD" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"GG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65;13" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"GH" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/hallway/primary/central) -"GJ" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"GN" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "49" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"GP" = ( -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"GQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"GV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"GW" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit) -"GZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"Ha" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Hk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Hq" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Plasma Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Hs" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Ht" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"Hu" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Hw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Hz" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"HA" = ( -/turf/closed/wall/r_wall, -/area/service/hydroponics) -"HG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"HH" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"HJ" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway East"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"HL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/turntable, -/turf/open/floor/plasteel, -/area/service/bar) -"HM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/pickaxe/mini, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"HZ" = ( -/turf/closed/wall, -/area/engineering/engine_smes) -"Ia" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Ig" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Ik" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "CO2 Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Il" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"In" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Iv" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Iw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"Iz" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"IN" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"IR" = ( -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"IU" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"IW" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible/layer2, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"IX" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ja" = ( -/turf/closed/wall, -/area/science/mixing) -"Jb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/stamp, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp/qm{ - pixel_x = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"Jd" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Jf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Jo" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/plasteel, -/area/engineering/main) -"Jr" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/command/heads_quarters/hop"; - dir = 1; - name = "Head of Personnel APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"Js" = ( -/turf/closed/wall/r_wall, -/area/command) -"Jw" = ( -/obj/machinery/newscaster/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Jx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"JB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"JD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/chemistry) -"JE" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/gun/energy/e_gun/mini, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"JK" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"JL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"JQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"JV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Kg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"Kj" = ( -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/autoname, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/machinery/keycard_auth{ - pixel_x = -10 - }, -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/mob/living/simple_animal/parrot/poly, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"Ko" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/obj/structure/fans/tiny, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"Ku" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"Kv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Ky" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"KA" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"KB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "35" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/hydroponics) -"KJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/science/mixing) -"KK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"KL" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"KO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"KR" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command) -"KU" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"KW" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"Li" = ( -/obj/structure/cable, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating, -/area/engineering/main) -"Lr" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/turf/open/floor/plasteel/white, -/area/science/research) -"LG" = ( -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"LN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"LS" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command) -"LY" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ma" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"Mb" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 8; - output_dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/research) -"Mf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"Ml" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"Mw" = ( -/obj/machinery/light, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Mx" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"MF" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"MH" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"MI" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"MJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"MM" = ( -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"MN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"MU" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"MW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Nb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Security Office North"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"Nd" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/door/window/eastright{ - req_access_txt = "7" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"Ne" = ( -/obj/machinery/vendor/exploration, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Nj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Nl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ns" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Nw" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Nx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/security/brig) -"NI" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"NL" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"NN" = ( -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"NP" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"NR" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"NY" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"NZ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"Oa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/exploration_dock) -"Oe" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Oh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Oi" = ( -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Ol" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"On" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"Oo" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/qm) -"Op" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"Ot" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"Oy" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"Oz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"OH" = ( -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"OQ" = ( -/obj/machinery/light/small, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"OS" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"OX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair/sofa/corp{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"OZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Pb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1; - pixel_y = 0 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Pc" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat) -"Ph" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"Pj" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"Pk" = ( -/turf/open/floor/plasteel, -/area/maintenance/aft) -"Po" = ( -/obj/structure/cable, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Pw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Px" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"PE" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"PF" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"PM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"PR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/science/mixing) -"PT" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"PY" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"Qa" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Qb" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Qd" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology North"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"Qf" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Qg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Qh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Qi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Qk" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Qo" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"Qq" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engineering/main) -"Qz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat External Access"; - req_access_txt = "65;13" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"QB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/engineering/atmos) -"QD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/storage) -"QH" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"QI" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"QL" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"QO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"QT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"QY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Ra" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"Re" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"Rf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"Rh" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Ri" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ro" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"Rq" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"RH" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"RM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"RN" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/machinery/atmospherics/miner/toxins, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/purple, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"RP" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"RY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Sa" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/quartermaster, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"Se" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"Sf" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"Sj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Sk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Sl" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Sn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/qm) -"Sp" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/machinery/atmospherics/miner/n2o, -/obj/effect/turf_decal/tile/hex/red, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ - valve_open = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"Sq" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Sw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Sx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"Sz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"SA" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"SB" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"SC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"SG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_x = 32; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"SM" = ( -/turf/closed/wall/r_wall, -/area/cargo/storage) -"SS" = ( -/obj/structure/bed/dogbed/runtime, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"SV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"SY" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "N2O Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Ta" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Tb" = ( -/turf/closed/wall, -/area/science/xenobiology) -"Tn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"To" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Tq" = ( -/obj/machinery/chem_heater, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Ts" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"Tu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/white, -/area/science/research) -"Tx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"Ty" = ( -/obj/machinery/atmospherics/pipe/layer_manifold{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"TB" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"TD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"TF" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"TG" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engineering/main) -"TI" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"TP" = ( -/obj/machinery/research/explosive_compressor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/science/research) -"Ua" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "chemistry shutters" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/medbay) -"Ub" = ( -/obj/structure/cable, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Uc" = ( -/obj/structure/closet/secure_closet/warden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"Uf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"Ug" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engineering/main) -"Uj" = ( -/obj/structure/bed/dogbed/lia, -/mob/living/simple_animal/hostile/carp/lia, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"Uk" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Ul" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Um" = ( -/obj/machinery/door/firedoor, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"Up" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Uq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Uu" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Exploration Dock"; - req_access_txt = "49" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Uw" = ( -/obj/machinery/suit_storage_unit/mining/eva, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"UC" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/brig) -"UD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"UE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"UI" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"UK" = ( -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"UL" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space) -"UN" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"UQ" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"US" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"UT" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/machinery/sparker{ - id = "burnchamber"; - pixel_x = -25 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/main) -"UW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"UZ" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"Va" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Vd" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"Vf" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"Vh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"Vl" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/cable, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Vp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"Vv" = ( -/obj/machinery/light, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Vx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Vy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"VC" = ( -/obj/machinery/button/door{ - desc = "A remote control switch for the medbay foyer."; - id = "MedbayFoyer"; - name = "Medbay Exit Button"; - normaldoorcontrol = 1; - pixel_y = -26 - }, -/obj/machinery/stasis, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"VD" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"VL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"VO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chemistry Lab East"; - dir = 8; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"VS" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_smes) -"VV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"Wc" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = 32; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Wn" = ( -/turf/closed/wall, -/area/security/detectives_office) -"Wo" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input, -/obj/effect/turf_decal/tile/hex/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/red, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"Wx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"Wy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"Wz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plating, -/area/engineering/main) -"WB" = ( -/obj/structure/table, -/obj/structure/table/glass, -/obj/item/stamp/cmo{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"WD" = ( -/obj/machinery/door/airlock/external{ - name = "External Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"WH" = ( -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"WS" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/hex/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/hex/green, -/obj/effect/turf_decal/tile/hex/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/layer2, -/obj/machinery/light/small{ - dir = 1; - flickering = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"WU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"WX" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"WZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"Xe" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"Xi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engineering/main) -"Xj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"Xl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/white, -/area/science/research) -"Xo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/science/research) -"Xt" = ( -/obj/machinery/computer/piratepad_control/civilian, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"XB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"XC" = ( -/obj/machinery/light/small{ - brightness = 5; - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat) -"XE" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Telecomms Server Room"; - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/aisat) -"XF" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"XL" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria{ - dir = 0 - }, -/area/service/bar) -"XM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"XN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"XO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"XR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"XS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/research) -"XT" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"XU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"Ya" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/maint, -/turf/open/floor/plasteel, -/area/cargo/storage) -"Yh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Yj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"Yl" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"Yn" = ( -/obj/machinery/telecomms/bus/preset_one/birdstation, -/turf/open/floor/plasteel/dark/telecomms, -/area/ai_monitored/turret_protected/aisat) -"Yv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"YC" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Bomb Test Site"; - desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; - dir = 8; - invuln = 1; - name = "Hardened Bomb-Test Camera"; - network = list("toxins"); - use_power = 0 - }, -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"YG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/science/mixing) -"YI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"YK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/closed/wall, -/area/science/mixing) -"YO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light_switch{ - pixel_x = 27; - pixel_y = -10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"YQ" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"YR" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"YS" = ( -/turf/closed/wall/r_wall, -/area/cargo/exploration_dock) -"YT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"YU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"YZ" = ( -/obj/machinery/light, -/obj/machinery/power/apc{ - dir = 4; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay) -"Ze" = ( -/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"Zs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/closed/wall, -/area/science/mixing) -"Zv" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"Zw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/science/xenobiology) -"Zy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ZB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ZC" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ZE" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ZU" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"ZY" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ZZ" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/obj/structure/window/plasma/reinforced/spawner{ - name = "south" - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, -/obj/effect/turf_decal/tile/hex/yellow, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/hex/yellow{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) - -(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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(3,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(9,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(10,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(11,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(12,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(13,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(14,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(15,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(16,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(17,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(18,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(19,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(20,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(21,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(22,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(23,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(24,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(25,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(26,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(27,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(28,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(29,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(31,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(32,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(33,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(34,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(36,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(37,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(38,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(39,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(40,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(41,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(42,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(43,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(44,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(45,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(46,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(47,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(48,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(49,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(50,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(51,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(52,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(53,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(54,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(55,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(56,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(57,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(58,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(59,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(60,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(61,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(62,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(63,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(64,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(65,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(66,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(67,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(68,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(69,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(70,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(71,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(72,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(73,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(74,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(75,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(76,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(77,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(78,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(79,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(80,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(81,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(82,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(83,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(84,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(85,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(86,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(87,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(88,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(89,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(90,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(91,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(92,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(93,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(94,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(95,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(96,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(97,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(98,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(99,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(100,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(101,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(102,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(103,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 -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 -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 -aa -aa -aa -aa -Ce -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 -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 -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 -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 -aa -aa -aa -aa -aa -"} -(104,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 -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 -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 -aV -cQ -iO -cQ -aV -aV -aV -cQ -iO -cQ -aV -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 -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 -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 -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 -aa -aa -aa -"} -(105,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 -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 -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 -aV -cQ -iP -cQ -aV -aV -aV -cQ -iP -cQ -aV -aV -aV -aV -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 -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 -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 -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 -"} -(106,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 -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 -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 -GW -GW -YI -iQ -YI -GW -YI -GW -YI -iQ -YI -GW -GW -pd -GW -YI -GW -YI -YI -YI -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 -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 -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 -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 -"} -(107,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 -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 -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 -GW -dU -ic -ic -ic -jG -kP -jG -ic -mu -ic -ol -GW -pd -GW -zx -fr -zM -iP -Aj -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 -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 -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 -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 -"} -(108,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 -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 -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 -YI -Xt -fr -fr -fr -fr -fr -fr -fr -fr -fr -om -GW -GW -GW -fr -fr -YI -YI -YI -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 -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 -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 -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 -"} -(109,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 -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 -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 -YI -Op -ie -fr -fr -fr -kQ -fr -fr -fr -fr -fr -fr -pe -fr -fr -fr -ic -zY -YI -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 -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 -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 -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 -"} -(110,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 -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 -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 -GW -fQ -fr -vo -fr -jT -jT -jT -jT -jT -ng -jT -jT -jT -jT -fr -fr -fr -zZ -YI -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 -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 -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 -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 -"} -(111,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Cc -aa -aa -aa -aa -aa -aa -aa -aa -aa -GW -gV -ig -zo -iV -jU -zo -zo -zo -zo -nh -zo -zo -wV -jT -fr -fr -fr -vV -YI -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 -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 -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 -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 -"} -(112,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -SM -SM -cA -bQ -dR -QD -dR -bU -cA -SM -SM -tV -tV -ut -ut -tV -GW -hD -oN -oN -jc -jV -kR -ld -oN -oN -oN -oN -oN -wX -jV -BV -fr -zN -Ab -YI -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 -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 -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 -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 -"} -(113,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -bF -cC -dt -dS -eE -dS -xo -xv -CR -Gz -xS -tX -uy -Jb -oK -cg -cg -is -cg -jd -ey -cg -cg -cg -mv -nj -mF -oN -iV -lC -fr -zE -YI -YI -YI -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 -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 -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 -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 -"} -(114,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -QD -bL -cD -du -dT -HH -fM -xp -xw -xE -tO -tW -tY -uz -Oo -Sa -tW -hE -it -iT -je -jE -cf -lo -cg -mw -nH -mF -oN -iV -jT -fr -fr -zM -iP -Aj -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 -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 -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 -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 -"} -(115,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -QD -bM -cD -cD -bq -eS -bq -tw -bq -tD -tS -xR -uh -uB -uB -xX -xZ -kU -kU -cf -jf -jE -jE -lp -cg -mF -mF -mF -oN -iV -jT -fr -fr -YI -YI -YI -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 -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 -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 -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 -"} -(116,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -bN -cD -DH -bq -Sq -cD -xp -cD -xE -tT -xS -up -wh -uB -xY -xS -cf -kU -cf -jf -cf -cf -lq -cg -mG -nI -on -oN -iV -jT -fr -fr -cg -GW -aV -aa -aa -aa -AI -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 -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 -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 -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 -"} -(117,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -bO -cD -DH -Ub -Sq -cD -xq -gK -Ya -Pw -xS -uq -xW -Sn -PE -xS -cf -kU -cf -jh -jX -kS -kS -kS -kS -kS -kS -oL -iV -jT -jT -jT -jT -GW -aV -aV -aV -aV -aV -aV -aV -Rq -Fx -Sz -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -rq -rq -rq -rq -rq -rq -rq -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 -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 -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 -"} -(118,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -bP -cD -DH -bq -cD -cD -cD -cD -Ya -Pw -xS -xS -xS -xS -xS -xS -cf -iM -iU -iU -jf -kS -ls -lV -mH -nJ -kS -oN -iV -fr -zy -zD -nL -zD -zD -zD -Sz -Sz -Sz -Sz -Sz -qT -nc -Sz -aV -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -rq -uW -vj -vj -vj -vk -rq -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 -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 -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 -"} -(119,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -cd -hR -cD -bq -Uw -Qk -QL -cD -Ya -xM -bu -cf -cf -cf -cf -cf -cf -iM -iU -ji -jY -kS -lE -mq -mI -nK -lH -oM -iV -fr -zz -zD -Jr -Ac -Ak -zD -xN -YQ -Fu -pu -KW -mE -WD -GB -GB -si -si -si -GB -GB -GB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -rq -vY -uW -vj -vj -vR -rq -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 -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 -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 -"} -(120,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -bu -bu -dw -bq -TI -TI -TI -xx -xF -xU -bu -cf -gw -gw -zb -zb -zb -zb -gw -ji -jZ -kS -ln -mr -mJ -mJ -ma -nh -zo -zw -zz -ll -zQ -Ad -pA -qf -Ro -Ro -Ro -qp -qE -mE -ps -rj -MH -OH -OH -OH -OH -uf -GB -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -rq -vY -va -vj -vj -vk -rq -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 -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 -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 -"} -(121,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Bn -bw -ce -cS -cD -bq -eT -fN -ds -xy -xE -xU -bu -cf -gw -yg -yw -gw -yS -yw -gw -iU -ka -kS -lG -ms -lu -nM -kS -oN -iV -fr -zz -ll -zR -Ae -Ac -zD -pt -Pk -DF -ps -tG -mE -ps -GB -rw -JL -rW -rW -sB -sM -GB -aa -aV -rq -MU -MU -MU -rq -aV -aa -aa -rq -vY -uW -vj -vj -vR -rq -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 -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 -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 -"} -(122,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -SM -ch -SM -bu -ek -bu -bu -bu -bu -eA -fb -bu -cf -gw -yh -yx -gw -GH -yx -gw -jk -kb -lH -lH -lH -mL -lH -lH -oN -iV -fr -zA -xP -zS -QO -Am -zD -As -mE -mE -ps -nc -mE -rh -GB -rx -OH -rX -OH -UD -sN -GB -aa -aV -MU -BZ -BZ -BZ -MU -aV -aa -aa -rq -pq -va -vj -vj -vk -rq -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 -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 -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 -"} -(123,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -Ag -dx -bD -bu -gM -xC -xz -xE -xU -bu -cf -gw -gw -yy -gw -gw -zc -gw -jB -ko -kU -lU -iU -cf -nN -iU -le -nd -nm -zB -zL -zT -Af -Ac -Aq -zD -pL -nc -ps -nc -nc -ps -GB -ry -rO -OH -OH -UD -sP -GB -rq -rq -rq -tH -rM -ue -rq -rq -rq -rq -rq -vY -uW -vj -vj -vR -rq -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 -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 -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 -"} -(124,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -qP -aV -Ag -by -eC -bu -gN -cD -Oi -xE -xU -bu -cf -gw -yi -ym -ym -ym -ym -gw -kq -kp -kV -lU -iU -jE -jE -mD -ly -ly -yX -zD -zI -zU -Ac -Ac -Ar -zD -ps -ps -ps -qF -ps -ps -GB -rz -rO -MH -MH -sC -Vp -FB -Uf -Uf -sS -Uf -Ts -Uf -Uf -iR -Ri -uD -rq -vY -va -vj -vj -vk -rq -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 -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 -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 -"} -(125,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -Ag -EF -Ag -Ag -dE -cr -eU -ra -xt -xt -xI -xU -bu -cf -gw -yj -yz -yN -ym -ym -gw -kN -xj -ko -iU -iU -jE -cf -iU -fB -dM -yX -zD -zJ -zV -Ah -An -zD -zD -pM -mE -mE -mE -mE -ps -GB -ry -rO -OH -OH -OH -sR -HZ -rT -tq -sT -rM -sQ -rM -Nl -uu -iR -rv -rq -va -vk -uW -vj -vR -rq -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 -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 -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 -"} -(126,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 -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 -aa -aa -aa -aa -jI -UL -Js -Js -Js -Js -Js -Js -aV -bd -by -bc -by -dF -eD -bu -xm -uw -xA -ux -xU -bu -cf -gw -fl -yA -ym -yT -zd -gw -jC -kp -lm -cf -mt -jE -nO -iU -lz -dM -yX -zD -zK -zW -wC -Ao -zC -BR -pN -qa -qq -qG -mE -ps -GB -rA -VS -CK -JB -JB -sR -ro -ro -ro -rV -rV -sx -ro -uo -rM -iR -ro -rq -rq -vl -vl -Ug -rq -rq -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 -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 -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 -"} -(127,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 -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 -aa -aa -aa -UL -ab -Js -Js -ao -aD -aQ -wY -Js -Js -Ag -rg -bc -cT -dF -bc -bu -bv -bv -do -bv -AX -bu -cf -gw -yl -yA -ym -ym -ze -gw -ho -xk -cf -cf -cf -jE -nP -iU -fB -mb -yZ -zD -zL -zD -zD -zD -zD -pv -pO -mE -mE -mE -mE -ps -GB -rB -OH -sz -OH -OH -sR -ve -rM -Jo -tv -dY -tQ -ro -ro -rM -On -uF -sU -rM -vm -vz -vG -vS -rq -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 -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 -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 -"} -(128,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 -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 -aa -aa -aa -UL -aa -ae -af -aq -aG -aR -aR -xd -xi -bf -bz -bz -bz -dG -bc -dB -dB -dB -ff -tI -tU -gw -cf -hn -ym -yA -yO -yV -zf -gw -jE -jE -jE -jE -jE -jE -oj -iU -dM -dM -dM -mR -nb -nE -nE -nE -nE -pw -pP -qU -qU -qU -qU -ps -GB -rC -rP -sa -sf -OH -sR -ro -rM -rM -rM -rN -tR -Ee -ro -uv -rY -ro -uK -vb -vn -vA -vH -vT -rq -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 -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 -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 -"} -(129,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 -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 -aa -aa -aa -UL -aV -ae -ag -ar -ar -ar -ar -cG -Js -bg -by -cj -by -dF -bc -dC -er -er -fg -fB -yX -gw -gw -gw -gw -yB -ym -yV -zg -gw -jE -kO -cf -iH -cf -cf -ok -iU -dM -fB -fB -mE -pJ -mE -mE -mE -mE -px -pQ -pQ -pQ -pQ -qV -pw -GB -GB -GB -GB -sl -OH -sR -ro -tj -rM -rM -rM -rM -ug -ro -sX -uN -ro -uL -vc -vp -vA -vH -Ev -rq -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 -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 -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 -"} -(130,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 -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 -aa -aa -aa -UL -aa -ae -ah -at -ar -ar -ar -mc -Js -bh -ad -ad -bc -dH -bc -dD -es -es -fs -fB -yX -gw -hb -ij -gw -yC -yP -yW -Cy -gw -mD -iU -iU -gw -iU -iU -iU -iU -SA -ZC -ZC -mE -mE -mE -oq -oq -mE -mE -mE -mE -mE -mE -ru -rf -rr -rD -rQ -sb -sm -sE -sF -tN -tN -tN -tN -tN -rM -rM -rV -rM -uO -MU -ty -uY -vp -vA -vH -Ev -rq -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 -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 -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 -"} -(131,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 -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 -aa -aa -aa -UL -aa -ae -ai -au -aH -aS -ar -be -bj -bp -bC -LS -bT -ct -yE -yD -yD -yD -yD -yD -ga -yD -yE -yD -fw -ga -ga -ga -nm -zi -zj -yD -yD -iI -fB -fB -fB -ZC -DI -fB -fB -no -fB -ta -fB -fB -fB -fB -fB -qc -qr -fB -qX -cZ -rs -fB -yE -sc -QI -sU -sD -Ph -CE -zH -RM -FH -rM -rM -rV -rM -uP -Ug -ty -tK -ui -vB -vI -vU -rq -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 -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 -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 -"} -(132,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 -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 -aa -aa -aa -UL -aa -ae -aj -av -aI -aT -aZ -be -ae -bk -bA -ca -cm -cv -cZ -dM -dM -dM -dM -dM -ly -dM -hc -dM -fz -lA -Oh -ly -tA -ly -ly -mS -fB -iJ -fB -fB -fB -ZC -ly -yp -fB -no -fB -nG -fB -fB -fB -fB -fB -fB -fB -fB -yX -cZ -dM -dM -Px -se -qS -Cp -th -VD -Kj -tr -Zy -Es -rM -rM -ve -rM -rY -tt -tz -tL -rM -vC -vJ -yo -rq -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 -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 -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 -"} -(133,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 -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 -aa -aa -aa -UL -aa -ae -ak -aw -aK -aU -xb -xg -bl -bB -xg -KR -bV -ly -da -dN -ly -dN -fu -yX -yX -gy -yX -yX -fC -da -Wx -SG -ZC -Wc -dM -hM -fB -fB -yu -fB -lF -ZC -Vl -yQ -fB -no -fB -yX -yX -yX -yX -yX -yX -gy -qs -qH -qY -cZ -rt -fB -fB -rq -sn -QT -sV -Ph -CZ -YO -UI -FH -rM -rM -rV -rM -DN -MU -tC -tM -uj -vD -vK -vW -rq -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 -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 -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 -"} -(134,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 -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 -aa -aa -aa -UL -aa -ae -al -az -ar -ar -xb -xf -Js -ad -ad -ad -bc -dI -db -cK -xQ -cK -as -Nx -as -as -hp -in -gw -hN -Ta -le -gz -gz -mM -gw -gw -gw -gw -gw -gw -gw -FL -ZC -ZC -mN -mN -mQ -mQ -mQ -mQ -mN -mN -mN -mN -mN -re -ri -ru -rE -rR -sg -so -sH -sG -tN -tN -tN -tN -tN -rM -rM -rV -rM -uk -MU -tC -Cg -vr -vE -vH -vX -rq -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 -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 -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 -"} -(135,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 -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 -aa -aa -aa -UL -aV -ae -am -ar -ar -ar -xb -cy -Js -by -cj -by -rn -bD -dc -dP -eG -dP -fv -fP -gd -as -as -as -as -yE -dM -yX -gz -gH -gH -gz -aV -aa -aa -aa -aa -kE -lf -fB -fB -mO -ne -nR -nR -nR -nR -HL -mN -yn -qt -qI -re -rk -TF -TF -TF -TF -sp -sI -Uk -ro -to -ZY -rM -rM -rM -ul -ro -sX -Xe -ro -uQ -vc -vr -vE -vL -Cx -rq -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 -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 -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 -"} -(136,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 -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 -aa -aa -aa -UL -aa -ae -an -aA -aL -xb -xb -xh -Js -by -Mx -Mx -Mx -Mx -Mx -dV -eH -eI -UC -fS -ge -gB -hq -iu -as -yE -dM -yX -gz -gH -hO -hO -hO -hO -hO -hO -aa -kE -lf -fB -fB -mN -nf -nS -oh -oh -oh -pz -pR -pK -qu -qJ -re -rk -TF -rG -KL -sh -Ty -sI -sY -ro -rM -rM -rM -tP -uC -um -ro -rM -rM -ro -uT -vd -vs -vE -vM -vZ -rq -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 -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 -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 -"} -(137,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 -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 -aa -aa -aa -UL -UL -Js -Js -aB -aP -aY -xc -Js -Js -br -Mx -hU -xl -Pj -Mx -et -xQ -et -bR -yk -ge -Ot -hr -kW -as -yE -dM -xe -gz -gH -hO -hQ -im -iv -iZ -hO -aa -kE -lf -yQ -jW -mN -nk -nT -nR -nR -nT -rZ -mN -Cj -qv -qK -rd -rl -TF -rG -DD -td -sr -sJ -Nj -ve -rM -LY -tE -tE -ua -ro -ro -rM -vf -uG -uU -vy -vt -vF -vN -Cf -rq -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 -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 -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 -"} -(138,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 -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 -aa -aa -aa -aa -jI -UL -Js -Js -Js -Js -Js -Js -aV -by -Mx -kg -cV -dK -pT -dW -eJ -eY -Uj -fS -gq -gC -Ot -sd -as -yE -dM -yZ -gz -gH -hO -iW -iN -iN -js -jx -ki -ki -lA -yX -yX -mN -nl -nU -Gh -BW -nU -pB -mN -qg -re -re -re -ps -TF -FE -YR -Ik -ei -sK -xB -ro -ro -ro -MU -MU -ub -ro -ur -Ns -vf -ro -uV -ro -vu -vu -vO -ro -Qq -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 -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 -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 -"} -(139,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gk -Mx -mP -GD -Ht -Mx -dX -eJ -Ot -Ot -fT -gr -gD -hG -wW -as -yE -mb -yX -gz -gH -hO -hS -ip -iW -ju -jD -xT -kG -lB -Ft -ga -ns -pC -nV -pC -oh -nV -pC -mN -qh -qx -qL -mN -ps -TF -rH -ZZ -sr -ss -sK -tb -Jd -tp -tf -Nw -Qh -Ol -Qh -Qh -Gc -vQ -rp -ro -UT -vw -vh -wc -Ch -rq -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 -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 -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 -"} -(140,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -Mx -Mx -Mx -cx -Mx -ea -eJ -Ot -gL -fT -gs -gP -Ot -ya -as -yE -dM -yX -gz -gH -hO -xO -iq -iX -jv -kh -kj -kj -yD -dM -yX -mQ -nR -nR -nR -lD -nR -pD -pS -qi -qy -qM -mN -ps -TF -Sp -Vf -SY -ei -sK -In -QB -Fb -Xi -sW -uC -uC -uC -uC -uC -Vh -uH -ro -Cd -vg -vw -zP -zP -rq -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 -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 -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 -"} -(141,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -as -co -XU -Nb -fS -eW -fS -fS -cL -gt -fS -fS -yb -as -yF -XM -yX -gz -gH -hO -il -ir -iY -jw -hO -aa -kE -yE -dM -yX -nt -oZ -oZ -oZ -oZ -oZ -yt -re -qj -qz -qN -mN -ps -TF -rI -Wo -sr -st -Sw -Ze -TF -rq -rq -rq -tH -rM -ue -rq -rq -Li -rq -rq -vh -vv -vx -vx -Ca -rq -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 -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 -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 -"} -(142,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -cp -cN -dk -el -eX -fa -fy -fW -gu -gQ -Iw -yc -as -yE -dM -yX -gz -gH -hO -hO -hO -hO -hO -hO -aa -kE -yE -dM -yX -mN -np -nX -nX -nX -pa -nX -mN -qk -qC -qO -mN -rh -TF -RN -UZ -Hq -ei -Sw -PT -TF -aa -aa -MU -Wz -sO -un -us -tg -KK -KK -rq -vi -vg -vx -vx -vw -rq -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 -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 -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 -"} -(143,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -as -of -of -dl -en -of -of -of -wI -fX -as -wI -fX -as -yG -dM -yX -gz -gH -gz -aV -jt -aa -aa -aa -wz -kE -yE -dM -yX -mN -mN -nY -or -pb -sy -pF -mN -ql -qC -qQ -mN -ps -TF -rJ -rS -sr -su -sL -Hs -TF -aa -aa -rq -MU -MU -TG -rq -gp -tk -KK -rq -vh -vv -vx -vx -Ca -rq -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 -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 -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 -"} -(144,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -of -cM -SV -eo -kx -fd -of -GZ -TD -as -GZ -TD -as -yH -dM -yX -gz -gH -gz -gz -gz -gz -gz -aV -aa -gw -yE -dM -yX -mN -nq -nZ -pc -pc -pc -ot -mN -qm -qC -qR -mN -ps -TF -rK -MI -IN -ei -MJ -Uq -TF -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -rq -vh -vg -vx -vx -vw -rq -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 -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 -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 -"} -(145,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -of -cR -dy -ep -Ig -fe -of -xV -fY -as -xV -fY -as -yE -dM -EA -gz -gH -Ku -kw -iw -ja -gz -gz -gz -gw -yE -dM -yX -mN -nr -oa -uJ -oO -ot -ot -pU -qn -qD -XL -qo -ps -TF -WS -IW -sj -sw -IR -KU -TF -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -rq -Cd -vv -vx -vx -Ca -rq -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 -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 -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 -"} -(146,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -of -cW -dA -eq -ZE -Uc -of -as -as -as -as -as -as -yE -dM -EQ -FS -gH -gH -gH -gH -gH -jy -gH -gH -FS -Il -dM -HJ -mN -mN -mN -mN -mN -pf -zs -mN -mN -mN -mN -mN -ps -TF -TF -TF -zn -Re -Um -TF -TF -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -rq -vv -vx -vx -vx -vw -rq -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 -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 -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 -"} -(147,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -of -of -of -of -of -of -Dv -aV -GJ -gS -hH -yq -BU -yI -dM -yX -gz -gI -hs -hs -lj -lj -lj -lj -lj -lj -yG -dM -EQ -EQ -op -CS -US -oP -CS -pH -pV -KB -ps -ps -ps -ps -Sz -aa -aV -zk -rL -KO -aV -aa -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -rq -rq -vP -vP -vP -rq -rq -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 -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 -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 -"} -(148,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -GJ -gT -hI -yd -fK -yJ -dM -yX -gz -gJ -hs -hs -lj -jb -WX -kl -JE -lj -yE -dM -yX -Gy -gv -Qo -ou -oQ -ou -oQ -pW -HA -PY -Sz -wb -Sz -Sz -aa -aV -zk -qP -KO -aV -aa -aa -aa -aa -aa -aa -aa -aa -Ml -tm -KK -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 -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 -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 -aa -aa -aa -aa -"} -(149,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -YS -YS -YS -YS -YS -YS -YS -aa -GJ -gU -hJ -ye -ys -yK -EQ -yX -XF -XF -XF -XF -lj -jz -Fs -xL -SS -lj -yD -dM -yX -mS -oo -Qo -ov -oQ -ov -oQ -pX -HA -Rq -Sz -nc -qT -aV -aa -rU -rU -NZ -EZ -rU -aa -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -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 -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 -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 -aa -aa -aa -aa -"} -(150,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -xu -xu -YS -XT -Up -Gx -HM -Rh -Vv -YS -Iz -GJ -Wn -Wn -Wn -Wn -yE -dM -yX -XF -jl -wa -xG -lj -jj -WB -km -Ej -lj -yE -dM -yX -fB -pG -Qo -ow -oQ -ow -oQ -pY -HA -aV -Sz -wM -Sz -aV -aa -rU -Zv -BX -DY -rU -aa -aa -aa -aa -aa -aa -aa -aa -Ml -tl -KK -KK -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 -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 -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 -aa -aa -aa -"} -(151,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -xu -Qf -Qf -Qf -Qf -Qf -Qf -WZ -NP -Oa -fB -jF -gY -hK -yf -le -da -ly -yX -XF -jl -jl -xG -lj -jn -jH -kn -MF -lj -yF -oJ -ga -ml -nv -pI -Ra -oR -Ra -oD -pZ -HA -aa -aV -qP -aV -aa -aa -rU -Zv -sk -Zv -rU -aa -aa -aa -aa -aa -aa -aa -aa -Ml -tn -gp -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -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 -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 -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 -"} -(152,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -wL -GN -NP -EU -RY -RY -dv -To -MN -MN -Uu -lA -lA -lA -lA -lA -Qi -Il -yR -yX -XF -jm -jl -xG -lj -lj -Ds -Yl -lj -lj -yE -dM -yX -Iz -HA -HA -gv -HA -gv -HA -HA -HA -aa -aa -aa -aa -aa -aa -rU -WH -sA -WH -rU -aa -aa -aa -aa -aa -aa -aa -aa -Ml -gp -ts -tB -tB -tB -tB -tB -tB -uI -tB -tB -tB -tB -tg -gp -KK -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 -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 -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 -"} -(153,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -xu -Qf -Qf -Ew -OX -GA -NR -Qf -Ne -Oa -fB -dB -ha -hL -Em -ZC -yL -Fq -za -XF -gW -Nd -hW -XF -jp -jJ -Vx -kH -cq -hN -Ta -nn -Iz -aV -aa -aa -aV -aa -aa -aV -aa -aa -aa -aa -aa -aa -aa -rU -rU -rU -rU -rU -aa -aa -aa -aa -aa -aa -aa -aa -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -Ml -gp -uS -KK -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 -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 -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 -"} -(154,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -YS -YS -YS -YS -YS -YS -YS -YS -YS -YS -cs -Mb -cs -nw -cs -cs -eP -kF -Go -XF -gX -gX -gX -XF -XF -Pb -kr -VC -jg -lK -md -mn -cI -Dj -Dj -Dj -Dj -Dj -Dj -UQ -JD -JD -UQ -UQ -UQ -UQ -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 -Ml -Ml -tl -KK -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 -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 -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 -"} -(155,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ax -aO -ax -Tb -ax -aO -ax -Tb -bW -cu -cP -dp -eg -ac -hT -XB -lg -Ja -PF -PF -PF -xH -XF -ES -zF -lI -mh -lL -Sk -zF -nu -Ua -ob -ox -oS -pj -Dj -YU -Wy -Wy -Jf -Hk -Qa -UQ -aV -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 -Ml -tm -KK -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 -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 -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 -"} -(156,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ax -aW -ax -Tb -ax -aW -ax -Tb -bX -aF -cU -Tu -dq -ac -eR -ZU -BT -Ja -hd -PF -PF -iy -XF -jK -kt -lQ -mi -lM -QH -QH -Tn -qd -oc -QH -VL -pk -FW -aM -NI -NI -NI -NI -Qb -JD -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(157,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ay -ax -ax -Tb -ay -ax -ax -Tb -bY -aF -cY -dr -eh -ac -eV -ft -gf -Zs -he -Yj -Yj -iz -jr -jL -ku -jg -jg -lN -me -mp -jg -jg -od -oy -VL -pl -FW -aM -NI -Kv -JV -NI -Qb -JD -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(158,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -bo -ba -ap -Tb -bo -hV -ap -Tb -bZ -aF -cY -dz -fL -ac -ac -kI -gg -PR -hf -UN -PF -iA -KJ -jM -kv -kK -FW -Yh -mf -lO -jg -nx -jA -jA -VL -pm -FW -aM -NI -NI -JV -NI -Qb -JD -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(159,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -aE -bb -hP -Tb -aE -bb -ix -Tb -Tb -aF -de -dQ -ej -ac -ik -kJ -lk -Ja -hg -CQ -OS -iB -KJ -jN -kv -kK -FW -lP -jA -mx -jg -ny -oe -oz -oT -tF -Dj -Ky -NI -NI -JV -NI -Gm -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(160,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ap -rm -rm -rm -Qd -rm -rm -rm -KA -Tb -aF -df -gi -gi -cb -BS -Fg -gi -Ja -hh -PF -hX -iC -KJ -jO -GQ -kL -jg -FW -mg -FW -jg -nz -qe -tu -wU -jg -Dj -JQ -NI -NI -JV -NI -Vy -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(161,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ap -rm -rm -rm -bS -rm -fE -XN -CX -eQ -ZU -dg -dZ -Xj -gh -fi -ZU -gj -gA -IU -PF -hY -kD -KJ -jP -zF -zF -lr -zF -zF -zF -mU -nA -oB -oB -oU -IX -Dj -ZB -NI -NI -JV -Jx -rb -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(162,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -aJ -gO -bn -Tb -bs -rm -XN -bK -Zw -cz -dh -hu -eu -ac -fj -UW -gl -Ja -hi -PF -hZ -iC -KJ -jQ -oV -kX -kX -lR -oV -oV -kX -oV -oV -lR -Qg -Ha -Sl -PM -HG -HG -Oz -OZ -YT -UQ -aV -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 -Ml -tm -KK -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 -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 -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 -"} -(163,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -bo -ht -ap -Tb -bt -rm -UK -ef -Tb -fh -Xl -qA -ev -ac -Xo -ZU -gl -Ja -hj -hv -PF -hv -KJ -jR -ky -kY -lt -lS -jA -jA -kY -oC -og -oC -oW -YZ -Dj -GV -NI -NI -NI -NI -Qb -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(164,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -aN -ax -ax -Tb -bG -rm -Vd -cB -Tb -cF -Xl -aF -ew -ac -fj -ZU -gl -Ja -hk -CY -PF -hw -KJ -jg -jg -kZ -mK -lT -jg -jg -mV -nC -jg -oI -mV -jg -Dj -Sj -NI -NI -NI -NI -Qb -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(165,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ax -ax -ax -Tb -bH -Yv -XR -xn -cc -cH -dm -bJ -ex -ac -fk -ZU -gl -Ja -hl -hx -Mf -iE -KJ -jS -kz -la -lv -lW -jg -my -mW -nD -jg -oE -oX -pn -Dj -Ep -NI -NI -NI -NI -Gm -UQ -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(166,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ax -bi -ax -Tb -bI -rm -NL -Tb -Tb -ac -ac -ac -ac -ac -iD -ZU -gm -Ja -hm -hy -ia -hy -Sx -kc -kA -lb -jA -zF -jg -mz -mX -zF -jg -Ul -kX -po -Dj -XO -NI -NI -NI -NI -Qb -JD -aV -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 -Ml -tl -KK -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 -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 -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 -"} -(167,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -gR -gR -gR -gR -Fp -Ko -Tx -gR -ci -dn -XS -SB -pi -aF -fm -fF -gn -gE -YK -hz -ib -iF -Gt -kd -kB -lc -lw -lY -jg -mA -mY -zF -jg -oF -oY -Mw -Dj -LN -NI -NI -Hw -NI -Qb -JD -aV -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 -Ml -tm -KK -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 -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 -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 -"} -(168,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -MM -MM -VV -gR -ck -dO -fp -eK -eK -fq -UE -fG -aF -gF -YG -hA -id -hA -hy -ke -jA -jA -jA -jA -jg -mB -mZ -zF -jg -oG -kX -LG -Dj -Fr -NI -NI -Fy -GP -Tq -JD -aV -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 -Ml -tl -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(169,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -MM -qW -Gb -gR -ci -ed -XS -Kg -ez -fV -aF -aF -aF -Lr -Ja -hB -ii -iG -XF -kf -kC -nF -NY -lZ -jg -mC -na -zF -jg -oH -kB -pr -Dj -ks -Oe -Va -Fh -Ia -VO -UQ -aV -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 -Ml -tn -gp -KK -KK -KK -KK -KK -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(170,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -gR -gR -gR -gR -cs -cs -cs -xr -cs -eL -TP -aF -aF -cs -XF -hC -hC -hC -XF -FW -FW -Dj -FW -FW -Dj -Dj -FW -FW -Dj -FW -FW -Dj -Dj -UQ -UQ -UQ -JD -JD -UQ -UQ -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 -Ml -gp -uX -gp -wd -Bl -Bl -Bl -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(171,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Oy -RH -Dm -Po -Se -cs -ac -fn -fH -go -gG -aV -aa -aa -aa -aa -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -aV -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 -Ml -gp -gp -ts -wR -AC -AR -Bf -Bl -KK -KK -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(172,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Oy -WU -MW -QY -Jw -cs -eM -fo -dz -dz -XS -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ml -wd -Bl -Bl -wd -AD -wi -Bg -wd -Bl -Bl -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(173,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Oy -DP -FD -TB -Hu -cs -eN -fn -fI -gx -cs -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Ml -wd -SC -wG -wi -wi -Ge -wi -wi -wG -ww -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(174,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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Oy -Oy -Oy -Oy -Oy -cs -eO -cs -XS -XS -cs -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aV -JK -wd -Iv -wi -wi -wS -wi -Bp -wi -wi -wi -wd -Ck -aV -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(175,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -Ck -Ck -wd -OQ -zG -zG -zG -AF -Bq -AY -BB -NN -wd -Ck -Ck -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(176,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Qz -wd -Iv -zG -wN -wT -AG -wT -wN -Ba -wi -wd -Qz -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(177,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -we -Iv -wd -Iv -zG -Fe -Aw -Aw -Aw -Pc -Ba -wi -wd -Iv -we -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(178,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -GG -wd -Iv -zG -zX -wN -Aa -wN -zX -Ba -wi -wd -GG -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(179,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Iv -XC -Iv -zG -zO -wE -AJ -wE -AV -AY -wi -Hz -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(180,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Iv -zG -zG -zG -wE -wE -wE -AU -ws -BC -wE -wE -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(181,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Iv -zG -wy -yr -Al -Ma -wv -AK -Br -BD -Yn -wE -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(182,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Iv -zG -wA -wJ -AH -Ma -Rf -BE -Bs -Bi -BE -BK -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(183,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Iv -zG -wB -wK -At -AE -AS -Bj -Bt -Bi -BE -wE -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(184,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -Bv -zG -yY -AH -Au -XE -wv -DO -Bk -Bu -BF -wE -Iv -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(185,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -KK -wd -wk -ws -AY -BY -Ax -AY -AY -wE -wE -wE -wE -wE -fU -wd -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(186,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -wd -wl -wt -Iv -Iv -Bv -Bv -AZ -Bv -Bv -Iv -Iv -Iv -Iv -wd -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(187,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -wf -wm -wu -wE -wE -wE -wE -Ba -wE -zG -wE -wE -BO -Iv -BQ -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(188,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -wg -wn -wg -wE -wN -Az -AM -Bb -Bl -Bw -BG -BI -Cb -Iv -BQ -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(189,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wd -wd -wo -wd -wE -wO -AA -AN -Bc -Bm -Bx -BH -wA -BO -Bl -wd -wd -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(190,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -KK -KK -uR -KK -wF -wP -wN -AO -wN -BP -By -BI -BL -wE -KK -KK -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(191,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wE -wQ -AA -AP -Bd -Bo -Bz -BJ -BM -wE -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(192,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wE -wN -AB -AQ -Ai -Bl -BA -wA -BN -wE -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(193,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -wE -wE -wE -wE -wE -wE -wE -wE -wE -wE -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(194,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 -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 -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 -gp -aa -gp -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -KK -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(195,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(196,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(197,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(198,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(199,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(200,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(201,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(202,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(203,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(204,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(205,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(206,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(207,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(208,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(209,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 -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 -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 -gp -aa -gp -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(210,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 -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 -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 -xs -RP -xs -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(211,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 -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 -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 -AW -YC -AW -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(212,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 -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 -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 -AW -Sf -AW -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(213,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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -Be -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(214,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(215,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(216,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(217,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(218,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(219,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(220,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(221,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(222,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(223,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(224,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(225,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(226,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(227,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(228,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(229,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(230,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(231,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(232,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(233,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(234,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(235,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(236,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(237,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(238,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(239,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(240,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(241,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(242,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(243,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(244,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(245,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(246,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(247,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(248,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 -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 -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 -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 -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 -aa -aa -wz -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 -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 -aa -aa -aa -aa -aa -aa -aa -"} -(249,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,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 -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 -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 -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 -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 -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 -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 -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} diff --git a/_maps/map_files/Deltastation/DeltaStation2.dmm b/_maps/map_files/Deltastation/DeltaStation2.dmm deleted file mode 100644 index 986279dfc5a9..000000000000 --- a/_maps/map_files/Deltastation/DeltaStation2.dmm +++ /dev/null @@ -1,176755 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space, -/area/space) -"aac" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space, -/area/space/nearstation) -"aad" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aag" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/security/detectives_office/private_investigators_office) -"aak" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aam" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aaq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aar" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aas" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aat" = ( -/obj/docking_port/stationary/random{ - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"aav" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aay" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaA" = ( -/obj/item/robot_suit, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaC" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"aaG" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aaH" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"aaI" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aaK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aaO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aaP" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"aaS" = ( -/turf/closed/wall/mineral/plastitanium, -/area/construction/mining/aux_base) -"abe" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abf" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"abi" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"abj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"abp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abq" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abs" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"abt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aby" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"abz" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"abA" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/north{ - department = "AI"; - departmentType = 5; - name = "AI Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"abC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"abF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"abG" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"abH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"abJ" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"abP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Escape Pod 1"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - name = "Escape Pod 2"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abR" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/closet/emcloset/anchored, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"abS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"abT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"abV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/bounty_board/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"abY" = ( -/obj/machinery/bounty_board/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"abZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aca" = ( -/obj/structure/sign/warning/pods{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acc" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ace" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"acf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acg" = ( -/obj/machinery/bounty_board/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aco" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acp" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acs" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"act" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acu" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acv" = ( -/obj/machinery/camera{ - c_tag = "Solar - Fore Starboard"; - name = "solar camera" - }, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acy" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"acA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"acF" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 4; - height = 17; - id = "arrivals_stationary"; - name = "delta arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/delta; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"acG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/wrench, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"acK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acL" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"acN" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"acO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"acP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"acR" = ( -/obj/structure/table/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"acV" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acX" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acY" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Fore Port"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ada" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adb" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Fore Starboard"; - dir = 4; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adc" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"add" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/obj/machinery/camera{ - c_tag = "Auxiliary Construction - Storage"; - dir = 4; - name = "engineering camera" - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adf" = ( -/obj/structure/closet/secure_closet/miner/unlocked, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adg" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"adh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"adi" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"adj" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ado" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"adq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"ads" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"adt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adw" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/item/plant_analyzer, -/obj/machinery/camera{ - c_tag = "Permabrig - Garden"; - dir = 8; - network = list("ss13","prison") - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"adx" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ady" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adG" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "63" - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north{ - pixel_x = -26 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/security/range) -"adO" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adQ" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"adR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"adZ" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"aea" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aec" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aee" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aej" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aer" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aet" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aex" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/requests_console/directional/north{ - department = "Construction"; - name = "Construction Requests Console" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aeE" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aeF" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aeS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeV" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeX" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afb" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afc" = ( -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aff" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/assault_pod/mining, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"afs" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"afu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afz" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"afG" = ( -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"afJ" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"afR" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"afT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afV" = ( -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"afY" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"agh" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/teleporter_hub{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/circuitboard/machine/teleporter_station, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"agk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agl" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ago" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"agp" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Base Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"agv" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"agB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"agO" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_ne"; - name = "northeast of station"; - width = 23 - }, -/turf/open/space, -/area/space/nearstation) -"agR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"agS" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Fore"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"agX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Aft Port"; - dir = 8; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"ahb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"aht" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone"; - req_one_access_txt = "72" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahv" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahF" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/wrench, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "cardoor"; - name = "Cargo Cell"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ahS" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Aft Port"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aid" = ( -/obj/docking_port/stationary{ - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"aig" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"aih" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aik" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ait" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"aiu" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"aiw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aiy" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aiA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aiB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"aiJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aiT" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aiU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aiY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ajf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajh" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aji" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ajp" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ajr" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"ajs" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aju" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ajJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"ajK" = ( -/obj/machinery/light/small/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ajR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"ajV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"ajW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"ajX" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Port"; - dir = 1; - name = "arrivals camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"ajY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aka" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aki" = ( -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akj" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Starboard"; - dir = 1; - name = "arrivals camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"akE" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"akF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/customs) -"akG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"akJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akK" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akL" = ( -/obj/machinery/vending/clothing, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akM" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akN" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"akP" = ( -/turf/closed/wall, -/area/security/checkpoint) -"akQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint) -"akR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint) -"alf" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"alg" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ali" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/tank/internals/oxygen, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"alv" = ( -/obj/machinery/photocopier, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"alw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"alA" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/restraints/handcuffs, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"alB" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"alW" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"alY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"amg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"amj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aml" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"amm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"amo" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/camera{ - c_tag = "Arrivals - Center"; - name = "arrivals camera" - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amp" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amq" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amr" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ams" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"amx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"amy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"amW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"amY" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"and" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ani" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"ank" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"anm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ann" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ano" = ( -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"anp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"ant" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"anv" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"anx" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Security Post - Arrivals"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"anJ" = ( -/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"anY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aod" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aoe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aoh" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Arrivals Customs"; - dir = 4; - name = "customs camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aoj" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aok" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aol" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aom" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aon" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"aoq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aor" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Security Desk"; - pixel_x = -8; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aoE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoF" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"aoW" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoY" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ape" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"apg" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"api" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"apm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"apn" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"app" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"apq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"apr" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"apw" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apB" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apE" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apF" = ( -/obj/machinery/mass_driver/trash{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apG" = ( -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"apH" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"apL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"apU" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"aqa" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aqj" = ( -/obj/structure/closet/secure_closet/contraband/heads, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aql" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"aqm" = ( -/obj/structure/table/wood, -/obj/item/food/chips, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aqn" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aqo" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aqp" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aqq" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"aqs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aqD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqE" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aqF" = ( -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/obj/structure/chair/stool, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24; - pixel_y = -7 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqG" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqI" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aqT" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aqV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"arf" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arg" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arh" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"ari" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"arx" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ary" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"arB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arC" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"arF" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"arG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"arL" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arM" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arO" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Arrivals - Aft"; - name = "arrivals camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arP" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arR" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"arS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"arU" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ase" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"asf" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"asg" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ash" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"asi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"asr" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera{ - c_tag = "Bridge - E.V.A. Aft"; - dir = 1; - name = "command camera" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"asD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"asF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"asH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"asQ" = ( -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"atw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"atx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"atB" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"atC" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"atD" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"atE" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"atF" = ( -/obj/machinery/door/window/eastright{ - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"atG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aub" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"auf" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aug" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"auk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aul" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aum" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aun" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aup" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"auq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aus" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"auO" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"auY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"avm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"avn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avo" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"avr" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/head/rabbitears, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avt" = ( -/obj/structure/table_frame/wood, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avu" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avv" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"avw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/fore) -"avx" = ( -/obj/structure/table/wood, -/obj/item/camera_film, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"avz" = ( -/obj/structure/curtain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"avC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/engineering/storage_shared) -"avN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"avY" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"awb" = ( -/turf/closed/wall, -/area/engineering/atmos/upper) -"awf" = ( -/obj/machinery/door/airlock/grunge{ - name = "Crematorium"; - req_access_txt = "27" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"awl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"awm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"awn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awo" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awp" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/toggle/suspenders, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"awr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/melee/skateboard, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"awt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/maintenance/port/fore) -"awu" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"awv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"awO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"awP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"axH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"axI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"axJ" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axK" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"axL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"axM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"axN" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"axO" = ( -/obj/structure/table/wood, -/obj/item/camera, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"axP" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"axQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"axS" = ( -/obj/machinery/photocopier, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_room/external) -"ayd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ayL" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Site"; - req_access_txt = "8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"ayR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ayS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayT" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayU" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ayV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ayW" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/autodrobe/all_access, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ayX" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/shoes/jackboots, -/obj/effect/spawner/lootdrop/costume, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"ayY" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/maintenance/port/fore) -"ayZ" = ( -/obj/structure/table/wood, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/fore) -"azn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"azr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"azs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"azH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"azI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"azX" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "RD's Junction"; - sortType = 13 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"aAd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aAe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aAf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aAq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"aAA" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"aAR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"aAS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aAU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aBz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aBA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aBB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "Custodial Junction"; - sortType = 22 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aBC" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "custodialshutters"; - name = "Custodial Shutters"; - req_access_txt = "26" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aBD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aBM" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"aBN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aBU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/central/secondary) -"aCo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"aCD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aCW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"aDi" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 4; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"aDl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aDn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aDu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"aDx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"aDy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"aDD" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aDE" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aDF" = ( -/obj/structure/bed, -/obj/machinery/status_display/evac/directional/north, -/obj/item/bedsheet/clown, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aDG" = ( -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aDH" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aDI" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"aDJ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/secondary/service) -"aDM" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison) -"aDU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"aEd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"aEi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/aft) -"aEq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aEH" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aEI" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aEJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aEN" = ( -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aFb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFi" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aFk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aFm" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aFn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"aFo" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space, -/area/space/nearstation) -"aFp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aFq" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"aFr" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aFs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"aFu" = ( -/obj/structure/table/wood, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"aFC" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"aFT" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/button/door/directional/west{ - id = "AuxCabinA"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aFU" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aFV" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aFW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aFX" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"aGe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aGf" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aGp" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aGu" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "cardoor"; - name = "Cargo Cell Control"; - normaldoorcontrol = 1; - pixel_x = -34; - pixel_y = -6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aGH" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"aGL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"aGQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/disposal/incinerator) -"aGR" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/maintenance/disposal/incinerator) -"aGS" = ( -/obj/machinery/light/directional/north, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/unlocked{ - pixel_y = 23 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aGT" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Incinerator"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/toxins, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aGU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aGV" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aGW" = ( -/obj/machinery/power/smes{ - charge = 1e+006 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aGY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aHk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"aHq" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Service Hallway - Fore"; - dir = 4; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aHL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aHM" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aIf" = ( -/obj/structure/table, -/obj/machinery/computer/bookmanagement, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"aIg" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel, -/area/security/prison) -"aIh" = ( -/obj/structure/bookcase/random, -/obj/structure/sign/poster/ripped{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aIk" = ( -/obj/machinery/power/turbine{ - dir = 8; - luminosity = 2 - }, -/obj/structure/sign/warning/vacuum{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aIl" = ( -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 4; - luminosity = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aIm" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/structure/cable, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aIn" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aIo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 1 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aIp" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_y = 27 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"aIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aIr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"aIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIx" = ( -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIy" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aIH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aIN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIO" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIP" = ( -/obj/structure/bed, -/obj/machinery/status_display/evac/directional/north, -/obj/item/bedsheet/mime, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aIQ" = ( -/obj/structure/dresser, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/hallway/secondary/service) -"aIR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Service Foyer"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aIS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aJd" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Center"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJh" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"aJl" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/commons/locker) -"aJm" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aJn" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aJo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aJy" = ( -/mob/living/simple_animal/mouse/gray, -/turf/open/floor/plasteel, -/area/security/prison) -"aJA" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"aJD" = ( -/turf/closed/wall, -/area/space/nearstation) -"aJF" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aJH" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"aJP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aKc" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"aKg" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aKi" = ( -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aKj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aKk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aKl" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aKm" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aKn" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aKo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aKF" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/atmos/upper) -"aKK" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aKL" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aKM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aKN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Security Desk" - }, -/obj/item/folder/red, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aKU" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"aKV" = ( -/turf/closed/wall, -/area/security/prison) -"aKZ" = ( -/turf/closed/wall/r_wall, -/area/security/execution/education) -"aLa" = ( -/obj/machinery/door/poddoor{ - id = "justiceblast"; - name = "Justice Blast door" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aLd" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aLe" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aLv" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/cargo/sorting) -"aLC" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/button/door/directional/west{ - id = "AuxCabinB"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aLD" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aLE" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aLF" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"aLT" = ( -/obj/machinery/door_timer{ - id = "cargocell"; - name = "Cargo Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aLU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aLV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aMa" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aMf" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt3"; - name = "Cell 3" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "permashut3" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"aMi" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aMm" = ( -/obj/structure/chair/stool, -/obj/item/radio/intercom/directional/west{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aMq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aMr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aMs" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aMt" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aMu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aMy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"aMz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aML" = ( -/turf/closed/wall, -/area/security/execution) -"aMM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/obj/machinery/light/dim/directional/south, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aMZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aNl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Office"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"aNC" = ( -/obj/effect/landmark/start/prisoner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aNG" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/prison_contraband, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"aNH" = ( -/obj/structure/table, -/obj/item/trash/popcorn, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aNJ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"aNK" = ( -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aNM" = ( -/obj/machinery/light/directional/east, -/mob/living/simple_animal/mouse/white, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aNO" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"aNQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_one_access_txt = "13; 24; 10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"aNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aNS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aOl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/engine_room/external) -"aOw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"aON" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aOR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aOS" = ( -/obj/structure/closet/secure_closet/brig{ - id = "cargocell"; - name = "Cargo Cell Locker" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aOZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"aPa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall, -/area/engineering/atmos/upper) -"aPg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/ticket_machine/directional/north, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPi" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/machinery/camera{ - c_tag = "Permabrig - Cell 2"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"aPk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/security/prison) -"aPn" = ( -/obj/machinery/light/small/directional/west, -/obj/item/clothing/suit/caution, -/obj/structure/sign/poster/official/no_erp{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"aPo" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/soap/homemade, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"aPq" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aPr" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aPs" = ( -/obj/structure/table, -/obj/item/kitchen/fork/plastic, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aPt" = ( -/obj/machinery/vending/sustenance, -/obj/machinery/camera{ - c_tag = "Permabrig - Kitchen"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aPu" = ( -/obj/structure/table, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/turf/open/floor/plating, -/area/security/prison) -"aPv" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/storage/box/drinkingglasses, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aPx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aPz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aPA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/maintenance/disposal/incinerator) -"aPB" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"aPC" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"aPS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"aPW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aQc" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aQx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"aQG" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aQI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aQK" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/fourcolor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/service/chapel/office) -"aQW" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aQX" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/healthanalyzer, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aQY" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aRj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aRm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aRn" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/security{ - pixel_y = 8 - }, -/turf/closed/wall, -/area/cargo/warehouse) -"aRo" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aRx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aRA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRF" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aSd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/goonplaque, -/area/hallway/primary/fore) -"aSh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/supply) -"aSi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aSk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"aSy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aSC" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/blindfold, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aSD" = ( -/turf/open/floor/plasteel/white, -/area/security/prison) -"aSE" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/blindfold, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aSG" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aSH" = ( -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aSI" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/north, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/bottle/facid{ - pixel_x = 7 - }, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aSJ" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/button/door/directional/north{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aSM" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/ignition{ - id = "justicespark"; - pixel_x = 7; - pixel_y = 24; - req_access_txt = "63" - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - pixel_x = 6; - pixel_y = 34; - req_access_txt = "63" - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/restraints/handcuffs, -/obj/item/taperecorder, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "justiceblast"; - name = "Justice Shutters Control"; - pixel_x = -6; - req_access_txt = "63" - }, -/obj/machinery/button/door/directional/north{ - id = "justicechamber"; - name = "Justice Chamber Control"; - pixel_x = -6; - pixel_y = 34; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aSN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aSO" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aSY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"aSZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aTe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"aTB" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aTM" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aTN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUp" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"aUv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison/safe) -"aUw" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Permabrig - Cell 1"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"aUD" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/item/electropack, -/obj/item/assembly/signaler, -/obj/machinery/light/directional/west, -/obj/item/clothing/head/helmet/sec, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aUE" = ( -/obj/machinery/camera{ - c_tag = "Security - Visitation"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aUK" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"aVi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aVm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Service Hallway - Aft"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aVv" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Quartermaster Junction"; - sortType = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aVA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"aVB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"aVP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"aWe" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aWf" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt1"; - name = "Cell 1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "permashut1" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"aWg" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aWi" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/electricshock{ - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aWk" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aWl" = ( -/obj/structure/table/reinforced, -/obj/machinery/light_switch/directional/south, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aWm" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel, -/area/security/prison) -"aWq" = ( -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Justice gas pump" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aWE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"aWU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aXd" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Cargo Junction"; - sortType = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aXh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"aXx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aXB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/white, -/area/science/research) -"aXI" = ( -/turf/closed/wall, -/area/service/bar) -"aXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"aXR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation"; - req_access_txt = "2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"aXU" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"aYr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aYs" = ( -/obj/structure/disposalpipe/sorting/wrap{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aYA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYB" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aYH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aZk" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aZn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"aZo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"aZp" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/multitool, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"aZq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"aZr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"aZu" = ( -/obj/machinery/camera{ - c_tag = "Security - Prison" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"aZC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"aZK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Security - Escape Pod" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aZL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aZM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; - luminosity = 2; - temperature = 2.7 - }, -/area/security/prison) -"aZN" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/security/brig) -"baj" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ban" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bao" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bax" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"baD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"baG" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"baL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"baM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"baW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bbn" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/pods{ - dir = 8; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bbp" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bbr" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"bbs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bbt" = ( -/turf/open/floor/plating, -/area/security/prison) -"bbu" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod 3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/security/prison) -"bbv" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"bbw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bbz" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/space, -/area/space) -"bbA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bbB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bbQ" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"bbT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bcb" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bcd" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"bce" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"bcm" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bcn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bcD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bcG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bcI" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Prisoner Telescreen"; - network = list("prison"); - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"bcJ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcK" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bcO" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcP" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcR" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcS" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcT" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bcU" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bcV" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/clothing/suit/armor/vest, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bcW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; - luminosity = 2; - temperature = 2.7 - }, -/area/security/prison) -"bde" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"bdg" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"bdo" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bdL" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "Theater Junction"; - sortType = 18 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bdN" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"bdO" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bdP" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bdR" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bdS" = ( -/obj/machinery/camera{ - c_tag = "Cargo - Waiting Room"; - name = "cargo camera" - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bdT" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bdU" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"beo" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/science) -"beq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"bes" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"bet" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bez" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"beK" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"beP" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"beV" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Hydroponics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"beX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"beY" = ( -/obj/effect/landmark/start/head_of_security, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"bfk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"bfl" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bfo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bfp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bfs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bfw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bfC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bfH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bfR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bfS" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bfU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bfW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"bgi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bgj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bgH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bgU" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/delta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"bgY" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"bgZ" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"bhb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"bhc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bhf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"bhh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bhn" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bhH" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bhJ" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bhQ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/aft) -"bhR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"bhT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bhW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bhX" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bia" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bib" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bin" = ( -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"biy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"biz" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 4; - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"biA" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/security/brig) -"biB" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/item/bedsheet/medical, -/obj/machinery/vending/wallmed/directional/north, -/obj/machinery/camera{ - c_tag = "Security - Medbay" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"biE" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"biF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"biU" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"bjc" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"bjh" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"bjo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bjK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"bjN" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - name = "Kitchen Junction"; - sortType = 20 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bjR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bki" = ( -/obj/machinery/rnd/production/techfab/department/security, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"bkk" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bkv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"bkw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bkA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bkE" = ( -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bkF" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bkJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"bkU" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/randomarcade{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bkY" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall13"; - location = "hall12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bla" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"blb" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bll" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"blm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"blo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"blt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"blw" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"blB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research) -"blE" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/hallway/primary/fore) -"blH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"blJ" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"blL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"blM" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"blN" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"blQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bmd" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bme" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bmf" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/white, -/area/security/brig) -"bmg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/medbay/alt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"bmh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bmw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"bmA" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"bmD" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bmH" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bmI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bmJ" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"bne" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bnn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bnp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bnt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bnu" = ( -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/obj/structure/sign/directions/supply{ - dir = 4 - }, -/obj/structure/sign/directions/medical{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/hallway/primary/fore) -"bnv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bnz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bnC" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bnD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bnG" = ( -/turf/closed/wall/r_wall, -/area/security/execution/transfer) -"bnI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bnJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bnS" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Fore 2"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"bnW" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"bnZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"boe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bof" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"boj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bok" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bot" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"boH" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"bpa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bpb" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bpd" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bpe" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bpf" = ( -/obj/machinery/computer/shuttle_flight/labor, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bpg" = ( -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bph" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/camera{ - c_tag = "Security - Transfer Centre" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bpi" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bpF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bpL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bpN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"bqb" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bqm" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bqq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bqt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"bqu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bqv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bqw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bqz" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Locker Room - Aft"; - dir = 1; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/commons/locker) -"bqG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bqZ" = ( -/obj/machinery/medical_kiosk, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"brc" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bre" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"brf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"brg" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"brh" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bri" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"brj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"brB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"brL" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"brM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"brN" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"brO" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"brS" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bsa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"bsk" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"bsl" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bsq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi3"; - location = "engi2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"btb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"btd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bte" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"btl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"btm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bto" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"btF" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"btH" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"btJ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"btW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"bua" = ( -/obj/structure/table, -/obj/machinery/light/directional/west, -/obj/item/toy/katana, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"bug" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bui" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"buz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Gulag Shuttle Airlock"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Gulag Shuttle Airlock"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"buK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bve" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"bvi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall9"; - location = "hall8" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bvm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bvs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bvu" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/port) -"bvF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bvJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space/nearstation) -"bvX" = ( -/obj/structure/closet/emcloset, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bvY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bvZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bwc" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_security, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"bwe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"bwi" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bwo" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bwp" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Chamber - Fore"; - name = "motion-sensitive ai camera"; - network = list("aichamber") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bwq" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bwT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"bxe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bxm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Transferring Control"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bxp" = ( -/obj/machinery/camera{ - c_tag = "Security - Brig Fore"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"bxv" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bxw" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bxy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bxz" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"byf" = ( -/turf/open/floor/plasteel, -/area/engineering/main) -"bym" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"byB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"byD" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 28 - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byG" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/north, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byH" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byI" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"byK" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"byL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"byS" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/bodypart/l_leg/robot, -/obj/item/bodypart/r_leg/robot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"byT" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"bzb" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bzc" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bzp" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"bzO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"bzS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/engineering/main) -"bzW" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"bAc" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/delta; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"bAd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Gulag Shuttle Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bAf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Gulag Shuttle Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bAg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bAj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bAs" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"bAy" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bAz" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bAF" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bAG" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bAI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"bAM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bAT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"bBf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bBs" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bBw" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"bBI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bBO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bBZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bCa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bCb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bCc" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bCg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"bCi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"bCl" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"bCq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bCt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicorewindow"; - name = "AI Core Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bCu" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bDN" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bDV" = ( -/turf/closed/wall, -/area/security/execution/transfer) -"bDW" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/firealarm/directional/west{ - pixel_x = -38 - }, -/obj/machinery/button/door/directional/west{ - id = "gulagdoor"; - name = "Transfer Door Control"; - normaldoorcontrol = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bDX" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "HoS Junction"; - sortType = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bDY" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bDZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security - Transfer Centre Aft"; - dir = 1 - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bEa" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bEb" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bEf" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access_txt = "16" - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel" - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bEg" = ( -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bEh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/service/kitchen) -"bEl" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bEm" = ( -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access_txt = "16" - }, -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Common Channel" - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bEr" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bEx" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bEy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"bED" = ( -/obj/item/beacon, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"bEQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bEW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"bFj" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"bFG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bFH" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "gulagdoor"; - name = "Security Transferring Center"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"bFI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/transfer) -"bFK" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"bFL" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"bFM" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bFN" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bFO" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bFP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"bFQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/warden) -"bFR" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bFT" = ( -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = -8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/south{ - id = "aicoredoor"; - name = "AI Chamber Access Control"; - pixel_x = -24; - req_access_txt = "16" - }, -/obj/machinery/button/door/directional/south{ - id = "aicorewindow"; - name = "AI Core Shutters"; - pixel_x = 24; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bFX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bGo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/brig) -"bGr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bGS" = ( -/obj/machinery/door/window/brigdoor{ - id = "cargocell"; - name = "Cargo Cell"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bGX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"bGZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard"; - dir = 8; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bHn" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHq" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"bHr" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"bHs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/detectives_office) -"bHt" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"bHx" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig1"; - name = "Cell 1 Locker" - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bHy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/flasher/directional/north{ - id = "brig1" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bHG" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bHH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bHI" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bHJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bHK" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bHL" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"bHM" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/mmi, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bHZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bIc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bIf" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/package_wrap, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"bIj" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"bIt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bIA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/primary/aft) -"bIM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bIW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bJa" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bJb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bJd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bJe" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bJf" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bJg" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/machinery/vending/wardrobe/det_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJh" = ( -/obj/structure/closet/secure_closet/detective, -/obj/item/clothing/head/fedora/det_hat{ - icon_state = "curator" - }, -/obj/item/clothing/suit/det_suit{ - icon_state = "curator" - }, -/obj/item/clothing/under/rank/security/detective, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJi" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/camera/detective, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJj" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/restraints/handcuffs, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJk" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJl" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJm" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJn" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJo" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bJq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bJr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bJv" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bJy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"bJz" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bJB" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/machinery/camera{ - c_tag = "Security - Evidence Storage"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bJD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bJE" = ( -/obj/machinery/suit_storage_unit/security, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bJF" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bJM" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bJN" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bKd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bKr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bKv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Storage Closet"; - req_access_txt = "63" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"bKH" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bKJ" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bKW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Auxiliary Tool Storage Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bKY" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Detective's Office Maintenance"; - req_access_txt = "4" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bKZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bLa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bLl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bLm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bLo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bLr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bLs" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"bLw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bLx" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 6 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bLF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"bLU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bMa" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"bMb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"bMc" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "engdoor"; - name = "Engineering Cell"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bMe" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bMx" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bMy" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMz" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMA" = ( -/obj/machinery/camera{ - c_tag = "Telecomms - Monitoring"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMD" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bME" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio{ - pixel_y = 5 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bMF" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bMK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bMR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bMW" = ( -/turf/closed/wall, -/area/security/detectives_office) -"bMX" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bMY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bMZ" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bNb" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bNc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bNd" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Detective's Office"; - name = "Detective's Requests Console" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bNf" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bNi" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bNj" = ( -/turf/closed/wall, -/area/security/brig) -"bNl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bNm" = ( -/obj/machinery/computer/crew, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bNn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bNp" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bNq" = ( -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bNr" = ( -/obj/item/storage/box/chemimp{ - pixel_x = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -3 - }, -/obj/item/storage/lockbox/loyalty, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bNs" = ( -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/key/security, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bNt" = ( -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bNu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bNw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bNx" = ( -/obj/machinery/camera/motion{ - c_tag = "AI Chamber - Aft"; - dir = 1; - name = "motion-sensitive ai camera"; - network = list("aichamber") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bNA" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bNB" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bNM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/machinery/door/window/brigdoor/northright{ - dir = 2; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/door/window/brigdoor/northright{ - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"bOc" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"bOf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bOg" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bOh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bOi" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/closet/secure_closet/brig{ - id = "engcell"; - name = "Engineering Cell Locker" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bOj" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bOk" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bOv" = ( -/obj/structure/chair/wood, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"bOF" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopline"; - name = "Queue Shutters" - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bOG" = ( -/obj/machinery/announcement_system, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bOH" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bON" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bOO" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bOP" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bOV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"bPc" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/clothing/gloves/color/latex, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bPd" = ( -/obj/machinery/door/window/eastright{ - name = "Detective's Morgue" - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bPe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bPg" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bPi" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bPj" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/detective, -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bPk" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bPl" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bPo" = ( -/obj/structure/closet/secure_closet/brig{ - id = "brig2"; - name = "Cell 2 Locker" - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bPp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/flasher/directional/north{ - id = "brig2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bPr" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"bPs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - dir = 4; - name = "Warden's Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/westleft{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"bPt" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bPu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"bPv" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bPw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"bPx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bPy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bPz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bPA" = ( -/obj/structure/closet/secure_closet/contraband/armory, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bPC" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bPH" = ( -/obj/structure/sign/plaques/kiddie, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bPV" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall11"; - location = "hall10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bQd" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bQe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bQf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bQg" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"bQh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bQi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bQr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"bQA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/button/door/directional/west{ - id = "engsm"; - name = "Radiation Shutters Control"; - req_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"bQG" = ( -/obj/structure/reflector/box, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"bQH" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bQI" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bQJ" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bQM" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bQN" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bQO" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bRd" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRe" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRf" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRj" = ( -/obj/structure/table/wood, -/obj/item/pen, -/obj/item/paper_bin/carbon, -/obj/item/pen, -/obj/item/toy/figure/detective, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bRk" = ( -/obj/structure/table/wood, -/obj/structure/disposalpipe/segment, -/obj/item/flashlight/lamp, -/obj/item/reagent_containers/food/drinks/flask/det, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bRl" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/directional/east, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "detectivewindows"; - name = "Privacy Shutters"; - pixel_x = -6; - req_access_txt = "4" - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"bRm" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bRq" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bRs" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bRt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bRv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bRw" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/vest{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/vest{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bRx" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bRy" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bRz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bRA" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bRB" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bRC" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bRD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bRE" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRF" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRG" = ( -/obj/machinery/camera{ - c_tag = "AI Satellite - Antechamber"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRK" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRL" = ( -/obj/machinery/teleport/station, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRM" = ( -/obj/machinery/computer/teleporter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bRN" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bRO" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced, -/turf/open/space, -/area/space/nearstation) -"bRP" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/space/nearstation) -"bRQ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bRR" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space, -/area/space/nearstation) -"bRS" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"bSd" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"bSl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"bSn" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - id = "engcell"; - name = "Engineering Cell"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bSD" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bSE" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bSF" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bSH" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bSI" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bSJ" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bSK" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bSZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "detectivewindows"; - name = "Detective Privacy Blast door" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/detectives_office) -"bTb" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bTe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bTf" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/warden, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/security/warden) -"bTh" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Warden's Office"; - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/security/warden) -"bTi" = ( -/obj/structure/rack, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bTk" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/secure/safe/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bTl" = ( -/obj/machinery/camera/motion{ - c_tag = "Armoury - Exterior"; - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bTq" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bTs" = ( -/obj/machinery/camera{ - c_tag = "AI Satellite - Maintenance"; - dir = 8; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"bTu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bTB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_x = -32; - req_access = null; - req_access_txt = "65" - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Teleporter"; - dir = 4; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bTC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bTD" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bTF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"bTJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bTK" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"bTR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUi" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/door_timer{ - id = "engcell"; - name = "Engineering Cell"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Engineering"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bUl" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bUF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bUG" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bUH" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bUI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"bUK" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bUP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bUS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUU" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bUY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Hallway - Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVd" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVg" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bVj" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bVl" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -42 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bVn" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/multitool, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bVp" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bVr" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bWl" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/office) -"bWq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bWv" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWw" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWy" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bWz" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bWT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"bWW" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bWX" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bWY" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bWZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bXa" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bXb" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bXm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"bXq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXz" = ( -/obj/item/beacon, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall12"; - location = "hall11" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXA" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Security Junction"; - sortType = 7 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bXB" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"bXE" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXG" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXH" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bXI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"bXJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bXL" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bXM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bXN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bXO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bXR" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/clothing/suit/hooded/ablative, -/obj/item/gun/energy/temperature/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bXU" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bXV" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bXW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bXY" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bYa" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bYe" = ( -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bYf" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"bYg" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bYh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bYm" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/diagonal, -/turf/open/space, -/area/space/nearstation) -"bYw" = ( -/obj/machinery/door/window/southright, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"bYB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/range) -"bYE" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bYF" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bYG" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bYH" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bYI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bYJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bYL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage) -"bYO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bYP" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bZf" = ( -/obj/machinery/telecomms/server/presets/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/telecomms, -/area/tcommsat/server) -"bZg" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white/telecomms, -/area/tcommsat/server) -"bZi" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room"; - req_access_txt = "61" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bZj" = ( -/obj/machinery/telecomms/server/presets/command, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bZk" = ( -/obj/machinery/telecomms/server/presets/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bZI" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bZJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bZL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"bZM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"bZN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bZX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"bZY" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"caa" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cab" = ( -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cac" = ( -/obj/machinery/recharge_station, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cad" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cae" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"caf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cah" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cai" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"caj" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cak" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cal" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/status_display/evac/directional/south, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cam" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/borg, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"can" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/machinery/status_display/ai/directional/south, -/obj/item/aicard, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cao" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"cap" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"caq" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"cas" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"cau" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"caB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"caE" = ( -/turf/closed/wall, -/area/maintenance/port) -"caF" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"caQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/exodrone_control_console{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"caT" = ( -/obj/machinery/telecomms/bus/preset_one, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/telecomms, -/area/tcommsat/server) -"caU" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white/telecomms, -/area/tcommsat/server) -"caY" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"caZ" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cba" = ( -/obj/machinery/telecomms/bus/preset_three, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cbg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"cbi" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cbj" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/security/courtroom) -"cbk" = ( -/turf/closed/wall, -/area/security/courtroom) -"cbn" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/courtroom) -"cbr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"cbD" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"cbE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"cbF" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/clothing/under/rank/security/warden/grey, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"cbG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"cbH" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/button/door/directional/south{ - id = "armouryaccess"; - name = "Armoury Access"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cbI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cbJ" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cbK" = ( -/obj/machinery/camera{ - c_tag = "Armory - Interior"; - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cbL" = ( -/obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cbR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cbX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ccm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ccn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cco" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Game Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"ccu" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/toy/cards/deck, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"ccD" = ( -/obj/machinery/camera{ - c_tag = "Telecomms - Chamber Port"; - dir = 4; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ccH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ccL" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Secure Storage"; - req_access_txt = "71" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"ccM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ccU" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ccW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ccX" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ccY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Courtroom - Fore" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ccZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom) -"cda" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cdb" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cdc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cdd" = ( -/obj/machinery/light/directional/north, -/obj/structure/reagent_dispensers/peppertank/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cdf" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cdg" = ( -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cdm" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigwindows"; - name = "Brig Front Blast door" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/machinery/door/window/northright{ - name = "Security Desk" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cdo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cdp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Security - Brig Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"cdq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - name = "Warden's Desk"; - req_access_txt = "3" - }, -/obj/machinery/door/window/southright{ - name = "Warden's Desk" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/item/poster/random_official{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/warden) -"cdr" = ( -/obj/machinery/door/poddoor{ - id = "armouryaccess"; - name = "Armoury Access" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cds" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/northright{ - name = "Armoury Desk"; - req_access_txt = "3" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/southright{ - name = "Armoury Desk" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"cdt" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"cdv" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cdw" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cdz" = ( -/obj/machinery/camera/motion{ - c_tag = "AI - Upload"; - name = "motion-sensitive ai camera"; - network = list("aiupload") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cdA" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cdH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cdL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"cdN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cdT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cdV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"cdY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cea" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"ceb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"ced" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cet" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ceD" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"ceG" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ceM" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ceO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ceP" = ( -/obj/structure/chair{ - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ceQ" = ( -/obj/structure/chair{ - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ceR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cfb" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/brig) -"cfc" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"cfd" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/button/flasher{ - id = "brigflashdoor"; - name = "Flash Control"; - pixel_x = 26; - pixel_y = 7; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_y = -6; - req_access_txt = "63" - }, -/obj/machinery/button/door/directional/east{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = 36; - pixel_y = -6; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cfe" = ( -/obj/structure/chair, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cff" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"cfk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cfq" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cfr" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"cfs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/effect/spawner/lootdrop/aimodule_harmless{ - fan_out_items = 1; - lootcount = 3; - lootdoubles = 0 - }, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cft" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cfu" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"cfz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/effect/spawner/lootdrop/aimodule_harmful{ - fan_out_items = 1; - lootcount = 2; - lootdoubles = 0 - }, -/obj/item/ai_module/supplied/oxygen{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cfR" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"cfT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cfU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cfX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cgm" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cgq" = ( -/obj/machinery/camera{ - c_tag = "Telecomms - Chamber Starboard"; - dir = 8; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cgz" = ( -/obj/structure/table, -/obj/machinery/status_display/ai/directional/west, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cgC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cgD" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cgE" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cgF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cgG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cgO" = ( -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Center"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"cgP" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/secofficer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/plasteel, -/area/security/brig) -"cgR" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cgS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cgX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"cgY" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"cgZ" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"chb" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"chc" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"chd" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"che" = ( -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"chg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"chh" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"chi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"chj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/ai_module/core/freeformcore{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ai_module/core/full/custom, -/obj/item/ai_module/core/full/asimov{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cho" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"chq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/item/ai_module/supplied/protect_station{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ai_module/zeroth/onehuman, -/obj/item/ai_module/reset/purge{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"chr" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"chs" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"cht" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space, -/area/space/nearstation) -"chG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"chH" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"chI" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"chK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chL" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"chM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cid" = ( -/obj/machinery/telecomms/bus/preset_four, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cie" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cif" = ( -/obj/machinery/copytech, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"cig" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cih" = ( -/obj/machinery/telecomms/processor/preset_two, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cii" = ( -/obj/machinery/telecomms/bus/preset_two, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cir" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cit" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ciz" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/machinery/light/small/directional/west, -/obj/item/pen, -/obj/structure/sign/poster/official/enlist{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciI" = ( -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/security/brig) -"ciJ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciK" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciL" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciM" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciN" = ( -/obj/machinery/vending/security, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciO" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciP" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ciR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ciX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ciZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/space/nearstation) -"cjb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cjc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cjl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"cjp" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cjq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cjt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cjE" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cjF" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cjG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"cjH" = ( -/obj/machinery/telecomms/server/presets/engineering, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cjI" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/telecomms, -/area/tcommsat/server) -"cjP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/central/secondary) -"cjQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/central/secondary) -"ckd" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Courtroom - Center"; - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ckl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"ckn" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/reset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ckp" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"ckt" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/supplied/quarantine, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"ckJ" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ckK" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"ckL" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) -"ckN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cla" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"clp" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"clq" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"clr" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"clu" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"clv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"clw" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"clx" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cly" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"clz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"clA" = ( -/turf/closed/wall, -/area/security/range) -"clD" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/range) -"clF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/range) -"clG" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/range) -"clH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/security/range) -"clI" = ( -/turf/open/floor/plating, -/area/security/range) -"clJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/security/range) -"clK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/range) -"clL" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/security/range) -"clM" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/supplied/freeform, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"clN" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"clP" = ( -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"clQ" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/aimodule_neutral{ - fan_out_items = 1; - lootcount = 3; - lootdoubles = 0 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"clR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"cme" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cmf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cmq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"cmA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"cmD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/server) -"cmF" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Telecomms Server Room"; - req_access_txt = "61" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"cmO" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cmR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cmS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cmT" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/security/courtroom) -"cmU" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cmW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cmX" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cmY" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cmZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cna" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cnb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cnp" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/range) -"cnq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/range) -"cnr" = ( -/obj/item/target/syndicate, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/training_machine, -/turf/open/floor/plasteel, -/area/security/range) -"cns" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/range) -"cnu" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cnv" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cnx" = ( -/obj/machinery/porta_turret/ai, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cny" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"cnI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"cnM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cnV" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Bar - Aft"; - dir = 4; - name = "service camera" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"coa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"coe" = ( -/turf/closed/wall, -/area/tcommsat/server) -"cog" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"coi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cok" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"cot" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/warrant{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cov" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cow" = ( -/obj/structure/chair{ - dir = 1; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cox" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"coy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"coz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"coA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"coB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coC" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"coE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"coG" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"coH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"coJ" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"coK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"coN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/northleft{ - name = "Security Delivery"; - req_access_txt = "63" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/range) -"coO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/range) -"coP" = ( -/obj/structure/table/reinforced, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/security/range) -"coQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/range) -"coR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/security/range) -"coS" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Security - Shooting Range"; - dir = 1 - }, -/turf/open/floor/plating, -/area/security/range) -"coT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/range) -"coU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/range) -"coW" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/security/range) -"cpa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cpm" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cpn" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpo" = ( -/obj/structure/tank_dispenser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cpr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"cpv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"cpI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/tank_holder/oxygen/red, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cpL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"cpN" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cpV" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/west, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cpX" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cpY" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cqb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"cqc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cqg" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/range) -"cqh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cqj" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cqn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"cqu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"cqy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"cqC" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/landmark/start/captain, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"cqH" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cqK" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"cqW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"cqY" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"cqZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"cra" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"cre" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crh" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crj" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Courtroom - Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crk" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/courtroom) -"crl" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/west, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crm" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crn" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"cro" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crp" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"crr" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"crw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/structure/closet/wardrobe/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cry" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"crA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"crB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"crC" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/structure/closet/bombcloset/security, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"crD" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/space, -/area/space/nearstation) -"crQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"csa" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"csb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"csm" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"csK" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"csR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"csZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cta" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard) -"ctf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"ctg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security/glass{ - name = "Storage Closet"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cth" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/nuclearbomb/beer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cti" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ctr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cts" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ctu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"ctE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ctF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ctG" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ctH" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ctI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ctR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ctU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ctV" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ctW" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Center Port"; - dir = 1; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ctY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ctZ" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cub" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cuc" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cud" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cue" = ( -/obj/structure/chair/comfy/black, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cug" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cuh" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cuj" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cum" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cup" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Central Hallway - Center Starboard"; - dir = 1; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cuq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cur" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cut" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"cuu" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall, -/area/security/courtroom) -"cuF" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuG" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/security/officer, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cuK" = ( -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/flashes, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cuM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cuQ" = ( -/obj/machinery/newscaster{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"cvd" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cve" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cvf" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/electronics/firelock, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cvg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/electronics/airalarm, -/obj/item/electronics/firealarm, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cvh" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8; - filter_type = "n2" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"cvt" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cvu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cvC" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cvD" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cvE" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cvX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"cwc" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cwh" = ( -/obj/effect/landmark/start/mechanic, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"cwB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cwC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cwL" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cwM" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cwN" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cwP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cwR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cxr" = ( -/obj/structure/bed/dogbed/mcgriff, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/plasteel, -/area/security/warden) -"cxC" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"cxF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cxN" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"cxO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"cxP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cxR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cxU" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cxY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"cyr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cyt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cyu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cyv" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"cyD" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"cyY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cyZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cza" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"czb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard) -"czc" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"czd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cze" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"czo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"czq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"czv" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/disposal) -"czw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"czJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"czV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"cAe" = ( -/obj/machinery/door/airlock{ - name = "Permabrig Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"cAf" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Chemistry Junction"; - sortType = 11 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"cAE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cAR" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/ai, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cAW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cAX" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cAZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/delivery, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cBM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/commons/dorms) -"cBR" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"cCe" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"cCh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"cCk" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"cCn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cCv" = ( -/obj/structure/dresser, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"cCC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cCD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cCE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cCF" = ( -/obj/effect/turf_decal/bot, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cCO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cCP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cCY" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"cDk" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"cDn" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cDC" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"cDW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEj" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cEk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cED" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cFc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"cFj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cFF" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cFG" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Fore 1"; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cFH" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"cFK" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/tea, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"cFL" = ( -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/unlocked{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"cFZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cGa" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plating, -/area/maintenance/port) -"cGb" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cGc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/port) -"cGe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cGf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"cGi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"cGj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cGJ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance"; - req_access_txt = "27" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"cGO" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small/directional/north, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cHb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"cHk" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"cHq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"cHv" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/maintenance/port) -"cHw" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cHx" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"cHy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/maintenance/port) -"cHI" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"cHR" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"cHS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"cHU" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cHV" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHX" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cHY" = ( -/obj/machinery/newscaster/directional/north, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cIh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cIj" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space, -/area/space/nearstation) -"cIo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cIp" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cIt" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"cIV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cIW" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIX" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJa" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/item/roller, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cJc" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJd" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"cJq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"cJu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/kitchen) -"cJw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"cJI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cJK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cJM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cJN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cJV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cJX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"cKc" = ( -/obj/machinery/light_switch/directional/west, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"cKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cLH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cLK" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table/wood, -/obj/item/storage/pill_bottle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"cLM" = ( -/obj/item/radio/off, -/turf/open/floor/plating, -/area/maintenance/port) -"cMa" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"cMf" = ( -/obj/item/storage/belt, -/obj/item/radio, -/obj/machinery/light/directional/south, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"cMi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cMj" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMM" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cMO" = ( -/turf/closed/wall, -/area/maintenance/department/electrical) -"cMP" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cMR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"cMS" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/department/electrical) -"cMV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cMW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"cMX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cMY" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cMZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cNa" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cNb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cNc" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cNd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cNe" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 1"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cNg" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 3"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cNh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/xenobiology) -"cNi" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "Xenobiology - Killroom Chamber"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/xenobiology) -"cNj" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port) -"cNk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cNl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"cNp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research) -"cNq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/science/research) -"cNt" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cNz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cNA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cND" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/central) -"cNG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cNH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cNJ" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cNK" = ( -/turf/closed/wall/r_wall, -/area/medical/storage) -"cNL" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/medical/storage) -"cNM" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/medical/storage) -"cNN" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/medical/storage) -"cNO" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cNP" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/requests_console/directional/north{ - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/medical/storage) -"cNQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cNT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"cNX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"cNY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"cOj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port) -"cOk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cOm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cOn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cOo" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOp" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cOt" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOu" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/apc{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/electronics/apc, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOv" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOy" = ( -/obj/machinery/light_switch/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOz" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOA" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOB" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cOC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cOG" = ( -/obj/structure/table/wood, -/obj/item/gun/ballistic/automatic/pistol/toy, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cOM" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cON" = ( -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cOO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cOP" = ( -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cOQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cOR" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"cOV" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/science/research) -"cPf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cPi" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/science/research) -"cPj" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cPk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cPo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cPv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cPy" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"cPz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cPA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPB" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cPD" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Storage"; - dir = 4; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/medical/storage) -"cPE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cPU" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"cQc" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cQd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cQe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQi" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQk" = ( -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cQr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQs" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cQv" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQz" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research) -"cQC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cQD" = ( -/turf/closed/wall, -/area/security/checkpoint/science/research) -"cQE" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -32 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cQF" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cQG" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/machinery/status_display/ai/directional/north, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cQI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cQX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cQZ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cRa" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cRb" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cRc" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"cRd" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/medical) -"cRe" = ( -/turf/closed/wall, -/area/medical/storage) -"cRf" = ( -/obj/machinery/light/directional/west, -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/medical/storage) -"cRg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cRh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cRj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - name = "Medical Delivery"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/storage) -"cRk" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/storage) -"cRl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cRq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cRD" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRF" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cRN" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cRQ" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cRR" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRT" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera{ - c_tag = "Xenobiology - Port"; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRV" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRW" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cRY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSd" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cSe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSg" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Kill Room"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cSl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cSm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cSn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cSo" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cSw" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"cSM" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/radio, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "meddoor"; - name = "Medical Cell Control"; - normaldoorcontrol = 1; - pixel_x = -36 - }, -/obj/machinery/button/door/directional/north{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cSN" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cSO" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north{ - pixel_x = 32 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cSS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/storage) -"cST" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cSU" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cSW" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/light/directional/east, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cSZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cTi" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Aft 1"; - dir = 1; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"cTj" = ( -/obj/structure/table, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cTk" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cTm" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/volume_pump{ - name = "Ports to Distro" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/department/electrical) -"cTq" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTr" = ( -/obj/machinery/computer/monitor{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTs" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTu" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTx" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cTz" = ( -/obj/effect/decal/remains/xeno, -/obj/effect/decal/cleanable/xenoblood, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cTA" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cTB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cTC" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - dir = 4; - network = list("xeno") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTG" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno8"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTH" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno4"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTI" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTO" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno1"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTP" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cTQ" = ( -/obj/machinery/monkey_recycler, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTT" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTU" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/biopsy_tool{ - pixel_x = 14; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTV" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/extinguisher/mini, -/obj/item/storage/box/monkeycubes, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/north, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cUb" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cUc" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cUe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cUy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"cUG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"cUH" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cUI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cUM" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/brute{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/eastleft{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cUN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cUO" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/machinery/door/window/westleft{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cUP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/medical/medbay/central) -"cUT" = ( -/obj/structure/mirror/directional/east, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/light/small/directional/north, -/obj/effect/landmark/blobstart, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cVl" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/hardhat/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cVm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cVr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/department/electrical) -"cVs" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cVt" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cVu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cVv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cVw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cVy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cVz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cVA" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cVD" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/machinery/button/door{ - id = "xenosecure"; - name = "Containment Control"; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVG" = ( -/obj/structure/dresser, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"cVR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVS" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVT" = ( -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - department = "Xenobiology"; - name = "Xenobiology Requests Console"; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cVU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cVY" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cVZ" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cWn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cWp" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cWr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cWs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"cWu" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/item/gun/syringe, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cWv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cWy" = ( -/obj/structure/table/glass, -/obj/item/storage/belt/medical, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/medical/storage) -"cWA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cWH" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"cWI" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWJ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/holosign_creator/atmos, -/obj/item/holosign_creator/atmos, -/obj/item/holosign_creator/atmos, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"cWK" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWL" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWN" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cWO" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cWP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cWQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cWR" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cWS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWT" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cWV" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology - Secure Cell"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cWW" = ( -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cWX" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Secure Creature Pen"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXb" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cXd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cXf" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cXg" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cXh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXl" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cXm" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/circuit/green, -/area/science/xenobiology) -"cXn" = ( -/obj/machinery/camera{ - c_tag = "Science - Fore"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cXo" = ( -/obj/machinery/door_timer{ - id = "scicell"; - name = "Science Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/effect/landmark/start/depsec/science, -/obj/machinery/button/door/directional/west{ - id = "scidoor"; - name = "Science Cell Control"; - normaldoorcontrol = 1; - pixel_y = -12 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cXp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cXq" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Security Post - Science"; - dir = 8; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cXD" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cXI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cXO" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cXQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cXR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/electronic_marketing_den) -"cXS" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cXU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cXY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"cYa" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cYb" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cYc" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Break Room"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/tank_holder/oxygen, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cYe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cYi" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cYj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cYk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cYl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cYm" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cYn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"cYp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"cYq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"cYx" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYy" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYC" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYD" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cYE" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cYF" = ( -/obj/machinery/light_switch/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYG" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYH" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cYI" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"cYJ" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cYK" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cYL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenosecure"; - name = "Secure Pen Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cYM" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYP" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cYZ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZb" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Starboard"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cZd" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cZf" = ( -/obj/machinery/door/window/brigdoor{ - id = "scicell"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"cZg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"cZi" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/r_wall, -/area/science/research) -"cZj" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"cZk" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/research) -"cZl" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/science/lab) -"cZm" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cZn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"cZo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"cZp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - name = "Research Lab Desk"; - req_one_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"cZq" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/lab) -"cZr" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cZA" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cZC" = ( -/obj/machinery/door_timer{ - id = "medcell"; - name = "Medical Cell"; - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"cZL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cZP" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cZQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/item/bot_assembly/medbot, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dah" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dai" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/item/wirecutters, -/obj/effect/turf_decal/bot, -/obj/item/crowbar, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dal" = ( -/obj/structure/mopbucket, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/turf/open/floor/plating, -/area/maintenance/port) -"dam" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/port) -"dan" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dap" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering Auxiliary Power"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"dar" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"das" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dau" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dav" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno5"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/machinery/light/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daw" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dax" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno7"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/machinery/light/directional/south, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daB" = ( -/obj/machinery/processor/slime, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daE" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daG" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"daH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"daI" = ( -/obj/structure/closet/secure_closet/brig{ - id = "scicell"; - name = "Science Cell Locker" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"daK" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"daM" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"daN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research) -"daO" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"daP" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/science/lab) -"daQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"daR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"daS" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"daT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"daU" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"daV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"daX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"daY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dba" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"dbb" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 3 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dbc" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/toy/figure/chemist{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dbd" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dbe" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dbf" = ( -/obj/machinery/chem_dispenser, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dbg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dbh" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dbr" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dbv" = ( -/obj/structure/chair/stool, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dbw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dbz" = ( -/obj/effect/spawner/randomcolavend, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dbC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dbD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dbM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/orange, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dcb" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dcd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dce" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dch" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dci" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell #1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dck" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcn" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dcp" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcq" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dct" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcu" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/light/directional/east, -/obj/item/storage/box/monkeycubes, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/item/reagent_containers/dropper{ - pixel_y = 12 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcv" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"dcw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"dcx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"dcy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - id_tag = "scidoor"; - name = "Security Post - Science"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"dcz" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dcC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dcD" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera{ - c_tag = "Science - Research Division Access"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dcE" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/science/lab) -"dcF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/lab) -"dcG" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcI" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcJ" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcK" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dcM" = ( -/turf/closed/wall, -/area/medical/chemistry) -"dcN" = ( -/obj/structure/table/glass, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dcO" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dcP" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dcQ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dcR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dcT" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dcY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"ddd" = ( -/obj/structure/closet/secure_closet/brig{ - id = "medcell"; - name = "Medical Cell Locker" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"dde" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddg" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"ddh" = ( -/obj/structure/table/wood, -/obj/item/folder/white, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddi" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddk" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ddl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ddm" = ( -/turf/closed/wall, -/area/medical/psychology) -"ddq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ddu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ddB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"ddC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddH" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"ddI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ddR" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ddS" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/cytology, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddT" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddU" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddV" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 8 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/white, -/area/science/research) -"ddY" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/science/research) -"dea" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research) -"deb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dec" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"ded" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/science/lab) -"def" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"deg" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"deh" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dei" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/lab) -"dej" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"del" = ( -/obj/structure/table/glass, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/science, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dem" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"den" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"deo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dep" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"deq" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dew" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dex" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dey" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"deA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"deC" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/item/clothing/under/rank/medical/doctor, -/obj/item/clothing/head/nursehat, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"deG" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"deJ" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"deK" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"deL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/neck/stethoscope, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"deN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/carpet, -/area/medical/psychology) -"deO" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet, -/area/medical/psychology) -"deP" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/structure/chair/sofa/left, -/obj/item/toy/plush/moth{ - name = "Moffee" - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"deQ" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"deR" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"deU" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"deX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"deY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port) -"deZ" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"dfa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dfb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dfc" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dfd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"dfi" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/science/research) -"dfm" = ( -/turf/closed/wall, -/area/science/research) -"dfo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dfp" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/research) -"dfq" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dfs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dft" = ( -/obj/machinery/holopad{ - pixel_x = -16 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dfu" = ( -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/camera{ - c_tag = "Science - Research and Development"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dfv" = ( -/obj/structure/sign/departments/chemistry, -/turf/closed/wall, -/area/medical/pharmacy) -"dfw" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "chemisttop"; - name = "Pharmacy Top Shutter Control"; - pixel_y = 6; - req_access_txt = "69" - }, -/obj/machinery/button/door/directional/west{ - id = "chemistbot"; - name = "Pharmacy Bottom Shutter Control"; - pixel_y = -6; - req_access_txt = "69" - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dfx" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dfz" = ( -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Medbay - Pharmacy"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dfA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"dfC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dfD" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/medical) -"dfI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dfL" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/medical/medbay/central) -"dfP" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"dfQ" = ( -/turf/open/floor/carpet, -/area/medical/psychology) -"dfS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dgf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"dgq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dgr" = ( -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"dgt" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 6"; - dir = 1; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"dgu" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dgv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dgO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dgP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dgQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"dgR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgT" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dgU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"dgV" = ( -/obj/machinery/chem_dispenser, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dgW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dgX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dgZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dha" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"dhb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk" - }, -/obj/item/folder/white, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dhc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dhf" = ( -/obj/machinery/newscaster/directional/south, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"dhg" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/structure/sign/poster/random{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"dhm" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Center"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dhq" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dht" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dhv" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Psychology Office"; - dir = 4; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dhw" = ( -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dhx" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dhy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dhz" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dhC" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dhQ" = ( -/turf/closed/wall, -/area/science/research/abandoned) -"dhS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dhU" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"dhV" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dhX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dhY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dhZ" = ( -/obj/item/beacon, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dib" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"did" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"die" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dif" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dih" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dii" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dij" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dik" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dil" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dim" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Research Lab Desk"; - req_one_access_txt = "7" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/lab) -"din" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dio" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dip" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistbot"; - name = "Chemistry Side Shutters" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Chemistry Desk" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"diq" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dir" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dis" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dit" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"diu" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/pharmacy) -"div" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dix" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"diz" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"diC" = ( -/obj/item/beacon, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"diE" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"diS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"diT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"diX" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/starboard/aft) -"diY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/costume/owl, -/obj/item/clothing/mask/gas/owl_mask, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"diZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/grenade/smokebomb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"djc" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"djh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"djn" = ( -/obj/structure/table/reinforced, -/obj/item/screwdriver, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel, -/area/maintenance/port) -"djo" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"djp" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel, -/area/maintenance/port) -"djr" = ( -/turf/open/floor/plasteel, -/area/maintenance/port) -"djs" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"djv" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/maintenance/port) -"djw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"djx" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"djy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"djz" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"djA" = ( -/turf/closed/wall/r_wall, -/area/science/genetics) -"djB" = ( -/obj/structure/sign/poster/official/science{ - pixel_x = -32 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"djC" = ( -/obj/machinery/camera{ - CanAtmosPass = "science camera"; - c_tag = "Genetics Lab North"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"djD" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"djE" = ( -/obj/machinery/computer/scan_consolenew, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"djF" = ( -/turf/closed/wall/r_wall, -/area/science/nanite) -"djG" = ( -/obj/machinery/computer/nanite_cloud_controller, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"djH" = ( -/obj/machinery/nanite_programmer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"djI" = ( -/obj/machinery/computer/nanite_chamber_control, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"djJ" = ( -/obj/machinery/nanite_chamber, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"djK" = ( -/turf/closed/wall, -/area/science/nanite) -"djL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/white, -/area/science/research) -"djM" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 24 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"djO" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 25 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"djS" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"djW" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"djX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"djY" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/south{ - pixel_x = -25 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"djZ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dka" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dkb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/lab) -"dkc" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/science/lab) -"dkd" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/button/door/directional/south{ - id = "rndlab1"; - name = "Primary Research Shutters Control"; - pixel_x = -8; - req_access_txt = "7" - }, -/obj/machinery/button/door/directional/south{ - id = "rndlab2"; - name = "Secondary Research Shutters Control"; - pixel_x = 8; - req_access_txt = "7" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"dke" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dkf" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dkg" = ( -/obj/machinery/chem_master, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dkh" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/requests_console/directional/south{ - department = "Pharmacy"; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"dkr" = ( -/obj/structure/table/reinforced, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dkG" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dkI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkJ" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkK" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/closet/secure_closet/psychology, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkL" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkM" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 14; - pixel_y = 3 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkN" = ( -/obj/structure/noticeboard/directional/south, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dkO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/vending/wallmed/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dkR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/maintenance/starboard/aft) -"dkS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/starboard/aft) -"dkT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/item/modular_computer/tablet/preset/cheap, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dkX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"dle" = ( -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dlf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dlg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dlh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dli" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dln" = ( -/obj/effect/spawner/randomsnackvend, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"dlo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dlp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dlr" = ( -/obj/machinery/light/directional/east, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dlt" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dlu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dlv" = ( -/obj/machinery/light/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dlz" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/science/research) -"dlM" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"dlN" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"dlO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"dlP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dlQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dlR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dlU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry"; - req_access_txt = "69; 33" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dlW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"dlX" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/chemistry) -"dlY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dma" = ( -/turf/closed/wall, -/area/medical/surgery) -"dmd" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/medical/surgery) -"dmf" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dmh" = ( -/turf/closed/wall, -/area/hallway/secondary/construction) -"dms" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmt" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"dmu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"dmy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dmA" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/science) -"dmB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/end, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dmC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dmE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dmF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/nanite) -"dmG" = ( -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dmH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dmI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dmJ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dmL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dmN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dmO" = ( -/obj/machinery/camera{ - c_tag = "Science - Lab Access"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/science/research) -"dmU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dmZ" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dna" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dnb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dnc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dne" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dnf" = ( -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dng" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnh" = ( -/obj/structure/cable, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnl" = ( -/obj/machinery/camera{ - c_tag = "Chemistry - Fore"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dno" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnp" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnq" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnr" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dnt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dnv" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dnw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dnx" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dny" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dnA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dnB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/security/brig) -"dnC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnE" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnF" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/surgery) -"dnG" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnK" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dnL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/rack, -/obj/item/roller, -/obj/item/reagent_containers/blood, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dnN" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnQ" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnR" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnS" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnT" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dnU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dnX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dnY" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dog" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"doh" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"doi" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dok" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/port) -"dol" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"dom" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"don" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"doo" = ( -/obj/structure/closet/crate, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"doq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"doG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"doR" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/south, -/obj/item/aicard, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/command) -"doT" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Robotics Junction"; - sortType = 14 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"doW" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"doY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"doZ" = ( -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"dpa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"dpb" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"dpc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mechpad, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dpe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Mech Bay"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dpg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/chemistry) -"dph" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpi" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpm" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpo" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dpt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dpv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dpA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dpC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dpD" = ( -/obj/structure/chair, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dpE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dpF" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dpG" = ( -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dpH" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dpI" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dpK" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dpL" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dpM" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dpX" = ( -/obj/structure/training_machine, -/obj/item/target/syndicate, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"dpY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dpZ" = ( -/turf/open/floor/plating, -/area/science/research/abandoned) -"dqi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dqj" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dqm" = ( -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1; - req_one_access = null; - req_one_access_txt = "4;5;9" - }, -/obj/item/toy/figure/geneticist, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dqo" = ( -/obj/structure/table/reinforced, -/obj/item/nanite_scanner{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/nanite_scanner{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/nanite_remote{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/nanite_remote{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dqr" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dqu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dqw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dqz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"dqC" = ( -/obj/structure/chair/wood, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"dqE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dqL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqO" = ( -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"dqP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqQ" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dqT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dqV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"dqW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"drf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dri" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"drn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dro" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery) -"drq" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"drz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"drA" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"drB" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"drC" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"drD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"drE" = ( -/obj/structure/sign/poster/official/build{ - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"drF" = ( -/obj/machinery/vending/assist, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"drG" = ( -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"drI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/radio/headset/headset_medsci{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"drJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"drK" = ( -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"drL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"drM" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/disks_nanite{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/box/disks_nanite{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Division - Nanite Lab"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"drN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"drO" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"drP" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"drQ" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/mixing) -"drR" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/science/mixing) -"drT" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/mixing) -"drW" = ( -/obj/machinery/camera{ - c_tag = "Science - Port"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white, -/area/science/research) -"dsc" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dsf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsl" = ( -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dsm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dsw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/newscaster/directional/east, -/obj/item/storage/toolbox/emergency, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dsA" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dsC" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dsD" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dsF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dsG" = ( -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay - Cryogenics"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/book/manual/wiki/medicine, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dsI" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/medical/surgery) -"dsJ" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsL" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsN" = ( -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/surgical_drapes, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/blood_filter, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsO" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsP" = ( -/obj/item/circular_saw, -/obj/item/surgicaldrill{ - pixel_y = 5 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsQ" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/surgery, -/obj/item/scalpel, -/obj/item/cautery, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsR" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/mirror/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dsT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dsU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dsV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dta" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"dte" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dtf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"dtg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"dti" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/science/mixing) -"dtj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dtl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dtm" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dtp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dtr" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dtu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"dtv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dtw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dtx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"dty" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"dtG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dtN" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dtO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dtP" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/machinery/camera{ - c_tag = "Medbay - Recovery Room"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dtQ" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dtR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dtS" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dtT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dtU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dtV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"duc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dud" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"due" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dul" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dum" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dun" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"duo" = ( -/obj/structure/table/reinforced, -/obj/item/mmi, -/obj/item/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dup" = ( -/obj/structure/frame/machine, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"duq" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/belt/utility, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dur" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/delivery, -/obj/machinery/mecha_part_fabricator/maint, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dus" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/micro_laser, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dut" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command) -"duz" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"duD" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"duE" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 8 - }, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"duF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/science/mixing) -"duR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"duU" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"duV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"duW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"duX" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 1 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"duY" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"duZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/east{ - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dva" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dvc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dvg" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"dvF" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"dvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dvN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dvO" = ( -/obj/structure/table, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dvQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dvR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dvS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dvZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwb" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dwc" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dwd" = ( -/obj/machinery/camera{ - c_tag = "Research Division - Genetics Lab"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/south{ - department = "Genetics"; - name = "Genetics Requests console" - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dwe" = ( -/obj/machinery/light/directional/south, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dwi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"dwt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dwv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"dww" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwy" = ( -/obj/machinery/camera{ - c_tag = "Science - Mech Bay"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwC" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dwD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dwE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dwO" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"dwU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"dxc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dxg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dxi" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dxk" = ( -/obj/structure/table, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/obj/item/gun/syringe, -/obj/item/clothing/glasses/eyepatch, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxl" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxo" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxp" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dxr" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dxs" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dxt" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dxu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dxv" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"dxw" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/electronics/firealarm, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dxz" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dxA" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dxH" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxJ" = ( -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"dxK" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"dxL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxN" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dxP" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dxQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"dxS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"dya" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dyc" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"dyd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"dye" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/science/robotics/lab) -"dyf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dyg" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"dyw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dyD" = ( -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dyE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery B Access"; - req_access_txt = "45" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"dyF" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dyG" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dyH" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dyI" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Surgery A"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dyJ" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dyK" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/vending/wallmed/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"dyN" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyR" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyS" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dyT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyU" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"dyV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dza" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"dze" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dzf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dzh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dzo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dzp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dzq" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dzt" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plasteel, -/area/science/mixing) -"dzx" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"dzz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"dzG" = ( -/obj/item/paper_bin, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dzH" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dzI" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/belt/utility/full, -/obj/machinery/light/directional/north, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dzJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dzK" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/roboticist, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/north{ - id = "roboticsprivacy"; - name = "Robotics Privacy Controls"; - pixel_x = 24; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dzL" = ( -/obj/structure/sign/departments/science{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dzR" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dAd" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"dAg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dAh" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dAj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"dAk" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"dAl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dAm" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dAn" = ( -/obj/machinery/camera{ - c_tag = "Solar - Aft Starboard"; - name = "solar camera" - }, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dAp" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/cyborgrecharger, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dAq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dAr" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dAs" = ( -/obj/item/robot_suit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dAt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dAw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/science/mixing) -"dAx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dAJ" = ( -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/wrench, -/obj/machinery/light/directional/west, -/obj/item/clothing/glasses/welding, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAO" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/obj/machinery/door/window/westleft{ - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/machinery/door/window/eastleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dAR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dAV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chemistry - Center"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dBc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dBe" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/bodysposal{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dBm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dBo" = ( -/obj/machinery/vending/wallmed/directional/north, -/obj/structure/table/glass, -/obj/item/stack/medical/gauze, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dBp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"dBq" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dBr" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dBs" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dBt" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dBw" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"dBA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dBB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dBC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"dBE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dBI" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dBJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dBK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"dBL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"dBM" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"dBT" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dBU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dBV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dBW" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dBX" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dBY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dBZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dCa" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/igniter{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/science/mixing) -"dCh" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dCp" = ( -/obj/item/stack/cable_coil, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/structure/table/reinforced, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCv" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dCy" = ( -/turf/closed/wall, -/area/medical/morgue) -"dCA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dCB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dCF" = ( -/obj/machinery/vending/cart, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"dCO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dCP" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/button/door/directional/east{ - id = "surgeryb"; - name = "Privacy Shutters Control" - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dDb" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"dDc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dDd" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dDe" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dDg" = ( -/obj/structure/table, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/glowstick, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dDh" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dDi" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"dDj" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dDk" = ( -/obj/structure/frame/machine, -/obj/machinery/light/small/directional/south, -/obj/item/stack/sheet/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dDl" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/toolbox/electrical, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/science/research/abandoned) -"dDn" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dDq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dDt" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Secure Storage"; - req_access_txt = "71" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dDw" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/white, -/area/science/research) -"dDD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dDF" = ( -/obj/structure/noticeboard/directional/east, -/obj/machinery/camera{ - c_tag = "Science - Robotics Lab"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dDI" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dDJ" = ( -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table/glass, -/obj/machinery/light_switch/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dDM" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"dDN" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/wallmed/directional/north, -/turf/open/floor/plating, -/area/medical/morgue) -"dDP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDR" = ( -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed/roller, -/obj/item/crowbar{ - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/pushbroom, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/medical/morgue) -"dDZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"dEb" = ( -/obj/machinery/door/poddoor/preopen{ - id = "surgeryb"; - name = "privacy shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery/room_b) -"dEc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dEd" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dEe" = ( -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dEg" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dEh" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dEk" = ( -/turf/closed/wall, -/area/security/detectives_office/private_investigators_office) -"dEn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/misc_lab) -"dEo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"dEp" = ( -/obj/structure/closet, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dEq" = ( -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console/directional/west{ - department = "Toxins Lab"; - departmentType = 5; - name = "Toxins Requests Console" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dEu" = ( -/obj/structure/sign/poster/official/science{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dEv" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dEw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/science/storage) -"dEy" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/science/storage) -"dEz" = ( -/obj/structure/table, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/science/storage) -"dEA" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"dEB" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dEC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dEE" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/server) -"dEF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dEG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"dEH" = ( -/obj/structure/rack, -/obj/item/storage/firstaid, -/obj/item/storage/firstaid, -/obj/structure/disposalpipe/segment, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dEL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dEN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dEO" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dEP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dER" = ( -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - department = "Chemistry"; - departmentType = 1; - name = "Chemistry Requests Console" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dES" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dEV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dEW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dEX" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dEY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/dead_body_placer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dFd" = ( -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dFg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/science/research) -"dFt" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/photocopier, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dFv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dFw" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/security/detectives_office/private_investigators_office) -"dFx" = ( -/obj/structure/table/wood, -/obj/item/crowbar/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/detective, -/obj/item/camera/detective, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office/private_investigators_office) -"dFz" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFB" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/camera{ - c_tag = "Science - Toxins Launch Site"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster/directional/north, -/obj/machinery/light_switch/directional/east{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dFI" = ( -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/science/mixing) -"dFL" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Science - Toxins Mixing Lab Aft"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"dFN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dFO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dFP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dFQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/science/storage) -"dFR" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dFY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dGc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dGd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dGe" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dGh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dGi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Chemistry"; - req_access_txt = "69;33" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"dGl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"dGn" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dGv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dGx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dGA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dGB" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/neck/tie/black, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/kirbyplants/random, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dGN" = ( -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dGO" = ( -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dGP" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dGQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dGW" = ( -/turf/closed/wall/r_wall, -/area/science/test_area) -"dGX" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/test_area) -"dGY" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/toxins{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dGZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dHa" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/science/misc_lab) -"dHc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dHe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dHh" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/toxins, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"dHm" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/storage) -"dHo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dHp" = ( -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dHq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/server) -"dHt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dHu" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/multitool, -/obj/item/clothing/head/welding, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dHw" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/borg/upgrade/rename, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dHx" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dHy" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dHz" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"dHA" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"dHB" = ( -/obj/structure/table/reinforced, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dHD" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHE" = ( -/obj/structure/sign/departments/chemistry{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dHQ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"dHW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dHX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dId" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dIe" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dIf" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/security/detectives_office/private_investigators_office) -"dIg" = ( -/obj/structure/filingcabinet/security, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dIi" = ( -/obj/structure/window/reinforced, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dIj" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dIk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dIx" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/weldingtool, -/obj/item/assembly/voice, -/obj/item/clothing/head/welding, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"dID" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/storage) -"dIE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/science/storage) -"dIF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - external_pressure_bound = 140; - name = "server vent"; - pressure_checks = 0 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dIH" = ( -/obj/machinery/camera{ - c_tag = "Science - Server Room"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"dII" = ( -/obj/machinery/camera{ - c_tag = "Science - Aft"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/white, -/area/science/research) -"dIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dIL" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dIN" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dIO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/window/northleft{ - name = "Robotics Delivery"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dIP" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/sign/departments/medbay/alt{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dIQ" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"dIR" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"dIS" = ( -/obj/structure/table/reinforced, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/circular_saw, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dIT" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dIU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"dIV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dIW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dIX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Medbay - Morgue"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dIY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex{ - pixel_y = 6 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/medical/morgue) -"dIZ" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/medical/morgue) -"dJc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dJd" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/medical/morgue) -"dJf" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"dJg" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plating, -/area/medical/morgue) -"dJo" = ( -/obj/effect/turf_decal/tile/green, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dJp" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dJu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"dJz" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"dJB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/security/detectives_office/private_investigators_office) -"dJC" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dJD" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dJE" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office/private_investigators_office) -"dJG" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dJH" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"dJI" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dJJ" = ( -/obj/machinery/doppler_array/research/science{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJK" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJN" = ( -/obj/machinery/research/explosive_compressor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dJT" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJU" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red, -/obj/item/clothing/mask/gas, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJW" = ( -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJX" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/table/reinforced, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/obj/item/relic, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJY" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"dJZ" = ( -/obj/machinery/camera{ - c_tag = "Science - Toxins Secure Storage"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/portable_atmospherics/pump{ - name = "Lil Pump" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKa" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKc" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKd" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKh" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dKk" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dKs" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dKt" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dKu" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dKv" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/black, -/obj/item/storage/box/evidence, -/obj/item/taperecorder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office/private_investigators_office) -"dKw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dKy" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dKz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dKA" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall, -/area/science/misc_lab) -"dKB" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/misc_lab) -"dKC" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/obj/machinery/computer/pod/old/mass_driver_controller/toxinsdriver{ - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dKE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Toxins Maintenance"; - req_access_txt = "8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKF" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKG" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKH" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dKJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"dKN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dKP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dKR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dKY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"dKZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dLa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dLb" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"dLc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"dLd" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dLe" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dLf" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/aft) -"dLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"dLi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dLm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"dLn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dLo" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dLp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"dLw" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/secure_data, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dLx" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dLy" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigpack_uplift{ - pixel_x = 6 - }, -/obj/item/storage/fancy/cigarettes/cigpack_carp{ - pixel_x = -3 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dLz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/security/detectives_office/private_investigators_office) -"dLA" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dLC" = ( -/turf/closed/indestructible/opshuttle, -/area/science/test_area) -"dLD" = ( -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/preset/toxins{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dLE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dLF" = ( -/obj/item/beacon, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dLG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dLH" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dLI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/misc_lab) -"dLJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/misc_lab) -"dLK" = ( -/obj/machinery/door/poddoor/massdriver_toxins, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/misc_lab) -"dLL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dLM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dLN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dLO" = ( -/obj/machinery/mass_driver/toxins{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"dLP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dLT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLU" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dLX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dLY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"dLZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dMa" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dMb" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"dMc" = ( -/obj/structure/table/wood, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/science/research) -"dMd" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dMe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/science/research) -"dMg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/science/research) -"dMh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dMt" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dMv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"dNe" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"dNi" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dNj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dNk" = ( -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office/private_investigators_office) -"dNl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"dNm" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/detectives_office/private_investigators_office) -"dNn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dNo" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNq" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNs" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNt" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dNw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dNz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dNB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dNC" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dNI" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/science/research) -"dNL" = ( -/turf/closed/wall, -/area/security/checkpoint/customs/auxiliary) -"dNO" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"dNP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dNQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dNS" = ( -/turf/closed/wall, -/area/maintenance/aft) -"dNT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"dNV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"dNY" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dNZ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dOa" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dOb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dOc" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dOd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dOe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dOo" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"dOp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"dOq" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/science/research) -"dOs" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/science/research) -"dOu" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dOw" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/machinery/camera{ - c_tag = "Science - Break Room"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dOz" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dOB" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dOC" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dOD" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Aft"; - dir = 4; - name = "hallway camera" - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dOE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"dOF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"dOH" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dOL" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/target, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating/airless, -/area/science/test_area) -"dOM" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"dOR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"dOT" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"dOU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dOV" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/science/research) -"dOX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dOY" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dOZ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/science/research) -"dPc" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPe" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPf" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/customs/auxiliary) -"dPh" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dPi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dPk" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dPl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"dPm" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"dPp" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"dPq" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"dPr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"dPI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPJ" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPN" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/science/research) -"dPO" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"dPQ" = ( -/obj/effect/spawner/randomcolavend, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dPR" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dPS" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"dPT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dPV" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departures Customs"; - dir = 4; - name = "customs camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPX" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPY" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dPZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/window/brigdoor/southright{ - dir = 8; - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dQa" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dQb" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dQd" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dQe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQg" = ( -/obj/machinery/camera{ - c_tag = "Virology - Containment Lock"; - dir = 8; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"dQi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQj" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQk" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQl" = ( -/turf/closed/wall, -/area/medical/virology) -"dQm" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQn" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQp" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dQC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dQE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dQK" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dQM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dQN" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster/directional/east{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dQP" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dQU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dQX" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = 22; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQY" = ( -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = -10; - pixel_y = 24; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/medical/virology) -"dQZ" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRc" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dRg" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/virologist, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dRh" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"dRj" = ( -/obj/machinery/camera{ - c_tag = "Virology - Break Room"; - dir = 8; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dRk" = ( -/obj/structure/sign/poster/official/cleanliness, -/turf/closed/wall, -/area/medical/virology) -"dRl" = ( -/obj/structure/table/glass, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dRm" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dRn" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dRo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"dRx" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dRP" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/crowbar, -/obj/item/radio, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dRR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dRS" = ( -/obj/structure/closet/secure_closet/contraband/heads, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"dRT" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dRU" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"dRV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"dRW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"dRX" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dRZ" = ( -/obj/structure/closet/l3closet/virology, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSa" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSb" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSd" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dSe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dSm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dSo" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dSp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dSD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dSE" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dSF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dSH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dSI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dSJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dSO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/customs/auxiliary) -"dSP" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 1 - }, -/obj/structure/sign/directions/engineering{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dSQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dSR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dSS" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dST" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"dSU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dSY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dSZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dTb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"dTj" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dTv" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dTE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTG" = ( -/obj/machinery/camera{ - c_tag = "Departures - Fore"; - name = "departures camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dTL" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "xeno6"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dTR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dTS" = ( -/obj/structure/chair/wood, -/obj/machinery/camera{ - c_tag = "Chapel - Starboard"; - dir = 8; - name = "chapel camera" - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"dTU" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dTV" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dTW" = ( -/obj/item/clothing/neck/stethoscope, -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dTX" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dTY" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/medical/virology) -"dTZ" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dUa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dUb" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dUh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dUo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Storage"; - req_one_access_txt = "72" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"dUx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dUO" = ( -/obj/machinery/vending/wallmed/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dUP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dUY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dVe" = ( -/obj/machinery/atmospherics/components/binary/temperature_gate{ - dir = 4; - on = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dVk" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVl" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"dVt" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVu" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/requests_console/directional/north{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVv" = ( -/obj/machinery/computer/pandemic, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVw" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVx" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVz" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/machinery/camera{ - c_tag = "Virology - Lab"; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/medical/virology) -"dVA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dVD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dVE" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dVG" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dVH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dVM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dVY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dVZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWd" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Chapel Junction"; - sortType = 17 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWe" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall8"; - location = "hall7" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWg" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWm" = ( -/obj/structure/reagent_dispensers/virusfood/directional/west, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWn" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWp" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWq" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWs" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWw" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dWx" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dWB" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"dWQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"dWS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dWX" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/meeting_room/council) -"dXa" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dXb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dXc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dXd" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dXe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dXl" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/medical/virology) -"dXt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dXF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dXI" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"dXK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXM" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXN" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dXR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"dXU" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/medical/virology) -"dXV" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dXW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dXX" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dXY" = ( -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYa" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYb" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYf" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYi" = ( -/obj/structure/table/glass, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dYu" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dYD" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dYE" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dYG" = ( -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"dYI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dYJ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dYM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"dYO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"dYP" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYQ" = ( -/obj/structure/table/glass, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/obj/item/paper_bin, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYS" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYT" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYV" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light_switch/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/medical/virology) -"dYW" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dYX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dZe" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dZg" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dZh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"dZn" = ( -/obj/machinery/light/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZo" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZp" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZq" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera{ - c_tag = "Departures - Center"; - name = "departures camera" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"dZu" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/bar{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"dZz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"dZC" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dZE" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dZG" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/machinery/camera{ - c_tag = "Virology - Cells"; - dir = 8; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dZV" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dZW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"eab" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "DeltaStation emergency evac bay"; - width = 30 - }, -/turf/open/space/basic, -/area/space) -"ead" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eae" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eaf" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"eak" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"eal" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"eao" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eap" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eas" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eaE" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eaL" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/r_wall, -/area/medical/virology) -"eaM" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"eaO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/medical/virology) -"eaQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"eaR" = ( -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"eaS" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"eaT" = ( -/obj/machinery/camera{ - c_tag = "Solar - Aft Port"; - name = "solar camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"eaU" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"eaW" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"eaX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eaY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eaZ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters2"; - name = "E.V.A. Storage Shutters" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ebb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ebc" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"ebk" = ( -/obj/machinery/light/directional/west, -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ebl" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ebm" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ebp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ebu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"ebv" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ebz" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ebB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ebD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"ebE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"ebF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"ebG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ebH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ebI" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ebL" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ebM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ebN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ebO" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/machinery/button/door/directional/north{ - id = "evashutters2"; - name = "E.V.A. Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ebQ" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ebR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eca" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecb" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"ecg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"ech" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/medical/virology) -"eci" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"ecj" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/virology) -"eck" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ecl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ecm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"ecn" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"eco" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"ecp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecq" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ect" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecu" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"ecv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecF" = ( -/obj/machinery/camera{ - c_tag = "Departures - Port"; - dir = 4; - name = "departures camera" - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecG" = ( -/obj/structure/chair, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecH" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ecJ" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ecK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecL" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecN" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/item/clothing/mask/breath, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecP" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"ecQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ecX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ecY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"edb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"edf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edg" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"edh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edi" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/item/clothing/mask/breath, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"edj" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edk" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"edl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"edt" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"edy" = ( -/obj/effect/landmark/start/cook, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"edD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"edH" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"edK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"edR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"edX" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"edY" = ( -/turf/closed/wall, -/area/security/checkpoint/escape) -"edZ" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/security/checkpoint/escape) -"eeb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/escape) -"eej" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/turf/open/floor/plating, -/area/security/checkpoint/escape) -"eek" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/escape) -"een" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"eeo" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eep" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eeq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eer" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ees" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eet" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eeu" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eeG" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eeH" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/machinery/camera{ - c_tag = "Security - Departures Port" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeJ" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeM" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeN" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeO" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeS" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeU" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"eeW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Transferring Center"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"efb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"eff" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eft" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"efu" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/radio, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efw" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"efK" = ( -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"efQ" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"egg" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egh" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egj" = ( -/obj/machinery/computer/prisoner/management{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egk" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egl" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egm" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egn" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/structure/sign/poster{ - icon_state = "poster22_legit"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"ego" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egp" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Security - Departures Starboard"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"egw" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"egD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"egE" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/escape) -"ehq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"eht" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Chapel - Port"; - dir = 4; - name = "chapel camera" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"ehu" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"ehy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ehG" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"ehI" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"ehL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ehM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ehQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ehS" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"ehX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"eie" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"eil" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"eiq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"eiK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"eiZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/mousetraps, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"ejm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ejr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"ejL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ejR" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"eka" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"ekn" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ekq" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ekw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/restrooms) -"ekx" = ( -/obj/structure/bed, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet, -/area/commons/dorms) -"ekH" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 4; - id = "cremawheat" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ekM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ekR" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"ekS" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ele" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"elR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"elW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"emc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"emj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/chemistry) -"eml" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"emw" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"emG" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"emJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"emM" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ene" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"enj" = ( -/obj/machinery/door/window/eastright{ - name = "Theater Stage" - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"enk" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall4"; - location = "engi3" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"enp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"enx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"enF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"enG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/range) -"enI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"enO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eok" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"eoC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"eoX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"eoZ" = ( -/obj/structure/cable, -/obj/machinery/button/flasher{ - id = "Cell 2"; - name = "Prisoner Flash"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "permashut2"; - name = "Cell Lockdown Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"eph" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"epE" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Oxygen Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"epH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"epN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/prison) -"epP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/cargo/qm) -"epU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/maintenance/department/science) -"eqa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/atmos) -"eqe" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Supermatter Foyer"; - dir = 8; - name = "engineering camera" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"eqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eqs" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"equ" = ( -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"eqC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"eqJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"eqQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/commons/fitness/recreation) -"eqU" = ( -/turf/open/space, -/area/space) -"erd" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Access Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/window/westright{ - name = "Access Queue" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"ert" = ( -/turf/closed/wall, -/area/service/library/abandoned) -"erV" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/item/assembly/voice, -/obj/item/assembly/voice, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"esn" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Medbay - Starboard"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"esF" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/service/library/abandoned) -"etl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"etr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"etu" = ( -/turf/closed/wall, -/area/service/hydroponics/garden/abandoned) -"etJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"etN" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood, -/area/service/library/abandoned) -"etU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"eui" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"euq" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"euz" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"euG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"euO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"euP" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"evg" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"evk" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"evr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"evy" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "N2 to Airmix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ewa" = ( -/obj/machinery/light/directional/north, -/obj/machinery/suit_storage_unit/captain, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/captain/private) -"ewg" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ewj" = ( -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"ewl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ewK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"ewQ" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"ewR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"exf" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"exk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"exw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"exB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"exE" = ( -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"exW" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"eyc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"eys" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"eyt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"eyu" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/radio, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/command/teleporter) -"eyw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"eyE" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"eyT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"eyY" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/engineering/atmos/upper) -"eze" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ezu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"ezC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ezU" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"eAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 1; - id = "cargounload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"eAp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eAA" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"eAB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"eAI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"eAM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"eAP" = ( -/obj/structure/sign/painting/library_private{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"eBe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"eBv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/corporate_showroom) -"eBN" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eCf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eCl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"eCo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"eCr" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"eCw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"eCE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"eCG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"eCM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"eCP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"eCZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"eDj" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"eDl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"eDo" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"eDz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"eDP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eEf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"eEH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"eEK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"eEQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"eES" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eEX" = ( -/obj/structure/chair/stool, -/obj/machinery/flasher/directional/north{ - id = "visitorflash" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"eEY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eFb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"eFj" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"eFk" = ( -/obj/machinery/door/window/brigdoor/southright{ - name = "Command Chair"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"eFq" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"eFA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eFD" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Treatment Center"; - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"eFP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"eFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"eFX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"eGt" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eGI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eGN" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"eGP" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"eHh" = ( -/obj/machinery/camera{ - c_tag = "Security - Prison Port" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"eHs" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"eHv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/main) -"eHx" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"eHJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"eHO" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"eHP" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eIe" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"eIk" = ( -/obj/machinery/camera{ - c_tag = "Dormitories - Starboard"; - name = "dormitories camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eIo" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eIs" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Medbay - Chief Medical Officer's Office"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"eIy" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/light/directional/south, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/machinery/status_display/evac/directional/south, -/obj/item/clothing/head/fedora, -/obj/item/clothing/under/dress/redeveninggown, -/obj/item/clothing/head/rabbitears, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"eID" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"eJd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"eJp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"eJt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/machinery/navbeacon/wayfinding{ - location = "Escape" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eJC" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"eJF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"eJG" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"eJR" = ( -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/service/kitchen) -"eJS" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"eKd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"eKl" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"eKo" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/service/kitchen) -"eKq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eKA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Atmos to Loop" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"eKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"eKH" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"eKR" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Dormitory Hallway"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eKZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"eLb" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/machinery/light/small/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"eLv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"eLw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/range) -"eLz" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"eLA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"eLK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"eLV" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/razor, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/commons/dorms) -"eLY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eLZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"eMa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eMd" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"eMj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eMt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"eMy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/main) -"eMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research/abandoned) -"eMI" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"eMJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"eMM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"eMZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"eNa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/computer/gateway_control, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"eNt" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eND" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"eNE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"eNI" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"eNW" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"eOc" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access_txt = "5;12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"eOt" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"eOG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"eOM" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"eOV" = ( -/obj/structure/table/wood, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/that, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"eOZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/engine_room/external) -"ePm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Post - Cargo"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ePs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ePK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/morgue) -"ePO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ePP" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"ePQ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/clothing/under/rank/centcom/commander, -/obj/item/clothing/head/centhat{ - armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "A replica hat of a Central Commander's attire. It has a small tag on it saying, 'It's good to be emperor.'"; - name = "Replica CentCom hat" - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"ePT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "31;48" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"ePX" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"eQk" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Security - Interrogation Monitoring"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"eQr" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"eQB" = ( -/obj/machinery/requests_console/directional/north{ - department = "Kitchen"; - name = "Kitchen Requests Console" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"eQK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eRd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"eRu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eRQ" = ( -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eRS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"eRY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"eRZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"eSd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/service/library) -"eSl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"eSo" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eSr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eSH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm2"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"eSK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"eTr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"eTv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"eTx" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Medbay - Port"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eTD" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"eTH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"eTO" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Supermatter Room"; - dir = 8; - name = "engineering camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"eTQ" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/service/library) -"eTS" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"eTV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/light, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"eUp" = ( -/obj/machinery/light/directional/west, -/obj/effect/mapping_helpers/ianbirthday, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"eUy" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"eUH" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/service/theater) -"eVj" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"eVn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"eVs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"eVv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"eVw" = ( -/obj/structure/table/reinforced, -/obj/item/cartridge/quartermaster{ - pixel_x = -6 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 6 - }, -/obj/item/cartridge/quartermaster{ - pixel_y = 6 - }, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"eVy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eVC" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"eVI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/departments/court{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"eVM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"eVR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"eWf" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"eWj" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi2"; - location = "engi1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"eWr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"eWx" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/aisat) -"eWE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"eWF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"eWR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"eXa" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"eXb" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"eXl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"eXr" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"eXt" = ( -/turf/open/floor/carpet, -/area/service/bar/atrium) -"eXA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"eXN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"eYa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"eYc" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Test Range" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"eYi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eYj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"eYo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eYE" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"eYJ" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/gambling, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"eZa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eZh" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/northleft{ - name = "Medical Desk"; - req_access_txt = "5" - }, -/obj/machinery/door/window/southleft{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"eZl" = ( -/obj/machinery/camera{ - c_tag = "Science - Research Director's Quarters"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/modular_computer/console/preset/research{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"eZu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"eZx" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/structure/cable, -/obj/item/tank/internals/plasma, -/turf/open/floor/plating, -/area/engineering/supermatter) -"eZV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/teleporter) -"eZX" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/library/abandoned) -"fan" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"faw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"faE" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"faH" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"faI" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "MiniSat Service Bay"; - dir = 8; - network = list("minisat"); - start_active = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"faJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"faY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fbc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"fbe" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fbh" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library/abandoned) -"fbj" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"fbn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"fbp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"fbr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"fbt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fbu" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fbQ" = ( -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_one_access_txt = "13; 24; 10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"fbT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fbV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fbY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"fcl" = ( -/obj/structure/dresser, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"fcn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fcr" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 4; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"fcw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"fcA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fcB" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"fcG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"fcK" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"fdc" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"fdd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"fdk" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"fdo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"fdx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"fdH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fdT" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"fec" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"fek" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"fez" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"feM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Engineering - Gravity Generator Foyer"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ffh" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"ffk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/skill_station, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ffo" = ( -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"ffv" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ffA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"ffB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ffH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ffV" = ( -/obj/item/flashlight/seclite, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/commons/dorms) -"ffY" = ( -/obj/structure/table, -/obj/item/toy/foamblade, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"ffZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fgn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fgq" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"fgO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"fhO" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fhW" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"fip" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/wirecutters, -/obj/item/stack/cable_coil, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"fiz" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fiE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"fiJ" = ( -/obj/structure/dresser, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/service/theater) -"fiM" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"fiN" = ( -/obj/structure/window, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"fiP" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"fiW" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"fjo" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch/directional/south, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/circuitboard/machine/microwave, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"fjp" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/cargo/qm) -"fjr" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"fjt" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"fjO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fjP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"fjU" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/obj/machinery/button/door/directional/north{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Control"; - pixel_x = 6 - }, -/turf/open/floor/wood, -/area/lawoffice) -"fjV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"fjX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"fkq" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fkA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"fkP" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fkU" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"flq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/library/abandoned) -"flu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/library/abandoned) -"flz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"flF" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner, -/area/commons/fitness/recreation) -"flZ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"fmd" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"fms" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fmC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"fmE" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"fmH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"fnc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/xenobiology) -"fnk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"fno" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/mixingchamber{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"fnx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"fny" = ( -/obj/machinery/computer/monitor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fnz" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"fnS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/storage) -"fnZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"foe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"fof" = ( -/turf/closed/wall, -/area/lawoffice) -"for" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fot" = ( -/turf/closed/wall, -/area/ai_monitored/command/storage/eva) -"foG" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/atmos{ - name = "Turbine Generator Access"; - req_one_access_txt = "24;10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"foK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"foL" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"foM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/theater/abandoned) -"fph" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"fpi" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fpn" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"fpo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"fpv" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fpK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fpQ" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"fpZ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fqb" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fqj" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"fqn" = ( -/obj/effect/landmark/start/mime, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"fqp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fqt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fqv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fqA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/starboard/fore) -"fqJ" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"fqV" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"fqW" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"fqY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"frl" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"frC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"frV" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"fsy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"fsB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fsE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"fsH" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fsZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/service/janitor) -"ftc" = ( -/obj/machinery/libraryscanner, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"ftf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"ftj" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"ftA" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ftB" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ftI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ftP" = ( -/obj/machinery/computer/security/hos{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"fus" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"fuv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"fuB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fuF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Nanite Lab"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/nanite) -"fuJ" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fuK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/commons/dorms) -"fuN" = ( -/obj/structure/table, -/obj/item/disk/tech_disk{ - pixel_x = -6 - }, -/obj/item/disk/tech_disk{ - pixel_x = 6 - }, -/obj/item/disk/tech_disk{ - pixel_y = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"fvd" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"fvf" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fvG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"fvN" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fvP" = ( -/obj/machinery/light/directional/north, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"fwe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"fwj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"fwk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"fwo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"fwB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/engineering/storage) -"fwF" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"fxd" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"fxe" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/command/teleporter) -"fxp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/obj/machinery/door/window/northleft{ - name = "Chemistry Desk" - }, -/obj/machinery/door/window/southleft{ - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"fxw" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"fxx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Delivery Office"; - req_access_txt = "50" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"fxz" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - name = "Theater Delivery"; - req_access_txt = "46" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/theater) -"fxS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/structure/curtain, -/obj/machinery/door/window/brigdoor/southleft{ - name = "Shower" - }, -/obj/item/soap/deluxe, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"fxY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"fyh" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"fyM" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"fyY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"fzv" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fzO" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fAd" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"fAf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fAk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"fAl" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"fAp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"fAy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/commons/locker) -"fAz" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"fAX" = ( -/turf/closed/wall, -/area/commons/locker) -"fAY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fBg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/prisoner, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"fBo" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"fBp" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/abandoned_gambling_den) -"fBq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"fBG" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"fBM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/checker, -/area/engineering/break_room) -"fCd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"fCh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"fCx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"fCD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fCE" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fCQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/library) -"fDa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/education) -"fDt" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fDA" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fEm" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/sign/poster/official/science{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"fET" = ( -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"fEX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "O2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fEZ" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fFf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"fFl" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"fFv" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"fFy" = ( -/turf/closed/wall/r_wall, -/area/command) -"fFT" = ( -/obj/machinery/camera{ - c_tag = "Science - Toxins Mixing Lab Fore"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"fFU" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Starboard"; - dir = 8; - name = "cargo camera" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "cargounload"; - layer = 4; - name = "Loading Doors"; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/east{ - id = "cargoload"; - layer = 4; - name = "Loading Doors"; - pixel_y = -6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fGb" = ( -/obj/machinery/requests_console/directional/south{ - department = "Mining"; - name = "Mining Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Cargo - Mining Dock"; - dir = 1; - name = "cargo camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"fGm" = ( -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/clothing/head/fedora, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fGt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fGz" = ( -/obj/structure/table/reinforced, -/obj/item/healthanalyzer, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/healthanalyzer, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"fGF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fGQ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/bag/tray, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"fGR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fHd" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/sorting) -"fHm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fHu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"fHw" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/library/abandoned) -"fIe" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Mining Desk"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"fIk" = ( -/obj/machinery/computer/cargo/request, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"fIl" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fIt" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"fIz" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/engineering/main) -"fIF" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"fIN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"fJg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"fJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"fJy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"fJD" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"fJI" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/engineering/storage_shared) -"fKe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"fKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure/loot, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"fKp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"fKs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fKA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"fKX" = ( -/obj/structure/mirror/directional/west, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"fLT" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"fMb" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fMv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"fMD" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"fMK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"fMP" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/beer{ - desc = "Whatever it is, it reeks of foul, putrid froth."; - list_reagents = list(/datum/reagent/consumable/ethanol/bacchus_blessing = 15); - name = "Delta-Down"; - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/commons/dorms) -"fNp" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/service/chapel/main) -"fNx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"fNC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"fNP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating, -/area/cargo/sorting) -"fNT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"fNX" = ( -/obj/structure/sign/departments/examroom, -/turf/closed/wall, -/area/medical/paramedic) -"fOk" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/storage/lockbox/loyalty, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"fOo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"fOs" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"fOJ" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/chair/office/light, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fOP" = ( -/obj/structure/lattice, -/turf/open/space, -/area/engineering/atmos/upper) -"fOX" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/theater/abandoned) -"fPb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"fPj" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/electronics/airlock, -/obj/item/stack/sheet/glass, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"fPu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"fPH" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"fQf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"fQl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"fQy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fQL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"fQZ" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"fRu" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"fSi" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"fSp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"fSq" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"fSy" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/hallway/primary/aft) -"fSA" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/structure/table/wood/poker, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"fSB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fSE" = ( -/obj/structure/closet/athletic_mixed, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fSO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"fTa" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/library/abandoned) -"fTf" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/service/library/abandoned) -"fTh" = ( -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"fTP" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/meeting_room/council) -"fTU" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"fTV" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"fUc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"fUj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"fUl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Theater Backstage"; - dir = 8; - name = "service camera" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/service/theater) -"fUn" = ( -/obj/structure/chair/comfy/brown, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"fUx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"fUK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fUP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fUR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"fUZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"fVp" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/pen/red, -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"fVr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/storage/primary) -"fVy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/structure/reagent_dispensers/fueltank/large, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"fVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/structure/tank_dispenser, -/obj/machinery/camera{ - c_tag = "Engineering - Gear Storage"; - dir = 8; - name = "engineering camera" - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"fVM" = ( -/obj/structure/table/wood, -/obj/item/wrench, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"fVN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"fVZ" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fWe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fWi" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"fWq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"fWz" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/commons/dorms) -"fWC" = ( -/obj/structure/reflector/single, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"fWG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"fWV" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/radio, -/obj/item/radio, -/obj/item/radio, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/command/gateway) -"fWW" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fWZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"fXi" = ( -/obj/structure/table/wood, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"fXn" = ( -/obj/machinery/light/directional/north, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel/fifty, -/obj/machinery/camera{ - c_tag = "Atmospherics - HFR Side Room"; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fXp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fXW" = ( -/obj/machinery/computer/robotics{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = -5 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"fYc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fYs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"fYK" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fYL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fYO" = ( -/obj/structure/sign/departments/psychology{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fYW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fZp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"fZr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"fZt" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"fZv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fZx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fZA" = ( -/obj/machinery/light/directional/north, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"fZK" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"fZN" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"fZP" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"fZW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"gag" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "CE's Junction"; - sortType = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gax" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"gaE" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"gaN" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"gaO" = ( -/obj/item/clipboard{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/newspaper{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/item/newspaper, -/obj/item/pen/red, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/commons/dorms) -"gaP" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/obj/item/folder/yellow, -/obj/machinery/door/window/northleft{ - name = "Chemistry Desk" - }, -/obj/machinery/door/window/southleft{ - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"gbd" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/abandoned_gambling_den/secondary) -"gbB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"gbL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall, -/area/engineering/atmos) -"gcu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gcT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"gcW" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"gdb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gdf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gdw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gdO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"gdT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"gdV" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Game Room" - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gep" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"geA" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"geJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/southright{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"geR" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"geT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"geW" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"gfc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"gfI" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"gfN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 1; - req_access_txt = "31" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"ggg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ggn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"ghk" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/cardborg, -/obj/item/clothing/head/cardborg, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"gho" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"ghq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Break Room"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"ghJ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gic" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gih" = ( -/obj/machinery/computer/upload/ai{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"gij" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"giT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"giV" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gjd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/space) -"gje" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"gjg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"gjl" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera{ - c_tag = "Engineering - Gravity Generator"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"gju" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"gjx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"gjC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"gjL" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"gkn" = ( -/obj/machinery/light/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/machinery/camera{ - c_tag = "Hydroponics"; - dir = 8; - name = "service camera" - }, -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gko" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gkv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gkK" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Cell 5"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"gkR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gkW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"glh" = ( -/obj/structure/sign/directions/command{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"glp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"glz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"glG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"glH" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"glS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"glT" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"gmc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"gmh" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Service Hallway Maintenance Hatch"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"gmi" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/clothing/head/chefhat, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/south{ - id = "kitchenwindow"; - name = "Kitchen Privacy Control"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"gmN" = ( -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"gmP" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gna" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"gnc" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance"; - req_access_txt = "47" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"gnd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"gni" = ( -/obj/machinery/camera{ - c_tag = "Primary Restroom"; - name = "restroom camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"gnq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gnv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Upload"; - req_access_txt = "16" - }, -/obj/machinery/flasher/directional/west{ - id = "AI" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"gnF" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"gnR" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/atmos, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gnV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"gnW" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm3"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"gom" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/primary/aft) -"goy" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"goP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"goQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Hall" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/chapel/main) -"goR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"goX" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"goY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"gpp" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"gpr" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"gpC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gpG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gqi" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"gqj" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"gqq" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"gqw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gqy" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/cargo/office) -"gqB" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gqD" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gqE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"gqJ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/meeting_room/council) -"gqN" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe/hos{ - pixel_x = 32 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"gqP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"gqQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"grl" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"grO" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"gsa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gse" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - co2 Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"gsn" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"gsq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"gsr" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"gsx" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gsB" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel, -/area/security/prison) -"gsC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"gsX" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"gsZ" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"gta" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gtA" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gub" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"guf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"guk" = ( -/obj/machinery/door/window/northleft{ - name = "Engineering Delivery"; - req_access_txt = "32" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"gum" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gup" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"guB" = ( -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"guF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"guL" = ( -/turf/closed/wall/r_wall, -/area/security/execution) -"guN" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Bar - Fore"; - dir = 4; - name = "service camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/displaycase/forsale/kitchen, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"guW" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"gvc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"gvd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"gvf" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gvx" = ( -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Bridge - E.V.A. Fore"; - name = "command camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"gvH" = ( -/obj/structure/mirror/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"gwo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/engine_room/external) -"gwr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door/directional/south{ - id = "evashutters"; - name = "E.V.A. Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"gxd" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"gxe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"gxg" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/locker) -"gxm" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"gxo" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/machinery/door/window/eastright, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gxv" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Library Desk"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"gxD" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gxL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gxR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Customs Maintenance"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"gyd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library/abandoned) -"gyl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/restrooms) -"gyL" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/toy/gun, -/obj/item/clothing/head/beret/sec{ - armor = list("melee" = 0, "bullet" = 0, "laser" = 0, "energy" = 0, "bomb" = 0, "bio" = 0, "rad" = 0); - desc = "A replica beret resembling that of a special operations officer under Nanotrasen."; - name = "replica officer's beret" - }, -/obj/structure/cable, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"gzt" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"gzu" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_singulo_tesla, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"gzC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"gzD" = ( -/obj/structure/girder, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gzM" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/airalarm, -/obj/item/electronics/airlock, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"gzU" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft Starboard"; - dir = 1; - name = "cargo camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gzW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gzY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"gAm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"gAy" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gAD" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/obj/effect/spawner/lootdrop/space/cashmoney, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"gBh" = ( -/obj/structure/sign/directions/engineering{ - desc = "A handy sign praising the engineering department."; - icon_state = "safety"; - name = "engineering plaque" - }, -/turf/closed/wall, -/area/engineering/break_room) -"gBo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"gBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gBt" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/harebell, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"gBz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gBM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"gBQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gBU" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"gBY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gCc" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Cell 1"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"gCu" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/chef, -/obj/effect/turf_decal/bot, -/obj/item/food/mint, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel, -/area/service/kitchen) -"gCw" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/space, -/area/engineering/atmos) -"gCD" = ( -/obj/structure/reflector/double, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"gCK" = ( -/turf/closed/wall, -/area/maintenance/department/science) -"gCX" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"gDg" = ( -/obj/structure/table/wood/fancy, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"gDw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"gDB" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gDC" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"gDE" = ( -/obj/structure/chair/office, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"gDO" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"gDQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"gDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"gEh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"gEA" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/poppy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"gEG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gER" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gFj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gFn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"gFG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gFZ" = ( -/obj/machinery/nanite_program_hub, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"gGp" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/abandoned_gambling_den/secondary) -"gGz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gGK" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"gGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"gGU" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Nitrogen Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"gHb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "Bar Junction"; - sortType = 19 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"gHl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"gHm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"gHK" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gHX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "cargounload" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gIf" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/justice, -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"gIm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gIX" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat Exterior Access"; - req_one_access_txt = "13;32" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"gJq" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/camera{ - c_tag = "Xenobiology - Cell 8"; - dir = 1; - name = "xenobiology camera"; - network = list("ss13","xeno","rd") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"gJw" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gJL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gJO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gKg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gKr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/science/research/abandoned) -"gKG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"gKN" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"gKO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gKR" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gKX" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Quarters"; - req_access_txt = "40" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"gKZ" = ( -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"gLe" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"gLm" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"gLo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gLB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"gLM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"gLS" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"gMy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"gMz" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"gNl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gNF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/theater/abandoned) -"gNK" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/turf/open/floor/wood, -/area/service/library) -"gNS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"gNW" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"gOp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gOL" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Arrivals Dock - Aft"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"gOQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"gOY" = ( -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/engineering/main) -"gPc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"gPf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/auxiliary) -"gPk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"gPv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"gPw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"gPx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/port) -"gPA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"gPC" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"gPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"gQi" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gQp" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"gQs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"gQI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gQQ" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"gQS" = ( -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"gRl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenwindows"; - name = "Kitchen Privacy Shutters" - }, -/turf/open/floor/plating, -/area/service/kitchen) -"gRM" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"gRN" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"gRQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gRT" = ( -/turf/open/floor/wood, -/area/service/theater/abandoned) -"gSi" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab) -"gSn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gSp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"gSs" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"gSw" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gSx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"gSL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"gSY" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gTa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"gTm" = ( -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"gTs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"gTt" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"gTB" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/starboard/aft) -"gTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gTI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"gTJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"gUo" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"gUy" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Cell 4"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"gUH" = ( -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"gUN" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gUR" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/mime, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"gVf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gVj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"gVw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"gVE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"gVL" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"gVP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"gWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port) -"gWz" = ( -/obj/structure/toilet/greyscale, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"gWG" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"gWQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"gWX" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/library/abandoned) -"gXi" = ( -/obj/machinery/door/airlock/security{ - name = "Private Interrogation"; - req_access_txt = "4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"gXj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port) -"gXk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Air Supply"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"gXn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"gXC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"gXL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"gXU" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gXX" = ( -/obj/machinery/camera{ - c_tag = "Departures - Aft"; - dir = 1; - name = "departures camera" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gYt" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"gYz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyerprivacy"; - name = "Lawyer's Privacy Shutter" - }, -/turf/open/floor/plating, -/area/lawoffice) -"gYD" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/south, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel/dark, -/area/command) -"gYQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gYZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"gZh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"gZK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"gZR" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"had" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 1 - }, -/turf/open/floor/plating, -/area/tcommsat/server) -"haf" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hak" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/abandoned_gambling_den) -"hax" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/engineering/break_room) -"haE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"haH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/target, -/obj/structure/training_machine, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"haT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"haV" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"haW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"hbl" = ( -/obj/structure/bookcase, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"hbp" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hbO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"hbT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"hbW" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hcc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"hcO" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"hdi" = ( -/obj/machinery/atmospherics/components/binary/pump/layer2{ - dir = 8; - name = "Gas to Chamber" - }, -/obj/machinery/atmospherics/components/binary/pump/layer4{ - dir = 4; - name = "Chamber to Cooling" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"hdj" = ( -/obj/machinery/photocopier, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"hdp" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hdq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/musician/piano, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"hdt" = ( -/obj/machinery/mineral/ore_redemption, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hdG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hdP" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"hei" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"heo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"her" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"heA" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/service/bar) -"heL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"heQ" = ( -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"heR" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hfg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"hfi" = ( -/obj/effect/decal/cleanable/oil, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"hfl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hfn" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/bomj, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"hfp" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"hfr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"hft" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/razor, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"hfC" = ( -/obj/structure/lattice, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"hfE" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/meat/slab/human{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/meat/slab/human, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"hfP" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hgm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 8 - }, -/turf/open/space, -/area/engineering/atmos/upper) -"hgo" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"hgz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hgA" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Supermatter Room"; - dir = 4; - name = "engineering camera" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hgE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Unfiltered & Air to Mix" - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hgH" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"hgK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hgT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"hhG" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"hhH" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"hhS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hia" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"hij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"hiu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"hiA" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hiD" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hiG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hiK" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"hjl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hjt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hjx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hjC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"hjE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"hjX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"hjY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"hkj" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"hkl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"hko" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"hkO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hkY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hlc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hlw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"hly" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hlI" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hlW" = ( -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"hmb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"hml" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hmD" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library) -"hmH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/service/library/abandoned) -"hnl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"hnn" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"hnF" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hnN" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/main) -"hnW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hod" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hon" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"hop" = ( -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/maintenance/starboard/fore) -"hos" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"hov" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"hoA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"hoQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"hoS" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"hoW" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"hoY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"hoZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hpb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hpn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"hpq" = ( -/obj/machinery/nuclearbomb/selfdestruct{ - layer = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"hpD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"hpH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/commons/dorms) -"hpM" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"hpN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hpY" = ( -/obj/structure/cable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"hqi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"hqz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hqK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"hqR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"hqS" = ( -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"hra" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hrt" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"hrI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"hrT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"hrU" = ( -/obj/machinery/camera{ - c_tag = "Cargo Bay - Port"; - dir = 4; - name = "cargo camera" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hsd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hsh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"hsx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hsG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"hsR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"htp" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/library) -"htv" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"htJ" = ( -/turf/closed/wall, -/area/command/heads_quarters/cmo) -"htK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"htS" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"htZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/mixer{ - name = "plasma mixer" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hun" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hut" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 5; - pixel_y = 7 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = -5 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft Starboard"; - dir = 1; - name = "cargo camera" - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 2 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"huK" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"hvd" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"hvp" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"hvt" = ( -/turf/open/floor/plasteel/grimy, -/area/command/meeting_room/council) -"hvD" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/engineering/atmos/upper) -"hwx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/circuitboard/machine/exoscanner{ - pixel_y = -3 - }, -/obj/item/circuitboard/machine/exoscanner, -/obj/item/circuitboard/machine/exoscanner{ - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"hwH" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/library) -"hwK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hwL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hwT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"hwU" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hwV" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hxm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"hxu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"hxv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"hxG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"hxO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"hxZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"hye" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"hyz" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hyF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"hyV" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hzd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hzg" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/library) -"hzj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"hzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hzC" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"hAc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hAm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hAq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hAD" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy/geranium{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/grown/poppy/lily, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"hAI" = ( -/obj/structure/window, -/obj/structure/sink{ - pixel_y = 30 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/security/prison) -"hBf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hBn" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hBy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hBz" = ( -/obj/machinery/door/window/brigdoor/security/cell/westright{ - id = "brig2"; - name = "Cell 2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"hBB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hBE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hBY" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solars/port/aft) -"hCg" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"hCj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hCm" = ( -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"hCH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hCJ" = ( -/turf/open/space/basic, -/area/service/abandoned_gambling_den) -"hCK" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"hCR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapelprivacy"; - name = "Chapel Privacy Shutters" - }, -/turf/open/floor/plating, -/area/service/chapel/office) -"hCS" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"hCT" = ( -/turf/open/floor/circuit/green, -/area/engineering/gravity_generator) -"hDb" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/structure/frame/computer, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"hDc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"hDe" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"hDg" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/port/fore) -"hDA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"hDE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hDK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hEa" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hEk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"hEm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"hEq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"hEu" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"hEB" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hED" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hEN" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hEX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"hFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"hFp" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd_secure, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"hFt" = ( -/obj/structure/frame/computer, -/obj/item/circuitboard/computer/secure_data, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/electronic_marketing_den) -"hFM" = ( -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/machinery/chem_dispenser/drinks, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"hFX" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"hGb" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno2"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hGg" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"hGh" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hGq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"hGr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"hGA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"hGF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"hGG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"hHe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hHj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hHx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"hHJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hHP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hHR" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"hHU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"hIa" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"hIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hIH" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"hII" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/space, -/area/engineering/atmos) -"hIN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hJb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hJe" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hJu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hJA" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/cargo/office) -"hJG" = ( -/obj/structure/table/wood, -/obj/item/newspaper, -/obj/item/clothing/head/bowler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"hJH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hJN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hJS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"hJT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"hKg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"hKw" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/cook, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"hKA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hKQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"hKR" = ( -/obj/structure/lattice, -/turf/open/space, -/area/service/abandoned_gambling_den) -"hLq" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hLr" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/port) -"hLN" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"hLW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"hMg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"hMk" = ( -/turf/closed/wall, -/area/engineering/main) -"hMv" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/electronic_marketing_den) -"hMA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_access_txt = "17" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/teleporter) -"hML" = ( -/turf/closed/wall, -/area/command/meeting_room/council) -"hMZ" = ( -/obj/item/beacon, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hNd" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"hNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"hNq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hNT" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"hNZ" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hOg" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/mining{ - name = "Drone Bay"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"hOx" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hOU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"hOZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"hPs" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"hPv" = ( -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"hPw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hPD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"hPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"hQe" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"hQk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"hQn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"hQq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hQG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hQJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hQM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hQZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"hRa" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"hRj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"hRz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Research Lab Desk"; - req_one_access_txt = "7;29" - }, -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"hRH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"hRO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hSl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"hSn" = ( -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"hSu" = ( -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/beakers, -/obj/structure/table/glass, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"hSx" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window{ - dir = 4; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"hSK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hSS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hST" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"hSV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hTb" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Center Port"; - name = "arrivals camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"hTk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hTo" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/tower, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"hTt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hTA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hTF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/theater/abandoned) -"hTO" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"hTS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"hUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"hUm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 9 - }, -/obj/machinery/vending/coffee, -/turf/open/space/basic, -/area/space/nearstation) -"hUq" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hUr" = ( -/obj/machinery/light/directional/east, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"hUs" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"hUv" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"hUA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"hUH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security Hallway - Center"; - dir = 1; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hVc" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/starboard/fore) -"hVi" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"hVo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"hVv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/theater) -"hVB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"hVE" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hVF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"hVW" = ( -/obj/structure/window/plasma/reinforced/spawner/west{ - dir = 4 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"hVY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"hVZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hWc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hWj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Testing Room"; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hWu" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/supermatter) -"hWw" = ( -/obj/machinery/flasher{ - id = "justiceflash"; - pixel_x = 26; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "justiceflash"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"hWy" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"hWD" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Engineering Junction"; - sortType = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"hXe" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"hXi" = ( -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"hXn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hXs" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/kitchen) -"hXG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"hXM" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"hXT" = ( -/obj/machinery/door/window/northleft, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"hYe" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/cartridge/medical{ - pixel_x = -3 - }, -/obj/item/cartridge/medical{ - pixel_x = 3 - }, -/obj/item/cartridge/chemistry{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"hYs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"hYA" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"hYG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"hZg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"hZo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hZw" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"hZA" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"hZL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hZN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"hZU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"iaa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"iah" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/abandoned_gambling_den) -"iaz" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"iaF" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"ibh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"ibr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ibv" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/chapel, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"ibw" = ( -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/electronic_marketing_den) -"ibz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ibJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"ibQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ibS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"ibV" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ibY" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"icb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ice" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"ici" = ( -/obj/structure/bed/roller, -/obj/structure/sign/departments/chemistry{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Medbay - Waiting Room"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ick" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/clothing/mask/gas/sechailer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"icm" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"icz" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"icG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ide" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/bio, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"idi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"idk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"idv" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"idx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"idG" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"idL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"idM" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"idQ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/teleporter) -"idS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"idU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ieh" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"iem" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iev" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access"; - req_one_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ieL" = ( -/obj/effect/landmark/start/prisoner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ieW" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ifa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ife" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/md, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ifj" = ( -/obj/structure/dresser, -/obj/item/storage/secure/safe/directional/east, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"ifv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Quartermaster's Quarters"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ifw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ifF" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"ifQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ifX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ifZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iga" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"igc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"ign" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"igq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm4"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"igB" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"igV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"igW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ihd" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"ihg" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ihi" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ihk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"ihB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ihC" = ( -/obj/structure/closet/secure_closet/hop, -/obj/item/clothing/suit/ianshirt, -/obj/item/bedsheet/ian, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"ihX" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plasteel, -/area/security/prison) -"iil" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"iim" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 27 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iit" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"iiE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"iiI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iiL" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"iiR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ijb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"ijk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"ijH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/space) -"ijR" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ikf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iki" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"ikq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"ikG" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"ikJ" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"ikU" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"ils" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/security/main) -"ilu" = ( -/obj/structure/window, -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"ilK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/button/door/atmos_test_room_mainvent_2, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"ilM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Lab"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"ilU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Distro" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ima" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"ime" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"imp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/cargo/qm) -"imx" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/window/northleft{ - name = "Drone Launchsite" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"imy" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"imA" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper{ - pixel_y = 5 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"imL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"imN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"imZ" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ina" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"inm" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/grimy, -/area/command) -"inw" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"inC" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/item/wrench, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/supermatter) -"inK" = ( -/obj/machinery/door/window/northright, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"inR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ioc" = ( -/obj/machinery/gateway/centerstation, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"iog" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"ioz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ioN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"ioP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"ioR" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"ioU" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ipa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ipi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"ipn" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ipq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ipD" = ( -/obj/structure/table/wood, -/obj/machinery/cell_charger, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"ipL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"ipZ" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"iql" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iqz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"iqH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"iqM" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"iqT" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"iqZ" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/engineering/atmos/upper) -"iry" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"irC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"irE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"irL" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"irV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"isb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ise" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"isg" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ish" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"isk" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"iss" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"isC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"isY" = ( -/obj/machinery/camera{ - c_tag = "Permabrig - Workroom"; - dir = 4; - network = list("ss13","prison") - }, -/obj/item/radio/intercom/directional/west{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"itf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry"; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"itn" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"itq" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/chair/comfy, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"itE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/ai, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"itL" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/east, -/obj/item/coin/adamantine{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_tele, -/obj/item/melee/chainofcommand, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"itM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"itR" = ( -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"itU" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"iuh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iuk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_room/external) -"iul" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"iuz" = ( -/obj/structure/chair{ - dir = 8; - name = "Judge" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"iuE" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iuG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"iuI" = ( -/obj/effect/turf_decal/arrows{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/service/kitchen) -"iuO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"iuP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"iuR" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iuV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"ivo" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ivD" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ivL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ivX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"ivY" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"iwr" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library/abandoned) -"iwK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ixj" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - req_one_access_txt = "5;12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ixm" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/main) -"ixI" = ( -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ixL" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"ixS" = ( -/turf/open/space/basic, -/area/engineering/atmos/upper) -"iyg" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"iyB" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"iyX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"izl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"izq" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Permabrig - Hall"; - dir = 8; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"izG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"izY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"iAa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"iAe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"iAh" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"iAA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"iAK" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Chapel Maintenance"; - req_access_txt = "27" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/chapel/office) -"iAL" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Cell 2"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"iAN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iAO" = ( -/obj/machinery/door/airlock{ - name = "Auxiliary Restroom" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"iAP" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Auxiliary Restroom"; - name = "restroom camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/auxiliary) -"iAW" = ( -/obj/machinery/light/directional/east, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iBa" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iBb" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iBB" = ( -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/electronic_marketing_den) -"iBT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"iBZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/morgue) -"iCf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"iCm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Pure" - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"iCs" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"iCE" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"iCN" = ( -/obj/structure/table, -/obj/structure/window{ - dir = 8 - }, -/obj/structure/reagent_dispensers/servingdish, -/obj/structure/reagent_dispensers/servingdish, -/obj/item/clothing/head/chefhat, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"iCO" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"iDa" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"iDb" = ( -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"iDf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iDn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"iDp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"iDt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/qm) -"iDB" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iDK" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"iEi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iED" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"iEF" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Aft Port"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/item/clipboard, -/obj/item/healthanalyzer, -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iEZ" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"iFr" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/commons/dorms) -"iFs" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"iFA" = ( -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"iFD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iGk" = ( -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"iGq" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"iGx" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"iGC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"iGF" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"iGJ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iGK" = ( -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iGN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"iGQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"iGY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"iHq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"iHr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"iHs" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering{ - name = "Smoking Room"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"iHJ" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/clothing/head/collectable/hop, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"iHV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/prison) -"iIt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"iJf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"iJo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"iJD" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"iJF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iKd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"iKi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iKo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"iKu" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plating, -/area/service/library/abandoned) -"iKB" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"iKP" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/service/bar/atrium) -"iKS" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"iLh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"iLt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iLD" = ( -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iLM" = ( -/obj/structure/table, -/obj/item/storage/photo_album, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"iLS" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"iLT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"iLY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"iMp" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"iMu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"iMz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iMC" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"iMF" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/costume/geisha, -/obj/item/clothing/head/fedora{ - icon_state = "curator" - }, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/under/rank/civilian/curator/treasure_hunter, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet, -/area/commons/dorms) -"iMR" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/security/prison) -"iMT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"iNf" = ( -/obj/machinery/light/directional/south, -/obj/structure/dresser, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"iNm" = ( -/obj/machinery/door/window/brigdoor/westright{ - name = "Shooting Range"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/range) -"iNs" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Cargo - Mining Office"; - dir = 8; - name = "cargo camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"iNS" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"iOi" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/machinery/status_display/ai/directional/north, -/obj/item/stock_parts/cell/high, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"iOm" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"iOo" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iOz" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"iOJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"iPc" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"iPh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iPj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iPv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"iPI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iPN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iPP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iQa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"iQb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"iQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"iQh" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"iQj" = ( -/obj/structure/cable, -/obj/machinery/button/flasher{ - id = "Cell 4"; - name = "Prisoner Flash"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "permashut4"; - name = "Cell Lockdown Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iQv" = ( -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"iQC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"iQJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"iQK" = ( -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random{ - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"iQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"iQO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"iQQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"iQT" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"iRf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iRw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"iRV" = ( -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage"; - req_access_txt = "5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"iSa" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/locker) -"iSG" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"iSX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iTb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"iTd" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"iTh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"iTp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iTy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"iTz" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"iTF" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"iTI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"iUx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/command) -"iUE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iUP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/department/electrical) -"iVb" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"iVA" = ( -/obj/structure/chair/comfy/black, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"iVH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library/abandoned) -"iVI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"iWa" = ( -/obj/structure/easel, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"iWi" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/service/chapel/main) -"iWG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"iWR" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"iXe" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"iXt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"iXT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"iYd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iYy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"iYA" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"iYC" = ( -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iYN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"iYT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"iZy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/surgery/room_b) -"iZC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"iZF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iZH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iZQ" = ( -/obj/machinery/door/airlock{ - name = "Auxiliary Storage Closet" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"iZY" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iZZ" = ( -/turf/closed/wall, -/area/cargo/sorting) -"jah" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"jam" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/bounty_board/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"jaL" = ( -/obj/machinery/camera{ - c_tag = "Library"; - name = "library camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"jaV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jbb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jbk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jbu" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"jbx" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"jbH" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jbI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"jbX" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"jcj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jck" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jcC" = ( -/obj/machinery/button/door{ - id = "brigwindows"; - name = "Cell Window Control"; - pixel_x = -32; - pixel_y = -26; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigfront"; - name = "Brig Access Control"; - pixel_x = -26; - pixel_y = -36; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - id = "brigprison"; - name = "Prison Lockdown"; - pixel_x = -38; - pixel_y = -36; - req_access_txt = "63" - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"jcD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jcE" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jcX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"jdj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/abandoned) -"jdv" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"jdJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/glass, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"jdL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"jdO" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jeb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jew" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"jfc" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jfz" = ( -/obj/structure/table/wood/poker, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"jfG" = ( -/obj/effect/landmark/start/quartermaster, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"jfU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jfV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"jgb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/port/aft) -"jgn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jgo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jgH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"jgK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"jgO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"jgR" = ( -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/machinery/light/directional/south, -/obj/structure/closet, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"jhd" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"jho" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"jhq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jhC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jhN" = ( -/obj/structure/table/reinforced, -/obj/item/bodypart/chest/robot, -/obj/item/mmi, -/obj/item/mmi, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"jhY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jio" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"jip" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"jir" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"jiy" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"jiB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos/upper) -"jiK" = ( -/obj/structure/sign/departments/botany, -/turf/closed/wall, -/area/service/hydroponics) -"jiM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"jiW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Mix to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jiX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"jjf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"jjm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"jjt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jju" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jjx" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "MedbayFoyer"; - name = "Medbay Doors Control"; - normaldoorcontrol = 1; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"jjB" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"jjM" = ( -/obj/effect/spawner/xmastree, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"jjN" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Science - Experimentation Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jkf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"jkj" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jkp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jkz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"jkE" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/requests_console/directional/south{ - department = "Law Office"; - name = "Law Office Requests Console" - }, -/turf/open/floor/wood, -/area/lawoffice) -"jkF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"jkO" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon, -/obj/item/stamp/hop, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"jli" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"jlX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"jmq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jmr" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jmz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"jmG" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"jmH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"jmU" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"jnc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jnj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jny" = ( -/obj/structure/table/wood, -/obj/item/instrument/eguitar, -/obj/item/toy/crayon/spraycan/lubecan{ - charges = 5 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"jnE" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jnN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"joJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"joN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"jpd" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"jpf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jpo" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"jpS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/fitness/recreation) -"jpY" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"jqd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"jqh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"jqu" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"jqx" = ( -/obj/structure/table_frame/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/library/abandoned) -"jqI" = ( -/obj/machinery/door/airlock/external{ - name = "Observatory"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"jqO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"jqY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery/room_b) -"jrh" = ( -/obj/structure/window, -/obj/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"jrm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jrt" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"jrC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"jrR" = ( -/obj/structure/sign/poster/ripped{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"jse" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/atmos) -"jsg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jsh" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"jsj" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jsr" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"jsB" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/cargo/warehouse) -"jsQ" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"jtm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"jts" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"jtJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"jtM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"jtO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"jtP" = ( -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"jtR" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera{ - c_tag = "Atmospherics - Turbine Access"; - dir = 1; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"juf" = ( -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -6; - pixel_y = 30 - }, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = 8; - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Science - Toxins Mixing Lab Burn Chamber"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"jug" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"jup" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jus" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jvd" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"jvy" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/break_room) -"jvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"jvO" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jvP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jvS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"jwc" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small/directional/north, -/obj/item/stack/package_wrap, -/obj/item/crowbar, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/service/janitor) -"jwg" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"jwE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"jwH" = ( -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plasteel, -/area/security/prison) -"jwO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jxd" = ( -/obj/structure/table, -/obj/item/clothing/suit/apron/overalls, -/obj/item/cultivator, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"jxf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jxm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"jxA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"jxD" = ( -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"jxH" = ( -/turf/closed/wall, -/area/cargo/storage) -"jxO" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"jya" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jyg" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access_txt = "27" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jyi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"jyl" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"jyF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"jzg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"jzh" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jzA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jzT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"jAg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/station{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/aisat) -"jAh" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solars/starboard/fore) -"jAr" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"jAt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jAB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jAK" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt3"; - name = "Cell 4" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "permashut4" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"jAM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"jAQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jAZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jBo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jBB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"jBI" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"jBK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"jBO" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"jCf" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"jCg" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/button/door/directional/north{ - id = "ceblast"; - name = "Lockdown Control"; - pixel_x = 24; - req_access_txt = "56" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"jCj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jCw" = ( -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jCE" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/camera{ - c_tag = "Security - Office Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jCF" = ( -/obj/machinery/button/door/directional/north{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - req_access_txt = "19" - }, -/obj/machinery/bluespace_beacon, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"jCR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"jDc" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/restrooms) -"jDv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jDJ" = ( -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"jDK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"jDV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"jEi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"jEz" = ( -/obj/machinery/camera{ - c_tag = "Science - Firing Range"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"jEG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/library/abandoned) -"jEH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"jEN" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"jEQ" = ( -/obj/machinery/door/window/brigdoor/northleft{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"jES" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/cargo/qm) -"jEV" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"jFf" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"jFj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jFk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"jFs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"jFQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"jFZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jGc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"jGf" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/effect/decal/cleanable/dirt, -/obj/item/hand_labeler, -/obj/item/food/grown/tea, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cherries, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"jGi" = ( -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"jGr" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jGJ" = ( -/obj/machinery/door/window{ - name = "Secure Art Exhibition"; - req_access_txt = "37" - }, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/library) -"jGK" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"jGY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jHc" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/commons/fitness/recreation) -"jHu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"jHv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jHF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jHI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jHY" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/command) -"jId" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"jIn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"jIs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"jIv" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"jIO" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port"; - dir = 4; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jIP" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/camera{ - c_tag = "Permabrig - Isolation"; - network = list("ss13","prison") - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"jJc" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jJq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"jJB" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/food/donut/jelly/choco, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jJG" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: PRESSURIZED DOORS" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"jJJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"jJW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/storage_shared) -"jJY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jKg" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"jKs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"jKt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"jKw" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/camera, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"jLb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"jLf" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jLq" = ( -/obj/machinery/vending/boozeomat, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"jLJ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"jLK" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jLY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jMn" = ( -/obj/machinery/camera{ - c_tag = "Telecomms - Cooling Room"; - dir = 8; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"jMo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"jMu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"jMK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/commons/locker) -"jMT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Engineering Auxiliary Storage"; - req_access_txt = "32" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jMX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jNc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - name = "Kitchen Desk"; - req_access_txt = "28" - }, -/obj/item/storage/bag/tray, -/obj/machinery/door/window/westleft, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jNq" = ( -/obj/structure/dresser, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"jNP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"jNQ" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"jNZ" = ( -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"jOq" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"jOF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jOJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jOW" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/engineering/atmos) -"jPc" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/service/library) -"jPm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jPq" = ( -/obj/machinery/space_heater, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"jPy" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jPM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jQa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"jQj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/starboard/fore) -"jQl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"jQA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"jQC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"jQH" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/service, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"jQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"jQO" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"jQS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"jQV" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jQW" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"jQY" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/service/hydroponics) -"jRm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 21 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"jRs" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jRA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"jRF" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"jSd" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"jSe" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/turf/open/floor/plating, -/area/science/mixing) -"jSw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"jSK" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/white, -/area/science/research) -"jSR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"jSZ" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"jTf" = ( -/obj/structure/closet/masks, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jTi" = ( -/turf/closed/wall, -/area/engineering/break_room) -"jTl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/computer/exoscanner_control{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"jTr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"jTz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"jTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"jTW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jUc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"jUh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/janitor) -"jUo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"jUV" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"jVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"jVn" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jVx" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"jVy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"jVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"jVX" = ( -/obj/structure/fireaxecabinet/directional/south, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"jWa" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 7 - }, -/turf/open/floor/plating, -/area/security/prison) -"jWj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command) -"jWl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"jWm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jWo" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/service/chapel/main) -"jWq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jWB" = ( -/turf/closed/wall, -/area/service/theater/abandoned) -"jWJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jWO" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"jWS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jXe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"jXl" = ( -/obj/structure/table/wood/fancy, -/obj/item/book/granter/spell/smoke/lesser, -/obj/item/nullrod, -/obj/item/organ/heart, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"jXt" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"jXU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library/abandoned) -"jYB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"jYD" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jYG" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"jYL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"jZj" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"jZK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"jZR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"jZS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"jZU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jZX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"kaB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kaN" = ( -/obj/structure/rack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/syringe/multiver, -/obj/machinery/vending/wallmed/directional/west, -/obj/machinery/camera{ - c_tag = "Bridge - Gateway Atrium"; - dir = 4; - name = "command camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"kaQ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"kbi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"kbs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/maintenance/solars/port/fore) -"kbv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kbz" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"kbC" = ( -/obj/machinery/holopad, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"kbD" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"kbN" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/five, -/obj/item/circuitboard/machine/paystand, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/vacant_room/commissary) -"kci" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"kct" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"kcu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"kcH" = ( -/obj/machinery/status_display/ai/directional/west, -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"kcK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"kcZ" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"kdz" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kdD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"kdI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kdJ" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"kdN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"kdP" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"kdQ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"kdV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kdX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"kdY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"kee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"keh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"ken" = ( -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Chapel Crematorium"; - dir = 8; - name = "chapel camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kep" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access"; - req_one_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"keR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"keW" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"kfa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kfc" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/electronic_marketing_den) -"kfh" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/regular/hipster, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"kfv" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"kfz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"kfD" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"kfO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"kfU" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"kgo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"kgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"kgR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kha" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"khl" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm6"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"khr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"khD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"khK" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"khP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"khQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridgewindows"; - name = "Bridge View Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command) -"khU" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/commons/dorms) -"kip" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"kiw" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"kiz" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 4; - network = list("vault") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"kiB" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console/directional/south{ - department = "Engineering"; - departmentType = 3; - name = "Engineering Requests Console" - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"kiK" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kiO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kiV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"kjh" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north{ - pixel_x = -26 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kjm" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"kjD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kjE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"kjL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kjN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/office) -"kjS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"kjX" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/wallet/random, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"kkW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"kld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"kle" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"kly" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"klB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kmg" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"kms" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/door/directional/south{ - id = "idquarters"; - name = "Privacy Control"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"kmR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"kmS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kmT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"kmX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"knd" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/dorms) -"kne" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"knk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"knt" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"knJ" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Locker Room - Fore"; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"knM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"knS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"koD" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"koH" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"koI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/meter/atmos/layer4, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"koU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"koZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kpk" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light_switch/directional/west{ - pixel_x = -38; - pixel_y = 8 - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = -38; - pixel_y = -7; - req_access_txt = "28" - }, -/obj/machinery/button/ticket_machine{ - pixel_y = 22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north{ - pixel_y = 30 - }, -/obj/machinery/button/door/directional/west{ - id = "hopblast"; - name = "Lockdown Blast Doors"; - pixel_y = 6; - req_access_txt = "57" - }, -/obj/machinery/button/door/directional/west{ - id = "hopline"; - name = "Queue Shutters Control"; - pixel_y = -6; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"kpm" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kpr" = ( -/obj/structure/table, -/obj/item/storage/box/masks{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"kpA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port) -"kpF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kpO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"kqg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"kqi" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"kqn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2O to Pure" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"kqC" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"kqD" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prisoner Workroom" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kqG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"kqH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"kry" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"krF" = ( -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"krH" = ( -/obj/structure/table, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"krI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"ksa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"ksh" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"ksk" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"ksq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"ksr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"ksz" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ksL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"ksV" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"ksX" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ktb" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Distro Loop"; - dir = 1; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"ktc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ktn" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ktw" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/carpet, -/area/service/chapel/office) -"ktN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"ktR" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ktT" = ( -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Engineering - Chief Engineer's Office"; - dir = 4; - name = "engineering camera" - }, -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ktU" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/captain, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"ktW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"kuc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/security/detectives_office/private_investigators_office) -"kue" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"kup" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kuv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"kvc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kvh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"kvi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kvl" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/cargotech, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/cargo/office) -"kvn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"kvv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"kvx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"kvy" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/wood, -/area/commons/dorms) -"kvK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"kvX" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"kwB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"kwH" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"kwQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/library/abandoned) -"kwV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"kwW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"kxk" = ( -/obj/machinery/door/airlock/atmos{ - name = "Turbine Generator Access"; - req_one_access_txt = "24;10" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kxn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kxv" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"kxN" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/command) -"kxR" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"kxU" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"kxX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space/basic, -/area/space) -"kyf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kyg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kyQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures Lounge" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kyR" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/window/reinforced, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kyT" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/wood, -/area/lawoffice) -"kyY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"kzh" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"kzj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access"; - req_one_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kzl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"kzm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kzp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/ridden/forklift{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kzH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kAa" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"kAc" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kAj" = ( -/obj/structure/table/wood, -/obj/item/soap/nanotrasen, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kAl" = ( -/obj/machinery/light_switch/directional/west{ - pixel_x = -38 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Construction"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/west{ - id = "construction"; - name = "Auxiliary Construction Shutters"; - req_access_txt = "72" - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"kAm" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/machinery/button/flasher{ - id = "Cell 1"; - name = "Prisoner Flash"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "permashut1"; - name = "Cell Lockdown Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kAu" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kAx" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"kAJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kAO" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"kBn" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"kBt" = ( -/turf/open/floor/carpet, -/area/service/library) -"kBu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"kBN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kBX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"kCh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kCj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kCw" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/curator, -/obj/item/radio/intercom/directional/south, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"kCz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"kCA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kCI" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/gloves, -/obj/effect/turf_decal/delivery, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/science/research) -"kCS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kDg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"kDv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"kDx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"kDK" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"kDP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"kDZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"kEi" = ( -/turf/closed/wall, -/area/service/kitchen) -"kEj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"kEo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kEq" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kEw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"kEH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - name = "Education Chamber"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"kER" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kET" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kFi" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"kFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"kFH" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"kGs" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"kGC" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"kGG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"kGO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"kGR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"kGW" = ( -/turf/closed/wall, -/area/command/heads_quarters/captain/private) -"kHa" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"kHb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kHv" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/item/taperecorder, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/electronic_marketing_den) -"kHw" = ( -/obj/machinery/light/directional/north, -/obj/structure/table/wood, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/item/grown/log, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"kHB" = ( -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"kHF" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"kHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"kIc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kIj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"kIw" = ( -/obj/machinery/computer/atmos_control{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the Engine."; - dir = 4; - layer = 4; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"kIA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/fitness/recreation) -"kIC" = ( -/obj/structure/table/wood, -/obj/item/instrument/guitar, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kIE" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"kIH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kJd" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"kJo" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kJx" = ( -/obj/item/stack/rods{ - amount = 25 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"kJB" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"kJE" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"kJJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"kJW" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"kKa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kKg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Quarters"; - req_access_txt = "27" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kKi" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kKu" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kKF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"kKW" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"kLb" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kLl" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kLq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"kLt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kLJ" = ( -/obj/machinery/meter, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kLO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"kLZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kMl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"kMn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kMC" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"kMN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kMR" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"kNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kOv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/dropper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kOD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"kOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kOP" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"kPa" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kPB" = ( -/obj/structure/chair/stool/bar, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"kPH" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"kPQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"kPY" = ( -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/masks, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"kQc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/engineering/storage_shared) -"kQd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kQh" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; - name = "Research Monitor"; - network = list("rd","minisat"); - pixel_y = 2 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/command) -"kQi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kQl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"kQs" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kQt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) -"kQA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kQF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"kQI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"kRf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kRh" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kRj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"kRl" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"kRn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"kRs" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"kRu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "evashutters"; - name = "E.V.A. Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kRC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"kRL" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"kRV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"kSb" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kSw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"kSD" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"kSO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kSQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"kTj" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/medical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"kTl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"kTp" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kTD" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kTQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"kUc" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"kUs" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/north, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/glass/rag, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/north{ - department = "Bar"; - name = "Bar Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kUu" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kUE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"kUH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/closet/crate, -/turf/open/space/basic, -/area/space/nearstation) -"kUO" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"kUP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"kUT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kUV" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"kVg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"kVi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"kVk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"kVJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"kVK" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"kWe" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"kWr" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"kWt" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"kWA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kWC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kWN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"kWO" = ( -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"kWS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"kWT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"kWW" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"kWY" = ( -/obj/structure/bed/dogbed/runtime, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"kXk" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kXn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"kXq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kXs" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kXx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kXP" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"kYd" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Auxiliary Port"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"kYk" = ( -/obj/structure/table/wood, -/obj/item/food/cheesiehonkers, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"kYo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kYC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"kYN" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/library/abandoned) -"kYQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kYS" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/aisat) -"kYV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"kZf" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"kZx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"kZE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"kZV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"laa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"lac" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"laj" = ( -/obj/structure/sink/kitchen{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"lak" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/science/server) -"laE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"laF" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Distro to Waste" - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"laY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lbh" = ( -/obj/machinery/door/window/westleft{ - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lbt" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lbz" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"lbJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel, -/area/command/gateway) -"lbK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lbR" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"lbV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"lce" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lcm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"lcu" = ( -/obj/machinery/light/directional/east, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/button/door/directional/east{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters"; - pixel_y = 6; - req_access_txt = "28" - }, -/obj/machinery/button/door/directional/east{ - id = "kitchenside"; - name = "Kitchen Side Shutters"; - pixel_y = -6; - req_access_txt = "28" - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lcv" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"lcz" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"lcB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/department/electrical) -"lcG" = ( -/obj/structure/urinal/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"lcH" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"lcU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ldr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"ldU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ldY" = ( -/turf/closed/wall, -/area/commons/vacant_room/office) -"lef" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos/upper) -"leh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Starboard"; - dir = 4; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"lep" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"leq" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"let" = ( -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"leC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Quarters"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"leH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"leI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"leK" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"leM" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"leS" = ( -/obj/structure/disposalpipe/sorting/mail{ - name = "Atmospherics Junction"; - sortType = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"leW" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxCabinA"; - name = "Cabin A"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"lfq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lfw" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lfH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/storage) -"lga" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lgs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"lgt" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"lgw" = ( -/obj/structure/closet/crate/bin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/toy/figure/syndie, -/obj/machinery/light/directional/east, -/turf/open/floor/plating, -/area/security/prison) -"lgA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/fore) -"lgC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lgR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"lhi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Telecomms Foyer"; - req_access_txt = "61" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"lhr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"lhy" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"lhK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/abandoned_gambling_den/secondary) -"lhS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"lhY" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"lia" = ( -/obj/machinery/telecomms/message_server/preset, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"lib" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"lii" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"lir" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"lis" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"liT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/electronic_marketing_den) -"liX" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/commons/dorms) -"ljl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"ljm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"ljt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"lke" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lkh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"lkl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lkt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"lkw" = ( -/obj/structure/table/glass, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"lkC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"lkG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lkI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"lkV" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"llc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"llo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"lls" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"llu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plating, -/area/science/xenobiology) -"lly" = ( -/obj/machinery/cell_charger, -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"llC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"llD" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"llZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"lmb" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1; - name = "command camera" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "bridgewindows"; - name = "Bridge View Blast Doors"; - pixel_x = -6; - req_access_txt = "19" - }, -/obj/machinery/button/door/directional/south{ - id = "bridgedoors"; - name = "Bridge Access Blast Doors"; - pixel_x = 6; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/command) -"lmi" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/machinery/light/cold/directional/east, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/maintenance/starboard/fore) -"lml" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lmt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Desk"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"lmu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lmD" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/crowbar, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/teleporter) -"lmL" = ( -/turf/closed/wall, -/area/engineering/engine_room/external) -"lmO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lmX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lnd" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lne" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/effect/turf_decal/arrows/white{ - color = "#800080"; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lnp" = ( -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"lnw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard) -"lny" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/service/chapel/main) -"lnB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"lnI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"lnM" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall7"; - location = "hall6" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"loc" = ( -/turf/open/floor/plasteel, -/area/medical/surgery/room_b) -"lom" = ( -/obj/item/kirbyplants/random, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"loE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"loI" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab1"; - name = "Research and Development Shutter" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"loK" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"loN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"loW" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"loX" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box{ - pixel_x = -8; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/inspector, -/obj/item/inspector{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"loY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"lpc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"lpN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/medical/virology) -"lpV" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lpW" = ( -/obj/structure/closet/crate, -/obj/item/toy/beach_ball/holoball/dodgeball, -/obj/item/toy/beach_ball/holoball/dodgeball, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/instrument/harmonica, -/obj/item/storage/pill_bottle/dice, -/obj/item/toy/cards/deck/tarot, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"lqq" = ( -/turf/open/floor/wood, -/area/service/library/abandoned) -"lqK" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"lqN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lqR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"lqS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/training_toolbox, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lrc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"lrk" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/camera{ - c_tag = "Recreation - Center"; - dir = 4; - name = "recreation camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lrw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Break Room"; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"lrZ" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"lsd" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lsG" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"lsL" = ( -/obj/machinery/camera{ - c_tag = "Hydroponics Backroom"; - dir = 1; - name = "service camera" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lsT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"lsV" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lsY" = ( -/obj/structure/table/reinforced, -/obj/item/plant_analyzer, -/obj/item/plant_analyzer, -/obj/item/radio, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"lte" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"lti" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/mixer/flipped, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"ltm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"ltx" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"ltH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"luf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"lun" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"luH" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Office" - }, -/obj/structure/bed/dogbed/lia, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"lvk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/commons/dorms) -"lvo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"lvG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lvY" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"lwc" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"lwm" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lwu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"lwv" = ( -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lwB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lwI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "brigprison"; - name = "Prison Lockdown"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lwN" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"lwZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lxe" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/item/stamp/captain, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"lxf" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/item/shovel/spade, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"lxk" = ( -/turf/open/floor/plasteel/dark, -/area/service/library) -"lxn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"lxr" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/photo_album/library, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"lxv" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/abandoned_gambling_den/secondary) -"lxC" = ( -/obj/structure/chair/office, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"lxM" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"lxQ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"lya" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"lyd" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"lyp" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"lyE" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lyK" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"lyN" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/structure/plasticflaps, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/storage) -"lyS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"lyU" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"lyV" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"lzb" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"lze" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/security/main) -"lzr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Shooting Range"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"lzx" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/library) -"lzB" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"lzI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/starboard/fore) -"lAe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"lAg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lAo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lAw" = ( -/obj/item/chair/plastic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"lAD" = ( -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"lAJ" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"lAK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"lAM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"lAQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"lAR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Telecomms Control Room"; - req_access_txt = "19; 61" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"lAU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lAV" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/dsquad, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"lBd" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lBf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"lBm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Center"; - dir = 1; - name = "dormitories camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"lBr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lBw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"lBH" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"lBN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"lBR" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"lBT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/pods{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"lCh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"lCm" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lDh" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"lDm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lDw" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"lEd" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/fancy/cigarettes/dromedaryco{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"lEl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"lEu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/storage) -"lEK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lEN" = ( -/obj/machinery/photocopier, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"lEQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"lET" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"lEU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"lFd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"lFz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "teleporterhubshutters"; - name = "Teleporter Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"lFV" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/command/heads_quarters/hop) -"lGt" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"lGy" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"lGO" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lHa" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"lHI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"lHS" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lHU" = ( -/obj/machinery/seed_extractor, -/obj/machinery/status_display/evac/directional/south, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"lHW" = ( -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"lIa" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/cargo/qm) -"lIc" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"lIk" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen/fourcolor, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"lIF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lIG" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/costume/geisha, -/obj/item/clothing/shoes/sandal, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"lIP" = ( -/obj/machinery/camera{ - c_tag = "Holodeck Control"; - name = "holodeck camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"lIU" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lJj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"lJt" = ( -/obj/machinery/recharger, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"lJI" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/service/chapel/main) -"lJZ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutters"; - name = "E.V.A. Storage Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lKe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"lKp" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"lKs" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lKV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lLl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"lLn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"lLo" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"lLA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lLW" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"lLY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/secure/safe{ - pixel_x = -27; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"lLZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"lMl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"lMm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"lMG" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southright, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"lMJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"lMM" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"lMO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"lNF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"lNK" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"lNO" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/service/library/abandoned) -"lNR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lNS" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"lOa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"lOb" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/pen, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"lOi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lOj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lOk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"lOl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"lOA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"lOE" = ( -/obj/structure/mirror/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"lON" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"lOV" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/abandoned_gambling_den) -"lPc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"lPn" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"lPy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lPG" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lPY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lQb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"lQc" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"lQk" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lQC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"lQF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lQJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"lQO" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 16 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/east{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lQQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lQX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"lQY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/command/gateway) -"lRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"lRq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lRJ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"lRK" = ( -/obj/machinery/computer/prisoner/management, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"lRN" = ( -/turf/closed/wall/r_wall, -/area/command/meeting_room/council) -"lSu" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"lSv" = ( -/obj/item/shovel/spade, -/obj/item/crowbar, -/obj/item/cultivator, -/obj/structure/table/glass, -/obj/item/seeds/wheat{ - pixel_x = 6 - }, -/obj/item/seeds/potato, -/obj/item/seeds/pumpkin{ - pixel_x = -6 - }, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/grapes, -/obj/item/food/grown/tomato, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lSw" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"lSL" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"lSZ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lTf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lTi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"lTm" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lTo" = ( -/obj/docking_port/stationary{ - dheight = 4; - dir = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "aux base zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"lTu" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Shared Storage"; - dir = 1; - name = "engineering camera" - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"lTG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"lTK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"lTR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Technology Storage"; - req_access_txt = "23" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"lUe" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/security/prison) -"lUo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"lUD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"lUP" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"lUW" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"lUX" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"lUY" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/library/abandoned) -"lVl" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"lVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"lVD" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"lVM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lVN" = ( -/obj/machinery/door/airlock/research{ - name = "Research Testing Range"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"lVS" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plating, -/area/service/library/abandoned) -"lWc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lWS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"lWW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"lXe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/button/door/directional/north{ - id = "engdoor"; - name = "Engineering Cell Control"; - normaldoorcontrol = 1; - pixel_y = 36 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"lXf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"lXC" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lXF" = ( -/obj/machinery/light/directional/east, -/obj/machinery/computer/atmos_control/toxinsmix{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"lXG" = ( -/obj/structure/table/wood, -/obj/item/coin/antagtoken, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"lXL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"lXM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"lYa" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"lYb" = ( -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"lYc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/space, -/area/space/nearstation) -"lYg" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"lYo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"lYp" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/medical/storage) -"lYD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lYM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"lYQ" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"lYR" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Supermatter"; - dir = 8; - name = "engineering camera" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lZd" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/engineering/supermatter) -"lZe" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/machinery/requests_console/directional/south{ - department = "Chapel"; - departmentType = 2; - name = "Chapel Requests Console" - }, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 1; - name = "chapel camera" - }, -/turf/open/floor/carpet, -/area/service/chapel/office) -"lZj" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lZk" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/camera{ - c_tag = "Engineering - Power Monitoring"; - dir = 1; - name = "engineering camera" - }, -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lZn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lZo" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lZt" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"lZv" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"lZC" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/assembly/infra, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"lZN" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/ai/directional/north, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/turf/open/floor/plasteel/dark, -/area/command) -"mat" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/service/library/abandoned) -"mau" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"max" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"maF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"maI" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"maO" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"maY" = ( -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"mbc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"mbo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"mbE" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall14"; - location = "hall13" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mbH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/service/library) -"mbI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"mbS" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space) -"mbT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mbW" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Central Hallway - Security Hallway"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mcl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"mcn" = ( -/obj/machinery/blackbox_recorder, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"mcx" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/item/clothing/glasses/welding, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white, -/area/science/lab) -"mcD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mcF" = ( -/obj/machinery/light/directional/north, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"mcZ" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/toy/crayon/spraycan{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/toy/crayon/spraycan, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/chisel{ - pixel_y = 7 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"mda" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"mdd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"mdm" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/paper/pamphlet/gateway, -/obj/item/paper/pamphlet/gateway, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"mdn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"mdC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"mdD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mdG" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"mdV" = ( -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/port/aft) -"mef" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 29 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"meA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"mfb" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"mfC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"mfP" = ( -/obj/machinery/vending/autodrobe, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"mfQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/xenobiology) -"mga" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"mgt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"mgF" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 5 - }, -/obj/item/toy/figure/clown, -/obj/item/clipboard, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/service/theater) -"mgQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"mgU" = ( -/obj/structure/closet/secure_closet/security, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"mgW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"mhh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mhj" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"mhv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mhy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mhI" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west{ - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"mhQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"mhX" = ( -/obj/machinery/camera{ - c_tag = "Art Gallery"; - name = "library camera" - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/wood, -/area/service/library) -"mif" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/lightreplacer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/service/janitor) -"mio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"mit" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mix" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/retractor, -/obj/item/hemostat, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"miV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mjA" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"mjD" = ( -/obj/machinery/door/window{ - dir = 8; - name = "Theater Stage" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"mjZ" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - n2o Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"mkl" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/layer_manifold/green/visible, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mkm" = ( -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"mkz" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS" - }, -/turf/closed/wall/r_wall, -/area/command/gateway) -"mkL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"mkO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"mkY" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mlc" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mlg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mlq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"mlu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"mlw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "brigflashdoor"; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"mlx" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/primary/aft) -"mlz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"mlC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"mlD" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"mlE" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"mlQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"mme" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"mmo" = ( -/obj/structure/plaque/static_plaque/golden{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) -"mms" = ( -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"mmy" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"mmR" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"mnn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mnr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Tool Storage" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mny" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/cargo, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mnC" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mnM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"mnN" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/poppy, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"mnS" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/carpet, -/area/service/library/abandoned) -"mnX" = ( -/obj/structure/cable, -/obj/machinery/computer/rdconsole, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"mnY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mow" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"moD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"moJ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"moQ" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/head/kitty, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/commons/dorms) -"moT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/cargo/warehouse) -"moY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mpu" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/highsecurity{ - name = "MiniSat Chamber"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "aicoredoor"; - name = "AI Core Access" - }, -/obj/machinery/flasher/directional/west{ - id = "AI" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"mpy" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/security/prison) -"mpA" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"mpK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mpQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mpS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall2"; - location = "hall1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mqj" = ( -/obj/structure/chair/wood, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"mqu" = ( -/obj/machinery/smartfridge/organ, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"mqx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"mqy" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/light_switch/directional/east{ - pixel_x = 38 - }, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/button/door/directional/east{ - id = "hosprivacy"; - name = "Privacy Control"; - pixel_y = 6; - req_access_txt = "58" - }, -/obj/machinery/button/door/directional/east{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_y = -6; - req_access_txt = "58" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"mqA" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"mqC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mqO" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"mqR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"mrc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"mrl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mrr" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"mru" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"mrx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"mrC" = ( -/obj/structure/toilet/greyscale, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"mrD" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"mrK" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"mrN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"mrY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"msh" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/command/teleporter) -"msG" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/meeting_room/council) -"msO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mtd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"mtf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mtj" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"mtm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"mtn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"mtp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mtv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mtH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mtO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"mtX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"mue" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"mui" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"muI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"muW" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"mve" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Quarters"; - req_access_txt = "58" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"mvi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"mvj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"mvD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"mvJ" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/service/library/abandoned) -"mvK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 5 - }, -/turf/open/space, -/area/space/nearstation) -"mvL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"mvM" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mwk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"mwB" = ( -/obj/machinery/teleport/hub, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"mwI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mxb" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/restraints/handcuffs, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"mxt" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"mxu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Transferring Control"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"mxv" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mxL" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"mxS" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"myk" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"myF" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/commons/dorms) -"myM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"myP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"myU" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"myW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"mzf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "HoP Junction"; - sortType = 15 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"mzj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"mzs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mzv" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"mzB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"mzQ" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"mzR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"mzX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"mAq" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mAt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"mAC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mAP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"mBg" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Magboot Storage"; - pixel_x = -1; - req_access_txt = "18" - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"mBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mBi" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"mBn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mBp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mBt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"mBA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"mBF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"mBW" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mCn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"mCz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"mCA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mCW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mCX" = ( -/obj/structure/closet/secure_closet/injection, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"mCY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mDk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mDs" = ( -/obj/structure/table, -/obj/item/paicard, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"mDy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mDE" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mDX" = ( -/obj/structure/chair/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"mEh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"mFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"mFb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/medical/virology) -"mFe" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mFg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research) -"mFj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"mFt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel, -/area/security/main) -"mFB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"mFE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"mGk" = ( -/obj/machinery/power/emitter{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"mHs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mHx" = ( -/obj/structure/bookcase, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/service/library/abandoned) -"mHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"mHJ" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"mHW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mHY" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"mIc" = ( -/turf/open/space/basic, -/area/space/nearstation) -"mIm" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"mIv" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt3"; - name = "Cell 5" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "permashut5" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"mIK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"mIW" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"mIX" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"mJf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mJl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"mJr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"mJw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mJE" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"mJI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"mJX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"mKe" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"mKf" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"mKn" = ( -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"mKq" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/lawoffice) -"mKr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"mKA" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/command/teleporter) -"mKM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/library) -"mKV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mLh" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mLk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"mLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"mLw" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage_shared) -"mLx" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"mLO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"mLS" = ( -/obj/structure/table, -/obj/item/storage/secure/safe/directional/north, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/door/directional/east{ - id = "commissaryshutters"; - name = "Commissary Shutters Control" - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"mMg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mMy" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"mMF" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"mMH" = ( -/obj/structure/closet/secure_closet/captains, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/captain/private) -"mMQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"mMT" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"mNh" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/service/library) -"mNl" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Power Tools"; - dir = 1; - name = "engineering camera" - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"mNo" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"mNs" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/restrooms) -"mNP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"mNQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mNS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"mNT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"mNX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"mNY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"mOg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"mOB" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mOE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"mOI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mOU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"mPp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"mPw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mPB" = ( -/obj/machinery/computer/communications, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"mPH" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mPM" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mPZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"mQn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - id = "cargoload" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mQp" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/main) -"mQK" = ( -/obj/machinery/door/airlock{ - name = "Jury"; - req_access_txt = "42" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"mQN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"mQO" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/commons/dorms) -"mQQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mQW" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"mQX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"mRh" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"mRw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"mRz" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"mRF" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mRI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"mRQ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mSa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chambers"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"mSy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mSA" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/aisat) -"mSD" = ( -/obj/machinery/pdapainter, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"mST" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"mSW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"mTb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"mTf" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"mTl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"mTP" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"mTZ" = ( -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"mUD" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mVa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mVf" = ( -/obj/structure/bed, -/obj/item/bedsheet/hos, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Quarters" - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"mVk" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"mVv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Toilet Unit 2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"mVC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "justicechamber"; - name = "Justice Chamber Blast door" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution/education) -"mVI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"mVK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"mVN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"mVY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"mWc" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/electronic_marketing_den) -"mWd" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xeno3"; - name = "Containment Control"; - req_access_txt = "55" - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"mWu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mWz" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"mWI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mWO" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"mWW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"mXc" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"mXI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mXM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mXX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"mYb" = ( -/obj/item/clothing/gloves/color/black, -/obj/structure/table/reinforced, -/obj/item/clothing/glasses/meson/engine/tray, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mYk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central/secondary) -"mYA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"mZd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"mZk" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"mZl" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Security Maintenance"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"mZs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"mZD" = ( -/turf/closed/wall, -/area/engineering/atmos) -"mZW" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nad" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/commons/locker) -"naj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"naq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"nav" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"naF" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore"; - dir = 1; - name = "hallway camera" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"naG" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"naO" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"naR" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"nbc" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"nbq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nbs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"nbt" = ( -/obj/structure/destructible/cult/tome, -/obj/item/book/codex_gigas, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"nbv" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/food/chococoin{ - pixel_y = 6 - }, -/obj/item/food/chococoin{ - pixel_x = 6 - }, -/obj/item/food/chococoin{ - pixel_x = -6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nbw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/structure/displaycase/forsale/kitchen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nbF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nbH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"nbI" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"nbO" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"nbQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nbX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nca" = ( -/obj/machinery/disposal/bin, -/obj/machinery/requests_console/directional/north{ - department = "Tool Storage"; - name = "Tool Storage Requests Console" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"nce" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall10"; - location = "hall9" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ncp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ncv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"ncE" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/brig) -"ncF" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ncM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"ncP" = ( -/obj/machinery/camera{ - c_tag = "Genetics Lab"; - dir = 1; - name = "genetics lab camera" - }, -/obj/effect/landmark/start/geneticist, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"ncV" = ( -/turf/closed/wall, -/area/service/bar/atrium) -"ncY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ndg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"ndi" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ndr" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ndz" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"ndE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"ndF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"ndO" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"ndP" = ( -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ndS" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ndT" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ndV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ndW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"neh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"ner" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"neu" = ( -/obj/structure/dresser, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"nev" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"neD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"nfl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"nfp" = ( -/obj/machinery/meter, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nfs" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/abandoned_gambling_den/secondary) -"nfE" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nfI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"nfK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library/abandoned) -"nfS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nfX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"nfZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ngg" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/razor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ngz" = ( -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ngC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Miscellaneous Storage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"ngT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"nhf" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"nhi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/vacant_room/commissary) -"nhj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nhp" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"nhx" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"nib" = ( -/obj/structure/table/wood, -/obj/item/toy/plush/carpplushie{ - name = "Nemo" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"nih" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nik" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nil" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"niz" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/atmos{ - name = "Port Bow Solar Access"; - req_one_access_txt = "24;10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"niL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"niR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"niW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nja" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"njj" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"njv" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"njy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"njR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nkb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nkd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nkf" = ( -/obj/machinery/photocopier, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security's Requests Console" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"nkz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"nkB" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"nkD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nkL" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"nkU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"nlj" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/command/teleporter) -"nlw" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/purple, -/obj/item/radio/intercom/directional/east, -/obj/machinery/newscaster/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"nlA" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nlB" = ( -/turf/closed/wall, -/area/service/chapel/main) -"nlJ" = ( -/obj/machinery/camera{ - c_tag = "Virology - Hallway"; - dir = 8; - name = "virology camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"nlX" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"nme" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"nmC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nmO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"nmR" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nnf" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/port/aft) -"nnn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nnp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"nny" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/fireaxecabinet/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"nof" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/computer/warrant{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"noj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"noK" = ( -/obj/structure/bookcase, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"noM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"noY" = ( -/obj/machinery/computer/med_data/laptop, -/obj/structure/table/glass, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"npf" = ( -/turf/closed/wall, -/area/engineering/storage_shared) -"npH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"npO" = ( -/obj/machinery/camera/motion{ - c_tag = "E.V.A. Storage"; - dir = 8; - name = "motion-sensitive command camera" - }, -/obj/machinery/requests_console/directional/east{ - department = "EVA"; - name = "EVA Requests Console" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"npX" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"npZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nqe" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"nqg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"nqQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"nqS" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nqU" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"nqX" = ( -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"nre" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Bridge Starboard"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nrg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"nru" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"nry" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Science - Waiting Room"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/item/gps, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"nsh" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"nsj" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/electronics/apc, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"nsp" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/security/prison/safe) -"nsF" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nsK" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/quartermaster, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nsR" = ( -/obj/structure/table, -/obj/item/camera, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"nsS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"ntf" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Fore Port"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ntg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ntj" = ( -/obj/structure/sign/directions/science, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/commons/storage/primary) -"ntl" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Fore"; - dir = 1; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"ntm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nty" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"ntC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ntH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"ntJ" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ntL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ntV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nuh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"nuA" = ( -/obj/structure/table/wood, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"nuU" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nuW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"nvf" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"nvt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"nvw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"nvW" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"nwa" = ( -/turf/closed/wall, -/area/command/heads_quarters/rd) -"nwi" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/starboard/aft) -"nwo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Theater"; - req_access_txt = "45" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"nwt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"nwD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nwG" = ( -/obj/item/beacon, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"nwK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nwU" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"nwW" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/closet/crate/wooden/toy, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"nxf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"nxi" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nxr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"nxt" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"nxv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nxy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"nxA" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"nxG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"nxJ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nyA" = ( -/obj/structure/table/wood, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 7 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/command/meeting_room/council) -"nyB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nyC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"nyF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"nyI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nyQ" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"nyV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"nzc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"nzf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nzh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"nzn" = ( -/obj/machinery/light/directional/west, -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/library) -"nzq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"nzz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nzN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/departments/court{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nzX" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/service/library) -"nAl" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nAo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"nAG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nAL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nAV" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"nAZ" = ( -/obj/structure/table/wood, -/obj/item/food/baguette, -/obj/item/toy/crayon/spraycan/mimecan{ - charges = 5 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"nBn" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/library/abandoned) -"nBD" = ( -/obj/machinery/icecream_vat, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nBQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/theater/abandoned) -"nBR" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"nCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"nCg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nCn" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/engineering/storage/tech) -"nCp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nCC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nCJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nCS" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"nDa" = ( -/obj/effect/landmark/start/clown, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"nDe" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"nDl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nDr" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"nDx" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"nDy" = ( -/obj/structure/table, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nDA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"nDB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"nDC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nDF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivacy"; - name = "Chief's Privacy Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"nDH" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"nDJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nDO" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"nDV" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"nDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nDZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"nEf" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/papersack/smiley, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"nEh" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"nEr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nEv" = ( -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/service/library) -"nEK" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"nEL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nEX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nFf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/white, -/area/science/research) -"nFm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"nFn" = ( -/obj/machinery/gulag_teleporter, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"nFv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nFE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/color_adapter{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nFI" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ - pixel_x = -30 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"nFS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 4; - name = "service camera" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nGs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"nGu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"nGy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nGD" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room"; - name = "service camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nGP" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"nGS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"nGZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nHa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/highsecurity{ - name = "Emergency Access"; - req_one_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nHf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"nHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"nHT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/seeds/lime{ - pixel_x = 6 - }, -/obj/item/seeds/watermelon, -/obj/item/seeds/grape{ - pixel_x = -6 - }, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/banana, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nIa" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"nIb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/hostile/lizard/wags_his_tail, -/turf/open/floor/plating, -/area/service/janitor) -"nIj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"nIl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port) -"nIm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"nIx" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nIF" = ( -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Recreation - Fore"; - name = "recreation camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nIK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nIQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"nIT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"nIV" = ( -/turf/closed/wall, -/area/service/janitor) -"nJb" = ( -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nJc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/engineering/storage_shared) -"nJh" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"nJo" = ( -/turf/closed/wall, -/area/service/library) -"nJq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"nJA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"nKj" = ( -/obj/machinery/camera{ - c_tag = "Science - Center"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nKm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nKv" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Cell 3"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"nKw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/lab) -"nKE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"nKF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nKI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nKJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"nKN" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stock_parts/cell/high, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"nLa" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"nLn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_room/external) -"nLq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/item/reagent_containers/hypospray/medipen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nLs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"nLQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"nLZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nMv" = ( -/obj/structure/frame/computer, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"nMS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nNm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nNn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nNw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/abandoned_gambling_den/secondary) -"nNC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"nND" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/break_room) -"nNI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nNO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nNX" = ( -/obj/machinery/door/window/northright, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"nOc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"nOf" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/machinery/camera{ - c_tag = "Medbay - Treatment Center"; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"nOg" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space) -"nOA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nOD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"nOH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"nOL" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"nOS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"nOX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"nPk" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"nPB" = ( -/turf/closed/wall, -/area/service/chapel/office) -"nPC" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/camera{ - c_tag = "Bridge - Teleporter"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"nPG" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"nPM" = ( -/turf/closed/wall, -/area/service/abandoned_gambling_den) -"nPY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"nQm" = ( -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"nQv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"nQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nQX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"nRq" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/dorms) -"nRx" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/qm, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"nRI" = ( -/obj/item/exodrone, -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/box, -/obj/effect/decal/cleanable/oil/slippery, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nRM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nRT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"nRW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"nSi" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/obj/machinery/button/door/directional/west{ - id = "Dorm1"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"nSn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"nSp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"nSr" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil/five, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/east, -/obj/machinery/button/door/directional/south{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"nSt" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nSD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"nSJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nTb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nTc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nTg" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"nTq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"nTx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"nTB" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"nTI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"nTL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nTO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"nTT" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"nTX" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Supermatter Emitters"; - name = "engineering camera" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"nUb" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"nUd" = ( -/obj/machinery/light/directional/west, -/obj/structure/reflector/single, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"nUg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"nUj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"nUr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nUv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"nUx" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/library/abandoned) -"nUB" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nUD" = ( -/obj/structure/table, -/obj/item/stack/sheet/cloth/ten, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nUH" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"nUI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"nUZ" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/surgery) -"nVc" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"nVk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"nVl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/library/abandoned) -"nVB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"nVI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"nVW" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"nVY" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"nWg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"nWl" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"nWu" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nWI" = ( -/obj/structure/chair/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"nXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"nXv" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"nXy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"nXD" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nXJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/engineering/break_room) -"nYb" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"nYd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"nYj" = ( -/turf/open/floor/wood, -/area/command/meeting_room/council) -"nYk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"nYU" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"nYZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"nZc" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"nZf" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"nZh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"nZi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"nZn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"nZv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nZB" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"nZN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"nZO" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/chapel{ - pixel_y = -27 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"oak" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oan" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"oas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oat" = ( -/turf/open/floor/plating, -/area/cargo/warehouse) -"oay" = ( -/obj/machinery/bounty_board/directional/north, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"oaQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"obg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/service/theater) -"obh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"obk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"obm" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"obn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"obt" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Prisoner Telescreen"; - network = list("prison"); - pixel_x = 27 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"obu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"obx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"obG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"obY" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ocb" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/port) -"ocn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"ocp" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"ocu" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ocw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ocA" = ( -/obj/machinery/door/airlock/external{ - name = "MiniSat Exterior Access"; - req_one_access_txt = "13;32" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"ocC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ocD" = ( -/obj/machinery/photocopier, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ocG" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Psychology Maintenance"; - req_access_txt = "70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ocQ" = ( -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ocW" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"odf" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/wirecutters, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"odp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"ods" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"odz" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"odF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"odR" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"odU" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/button/door/directional/north{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"oej" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"oel" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"oer" = ( -/obj/machinery/door/poddoor/preopen{ - id = "rdxeno"; - name = "Xenobiology Containment Door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oeE" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/machinery/camera{ - c_tag = "Vacant Office"; - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"oft" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/service/hydroponics) -"ofJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ofO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"ofT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ogi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/abandoned_gambling_den) -"ogs" = ( -/obj/item/kirbyplants/random, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ogt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ogz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ogB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ogE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ogH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ogK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"ogT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"oha" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"ohb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ohn" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/computer/atmos_control, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"ohq" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"ohy" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/wirecutters, -/obj/item/shovel/spade, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ohC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ohN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"ohQ" = ( -/turf/open/floor/plasteel, -/area/security/main) -"ohW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"oid" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"oiq" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"oiC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm6"; - name = "Cabin 6" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"oiZ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/space, -/area/space/nearstation) -"ojg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"ojk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"ojo" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ojz" = ( -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"ojF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ojI" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/cargo/qm) -"ojK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/button/door/directional/west{ - id = "Dorm5"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"ojO" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ojS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ojT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"okc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"okj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"okm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"okn" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"oks" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"okB" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"okK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"okL" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"okN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"okV" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"okW" = ( -/obj/effect/decal/cleanable/blood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/security/prison/safe) -"ole" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"olf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oli" = ( -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"olj" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/item/hatchet, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"olk" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"olC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"olF" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"olH" = ( -/obj/machinery/light/directional/south, -/obj/machinery/processor, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"olN" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/trash/sosjerky, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"olS" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"olW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"olY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"omp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"omx" = ( -/obj/machinery/door/airlock/mining{ - name = "Drone Bay"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"omF" = ( -/obj/machinery/food_cart, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"omM" = ( -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"onc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"oni" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"onk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library/abandoned) -"onI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off/dark/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"onJ" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"onR" = ( -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Security - Brig Center"; - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"onU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oof" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"oog" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ooj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ooH" = ( -/obj/machinery/camera{ - c_tag = "Engineering Hallway - Starboard"; - name = "hallway camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"ooJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ooT" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"opg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"opi" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"opn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"opA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"opE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"opF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"opX" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"oqm" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/service/library/abandoned) -"oqq" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oqI" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"oqN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"orw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"orG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"orN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"orZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"osc" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"osi" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"osj" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"osF" = ( -/obj/machinery/keycard_auth/directional/south{ - pixel_y = -38 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - pixel_x = -6; - req_access_txt = "19" - }, -/obj/machinery/button/door/directional/south{ - id = "evastorage"; - name = "E.V.A. Shutters"; - pixel_x = 6; - req_access_txt = "19" - }, -/turf/open/floor/carpet, -/area/command) -"osN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"osV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ota" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space, -/area/solars/port/fore) -"ote" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"oth" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"otq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"otC" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"otJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"otK" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"otP" = ( -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"oub" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ouA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ouD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"ouO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"ouP" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet2"; - name = "Toilet Unit 2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"ouR" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ovo" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ovA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/main) -"ovE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"ovG" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/structure/transit_tube/station/reverse/flipped, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"ovU" = ( -/turf/closed/wall, -/area/medical/paramedic) -"owj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"owk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"owl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ows" = ( -/obj/structure/table/wood, -/obj/item/poster/random_contraband{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/poster/random_contraband{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/poster/random_contraband, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"owx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"owE" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"owI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"owY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"oxd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - name = "Bar Delivery"; - req_access_txt = "25" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"oxk" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/machinery/vending/boozeomat/all_access, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"oxn" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"oxD" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Bar"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"oxS" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"oyd" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/item/cartridge/atmos, -/obj/item/stamp/ce, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"oyh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"oyj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"oyx" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"ozg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"ozp" = ( -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/crowbar, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"ozq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ozv" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"ozy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ozH" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"ozI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/science/research) -"ozO" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"ozQ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "Library Junction"; - sortType = 16 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"ozS" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Toilet Unit" - }, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"ozU" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"oAe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oAo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"oAw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"oAx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/hallway/primary/aft) -"oAN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"oAS" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"oAX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"oBn" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"oBs" = ( -/turf/closed/wall, -/area/cargo/qm) -"oBt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"oBu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oBv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/department/electrical) -"oBO" = ( -/obj/structure/chair/stool/bar, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"oBU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"oCe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"oCh" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"oCs" = ( -/obj/structure/bed, -/obj/item/bedsheet/hop, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"oCQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"oCS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"oCU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"oCX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/main) -"oCZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oDi" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"oDC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oDH" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oEr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/construction) -"oEu" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oEw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"oEH" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/airalarm, -/obj/item/electronics/apc, -/obj/machinery/camera{ - c_tag = "Technology Storage"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"oEL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oEW" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"oFd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"oFe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"oFo" = ( -/obj/item/chair/stool/bar{ - pixel_y = -8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"oFE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"oFI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oFV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Delivery Office"; - dir = 1; - name = "cargo camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"oFY" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"oGa" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"oGt" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"oGA" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"oGB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"oGK" = ( -/obj/machinery/light/directional/south, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"oGL" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Kitchen" - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"oGN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"oGQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oGR" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/yellow, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"oHb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"oHg" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"oHl" = ( -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"oHv" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/engineering/storage) -"oHx" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - HFR Main Room"; - name = "atmospherics camera" - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oHy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oHB" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oHH" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"oHK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oIf" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/electronic_marketing_den) -"oIg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"oIl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"oIv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"oIE" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"oIJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"oIN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"oIQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oIR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oIS" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"oIT" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/meeting_room/council) -"oIX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"oJh" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oJi" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"oJq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"oJz" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/turf_decal/bot, -/obj/item/food/dough, -/obj/item/holosign_creator/robot_seat/restaurant, -/turf/open/floor/plasteel, -/area/service/kitchen) -"oJG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"oJI" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore"; - dir = 1; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"oJS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"oKg" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"oKw" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/paicard, -/turf/open/floor/wood, -/area/commons/dorms) -"oKG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oKN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"oKZ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"oLa" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"oLd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"oLg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"oLh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"oLo" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/electronics/airlock, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"oLs" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/locker) -"oLy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/insectguts, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"oLE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"oLJ" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"oMa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"oMh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"oMw" = ( -/obj/docking_port/stationary/public_mining_dock{ - dir = 4 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"oMA" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oMH" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"oMW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oNa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"oNd" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"oNe" = ( -/obj/effect/turf_decal/arrows/white, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oNl" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oNH" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"oNM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oNR" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"oNS" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oOe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"oOl" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"oOD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"oOH" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"oOU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oPu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"oPv" = ( -/obj/item/kirbyplants/random, -/obj/machinery/door_timer{ - id = "brig2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"oPz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"oPC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"oPF" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oPH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"oPN" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/sorting) -"oQf" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"oQn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"oQt" = ( -/obj/structure/lattice, -/turf/open/space, -/area/engineering/atmos) -"oQz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 9 - }, -/turf/open/space, -/area/space/nearstation) -"oQC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oQN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oQR" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"oRe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"oRk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oRn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"oRo" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"oRC" = ( -/obj/structure/table, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oRG" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/department/electrical) -"oRI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"oSc" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oSd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"oSi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"oSl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"oSm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oSn" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/teleporter) -"oSM" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oSQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"oTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"oTk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"oTt" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Permabrig - Fitness"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"oTF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"oTT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"oUf" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transitlock"; - name = "Transit Tube Lockdown Door" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"oUq" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cooling to Filters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"oUA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/hydroponics) -"oUW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"oUZ" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/service/janitor) -"oVk" = ( -/obj/structure/sign/warning/nosmoking/circle{ - pixel_x = 28; - pixel_y = -28 - }, -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"oVm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"oVs" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oVN" = ( -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"oVQ" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/syndicate{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"oWe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"oWj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"oWK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"oWN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"oWP" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oWX" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"oWZ" = ( -/obj/machinery/light_switch/directional/south, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/wrench, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"oXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"oXn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oXw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Security Hallway - Fore"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oXG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/main) -"oXH" = ( -/obj/machinery/light/directional/south, -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Library - Aft"; - dir = 1; - name = "library camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/wood, -/area/service/library) -"oXW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"oXX" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"oYb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"oYc" = ( -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"oYf" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/fifty, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel, -/area/engineering/storage) -"oYv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"oYy" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/cargo/office) -"oYB" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/chococoin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"oYG" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"oYI" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"oYK" = ( -/obj/machinery/door/airlock{ - name = "Auxiliary Office" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room/office) -"oYL" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"oYU" = ( -/obj/structure/table, -/obj/item/shovel/spade, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 5 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"oZa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"oZo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oZO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"oZT" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"oZW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oZY" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"pal" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"paw" = ( -/obj/machinery/door/airlock/security{ - name = "Isolation Cell"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"paR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"pbd" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"pbi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pbj" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/clothing/head/witchwig, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = -26 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"pbl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"pbn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/westright{ - name = "Cargo Office Delivery"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"pbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pbx" = ( -/obj/structure/fireplace, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"pbM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"pcq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"pcN" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/lawoffice) -"pcP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"pcV" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/checker, -/area/engineering/engine_room/external) -"pdo" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pdr" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical, -/obj/structure/sign/directions/security{ - pixel_y = 8 - }, -/turf/closed/wall, -/area/service/library) -"pdv" = ( -/obj/structure/bed, -/obj/item/bedsheet/ce, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/ce) -"pdK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ped" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/table/reinforced, -/obj/machinery/requests_console/directional/north{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"pek" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"pel" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"peo" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"peu" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"peM" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"peT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"peY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"pfb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"pff" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/turf/open/floor/plating, -/area/security/prison) -"pft" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/turf/open/floor/plasteel, -/area/security/brig) -"pfD" = ( -/obj/structure/noticeboard/directional/south{ - name = "memorial board" - }, -/obj/machinery/holopad, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Chapel - Aft"; - dir = 1; - name = "chapel camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"pfI" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pfQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pfR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitory Hallway"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"pgz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"pgZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pho" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"phw" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/dark, -/area/service/library) -"phx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"phH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"phR" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/airlock_painter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"pij" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"pir" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"piZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"pje" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"pjK" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"pjU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"pkx" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"pkB" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"pkM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"pkQ" = ( -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"pkT" = ( -/obj/structure/closet/secure_closet/bar, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"pkY" = ( -/obj/structure/sign/poster/official/help_others{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"plf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"plg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"plo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"plq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"plu" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutters"; - name = "Vacant Commissary Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"plD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"plN" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"plV" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"plY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"pmb" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pmi" = ( -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"pms" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pmI" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/aisat) -"pmL" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/space) -"pmQ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"pmV" = ( -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pnj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"pnk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Maintenance"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"pny" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"pnH" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pnL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pnR" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"pnS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"pnW" = ( -/obj/machinery/computer/med_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"poe" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"poj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pok" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"poX" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"ppn" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/pharmacy) -"ppo" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 3 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = -3 - }, -/obj/item/wrench, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ppt" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ppU" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"pqa" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"pqg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/engineering/storage_shared) -"pqs" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pqt" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"prq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"prD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/lawoffice) -"prF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"prK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"prO" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"prP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"prZ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/memeorgans{ - lootcount = 1 - }, -/turf/open/floor/plating, -/area/service/library/abandoned) -"psw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"pta" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ptk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"ptv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ptA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"ptD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"ptG" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8 - }, -/obj/item/kitchen/knife, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"ptO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"ptS" = ( -/obj/machinery/computer/prisoner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"pun" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"puA" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"puL" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"puN" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"pvd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"pvg" = ( -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/port/fore) -"pvh" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"pvo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pvA" = ( -/obj/structure/sign/directions/command{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/command/gateway) -"pvW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"pwm" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pwB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"pwP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pwR" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pwX" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"pwZ" = ( -/turf/closed/wall, -/area/service/theater) -"pxc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/fore) -"pxd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"pxg" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"pxk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pxq" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"pxA" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/cmo, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"pxF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"pxG" = ( -/turf/closed/wall, -/area/medical/pharmacy) -"pxU" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"pyF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"pyO" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"pza" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"pzf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pzg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/space) -"pzj" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"pzk" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/library) -"pzl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"pzs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"pzz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"pzC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"pzM" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"pAm" = ( -/obj/structure/filingcabinet, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"pAs" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"pAC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/service/library) -"pAG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"pAJ" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"pAO" = ( -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"pBz" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"pBK" = ( -/obj/machinery/flasher/directional/north{ - id = "AI" - }, -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"pBT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pBU" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"pCe" = ( -/turf/closed/wall/r_wall, -/area/service/chapel/office) -"pCj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"pCn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"pCr" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/mining_voucher, -/turf/open/floor/plasteel/dark, -/area/command) -"pCB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"pCG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"pCQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/space/basic, -/area/space/nearstation) -"pDd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"pDj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/department/electrical) -"pDr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pDs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"pDA" = ( -/turf/closed/wall, -/area/cargo/miningoffice) -"pDG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "CO2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pDT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pDW" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"pDX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pEs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"pES" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"pEZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_room/external) -"pFe" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pFk" = ( -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"pFl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"pFL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pGb" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/rd, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"pGi" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/radiation{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"pGB" = ( -/obj/structure/bed/dogbed/renault, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/pet/fox/renault, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"pGD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"pGM" = ( -/obj/structure/window{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/kitchen{ - req_access = null - }, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/onion, -/obj/item/food/grown/onion, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/ripped{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"pGU" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/modular_computer/console/preset/civilian, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/science/research) -"pHb" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"pHc" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/service/chapel/office) -"pHg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"pHy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pHV" = ( -/obj/structure/table/glass, -/obj/item/folder/yellow, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"pHW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"pHZ" = ( -/obj/machinery/door/airlock/virology{ - name = "Virology Cabin"; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"pIj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pIy" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"pIG" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"pIM" = ( -/turf/open/floor/plating, -/area/service/theater/abandoned) -"pIO" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/cargo/qm) -"pIR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"pIZ" = ( -/turf/closed/wall/r_wall, -/area/engineering/transit_tube) -"pJb" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/security/prison) -"pJd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"pJu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pJD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"pJJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space, -/area/space/nearstation) -"pJR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"pJU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pJV" = ( -/obj/item/storage/pod{ - pixel_x = 32 - }, -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"pKe" = ( -/obj/structure/table/wood, -/obj/item/instrument/guitar, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"pKK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"pKR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"pKW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"pLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"pLf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"pLr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"pLD" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/camera{ - c_tag = "Atmospherics - Desk"; - dir = 8; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pLZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"pMb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"pMc" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pMn" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"pMz" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"pMB" = ( -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"pMO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"pNm" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"pNu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pNB" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pND" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plating, -/area/maintenance/port) -"pNE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"pNJ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/engineering/atmos) -"pNL" = ( -/obj/machinery/light/directional/west, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pNO" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"pOb" = ( -/obj/structure/table/glass, -/obj/machinery/light/directional/east, -/obj/item/stack/package_wrap, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pOd" = ( -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/button/door/directional/south{ - id = "custodialshutters"; - name = "Custodial Shutters"; - req_access_txt = "26" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"pOh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft Starboard"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pOl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"pOm" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"pOw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"pOI" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pOJ" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/item/storage/backpack/satchel/explorer, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"pPr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"pPs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"pPZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"pQf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pQg" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/ce) -"pQj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"pQp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/abandoned_gambling_den) -"pQq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"pQQ" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"pQR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"pQV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pRa" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"pRb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/kitchen) -"pRf" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pRt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 4; - pixel_x = -11 - }, -/obj/structure/mirror/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/medical/morgue) -"pRv" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"pRW" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/abandoned_gambling_den/secondary) -"pRX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"pSd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"pSs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"pSt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"pSE" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"pSK" = ( -/obj/structure/table/reinforced, -/obj/item/cartridge/engineering{ - pixel_x = 6 - }, -/obj/item/cartridge/engineering{ - pixel_x = -6 - }, -/obj/item/cartridge/engineering{ - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"pSM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"pSX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"pTc" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"pTl" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"pTo" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"pUe" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"pUl" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"pUp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"pUx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage"; - req_access_txt = "24" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pUA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pUO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pUQ" = ( -/obj/structure/cable, -/obj/structure/sign/departments/psychology{ - pixel_x = 32 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"pUR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"pUT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"pUY" = ( -/obj/structure/kitchenspike, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/west, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/service/kitchen) -"pVf" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/space, -/area/engineering/atmos) -"pVn" = ( -/obj/machinery/vending/games, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"pVq" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"pVu" = ( -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"pVx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pVH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"pVS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"pWb" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"pWf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/storage/box/bodybags, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pWi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"pWn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pWr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"pWC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pWT" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"pWU" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"pWW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"pXd" = ( -/obj/structure/filingcabinet/security, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"pXj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/command) -"pXL" = ( -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"pYc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"pYf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"pYj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"pYw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall1"; - location = "hall15" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"pYz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"pYK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pYM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"pZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pZn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"pZp" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pZt" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"pZu" = ( -/turf/closed/wall, -/area/commons/toilet/restrooms) -"pZv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"pZy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Quarters"; - req_access_txt = "56" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"pZH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"pZY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"qaa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qak" = ( -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Bridge Port"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qal" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"qaq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"qat" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/departments/botany{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qaI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"qaJ" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/camera{ - c_tag = "Technology Storage - Secure"; - dir = 8; - name = "engineering camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"qaK" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/disposal) -"qaL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"qaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Mix" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qaR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"qaW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"qba" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qbv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"qbV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/theater/abandoned) -"qbZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"qcg" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"qcr" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/north, -/obj/item/clipboard, -/obj/item/toy/figure/janitor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qcZ" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"qdh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"qdq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"qdu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"qdH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"qdJ" = ( -/obj/machinery/nanite_programmer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"qdO" = ( -/obj/machinery/light/directional/south, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qdQ" = ( -/obj/machinery/shower{ - pixel_y = 16 - }, -/obj/effect/turf_decal/trimline/blue/end, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qes" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"qew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qfd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"qfn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"qfq" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft"; - dir = 1; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qfr" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/storage/secure/briefcase, -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/directional/west, -/obj/machinery/vending/wallmed/directional/south, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"qfw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qfA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qfE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"qfL" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"qfP" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qfT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qgk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"qgC" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"qgI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qhc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"qhd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"qhm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qhn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/chef_order{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"qhD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"qhE" = ( -/obj/structure/weightmachine/stacklifter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qhK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qhN" = ( -/obj/machinery/door/window/southleft, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"qhQ" = ( -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"qiu" = ( -/obj/machinery/camera{ - c_tag = "Security - Gear Room" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/security/brig) -"qiG" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"qiJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"qiW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/central/secondary) -"qjm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"qjn" = ( -/turf/open/floor/carpet, -/area/service/chapel/office) -"qjo" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qjp" = ( -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/machinery/door/airlock{ - id_tag = "commissarydoor"; - name = "Commissary" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"qjs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Warden's Office"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"qju" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qjG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qjJ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qjM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"qkc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qkr" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/theater/abandoned) -"qkD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "hopblast"; - name = "HoP Blast door" - }, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"qkG" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qkN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qkQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"qle" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qll" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qlx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/prisoner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "Cell 5" - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"qlz" = ( -/obj/machinery/light/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/sign/warning/bodysposal{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qlP" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bar" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"qlW" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qmP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"qnd" = ( -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"qnf" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qnr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"qnx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"qnF" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"qnO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"qnQ" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"qnU" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/sign/poster/official/random{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"qnX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qob" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"qoe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"qoh" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/head/kitty, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"qos" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"qoK" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"qoM" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"qoX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qpc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qpf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qpo" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qpq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port) -"qpB" = ( -/obj/structure/table, -/obj/machinery/microwave{ - desc = "Cooks and boils stuff, somehow."; - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"qpC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"qpF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"qqf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qqj" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"qqB" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/chapel/main) -"qrd" = ( -/obj/machinery/airalarm/directional/north, -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qrf" = ( -/obj/structure/table/optable, -/obj/machinery/button/door/directional/east{ - id = "surgeryb"; - name = "Privacy Shutters Control" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"qrg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qrt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"qrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"qrD" = ( -/obj/machinery/light_switch/directional/north, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"qrM" = ( -/turf/closed/wall, -/area/command/teleporter) -"qrO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"qrQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/griddle, -/turf/open/floor/plasteel, -/area/service/kitchen) -"qrR" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"qrS" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paicard, -/turf/open/floor/carpet, -/area/service/library/abandoned) -"qsh" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"qsi" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/science/research) -"qsr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qss" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qst" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/command) -"qsP" = ( -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"qsR" = ( -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qtg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"qtt" = ( -/turf/open/floor/plasteel/grimy, -/area/service/library) -"qtB" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"qtR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"qtW" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/taperecorder, -/turf/open/floor/plasteel/grimy, -/area/command) -"qub" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"quh" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"qum" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"quS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"qvd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"qvB" = ( -/obj/structure/table/wood, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"qvC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"qvW" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"qvX" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/service/library) -"qwg" = ( -/obj/machinery/stasis, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qwx" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qwA" = ( -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qwF" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"qwM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"qxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qxA" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"qxC" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/quartermaster, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"qxG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"qxS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qxX" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"qya" = ( -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/beerkeg, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qyh" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutters"; - name = "Vacant Commissary Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"qyj" = ( -/obj/machinery/power/smes/engineering{ - charge = 2e+006 - }, -/obj/structure/cable, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/circuit/green, -/area/engineering/main) -"qyu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"qyB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"qyU" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/black_really, -/obj/item/cane, -/obj/item/clothing/head/bowler{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qzb" = ( -/obj/structure/table/wood, -/obj/item/storage/box/beanbag, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qzf" = ( -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"qzj" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/food/grown/harebell, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"qzr" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"qzt" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/surgery) -"qzE" = ( -/turf/open/floor/engine, -/area/engineering/supermatter) -"qzP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qzS" = ( -/obj/docking_port/stationary{ - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"qzU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qAm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"qAn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qAu" = ( -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/clothing/suit/hazardvest{ - desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; - name = "emergency lifejacket" - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/mask/breath{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 9 - }, -/obj/structure/closet/crate/internals, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qAF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/service/kitchen) -"qAO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"qAS" = ( -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qAU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qBh" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qBj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/science/storage) -"qBp" = ( -/obj/effect/landmark/start/prisoner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "Cell 3" - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"qBO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"qBW" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"qCl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"qCn" = ( -/obj/machinery/status_display/supply, -/turf/closed/wall, -/area/cargo/storage) -"qCs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"qCt" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"qCz" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"qCF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"qCG" = ( -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"qCH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"qCZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Construction Zone"; - req_one_access_txt = "72" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"qDf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qDD" = ( -/turf/open/floor/wood, -/area/lawoffice) -"qDK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qDN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"qDR" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemisttop"; - name = "Chemistry Lobby Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/pharmacy) -"qDZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qEu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qEv" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"qEM" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qET" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"qFk" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qFn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/security/prison) -"qFt" = ( -/obj/structure/closet/l3closet/janitor, -/obj/machinery/requests_console/directional/north{ - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - name = "service camera" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qFy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qFI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/storage) -"qFR" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"qFS" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"qFT" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qFV" = ( -/obj/structure/door_assembly/door_assembly_mhatch, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"qGb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"qGc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"qGf" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qGj" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle - Aft Starboard"; - dir = 4; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qGs" = ( -/obj/machinery/light/directional/west, -/obj/machinery/camera{ - c_tag = "Central Hallway - Port"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qGA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"qGH" = ( -/obj/structure/table/wood, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"qGI" = ( -/obj/structure/chair/wood, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"qGJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"qGK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 0 - }, -/obj/item/pen{ - pixel_x = -7 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"qGZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"qHe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"qHt" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"qHH" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: BLAST DOORS"; - pixel_y = 32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"qHZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"qIi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qIL" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/library/abandoned) -"qIO" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/cargo/qm) -"qIS" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"qJk" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"qJp" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"qJA" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"qKj" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialshutters"; - name = "Custodial Closet Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qKp" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"qKx" = ( -/obj/machinery/power/tesla_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"qKC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"qKF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qKI" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/machinery/door/poddoor{ - id = "cargounload"; - name = "supply dock unloading door" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"qKK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qKN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"qLa" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"qLe" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qLr" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qLu" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qLC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qLO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"qLS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qMh" = ( -/obj/structure/table, -/obj/item/seeds/poppy/lily{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/seeds/poppy/geranium, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/grown/wheat, -/obj/item/food/grown/corn, -/obj/item/food/grown/apple, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"qMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qMG" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library/abandoned) -"qMR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"qMY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qNb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"qNl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"qNC" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"qNI" = ( -/obj/machinery/vending/autodrobe/all_access, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"qNK" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Corporate Lounge"; - name = "command camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/picture_frame/showroom/one{ - pixel_x = -8; - pixel_y = 32 - }, -/obj/structure/sign/picture_frame/showroom/two{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command/corporate_showroom) -"qNM" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"qNT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qOd" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"qOe" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 8; - pixel_y = -38 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/machinery/button/door/directional/south{ - id = "cmoshutter"; - name = "CMO Office Shutters"; - pixel_x = 6; - pixel_y = -26; - req_access_txt = "40" - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"qOp" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"qOr" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/meeting_room/council) -"qOw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell #5" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"qOO" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"qOU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"qOV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"qPd" = ( -/obj/machinery/light/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/rd, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"qPp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qPq" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"qPs" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"qPu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"qPx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qPM" = ( -/obj/structure/table, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qPN" = ( -/obj/structure/rack, -/obj/item/airlock_painter, -/obj/item/toner, -/obj/machinery/status_display/evac/directional/west, -/obj/item/storage/box/shipping, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qPR" = ( -/obj/item/kirbyplants/random, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"qPZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qQb" = ( -/obj/structure/table/wood, -/obj/item/toy/cards/deck/cas{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/toy/cards/deck/cas/black{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet, -/area/service/library/abandoned) -"qQv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"qQH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"qQO" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"qRO" = ( -/obj/machinery/door/window/brigdoor{ - id = "medcell"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"qRY" = ( -/obj/machinery/chem_master/condimaster, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"qSc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"qSf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"qSj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"qSI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/delivery_chute{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"qSL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/prisoner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qSO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"qSS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/service/theater/abandoned) -"qST" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qSW" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"qTt" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/circuitboard/aicore, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"qTG" = ( -/obj/structure/mirror/directional/west, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/orange, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qTO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer"; - req_access_txt = "10" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"qTW" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/service/kitchen) -"qUa" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"qUb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/stamp/denied{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/stamp{ - pixel_x = -7; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qUc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"qUh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qUi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"qUo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"qUs" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qUA" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"qUF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qUN" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qUV" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/head_of_personnel, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"qVq" = ( -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"qVr" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/xeno_spawn, -/turf/open/space, -/area/solars/port/fore) -"qVt" = ( -/obj/effect/landmark/secequipment, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qVz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"qVA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"qVC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qVD" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"qVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage) -"qVM" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/storage/box/shipping{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"qVS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qVV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/warning/vacuum{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"qVX" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/service/electronic_marketing_den) -"qVY" = ( -/obj/machinery/light/directional/south, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"qWc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"qWn" = ( -/obj/machinery/washing_machine, -/obj/machinery/camera{ - c_tag = "Dormitories - Port"; - dir = 4; - name = "dormitories camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/dorms) -"qWq" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/white/side, -/area/maintenance/starboard/fore) -"qWy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"qWD" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"qWL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"qWP" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"qXE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"qXG" = ( -/obj/structure/destructible/cult/tome, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/service/library/abandoned) -"qXO" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Aft"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qYe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"qYi" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"qYo" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"qYs" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"qYu" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"qYx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"qYD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"qYZ" = ( -/obj/machinery/computer/turbine_computer{ - id = "incineratorturbine" - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = 36 - }, -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 8; - pixel_y = 36 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/disposal/incinerator) -"qZb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"qZr" = ( -/turf/closed/wall, -/area/service/hydroponics) -"qZD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"qZI" = ( -/obj/structure/chair/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/abandoned_gambling_den) -"qZL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"qZQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ral" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"raB" = ( -/obj/machinery/door/airlock{ - name = "Medbay Auxiliary Storage"; - req_access_txt = "5" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"raM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"raT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rbb" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"rbg" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"rbu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"rbT" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rca" = ( -/turf/closed/wall, -/area/command/gateway) -"rcf" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"rch" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"rcu" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"rcv" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rcz" = ( -/obj/machinery/light/directional/east, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rcA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"rcK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rcM" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/chapel{ - pixel_y = -27 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"rcU" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Plasma Cell"; - name = "atmospherics camera" - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"rdj" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"rdl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cargo - Warehouse"; - name = "cargo camera" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"rdm" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rdz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"rdH" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cooling" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rdI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rdJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "teleportershutters"; - name = "Teleporter Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"rdM" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rea" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"reb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"ren" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"reB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"reI" = ( -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"reP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"reS" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/hop{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/toy/figure/ian, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"reX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"rfb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rfe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/port) -"rfm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"rfA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rfF" = ( -/obj/machinery/bounty_board/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rfO" = ( -/obj/machinery/vending/assist, -/obj/machinery/camera{ - c_tag = "Primary Tool Storage"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rfR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rga" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rge" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"rgv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rgx" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"rgz" = ( -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 6 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"rgA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/white, -/area/science/research) -"rgE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"rgG" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rgL" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"rgQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, -/turf/open/floor/engine, -/area/engineering/supermatter) -"rgR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"rgU" = ( -/obj/machinery/disposal/bin, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rhm" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"rhn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rhs" = ( -/obj/machinery/camera{ - c_tag = "Permabrig - Central"; - dir = 4; - network = list("ss13","prison") - }, -/obj/item/radio/intercom/directional/west{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rhF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rhH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"rhJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/table/wood/fancy, -/obj/structure/sign/painting/library_secure{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/service/library) -"rhY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"rhZ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"rib" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"rio" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rip" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/service/library) -"riv" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/wood, -/area/service/library) -"rix" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"riP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"riX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/paramedic) -"rjq" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rjs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"rjB" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rjE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"rjJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/security/prison) -"rjP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rjU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rka" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rkv" = ( -/obj/machinery/door/morgue{ - name = "Curator's Study"; - req_access_txt = "37" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/library) -"rkD" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rkL" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"rlh" = ( -/obj/structure/closet/toolcloset, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"rlu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"rlV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rlZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"rmm" = ( -/obj/structure/table_frame/wood, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/commons/dorms) -"rmn" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rmu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"rmy" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel, -/area/command/gateway) -"rmA" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rmG" = ( -/turf/closed/wall, -/area/command/heads_quarters/hos) -"rmH" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/service/kitchen) -"rmR" = ( -/obj/machinery/status_display/ai/directional/east, -/obj/structure/frame/computer, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"rmX" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"rnn" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/button/door/directional/east{ - id = "hosroom"; - name = "Privacy Control"; - req_access_txt = "58" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"rnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"rob" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"roo" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Testing Room"; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rou" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"row" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"roK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rpi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"rps" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"rpu" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/clothing/under/misc/burial, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"rpy" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/structure/noticeboard/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"rpC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rpX" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/donkpockets, -/obj/item/stack/package_wrap, -/obj/effect/turf_decal/bot, -/obj/item/kitchen/knife, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"rqh" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/storage) -"rqk" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rqC" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"rqG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rqJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rqM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rrp" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/aisat) -"rrq" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"rru" = ( -/obj/structure/table, -/obj/machinery/light/directional/east, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"rrD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rrJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rrN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"rrT" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rsa" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"rsf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rsL" = ( -/obj/structure/plaque/static_plaque/atmos, -/turf/closed/wall, -/area/engineering/atmos) -"rsY" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"rsZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/command) -"rtI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"rtJ" = ( -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"rtM" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rtP" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/engineering/storage_shared) -"rum" = ( -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_one_access_txt = "13; 24; 10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"run" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"ruy" = ( -/obj/machinery/power/smes, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ruK" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/command/teleporter) -"ruZ" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/aisat) -"rvr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rvL" = ( -/obj/structure/cable, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rvO" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"rvP" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"rvX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rwr" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"rwE" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rwG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"rwU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rwY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rxb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/lab) -"rxf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"rxm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rxt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ryr" = ( -/obj/machinery/door/airlock/security{ - name = "Security Post - Medbay"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"ryt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ryw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"ryM" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/start/librarian, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ryS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"rzc" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/storage) -"rzE" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/cargo/warehouse) -"rzM" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy/lily, -/obj/item/food/grown/poppy/lily, -/obj/item/food/grown/poppy/lily, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"rzQ" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rzS" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"rzT" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/secure_closet/personal/patient, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"rzU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rAe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rAf" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"rAg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"rAp" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"rAt" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rAw" = ( -/obj/machinery/airalarm/directional/west, -/turf/closed/wall, -/area/service/bar) -"rAE" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants/dead, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"rAL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rAZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rBJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rBV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/vomit, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"rCa" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/wood, -/area/lawoffice) -"rCd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"rCn" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"rCt" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/service/library/abandoned) -"rCv" = ( -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"rCA" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rCO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreational Area" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rCY" = ( -/obj/structure/table/wood, -/obj/item/toy/talking/codex_gigas, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"rDh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"rDl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"rDp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"rDv" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"rDG" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rDI" = ( -/obj/machinery/flasher/directional/south{ - id = "Cell 6" - }, -/obj/machinery/light/small/broken/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"rDR" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"rDX" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"rEc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"rEi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/aft) -"rEm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rEC" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"rEU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rFd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rFD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"rFT" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"rFW" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Jetpack Storage"; - pixel_x = -1; - req_access_txt = "18" - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rGe" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rGw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"rGx" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/atmospherics{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"rGy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"rGD" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"rGJ" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"rGR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rGU" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/turf/open/space, -/area/engineering/atmos) -"rHt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rHy" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/obj/structure/sign/directions/command{ - dir = 1 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/commons/storage/tools) -"rIB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"rID" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/apron/chef, -/obj/item/clothing/head/chefhat, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"rIE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"rIG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"rIR" = ( -/obj/machinery/keycard_auth/directional/west, -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "engstorage"; - name = "Engineering Secure Storage Control"; - pixel_y = 10; - req_access_txt = "11" - }, -/obj/machinery/button/door/directional/west{ - id = "transitlock"; - name = "Transit Tube Lockdown Control"; - pixel_y = -10; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"rIW" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"rIY" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rJj" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"rJq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"rJI" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"rJO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rJU" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"rKb" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/science/research) -"rKh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rKo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"rKr" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rKA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"rKF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"rKG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"rKM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 6; - id = "cargodeliver" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"rKN" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Docking Port"; - safety_mode = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"rKW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"rLn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"rLD" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Surgery B"; - dir = 8; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/structure/closet/secure_closet/medical2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"rLL" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/space, -/area/engineering/atmos) -"rLP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"rLT" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"rLV" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"rLY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"rMd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"rMk" = ( -/obj/machinery/portable_atmospherics/canister/bz, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"rMo" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rMx" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"rMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"rMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rMW" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"rMZ" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"rNb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"rNd" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Observatory"; - req_access_txt = "13" - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"rNh" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rNq" = ( -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"rNz" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"rOc" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/engineering/engine_room/external) -"rOx" = ( -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"rOI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/storage/tools) -"rOM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rPb" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Starboard Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rPg" = ( -/obj/machinery/photocopier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/library/abandoned) -"rPv" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/warning, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"rPJ" = ( -/obj/structure/chair/wood, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"rPK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "External Waste Ports to Filter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rPL" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/toy/dummy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"rPO" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"rPX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"rQi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rQB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"rQN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"rRc" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rRd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/service/kitchen) -"rRk" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rRu" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/theater/abandoned) -"rRw" = ( -/obj/machinery/autolathe, -/obj/machinery/light/directional/west, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/cargo/office) -"rRG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"rRR" = ( -/obj/structure/table/wood, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"rRV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"rRW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rSw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rSB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rSG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rSJ" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "Research Junction"; - sortType = 12 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rSK" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"rTk" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"rTE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/break_room) -"rTN" = ( -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"rTO" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"rTT" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rUg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall3"; - location = "hall2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rUl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"rUy" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/aft) -"rUZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"rVn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rVo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rVp" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"rVu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rVw" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"rVz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"rVD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"rVE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/hallway/secondary/entry) -"rVG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rVN" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/service/chapel/main) -"rWa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rWh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rWl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rWm" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"rWs" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"rWL" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"rWM" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"rWP" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/command, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"rXh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"rXs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rXu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/tank_holder/oxygen, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rXD" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rYg" = ( -/obj/machinery/bookbinder, -/turf/open/floor/plasteel/dark, -/area/service/library) -"rYm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rYt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"rYG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/command/nuke_storage) -"rYJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/table, -/obj/item/fuel_pellet{ - pixel_x = 8 - }, -/obj/item/wrench{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"rYU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"rYV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rYX" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"rZb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"rZh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"rZo" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/starboard/fore) -"rZz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/range) -"rZH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"rZP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"rZS" = ( -/obj/structure/table/reinforced, -/obj/item/lightreplacer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"saw" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"say" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Chapel Quarters"; - name = "chapel camera" - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"saB" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Aft Starboard"; - dir = 4; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"saQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"saS" = ( -/obj/structure/rack, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"sba" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sbf" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sbI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/rack, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wirecutters, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"scj" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Office Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/office) -"scE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"scF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"scS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"scY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"scZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"sdh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) -"sdn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sdx" = ( -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/arcade_boards, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"sdF" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"sdG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"sdN" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"sdO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"sdP" = ( -/obj/effect/landmark/start/prisoner, -/turf/open/floor/plating, -/area/security/prison) -"sdU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"seu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"sev" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/turf/open/floor/plating, -/area/service/library/abandoned) -"sew" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/randomarcade{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"sez" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"seS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"seV" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"seW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - name = "Atmospherics Delivery"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sfb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"sfd" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Science Aft"; - name = "hallway camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sfo" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"sfp" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"sfF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sfG" = ( -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"sfH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"sfI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/service/hydroponics/garden/abandoned) -"sfK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"sfP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"sfZ" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"sgE" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ - dir = 10 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos/upper) -"sgI" = ( -/obj/structure/easel, -/turf/open/floor/plasteel, -/area/security/prison) -"sgL" = ( -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"sgR" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"sgW" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = 8 - }, -/turf/closed/wall, -/area/service/kitchen) -"sgY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"sha" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"she" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"shl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/prison) -"shn" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"shD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"shH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"shN" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/abandoned_gambling_den/secondary) -"sin" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"sip" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"sis" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/dim/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"siG" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"siU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sjo" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sjC" = ( -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"sjE" = ( -/obj/machinery/light/directional/north, -/obj/machinery/vending/modularpc, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"sjF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"sjP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sjT" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ski" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"skj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"skk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"skH" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"skJ" = ( -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"skT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"slk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"slt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"slG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Office"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"slQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"slU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"slY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"sme" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridgedoors"; - name = "Bridge Access Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"sms" = ( -/obj/machinery/chem_master/condimaster{ - name = "HoochMaster 2000" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"smD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"smF" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"smW" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/syndicatefake, -/obj/item/clothing/head/syndicatefake, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"smX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"snh" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"sni" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"snk" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/lawyer, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/lawoffice) -"snm" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"snA" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"snL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"snN" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"snR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sob" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"soc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Robotics Lab Maintenance"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"soj" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"sop" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"soN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"soS" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/door_buttons/access_button{ - dir = 1; - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -24; - pixel_y = -2; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"spo" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Service Hallway Maintenance Hatch"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"sps" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"spx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"spB" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"spD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - name = "Incoming Mail"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"sqg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/storage) -"sqw" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sqI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sqY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"srd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/command{ - name = "Auxiliary E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"sre" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"srq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"srs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"srw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"srL" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"srM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Containment Cell"; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"srN" = ( -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"srX" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel, -/area/security/prison) -"srY" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleportershutters"; - name = "Teleporter Shutters" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"ssb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ssp" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"ssB" = ( -/turf/closed/wall, -/area/cargo/warehouse) -"ssC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ssD" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ssL" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"stb" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/sign/departments/botany{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"stn" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"stp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"stE" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"stH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"stM" = ( -/obj/structure/table/glass, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"stR" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"sub" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"suj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"suk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"suu" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"suE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/research/abandoned) -"suJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"suL" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"suN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"suR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"svv" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"svG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"svM" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"swj" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"swl" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/execution) -"swm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"sws" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"swM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sxb" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"sxr" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sxw" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/wood, -/area/service/library) -"sxA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/prison) -"sxD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"sxF" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/storage) -"sxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sxV" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sxX" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"syi" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"sym" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"syn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"syo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"syr" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"syy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"syP" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/fore) -"syV" = ( -/obj/structure/closet/toolcloset, -/obj/machinery/light/small/directional/south, -/obj/machinery/camera{ - c_tag = "Engineering - Engine Foyer"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"syY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"szg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"szn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/command/storage/eva) -"szq" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"szF" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Theater Stage"; - name = "service camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"szL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/west, -/obj/machinery/button/door/directional/south{ - id = "AuxToilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"sAj" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port) -"sAk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sAm" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/psychologist, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"sAn" = ( -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sAv" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sAx" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"sAB" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"sAD" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sAG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "16" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"sAL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sAP" = ( -/obj/structure/table/wood, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/item/wrench, -/obj/item/clothing/under/suit/waiter, -/obj/item/clothing/accessory/waistcoat, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"sAQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sAX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"sBb" = ( -/obj/machinery/vending/assist, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"sBv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"sBx" = ( -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"sBz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"sBC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"sBH" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sBM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"sBQ" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/paramedic) -"sBX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"sBY" = ( -/obj/machinery/camera/motion{ - c_tag = "Bridge - Captain's Emergency Escape"; - dir = 4; - name = "motion-sensitive command camera" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/central/secondary) -"sCg" = ( -/turf/open/floor/carpet, -/area/command) -"sCo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"sCL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sCQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sCR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/detectives_office) -"sDc" = ( -/obj/structure/dresser, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/commons/dorms) -"sDg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sDl" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"sDp" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sDu" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"sDw" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"sDz" = ( -/turf/closed/wall, -/area/command/heads_quarters/hop) -"sDD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 9; - id = "cargounload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"sDK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"sDO" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/flashlight/lamp, -/turf/open/floor/plating, -/area/service/library/abandoned) -"sDV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/shuttle_flight/mining/common{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sEb" = ( -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sEd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"sEo" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sEv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall15"; - location = "hall14" - }, -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sEE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"sEJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sEL" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"sEN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"sES" = ( -/obj/machinery/porta_turret/ai, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"sFf" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"sFr" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sFw" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/theater/abandoned) -"sFD" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "rdxeno"; - name = "Xenobiology Containment Control"; - pixel_x = -7; - pixel_y = 7; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdtoxins"; - name = "Toxins Containment Control"; - pixel_x = -7; - pixel_y = -4; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_x = 7; - pixel_y = 7; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Control"; - pixel_x = 7; - pixel_y = -4; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"sFP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/break_room) -"sGh" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sGj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "aiuploadwindow"; - name = "AI Upload Lockdown Door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"sGn" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"sGo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"sGF" = ( -/obj/structure/table, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"sGJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sGK" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/south, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"sGN" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Sanitarium"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/security/prison) -"sGS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sGU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"sGW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/department/electrical) -"sGY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"sGZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"sHe" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Plasma to Pure" - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sHo" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"sHr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/library) -"sHL" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"sHV" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"sIe" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sIg" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sIl" = ( -/obj/machinery/chem_master/condimaster{ - name = "BrewMaster 3000" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sIy" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sIA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"sIM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sIP" = ( -/obj/structure/chair/wood, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/service/chapel/main) -"sIY" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"sJv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark, -/area/command) -"sJx" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"sJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"sKa" = ( -/obj/machinery/photocopier, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"sKn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"sKr" = ( -/obj/structure/chair/office, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/service/library/abandoned) -"sKy" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/syringes, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sKJ" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"sKK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"sKL" = ( -/obj/structure/cable, -/obj/machinery/button/flasher{ - id = "Cell 3"; - name = "Prisoner Flash"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "permashut3"; - name = "Cell Lockdown Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sKN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sKP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"sKS" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"sKY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/hallway/secondary/service) -"sKZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sLi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters" - }, -/turf/open/floor/plating, -/area/command/corporate_showroom) -"sLr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"sLw" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sLR" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sMg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sMk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sMC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"sMH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sMO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"sMV" = ( -/obj/machinery/light/directional/north, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"sNj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"sNs" = ( -/obj/structure/table, -/obj/item/cartridge/signal/toxins{ - pixel_x = 6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = -6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Science - Research Director's Office"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"sNC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/office) -"sOk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sOG" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/detectives_office/private_investigators_office) -"sOH" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/books, -/obj/item/taperecorder, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"sPf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sPq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"sPv" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/camera{ - c_tag = "Permabrig - Cell 3"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"sPw" = ( -/turf/closed/wall, -/area/engineering/storage/tech) -"sPE" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/command/gateway) -"sPI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"sPQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"sQk" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"sQr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "Cell 2" - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"sQV" = ( -/obj/structure/closet/radiation, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"sQY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"sRg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"sRM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sRS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"sRX" = ( -/obj/structure/mirror/directional/west, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"sRY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sSb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"sSg" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/service/library) -"sSt" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/engineering/storage_shared) -"sSx" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_one_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"sSJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sSO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"sTm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"sTu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"sTy" = ( -/obj/machinery/power/tesla_coil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Engineering - Secure Storage"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"sTz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"sTA" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"sTC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"sTE" = ( -/obj/structure/cable, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"sTF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air to Distro" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"sTI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"sUa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/medbay/alt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"sUc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"sUC" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"sUE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell #4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"sUG" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/end{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"sUH" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"sUU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"sUV" = ( -/obj/effect/spawner/randomcolavend, -/obj/structure/sign/poster/official/ian{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"sVj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"sVm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/cargo/office) -"sVD" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"sVJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/library) -"sVP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sWc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"sWf" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/storage/secure/briefcase, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sWu" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft Port"; - dir = 4; - name = "cargo camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sWw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sWA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/xenobiology) -"sWE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"sWF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"sWJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"sXa" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"sXh" = ( -/obj/structure/transit_tube/horizontal, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"sXl" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/service/library/abandoned) -"sXr" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/west, -/obj/item/flashlight/lamp/green, -/obj/machinery/camera{ - c_tag = "Bridge - Captain's Office"; - dir = 4; - name = "command camera" - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"sXx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"sXy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"sXI" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"sXL" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"sXO" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"sXR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"sYn" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"sYu" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "permabolt2"; - name = "Cell 2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "permashut2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"sYF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"sYJ" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"sYO" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Council Chamber"; - dir = 1; - name = "command camera" - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"sYS" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sYU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"sYV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"sYX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sZn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"sZs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"sZD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"sZJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"sZO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"sZS" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"sZX" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/computer/security/telescreen/entertainment/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"sZY" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"tab" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tak" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"tar" = ( -/obj/machinery/door/poddoor{ - id = "engstorage"; - name = "Engineering Secure Storage Lockdown" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tax" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/blood/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"taC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"taQ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/library/abandoned) -"tbj" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"tbk" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"tbn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port) -"tbr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"tbw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"tbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"tce" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tcg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tci" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"tcl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"tcF" = ( -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"tcO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"tdb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"tdh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"tdj" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tdq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"tdE" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"teo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"tew" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"teB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"teC" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"teD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"teL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"teP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library/abandoned) -"tfa" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/command/gateway) -"tfh" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"tfi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tfn" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/research_director, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"tfy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tfD" = ( -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/starboard/aft) -"tfO" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Head of Personnel's Office"; - dir = 8; - name = "command camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"tfT" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tgb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "Cell 1" - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"tgh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tgu" = ( -/obj/structure/table/glass, -/obj/item/food/pizzaslice/vegetable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut/observatory) -"tgL" = ( -/obj/machinery/light_switch/directional/east{ - pixel_x = 22 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tgZ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"tha" = ( -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"thf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"thj" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 10 - }, -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tho" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"thq" = ( -/obj/structure/table/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/yellow, -/obj/item/gps/mining, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"tht" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/electronic_marketing_den) -"thA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"thX" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"tic" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"tii" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tim" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Port"; - dir = 8; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"tis" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tiF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"tju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"tjw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"tjD" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"tjK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"tjO" = ( -/obj/machinery/gibber, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"tkb" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"tkj" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/security/main) -"tku" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/button/door/directional/south{ - id = "evashutters2"; - name = "E.V.A. Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"tkH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"tkQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tlv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"tlw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tlA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tlE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tlM" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"tme" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"tmk" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tmn" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"tmu" = ( -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"tmA" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Access" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tmP" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"tmW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"tnc" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/gps, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"tni" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"tnm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tnv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tnG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tnH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/library) -"toa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"toe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"tof" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Cargo - Quartermaster's Quarters"; - dir = 8; - name = "cargo camera" - }, -/obj/machinery/computer/security/qm{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"toi" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"too" = ( -/turf/closed/wall, -/area/command) -"tov" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"tow" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"toG" = ( -/obj/structure/chair{ - dir = 1; - name = "Jury" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"tpa" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tpf" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"tpD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/medical/morgue) -"tpS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tqi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"tqz" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"tqL" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/qm, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tqM" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tqN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tqQ" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Prisoner Telescreen"; - network = list("prison"); - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"tqX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"tro" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"trH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"trM" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"trT" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"tsd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tsl" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"tst" = ( -/turf/closed/wall, -/area/commons/storage/primary) -"tsx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tsA" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"tsB" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/camera{ - c_tag = "Atmospherics - Pumps"; - dir = 1; - name = "atmospherics camera" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"tsY" = ( -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"ttd" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"tte" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"ttg" = ( -/obj/structure/table/reinforced, -/obj/item/electronics/firelock, -/obj/item/electronics/firelock, -/obj/item/electronics/firealarm, -/obj/item/electronics/firealarm, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"ttx" = ( -/obj/effect/turf_decal/trimline/yellow/filled/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ttR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"ttZ" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tui" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tuR" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"tuZ" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"tvp" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"tvt" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"tvA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tvB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tvL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison) -"tvS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"twf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"twt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"txh" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/space, -/area/engineering/atmos) -"txN" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"txO" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/teleporter) -"txZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tyl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"tyw" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"tyx" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"tyy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"tyz" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/taperecorder, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"tyD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/pods{ - name = "MINING POD" - }, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"tyN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"tyR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"tyX" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"tyZ" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/plasteel, -/area/service/kitchen) -"tzb" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"tzf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tzj" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/prison) -"tzl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"tzq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tzu" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"tzw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/teleporter) -"tzz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tzA" = ( -/obj/structure/table/wood, -/obj/item/electronics/firelock, -/obj/item/electronics/airlock, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"tzF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "construction"; - name = "Construction Shutters" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"tzS" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tAu" = ( -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"tAv" = ( -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tAz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"tBg" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"tBm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"tBp" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tBF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"tBR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall5"; - location = "hall4" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tCh" = ( -/turf/closed/wall, -/area/science/misc_lab) -"tCy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"tCG" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tCL" = ( -/turf/open/floor/plasteel/dark, -/area/space) -"tCS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tCT" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/suit/apron/chef, -/obj/item/kitchen/rollingpin, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"tCX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Plasma to Turbine" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tDa" = ( -/obj/structure/table, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"tDj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"tDp" = ( -/turf/open/floor/plasteel/white/side, -/area/maintenance/starboard/fore) -"tDt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tDM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Hallway - Starboard"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tDT" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tDV" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"tDX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"tEe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"tEh" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tEw" = ( -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/starboard/fore) -"tEy" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/camera{ - c_tag = "Lawyer's Office"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"tEE" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"tEM" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/east, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"tFz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tFA" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"tFH" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfront"; - name = "Brig Blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"tFK" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage) -"tFO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tFS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"tFT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tGf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"tGh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tGj" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"tGz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"tGC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/teleporter) -"tGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"tGU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"tHb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tHf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tHi" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tHl" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"tHC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tHV" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/service/library/abandoned) -"tHW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tHX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tIe" = ( -/obj/structure/table/reinforced, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"tIE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"tII" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tIP" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tIQ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tIV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"tIW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"tIZ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/command/heads_quarters/cmo) -"tJr" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Quarters"; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"tJu" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Aft"; - dir = 1; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"tJv" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"tJA" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/commons/dorms) -"tJH" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tJL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"tKa" = ( -/obj/structure/chair/stool, -/obj/structure/window{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"tKi" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"tKj" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"tKk" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"tKr" = ( -/turf/closed/wall, -/area/maintenance/space_hut/observatory) -"tKt" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engineering/supermatter) -"tKD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"tKJ" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tKN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"tKQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tKS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "HoS Space Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"tLa" = ( -/obj/machinery/camera{ - c_tag = "Detective's Interrogation"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"tLg" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/office) -"tLk" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tLl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/engineering/main) -"tLs" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"tLy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tLL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tLO" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"tLP" = ( -/obj/structure/window/plasma/reinforced/spawner/west{ - dir = 1 - }, -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tLT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"tLY" = ( -/obj/machinery/status_display/evac/directional/south, -/obj/machinery/lapvend, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"tMk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab/range) -"tMm" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"tMt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"tMz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Hall" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/chapel/main) -"tME" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tMF" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tMG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"tML" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tMQ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tMS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/off/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tMW" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"tMX" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"tNn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tNx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tNO" = ( -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/camera, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tNQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"tNU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tOg" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat_interior) -"tOj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tOq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"tOs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"tOv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tOQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"tOT" = ( -/obj/item/kirbyplants/random, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"tOW" = ( -/obj/structure/table/reinforced, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tPB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tPJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"tPM" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"tQi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"tQl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"tQq" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/service/library) -"tQX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"tRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"tRN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"tRP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"tRR" = ( -/obj/structure/table/wood, -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"tRX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"tSb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"tSf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/break_room) -"tSn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"tSv" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"tSz" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tSG" = ( -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/item/clothing/head/cone, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"tSQ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tSS" = ( -/obj/machinery/light/directional/north, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/wood, -/area/service/library) -"tSY" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"tTd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"tTu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tTw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tTz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tTW" = ( -/obj/structure/musician/piano{ - icon_state = "piano" - }, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"tTZ" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Transit Tube Access"; - req_one_access_txt = "32;19" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"tUe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/picture_frame/showroom/three{ - pixel_x = -8; - pixel_y = 32 - }, -/obj/structure/sign/picture_frame/showroom/four{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command/corporate_showroom) -"tUm" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/scientist, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"tUy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tUC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"tUK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"tUN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"tUR" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/paicard, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"tUW" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"tVf" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tVn" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"tVu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tVw" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"tVz" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tVL" = ( -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Recreation - Aft"; - dir = 1; - name = "recreation camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tVO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"tVP" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/machinery/camera{ - c_tag = "Cargo - Office"; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"tWu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tWF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tWP" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"tXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tXj" = ( -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"tXm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Waste to Filter" - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"tXr" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer, -/obj/item/assembly/timer, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"tXx" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/structure/sign/poster/official/obey{ - pixel_x = 30 - }, -/obj/machinery/camera{ - c_tag = "Permabrig - Cell 5"; - dir = 8; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plating, -/area/security/prison/safe) -"tXA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"tXE" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"tXR" = ( -/turf/closed/wall, -/area/service/electronic_marketing_den) -"tXV" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"tYc" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"tYf" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"tYr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"tYJ" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"tYX" = ( -/obj/structure/chair/stool/bar, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"tZP" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = -3 - }, -/obj/item/clothing/mask/cigarette/cigar, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"uai" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ual" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/departments/court{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uao" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"uaz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/closed/wall, -/area/medical/paramedic) -"uaD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"uaP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"uaS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ubd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"ubv" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"ubA" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ubH" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/potato, -/obj/item/seeds/tomato, -/obj/item/seeds/carrot, -/obj/item/seeds/grass, -/obj/item/seeds/ambrosia, -/obj/item/seeds/wheat, -/obj/item/seeds/pumpkin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/structure/window, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/tower, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ucc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ucd" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/paramedic) -"uco" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ucq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ucu" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"ucz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ucJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Post - Science"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science/research) -"uda" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ude" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac/directional/north, -/obj/item/clipboard, -/obj/item/toy/figure/bartender, -/obj/item/holosign_creator/robot_seat/bar, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"udg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Science - Aft Center"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"udk" = ( -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Security - Brig Desk"; - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"udD" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"udO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"udX" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Head of Personnel Line"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ueh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ueo" = ( -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"uer" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ueD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ueP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"uft" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ufw" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/entry) -"ufA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ufP" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ugs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ugG" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"ugT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"uhr" = ( -/obj/machinery/photocopier, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/service/library) -"uhs" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"uhy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"uhH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uhI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uhJ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"uim" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"uip" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"uiA" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"uiP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uiU" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uiX" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"uiZ" = ( -/obj/structure/sign/poster/official/report_crimes{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ujH" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"ujL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"ujM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"ujO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Warehouse"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ujV" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/chaplain, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ukj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uku" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uky" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"ukD" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"ukQ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/locker) -"ukV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"uld" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ulh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"ulk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "AI Satellite - Transit Tube"; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/item/clipboard, -/obj/item/folder/blue, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"ulm" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"uly" = ( -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"umc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - name = "Bar Door"; - req_one_access_txt = "25;28" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"ume" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell #2" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"umz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"umF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"umL" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargoload" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor{ - id = "cargoload"; - name = "supply dock loading door" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"umQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"umU" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/commons/dorms) -"unj" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"unk" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/service/library/abandoned) -"unv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"unx" = ( -/turf/closed/wall, -/area/cargo/office) -"unQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"unZ" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"uot" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uoy" = ( -/obj/machinery/plate_press, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/security/prison) -"uoV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"uoX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"upg" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"uph" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"upr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"upw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/maintenance/department/science) -"upx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"upI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south{ - frequency = 1423; - name = "Interrogation Intercom" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"upL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uqa" = ( -/obj/machinery/power/supermatter_crystal/engine, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/engine, -/area/engineering/supermatter) -"uqc" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"uqe" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"uqh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"uqr" = ( -/obj/structure/table/wood, -/obj/item/newspaper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/newspaper, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"uqv" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"uqx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"uqz" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uqH" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uqQ" = ( -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"urn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ury" = ( -/obj/structure/table/wood, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/wrapping_paper, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/fitness/recreation) -"urA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/crate/bin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/security/prison) -"urZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/medical, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"usb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"ush" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"utc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"uth" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"uti" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"utn" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"utp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/suit_storage_unit/mining/eva, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"utt" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/engineer, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"uty" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"utE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"utJ" = ( -/obj/item/instrument/violin, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"utK" = ( -/obj/machinery/camera{ - c_tag = "Permabrig - Kitchen Entrance"; - dir = 8; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"utT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison) -"uua" = ( -/obj/machinery/door/airlock/glass, -/turf/open/floor/plasteel/dark, -/area/space) -"uuh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"uup" = ( -/obj/structure/table, -/obj/item/toy/gun, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"uur" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uuA" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - desc = "It looks really dirty."; - name = "maintenance microwave"; - pixel_y = 5 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uuE" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"uuM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"uuR" = ( -/obj/effect/landmark/start/cook, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/freezer, -/area/service/kitchen) -"uva" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/electronic_marketing_den) -"uvh" = ( -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"uvi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uvq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uvr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uvL" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"uwg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore Port"; - dir = 8; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"uwx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uwy" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uwB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"uwE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "HoS Privacy Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"uwH" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uwX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"uxd" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"uxo" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"uxB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"uxO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"uyh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uym" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uyv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"uyH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uyJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uyM" = ( -/turf/open/floor/plasteel/grimy, -/area/service/theater/abandoned) -"uyO" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/clothing/head/hos/beret, -/obj/item/clothing/suit/armor/hos/trenchcoat, -/obj/item/clothing/under/rank/security/head_of_security/grey, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"uyP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"uyS" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uyT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Lounge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"uyV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"uzi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/departments/lawyer{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uzn" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"uzE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"uzW" = ( -/obj/machinery/door/window/brigdoor/security/holding/westright{ - name = "Holding Cell" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"uzY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/hallway/secondary/service) -"uAm" = ( -/obj/structure/dresser, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uAo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"uAt" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"uAx" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"uAA" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/toy/figure/ce, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"uAU" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/central/secondary) -"uAX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uBc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uBh" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Arrivals Dock - Fore"; - dir = 8; - name = "arrivals camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uBn" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"uBs" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"uBx" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uBF" = ( -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"uBG" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "idquarters"; - name = "Director's Quarters Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"uBK" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth"; - req_access_txt = "27" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uBM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"uCu" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"uCv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"uCT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/drinks/britcup, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uDb" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"uDc" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "27" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"uDf" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"uDg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uDo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Aft Starboard"; - dir = 4; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"uDF" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uDI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/surgery) -"uDL" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uDP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/space) -"uDX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uEd" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uEl" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/directional/east, -/obj/item/wrench, -/obj/item/assembly/timer, -/obj/item/assembly/signaler, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"uEr" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/bookcase/random, -/turf/open/floor/plating, -/area/service/library/abandoned) -"uEx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"uEE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"uEO" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"uEX" = ( -/obj/structure/table/wood, -/obj/item/food/chips, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"uEZ" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/meeting_room/council) -"uFe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uFl" = ( -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"uFq" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"uFt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den) -"uFL" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/fire, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"uGa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"uGj" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uGv" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"uGw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"uGy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uGB" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"uGM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"uGU" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet3"; - name = "Toilet Unit 3" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"uHd" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"uHf" = ( -/obj/structure/table/reinforced, -/obj/item/aicard, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"uHH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"uHV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uIe" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxCabinB"; - name = "Cabin B"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"uIn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"uIr" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library/abandoned) -"uIx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"uID" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uIT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uIV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"uJe" = ( -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"uJw" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"uJx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uJH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"uJK" = ( -/obj/machinery/button/crematorium{ - id = "cremawheat"; - pixel_x = -26; - req_access_txt = "27" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uJL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"uJM" = ( -/obj/structure/table/reinforced, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/machinery/light_switch/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"uJX" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"uKa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"uKt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uKx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Port Mix to Port Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uKz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uKR" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"uLk" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"uLp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"uLs" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/port) -"uLz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"uLL" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "CMO's Junction"; - sortType = 10 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uLM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/detective, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"uLP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"uMi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"uMp" = ( -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uMv" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uNj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uNt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"uNO" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"uNS" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"uOw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"uOy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"uOP" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"uOU" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"uOW" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uPe" = ( -/obj/effect/decal/remains/human, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"uPA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"uQf" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno8"; - name = "Creature Cell #8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"uQj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uQr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"uQK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"uQY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"uRh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"uRC" = ( -/obj/structure/bonfire, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; - name = "Carton of Estus" - }, -/obj/item/melee/moonlight_greatsword, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"uRT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uSa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"uSi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"uSp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"uSA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "ceblast"; - name = "Chief's Lockdown Shutters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uSH" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southleft, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"uSJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/chapel/office) -"uSL" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"uSU" = ( -/obj/machinery/door/airlock/grunge{ - name = "Chapel Morgue"; - req_access_txt = "27" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"uTc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Primary Restroom" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"uTf" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"uTq" = ( -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uTr" = ( -/obj/structure/table/reinforced, -/obj/machinery/light/small/directional/north, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"uTK" = ( -/obj/structure/girder, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uTQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"uUh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"uUq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage) -"uUy" = ( -/obj/structure/table/reinforced, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/bot, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uUC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"uVk" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/lawyer, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"uVp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uVq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uVu" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/flour, -/obj/effect/turf_decal/bot, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/turf/open/floor/plasteel, -/area/service/kitchen) -"uVx" = ( -/obj/machinery/light/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Office Fore" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"uVV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"uWg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"uWl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"uWq" = ( -/obj/machinery/airalarm/engine{ - pixel_y = 23 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"uWy" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uWH" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"uWQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"uWU" = ( -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"uXz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"uXJ" = ( -/obj/structure/table/wood/poker, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"uXM" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"uXS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Security Post - Engineering"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"uYa" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"uYe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"uYo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"uYQ" = ( -/obj/structure/displaycase/captain{ - req_access = null; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"uZm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uZA" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"uZJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/bar/atrium) -"vag" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"van" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vat" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/directional/west, -/obj/machinery/computer/security/telescreen/ce{ - dir = 4; - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"vav" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"vaH" = ( -/obj/structure/bed, -/obj/item/bedsheet/cmo, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"vaR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/white, -/area/science/research) -"vaW" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"vbb" = ( -/turf/closed/wall, -/area/commons/dorms) -"vbE" = ( -/obj/structure/table/reinforced, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"vbX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "cargodisposals" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vct" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vcu" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/machinery/bounty_board/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vcC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"vcI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"vcU" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Bar Backroom"; - name = "service camera" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vcW" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"vcZ" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"vdb" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Fore"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vdc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/medical/morgue) -"vdB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vdP" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "atmoslock"; - name = "Atmospherics Lockdown Control"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vdR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space, -/area/space/nearstation) -"vdU" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"vdX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vdY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vec" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/emergency_oxygen, -/turf/open/floor/plating, -/area/maintenance/port) -"vef" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosroom"; - name = "HoS Room Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"vej" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"vem" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/lightreplacer, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vep" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"veA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"veG" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"veW" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/transfer) -"vfd" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"vfg" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"vfD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"vfU" = ( -/obj/machinery/field/generator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"vgb" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"vgh" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"vgr" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"vgy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vgB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/command/gateway) -"vgF" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vgL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/mapping_helpers/iannewyear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"vgM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"vgX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vgY" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"vhb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vhj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Chamber"; - req_access_txt = "19; 61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"vhl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vhn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"vhr" = ( -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"vhK" = ( -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/light/directional/south, -/obj/structure/table/reinforced, -/obj/item/gps, -/obj/item/gps, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"vhQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/food/grown/apple, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vhT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vhY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vic" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vih" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"viJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/qm) -"vja" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"vje" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"vjk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vjn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vjp" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Auxiliary Port"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"vjr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vjv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/break_room) -"vjC" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/transfer) -"vka" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space, -/area/space/nearstation) -"vkd" = ( -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"vko" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery/room_b) -"vkv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"vkA" = ( -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Central Hallway - Medbay Aft"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vkF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vkS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vlm" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command) -"vlo" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/aisat) -"vlp" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"vlu" = ( -/obj/machinery/door/poddoor/atmos_test_room_mainvent_2, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"vlI" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"vlO" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vma" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vmj" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/wood, -/area/service/library) -"vmn" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"vmo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/lighter{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"vmK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"vnd" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"vne" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"vnj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/genetics) -"vnk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "O2 to Airmix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vno" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"vnq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"vnC" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Science Maintenance"; - req_access_txt = "47" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"vnW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"voq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vox" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "cargodeliver"; - name = "delivery conveyor"; - pixel_x = -12 - }, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"voI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"voU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"vpk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vpC" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vpN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vpT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"vqd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room"; - req_access_txt = "19;23" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"vqp" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"vqG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vqH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vqQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"vrt" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"vru" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"vrR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"vrZ" = ( -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"vsj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"vsk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel/twenty, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"vso" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vsy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing/horizontal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/space, -/area/space/nearstation) -"vsF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vsK" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vsO" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"vsQ" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"vsR" = ( -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vsT" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"vtq" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"vtx" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai_upload) -"vtF" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"vtP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vtW" = ( -/obj/structure/table/glass, -/obj/item/wrench, -/obj/item/clothing/suit/apron, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vuc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"vuZ" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vva" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"vvc" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vvf" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"vvn" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library/abandoned) -"vvu" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vvC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vwa" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vwg" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"vwn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"vwQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vwT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vwU" = ( -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"vxa" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"vxf" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"vxk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/east, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"vxq" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"vxr" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"vxF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/morgue) -"vxT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vyd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vyf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vyo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vyv" = ( -/obj/machinery/plate_press, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vyz" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Chief Medical Officer's Quarters"; - dir = 1; - name = "medbay camera"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"vyP" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"vyQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"vyR" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/copytech_platform, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vzm" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"vzu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vzF" = ( -/obj/item/kirbyplants/random, -/obj/item/toy/plush/snakeplushie{ - name = "Quetzie" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"vzJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vzL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - id_tag = "meddoor"; - name = "Medical Cell"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"vAb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"vAo" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"vAq" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vAu" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/reflector/double, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vAv" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"vBh" = ( -/obj/structure/rack, -/obj/item/crowbar, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"vBj" = ( -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vBN" = ( -/obj/structure/urinal/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"vBR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/library) -"vCj" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vCl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/space, -/area/space/nearstation) -"vCo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vCr" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"vCy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vCI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"vCJ" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"vDp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Customs Desk"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs/auxiliary) -"vDu" = ( -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vDy" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"vDG" = ( -/obj/machinery/meter, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vDL" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vEk" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/light/small/directional/south, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"vEA" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"vEE" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"vEI" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Office"; - req_one_access_txt = "31;48" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vEK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vEY" = ( -/obj/effect/landmark/start/virologist, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"vFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"vFc" = ( -/turf/closed/wall, -/area/medical/surgery/room_b) -"vFd" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"vFD" = ( -/obj/vehicle/ridden/janicart, -/obj/item/storage/bag/trash, -/obj/item/key/janitor, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/service/janitor) -"vFE" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"vFU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/flasher/directional/south{ - id = "Cell 4" - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"vGx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall, -/area/commons/fitness/recreation) -"vGD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vGJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - id_tag = "Dorm5"; - name = "Cabin 1" - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/commons/dorms) -"vGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Chapel Morgue"; - dir = 8; - name = "chapel camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"vGQ" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = 6 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/south, -/obj/machinery/button/door/directional/south{ - id = "corporatelounge"; - name = "Corporate Lounge Shutters"; - pixel_x = -6 - }, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"vHf" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"vHh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vHp" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/toy/figure/botanist, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vHC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"vHF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"vHM" = ( -/obj/structure/table, -/obj/item/stack/cable_coil, -/obj/item/assembly/igniter, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"vHS" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/item/storage/bag/plants/portaseeder, -/obj/machinery/door/window/eastright, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vHV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/turf/open/floor/wood, -/area/engineering/storage_shared) -"vHW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vHY" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table/wood, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den/secondary) -"vHZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"vIw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"vIy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"vIB" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vIC" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/gps/engineering{ - gpstag = "CE0" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"vIE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"vIJ" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"vIQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vJc" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/space, -/area/engineering/atmos) -"vJj" = ( -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"vJu" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Nanite Lab Maintenance"; - req_access_txt = "47" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vJB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/morgue{ - name = "Occult Study" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"vJF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vJL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/commons/storage/tools) -"vJW" = ( -/obj/structure/bookcase/random, -/obj/item/radio/intercom/directional/south{ - pixel_y = -38 - }, -/obj/machinery/button/door/directional/south{ - id = "councilblast"; - name = "Council Blast Doors" - }, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"vKa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Theater Backstage"; - req_access_txt = "46" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vKj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/ai_monitored/turret_protected/aisat_interior) -"vKq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"vKx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/field_medic, -/turf/open/floor/plasteel, -/area/security/main) -"vKD" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/east, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"vKE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"vKF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vKK" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vKM" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"vKU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"vKW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"vLa" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/plasma, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"vLe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vLj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vLl" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/service/library/abandoned) -"vLs" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vLt" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "cargounload" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/cargo/storage) -"vLu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vMb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"vMg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vMA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"vME" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/flashlight/pen, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"vMF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vMG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vMT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"vMV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vNm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"vNp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"vNC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"vND" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vNK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vNO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vNR" = ( -/turf/closed/wall, -/area/service/abandoned_gambling_den/secondary) -"vNS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"vOc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"vOp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vOM" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vPe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 5; - id = "cargoload" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"vPg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vPq" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"vPs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"vPC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/auxiliary) -"vPM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vQq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Warehouse Maintenance"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"vQD" = ( -/obj/structure/table, -/obj/item/toy/sword, -/obj/item/gun/ballistic/shotgun/toy/crossbow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vQE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"vQK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command) -"vQS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vRc" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vRV" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/command/gateway) -"vSa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vSe" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vSm" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"vSn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"vSp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vSw" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/camera{ - c_tag = "Engineering - Chief Engineer's Quarters"; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/button/door/directional/east{ - id = "ceprivacy"; - name = "Privacy Control"; - req_access_txt = "56" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"vSA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"vSC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vSW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Testing Room"; - name = "atmospherics camera" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vTa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/dorms) -"vTf" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vTj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"vTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"vTv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"vTy" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Atmospherics - Engine Access"; - name = "atmospherics camera" - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"vTC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port) -"vTE" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/stamp/hos, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"vTH" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/cargo/office) -"vTW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Auxiliary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vUf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/command/nuke_storage) -"vUp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell #3" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"vUy" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vVc" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"vVv" = ( -/obj/structure/table/wood, -/obj/item/clothing/under/rank/civilian/curator, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/wood, -/area/service/library/abandoned) -"vVy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/pinpointer_dispenser, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"vVz" = ( -/obj/machinery/meter, -/obj/machinery/door/window/westright, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"vVD" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore Starboard"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vVF" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"vVO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"vWc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "AI Satellite - Fore Starboard"; - dir = 4; - name = "ai camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"vWi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"vWk" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"vWl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater/abandoned) -"vWo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vWE" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vWJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vWL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"vXh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vXq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Bypass" - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"vXy" = ( -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"vXz" = ( -/turf/closed/wall, -/area/security/prison/safe) -"vXB" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vXE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vYd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/abandoned_gambling_den/secondary) -"vYj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vYl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vYr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vYt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vYG" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"vYO" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt, -/obj/item/food/chococoin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"vYY" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"vZj" = ( -/turf/closed/wall/r_wall, -/area/command/gateway) -"vZl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vZt" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"vZy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"vZG" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"vZJ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vZQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/service/abandoned_gambling_den) -"wae" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"wao" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"wav" = ( -/obj/machinery/door/airlock/external{ - name = "External Docking Port" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"waK" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_one_access_txt = "13; 24; 10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/fore) -"waV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"wbb" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"wbt" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/structure/sign/nanotrasen{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner, -/area/commons/fitness/recreation) -"wbv" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Fore"; - name = "engineering camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"wbD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wbH" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/chapel/office) -"wcg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"wcj" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wcq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/cargo/sorting) -"wcu" = ( -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"wcz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"wcL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"wcX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wde" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wdi" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell #6" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"wdC" = ( -/obj/item/kirbyplants/random, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"wdO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"wei" = ( -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/science/misc_lab/range) -"wel" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"wew" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"weH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"weP" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"weV" = ( -/obj/machinery/computer/security, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"weZ" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/item/storage/box/papersack{ - icon_state = "paperbag_NanotrasenStandard_closed" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"wfe" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"wfi" = ( -/obj/machinery/door/window/brigdoor/security/cell/westright{ - id = "brig1"; - name = "Cell 1" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"wfI" = ( -/obj/structure/table/wood, -/obj/item/electronics/airalarm, -/obj/item/circuitboard/computer/med_data, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/electronic_marketing_den) -"wfK" = ( -/obj/structure/table/wood, -/obj/machinery/requests_console/directional/west{ - department = "Theater"; - name = "Theater Requests Console" - }, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/lipstick/random, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/theater) -"wfN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/morgue) -"wfX" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"wgo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Departures Hallway - Center"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wgv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"whb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"who" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"whq" = ( -/obj/structure/table/wood, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"whP" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"whY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"wic" = ( -/obj/structure/closet/radiation, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"wii" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wip" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"wiy" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/obj/item/stack/sheet/mineral/plasma{ - amount = 20 - }, -/obj/item/gps/engineering, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"wiF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Lockerroom" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wiP" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood, -/area/command/meeting_room/council) -"wjc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wji" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/sl, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wjr" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Exterior Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"wjz" = ( -/obj/effect/landmark/blobstart, -/obj/item/beacon, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/misc_lab) -"wjF" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"wjG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"wjL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wjN" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northright, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"wjP" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"wjS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"wjV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wjX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"wka" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"wke" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wkG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"wkR" = ( -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"wlf" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/office) -"wlp" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/white, -/area/service/kitchen) -"wlq" = ( -/turf/closed/wall/r_wall, -/area/lawoffice) -"wlE" = ( -/obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den) -"wlV" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"wmq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Bridge - Gateway Chamber"; - dir = 8; - name = "command camera" - }, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"wmt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wmw" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wmA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wmI" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wmL" = ( -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"wnb" = ( -/obj/machinery/field/generator, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wnk" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wnm" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wnE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"wnJ" = ( -/obj/structure/table/reinforced, -/obj/item/ai_module/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"wnQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/price_controller{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"wnT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"wnW" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"wof" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"woh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wow" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/service/janitor) -"woz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"woF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"woL" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"woP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wpt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"wpu" = ( -/obj/machinery/light/directional/east, -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"wpW" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"wqc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"wqf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wqo" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wqv" = ( -/obj/structure/table/wood, -/obj/machinery/keycard_auth/directional/west, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"wqK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"wqW" = ( -/obj/machinery/button/flasher{ - id = "Cell 6"; - name = "Prisoner Flash"; - pixel_x = -25 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wra" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wrg" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"wrv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"wrw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"wrG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"wrL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"wrV" = ( -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Air to External Air Ports" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wrY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos/upper) -"wss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"wsA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wsL" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"wsM" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wsZ" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/service/abandoned_gambling_den/secondary) -"wtc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/service/library/abandoned) -"wtm" = ( -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wtr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"wtv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/directional/south, -/turf/open/space, -/area/aisat) -"wtx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"wtA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"wtC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wub" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library/abandoned) -"wuy" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wuB" = ( -/obj/structure/safe, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/item/stack/spacecash/c500, -/obj/machinery/light/small/directional/south, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"wuK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/toggle/lawyer/purple, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/item/clothing/under/rank/civilian/lawyer/female, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/carpet, -/area/commons/dorms) -"wuN" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/machinery/camera{ - c_tag = "Security - Interrogation"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"wuX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wva" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"wve" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"wvg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/hostile/lizard{ - name = "Eats-The-Roaches"; - real_name = "Wags-His-Tail" - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"wvs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"wvy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/library/abandoned) -"wvA" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Observatory"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"wvB" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/commons/dorms) -"wvE" = ( -/obj/machinery/door/airlock/medical{ - name = "Psychology"; - req_access_txt = "70" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"wvG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"wvH" = ( -/obj/machinery/light/directional/west, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wvM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Toilet Unit 1" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"wvP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wvR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage) -"wvS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wvX" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"wwH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wwY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wxb" = ( -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"wxi" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/wiki/tcomms, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"wxO" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Fore Port"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wxQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"wxV" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"wyv" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"wyK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/east{ - id = "brigprison"; - name = "Prison Lockdown"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wyU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wyW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"wzi" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wzs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wzw" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wzA" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/library/abandoned) -"wzO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wzP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"wzU" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket/letterman_nanotrasen, -/obj/item/clothing/suit/toggle/lawyer, -/obj/item/clothing/under/costume/kilt, -/obj/item/clothing/head/beret, -/obj/machinery/airalarm/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/wood, -/area/commons/dorms) -"wzW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wzY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Xenobiology Maintenance"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wAa" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/abandoned_gambling_den/secondary) -"wAi" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"wAt" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wAy" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"wAA" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"wAZ" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wBb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"wBp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"wBS" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"wBW" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"wCh" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wCk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wCo" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"wCM" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/commons/vacant_room/office) -"wCO" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"wCQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"wCU" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 21 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"wDi" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/storage/fancy/egg_box, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"wDl" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"wDB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"wDH" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"wEb" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"wEc" = ( -/obj/structure/bookcase, -/obj/machinery/light/directional/north, -/obj/structure/sign/plaques/kiddie/badger{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"wEj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/library/abandoned) -"wEm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Surgery Observation" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/medical/surgery) -"wEq" = ( -/obj/item/retractor, -/obj/item/hemostat, -/obj/item/cautery, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"wEA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "councilblast"; - name = "Council Chambers Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/meeting_room/council) -"wEL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - name = "Deliveries"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wER" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchencounter"; - name = "Kitchen Counter Shutters" - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"wFe" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/security/prison) -"wFi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"wFy" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/structure/sign/painting/library{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"wFK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"wFR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wGx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Atmospherics" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wGJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wGN" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/library/abandoned) -"wGS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wGU" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"wGX" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wHb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/engine_room/external) -"wHh" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airalarm, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"wHk" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"wHq" = ( -/obj/machinery/hydroponics/constructable, -/obj/structure/sign/nanotrasen{ - pixel_y = -32 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wHB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wHT" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"wIn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"wIs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wII" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/hallway/primary/aft) -"wIM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"wIR" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/sunflower, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"wIU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 10 - }, -/obj/item/toy/plush/lizardplushie/space{ - name = "Meets-the-Ore" - }, -/turf/open/space/basic, -/area/space/nearstation) -"wJa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wJe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"wJk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Courtroom" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"wJo" = ( -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wJz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wJU" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wJW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"wKj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"wKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"wKG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"wLv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"wLB" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/bomj, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/abandoned_gambling_den) -"wLP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"wLV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"wLZ" = ( -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"wMd" = ( -/obj/machinery/camera{ - c_tag = "Arrivals Hallway - Aft"; - dir = 8; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wMD" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"wMG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"wMU" = ( -/obj/machinery/button/flasher{ - id = "Cell 5"; - name = "Prisoner Flash"; - pixel_x = 25; - pixel_y = 7 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/button/door/directional/east{ - id = "permashut5"; - name = "Cell Lockdown Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wNc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Turbine" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"wNi" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"wNq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"wNu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"wNw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"wNz" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Mix Cell"; - dir = 1; - name = "atmospherics camera" - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"wNK" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"wNO" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"wNS" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"wNY" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"wOm" = ( -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"wOD" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space, -/area/space/nearstation) -"wPe" = ( -/obj/structure/bed, -/obj/item/bedsheet/orange, -/obj/machinery/camera{ - c_tag = "Permabrig - Cell 4"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"wPF" = ( -/turf/open/floor/plasteel/grimy, -/area/service/bar/atrium) -"wPH" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"wPJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"wPK" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet1"; - name = "Toilet Unit 1" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"wPL" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=hall6"; - location = "hall5" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wPU" = ( -/obj/machinery/photocopier, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"wQc" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"wQf" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/obj/item/toy/figure/miner, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/west{ - pixel_x = -42 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wQo" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/port) -"wQu" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"wQx" = ( -/obj/item/kirbyplants/random, -/obj/machinery/flasher/directional/south{ - id = "AI"; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"wQC" = ( -/obj/machinery/door/window/southleft, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"wQI" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/shoes/magboots{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/storage) -"wQK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"wQY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wRg" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"wRt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wRv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater/abandoned) -"wRw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wRV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"wSb" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"wSu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wSx" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"wSz" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"wSB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wSK" = ( -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wSL" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plasteel/solarpanel, -/area/solars/starboard/aft) -"wSM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"wTa" = ( -/obj/machinery/computer/nanite_cloud_controller, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"wTb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/turntable, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"wTf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/disposal/incinerator) -"wTm" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"wTo" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"wTq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"wTr" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"wTx" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"wTy" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"wTL" = ( -/obj/structure/table, -/obj/item/storage/box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light_switch/directional/south{ - pixel_x = -20 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"wTN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wTY" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/pen, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"wUj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy"; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/pharmacy) -"wUo" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wUz" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/electrical, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/bot, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/storage_shared) -"wUF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wUH" = ( -/obj/machinery/camera{ - c_tag = "Vacant Commissary"; - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"wUY" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/kitchen) -"wVf" = ( -/obj/structure/table/wood, -/obj/machinery/light/directional/south, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/computer/security/telescreen/vault{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"wVj" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"wVo" = ( -/obj/structure/bed/dogbed/ian, -/obj/machinery/airalarm/directional/east, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"wVB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"wVG" = ( -/obj/structure/table/reinforced, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/storage) -"wVN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"wWb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool/bar, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"wWd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"wWh" = ( -/obj/structure/chair/wood, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/service/chapel/main) -"wWk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wWo" = ( -/turf/closed/wall, -/area/space) -"wWp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"wWN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"wWP" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"wXg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wXw" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"wXJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"wXQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"wXV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wXX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"wYe" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wYk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"wYm" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/service/bar/atrium) -"wYC" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "cargodeliver" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/cargo/sorting) -"wYE" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ - valve_open = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"wYI" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/solars/port/aft) -"wZs" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"wZS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"wZU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"wZX" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"xac" = ( -/obj/structure/sign/directions/evac{ - pixel_y = -8 - }, -/obj/structure/sign/directions/science, -/obj/structure/sign/directions/engineering{ - pixel_y = 8 - }, -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"xaj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor_switch/oneway{ - id = "cargodisposals"; - name = "Trash Filter Switch"; - pixel_x = -1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xao" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/atmos) -"xaw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"xax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xaC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"xaG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"xaJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"xaP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xaQ" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"xbc" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xbm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"xbp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 1; - req_access_txt = "48" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xbK" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xbZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xck" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"xcp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"xcq" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"xcs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"xcA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"xcD" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"xcM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"xcQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 9 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"xcV" = ( -/obj/item/kirbyplants/random, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"xdx" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"xdD" = ( -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"xdM" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command) -"xdX" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"xek" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Theater Backstage"; - req_access_txt = "46" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"xem" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/space) -"xeo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"xeq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/range) -"xev" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"xeB" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"xeC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"xeK" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 5 - }, -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/storage) -"xeL" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"xeU" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/engineering/supermatter) -"xfl" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xgq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"xgR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xha" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xhe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xhr" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/space, -/area/engineering/atmos) -"xhG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"xie" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"xih" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"xim" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - id = "cargodisposals" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/cargo/sorting) -"xio" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engineering/atmos/upper) -"xiu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xiD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/engineering/engine_room/external) -"xiH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"xiK" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/showcase/machinery/implanter{ - layer = 2.7; - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"xiQ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=engi1"; - location = "hall3" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xiV" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/space, -/area/engineering/atmos) -"xiY" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/poster/official/report_crimes{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/lawoffice) -"xjb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"xjd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"xji" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xjq" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/red, -/obj/item/stamp/law, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"xjy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"xjz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Break Room"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"xjI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"xjJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"xjT" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xjZ" = ( -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"xkU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"xle" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"xlj" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xlt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/morgue) -"xly" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"xlE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/dorms) -"xlG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"xmf" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xmi" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/abandoned_gambling_den/secondary) -"xmt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"xmP" = ( -/turf/open/floor/wood, -/area/commons/dorms) -"xmR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"xmS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/showcase/mecha/marauder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/corporate_showroom) -"xmT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"xnj" = ( -/obj/machinery/light/directional/south, -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xno" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"xnH" = ( -/obj/machinery/light/directional/west, -/obj/machinery/disposal/bin, -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Library Backroom"; - dir = 4; - name = "library camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"xnL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/main) -"xnP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"xog" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/space, -/area/space/nearstation) -"xon" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xot" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xox" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"xpb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/gateway) -"xpg" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xpj" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"xpm" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/brig) -"xps" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"xpx" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xpD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xpP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xpQ" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xpW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/engineering/storage/tech) -"xqe" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Theater" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/theater) -"xqi" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/lawoffice) -"xqx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xqz" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xqL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"xqS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"xqV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/obj/machinery/button/door/atmos_test_room_mainvent_1, -/turf/closed/wall/r_wall, -/area/engineering/atmos/upper) -"xra" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port) -"xre" = ( -/obj/structure/table/wood, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"xrw" = ( -/obj/machinery/exodrone_launcher, -/obj/effect/turf_decal/box, -/turf/open/floor/plating, -/area/cargo/warehouse) -"xrz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"xrC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"xsl" = ( -/obj/structure/closet/secure_closet/exile, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/gateway) -"xsm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"xsP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"xsQ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xtf" = ( -/obj/structure/easel, -/obj/effect/decal/cleanable/dirt, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/service/library/abandoned) -"xtg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/engineering/storage) -"xth" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xtt" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"xty" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"xtC" = ( -/obj/item/radio/intercom/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"xtH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xub" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xud" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/fore) -"xue" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"xuj" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xul" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"xuC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xuD" = ( -/obj/structure/bed, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/obj/item/bedsheet/dorms, -/turf/open/floor/carpet, -/area/commons/dorms) -"xuZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xvf" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"xvk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"xvm" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/service/library) -"xvp" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/paicard, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"xvC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xvI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xvO" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xvS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xvZ" = ( -/obj/structure/table, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"xwx" = ( -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"xwz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port) -"xwC" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xwQ" = ( -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xwV" = ( -/obj/effect/spawner/xmastree, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/service/bar/atrium) -"xwZ" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/newscaster/directional/east, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"xxb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/service/library/abandoned) -"xxj" = ( -/obj/structure/table, -/obj/item/trash/raisins, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"xxn" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library/abandoned) -"xxr" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer"; - dir = 4; - name = "engineering camera" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xxt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/brig) -"xxI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xyb" = ( -/obj/machinery/camera{ - c_tag = "Cargo - Quartermaster's Office"; - dir = 1; - name = "cargo camera" - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xyp" = ( -/obj/machinery/computer/upload/borg{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"xyI" = ( -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/south{ - id = "gatewayshutters"; - name = "Gateway Shutters" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"xzc" = ( -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xzd" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 9 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"xze" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research/abandoned) -"xzt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xzu" = ( -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xzy" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"xzz" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/office) -"xzK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"xzY" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/surgical_drapes, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"xzZ" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"xAi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"xAE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/paper_bin/carbon, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"xAW" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/shuttle_flight/mining/common, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xAZ" = ( -/obj/effect/landmark/start/paramedic, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"xBa" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"xBb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"xBe" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/service/kitchen) -"xBf" = ( -/obj/item/beacon, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"xBo" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"xBA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xCb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"xCc" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xCi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xCx" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"xCG" = ( -/mob/living/simple_animal/hostile/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"xDc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xDn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"xDq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Storage"; - req_access_txt = "24" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xDw" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "Medbay Junction"; - sortType = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xDI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/transit_tube) -"xDZ" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"xEm" = ( -/obj/item/chair/plastic, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"xEt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/aft) -"xEC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner, -/area/maintenance/department/electrical) -"xED" = ( -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/transit_tube) -"xEG" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Engine Cooling Bypass" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, -/turf/open/floor/plasteel, -/area/engineering/engine_room/external) -"xET" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"xEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"xFa" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"xFk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/kitchen) -"xFl" = ( -/obj/machinery/vendor/mining, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xFo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"xFD" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xFF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoshutter"; - name = "CMO Office Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"xFP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"xGe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xGl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"xGs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"xGJ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "Hydroponics Junction"; - sortType = 21 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"xHb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xHn" = ( -/turf/closed/wall, -/area/commons/storage/tools) -"xHD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"xHN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xHT" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"xHZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"xIn" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/service/kitchen) -"xIG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_one_access_txt = "72" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"xIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xIW" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"xJd" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Aft Port"; - dir = 4; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xJg" = ( -/obj/structure/chair/office, -/turf/open/floor/plasteel/grimy, -/area/commons/vacant_room/office) -"xJi" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xJA" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"xJD" = ( -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xJI" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/mop, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel, -/area/service/janitor) -"xJN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"xKd" = ( -/obj/effect/landmark/start/research_director, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"xKt" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/wood, -/area/lawoffice) -"xKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/electrical) -"xKG" = ( -/turf/closed/wall, -/area/engineering/transit_tube) -"xKL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xKQ" = ( -/obj/item/kirbyplants/random, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"xKY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"xLd" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"xLf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"xLk" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmoslock"; - name = "Atmospherics Lockdown Blast door" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xLu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/service/abandoned_gambling_den) -"xMc" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"xMe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port/fore) -"xMf" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchenside"; - name = "Kitchen Hall Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/kitchen) -"xMl" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"xMn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/port) -"xMD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"xNd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"xNh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/maintenance/port) -"xNl" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"xNn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/toilet/auxiliary) -"xNr" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"xNJ" = ( -/obj/machinery/light/directional/south, -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/laser_pointer{ - pixel_x = 3 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"xNR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xNT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"xNU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xOc" = ( -/obj/machinery/door/window/brigdoor{ - name = "Creature Pen"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"xOe" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/package_wrap, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/construction) -"xOf" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"xOo" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/science/research) -"xOr" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xOx" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/toy/figure/hos, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xOD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xOF" = ( -/obj/structure/fireplace, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/corporate_showroom) -"xOM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"xOV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"xPp" = ( -/obj/structure/punching_bag, -/turf/open/floor/plating, -/area/security/prison) -"xPy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/glass, -/area/maintenance/space_hut/observatory) -"xPC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"xPF" = ( -/turf/closed/wall/r_wall, -/area/engineering/engine_room/external) -"xPI" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/fancy/candle_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/service/theater/abandoned) -"xPJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"xPL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"xPP" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/starboard/aft) -"xPU" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"xQg" = ( -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/lightreplacer, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xQh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Recovery Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery) -"xQz" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"xQH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xRL" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/library/abandoned) -"xRN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/theater) -"xRQ" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/storage/tech) -"xRS" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"xRY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/abandoned_gambling_den/secondary) -"xSk" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"xSu" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"xSB" = ( -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Bridge - Captain's Quarters"; - dir = 1; - name = "command camera" - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"xSG" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xSY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xTa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xTi" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"xTw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"xTx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"xTD" = ( -/obj/structure/chair/stool/bar, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/abandoned_gambling_den/secondary) -"xTK" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"xTN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xUm" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"xUH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/stool/bar{ - dir = 1 - }, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel, -/area/service/bar/atrium) -"xUM" = ( -/obj/structure/plaque/static_plaque/golden/captain{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"xUO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/library) -"xVh" = ( -/obj/machinery/sparker/directional/west{ - id = "justicespark" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"xVm" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xVo" = ( -/turf/open/floor/carpet, -/area/commons/dorms) -"xVy" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xVL" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"xVN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"xVU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xVV" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Aft 2"; - dir = 1; - name = "holodeck camera" - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"xWn" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hop) -"xWq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xWB" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xWJ" = ( -/obj/structure/frame/computer, -/obj/item/stack/cable_coil, -/turf/open/floor/wood, -/area/service/electronic_marketing_den) -"xWM" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Maintenance Hatch"; - req_access_txt = "12" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"xXn" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"xXo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"xXs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"xXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/locker) -"xXy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"xXB" = ( -/obj/structure/table/wood, -/obj/item/clothing/mask/fakemoustache, -/obj/item/cane, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"xXC" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"xXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"xYc" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) -"xYd" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain) -"xYr" = ( -/obj/machinery/light_switch/directional/west, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"xYt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/syndicatebomb/training, -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/screwdriver, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/main) -"xYA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xYM" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"xYN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/hallway/primary/aft) -"xYP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xZb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"xZn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"xZy" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - name = "Security Desk"; - pixel_y = 8; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/checkpoint/escape) -"xZz" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"xZJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xZM" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"xZR" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xZT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"xZZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"yaC" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/briefcase, -/obj/item/cane, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/carpet, -/area/commons/dorms) -"yaE" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/commons/dorms) -"yaL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ybg" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway - Center"; - name = "hallway camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"ybh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"ybi" = ( -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/hos) -"ybl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ybr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 6 - }, -/obj/structure/closet/crate, -/turf/open/space/basic, -/area/space/nearstation) -"ybK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/preopen{ - id = "xeno7"; - name = "Creature Cell #7" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"ybP" = ( -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ybZ" = ( -/turf/open/floor/wood, -/area/service/library) -"ycd" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ycm" = ( -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"yct" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/engineering/atmos/upper) -"ycz" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/service/library) -"ycA" = ( -/obj/structure/sign/directions/engineering{ - desc = "A sign that shows there are doors here. There are doors everywhere!"; - icon_state = "doors"; - name = "WARNING: EXTERNAL AIRLOCK"; - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Solar - Fore Port"; - name = "solar camera" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ycB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Auxilliary Surgical Theatres"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/surgery/room_b) -"ycC" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ycI" = ( -/obj/structure/table/reinforced, -/obj/machinery/status_display/evac/directional/north, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/dark, -/area/command) -"ycK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ycM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"ycV" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ydd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/science/misc_lab) -"ydg" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigprison"; - name = "Prison Blast door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ydq" = ( -/obj/structure/frame/machine, -/obj/machinery/light/directional/north, -/turf/open/floor/engine, -/area/engineering/engine_room/external) -"yds" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ydF" = ( -/obj/structure/dresser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater/abandoned) -"ydQ" = ( -/obj/machinery/door/window/brigdoor/westleft{ - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/command/heads_quarters/captain/private) -"ydT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/medical, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/medical) -"yec" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/cargo/warehouse) -"yek" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"yew" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel{ - heat_capacity = 1e+006 - }, -/area/commons/fitness/recreation) -"yeH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Antechamber"; - req_access_txt = "16" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"yeR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"yfc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"yfe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"yfl" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel, -/area/security/prison) -"yfF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"yfH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"yfL" = ( -/obj/machinery/door/window/eastleft, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"yge" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/item/lighter, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"ygs" = ( -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/bar) -"ygx" = ( -/obj/structure/table/wood, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/newscaster/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/abandoned_gambling_den) -"yhE" = ( -/obj/structure/table/wood, -/obj/item/instrument/violin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"yhJ" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"yhN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"yhU" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/deputy, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"yhV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"yhZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"yif" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/solars/port/aft) -"yin" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/restrooms) -"yiv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"yiD" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"yiE" = ( -/obj/item/kirbyplants/random, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden/abandoned) -"yiM" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plating, -/area/service/library/abandoned) -"yiY" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"yjc" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/science/research/abandoned) -"yjg" = ( -/obj/machinery/computer/piratepad_control/civilian{ - dir = 4 - }, -/obj/structure/railing, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"yjE" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"yjF" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"yjN" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"yjY" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ykf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ykg" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/cmo) -"ykY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter/atmos/distro_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"yli" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/library/abandoned) -"yll" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ylo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos/upper) -"ylr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution) -"yls" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/camera_film, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"ylt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ylX" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/directional/south, -/turf/open/floor/plasteel, -/area/engineering/main) -"ylY" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"yma" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ymb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"yme" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -bmD -bpF -bmD -bpF -bmD -bpF -bmD -bpF -bmD -bpF -bmD -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -bkE -glT -qfd -tim -qfd -iXt -sXy -ljl -qfd -qfd -qfd -uzn -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -aad -ajr -ajr -ajr -ajr -bkF -vgh -bNu -bmH -bRx -pmI -wae -hwU -brL -bmH -boj -vgh -brM -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -bpF -bmD -bmD -bpF -bmD -bmD -bpF -bmD -bmD -bpF -bmD -bpF -boe -vgh -brO -bPC -bPC -bPC -sAG -bXU -bPC -bPC -bRO -vgh -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkF -uSH -hzd -hzd -hzd -hzd -uwg -auY -qfd -qfd -qfd -qfd -qfd -qfd -tsA -brN -bPC -bRy -tOg -dVq -bXV -tte -bPC -bkE -vgh -brM -ajr -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brL -btF -bmH -bmH -bmH -btF -bmH -bmH -btF -bmH -bmH -btF -bLw -aaa -bPC -bRz -koI -mlC -bXW -caa -bPC -bkE -vgh -chh -bmD -bpF -bmD -bmD -bpF -bmD -bpF -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brM -aad -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRA -bTq -wmL -caf -cab -bPC -bRO -nUj -qfd -qfd -iMp -hzd -agX -hzd -hzd -hod -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -bkF -gUo -brN -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRB -bTq -xqL -caf -cac -bPC -aaa -btF -bmH -bmH -btF -bmH -bmH -bpN -cqj -gUo -brM -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brN -aaa -btH -btH -btH -byS -rgx -btH -bEf -btH -nhp -bAG -bLx -btH -bPC -bRC -bTs -isg -bXY -cad -bPC -cdt -cdt -chi -chi -cdt -cdt -aad -aad -bkF -gUo -brN -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -bkF -gUo -brO -aad -btH -btH -bxv -byT -bAz -bCq -bEg -bCq -bCq -bJF -bCq -bxv -bPC -bRD -bPC -yeH -bPC -bPC -bPC -cdt -cfs -chj -cdv -ckn -cdt -cdt -aad -bkE -gUo -brM -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -bmD -boe -gUo -brN -aaa -btH -btH -bxw -bCu -mFB -bCu -bEl -abJ -abJ -bcG -abJ -bNA -bPC -bKJ -bYa -nAo -bYa -bRE -bRD -eWf -cft -cho -ciR -cft -clM -cdt -cdt -bkE -gUo -bNB -bpF -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -hXG -mSA -kYS -oiZ -sSb -sSb -sSb -jHu -aBN -xaC -jHu -oGN -jCf -jHu -jHu -abJ -bNw -bPC -bRF -bTu -sRS -bYe -cae -bPC -cdw -cfu -ckp -gna -ckp -clN -cnu -cdt -bRO -nvW -mvj -drB -brM -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkF -nvW -lDh -vvf -brN -btH -btH -bwo -bxy -bCu -xaC -btH -aby -btH -btH -wnT -abJ -bNx -bPC -bRG -bYe -eFb -bYe -caf -bPC -cft -cfu -cho -gih -cfu -cft -cnv -cdt -bkE -nvW -fiP -vvf -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -bkE -nvW -upg -oJI -wtv -btH -btH -bwp -bxz -bEl -hqR -bCt -abz -bFT -btH -pBK -trT -nQm -mpu -xue -bhn -qYD -pFl -bvF -gnv -mru -mru -gLm -bkJ -vtx -kmX -vbE -sGj -vCl -rrp -rFT -vvf -brM -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkF -nvW -lDh -vvf -brN -btH -btH -bwq -bxy -bCu -xaC -btH -abA -btH -btH -brB -abJ -oYv -bPC -wka -bYe -eFb -bYe -cah -bPC -cdz -cfu -cho -xyp -cfu -cft -cnx -cdt -bkE -nvW -rLT -vvf -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -yiY -iLT -sYn -wOD -uJH -uJH -uJH -nav -hGF -xaC -nav -fZp -aRF -nav -nav -abJ -bCq -bPH -bRF -bYe -vKj -bYf -cai -bPC -cdw -cfu -ckp -ggn -cfu -clP -cny -cdt -bRO -nvW -lMm -wHT -brM -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -bmH -boj -gUo -brN -aaa -btH -btH -bxw -bCu -nnp -bCu -bEl -abJ -abJ -orN -abJ -bNA -bPC -sES -bYg -nAo -bYg -caj -bPC -cdA -cft -cho -ciX -cft -clQ -cdt -cdt -bkE -gUo -bNu -bpN -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -bkF -gUo -brO -aad -btH -btH -bxv -bzb -bAF -bCq -bEg -bCq -bCq -bJM -bCq -bxv -bPC -bRD -bPC -qQH -bPC -bPC -bPC -cdt -cfz -chq -cdv -ckt -cdt -cdt -aad -bkE -gUo -brM -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brN -aaa -btH -btH -btH -bzc -tbk -btH -bEm -btH -bHM -bJN -bAy -btH -bPC -bRF -bTB -isg -bYh -cak -bPC -cdt -cdt -chi -chi -cdt -cdt -aad -aad -bkF -gUo -brN -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -bkE -gUo -brN -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRK -bTC -tyN -caf -cal -bPC -aaa -btJ -bmD -bmD -btJ -bmD -bmD -bpF -cqn -gUo -brM -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brM -aad -aad -aad -btH -btH -btH -btH -btH -btH -btH -btH -btH -btH -bPC -bRL -caf -vxr -caf -cam -bPC -bRO -glT -qfd -qfd -iMp -hzd -uDo -hzd -hzd -wjN -brN -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkE -gUo -brS -btJ -bmD -bmD -bmD -btJ -bmD -bmD -btJ -bmD -bmD -btJ -bmD -aaa -bPC -bRM -caf -mJI -aXh -can -bPC -bkE -vgh -chs -bmH -bpN -bmH -bmH -bpN -bmH -bmH -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -bkF -lMG -hzd -hzd -hzd -hzd -vWc -auY -qfd -qfd -qfd -cdH -qfd -qfd -uzn -brN -bPC -bRF -bYg -nAo -bYg -cao -bPC -bkE -vgh -brM -ajr -ajr -aad -ajr -ajr -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -bpN -bmH -bmH -bpN -bmH -bmH -bpN -bmH -bmH -bpN -bmH -bpN -boj -vgh -brO -bPC -bPC -bPC -sPq -bPC -bPC -bPC -bRO -vgh -brN -ajr -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -bkF -vgh -bNB -bmD -bRN -ruZ -jLb -eWx -brS -bmD -boe -vgh -brM -ajr -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -ajr -bkE -nUj -gBM -leh -gVL -nNX -nzh -qhN -qfd -qfd -qfd -tsA -cht -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aad -aaa -boj -hPw -bNu -bRx -pCn -brj -vvf -brL -bmH -bpN -bmH -aaa -ajr -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -ajr -ajr -bkF -wjr -brM -bRO -pCn -hMZ -vvf -brO -ajr -ajr -ajr -aad -ajr -aad -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aad -aaa -ciZ -aaa -bRO -pCn -ocp -vvf -brO -aaa -aad -aaa -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -aad -aaa -ciZ -aaa -bRO -pCn -hPw -vvf -brO -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGX -dGW -dGX -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -aad -aad -ciZ -aad -bRP -fIt -pok -vlo -aJD -aad -aad -aad -aad -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGW -dGX -dLC -dGX -dGW -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aaa -aad -aaa -ciZ -aaa -bkF -qfn -jAg -xty -brM -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGX -dGX -dKw -dLD -dNo -dGX -dGX -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -aad -aaa -ciZ -aaa -bRQ -bmH -cas -bmH -cap -aaa -aad -aaa -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -dGW -dGW -dJG -dNp -dLE -vmK -dNY -dGW -dGW -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -aad -aad -ciZ -aad -bRR -aad -hqK -aad -bRR -aad -aad -aad -aad -aad -ajr -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dGX -dIi -dJH -dJH -dLF -dNq -dLE -dOL -dGX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aad -aaa -ciZ -aaa -bRS -aaa -hqK -aaa -caq -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -dGW -dGW -dJI -dKy -dJH -dNr -dNZ -dGW -dGW -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aaa -aad -aaa -ciZ -aaa -aad -bTJ -hqK -bYm -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGX -dGX -dKz -dLE -dNs -dGX -dGX -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -aad -aaa -ciZ -aaa -aad -aaa -sZO -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGW -dGX -dLG -dGX -dGW -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -aad -aad -ciZ -ciZ -ciZ -aad -vsy -aad -aad -aad -aad -aad -aad -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -dGX -dLH -dGX -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aad -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -aad -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aad -aad -aad -aad -aad -ciZ -aad -cWs -aad -aad -aad -aad -aad -aad -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aaa -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -aaa -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -aad -aad -aad -aad -ciZ -aad -vsy -aad -aad -aad -aad -aad -aad -aad -ajr -aad -ajr -qYo -rSK -rSK -rSK -rSK -qYo -rSK -rSK -rSK -rSK -qYo -rSK -rSK -rSK -rSK -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -aad -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -aad -ajr -ajr -ajr -ajr -aad -aaa -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -ajr -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -rSK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aad -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -ciZ -aad -cWs -aad -aad -aad -aad -aad -aad -aad -ajr -aad -ajr -rSK -rSK -rSK -qYo -rSK -rSK -rSK -qYo -rSK -rSK -rSK -rSK -qYo -qYo -qYo -rSK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aaa -aad -aaa -aad -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -let -let -let -let -let -let -let -aaa -aad -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -ajr -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -aaa -qYo -aaa -aaa -qYo -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aad -aaa -pvg -ota -pvg -aaa -aad -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -aad -let -xaJ -xaJ -pGi -xaJ -xaJ -xSu -ajr -aad -aad -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aaa -aaa -ajr -aaa -qYo -aaa -qYo -aaa -aaa -qYo -aaa -aaa -aaa -qYo -qYo -qYo -qYo -rSK -aaa -abj -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aad -let -xaJ -iEZ -xIW -hHR -xaJ -let -aad -aaa -aaa -ciZ -aad -vsy -aad -aad -aad -aad -aad -aad -aad -aad -aaa -qYo -uKa -rxf -rxf -rxf -rxf -rxf -rxf -rxf -rxf -fBG -aaa -aaa -rSK -aad -abj -aad -aad -ajr -ajr -ajr -ajr -qYo -ajr -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aad -let -xaJ -xIW -hCT -qPq -xaJ -let -ajr -ajr -aad -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aad -qYo -qYo -qYo -qYo -ksq -kXq -kvX -frC -kvX -frC -kvX -frC -kvX -tGf -aaa -aaa -rSK -aaa -abj -aaa -aad -aaa -aad -aaa -aad -qYo -aad -aaa -aad -aaa -aad -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pvg -ota -pvg -aad -pvg -ota -pvg -aad -pvg -ota -pvg -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -let -xaJ -hHR -xIW -iEZ -xaJ -xSu -aad -ajr -aaa -ciZ -aaa -cWs -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aaa -qYo -ksq -hIH -kvX -frC -kvX -frC -kvX -frC -kvX -fBG -qYo -qYo -qYo -aad -abj -aad -ajr -ajr -ajr -aad -ajr -wQo -ajr -aad -ajr -aad -ajr -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aad -let -xaJ -vkv -vMT -iTb -xaJ -let -aad -aad -aad -ciZ -aad -cWs -aad -aad -aad -ajr -ajr -ajr -qYo -qYo -qYo -qYo -ksq -kXq -kvX -frC -kvX -frC -kvX -frC -kvX -tGf -qYo -aaa -rSK -aaa -abj -aaa -aad -aaa -aad -aad -aad -rfe -aad -aad -aad -aaa -aad -ajr -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aac -aaa -pvg -ota -pvg -aaa -aad -ota -aad -aaa -pvg -ota -pvg -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aaa -aad -let -qVA -voI -vhj -voI -iQO -let -aad -ajr -aaa -ciZ -aaa -cWs -aaa -aaa -aad -aaa -aad -aaa -qYo -aaa -aaa -aaa -ksq -hIH -kvX -frC -kvX -frC -kvX -frC -kvX -fBG -qYo -aaa -rSK -aad -abj -caE -caE -cOj -caE -caE -caE -oQn -caE -caE -caE -cOj -caE -aad -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aad -aad -aad -ota -aad -aad -aad -goR -aad -aad -aad -ota -aad -aad -aad -aaa -aaa -aaa -aaa -qYo -qYo -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -ajr -aaa -aad -aad -let -vMb -jir -iqH -jMu -gjl -let -aad -ajr -aaa -ciZ -aaa -cWs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -ksq -vVc -vVc -vVc -vVc -vVc -vVc -vVc -vVc -ksq -rOc -aaa -cnI -caE -cJI -caE -cme -cOk -cQc -caE -cTj -cVl -cWH -caE -dal -dbM -ddB -caE -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -hDg -ota -ota -goR -goR -goR -qVr -goR -goR -goR -goR -syP -goR -goR -goR -goR -ota -xud -xud -xud -xud -kbs -kbs -kbs -kbs -aad -qYo -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -aad -let -qjM -uMi -tkb -uMi -kQF -let -aad -aad -aad -ciZ -aad -vsy -aad -aaa -aaa -aaa -aaa -aaa -aaa -qYo -xPF -wTm -lVD -wTm -xPF -xPF -wTm -wTm -xPF -xPF -wTm -lVD -cmq -xPF -cnI -cIp -cqI -caE -cMM -toe -cQd -caE -cTk -cVm -cfT -caE -dam -kQl -ddC -caE -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aad -aad -aad -ota -aad -aad -aad -goR -aad -aad -aad -ota -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -kbs -aad -aaa -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aad -let -igW -qBO -nYZ -lkh -ssC -let -aad -ajr -aaa -ciZ -aaa -cWs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -xPF -qAm -rdH -ogB -hgA -rdm -kzh -jGi -cPU -jGi -ogB -oUq -tmW -xPF -dBD -cnI -cJJ -caE -caE -ign -caE -caE -caE -kwW -caE -caE -caE -ign -caE -caE -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -aaa -pvg -ota -pvg -aaa -aad -ota -aad -aaa -pvg -ota -pvg -aaa -aad -aaa -aaa -aRm -aMt -aNO -aMt -mIc -aFp -waK -aFp -qYo -aad -ajr -aad -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -aad -aad -aad -let -xeo -nGS -eZu -gDQ -oWZ -eCo -vka -vka -kxX -pJJ -kxX -vdR -kxX -oLh -oLh -wZs -oLh -wZs -oLh -oLh -oLh -eKA -glz -ulh -ulh -uao -wqK -vXq -wWd -hxm -wWd -iAa -sHo -xPF -qpq -ceb -uwX -cjb -dBm -jWq -dBm -gGT -kpA -hDK -gXj -gXj -hiu -nIl -ddD -caE -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -ajr -aaa -eCP -hZA -aFr -aIk -aFr -mIc -aFp -aNP -aFp -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -aad -aaa -nOg -let -let -let -nTg -vqd -nTg -let -ttR -aad -ciZ -ciZ -ciZ -aad -cWs -aad -xPF -fWC -fWC -nUd -fWC -otP -cpr -hfi -iJo -lAe -gep -vIw -pIR -uda -lSL -lGt -trH -trH -ijR -wnE -xPF -ceb -qpq -cCO -yfF -cjp -cOn -cjq -ced -ced -cea -ceb -cjq -dan -aSy -cea -caE -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -pvg -ota -pvg -aad -pvg -ota -pvg -aad -pvg -ota -pvg -aad -ajr -aad -jjm -aFr -aFr -aIl -aFr -aFr -aFp -aNQ -aFp -aFp -abj -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -abj -let -lAK -xeB -feM -czw -maY -nyQ -ttR -aad -ciZ -aad -aad -aad -cWs -aad -xPF -bQG -gCD -vAu -fWC -otP -vNO -vzm -rNb -idx -qzf -tKt -inC -tKt -qzf -wHb -nLn -dqi -mKr -wnE -xPF -cHb -xMn -ceb -yfF -cMO -cMO -cMO -cMO -cMO -cMO -cMO -cMO -cMO -xNh -cfT -caE -aad -aad -aaa -ish -ish -nPM -ish -nPM -ish -ish -aaa -aaa -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -ajr -aaa -jjm -aRo -aMu -aIm -aPx -aFr -nxG -aNR -whP -aFq -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -oMH -ojo -fqY -bnZ -pRa -ktR -pRa -uJL -gTJ -pIZ -gIX -pIZ -pIZ -aad -cWs -aad -xPF -bQG -gCD -gCD -fWC -otP -sfZ -xPF -uGa -lAe -qzf -qzE -vyP -xeU -qzf -iuk -iuk -mef -cvh -wnE -xPF -qpq -qpq -cIu -dJu -cMO -cOo -cQe -oqI -cTm -vlp -cWI -cYx -cMO -syi -ddE -caE -aad -aad -aad -ish -pRv -ole -uJw -sDw -fET -ish -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -pvg -ota -pvg -aaa -aad -aaa -jjm -aFr -mVI -aIn -qiG -aFr -ruy -aNS -aJF -aFq -abj -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -aRx -let -lYg -xeB -qoK -eZu -haW -xRS -let -xED -ptk -hXe -pIZ -bTK -bFX -bTK -xPF -mGk -mGk -mGk -mGk -otP -vNO -aTe -rNb -ezC -qzf -hVW -hVW -hVW -qzf -qzf -qzf -htS -mKr -lhy -xPF -uwX -ceb -cJK -nNC -cMP -cOp -cQf -eiq -cTn -hxu -gXn -cYy -cMO -vIE -ddF -caE -nPM -ish -nPM -ish -ahe -sBx -wlE -rGJ -lsT -ish -nPM -ish -nPM -nPM -aad -ajr -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aad -aaa -pvg -ota -pvg -aaa -aad -aaa -aad -aaa -ajr -aad -jjm -mPp -tBg -aIo -ueo -qOU -ycA -wLb -aPz -aFq -aad -vFd -uWU -gPC -uWU -vFd -tcF -tWP -tcF -vFd -gmN -sin -gmN -vFd -tDV -wEb -tDV -vFd -mOB -mLw -npf -npf -npf -qTO -npf -mLw -pIZ -xKG -ocA -xKG -pIZ -ulk -xmT -qdh -xPF -otP -otP -otP -otP -otP -vNO -eyE -vZy -tGP -qzf -rgQ -tii -wrL -tLP -lBd -lZd -hnW -ijR -sHo -xPF -qpq -uwX -ceb -nSD -kYd -kqC -lcB -oRG -cTo -sGW -oBv -gBo -vjp -rcu -ddE -caE -gxd -kSD -sBb -xHT -iQv -gAD -eYJ -rGJ -lsT -mDX -ygx -xcq -xzZ -nPM -aad -ajr -ajr -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -ajr -ajr -aad -ajr -aad -aaa -aad -aaa -aad -aaa -aad -ajr -aad -ajr -ajr -aad -jjm -aFr -mVI -aIp -qiG -aFr -aFq -niz -aJH -aFq -abj -vFd -gse -ikU -uWU -vFd -rcU -xJA -tcF -vFd -mjZ -wYE -gmN -vFd -tDV -tDV -wNz -vFd -mOB -mLw -uTr -tak -uJe -rGw -eLv -oUf -pIZ -hbO -ptk -wQx -xDI -nPG -oRe -sXh -xPF -nTX -otP -cif -otP -otP -vNO -wTm -rKr -hhS -hWu -rgQ -uqa -wrL -tLP -vyP -eZx -pDs -hpb -wnE -xPF -tXV -tXV -cjp -vyo -cMO -tbj -iUP -lir -pDj -cVr -xEC -xKu -cMP -oOe -cea -caE -igc -gXC -vTj -xLu -mCz -mCz -mZd -mCz -pzz -kBX -sQY -vKW -uxo -ish -aad -aad -aad -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -qYo -ajr -ajr -ajr -ajr -ajr -ajr -ajr -ajr -ajr -aad -aad -aad -aad -xog -aFr -qYZ -aIq -czL -aLd -aMy -jKt -aPA -aFr -aad -vFd -orZ -iGx -oHH -vFd -ozg -vdU -nUg -vFd -xXy -xaQ -pje -vFd -sUH -rwr -pfb -vFd -mOB -mLw -wUz -jSZ -uJe -nzq -jdL -iMu -stR -hVY -tMW -opg -tTZ -opg -rbu -ovG -xPF -otP -otP -cwh -otP -otP -vNO -eyE -iDn -cGf -qzf -rgQ -tii -wrL -tLP -lYR -tKt -jBK -ijR -wnE -eyE -fqV -hnN -cJM -eCZ -cMO -cOs -cQi -cRD -cTq -cVs -dXI -peM -cMO -jIv -ddH -caE -xHT -fcw -hgo -pQp -ahe -rCn -lOV -uxo -fET -lsT -jgK -wFi -kqi -nPM -aad -aaa -aaa -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aad -aaa -eqU -aaa -eqU -aaa -aaa -eqU -aaa -aaa -aaa -aaa -lYc -pcP -aGQ -aIr -hZo -aLe -aMz -hTt -aPB -aFs -abj -vFd -aUp -jEV -iVb -vFd -aUp -jEV -iVb -vFd -aUp -jEV -iVb -vFd -nZf -jEV -gLS -vFd -mOB -mLw -htv -vHV -uJe -pJd -rch -oUf -pIZ -odU -uFq -sJx -xDI -uZA -xCx -oCQ -xPF -otP -otP -vyR -otP -otP -lON -lgs -oZO -ezC -qzf -qzf -tSQ -qzf -qzf -qzf -qzf -hdp -miV -ren -iev -byf -kep -cJN -jJY -cMO -cMO -cQj -cMO -cQj -cMO -cQj -cMO -cMO -gPx -cjp -caE -ipD -dkX -obm -oWX -jho -jho -jho -jho -jho -naG -jgK -heL -uAx -ish -ish -ish -aaa -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rSK -qYo -aad -iqM -anJ -anJ -anJ -iqM -ixS -iqM -vlu -vlu -vlu -vsT -aad -aFr -aGR -aIs -baL -pCj -bsj -qwM -aPC -aFr -aad -oQt -gCw -oQt -xiV -oQt -gCw -oQt -xiV -rGU -rLL -xhr -hII -xhr -vJc -xhr -pVf -xhr -pQj -mLw -vmo -jSZ -uJe -gLM -mNl -uEO -uEO -uEO -uEO -uEO -uEO -uEO -uEO -uEO -xPF -vSm -otP -otP -otP -otP -izl -vzm -uGa -idx -qzf -uWq -hdi -xeU -qzf -pEZ -pEZ -cNX -ijR -kDP -eyE -apH -hnN -cea -lKe -cMO -cOt -cQk -cRF -cTr -cVt -cWL -cYC -cMO -moY -ddI -caE -fXi -uLz -lBN -inK -wFi -wFi -nCS -nCS -fET -pSE -iah -lsT -lsT -ahe -fET -ish -aaa -aad -ajr -aad -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rSK -aaa -mIc -iqM -fph -fph -fph -iqM -ixS -iqM -fph -fph -fph -iqM -qYo -aFr -aGS -aIt -ooj -pPs -xXs -xXs -xXs -kPH -kPH -kPH -rgE -xXs -dwE -kPH -rgE -xXs -dwE -raM -rgE -xXs -dwE -kPH -rFD -xXs -czV -kPH -kPH -mLw -wBS -ima -uJe -pJd -otK -uEO -kYC -odR -jQW -ktT -rIR -fLT -vat -wfX -xPF -vDL -xiD -vMG -vMG -vMG -sbI -xPF -aCW -lAe -qzf -vDy -lZo -qzf -qzf -axV -axV -rBJ -mtp -cqW -xPF -xPF -xPF -cCO -jJY -cMO -cOu -cQl -cRG -cTs -cRG -cWM -cYD -cMO -qSf -ddI -caE -ksk -fKe -lsT -uvL -lgR -lgR -fET -vKW -wFi -pSE -iga -hfn -jfz -ogi -fSA -nPM -aad -abj -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -rSK -aaa -mIc -hfC -fph -fph -fph -qvW -ixS -qvW -fph -fph -fph -qvW -qYo -aFr -aGT -tCX -eDo -wTf -xXs -ipq -ipq -mhy -bgH -fVZ -qaa -olW -aDu -jIO -woP -bgH -uDg -uiP -woP -bgH -aDu -jwE -oVs -kQs -tMQ -cDC -nYd -mLw -mLw -mLw -mLw -iHs -mLw -uEO -tFA -ewl -uUh -eys -eys -eys -wLP -oyd -xPF -imZ -xPF -nLQ -nLQ -nLQ -xPF -xPF -uGa -oni -mkl -iMT -xEG -bQA -vJj -mJf -mJf -tQl -lmL -uWl -lmL -dai -xPF -cJK -eCZ -cMO -cOv -cQm -cRH -cTt -cVu -cWN -cYE -cMO -qSf -ddF -caE -xzZ -kfO -qZI -nhx -pyO -lgR -vWk -pyO -ahe -pSE -aAv -hfn -hak -fET -uty -ish -aaa -abj -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -aad -iqM -cYq -fph -qWc -iqM -ixS -iqM -cYq -fph -qWc -iqM -qYo -aFs -aGU -aIt -wNc -who -kxk -pQf -tjD -jZK -kfU -cED -pDG -qGf -fYc -fnZ -sHe -eRQ -ogE -fAf -kqn -hWy -rmu -kzl -hgE -nCC -exw -kdz -ldU -kQc -bCl -njj -fFv -nfX -xYr -uEO -iOi -kZE -cxC -fjr -ksX -dwO -mIK -fAl -xPF -qUa -xPF -fip -sha -fkA -xZb -bXn -mtv -lAe -jGi -sBC -jGi -sBC -lGt -sBC -jGi -sBC -wTm -brk -pcV -sBC -xPF -cCO -vyo -cMS -cOw -cQn -ehu -cTt -cVv -cWO -cYF -cMO -jRA -cea -caE -iVI -kfO -mDX -nhx -pyO -ahe -hqS -wFi -lgR -pSE -uFt -hfn -kAa -lsT -oxk -nPM -aad -abj -aad -aad -aad -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -mIc -vsT -cAy -wrY -hLW -iqM -ixS -iqM -hLW -wrY -hLW -iqM -qYo -aFs -aGV -aIv -cGj -czo -xXs -ipq -cdV -uyH -ush -mrl -eSr -eSr -eSr -eSr -htZ -eSr -eSr -xji -sVP -mXI -bcm -kne -ujL -vvu -cKJ -qVS -sTF -pqg -xUm -qKC -sdU -jiX -rtP -uEO -vIC -kZE -tov -yge -uAA -pSK -foe -vSn -xPF -sXO -xPF -ydq -fbr -jmU -rTk -vzm -xzK -xhG -wip -gbB -wip -wip -ntC -wip -gbB -wip -wTm -dVe -aOl -kIE -xPF -cJX -rZP -bve -eVn -eoC -xHD -cTu -cVw -cWP -cYG -dap -xwz -ceb -caE -ahe -kfO -bOv -nhx -ahe -fET -fET -wFi -nCS -pSE -jgK -wLB -fJD -ahe -uXJ -ish -aaa -abj -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aaa -aaa -aad -aaa -aad -aaa -aad -aad -fOP -hLW -qHt -hLW -ixS -ixS -ixS -hLW -qHt -hLW -ixS -qYo -aFr -aGW -aIs -aJP -tjK -xXs -ipq -ohn -slk -vzJ -lYD -sGS -qLr -ftA -ftA -hkO -ccM -ccM -jHv -ccM -sBH -oCZ -kEj -qaM -vOG -vOM -ilU -ktb -mLw -vZt -hZN -gOQ -fnx -sSt -uEO -sZX -ehq -fQL -pQg -pQg -oFe -ibr -tMm -xPF -qUa -pIG -xLf -oKN -lLZ -eMM -bXn -kQS -sre -jGi -lGt -lGt -slt -lGt -jGi -dYO -jGi -wTm -wNO -gwo -dkr -xPF -cxO -jJY -cMO -cOy -cQq -lbV -cTt -cVv -cWQ -cWK -cMS -qSf -ddL -deU -wNK -mSW -kjX -soj -dJf -dJf -dJf -siG -yfL -sUG -vZQ -rVz -lEd -ish -ish -ish -aaa -aad -aad -aad -aad -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -ajr -ajr -ajr -ajr -aad -iqM -iqM -iqM -xqV -kfz -hLW -cJl -iqM -cJl -ilK -kfz -hLW -cJl -cJl -iqM -aFr -aIx -xZZ -tjK -eVv -owj -fbu -qFy -onI -nTL -jvP -obG -ele -hHP -obG -obG -uKx -cCn -nfS -hnF -aet -kne -hSK -elR -aoe -glp -ykY -jJW -exW -fJI -nJc -avC -lTu -uEO -jCg -vja -xpP -ycC -xpP -syn -nbs -vVF -xPF -uLk -xPF -qtg -eJC -eJC -xul -xPF -dSm -jYB -jYB -hdG -jYB -eTO -tBF -kFs -loE -jYB -jvK -jYB -eOZ -oLa -xPF -cxO -vic -cMO -cOz -cQq -cRL -cTv -cVy -cWR -cYH -cMO -kLZ -gmc -xra -uOy -hPD -fmE -jNZ -fBp -uAx -iCE -ogi -lsT -jAr -hgo -wFi -pAO -nPM -hKR -hCJ -aaa -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aad -aFo -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -aad -aad -aad -aad -fbQ -rTO -rum -kIc -wLZ -kIc -uUy -cFL -cWJ -kIc -wLZ -kIc -mCA -wLZ -cHk -tmu -aIy -fqt -gcW -mZD -hbW -sDl -qkN -vzJ -lYD -nFE -qjG -vgX -oFI -qjG -qjG -mHs -cxU -eMa -xZR -hIN -wcX -hSK -jiW -ccM -qLr -laF -mLw -npf -npf -wIn -xDn -npf -uEO -thf -plo -oAN -vrt -mVk -pZy -mVk -uEO -xPF -rio -kRL -eCG -okn -bcd -xPF -xPF -xPF -eyE -wTm -pAs -wTm -eyE -xPF -xPF -xPF -wTm -xPF -qaq -lLn -xPF -xPF -cxN -gWm -cMO -cOA -cQr -cRM -cRM -cVz -cWS -cYI -cMO -oOe -cxN -caE -hrt -orG -iGT -wFi -wFi -wFi -wFi -lgR -ina -wFi -wFi -lgR -nTO -ish -aad -aad -aad -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aFo -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aad -iqM -iqM -cJl -cJl -cJl -iqM -iqM -aPS -mCA -mCA -mCA -aPS -mCA -aPS -mCA -aPS -aPS -wLZ -wLZ -tmu -tmu -foG -tmu -mZD -aWE -rMZ -hSV -tMS -hBf -aqT -epH -nfp -dVM -iDB -cCn -rPb -cCn -rgv -jya -sCQ -xOM -hHe -cuM -tXm -aCo -tSv -mbo -uRC -nXJ -rfF -tHX -uAX -gBh -gDB -uSA -tzq -uEO -swj -xVU -jyl -vrt -uFL -wLV -oXW -iHq -hVZ -nGZ -nKE -vBh -tXV -oFY -uEd -xbm -uEd -snh -tXV -odf -nKE -oXW -oXW -ipn -ebp -nnn -tXV -cJX -mLv -cMO -cOB -cQs -cRN -cTw -cVA -cWT -cYJ -cMO -oOe -ddN -caE -xzZ -mhQ -nTO -kjm -nTO -ina -pRv -vKD -tEM -aFu -xBo -fET -pRv -nPM -aad -aaa -aaa -aad -ajr -aad -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -mdV -jgb -mdV -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aad -iqM -fXn -kET -rZh -kET -qdO -awb -kHb -wLZ -wLZ -fhO -wLZ -wLZ -cMa -xNR -wLZ -xNR -wLZ -wLZ -qLC -iqZ -nyB -jtR -awb -gpG -iZY -qkN -vzJ -uuh -mZD -vem -kKi -kKi -kKi -iBb -mZD -fYs -xgR -vSa -kEq -kne -tdb -xXs -kPH -kPH -kPH -pFk -jTi -jTi -qfT -prq -oEL -jTi -npZ -prq -rXD -uEO -gLe -fsy -lHW -nDF -fOs -mJE -aix -jbk -rjU -uMp -oMh -ubv -yjN -lQX -byf -kAx -byf -wxV -yjN -ubv -mAC -oMh -ovA -nZi -pKK -vlI -tXV -cJV -eCZ -cMO -cMO -cMO -cMS -cTx -cMO -cMO -cMO -cMO -pxk -cxN -caE -nPM -nPM -nPM -nPM -saw -saw -saw -saw -saw -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -cJl -fuB -mdD -lLl -mdD -mdD -tIW -slU -nMS -mdD -oQC -nMS -nMS -nMS -nMS -nMS -nMS -nMS -mdD -fbV -jiy -mSy -fKs -sSx -vIB -qLr -qkN -vzJ -ntl -mZD -gbL -xXs -mZD -xXs -pxd -mZD -eJp -owx -vYj -nmO -stp -mYb -sez -fvN -qOp -kPH -uuA -jGr -fUK -pDT -lDm -ekS -xxr -gag -shn -nAL -uEO -pdv -eFj -paR -nDF -wfe -iAA -luf -xPC -iit -ozH -aix -wsL -tXV -xpQ -mUD -eWR -mUD -eqe -tXV -rOx -oMh -lEK -ovA -nCJ -msO -hgz -tXV -cJX -qCY -gmc -exk -sJI -qZL -oWN -sJI -tGz -qZL -exk -iuP -exk -swm -pfQ -caE -djn -dle -saw -dog -nDZ -drz -saw -dul -dvZ -dxH -qiJ -dAp -dBT -dDg -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -cJl -aQx -xNR -xNR -uqz -wLZ -ndP -aEd -wLZ -wLZ -nEr -xPL -wLZ -xNR -wLZ -xNR -wLZ -xNR -wLZ -jVC -aKF -ihB -ftB -awb -gpG -iZY -qkN -vzJ -xox -xXs -fbt -oIX -nny -wMG -qew -xXs -iWG -owx -gGz -gLB -jzA -qUh -wGJ -tHf -tsB -kPH -vXB -oog -rXD -kzH -gKg -nDW -aOZ -aOZ -mwI -oDH -uEO -jNq -fsy -lHW -nDF -wfe -vne -oMh -hlI -iit -gzu -oMh -tvp -tXV -hnN -oKZ -wGX -oKZ -hnN -tXV -jRF -oMh -oMh -ovA -qCt -hpn -guk -xaw -ddL -hUe -fdc -cOC -cea -cjq -cea -ced -ced -ced -cjq -cjq -ced -wXQ -moY -caE -jjN -hNZ -saw -qhc -dpX -pmQ -saw -djs -dlf -dxI -dms -dpZ -dBU -djo -dhQ -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -mdV -jgb -mdV -aad -mdV -jgb -mdV -aad -mdV -jgb -mdV -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -aaa -cJl -weP -xPL -osi -wLZ -fEZ -awb -aEd -wLZ -xNR -aQx -rAZ -grO -rZS -guF -mTf -grO -guF -wLZ -bAT -awb -eyY -awb -awb -pFe -rGx -qkN -vzJ -kqH -pUx -mqc -lVM -gFj -hBE -vkS -xDq -ugT -icm -vYj -bUP -qhK -bHn -qhK -glG -yjF -kPH -iiI -dCh -ooT -kzH -jnE -dXF -xVy -thj -nQy -oPF -xBa -vSw -uIx -fdT -vrt -dvg -vne -lAU -eMt -lls -jCw -hJe -muW -jCR -utt -sPf -qYe -xZT -vLa -rbb -lyV -hJe -jCw -xJi -jKs -tzz -tJu -tXV -cJX -hJu -hLr -lUX -cMY -cMY -cMY -cMY -cMY -cMY -cMY -cMY -cMY -ceb -moY -caE -djp -qpq -saw -doh -rCv -pmQ -saw -dlg -dli -xwx -dpZ -uTQ -dpY -dxL -dhQ -aad -aad -abj -aaa -abj -aad -abj -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -ajr -aad -qYo -aaa -iqM -fZA -mBn -xpD -mBn -qVY -awb -svM -wLZ -xNR -aQx -pkM -awb -awb -bOc -awb -awb -roo -wLZ -ykf -awb -vTy -wic -awb -gpG -hYA -qkN -vzJ -xox -xXs -eSo -eNt -vlO -qpo -seV -xXs -qUF -tlw -vYj -slQ -gnR -iGK -hwK -vKK -oNR -kPH -pFk -pFk -pFk -goy -pBT -bMK -kSb -qAn -qhm -xQg -uEO -uEO -nDF -uEO -uEO -hMk -wbv -oMh -cIh -wwY -wwY -wwY -wwY -wwY -wwY -sSJ -rTN -eph -oXW -oXW -oXW -oXW -oXW -nGZ -vdB -hUE -fbY -tMX -llZ -jcj -mJl -wjS -cMY -cNd -cNd -cNd -cWV -cNd -cNd -cNd -cMY -cea -kEw -caE -qpq -qpq -saw -qhc -rCv -drA -saw -dum -dli -dpZ -dzf -dAq -dpY -dDh -dhQ -aad -aaa -abj -aad -aad -aaa -aad -aaa -abj -aad -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -aaa -ajr -ajr -aaa -aac -aaa -mdV -jgb -mdV -aaa -aad -jgb -aad -aaa -mdV -jgb -mdV -aaa -aad -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -qYo -aaa -iqM -jiB -iqZ -faJ -iqZ -awb -awb -awb -awb -tdE -aQx -rAZ -fsH -awb -awb -awb -wCO -guF -xNR -gsX -yct -uTq -kPa -iqZ -gpG -iZY -tNn -vzJ -xox -jOW -mZD -xXs -xXs -xXs -rsL -mZD -qXO -tlw -wUF -iJF -xqx -aiY -igV -wyU -wKG -nDe -kjh -mQW -xLk -pvd -pBT -qrg -gQi -bJv -qhm -hAc -hax -sQV -nGZ -jnj -syV -ixm -kUE -xqz -pbM -ptD -azr -lQJ -azr -lQJ -ioN -lwB -xSG -iTh -azr -lQJ -gVw -ptD -gVw -hwL -ejL -nTb -tSG -tXV -wJz -cea -cMV -jvO -cMY -cRQ -cTz -cON -cON -cON -cON -dcb -cMY -cea -laE -kTQ -iYN -uuM -saw -qhc -tMk -pmQ -saw -yjc -lEl -dxJ -gKr -dxJ -dBV -dlg -dhQ -aad -aad -abj -aaa -abj -aad -abj -aad -abj -aaa -aaa -aaa -abj -aad -aad -aad -abj -aaa -aaa -aad -aad -aad -ajr -aad -aad -aad -aad -aad -aad -aaa -aaa -jgb -aad -aad -aad -tgZ -aad -aad -aad -jgb -aad -aaa -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -rSK -qYo -iqM -hGh -adZ -fAY -fAY -uVq -mkY -bEW -awb -vSW -aQx -rAZ -awb -awb -xfl -awb -awb -hly -irL -hAm -rTT -fUP -uwx -oSQ -qxS -iYd -hQJ -byL -ibS -mZD -utn -xqx -wAZ -xqx -jLK -mZD -xcs -pMc -bnz -tNx -owl -gsa -tNx -xZJ -pWC -gYQ -eAp -hHJ -uoX -sFP -ndW -lun -qss -vsF -pbu -lAg -uvr -qdq -bED -ctY -twt -okV -hWD -she -lfw -evr -mqC -hBy -evr -bzS -evr -sAL -unj -tsd -hBy -ado -oXG -mqC -mqC -woh -mqC -idL -qfP -tXV -wCk -cGe -cMW -gzC -cMY -cNd -cNd -cNd -rIE -sBz -sBz -xtH -cMY -deX -aiu -caE -qpq -sTI -saw -doj -eYc -lXM -saw -dun -lEl -dxK -suE -dAr -doi -don -dhQ -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -abj -aad -aad -aad -abj -aaa -aaa -aaa -abj -aad -aad -abj -aaa -aaa -ajr -aad -tgZ -tgZ -tgZ -tgZ -tgZ -tgZ -tgZ -tgZ -tgZ -tgZ -yif -hBY -tgZ -tgZ -tgZ -tgZ -tgZ -jgb -jgb -nnf -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aad -aaa -rSK -aaa -cJl -eEQ -xNR -xNR -mBW -wLZ -xNR -wLZ -faJ -kHb -eOG -qCH -vBj -guW -hCj -kWt -dzx -lnI -xNR -rfA -iqZ -sFf -tha -hvD -yds -xlj -iEi -fGt -hTk -oHB -llc -opF -opF -opF -sKZ -oHB -odF -iDf -sxr -vMg -avY -wrV -rPK -rvr -xpx -csm -dDD -qWP -vdP -fBM -vjv -khr -pBT -brc -rka -hAc -jvy -rDG -wYk -sUC -mFe -fIz -xhe -oBt -coy -gVf -tGh -njR -sKS -hMk -phR -sGJ -noM -cTa -hoW -tFK -tFK -lfH -lfH -ndE -lfH -lfH -tFK -tFK -rwG -cea -ceb -vhl -cMY -cMY -cTA -cNd -cNd -cYK -cTA -lvo -cMY -deX -joJ -caE -xMn -dok -saw -jEz -eJF -drC -saw -duo -dmu -eMD -sBM -dxM -doi -dun -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -abj -aad -aad -aad -abj -aaa -aaa -abj -aad -aad -aad -aad -tgZ -aad -aad -aad -aad -aaa -aaa -jgb -aad -aad -aad -tgZ -aad -aad -aad -jgb -aad -aaa -aaa -aad -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aad -rSK -qYo -cJl -eEQ -wLZ -gfI -rwE -wSz -wLZ -qFT -iqZ -kHb -wLZ -xNR -wLZ -irL -tGj -irL -eVM -irL -wLZ -toa -awb -vsK -oNl -awb -ndT -fzv -hSV -cDA -vhb -oSm -uIT -lBr -wXg -lBr -bTR -lBr -lBr -kLJ -xDc -fIl -kPH -lMl -xjJ -cnM -jse -kPH -kPH -kPH -kPH -kPH -kPH -ifZ -pBT -rka -rka -oNS -jTi -hMk -tLT -upx -upx -hMk -oCX -niW -wxV -rsf -oMh -rRc -ylX -tXV -hnN -tar -lsV -naO -hnN -tFK -oHv -tmk -unZ -wvR -vFa -mhI -iCO -tFK -rwG -cLH -cMX -nfl -cMY -cRR -cTB -cTB -cWW -cYL -cTB -xXC -cMY -deY -oAw -caE -cea -djr -saw -dol -myW -drD -saw -dup -dlg -dxL -sBM -dAs -dpY -dDi -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -abj -aad -aad -abj -aaa -aaa -ajr -aad -jgb -aad -aaa -aaa -aac -aaa -mdV -jgb -mdV -aaa -aad -jgb -aad -aaa -mdV -jgb -mdV -aaa -aFo -aac -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aaa -qYo -aaa -iqM -oHx -oNe -eJS -pxU -bjh -xNR -wLZ -xio -kHb -wLZ -wLZ -wLZ -irL -hEB -wLZ -nXp -wLZ -wLZ -vPM -awb -awb -awb -awb -uhH -nVY -qkN -vzJ -lYD -rdM -tHf -uyJ -tHf -tHf -hTx -cpa -ccM -ccM -wbD -tEh -kPH -maO -woL -nTc -hjx -tJH -lbR -fMb -kIw -lyp -kPH -hra -owk -fDt -gxL -rVn -tMF -bOf -bto -qpC -okc -uXS -wra -kdI -hgz -kAx -xMl -tLl -kiB -tXV -wiy -jAt -uQj -cUy -ltH -tFK -toi -gTa -tQX -foL -pQq -ezu -frl -tFK -wCk -cMY -cMY -wzY -cMY -cXa -cTC -cVD -cWX -cYM -dar -enx -cMY -cjp -hST -caE -cea -cea -saw -wei -fQl -drE -saw -duq -dlh -dxM -wcg -dzh -dBW -dDj -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aad -aad -aad -ajr -aad -jgb -aad -aaa -aaa -aac -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -ajr -aad -rSK -aaa -cJl -eEQ -wLZ -wSz -apU -gfI -xNR -qFT -iqZ -kHb -xNR -wLZ -xNR -fpK -wLZ -wLZ -nXp -xNR -awb -jiB -awb -suL -suL -awb -ipq -vsk -qkN -tqM -hAq -cFj -vjk -cFj -bhh -bhh -vxT -rqM -fZv -swM -hyV -rzQ -kbD -ndi -ibV -fuJ -tis -rFd -olf -mRF -hCH -bUl -kPH -nND -tBp -jvy -bMa -bOf -bOf -bMa -lXe -bWv -bYE -bQg -upx -ccn -upx -upx -tXV -tXV -tXV -tXV -iki -pek -ryt -sDu -knt -tFK -fwB -qVG -uUq -tIP -bYL -nyC -rpy -tFK -wJz -cMY -cMZ -djh -cMY -cRT -tCG -cZa -cVE -cVE -das -dcd -cMY -deZ -joJ -caE -djv -ceb -saw -doo -fQl -drF -saw -dur -xze -dxN -sGY -don -doi -dDk -dhQ -aad -ajr -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -ajr -ajr -ajr -aad -aad -aad -aad -jgb -aad -aad -aaa -aac -aad -mdV -jgb -mdV -aad -mdV -jgb -mdV -aad -mdV -jgb -mdV -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -aad -rSK -aaa -cJl -eEQ -xNR -wLZ -fkq -wLZ -wLZ -xNR -faJ -aEd -wLZ -wLZ -xNR -irL -wLZ -wLZ -nXp -twf -awb -hWj -owI -vwT -nuU -awb -ipq -fsB -ooJ -iCm -tAu -reX -fEX -vnk -qsR -scF -kQI -evy -cdg -wwH -fqp -enO -kPH -rtM -xSY -lyE -pWn -mQQ -xuC -trM -eES -uvh -kPH -mOI -prq -xVm -bOf -bOg -bQd -bOf -jtM -bWw -bYF -bQg -gOY -hfP -fwe -lZk -tXV -ckJ -cme -tXV -skJ -pek -ryt -qKx -sTy -tFK -rWm -gTa -mFj -htK -pQq -ezu -fVy -tFK -wJz -cMY -cNa -bnC -rLY -hJb -bLU -enI -vSp -gqB -mVY -rMk -cMY -deX -joJ -caE -caE -caE -saw -wAA -lVN -saw -saw -dus -dwa -dom -jQC -dmy -dAt -djs -dhQ -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -eak -ebD -eak -aad -aaa -aac -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aaa -ajr -aad -rSK -qYo -iqM -ioU -wLZ -wLZ -xNR -wLZ -ylo -rcv -aPa -qxG -cyD -uXM -wLZ -irL -wLZ -wLZ -nXp -twf -faJ -sdO -oMW -bEW -qNT -awb -iZY -ipq -mnY -bgH -ipq -ooJ -bGZ -mDy -gOp -fgn -qwx -bIM -uvq -fgn -cPj -txZ -kPH -iem -vgF -ndV -jmq -szg -yeR -ccm -xRn -gqE -kPH -uqQ -vXh -vLj -bMc -bOh -bQe -bSn -bUh -bWx -bYG -bOf -gOY -leM -maI -xnj -tXV -ckK -cmf -tXV -vfU -wnb -onJ -puN -uly -tFK -tLk -xtg -wQI -fVF -tOW -oYf -wVG -tFK -wCk -cMY -cNb -fyY -cMY -cRV -ddT -ftI -cXa -cYQ -dau -dce -cMY -dfa -eRd -baW -ewR -itq -fQZ -mTP -mPZ -gnF -gCK -ojg -dwb -dxO -iPv -dAt -dBX -dDl -dhQ -aad -aad -aad -aad -abj -aaa -abj -aad -aad -aad -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -aad -aad -eak -ebE -eak -aad -aad -aFo -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -mdV -jgb -mdV -aaa -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aad -qYo -aaa -iqM -iqM -cJl -cJl -cJl -cJl -cJl -iqM -iqM -xwC -wLZ -xNR -xNR -irL -hYs -wLZ -nXp -twf -awb -mBn -mBn -xpD -xpD -tyw -kPH -kPH -kPH -kne -xXs -kne -kPH -rgE -xXs -dwE -kPH -rgE -xXs -dwE -kPH -wel -kPH -aDn -jVn -pLD -okK -seW -oCU -lxM -fgq -oOH -kPH -syY -uai -eae -bOf -bOi -bQf -bOf -bUi -bWy -bYH -bQg -qyj -eHv -lIU -oVk -tXV -ckL -sqY -tXV -vfU -bin -fcG -fdk -uly -tFK -tFK -tFK -tFK -tFK -tFK -tFK -tFK -tFK -otJ -cMY -cMY -cMY -cMY -cMY -cMY -jSw -cXb -cYP -cMY -cMY -cMY -dfb -dgq -cMY -djx -eCM -dmA -epU -nty -drG -gCK -dhQ -dhS -dhQ -ihd -dhQ -dhQ -dhQ -dhQ -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aad -eak -eak -ebF -eak -eak -aad -aac -aaa -aaa -aad -aaa -aaa -mdV -jgb -mdV -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -qYo -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aaa -iqM -lJj -evk -gsr -xpD -nSJ -tiF -wLZ -qLu -wLZ -awb -xjT -rcz -xbc -xbc -iqM -aad -aad -oQt -txh -oQt -txh -oQt -gCw -oQt -xiV -oQt -gCw -oQt -xiV -pNJ -aRx -kPH -kPH -ndO -kPH -xao -wGx -eqa -gxo -eqa -kPH -kPH -rTE -hEN -tSf -bMe -bOj -bQg -bQg -bQg -bQg -bQg -bQg -tXV -tXV -tXV -tXV -tXV -caE -ign -cnI -cnI -cnI -cnI -cnI -cnI -cnI -cxN -cxN -cxO -cCC -cxN -cFZ -cxN -cxO -wJz -cMY -cNd -cNd -cNd -sUE -cTH -ftI -cXa -cYQ -cTG -neh -cNd -cNd -cNd -cMY -djy -bIj -iFA -doq -qaW -upw -gCK -jup -whY -whY -fdx -pfQ -caE -aaa -aad -aad -aad -aad -aad -abj -aaa -abj -abj -abj -aad -aaa -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -aaa -aad -eal -eaR -ebG -eck -eal -aad -aac -aac -aac -aFo -aac -aaa -aaa -aad -aaa -aaa -aFo -aac -aac -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aad -aad -rSK -rSK -rSK -rSK -rSK -aaa -aaa -iqM -lUP -lUP -iqM -iqM -kzj -gSs -iqM -iqM -iqM -iqM -iqM -iqM -iqM -iqM -iqM -aaa -aad -vFd -tzb -jEV -jUV -vFd -aUp -jEV -iVb -vFd -aUp -jEV -iVb -vFd -aRx -alf -bqm -bug -eiK -bvs -fiE -bug -rjE -bug -bug -bug -bvs -gxe -bYI -bYI -bYI -bQh -bYI -bYI -bWz -bYI -caB -caE -cdY -cfR -chI -ceb -cfU -wjG -cnI -cpm -cqH -csa -ctE -cvd -cnI -cxO -caE -caE -caE -caE -caE -caE -caE -wJz -cMY -xmf -cON -cNd -cRW -cTI -ylt -cVE -cYR -daw -uQf -cNd -cOM -gJq -cMY -djz -dln -faI -iyX -cau -mWW -beo -idk -dwc -cxN -cxO -mbI -caE -aad -gSi -dEn -dEn -gSi -dEn -gSi -dLI -gSi -dOa -dOM -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -eal -eaS -ebH -ecl -eal -aad -aaa -aaa -aaa -aad -aac -aac -aac -aad -aac -aac -aFo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -hgm -hgm -iqM -lef -rMV -sgE -vOc -cIj -vka -cIj -vka -cIj -vka -cIj -mvK -aad -aad -vFd -pPr -itU -oNa -vFd -jUc -kWr -vwg -vFd -eNE -oDi -knS -vFd -ozv -alf -bqn -bsq -bEQ -isk -leS -hjt -eFX -chG -bEQ -bEQ -pKW -bAM -bYJ -bYJ -bOk -bQi -bYJ -bYJ -eWj -bYJ -sUU -nVW -iiR -sCo -exk -sCo -gmc -jWJ -cnI -cpn -cpn -csb -ctF -sAj -cnI -cxP -caE -cAW -cCD -cEj -cGa -cHv -caE -xjb -cMY -cNd -cNd -cQv -cRY -cTJ -tUy -rvL -cYU -xGe -dch -ddR -cNd -cNd -cMY -djA -djA -djA -vnj -djA -djA -djA -djA -djA -djA -cxN -uzE -cOj -aaa -dEn -dFz -dGY -dIj -dJJ -dEn -dLJ -gSi -dOb -ert -ert -ert -ert -ert -ert -ert -ert -ert -ert -ert -ert -ert -aad -eal -eaT -ebI -ecm -eal -aad -aad -aad -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tXR -tXR -kfc -kfc -kfc -tXR -tXR -alf -alf -aqV -aqV -iqM -dAd -nHa -wDH -iqM -alf -alf -alf -alf -alf -alf -alf -aRx -aaa -aad -vFd -gXk -gKN -jQO -vFd -epE -mrK -pkQ -vFd -gGU -jVx -nqX -vFd -aRx -alf -bqo -bsr -bui -bvu -bvu -rru -ocb -uLs -opA -opA -opA -sQk -aDl -aDl -aDl -vfD -cgO -lAo -enk -flZ -xpg -caE -cea -cfT -chK -cea -cjq -moY -cnI -cpo -cqI -hoZ -ctG -cvf -cnI -cxN -caE -cAX -ceb -cEk -cGb -cHw -caE -wCk -cMY -vHZ -vHZ -vHZ -vUp -mWd -tab -cXc -cYU -dax -tDj -vHZ -vHZ -vHZ -cMY -djB -dlo -dmB -kER -dqj -drI -lWS -dte -dwd -djA -cxO -oFE -cOj -aad -dEn -dFA -dGZ -dIk -dJK -dKA -dLK -gSi -dOc -ert -yiM -jqx -unk -mHx -nfK -tHV -xxb -uEr -rCt -gyd -sDO -ert -dOM -eal -eaU -wYI -ecn -eal -dOM -dOM -aad -ajr -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tXR -sAP -nVB -mqO -sdx -fjo -tXR -alg -alg -avm -alg -arG -ayS -lWW -alg -arB -arB -aug -alg -alg -aAd -aKg -alf -ozv -aad -aad -vFd -jQO -qFS -jQO -vFd -pkQ -sTA -pkQ -vFd -nqX -gxm -nqX -vFd -ozv -alf -bqp -sPw -sPw -sPw -iuV -sPw -sPw -sPw -sPw -sPw -sPw -sPw -sPw -sPw -sPw -sPw -nCn -sVj -bWC -bWC -caE -caE -ceb -cea -caE -cjp -cea -moY -cnI -cpp -cqJ -pZY -ctH -cvg -cnI -cxO -caE -cAY -cCE -bVj -cGc -cHx -caE -wJz -cMY -cNg -cON -cNd -rzS -cTI -jkf -cXd -cYV -daw -xOc -cNd -cON -eAA -cMY -djC -dlp -dmC -qfE -vHC -drJ -drK -drK -dwe -djA -dzo -mbI -caE -aaa -gSi -dFB -dHa -kJJ -oVN -dEn -dLL -gSi -dOd -ert -iKu -ewQ -wvy -nBn -lVb -etN -lqq -mHx -xRL -kYN -vvn -ert -wWk -dvc -dvc -fGF -ebR -dLW -ecQ -edl -aad -ajr -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tXR -loK -gKZ -dqV -gKZ -lQc -tXR -alg -aub -avn -alg -axH -ary -etu -etu -etu -etu -etu -etu -etu -arB -aKh -alf -aRx -aaa -aad -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -vFd -aRx -alf -bqq -sPw -aaa -aad -aaa -aad -vqp -lsY -fGz -wdC -cFH -oLo -oEH -gho -uNO -vva -sPw -hWc -bWD -bYO -caE -cck -cea -cfU -chL -ceb -cea -oAw -cnI -cnI -cqK -jMT -cnI -cnI -cnI -cxR -caE -cAZ -cCF -veA -cHy -vec -caE -jQA -cMY -cNd -cNd -cQv -dcm -cTJ -tab -cXd -cYU -xGe -ybK -ddR -cNd -cNd -cMY -djD -hrT -drK -laa -drK -drK -drK -drK -ncP -djA -dzp -wJa -cOj -aad -dEn -dFC -ubd -leq -dJM -dKB -dLM -gSi -dOe -hmH -yli -gTm -taQ -jEG -fbh -sXl -onk -flq -lqq -flu -gWX -ert -nbF -dTv -dLW -dZg -dLW -ecv -edf -edl -aad -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -nuA -eOV -jxA -wfI -ows -tXR -asD -ary -avo -awm -arC -ayT -etu -wIR -kmT -rQB -qsP -yiE -etu -aIH -aoY -alf -kDx -cIj -vka -cIj -vka -cIj -vka -cIj -vka -cIj -vka -cIj -vka -cIj -vka -cIj -oQz -alf -bqr -sPw -aad -veG -iqz -vqp -vqp -ocW -pho -pho -pho -jFQ -pho -pho -pho -erV -sPw -lZn -bWD -bYO -caF -cea -cGe -cea -cea -cea -ckN -oAw -cfU -cea -cea -aSy -ctI -cfU -cea -cxN -caE -caE -caE -ign -caE -caE -caE -wJz -cMY -vHZ -vHZ -vHZ -dcl -hGb -tab -cXd -cYU -dTL -dck -vHZ -vHZ -vHZ -hTO -djE -dlr -dmE -wmt -dqm -drL -qnF -oyx -hFX -djA -dzq -mbI -cOj -aaa -dEn -dFD -dHc -tjw -dJN -dEn -dLN -gSi -dLW -fTa -elW -uFl -uFl -rDp -uiX -uFl -uFl -elW -elW -wub -vVv -ert -mEh -dTv -dLY -dLY -dLY -dLY -dLY -dLY -dLY -dLY -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tXR -lZt -cXR -gdO -aKU -aKU -tXR -arG -arC -avp -awn -axI -ayU -etu -oJi -qsP -qsP -kmT -gBt -sfI -aIH -ary -alf -alf -alf -alf -alf -aqV -aqV -aqV -alf -aqV -aqV -aqV -alf -aqV -aqV -aqV -alf -alf -alf -bqs -sPw -aaa -iqz -rWP -mzQ -iqz -kOP -aIu -jQH -tEE -iLY -wHh -agh -aIu -iED -sPw -lZn -bWD -uxO -caE -cNj -ced -cea -ced -cjq -cea -pSM -vTC -thA -exk -azs -thA -exk -gmc -mzB -wRV -gmc -hlc -iuG -gmc -eMZ -exk -rKW -cMY -xmf -cON -cNd -ume -cTI -jkf -cXd -cYV -daw -wdi -cNd -cOM -dgt -cMY -djF -djF -djF -nTq -djF -djF -djF -djF -djF -djF -cxO -oFE -caE -aad -gSi -dFE -eGN -jEi -dJO -dKC -dLO -gSi -qHZ -kwQ -bce -fWG -bce -edt -bce -nZh -nZh -nZh -nZh -qIL -qMG -ert -nbF -eao -eaW -ebL -eco -ecJ -edg -lgt -een -eaW -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -kmg -iGk -gdO -uva -iGk -qVX -asF -alg -avq -awo -axJ -aoY -etu -jxd -qsP -qsP -lRn -oYU -etu -arB -alg -avm -arB -arB -aPW -avm -alg -arB -arB -arB -aug -aug -avm -alg -alg -avm -aug -bla -ary -aug -bqt -iuV -aad -iqz -itE -hCg -bWT -krI -eyw -eyw -eyw -bkv -jTz -jTz -jTz -kVg -lTR -eXA -bWF -bYP -nJo -nJo -nJo -nJo -nJo -nJo -nJo -xtt -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -cea -ceb -wss -cMY -cNd -cNd -cQv -dcj -cTJ -tab -cXf -cYU -xGe -cSe -ddR -cNd -cNd -cMY -djG -dlt -dmG -ybh -dqo -drM -gFZ -duz -wTa -djF -dzp -pxk -caE -caE -gSi -gSi -gSi -ayL -gSi -gSi -gSi -gSi -uSp -hmH -etl -mkL -etN -lqq -tHV -wzA -vLl -wGN -flq -jdj -nVl -ert -lkI -eap -eaX -dLW -ecp -ecK -dYu -edK -eeo -eff -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -vje -mWc -ipZ -oEW -iBB -liT -arC -alf -alf -alf -alf -alf -etu -jBI -kmT -qsP -kGR -lHU -etu -alg -ary -vNR -vNR -vNR -vNR -ikq -xmi -vNR -vNR -ayT -ban -arB -bdo -arB -bgi -bgi -alg -blb -alg -arB -bqu -sPw -aaa -iqz -hFp -qaJ -iqz -kOP -fvd -kTj -haV -dBw -mdn -qsh -aIu -xRQ -sPw -lZn -bWD -bYO -nJo -lyK -vEA -eTQ -uhr -riv -hmD -rYt -lzx -xvm -nzn -nEv -mNh -nJo -rPO -ekn -xnH -ogs -uqr -mbH -nJo -ceb -cjp -wJz -cMY -vHZ -vHZ -vHZ -dci -cTO -fdH -cXg -cYU -dav -qOw -vHZ -vHZ -vHZ -cMY -djH -dlu -dmH -pLc -drN -vwU -dtg -dtg -dtg -vJu -cxN -wJa -dBY -cea -dEo -tCh -dHe -dze -dJQ -tCh -dLP -dNt -cGi -ert -uSL -gTm -iwr -lqq -lqq -flq -flu -flq -sXl -wEj -xtf -ert -fCD -dTv -eaY -ebM -ecq -ecL -ecL -edL -eep -eff -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -kHv -hkj -gzM -geA -wof -qVX -asH -alf -avr -awp -axK -qxX -etu -qMh -kmT -qsP -kGR -olj -etu -arA -aKi -vNR -fkU -ltx -lMM -nNw -eEH -prO -vNR -ary -aKj -bbQ -alg -beK -bgj -alf -bbQ -ary -alf -alf -bqv -sPw -aad -veG -iqz -vqp -vqp -wnJ -lOl -lOl -lOl -fPu -lOl -lOl -lOl -qSW -sPw -lZn -bWD -bYO -sVJ -sdN -jPc -qkQ -nzX -hmD -rip -rYt -lzx -nDr -lzx -ybZ -mNh -sVJ -rYg -qtt -kUV -ppU -qtt -gSw -nJo -cCO -cea -wJz -cMY -cNe -cOM -cNd -cSd -cTI -jZR -cXh -cYW -daw -dcn -cNd -cON -eAA -cMY -djI -wjF -dmI -wVN -eAB -imL -drN -duD -qUc -djF -dzo -oks -exk -sCo -oWN -pDd -pUp -wjz -fQf -pYc -ucq -dWh -ioz -ert -uFl -aFC -xxn -wtc -nUx -tHV -lqq -nBn -mat -teP -lNO -ert -cdL -eap -eaZ -ebN -dYu -ecM -edh -edM -eeq -dLY -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -tzA -oIf -kxR -dza -vej -hMv -obk -alf -arB -arB -axL -ayV -etu -cFK -qsP -jcX -rRV -mZk -ozU -idU -aKj -vNR -kle -euz -qnQ -gbd -rDh -cLK -vNR -aYr -bao -alf -ary -bbQ -alf -alf -bjo -alg -bne -bbQ -bqu -sPw -aaa -aad -aaa -aad -vqp -jhN -uHf -hia -eTS -tYf -nKN -eVC -ttg -lqK -sPw -hWc -bWD -bYO -hZU -qtt -qtt -hcc -qtt -qtt -qtt -nil -jFf -jFf -qtt -qtt -qtt -gdV -qtt -giV -rAp -hwH -kFi -row -nJo -cea -ceb -wJz -cMY -cNd -cNd -cQv -dcg -cTJ -ftI -cXa -cYQ -xGe -cSb -ddR -cNd -cNd -cMY -djJ -dlv -dmJ -xot -dqr -drO -djJ -duE -qdJ -djF -tbn -cjq -dBZ -cjq -dEp -tCh -dHg -ydd -dJS -tCh -dLS -dQE -agR -ert -lxC -qrS -qQb -uFl -jXU -oqm -iVH -etN -fTf -uIr -sev -ert -nbF -tku -dLY -ebO -ecr -ecN -edi -edN -dOM -dLY -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -kmg -pNE -pGD -wPH -cXR -qVX -mBF -ukD -kmS -sYV -axM -ayW -etu -ucu -apL -sDK -itM -ncM -xWM -iry -aKj -vNR -wsZ -jGK -oVQ -rDh -gGp -shN -vNR -aAe -alg -alg -alg -avm -aug -alg -avm -alg -aug -aug -bqw -xpW -sPw -sPw -iuV -sPw -vqp -vqp -vqp -vqp -vqp -vqp -vqp -vqp -vqp -vqp -vqp -gMy -ipi -unv -htp -iiE -gkv -gdf -sxX -sop -jIs -ibJ -iiE -gkv -iiE -iiE -iiE -cco -iiE -nlX -iDK -eka -sIY -uph -nJo -cea -cIu -wCk -cMY -cNc -cNc -cNc -cNc -cTP -jSw -cXb -cYP -cTP -cNc -cNc -cMY -cMY -dhU -djK -djK -dmF -fuF -dmF -djF -djF -djF -djF -djF -drP -drP -drP -drP -drP -gSi -gSi -wPJ -gSi -gSi -dLS -dNw -fGR -ert -sKr -mnS -mvJ -sHV -rPg -ert -ert -ert -ert -vJB -ert -ert -xax -xTa -srd -aAR -pSd -dYu -edj -edO -eer -dLY -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tXR -fWi -tht -gpr -ibw -qPR -tXR -kgR -alf -alg -awr -alg -ayX -etu -jGf -gcT -qsP -qsP -kBn -etu -gvd -arB -vNR -sEL -vYd -lOA -lhK -opX -nGP -vNR -kJo -fAp -fAp -qCF -shD -fAp -qCF -qCF -aaK -roK -qCF -sPQ -vkF -loY -roK -fAp -eCl -mBt -qSO -sgY -iXT -iXT -vvC -sgY -iXT -rCd -xmR -kWT -glS -bWD -bYO -sVJ -gAy -sGU -nJo -nJo -jaL -hcc -tpf -tQq -plY -tQq -ybZ -mNh -sVJ -iWa -bmA -vgb -xdx -qtt -iNf -nJo -cea -cjp -wCk -cMY -cNh -cNh -cNh -cNc -cTQ -ftI -mfC -vso -daB -dcp -ddS -dfc -dgu -dhV -djL -dfp -bAI -nTx -xOo -drQ -dti -duF -fFT -dxP -dzt -dAw -dCa -dDn -dEq -dFI -dHh -bpL -dJT -drP -dLT -dQA -fGR -ert -xqS -pNm -lVS -elW -fHw -ert -qXG -oof -ewK -reb -eZX -ert -lkI -eas -ebb -ebM -ecq -ecL -ecL -edP -ees -eff -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -kfc -nsj -xWJ -hFt -nMv -jXt -tXR -bvm -alf -avt -alg -axN -ayY -etu -oJi -kmT -qsP -kmT -hTo -sfI -gvd -aKk -vNR -lxv -tPM -xTD -chr -xRY -vHY -vNR -dHX -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -qZr -dHX -tst -tst -tst -tst -tst -tst -tst -tst -tst -tst -ooH -bWD -aam -nJo -tSS -qtt -vmj -nJo -xUO -hcc -tpf -tQq -plY -tQq -ybZ -mNh -nJo -rtJ -uyv -nDV -tVz -lxk -pVn -nJo -ceb -cjp -wss -cMY -cNh -cOO -sWA -llu -tfT -kgo -pKR -rvX -daC -dcq -cTT -dfd -dgv -cQM -djM -cNq -dmL -qYs -dqu -jSe -dtj -xmt -wkG -dxQ -dzu -dAx -bfC -wcu -qKp -ePP -mrY -uwB -dJU -drP -dLU -dQA -qoX -ert -ert -ert -ert -ert -esF -ert -tkH -wtc -prZ -tSb -tyz -ert -nbF -eap -eaX -dYu -ect -ecO -dYu -dLW -eet -eff -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aaO -aea -aaO -aad -aaa -aaa -aad -aaO -aea -aaO -aad -aad -aad -aad -aad -aaO -aaO -aaO -aaO -aaa -kfc -kfc -kfc -kfc -tXR -tXR -tXR -bvm -alf -alf -aub -alf -alf -etu -gEA -qsP -stb -kmT -yiE -etu -uQK -aKl -vNR -ftj -nfs -pRW -rDh -lNF -prO -vNR -dHX -qZr -fYK -kyR -ohy -qZr -uiU -qIi -hUq -xuj -qat -rga -pNB -lQk -cfX -lSv -qZr -dHX -tst -myU -ntJ -qPN -rfO -hoS -dLb -qLe -tXr -tst -cBV -bWC -bWC -nJo -iGF -qtt -lwN -nJo -hvp -hcc -ybZ -eSd -sHr -hzg -ybZ -oXH -nJo -mcZ -ocw -lOk -gJL -pAC -ffk -nJo -cJK -caE -qnd -cMY -cNi -cOP -fnc -cSg -cXa -vTv -eHs -kPQ -gMz -dGx -ikf -oer -rdz -jew -gax -ejR -wcL -tYc -uGM -cCk -ote -qzP -dwi -huK -rMd -uqv -hEu -qkc -hCm -rMd -uqv -cwB -dJV -dKE -dQE -dQE -qoX -dOR -dOe -dLW -dRx -ert -ert -ert -ert -ert -ert -ert -ert -ert -lkI -dTv -ebc -ebQ -ecu -ecP -edk -edR -eeu -eaW -aad -ajr -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -aad -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaO -ehy -aaO -aaO -aaO -aaO -aaO -aaO -ehy -aaO -aaa -aad -aaa -aaa -aaa -aaO -ajs -ajR -aaO -aad -aad -aad -aad -aad -aad -aqV -arx -mlu -alf -avu -awt -axO -ayZ -etu -etu -etu -etu -etu -etu -etu -uQK -arB -vNR -vNR -vNR -vNR -ikq -wAa -vNR -vNR -xGJ -oft -nEL -pZc -sYU -jiK -fZx -rSG -mNQ -mNQ -mNQ -mNQ -mNQ -mNQ -iPI -lQk -qZr -kjL -tst -hgH -uEx -qVC -qVC -qVC -qVC -rHt -hpM -fVr -lZn -bWI -bYO -nJo -iGF -qtt -lwN -nJo -xUO -hcc -tpf -lzx -plY -qvX -ybZ -qvX -nJo -phw -jBO -hdj -ljt -lxk -tHi -mKM -vqQ -mJX -ozQ -cMY -cNh -cOQ -mfQ -cSh -saS -cVR -cXk -cYZ -cXk -dcs -hBB -dfd -knM -cQM -djO -cNq -dmN -doG -dqw -drR -dtl -lMO -dtl -tew -dtl -dtl -bcD -dDq -dDq -dDq -dDq -gRQ -dJW -drP -dLW -dNz -nme -pzf -pzf -nKI -sws -onc -qKK -van -wew -lBw -lQb -pUA -lQb -lBw -hTu -eao -dLY -dLY -dLY -dLY -dLY -dLY -dLY -dLY -aad -ajr -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -aaO -aaO -aaO -abf -aaO -aaO -abf -aaO -aaO -abf -adq -aaO -aec -aaO -ndS -pfI -sDV -hiA -aaO -aej -aaO -ads -abf -aaO -aaO -abf -abf -ajt -ajS -abf -alf -alf -alf -alf -alf -alf -alf -ary -bvm -aub -avv -awu -axP -alf -alf -pHb -fAp -lAQ -roK -fAp -moD -xjI -roK -qCF -fAp -roK -shD -bdL -iAe -roK -shD -vYG -kUu -scY -onU -rQi -qZr -vZJ -pZc -xon -lwv -xon -ghJ -rxm -xon -mDk -lQk -qZr -dHX -tst -nca -oBu -kDZ -kDZ -kDZ -vsO -dmx -vyQ -fVr -lZn -bWD -bYO -nJo -iGF -qtt -lwN -nJo -xUO -hcc -tpf -sxw -plY -qvX -qkQ -qvX -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -sfG -fCh -wJz -cMY -cNh -cNh -cNh -cNc -cTU -cVS -cXl -cZa -daE -dct -ddU -cMY -qrO -dhX -gPv -dlz -dmO -iaF -xOo -drT -dtm -iQK -lXF -nGy -vAb -vAb -nkD -xKY -dEu -dFL -hJS -bpL -dJX -drP -dLX -dUY -dUh -dUh -dTv -dQA -gKO -dQE -dTv -dUh -dUY -dQE -dWJ -dLW -dYu -dZg -dYu -dYu -dZg -ebR -dLW -eKq -edl -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qzS -uYa -hjC -wav -abe -abp -abC -abC -abZ -abC -abC -acV -abC -abC -abC -abC -abC -abC -abC -abC -agB -abC -abC -abC -acX -abC -abC -aiQ -abZ -aju -ajV -abf -alg -alW -amW -alg -aoW -alg -alf -arz -lCh -auf -arB -awv -axQ -alf -sTz -jFZ -aDI -aDI -aDI -aDI -aDI -aDI -aDI -aDI -pwZ -pwZ -pwZ -vKa -pwZ -pwZ -pwZ -wBb -qZr -sjo -kLl -uKt -qfw -jZU -ceG -rrT -haE -uwy -mDE -gpC -wJU -mDk -xaP -qZr -dHX -bBs -hEX -lep -ksz -ybP -gXU -qEu -bhf -oJh -pgZ -sMC -bWD -bYO -nJo -mhX -qtt -ycz -nJo -etU -hcc -ybZ -vcW -gxv -lxr -fVp -qGH -nJo -ssD -nbt -pAm -nJo -tHl -dhg -tDX -jSd -sfG -qrt -cMY -cMY -cMY -cMY -cMY -cTV -cVT -cXm -cZb -cXm -dcu -ddV -cMY -drW -cQM -vaR -cOR -cOR -xdD -xdD -xdD -xdD -qGJ -xdD -fno -eTv -kdX -oIl -drP -drP -drP -drQ -ccL -dJY -drP -dLY -dLY -dLY -dLY -dPI -sEJ -vYt -nPB -nPB -nPB -nPB -nPB -nPB -nPB -nPB -nPB -dLX -dLW -dLW -dLW -ecv -sxV -edl -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -aaO -aaO -xAW -abq -abD -abD -abZ -abD -abD -uBh -qzU -qzU -qzU -qzU -qzU -qzU -qzU -qzU -lis -skT -skT -skT -gOL -skT -rXs -xTx -lYa -snL -kIj -iZQ -bIc -eYj -kry -kry -qnr -nUI -pBz -vMV -fMK -alf -avw -lhr -axR -alf -aAe -jFZ -aDI -aDD -aEH -aFT -aDI -aIN -aKm -aLC -pwZ -fiJ -gvH -xRN -fKX -wfK -pwZ -ehX -qZr -vND -pUO -lsL -qZr -sKy -bym -lQk -xon -oYG -qju -xon -sLR -mDk -wHq -qZr -seu -mnr -fxY -mMy -kDZ -gXU -nhf -kDZ -ncF -eUy -fNT -lZn -bWD -aaI -nJo -rhJ -qtt -ybZ -lxk -xUO -hcc -ybZ -vHf -lii -kBt -xGs -gta -nJo -tAv -ime -gKR -nJo -kbN -jhd -vFR -wUH -sfG -jQA -pND -cNj -cOR -cQz -cMY -cMY -cMY -cMY -cMY -cMY -cMY -cMY -cMY -oay -cQL -gPv -cOR -qYo -svv -sfo -qnx -efb -hSn -efb -mkm -lyd -lti -xDZ -drQ -dEv -qBj -fnS -lwu -dJZ -dKF -dLZ -dLZ -olS -dOT -dPJ -dQC -gKO -nPB -rMW -olF -rMW -rpu -rMW -bnW -hED -nPB -pCe -pCe -pCe -pCe -pCe -nPB -nPB -nPB -nPB -hCR -nPB -nPB -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaO -aaO -abf -aaO -aaO -abf -aaO -aaO -abf -aaO -aaO -aaO -aaO -aeS -afu -afx -agk -aaO -aaO -aaO -aaO -abf -aaO -aaO -abf -abf -tRN -ajV -abf -ali -alY -amY -anY -aoY -aqa -alf -arA -gvd -alf -avx -goP -axS -alf -arB -teL -aDI -aDE -aEI -aFU -aDI -aIO -aKn -aLD -pwZ -jny -nDa -rEC -fqn -nAZ -pwZ -jWS -qZr -tro -pUO -rGe -qZr -qAS -jOJ -wsA -oDC -puL -xon -xon -lwv -mDk -lQk -qZr -xgq -tst -qAu -pYf -vsO -kdJ -kDZ -kDZ -dmx -vyQ -fVr -kDv -cNT -bYO -nJo -jGJ -ttd -qtt -tqz -xUO -fbn -vBR -iQT -qCz -ejr -rIG -iiE -rkv -tnH -ryM -xNJ -nJo -nhi -hfg -hfr -qxI -qjp -wJz -cLM -cNk -cOR -ozI -nFf -iTI -lEQ -eRZ -mHY -eRZ -eRZ -eRZ -fpo -eRZ -cQM -bza -cNp -qYo -svv -oYI -exE -oIE -lyU -fpQ -scS -eMJ -yiv -gNS -dDt -dEw -dFN -dHm -sqg -dKa -dKF -dLZ -dLZ -dOo -dOT -dPK -pCB -gDT -cGJ -tLL -ipa -wjX -tSz -ipa -kTD -giT -nPB -ekH -uJK -sAx -jQV -jfc -nPB -jXl -nPB -fhW -hbp -uAm -nPB -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -aad -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -aaO -aaO -aaO -aaO -aaO -aaO -aad -aaa -aaa -aad -aaa -aaa -aaa -abf -iQJ -ajW -ldY -ldY -ldY -ldY -ldY -ldY -ldY -ldY -arB -kgR -alf -alf -iCs -alf -ary -aAf -kjL -aDI -aDF -aEJ -aFV -aDI -aIP -aKo -aLE -pwZ -eUH -obg -hVv -lIc -jKg -pwZ -nIm -qZr -nIx -qDZ -xKL -qZr -vHp -fms -jpf -jpf -jpf -jpf -jpf -jpf -kYQ -lQk -qZr -bvm -tst -ihg -jxf -nUb -hko -ncF -nUb -xcA -mxv -fVr -lZn -bWD -bYO -nJo -fCQ -ybZ -ybZ -lxk -xUO -hcc -ybZ -iMC -kBt -tIV -kBt -hQk -nJo -vzF -eTH -tNO -nJo -mLS -eie -ohN -nSr -sfG -oHb -pCG -gmc -gnc -qSj -cSj -pMO -cVU -cQQ -cZd -cQQ -cQP -cQQ -cNt -sps -dhZ -oUW -cOR -qYo -svv -ixL -xXn -hsh -lkV -hsh -juf -vDG -mOE -oNd -drP -dEx -dFO -fnk -eCw -lEu -lEu -lEu -dNB -dOp -dOT -dPL -dQE -vYt -nPB -faE -afs -ofJ -jHF -vGL -eFq -xCb -awf -xCb -rfm -ken -tFz -ipa -jyg -rhm -jyg -rhm -vhr -hAD -hCR -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aaO -tRN -ajX -ldY -oLJ -gNW -vAo -gQS -xJg -oLJ -ldY -alg -gvd -aug -aug -wqc -arB -avm -alg -dHX -aDI -aDG -mNP -aFW -aDI -aIQ -gYZ -aLF -pwZ -nwW -nDa -gqQ -fqn -gUR -pwZ -wBb -qZr -vtW -pUO -pwm -qZr -kYo -rcK -tVf -gkn -qPM -sGh -sGh -pOb -jbH -lQO -qZr -gvd -tst -oSc -tnc -vyQ -fbj -eUy -vyQ -tho -uJM -tst -hWc -bWD -uxO -nJo -gNK -wFy -tKi -dgr -xUO -hcc -pzk -pij -lKp -ftc -sOH -kCw -nJo -nEh -eAP -sSg -nJo -sfG -qyh -plu -sfG -sfG -wJz -mTZ -cNl -cOR -cQC -cPf -vNC -cPf -cXn -cPf -cPf -cPf -ddW -cNt -kYV -cQM -oUW -sdF -rsY -rsY -rsY -rsY -rsY -gHl -rsY -rsY -rsY -rsY -rsY -rsY -dEy -dFP -dHo -dID -dKc -dKG -dMa -dNC -dNC -dOT -dPM -dOb -qoe -dOM -nlB -nlB -uSU -uSU -nlB -nlB -nlB -nlB -nlB -nlB -nlB -nlB -nlB -nlB -nlB -nPB -kHw -wxb -iKS -hCR -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaO -abf -pQQ -ajV -ldY -kdQ -pMB -qNM -ewj -pMB -kfv -ldY -arC -bBf -iXT -nGu -nIT -aXx -iXT -rDl -uPA -aDI -aDH -uzY -aFX -aDI -aDI -uIe -aDI -pwZ -mgF -fxz -jah -fUl -cVG -pwZ -qvC -qZr -sIl -vwQ -lbh -qZr -jQY -gJO -vHS -qZr -qZr -vhQ -nHT -jiK -oUA -qZr -qZr -wWP -tst -tst -fVr -fVr -scZ -jhq -fVr -fVr -tst -ntj -sTm -bWK -bWK -pdr -nJo -nJo -nJo -sVJ -mzj -sMO -sVJ -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -nJo -srL -tdj -dQa -lSZ -sfG -ngC -caE -caE -cOV -cQD -cSl -ucJ -cSl -cQD -cQD -cSl -cSl -cQD -dfi -fvP -dib -djS -rsY -tUR -qTt -fJg -rAE -qwF -pGb -sGK -nwa -ndz -fqj -tMt -rsY -dEz -dFQ -dHp -dIE -dKd -dKH -dMa -dMa -rzc -dOT -dLX -emM -gKO -dLW -nlB -mHJ -hPv -hPv -eht -ieh -qGI -wWh -rVN -mhj -qEv -ojz -pnS -lSw -rcM -nPB -say -kKF -ibv -hCR -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -adq -agk -tRN -ajY -wCM -pVq -qGb -jmG -hfp -kXP -wTo -ldY -arC -mRw -nIV -nIV -nIV -nIV -nIV -nIV -dHX -aDI -aDI -leW -aDI -aDI -ehG -pJR -ehI -pwZ -pwZ -xqe -xek -pwZ -pwZ -pwZ -spo -aDI -aDI -rwU -beV -aDI -bhH -eil -blm -bnn -rCA -bhT -bhT -bnv -bhT -bhT -poj -lPY -bhT -hsR -hfl -hfl -tvS -hfl -hfl -hfl -qGs -bnv -lPY -xiQ -wSu -wSu -mBp -wSu -lUY -wSu -uqh -pDX -wSu -nWu -wSu -dlR -ayd -ayd -ayd -ayd -xJd -ayd -hVE -ayd -nUr -ayd -ayd -rqG -wcj -lTm -vuZ -cOV -cQE -cSm -tbw -mzR -cXo -cSl -daG -dcv -cSl -kCI -kYV -dic -jdO -srs -pZv -kLO -tic -ksh -ioP -kHF -hVo -uGB -sjF -uEE -kms -rsY -dEA -dEA -dEA -dEA -dEA -cOR -cOR -cOR -cOR -cOR -dfm -dfm -vYt -dSD -nlB -wEc -hPv -eDl -lny -sIP -iWi -sIP -jWo -oli -lny -rrN -coa -nlB -qqB -nPB -uco -uRT -jJc -nPB -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -aaO -aaO -tRN -ajV -ldY -rRR -nvw -xNl -xNl -pMB -mxL -ldY -arE -ozq -nIV -eiZ -qTG -mif -xJI -nIV -ogH -aCD -aDJ -tni -abV -aHq -aIS -bBO -guf -crr -dBp -aAU -rqJ -kcK -emc -wVB -rYV -emJ -xMD -vIy -aAU -kVi -xcM -kdP -xjy -aIR -ifQ -rUg -aAq -vAq -aAq -aAq -vWo -tvB -aAq -lNR -tDt -mzs -oOU -tDt -tDt -tDt -tDt -fSi -oIQ -tBR -tDt -tDt -ukV -tDt -tDt -tDt -ueD -oOU -tDt -tDt -tDt -weH -dKS -dEP -dKS -dKS -dKS -dIT -dKS -dKS -ptv -dKS -dKS -ptv -wPL -gSn -fzO -cOV -cQF -cSn -cUb -cVY -cXp -cZf -daH -dcw -cSl -dFg -cCP -cQL -cUe -lRJ -eHx -azX -khP -keW -sFD -sTE -hKQ -leC -rjs -xKd -eZl -rsY -dEB -dFR -dHq -dIF -emG -cOR -dMb -nFv -dOq -dOU -dPN -dfm -oAo -dSE -nlB -mnN -hPv -byB -kbz -ieh -rbg -ieh -mKn -mhj -jtP -gDg -hPM -nlB -nZO -nPB -nPB -kKg -nPB -nPB -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aid -aiA -aeb -ajf -tRN -hxG -ldY -pBU -nvw -pMB -pMB -xJg -oeE -ldY -arE -oBU -nIV -tsY -fsZ -wow -mrN -jUh -gHb -sBX -gmh -slY -oFd -goY -mqA -syy -rJO -aMZ -prP -iyg -jqh -aTB -aVm -aWU -aYB -bax -bcb -jqh -beX -aDI -bhJ -sKY -blo -bnp -olY -sba -uJX -jWO -pVx -pVx -pVx -qak -nLZ -dxc -eLA -kfa -cdN -kup -kup -kup -kup -vSC -mXM -gSY -kdV -kdV -nNn -kdV -kdV -qKF -udX -cdN -xQH -kup -kup -uft -jaV -dXt -fbT -mLh -fbT -jus -fbT -fbT -rrJ -fbT -fbT -fbT -dKS -aGf -sLw -cOV -cQG -cSo -cUc -cVZ -cXq -cZg -daI -dcx -cSl -pGU -knM -cQM -cUe -eui -kXn -iQN -nIj -tUW -xih -tfn -kRs -uGB -sjF -qcg -hVF -uBG -dEC -jEH -jvS -clR -pOm -cOR -dfm -qGZ -dfm -dfm -dfm -dfm -hsx -dSF -nlB -eNI -hPv -byB -lny -sIP -iWi -oli -jWo -oli -jtP -hPv -vnd -nlB -uBK -nPB -tDT -uRT -ujV -nPB -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -aaO -aaO -tRN -akc -ldY -xcV -uQY -wkR -ndF -wkR -rhZ -ldY -arC -mMF -nIV -vFD -nIb -pTl -nXv -nIV -aBz -tcl -aXI -aXI -qlP -vrR -aXI -mIW -iJf -ncV -ncV -ncV -mlg -ncV -wYm -ncV -kEi -kEi -kEi -jCj -oGL -kEi -xIn -xFk -jNc -qAF -hjl -rAe -wSK -bdN -afR -wqo -wqo -fFy -jWj -qtB -snA -vQK -lRN -lRN -wEA -wEA -wEA -lRN -wpW -bdN -bOF -bfk -bfk -bfk -bfk -aPg -bdN -wpW -wpW -wpW -wpW -xFa -eCE -ctR -glh -mlE -mlE -mlE -lBR -mlE -mlE -mlE -jJG -aGp -dCA -haf -fSy -cOV -cOV -cSl -cSl -cSl -cOV -cOV -cSl -dcy -cQD -dfm -nKj -did -cUe -eui -ugG -tuR -llo -sNs -gGK -fyh -fXW -nwa -ifj -qPd -nlw -vaW -jRm -kHa -lak -dIH -xzd -cOR -dMc -qsi -dOs -dOV -dPO -cOR -uDX -tRP -kkW -run -bLF -jjM -bLF -bLF -bLF -bLF -bLF -kRC -sym -lLW -pfD -nlB -eXN -vXy -mVN -cIo -ouR -hCR -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -ads -hiA -mlq -kIj -oYK -cHS -abt -vKU -nrg -qCl -oSl -ldY -arF -qoM -nIV -qFt -smD -wvg -pWb -qnf -aBA -gvd -aXI -qya -oxd -wcz -rAw -aXI -aXI -ncV -kIC -khK -imN -qvB -yhE -pbj -kEi -pUY -eJR -oJG -jBo -kEi -jsg -bEh -edH -kEi -hjl -rAe -kBN -bdN -bvJ -bvJ -bvJ -fFy -qHH -nwK -oOD -ikJ -lRN -uKR -tZP -sKa -pTo -kcH -wpW -odz -bdU -bdT -lgC -rSw -kCA -bok -sUV -wpW -cgY -oCs -lvY -wpW -lpc -oaQ -mlE -uBF -ozp -mBg -nqe -rFW -tVn -vhK -mlE -ead -dKS -gSn -dPl -bsk -lZC -gnd -joN -suk -fPj -cOR -daK -dcz -ddY -dfm -qrO -die -cUe -eui -eui -eui -aOw -rsY -rsY -eui -rsY -sdF -rsY -rsY -bwe -rsY -dEE -pmi -dEA -dEA -dEA -cOR -dMd -mFg -oGB -uaD -orw -vnC -rEi -dSH -nlB -kWN -hPv -hPM -qEv -ieh -rbg -mhj -qEv -mhj -jtP -hPv -gsq -nlB -ixI -iGq -xsm -eKd -bwT -uSJ -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaO -abf -lET -ajV -ldY -fIF -oGR -wSb -baD -ndF -rhZ -ldY -arC -wNu -nIV -qcr -ptA -ihk -mYA -qKj -aBB -bvm -aXI -ioR -xEX -eXr -gUH -jgR -aXI -kAj -wPF -syr -uNt -wPF -wPF -xXB -kEi -eKo -sGZ -pLf -rmH -kEi -aAA -nHt -omF -kEi -hjl -rAe -kOK -bfk -aaa -aad -aaa -fFy -fpZ -jbx -mzf -sme -lRN -wiP -hvt -oIT -hvt -vJW -wpW -wpW -erd -iIt -wpW -iIt -nDx -iIt -wpW -wpW -wNi -hnn -ihC -wpW -lpc -jgH -mlE -sMV -rKF -uQr -ntL -hgT -dZW -asr -mlE -iPN -dKS -vTf -gQs -iul -dPi -tvA -lne -cre -cJw -wGU -mxS -eSK -fiM -tVw -uHH -dif -cUe -cUe -cUe -cUe -uID -dsc -cUe -cUe -cUe -cNt -cUe -cUe -jAB -dDw -cUe -kdY -cUe -dII -dKh -cOR -dMe -kZx -dOu -dOX -dPQ -cOR -oWj -dSI -nlB -qzj -hPv -qSc -lny -sIP -iWi -sIP -lny -iAh -jtP -gDg -gSp -nlB -oqN -xeL -wlf -tLg -qjn -uSJ -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aaO -lcU -aaO -aad -aad -aad -aad -aaO -aON -aaO -aad -aad -aad -aad -aad -aaO -tRN -jrC -ldY -eLb -xNl -ewj -baD -wkR -wbb -ldY -arC -ozq -nIV -jwc -jzT -oUZ -pOd -nIV -aBC -kgR -aXI -vcU -cFc -ygs -kmR -sYJ -aXI -szF -bGX -xwV -hUs -pza -kSw -tTW -kEi -tjO -bgY -uuR -hXs -pRb -cJu -kgL -gQQ -kEi -hjl -rAe -kOK -bfk -aaa -aad -aaa -fFy -jWj -uNS -for -jWj -lRN -fAd -uim -pnR -mdd -euP -wpW -kpk -qUV -gDO -gWG -mlD -iTz -vcZ -wqv -sDz -sDz -tJr -lFV -wpW -lpc -oaQ -sYF -lOi -pVS -lpV -lpV -lpV -nXy -ptO -mlE -sfd -dKS -hEa -pZp -obh -voq -xrC -ivL -cPk -joN -cZi -daM -jkj -dea -cPi -jmr -dhY -cQJ -cQI -cQJ -doT -smF -duR -dtv -duR -dwt -dya -dwt -duR -qdH -duR -dEF -hVB -dHt -dIJ -mtm -ghq -okm -blB -fZN -dOY -dPR -dfm -gKO -dYu -nlB -noK -xnL -oyj -nqU -rPJ -nWI -rPJ -nqU -dqz -nqU -hRj -gsC -uDc -xeC -gDE -aQK -wbH -qjn -uSJ -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaO -ehy -aaO -aaO -aaO -aaO -aaO -aaO -ehy -aaO -aaa -aad -aaa -aaa -aaa -abf -eWE -aka -ldY -hNT -rmR -hDb -mui -yls -nkz -ldY -arG -jfU -nIV -nIV -nIV -nIV -nIV -nIV -aBD -qxA -aXI -pkT -lyS -odp -gUH -mvD -hpD -wPF -eXt -dqC -qrR -eKH -eXt -tYX -kEi -nGD -qVq -qGc -rRd -kEi -laj -lVm -nBD -kEi -hjl -rAe -kOK -bfk -aaa -aad -aaa -fFy -iLS -nzz -qyB -thX -hML -oZY -iWR -exf -lPn -nYj -wpW -jkO -ods -nEK -ods -nEK -ods -eXb -wTY -fcB -eUp -lte -hhG -wpW -lpc -ctU -mlE -sZY -xjd -umQ -umQ -umQ -iQQ -pUR -hPs -rWa -dKS -rSJ -pZp -obh -tNU -wjP -uqe -voq -vNm -cZj -daN -dcC -deb -dfo -tyR -kHI -oIJ -jSK -oIJ -qgC -rgA -rJq -bSl -wyW -udg -rKb -wyW -wyW -nkb -hRO -oIJ -kWW -fkP -aXB -xYM -cOR -dMg -dNI -dOw -dOZ -dPS -dfm -vcI -dSJ -nlB -yjE -eFU -hPv -lJI -dTS -iWi -mqj -fNp -oli -lny -ijk -hvd -nlB -kaB -wCU -ktw -pHc -lZe -nPB -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaP -abf -abf -abf -abf -abf -aaO -aaO -abf -ads -aaO -qkG -aaO -aeV -afw -afT -agk -aaO -eAM -aaO -adq -abf -aaO -aaO -abf -abf -hTb -ajV -ldY -ldY -ldY -ldY -scj -ldY -ldY -ldY -arC -xNd -hOU -obx -dWw -oWe -hOU -eBe -wWN -iXT -aXI -qzb -wtr -oJq -sms -xre -aXI -tme -qNl -suR -suR -suR -suR -enj -kEi -nlA -xBe -fAz -qRY -kEi -eQB -jTU -gmi -kEi -wxO -rAe -owE -bdN -aad -aad -aad -fFy -uCu -nzz -qyB -rsZ -hML -boH -uEZ -pjK -gjL -sYO -wpW -xKQ -dZh -xck -tXA -xck -lya -xck -cDk -rps -vgL -ogK -dwU -iIt -bez -ctV -mlE -lml -xjd -jju -mNo -eTD -eze -sKP -hPs -rWa -dKS -gSn -dPl -lzb -ePs -wzP -ivL -cXD -qes -cZk -daO -dcD -dec -dfp -kYV -dih -djW -dlM -dlM -dlO -dlM -aFk -dlM -dlO -dlM -dyc -dyc -dyc -dEG -qPu -dEG -dyc -dyc -dyc -dyg -cOR -dfm -dfm -dfm -dfm -dfm -dfm -bfH -dOM -nlB -qqB -tMz -goQ -qqB -nlB -qqB -nlB -nlB -qqB -nlB -nlB -nlB -nlB -iAK -nPB -nPB -nPB -nPB -nPB -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xZM -abE -aaO -aca -abC -abC -acX -adt -abC -abC -kpF -dSp -dSp -dSp -dSp -kIH -vEK -vEK -vEK -rIY -vEK -vEK -dYo -xbZ -izG -iBT -sjT -xmR -iXT -sgY -xGl -xFo -sgY -wCQ -wXJ -cbR -ffo -ffo -ffo -ffo -ffo -ffo -ffo -xMe -aXI -heA -gje -heA -aXI -aXI -aXI -wTb -hzj -qJk -qJk -qJk -cqu -vWL -kEi -kEi -kEi -kEi -kEi -kEi -wlp -ryS -qhn -gRl -hjl -rAe -kOK -bfk -aaa -aad -aaa -fFy -fiz -iDp -bfw -sJv -hML -nOc -iVA -ksV -oGa -qXE -sEN -pZH -tYr -xWn -xWn -xWn -sfK -xWn -ujH -xWn -tYr -dtu -kJd -wpW -lpc -ctW -mlE -sZY -oTk -lkG -lkG -lkG -oIv -scE -lJZ -vtP -dIT -gSn -dPl -xvp -rjP -wzP -ivL -din -nry -cZl -daP -cZm -cZm -cZm -hRz -dii -djX -dlN -dmZ -doW -dqL -quh -dtw -duU -aaG -dyc -ped -dAJ -dCp -hoQ -dEH -dFY -dHu -dIL -dyg -dKJ -dMh -dZg -dNt -ebR -dPT -dYu -dDp -dST -dTJ -dUB -dVl -dVl -dWS -tpS -dVl -dZn -dZV -eaE -ebk -eca -ecF -dVl -dVl -edX -eeG -eft -egg -egD -abj -abj -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aas -aaa -aaa -aaa -abs -abF -abP -acb -aco -aco -aco -aco -aco -aco -aex -aco -aco -aco -aco -agE -aco -aco -aco -aco -aco -aco -aiT -abZ -tRN -ajV -akE -akE -akE -akE -akE -akE -akE -akE -arC -wLv -ffo -aXM -kWS -kWS -wPK -rBV -ffo -gvd -ncV -hFM -wtr -vsR -guN -xUH -pqt -ofO -ofO -ofO -ofO -ofO -ofO -ofO -cnV -sRg -qhd -iuI -qTW -nFS -ftf -edy -wUY -gRl -tsx -nih -kOK -bfk -aaa -aad -aaa -fFy -too -qst -tvt -lrc -mSa -iQb -nyA -dWX -gqJ -jWl -wpW -hhG -sjC -sjC -sjC -tfO -sjC -sjC -sjC -sjC -sjC -wJW -vhT -qkD -bZN -nqg -jeb -mZs -ifX -lpV -lpV -lpV -fgO -gwr -mlE -kRu -plg -gSn -dNO -sjE -lke -wzP -ivL -cPk -tLY -cZm -daQ -dcE -ded -dfq -vuc -dij -djY -dlN -dna -duV -dqM -ycM -bCi -duV -dww -dyd -dzG -dAK -dCq -mFa -tVu -cdT -lQC -hFa -soc -tRP -jJq -rWh -eMj -lLo -rUZ -jjf -kRV -biU -sCL -vHW -vHW -oLg -jWm -gzW -gzW -gzW -chM -gzW -gzW -gzW -gzW -chM -nDJ -edY -edY -edY -edY -egE -aad -aad -aaa -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xZM -abG -aaO -acc -abD -abD -acY -abD -abD -abD -abD -abD -abD -abD -abD -abD -abD -abD -ahz -ahS -abD -abD -aiU -abZ -tRN -akc -akF -alu -amj -ani -aoh -ape -aqj -akE -arC -mdC -ffo -mjA -gPf -ffh -ffo -ffo -ffo -bvm -ncV -vWE -xXQ -hXi -jvd -cqy -ofO -qUo -osj -her -ofO -fSq -pkB -ofO -tLs -hiK -jTr -uIn -reI -uIn -reI -ryS -gCu -gRl -hjl -rAe -kOK -bfk -aaa -aad -aaa -khQ -bTD -qJA -oOD -hZw -hML -qrD -nYj -gqP -nYj -nYj -wpW -tRR -dCF -mSD -wVf -sDz -fOk -xwZ -ocD -wVo -iYA -reS -vCj -wpW -lpc -oaQ -mlE -kcZ -nru -gvc -npO -mvL -umz -mfb -mlE -hwV -dKS -gSn -dPl -vHM -hHj -ovE -lYo -voq -pAJ -cZn -daR -dcF -nKw -rxb -qyu -dcH -djZ -dlO -dnb -doY -teo -rIB -xnP -duW -dwx -dyd -dzH -dAL -aaz -lcm -aaz -oPu -dHw -dIN -dyg -dKO -gKO -dNL -dNL -dNL -dNL -dNL -dNL -dNL -dTE -dUx -dUx -dVY -dWU -dUx -dUx -dUx -vIQ -dUx -dUx -dUx -dUx -ecX -gER -edZ -eeH -efu -egh -egE -aad -ajr -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaP -abf -abf -abf -abf -abf -aaO -aaO -abf -adq -aaO -aee -aaO -aeX -afx -afx -agl -aaO -aee -aaO -ads -abf -aaO -aaO -abf -ajh -tRN -ajV -akG -alv -tfh -hxZ -iNS -nev -vMA -gxR -xmR -iKd -ffo -tsl -xNn -ktW -ouP -jiM -ffo -gvd -ncV -wrg -euO -vsR -yhN -cqy -ofO -fSq -dNe -sub -ofO -qFk -uEX -fSq -ofO -hiK -nbw -reI -tyZ -fGQ -qrQ -jTU -olH -kEi -xha -pRf -djc -bdN -aad -aad -aad -khQ -fIk -xTi -pYj -pXj -hML -rDv -mtj -nYj -dhf -lRN -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -wpW -lpc -ctZ -mlE -gvx -lly -tKj -fot -tKj -kJx -cMf -mlE -faw -dKS -gSn -dPl -tUC -din -wzP -ivL -cPk -kaQ -cZm -daS -dcG -def -dfs -tUm -dcH -dka -dlN -dnb -doZ -dqO -dsi -dtx -duX -dwy -dye -dzI -dAM -aar -tfy -aaA -ljm -dHx -dIO -dKk -dOd -qoe -dNL -dOz -dPc -dPV -dQK -dRP -dNL -dTF -dUx -dUx -dVZ -ecY -dXK -dYD -dXK -aGY -ecY -dXK -dYD -dXK -ecY -hDE -cvX -fjV -efv -egi -eeb -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aad -aaa -aaa -aad -aaa -aaO -ehy -aaO -aaO -aaO -aaO -aaO -aaO -ehy -aaO -aaa -aad -aaa -aaa -aaa -abf -tRN -ajV -akE -alw -aml -ank -aoj -apg -aql -akE -arK -dHX -ffo -oGA -sxD -sXL -ffo -ffo -ffo -bvm -ncV -kUs -iJD -mvD -bSd -eMI -ofO -fSq -fGm -kYk -ofO -nLa -kOD -fSq -ofO -rfb -fjP -uIn -hKw -oJz -qrQ -iQf -tCT -gRl -hjl -ekM -kOK -bfk -aaa -khQ -khQ -fFy -pCr -nzz -oOD -jVX -hML -lRN -msG -fTP -qOr -lRN -rXu -bWW -bUF -bUF -ccD -cet -bUF -bUF -bWW -bUF -bUG -aaa -aaa -cqY -dJz -oaQ -mlE -mlE -szn -mlE -mlE -mlE -mlE -mlE -mlE -pQV -dKS -aGf -pZp -pny -dPi -vVO -xVN -voq -iuE -cZo -daT -dcH -deg -dft -fuN -dik -dkb -dlP -dnc -dpa -dqO -dsj -dtx -dpa -dwz -dyd -dzH -dAM -aav -aay -aaB -aaF -dHy -dIP -dyg -dKN -gDT -vDp -oCe -eVs -rVD -rVD -cMR -dPg -dTF -dUx -dUx -dVZ -dUx -dXL -dYE -dZo -vIQ -dUx -dXL -dYE -dZo -dUx -gER -eeb -eeJ -efw -egj -eeb -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aaO -azI -aaO -aad -aaa -aaa -aad -aaO -aYA -aaO -aad -aad -aad -aad -aad -aaO -tRN -ajV -akE -akE -amm -akG -aok -akG -akE -akF -alf -cok -ffo -ffo -iAP -eAI -uGU -szL -ffo -wNq -ncV -ude -euO -vsR -yhN -cqy -ofO -fSq -lHa -mnC -ofO -chH -fpi -fSq -ofO -oOl -fjP -reI -lwm -uVu -weZ -awl -ptG -gRl -hjl -rAe -kOK -bfk -aaa -khQ -nTB -nmR -lLY -nzz -oOD -gdT -qzr -bKH -bKH -bKH -bKH -bKH -bUG -bUF -bUF -bUF -ccH -bUF -bUF -bWX -bWX -ccH -cmD -aad -aad -cqZ -hxO -oaQ -cqZ -aad -aad -eBv -xmS -kJW -lAV -ePQ -eBv -iPN -dKS -gSn -dlR -sfP -din -wzP -ivL -cPk -fnz -cZp -daU -dcI -deh -dcH -dgO -dcH -dkc -dlN -dnc -dpb -dqO -dsh -dty -duY -dwz -dyf -dzJ -dAM -aaw -dEL -aaC -dGc -dHz -dIQ -dyg -dKO -qoe -dNL -dOB -dPe -dPX -dQM -dRR -dPg -dTF -dUx -dUx -dVZ -dUx -dXM -dST -kRh -vIQ -dUx -ebl -dST -ecG -dUx -kQA -hXM -xZy -bmJ -egk -eeb -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abf -lET -anm -lAM -abZ -anm -anm -aol -api -bia -abZ -arL -tXb -auk -ffo -vPC -xiH -ffo -ffo -ffo -bvm -ncV -dZu -jNP -krF -yhN -ffv -ofO -tLs -fSq -rJI -opE -gsZ -gsZ -faY -ofO -kPB -wER -gVj -fMv -gVj -fMv -peo -nfE -gRl -hjl -nmC -kOK -bfk -aaa -khQ -rGD -eOM -wQK -nzz -vKE -ldr -jam -bKH -bMx -bOG -bQH -bSD -bUH -bWX -bZf -caT -ccH -rWL -bUF -cid -cjE -cla -bUG -aaa -aaa -cqY -lpc -cub -cqY -cqZ -cqZ -vkd -hbl -ltm -pXL -uWH -wHk -iPN -bMR -gSn -dPl -olk -cPk -nfZ -utE -din -fnz -loI -daV -dcJ -dei -dfu -dgP -dil -dkd -dlN -dne -dpc -dqP -dpc -dpc -dpc -dwB -dyd -dzK -dAO -dCv -dDF -dEN -dGd -dHA -dIR -dyg -dKP -eFA -dNL -dOC -dPf -dPY -dQN -dRS -dSO -dTF -dUx -dVk -dVZ -dUx -dXL -dYG -dZo -vIQ -dVk -dXL -dYG -dZo -dUx -gER -eeb -eeL -efy -egl -egE -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -mlq -nkd -nkd -lYa -nkd -nkd -nkd -raT -nkd -lYa -nkd -oTT -aul -iAO -iaa -hjY -tlv -fMD -ffo -lCh -ncV -mvi -qMY -snN -umc -fqv -mMT -ofO -ofO -ffB -ofO -ofO -ofO -ofO -vIJ -utc -kEi -lcu -gVj -fMv -gVj -qET -lCm -qAF -hjl -iZF -gdb -bfk -aaa -khQ -pnW -xTi -fec -skj -vxf -doR -too -bKH -bMy -bOH -bQI -bSE -bUI -bWX -bZg -caU -ccH -bUF -bUF -cie -cjF -ccH -bUG -coe -coe -cqY -mAP -cuc -udD -oaQ -cyt -tOs -tmP -qUi -tmP -tmP -kCz -hUA -iuh -gSn -dPl -kxU -gjg -jMo -ofT -oth -bIf -cZm -mcx -dcK -dej -cZm -dgQ -dim -dgQ -dlN -dnf -dpd -dqQ -dsk -dqQ -duZ -dwC -dyg -dyd -dAP -dyd -dyg -dEO -dGe -dHB -dIS -dyg -dNO -mlz -dNL -dNL -dPg -dPZ -dPg -dNL -dNL -dTG -ecY -ecY -dVZ -dUx -dXN -dST -dZp -vIQ -dUx -ebm -dST -ecH -dUx -gER -edY -eeM -efz -egm -egE -aad -ajr -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -qQv -akf -akJ -abf -amo -ann -aom -ufw -aqm -abf -arM -fcn -aum -xac -ffo -ffo -ffo -ffo -ffo -fPb -ncV -ncV -ncV -ncV -iKP -ncV -ncV -uZJ -uZJ -aVA -vih -vih -uZJ -uZJ -ncV -ncV -qAF -kEi -qVz -qVz -qVz -xMf -kEi -sgW -hjl -cAE -sEo -bdN -aad -fFy -lZN -wQK -wQK -gYt -gKG -qtW -lBH -bKH -bMz -bOI -bQJ -bSF -bUI -bWY -bUF -bUF -dtf -lia -rZb -ait -ait -ait -had -pzj -cpI -cqY -eTr -cud -cvt -cwL -oaQ -eBv -pXL -qYi -fwF -iiL -vkd -mpQ -kCj -qfq -nTT -fSy -dPl -uwH -lKs -dPl -fSy -cZq -cZo -cZm -cZo -cZl -dgR -din -sDg -dlN -dlN -dlN -dqR -dsl -dsl -dsf -dlN -dyg -dgR -din -dke -dyg -dyg -dyg -dyg -dyg -dyg -dKR -vwa -dNO -dOD -dPh -dQa -dQP -dRT -dSP -dTF -dUx -dUx -dWc -dUx -dXL -dYE -dZo -vIQ -dUx -dXL -dYE -dZo -dUx -gXX -edY -eek -efA -eek -egE -aad -ajr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -tRN -aco -akK -aaO -amp -ano -aon -rVE -aqn -abf -arN -tlE -aun -bnt -awP -qpc -irV -qpc -qpc -xzt -aDM -aFb -bhT -bhT -aJd -bhT -bhT -bhT -bhT -hjl -bhT -bhT -bhT -bhT -oxD -baG -bnv -bhT -bhT -bhT -bhT -dtp -bhT -avN -hjl -mpS -ctr -bfk -aaa -khQ -lRK -hRa -wQK -eFk -hye -sCg -lmb -bKH -bMA -jAM -bQJ -bSH -bUI -bUI -bUI -caY -sUc -bUF -bUF -cig -bUI -bUI -bUI -cog -jxD -cra -lpc -cue -cvu -cwM -cyt -vkd -qNK -pTc -gTt -mue -sLi -gic -iPj -vTf -oKG -dwD -dwD -hQG -sbf -dwD -dwD -cZr -daX -daX -daX -daX -daX -daX -daX -dlQ -cZr -dpe -dsm -dsm -dsm -dva -dwD -dlQ -dzL -daX -daX -cZr -dwD -dwD -dwD -dwD -dwD -dwD -sni -dNP -dOE -dPi -dPi -kKa -dRU -dSQ -dTH -dUz -dUz -dWd -dWV -dXM -dST -dZq -vIQ -dUx -igB -dST -ecG -dUx -gER -eeb -eeN -efB -egn -egE -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -aaa -acF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVy -tRN -aco -akL -aaO -amq -anp -nVc -apm -aqo -abf -arO -pYw -aco -avN -mtf -bfo -bfo -bfo -nxJ -mhv -aAq -aAq -tHC -tHC -aJe -tHC -tHC -tHC -tHC -xHb -aSd -aTN -aVv -aXd -aYH -tHC -bcn -tHC -rdI -kLb -tHC -bjN -tHC -bnt -iGQ -sEv -laY -bfk -aaa -khQ -weV -nzz -xBf -gYt -mPB -xdM -dut -lAR -tSn -qos -bQJ -bQJ -bUK -bWZ -bZi -bUF -pHV -fZt -cgm -ccH -cjG -xHZ -cmF -pal -kMl -lhi -mNX -nwG -kUO -cwN -cyu -vkd -xOF -iss -nDO -vav -sLi -iOo -lnM -rEU -bbA -cPk -cPk -kyg -utE -cPk -cXD -cPk -daY -cPk -cPk -cPk -cPk -cPk -cPk -dlR -cPk -cPk -dqT -cPk -cXD -cPk -cPk -dlR -cPk -cPk -dKS -dKS -dEP -dKS -dKS -dIT -dKS -dKS -ptv -dNQ -dOF -cPk -dQb -ivo -dRV -dSR -dTF -dUx -dUx -dWe -dWc -dXL -dYG -dZo -vIQ -dUx -dXL -dYG -dZo -dUx -gER -eeb -eeO -sZn -ego -eeb -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -tRN -aco -akM -aaO -amr -ojT -ano -ano -aqp -abf -arP -fBq -cwC -oZo -vdb -teB -hsd -hsd -hsd -amy -and -ueP -xvS -sfF -aiy -xvS -wAt -iZH -hsd -nAl -cve -hsd -xIT -eqJ -oXn -hsd -vSC -cve -nOA -nCg -nOA -nOA -wMd -oZo -nOA -aRA -nZv -bfk -aaa -khQ -oZT -hRa -myk -gYt -bof -kxN -osF -bKH -bQJ -iQa -bQM -bSH -bUI -bUI -bUI -caY -sUc -bUF -bUF -cig -bUI -bUI -bUI -coi -cpL -cqY -ybg -cug -pjU -qOd -cyv -vkd -tUe -qYx -whq -nxt -sLi -mAq -bvi -eBN -kSO -qDf -qDf -qDf -cAf -cDn -kUT -vpN -qqf -rEm -gij -gij -fqb -gij -gij -lwZ -gEG -kUT -nKm -wuX -nKF -rRW -rRW -lwZ -rRW -vvc -yfH -vpN -wgo -kUT -kUT -kUT -kUT -iim -vct -kyQ -gom -kvi -xWB -eZa -dRW -dSQ -dTH -dUz -dUz -dWf -qPx -nIK -nIK -nIK -jAZ -dUx -dUx -ecb -dUx -edb -gBQ -iGY -tci -tJL -egp -eeb -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -tRN -aco -akN -abf -ams -mIm -aom -apn -aqq -abf -arQ -fcn -aup -aRn -ssB -ssB -ssB -ssB -ssB -hOg -ssB -iZZ -wYC -fmd -fmd -wsM -fmd -iZZ -iZZ -iZZ -iZZ -unx -kjN -xzz -sNC -unx -unx -bdN -bfk -lHS -bhW -bfk -blE -bnu -pdo -ncp -naF -bdN -aad -fFy -ycI -wQK -wQK -gYt -vlm -jHY -inm -bKH -bMD -bOM -bQJ -bSI -bUI -bXa -bUF -bUF -iOJ -mcn -ait -ait -ait -ait -had -jMn -wxi -gEh -mMQ -cuh -gqq -cwP -jlX -eBv -pXL -jug -nZB -vGQ -vkd -nbQ -rrD -mPM -fcr -wII -dPl -uwH -mcD -mBA -wII -pxG -dba -pxG -dba -dfv -dgT -dio -dkf -xvf -xvf -dpg -inw -xvf -xvf -dpg -xvf -xvf -inw -emj -xvf -xvf -xvf -xvf -dHD -dHD -heQ -koZ -dMt -dNO -dOH -dPk -dQd -dPk -dRX -dSS -dTI -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -dUA -edD -eeb -eeQ -efy -ego -eeb -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaO -mlq -nkd -nkd -lYa -lKV -oak -nkd -nkd -nkd -lYa -nkd -dmU -tFO -ssB -xrw -oMa -qGK -hwx -yek -uVV -uxd -iZZ -oPN -fmd -teC -qal -gaE -eKl -imA -wTL -iZZ -oYy -pUe -pbn -lPc -rRw -unx -bdO -bfl -oAe -bhX -yjg -xzu -bfk -pdo -vdX -tfi -bfk -aaa -khQ -mnX -xTi -iDp -bIW -tLO -gYD -too -bKH -bME -bON -bQN -bSJ -bUI -bWX -bZj -caZ -ccH -bUF -ccH -cih -cjH -ccH -bUG -coe -coe -cqY -gFn -lYQ -rJU -rRG -xNT -okN -xZz -sKn -kiV -kiV -uyT -qle -sYX -xCi -dPl -hun -nPY -umF -bfW -hNm -hiD -pxG -dbb -dcN -del -pxG -dgU -dip -dba -xvf -dng -dph -dph -dph -hpY -dph -dph -ntV -rPv -dzR -lcz -dDI -dER -xvf -dHD -jcE -dNO -nIa -dNO -dNO -dNO -dPl -dPl -dPl -dNO -dST -vWJ -dUB -dVl -dWg -dVl -dVl -dVl -dVl -dVl -dVl -dVl -dWg -dVl -dVl -dVl -eeb -eeR -efF -egr -egE -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abf -vtF -aki -akO -abZ -stE -ant -aeb -api -api -abZ -arR -xNU -auq -ssB -oat -wmI -caQ -uyP -xaG -isb -hut -iZZ -rKM -wEL -vox -fdd -ssp -kjE -jqd -qVM -fmd -aZp -kJB -kVJ -llC -hGg -sVm -bdP -tHC -mlc -bfo -bfo -blH -bfk -pdo -kQd -lIF -bfk -aaa -khQ -kUc -hCS -wQK -nzz -ctu -uti -nxi -bKH -bMF -bOO -bQO -bSK -bUG -bWX -bZk -cba -ccH -wRg -ccH -cii -cjI -cla -bUG -aaa -aaa -cqY -pbl -cuj -cqY -cqZ -cqZ -vkd -hbl -qmP -pXL -uOP -wHk -lLA -pFL -xCi -dPl -uip -iLt -kyg -oas -rjP -wSx -mOg -dbc -lYb -dem -dfw -dgV -diq -dkg -dcM -dnh -nAG -oRI -oRI -oRI -oRI -kpm -goX -mWu -dGl -fYL -tXj -dES -inw -dHD -qUN -dNO -pnj -dMv -dNS -aaa -aad -aaa -aad -aaa -dSU -dSU -dSU -dSU -dSU -dSU -dSU -eJt -dZr -rKN -dSU -dSU -ecc -dSU -dSU -dYI -eej -eeS -eeb -eeb -eeb -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aaO -lcU -aaO -aad -aaa -aaa -aad -aaO -lcU -aaO -aad -aad -aad -aad -aad -aaO -tRN -hxG -akP -akP -lXL -akQ -aoq -akQ -akP -akR -aig -tXE -aig -ssB -oat -wmI -jTl -pWi -hOZ -aYs -rYJ -fHd -nCf -spD -wvP -vUy -lYM -hEm -hoY -opn -fxx -cxY -vJF -fJo -fNC -fNx -ePT -jDK -mKV -sfF -bdU -kyf -rqk -rlV -oXn -tDt -lIF -bfk -aaa -khQ -fny -uEl -wQK -nzz -oOD -gdT -wnQ -bKH -bKH -bKH -bKH -bKH -bUG -bUF -bUF -bUF -ccH -bUF -ccH -bWX -bWX -ccH -cmD -aad -aad -cqZ -vcC -jlX -cqZ -aad -aad -eBv -xiK -jDJ -lNS -gyL -eBv -lLA -dKS -xCi -dlR -eyt -cPk -xYN -rlu -gdw -iuE -qDR -dbd -dcP -den -den -dgW -dir -dkh -dcM -vwn -dpi -dcO -dcO -dcO -dcO -jFk -dsA -dCB -dGl -fYL -oiq -pnH -xvf -dHE -dIV -dNO -cMm -pWf -dNS -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -dSU -ehM -dSU -ehM -dSU -aad -aad -aad -dSU -ehM -eek -eeT -eek -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aad -aaa -aaa -aad -aaa -aaO -ehy -aaO -aaO -aaO -aaO -aaO -aaO -ehy -aaO -aaa -aad -aaa -aaa -aaa -abf -rMD -ajY -akP -pXd -jzg -anv -aor -app -xSk -akP -arS -vAv -aus -ssB -nRI -rix -imx -kwB -vep -tow -eRY -koD -wRw -vLs -wjV -uhJ -kuv -ujM -flz -hyF -fmd -mTb -nzc -fZr -llC -kDK -sNC -bdR -bfo -fUx -bdT -bfo -blH -wii -pdo -tDt -lIF -bfk -aaa -khQ -khQ -fFy -kQh -nzz -oOD -gdT -glH -glH -jLq -qqj -pGB -glH -sfH -bXb -bUF -bUF -ccH -ceD -cgq -bUF -bXb -bUF -bUG -aaa -aaa -cqY -sVD -jlX -vZj -vZj -xpb -vZj -vZj -vZj -vZj -vZj -vZj -rVu -dKS -xCi -dlR -eyt -iLt -cpv -gPk -cPk -pvW -gaP -dbe -dcQ -deo -dfx -dgX -dis -mCn -dlU -fYL -dpi -dcO -dcO -dcO -dcO -jFk -dsA -dCB -dGl -fYL -hTS -okB -dGi -noj -dIV -dNO -dKY -uDb -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dSU -jMX -dSU -jMX -dSU -aaa -aaa -aaa -dSU -dYJ -eek -eeU -eek -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaP -abf -abf -abf -abf -abf -aaO -aaO -abf -ads -aaO -eAM -aaO -afb -afz -afV -agk -aaO -gJw -aaO -adq -abf -aaO -aaO -abf -ajh -tRN -ajV -akQ -alA -pir -dDZ -tJv -apq -aqs -aqZ -aij -fmH -sGo -ssB -ssB -ssB -ssB -omx -ssB -ssB -ssB -iZZ -xub -jtJ -xuZ -xaj -oFV -iZZ -vbX -iZZ -iZZ -wPU -vTt -rqC -llC -kvl -unx -bdS -bfo -iUE -bfo -bfo -blJ -bdN -xha -bkA -djc -bdN -aad -aad -aad -khQ -xQz -xTi -oOD -iUx -glH -pNO -wvX -gaN -xtC -glH -glH -glH -rWM -rWM -rWM -rWM -rWM -rWM -tYJ -tYJ -tYJ -tYJ -tYJ -tYJ -mJr -cum -vZj -xsl -bAs -kMC -kaN -iog -fWV -peu -vZj -lLA -dKS -xCi -dPl -bqZ -cXD -xYN -mga -tML -osc -ppn -dbf -dcR -dep -cbi -hGr -sXR -stM -dcM -nNI -dpi -dcO -dqW -dqW -dqW -etr -dsA -dCB -gqD -pJU -dDJ -aaH -xvf -dHH -qlz -dNO -dKZ -bjK -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -eab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xZM -abE -aaO -aca -abC -abC -adb -abC -abC -abC -kpF -dSp -qAU -dSp -dSp -dSp -kIH -vEK -vEK -qGj -vEK -vEK -dYo -lYa -kvx -akj -akR -alB -amx -anx -fiW -apr -mgU -akP -arU -azn -icb -vQq -rLn -tqi -sWE -yma -oLy -sTu -yec -fHd -fNP -oTb -wcq -oTb -oTb -xim -oTb -qSI -aLv -tVP -vTt -bWl -pfY -ewg -sNC -bdT -bfp -tcg -bbw -hNq -ssL -tlA -gNl -tDt -lIF -bfk -aaa -aad -aaa -khQ -oxn -xTi -oOD -vfg -glH -otq -rAf -gaN -gaN -sXr -jpd -wQc -rWM -lEN -vtq -lIk -hft -rWM -txO -txO -mKA -lmD -eyu -tYJ -pbl -jlX -vZj -lQY -jfV -eyc -irC -irC -jmz -lbJ -vZj -vkA -dKS -xCi -dPl -eVj -iLt -xYN -pzC -cPk -eCr -pxG -dbg -dgZ -dgZ -dgZ -dgZ -dgZ -xPJ -dlW -rKo -dpi -dcO -dqW -dcO -dcO -etr -dsA -dCB -dAV -dCy -dCy -dCy -dCy -max -dCy -dCy -dLa -moJ -dNT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aat -aaa -aaa -aaa -abs -abF -abQ -acb -aco -aco -aco -aco -aco -aco -aex -aco -iCf -aco -aco -aaq -bbB -aco -aco -aco -aco -aco -aiT -abZ -eqC -lNK -akP -akP -akP -akP -akP -akP -akP -akP -hei -hHU -auv -ssB -kzp -kBu -wrv -kee -rzE -fKh -jsB -aFi -aFi -aHL -aHL -aHL -aFi -aFi -aHL -aHL -aSh -gqy -vgy -jYL -llC -lZv -sNC -bdT -bfo -fUx -bdT -bfo -blH -wii -lbt -jqO -lIF -bfk -aaa -aad -aaa -fFy -too -qst -tTd -tUK -vdY -qbZ -cCe -dta -fUn -lxe -cqC -pSs -aVP -hmb -dKL -ktU -wCo -rWM -txO -txO -msh -tFS -tzw -hMA -woF -rRG -fwk -jyi -kSQ -owY -uDf -usb -svG -eEK -kqG -tnm -plg -lmO -dNO -eLz -jPm -xYN -pzC -iLt -pMz -mOg -dbh -dcT -deq -dfz -dha -dit -hDe -dcM -dnl -dpi -dcO -dpn -dcO -dcO -pJu -dsA -dCB -dpm -wfN -dDN -pRt -tpD -uIV -dIU -dCy -bMb -qGA -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xZM -abG -aaO -acc -abD -abD -adc -abD -abD -abD -cOm -abD -lQQ -abD -abD -cOm -kjD -abD -ahz -adc -abD -abD -aiU -aji -aju -bOP -aig -maF -vno -bIt -cCh -cCh -ojF -tgh -tgh -qWL -auv -ssB -muI -rUl -moT -dvF -djw -gXL -mNT -aFi -aGu -aHM -aJm -aKK -aLT -aHL -aOS -aQG -aSi -kLq -vTt -jJJ -llC -ise -sNC -bdT -bfo -tpa -bfo -bfo -blL -bfk -pdo -tDt -lIF -bfk -aaa -aad -aaa -fFy -nqS -fec -pzs -stn -glH -mcF -gaN -qPs -gaN -sxb -uAt -rgz -rWM -uBn -wvs -pUT -wMD -rWM -qrM -qrM -nlj -bqb -nPC -tYJ -rdJ -jlX -vZj -rmy -naq -pLr -gnV -qNb -hkl -tfa -vZj -lLA -dKS -xCi -dPl -fBo -iLt -xYN -pzC -cPk -ici -pxG -pxG -pxG -pxG -pxG -dhb -diu -wUj -dcM -xFP -dpi -dcO -tcO -dcO -dcO -oZa -dsA -dGh -isC -dCy -ide -dEW -dGn -sWF -dIY -dCy -bMb -aEi -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaS -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -afc -tzF -abi -abi -abi -qCZ -aht -abi -abi -aig -aiB -aig -aig -ajJ -akm -aig -nCp -wlV -wlV -iRw -exB -unQ -kvK -aij -exB -ojS -ssB -rdl -ssb -eKZ -nbH -naR -nQX -oyh -aFi -gDC -aHN -aJn -aKL -aLU -bGS -vKq -uoV -ahL -ffA -wWp -kVJ -llC -oHg -gfN -bdU -bfo -iUE -bfo -bfo -blM -bfk -pdo -tDt -kAc -bdN -aad -aad -aad -fFy -jqu -nzz -oOD -rsZ -glH -vDu -gaN -oha -gaN -jEQ -mms -tSY -rWM -ewa -hQn -ijb -hmb -aBU -sBY -qrM -fxe -faH -oSn -srY -oSi -cup -vZj -vRV -mdm -eNa -sPE -skk -tKN -xyI -vZj -kXx -dIT -xCi -dPl -kRl -cPk -xYN -jsr -iLt -oan -dPl -kWe -bHL -ife -cPy -dhc -div -sob -dcM -dnn -dpo -dcO -tcO -tcO -tcO -oZa -dsA -dqW -sLr -dCy -gRN -sWF -kvv -dEV -dIZ -dCy -dKZ -nAV -dNT -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -abi -abR -abi -acp -acG -add -adx -adO -abi -aeC -tUN -wZS -kAl -jsQ -wZS -oRn -wZS -nkU -abi -aih -aiC -aiC -aig -ajK -dsw -aig -kqg -hei -aig -aig -aig -pcq -aig -aig -aig -xOV -ssB -kxn -hov -kvh -ylY -jtm -wIM -sXx -aFi -fyM -hHx -aJo -aKM -aLV -aHL -aOU -aQI -aSi -hJA -ohb -qum -vcu -vTH -unx -qLa -bdU -vFE -bdT -bjR -blN -bdN -vVD -tDt -lIF -bfk -aaa -aad -aaa -fFy -iLS -nzz -oOD -thX -glH -omM -xYd -mrD -gaN -uBs -itL -uYQ -ozO -mMH -ndg -qAO -xSB -rWM -mYk -qrM -idQ -yme -oSn -srY -nDA -cuq -vZj -vZj -xpb -xpb -rca -xpb -jOq -xpb -vZj -wuy -dKS -uLL -pZp -ouA -tML -hgK -obY -cPk -uGv -nLq -ePX -daY -pvW -cNz -cPo -diM -xvk -dlW -dno -qob -dcO -dcO -dcO -dcO -jFk -dsA -dqW -dAR -dCy -dDP -dEX -eKC -oCS -dIW -dCy -bMb -qGA -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -abj -abH -abS -acd -acq -sTC -eyT -eyT -okj -dUo -ada -cWn -afF -afX -agn -agN -ahb -ahu -jts -xIG -pEs -jLY -fvG -aig -aig -aig -aig -hHU -geW -aig -nib -rrq -tAz -rrq -vYO -aig -jQJ -ssB -ssB -ujO -mUw -ssB -mLx -ssB -ssB -aFi -aFi -ePm -aHL -aKN -aFi -aFi -aHL -aHL -aSh -unx -kci -pHg -unx -unx -unx -mFE -fIe -nxy -vEI -mFE -pDA -pDA -lWc -tDt -lIF -bfk -aaa -aad -aaa -fFy -jWj -rge -snA -jWj -glH -pbx -jZj -pbd -sXI -glH -rWM -rWM -rWM -kGW -mmy -ydQ -qfL -rWM -qiW -uAU -eZV -uiA -ruK -tYJ -eLZ -cur -cvC -vZj -cjl -nuW -eND -myM -nOD -mLk -wnW -rWa -dKS -xCi -dlR -gfc -cPk -xYN -rlu -iLt -uGv -gUN -wNw -eqs -cCY -eZh -uVp -meA -xkU -fxp -dnp -qob -dcO -dcO -dcO -dcO -jFk -dsA -dqW -uXz -dCy -dDM -dEY -wKj -oPC -iQh -dCy -dKY -rPX -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -abi -abT -abi -acr -fUZ -adf -ady -adQ -abi -aeE -aff -afG -afY -ago -ago -ieW -ahv -ahF -abi -aij -xCG -lgA -fAk -jbb -leI -cNY -nxr -jnN -aig -pWU -tzu -nxr -gzt -nYk -aig -gVP -jxH -xJD -oNM -ntm -ohC -jHI -wvH -hrU -niR -fHm -kNM -srw -srw -eLY -nSt -qpf -kTp -sWu -xwQ -vSe -jgn -nXD -pDA -iOm -nbI -eIe -aiw -sXa -uMv -gmP -pDA -tnv -tDt -lIF -bfk -aaa -aad -aaa -fFy -fpZ -rVw -sfp -fpZ -glH -vgM -hcO -hcO -gaN -jKw -rWM -kZf -pxF -uky -oTF -imy -emw -rWM -cjP -qrM -jCF -myP -jjI -tGC -pbl -jlX -cvD -vZj -nWl -ioc -pAG -vgB -nxA -fUc -wnW -rWa -dKS -xCi -dPl -vEE -iLt -kyg -oas -cPk -uGv -uCT -kFH -utE -uGv -cNz -cPo -diM -xvk -dlW -dnq -ttx -goX -goX -goX -goX -wde -oRI -foK -dAR -dCy -tGU -xlt -lUD -oPC -dIX -dCy -dLc -jyF -dNT -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -abi -abi -ace -acs -rZo -adg -ace -adR -abi -adR -adR -adR -adR -agp -adR -adR -adR -adR -abi -aik -pEs -oPz -ajk -ajM -akp -oPz -kvK -woz -aig -sis -mWz -quS -tzu -aEN -aig -nVk -jxH -qrd -oZW -hXn -wzi -iGJ -vLe -nRM -ffZ -vPg -klB -qZQ -ffH -vPg -vPg -uld -eDP -vPg -hJN -rhn -wXV -wzW -mFE -vZl -vjr -gZh -xWq -gZh -lcH -vqG -mFE -pdo -nUB -gub -bdN -bvJ -bvJ -bvJ -fFy -qHH -nzz -oOD -vEk -glH -pUl -qYu -ngz -xUM -kue -rWM -fxS -ikG -kGW -tOT -rib -lzB -rWM -cjQ -qrM -mwB -ulm -kWO -tYJ -pbl -jlX -cvE -vZj -gzY -nuW -wmq -skk -mBh -iYy -lwc -rWa -dKS -xCi -dPl -qBW -nZn -nyV -fWq -hLq -acy -dPl -jjx -jQa -lVl -cPy -cPo -diz -xvk -dcM -dnr -dpr -drf -drf -jpo -mgW -gvf -fvf -jpo -dBc -dCy -dDR -dEW -wKj -oPC -dJc -dCy -dLd -tVO -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aad -aad -ace -act -acK -adh -ace -aad -abi -aeF -aeF -aeF -aeF -oMw -aeF -aeF -aeF -aeF -abi -ner -qFV -niL -ner -aig -ner -niL -ner -aig -aig -lXG -apw -quS -guB -rCY -aig -nVk -jxH -nNm -kMN -lfq -njy -ffH -vPg -qPZ -lRq -vPg -vQS -tOj -vPg -ffH -ffH -uld -sWw -vPg -oWP -lvG -bGr -xxI -slG -pIy -jnc -gqw -jsj -gZh -gZh -gkR -xbp -rfR -tDt -rjq -bdN -wqo -wqo -afR -fFy -jWj -vYY -mKe -jWj -glH -glH -glH -glH -glH -glH -rWM -rWM -rWM -rWM -rWM -rWM -rWM -rWM -tYJ -tYJ -lFz -tYJ -tYJ -xzy -eCE -ctR -pvA -vZj -vZj -vZj -vZj -vZj -vZj -vZj -mkz -aGp -dCA -haf -cND -cPy -cNz -teD -bKd -cNz -cND -cPy -cNz -dcY -cNz -cPy -cPo -diB -eTx -dlX -dcM -dlW -dlW -dcM -dcM -dlW -itf -dlW -dcM -dcM -dCy -dDS -dEW -ral -oCS -dJd -dCy -dLe -tVO -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aad -acf -acu -acL -adi -ace -aaa -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -mzv -yhZ -tPB -gju -aig -aiC -jbb -tax -iSG -bkU -sew -apw -wHB -kRj -kRj -bcv -nVk -jxH -iKi -iBa -vPg -wQY -sDp -ffH -ffH -vPg -sxQ -klB -gsx -vPg -rgG -vPg -uld -eJd -vPg -hJN -vXE -vPg -skH -mFE -tIe -idM -uDF -geT -vRc -uot -cut -hdt -iql -kQi -lIF -bnv -wSu -wSu -wSu -nWu -tqN -pvo -koU -tqN -wSu -wTN -wSu -wSu -wSu -bnv -wSu -mbW -wSu -wSu -wSu -wSu -wSu -wTN -wSu -sAn -lIF -wSu -wSu -dlR -lLA -rYm -qba -pqs -qba -eKR -wIs -qba -qba -qba -qba -lLA -dKS -pOI -pbi -cPy -cQZ -xle -ifa -cPo -cPo -cZA -cPo -cPo -cPo -hQM -cPo -diB -xvk -cNA -lac -dpt -cXI -uiZ -dtG -cXI -xvk -cXI -nJb -dBe -dCy -dDT -dEW -ouO -oPC -dEZ -dCy -dLf -tbr -dNT -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -ace -acv -acM -adj -ace -aad -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -wnm -aiI -tkQ -oFo -hfE -aiC -rcf -ivD -aig -nuh -oBO -hjX -plf -apw -kfh -mBi -nyI -pnk -mPw -qxg -tCS -bHZ -tTz -idi -qub -mVa -mCY -xvI -eGt -wSB -dew -xiu -bmI -vqH -bGr -blQ -nsK -vPg -tzS -pDA -gBY -wCh -uyh -sKK -ecI -ukj -iNs -pDA -fwo -mbE -rAe -fSi -tDt -tDt -tDt -tDt -tDt -tDt -oIQ -mzs -tDt -tDt -nUB -tDt -tDt -fSi -tDt -bkY -tDt -tDt -ukV -tDt -tDt -tDt -tDt -tDt -rAe -nUB -tDt -weH -ptv -dEP -dKS -dKS -dKS -dKS -dKS -dKS -dKS -dKS -dKS -jhC -nce -pdK -tME -cPy -cRa -ybl -fek -cQX -cXQ -cQX -cXQ -cQX -dex -dfC -dfC -diC -czJ -dlY -dnt -rYU -dri -rYU -dri -rYU -jGc -dyw -dri -poe -vxF -vdc -ePK -nGs -iBZ -vdc -tRu -bBI -cbg -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -acf -acf -acN -acf -acf -aad -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -vCI -aiI -tPB -wOm -fTh -uSa -lzI -wBW -aig -qFR -aiC -kRj -kRj -tzu -wzO -atw -iil -jxH -ogt -kEo -vPg -vPg -ffH -qMw -ffH -ffH -vPg -vPg -ffH -hkY -vPg -iuR -uld -mny -vPg -rMo -tII -ffH -kAu -pDA -pDA -mFE -hKA -mFE -bhR -mFE -pDA -pDA -gum -hsd -rwY -jWO -itn -itn -oIR -lnd -itn -nre -iPP -vLu -aVi -sMg -itn -itn -iLD -jWO -qEM -bPV -jVf -pVx -kWA -pVx -pVx -eVI -pVx -tWF -ihi -tDM -pVx -baj -vct -vpC -aQc -dah -kCS -kUT -vpN -kUT -kUT -gEG -kUT -pOh -xDw -sIe -txN -cPy -cRb -cDW -mnn -aGe -aGe -ntf -aGe -aGe -bqG -aGe -aGe -eVy -bmh -qZb -eYo -bmh -bmh -bmh -uym -bmh -eEY -gLo -iEF -kvc -dCy -dDV -dFd -dGv -dHQ -dJg -dCy -dKY -qGA -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -acf -acO -acf -aad -aad -abi -aeF -aeF -aeF -aeF -lTo -aeF -aeF -aeF -aeF -abi -cGO -yhZ -pqa -ovo -ehS -wAi -bTF -rpX -aig -eHO -rPL -nbv -apw -mWz -aMM -atw -cyr -jxH -uWy -niR -ufP -ffH -mRQ -tOj -iYC -vPg -kXs -vPg -mRQ -sMH -kXs -vPg -hXn -rWl -jPM -hJN -sMk -vma -eHP -pDA -wQf -uku -vnW -haT -nJA -urn -oRo -aig -tIQ -aig -bdN -bdN -pQR -pQR -cHR -pQR -pQR -bdN -bdN -bHq -bJa -bHq -xHn -xHn -xHn -rHy -bUS -bXm -uBc -cbj -cbk -cbk -cbk -cbk -cbn -nUv -cbn -cbk -cbk -cbk -cbk -cuu -mtH -jrm -vTW -pZu -pZu -pZu -pZu -pZu -cHU -cHU -sSO -cHU -cHU -cHU -cRc -cRc -cUG -cUG -cUG -cRc -cRc -cUG -cUG -dfD -dbr -diE -oGK -cPy -cNz -dbr -dbr -cNz -vru -xFF -oIS -xFF -ivY -rXh -ivY -ivY -ivY -ivY -ivY -ivY -ivY -dKY -cpN -dNT -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acf -acP -acf -aad -aad -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -cHY -aiI -tui -ajp -hIa -uSa -jQj -naj -aig -bEx -rdj -yhZ -gPA -apw -oYB -atw -qaL -jxH -lsd -niR -lXC -vPg -kXs -tOj -vGD -vPg -mRQ -ffH -qll -hkY -kXs -ffH -uld -qUb -ncY -snR -fQy -oQN -sYS -mFE -eID -vZl -kfD -hSl -vRc -lqR -eID -aig -bxe -aig -aaa -aad -aaa -rYG -nKJ -rYG -aaa -aad -aaa -bHq -bJb -bHq -tIE -mXc -wyv -xHn -bUV -bXx -rzU -cbk -ccU -ceM -cgz -ccX -ccW -tdq -ccW -cot -cpV -crh -csK -cbk -wqf -cPk -pdK -pZu -jsh -hVi -ksa -pZu -cHV -cIV -hzs -cIW -cNG -cPz -cRd -cSM -cUH -cWp -cXS -cZC -cUG -ddb -dey -cUG -cPv -diJ -mWI -cNz -dnv -dpv -dpv -dsC -ivY -loW -neD -oQf -kWY -rou -pxA -qfr -htJ -deC -mmR -ykg -ivY -dKY -uDb -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aad -aac -aaa -aad -aad -aad -fqA -aad -aad -aaa -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -bBw -aiI -aiI -ajp -fTh -tDp -bTF -rID -iSG -smW -wDl -iHJ -qFR -cAR -cOG -atw -nwD -jxH -vNK -ffZ -kXs -ffH -rgG -tOj -uKz -vPg -qjo -ffH -sxQ -sMH -mRQ -vPg -pHy -nEX -rOM -euG -jkp -nhj -ocQ -ibh -jAQ -vhY -piZ -qKN -sNj -uJx -jBB -jSR -jgO -aig -aaa -lhY -lhY -lhY -suj -lhY -lhY -lhY -aaa -bHq -bJc -bHq -tbE -hon -nbc -vJL -bUU -bXx -rzU -cbn -ccW -ccW -ccW -ccW -eYa -tdq -qCs -qCs -qCs -qCs -fSO -cbn -wqf -cXD -pdK -pZu -jDc -jip -mqR -pZu -cHW -cIW -cfk -dAh -cIW -cPA -cRd -cSN -cUI -pMn -poX -urZ -qRO -nQv -tKD -vzL -lPy -pPZ -bmh -cPy -dnw -iGC -axx -dsD -ojk -hYe -kha -qgk -qnO -kdN -qgk -qgk -kct -qgk -wTq -szq -ivY -dLa -lxQ -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aad -fqA -aad -aac -aad -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -mHH -aiI -yhZ -tce -aig -fqJ -cuQ -cSw -aig -aig -aig -aiJ -aiJ -aig -aoF -atx -prK -aoF -hIq -ffZ -tnG -vPg -prF -vCy -eIo -vPg -tnG -sDp -prF -jwO -tnG -vPg -gzU -lIa -viJ -pMb -aNl -viJ -viJ -oBs -xOr -wTy -qMR -srN -ebB -aak -pOJ -aig -aiC -aig -aad -lhY -qaI -kiz -nKJ -qaI -qaI -lhY -aad -bHq -bJd -bKW -vxa -dXR -qIS -ocn -rpC -dtr -eRu -wJk -aod -nsh -kMR -nsh -bWq -kGO -cmR -ceO -ccW -ccW -bbT -nwt -bIA -iwK -cIt -pZu -vgY -ivX -rIW -pZu -cHX -cIX -hiG -cMi -cNH -cPB -cRd -cSO -cXU -cWr -cXU -ydT -cUG -ddd -deA -cUG -cPv -diG -cbX -cNz -dnx -rVp -ehQ -voU -euq -vME -kpO -pZt -nJh -rWs -inR -sZJ -gKX -cts -asQ -vyz -ivY -dLa -yaL -dNT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -tEw -fqA -tEw -aaa -aaa -aad -aaa -aaa -aad -fqA -aaa -aac -aad -abi -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -aeF -abi -aig -aiJ -aiJ -aig -aig -aig -niL -aig -aig -aad -aad -abj -abj -aad -aoE -dIx -wvG -aoF -gxD -ufA -sRY -sRY -hZL -sRY -sRY -sRY -sRY -sRY -sRY -sRY -sRY -sRY -jhY -viJ -aKc -sWJ -rEc -uOw -nYU -oBs -jjB -wTy -wnk -eID -vYr -fGb -pDA -aig -apw -aig -aaa -lhY -vgr -kld -fbp -mVK -eJG -lhY -aaa -bHq -bJb -bHq -gpp -azH -lib -rOI -bUV -bXx -rzU -cbn -ccX -ceO -cgC -ceO -tdq -ceO -cmS -ceO -ccX -ccW -rhH -cbn -uFe -cPk -mJw -pZu -pZu -gqj -pZu -pZu -pZu -pZu -gzD -cMj -cHW -cPC -cRd -cRc -cUG -cUG -cUG -ryr -cRc -cUG -cUG -dfD -dhm -diM -xvk -cPy -dny -hnl -eml -dsF -ojk -qVD -eWF -nTI -aJh -sgL -grl -fuv -kct -qgk -oLE -ubA -ivY -dLh -xlG -dNS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aad -fqA -aad -aac -aad -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -abi -aad -abj -abj -aad -aig -bDN -oAX -lTK -aig -aad -aoE -aoE -aoE -aoF -aoF -rkL -kvn -aoF -iAN -gBz -heR -gHX -yfc -yfc -enF -enF -yfc -mQn -enF -enF -sxF -wvS -tLy -viJ -nRx -rnB -tNQ -yiD -xAE -viJ -lDw -tdh -uqH -eID -lTG -aak -rgU -aig -bpa -aig -aaa -lhY -aMa -vUf -hpq -nOS -pWT -lhY -aaa -bHq -bJe -bHq -rlh -lHI -ohq -xHn -bUV -bXx -nzN -cbk -ccY -ceO -ceO -ceO -tdq -ceO -ceO -ceO -ceO -crj -rhH -cbk -ual -cPk -pdK -pZu -kip -hsG -sRX -qDN -khD -pZu -hiG -dAh -cNI -cHW -ovU -kPY -mRh -ene -iQC -ucd -mxt -eDj -mRh -ovU -abY -diz -xvk -cNz -dnv -dpv -dpv -dsG -ivY -ekR -mtd -tIZ -eIs -noY -iXe -qOe -htJ -fcl -vaH -nZN -ivY -dLi -pnj -dNS -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aad -fqA -aaa -aad -aad -aad -aad -aaa -aad -aad -aad -aaa -aad -aaa -aad -aad -aad -aad -aad -aad -aig -qWq -uaS -hop -aig -aad -aoE -apB -aqD -oVm -vWi -obn -gVE -aoF -ayR -eAa -eAa -eAa -sDD -tnG -fFU -tnG -vPe -rqh -rqh -rqh -vxk -wvS -suJ -viJ -pxq -ekq -uGy -lhS -qIO -oBs -xFl -wgv -gZh -eID -uDF -vYl -rmA -aig -bpb -aig -aaa -lhY -koH -eQr -rgL -eQr -wuB -lhY -aaa -bHq -bJe -bHq -xHn -xHn -xHn -xHn -bUW -bXq -gHK -cbk -ccZ -ccZ -ccZ -ccZ -kDg -ccZ -ccZ -ccZ -ccZ -crk -mQK -cbk -pfR -cPk -pdK -nZc -nVI -dfA -nIQ -uUC -mOU -spB -fCx -dAh -cNJ -cHW -ovU -hSu -xAZ -gSL -ipL -iKo -gZK -wZX -mRh -riX -dho -diM -uGj -cPy -cNz -dbr -dbr -cNz -vru -xFF -gsn -xFF -ivY -xFF -ivY -ivY -ivY -ivY -ivY -ivY -ivY -cPy -fus -cPy -cPy -dPm -dPq -dPq -dPq -dPq -aaa -dPr -dPr -dPq -dPr -dPq -dPr -dPr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -tEw -fqA -tEw -aad -tEw -fqA -tEw -aad -tEw -fqA -tEw -aad -aad -fqA -aaa -aac -aac -aad -aac -aac -aac -aad -aac -aac -aac -aac -aac -aaa -aad -aaa -aaa -aad -aig -mxb -lmi -mix -aig -aad -aoE -qaK -aAS -aqE -ase -atB -kyY -aoF -qCn -qFI -qFI -qFI -qKI -ozy -hMg -vyf -umL -qFI -qFI -qFI -qFI -qFI -qFI -oBs -epP -bsl -fFl -xbK -xyb -oBs -qpB -hqz -ouD -gZh -gZh -eNW -suu -aig -aig -aig -aad -lhY -sHL -qaI -uRh -qaI -rNq -lhY -aad -bHq -bJf -bJc -bMW -bPc -bRd -bMW -bUX -bXr -pwP -cbk -cda -ceP -cgD -clm -cmO -clm -cmT -cov -cpX -crl -rhH -cbk -enp -jgo -lOj -pZu -gni -hxv -ekw -pZu -pZu -pZu -hzs -cIW -cHW -dJp -ovU -vCJ -jbu -jxO -lcv -fqW -jbI -beP -jdv -riX -cPv -diJ -bLm -rtI -lQF -xkU -xkU -xkU -oMA -vMF -eGI -xkU -xkU -xkU -saB -xkU -pDW -lQF -xkU -leK -cPy -eYi -sRM -rVG -itR -dPm -dQe -dQU -dRZ -dPq -aad -dPr -dVt -dWm -dXa -dXU -dYP -dPr -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aad -fqA -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aad -abj -aad -aad -aaa -aaa -aad -aig -aig -aig -aig -aig -aad -aoF -qVV -aoF -aoF -czv -atC -pZn -aoF -aad -aad -aad -hbT -vLt -mbT -qCn -mbT -lyN -hbT -aad -aad -aad -aad -aad -iDt -vNS -gZR -tqL -eVw -iKB -iDt -otC -oPH -srq -uyh -afJ -thq -rNh -pYM -aad -aaa -aaa -lhY -lhY -lhY -lhY -lhY -lhY -lhY -aaa -bHr -bHr -bKY -bHr -bPd -bRe -bMW -bUY -bXx -tTw -cbk -cdb -ceQ -cgE -coz -uVk -coz -cmU -cow -cpY -crm -pvh -cbk -uFe -cPk -oAx -pZu -lcG -pSt -gyl -wvM -qbv -pZu -cfk -cNK -cNK -cNK -cRe -cSS -cSS -cRe -cRe -nOf -jbI -seS -ifF -fNX -cPv -diM -gjx -dfI -dnA -diM -diJ -diM -diJ -hGG -dxg -diM -diJ -dde -diJ -diM -gjx -dGA -diJ -sAQ -saQ -hQq -nyF -dNV -bwi -soS -fSB -jjt -dSa -dPq -aaa -dPq -dVu -dWn -dXb -dXV -dYQ -dPq -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aac -aac -aad -tEw -fqA -tEw -aaa -aad -fqA -aad -aaa -tEw -fqA -tEw -aaa -aad -pxc -aaa -aac -aaa -aaa -aaa -aaa -abj -aad -aad -abj -aaa -aaa -abj -aaa -aad -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aoE -apE -aqF -arf -asf -atD -ggg -aoF -aaa -aaa -aaa -qFI -eYE -ibQ -qFI -ibQ -ezU -qFI -aaa -aaa -aaa -aaa -aad -iDt -ntg -tFT -qxC -tFT -hlw -iDt -pYM -pYM -tyD -ePO -mFE -pYM -pYM -pYM -aad -aaa -aaa -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -bHr -bJg -bKZ -bMX -bPe -bRf -bHr -bVc -bXx -rzU -cbk -cdc -ceR -cgF -bfs -bfU -leH -kly -cox -bib -crn -toG -cbk -eCf -cPk -oAx -pZu -lcG -tyX -mNs -pZu -pZu -pZu -cfk -cNK -cNL -cPD -cRf -cST -cUM -cWu -cRe -vPq -qLS -qjJ -eXa -riX -cPv -diJ -agv -cNA -cXO -dpA -uvi -cXO -cXO -sAk -cXO -cXO -dAg -cXO -cXO -cXO -sAk -cXO -cXO -dJo -cPy -hyz -vHh -lGO -oqq -dPp -dQg -dQW -dSb -dPq -aad -dPr -dVv -dWo -dXc -dXW -dYR -dPr -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -fqA -aad -aad -aad -pxc -aad -aad -aad -fqA -aad -aad -aad -pxc -aad -aac -aad -abj -aad -aad -abj -aaa -aaa -abj -aad -aad -abj -aad -aad -aad -aac -aac -aad -aaa -aac -aac -aac -aad -aoE -apE -aqG -arg -asg -atE -ggg -aoE -aaa -aaa -aaa -aaa -aaa -aDi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -iDt -jES -wXw -riP -tgL -mWO -iDt -aad -pYM -knk -ycK -vCo -pYM -aad -aad -aad -aad -aad -aad -aac -aac -aac -aac -aac -aad -aad -bHs -bJh -bLa -bMY -bPe -bRg -bHr -bVc -bXx -rzU -cbk -cdd -qWy -cgG -cir -xcD -clp -cmW -coz -bib -cro -toG -cbk -gcu -gFG -mlx -pZu -idv -yin -mgQ -mVv -qOV -pZu -hzs -cNK -cNM -cPE -ehL -cRg -cRg -cWv -cXY -qPp -gup -gTI -qDK -eFD -kzm -diM -mWI -dma -dma -dma -dma -dma -dro -xQh -dro -dsI -dma -dEb -dEb -dEb -ycB -dEb -dEb -dEb -vFc -cPy -kGG -cPy -cPy -dPm -dPq -dQX -dPq -dPq -aaa -dPr -dVw -dWp -dXd -dXX -dYS -dPr -aaa -aad -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -hVc -fqA -fqA -pxc -pxc -pxc -pxc -jAh -pxc -pxc -pxc -hdP -pxc -pxc -pxc -pxc -pxc -aaa -aad -aaa -abj -aaa -aaa -abj -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aoF -apE -aqH -arh -ash -atF -auN -aoE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -oBs -oBs -ojI -ifv -oBs -oBs -oBs -aaa -jkF -hJH -tMG -vKF -jkF -aaa -aaa -aaa -aaa -abj -abj -abj -abj -abj -abj -abj -aaa -aaa -bHs -bJi -azV -bMZ -bPg -gWQ -bHs -bVc -bXx -pYK -czq -hDA -waV -pzM -fpn -iuz -clq -cmX -coz -bib -crm -hzC -cbk -uFe -cPk -oAx -pZu -sKJ -uLp -vrZ -pZu -pZu -pZu -cfk -cNK -cNN -jUo -cRh -cSU -cRh -fIN -cSS -jbu -sEE -eXa -xVL -riX -cPv -diJ -iPh -dma -dnC -dpB -dmd -dsJ -dtN -jkz -dxi -dyD -dma -dBo -dEd -dEc -xET -rmX -rmX -mIX -vFc -dLm -xEt -cHU -aaa -aaa -dPq -dQY -dPq -aaa -aaa -dPq -dVx -dWq -dXe -dXY -dYT -dPq -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -fqA -aad -aad -aad -pxc -aad -aad -aad -fqA -aad -aad -aad -aad -aad -aac -aad -abj -aad -aad -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aoF -apF -aqI -ari -asi -atG -auO -aoF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -iDt -pIO -uOw -rEc -fjp -iDt -aad -aaa -pYM -pYM -nfI -pYM -pYM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHr -bJj -stH -uhy -uhy -pRX -sCR -qfA -nxv -mtO -cbk -cdf -xZn -cmY -cit -ckd -clr -cmY -coA -cqb -crp -csR -cbk -uFe -gQI -oAx -pZu -jli -eEf -pLZ -ozS -jxm -pZu -qrv -cNK -cNO -uqx -pWr -pWr -cUN -xeK -cRe -qdQ -aUK -sgR -lkw -ovU -cPv -diM -mWI -dma -pgz -dnD -drn -dsK -dtO -qzt -dxj -dtR -dyE -vko -loc -vko -jqY -vko -loc -vko -iZy -dLn -rVo -dfX -aad -aad -dQh -dQZ -dPr -aad -aad -dPr -dVy -idS -ogz -mMg -dYU -dPr -aaa -ajr -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aac -aac -aad -tEw -fqA -tEw -aaa -aad -fqA -aad -aaa -tEw -fqA -tEw -aad -aac -aad -aac -aac -aaa -abj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aoF -apG -aoF -aoF -aoE -aoE -aoF -aoF -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -iDt -wxQ -imp -jfG -shH -iDt -aad -aaa -aaa -aaa -bgU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHs -bJk -hGq -bNb -bPi -bRj -bHs -bVc -bXx -aWe -fof -fof -prD -fof -fof -fof -fof -cbk -cbk -cbk -cbk -cbk -cbk -wiF -aJl -pJD -pZu -pZu -pZu -uTc -pZu -pZu -pZu -oej -cNK -cNP -lYp -cRj -cSW -cUO -cWy -cRe -rzT -lUW -qwg -hUr -ovU -cPv -diz -mWI -dma -dnE -dnD -dmd -dsL -dtP -cxF -dxk -dyF -dma -dBq -iDa -dEe -mqu -dEe -iDa -icz -vFc -cIW -xAi -cHU -aaa -aaa -dPr -dRa -dPr -aaa -aaa -dPq -dVz -dWs -fBC -dYa -dYV -dPq -aad -aad -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aac -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -abj -aaa -abj -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -iDt -vxq -tof -snm -utp -iDt -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHs -bJl -wrG -bNc -bPj -bRk -bSZ -bVd -bXx -uzi -fof -kyT -ntH -iOz -snk -mKq -fof -cmZ -coB -cqc -xTw -nad -eLK -fan -oGQ -xXv -hNd -gPw -gPw -dYM -vKM -fAX -cJa -qrv -cNK -cNK -iRV -cRk -cNK -cNK -cRe -cRe -ovU -ovU -ovU -uaz -sBQ -cPv -diL -esn -dma -dnF -dpC -dnF -dma -dma -nwo -dma -dma -dma -dBr -dCO -nWg -mda -xrz -nJq -xzY -vFc -dLo -rGR -cHU -aaa -dPq -dPq -dRb -dPq -dPq -dPq -dPq -dTY -dPr -ilM -dPr -dQl -dPq -dPq -dPq -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -tEw -fqA -tEw -aad -tEw -fqA -tEw -aad -tEw -fqA -tEw -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -iDt -iDt -oBs -oBs -iDt -iDt -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bHr -bJm -ryw -bNd -bPk -bRl -bHr -bVf -bXw -sOk -gYz -nvf -cHI -mme -xjq -jkE -fof -cna -coC -fAX -egw -xJN -yfe -jXe -yfe -gxg -yfe -jIn -yfe -sBv -tmn -fAX -cJb -mPH -cMn -cNQ -mtn -cRl -cPy -cUP -cPy -cYa -cZL -dbv -ddh -deG -cPy -dhq -diJ -mWI -dma -uTf -dnG -dro -dsN -dtQ -rGy -dxl -dyG -dma -dBs -qrf -dEg -rLD -xNr -dCP -wEq -vFc -dLp -xAi -cHU -aad -dPq -dQi -dRc -dSd -dSY -dTR -dUO -dVA -dWu -wzw -dYb -dYW -dYb -eaf -dPq -plD -ecg -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aaa -aaa -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bAc -aaa -aaa -aaa -bHr -bHr -gXi -bHr -bHr -bHr -bHr -bVf -bXx -ocC -bQr -mQN -mrr -mpA -mow -xiY -fof -cnb -clw -fAX -egw -xJN -yfe -nDH -dgf -olC -fJy -nBR -yfe -sBv -aEq -fAX -cJc -cwR -cIW -cNR -rGR -cIW -cPy -iPc -cPy -cYb -aDx -dbw -ddi -sZS -dfL -cPv -diM -nDl -uDI -dnH -dnG -dro -dsO -dtR -aBM -bot -dyH -dma -vFc -vFc -vFc -vFc -vFc -vFc -vFc -vFc -cIW -kjS -dfX -aaa -dPr -dQj -dUP -dSe -dSZ -dSe -dUP -dSe -dUP -xly -dYc -dYX -dZz -sEb -lpN -bzO -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -tEw -fqA -tEw -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -abj -abj -abj -abj -abj -abj -abj -abj -aaa -aaa -aaa -aad -aaa -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnD -buz -bnD -aaa -bnD -bAd -bnD -aaa -aaa -bHr -bJn -aRj -bNf -bPl -bRm -bHr -bVf -aTM -fUj -gYz -qDD -bdg -xqi -gHm -dxS -eGP -mew -coE -fAX -egw -xJN -oEu -nbO -rkD -pun -tDa -vfd -oEu -sBv -qNI -fAX -cJd -kOv -fwj -nGn -heo -cHW -cPy -vBN -cPy -cYc -rcA -qQO -sZs -vPs -xjz -aGe -meA -bmh -dmd -dnD -dnG -dro -dsP -dtS -lbz -dxn -dyI -dma -dBt -cHW -dEh -cIW -dGB -dHW -dJp -dmf -cHW -xAi -cHU -aad -dPq -dQk -dWq -aDy -cBR -fbe -jLf -nlJ -qnX -rDR -pkx -dqE -qlW -kpr -eaL -ebu -ech -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aaa -aad -aaa -aaa -tEw -fqA -tEw -aaa -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aac -aad -aad -aaa -aaa -aad -aaa -aaa -aaa -abj -abj -abj -abj -abj -aaa -aad -aad -aad -btb -buA -bnD -aad -bnD -buA -btb -aad -aad -bHr -bJo -tLa -oGt -uLM -bRn -bHr -bVc -bXx -hUH -fof -fjU -xKt -pcN -tEy -rCa -fof -plV -coK -fAX -fAX -knJ -yfe -oRC -iFs -pun -ffY -mDs -oEu -bqz -fAX -fAX -vbb -vbb -vbb -vbb -fKA -bOV -raB -jDV -osV -fmC -qHe -jQl -ddj -deJ -dfL -cPv -diM -xXo -wEm -tyl -dnG -dro -dsQ -dtT -nUZ -dxo -dyJ -dma -dBu -tyy -heo -hqi -gIm -sPI -uSi -hqi -gnq -omp -cHU -aaa -dPq -dQl -dTb -lrw -dTb -dQl -dQl -dQl -dPr -dXl -dPr -uYo -dPr -dQl -dPq -dPq -dPq -dPq -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aad -aaa -aaa -aac -aac -aad -aac -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aac -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aad -bnD -bnD -bnG -bnD -buB -bnD -bnG -bnD -bAf -bnD -bDV -bDV -bHr -bHr -bHr -bHr -bHr -bHr -bHr -bVg -bXr -mZW -fof -wlq -wlq -wlq -wlq -wlq -fof -mHW -coG -fAX -oLs -xvC -iqT -nsR -xvO -pun -sGF -uup -rvO -lmu -nwU -fAX -qWn -wvB -nRq -vbb -fjX -cRp -cPy -cUT -cPy -cYe -cZP -dbz -ddk -deK -cPy -iAW -nDC -fYO -dma -dnK -dpD -dro -dsR -dtU -qjm -dxp -dyK -dma -dBu -hoA -jWB -jWB -izY -jWB -vWl -jWB -jWB -jWB -jWB -aad -dPq -dQm -dRg -wFR -eFP -dTU -dQl -dVD -dWx -dQl -dYe -pHW -dZC -dPr -eaM -ebv -eci -dPq -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aac -aac -aad -aac -aac -aad -aac -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aac -aaa -aac -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -bnD -bpd -bre -btd -buC -bvX -bnG -byD -buC -btd -bDW -bFG -bHt -oXw -hpN -iTp -hpN -hpN -aCR -rSB -tHb -eQK -nof -bHw -cfb -cgP -ciz -bgZ -clu -oSM -coH -fAX -iSa -xHN -yfe -mgt -iqT -pun -jIn -okL -jIn -fCd -aOR -oYb -lMJ -tOQ -rDX -vbb -tCy -cHU -cPy -cPy -cPy -cPy -cPy -cPy -cPy -cPy -cPy -cPy -wUo -cPy -dma -dma -dma -dma -dma -dma -eok -dma -dma -dma -dBE -qUs -jWB -qoh -mtX -cKc -wRv -gRT -fOX -fTV -jWB -aaa -dPr -dQn -dRh -rlZ -wke -dTV -dQl -dVE -dWy -dPr -dYf -syo -ejm -srM -pSX -fOJ -ecj -dPr -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aad -aaa -aad -aaa -aaa -aac -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aad -bnD -bpe -brf -bte -buD -bvY -bxm -byE -bAg -buD -bDX -bFH -bHu -bJq -bHu -bHu -bHu -bHu -bHu -bHu -bXz -bZI -aSZ -cdm -cfc -xpm -udk -bgZ -clv -nbq -coK -fAX -ukQ -lTf -sdG -kRn -fHu -lZj -sAX -jQS -jQS -eJg -tmn -aJl -keh -pDr -knd -vbb -mnM -cRq -cSZ -cSZ -cWA -dkO -cZQ -cIX -ddl -deL -cHU -dht -hTA -dkG -cHU -dnL -dpE -dpE -dBE -dtV -xEt -dtV -dpE -dAh -dAh -rNz -jWB -mfP -gRT -qkr -sIA -gRT -pIM -fVM -fjt -aaa -dPr -dQo -dRi -kUP -kwV -dTW -dPr -mpK -vCr -srM -rQN -kbC -dZE -dQl -eaO -dQl -dQl -dPq -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aad -aad -aac -aac -aad -aad -aaa -aaa -aaa -aFm -aFm -aFm -aFm -aFm -aFm -aFn -aFn -aFm -aFm -aaa -bgZ -biy -biy -biy -bnG -bpf -brg -veW -buE -bvZ -bnD -byF -tQi -bBZ -bDY -bFI -bHv -bJr -bJr -bNi -bJr -bJr -bJr -bNi -bXA -bZJ -mlw -bHw -cfd -cgR -dnB -bgZ -clw -mHW -coI -fAX -ukQ -hGA -jMK -mgY -crQ -uaP -fAy -uaP -uaP -wKs -jZS -mXX -gTs -oHy -vTa -vbb -mvM -cjc -cjc -lAJ -uTK -ueh -peT -gnq -gnq -heo -ixj -jOF -lkl -pUQ -eOc -hEq -cjc -jFs -rAg -xdX -wve -rAg -fcA -ueh -heo -ueh -jWB -kVK -nkL -kKW -fdo -rRu -vpT -hKg -fjt -aad -dPq -dQp -dRj -tTu -ttZ -dTX -dQl -dVG -dXY -dPr -dWq -xie -qnX -srM -sKN -sFr -ecj -dPr -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aaa -abj -aaa -aad -aaa -aaa -aad -xjZ -xjZ -xjZ -xjZ -aQW -aSC -kbv -mRz -aFn -aZk -kiO -bcJ -aFm -aaa -bgZ -biz -bkk -bmd -bnG -bpg -brh -nFn -buF -bwa -bnG -byG -hJT -bCa -bDZ -bnG -bHw -bHw -bHw -bgZ -bHw -bHw -bHw -bgZ -bXB -bHw -pwX -bgZ -bgZ -biy -lmt -bgZ -clx -jtO -coJ -fAX -fAX -csZ -bHq -fZW -wpu -gBU -fAX -bjc -uuE -gqi -fxw -fAX -nbX -tJA -mzX -vbb -vbb -vbb -vbb -vbb -vbb -cIW -soN -cIW -ddm -ddm -ddm -ddm -wvE -ddm -dmh -dmh -dmh -dmh -dmh -qZD -dmh -dmh -dmh -dmh -dAh -oxI -jWB -hlW -pIM -pIM -mNY -gRT -pIM -qbV -jWB -aad -dPq -dQl -dRk -pHZ -dQl -dTY -dQl -dVH -dWB -dQl -dYi -dZe -dZG -dPr -eaQ -ebz -eci -dPq -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aaa -abj -aad -aad -aad -qYo -qYo -xjZ -jIP -rDI -xjZ -aQX -aSD -eDz -pwB -sGN -oCh -siU -bcK -aFm -aad -bgZ -biA -wJe -bme -bnG -bph -bri -kHB -buF -bwb -bnD -byH -cHq -bCb -bEa -bnG -bHx -oid -bLl -bNj -bPo -jcD -bLl -bNj -bXC -bZL -kGs -bNj -cfe -cgS -tPJ -bgZ -cly -rhF -coK -bHq -crw -cta -bHq -bHq -bHq -bHq -vbb -vbb -vbb -vbb -vbb -vbb -oRk -ocu -xlE -vbb -igq -yaE -liX -vZG -vbb -dLp -bde -dbC -ddm -deN -dfP -dhv -fSp -dkI -dmh -dnN -dpF -xOe -dsT -nDB -dvM -dxr -dyN -dmh -dBA -gSx -jWB -oSd -hJG -wNY -vsQ -lSu -nEf -jpY -jWB -aad -aad -dPq -dRl -phH -fjO -dTZ -dPq -dPq -dPq -dPq -dPq -dPr -dPq -dPq -dPq -dPq -dPq -dPq -aad -aaa -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aaa -aaa -aad -aaa -aaa -qYo -aaa -aaa -xjZ -nsp -uPe -xjZ -aQY -aSE -sIM -jck -sUa -eHh -pVu -aFm -aFm -aaa -bgZ -biB -udO -bmf -bnG -bpi -bAj -peY -bAj -lom -bnG -byI -vjC -bCc -bEb -bnG -bHy -iFD -bTb -bNj -bPp -iFD -bTb -bNj -bXD -bZM -tFH -bNj -cff -fVN -oAS -bgZ -rLP -jzh -kLt -xps -wSM -xno -kLt -fFf -xsP -coI -vbb -sDc -khU -gaO -nSi -vGJ -pnL -rxt -aHk -lvk -gPM -xmP -umU -oKw -vbb -cYi -cfk -cIW -ddm -deO -dfQ -dhw -diS -dkJ -dmh -dnO -dpG -dpG -dpG -mrx -dpG -dpG -dvM -dmh -dBu -awO -jWB -mjD -foM -foM -nBQ -foM -qSS -hdq -jWB -aad -aad -dPr -dRm -vEY -mFb -dUa -dPr -aaa -aad -aad -aad -aaa -aad -aad -aad -aad -aad -aad -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abj -aad -aFm -aFm -pff -pff -pff -pff -aFm -aFm -aFm -paw -aFm -aFm -aFm -aFm -aFm -aFm -aZn -whb -aFm -aFm -aFm -bgZ -biy -njv -bmg -bnG -bnD -bnD -mxu -bnD -bnD -bnG -bnG -eeW -bnG -bnG -bnG -biy -wfi -biy -bNj -biy -hBz -biy -bNj -bXE -biy -nUH -bNj -biy -uzW -biy -bgZ -clA -mZl -clA -clA -clw -gkW -bHq -bHq -mHW -cyY -nSp -rmm -ffV -fWz -fMP -vbb -oRk -jVy -eOt -vbb -jYG -iFr -xmP -moQ -vbb -cIW -cfk -eHJ -ddm -deP -dfQ -dhx -vNp -dkK -dmh -nSn -dpG -dpG -dpG -oEr -dpG -dxs -dyO -dAi -dBB -uxB -izY -sFw -uyM -uyM -hTF -uyM -uyM -wWb -fjt -aaa -aad -dPq -dRn -dSo -dTj -dUb -dPq -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -aaa -ajr -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efQ -qYo -qYo -qYo -aaa -pff -epN -reP -reP -npH -reP -wtm -reP -wqW -wzs -reP -wJo -uOU -shl -reP -sxA -wNS -mCW -nFm -lBT -jNQ -sEd -bEy -rea -pOw -aZN -pOw -mcl -iRf -pOw -pOw -cbr -xxt -pOw -nkB -bNj -acg -ucz -fKp -qdu -onR -tOq -fKp -wXX -oPv -ktN -mcl -ngT -ncE -pOl -pxg -jPy -biy -adG -bYB -coN -cqg -cry -tzf -cuF -cwc -mHW -cyZ -vbb -vbb -vbb -vbb -vbb -vbb -nNO -rKG -lBm -vbb -vbb -vbb -vbb -vbb -vbb -cYj -aVB -tfD -ddm -oEw -dfS -dhy -diT -dkL -dmh -dnQ -dpH -kwH -dsU -dub -dpG -dxt -dyP -dmh -dBE -vsj -izY -ydF -pIM -gNF -mlQ -mtX -qkr -jId -fjt -aaa -aad -dPq -dPq -dPq -dPq -dPq -dPq -aaa -aad -aaa -aaa -aaa -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -efQ -aaa -aaa -uHd -aaa -pff -tqQ -kZV -wMU -obt -lbK -iQj -bcI -lbK -sKL -bcI -lbK -eoZ -bcI -spx -kAm -lxn -rZH -aFn -beq -wmA -bhb -biE -bnI -bnI -bnI -bnI -acA -btl -buK -bTe -bTe -bTe -eXl -dWQ -efK -suN -mqx -bTe -bLo -bTe -bPr -bTe -bTe -bTe -bXG -sGn -bnI -cdo -uer -bnI -lkC -lzr -rZz -enG -coO -cqh -bJc -kRf -cuG -bHq -rhF -cza -vbb -vZG -eLV -yaE -eSH -vbb -oRk -gko -mRI -vbb -ojK -yaC -idG -myF -vbb -cYk -aVB -cIW -ddm -deQ -gAm -dhz -dhw -dkM -dmh -dnR -dpG -dpG -dpG -dpG -dpG -dxu -dyQ -dAj -dBC -awO -jWB -pKe -gIf -xPI -lOE -lIG -ghk -utJ -jWB -aad -aad -aad -aaa -aaa -aaa -aad -aad -aad -ajr -ajr -aad -aad -aad -ajr -ajr -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -qYo -uHd -qYo -xjZ -xjZ -gkK -xjZ -xjZ -gUy -xjZ -xjZ -nKv -xjZ -xjZ -iAL -xjZ -xjZ -gCc -xjZ -aZo -whb -bcN -wyK -oLd -bhc -biF -bnJ -bnJ -bnJ -bnJ -ibz -btm -bnJ -bnJ -bxp -byK -vag -bCg -bNj -bFK -loN -bJy -bNl -bNl -bNl -bNl -bNl -bNl -bXH -bkw -cgX -cdp -bkw -xcQ -mLO -ckl -clD -nPk -coP -clA -crA -ctf -cuH -bHq -lnw -czb -vbb -kvy -mTl -xmP -wBp -fuK -mAt -rxt -oHK -cBM -eWr -uhs -xVo -xuD -vbb -cYj -aVB -dbC -ddm -deR -iTy -sAB -sAm -dkN -dmh -dnS -dpG -dpG -dpG -dpG -dvN -dxv -dyR -dmh -dBu -gBp -dEk -dEk -dEk -dEk -dEk -dEk -dEk -dEk -dEk -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -aaa -uHd -aaa -xjZ -gWz -cJq -vXz -mrC -jZX -vXz -mrC -rhY -vXz -mrC -jrR -vXz -gWz -hEk -xjZ -aZq -whb -aFm -aFm -bKv -tuZ -tuZ -eMy -eMy -tuZ -eMy -vQE -tOv -eMy -tuZ -guL -aML -iMz -aML -guL -bFL -kbi -bFL -bFL -bFP -bPs -bFP -bFL -bFL -bXI -qjs -bFP -bFL -bKr -biy -bgZ -bgZ -coQ -iNm -coQ -clA -clz -bJe -cuI -bHq -lnw -czc -vbb -wzU -xmP -iFr -neu -vbb -ski -jVy -uAo -vbb -ycm -xVo -xVo -wuK -vbb -cYl -cfk -cHW -ddm -ddm -ocG -ddm -ddm -ddm -dmh -dnT -dpI -drq -dsV -duc -dvO -dxw -dyS -dmh -dAh -oxI -dEk -dFt -dGL -dId -dJB -dKs -dLw -dNi -dEk -aad -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -aaa -uHd -qYo -xjZ -mdG -qlx -vXz -sfb -vFU -vXz -sfb -qBp -vXz -mdG -sQr -vXz -aUv -tgb -xjZ -aZo -whb -aFm -bes -bfR -tuZ -tkj -uYe -nRT -ils -ktc -oIg -oXg -mau -xYt -guL -blt -ylr -qhD -guL -tyx -jio -bJz -bFP -bNm -bPt -bRq -bTf -bVl -bXJ -irE -cbD -bFP -jTW -cgZ -ciI -bgZ -clF -eLw -coR -clA -crB -ctg -crB -bHq -oSM -czd -vbb -vbb -vbb -vbb -vbb -vbb -eIk -jVy -uAo -vbb -vbb -vbb -vbb -vbb -vbb -cYm -eRS -cIW -vOp -cHW -hwT -cHW -cIW -jPq -dmh -dmh -dmh -dmh -dmh -dud -dmh -dmh -dmh -dmh -dBu -vnq -sOG -kuc -aag -dIe -dJC -dKt -dLx -dNj -dGQ -aad -aad -ajr -ajr -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aaa -xjZ -tXx -lEU -vXz -wPe -hDc -vXz -sPv -oHl -vXz -aPi -bll -vXz -aUw -hDc -xjZ -aZr -aSY -aFm -bet -bfS -eMy -tHW -kQt -xMc -xMc -wFK -wTr -sAv -uyV -sIg -guL -qhD -rob -iyB -guL -bFM -jio -bHH -bLr -bNn -bPu -uth -uth -uth -kVk -jcC -cbE -cdq -iZC -chc -ciJ -bgZ -clG -eLw -coS -clA -crC -cth -cuK -bHq -rhF -coK -vbb -myF -idG -mQO -gnW -vbb -ski -jVy -pES -vbb -khl -qcZ -lAD -fPH -vbb -cYn -hzs -dbD -tfD -cIW -rAL -dbD -lnB -cHW -cIX -dnU -dbD -cNH -lnB -due -dbD -dbD -dyT -lnB -dBE -oxI -dEk -dFv -dGN -dIf -dJD -dKu -dLy -dNk -dGQ -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -vVc -vVc -qYo -aaa -xjZ -vXz -mIv -vXz -vXz -jAK -vXz -vXz -aMf -vXz -vXz -sYu -vXz -vXz -aWf -xjZ -aZo -whb -aFm -aFm -aFn -tuZ -lze -rMx -ick -wva -vKx -qNC -sWf -nOL -ohQ -fWZ -qhD -oKg -wuN -guL -bFN -bHG -bFM -bFP -cxr -bPv -bRs -bTh -bVn -bXL -oYL -cbF -bFP -cjt -chb -ciK -bgZ -clH -xeq -coT -clA -bHq -cti -bHq -bHq -lnw -coI -vbb -ekx -xVo -uhs -jmH -hpH -lmX -rxt -eqo -oiC -wrw -lAD -lAD -eIy -vbb -dLp -dzz -ueh -nsS -cjc -uWg -jFs -cjc -fOo -ueh -pyF -kiK -rAg -jFs -jFs -nOH -hjE -rAg -nOH -nOX -iYT -dEk -dFw -dGO -dGN -dJE -dGN -dLz -dNl -dGQ -aad -ajr -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -qYo -aFm -aFm -xPp -aJA -rhs -aGH -pWW -aJy -aNJ -yfl -aNC -aPk -lUo -bbt -sZD -oTt -aFm -aZo -whb -bcO -aFm -aaa -tuZ -uVx -rMx -loX -kcu -jGY -ucc -oQR -nOL -mmo -guL -xLd -uqc -bFj -guL -bFO -bHH -bJB -bLs -bLs -bPw -bPw -bLs -bPw -bXM -pzl -cbG -bLs -qiu -chc -ciL -bgZ -clI -cnp -clK -clA -aaa -aaa -aad -cti -qvd -cze -vbb -iMF -xVo -xVo -tKk -vbb -ski -oXX -uAo -vbb -xYc -mKf -hUv -rzM -vbb -cYp -qrv -cIX -ddu -cHU -dfX -cHU -cHU -lOa -cHU -lOa -cHU -oub -rNd -cHU -cHU -lOa -dyU -dAk -rUy -dDb -dyU -dFx -dGP -dIg -dJF -dKv -dLA -dNm -dEk -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -aFm -aFm -aFm -aFm -hAI -gsB -aJA -puA -rgR -utT -lBf -lkt -qnU -izq -ddg -npX -xcp -ieL -aWg -pff -aZu -smX -bcP -aFn -aad -tuZ -mFt -mau -iHr -jFj -oYc -mau -lTi -jFj -jCE -guL -qhD -qhD -qhD -guL -bFP -bHI -bFP -bLs -bNp -bNp -bNp -bTi -bVp -bXN -aDU -cbH -bLs -bGo -chd -ciM -biy -clJ -cnq -coU -clA -aad -aad -oNH -oNH -ice -oNH -vbb -vbb -vbb -vbb -vbb -vbb -plq -tJA -rCO -vbb -vbb -vbb -vbb -vbb -vbb -oNH -qLO -oNH -oNH -oNH -aad -cHU -diX -dkR -cHU -rpi -dpK -cHU -cIW -cHU -dvQ -rAL -dyU -dAl -dBH -dDc -dyU -dEk -dGQ -dEk -dEk -dEk -dGQ -dEk -dEk -aad -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -pff -lGy -nFI -lxf -fiN -reP -ibY -fcK -lsG -aIf -vXz -cAe -vXz -vXz -vXz -aKV -aSG -rKh -aMi -pff -aZo -whb -bcQ -aFm -aaa -eMy -bki -hrI -uWQ -vSA -jJB -oel -gPc -nxf -qUA -guL -swl -swl -swl -guL -bFQ -bHJ -bJD -bLs -bNq -bPx -bRt -bRt -bRt -bXO -aDU -cbI -cdr -lXf -chc -ciN -bgZ -clK -cnr -cnp -cns -aaa -aaa -oNH -sqI -upL -uDL -uZm -pNL -yll -nDy -tWu -wjc -keR -lrk -kMn -ogT -nsF -xFD -iaz -bua -ymb -kWC -nik -uOW -uBx -oNH -aaa -dhC -diY -dkS -cHU -dnX -dpL -dfX -wvA -dfX -dvR -dxz -dyU -dAm -dBI -dDd -dyV -aad -aad -aad -aad -aad -aad -aad -aad -aad -aaa -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -uHd -aaa -pff -mio -fBg -kCh -bYw -qaR -ccu -lOb -lsG -aIg -vXz -okW -avz -iGN -aPn -aKV -eMd -osN -lgw -aFm -aZo -rjJ -aKV -aFm -aad -tuZ -lJt -xBb -xBb -ppt -hBn -fWW -hSS -xBb -mau -swl -llD -hRH -opi -guL -bFR -bHK -bJE -bLs -bNr -bPy -fZK -bEr -tlM -blw -jrt -cbJ -cds -bsa -che -ciO -biy -clL -cnp -coW -clA -aad -aad -wZU -sqI -gTH -uhI -vyd -uhI -uhI -uhI -uhI -uhI -uhI -kXk -xCc -uhI -uhI -uhI -uhI -uhI -uhI -uhI -eVR -wRt -tEe -wZU -aad -dhC -diZ -dkT -cHU -dnY -dpM -dfX -abj -dfX -dvS -dxA -dyU -dAn -dBJ -dDe -dyU -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -uHd -aaa -pff -vjn -mNS -kAJ -ilu -lsG -xvZ -xzc -aGL -aIh -vXz -olN -vXz -aNG -aPo -aKV -aKV -xsQ -aKV -aFm -aZo -whb -bcR -aFm -aaa -tuZ -ycd -nqQ -nqQ -nqQ -uBM -ksL -kTl -hZg -amg -lnp -vhn -dRo -upI -guL -bFL -bFP -bFL -bLs -bNs -bPz -bRv -bRv -bRv -bRv -bZX -cbK -bLs -cfq -bnI -ciP -bgZ -clA -cns -clA -clA -aaa -aaa -wZU -sqI -wRt -ktn -iLh -mkO -qhE -wRt -sjP -hLN -nvt -nvt -sWc -rvP -uNj -wRt -qBh -qBh -nzf -qsr -geR -qBh -tEe -wZU -aaa -dhC -dhC -cHU -cHU -cHU -dfX -dfX -vVc -dfX -dfX -cHU -dyV -dyV -dBK -dyV -dyV -aad -aaa -aaa -aad -aaa -aaa -aad -aad -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -xTK -aaa -qYo -aaa -pff -lce -mNS -mit -jrh -wQu -kxv -hQe -lsG -lpW -vXz -vXz -vXz -vXz -vXz -aKV -iDb -osN -aWi -aFm -aZo -obu -bcS -aFn -aad -tuZ -mQp -jRs -wTx -etJ -iSX -kAO -kAO -qVt -pJV -swl -hhH -eQk -fZP -guL -aad -aaa -aad -bLs -bNt -bPA -bRw -bTk -bVr -bXR -bZY -cbL -bLs -pft -chg -cfr -bgZ -aaa -aad -aaa -aaa -crD -aaa -wZU -nUD -wRt -mrc -iuO -xev -sjP -wRt -lqS -mwk -xev -xev -pta -kJE -sIy -wRt -ngg -tKJ -qBh -wRt -qyU -iLM -tEe -wZU -aad -aad -eqU -eqU -eqU -aad -eqU -aad -abj -aad -aad -eqU -aad -dyV -dBL -dyV -aad -aaa -aaa -ajr -ajr -aad -ajr -ajr -ajr -ajr -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -uHd -aaa -pff -ihX -pWW -qSL -wQC -upr -yfl -hml -lsG -pJb -tKa -wAy -aMm -aNH -aPq -aKV -aSH -osN -lsG -pff -aZo -whb -bcT -aFm -aaa -tuZ -frV -frV -uwE -uwE -bzp -uwE -uwE -frV -frV -guL -guL -guL -guL -guL -aad -aaa -aad -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bLs -bgZ -biy -bgZ -bgZ -aaa -aad -aad -ajr -aad -aad -wZU -nIF -wRt -mrc -ojO -xev -sjP -wRt -haH -mwk -xev -xev -xev -kJE -sIy -wRt -wji -uyS -wRt -wRt -lga -qCG -tVL -wZU -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aad -dyV -dBM -dyV -aad -aad -ajr -ajr -aaa -aaa -aad -aaa -aaa -aad -aad -ajr -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -uHd -aaa -pff -nYb -rJj -adw -fiN -sgI -bbt -mST -aDT -xcp -hXT -oWK -dzF -bbt -aPr -aKV -eEX -qwA -aWk -oBn -aZo -wFe -aFm -aFm -aad -aad -frV -luH -ybi -ybi -fUR -ybi -ybi -hCK -frV -aaa -aaa -aad -aaa -aaa -aad -aaa -aad -aad -aad -aad -aad -bTl -aad -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -wZU -rbT -wRt -mrc -iuO -xev -wmw -wRt -lqS -mwk -mbc -xev -xev -kJE -sIy -wRt -rRk -lPG -uur -qBh -vQD -krH -sjP -wZU -aad -qYo -aaa -aaa -aaa -aaa -aaa -ajr -vVc -aaa -aaa -aaa -aad -qYo -nwi -aad -aad -aaa -aad -aaa -aaa -gTB -nwi -gTB -aaa -aaa -aad -aaa -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -aFm -aFm -aFm -aFm -ubH -iMR -srX -pIj -utK -urA -tKa -xxj -qOO -tju -aPs -aKV -geJ -aKV -geJ -aFm -qFn -baM -aFn -aaa -aad -aaa -tKS -jEN -iTF -gQp -qpF -gQp -iTF -xOx -tKS -aad -ajr -ajr -aad -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -aad -aad -ajr -ajr -aad -aad -wZU -xTN -wRt -qhE -ugs -jDv -ktn -wRt -sjP -hSx -bmw -wdO -wdO -jLJ -uNj -wRt -qBh -qBh -xOD -qgI -jYD -qBh -sAD -wZU -aad -ajr -qYo -aaa -aaa -aaa -aaa -ajr -vVc -aaa -aaa -aaa -aaa -aad -nwi -aad -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aFm -aFm -aKV -aKV -kqD -aKV -aKV -aKV -fxd -wpt -aNK -aPt -aKV -rjB -lsG -rjB -aFm -aZC -obu -aFn -aad -aad -aad -tKS -yhU -uCv -nja -vTE -xOf -ksr -rsa -tKS -aaa -aad -aaa -aaa -aad -aad -aaa -aad -aad -aad -aaa -aad -aad -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -wZU -xTN -wRt -wRt -wtC -icG -icG -icG -icG -icG -icG -icG -icG -icG -wjL -icG -icG -icG -icG -icG -btW -tKQ -fXp -wZU -aad -ajr -aaa -qYo -qYo -qYo -qYo -qYo -vVc -qYo -qYo -qYo -aad -aaa -nwi -aad -aad -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVc -qYo -uHd -uHd -uHd -uHd -qYo -qYo -pff -fDA -sdP -lqN -isY -vyv -aKV -pGM -tvL -nLs -iCN -aKV -aSJ -aUE -aWm -aXR -pms -xYA -aFn -aaa -aad -aaa -tKS -rLV -ybi -equ -bwc -ftP -ybi -qWD -tKS -aad -aad -ajr -ajr -ajr -aad -aad -aad -aad -aad -aad -ajr -ajr -ajr -ajr -aad -aad -aad -ajr -ajr -ajr -ajr -aad -ajr -aad -aad -ajr -aad -wZU -xTN -xTN -xTN -xTN -fYW -cmA -hOx -hOx -xTN -fez -pNu -pNu -sAD -taC -sdn -sdn -aer -sdn -sAD -yhV -sAD -yjY -wZU -aad -qYo -qYo -aaa -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aaa -aad -nwi -aad -aaa -gTB -nwi -gTB -aad -gTB -nwi -gTB -aad -gTB -nwi -gTB -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -agO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -pff -bzW -wDB -ddq -bbt -gRM -aKV -jWa -wtx -aNK -aPu -aKZ -aKZ -aKZ -aKZ -aKZ -lwI -bbn -aFm -aad -aad -aad -frV -nkf -ybi -ybi -gjC -oIN -oIN -kiw -frV -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wZU -yew -yew -yew -wZU -wZU -wZU -wZU -wZU -wZU -ifw -wZU -wZU -sqw -tqX -wZU -wZU -wZU -wZU -wZU -jpS -kIA -ury -wZU -aad -mIc -aaa -qYo -aaa -aaa -aaa -aaa -vVc -aaa -aaa -aaa -aaa -aaa -bhQ -aad -aad -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wVj -aaa -uHd -aaa -aaa -aaa -pff -fCE -jwH -pmV -lsG -uoy -aKV -wDi -plN -aNM -aPv -aKZ -aSI -aUD -aWl -aKZ -mhh -aFn -aFm -aad -aaa -aad -frV -frV -mqy -lrZ -xth -ptS -dmt -frV -frV -aad -aad -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wZU -jTf -fSE -evg -wZU -aaa -aaa -aad -aaa -wZU -iTd -oNH -jHc -fpv -tqX -aaa -aad -aaa -aaa -wZU -flF -eqQ -wbt -wZU -aad -mIc -aaa -aaa -ajr -aaa -hUm -vpk -vVc -wIU -aaa -aaa -aaa -aad -bhQ -aad -aaa -gTB -nwi -gTB -aaa -aad -nwi -aad -aaa -gTB -nwi -gTB -aaa -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -uHd -qYo -aFm -aFm -pff -pff -pff -aFm -aFm -aKZ -aKZ -aKZ -aKZ -aKZ -aSM -qJp -vHF -kEH -uHV -bbp -aFm -aFm -aFm -aad -aaa -frV -rmG -pel -mve -pel -rmG -frV -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -oNH -wZU -wZU -wZU -oNH -aad -hQZ -lFd -lFd -lFd -pmb -wZU -wZU -tmA -tBm -sip -sip -tzl -aad -oNH -pzg -uua -ijH -wWo -aad -qYo -qYo -qYo -qYo -qYo -kUH -yhJ -yhJ -nHf -aaa -aaa -eqU -qYo -bhQ -aad -aaa -aad -nwi -aad -aad -aad -bhQ -aad -aad -aad -nwi -aad -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aLa -aMq -xVh -aMr -fDa -qtR -oJS -uGw -aKZ -ydg -beq -mpy -lUe -tzj -abj -aaa -frV -cCv -ybi -xPU -ybi -uyO -frV -aad -aad -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -aad -aad -aad -aad -wZU -aaa -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aaa -wZU -uDP -tCL -gjd -sdh -aad -mIc -ajr -ajr -aaa -aaa -kUH -jwg -yhJ -vVc -vVc -vVc -vVc -abj -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -bhQ -xPP -bhQ -bhQ -nwi -nwi -wSL -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -uHd -qYo -vVc -vVc -vVc -qYo -qYo -aaa -aaa -aLa -aMr -rYX -hYG -bNM -gDw -tRX -ohW -aKZ -xYP -aFn -aFm -aKV -aFm -aad -aad -frV -mVf -uCv -beY -phx -kGC -frV -aaa -aad -aaa -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -wZU -aaa -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aaa -oNH -tCL -tCL -gjd -sdh -mIc -mIc -aaa -aaa -aaa -aaa -pCQ -xBA -vVc -ybr -aaa -aaa -ajr -aaa -aaa -aad -aaa -aad -nwi -aad -aad -aad -bhQ -aad -aad -aad -nwi -aad -aaa -aaa -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aLa -aMs -hWw -pkY -mVC -mCX -reB -fbc -aKZ -qST -bbr -bcU -aKV -aaa -aad -aaa -frV -gqN -dix -jbX -fTU -rnn -frV -aad -aad -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aad -aad -wZU -aad -kdD -cFG -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cTi -vGx -aad -wZU -tCL -pmL -xem -sdh -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vVc -aaa -aaa -qYo -ajr -ajr -aad -aad -aaa -gTB -nwi -gTB -aaa -aad -nwi -aad -aaa -gTB -nwi -gTB -aaa -ajr -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -uHd -uHd -uHd -qYo -aFo -aad -aad -aad -aKZ -aKZ -aKZ -aKZ -aKZ -aSN -vVz -aWq -aKZ -iHV -bbs -bcV -aFn -aaa -aad -aaa -frV -frV -vef -vef -vef -frV -frV -aaa -aad -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aad -wZU -aaa -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aaa -wZU -sdh -sdh -sdh -sdh -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -vVc -aaa -qYo -ajr -aaa -aaa -aaa -aad -aad -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -ajr -aaa -qYo -qYo -qYo -aaa -aKZ -aSO -ppo -xpj -aKZ -aZK -bbt -aNJ -aKV -aaa -aad -aaa -aaa -aad -aaa -aad -aaa -aad -aaa -aaa -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -wZU -aaa -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aaa -wZU -aad -ajr -aaa -qYo -aaa -qYo -aaa -aaa -aaa -aaa -qYo -ajr -vVc -ajr -qYo -aaa -aaa -aaa -aaa -ajr -aaa -gTB -nwi -gTB -aad -gTB -nwi -gTB -aad -gTB -nwi -gTB -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -qYo -ajr -ajr -ajr -aaa -aKZ -aKZ -aKZ -aKZ -aKZ -aZL -bbu -aZL -aKV -aad -ajr -ajr -ajr -aad -ajr -ajr -ajr -ajr -ajr -ajr -aad -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -oNH -aad -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aad -oNH -aad -ajr -qYo -ajr -ajr -ajr -qYo -qYo -aaa -qYo -ajr -aaa -vVc -aaa -ajr -aaa -aaa -aaa -aaa -ajr -aad -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVc -vVc -aaa -aaa -qYo -qYo -qYo -aaa -aaa -aad -aKV -aZM -aZM -bcW -aKV -aaa -aaa -aaa -aaa -aad -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mbS -aad -wZU -aaa -kdD -bnS -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -xVV -vGx -aaa -wZU -aad -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -qYo -aaa -qYo -vVc -aaa -qYo -aaa -aaa -aaa -gCX -ajr -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -gTB -nwi -gTB -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vVc -vVc -vVc -aaa -ajr -aad -aKV -xZM -bbv -xZM -aKV -aad -aad -ajr -ajr -ajr -ajr -ajr -aad -ajr -ajr -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mbS -aad -wZU -aaa -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aaa -wZU -aad -ajr -aaa -aaa -aaa -aaa -aab -aaa -qYo -mIc -aaa -aaa -vVc -aaa -qYo -aaa -aaa -aaa -gCX -ajr -aaa -aaa -aaa -aaa -aaa -gTB -nwi -gTB -aaa -aaa -aaa -aaa -aaa -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -aad -aKV -aaa -aaa -aaa -aKV -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mbS -aad -wZU -aad -eoX -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -cFF -tqX -aad -wZU -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -aaa -qhQ -vVc -qhQ -qYo -aaa -aaa -gCX -gCX -ajr -ajr -aad -ajr -ajr -aaa -aaa -aaa -aaa -aaa -ajr -aad -ajr -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aXU -aaa -aaa -aaa -aXU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -mbS -nOg -wZU -aaa -nRW -lFd -lFd -lFd -kKu -wZU -wZU -oxS -sip -sip -sip -wtA -aaa -wZU -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qYo -tKr -fsE -jqI -fsE -tKr -aaa -gCX -mbS -aaa -aaa -aaa -aaa -aaa -ajr -ajr -aad -ajr -ajr -aad -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nOg -wZU -aaa -aaa -aad -aaa -wZU -rmn -jHc -oNH -ycV -wZU -aaa -aad -aaa -aaa -wZU -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tKr -tKr -tgu -mQX -hos -tKr -tKr -gCX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bbz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -mbS -nOg -wZU -wZU -wZU -wZU -wZU -wZU -pVH -wZU -wZU -rAt -wZU -wZU -wZU -wZU -wZU -wZU -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dNn -fsE -lAw -ncv -hij -dwv -wao -fsE -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -nOg -aad -aad -aad -aad -aad -wZU -uLP -psw -vmn -eSl -wZU -aad -aad -aad -aad -aad -aad -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -fsE -pYz -rKA -rKA -rKA -xEm -fsE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajr -ajr -aaa -ajr -aad -oNH -lIP -pwR -gtA -fWe -oNH -aad -aaa -ajr -ajr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dNn -fsE -fRu -fEm -xPy -eTV -aSk -fsE -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wZU -wGS -ndr -wYe -vzu -wZU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tKr -tKr -acR -jdJ -acR -tKr -tKr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -wZU -wZU -wZU -wZU -wZU -wZU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tKr -fsE -fsE -fsE -tKr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -dNn -aaa -dNn -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aab -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/_maps/map_files/Experro/experro.dmm b/_maps/map_files/Experro/experro.dmm deleted file mode 100644 index 1fd5b6c3dfca..000000000000 --- a/_maps/map_files/Experro/experro.dmm +++ /dev/null @@ -1,134812 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/effect/mine/explosive{ - invisibility = 101 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"ab" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"ac" = ( -/obj/structure/bed, -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ad" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"af" = ( -/obj/item/trash/syndi_cakes, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"ag" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/newspaper, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"ah" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ai" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/obj/item/trash/chips, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"ak" = ( -/obj/structure/cataclysmdda/tablichka, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"am" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 7 - }, -/obj/item/reagent_containers/food/drinks/bottle/patron{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"an" = ( -/obj/structure/closet/crate/box, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aq" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ar" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"as" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/genturf, -/area/partyhard/outdoors) -"at" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"ax" = ( -/obj/structure/cataclysmdda/penek, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ay" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aA" = ( -/obj/structure/closet/cabinet, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/obj/item/ammo_box/a762, -/obj/item/clothing/under/syndicate/camo, -/obj/item/clothing/mask/balaclava/swat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aB" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aE" = ( -/obj/structure/flora/tree/cataclysmdda/iva, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"aJ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/obj/item/storage/belt/bandolier/double, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/obj/item/ammo_casing/shotgun, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aK" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/indestructible/cataclysmdda/sand - }, -/turf/closed/wall/cataclysmdda/wooden, -/area/partyhard/indoors) -"aL" = ( -/obj/effect/decal/cleanable/glass, -/obj/effect/spawner/scatter/grime, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"aM" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 2 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"aN" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 2 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aO" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"aP" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/food/shaurma, -/obj/item/food/burger/baconburger, -/obj/item/food/burger/mcguffin, -/obj/item/food/cakeslice/chocolate, -/obj/item/food/cakeslice/chocolate, -/obj/item/food/cakeslice/chocolate, -/obj/item/food/cakeslice/chocolate, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aS" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"aV" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 1 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"aY" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"aZ" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/effect/invisiblewall, -/turf/open/floor/circuit, -/area/partyhard/indoors) -"bb" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bc" = ( -/obj/structure/chair/wood/cataclysmdda, -/obj/item/trash/sosjerky, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bd" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/partyhard/indoors) -"be" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bf" = ( -/obj/item/food/grown/mushroom/amanita{ - pixel_x = -10; - pixel_y = -7; - preserved_food = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"bh" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/coin/gold, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bk" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bl" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/green, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bq" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"br" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bu" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = -2 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/magazine/m45, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bw" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bx" = ( -/obj/structure/barricade/wooden/fence, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"by" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"bz" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bA" = ( -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"bC" = ( -/obj/structure/cataclysmdda/oven, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"bD" = ( -/obj/machinery/vending/cola/pwr_game{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"bG" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"bI" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"bJ" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/newspaper, -/obj/item/reagent_containers/food/drinks/soda_cans/space_up{ - pixel_x = -11; - pixel_y = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bK" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bL" = ( -/obj/structure/bed/maint, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"bP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"bR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/partyhard/indoors) -"bU" = ( -/obj/structure/cataclysmdda/bath{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"bX" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/combat/sneakboots, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/pants/jeans, -/obj/item/clothing/neck/necklace/dope, -/obj/item/clothing/head/beret/black, -/obj/item/kitchen/knife/combat, -/obj/item/gun/ballistic/automatic/mini_uzi, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"bY" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/item/trash/boritos, -/obj/item/trash/chips, -/obj/item/trash/syndi_cakes, -/obj/item/trash/semki, -/turf/open/floor/asphalt, -/area/partyhard/indoors) -"ca" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/rice, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cb" = ( -/obj/item/food/grown/mushroom/amanita{ - pixel_x = 10; - pixel_y = 12; - preserved_food = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"cc" = ( -/obj/structure/flora/tree/cataclysmdda/yabl, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"cd" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/pack/hotsauce, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/food/spaghetti/raw, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ce" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"cf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/partyhard/indoors) -"cg" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/computer_hardware/battery, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ch" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/item/food/canned/beans, -/obj/item/food/canned/peaches, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab, -/obj/item/food/meatball, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"cj" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/storage/cans/sixbeer, -/obj/item/food/burger/baconburger, -/obj/item/food/canned/peaches, -/obj/item/food/carrotfries, -/obj/item/food/cheesewheel, -/obj/item/food/fried_chicken, -/obj/item/reagent_containers/food/condiment/milk, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cl" = ( -/obj/machinery/vending/cigarette{ - onstation = 0 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cm" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/clothing/mask/surgical, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cn" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cp" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/pants/blackjeans, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cq" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/food/pizzaslice/meat{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cs" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"cv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/melee/baseball_bat/hos/hammer, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cw" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine, -/obj/item/reagent_containers/food/drinks/bottle/sake, -/obj/item/reagent_containers/food/drinks/bottle/molotov, -/obj/item/reagent_containers/food/drinks/bottle/maltliquor, -/obj/item/reagent_containers/food/drinks/bottle/hcider, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"cx" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/partyhard/indoors) -"cB" = ( -/obj/item/trash/can/food/beans, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"cC" = ( -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/box/beanbag, -/obj/item/storage/toolbox/ammo/wt550, -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"cD" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/gun/ballistic/automatic/ak74m{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/gun/ballistic/automatic/ak74m{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/ballistic/automatic/ak74m, -/obj/item/gun/ballistic/automatic/ak74m{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/gun/ballistic/automatic/ak74m{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"cE" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"cG" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/revolver/detective, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cI" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"cL" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife/butcher, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"cM" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cO" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/item/clothing/head/papersack, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"cQ" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/toolbox/mechanical, -/obj/item/lead_pipe, -/obj/item/storage/firstaid/regular, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cT" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"cX" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"cY" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/tray, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"cZ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"da" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"dc" = ( -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"dd" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"df" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/pack/ketchup, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/food/meat/steak/plain/synth, -/obj/item/food/branrequests, -/obj/item/food/bread/meat, -/obj/item/food/cakeslice/bsvc, -/obj/item/food/fried_chicken, -/obj/item/food/grown/banana, -/obj/item/grown/snapcorn, -/obj/item/food/grown/tomato, -/obj/item/food/grown/pumpkin, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dl" = ( -/obj/item/storage/toolbox/mechanical, -/obj/effect/turf_decal/weather/side{ - dir = 9 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"do" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dp" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dq" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dw" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"dx" = ( -/obj/effect/turf_decal/delivery/white, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"dz" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dB" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"dE" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dG" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/waffles, -/obj/item/trash/boritos, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dH" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 6 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/food/fried_chicken, -/obj/item/food/pizzaslice/meat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dI" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/suit/justice, -/obj/item/clothing/accessory/pocketprotector/full, -/obj/item/clothing/glasses/heat, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/head/chameleon, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/clothing/shoes/bhop, -/obj/item/clothing/suit/armor/riot/chaplain/witchhunter, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"dJ" = ( -/obj/item/trash/semki, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"dK" = ( -/obj/effect/mine/explosive{ - invisibility = 101 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"dM" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/fedora/white, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/vending/cola/sodie{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"dR" = ( -/obj/structure/chair/sofa, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"dT" = ( -/obj/structure/chair/sofa, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"dU" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/dress/skirt/red, -/obj/item/clothing/neck/stripedredscarf, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/coin/silver, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"dZ" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/canned/beans, -/obj/item/food/canned/peaches, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"eb" = ( -/obj/effect/mine/explosive{ - invisibility = 101 - }, -/turf/open/genturf, -/area/partyhard/outdoors) -"ef" = ( -/obj/structure/closet/crate, -/obj/item/stack/ore/silver{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/stack/ore/silver, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"eg" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"eh" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/syndicate/skirt, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/gloves/color/black, -/obj/item/instrument/piano_synth/headphones, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ek" = ( -/obj/structure/cataclysmdda/bath{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"el" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/obj/machinery/door/poddoor/shutters, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"em" = ( -/obj/item/trash/can, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"er" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ - pixel_x = 2; - pixel_y = 22 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"et" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/color/jumpskirt/white, -/obj/item/clothing/under/pants/track, -/obj/item/clothing/neck/stripedgreenscarf/black, -/obj/item/food/drug/moon_rock, -/obj/item/storage/pill_bottle/labebium, -/obj/item/clothing/head/beanie/durathread, -/obj/item/food/grown/mushroom/libertycap, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ex" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ez" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/gloves/combat{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/gloves/combat{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/gloves/combat{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/gloves/combat{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/gloves/combat, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"eC" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"eE" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"eF" = ( -/obj/structure/fence/corner{ - dir = 10 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"eG" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/food/garlicbread, -/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"eH" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/fireaxe, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"eL" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"eO" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/bouquet/sunflower, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"eS" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/plate, -/obj/item/food/onionrings{ - pixel_y = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"eU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/partyhard/indoors) -"eY" = ( -/obj/structure/flora/cataclysmdda/decoration, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"fd" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"fe" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/chisel, -/obj/item/chainsaw/circular, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ff" = ( -/turf/closed/wall/cataclysmdda, -/area/partyhard/indoors) -"fg" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"fh" = ( -/obj/item/trash/can, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"fi" = ( -/obj/structure/table/wood/poker, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fk" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_containers/pill/speedrun, -/obj/item/reagent_containers/pill/speedrun, -/obj/item/reagent_containers/pill/patch/libital, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"fl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"fn" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora/det_hat, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 1 - }, -/area/partyhard/indoors) -"fr" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/crossbow/energy, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/gun/ballistic/automatic/pistol/traumatic, -/obj/item/gun/ballistic/automatic/ak47, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"fs" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/civilian/curator/skirt, -/obj/item/storage/bag/books, -/obj/item/clothing/head/beret/sec, -/obj/item/clothing/suit/armor/vest/russian_coat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ft" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"fw" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/radio/off, -/obj/item/stock_parts/cell/lead, -/obj/item/binoculars, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fx" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/suit/armor/hos/ranger, -/obj/item/clothing/suit/hooded/chaplain_hoodie, -/obj/item/clothing/under/suit/checkered, -/obj/item/clothing/head/fedora, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/frenchberet, -/obj/item/storage/belt/holster/detective/full, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"fz" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/glasses/sunglasses/reagent, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/suit/jacket/leather/overcoat, -/obj/item/clothing/suit/jacket/puffer, -/obj/item/clothing/under/color/jumpskirt/grey, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fA" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/chips, -/obj/item/trash/cheesie, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fC" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"fD" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/storage/backpack/satchel/leather/withwallet, -/obj/item/toy/figure/clown{ - pixel_x = 6; - pixel_y = 16 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fH" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fI" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"fK" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"fN" = ( -/obj/structure/fence/door, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"fO" = ( -/obj/item/trash/popcorn, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"fP" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/pizzabox/meat, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fQ" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fR" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"fU" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"fW" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/c9mm{ - pixel_y = 10 - }, -/obj/item/ammo_box/c9mm{ - pixel_y = 10 - }, -/obj/item/ammo_box/c9mm{ - pixel_y = 10 - }, -/obj/item/ammo_box/c9mm{ - pixel_y = 10 - }, -/obj/item/ammo_box/c9mm{ - pixel_y = 10 - }, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c10mm, -/obj/item/ammo_box/c45{ - pixel_y = -10 - }, -/obj/item/ammo_box/c45{ - pixel_y = -10 - }, -/obj/item/ammo_box/c45{ - pixel_y = -10 - }, -/obj/item/ammo_box/c45{ - pixel_y = -10 - }, -/obj/item/ammo_box/c45{ - pixel_y = -10 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"fX" = ( -/obj/structure/cataclysmdda/bath{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"fY" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/trophy/silver_cup, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"fZ" = ( -/obj/structure/fence/door, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ga" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"gd" = ( -/obj/effect/decal/cleanable/vomit/old, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gf" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"gg" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/structure/window/reinforced, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gh" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"gk" = ( -/obj/structure/closet/crate, -/obj/item/claymore/weak, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gl" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gm" = ( -/obj/structure/flora/tree/cataclysmdda/dub, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"gn" = ( -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gp" = ( -/obj/structure/chair/sofa/left, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"gq" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/structure/rack/cataclysmdda/metal, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"gr" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gs" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gw" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/under/rank/omon/green/skirt, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/gloves/color/plasmaman/black, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gA" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/pizzaslice/moldy, -/obj/item/food/badrecipe/moldy, -/obj/item/food/breadslice/moldy, -/obj/item/food/meat/slab/human/mutant/zombie, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gB" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 4 - }, -/obj/item/food/spaghetti/raw, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"gC" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"gD" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gE" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"gF" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"gH" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/c38{ - pixel_x = -10; - pixel_y = -5 - }, -/obj/item/ammo_box/c38{ - pixel_x = -10 - }, -/obj/item/ammo_box/c38{ - pixel_x = -10; - pixel_y = 5 - }, -/obj/item/ammo_box/c38{ - pixel_x = -10; - pixel_y = 10 - }, -/obj/item/ammo_box/c38/dumdum, -/obj/item/ammo_box/c38/dumdum, -/obj/item/ammo_box/c38/dumdum, -/obj/item/ammo_box/a357{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ammo_box/a357{ - pixel_x = 5; - pixel_y = -10 - }, -/obj/item/ammo_box/a357{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/ammo_box/a357{ - pixel_x = 5 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"gJ" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt{ - pixel_x = 2; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gK" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"gM" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/storage/photo_album, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gO" = ( -/obj/item/clothing/head/helmet/riot{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gP" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gR" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/military/army, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gT" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"gU" = ( -/obj/structure/chair/sofa/corner, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"gV" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/clothing/mask/balaclava/swat, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"gZ" = ( -/obj/structure/fence/corner{ - dir = 5 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ha" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/belt/military/assault, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hb" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hc" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hd" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"he" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"hi" = ( -/turf/closed/indestructible/opshuttle, -/area/partyhard/indoors) -"hj" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp/green{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/storage/briefcase/lawyer, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hl" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hm" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"ho" = ( -/obj/structure/chair/wood/cataclysmdda, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"hq" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"hr" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/pipe_painter, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"hs" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ht" = ( -/obj/structure/dresser, -/obj/item/stock_parts/cell/lead{ - pixel_x = 3; - pixel_y = 10 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"hu" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/structure/rospilovo/televizor{ - pixel_y = 10 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hv" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"hw" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"hy" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"hB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"hE" = ( -/obj/item/clothing/suit/armor/riot{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"hF" = ( -/obj/structure/filingcabinet/medical, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"hG" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/pen, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/partyhard/indoors) -"hI" = ( -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"hL" = ( -/obj/structure/flora/cataclysmdda/decoration/nature/wheat, -/obj/structure/flora/cataclysmdda/decoration/nature/wheat, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"hM" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"hO" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/beanie/red, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hP" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"hQ" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"hV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"hW" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"hZ" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ia" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/revolver/mateba, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ib" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/soap/homemade, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"id" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/bandolier/double, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ie" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/columbine, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"if" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/accessory/pocketprotector/full, -/obj/item/clothing/glasses/regular/hipster, -/obj/item/clothing/under/pants/mustangjeans, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/gloves, -/obj/item/clothing/suit/yakuza, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ig" = ( -/obj/structure/flora/tree/cataclysmdda/el/small, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ih" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"ii" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"ik" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"il" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"im" = ( -/obj/structure/grille/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"in" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"is" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/blacksmith/smithing_hammer, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"iw" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"ix" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"iy" = ( -/obj/structure/trash_pile, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"iz" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/pack/bbqsauce, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"iA" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/bread/plain, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"iB" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"iC" = ( -/obj/structure/rospilovo/pech, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"iD" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/food/canned/beans, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"iE" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/chips, -/obj/item/trash/popcorn, -/obj/item/trash/semki, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"iF" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"iG" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"iH" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "drochanus" - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"iI" = ( -/obj/item/trash/waffles, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"iJ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_x = -8; - pixel_y = -5 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"iL" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/microwave{ - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"iN" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"iO" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"iR" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/obj/machinery/light/small, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"iS" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"iT" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife/butcher, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"iU" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"iW" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"iZ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/suppressed, -/obj/item/ammo_box/c9mm, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jb" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"jc" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"jd" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"je" = ( -/obj/machinery/washing_machine, -/obj/item/clothing/neck/necklace/dope/merchant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"jf" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/belt/military/army, -/obj/item/storage/belt/bandolier, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jh" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"jj" = ( -/obj/structure/rack/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 4 - }, -/area/partyhard/indoors) -"jk" = ( -/obj/effect/spawner/lootdrop/cigbutt, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"jl" = ( -/turf/closed/wall/r_wall, -/area/partyhard/indoors) -"jo" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"jp" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"jr" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"js" = ( -/obj/structure/chair/office, -/obj/structure/chair/office, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"jx" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/pill_bottle/zvezdochka, -/obj/item/stack/medical/gauze{ - pixel_x = -5; - pixel_y = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"jA" = ( -/obj/structure/chair/sofa, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"jB" = ( -/obj/structure/dresser, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"jE" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/turf/open/floor/light/colour_cycle, -/area/partyhard/indoors) -"jF" = ( -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/rack, -/obj/effect/turf_decal/delivery, -/obj/item/storage/box/teargas, -/obj/item/storage/box/teargas, -/obj/item/storage/box/teargas, -/obj/item/gun/grenadelauncher, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"jG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"jH" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jJ" = ( -/obj/structure/chair/sofa/corp{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jL" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/item/lead_pipe, -/turf/open/water/cataclysmdda, -/area/partyhard/indoors) -"jM" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/popcorn, -/obj/item/trash/syndi_cakes, -/obj/item/trash/raisins, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"jN" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"jV" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"jW" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/stack/sheet/mineral/silver, -/obj/item/weaponcrafting/receiver, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"jX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/reagent_containers/glass/maunamug{ - pixel_x = -3; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"ka" = ( -/obj/structure/chair/wood/cataclysmdda, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"kd" = ( -/obj/structure/closet/cabinet, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/rank/captain/suit/skirt, -/obj/item/clothing/under/rank/civilian/lawyer/bluesuit/skirt, -/obj/item/clothing/under/color/random, -/obj/item/clothing/suit/jacket/leather, -/obj/item/clothing/suit/toggle/labcoat, -/obj/item/clothing/glasses/regular, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ke" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/machinery/microwave, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"kf" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"kg" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kh" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/c10mm, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ki" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kj" = ( -/obj/effect/decal/cleanable/ants, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"kk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"kl" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/southright, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = -5 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"km" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/structure/cataclysmdda/kitchencloset, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kn" = ( -/obj/item/clothing/suit/caution, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"ko" = ( -/obj/structure/cataclysmdda/bath/another{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"kp" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"kq" = ( -/obj/structure/railing/corner, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"kr" = ( -/obj/machinery/button/door{ - id = "vorotadva"; - pixel_y = 27 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"kt" = ( -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/light/colour_cycle/dancefloor_b, -/area/partyhard/indoors) -"ku" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"kw" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kx" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/effect/mob_spawn/human/skeleton, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ky" = ( -/obj/structure/fence/corner{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"kB" = ( -/obj/structure/chair/sofa/corp, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kC" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/c45, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kD" = ( -/obj/machinery/door/airlock/hatch{ - name = "Military Outpost" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kG" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"kH" = ( -/obj/machinery/door/window, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"kI" = ( -/obj/structure/window, -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"kN" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kO" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/storage/backpack/satchel/sec, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/obj/item/reagent_containers/spray/pepper, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"kQ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/effect/turf_decal/weather/side, -/obj/item/storage/pill_bottle/stimulant, -/obj/item/storage/pill_bottle/multiver/less{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"kR" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"kS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"kT" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/water/cataclysmdda, -/area/partyhard/indoors) -"kW" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"kY" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/ushanka, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lb" = ( -/obj/structure/urinal{ - dir = 8; - pixel_x = 32; - pixel_y = 3 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"lc" = ( -/obj/structure/safe, -/obj/item/documents/nanotrasen, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lf" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"lh" = ( -/obj/structure/fence, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"ll" = ( -/obj/structure/closet/cabinet, -/obj/item/flashlight/seclite, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/magistrate, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/red, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/head/beanie/cyan, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lm" = ( -/turf/closed/wall/cataclysmdda/redbrick, -/area/partyhard/outdoors) -"ln" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/blue, -/obj/item/clothing/head/beanie/rasta, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/instrument/piano_synth/headphones, -/obj/item/clothing/head/soft/yellow, -/obj/item/binoculars, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"lo" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/popcorn, -/obj/item/trash/semki, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lp" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lq" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/partyhard/indoors) -"lt" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/meat/steak/chicken, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"lu" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/toy/talking, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"lv" = ( -/obj/item/gun/ballistic/automatic/pistol/deagle/gold, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lw" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/item/radio/off, -/obj/item/storage/photo_album, -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"ly" = ( -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"lA" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lB" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/backpack/satchel, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"lD" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/box/gum/happiness, -/obj/item/food/popcorn{ - pixel_y = 10 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lE" = ( -/obj/structure/sink{ - pixel_x = 1; - pixel_y = 15 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"lJ" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/coin/silver, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lL" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lN" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/night, -/obj/item/gun/ballistic/automatic/asval, -/obj/item/radio/off, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"lO" = ( -/obj/structure/cataclysmdda/bath/another{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"lP" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"lQ" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lR" = ( -/obj/machinery/vending/snack/teal{ - onstation = 0 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"lS" = ( -/obj/structure/trash_pile, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"lU" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/mug, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"lW" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"lY" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/kebab/monkey, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"lZ" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ma" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"mb" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"mc" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"me" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"mi" = ( -/obj/structure/flora/cataclysmdda/decoration/nature/wheat, -/obj/effect/landmark/latejoin, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"mk" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/structure/rospilovo/radio, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ml" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/light/colour_cycle/dancefloor_b, -/area/partyhard/indoors) -"mm" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/suit/jacket{ - desc = "This looks awfully familiar..."; - icon_state = "curator" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket/leather/overcoat, -/obj/item/clothing/suit/jacket/leather, -/obj/item/clothing/suit/jacket/letterman_red, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket/puffer, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/suit/cheongsam_red, -/obj/item/clothing/suit/cheongsam_blue, -/obj/item/clothing/suit/chaplainsuit/studentuni, -/obj/item/clothing/suit/cowl/robe, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/suit/hooded/wintercoat/cargo, -/obj/item/clothing/suit/hooded/wintercoat/hydro, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/medical, -/obj/item/clothing/suit/hooded/wintercoat/security, -/obj/item/clothing/suit/ianshirt, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"mn" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/microwave{ - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"mp" = ( -/obj/machinery/light, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mq" = ( -/obj/structure/table/wood, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mr" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"mv" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/gun/ballistic/shotgun/automatic/fallout/battle/sks/scoped, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mw" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"mx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"mz" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"mD" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/revolver/nagant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mE" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"mF" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/suit/armor/vest, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mG" = ( -/obj/item/trash/raisins, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"mJ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/stack/medical/gauze/improvised, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mL" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/bikehorn/golden, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mM" = ( -/obj/structure/chair/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"mN" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/automatic/mini_uzi, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"mP" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"mS" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"mT" = ( -/obj/structure/dresser, -/obj/item/lipstick/random, -/obj/item/lipstick/random{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mU" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"mY" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"mZ" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"na" = ( -/obj/machinery/button/door{ - id = "huisosal"; - pixel_y = 27 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ng" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"nh" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/checker, -/area/partyhard/indoors) -"nk" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/grown/rose{ - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nl" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nn" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/vest/blueshirt, -/obj/item/clothing/suit/armor/bulletproof, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"np" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/gun/ballistic/automatic/wt550{ - pixel_y = -8 - }, -/obj/item/gun/ballistic/automatic/wt550{ - pixel_y = -4 - }, -/obj/item/gun/ballistic/automatic/wt550{ - pixel_y = 8 - }, -/obj/item/gun/ballistic/automatic/wt550{ - pixel_y = 4 - }, -/obj/item/gun/ballistic/automatic/wt550, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"nr" = ( -/turf/closed/indestructible/fakedoor, -/area/partyhard/indoors) -"nt" = ( -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"nu" = ( -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"nv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/partyhard/indoors) -"nx" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ny" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/stack/sheet/mineral/silver, -/obj/item/stack/sheet/mineral/gold{ - pixel_x = 1; - pixel_y = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"nz" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 1 - }, -/area/partyhard/indoors) -"nB" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/trophy/silver_cup, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"nC" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nD" = ( -/obj/item/clothing/head/cone, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"nF" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"nG" = ( -/obj/structure/chair/sofa/corp{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"nI" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"nJ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "City"; - width = 5 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"nK" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"nL" = ( -/obj/structure/bed, -/obj/item/bedsheet/black, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nN" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/fancy/cigarettes/cigpack_robust{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/lighter, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nO" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"nP" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nQ" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"nT" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"nU" = ( -/obj/structure/trash_pile, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"nV" = ( -/obj/effect/mine/explosive, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nW" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"nX" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "huisosal" - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"nY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"nZ" = ( -/obj/structure/curtain/cataclysmdda/alt, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oa" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ob" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/shield/riot{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/shield/riot{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/shield/riot{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"oc" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/belt/utility, -/obj/item/flashlight/seclite, -/obj/item/radio, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 2 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"oe" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/maltliquor, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"og" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/book/bible, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oh" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/structure/mirror{ - pixel_y = -29 - }, -/obj/item/lipstick/random{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/lipstick/random, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oi" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/obj/structure/barricade/wooden/crude{ - layer = 4; - opacity = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ok" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"om" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"on" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/mug/coco, -/obj/item/food/cookie/oatmeal{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oo" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/bottle/wine{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"os" = ( -/obj/structure/flora/tree/cataclysmdda/el, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ot" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"ov" = ( -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"ow" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/plastic, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ox" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lantern, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oy" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oE" = ( -/obj/structure/window/fulltile, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"oF" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"oI" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"oM" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oN" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool/tricorder, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oO" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"oQ" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oR" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/folder/white, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oT" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oV" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oW" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/collectable/hop{ - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"oX" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"oY" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/item/food/popcorn, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"pa" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/stewedsoymeat, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"pd" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/mask/gas/germanalt, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"pf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"pg" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ph" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/automatic/pistol/deagle, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"pi" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/backpack/duffelbag, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"pk" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/condiment/soymilk{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"po" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/flashlight/seclite, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"pq" = ( -/turf/open/floor/plasteel/dark/side, -/area/partyhard/indoors) -"ps" = ( -/obj/machinery/vending/chetverochka{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"pt" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/folder/blue, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pv" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"pw" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/stack/ore/gold, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"py" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/bottle/molotov, -/obj/item/lighter/greyscale, -/obj/item/reagent_containers/food/drinks/bottle/molotov{ - pixel_x = 6 - }, -/obj/item/reagent_containers/food/drinks/bottle/molotov{ - pixel_x = -6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/obj/item/kitchen/knife, -/obj/item/kitchen/knife, -/obj/item/kitchen/knife, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/spoon, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"pC" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pD" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pE" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/rice, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"pF" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pG" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"pI" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/rank/security/detective/grey/skirt, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/arbiter, -/obj/item/clothing/glasses/geist_gazers, -/obj/item/gun/ballistic/automatic/pistol/aps, -/obj/item/ammo_box/magazine/m9mm_aps, -/obj/item/ammo_box/magazine/m9mm_aps, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pJ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pN" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/cowboy, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/under/suit/checkered, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/dress/skirt/red, -/obj/item/clothing/under/dress/skirt, -/obj/item/clothing/head/beanie/darkblue, -/obj/item/clothing/head/beanie/red, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/suit/ianshirt, -/obj/item/melee/baseball_bat/ablative, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pO" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"pP" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"pT" = ( -/obj/item/newspaper/old, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"pU" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/lighter{ - pixel_x = 11; - pixel_y = -7 - }, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pV" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/bag/books, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pW" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pY" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"pZ" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"qb" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"qc" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/britcup, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qd" = ( -/obj/machinery/vending/snack/blue{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"qf" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/folder, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qg" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"qj" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/accessory/medal/gold/heroism, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"qn" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/stack/sheet/mineral/silver, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"qo" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/blacksmith/ingot, -/obj/item/weaponcrafting/stock, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"qq" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_y = 15 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qs" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/obj/item/trash/plate, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"qt" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/food/beef_stroganoff, -/obj/item/food/soup/vegetable, -/obj/item/food/soup/vegetable, -/obj/item/food/stewedsoymeat, -/obj/item/reagent_containers/food/drinks/bottle/gin, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"qu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qv" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/syndicate/camo, -/obj/item/clothing/suit/jacket/leather, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/mask/bandana/black, -/obj/item/gun/ballistic/automatic/pistol, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/switchblade, -/obj/item/clothing/mask/balaclava/swat, -/obj/item/storage/belt/fannypack, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qw" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/box/gum, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qy" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"qE" = ( -/obj/structure/closet, -/obj/item/clothing/head/helmet/blueshirt, -/obj/item/grenade/c4, -/obj/item/radio/off, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"qG" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"qI" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/item/cellphone, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"qJ" = ( -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"qL" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"qM" = ( -/obj/structure/fence/end{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"qN" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/stock_parts/cell/emergency_light, -/obj/item/stock_parts/cell/lead, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qP" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/breadslice/moldy, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 8 - }, -/area/partyhard/indoors) -"qQ" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"qR" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/burger, -/obj/item/food/cubannachos, -/obj/item/food/grown/apple, -/obj/item/food/grown/banana, -/obj/item/food/grown/banana, -/obj/item/food/grown/citrus/orange, -/obj/item/food/meat/slab/pig, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/food/meatball/chicken, -/obj/item/food/american_sausage, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qS" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant{ - pixel_x = -5 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"qU" = ( -/obj/structure/cataclysmdda/bassboost, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"qW" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/jacket/puffer/vest, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qX" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/food/spaghetti/raw, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"qY" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"qZ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/structure/flora/cataclysmdda/decoration/houseplant{ - pixel_x = 7; - pixel_y = 15 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ra" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rd" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/white, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/under/switer/dark, -/obj/item/clothing/under/switer/tracksuit, -/obj/item/clothing/head/soft/black/columbine, -/obj/item/clothing/gloves/fingerless, -/obj/item/clothing/under/misc/vice_officer, -/obj/item/clothing/glasses/red{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rf" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/screwdriver/power, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ri" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"rj" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/landmark/start, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rl" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/gloves, -/obj/item/storage/box/masks, -/obj/item/storage/box/rxglasses, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"rm" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"rn" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"ro" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/effect/decal/cleanable/cum, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"rq" = ( -/obj/machinery/grill, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"rs" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/microwave, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ru" = ( -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rw" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"rx" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/clothing/glasses/night, -/obj/item/radio/off, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"ry" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/item/kitchen/knife/shiv, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"rB" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"rE" = ( -/obj/machinery/vending/sovietsoda{ - onstation = 0 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"rG" = ( -/obj/structure/bookcase/random, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rH" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"rI" = ( -/obj/structure/flora/tree/cataclysmdda/topol, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"rJ" = ( -/obj/structure/flora/cataclysmdda/decoration/nature/wheat, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"rM" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/effect/landmark/latejoin, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"rN" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"rO" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/belt/utility, -/obj/item/tank/internals/oxygen/yellow, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rP" = ( -/obj/machinery/vending/drugs{ - req_access = null - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"rQ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/storage/briefcase, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rR" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/structure/window{ - dir = 8 - }, -/obj/item/suppressor/specialoffer, -/obj/item/suppressor/specialoffer{ - pixel_y = 4 - }, -/obj/item/suppressor/specialoffer{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"rS" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/cataclysmdda, -/area/partyhard/indoors) -"rT" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 8 - }, -/area/partyhard/indoors) -"rU" = ( -/obj/structure/flora/tree/cataclysmdda/el, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"rW" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"rX" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"rY" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"rZ" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/food/bread/banana, -/obj/item/food/burger/chicken, -/obj/item/food/jellysandwich/cherry, -/obj/item/reagent_containers/food/drinks/ale, -/obj/item/food/soup/vegetable, -/obj/item/food/burrito, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"sb" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/utility/full/engi, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"sc" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/book/manual/wiki/detective, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"se" = ( -/obj/structure/curtain/cataclysmdda, -/obj/machinery/door/window{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"sg" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/toolbox/emergency, -/obj/item/reagent_containers/glass/bottle/welding_fuel, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"sh" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/item/ammo_box/c9mm, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"sj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"sk" = ( -/obj/structure/flora/cataclysmdda/decoration, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"sl" = ( -/obj/item/trash/can/food/beans, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"sm" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/spray/pepper, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"so" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"sq" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/stock_parts/cell/lead, -/obj/item/storage/bag/trash/cyborg, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"st" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"sv" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"sw" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/turf/open/floor/light/colour_cycle/dancefloor_b, -/area/partyhard/indoors) -"sx" = ( -/obj/machinery/vending/security{ - onstation = 0; - req_access = null - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"sy" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"sB" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"sD" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"sE" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/effect/turf_decal/dust, -/obj/item/storage/toolbox/ammo, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"sG" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/bottle/cognac, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"sI" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"sJ" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"sL" = ( -/obj/effect/turf_decal/weather/side/corner, -/obj/effect/decal/cleanable/poo, -/turf/open/water/cataclysmdda, -/area/partyhard/indoors) -"sM" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"sN" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"sO" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"sP" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"sQ" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"sS" = ( -/turf/open/genturf, -/area/partyhard/outdoors) -"sW" = ( -/obj/machinery/vending/cola/starkist{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"sZ" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tb" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/razor, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tc" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/military, -/obj/item/storage/belt/bandolier, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"te" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"tg" = ( -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"tk" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/can, -/obj/item/trash/chips, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"tl" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "vorotadva" - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"tn" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses/garb{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tp" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/shotgun/spas12, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/gun/ballistic/automatic/pistol/makarov, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"tq" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/structure/trash_pile, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ts" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/wood/parquet, -/area/partyhard/outdoors) -"tt" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_casing/a40mm/vog25, -/obj/item/ammo_casing/a40mm/vog25, -/obj/item/ammo_casing/a40mm/vog25, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/asval, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/ak74m, -/obj/item/ammo_box/magazine/m75, -/obj/item/ammo_box/magazine/m75, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"tv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"tz" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tB" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/gun/ballistic/automatic/ak74m/gp25, -/obj/item/radio/off, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"tC" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tE" = ( -/obj/structure/closet/crate/box, -/obj/item/chisel, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tF" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"tH" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/partyhard/indoors) -"tI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tJ" = ( -/obj/effect/turf_decal/cataclysmdda/asphaltpaint, -/obj/item/newspaper/old, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"tK" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"tL" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/weldingtool/hugetank, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"tM" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/paper_bin, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tN" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"tQ" = ( -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tR" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 1 - }, -/area/partyhard/indoors) -"tU" = ( -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 1 - }, -/area/partyhard/indoors) -"tV" = ( -/obj/structure/chair/comfy/beige{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/friedegg, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"tY" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"tZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side, -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ua" = ( -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ub" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"ud" = ( -/obj/machinery/vending/chetverochka/pharma, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ue" = ( -/obj/structure/closet/cabinet, -/obj/item/storage/backpack/satchel/flat, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"uf" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/taperecorder{ - pixel_x = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ug" = ( -/obj/structure/chair/wood/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"uh" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/wrench, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ui" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/beanie, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"uj" = ( -/obj/effect/spawner/lootdrop/garbage_spawner, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"uk" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"um" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"un" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/clothing/mask/gas/welding, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"uo" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/storage/firstaid/emergency, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"uq" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"us" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"uu" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"uv" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"uw" = ( -/obj/effect/turf_decal/stripes{ - dir = 1 - }, -/obj/structure/curtain/red, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"ux" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/under/color/grey{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/clothing/under/switer/tracksuit, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"uy" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"uA" = ( -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"uB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"uC" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"uD" = ( -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"uE" = ( -/obj/structure/barricade/wooden/fence{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"uG" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"uH" = ( -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"uL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"uM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"uN" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/ammo_box/magazine/m45, -/obj/item/ammo_box/magazine/m45, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"uP" = ( -/obj/machinery/porta_turret/syndicate/shuttle, -/turf/open/floor/engine/hull/oxy, -/area/partyhard/outdoors) -"uQ" = ( -/obj/structure/rospilovo/tree/leafless, -/obj/structure/railing, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"uR" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate/camo, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"uS" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = 7; - pixel_y = 13 - }, -/obj/structure/flora/cataclysmdda/decoration/houseplant{ - pixel_x = -6; - pixel_y = 20 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"uT" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"uU" = ( -/obj/structure/fence/door/cataclysmdda/wooden{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"uW" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance/five, -/obj/item/trash/candy, -/obj/item/trash/syndi_cakes, -/obj/item/trash/candy, -/obj/item/book/granter/crafting_recipe/cookbook, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"uX" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -13; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"va" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/food/canned/beans, -/obj/item/storage/box/donkpockets/donkpocketpizza{ - pixel_x = 9; - pixel_y = 13 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/food/spaghetti/raw, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vb" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ve" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"vf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"vg" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/folder, -/obj/item/clothing/mask/cigarette/pipe/cobpipe, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vh" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/cheesie, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"vi" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/kitchen/knife, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"vj" = ( -/obj/structure/bed, -/obj/item/bedsheet/grey, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vk" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/popcorn, -/obj/item/trash/syndi_cakes, -/obj/item/trash/sosjerky, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"vl" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"vm" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"vn" = ( -/obj/structure/flora/tree/cataclysmdda/oreh, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"vp" = ( -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"vr" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/microwave{ - pixel_y = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vt" = ( -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 8 - }, -/area/partyhard/indoors) -"vu" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"vw" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"vx" = ( -/obj/structure/rospilovo/tree, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"vy" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/paicard, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vz" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/multiver, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"vA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/accessory/pocketprotector, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"vB" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"vC" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/item/reagent_containers/food/drinks/bottle/blazaam, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/food/salad/ricepork, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"vD" = ( -/obj/structure/flora/tree/cataclysmdda/dub, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"vE" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 10 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"vF" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vG" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/clothing/shoes/combat, -/obj/item/storage/belt/military, -/obj/item/clothing/mask/balaclava/swat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vJ" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/storage/crayons, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"vK" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vO" = ( -/obj/item/trash/bee, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"vQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"vR" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"vS" = ( -/obj/machinery/light, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vU" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vV" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/flour, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"vW" = ( -/obj/structure/flora/tree/cataclysmdda/yabl, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"vZ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/folder/yellow, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wa" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/outdoors) -"wb" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"we" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"wh" = ( -/obj/structure/frame/computer{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"wi" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wn" = ( -/obj/structure/closet/crate/box, -/obj/item/grenade/frag, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wo" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wq" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/plaguedoctorhat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wr" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"ws" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"wv" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"ww" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wx" = ( -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wy" = ( -/obj/structure/flora/tree/cataclysmdda/sosna, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"wz" = ( -/obj/item/trash/cheesie, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"wA" = ( -/obj/structure/dresser, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"wB" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"wC" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/toy/eightball/haunted, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wE" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/reagent_containers/food/condiment/peppermill, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"wG" = ( -/obj/structure/frame/computer, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"wI" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/color/random, -/obj/item/clothing/suit/toggle/brown_jacket, -/obj/item/storage/book/bible, -/obj/item/clothing/suit/det_suit/noir, -/obj/item/clothing/glasses/sunglasses/gar, -/obj/item/storage/belt/fannypack, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wK" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wM" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife, -/obj/item/kitchen/spoon, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wO" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m10mm/ap, -/obj/item/ammo_box/magazine/m10mm/ap, -/obj/item/ammo_box/magazine/m10mm/hp, -/obj/item/ammo_box/magazine/m10mm/hp, -/obj/item/ammo_box/magazine/m10mm, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/item/ammo_box/magazine/m45{ - pixel_x = 9 - }, -/obj/structure/window{ - dir = 8 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps/ap{ - pixel_y = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps/ap{ - pixel_y = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps/ap{ - pixel_y = -3 - }, -/obj/item/ammo_box/magazine/m9mm_aps/ap{ - pixel_y = -3 - }, -/obj/item/ammo_box/magazine/m10mm/rifle, -/obj/item/ammo_box/magazine/m10mm/rifle, -/obj/item/ammo_box/magazine/m10mm/rifle, -/obj/item/ammo_box/magazine/m10mm/rifle, -/obj/item/ammo_box/magazine/m10mm/rifle, -/obj/item/ammo_box/magazine/m10mm/rifle, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"wP" = ( -/obj/structure/fence/corner{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"wQ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/obj/item/trash/plate{ - pixel_y = 7 - }, -/obj/item/trash/plate{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"wU" = ( -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"wV" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/canned/peaches, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/food/meat/rawcutlet, -/obj/item/food/meat/rawcutlet, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab, -/obj/item/food/meatball, -/obj/item/food/meatball, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"wW" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/clothing/under/syndicate/camo, -/obj/item/clothing/gloves/combat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"wZ" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/semki, -/obj/item/trash/chips, -/obj/item/trash/cheesie, -/obj/item/trash/syndi_cakes, -/obj/effect/spawner/lootdrop/garbage_spawner, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xd" = ( -/obj/item/mail/junkmail, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"xg" = ( -/obj/structure/table/reinforced, -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/handcuffs, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"xh" = ( -/obj/structure/fence/end{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"xi" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"xj" = ( -/obj/effect/mine/explosive{ - invisibility = 101 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"xl" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/indestructible/cataclysmdda/sand - }, -/turf/closed/wall/cataclysmdda, -/area/partyhard/indoors) -"xm" = ( -/obj/structure/sink/kitchen/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xp" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/item/trash/chips, -/obj/item/trash/candy, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"xq" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/grown/tea, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"xs" = ( -/obj/structure/cataclysmdda/bath, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xt" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"xw" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"xx" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"xy" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"xz" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/clothing/mask/vape, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"xA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"xD" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/mask/cigarette/pipe/cobpipe, -/obj/item/phone{ - pixel_x = 9; - pixel_y = 9 - }, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"xE" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/book/fish_catalog, -/obj/item/storage/photo_album, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"xF" = ( -/obj/structure/closet/crate/box, -/obj/item/instrument/guitar, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"xG" = ( -/obj/structure/filingcabinet/cataclysmdda, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"xH" = ( -/obj/structure/closet/crate/bin, -/obj/item/newspaper/old, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"xI" = ( -/obj/structure/closet/cabinet, -/obj/item/kitchen/knife/combat, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/dress/sailor, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/gloves/color/plasmaman/black, -/obj/item/clothing/head/beret/black, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/suit/jacket/puffer, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/head/beanie/green, -/obj/item/clothing/head/bearpelt, -/obj/item/clothing/head/lizard, -/obj/item/clothing/glasses/orange, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"xJ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/modular_computer/laptop/preset/medical{ - pixel_y = 6 - }, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"xK" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/lipstick/jade, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 6 - }, -/area/partyhard/indoors) -"xN" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xO" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/drinks/bottle, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xP" = ( -/obj/item/trash/syndi_cakes, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"xT" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"xV" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"xX" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/drinks/bottle/patron, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"xY" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/item/storage/backpack/satchel/sec, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/obj/item/reagent_containers/spray/pepper, -/obj/item/flashlight/seclite, -/obj/item/clothing/glasses/hud/spacecop, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ya" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"yb" = ( -/obj/structure/chair/sofa{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yc" = ( -/obj/structure/flora/cataclysmdda/decoration, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"yd" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/item/instrument/piano_synth/headphones/spacepods, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yf" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yh" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yi" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"yj" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"yk" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"yl" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yn" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"yo" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"yp" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/security/webbing{ - pixel_x = 7; - pixel_y = -7 - }, -/obj/item/storage/belt/security/webbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/belt/security/webbing, -/obj/item/storage/belt/security/webbing{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/belt/security/webbing{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"yq" = ( -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"yr" = ( -/obj/structure/closet/crate/box, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/storage/toolbox/ammo, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"ys" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"yu" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yv" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yw" = ( -/obj/structure/barricade/wooden/fence{ - dir = 1; - pixel_x = -2 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"yy" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt3, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"yz" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yB" = ( -/obj/structure/table/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yC" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"yE" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"yI" = ( -/obj/structure/closet/pcloset, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/neck/stripedgreenscarf/grey, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/gloves/color/black, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yJ" = ( -/obj/structure/frame/computer{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"yK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/gun/ballistic/automatic/gyropistol, -/obj/item/ammo_box/magazine/m75, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"yL" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"yM" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 6 - }, -/area/partyhard/indoors) -"yN" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"yP" = ( -/obj/item/trash/bee, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"yR" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/suit/jacket/puffer/vest, -/obj/item/clothing/neck/stripedgreenscarf, -/obj/item/clothing/head/ushanka, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"yS" = ( -/obj/structure/rack/cataclysmdda, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"yT" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"yV" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"yW" = ( -/obj/structure/mirror{ - pixel_x = -27 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/britcup, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"yY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"yZ" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"za" = ( -/obj/machinery/washing_machine, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zb" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zd" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"ze" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/boombox, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zg" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zi" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/can, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"zl" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/suit/armor/opvest/spetsnaz, -/obj/item/grenade/c4, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"zm" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zo" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zq" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zr" = ( -/obj/structure/closet/pcloset, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/charcoal, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/glasses/monocle, -/obj/item/clothing/under/pants/khaki, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/det_suit/grey, -/obj/item/clothing/suit/hooded/chaplain_hoodie, -/obj/item/cane, -/obj/item/gun/ballistic/revolver, -/obj/item/ammo_box/a357, -/obj/item/ammo_box/a357, -/obj/item/ammo_box/a357, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 4 - }, -/area/partyhard/indoors) -"zs" = ( -/obj/structure/chair/wood/cataclysmdda, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"zt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"zu" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zx" = ( -/obj/structure/flora/tree/cataclysmdda/mt, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"zy" = ( -/obj/structure/toilet{ - pixel_y = 14 - }, -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"zA" = ( -/obj/effect/turf_decal/weather/side{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"zB" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/food/shaurma, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zD" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/kitchen/fork, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zE" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/soup/meatball, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zF" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/vest/leather/noname, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zH" = ( -/obj/structure/cataclysmdda/bassboost, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zI" = ( -/obj/structure/cataclysmdda/bassboost, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zK" = ( -/obj/structure/cataclysmdda/bath/another{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"zL" = ( -/obj/structure/fence/door, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"zM" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/flora/tree/cataclysmdda/kedr, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"zO" = ( -/obj/machinery/vending/games, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zP" = ( -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"zR" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/genturf, -/area/partyhard/outdoors) -"zU" = ( -/obj/machinery/vending/autodrobe/all_access{ - onstation = 0 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"zW" = ( -/obj/structure/cataclysmdda/kitchencloset, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"zX" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/flashlight, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"zY" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/that, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Aa" = ( -/obj/structure/trash_pile, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Ab" = ( -/obj/item/kirbyplants/fullysynthetic, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Ac" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/partyhard/indoors) -"Ae" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/soup/bungocurry, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Af" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Ag" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/flashlight/seclite, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ah" = ( -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/item/bikehorn/rubberducky, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Ai" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"Ak" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"Al" = ( -/obj/effect/decal/cleanable/shreds, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Am" = ( -/obj/structure/barricade/wooden/fence{ - dir = 6 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Ap" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Aq" = ( -/obj/machinery/door/poddoor/shutters{ - max_integrity = 700; - name = "Armory Shutters"; - obj_integrity = null - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ar" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/drinks/bottle/molotov, -/obj/item/reagent_containers/food/drinks/bottle/grenadine, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/bottle/applejack, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"As" = ( -/obj/machinery/light, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"At" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt2, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Au" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Av" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Aw" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/magazine/asval, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Ax" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt3, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"AA" = ( -/obj/structure/sign/departments/medbay, -/turf/closed/wall/cataclysmdda, -/area/partyhard/indoors) -"AC" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"AD" = ( -/obj/structure/table/wood/cataclysmdda, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"AF" = ( -/turf/open/floor/plasteel/checker, -/area/partyhard/indoors) -"AH" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"AJ" = ( -/obj/machinery/door/airlock/glass_large, -/turf/open/floor/plasteel/monofloor/white, -/area/partyhard/indoors) -"AK" = ( -/turf/open/floor/plasteel/monofloor/white, -/area/partyhard/indoors) -"AL" = ( -/obj/structure/flora/cataclysmdda/decoration/nature/wheat, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"AM" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/trash/can, -/obj/item/trash/candy, -/obj/item/trash/popcorn, -/obj/item/trash/syndi_cakes, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"AN" = ( -/obj/structure/railing, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"AP" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"AQ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/folder, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"AR" = ( -/obj/structure/flora/tree/cataclysmdda/topol, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"AS" = ( -/obj/effect/spawner/randomarcade, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"AT" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/breadslice/empty, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"AU" = ( -/obj/structure/chair/sofa/corp/right, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"AV" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"AZ" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Bb" = ( -/obj/structure/window/fulltile, -/obj/structure/barricade/wooden/crude{ - layer = 4; - opacity = 1 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Bd" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt3, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Bf" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/pants/camo, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Bh" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -5; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bj" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bk" = ( -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Bm" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bn" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/cakeslice/chocolate, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 7; - pixel_y = 7 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bo" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Bp" = ( -/obj/structure/chair/sofa/corp, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Bq" = ( -/obj/structure/chair/sofa/corp/corner, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Br" = ( -/obj/structure/rospilovo/clocks{ - pixel_y = 32 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bs" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bu" = ( -/obj/item/clothing/accessory/medal/gold/heroism, -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Bx" = ( -/obj/item/trash/chips, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"By" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/camera/coom, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"Bz" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/crowbar/large, -/obj/item/wirecutters, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"BA" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"BB" = ( -/obj/item/trash/syndi_cakes, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"BD" = ( -/obj/structure/bookcase/random, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"BE" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"BF" = ( -/obj/machinery/light/small, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"BH" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"BI" = ( -/obj/structure/cataclysmdda/oven, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"BK" = ( -/obj/effect/decal/cleanable/poo, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"BL" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"BN" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"BP" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"BQ" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/storage/fancy/heart_box, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/obj/item/food/breadslice/tofu, -/obj/item/food/cakeslice/birthday, -/obj/item/food/cheesyfries, -/obj/item/food/donut/caramel, -/obj/item/food/grown/eggplant, -/obj/item/food/grown/onion, -/obj/item/food/grown/tomato, -/obj/item/food/kebab/monkey, -/obj/item/food/onionrings, -/obj/item/food/patty/chicken, -/obj/item/food/cookie/sugar/spookyskull, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"BR" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/modular_computer/laptop, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"BS" = ( -/obj/item/trash/boritos, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"BT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small, -/obj/structure/rack, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"BU" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"BV" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"BY" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"BZ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate/combat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ca" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/head/beanie/rasta, -/obj/item/clothing/head/beanie/red, -/obj/item/clothing/head/beanie/striped, -/obj/item/clothing/head/beanie/stripedblue, -/obj/item/clothing/head/beanie/stripedred, -/obj/item/clothing/head/beanie/stripedgreen, -/obj/item/clothing/head/beanie/yellow, -/obj/item/clothing/head/beanie/green, -/obj/item/clothing/head/beanie/darkblue, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/head/beret, -/obj/item/clothing/head/beret/black, -/obj/item/clothing/head/beret/blue, -/obj/item/clothing/head/canada, -/obj/item/clothing/head/cap/elite, -/obj/item/clothing/head/flatcap, -/obj/item/clothing/head/flatcap, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"Cb" = ( -/obj/machinery/door/poddoor/shutters{ - id = "vorotanomerodin" - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Cc" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"Cd" = ( -/obj/structure/closet/crate/box, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/stock_parts/cell/lead, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ce" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Cf" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Cg" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Cj" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/grown/harebell, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ck" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 9 - }, -/area/partyhard/indoors) -"Cl" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Cn" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/obj/item/trash/raisins, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Co" = ( -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Cq" = ( -/obj/structure/bookcase/random, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ct" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/tanner, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Cu" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/paper_bin, -/obj/item/pen/fountain{ - pixel_x = 9; - pixel_y = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Cw" = ( -/obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Cx" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/reagent_containers/food/condiment/pack/hotsauce, -/obj/item/food/bread/empty, -/obj/item/food/canned/peaches/maint, -/obj/item/food/canned, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grass, -/obj/item/food/grown/pineapple, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Cy" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bed/maint, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CB" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/pants/classicjeans, -/obj/item/clothing/neck/stripedgreenscarf/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/head/soft/black, -/obj/item/instrument/piano_synth/headphones/spacepods, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CC" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CD" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/machinery/light/small, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"CG" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/monofloor, -/area/partyhard/indoors) -"CH" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate/rus_army, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CI" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CK" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CL" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/coin/antagtoken, -/obj/item/coin/antagtoken{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/coin/antagtoken{ - pixel_x = 4; - pixel_y = -4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CM" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/suppressed, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CN" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/item/clothing/glasses/sunglasses, -/obj/effect/turf_decal/bot, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"CO" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/accessory/allergy_dogtag, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CP" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/miljacket, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"CQ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"CR" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"CU" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/under/color/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"CV" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/canned/peaches, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"CW" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/leather, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"CZ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Dc" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Dd" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/leather/overcoat, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Dg" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/obj/effect/invisiblewall, -/turf/open/floor/light, -/area/partyhard/indoors) -"Dh" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/computer_hardware/hard_drive/super{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/computer_hardware/hard_drive{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/computer_hardware/hard_drive, -/obj/item/computer_hardware/hard_drive/portable{ - pixel_x = -7; - pixel_y = 7 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Di" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/eyepatch, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Dj" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/vyshivanka, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Dm" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/glass/rag{ - pixel_y = 9 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Dn" = ( -/obj/structure/fence/corner, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Dp" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/suit/jacket/leather, -/obj/item/clothing/under/pants/camo, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/suit/black_really/skirt, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/dress/skirt/plaid/purple, -/obj/item/storage/fancy/cigarettes/cigpack_robustgold, -/obj/item/lighter, -/obj/item/clothing/glasses/eyepatch, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ds" = ( -/obj/structure/table/glass, -/obj/item/stack/medical/bone_gel/four, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Dv" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"Dw" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/raisins, -/obj/item/trash/can/food/beans, -/obj/item/reagent_containers/pill/salicylic, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Dy" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = 7; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Dz" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"DA" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"DC" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"DF" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate/tacticool, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DI" = ( -/obj/structure/bookcase, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DJ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/surplus, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DK" = ( -/obj/machinery/door/airlock/prison/cell, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"DL" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/uzim9mm{ - pixel_x = -10 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m50{ - pixel_x = -3 - }, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/m9mm/hp, -/obj/item/ammo_box/magazine/m9mm/hp, -/obj/item/ammo_box/magazine/m9mm/ap, -/obj/item/ammo_box/magazine/m9mm/ap, -/obj/item/ammo_box/magazine/m9mm, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/item/ammo_box/magazine/traumatic{ - pixel_x = 8 - }, -/obj/structure/window{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"DM" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"DN" = ( -/obj/structure/filingcabinet/medical, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DP" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"DQ" = ( -/obj/machinery/button/door{ - id = "vorotanomerodin"; - pixel_x = -29 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"DR" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/military/assault, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DS" = ( -/obj/item/trash/can{ - pixel_x = 9; - pixel_y = 7 - }, -/obj/item/trash/can{ - pixel_x = -8 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"DT" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/toolbox/mechanical/old/clean, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"DV" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"DW" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt2, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Ec" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"Ed" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ee" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ef" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/lavalamp{ - pixel_x = -9; - pixel_y = 7 - }, -/obj/item/reagent_containers/pill/speedrun, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Eg" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/obj/effect/invisiblewall, -/turf/open/floor/circuit, -/area/partyhard/indoors) -"Ei" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side, -/obj/effect/invisiblewall, -/turf/open/floor/light, -/area/partyhard/indoors) -"Ek" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 8 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Em" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Eo" = ( -/obj/machinery/power/smes/magical, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ep" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Eq" = ( -/obj/structure/filingcabinet/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Er" = ( -/obj/effect/decal/cleanable/poo, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Ev" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ew" = ( -/obj/structure/closet/crate/bin, -/obj/item/food/poo, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ex" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Ey" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ez" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight/seclite, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ED" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/phone, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"EF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"EI" = ( -/obj/structure/toilet{ - pixel_y = 11 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"EJ" = ( -/obj/machinery/vending/snack/orange{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"EK" = ( -/obj/structure/closet/cabinet, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/glasses/regular/circle, -/obj/item/clothing/accessory/waistcoat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"EN" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"EO" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/chem_dispenser/drinks{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"EP" = ( -/obj/structure/table/wood/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"EQ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/item/ammo_box/c45, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ES" = ( -/obj/structure/table/optable, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"ET" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/spoon, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"EW" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"EY" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/beef_stroganoff, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"EZ" = ( -/obj/structure/rospilovo/shina2, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Fa" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fb" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/toolbox/ammo, -/obj/item/storage/toolbox/ammo, -/obj/item/storage/toolbox/ammo, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Fc" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Fd" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fe" = ( -/obj/structure/chair/sofa, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fg" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fi" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/ammo_box/magazine/m45, -/obj/item/ammo_box/magazine/m45, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Fj" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Fk" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/flashlight/lantern/heirloom_moth, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fn" = ( -/obj/structure/sink/kitchen{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Fo" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Fp" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/item/modular_computer/laptop/preset{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fq" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/paper_bin, -/obj/item/pen/fountain/captain, -/obj/item/food/drug/saturnx{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"Fr" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ft" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Fu" = ( -/obj/structure/railing, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Fw" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Fx" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/obj/item/reagent_containers/spray/pepper, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Fy" = ( -/obj/structure/rospilovo/shina, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"FA" = ( -/obj/structure/closet, -/obj/item/clothing/shoes/jackboots, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"FB" = ( -/obj/item/device/flashlight/slamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"FC" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"FD" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/monofloor, -/area/partyhard/indoors) -"FG" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/obj/item/soap, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"FK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"FL" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"FN" = ( -/obj/machinery/light/small, -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"FS" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"FX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"FY" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bonfire, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"FZ" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ga" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/instrument/accordion, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Gb" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/det_suit/grey, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Gc" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/reagent_containers/syringe/syriniver{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/syriniver, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ge" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/under/syndicate/camo{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/clothing/under/switer/tracksuit, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Gi" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Gj" = ( -/obj/item/kirbyplants/random, -/obj/machinery/light, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Gk" = ( -/obj/structure/dresser, -/obj/item/instrument/piano_synth, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Gl" = ( -/obj/structure/fence, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Gn" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/partyhard/indoors) -"Go" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"Gq" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Gr" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"Gt" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Gv" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor/broken, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Gx" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single, -/area/partyhard/indoors) -"Gy" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"GA" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"GB" = ( -/obj/machinery/door/window/southleft, -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"GD" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"GF" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"GG" = ( -/obj/structure/closet, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/radio/off, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/spray/pepper, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"GL" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/puffer/vest, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"GM" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/vest/russian_coat, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"GN" = ( -/obj/structure/chair/comfy/beige{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"GO" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/kitty, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"GQ" = ( -/obj/item/trash/chips, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"GT" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/shotgun/automatic/combat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"GV" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/knife, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/spoon, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"GX" = ( -/obj/structure/bed/maint, -/obj/effect/turf_decal/weather/side{ - dir = 10 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"GY" = ( -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"GZ" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ha" = ( -/obj/structure/closet/cabinet, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/backpack, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hb" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"Hc" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"He" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hf" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/thermos{ - pixel_x = 4; - pixel_y = 10 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hg" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Hh" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Hi" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/partyhard/indoors) -"Hj" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Hl" = ( -/obj/machinery/vending/medical{ - onstation = 0; - req_access = null - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Hm" = ( -/obj/item/melee/skateboard, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Hn" = ( -/obj/structure/barricade/wooden/fence, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Ho" = ( -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"Hq" = ( -/turf/open/floor/wood/parquet, -/area/partyhard/outdoors) -"Hr" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"Ht" = ( -/obj/structure/chair/sofa{ - dir = 4 - }, -/obj/item/food/popcorn, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hu" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/coin/antagtoken, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hw" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/binoculars, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Hz" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"HD" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/flashlight/lamp/lavalamp, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"HE" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"HI" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/belt/utility/full, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"HJ" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt4, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"HK" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"HM" = ( -/obj/item/trash/candy, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"HN" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/radio/off, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"HQ" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"HR" = ( -/obj/structure/chair/sofa/right, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"HS" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/puffer, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"HT" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/poncho/green, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"HU" = ( -/obj/machinery/button/door{ - id = "drochanus"; - pixel_y = 25 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"HV" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"HW" = ( -/obj/item/trash/cheesie, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"HX" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/automatic/pistol/makarov, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"HY" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance/four, -/obj/item/trash/syndi_cakes, -/obj/item/trash/pistachios, -/obj/item/trash/cheesie, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"HZ" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Ib" = ( -/obj/item/trash/popcorn, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Ic" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Id" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/jacket/letterman, -/obj/item/clothing/mask/bandana/blue, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Ih" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/spaghetti/meatballspaghetti, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ii" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"Ik" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/under/color/grey, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"In" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"Iq" = ( -/obj/structure/barricade/wooden/fence, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Is" = ( -/obj/effect/turf_decal/dust, -/obj/structure/punji_sticks/spikes, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"It" = ( -/obj/structure/chair/sofa{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Iu" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Iv" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Iw" = ( -/obj/structure/table/glass, -/obj/item/storage/briefcase/surgery, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ix" = ( -/obj/structure/flora/tree/cataclysmdda/oreh, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"IA" = ( -/turf/open/floor/plasteel/monofloor, -/area/partyhard/indoors) -"ID" = ( -/obj/structure/flora/tree/cataclysmdda/ht, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"IE" = ( -/obj/item/storage/bag/trash, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"IF" = ( -/obj/structure/cataclysmdda/lamp, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"IH" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/dice/d8, -/obj/item/bikehorn/airhorn, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"II" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/stack/sheet/mineral/silver, -/obj/item/blacksmith/tongs, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"IM" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"IO" = ( -/obj/structure/cataclysmdda/oven, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"IQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/partyhard/indoors) -"IU" = ( -/obj/structure/closet/crate, -/obj/item/stack/ore/iron, -/obj/item/stack/sheet/mineral/sandbags{ - amount = 50 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"IV" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"IW" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"IX" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/pack, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"IY" = ( -/obj/structure/punji_sticks/spikes, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"IZ" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ja" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/clothing/mask/breath, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jb" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jd" = ( -/obj/structure/chair/wood/cataclysmdda{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jf" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jg" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/plate/oven_tray, -/obj/item/trash/plate{ - pixel_y = 7 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jh" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jj" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/saltshaker, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Jp" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"Jq" = ( -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Js" = ( -/obj/machinery/door/window/southright, -/obj/structure/curtain/cataclysmdda, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Jt" = ( -/obj/structure/chair/sofa/left, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ju" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Jv" = ( -/obj/structure/railing, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Jy" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Jz" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/drinks/bottle/hcider, -/obj/item/food/canned/peaches, -/obj/item/food/cakeslice/chocolate, -/obj/item/reagent_containers/food/drinks/soda_cans/starkist, -/obj/item/food/lcube, -/obj/item/food/meat/steak/chicken, -/obj/item/food/salad/ricepork, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/condiment/milk, -/obj/effect/spawner/lootdrop/food_packaging, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JA" = ( -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"JB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/item/trash/can/food/peaches, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"JC" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"JD" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt4, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"JE" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"JF" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/trash/plate{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JI" = ( -/obj/structure/chair/sofa/right{ - dir = 4 - }, -/obj/item/instrument/piano_synth/headphones, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JJ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/backpack/satchel/leather, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"JK" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"JL" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JM" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JN" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/kitchen/fork, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JP" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/automatic/mini_uzi, -/obj/item/gun/ballistic/automatic/pistol/makarov, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"JR" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/kitchen/knife/free, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JS" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/storage/fancy/egg_box, -/obj/item/food/meat/steak/plain, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/food/candy, -/obj/item/food/burrito, -/obj/item/food/no_raisin/healthy, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JV" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"JW" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 4 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"JY" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/baguette, -/obj/item/food/burger/cheese, -/obj/item/food/cheesewedge, -/obj/item/food/chocolatebar, -/obj/item/food/chocolatebar, -/obj/item/food/fried_chicken, -/obj/item/reagent_containers/food/drinks/beer/light, -/obj/item/reagent_containers/food/drinks/beer/light, -/obj/item/reagent_containers/food/drinks/soda_cans/cola, -/obj/item/reagent_containers/food/drinks/waterbottle, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/milk, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"JZ" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/stack/cable_coil/five, -/obj/item/hand_labeler{ - pixel_x = -10; - pixel_y = -6 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ka" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/belt/utility/full, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Kb" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ke" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Kf" = ( -/obj/structure/table/glass, -/obj/item/storage/backpack/duffelbag/med/surgery{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Kg" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/radio/off, -/obj/item/stock_parts/cell/lead, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ki" = ( -/obj/structure/chair/sofa/left, -/obj/item/trash/tray, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Kj" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Kk" = ( -/obj/effect/turf_decal/dust, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Kn" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/clothing/under/syndicate/sniper, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Kq" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/meat/steak, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ku" = ( -/obj/structure/chair/sofa/left, -/obj/item/storage/belt/fannypack, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"Kv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/welding, -/obj/item/lead_pipe, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Kw" = ( -/obj/structure/barricade/sandbags, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Kx" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"KA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/backpack, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"KB" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"KD" = ( -/turf/open/floor/plasteel/stairs/old/chilly/single{ - dir = 4 - }, -/area/partyhard/indoors) -"KF" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"KK" = ( -/obj/effect/turf_decal/weather/side{ - dir = 6 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"KL" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"KO" = ( -/obj/structure/flora/tree/cataclysmdda/cash, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"KP" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"KR" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"KS" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/can, -/obj/item/trash/sosjerky, -/obj/item/trash/plate, -/obj/item/trash/chips, -/obj/item/ammo_box/c9mm, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"KV" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"KY" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"La" = ( -/obj/structure/bookcase/random, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Lc" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ld" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Le" = ( -/obj/effect/turf_decal/weather/side/corner, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Lf" = ( -/obj/structure/fireaxecabinet{ - pixel_y = 27 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Lh" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Li" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/taperecorder, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Lk" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug/tea, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ll" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Office Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Ln" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/gun/ballistic/crossbow, -/obj/item/gun/ballistic/automatic/pistol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Lo" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/outdoors) -"Lp" = ( -/obj/item/kirbyplants/fullysynthetic, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ls" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Lv" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/spoon, -/obj/item/kitchen/knife/free, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Lw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/structure/mirror{ - pixel_x = -32 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Lx" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/backpack/duffelbag, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ly" = ( -/obj/structure/flora/tree/cataclysmdda/ht, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"LB" = ( -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"LD" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/stack/sticky_tape, -/obj/item/stack/cable_coil, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"LF" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/box/donkpockets/donkpocketpizza, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"LG" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"LH" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/item/reagent_containers/glass/maunamug{ - pixel_x = -3; - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"LL" = ( -/obj/structure/fence/door{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"LN" = ( -/obj/structure/closet/secure_closet/medical3, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"LP" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/item/sharpener{ - pixel_x = -5; - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"LQ" = ( -/obj/structure/cataclysmdda/bath{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"LR" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 8 - }, -/area/partyhard/indoors) -"LS" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/firstaid/emergency, -/obj/item/stack/medical/suture/emergency, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"LV" = ( -/obj/machinery/vending/cola/red{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"LW" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/food/meat/steak/meatproduct, -/obj/item/food/salad/ricepudding, -/obj/item/food/soup/sweetpotato, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"LY" = ( -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Mc" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"Md" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/effect/spawner/lootdrop/memeorgans, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/effect/spawner/lootdrop/food_packaging, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/soymilk, -/obj/item/food/rationpack, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Me" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Mg" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/glass/bottle/ethanol, -/obj/item/blood_filter, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Mi" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 1; - pixel_x = -1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Mj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/partyhard/indoors) -"Mk" = ( -/obj/effect/decal/cleanable/ants, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Mm" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"Mn" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/knife/free, -/obj/item/food/bread/plain, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Mo" = ( -/obj/machinery/button/door{ - id = "analnayapizda"; - pixel_y = 27 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Mq" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ms" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Mt" = ( -/obj/structure/closet, -/obj/item/gun/ballistic/automatic/pistol, -/obj/item/clothing/glasses/sunglasses, -/obj/item/storage/backpack/security, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/obj/item/reagent_containers/spray/pepper, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Mx" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/spaghetti/raw, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"My" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp/green, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"MA" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/ai_module/toy_ai{ - pixel_x = -8; - pixel_y = 7 - }, -/obj/item/clothing/head/collectable/slime{ - pixel_x = 11; - pixel_y = 9 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/carpet/purple, -/area/partyhard/indoors) -"MC" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/soysauce, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/food/burger/rib, -/obj/item/food/cakeslice/apple, -/obj/item/food/cheesewedge, -/obj/item/food/cheesewedge, -/obj/item/reagent_containers/food/drinks/bottle/menthol, -/obj/item/food/grown/apple, -/obj/item/food/grown/banana, -/obj/item/food/grown/berries, -/obj/item/food/grown/cabbage, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"MD" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"MI" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"MJ" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ML" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_y = -4 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_y = -2 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_y = 4 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"MN" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = -5; - pixel_y = 16 - }, -/obj/item/food/spaghetti/raw, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"MO" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/soup/hotchili, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"MP" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/trash/plate{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"MQ" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"MR" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/obj/item/trash/syndi_cakes, -/obj/item/trash/chips, -/obj/item/trash/semki, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"MT" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"MU" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"MV" = ( -/obj/structure/cataclysmdda/bath/another{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"MY" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"MZ" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Na" = ( -/obj/effect/landmark/latejoin, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Nb" = ( -/obj/structure/dresser, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"Nd" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ne" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/rollingpin, -/obj/item/food/grown/pumpkin, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Nf" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/jellysandwich/cherry, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ng" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/trash/plate, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Nh" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/indoors) -"Nj" = ( -/obj/structure/fence/post, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Nk" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"Nm" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/computer_hardware/battery, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Nn" = ( -/obj/item/trash/can, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"No" = ( -/obj/structure/lattice, -/obj/effect/turf_decal/weather/side, -/obj/effect/invisiblewall, -/turf/open/floor/light, -/area/partyhard/indoors) -"Nq" = ( -/obj/structure/flora/tree/cataclysmdda/sosna, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Nr" = ( -/obj/structure/closet/crate/bin, -/obj/item/storage/box/pillpack/stimulant, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Nt" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Nv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Nw" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/cold, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"NB" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"NC" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor/broken, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ND" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"NE" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"NF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"NH" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/suit/jacket/leather/overcoat, -/obj/item/clothing/head/beret, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"NI" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"NK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"NM" = ( -/obj/effect/baseturf_helper/asteroid/snow{ - baseturf = /turf/open/indestructible/cataclysmdda/sand - }, -/turf/open/genturf, -/area/partyhard/outdoors) -"NO" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/science, -/obj/item/multitool, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"NQ" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"NR" = ( -/obj/structure/flora/cataclysmdda/decoration/houseplant, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"NT" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/flashlight/lantern, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"NU" = ( -/obj/structure/flora/tree/cataclysmdda/mt, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"NW" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"NX" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Oa" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/flora/cataclysmdda/decoration/houseplant/alt2, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Ob" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Of" = ( -/obj/structure/mirror{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Og" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Oh" = ( -/obj/machinery/vending/boozeomat{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Oi" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/asphalt, -/area/partyhard/indoors) -"Ok" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/structure/rospilovo/radio{ - pixel_y = 14 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Ol" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/newspaper, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"On" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/partyhard/indoors) -"Op" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/gun/ballistic/shotgun/spas12{ - pixel_y = -5 - }, -/obj/item/gun/ballistic/shotgun/spas12, -/obj/item/gun/ballistic/shotgun/spas12{ - pixel_y = 5 - }, -/obj/item/storage/belt/bandolier{ - pixel_x = 4 - }, -/obj/item/storage/belt/bandolier{ - pixel_x = -4 - }, -/obj/item/storage/belt/bandolier, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Oq" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Or" = ( -/obj/structure/grille/cataclysmdda, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"Os" = ( -/obj/structure/window{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/structure/curtain/cataclysmdda, -/obj/machinery/door/window{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ov" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/tyubet, -/obj/item/clothing/head/soft/grey{ - pixel_x = -1; - pixel_y = 11 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ow" = ( -/obj/structure/fireplace{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Ox" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/saltshaker, -/obj/item/kitchen/fork, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OC" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/lighter, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OD" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OE" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/rifle/boltaction, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OF" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OH" = ( -/obj/structure/closet/crate/trashcart/filled, -/obj/item/trash/chips, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/grenade/smokebomb, -/obj/item/wirecutters, -/turf/open/floor/asphalt, -/area/partyhard/indoors) -"OK" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"OL" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"OO" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/light/colour_cycle/dancefloor_a, -/area/partyhard/indoors) -"OP" = ( -/obj/effect/decal/cleanable/ants, -/obj/structure/trash_pile, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"OT" = ( -/obj/structure/bed/maint, -/obj/effect/turf_decal/weather/side, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"OU" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/effect/turf_decal/bot, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"OV" = ( -/obj/structure/chair/sofa/right{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"OX" = ( -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"OY" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/can, -/obj/item/trash/raisins, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Pa" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/item/food/bread/plain, -/obj/item/kitchen/knife, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pe" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Pf" = ( -/obj/structure/chair/sofa/corp/right, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ph" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/no_raisin{ - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pi" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pl" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/item/phone{ - pixel_x = 1; - pixel_y = 13 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pn" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = 7; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Po" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/glass/maunamug, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pp" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/flatdough, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pq" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/item/clothing/head/collectable/tophat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ps" = ( -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/light/colour_cycle, -/area/partyhard/indoors) -"Pt" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/food/benedict, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Px" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Py" = ( -/obj/structure/closet/crate/box, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Pz" = ( -/obj/structure/cataclysmdda/oven, -/obj/effect/turf_decal/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"PA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"PC" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"PD" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/bread/meat, -/obj/item/food/cakeslice/vanilla_slice, -/obj/item/food/candy, -/obj/item/food/canned/beans, -/obj/item/food/canned/beans, -/obj/item/food/canned/peaches, -/obj/item/food/cheesewedge, -/obj/item/food/cheesewedge, -/obj/item/food/cheese_sandwich, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets/donkpocketpizza, -/obj/item/storage/box/donkpockets/donkpocketteriyaki, -/obj/item/storage/box/donkpockets/donkpocketspicy, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"PE" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/effect/turf_decal/weather/side, -/obj/item/storage/firstaid/emergency, -/obj/item/storage/box/pillpack/aspirin{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"PG" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"PL" = ( -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"PM" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/item/reagent_containers/glass/beaker/plastic{ - pixel_x = 6; - pixel_y = 14 - }, -/obj/item/storage/box/pillpack/haloperidol, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"PN" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"PO" = ( -/turf/closed/indestructible/black, -/area/partyhard/outdoors) -"PQ" = ( -/obj/effect/decal/cleanable/food/salt, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"PU" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/stack/spacecash/c10, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Qa" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Qb" = ( -/obj/machinery/light/small, -/obj/structure/chair/wood/cataclysmdda{ - dir = 1 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qc" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qd" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 7; - pixel_y = 17 - }, -/obj/item/reagent_containers/food/condiment/rice, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qe" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/firstaid/emergency, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Qf" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qg" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/mop/advanced, -/obj/item/clothing/neck/petcollar, -/obj/machinery/light/small, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qh" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qn" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Qo" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/pill_bottle/happiness, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Qp" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qq" = ( -/obj/structure/railing, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Qr" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Qs" = ( -/obj/machinery/vending/clothing{ - onstation = 0 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Qt" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/redcoat, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Qv" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/plunger, -/turf/open/water/cataclysmdda, -/area/partyhard/indoors) -"Qw" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/ushanka, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Qx" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Qz" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/orange, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"QC" = ( -/obj/machinery/door/airlock/hatch{ - name = "Equipment" - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"QD" = ( -/obj/item/trash/can, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"QE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"QF" = ( -/obj/structure/sign/warning/securearea/ntsign, -/turf/closed/indestructible/opshuttle, -/area/partyhard/indoors) -"QG" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"QH" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/gloves/color/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"QI" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/book/manual/wiki/medicine, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"QJ" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/light/colour_cycle, -/area/partyhard/indoors) -"QK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/book/manual/wiki/chemistry, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"QL" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/glasses/sunglasses/reagent, -/obj/item/clothing/glasses/sunglasses/garb, -/obj/item/clothing/glasses/sunglasses/gar, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/regular/jamjar, -/obj/item/clothing/glasses/regular/circle, -/obj/item/clothing/glasses/regular, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/prism_glasses, -/obj/item/clothing/glasses/orange, -/obj/item/clothing/glasses/cold, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"QM" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/reagent_containers/pill/speedrun, -/obj/item/reagent_containers/pill/krokodil, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"QN" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/closet/crate/bin, -/obj/item/trash/candy, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"QO" = ( -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"QP" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"QQ" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"QR" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/flashlight/lamp, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"QS" = ( -/obj/structure/table, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"QT" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"QU" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"QV" = ( -/obj/structure/barricade/wooden/fence{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"QW" = ( -/obj/structure/trash_pile, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"QX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"QY" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"QZ" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Rb" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/glasses/red, -/obj/item/clothing/glasses/red{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Re" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/firstaid/emergency, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Rf" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/gloves/botanic_leather, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Rg" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/water/cataclysmdda, -/area/partyhard/outdoors) -"Rh" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar, -/obj/item/reagent_containers/food/condiment/flour{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Rj" = ( -/obj/structure/fence/corner, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Rl" = ( -/obj/structure/chair/sofa/corner{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ro" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 5 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Rq" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Rr" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/multitool/uplink, -/obj/item/storage/backpack/duffelbag, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"Rs" = ( -/obj/structure/chair/sofa/right, -/obj/item/trash/boritos, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Rt" = ( -/obj/structure/chair/sofa/corp/left, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ru" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Rv" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Rw" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Rx" = ( -/obj/structure/chair/sofa, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Rz" = ( -/obj/machinery/vending/cola/sodie, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"RA" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/trash/plate{ - pixel_y = 7 - }, -/obj/item/kitchen/fork, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RD" = ( -/obj/structure/window/fulltile, -/obj/structure/curtain/cataclysmdda/window, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"RE" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"RF" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RG" = ( -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RH" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RI" = ( -/obj/item/instrument/piano_synth/headphones, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"RK" = ( -/obj/structure/chair/sofa/corner, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"RL" = ( -/obj/structure/rack/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RN" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/brown, -/obj/item/clothing/under/color/darkblue, -/obj/item/clothing/under/color/darkgreen, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/under/color/jumpskirt/black, -/obj/item/clothing/under/color/jumpskirt/blue, -/obj/item/clothing/under/color/jumpskirt/brown, -/obj/item/clothing/under/color/jumpskirt/darkblue, -/obj/item/clothing/under/color/jumpskirt/darkgreen, -/obj/item/clothing/under/color/jumpskirt/green, -/obj/item/clothing/under/color/jumpskirt/grey, -/obj/item/clothing/under/color/jumpskirt/lightbrown, -/obj/item/clothing/under/color/jumpskirt/lightpurple, -/obj/item/clothing/under/color/jumpskirt/maroon, -/obj/item/clothing/under/color/jumpskirt/orange, -/obj/item/clothing/under/color/jumpskirt/pink, -/obj/item/clothing/under/color/jumpskirt/rainbow, -/obj/item/clothing/under/color/jumpskirt/red, -/obj/item/clothing/under/color/jumpskirt/white, -/obj/item/clothing/under/color/jumpskirt/yellow, -/obj/item/clothing/under/color/orange, -/obj/item/clothing/under/color/pink, -/obj/item/clothing/under/color/red, -/obj/item/clothing/under/costume/dutch, -/obj/item/clothing/under/costume/sharovari, -/obj/item/clothing/under/dress/sailor, -/obj/item/clothing/under/dress/skirt, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"RQ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/chainsaw/circular, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/partyhard/indoors) -"RU" = ( -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"RW" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/food/kebab/fiesta, -/obj/item/kitchen/knife/plastic, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"RX" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"RY" = ( -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Sa" = ( -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Sb" = ( -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/rack, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/obj/item/grenade/clusterbuster/teargas, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Sc" = ( -/obj/structure/closet, -/obj/item/clothing/head/spacepolice{ - name = "полицейская фуражка" - }, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/spray/pepper, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Sd" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/costume/sailor, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/jacket/puffer, -/obj/item/clothing/under/color/grey, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Sg" = ( -/obj/structure/cataclysmdda/oven, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Si" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 6 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Sm" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/genturf, -/area/partyhard/outdoors) -"Sn" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/rank/civilian/curator, -/obj/item/clothing/under/rank/civilian/lawyer/female/skirt, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/sandal, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/neck/scarf/pink, -/obj/item/clothing/neck/stripedgreenscarf, -/obj/item/gun/ballistic/automatic/pistol/m1911, -/obj/item/ammo_box/magazine/m45, -/obj/item/ammo_box/magazine/m45, -/obj/item/clothing/accessory/allergy_dogtag, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ss" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Sw" = ( -/obj/structure/cataclysmdda/kitchencloset, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Sx" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/obj/effect/spawner/randomarcade, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"Sy" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 10 - }, -/obj/item/reagent_containers/food/condiment/pack/ketchup, -/obj/item/reagent_containers/food/condiment/enzyme, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Sz" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/under/dress/skirt/blue, -/obj/item/clothing/under/pants/blackjeans, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/flatcap, -/obj/item/clothing/head/beanie/green, -/obj/item/clothing/under/dress/skirt/plaid/green, -/obj/item/clothing/under/suit/charcoal, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/accessory/lawyers_badge, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SA" = ( -/obj/machinery/grill, -/obj/item/food/kebab/monkey, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"SB" = ( -/obj/structure/rospilovo/radiation{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"SD" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/colocup, -/obj/item/kitchen/fork/plastic, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"SE" = ( -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"SF" = ( -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"SG" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/newspaper, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SH" = ( -/obj/effect/decal/cleanable/ants, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SK" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/under/misc/vice_officer, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/under/pants/camo, -/obj/item/clothing/suit/jacket/miljacket, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/head/beanie/black, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SL" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/gloves/arbiter/undertaker, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/grey, -/obj/item/clothing/gloves/color/grey, -/obj/item/clothing/gloves/color/plasmaman/black, -/obj/item/clothing/gloves/color/plasmaman/black, -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/gloves/fingerless, -/obj/item/clothing/gloves/fingerless, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"SO" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"SQ" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/toolbox/mechanical, -/obj/item/storage/belt/utility, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SS" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 9 - }, -/obj/item/clothing/gloves/boxing/green, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ST" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/pack/ketchup, -/obj/item/food/meat/steak/chicken, -/obj/item/food/chocolatebar, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/mushroom/plumphelmet, -/obj/item/food/grown/mushroom/chanterelle, -/obj/item/food/grown/grapes, -/obj/item/food/grown/citrus/lemon, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SV" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/trash/can/food/peaches/maint, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"SW" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/clothing/neck/stethoscope, -/obj/item/storage/fancy/cigarettes/dromedaryco, -/obj/item/lighter/greyscale/free, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"SY" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ta" = ( -/obj/effect/turf_decal/stripes{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Tb" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Tc" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 10; - pixel_y = 5 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Td" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Te" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, -/turf/open/floor/light/colour_cycle/dancefloor_a, -/area/partyhard/indoors) -"Tf" = ( -/obj/structure/chair/sofa, -/obj/item/clothing/head/festive, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Tg" = ( -/obj/structure/cataclysmdda/kitchencloset, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Th" = ( -/turf/open/floor/grass/cataclysmdda/dirt/alt, -/area/partyhard/outdoors) -"Tj" = ( -/obj/structure/railing/corner, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"Tk" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -13 - }, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Tl" = ( -/obj/effect/turf_decal/stripes{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Tm" = ( -/obj/effect/turf_decal/weather/side/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"To" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/storage/fancy/cigarettes/cigars, -/obj/item/lighter, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Tp" = ( -/turf/open/floor/asphalt, -/area/partyhard/indoors) -"Tr" = ( -/obj/item/trash/semki, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Tt" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/condiment/soysauce, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Tu" = ( -/obj/structure/chair/pew/left, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Tv" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/newspaper, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Tw" = ( -/obj/structure/sink/kitchen/cataclysmdda, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Tx" = ( -/obj/structure/chair/sofa/left{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Tz" = ( -/obj/structure/fence/post{ - dir = 4 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"TB" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/book/granter/crafting_recipe/cookbook, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"TD" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/clothing/under/syndicate/camo, -/obj/item/clothing/gloves/combat, -/obj/item/storage/belt/military, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"TE" = ( -/obj/structure/chair/office, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"TF" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/raisins, -/obj/item/trash/sosjerky, -/obj/item/storage/bag/trash/cyborg, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"TI" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"TJ" = ( -/obj/structure/closet/crate/box, -/obj/item/clothing/head/bandana, -/obj/item/clothing/mask/bandana, -/obj/item/clothing/mask/bandana/black, -/obj/item/clothing/mask/bandana/black, -/obj/item/clothing/mask/bandana/black, -/obj/item/clothing/mask/bandana/blue, -/obj/item/clothing/mask/bandana/blue, -/obj/item/clothing/mask/bandana/blue, -/obj/item/clothing/mask/bandana/gold, -/obj/item/clothing/mask/bandana/gold, -/obj/item/clothing/mask/bandana/gold, -/obj/item/clothing/mask/bandana/green, -/obj/item/clothing/mask/bandana/green, -/obj/item/clothing/mask/bandana/green, -/obj/item/clothing/mask/bandana/skull, -/obj/item/clothing/mask/bandana/skull, -/obj/item/clothing/mask/bandana/skull, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/bandana/red, -/obj/item/clothing/mask/fakemoustache, -/obj/item/clothing/mask/gas/anonist, -/obj/item/clothing/mask/gas/mime, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"TL" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"TN" = ( -/obj/structure/chair/pew, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"TO" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/food/drinks/bottle/trappist, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"TP" = ( -/obj/structure/cataclysmdda/oven, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"TS" = ( -/obj/structure/flora/cataclysmdda/decoration, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"TT" = ( -/obj/structure/chair/pew/right, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"TU" = ( -/obj/structure/chair/sofa/right, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"TV" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/backpack/duffelbag, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"TX" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"TY" = ( -/obj/structure/toilet{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ua" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/bottle/ethanol, -/obj/item/reagent_containers/glass/bottle/ethanol{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/storage/box/pillpack/aspirin, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ub" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ud" = ( -/obj/structure/trash_pile, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ue" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/reagent_containers/glass/bottle/iron, -/obj/item/reagent_containers/glass/bottle/sugar{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/bottle/syriniver{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/bottle/synaptizine{ - pixel_x = -1; - pixel_y = -10 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Uh" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Ui" = ( -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Uj" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"Uk" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet/royalblue, -/area/partyhard/indoors) -"Um" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/raisins, -/obj/item/trash/energybar, -/obj/item/trash/chips, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Un" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"Uo" = ( -/obj/structure/closet/crate/shkaf, -/obj/item/clothing/under/syndicate/camo, -/obj/item/clothing/shoes/combat, -/obj/item/storage/belt/military, -/obj/item/clothing/mask/balaclava/swat, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Up" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/flora/tree/cataclysmdda/sosna, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Uq" = ( -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Ur" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Us" = ( -/obj/structure/frame/computer, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"Uv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Uw" = ( -/obj/structure/bed/roller, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ux" = ( -/obj/machinery/door/airlock/hatch{ - name = "Military Outpost" - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Uy" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 13 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Uz" = ( -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"UA" = ( -/obj/structure/flora/tree/cataclysmdda/cash, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"UB" = ( -/obj/item/kitchen/fork/plastic, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"UC" = ( -/obj/structure/chair/sofa/left, -/obj/item/newspaper, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"UD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"UE" = ( -/turf/closed/wall/cataclysmdda/blue, -/area/partyhard/indoors) -"UF" = ( -/obj/structure/fence, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"UH" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"UI" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/trophy/gold_cup, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"UK" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/glass/bottle/iron{ - pixel_x = -10; - pixel_y = -6 - }, -/obj/item/razor, -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/obj/item/storage/blister/threecap/psicodine{ - pixel_x = -1; - pixel_y = 6 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"UL" = ( -/obj/item/trash/sosjerky, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"UM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"UN" = ( -/obj/effect/turf_decal/weather/side{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"UO" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"UP" = ( -/obj/structure/sink{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"UV" = ( -/obj/structure/toilet{ - dir = 1 - }, -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"UX" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/turf_decal/weather/side{ - dir = 4 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"UY" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/food/donut, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"UZ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet{ - dir = 4 - }, -/area/partyhard/indoors) -"Vc" = ( -/obj/structure/closet/cabinet, -/obj/item/gun/ballistic/rifle/boltaction, -/obj/item/storage/toolbox/ammo, -/obj/item/clothing/gloves/fingerless, -/obj/item/storage/belt/military/army, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Vd" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"Ve" = ( -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"Vi" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/stack/medical/gauze/twelve, -/obj/item/stack/medical/bruise_pack, -/obj/item/storage/box/pillpack/aspirin{ - pixel_x = 4; - pixel_y = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Vk" = ( -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"Vm" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/neck/beads, -/obj/item/modular_computer/tablet/preset, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Vn" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Vo" = ( -/obj/structure/table/wood/cataclysmdda, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Vp" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"Vu" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/beanie/black, -/obj/item/clothing/mask/bandana/skull, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Vv" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/ammo_box/c9mm, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Vw" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/stack/medical/suture/medicated, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Vx" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/soft/grey, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Vz" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/beret/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"VB" = ( -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/item/food/popcorn, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"VD" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/soft/yellow, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"VF" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/clothing/suit/armor/vest{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/suit/armor/vest{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"VG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"VH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/genturf, -/area/partyhard/outdoors) -"VJ" = ( -/obj/structure/closet/cabinet, -/obj/item/flashlight/seclite, -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/color/black, -/obj/item/clothing/neck/scarf/black, -/obj/item/clothing/under/suit/white, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"VK" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/soft/black/columbine, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"VM" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/fedora, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"VN" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/mre, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"VO" = ( -/obj/item/kirbyplants/random, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"VR" = ( -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"VT" = ( -/obj/structure/rack/cataclysmdda, -/obj/item/reagent_containers/food/condiment/sugar, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"VU" = ( -/obj/effect/turf_decal/weather/side, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"VW" = ( -/turf/closed/wall/cataclysmdda/wooden, -/area/partyhard/indoors) -"VX" = ( -/obj/structure/mineral_door/wood/cataclysmdda, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"VY" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"VZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/partyhard/indoors) -"Wa" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/mre/protein, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Wb" = ( -/turf/closed/indestructible/rock, -/area/partyhard/outdoors) -"Wc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Wj" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/toolbox/mechanical, -/obj/item/weldingtool/mini, -/obj/item/flashlight/seclite, -/obj/item/fireaxe, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Wl" = ( -/obj/machinery/vending/cola/shamblers{ - onstation = 0 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Wp" = ( -/obj/structure/barricade/wooden/fence{ - dir = 5 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Wq" = ( -/obj/structure/barricade/wooden/fence{ - dir = 9 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Wv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/box/lethalshot{ - pixel_y = -4 - }, -/obj/item/storage/box/lethalshot{ - pixel_y = -2 - }, -/obj/item/storage/box/lethalshot{ - pixel_y = 4 - }, -/obj/item/storage/box/lethalshot, -/obj/item/storage/box/lethalshot{ - pixel_y = 2 - }, -/obj/structure/window{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Ww" = ( -/obj/structure/fence, -/obj/structure/fence/post, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Wy" = ( -/obj/structure/chair/brevno{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Wz" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"WA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"WB" = ( -/obj/structure/chair/brevno/log2{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"WC" = ( -/obj/structure/rack/cataclysmdda/entertaiment, -/obj/structure/rospilovo/televizor, -/turf/open/floor/carpet/royalblack, -/area/partyhard/indoors) -"WF" = ( -/obj/item/trash/pistachios, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"WG" = ( -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/indoors) -"WH" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "analnayapizda" - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"WJ" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/beanie/red, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"WK" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"WN" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"WO" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/reagent_containers/food/drinks/bottle/sake, -/obj/item/reagent_containers/food/drinks/bottle/maltliquor, -/obj/item/reagent_containers/food/drinks/bottle/grappa, -/obj/item/reagent_containers/food/drinks/bottle/goldschlager, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"WQ" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"WR" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/ushanka, -/obj/item/clothing/mask/bandana/black, -/obj/item/clothing/mask/bandana/red, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"WS" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"WT" = ( -/obj/structure/chair/sofa/left{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"WU" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"WW" = ( -/obj/structure/cataclysmdda/bath/another{ - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"WX" = ( -/obj/structure/fence/corner{ - dir = 9 - }, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"WY" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/drinks/waterbottle/large, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Xc" = ( -/obj/structure/cataclysmdda/veshalka, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Xe" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/beanie/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Xf" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/soft/orange, -/obj/item/clothing/mask/bandana/blue, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Xi" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Xk" = ( -/obj/item/storage/toolbox/ammo/wt550{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/storage/toolbox/ammo/wt550{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/toolbox/ammo/wt550, -/obj/item/storage/toolbox/ammo/wt550{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/blue, -/area/partyhard/indoors) -"Xl" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"Xn" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/that, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Xq" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 8 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Xr" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/head/beret, -/obj/item/clothing/mask/bandana/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Xs" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"Xu" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/weldingtool/hugetank, -/obj/item/lead_pipe, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Xv" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Xw" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/carpet/red, -/area/partyhard/indoors) -"Xx" = ( -/obj/machinery/vending/coffee{ - onstation = 0 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/indoors) -"XA" = ( -/obj/item/trash/pistachios, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"XB" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XC" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"XE" = ( -/obj/structure/table/wood/cataclysmdda/desk, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XF" = ( -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"XI" = ( -/obj/structure/chair/stool/bar/cataclysmdda, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"XJ" = ( -/obj/structure/closet/crate/bin, -/obj/item/trash/cheesie, -/obj/item/trash/energybar, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"XK" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/weather/side{ - dir = 8 - }, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"XL" = ( -/obj/item/trash/candy, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"XM" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"XO" = ( -/obj/structure/chair/sofa{ - dir = 8 - }, -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"XP" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XQ" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XR" = ( -/obj/machinery/griddle, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"XT" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"XU" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/suit/armor/vest/russian, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XX" = ( -/obj/structure/dresser, -/obj/item/flashlight/lamp/green{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/phone{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"XY" = ( -/obj/structure/fence/corner, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"XZ" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/partyhard/indoors) -"Ya" = ( -/obj/structure/frame/computer, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/partyhard/indoors) -"Yb" = ( -/obj/structure/bed, -/obj/structure/bed, -/obj/item/bedsheet/grey, -/turf/open/floor/carpet, -/area/partyhard/indoors) -"Ye" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/monofloor, -/area/partyhard/indoors) -"Yg" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/shoes/laceup, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Yi" = ( -/obj/structure/bookcase/random, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Yj" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/sneakers/brown, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Yk" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/shoes/sneakers/black, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Yl" = ( -/obj/item/clothing/shoes/workboots, -/obj/item/clothing/shoes/sneakers/black, -/obj/item/clothing/shoes/russian, -/obj/item/clothing/under/color/lightbrown, -/obj/item/clothing/under/dress/skirt/purple, -/obj/item/clothing/under/shorts/purple, -/obj/item/clothing/under/suit/blacktwopiece, -/obj/item/clothing/neck/stripedgreenscarf/grey, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/beret/highlander, -/obj/item/clothing/head/collectable/petehat, -/obj/item/clothing/head/fedora{ - icon_state = "curator" - }, -/obj/item/clothing/head/that, -/obj/item/clothing/gloves/color/black, -/obj/structure/closet/cabinet, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ym" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/chainsaw, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Yn" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Yp" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/clothing/glasses/meson, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Ys" = ( -/obj/structure/flora/tree/cataclysmdda/kedr, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Yt" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/shoes/sneakers/white, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Yu" = ( -/obj/structure/cataclysmdda/veshalka, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Yv" = ( -/obj/item/clothing/suit/caution, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Yw" = ( -/turf/closed/wall/cataclysmdda/redbrick, -/area/partyhard/indoors) -"Yz" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/plastic{ - dir = 8 - }, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"YA" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/gun/ballistic/shotgun/automatic, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"YB" = ( -/obj/machinery/light/small{ - base_pixel_y = 0; - dir = 1; - pixel_y = 19 - }, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt, -/area/partyhard/indoors) -"YC" = ( -/obj/structure/window/fulltile, -/obj/structure/grille/cataclysmdda, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"YD" = ( -/obj/structure/rack/cataclysmdda/metal, -/obj/item/storage/firstaid/emergency, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"YE" = ( -/obj/item/newspaper/old, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"YG" = ( -/obj/structure/curtain/cloth/fancy, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"YK" = ( -/obj/structure/bed, -/obj/item/bedsheet/random, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"YN" = ( -/obj/structure/flora/tree/cataclysmdda/ht, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/outdoors) -"YP" = ( -/turf/open/floor/carpet/orange, -/area/partyhard/indoors) -"YS" = ( -/obj/structure/bed, -/obj/structure/bed, -/obj/item/bedsheet/grey, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"YT" = ( -/obj/structure/flora/cataclysmdda/decoration/nature, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"YW" = ( -/obj/structure/closet/cabinet, -/obj/item/clothing/under/costume/dutch, -/obj/item/clothing/shoes/jackboots, -/obj/item/flashlight/lantern, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"YX" = ( -/obj/structure/table/wood/cataclysmdda, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"YY" = ( -/obj/structure/fence/door, -/turf/open/floor/asphalt, -/area/partyhard/outdoors) -"Za" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/kitchen/spoon, -/obj/item/kitchen/spoon{ - pixel_x = 9 - }, -/obj/item/kitchen/spoon{ - pixel_x = 4 - }, -/obj/item/kitchen/fork{ - pixel_x = -8 - }, -/obj/item/kitchen/fork{ - pixel_x = -4 - }, -/obj/item/kitchen/fork{ - pixel_x = 10 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"Zb" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Zd" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/cataclysmdda/dirt, -/area/partyhard/indoors) -"Ze" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"Zh" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/carpet/green, -/area/partyhard/indoors) -"Zi" = ( -/obj/structure/closet/secure_closet/freezer/empty, -/obj/item/food/canned/beans, -/obj/item/reagent_containers/food/condiment/milk, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/food/meat/rawcutlet, -/obj/item/food/meat/slab, -/obj/item/food/meat/slab, -/obj/item/food/meatball, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda, -/area/partyhard/indoors) -"Zk" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/tile/white, -/area/partyhard/indoors) -"Zl" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/storage/mre/vegan, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"Zo" = ( -/obj/structure/table/wood/cataclysmdda/sci, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/storage/box/pillpack/aspirin, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"Zu" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/under/color/green, -/turf/open/floor/plasteel, -/area/partyhard/indoors) -"Zv" = ( -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ZC" = ( -/obj/effect/spawner/randomarcade{ - dir = 1 - }, -/turf/open/floor/light/colour_cycle/dancefloor_a, -/area/partyhard/indoors) -"ZD" = ( -/obj/effect/decal/cleanable/cum, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ZF" = ( -/obj/structure/closet, -/obj/item/clothing/under/rank/security/officer/beatcop{ - name = "полицейская униформа" - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/storage/backpack/security, -/obj/effect/turf_decal/bot, -/obj/item/melee/classic_baton/german, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ZH" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/grass/cataclysmdda, -/area/partyhard/outdoors) -"ZI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ZJ" = ( -/obj/structure/chair/plastic{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ZK" = ( -/obj/item/food/meat/slab/human/mutant/zombie, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ZL" = ( -/obj/structure/rack/cataclysmdda/metal/alt, -/obj/item/clothing/gloves/tackler/offbrand, -/turf/open/floor/plasteel/dark, -/area/partyhard/indoors) -"ZN" = ( -/obj/structure/chair/wood/cataclysmdda{ - dir = 4 - }, -/turf/open/floor/plasteel/tile, -/area/partyhard/indoors) -"ZQ" = ( -/obj/structure/cataclysmdda/kitchencloset, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) -"ZR" = ( -/obj/structure/cataclysmdda/lamp, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ZS" = ( -/obj/structure/chair/wood/cataclysmdda, -/turf/open/floor/plasteel/tile/monofloor, -/area/partyhard/indoors) -"ZT" = ( -/obj/machinery/light{ - base_pixel_y = 0; - dir = 1; - pixel_y = 18 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating/baseturfsand, -/area/partyhard/indoors) -"ZU" = ( -/obj/item/newspaper/old, -/turf/open/floor/plasteel/tile/monofloor/cataclysmdda/alt2, -/area/partyhard/outdoors) -"ZZ" = ( -/obj/structure/bed/maint, -/turf/open/floor/wood/cataclysmdda/parquet, -/area/partyhard/indoors) - -(1,1,1) = {" -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -"} -(2,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(3,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(4,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(5,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(6,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(7,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(8,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(9,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(10,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(11,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(12,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(13,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(14,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -sS -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(15,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(16,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(17,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(18,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(19,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(20,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(21,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(22,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(23,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(24,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(25,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(26,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(27,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(28,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(29,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(30,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(31,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(32,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(33,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(34,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(35,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(36,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -uD -uD -uD -uD -uD -WS -uD -WN -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(37,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -WN -bA -WN -uD -uD -bA -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(38,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WS -aK -VW -JW -VW -VW -VW -JW -VW -VW -bA -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(39,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -VW -Tg -Tg -Tg -uA -uA -rY -uA -VW -WN -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(40,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -VW -be -uA -yl -ug -EP -EP -eE -VW -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(41,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -aM -TP -uA -yl -uA -EP -EP -uA -aV -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(42,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -WN -uD -aM -Tw -uA -yl -uA -uA -vF -uA -aV -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Sm -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(43,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -VW -zm -uA -uA -uA -uA -uA -uA -VW -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(44,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -VW -uA -uA -uA -uA -uA -uA -uA -VW -uD -WN -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(45,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bK -uA -uA -IZ -br -bw -uA -uA -bK -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(46,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -VW -Cq -uA -uA -uA -uA -uA -Xc -VW -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(47,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -uD -bA -VW -VW -VW -VW -uA -VW -VW -VW -VW -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(48,1,1) = {" -PO -NM -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -bA -VW -jB -uA -uA -uA -uA -uA -jB -VW -uD -WN -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(49,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -aM -uA -uA -uA -VW -uA -uA -uA -aV -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(50,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -uD -bA -VW -nL -nL -bl -VW -EP -nL -nL -VW -uD -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(51,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -WN -WN -bA -VW -VW -Ek -VW -VW -VW -Ek -VW -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(52,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VW -bK -VW -uD -uD -WN -uD -bA -bA -bA -uD -bA -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(53,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VW -aS -VW -sS -WN -WN -uD -WN -uD -bA -uD -bA -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(54,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VW -VW -VW -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(55,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -ax -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(56,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Na -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -ax -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(57,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(58,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(59,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(60,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(61,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(62,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -bA -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -ax -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -ax -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(63,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -bA -uD -bA -bA -bA -bA -uD -uD -uD -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(64,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -sS -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(65,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -bA -uD -bA -bA -uD -bA -bA -bA -bA -bA -bA -uD -uD -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(66,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -bA -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(67,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -bA -bA -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -WS -uD -ax -uD -uD -uD -uD -uD -bA -uD -uD -uD -ax -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(68,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -bA -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(69,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -bA -bA -bA -bA -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -bA -bA -uD -sS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(70,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -bA -uD -uD -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(71,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -WS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -as -sS -sS -sS -uD -uD -bA -bA -bA -bA -uD -bA -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(72,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -bA -uD -bA -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(73,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -ax -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(74,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -bA -bA -uD -uD -bA -uD -uD -bA -bA -bA -bA -bA -WS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -uD -sS -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -eY -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -TS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(75,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -bA -bA -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -TS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(76,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -bA -bA -bA -bA -uD -bA -bA -bA -uD -bA -bA -uD -bA -bA -bA -uD -WS -bA -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -WX -Gl -Nj -Gl -Nj -Gl -Nj -Gl -eF -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -eY -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -TS -uD -uD -uD -uD -uD -uD -TS -uD -uD -uD -uD -uD -uD -uD -uD -uD -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(77,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -WS -bA -bA -bA -bA -uD -WS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -YY -yq -yq -yq -yq -yq -yq -uv -Ju -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -by -by -kS -by -by -by -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(78,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -bA -bA -bA -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -uD -Tz -yq -yq -yq -yq -yq -yq -uv -UE -UE -UE -UE -UE -UE -UE -UE -sS -VW -VW -JW -JW -VW -JW -JW -VW -VW -VW -VW -VW -VW -bK -VW -VW -VW -VW -VW -VW -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Yw -Yw -JW -JW -Yw -JW -Yw -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(79,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -UE -UE -oE -oE -UE -UE -uv -yq -yq -yq -yq -yq -yq -UE -Ar -cw -WO -dc -dc -iJ -UE -sS -VW -HD -Sa -Sa -pf -uA -uA -Dp -VW -qN -bb -HI -VW -lQ -VW -Ob -KB -Tw -yl -VW -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -TS -uD -uD -uD -uD -uD -uD -Yw -Yw -JW -Yw -uA -uA -Pi -SG -nC -uA -CI -Yw -Yw -Yw -Yw -uD -uD -uD -uD -uD -bA -uD -bA -uD -TS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(80,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -UE -UE -UE -iW -jJ -jJ -CK -UE -UE -UE -xp -yq -yq -yq -yq -iN -dc -dc -dc -dc -dc -am -UE -uD -aM -Sa -Sa -Sa -Sa -uA -uA -Tb -VW -VW -bK -VW -VW -uA -bK -uA -uA -uA -LQ -VW -uD -em -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -TS -uD -uD -uD -uD -uD -uD -uD -Yw -Yw -Yw -Lx -uA -bK -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -Yw -uD -uD -uD -uD -uD -uD -TS -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(81,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -sS -bA -bA -bA -aw -bA -bA -bA -aw -sS -VH -sS -sS -sS -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -UE -Cq -uA -uA -uA -uA -Ss -uA -Cq -UE -Oi -yq -yq -uv -Tp -UE -UE -UE -UE -UE -dc -Oh -UE -uD -VW -Yb -jb -Sa -HZ -uA -uA -jB -VW -bb -uA -uA -uA -uA -VW -ib -zm -LS -WW -VW -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -bA -uD -uD -Yw -Yw -Yw -jB -ff -SQ -ru -ff -Bs -uA -uA -uA -uA -Cq -Cq -Cq -uA -uA -Yw -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(82,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -bA -WS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -bA -bA -bA -Aa -Aa -bA -bA -bA -TI -bA -bA -bA -sS -sS -sS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -sS -sS -UE -Cq -uA -uA -uA -EW -bJ -ay -Cq -UE -OH -Yw -Yw -Yw -bY -UE -NX -UE -NX -UE -dc -Cl -UE -uD -VW -VW -VW -VW -VW -VW -bK -VW -VW -uA -uA -VW -VW -VW -VW -VW -VW -VW -VW -VW -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -uD -uD -Yw -EK -uA -uA -ff -ff -ff -ff -ff -ff -uA -uA -ff -ff -ff -ff -Yw -Yw -Yw -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(83,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -ff -JA -ff -ff -ff -ff -ff -ff -ff -JA -ff -bA -VH -sS -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -sS -UE -Cq -uA -uA -uA -Fg -OC -Gi -Cq -UE -UE -Yw -Ow -Yw -UE -UE -iN -UE -iN -UE -dc -TO -UE -uD -VW -lQ -uA -uA -bb -uA -uA -uA -uA -uA -uA -VW -zm -uA -iA -wi -Nf -bb -rZ -VW -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -uD -Yw -ff -lQ -uA -uA -uA -bb -nC -Bs -ff -lQ -uA -ff -TY -tQ -hd -Yw -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -TS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(84,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -bA -ff -KK -UX -gF -UX -tq -GA -GA -vf -ii -ff -bA -sS -sS -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -sS -UE -Cq -uA -FZ -nx -uA -Bj -uA -Cq -UE -ox -uA -uA -uA -uA -iN -dc -Uy -JC -UE -dc -oo -UE -sS -VW -VW -bK -VW -VW -VW -bK -VW -VW -lQ -uA -uA -uA -uA -uA -uA -uA -uA -Tg -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -aM -XE -eE -YP -YP -YP -YP -uA -uA -ff -uA -uA -bK -sJ -tz -XK -oE -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(85,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -sS -VH -bA -ff -tZ -ZD -SV -Bk -MU -uL -JA -uL -Hr -ff -bA -sS -sS -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -sS -UE -Cq -uA -SG -do -GZ -uA -uA -Cq -UE -dB -uA -uA -uA -ay -UE -UE -UE -UE -UE -iN -UE -UE -uD -VW -CI -uA -jB -VW -jB -uA -uA -VW -uA -uA -VW -Tg -Tg -Tg -Tg -uA -uA -oa -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -aM -QR -uA -In -FC -JK -YP -uA -uA -bK -uA -uA -ff -UK -xs -zK -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(86,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -JA -Ak -JA -MU -vh -sD -Bk -NQ -lS -Hr -JA -TI -VH -VH -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -sS -UE -Cq -uA -IZ -bw -uA -uA -uA -uA -uA -uA -IZ -br -br -Og -UE -tN -oe -gE -dc -dc -Fr -UE -uD -aM -uA -uA -cp -VW -QQ -eE -uA -VW -uA -uA -VW -VW -VW -VW -VW -lQ -uA -TP -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -Yw -ff -ff -ff -ff -ff -ff -ff -ff -ff -uA -uA -ff -ff -ff -ff -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(87,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -WS -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -uD -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -Uj -bA -ff -bL -JA -sD -yY -Bk -ZJ -MU -Bk -yk -ff -bA -sS -sS -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -sS -UE -Cq -uA -uA -uA -uA -uA -uA -uM -uA -uA -uA -uA -uA -uA -UE -om -dc -dc -dc -dc -EO -UE -uD -aM -uA -uA -uA -VW -cm -uA -uA -VW -uA -uA -bK -uA -uA -yl -VW -uA -uA -iL -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -bA -uD -uD -Yw -Tg -Tg -Tg -Tg -Tw -MJ -TP -KS -uA -uA -oM -ff -ad -SG -nC -uA -ly -yR -fx -ly -Yw -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(88,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -as -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -ff -OT -ga -Bk -ow -FY -MU -EF -JA -Hr -ff -bA -sS -sS -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -sS -UE -UE -AS -QZ -uA -UE -UE -UE -UE -UE -UE -UE -bK -UE -UE -UE -dc -mb -XM -qY -Tc -Ce -UE -uD -VW -ac -GN -Bs -VW -CI -YS -dU -VW -uA -uA -VW -Kb -zm -Tw -VW -Hc -qX -kW -VW -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -aM -MC -uA -uA -uA -uA -uA -uA -uA -uA -uA -Qd -ff -uA -uA -uA -uA -ly -ly -ly -ly -aV -uD -uD -uD -TS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(89,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -VH -TI -bA -ff -te -JA -QD -Al -Bk -Bk -JA -uL -kk -ff -bA -fC -fC -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -uD -uD -UE -gD -QZ -uA -uA -pg -pJ -Em -yv -kw -uA -uA -uA -uA -UE -uA -QZ -QZ -QZ -QZ -QZ -UE -uD -VW -VW -VW -VW -VW -VW -VW -VW -VW -lQ -uA -VW -VW -VW -VW -VW -VW -VW -VW -VW -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -TS -uD -bA -uD -uD -Yw -ET -on -UY -Hf -yl -yl -yl -uA -uA -uA -uA -ff -uA -uA -uA -uA -ly -ly -ly -ly -aV -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(90,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -WN -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -ff -VU -JA -uB -MU -Yz -JA -LB -bP -kk -ff -bA -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -UE -uA -uA -uA -uA -QZ -uA -QZ -uA -QZ -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -UE -uD -VW -lv -bb -MI -Ow -MI -uA -Bu -VW -uA -uA -VW -Bs -uA -uA -bb -uA -uA -CI -VW -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -bA -uD -Yw -uA -QZ -QZ -QZ -uA -QZ -uA -uA -uA -uA -ru -ff -jB -uA -uM -uA -sc -Cc -YK -Zh -Yw -uD -uD -TS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(91,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -aw -bA -Zd -sN -uL -aL -Er -Bk -uT -zi -JA -kk -sP -aw -aw -fC -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -UE -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -fi -fi -ru -UE -uD -aM -uA -uA -YP -YP -YP -uA -uA -bK -uA -uA -bK -uA -uA -ug -EP -eE -uA -uA -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -bA -uD -uD -aM -ze -uA -ay -uA -uA -uA -uA -uA -uA -uA -uA -ff -ff -ff -ff -bK -ff -ff -Yw -Yw -Yw -uD -uD -TS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(92,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -WS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Na -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -bA -bA -ff -GX -FL -FL -UM -SF -FL -FL -FL -dl -ff -bA -uD -fC -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -UE -EP -at -ay -UE -EW -EP -sG -UE -EW -qq -Rv -ay -UE -gD -QZ -uA -uA -BH -fi -uA -UE -uD -aM -CI -uA -YP -YP -YP -uA -Cq -VW -uA -uA -VW -uA -uA -ug -EP -eE -uA -uA -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -uD -Yw -ww -uA -It -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -XQ -uA -uA -EP -Yw -uD -uD -uD -uD -TS -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(93,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WS -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -bA -bA -ff -ff -Zd -ff -ff -JA -ff -ff -JA -ff -ff -Uj -fC -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -bA -UE -IZ -br -Rl -UE -gU -br -ra -UE -gU -br -dz -Og -UE -gD -uA -uA -uA -fi -Bm -uA -UE -uD -aM -zo -uA -YP -YP -YP -uA -tV -VW -bK -Ek -VW -Cq -uA -ug -EP -eE -uA -uA -aV -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -bA -uD -Yw -RX -uA -Gi -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -EP -aV -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(94,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -bA -aw -Uj -bA -bA -bA -bA -bA -bA -bA -bA -bA -aw -bA -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -uD -uD -UE -UE -oE -UE -UE -UE -oE -UE -UE -UE -oE -UE -UE -UE -gD -QZ -uA -uA -fi -fi -uA -UE -uD -VW -gP -bl -vl -XO -OL -EP -bR -VW -YB -Ve -VW -Cq -uA -uA -uM -uA -uA -Bs -VW -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -eY -uD -uD -uD -Yw -yh -uA -uA -uA -uA -uA -NH -uA -uA -uA -uM -uA -uA -uA -uA -uA -uA -gJ -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(95,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -bA -bA -bA -uD -bA -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -aw -uD -fC -bA -bA -fC -Ze -uD -uD -uD -fC -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -uD -iB -yq -yq -yq -iB -yq -yq -yq -iB -yq -yq -yq -aO -UE -uA -uA -uM -uA -uM -uA -uA -UE -uD -VW -VW -Ek -Ek -VW -Ek -Ek -VW -VW -by -by -VW -VW -Ek -Ek -VW -Ek -Ek -VW -VW -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -uD -uD -uD -Yw -Yw -Yw -Ek -Ek -Yw -bK -Yw -Ek -Ek -Yw -Yw -Yw -Yw -Yw -Ek -Yw -Yw -Yw -Yw -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(96,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -bA -uD -uD -bA -bA -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -fC -uD -oO -oO -ZU -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -uD -aO -yq -yq -yq -aO -yq -yq -yq -aO -yq -yq -yq -aO -UE -UE -oE -UE -bK -UE -oE -UE -UE -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -by -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -TS -bA -uD -uD -bA -uD -uD -uD -uD -uD -UD -by -UD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(97,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -aO -yq -yq -yq -aO -yq -yq -yq -aO -yq -yq -yq -aO -uD -uD -uD -Ec -oO -Ec -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -by -by -by -by -by -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -bA -uD -bA -bA -bA -uD -uD -uD -by -uD -bA -uD -bA -bA -uD -uD -uD -bA -bA -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(98,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -aO -yq -yq -yq -aO -yq -yq -yq -aO -yq -yq -yq -aO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -uD -UL -uD -uD -by -by -by -by -by -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -Bo -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -by -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(99,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -aO -yq -yq -yq -aO -yq -yq -yq -aO -yq -yq -yq -aO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(100,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -bA -bA -bA -uD -bA -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -aO -yq -yq -yq -aO -yq -yq -yq -aO -yq -yq -yq -aO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(101,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -bA -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -fO -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -ZU -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(102,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -bA -sS -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -bA -uD -uD -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Bx -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(103,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WS -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(104,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -zR -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(105,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -sS -WN -sS -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(106,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -fh -yq -yq -yq -yq -pT -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(107,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -bA -bA -uD -bA -WN -uD -uD -sS -sS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(108,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -WN -uD -uD -bA -uD -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(109,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(110,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -bA -bA -bA -WS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(111,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -mG -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(112,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -WF -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(113,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -af -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(114,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -bA -bA -uD -bA -uD -uD -uD -bA -bA -bA -bA -zt -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -AL -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(115,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -WN -uD -WS -uD -uD -WN -WS -uD -uD -uD -uD -uD -uD -uD -uD -bA -WN -uD -uD -uD -bA -bA -uD -bA -uD -uD -bA -bA -uD -WN -uD -WN -uD -WS -bA -WN -xP -uD -uD -WS -uD -uD -uD -uD -bA -uD -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -WN -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -WN -uD -uD -WN -uD -WN -uD -WN -uD -uD -uD -bA -uD -uD -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -rJ -AL -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(116,1,1) = {" -PO -sS -sS -sS -sS -sS -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -AC -AC -RE -EN -AC -Jy -bA -uD -uD -uD -WN -bA -WN -uD -WS -uD -uD -WN -WS -uD -uD -uD -WN -uD -uD -uD -uD -bA -WS -uD -WN -KO -WN -uD -uD -uD -WN -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -ff -ff -YC -YC -YC -ff -ff -ff -YC -YC -ff -ff -ff -ff -ff -YC -ff -ff -ff -ff -uD -bA -bA -bA -uD -bA -uD -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -bA -bA -bA -uD -rJ -bA -bA -bA -bA -bA -bA -bA -uD -bA -rJ -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(117,1,1) = {" -PO -sS -sS -sS -sS -sS -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -PN -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -bA -bA -WN -uD -WS -uD -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -WN -YC -ud -dc -Ce -dc -wF -ff -wk -Iu -uA -PC -ff -JV -PL -dc -dc -dc -dc -Ua -ff -uD -bA -bA -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -rJ -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(118,1,1) = {" -PO -sS -sS -sS -sS -sS -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -Yw -JW -JW -JW -Yw -Yw -JW -JW -JW -JW -Yw -Yw -Yw -Yw -Yw -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -ff -JW -JW -ff -ff -ff -JW -JW -ff -ff -ff -ff -ff -ff -ff -nK -uD -uD -uD -uD -uD -uD -uD -uD -ff -Hu -CL -kN -Hu -qw -uA -uA -ff -KP -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -As -AA -dc -dc -Ce -dc -dc -ff -He -uA -uA -uA -ff -NK -dc -dc -dc -dc -dc -Ub -ff -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -uD -uD -sS -sS -sS -sS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(119,1,1) = {" -PO -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Yw -oN -bb -rO -an -RL -ff -Sw -wL -BQ -ff -Bs -uA -uA -uA -uA -uA -CI -Pi -SG -jH -Yw -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -Tx -bG -tQ -us -fg -uk -WT -us -so -ff -Lw -XJ -ok -ff -iy -bA -uD -bA -uD -uD -uD -bA -WN -ff -lQ -uA -uA -uA -uA -uA -uA -tY -tQ -ff -qd -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -AJ -dc -dc -Ce -oF -dc -ff -Hf -uA -nC -mp -ff -NO -dc -dc -dc -dc -dc -Ue -ff -uD -WS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(120,1,1) = {" -PO -sS -sS -sS -sS -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -Yw -Yp -QZ -Ym -uA -iD -ff -KF -tQ -Sw -ff -lQ -uA -uA -uA -uA -uA -uA -uA -uA -uA -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -uk -yB -tQ -tQ -gp -ag -OV -tQ -tQ -tY -tQ -tQ -tQ -ff -uW -uD -WN -uD -uD -uD -uD -bA -uD -ff -uA -uA -QZ -uA -uA -gg -uA -ff -hd -ff -bD -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -oO -AK -dc -dc -Ce -DM -dc -ff -yl -uA -JL -QZ -ff -NR -dc -hF -dc -XT -dc -PM -ff -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(121,1,1) = {" -PO -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -Yw -LD -uA -Ja -uA -RL -ff -BI -PQ -tQ -TX -QZ -uA -rY -eS -Mi -uA -uA -uA -uA -uA -Yw -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -aO -aO -aO -aO -EJ -ff -IW -jV -tQ -tQ -tQ -tQ -tQ -tQ -tQ -ff -tY -ff -tY -ff -HY -uD -uD -bA -bA -WN -WN -bA -uD -ff -mK -mK -yl -mK -mK -pW -uA -ff -ff -ff -sW -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -As -AA -dc -dc -Ce -Ce -dc -ff -Tw -uA -uA -uA -ff -ff -ff -ff -iN -ff -ff -ff -ff -AC -AC -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(122,1,1) = {" -PO -sS -sS -sS -sS -uD -WN -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -Yw -cv -uA -Xu -uA -bk -ff -mn -tQ -tQ -LF -QZ -uA -ug -Ph -Mi -uA -uA -uA -uA -uA -bK -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -iI -oO -oO -yq -yq -yq -yq -Xx -ff -BV -bG -tQ -tQ -tQ -tQ -tQ -tQ -tQ -ff -wK -ff -UV -ff -oO -Xv -uD -uD -uD -uD -uD -uD -uD -ff -VO -KR -KR -KR -KR -KR -wU -KR -VO -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -YC -AP -dc -dc -dc -dc -ff -ff -ff -bK -ff -ff -dc -dc -dc -dc -dc -dc -dc -ff -ih -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(123,1,1) = {" -PO -sS -sS -sS -uD -uD -WS -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -Yw -Bz -uA -NT -uA -RL -ff -Sw -tQ -tQ -Cj -QZ -uA -ug -Bh -Mi -uA -uA -uA -uA -Pq -Yw -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -ff -uk -yB -tQ -tQ -tQ -tQ -tQ -tQ -uC -ff -ff -ff -ff -ff -nK -bA -uD -WN -uD -bA -bA -WN -uD -ff -Sx -da -da -da -da -zA -rT -ve -Un -ff -OY -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -xH -ff -AU -dc -dc -dc -dc -iN -dc -dc -dc -dc -iN -dc -dc -dc -dc -dc -dc -dc -iN -oO -oO -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(124,1,1) = {" -PO -sS -sS -sS -uD -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -bA -bA -uD -Yw -RQ -uA -TB -uA -RL -ff -tQ -tQ -tQ -tQ -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -aV -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -IW -qI -tQ -tQ -lt -tQ -tQ -tQ -so -ff -eH -gK -Wc -ff -kG -bA -uD -bA -uD -uD -WN -uD -WS -ff -Xl -Ck -Ac -Ac -Ac -Ac -Ac -cx -Rz -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -YC -Bp -dc -dc -dc -dc -iN -dc -XT -dc -dc -iN -dc -dc -dc -XT -dc -dc -DM -ff -ih -oO -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(125,1,1) = {" -PO -sS -sS -sS -uD -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -uD -uD -Yw -Cd -uA -uA -uA -uA -bK -tQ -tQ -pP -ff -uA -uA -uA -uA -uA -uA -EW -uA -uA -GZ -aV -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -Tx -gf -tQ -tQ -Ih -tQ -tQ -tQ -Vn -ff -ff -vw -ff -ff -oO -bA -uD -bA -uD -uD -uD -bA -uD -ff -ff -tH -AF -ff -ff -ff -AF -pq -ff -ff -ih -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -YC -Bp -dc -dc -dc -Ed -ff -ff -ff -iN -ff -ff -ff -iN -ff -ff -ff -ff -ff -ff -bA -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(126,1,1) = {" -PO -sS -sS -sS -uD -uD -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -Yw -wn -uA -uA -Py -tE -ff -Mq -TF -Ru -ff -lQ -uA -uA -uA -uA -uA -Fe -uA -uA -Cq -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -aO -aO -aO -aO -oO -ff -uk -zq -tQ -tQ -EY -tQ -tQ -tQ -tQ -uw -mx -gK -gK -ff -ih -oO -WN -uD -uD -uD -uD -uD -KO -ff -QJ -tH -AF -Ps -ff -ml -AF -pq -wU -KL -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -YC -Bp -dc -dc -dc -Ee -ff -kl -tQ -tQ -LG -ff -ua -dc -dc -ff -RU -rP -Lp -ff -bA -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(127,1,1) = {" -PO -sS -sS -sS -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -Yw -ff -ff -bK -ff -ff -ff -tQ -ff -ff -ff -uA -uA -uA -uA -uA -uA -Fe -uA -uA -Cq -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -ff -cs -pZ -tQ -tQ -lY -tQ -tQ -tQ -tQ -uw -gK -gK -gK -tY -oO -oO -uD -bA -bA -WN -uD -uD -uD -ff -OO -tH -AF -ZC -ff -ml -AF -pq -wU -KL -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -ff -Bq -BN -dc -XT -Ep -ff -Gt -tQ -tQ -LN -ff -dc -dc -dc -iN -tQ -tQ -Ui -ff -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(128,1,1) = {" -PO -sS -sS -sS -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -aM -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uM -uA -hO -uA -Fg -uM -uA -Cq -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -ff -Tx -bG -tQ -tQ -Pt -tQ -tQ -Tx -bG -ff -MP -gK -Fn -ff -ih -oO -uD -uD -uD -uD -WN -WN -WS -ff -ff -tH -AF -ff -ff -ff -AF -pq -XC -ff -ih -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -ff -ff -ff -iN -ff -ff -ff -Hg -tQ -tQ -LN -ff -Uw -dc -dc -ff -tQ -tQ -Uq -ff -sS -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(129,1,1) = {" -PO -sS -sS -sS -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -Yw -ff -ff -bK -ff -ff -ff -ff -ff -bK -Yw -Yw -Yw -Yw -bK -Yw -Yw -Yw -Yw -Yw -Yw -Yw -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -uk -yB -tQ -tQ -MO -tQ -tQ -gT -wE -ff -Ng -gK -Fn -ff -oO -bA -uD -WN -uD -bA -uD -uD -uD -ff -OO -tH -AF -AF -bd -AF -AF -pq -wU -oE -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -AM -ff -Ew -tQ -us -wL -ff -Hh -tQ -tQ -Mg -ff -Uw -dc -oF -ff -Dz -Ta -qL -ff -sS -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(130,1,1) = {" -PO -sS -sS -sS -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -Yw -QR -uA -uA -ff -pI -ff -YD -ff -dc -Yw -WN -uD -uD -by -uD -uD -WN -uD -uD -WN -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -RD -IW -yd -tQ -tQ -pa -tQ -tQ -IW -Qn -ff -ke -gK -bC -ff -oO -uD -bA -uD -WN -uD -bA -WN -uD -ff -QJ -tH -AF -AF -AF -AF -AF -pq -wU -oE -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -bA -ff -tQ -tQ -tQ -tC -ff -Hl -Iv -dC -rl -ff -ZS -dc -oF -ff -RY -tQ -Fc -ff -sS -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(131,1,1) = {" -PO -sS -sS -sS -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -Yw -OD -eE -uA -Bs -uA -ff -om -dc -dc -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -aO -aO -aO -aO -oO -ff -Tx -bG -tQ -tQ -Kq -tQ -tQ -Tx -bG -ff -Zi -gK -rq -ff -oO -WS -uD -uD -bA -bA -WN -uD -uD -ff -ff -tH -AF -AF -nh -AF -AF -pq -wU -oE -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -NW -dc -Vw -ff -ES -tQ -Iw -ff -sS -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(132,1,1) = {" -PO -sS -sS -sS -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -Yw -QQ -uA -uA -uA -uA -ff -sq -ff -dc -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -ff -uk -yB -tQ -tQ -Ae -tQ -tQ -yB -uk -ff -dZ -gK -XR -ff -oO -uD -bA -uD -uD -uD -uD -bA -uD -ff -OO -tH -AF -ff -ff -ff -AF -pq -XC -ff -ih -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -ff -ug -BR -Cg -eE -Nr -ff -KV -KV -oI -dc -iN -dc -dc -QI -ff -Kf -Tl -Ds -ff -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(133,1,1) = {" -PO -sS -sS -sS -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -Yw -DN -uA -uA -uA -uA -ff -ff -ff -Cl -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -pO -ff -IW -jV -tQ -tQ -zE -tQ -tQ -IW -jV -ff -wV -gK -pA -ff -oO -WN -uD -uD -uD -uD -bA -uD -uD -ff -QJ -tH -AF -kt -ff -QJ -AF -pq -wU -KL -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -ff -Br -BU -uA -uA -uA -bK -dc -dc -dc -dc -iN -dc -dc -QK -ff -XF -tQ -nu -ff -uD -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(134,1,1) = {" -PO -sS -sS -sS -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -aM -Bs -uA -uA -uA -oh -ff -PG -dc -dc -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -Dw -oE -ui -tQ -tQ -tQ -tQ -tQ -tQ -tQ -tQ -ff -ch -gK -Tt -ff -oO -bA -bA -uD -bA -uD -uD -uD -WN -ff -ff -tH -AF -ZC -ff -ml -AF -pq -wU -KL -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -ff -Bt -uA -uA -DN -Eq -ff -pv -dd -dd -dd -ff -dc -dc -QP -ff -ND -tQ -Vn -ff -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(135,1,1) = {" -PO -sS -sS -uD -uD -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -aM -Pi -uA -uA -uA -uA -ff -DM -dc -dc -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -oE -tQ -tQ -tQ -tQ -tQ -tQ -tQ -tQ -Gj -ff -ff -vw -ff -ff -oO -uD -uD -WN -uD -uD -uD -uD -uD -ff -OO -tH -AF -ff -ff -ff -AF -pq -ff -ff -ih -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -ff -ff -ff -ff -ff -ff -ff -ff -YC -YC -ff -ff -ff -YC -ff -ff -ff -ff -ff -ff -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(136,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -Yw -CI -uA -uA -uA -uA -ff -jx -rm -iR -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -Bx -yq -yq -yq -yq -yq -oO -oO -oO -aO -aO -aO -aO -oO -tY -tQ -tQ -tQ -tQ -tQ -tQ -tQ -tQ -tQ -ff -rN -gK -IX -ff -oO -WS -uD -uD -bA -bA -WN -uD -uD -ff -hw -Gn -Hi -Hi -Hi -Hi -Hi -XZ -hw -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -WS -QW -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(137,1,1) = {" -PO -sS -sS -uD -WN -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -Yw -uA -uA -uA -uA -uA -ff -Dm -AH -ek -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -oE -tQ -tQ -tQ -fg -yB -NI -fg -yB -NI -ff -kp -gK -Ms -ff -oO -uD -uD -uD -uD -uD -uD -uD -uD -ff -XC -Te -sw -jE -ff -jE -sw -Te -XC -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -WN -uD -WN -uD -uD -uD -bA -uD -WN -uD -uD -uD -uD -bA -WN -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(138,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -Yw -Bs -lL -BE -BE -jB -ff -lE -AH -ko -Yw -by -by -by -by -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -oE -GO -so -so -Jt -uk -OV -Qr -uk -OV -ff -pE -gK -Hj -ff -oO -uD -bA -uD -WN -uD -bA -uD -bA -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -oO -oO -oO -oO -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(139,1,1) = {" -PO -sS -sS -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Ek -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -Bo -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -pO -ff -oE -oE -ff -ff -ff -Ek -Ek -ff -ff -ff -ff -ff -ff -ff -oO -uD -uD -uD -uD -uD -uD -WN -bA -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -tJ -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -bA -uD -uD -uD -sS -uD -uD -uD -bA -uD -uD -uD -uD -bA -KO -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(140,1,1) = {" -PO -sS -sS -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -oO -PN -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -NU -uD -WN -uD -bA -uD -bA -AR -bA -uD -uD -uD -WN -uD -uD -bA -em -WN -uD -bA -uD -WN -uD -uD -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -sS -sS -sS -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(141,1,1) = {" -PO -sS -sS -uD -uD -uD -uD -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -xV -xV -xV -xV -xV -WK -WN -uD -uD -uD -bA -bA -uD -uD -bA -uD -bA -uD -Ly -IE -WS -uD -uD -bA -bA -WN -uD -uD -uD -uD -vW -uD -uD -uD -WS -uD -uD -uD -uD -uD -WN -bA -UA -uD -uD -uD -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -wy -sS -sS -sS -uD -uD -bA -Ix -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(142,1,1) = {" -PO -sS -sS -uD -uD -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -KO -WN -uD -WS -uD -uD -WN -WS -uD -uD -uD -bA -uD -WS -bA -uD -uD -bA -uD -uD -uD -uD -KO -uD -uD -uD -uD -uD -uD -WS -uD -uD -uD -WN -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -bA -uD -uD -sS -uD -bA -bA -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -AR -uD -uD -uD -sS -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(143,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -bA -uD -bA -uD -Ys -uD -WS -WN -bA -uD -bA -uD -WN -WS -uD -Ys -uD -bA -uD -WN -uD -bA -cc -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -aE -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -cc -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(144,1,1) = {" -PO -sS -sS -WN -uD -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -bA -bA -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -WN -uD -bA -uD -WS -KO -uD -uD -bA -uD -uD -WN -bA -KO -bA -uD -WN -WS -uD -uD -uD -bA -uD -WN -uD -bA -uD -bA -uD -uD -KO -bA -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -WN -WN -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -GQ -oO -uD -uD -uD -uD -bA -bA -uD -uD -wy -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -zx -uD -uD -uD -uD -uD -uD -uD -uD -uD -rJ -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(145,1,1) = {" -PO -sS -sS -uD -uD -WN -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -bA -bA -WS -uD -WN -uD -uD -WS -uD -bA -WN -bA -uD -uD -WS -uD -uD -bA -uD -WN -uD -bA -uD -uD -uD -uD -WS -uD -uD -uD -WN -uD -uD -KO -uD -uD -bA -WN -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -uD -uD -uD -uD -uD -vn -uD -uD -bA -uD -bA -uD -uD -uD -sS -sS -sS -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(146,1,1) = {" -PO -sS -sS -uD -uD -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -WN -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -bA -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Ib -oO -oO -bA -uD -uD -bA -uD -uD -bA -uD -uD -WN -uD -uD -uD -uD -WN -WN -uD -uD -uD -uD -uD -uD -bA -bA -bA -uD -uD -uD -uD -WN -bA -uD -uD -WN -bA -uD -bA -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -Ly -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Ix -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -bA -WN -uD -uD -uD -uD -uD -vD -uD -uD -uD -zx -bA -WS -wy -uD -uD -uD -Ly -uD -uD -uD -uD -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(147,1,1) = {" -PO -sS -sS -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -WN -by -cE -Gq -Gq -xV -xV -xV -xV -xV -xV -Gq -Gq -xV -xV -xV -hZ -by -uD -At -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -Th -Th -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -aE -uD -uD -uD -WN -Ly -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -bA -WN -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -bA -uD -sS -sS -sS -uD -WN -uD -uD -AR -uD -uD -cc -uD -uD -yy -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -WN -uD -uD -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(148,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -by -Yw -Yw -JW -Yw -Yw -Yw -JW -Yw -Yw -Yw -JW -Yw -Yw -Yw -Fu -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Tj -ix -mr -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -WN -WS -uD -WN -uD -uD -uD -uD -WN -uD -WN -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -WN -uD -uD -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -JW -JW -Yw -Yw -uD -uD -Ix -bA -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -cc -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -rJ -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(149,1,1) = {" -PO -sS -sS -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -by -Yw -Jp -xJ -Fq -ff -GB -dc -uo -ff -My -xE -VJ -Nb -Yw -Fu -by -JD -WN -oO -oO -oO -yq -BS -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -FN -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -oO -yq -yq -uD -uD -uD -WS -uD -WN -uD -uD -uD -WN -uD -bA -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -Yw -Cq -Jb -JM -Tb -ki -ff -QR -uA -uA -Sn -Yw -uD -bA -uD -uD -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -WS -Ax -uD -uD -zx -uD -uD -uD -bA -uD -uD -uD -AL -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(150,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -by -aM -GY -hv -GY -ff -ff -dc -Zb -ff -uA -hy -nt -nt -Yw -Fu -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Jv -WN -ff -uR -uA -uA -uA -uA -ha -gR -id -tc -kN -jf -DR -pF -ff -EI -tQ -wL -ff -oO -yq -yq -uD -uD -bA -uD -uD -uD -KO -uD -uD -uD -uD -uD -cc -uD -WN -uD -KO -uD -uD -uD -bA -bA -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -bA -uD -Yw -Yw -uA -Pi -uA -nC -uA -bK -uA -Sa -Sa -kW -Yw -uD -uD -uD -uD -uD -uD -uD -WN -uD -Yw -Yw -Yw -Bb -Yw -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -zx -uD -uD -uD -uD -uD -uD -cc -bA -uD -uD -uD -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(151,1,1) = {" -PO -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -kq -AC -by -Yw -Xw -GY -GY -et -ff -NW -Zo -ff -uA -nt -MD -uq -Yw -Td -by -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Jv -WN -YC -uR -uA -yl -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -tY -tQ -tQ -Vn -ff -oO -yq -yq -WN -uD -zx -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -bA -uD -aM -EW -uA -uA -uA -uA -uA -ff -lQ -Sa -Sa -uA -Yw -uD -uD -uD -uD -uD -uD -uD -bA -uD -Yw -pF -Jq -uA -IY -uA -IY -IY -pC -QQ -Yw -uD -uD -Ax -bA -uD -WN -uD -uD -uD -uD -uD -uD -uD -rI -uD -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(152,1,1) = {" -PO -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -Fu -by -by -Yw -vQ -hM -GY -jB -ff -dc -lZ -ff -bK -ff -Yw -Yw -Yw -ZH -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -YC -BZ -QZ -Lh -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -ff -ff -ff -ff -xw -yq -yq -uD -uD -WN -uD -uD -uD -WS -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -il -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -WN -uD -uD -aM -Tf -uA -IZ -br -bw -uA -ff -uA -ik -ik -jB -Yw -bA -uD -bA -uD -uD -uD -AR -uD -uD -Bb -uA -Is -Jq -uA -Jq -Kj -uA -Jq -vF -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(153,1,1) = {" -PO -sS -sS -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -Fu -by -by -Yw -ff -ff -bK -ff -ff -iN -ff -ff -uA -Xc -aV -Xs -AN -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -YC -uR -uA -yl -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -bK -bb -bq -ff -oO -yq -yq -uD -bA -Yw -Yw -Yw -JW -Yw -Yw -Yw -JW -Yw -JW -Yw -Yw -Yw -JW -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -AR -uD -uD -uD -uD -uD -aM -Fe -uA -uA -uA -uA -uA -ff -bK -ff -ff -ff -Yw -by -by -uD -uD -uD -uD -uD -uD -uD -Yw -hc -uA -Jq -uA -uA -dp -pC -Kk -QQ -Yw -Yw -Yw -Yw -oi -Yw -Yw -Yw -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(154,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -Qa -Yw -bK -Yw -rs -GV -uA -Tg -Tg -uA -uA -Cg -uA -uA -bK -Ve -Ve -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -ff -CH -uA -uA -uA -uA -uA -XB -kC -uA -kN -iZ -uA -uA -ff -ff -ff -ff -ff -oO -yq -yq -WS -uD -Yw -Tg -Md -Tw -Tg -ff -lA -uA -IM -uA -wI -ff -bU -PE -wL -ff -st -us -xm -ff -kd -Sd -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -BY -cc -uD -aM -Fg -uA -uA -uA -uA -uA -ff -tQ -tQ -UN -bU -Yw -by -by -uD -uD -uD -zx -uD -WS -uD -Yw -pC -mJ -IY -Jq -Is -uA -QQ -vF -mv -ff -QQ -QQ -Jq -uA -ff -PG -BP -lO -Yw -uD -uD -Ly -uD -uD -uD -uD -uD -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(155,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -aM -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -FZ -nx -Yw -Yw -Yw -Gq -Bd -Gq -hZ -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Jv -FN -ff -YC -YC -YC -ff -lQ -uA -kN -kN -uA -HX -kN -uA -uA -im -gH -dc -fr -ff -oO -yq -yq -uD -WN -aM -Tg -uA -uA -Tg -ff -LY -Sa -Sa -Sa -HZ -ff -MV -wo -uC -ff -ff -bK -ff -ff -uA -uA -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -wy -uD -bA -uD -uD -Yw -Yw -uA -uA -uA -uA -uA -ff -Qe -tC -kf -MV -aV -by -uD -ax -uD -uD -uD -uD -uD -uD -Yw -ff -ff -ff -ff -uA -uA -ff -ff -ff -ff -vF -uA -uA -Jq -nZ -jo -QY -fX -Yw -uD -uD -uD -WN -uD -WN -uD -uD -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(156,1,1) = {" -PO -sS -WN -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -Yw -lp -TP -df -Tg -Tg -Qc -MR -rY -uA -uA -uA -uA -bK -uA -Yw -At -At -At -Td -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -lf -yL -yL -QN -yq -Tp -YC -uA -uA -YA -kN -uA -CM -bv -uA -uA -im -rR -dc -tp -ff -oO -yq -yq -WN -bA -Yw -TP -uA -uA -Ls -ff -kW -Sa -Sa -Sa -vp -ff -ot -wx -tC -ff -jB -uA -kW -nC -uA -uA -aV -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -sl -uD -uD -uD -uD -uD -uD -Yw -lQ -uA -vF -uA -ru -ff -ff -ff -ff -ff -Yw -YB -uD -bA -uD -uD -uD -bA -uD -uD -Yw -jB -kW -aA -ff -Kj -Fd -uA -yZ -yb -nx -Jq -uA -Jq -uA -ff -ff -ff -ff -Yw -uD -uD -uD -bA -uD -bA -uD -uD -AL -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -hL -rJ -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(157,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Yw -ff -ff -ff -ff -ff -ff -ff -uS -eE -uA -ww -uA -ff -Fk -Yw -uD -WS -WN -Pe -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -pO -YC -uA -uA -kN -GT -uA -kh -mD -uA -uA -im -Fb -dc -DL -ff -oO -yq -yq -WN -uD -aM -Tg -uA -uA -yl -ff -uA -Sa -yC -Sa -Sa -ff -ff -bK -ff -ff -kg -Sa -Sa -Sa -Sa -Bs -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WN -uD -WN -uD -uD -uD -Yw -uA -Jd -JN -uA -kY -ff -Qo -QT -Tk -bU -aV -by -uD -uD -uD -uD -uD -uD -uD -uD -Yw -IY -Jq -Jq -ff -uA -IY -uA -Jq -uA -Jq -Jq -HV -Jq -uA -ff -Tg -Tg -Tg -Yw -uD -uD -wy -uD -bA -uD -uD -bA -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(158,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -Yw -Tw -TP -ST -Tg -Tg -Rh -ff -ff -ff -ff -ff -ff -ff -ff -Yw -HJ -uD -uD -Td -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -nQ -el -uA -uA -uA -uA -uA -uA -uA -uA -uA -im -EQ -dc -ph -ff -oO -yq -yq -uD -WN -Yw -Sy -uA -uA -Ft -ff -Cq -uf -nl -My -uA -bK -uA -uA -uA -bK -uA -Sa -Sa -Sa -Sa -uA -aV -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -uD -uD -Yw -Yw -uA -ug -JR -Mi -uA -bK -tQ -tQ -UN -MV -Yw -bK -Yw -Yw -uD -uD -Ly -uD -uD -zx -Yw -dp -Jq -nV -ff -dp -Jq -Jq -EP -hu -uA -Jq -Jq -uA -IY -uA -Jq -Jq -Pz -Yw -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(159,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -aM -uA -uA -uA -uA -uA -uA -ug -nk -eE -TU -uA -uA -bK -Qg -Yw -WN -JD -WS -Td -oO -oO -oO -yq -yq -yq -yq -aO -aO -BB -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -nQ -el -uA -uA -uA -uA -uA -uA -uA -uA -uA -im -sh -dc -JP -ff -oO -yq -yq -WN -bA -Yw -vV -uA -uA -uA -ff -ff -ff -ff -ff -ff -ff -uA -uA -Bs -ff -Bs -QQ -LY -LY -QQ -Bs -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -bA -uD -uD -aM -EW -uA -uA -rY -uA -MN -ff -ff -bK -ff -ff -Yw -om -VY -Yw -uD -uD -uD -WN -uD -uD -Yw -RF -IY -Kj -nZ -Fd -uA -Jq -uA -uA -uA -uA -uA -Jq -Jq -uA -uA -uA -sE -Bb -uD -uD -uD -uD -uD -uD -AR -uD -uD -uD -bA -bA -bA -bA -bA -bA -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(160,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -Yw -kg -fA -QZ -uA -uA -uA -uA -uA -uA -Fg -uA -ww -Yw -Yw -Yw -Oa -we -RE -ZH -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -pO -YC -uA -uA -kN -kN -uA -ie -cG -uA -uA -im -ex -dc -wO -ff -oO -yq -yq -uD -uD -Yw -uA -uA -uA -uA -uA -Cg -uA -Cq -Cq -CI -uA -uA -uA -uA -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -uD -uD -uD -uD -aM -Fe -uA -uA -uA -uA -uA -bK -uA -uA -uA -uA -bK -dc -VY -Yw -uD -uD -bA -uD -uD -uD -Yw -kx -BE -pF -ff -IY -IY -uA -uA -IY -IY -dE -IY -uA -Bs -ff -Tg -Tg -Tg -Yw -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -rJ -bA -bA -bA -bA -rJ -bA -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(161,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -kq -Yw -bK -Yw -Lv -rs -uA -uA -uA -uA -uA -uA -uA -uA -bK -Ve -Ve -by -by -by -by -by -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Tj -wr -wr -IV -yq -Tp -YC -uA -uA -Vv -DJ -uA -Ct -kh -uA -uA -im -ML -dc -Ln -ff -oO -yq -yq -uD -WN -aM -uA -uA -ug -oV -rY -rY -uA -uA -uA -uA -uA -uA -uA -uA -Yw -hq -MI -DT -hr -MI -AV -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -uD -WN -uD -uD -aM -Fe -uA -uA -uA -uA -Tg -ff -lQ -Sa -Sa -uA -Yw -Ur -Wj -Yw -uD -uD -uD -uD -uD -uD -Yw -Yw -Bb -Yw -Yw -Yw -Bb -Yw -Yw -Yw -Bb -Yw -Yw -oi -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -wy -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(162,1,1) = {" -PO -sS -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -Fu -by -by -Yw -ff -ff -bK -ff -ff -iN -ff -ff -uA -Xc -aV -Vd -AN -by -by -by -by -by -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -FN -ff -YC -YC -YC -ff -lQ -uA -OE -kN -uA -cG -CM -uA -uA -im -Wv -dc -mN -ff -oO -yq -yq -WN -WN -aM -uA -uA -EP -EP -EP -EP -uA -uA -uA -nt -nt -nt -nt -nt -bK -MI -MI -MI -MI -MI -MI -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -uD -uD -aM -Fg -uA -LH -uA -nP -TP -ff -uA -Sa -Sa -Sz -Yw -Yw -Yw -Yw -uD -uD -uD -WN -uD -uD -uD -bA -KO -uD -JD -uD -uD -uD -MI -MI -MI -MI -MI -MI -MI -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -bA -sS -sS -sS -bA -sS -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(163,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Td -by -by -Yw -ya -qJ -qJ -ll -ff -dc -Zb -ff -bK -ff -Yw -Yw -Yw -hZ -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -ff -DF -uA -uA -uA -uA -uA -kN -Vv -uA -ia -kN -uA -uA -ff -ff -bK -ff -ff -oO -yq -yq -KO -uD -aM -uA -uA -vF -vF -sy -vF -uA -uA -uA -nt -Mm -nt -nt -lu -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -uD -uD -Yw -Yw -uA -Jf -JY -vK -Tg -ff -My -ik -ik -jB -Yw -uD -uD -uD -uD -uD -uD -uD -Ly -uD -uD -uD -uD -uD -uD -zx -uD -uD -MI -MI -MI -MI -MI -MI -MI -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(164,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Qa -xV -by -Yw -MA -qJ -qJ -jB -ff -dc -lZ -ff -uA -My -Dh -bX -Yw -Fu -by -bA -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -YC -uR -uA -yl -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -lQ -uA -uA -ff -oO -yq -yq -uD -WN -Yw -QQ -uA -uA -uA -uA -uA -uA -uA -uA -nt -dT -nt -nt -WC -Yw -gs -MI -MI -MI -MI -MI -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -Yw -bK -Yw -Yw -Ek -Yw -Yw -Yw -Ek -Ek -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -bA -uD -uD -Ly -uD -Yw -MI -MI -Yw -MI -MI -Yw -uD -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(165,1,1) = {" -PO -sS -WN -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -by -aM -qJ -qJ -Hb -ff -ff -NW -Gc -ff -uA -uA -vF -uA -Yw -Fu -by -JD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Jv -WN -YC -Hz -QZ -Lh -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -bK -uA -uA -uA -ff -xw -yq -yq -WN -WN -Yw -QQ -uA -uA -uA -uA -uA -uA -uA -uA -nt -OK -nt -nt -vJ -Yw -HU -MI -MI -MI -MI -MI -Yw -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -WN -uD -WN -uD -uD -Fu -Ve -UD -Ve -xt -MT -mP -uD -WN -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -WN -bA -uD -uD -bA -WN -At -uD -uD -uD -uD -by -by -uD -uD -HJ -uD -os -uD -ig -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(166,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -by -Yw -qg -qJ -lw -ff -Js -dc -yi -ff -Bs -jB -uA -BE -Yw -Td -by -uD -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -Jv -WN -YC -Kn -uA -yl -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -ug -uA -uA -ff -oO -yq -yq -uD -uD -Yw -Bs -uA -uA -uA -Pi -Tv -jH -hl -uA -nt -Gr -nt -nt -ar -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -oO -oO -oO -yq -yq -yq -yq -vO -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -by -by -by -by -by -Ve -Ve -Ve -Ve -Ve -mP -WN -bA -bA -uD -uD -WN -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -rI -uD -WN -WN -uD -uD -uD -JD -uD -Ax -by -by -uD -WN -uD -uD -Ax -uD -At -uD -sS -sS -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(167,1,1) = {" -PO -sS -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -WN -by -Yw -Yw -Ek -Yw -Yw -Yw -Ek -Yw -Yw -Ek -Yw -Yw -Yw -Yw -Td -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -WN -ff -uR -uA -uA -uA -uA -VF -nn -zF -bu -mY -mF -XU -pF -ff -rQ -ED -My -ff -oO -yq -yq -WS -uD -Yw -oE -bK -bK -oE -Yw -Yw -Yw -Yw -Ek -Ek -Ek -Ek -Yw -Yw -Yw -Yw -iH -iH -iH -iH -Yw -Yw -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -yP -by -by -by -by -by -by -by -by -by -by -Oq -uD -WN -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -zx -bA -uD -bA -uD -uD -uD -bA -bA -uD -yy -uD -uD -WN -by -by -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(168,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -by -cI -AC -AC -AC -AC -AC -AC -AC -AC -AC -AC -we -AC -we -ZH -by -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -Jv -FN -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -oO -yq -yq -WN -WN -Yw -Bs -uA -uA -uA -Yw -AC -AC -RE -EN -AC -AC -Uh -uD -WS -uD -uD -by -by -by -by -ig -uD -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -WN -uD -uD -by -by -uD -uD -Fu -by -by -by -by -MY -WU -uD -bA -uD -uD -bA -bA -zx -uD -uD -uD -uD -uD -uD -uD -JD -uD -uD -uD -uD -KO -uD -bA -uD -gm -uD -uD -by -by -bA -vD -uD -bA -bA -uD -uD -os -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(169,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -cb -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -lf -UO -fR -oO -oO -oO -oO -oO -oO -ps -LV -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -WN -uD -Yw -kg -uA -uA -uA -bK -by -by -by -by -by -by -ID -uD -uD -uD -uD -by -by -by -by -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -by -by -WN -bA -Fw -lW -lW -xV -xV -WU -WN -WS -uD -bA -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -JD -by -by -uD -WN -uD -ig -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(170,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bf -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -WN -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -bA -WN -uD -uD -uD -uD -bA -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -Yw -CI -vF -vF -Xc -Yw -zd -zd -xV -rw -by -by -mP -zM -WN -YN -bA -by -by -by -by -uD -zx -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -uD -by -by -uD -bA -WS -WN -uD -WS -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -At -uD -uD -by -by -uD -uD -uD -uD -WN -uD -bA -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(171,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -WN -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -WN -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -bA -uD -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -oO -oO -oO -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -ig -Pe -by -by -mP -uD -uD -uD -WN -by -by -by -by -uD -ig -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -by -by -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -AR -uD -uD -uD -uD -uD -uD -uD -by -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(172,1,1) = {" -PO -sS -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -ZU -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -GQ -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -lf -oO -oO -fR -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -HM -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(173,1,1) = {" -PO -WN -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -WN -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -WN -uD -uD -WN -uD -WN -uD -uD -uD -WN -uD -Na -WN -uD -uD -uD -uD -uD -uD -WN -uD -WN -WN -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -rM -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -ZU -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -bA -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(174,1,1) = {" -PO -bA -uD -uD -bA -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WN -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -WN -uD -uD -uD -rM -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -cB -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -dK -bA -bA -sS -sS -sS -sS -sS -sS -uD -uD -sS -uD -uD -uD -Wb -uD -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(175,1,1) = {" -PO -yq -bA -bA -yq -yq -yq -bA -yq -bA -aa -yq -uD -yq -yq -bA -yq -bA -ak -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -XL -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -ak -bA -yq -yq -xj -dK -uD -xj -bA -uD -xi -xi -uD -uD -uD -mk -HN -uD -SB -uD -bA -uD -Wb -Wb -Wb -Wb -Wb -PO -"} -(176,1,1) = {" -PO -yq -yq -dK -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -dK -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -nD -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -dK -yq -yq -bA -yq -yq -bA -dK -Kw -yq -yq -yq -yq -uH -yq -yq -yq -yq -yq -yq -yq -uD -yq -yq -yq -PO -"} -(177,1,1) = {" -PO -bA -yq -yq -yq -yq -bA -yq -bA -yq -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -bA -dK -yq -yq -yq -Kw -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -PO -"} -(178,1,1) = {" -PO -yq -bA -yq -bA -yq -yq -bA -dK -bA -yq -dK -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -bA -bA -bA -yq -yq -yq -dK -yq -Kw -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -yq -PO -"} -(179,1,1) = {" -PO -aO -yq -dK -aO -dK -aO -yq -bA -aO -aO -aO -yq -yq -aO -aO -aO -bA -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -dK -yq -yq -bA -yq -yq -yq -bA -yq -Kw -Kw -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -PO -"} -(180,1,1) = {" -PO -aO -yq -yq -aO -aO -aO -yq -bA -aO -bA -dK -yq -bA -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -pT -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -lP -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -wz -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -bA -dK -aO -dK -bA -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -bA -yq -aO -aO -aO -yq -bA -PO -"} -(181,1,1) = {" -PO -yq -bA -yq -bA -yq -yq -bA -yq -yq -yq -dK -yq -bA -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -XL -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -aO -yq -dK -aO -aO -bA -Kw -Kw -aO -aO -aO -Kw -Kw -aO -aO -aO -yq -yq -bA -aO -bA -yq -yq -PO -"} -(182,1,1) = {" -PO -bA -yq -dK -yq -yq -bA -yq -bA -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -XL -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -XL -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -nD -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -bA -bA -Kw -yq -yq -yq -yq -Kw -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -PO -"} -(183,1,1) = {" -PO -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -bA -dK -yq -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -bA -yq -yq -dK -yq -dK -yq -Kw -yq -yq -yq -yq -Kw -yq -yq -yq -yq -uD -bA -yq -yq -yq -yq -uD -PO -"} -(184,1,1) = {" -PO -dK -yq -yq -dK -bA -dK -yq -yq -bA -yq -yq -yq -yq -yq -dK -yq -bA -ak -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -BB -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -ak -bA -yq -yq -yq -yq -yq -yq -bA -yq -Kw -yq -yq -yq -yq -Kw -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -PO -"} -(185,1,1) = {" -PO -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WN -WN -uD -uD -uD -WN -WN -uD -uD -uD -rM -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -uD -sS -sS -uD -sS -uD -xj -uD -dK -bA -yq -bA -yq -dK -Kw -yq -yq -yq -yq -Kw -Kw -yq -yq -yq -yq -yq -yq -yq -uD -yq -yq -PO -"} -(186,1,1) = {" -PO -sS -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -Na -uD -WN -WN -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -WN -WN -uD -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -bA -oO -oO -oO -oO -WF -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -uD -bA -uD -sS -sS -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -dK -uD -xj -uD -kR -kR -kR -kR -bA -bA -uD -uD -uD -uD -uD -WS -bA -sS -Wb -Wb -Wb -PO -"} -(187,1,1) = {" -PO -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -Bo -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -bA -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -WN -sS -uD -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(188,1,1) = {" -PO -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WN -uD -WN -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -WN -bA -uD -by -uD -uD -uD -WN -uD -uD -bA -uD -bA -uD -by -uD -uD -uD -bA -uD -uD -by -by -by -by -by -by -by -by -by -by -uD -by -by -by -uD -uD -WS -uD -bA -bA -bA -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -WN -WN -KO -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -QV -QV -uE -QV -uE -Wp -uD -uD -uD -uD -uD -WN -uD -uD -uD -WN -Fu -by -by -mP -uD -uD -uD -bA -uD -WS -Fu -by -by -mP -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -eb -sS -sS -sS -eb -sS -sS -sS -WN -bA -uD -uD -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(189,1,1) = {" -PO -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -WN -WN -WS -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Ax -uD -sj -oO -oO -sj -At -uD -uD -uD -uD -uD -uD -WS -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -uD -uD -uD -uD -uD -uD -by -uD -uD -bA -uD -WS -uD -uD -TS -bA -bA -by -uD -bA -uD -bA -uD -uD -by -uD -uD -yN -by -by -by -by -by -by -yN -uD -by -bA -xA -WN -uD -uD -WS -bA -bA -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -DQ -EZ -Fy -Hm -MI -JZ -ff -QT -Os -ff -WN -bA -bA -uD -uD -bx -uD -WN -uD -uD -uD -bA -uD -uD -bA -uD -Fu -by -by -mP -WS -bA -WS -uD -WS -WS -Fu -by -by -mP -uD -uD -WS -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -bA -bA -bA -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(190,1,1) = {" -PO -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -WN -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -WS -uD -ff -rS -bK -bK -rS -ff -JD -WS -uD -bA -WN -WN -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -Tr -yq -yq -oO -oO -oO -uD -uD -bA -Yw -JW -JW -Yw -by -uD -WS -uD -uD -uD -uD -uD -bA -bA -uD -by -Yw -JW -JW -Yw -uD -uD -by -bA -Yw -Yw -tl -tl -tl -tl -tl -tl -Yw -bA -by -WN -Yw -Yw -JW -JW -JW -JW -Yw -Yw -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -MI -wv -MI -MI -sQ -Ka -ff -tQ -Zk -aV -uD -bA -uD -vn -uD -bx -uD -WN -uD -uD -uD -bA -WN -bA -uD -WS -Fu -by -by -mP -uD -bA -uD -uD -uD -uD -Fu -by -by -mP -bA -uD -WN -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(191,1,1) = {" -PO -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -WN -uD -uD -WS -WN -uD -bA -WN -uD -bA -uD -uD -bA -At -YC -uA -uA -uA -uA -YC -HJ -WN -bA -bA -uD -uD -bA -WN -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WS -uD -Yw -cL -eg -Yw -by -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -by -Yw -pk -qs -Yw -uD -WN -by -bA -Yw -kr -MI -MI -MI -MI -MI -MI -Yw -yj -Ve -rn -Yw -xN -tQ -tQ -tQ -tQ -zu -Yw -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -MI -MI -MI -MI -wv -Lc -ff -Mq -dC -ff -uD -uD -uD -bA -uD -bx -uD -uD -uD -uD -WN -uD -uD -WN -bA -uD -Fu -by -oX -Yw -oE -Yw -Yw -Yw -Yw -JW -Yw -yV -by -mP -uD -uD -uD -uD -bA -WN -bA -uD -uD -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -eb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(192,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -WS -uD -uD -Ax -YC -uM -uA -uA -uM -YC -uD -bA -uD -uD -uD -uD -WN -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -bA -uD -aM -Au -ov -Yw -bK -Yw -JW -JW -Yw -Yw -Yw -Yw -JW -JW -Yw -bK -Yw -ov -Au -aV -uD -bA -by -uD -Yw -rX -MI -MI -MI -MI -MI -MI -Yw -yj -Ve -yj -Yw -tQ -tQ -yu -yu -tQ -me -Yw -WS -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -MI -MI -MI -MI -MI -Kg -ff -tY -ff -ff -uD -uD -uD -uD -uD -bx -uD -uD -uD -uD -WS -uD -uD -uD -uD -uD -Fu -by -by -bK -MU -Qx -Dc -ff -pF -uA -bK -by -by -mP -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(193,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -ff -ff -YC -YC -ff -ff -ff -YC -YC -ff -YC -YC -ff -YC -ff -ff -bK -bK -ff -ff -YC -ff -ff -YC -ff -ff -uD -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -aM -Sg -ov -fl -ov -ov -ov -ho -iE -ff -ho -ZN -ov -ov -ov -ov -fl -ov -Sg -aV -uD -uD -by -uD -Yw -MI -MI -MI -MI -MI -MI -MI -aV -rn -Ve -yj -aM -tQ -tQ -yz -yB -tQ -tQ -aV -bA -bA -oO -oO -oO -yq -fh -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -MI -MI -MI -MI -MI -Kv -ff -lQ -Ov -ff -Lo -by -uD -uD -uD -bx -uD -uD -uD -uD -uD -uD -uD -Yw -Yw -Yw -oE -oE -Yw -Yw -MU -Bk -Yu -ff -uA -uA -Yw -Yw -JW -JW -Yw -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(194,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -ff -uA -uA -uA -uA -uA -ff -uA -rY -ff -uA -rY -ff -ug -uA -XQ -uA -uA -XQ -uA -uA -ff -BU -uA -bb -ff -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -eY -uD -Yw -LW -ov -ov -ov -ov -ho -hW -iG -ff -jX -lU -ov -ov -ov -ov -ov -ov -qt -Yw -TS -uD -by -by -rW -MI -MI -MI -MI -MI -MI -MI -aV -WG -Ve -yj -aM -tQ -tQ -Xi -Xi -tQ -tQ -aV -bA -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -Cb -MI -MI -Ev -MI -MI -MI -MI -bK -uA -uA -bK -by -by -uD -ax -uD -Hn -bA -uD -uD -uD -uD -uD -uD -Yw -bz -gA -MZ -Tg -Tg -CZ -XA -MU -LR -ff -uA -uA -uA -km -Tg -Tw -Cx -Tg -Yw -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(195,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -ff -kg -rY -rY -uA -uA -ff -lQ -EP -ff -lQ -EP -ff -ug -uA -uA -uA -uA -uA -uA -uA -yl -QQ -yM -uA -ff -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -Yw -zW -er -zW -zW -zW -ov -Pn -xT -ff -ku -Xq -ov -ov -zW -zW -zW -zW -zW -Yw -bA -uD -bA -uD -Yw -qy -MI -MI -MI -MI -MI -MI -Yw -rn -Ve -yj -Yw -Mq -tQ -tQ -tQ -tQ -tQ -Yw -WS -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -em -by -BF -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -bK -ff -Lo -by -uD -uD -uD -Hn -bA -bA -uD -uD -uD -uD -uD -oE -ZK -kj -UZ -Uv -vt -gd -Rq -Cn -MU -ff -QQ -uA -uA -uA -uA -uA -uA -TP -aV -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(196,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -WS -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -ff -ug -mq -mq -eE -mp -ff -uA -vF -ff -uA -vF -ff -ug -uA -uA -uA -uA -uA -uA -uA -ff -QQ -uA -uA -ff -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -Yw -ff -ff -ff -ff -gB -ov -ov -ov -ff -Um -ov -ov -ov -nI -ff -ff -ff -ff -Yw -uD -uD -bA -uD -Yw -sB -MI -MI -MI -MI -MI -MI -Yw -wb -Ve -WG -Yw -xO -tQ -tQ -Sw -Sw -Sw -Yw -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -by -WN -ff -Cu -mU -Sa -FB -ff -ze -uA -ay -uA -uA -ff -uD -uD -SA -uD -uD -Hn -bA -WS -WN -uD -uD -uD -uD -Yw -ZQ -RL -jj -zm -qP -RA -Jg -zg -Mk -ff -Fp -QZ -uA -uA -zm -oM -VT -Tg -Yw -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(197,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -ff -ug -mq -mq -eE -uA -ff -bK -ff -ff -bK -ff -ff -tI -uA -uA -tU -uA -uA -uA -uA -ff -uA -uA -uA -ff -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WN -uD -Yw -nN -eE -CI -ff -ff -uA -uA -ff -ff -ff -ff -uA -uA -ff -ff -og -py -qv -Yw -uD -uD -eY -uD -aM -gr -MI -MI -MI -MI -MI -MI -aV -yj -Ve -rn -aM -tQ -tQ -tQ -tQ -tQ -zB -Yw -bA -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -by -bA -aM -oT -Sa -Sa -FS -ff -ww -uA -It -uA -vF -aV -QW -uD -bA -uD -bA -Hn -uD -uD -WS -uD -WN -uD -uD -Yw -ff -ff -ff -ff -SH -tU -MU -gd -Ud -ff -uA -uA -uA -uA -ff -ff -ff -ff -Yw -uD -bA -uD -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(198,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -ff -ug -mq -mq -eE -uA -bK -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -uA -uA -uA -ff -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -aM -uA -uA -uA -ff -La -uA -uA -Cq -ff -Pf -uA -uA -uA -uA -ff -oQ -uA -uA -aV -uD -bA -uD -WS -aM -MI -MI -MI -MI -MI -MI -MI -aV -rn -Ve -rn -aM -tQ -tQ -tQ -tQ -tQ -hd -Yw -bA -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -by -WN -ff -My -DS -Sa -Gk -ff -Hw -uA -Gi -uA -Ox -aV -uD -uD -bA -uD -bA -bx -uD -WN -WN -uD -uD -Ze -uD -Yw -ZR -Bk -Ha -ff -MU -ug -YX -pD -kW -ff -ug -Lk -eE -uA -ff -bl -uA -uA -Yw -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -WN -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(199,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -ff -ug -mq -mq -eE -uA -ff -lQ -uA -uA -uA -uA -uA -uM -uA -uA -uA -uA -uA -uM -uA -ff -pt -kN -uA -ff -uD -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -aM -uA -uA -uA -bK -uA -uA -uA -ox -ff -kB -uA -uA -vt -uA -bK -uA -uA -uA -aV -uD -uD -aE -bA -Yw -qy -tv -uh -un -MI -MI -vb -Yw -rn -Ve -yj -Yw -xX -tQ -tQ -tQ -tQ -vi -aV -bA -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -by -WN -ff -ff -ff -bK -ff -ff -pF -uA -uA -uA -rY -aV -uD -Rs -RW -uD -UB -bx -uD -uD -uD -uD -uD -uD -uD -oE -Bk -ri -Qx -ff -OP -bc -Dy -eE -ff -ff -ug -Si -eE -uA -ff -Ey -uA -uA -aV -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(200,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -ff -ug -mq -mq -eE -mp -ff -bK -ff -ff -bK -ff -ff -ff -ff -tM -yl -yl -yl -ff -uA -ff -lQ -uA -uA -ff -WN -uD -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -Yw -jB -BE -fn -ff -Gv -Sa -Sa -iO -ff -Rt -uA -uA -tU -uA -ff -Ey -jB -CI -Yw -uD -uD -uD -uD -Yw -ff -ff -ff -ff -ff -bK -ff -Yw -rn -Ve -WG -Yw -Mq -tQ -tQ -tQ -tQ -zD -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -by -by -bK -uA -uA -uA -uA -uA -uA -uA -uA -Cq -Cq -ff -uD -Rx -SD -uD -UL -bx -uD -uD -uD -uD -Ze -uD -Ze -Zv -Zv -Bk -sD -ff -Bk -HW -tU -vS -ff -CI -uA -uA -uA -uA -ff -kg -uA -uA -aV -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(201,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -ff -kg -vF -vF -uA -uA -ff -Mq -tQ -ff -Mq -tQ -ff -FG -ff -uA -uA -vF -uA -ff -uA -ff -qf -vZ -uA -ff -bA -uD -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -WN -uD -Yw -ff -ff -ff -ff -gC -Sa -Sa -jc -ff -ff -CI -uA -uA -uA -ff -ff -ff -ff -Yw -bA -uD -bA -eY -Yw -sI -vz -yW -ff -uA -uA -bb -Yw -JW -bK -JW -Yw -tQ -tQ -Mx -yX -yB -ff -Yw -WN -WS -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -BF -ff -ff -bK -ff -ff -ff -ff -ff -uA -ff -ff -ff -uD -RK -SE -uD -uD -Hn -WN -uD -WN -uD -uD -Ze -uD -Yw -ZT -qu -uA -bK -uA -HR -fq -hb -ff -uA -FZ -nx -uA -uA -bK -uA -uA -uA -Yw -uD -uD -WN -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(202,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -ff -uA -uA -uA -uA -tI -ff -hd -tC -ff -hd -tC -ff -uM -bK -uA -uA -uA -uA -ff -bK -ff -lQ -uA -uA -ff -WN -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -Yw -QQ -hj -uA -bK -Sa -Sa -Sa -dw -CI -ff -Cq -tU -uA -uA -nZ -Sa -pG -qS -Yw -uD -bA -WS -uD -aM -sJ -tz -tz -bK -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -QZ -QZ -uA -QZ -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -WN -aE -ff -CB -uA -Cq -Cq -ff -Jh -uA -uA -uA -OF -ff -uD -uD -uD -dJ -uD -Hn -bA -uD -uD -uD -uD -uD -Ze -Yw -ZZ -CA -jB -ff -fq -Fe -Bk -NC -ff -ww -uA -uA -nC -uA -ff -uA -qW -jB -Yw -uD -uD -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -uD -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(203,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -uA -uM -uA -uA -uA -uA -ff -oR -qf -uA -ff -uD -uD -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -WS -aM -QZ -uA -uA -ff -lQ -uA -uA -uA -uA -ff -Cq -uA -uA -uA -ff -Sa -Sa -qU -aV -uD -uD -bA -uD -Yw -UN -xs -zK -ff -ff -bK -ff -ff -wq -uA -uA -ff -uA -Sa -Sa -Sa -Sa -uA -aV -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -aM -kW -Sa -Sa -uA -ff -Jj -uA -uA -uA -Pa -aV -uD -uD -uD -AR -bA -bx -uD -WN -uD -uD -uD -uD -uD -Yw -ff -ff -ff -ff -Cy -Ki -fq -nT -ff -RX -uA -uA -QX -uA -ff -ff -ff -ff -Yw -uD -uD -bA -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(204,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -bA -nJ -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -cD -MI -dx -MI -gO -ff -HE -tY -ma -tQ -TX -ff -Fo -NF -dc -xY -ff -ff -ff -ff -ff -ff -uA -ff -lQ -uA -uA -ff -uD -WN -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -Yw -cM -uA -fs -ff -pF -uA -uA -Cq -Cq -ff -Cq -uA -uA -uA -ff -oY -nG -Ex -Yw -uD -bA -bA -uD -Yw -bK -ff -ff -ff -uA -uA -uA -ff -ff -ff -ff -ff -yf -Sa -Sa -Sa -Sa -zH -Yw -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -aM -nC -Sa -Sa -uA -ff -lQ -uA -uA -uA -Pl -aV -uD -WS -uD -bA -uD -bx -uD -uD -uD -uD -uD -uD -uD -Yw -vm -gl -uA -bK -MU -uA -Bk -DI -ff -Yi -uA -uA -aq -uA -bK -uA -EP -fz -Yw -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(205,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -jF -MI -MI -MI -hE -ff -ff -ff -tQ -tQ -hd -ff -Fx -dc -dc -ZF -ff -Wl -lR -rs -RH -cl -uA -ff -qf -oR -uA -ff -WS -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -bA -uD -uD -Yw -ff -ff -ff -ff -ff -ff -bK -ff -ff -ff -ff -bK -ff -uA -ff -ff -ff -ff -Yw -uD -uD -uD -uD -Yw -Sa -xI -BD -BD -Sa -uA -nC -ff -cO -wA -xy -ff -CI -Sa -Sa -Sa -Sa -uA -aV -uD -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -WN -bA -uD -ff -CC -DV -DV -jB -ff -Jz -zm -TP -Tw -Tg -ff -uD -uD -uD -uD -uD -bx -uD -WN -WN -WN -uD -WN -uD -oE -qQ -Bk -ah -ff -aB -JB -aB -DI -ff -Cq -Cq -uA -uA -uA -ff -kg -uA -uA -aV -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -bA -uD -uD -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(206,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -Op -MI -MI -MI -ob -ff -HE -tY -tQ -tQ -TX -ff -qb -dc -dc -GG -ff -uA -uA -uA -uA -uA -uA -ff -ff -ff -bK -ff -bA -uD -WN -oO -oO -oO -yq -yq -yq -pT -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -Yw -lQ -QZ -uA -uA -bK -tQ -tQ -jd -ff -kH -ma -tQ -ff -lQ -uA -uA -uA -eO -Yw -uD -rI -uD -eY -aM -Sa -Sa -Sa -Sa -Sa -My -vg -ff -Vk -Vk -Vk -bK -uA -Sa -Sa -Sa -Sa -uA -aV -WS -uD -oO -oO -oO -yq -yq -yq -yq -ai -aO -yq -yq -yq -yq -oO -oO -oO -uD -zx -uD -ff -ff -ff -ff -ff -ff -ff -Ek -ff -Ek -ff -ff -yw -yw -yw -yw -yw -Wq -uD -WN -uD -uD -uD -uD -uD -Yw -CA -MU -ue -ff -Uv -ff -ff -ff -ff -ff -ff -bK -ff -uA -ff -jB -Ey -BE -Yw -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(207,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -Sb -MI -MI -MI -BT -ff -ff -ff -tQ -tQ -hd -ff -Sc -dc -dc -FA -ff -uA -Yv -uA -uA -uA -uA -uA -uA -uA -uA -ff -uD -uD -bA -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -eY -uD -aM -cQ -eC -fw -uA -ff -hB -tC -jp -ff -kI -dC -tC -ff -Bs -uA -uA -uA -qZ -aV -uD -bA -eY -uD -aM -Sa -Sa -Sa -Sa -uu -ff -ff -ff -Vk -Vk -ce -ff -Cq -Sa -Sa -Sa -Sa -zI -Yw -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -bA -uD -bA -uD -uD -uD -bA -bA -bA -AR -uD -uD -WN -uD -uD -uD -uD -vW -uD -bA -uD -uD -uD -uD -Yw -Yw -oE -Yw -ff -uA -ff -BA -Co -ff -JV -Re -dc -ff -uA -ff -Yw -Ek -Yw -Yw -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(208,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -np -MI -MI -MI -ez -ff -HE -tY -tQ -tQ -hm -ff -Mt -dc -dc -OU -ff -Lf -uA -ff -ff -ff -ff -ff -ff -bK -ff -ff -bA -WN -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -Yw -Yw -Ek -Ek -bK -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -bK -Ek -Ek -Yw -Yw -uD -WS -bA -bA -Yw -vp -tK -TL -HZ -uy -ff -dI -Vk -VZ -wB -xz -ff -Cq -uA -uA -uA -uA -zY -Yw -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -At -WN -At -At -WN -DW -WN -Ax -WN -JD -Ax -WS -Ax -WN -Ax -WN -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -by -by -bK -MU -MU -bK -BK -sv -ff -om -dc -dc -ff -kg -uA -bK -by -by -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(209,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -bA -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -fW -MI -MI -MI -yp -ff -ff -ff -tQ -tQ -xm -ff -sx -dc -dc -kO -ff -uA -uA -ff -uA -uA -bb -uA -uA -uA -uA -ff -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -TS -Xv -uD -by -by -by -uD -uD -bA -TS -uD -uD -uD -uD -by -by -by -uD -uD -uD -bA -uD -bA -WS -Yw -Yw -Yw -Ek -Yw -Yw -Yw -Yw -Ek -Yw -Ek -Yw -Yw -Yw -QU -QU -QU -bK -Yw -Yw -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -by -ff -ff -JW -JW -ff -ff -ff -JW -ff -ff -uD -uD -uD -uD -uD -uD -uD -uD -by -oX -Yw -kb -Uv -ff -ro -MU -ff -se -ff -he -ff -uA -uA -Yw -yV -by -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(210,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -cC -MI -MI -MI -gV -ff -ma -tY -tQ -tQ -tQ -NF -dc -dc -dc -CN -ff -uA -uA -ff -uA -uA -eE -uA -eE -uA -eE -ff -WN -WS -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -by -uD -bA -uD -bA -bA -bA -rU -bA -eY -bA -WS -bA -bA -bA -bA -WS -bA -uD -WS -bA -WS -by -by -by -by -by -by -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -by -ff -oW -uA -uA -pF -ff -SO -Tm -UP -ff -uD -uD -uD -uD -WN -WN -uD -uD -uD -uD -Yw -Yw -oE -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Ek -Yw -Yw -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(211,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -Xk -MI -Ev -MI -Fj -ff -tC -ff -tQ -tQ -tQ -dc -jh -xg -iS -sm -ff -lQ -uA -ff -uA -uA -eE -uA -eE -uA -eE -ff -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -Xv -WN -uD -uD -uD -uD -bA -WN -uD -YN -uD -uD -WN -bA -uD -uD -uD -WS -uD -uD -TS -uD -cc -uD -uD -uD -uD -uD -uD -uD -uD -eY -uD -uD -uD -WS -uD -bA -bA -bA -by -by -by -by -by -by -by -by -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -Kx -ff -uA -uA -uA -uA -ff -bU -wo -Vi -ff -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(212,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -gn -MI -ff -Aq -ff -ff -ff -ff -ff -ff -bK -ff -ff -ff -ff -ff -ff -uA -uA -ff -lQ -uA -eE -uA -eE -uA -Qb -ff -uD -uD -WN -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -WS -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -uE -Am -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -by -bK -uA -uA -vF -uA -ff -MV -wo -je -ff -ff -ff -uD -uD -uD -WN -uD -uD -uD -bA -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(213,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -uA -uA -uA -uA -uA -uA -bb -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -uA -uA -eE -uA -eE -uA -eE -ff -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -fh -oO -oO -oO -Yw -Yw -Yw -JW -Yw -Yw -Yw -JW -Yw -JW -Yw -Yw -Yw -JW -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -WN -Yw -sb -wv -sg -sO -tL -uj -rW -by -by -by -by -by -by -by -uD -uD -uD -uD -uD -uD -uD -bx -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -Kx -ff -lQ -uA -Qf -uA -ff -ff -bK -ff -ff -Yl -ff -uD -uD -bA -sS -uD -bA -uD -uD -bA -uD -uD -bA -WN -bA -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(214,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -lQ -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -bK -uA -uA -eE -uA -eE -uA -eE -ff -bA -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -bz -cj -cn -Tg -ff -fD -uA -nC -uA -if -ff -bU -kQ -mc -ff -st -ma -xm -ff -pN -rd -Yw -uD -Yw -AV -MI -MI -sQ -MI -MI -Yw -uD -by -Yw -Yw -Ld -Yw -bK -Ld -Yw -Yw -Yw -Yw -Ld -Yw -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -by -by -by -by -by -by -ff -uA -uA -Qh -uA -ff -Cq -uA -Cq -CI -uA -ff -uD -uD -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(215,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -uM -uA -uA -uA -uA -ff -uA -uA -uM -uA -uA -uA -uA -ff -WN -bA -uD -oO -oO -oO -yq -yq -fh -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -aM -Tg -uA -uA -Tg -ff -fH -Sa -Sa -Sa -HZ -ff -MV -kT -me -ff -ff -bK -ff -ff -uA -uA -Yw -uD -Yw -MI -MI -MI -wv -MI -MI -Yw -uD -by -Yw -vy -ww -wC -uA -uA -ff -BD -BD -Sa -Sa -Ab -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Ax -uD -uD -Ax -Ax -ff -ff -JW -JW -JW -ff -ff -uA -uA -rY -ru -ff -lQ -uA -uA -uA -uA -aV -uD -bA -uD -sS -sS -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(216,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -bK -ff -oE -oE -oE -oE -oE -oE -ff -ff -ff -ff -ff -ff -bK -ff -ff -ff -ff -ff -ff -ff -ff -ff -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -Yw -TP -uA -uA -cY -ff -ZI -Sa -Sa -Sa -ht -ff -jL -sL -Qv -ff -mT -uA -kW -nC -uA -uA -aV -uD -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -by -aN -Sa -Sa -Sa -uA -jH -ff -yr -Sa -Sa -Sa -Af -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -Nn -oO -oO -uD -uD -uD -bA -uD -ff -Ez -FZ -Ht -JI -kW -uA -uA -uA -uA -uA -bK -uA -uA -uA -uA -XX -ff -uD -uD -uD -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(217,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -uA -uA -oE -uA -uA -uA -uA -uA -uA -ff -Fi -Av -uN -bI -ff -oO -oO -oO -oO -oO -oO -oO -oO -oO -zL -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -aM -Tg -uA -uA -dG -ff -uA -Sa -yC -Sa -Sa -ff -ff -bK -ff -ff -kg -Sa -Sa -Sa -Sa -mp -Yw -uD -Yw -rX -MI -MI -MI -MI -MI -Yw -WN -by -Yw -xx -Sa -Sa -uA -xD -ff -xx -Sa -Sa -zs -IH -Fa -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -WN -ff -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -uA -uA -uA -uA -ru -ff -uD -uD -uD -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(218,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -Li -uA -oE -uA -uA -uA -uA -uA -uA -bK -dc -dc -dc -Cl -ff -oO -oO -oO -oO -oO -oO -oO -oO -oO -Dn -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -Yw -ca -uA -uA -Za -ff -Cq -QR -gM -hG -uA -bK -uA -uA -uA -bK -uA -Sa -Sa -Sa -Sa -uA -aV -uD -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -by -aN -Sa -Sa -Sa -uA -jH -ff -Sa -Sa -Sa -Sa -Sa -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -WN -aM -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -SS -eE -uA -uA -uA -ff -uD -uD -WN -uD -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -WN -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(219,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ka -QQ -uA -oE -uA -uA -uA -uA -rY -sM -ff -po -Fi -bI -Fi -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -cd -uA -uA -uA -ff -ff -ff -ff -ff -ff -ff -uA -uA -uA -ff -Bs -rQ -BE -Ey -pU -Bs -Yw -uD -Yw -Mo -MI -MI -MI -MI -MI -Yw -WN -by -Yw -IZ -br -bw -uA -uA -ff -ys -vp -Sa -Sa -ln -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -WN -aM -uA -Ga -HQ -RX -uA -uA -uA -uA -uA -uA -ff -SW -uA -Vm -BE -BE -ff -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(220,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -BU -uA -oE -uA -uA -uA -BU -QQ -QQ -ff -ff -ff -ff -ff -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -kg -uA -uA -uA -uA -uA -uA -Cw -Cq -CI -uA -uA -uA -uA -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -uD -Yw -MI -MI -MI -MI -MI -MI -Yw -uE -uU -Yw -ff -ff -ff -uA -Bs -ff -ff -ff -bK -ff -ff -Yw -uD -uD -oO -oO -oO -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -bA -WN -aM -uA -uA -uA -uA -ru -ff -Nd -Po -Qp -ff -ff -ff -Ek -Ek -ff -ff -ff -uD -bA -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(221,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -lc -uA -uA -oE -uA -uA -uA -uA -uA -vF -ff -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -aM -uA -uA -ug -rY -rY -rY -uA -uA -uA -uA -uA -uA -uA -mp -Yw -mZ -nO -oc -pd -hI -rf -Yw -uD -Yw -WH -WH -WH -WH -WH -WH -Yw -uD -by -Yw -Sw -Sw -Sw -uA -uA -uA -bb -uA -uA -uA -zX -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -bA -uD -WN -ff -uA -uA -uA -uA -uA -zm -uA -uA -uA -uA -ff -WN -bA -WN -bA -uD -NE -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(222,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -oE -oE -oE -ff -tI -uA -uA -uA -uA -uA -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -aM -uA -uA -cq -dH -eG -fP -uA -uA -uA -QO -QO -QO -QO -QO -bK -MI -MI -MI -wv -MI -MI -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -bA -bA -by -Yw -vC -tQ -tQ -uA -uA -uA -Cq -ff -ff -ff -ff -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -WN -ff -lQ -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -iF -bA -uD -uD -uD -NE -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -WN -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(223,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -He -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -aM -uA -uA -vF -vF -vF -vF -uA -uA -uA -QO -jr -QO -QO -Uk -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -uD -WS -by -aN -hd -tQ -wM -uA -uA -uA -uA -bK -uA -uA -dq -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WN -WN -WN -CD -ff -Xc -uA -uA -uA -uA -uA -uA -uA -uA -uA -aV -uD -Tu -Me -Wy -uD -NE -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(224,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -lQ -uA -uA -uA -uA -uA -uA -uA -rY -sM -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -xh -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -cg -uA -uA -uA -uA -uA -uA -uA -uA -QO -jA -QO -QO -mz -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -bA -bA -by -Yw -BI -tQ -wQ -uA -uA -uA -uA -ff -za -za -Ag -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -aM -uA -uA -uA -uA -uA -Mn -Ne -Pp -uA -uA -bK -uD -TN -Me -WB -bA -NE -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(225,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -uA -uA -uA -uA -uA -uA -BU -QQ -rQ -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Tz -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -oT -uA -uA -uA -uA -uA -uA -uA -uA -QO -Ku -QO -QO -MQ -Yw -na -MI -MI -MI -MI -MI -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -WS -uD -by -Yw -Sw -tQ -qG -uA -rY -rY -uA -ff -ff -ff -ff -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -bK -uA -uA -uM -uA -uA -uA -uA -uA -uA -uA -aV -uD -TT -Vo -uD -bA -NE -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(226,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -QQ -rQ -uA -uA -uA -uA -uA -uA -uA -vF -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -qM -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -pF -uA -uA -uA -Pi -fQ -jH -hl -uA -QO -By -QO -QO -QO -Yw -MI -MI -MI -MI -MI -MI -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -by -by -by -Yw -Sw -tQ -tQ -uA -EP -CO -uA -ff -yS -fl -Au -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -by -by -by -by -by -aM -uA -uA -ff -uA -uA -uA -uA -uA -uA -qR -ff -iF -uD -uD -uD -uD -NE -uD -uD -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(227,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ug -Li -eE -uA -uA -uA -uA -uA -uA -uA -ff -ih -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -Yw -oE -bK -bK -oE -Yw -Yw -Yw -Yw -Ek -Ek -Ek -Ek -Yw -Yw -Yw -Yw -nX -nX -nX -nX -Yw -Yw -uD -Iq -yq -yq -yq -yq -yq -yq -uD -uD -by -Yw -iz -tQ -tQ -uA -vF -vF -uA -yE -ov -ov -ov -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WN -WN -WN -CD -ff -pF -uA -ff -Tg -Tg -Tg -TP -Tg -jN -Tg -ff -uD -bA -bA -uD -uD -NE -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(228,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -BU -uA -uA -uA -uA -uA -uA -uA -uA -bK -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -Yw -pF -uA -uA -uA -Yw -yc -RE -we -EN -AC -AC -Uh -uD -WS -uD -ng -by -by -by -by -uD -uD -WN -Iq -yq -yq -yq -yq -yq -yq -bA -WN -by -Yw -vE -VG -wZ -uA -uA -uA -uA -ff -zy -ov -Ah -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -bA -uD -uD -WN -ff -ff -Ek -ff -ff -Ek -ff -Ek -ff -Ek -ff -ff -UF -UF -UF -UF -UF -XY -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(229,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -lQ -uA -uA -uA -uA -uA -uA -uA -uA -uA -bK -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -Yw -kg -uA -uA -uA -bK -by -by -by -by -by -by -mP -uD -uD -uD -uD -by -by -by -by -uD -bA -uD -Iq -yq -yq -yq -yq -yq -yq -uD -bA -by -Yw -Yw -Yw -Yw -Yw -bK -Yw -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -YE -bA -uD -bA -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(230,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -uA -uA -uA -uA -uA -uA -uA -uA -uA -ff -ih -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -Yw -CI -vF -vF -dM -Yw -fU -zd -xV -rw -by -by -mP -uD -WN -bA -bA -by -by -by -by -uD -uD -uD -Iq -yq -yq -yq -yq -yq -yq -WS -uD -by -uD -uD -uD -jk -by -by -by -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -WN -WN -uD -uD -bA -uD -uD -bA -uD -uD -uD -bA -WN -uD -uD -uD -bA -uD -uD -WN -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(231,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -QQ -QQ -uA -uA -uA -uA -uA -uA -uA -ru -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Bx -oO -oO -oO -Yw -Yw -Yw -Yw -Yw -Yw -uD -uD -uD -Fu -by -by -mP -uD -uD -uD -WN -by -by -by -by -uD -uD -uD -Iq -yq -yq -yq -yq -yq -yq -uD -uD -by -uD -uD -uD -uD -uD -by -uD -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -WN -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(232,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ug -QQ -eE -uA -uA -uA -uA -uA -uA -uA -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -xh -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -lf -oO -oO -fR -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(233,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -BU -uA -uA -uA -uA -uA -uA -rY -QQ -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Tz -uD -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -eL -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -RI -bA -uD -WN -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(234,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uA -uA -uA -uA -uA -uA -ug -BU -AQ -QQ -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Ju -uD -uD -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -Bo -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -WF -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(235,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -bK -bK -ff -ff -ff -ff -ff -ih -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Tz -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -nD -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(236,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ry -MI -MI -Or -uA -uA -Or -MI -MI -vu -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Ju -WN -WS -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -fh -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -bA -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(237,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -gs -MI -MI -DK -uA -uA -DK -MI -MI -rH -ff -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -Tz -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -sS -uD -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(238,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -AL -uD -uD -uD -uD -uD -AL -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uG -QS -MI -Or -uA -uA -Or -MI -QS -uG -ff -oO -aO -aO -aO -aO -aO -aO -aO -aO -aO -aO -aO -aO -aO -Ju -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(239,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -bA -bA -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -uA -ru -ff -ff -ff -ff -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -uD -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -nD -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -sS -sS -YN -bA -bA -sS -uD -uD -uD -sS -sS -sS -sS -WN -bA -bA -uD -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(240,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -bA -AL -bA -uD -uD -uD -uD -bA -bA -bA -bA -bA -bA -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -vu -MI -MI -Or -uA -uA -Or -MI -MI -vu -ff -ih -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -uD -WN -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -aO -aO -aO -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -uD -uD -sS -sS -sS -uD -bA -bA -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(241,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -bA -uD -bA -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -AL -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -gs -MI -MI -DK -uA -uA -DK -MI -MI -rH -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -bA -bA -oO -oO -oO -yq -pT -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -uD -sS -sS -uD -uD -bA -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(242,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -AL -uD -uD -uD -bA -bA -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -uD -uD -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uG -QS -MI -Or -uA -uA -Or -MI -QS -uG -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -bA -WN -WN -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -XL -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -wy -uD -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -uD -bA -bA -bA -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(243,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -lQ -uA -ff -ff -ff -ff -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -uD -uD -oO -il -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -nD -yq -yq -yq -yq -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -uD -uD -uD -bA -bA -uD -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(244,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -AL -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -vu -MI -MI -Or -uA -uA -Or -MI -MI -vu -ff -ih -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -uD -WS -bA -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -Th -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -uD -uD -bA -bA -bA -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(245,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -AL -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -gs -MI -MI -DK -uA -uA -DK -MI -MI -rH -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -Ho -Ho -Ho -bA -bA -bA -bA -bA -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(246,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uG -QS -MI -Or -uA -uA -Or -MI -QS -uG -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -bA -bA -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -ZU -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -af -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -eL -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -Nq -bA -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -uD -uD -uD -bA -WN -uD -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(247,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -AL -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -uA -ru -ff -ff -ff -ff -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -bA -uD -bA -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(248,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -vu -MI -MI -Or -uA -uA -Or -MI -MI -vu -ff -ih -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -bA -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -bA -bA -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -Td -by -sk -bA -uD -uD -bA -uD -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -wz -yq -yq -yq -yq -yq -yq -oO -oO -Nn -uD -uD -uD -Fu -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -mP -WS -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -bA -Ho -Ho -Ho -Ho -Ho -Ho -Ho -Ho -uD -bA -VW -VW -VW -VW -bK -VW -VW -JW -JW -VW -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(249,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -AL -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -AL -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -gs -MI -MI -DK -uA -uA -DK -MI -MI -rH -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -WN -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -bA -uD -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -uD -bA -bA -uD -bA -uD -bA -uD -bA -uD -uD -wy -Td -by -nW -uD -uD -uD -bA -Ys -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -aO -aO -yq -yq -yq -yq -oO -oO -oO -uD -WN -WS -Qq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -mP -uD -bA -uD -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -WN -uD -Ho -Ho -rB -Ii -Ii -Rg -Ho -Ho -bA -bA -VW -Cq -Ow -Cq -uA -VW -jB -uA -Vc -aV -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(250,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -uG -QS -MI -Or -uA -uA -Or -MI -QS -uG -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -uD -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -bA -bA -uD -bA -uD -Ly -WN -uD -bA -uD -bA -bA -Fu -by -mP -uD -YN -uD -WN -uD -bA -bA -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -WN -Fu -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -mP -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -wy -bA -Ho -JE -Hq -Hq -fK -Ho -Ho -WN -bA -VW -lQ -uA -uA -uA -VW -Ef -uA -uA -aV -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(251,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Tz -uD -uD -oO -oO -yq -yq -mG -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -uD -WN -uD -uD -bA -bA -uD -bA -uD -WN -uD -uD -Td -by -mP -uD -uD -uD -bA -uD -WN -uD -bA -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -WN -bA -Fu -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -aO -mP -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -bA -uD -Ho -JE -ts -Hq -fK -Ho -bA -WN -uD -VW -VB -br -bw -uA -VW -uA -uA -uA -VW -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(252,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -WS -WN -bA -uD -WS -uD -Ju -oO -yq -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -yq -Ju -WN -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -yq -yq -yq -aO -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -yq -yq -yq -aO -yq -yq -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Fu -by -nW -bA -uD -uD -bA -uD -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -uD -Fu -aO -yq -yq -yq -yq -aO -tk -yq -Nh -yq -aO -Nh -yq -yq -yq -aO -yq -yq -yq -yq -aO -Oq -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -AR -bA -uD -Ho -JE -Hq -Hq -fK -Ho -uD -uD -uD -aM -EP -Ro -eE -uA -bK -uA -XP -BE -VW -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(253,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -WN -uD -bA -fd -Gl -Gl -Ww -Gl -Ww -Gl -Ww -Gl -Ww -Gl -Ww -Gl -Ww -Gl -Rj -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -Tj -ix -ix -ix -mr -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -bA -Yw -Yw -JW -JW -Yw -JW -Yw -Yw -Mc -AC -Cf -by -mP -bA -bA -uD -KO -uD -bA -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -xl -ff -tg -tg -tg -tg -tg -tg -ff -ff -FD -FD -ff -ff -tg -tg -tg -tg -tg -tg -ff -ff -WU -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WS -uD -bA -JE -Hq -Hq -fK -bA -uD -uD -uD -aM -fQ -Lk -eE -uA -VW -VW -VW -VW -VW -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(254,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -AL -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -AL -uD -uD -uD -uD -uD -uD -sS -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -WN -bA -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -oO -oO -dN -oO -vk -oO -oO -oO -in -Jv -WN -WN -WN -PN -in -oO -oO -oO -oO -oO -rE -oO -oO -bA -bA -Yw -CI -tR -uA -uA -uM -uA -bK -wa -wa -xd -by -nW -TS -WN -uD -TS -uD -uD -bA -bA -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -ff -zP -zP -zP -zP -zP -zP -zP -kn -Nt -IA -IA -Nt -zP -zP -zP -zP -zP -zP -zP -zP -ff -bA -WS -uD -uD -uD -uD -uD -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -JE -Hq -Hq -fK -bA -bA -uD -uD -VW -vF -vF -uA -uA -VW -jB -BE -eh -aV -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(255,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -mi -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -AL -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -WN -Yw -oE -oE -oE -bK -oE -Yw -Jv -WN -WN -WN -PN -Yw -oE -bK -oE -oE -oE -Yw -WN -oO -uD -uD -Yw -Pi -tU -uA -uA -ff -ff -Yw -JW -JW -Yw -Yw -Yw -JW -JW -JW -Yw -Yw -WN -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -WS -uD -ff -CG -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -IA -Ye -ff -uD -uD -bA -WS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -bA -uD -uD -uD -bA -uD -uD -VW -IF -uA -uA -uA -bK -uA -uA -ru -VW -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(256,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -WN -Yw -uA -yl -uA -uA -RG -oE -Jv -WN -WN -WN -PN -oE -nY -uA -uA -pV -rj -Yw -WN -oO -WN -uD -aM -uA -uA -uA -uA -ff -Tg -Tg -Tw -Tg -LP -ff -xF -uA -uA -uA -zb -Yw -uD -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -ff -CP -IA -IA -Zu -HS -IA -zP -IA -IA -IA -IA -IA -IA -zP -IA -Vu -WJ -IA -IA -Yg -ff -uD -uD -bA -uD -WN -uD -bA -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -Ly -uD -uD -bA -uD -uD -uD -uD -uD -bK -uA -uA -uA -uA -VW -jB -BE -YW -aV -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(257,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -WN -uD -uD -uD -uD -uD -WS -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -Yw -Yw -dB -Lh -uA -uA -hQ -oE -lf -UO -UO -UO -fR -oE -Cq -uA -uA -pY -ru -Yw -Yw -oO -uD -uD -aM -ug -AT -eE -uA -uA -uA -uA -uA -uA -uA -bb -uA -yn -GY -GY -ze -Yw -bA -bA -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -ff -CQ -IA -IA -Gb -HT -IA -zP -IA -Nv -Di -Qw -Nv -IA -zP -IA -Vx -WR -IA -IA -Yj -ff -bA -bA -bA -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -uD -uD -uD -uD -YN -uD -VW -FK -uA -uA -uA -VW -VW -VW -VW -VW -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(258,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -Yw -zm -uA -yl -uA -uA -lJ -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Cq -uA -uA -yl -uA -zm -Yw -oO -uD -bA -Yw -ug -tX -eE -uA -uA -uA -vr -iT -JF -uA -uA -uA -dR -GY -GY -uA -aV -uD -bA -bA -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -ff -CU -IA -IA -Ge -Ic -IA -zP -IA -Qt -NB -Qz -Di -IA -zP -IA -Vz -Xe -IA -IA -Yg -ff -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -bA -WN -WN -uD -bA -uD -uD -uD -aM -uA -uA -uA -uA -bb -bK -uA -ru -VW -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(259,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -uD -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -bA -uD -bA -WN -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -oO -Yw -Cq -uA -uA -uA -uA -mL -Yw -jD -jD -jD -Yw -mE -Yw -Cq -uA -uA -uA -uA -Cq -Yw -oO -bA -uD -Yw -lQ -uA -uA -uA -uA -uA -vt -uA -tU -uA -uA -uA -UC -GY -GY -uA -aV -uD -bA -WS -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -ff -CW -IA -IA -GL -Id -IA -zP -IA -IA -IA -IA -IA -IA -zP -IA -VD -Xf -IA -IA -Yk -ff -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -Na -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -AR -uD -uD -bA -uD -uD -uD -uD -uD -bA -VW -PD -Tg -Tw -Tg -Tg -VW -jN -aS -VW -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(260,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -AL -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -WN -uD -uD -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -fO -yq -yq -oO -oO -uD -oO -Yw -UI -uA -fY -lJ -uA -uA -bK -dc -dc -dc -dc -dc -bK -uA -uA -EP -qc -uA -Cq -Yw -oO -uD -uD -Yw -ff -ff -bK -ff -ff -va -uA -IO -JS -zm -ff -uA -uA -uA -jH -ru -Yw -WN -uD -bA -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -uD -ff -Dd -IA -IA -GM -ux -IA -zP -IA -IA -IA -IA -IA -IA -zP -IA -VK -Xn -IA -IA -Yn -ff -bA -bA -uD -WN -uD -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -Ly -bA -bA -bA -VW -VW -VW -Ek -Ek -VW -VW -VW -VW -VW -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(261,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -uD -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -oO -Yw -dX -uA -uA -uA -uA -lJ -Yw -Yw -om -dc -dc -dc -Yw -La -uA -uA -uA -uA -rG -Yw -oO -uD -uD -Yw -sZ -tQ -UN -bU -Yw -Yw -bK -Yw -Yw -Yw -Yw -Cq -kW -uA -Cq -Cq -Yw -uD -uD -WN -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -bA -uD -ff -Dj -IA -IA -CP -Ik -IA -zP -IA -IA -IA -IA -IA -IA -zP -IA -VM -Xr -IA -IA -Yt -ff -uD -uD -bA -uD -uD -uD -uD -sS -bA -bA -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -bA -bA -bA -bA -uD -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(262,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -uD -oO -oO -yq -yq -yq -fO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -oO -Yw -bh -uA -uA -uA -uA -uA -uA -Yw -jM -lb -lb -lb -Yw -zO -uA -uA -uA -uA -Cq -Yw -oO -WN -uD -Yw -tb -ub -um -MV -Yw -Ve -Ve -UD -Nk -Nk -Yw -ff -ff -bK -ff -ff -Yw -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -WS -ff -CG -IA -IA -IA -IA -IA -IA -IA -Nw -Nv -QH -Rb -IA -IA -IA -IA -IA -IA -IA -Ye -ff -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -bA -bA -bA -bA -uD -uD -wy -uD -uD -Nq -uD -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(263,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -AL -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -oO -Yw -Yw -Yw -Yw -oE -bK -oE -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -oE -bK -oE -Yw -Yw -Yw -oO -uD -uD -Yw -Yw -Yw -Yw -Yw -Yw -Ve -Ve -Ve -Ve -iU -Yw -xG -uA -uA -yI -zr -Yw -uD -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -bA -WN -ff -YG -ff -YG -ff -YG -ff -zP -IA -NB -Px -Qz -Rf -IA -zP -ab -ab -ab -PU -ab -ab -ff -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -WN -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -bA -bA -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(264,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -uD -bA -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -oO -Yw -hP -fe -Yw -gk -MI -MI -is -VR -pw -Yw -MI -MI -MI -MI -MI -MI -MI -MI -MI -Yw -oO -uD -uD -uD -uD -uD -uD -uD -uQ -by -by -by -by -QG -aM -xK -yo -YP -YP -uA -aV -uD -bA -uD -uD -oO -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -oO -uD -uD -uD -ff -zP -ff -zP -ff -zP -ff -zU -IA -IA -IA -IA -IA -IA -zP -TV -zP -XI -zP -zP -zP -ff -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(265,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -bA -uD -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -oO -Yw -Yw -rW -Yw -gs -MI -MI -MI -MI -jW -Yw -MI -mM -ny -MI -MI -mM -qj -MI -MI -Yw -oO -bA -uD -uD -uD -WS -bA -uD -Qa -xV -uD -Gq -Gq -YT -aM -QR -YP -YP -YP -uA -aV -uD -uD -bA -uD -uD -oO -oO -yq -yq -yq -yq -yq -yq -yq -yq -yq -yq -oO -oO -uD -uD -uD -WN -ff -Of -ff -Of -ff -Of -ff -Qs -zP -zP -UH -UH -zP -zP -zP -zP -zP -zP -UH -zP -zP -ff -uD -uD -bA -uD -uD -WN -uD -uD -uD -uD -sS -sS -sS -sS -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -Up -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(266,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -rJ -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -bA -uD -oO -Yw -IU -MI -MI -MI -MI -MI -MI -MI -II -Yw -gs -mM -nB -MI -MI -mM -qn -MI -rH -Yw -oO -uD -uD -uD -uD -WN -uD -bA -uD -uD -uD -uD -bA -WN -Yw -RG -uA -nL -yT -jB -Yw -uD -uD -WS -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -bA -bA -uD -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -VX -ff -ff -ff -ff -ff -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -WN -bA -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -bA -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(267,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -bA -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -bA -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -uD -uD -uD -uD -oO -Yw -ef -MI -MI -MI -MI -MI -iC -jG -qo -Yw -MI -MI -MI -MI -MI -MI -MI -MI -MI -Yw -oO -uD -uD -uD -uD -uD -bA -uD -uD -bA -vx -bA -uD -uD -Yw -Yw -Ek -Ek -Ek -Yw -Yw -uD -uD -uD -uD -uD -uD -uD -oO -oO -oO -oO -oO -oO -oO -oO -oO -oO -uD -bA -uD -bA -WS -uD -ff -Ca -QL -SL -TJ -vB -JJ -vA -lB -KA -lB -Vp -ZL -JJ -vA -wU -Ai -wU -ff -Mq -QT -ff -uD -uD -WN -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(268,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -bA -uD -uD -bA -uD -uD -oO -Yw -Yw -Yw -Yw -Yw -rW -Yw -Yw -Yw -Yw -Yw -Yw -rW -Yw -Yw -Yw -Yw -Yw -Yw -Yw -Yw -oO -uD -WN -uD -uD -bA -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -ff -Dv -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -Ai -tY -tQ -tQ -ff -bA -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -sS -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(269,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -eY -uD -uD -uD -bA -bA -oO -uD -yq -fk -QM -yq -yq -hV -nU -yq -yq -lm -yq -yq -nU -hV -yq -nU -yq -yq -yq -uD -oO -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -bA -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -ff -mm -RN -Ai -Ai -wU -Vp -KA -vR -Vp -vA -Vp -Rr -pi -lB -wU -Ai -wU -ff -tQ -dC -ff -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(270,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -as -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -WN -uD -uD -uD -eY -uD -bA -uD -uD -uD -bA -uD -oO -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -WN -yq -yq -yq -yq -yq -yq -yq -yq -yq -WN -oO -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -ff -ff -ff -ff -bK -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -ff -uD -bA -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(271,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -eY -uD -eY -uD -uD -uD -uD -bA -uD -WN -uD -uD -bA -uD -eY -uD -uD -uD -eY -uD -oO -WN -yq -yq -yq -yq -yq -yq -yq -yq -yq -WN -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -oO -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -WN -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -Ap -bA -bA -bA -uD -uD -DA -Ec -oO -oO -oO -oO -KY -uD -bA -bA -uD -uD -bA -uD -bA -uD -bA -uD -uD -bA -uD -uD -bA -WN -WS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(272,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -sS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Na -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -eY -uD -uD -uD -uD -uD -bA -uD -oO -uD -yq -yq -yq -yq -yq -yq -yq -yq -yq -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -oO -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -DA -oO -oO -oO -oO -oO -KY -uD -uD -uD -bA -uD -WS -bA -uD -WN -uD -uD -uD -bA -WS -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -bA -uD -sS -sS -WN -bA -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(273,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -AL -bA -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -uD -AL -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -WN -uD -uD -uD -bA -uD -uD -WN -uD -uD -uD -uD -bA -uD -eY -uD -eY -uD -oO -bA -yq -yq -yq -yq -yq -yq -yq -yq -yq -WN -yq -yq -yq -yq -yq -yq -yq -yq -yq -uD -oO -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -bA -uD -uD -bA -uD -WN -uD -uD -bA -uD -uD -bA -uD -uD -WS -uD -DC -Uz -Uz -Uz -Uz -Uz -Le -uD -bA -bA -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(274,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -rJ -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -bA -uD -bA -uD -bA -uD -bA -eY -uD -eY -uD -uD -uD -uD -uD -bA -WN -uD -uD -uD -bA -uD -uD -uD -uD -bA -uD -uD -WN -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -bA -uD -uD -uD -bA -bA -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -sS -sS -uD -WN -uD -uD -bA -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(275,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -uD -bA -uD -uD -uD -uD -bA -bA -bA -bA -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -eY -uD -uD -bA -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -bA -uD -WN -uD -uD -uD -bA -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -bA -uD -uD -bA -uD -uD -bA -uD -bA -uD -uD -bA -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -WN -uD -bA -uD -uD -uD -bA -uD -uD -bA -uD -bA -uD -bA -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(276,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -AL -uD -uD -uD -uD -bA -bA -uD -bA -bA -bA -uD -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -bA -uD -eY -eY -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -bA -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -bA -uD -uD -bA -bA -uD -uD -bA -uD -uD -bA -bA -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(277,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -rJ -bA -uD -bA -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -bA -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -as -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(278,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -Na -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(279,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(280,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -sS -sS -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(281,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(282,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(283,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(284,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(285,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(286,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -WN -uD -uD -uD -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -PO -"} -(287,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(288,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(289,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -sS -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(290,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(291,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -uD -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -bA -uD -uD -bA -bA -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(292,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(293,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -WN -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(294,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -bA -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(295,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -uD -bA -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(296,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -uD -uD -uD -uD -bA -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -bA -uD -uD -uD -uD -uD -uD -WN -bA -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(297,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(298,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -WN -WN -bA -uD -uD -uD -WN -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(299,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uP -uD -bA -uD -uD -uD -bA -uD -uD -uD -bA -uP -uD -uD -uP -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uP -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(300,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -ft -UF -UF -UF -lh -UF -UF -UF -UF -UF -UF -GD -LL -UF -UF -UF -UF -UF -UF -UF -UF -UF -UF -ky -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(301,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -NE -WN -uD -WN -bA -uD -WN -WN -bA -bA -uD -uD -uD -WN -uD -uD -WS -bA -uD -WN -uD -WS -WS -NE -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(302,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -NE -uD -WN -WN -bA -uD -uD -uD -WN -uD -BL -uD -BL -uD -WS -uD -uD -WN -WN -uD -uD -WS -uD -NE -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -bA -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(303,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -fI -bA -WS -WN -WN -uD -jl -jl -jl -jl -jl -Ux -jl -jl -jl -jl -jl -jl -uD -Th -Th -uD -WN -fI -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -bA -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(304,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -uD -NE -uD -bA -bA -WS -uD -jl -Ok -iG -fl -DP -rT -OX -ov -ov -ov -cZ -jl -uD -uD -uD -uD -uD -NE -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -bA -uD -bA -uD -bA -WN -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(305,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -NE -bA -bA -uD -uD -uD -jl -AD -iG -ov -ov -ov -ov -ov -ov -ov -cZ -jl -uD -uD -WN -Th -uD -NE -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -WN -bA -uD -uD -uD -WN -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(306,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -NE -uD -uD -uD -uD -uD -jl -tF -ZN -ov -ov -ov -ov -ov -ov -ov -cZ -jl -bA -uD -Th -uD -uD -fI -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WS -uD -bA -uD -bA -bA -uD -uD -bA -WS -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(307,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -NE -uD -WN -uD -uD -uD -jl -HK -ov -ov -ov -ov -ov -Ke -ov -ov -AZ -jl -uD -Th -uD -Th -uD -NE -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -bA -uD -WN -bA -WN -uD -bA -bA -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(308,1,1) = {" -PO -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -bA -uD -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -bA -uD -bA -uD -uD -uD -bA -bA -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -uD -uD -NE -bA -uD -jl -jl -jl -jl -jl -jl -yE -jl -jl -jl -jl -yE -jl -jl -jl -jl -jl -jl -uD -uD -NE -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -bA -uD -WN -WS -bA -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(309,1,1) = {" -PO -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -sS -sS -uD -bA -uD -bA -bA -uD -bA -uD -uD -uD -uD -WN -uD -uD -WN -uD -bA -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -bA -uD -uD -NE -uD -uD -jl -lN -rx -tt -ov -ov -ov -ov -yE -ov -Ke -ov -ov -ov -WY -CV -WA -jl -iF -uD -NE -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -WS -uD -WN -WN -bA -uD -uD -as -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(310,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -sS -sS -sS -sS -uD -uD -uD -uD -WS -uD -ax -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uP -NE -uD -BF -jl -cX -ov -ov -ov -yK -jl -jl -jl -QC -jl -jl -VN -ov -ov -ov -PA -jl -uD -uD -NE -uP -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(311,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -fN -uD -hs -jl -mw -ov -ov -ov -zl -jl -Eo -tQ -tQ -Rw -jl -Wa -ov -ov -ov -nF -jl -GF -uD -fZ -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -bA -uD -uD -bA -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(312,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -sS -sS -sS -uD -uD -VW -VW -JW -JW -VW -VW -JW -VW -bK -VW -JW -JW -VW -VW -VW -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -fZ -uD -uD -Ux -nz -ov -ov -ov -Aw -jl -tQ -VG -tQ -Rw -jl -VN -Wz -Zl -ov -Gx -Ux -uD -uD -fZ -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(313,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -ax -uD -uD -uD -uD -VW -Pi -Ol -jH -Bs -uA -uA -kY -uA -uA -uA -uX -uA -aP -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uP -NE -uD -iw -jl -Gy -ov -ov -ov -Bf -jl -jl -jl -jl -jl -jl -jl -jl -jl -ov -Gy -jl -GF -bA -NE -uP -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(314,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -VW -uA -uA -uA -uA -uA -uA -uA -uA -uA -QZ -Bn -uA -Tw -aV -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -NE -WN -uD -jl -qE -lN -tB -ov -ov -ov -jl -zm -cn -jl -SY -jl -WQ -jl -Nm -gq -jl -iF -uD -NE -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(315,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -VW -Cq -uA -uA -ay -uA -ug -CR -eE -uA -QZ -lD -uA -TP -aV -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -WS -uD -jl -jl -jl -jl -jl -jl -yE -jl -uA -uA -jl -tY -jl -tY -jl -jl -jl -jl -uD -uD -NE -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(316,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -ax -uD -uD -VW -Cq -uA -uA -Gi -uA -ug -To -eE -uA -QZ -rs -uA -Tg -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -WS -uD -uD -uD -uD -jl -vj -uA -uA -uA -uA -uA -uA -uA -uA -uA -jl -uD -uD -uD -uD -WN -NE -bA -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(317,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -VW -VW -Ek -Ek -VW -uA -uA -uA -uA -uA -uA -uA -uA -Tg -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -uD -bA -uD -WN -uD -jl -vG -uA -uA -uA -uA -uA -fH -TD -fH -Uo -jl -uD -WN -uD -WS -WN -NE -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(318,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -bA -bA -bK -uA -aJ -vU -oy -uA -uA -uA -uA -Tg -aV -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -uD -uD -WN -uD -uD -jl -vj -uA -QR -eE -uA -uA -uA -uA -uA -ru -jl -uD -bA -uD -bA -uD -NE -bA -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(319,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -ax -bA -bA -uD -VW -uA -VW -VW -VW -uA -lo -uA -xq -Tg -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -bA -NE -uD -uD -uD -WN -uD -jl -wW -uA -uA -FX -KD -QE -fH -Uo -fH -wW -jl -uD -WN -uD -uD -uD -NE -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(320,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -VW -uA -SK -Bs -gw -uA -VW -bK -VW -VW -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -uD -WN -WN -bA -uD -jl -jl -jl -jl -jl -kD -jl -jl -jl -jl -jl -jl -uD -uD -uD -bA -WN -NE -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(321,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -VW -uA -uA -uA -uA -uA -VW -uA -uA -uA -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -fI -uD -uD -WN -bA -uD -WN -uD -uD -uD -Go -uD -Go -uD -uD -WN -uD -uD -uD -WN -uD -WN -uD -fI -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(322,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -VW -bl -nL -jB -nL -tn -VW -Tw -zm -aS -VW -aY -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -NE -uD -uD -uD -bA -WN -uD -WN -WN -uD -uD -uD -uD -bA -uD -WS -uD -WN -uD -uD -uD -uD -uD -fI -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(323,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -VW -VW -Ek -VW -Ek -VW -VW -VW -VW -VW -VW -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -gZ -UF -UF -UF -UF -UF -UF -UF -lh -UF -lh -LL -LL -UF -lh -UF -UF -UF -UF -UF -UF -lh -UF -wP -uD -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(324,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -WN -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uP -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uP -uD -uD -uP -uD -uD -uD -uD -uD -uD -uD -uD -bA -uD -uP -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(325,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -WN -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(326,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -WN -uD -uD -uD -uD -uD -WN -WN -uD -uD -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -WN -uD -uD -uD -uD -WN -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(327,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -WN -uD -uD -uD -uD -uD -uD -uD -WN -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(328,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -WN -uD -uD -uD -uD -uD -uD -WN -uD -WN -uD -uD -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -WN -uD -uD -uD -WN -uD -uD -uD -uD -uD -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(329,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -uD -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(330,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(331,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -uD -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -PO -"} -(332,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(333,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(334,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -uD -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(335,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(336,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(337,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -sS -sS -sS -sS -sS -sS -sS -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -sS -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(338,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(339,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(340,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(341,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -PO -"} -(342,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -hi -hi -Ll -hi -hi -hi -hi -hi -hi -"} -(343,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -hi -Eg -aZ -aZ -hi -aZ -aZ -aZ -hi -"} -(344,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -nr -RT -bT -cf -lq -Mj -bT -eU -nr -"} -(345,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -hi -Ei -Ya -ws -wh -js -yJ -Ei -hi -"} -(346,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -QF -No -Us -ws -mS -js -cT -No -QF -"} -(347,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -hi -Dg -wG -ws -rT -TE -gh -Dg -hi -"} -(348,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -nr -hH -IQ -IQ -nv -IQ -IQ -On -nr -"} -(349,1,1) = {" -PO -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -Wb -hi -Eg -aZ -aZ -hi -aZ -aZ -aZ -hi -"} -(350,1,1) = {" -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -PO -hi -hi -hi -hi -hi -hi -hi -hi -hi -"} diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm deleted file mode 100644 index 0d85368ce2fa..000000000000 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ /dev/null @@ -1,148246 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aac" = ( -/obj/machinery/power/smes{ - charge = 5e+006; - name = "ai power storage unit" - }, -/obj/structure/cable, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aad" = ( -/turf/closed/wall/r_wall/rust, -/area/security/brig) -"aae" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aaf" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"aag" = ( -/turf/closed/wall/r_wall/rust, -/area/security/warden) -"aaj" = ( -/turf/closed/wall, -/area/security/brig) -"aak" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/atmos) -"aam" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/assembly/flash/handheld, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"aao" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aap" = ( -/turf/closed/mineral/random/low_chance, -/area/space/nearstation) -"aar" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aat" = ( -/turf/closed/wall/r_wall/rust, -/area/security/prison) -"aau" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"aav" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aaw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"aax" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"aay" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"aaz" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aaB" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"aaD" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aaF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"aaI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"aaK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aaL" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/folder, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"aaO" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"aaP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aaQ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"aaT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"aaV" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aaW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 4"; - name = "Cell 4"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aaY" = ( -/turf/closed/wall, -/area/security/detectives_office) -"abc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 3"; - name = "Cell 3"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"abg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"abh" = ( -/turf/closed/wall/rust, -/area/security/prison) -"abi" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"abk" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"abp" = ( -/turf/closed/wall, -/area/security/prison) -"abr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 1"; - name = "Cell 1"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"abs" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"abt" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/pickaxe, -/turf/open/floor/plating, -/area/maintenance/starboard) -"abv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"abC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"abD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"abE" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"abF" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"abH" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"abJ" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"abK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"abM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"abN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fore) -"abO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"abS" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"abT" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/security/detectives_office) -"abU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/filingcabinet/security, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"abY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"abZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aca" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"acb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"ace" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "bible locker" - }, -/obj/item/storage/book/bible{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/book/bible, -/obj/item/storage/book/bible{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aci" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/storage/box/evidence{ - pixel_y = 5 - }, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"acm" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"acr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/security/detectives_office) -"acu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"acv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/scientist{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"acx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"acy" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland3"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"acG" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat_interior) -"acH" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/warden) -"acK" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"acM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"acN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"acS" = ( -/obj/machinery/computer/atmos_alert{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"acT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"acW" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"acY" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"acZ" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"ada" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"add" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"ade" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/fore) -"adf" = ( -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"adg" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"adq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"ads" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ady" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"adA" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/item/bedsheet/brown, -/turf/open/floor/plating, -/area/maintenance/fore) -"adB" = ( -/obj/machinery/computer/telecomms/monitor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"adH" = ( -/turf/closed/wall, -/area/maintenance/fore) -"adI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"adQ" = ( -/turf/closed/wall/rust, -/area/maintenance/fore) -"adR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"adT" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat_interior) -"adW" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"adZ" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"aea" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"aec" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"aed" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"aee" = ( -/obj/machinery/door/airlock/external{ - name = "Satellite External Airlock"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"aef" = ( -/turf/closed/wall, -/area/security/warden) -"aeg" = ( -/turf/closed/wall/rust, -/area/security/warden) -"aei" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"ael" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/security/warden) -"aeo" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"aeq" = ( -/obj/structure/transit_tube/station{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/foyer) -"aer" = ( -/turf/closed/wall/rust, -/area/maintenance/port/aft) -"aes" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Brig Cells"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aet" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aeu" = ( -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"aex" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"aez" = ( -/turf/closed/wall, -/area/security/execution/education) -"aeC" = ( -/turf/closed/wall/rust, -/area/security/execution/education) -"aeD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"aeK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/maintenance/starboard/fore) -"aeM" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aeO" = ( -/obj/structure/bonfire, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; - name = "Carton of Estus" - }, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/item/melee/moonlight_greatsword, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aeP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"aeQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"aeR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"aeS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aeU" = ( -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"aeV" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"aeX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno5"; - name = "Creature Cell 5" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"aeY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"aeZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"afa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/southleft{ - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"afc" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/security/brig) -"afe" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"afg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno6"; - name = "Creature Cell 6" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"afj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"afk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"afl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afm" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/maintenance/port/aft) -"afq" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/scientist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afs" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/machinery/door/window/brigdoor/northleft{ - dir = 2; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/turf/open/floor/plating, -/area/security/warden) -"aft" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"afu" = ( -/obj/structure/transit_tube/station/reverse{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/transit_tube_pod{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"afv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"afw" = ( -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"afx" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"afy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"afz" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/port/aft) -"afA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"afE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"afF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afG" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"afL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"afM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afR" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"afS" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"afU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"afW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"afX" = ( -/obj/machinery/door/airlock/external{ - name = "Science Escape Pod" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"afY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"afZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aga" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"agb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"agd" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"age" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"agg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"agl" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"agm" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"ago" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"agq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 6"; - name = "Cell 6"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"agr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"ags" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 5"; - name = "Cell 5"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"agt" = ( -/turf/closed/wall/rust, -/area/space/nearstation) -"agw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"agy" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"agA" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/fore) -"agB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"agC" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/item/cardboard_cutout{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/cardboard_cutout, -/turf/open/floor/plating, -/area/maintenance/fore) -"agD" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"agG" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"agL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"agM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell 2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"agQ" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 2"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/science/xenobiology) -"agU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell 4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"agV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"agX" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"agY" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"agZ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aha" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno2"; - name = "Creature Cell 2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ahc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/medical/storage) -"ahe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/northleft{ - name = "Justice Windoor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ahh" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"ahi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ahm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"ahn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"aho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ahp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahr" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"ahs" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno4"; - name = "Creature Cell 4" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ahv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"ahx" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/hallway/primary/fore) -"ahz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/beacon, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"ahD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"ahF" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/arrows, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ahH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahJ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ahK" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"ahL" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"ahO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ahP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ahQ" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ahR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ahS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"ahT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahU" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ahV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port) -"ahY" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"aid" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"aih" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell 1" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"aik" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell 3" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"ail" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aim" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ait" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"aiw" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "construction zone"; - req_access_txt = "12" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"aix" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"aiA" = ( -/obj/machinery/door/airlock/maintenance{ - name = "chapel maintenance"; - req_one_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"aiC" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"aiD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"aiM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "chapel locker" - }, -/obj/item/clothing/shoes/sandal, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aiP" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aiQ" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aiT" = ( -/obj/structure/table, -/obj/item/storage/briefcase{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aiX" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno1"; - name = "Creature Cell 1" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"aiZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/brigdoor/northright{ - id = "Cell 2"; - name = "Cell 2"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"aja" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"ajd" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"aje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"ajh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aji" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ajj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ajl" = ( -/obj/machinery/door/poddoor/preopen{ - id = "xeno3"; - name = "Creature Cell 3" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Creature Cell"; - req_access_txt = "55" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ajn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ajq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"ajr" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/crate, -/obj/item/storage/crayons, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajs" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aju" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"ajx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"ajy" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"ajA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ajC" = ( -/turf/closed/wall/r_wall/rust, -/area/tcommsat/server) -"ajE" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"ajF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ajG" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/gauze, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajI" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/window/northleft{ - name = "cage door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"ajJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ajL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Biohazard"; - name = "Emergency Research Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ajP" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"ajT" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/port/aft) -"ajW" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"aka" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"ake" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"akh" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/maintenance/port/aft) -"akl" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/port/aft) -"akm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akq" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/medical/psychology) -"aky" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"akA" = ( -/turf/closed/wall/mineral/plastitanium, -/area/maintenance/starboard) -"akC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"akG" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/evidence, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"akI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"akK" = ( -/turf/closed/wall, -/area/security/processing) -"akL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Courtroom"; - req_access_txt = "38" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"akM" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"akO" = ( -/obj/machinery/door/airlock/external{ - name = "Abandoned External Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"akP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"akR" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"akS" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"akU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"akW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"akY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ala" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/space/nearstation) -"alc" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ale" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"alf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"alg" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"all" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"alm" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/space/nearstation) -"alv" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"alx" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"aly" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"alz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"alB" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"alD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/gloves/color/brown, -/obj/item/clothing/under/misc/overalls, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"alG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"alI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"alK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"alP" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"alQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"alR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/directional/south, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/newscaster/security_unit/directional/south{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"alS" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"alT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"alU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"alV" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat_interior) -"alW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"alX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/button/door/directional/south{ - id = "freight_port"; - name = "Freight Bay Control" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"ama" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"amc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ame" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/computer/prisoner/management, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"amf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Port Bow Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/fore) -"amg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"amh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"ami" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aml" = ( -/obj/machinery/door/airlock/maintenance{ - name = "chapel maintenance"; - req_one_access_txt = "22" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"amm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"amo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"amq" = ( -/mob/living/simple_animal/hostile/asteroid/basilisk{ - environment_smash = 0 - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"amr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"ams" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"amx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"amy" = ( -/turf/closed/wall/r_wall/rust, -/area/security/processing) -"amz" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/port) -"amA" = ( -/turf/closed/wall, -/area/maintenance/port) -"amB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/space_heater, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"amI" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"amN" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"amO" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"amP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/aft) -"amQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"amR" = ( -/turf/closed/wall/rust, -/area/maintenance/port) -"amX" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/security/armory) -"amY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"ana" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"anb" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"ang" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"anh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/processing) -"ani" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"anj" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"anq" = ( -/obj/machinery/power/smes, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/spider/stickyweb, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"anr" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/space/nearstation) -"anu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison/safe) -"anv" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"anw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access_txt = "23;30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"anx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"any" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"anD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"anF" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera/motion{ - c_tag = "Armoury Internal"; - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"anG" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/security/armory) -"anH" = ( -/turf/closed/wall, -/area/space/nearstation) -"anS" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"anT" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/camera, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"anX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"anY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"anZ" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/maintenance/port/aft) -"aoa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"aob" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aoc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aod" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aoe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aof" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/space/nearstation) -"aol" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/easel, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aos" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aow" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/bounty_board/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/research) -"aox" = ( -/turf/closed/wall, -/area/maintenance/central) -"aoy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/machinery/light/small/directional/west, -/obj/item/stack/cable_coil{ - pixel_y = 8 - }, -/obj/item/stack/rods/ten{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 10 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"aoz" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"aoD" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/tcommsat/computer) -"aoE" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"aoF" = ( -/obj/machinery/telecomms/receiver/preset_right, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Telecomms Server SMES"; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"aoH" = ( -/turf/closed/wall/r_wall/rust, -/area/medical/virology) -"aoI" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aoJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aoO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aoT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aoV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/virology) -"aph" = ( -/obj/machinery/camera{ - c_tag = "Satellite Antechamber"; - dir = 1; - name = "satellite camera"; - network = list("minisat") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"api" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"apj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"apm" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"apn" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"apo" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "science locker" - }, -/obj/item/clothing/under/rank/rnd/scientist{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/suit/toggle/labcoat/science, -/obj/item/clothing/shoes/sneakers/white, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"apx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"apB" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/fore) -"apC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"apD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"apF" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/trash/popcorn, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"apG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"apH" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"apI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/circuitboard/computer/operating, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"apJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"apP" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"apR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/engine, -/area/science/xenobiology) -"apU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apX" = ( -/turf/closed/wall/rust, -/area/maintenance/central) -"aqd" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"aqh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aqm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"aqn" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/revolver{ - pixel_y = 32 - }, -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"aqo" = ( -/obj/effect/landmark/start/psychologist, -/turf/open/floor/carpet, -/area/medical/psychology) -"aqq" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/leafybush, -/obj/machinery/camera{ - c_tag = "Genetics Monkey Pen"; - dir = 4; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/grass, -/area/science/genetics) -"aqs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"aqt" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"aqv" = ( -/obj/structure/transit_tube/junction, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"aqw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"aqA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aqD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"aqG" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/fore) -"aqO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqP" = ( -/obj/structure/cable, -/obj/structure/chair/sofa/left, -/obj/item/toy/plush/moth{ - name = "Big Moffer" - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/carpet, -/area/medical/psychology) -"aqQ" = ( -/obj/effect/turf_decal/sand/plating, -/obj/item/stack/sheet/glass, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aqR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "morgue maintenance"; - req_access_txt = "6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aqT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"aqU" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"arc" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"arh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"arl" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"arm" = ( -/obj/machinery/telecomms/receiver/preset_left, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"arn" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom) -"aro" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"arp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"arq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Aft Hallway Security Doors"; - dir = 4; - name = "aft camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"arr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"art" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/backpack/cultpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/color/black, -/obj/structure/closet{ - name = "chapel locker" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"arv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/starboard/fore) -"ary" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"arz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/tank/internals/emergency_oxygen/empty, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"arB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"arG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/wardrobe/gene_wardrobe, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"arH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"arJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"arK" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"arL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"asd" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"asg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"asi" = ( -/turf/closed/wall/r_wall, -/area/medical/morgue) -"asj" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/middle, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ask" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"asl" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asm" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asn" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aso" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"asr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"ass" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/medical/psychology) -"ast" = ( -/obj/structure/chair/pew/left{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asw" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"asC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"asD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"asF" = ( -/turf/closed/wall, -/area/security/courtroom) -"asG" = ( -/turf/closed/wall/rust, -/area/security/courtroom) -"asO" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/security/prison) -"asP" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asQ" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"asZ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"atc" = ( -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/courtroom) -"atd" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"atf" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/courtroom) -"atg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ati" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen/red, -/obj/item/stack/package_wrap, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/fore) -"atk" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"atl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"atm" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"atn" = ( -/turf/closed/wall/r_wall/rust, -/area/security/courtroom) -"ato" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"atp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"atq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "telelab"; - name = "Test Chamber Blast Door" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"att" = ( -/obj/machinery/computer/rdservercontrol, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/science/server) -"atz" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"atB" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"atF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"atG" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"atH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "genetics sorting disposal pipe"; - sortType = 23 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "psychology maintenance"; - req_access_txt = "70" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"atM" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/psychology) -"atN" = ( -/obj/structure/flora/tree/jungle/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/psychology) -"atO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"atQ" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/psychology) -"atR" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/psychology) -"atS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"atV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"aua" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"aub" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"auf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"auk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"aum" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"auo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"auq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aur" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"auu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Operating Theater B"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"auz" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"auA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/iv_drip, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"auB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"auC" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"auD" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"auH" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"auI" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/turf/open/floor/plasteel, -/area/security/courtroom) -"auJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"auK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"auO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"auP" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/security/courtroom) -"auQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/science/server) -"auU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/science/server) -"ava" = ( -/turf/closed/wall/rust, -/area/maintenance/starboard) -"avc" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/security/courtroom) -"ave" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"avk" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"avm" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avq" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/maintenance/aft) -"avr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel, -/area/security/courtroom) -"avu" = ( -/obj/structure/sign/warning/explosives/alt, -/turf/closed/wall, -/area/security/courtroom) -"avy" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/turf/open/floor/plasteel, -/area/security/courtroom) -"avz" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/blue, -/turf/open/floor/plasteel, -/area/security/courtroom) -"avA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"avE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"avO" = ( -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"avU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/turf/open/floor/plasteel, -/area/security/courtroom) -"awb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"awd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"awe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/item/stack/package_wrap, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awf" = ( -/obj/structure/falsewall{ - name = "suspicious wall" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"awk" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aws" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"aww" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/server) -"awH" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/engineering) -"awQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/satchel/med, -/obj/item/assembly/health, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awS" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/security/processing) -"awU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"awY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Psychology"; - req_access_txt = "70" - }, -/turf/open/floor/plasteel/dark, -/area/medical/psychology) -"awZ" = ( -/turf/closed/wall/rust, -/area/security/checkpoint/engineering) -"axf" = ( -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"axj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"axk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"axo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axr" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"axu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"axv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"axw" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"axx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"axz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"axC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axD" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"axF" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"axG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"axH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"axK" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"axL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"axN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"axR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"axZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aya" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aye" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"ayi" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ayj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ayl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/l3closet/virology, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ayn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/starboard/fore) -"ayp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ayv" = ( -/obj/effect/turf_decal/box, -/turf/open/floor/engine, -/area/science/xenobiology) -"ayx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"ayy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"ayA" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ayB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"ayL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "Containment Chamber Blast Door" - }, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/xenobiology) -"ayR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"ayU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/destructive_scanner, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"ayV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"azd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aze" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/crate, -/obj/item/vending_refill/snack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/vending_refill/cola, -/obj/item/screwdriver, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"azf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"azh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"azi" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"azo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"azv" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat_interior) -"azA" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"azI" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"azL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"azM" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"azS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"azV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"azW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aAc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/folder/white, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"aAf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"aAg" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/ai) -"aAj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aAk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aAl" = ( -/obj/effect/landmark/start/roboticist, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/science/robotics/mechbay) -"aAm" = ( -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/science/robotics/mechbay) -"aAo" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"aAp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "47, 9" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"aAy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"aAz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aAB" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aAC" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"aAE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aAF" = ( -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aAI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aAL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"aAS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"aAT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/caution, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/bridge) -"aAV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/server) -"aBd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"aBe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box, -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"aBg" = ( -/obj/machinery/door/airlock/grunge{ - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"aBh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aBi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_y = 3 - }, -/obj/item/pen, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aBt" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"aBu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aBy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/mech_bay_recharge_floor, -/area/science/robotics/mechbay) -"aBC" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/science/robotics/mechbay) -"aBJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Autopsy"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"aBK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aBV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"aCc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aCh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aCn" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aCq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aCu" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aCv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aCz" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"aCD" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aCE" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aCM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aCO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aCV" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"aCY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mechpad, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"aDa" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aDc" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aDf" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/hallway/primary/fore) -"aDj" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aDq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDF" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/auxbase{ - dir = 4; - pixel_x = -28 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/assault_pod/mining, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"aDI" = ( -/turf/closed/wall, -/area/science/lab) -"aDK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/gibs/up, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/execution/education) -"aDM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aDQ" = ( -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"aDR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aDS" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDV" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aDX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aDY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aDZ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aEa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space, -/area/space/nearstation) -"aEc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"aEd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEe" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEg" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEi" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEj" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space, -/area/space/nearstation) -"aEk" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEl" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEm" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"aEo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space, -/area/space/nearstation) -"aEq" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space, -/area/space/nearstation) -"aEr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"aEs" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEv" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEw" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/port) -"aEx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aEy" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aEB" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aEG" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"aEH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"aEK" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/starboard/aft) -"aEL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"aEO" = ( -/obj/structure/flora/grass/jungle, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"aEP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aER" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aEX" = ( -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/closet/secure_closet{ - name = "shotgun rubber rounds"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aEZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aFa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aFe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"aFp" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"aFq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aFr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aFv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"aFC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aFF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aFI" = ( -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"aFJ" = ( -/turf/closed/wall/rust, -/area/maintenance/disposal/incinerator) -"aFN" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"aFO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"aFX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"aFY" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aGb" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aGc" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"aGm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aGI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aGN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"aHe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"aHr" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aHz" = ( -/obj/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aHE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aHF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aHG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aHN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aHQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aHV" = ( -/obj/structure/girder, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"aHZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aIc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIv" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 10; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/kilo; - width = 7 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aIA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/tcommsat/computer) -"aIJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/tcommsat/computer) -"aIN" = ( -/obj/structure/sign/departments/botany, -/turf/closed/wall, -/area/maintenance/central) -"aIQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aIR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"aIS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aIX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aIY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aJb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"aJA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"aJB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/departments/science{ - name = "ROBOTICS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/autodrobe, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"aJD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"aJK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJU" = ( -/turf/closed/wall, -/area/medical/paramedic) -"aJW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aKb" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"aKf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aKg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKi" = ( -/obj/structure/flora/grass/jungle/b, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"aKl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"aKn" = ( -/obj/machinery/door/airlock/external{ - name = "Cargo Escape Pod" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"aKp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve, -/obj/machinery/door/window/northright{ - name = "Justice Windoor" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aKr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"aKw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"aKx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"aKC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aKD" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aKI" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"aKJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "library sorting disposal pipe"; - sortType = 16 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "bar sorting disposal pipe"; - sortType = 19 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aKV" = ( -/obj/structure/flora/junglebush/c, -/turf/open/floor/grass, -/area/medical/psychology) -"aKY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aKZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aLb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLd" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aLh" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"aLi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"aLk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"aLl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"aLn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"aLr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"aLy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLA" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"aLB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"aLD" = ( -/obj/effect/turf_decal/bot, -/obj/structure/easel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"aLJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aLM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aLN" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"aLO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"aLQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"aLT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/clothing/suit/apron/purple_bartender, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"aLV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLW" = ( -/obj/machinery/camera{ - c_tag = "AI Upload Garden"; - dir = 4; - name = "upload camera"; - network = list("aiupload") - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aLX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aLZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMd" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aMf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMi" = ( -/obj/structure/table, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aMl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aMM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance"; - req_access_txt = "12;63" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"aMN" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"aMP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"aNk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aNn" = ( -/turf/closed/wall, -/area/medical/medbay/lobby) -"aNs" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNt" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"aNu" = ( -/turf/closed/wall, -/area/medical/morgue) -"aNw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNB" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNC" = ( -/turf/closed/wall/rust, -/area/medical/morgue) -"aNE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aNN" = ( -/turf/closed/wall/r_wall/rust, -/area/medical/morgue) -"aNP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"aNS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"aNU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Upload"; - location = "Science"; - name = "science navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aNV" = ( -/obj/structure/sign/departments/psychology{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair{ - desc = "A gray chair. Nothing more relaxing while waiting for therapy than watching the dying."; - dir = 8; - name = "therapy waiting chair" - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aOa" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/medical/psychology) -"aOb" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/grass, -/area/medical/psychology) -"aOd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aOe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aOf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"aOh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aOk" = ( -/obj/machinery/camera{ - c_tag = "AI Upload Transit Exterior"; - dir = 8; - name = "upload camera"; - network = list("aiupload") - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aOl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/closet/secure_closet/psychology, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aOm" = ( -/obj/item/toy/beach_ball{ - pixel_y = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/grass, -/area/medical/psychology) -"aOp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/item/stack/medical/mesh{ - pixel_x = -4; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"aOx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/bookcase/random/reference, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aOy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bar maintenance"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aOz" = ( -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/storage/belt/medical, -/obj/item/crowbar, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aOC" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/grass, -/area/medical/psychology) -"aOE" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/medical/psychology) -"aOH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/paramedic) -"aOI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"aOK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"aOO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aOP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aOY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"aOZ" = ( -/turf/closed/wall, -/area/medical/storage) -"aPe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aPf" = ( -/turf/closed/wall/rust, -/area/medical/virology) -"aPh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"aPo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aPv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/storage) -"aPC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/storage) -"aPE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/stasis{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/defibrillator_mount/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"aPI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aPJ" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/fire{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aPP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Medical"; - location = "Upload"; - name = "Upload navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPR" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aPW" = ( -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aQc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aQh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aQq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aQr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aQt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aQw" = ( -/turf/closed/wall/r_wall, -/area/medical/exam_room) -"aQz" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aQD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aQF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"aQJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery) -"aQL" = ( -/turf/closed/wall/rust, -/area/medical/surgery) -"aQN" = ( -/turf/closed/wall, -/area/medical/surgery/room_b) -"aQP" = ( -/turf/closed/wall/rust, -/area/medical/surgery/room_b) -"aQQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/operating, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"aQT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aQV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/pharmacy) -"aQW" = ( -/turf/closed/wall, -/area/medical/pharmacy) -"aRa" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/crowbar, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/medical) -"aRg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "medical sorting disposal pipe"; - sortType = 9 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aRi" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aRj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRl" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = 32 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 40 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRn" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/pharmacy) -"aRo" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRp" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/camera{ - c_tag = "Research Division"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aRr" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Hallway Centre"; - name = "fore camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRs" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"aRt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"aRv" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = 40 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = 32 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRx" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aRy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRz" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aRB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aRD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aRF" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"aRG" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aRH" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/depsec/medical, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/medical) -"aRJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/soap/nanotrasen, -/obj/item/hand_labeler, -/obj/item/gun/syringe{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"aRL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"aRN" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aRO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aRP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "medical locker" - }, -/obj/structure/grille/broken, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/under/rank/medical/doctor, -/turf/open/floor/plating, -/area/maintenance/port) -"aRQ" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"aRR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"aRS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "cmo sorting disposal pipe"; - sortType = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aRU" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/obj/item/storage/pill_bottle/epinephrine, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aRV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aRX" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aRY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aSa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"aSe" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aSf" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/port/fore) -"aSg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "Chemistry Hall Shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"aSh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aSi" = ( -/obj/structure/table/glass, -/obj/item/clipboard{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/toy/figure/chemist, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aSl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aSn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"aSq" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aSv" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = null; - req_one_access_txt = "12;22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aSw" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aSy" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"aSz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"aSB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aSG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/surgery/room_b) -"aSJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"aSK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aSO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aST" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"aSW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"aSY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aTf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "crematorium maintenance"; - req_one_access_txt = "27" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"aTh" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/medical/virology) -"aTi" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/medical/virology) -"aTk" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"aTp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aTr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"aTw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"aTx" = ( -/turf/closed/wall/r_wall, -/area/medical/surgery/room_b) -"aTF" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"aTG" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"aTI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aTJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aTO" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"aTP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aTR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aTT" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/barricade/wooden/crude, -/obj/machinery/door/window/southleft{ - name = "cage door" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aTU" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab"; - req_access_txt = "8" - }, -/obj/structure/sign/warning/explosives/alt{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"aTV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aTW" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -6 - }, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aTX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aTZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"aUe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"aUi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"aUk" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "backstage maintenance"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aUx" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"aUz" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"aUE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aUG" = ( -/turf/closed/wall/mineral/plastitanium, -/area/maintenance/port) -"aUJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"aUP" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall/rust, -/area/medical/virology) -"aUR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/science/research) -"aUS" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/tcommsat/computer) -"aUV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "virologysurgery"; - name = "Virology Privacy Shutters" - }, -/turf/open/floor/plating, -/area/medical/virology) -"aUY" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab Storage"; - req_access_txt = "8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"aUZ" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"aVc" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"aVd" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/multitool, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool{ - pixel_x = 4 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aVg" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"aVk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"aVm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aVw" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"aVz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"aVC" = ( -/turf/closed/wall, -/area/medical/surgery) -"aVD" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/virology, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"aVL" = ( -/obj/machinery/camera{ - c_tag = "Medical Operating Theater B"; - dir = 1; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"aVQ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"aVU" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/paramedic) -"aVY" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aWa" = ( -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"aWc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/security/prison) -"aWf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/camera{ - c_tag = "Medbay Psychology Office"; - dir = 8; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"aWg" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aWh" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aWl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"aWm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/psychology) -"aWp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aWq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"aWr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"aWs" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"aWv" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aWw" = ( -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"aWx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"aWy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"aWI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"aWJ" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"aWK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/westright{ - name = "Armoury Desk"; - req_access_txt = "3" - }, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"aWN" = ( -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"aWO" = ( -/obj/structure/table/wood, -/obj/item/paper/guides/jobs/security/courtroom, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aWP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"aWR" = ( -/turf/closed/wall, -/area/science/xenobiology) -"aWU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server) -"aWV" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/grass, -/area/science/genetics) -"aWW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/dna_scannernew, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"aWY" = ( -/turf/closed/wall/r_wall, -/area/science/genetics) -"aXa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"aXb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/science/genetics) -"aXe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aXj" = ( -/turf/closed/wall/rust, -/area/science/robotics/lab) -"aXn" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aXo" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/science/genetics) -"aXt" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aXy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aXA" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/tank_dispenser, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"aXH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aXI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"aXK" = ( -/obj/effect/decal/remains/human, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"aXM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"aXN" = ( -/mob/living/simple_animal/chicken{ - atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 1, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0); - desc = "A timeless classic."; - name = "Kentucky" - }, -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"aXO" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/grass, -/area/science/genetics) -"aXQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/stock_parts/matter_bin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aXR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'SERVER ROOM'."; - name = "SERVER ROOM"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/science/server) -"aXU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/science/genetics) -"aXW" = ( -/turf/closed/wall/rust, -/area/maintenance/starboard/fore) -"aXY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"aYb" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/scrubber{ - name = "scrubber ducky" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"aYd" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"aYe" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/lab) -"aYf" = ( -/turf/closed/wall/r_wall/rust, -/area/science/lab) -"aYg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"aYk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Access"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aYn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"aYo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"aYs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aYt" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"aYx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aYB" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"aYH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"aYJ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "bar maintenance"; - req_access_txt = "25" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"aYK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"aYO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aYY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aYZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"aZa" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/disk/tech_disk{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/disk/tech_disk{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/capacitor{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stock_parts/capacitor{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aZc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"aZe" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aZf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"aZg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aZi" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/rust, -/area/science/lab) -"aZn" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"aZo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"aZp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/hand_labeler, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"aZr" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"aZs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"aZu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"aZv" = ( -/turf/closed/wall, -/area/science/genetics) -"aZw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"aZy" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/obj/machinery/door/window/northleft{ - name = "Robotics Desk"; - req_access_txt = "29" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"aZB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/analyzer, -/obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/science/research) -"aZF" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"aZG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"aZH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Upload Access"; - pixel_x = 6; - req_access_txt = "16" - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"aZJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"aZL" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter" - }, -/obj/machinery/door/window/eastright{ - name = "Research Lab Desk"; - req_one_access_txt = "7;29" - }, -/turf/open/floor/plating, -/area/science/lab) -"aZM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Server Room"; - req_access_txt = "61" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"aZQ" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload) -"aZS" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"aZT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"aZU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/surgical_drapes, -/obj/item/retractor, -/obj/item/cautery, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bae" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters_2"; - name = "Chemistry Hall Shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Chemistry Desk"; - req_access_txt = "5; 69" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"bah" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"bai" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/robotics/lab) -"baj" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 16 - }, -/obj/item/hemostat, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"ban" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"baq" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bas" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Upload Access"; - pixel_x = 6; - req_access_txt = "16" - }, -/obj/machinery/ai_slipper{ - uses = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"bat" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = null; - req_one_access_txt = "12;25" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bau" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload) -"bav" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Control Room"; - req_access_txt = "19; 61" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bay" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"baz" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/loading_area{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"baA" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"baB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"baD" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/transfer_valve{ - pixel_x = -4 - }, -/obj/item/transfer_valve{ - pixel_x = -4 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = 4 - }, -/obj/item/transfer_valve{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"baE" = ( -/obj/structure/table/reinforced, -/obj/item/wirecutters{ - pixel_y = 5 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; - pixel_x = 6 - }, -/obj/item/assembly/igniter{ - desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; - pixel_x = 6 - }, -/obj/item/assembly/igniter{ - desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; - pixel_x = 6 - }, -/obj/item/assembly/igniter{ - desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"baF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"baG" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"baH" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"baJ" = ( -/obj/machinery/rnd/server, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"baK" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"baP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"baQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"baR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"baS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"baU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/science/research) -"baW" = ( -/obj/machinery/door/poddoor/shutters{ - id = "Skynet_launch"; - name = "Mech Bay" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"baX" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"baY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/storage) -"bba" = ( -/turf/closed/wall, -/area/science/storage) -"bbe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bbh" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Medbay Central"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"bbi" = ( -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bbk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bbl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"bbm" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bbn" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Ordnance Lab Mixers"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bbt" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bbu" = ( -/turf/closed/wall/r_wall/rust, -/area/science/mixing/chamber) -"bbw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"bbx" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bby" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bbD" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bbE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"bbH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bbL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"bbN" = ( -/turf/closed/wall, -/area/science/mixing) -"bbP" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bbQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics_shutters"; - name = "Robotics Privacy Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bbS" = ( -/obj/machinery/atmospherics/components/trinary/mixer/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bbU" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bbV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"bbW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bbX" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bbY" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"bca" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"bcc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bcd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bce" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bcf" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/mixing/chamber) -"bcg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"bch" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "research_shutters"; - name = "Research Privacy Shutter" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Lab"; - req_one_access_txt = "7;29;9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bck" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bcl" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bcn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"bco" = ( -/obj/structure/filingcabinet, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"bcr" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bcs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Toxins Pumps"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bct" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bcu" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bcw" = ( -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bcx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/science/server) -"bcz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"bcD" = ( -/turf/closed/wall/rust, -/area/science/mixing) -"bcE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"bcG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bcH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/science/server) -"bcI" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bcK" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bcL" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"bcV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"bda" = ( -/obj/structure/transit_tube/crossing, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bdb" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Monkey Pen"; - req_access_txt = "9, 7" - }, -/turf/open/floor/grass, -/area/science/genetics) -"bdd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bde" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/science/genetics) -"bdf" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"bdg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"bdh" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"bdl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"bdm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"bdo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"bdp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"bdq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"bdz" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/clothing/head/chefhat{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/kitchen/rollingpin{ - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bdC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bdD" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/engine, -/area/science/xenobiology) -"bdF" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"bdG" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bdK" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/gun/energy/e_gun/dragnet{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/gun/energy/e_gun/dragnet, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bdN" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bdO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"bdQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"bdR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"bdT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "toxins sorting disposal pipe"; - sortType = 25 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"bdU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"bdW" = ( -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bdY" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bdZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"beb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/science, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"bed" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bej" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/aft) -"bep" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"ber" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"beu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_x = -32; - pixel_y = 8 - }, -/obj/structure/sign/directions/supply{ - pixel_x = -32 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = -32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"bev" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bey" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"beB" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"beC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"beD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/science/research) -"beI" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"beJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"beK" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"beM" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"beN" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance"; - req_access_txt = "33" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"beO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"beR" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"beS" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"beT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/loading_area{ - dir = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"beV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"beX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"beY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"bfb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bfd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bff" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bfh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bfi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bfj" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bfk" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bfl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"bfo" = ( -/obj/machinery/light/floor, -/obj/effect/turf_decal/box, -/turf/open/floor/engine, -/area/science/xenobiology) -"bfq" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bfr" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/mixing) -"bfs" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bft" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine, -/area/science/xenobiology) -"bfv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/medical, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/medical) -"bfx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bfF" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bfI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bfK" = ( -/obj/structure/table/reinforced, -/obj/machinery/computer/security/telescreen{ - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bfN" = ( -/obj/structure/table/reinforced, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Containment Chamber Toggle"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bfO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Research Lab"; - req_one_access_txt = "7;29;9" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"bfU" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/engine, -/area/science/xenobiology) -"bfY" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Test Chamber"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bgf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"bgi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bgj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"bgo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bgr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "science sorting disposal pipe"; - sortType = 12 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bgw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/extinguisher, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bgx" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/microscope{ - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bgB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bgF" = ( -/obj/machinery/smartfridge/extract/preloaded, -/turf/closed/wall, -/area/science/xenobiology) -"bgO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Xenobiology Computers"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bgP" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bgR" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bgT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bha" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/ai_upload) -"bhj" = ( -/obj/effect/turf_decal/box/corners, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bhn" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/science/xenobiology) -"bhq" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/maintenance/starboard) -"bhu" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"bhA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"bhB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bhC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bhN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bhT" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"bhV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bia" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"big" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"biA" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"biB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Research Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/siding/red/corner, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"biD" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/sunnybush, -/obj/item/food/grown/banana, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"biF" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"biG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"biN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"biU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "47, 9" - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"biW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bjh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"bjm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bjp" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"bjq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "kitchen maintenance"; - req_access_txt = "28" - }, -/obj/structure/fans/tiny/invisible, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bjr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bjt" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mining dock maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"bjL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bjM" = ( -/obj/structure/cable, -/turf/closed/wall, -/area/maintenance/department/electrical) -"bjT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bjY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkd" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"bkj" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cola/red, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"bko" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/maintenance/port) -"bkx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bkG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkJ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bkQ" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"blc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "kitchen maintenance"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"blf" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"blg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"blt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/security/qm{ - dir = 1; - network = list("mine","auxbase","vault","qm") - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"blv" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bly" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/obj/machinery/firealarm/directional/west, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"blB" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/camera{ - c_tag = "Virology Monkey Pen"; - dir = 4; - name = "medical camera"; - network = list("ss13","medical") - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"blC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"blJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_x = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"blM" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"blP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bmt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bmz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bmE" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "xenobiology sorting disposal pipe"; - sortType = 28 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"bmI" = ( -/obj/machinery/door/airlock/external{ - name = "Medical Escape Pod" - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bmJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"bmQ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"bmT" = ( -/obj/structure/table, -/obj/machinery/light_switch/directional/north{ - pixel_x = -8 - }, -/obj/item/clothing/gloves/color/orange, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "custodialwagon"; - name = "Custodial Bay Toggle"; - pixel_x = 8; - req_access_txt = "26" - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"bmU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/suit/fire/firefighter{ - pixel_y = 5 - }, -/obj/item/clothing/mask/breath, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bnb" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 4; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bnf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"bnr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south{ - pixel_x = -32 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"bnt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnv" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bnz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bnA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"bnK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"bnM" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bnU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"bok" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bon" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bop" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/firstaid/o2, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bos" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/port) -"bov" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"boy" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/candle/infinite{ - pixel_x = -4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"boC" = ( -/turf/closed/wall, -/area/hallway/primary/port) -"boF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"boM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/maintenance/port) -"boN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - pixel_x = -24; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"boR" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"boX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"boZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bpd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bpk" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"bpl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bpm" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 11; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bpn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/duffelbag/med{ - pixel_y = 5 - }, -/obj/item/reagent_containers/blood/random{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/random, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"bpq" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/central) -"bpt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bpC" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpD" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bpF" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/hallway/primary/starboard) -"bpH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bpI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bpJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bpL" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bpM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bpN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bpP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bpS" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bpV" = ( -/obj/structure/sign/departments/botany, -/turf/closed/wall, -/area/hallway/primary/starboard) -"bpZ" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bqb" = ( -/obj/structure/sign/departments/custodian, -/turf/closed/wall/rust, -/area/maintenance/central) -"bqe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Restrooms" - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"bqf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"bqx" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bqE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bqZ" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bre" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"brr" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"brF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/button/door/directional/north{ - id = "greylair"; - name = "Lair Privacy Toggle" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"brJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"brL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"brR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - name = "kitchen sorting disposal pipe"; - sortType = 20 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"brV" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"bsf" = ( -/obj/structure/sign/departments/custodian, -/turf/closed/wall, -/area/maintenance/fore) -"bsq" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bsr" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bsw" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/status_display/supply{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bsy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bsA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bsC" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall, -/area/maintenance/port) -"bsD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Hazard Closet"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bsF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"bsI" = ( -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/item/ai_module/supplied/protect_station{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ai_module/zeroth/onehuman, -/obj/item/ai_module/reset/purge{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bsK" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bth" = ( -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Prison Visitation"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"btC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"btF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"btR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"btV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"btY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"buc" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 4 - }, -/obj/item/storage/belt/utility, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Engineering Desk"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"buj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bux" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"buB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"buD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"buF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"bve" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay/alt{ - pixel_x = 32 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_y = -32 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/clothing/glasses/eyepatch{ - pixel_y = 4 - }, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/central) -"bvi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"bvo" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bvB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bvD" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/oil, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bvF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bvQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bvZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bwe" = ( -/turf/closed/wall/r_wall/rust, -/area/science/xenobiology) -"bwk" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"bwn" = ( -/turf/closed/wall/rust, -/area/science/xenobiology) -"bws" = ( -/turf/closed/wall/rust, -/area/security/detectives_office) -"bwu" = ( -/turf/closed/wall/rust, -/area/security/processing) -"bwz" = ( -/turf/closed/wall/rust, -/area/security/checkpoint/supply) -"bwD" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"bwL" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bwO" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"bxc" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bxl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bxn" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/storage) -"bxp" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/maintenance/port) -"bxq" = ( -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bxD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bxG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"bxI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 8; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"bxN" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/belt/janitor, -/obj/item/storage/bag/trash, -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"bxP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/east, -/obj/structure/cable, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"bxS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"bxU" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard) -"byf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"byh" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"byj" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"byo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"byr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"byy" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/central) -"byA" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"byB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"byC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube_ai"; - name = "Transit Tube Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"byD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"byJ" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"byK" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"byL" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"byO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/paper/crumpled{ - info = "The safes have been locked and scrambled. Three thousand space dollars, a bandolier, a custom shotgun, and a lazarus injector have been safely deposited."; - name = "bank statement" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"byS" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 1; - layer = 3.1; - name = "Cyborg Upload Console Window"; - req_access_txt = "16" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"byT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"byU" = ( -/obj/machinery/computer/upload/ai, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - layer = 3.1; - name = "Upload Console Window"; - req_access_txt = "16" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"byV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - name = "hydroponics sorting disposal pipe"; - sortType = 21 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bzb" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/freeform, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bzd" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"bze" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/ai_upload) -"bzf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"bzg" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"bzk" = ( -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"bzl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "31;48" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bzt" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"bzv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"bzB" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light_switch/directional/west, -/obj/machinery/camera{ - c_tag = "Server Room"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/server) -"bzE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "bankshutter"; - name = "Bank Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port) -"bzH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bzM" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "chemistry_shutters"; - name = "Lobby Shutters Toggle"; - pixel_x = 24; - req_access_txt = "5; 69" - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"bzO" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bzS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/turf/open/space/basic, -/area/space/nearstation) -"bzT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bzW" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bzX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stock_parts/capacitor, -/turf/open/floor/plating, -/area/maintenance/port) -"bzY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bAa" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bAb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/tower, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bAd" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"bAe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bAf" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"bAm" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/maintenance/central) -"bAp" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bAq" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Cold Loop to Gas" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"bAt" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/plant_analyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"bAu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"bAv" = ( -/obj/structure/girder, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"bAx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bAz" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bAM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"bAN" = ( -/turf/closed/wall, -/area/medical/virology) -"bAQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "hydroponics maintenance"; - req_access_txt = "35" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bAW" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bAX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bBa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "cargo sorting disposal pipe"; - sortType = 2 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bBg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"bBj" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bBk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "Detective's Office Shutter" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"bBm" = ( -/obj/machinery/door/airlock/vault{ - id_tag = "bank"; - name = "Bank Vault" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bBo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bBp" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bBr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBs" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bBy" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/hallway/primary/aft) -"bBA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bBB" = ( -/turf/closed/wall/rust, -/area/hallway/primary/aft) -"bBD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - name = "lawyer sorting disposal pipe"; - sortType = 29 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bBJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bBK" = ( -/obj/effect/turf_decal/bot, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/spacecash/c500{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lazarus_injector, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bBS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/medical{ - dir = 1; - pixel_x = 32; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - pixel_x = 32 - }, -/obj/structure/sign/directions/security{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bCd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"bCe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bCg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bCh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"bCm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bCt" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bCw" = ( -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"bCB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bCD" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bCH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bCK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bCL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bCS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bCY" = ( -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"bDi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bDj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bDk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bDn" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bDo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bDs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bDC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bDZ" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bEa" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bEf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bEg" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"bEk" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bEq" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"bEt" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bEA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bED" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bEH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/aft) -"bEI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"bEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bEL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bEM" = ( -/obj/machinery/status_display/evac/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"bER" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"bES" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"bET" = ( -/turf/closed/wall/rust, -/area/maintenance/aft) -"bEV" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/aft) -"bEY" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bEZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bFa" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bFc" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/maintenance/aft) -"bFf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bFg" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - name = "disposal supplies" - }, -/obj/item/bodybag, -/obj/item/bodybag, -/obj/item/shovel, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"bFh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bFj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"bFp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Council Chamber"; - req_one_access_txt = "38;63" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bFs" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"bFt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"bFw" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase{ - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"bFz" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/aft) -"bFD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bFF" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/maintenance/port) -"bFG" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small/directional/east, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bFH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bFI" = ( -/obj/effect/turf_decal/sand/plating, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bFL" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bFM" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bFQ" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/maintenance/port) -"bFS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"bFT" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"bFY" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/structure/barricade/wooden, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFZ" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/maintenance/aft) -"bGa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bGc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"bGf" = ( -/obj/structure/closet/cardboard, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/aft) -"bGg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bGh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"bGl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"bGr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"bGw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"bGx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bGy" = ( -/obj/structure/table, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"bGB" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/departments/cargo{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bGE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"bGG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"bGH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"bGL" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"bGN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/structure/cable, -/obj/machinery/computer/rdconsole{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"bGP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"bGS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/processing) -"bGU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/aft) -"bGW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bGX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bGY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bHb" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/red, -/obj/item/circuitboard/machine/paystand, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bHf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bHh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bHk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bHl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"bHm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bHo" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bHp" = ( -/obj/structure/chair/pew/right{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bHs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bHI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bHO" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/taperecorder, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"bHS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"bHX" = ( -/turf/closed/wall/rust, -/area/hallway/primary/port) -"bIc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bIi" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bIp" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bIr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bIu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bIv" = ( -/obj/structure/chair, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bIx" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bIA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bIB" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bIE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bIF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Security Post"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"bIM" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bIN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Hydroponics Counter"; - dir = 8; - name = "starboard camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bIO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bIR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port) -"bIS" = ( -/obj/item/grenade/barrier{ - pixel_x = 4 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = -4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/key/security, -/obj/item/key/security, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bJv" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"bJy" = ( -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/tcommsat/computer) -"bJz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"bJE" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/hallway/primary/central) -"bJJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bJL" = ( -/obj/structure/closet/secure_closet/chemical, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/pillbottles, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"bJP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"bJX" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bJZ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/frame/machine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/cargo/warehouse) -"bKi" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bKl" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"bKK" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bKN" = ( -/obj/structure/closet/cardboard, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bKO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/rust, -/area/maintenance/disposal/incinerator) -"bKQ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"bKR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bLa" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bLc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/obj/effect/spawner/xmastree, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"bLg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bLq" = ( -/obj/machinery/door/airlock/maintenance{ - id_tag = "bankvault"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"bLy" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bLA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/arrows, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bLH" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/security/prison) -"bLS" = ( -/obj/effect/turf_decal/caution{ - pixel_y = -12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLU" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/bowler{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"bMm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/pods{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bMn" = ( -/turf/open/floor/plasteel, -/area/security/courtroom) -"bMy" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bMA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bMC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/departments/security{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bMJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/washing_machine, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"bML" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/maintenance/aft) -"bMM" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/primary/aft) -"bMR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bMX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/port/aft) -"bNe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "sparemech"; - name = "Abandoned Mech Bay" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bNj" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bNl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/stack/rods/ten, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bNm" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/maintenance/port/aft) -"bNo" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;101" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bNq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bNF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance"; - req_access_txt = "4" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bNH" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"bNP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bOb" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"bOc" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"bOi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/secondary/entry) -"bOp" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bOB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"bOC" = ( -/turf/closed/wall/rust, -/area/maintenance/starboard/aft) -"bOM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bOQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bOR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"bOT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bOU" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"bOV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOZ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance"; - req_one_access_txt = "17;19" - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bPa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"bPe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"bPf" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"bPr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bPt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bPu" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bPv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bPy" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bPz" = ( -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bPA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bPB" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo maintenance"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"bPD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Courtroom Jury"; - dir = 8; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bPI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bPJ" = ( -/turf/closed/mineral/random/labormineral, -/area/hallway/secondary/entry) -"bPK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bPN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bPP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle/b, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bPR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bPV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"bPX" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bPZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bQa" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/hallway/secondary/entry) -"bQb" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/service/chapel) -"bQg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"bQq" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/chemistry) -"bQs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bQy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Prison Access"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"bQF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/starboard) -"bQG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bQN" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/pickaxe, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"bQU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bQV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/securearea{ - name = "EMERGENCY STORAGE"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bQW" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"bRb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"bRd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/central) -"bRg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bRr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"bRs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bRt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bRv" = ( -/obj/machinery/door/poddoor{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating/airless, -/area/hallway/secondary/entry) -"bRw" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"bRy" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"bRz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bRB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bRD" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"bRE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bRF" = ( -/turf/closed/wall/rust, -/area/hallway/secondary/exit/departure_lounge) -"bRH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Holding Area"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bRJ" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bRQ" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 11; - height = 18; - id = "emergency_home"; - name = "KiloStation emergency evac bay"; - width = 30 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bRT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"bRX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"bRY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bSa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bSf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"bSj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/backpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/backpack, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bSn" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"bSp" = ( -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"bSr" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"bSx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bSA" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bSH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bSI" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/maintenance/starboard/aft) -"bSL" = ( -/obj/structure/sign/warning/securearea{ - name = "EMERGENCY STORAGE" - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"bSM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock"; - req_one_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bSN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"bSR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bTd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bTg" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/obj/item/clothing/shoes/jackboots{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/cowboy/black, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bTj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"bTl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"bTp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bTq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bTt" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bTv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bTw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"bTx" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"bTA" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bTC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bTD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bTE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/docking, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"bTG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bTH" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bTL" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "security locker" - }, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/shoes/jackboots, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bTO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bTR" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bTS" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/entry) -"bTT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bTU" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bTY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bUb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bUd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bUh" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/clothing, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bUj" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/hallway/secondary/entry) -"bUk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUo" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/hallway/secondary/entry) -"bUp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bUx" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bUy" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/gulag_item_reclaimer{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"bUA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUE" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUF" = ( -/obj/structure/flora/rock/pile, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"bUI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bUN" = ( -/turf/open/floor/plating/airless, -/area/space) -"bUO" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space) -"bUP" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"bUR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"bUU" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/kilo; - width = 9 - }, -/turf/open/space, -/area/space) -"bVb" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bVn" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/security/processing) -"bVo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bVp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bVq" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"bVt" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVu" = ( -/obj/structure/sign/warning/securearea{ - name = "WARNING: Station Limits" - }, -/turf/closed/wall/rust, -/area/space/nearstation) -"bVv" = ( -/turf/closed/mineral/random/high_chance, -/area/space/nearstation) -"bVx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/crowbar/red, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bVz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/brig) -"bVB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bVF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bVH" = ( -/turf/closed/wall/r_wall/rust, -/area/science/test_area) -"bVI" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall/rust, -/area/science/test_area) -"bVL" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/wall/r_wall/rust, -/area/science/test_area) -"bVO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bVR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bVZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bWh" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"bWn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bWo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"bWp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 6"; - name = "Cell 6"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 6"; - name = "Cell 6 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bWr" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/closed/wall/r_wall/rust, -/area/security/prison) -"bWs" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"bWu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 5"; - name = "Cell 5"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 5"; - name = "Cell 5 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 4"; - name = "Cell 4"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 4"; - name = "Cell 4 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bWz" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/secondary/entry) -"bWA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"bWB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bWF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bWG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_x = -32 - }, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bWJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Captain's Tactical Relocation"; - dir = 4; - name = "command camera" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bWK" = ( -/obj/structure/girder/displaced, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"bWM" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"bWR" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "detective closet" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat"; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bWT" = ( -/turf/closed/wall/rust, -/area/hallway/secondary/entry) -"bWY" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bXc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bXd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bXe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bXg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter" - }, -/turf/open/floor/plating, -/area/security/execution/education) -"bXi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/chair/office, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"bXn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"bXr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/warden) -"bXs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXx" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"bXy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXE" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bXK" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = null; - req_one_access_txt = "12;35" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"bXN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"bXQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bXS" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXV" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - name = "Security Desk"; - req_one_access_txt = "63" - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bXW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bXZ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bYf" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bYg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arrivals Dock" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"bYh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"bYk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = -4 - }, -/obj/item/wrench, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"bYm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/brig) -"bYo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"bYu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"bYx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bYy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bYG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bYH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"bYN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bYP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bYW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bZh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bZs" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bZv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bZx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZy" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Planters"; - dir = 4; - name = "starboard camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bZB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "31;48" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bZD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Security"; - location = "Courtroom"; - name = "courtroom navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bZF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=EVA"; - location = "HOP"; - name = "hop navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"bZL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departures Cargo Dock"; - dir = 1; - name = "shuttle camera" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"bZR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/observer_start, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZV" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"bZX" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/clothing/under/rank/security/officer, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZY" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cac" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cad" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cag" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cah" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Engineering"; - location = "EVA"; - name = "eva navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cai" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cam" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"can" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Custodial"; - location = "Tools"; - name = "tools navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cao" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cap" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"car" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cas" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cav" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/hallway/secondary/entry) -"caA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"caJ" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/medical/psychology) -"caN" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"caO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"caT" = ( -/turf/closed/wall/r_wall, -/area/science/test_area) -"caV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/gloves/color/black, -/obj/item/wrench, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cbi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbj" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cbk" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard) -"cbl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbm" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/maintenance/starboard) -"cbn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/security{ - pixel_y = -40 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -32 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cbq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cby" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbz" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/engineering{ - pixel_y = -40 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -32 - }, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -24 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbB" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cbC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbH" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbN" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Hallway Tech Storage"; - dir = 8; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cbU" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/test_area) -"cbV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/vomit/old, -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cbX" = ( -/obj/item/target/clown, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"cbY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cce" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"ccf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"ccg" = ( -/obj/docking_port/stationary/random{ - dir = 8; - id = "pod_lavaland2"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cci" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/wall/r_wall, -/area/science/test_area) -"ccj" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"cck" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccn" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"cco" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall/r_wall, -/area/science/test_area) -"ccp" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccr" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"ccs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ccw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Cargo"; - location = "Arrivals"; - name = "arrivals navigation beacon" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ccx" = ( -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccy" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccz" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"ccA" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccB" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccE" = ( -/obj/item/beacon, -/obj/effect/turf_decal/box, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccF" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccG" = ( -/obj/item/target/clown, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccH" = ( -/turf/closed/indestructible/opshuttle, -/area/science/test_area) -"ccI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ccJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccL" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"ccM" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccN" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ccP" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ccR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ccU" = ( -/obj/machinery/telecomms/processor/preset_four, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"ccV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ccX" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ccY" = ( -/obj/structure/transit_tube/curved, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ccZ" = ( -/obj/structure/flora/grass/jungle, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cdc" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/ai_upload) -"cdd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"cde" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdl" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdn" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdo" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdq" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cds" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/securearea{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"cdt" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdu" = ( -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cdA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/science/robotics/mechbay) -"cdB" = ( -/obj/machinery/telecomms/server/presets/science, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdC" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cdG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cdK" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdL" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdM" = ( -/obj/machinery/telecomms/server/presets/service, -/obj/structure/cable, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cdN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"cdO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"cdP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"cdR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cdT" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cdU" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"cdV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"cdX" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"cdY" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/ai) -"cdZ" = ( -/turf/closed/wall/rust, -/area/ai_monitored/turret_protected/ai) -"cea" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"ced" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ceg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/holopad/secure, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"cem" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"cen" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ceq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"cer" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"ces" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"cet" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"ceu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"cev" = ( -/obj/structure/transit_tube/diagonal/topleft, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"cez" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ceA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"ceD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"ceE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"ceF" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/atmos) -"ceG" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat/atmos) -"ceN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"ceO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ceP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ceQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ceR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceS" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ceY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cfc" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfd" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfe" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfg" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfh" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cfn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cfo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/camera{ - c_tag = "Departures Lounge"; - name = "shuttle camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cfq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"cfs" = ( -/obj/structure/cable, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/solar_assembly, -/obj/item/stack/sheet/glass/fifty, -/obj/structure/closet/crate/engineering/electrical, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cft" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "AI Chamber Door"; - dir = 1; - name = "core camera"; - network = list("aicore") - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"cfA" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfB" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cfF" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfG" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"cfH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"cfM" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cfU" = ( -/turf/closed/wall/r_wall/rust, -/area/tcommsat/computer) -"cfZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"cgg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"cgi" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"cgk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgm" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 36; - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/east{ - pixel_x = 36; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/ticket_machine{ - name = "Increment Ticket Counter"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/item/paper/fluff/ids_for_dummies, -/obj/machinery/button/door/directional/east{ - id = "hopqueue"; - name = "Queue Shutters Toggle"; - pixel_y = -6; - req_access_txt = "57" - }, -/obj/machinery/button/door/directional/east{ - id = "hop"; - name = "Privacy Shutters Toggle"; - pixel_y = 6; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"cgp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"cgu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/computer) -"cgw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"cgz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cgC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cgF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"cgI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cgJ" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"cgL" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"cgN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/bot/medbot{ - auto_patrol = 1; - desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; - name = "Inspector Johnson" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"cgO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/blood/old, -/obj/item/weldingtool{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/clothing/head/welding{ - pixel_y = 5 - }, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cgP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cgX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cgZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Tools"; - location = "Engineering"; - name = "engineering navigation beacon" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"chd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"chf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary"; - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"chg" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"chj" = ( -/obj/structure/sign/warning/xeno_mining, -/turf/closed/wall, -/area/maintenance/fore) -"chk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"chl" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"chn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"cho" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"chq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"chr" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"chw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"chz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"chD" = ( -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"chI" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"chL" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"chM" = ( -/obj/structure/transit_tube/diagonal, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"chN" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"chO" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat/atmos) -"chR" = ( -/turf/open/floor/plating, -/area/security/prison) -"chU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"chV" = ( -/turf/closed/wall/rust, -/area/ai_monitored/turret_protected/aisat_interior) -"chX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"chZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cia" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cic" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cig" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"cij" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"cim" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"cin" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cio" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"cir" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 28; - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"cis" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/turret_protected/aisat/foyer) -"cit" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"ciu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Satellite Foyer"; - dir = 8; - name = "satellite camera"; - network = list("minisat") - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"civ" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"ciw" = ( -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/foyer) -"ciy" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/aisat/foyer) -"ciz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ciI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ciJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ciL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"ciM" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"ciO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ciP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ciQ" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/rust, -/area/space/nearstation) -"ciT" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/obj/item/tank/internals/oxygen, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"ciY" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"ciZ" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cjh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cji" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cjj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cjD" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cjE" = ( -/obj/structure/table, -/obj/item/food/energybar, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cjG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/destructible/cult/tome, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/codex_gigas{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/flashlight/lantern{ - pixel_x = 4 - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/fancy/candle_box{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"cjL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"ckd" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"cke" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/space/nearstation) -"ckf" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ckg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"ckh" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"ckk" = ( -/obj/structure/lattice, -/turf/open/space, -/area/space/nearstation) -"ckm" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/primary/aft) -"ckn" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/space/nearstation) -"cko" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ckp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ckq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"ckr" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cks" = ( -/obj/machinery/door/airlock/maintenance{ - name = "e.v.a. maintenance"; - req_access_txt = "18" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"ckw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ckz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"ckC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"ckI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"ckJ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ckK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"ckR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"ckS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ckU" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/aft) -"ckY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"clb" = ( -/turf/closed/wall/rust, -/area/maintenance/solars/starboard/aft) -"cld" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"clh" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"clj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cll" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 14; - id = "arrivals_stationary"; - name = "kilo arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/kilo; - width = 7 - }, -/turf/open/floor/plating/airless, -/area/space) -"clm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"cln" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"clo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"clp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"clq" = ( -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"clz" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"clD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"clO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"clS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"clX" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clY" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cma" = ( -/obj/structure/closet/crate/solarpanel_small, -/obj/effect/turf_decal/delivery, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cme" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cmf" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cmg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/cargochat/science{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"cmh" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"cmi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cmj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cmm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cmo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"cmp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cmt" = ( -/turf/closed/wall/mineral/plastitanium, -/area/maintenance/port/aft) -"cmy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/closet/cardboard, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cmz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"cmB" = ( -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"cmC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/goonplaque, -/area/security/brig) -"cmD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cmF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"cmR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cmS" = ( -/obj/machinery/camera{ - c_tag = "Satellite External Fore"; - dir = 1; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cmU" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cmV" = ( -/obj/machinery/camera{ - c_tag = "Satellite External Port"; - dir = 8; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cmW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cmY" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cmZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/entry) -"cnd" = ( -/turf/closed/wall/rust, -/area/maintenance/disposal) -"cne" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cnf" = ( -/obj/structure/grille, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"cni" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/port) -"cnm" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"cno" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/security/processing) -"cnp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/processing) -"cnr" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/port) -"cnu" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"cnw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cny" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cnz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cnA" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cnC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cnF" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnJ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"cnL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"cnM" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnN" = ( -/turf/closed/wall, -/area/maintenance/solars/port/aft) -"cnO" = ( -/turf/closed/wall/rust, -/area/maintenance/solars/port/aft) -"cnP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/aft) -"cnQ" = ( -/obj/structure/flora/rock/pile, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnR" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cnS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cnU" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cnV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "detective sorting disposal pipe"; - sortType = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnZ" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cog" = ( -/obj/structure/flora/grass/jungle/b, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cok" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"com" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cop" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/fore) -"cos" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space) -"cou" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/port/aft) -"cov" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/box, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cow" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"coy" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"coB" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/solars/port/aft) -"coD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"coE" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"coF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"coG" = ( -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/obj/machinery/button/door/directional/south{ - id = "captain_escape"; - name = "Tactical Relocation Toggle" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"coH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"coO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=HOP"; - location = "Security"; - name = "security navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"coV" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"coW" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"coX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"coY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"coZ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/structure/grille/broken, -/obj/item/analyzer, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cpc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"cpd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cps" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"cpu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cpx" = ( -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"cpH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"cpI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cpN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/beacon, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"cpU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cpW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/official/enlist{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpX" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"cpY" = ( -/obj/item/pickaxe, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cqa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"cqi" = ( -/turf/closed/mineral/random/labormineral, -/area/space) -"cql" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cqp" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cqq" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cqr" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"cqs" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/maintenance/port) -"cqt" = ( -/obj/structure/sign/warning, -/turf/closed/wall, -/area/maintenance/port/aft) -"cqu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "hos sorting disposal pipe"; - sortType = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cqw" = ( -/obj/structure/sign/warning/deathsposal{ - layer = 4 - }, -/turf/closed/wall, -/area/science/xenobiology) -"cqx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cqy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cqC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/stack/package_wrap, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port) -"cqD" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cqI" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/maintenance/port/aft) -"cqL" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cqN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Ferry Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"cqT" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/rust, -/area/maintenance/port) -"cqU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/space_heater, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/south, -/obj/structure/sign/poster/contraband/fun_police{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"cqX" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"crb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"crc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"crd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"crl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cro" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"crp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"crq" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/rust, -/area/maintenance/port) -"crs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"crv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"crx" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"cry" = ( -/turf/open/space/basic, -/area/space/nearstation) -"crz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"crB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/coin/twoheaded{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"crD" = ( -/obj/machinery/door/airlock/external{ - name = "Security Escape Pod" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"crG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"crI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"crK" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space) -"crL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/warden, -/obj/structure/chair/office, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"crN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"crP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"crS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/food/pie_smudge, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"crV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"crW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"crY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/brigdoor/northleft{ - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/turf/open/floor/plating, -/area/security/warden) -"csc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cse" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"csf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"csi" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"csk" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"csl" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"csp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Aft Hallway Security Firelock"; - dir = 1; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port) -"csG" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/southright{ - name = "Cargo Disposal"; - req_access_txt = "50" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"csN" = ( -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"csS" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"csX" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security{ - name = "Armoury"; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"csY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"ctb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"ctf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cti" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"ctj" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet{ - name = "suit closet" - }, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctn" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"ctu" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"ctw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"ctx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"ctz" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"ctA" = ( -/turf/closed/wall/rust, -/area/maintenance/solars/port/fore) -"ctB" = ( -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"ctF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Transferring Centre"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"ctH" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ctI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ctN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"ctU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cuf" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cui" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"cuj" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"cul" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/maintenance/port/aft) -"cum" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/stack/rods/ten, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/port) -"cup" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cur" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cuw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cuy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/poster/random_official{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/poster/random_official, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/port) -"cuE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/wallframe/airalarm, -/turf/open/floor/plasteel/showroomfloor, -/area/maintenance/port/aft) -"cuF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/maintenance/port/aft) -"cuK" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"cuL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cuM" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -4 - }, -/obj/machinery/portable_atmospherics/canister/air{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cuU" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cuZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cvd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cvf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cvg" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cvk" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cvo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cvp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cvq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cvv" = ( -/obj/effect/spawner/structure/window/hollow/reinforced/directional{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cvz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cvC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cvE" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cvS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"cvX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/dresser, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cvY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/item/toy/katana, -/obj/item/clothing/shoes/sandal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cwa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cwd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Warden Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cwe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cwf" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"cwp" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"cwq" = ( -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"cww" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cwy" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/port/fore) -"cwH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"cwM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"cwN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cwO" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cwP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cwQ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cwR" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cwS" = ( -/obj/structure/girder, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"cwT" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/fore) -"cwX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/bed, -/obj/item/bedsheet/brown, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"cxa" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/head/that{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cxb" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/port/fore) -"cxc" = ( -/mob/living/simple_animal/hostile/bear{ - desc = "Once a trained show bear, this creature has been left abandoned and unfed."; - environment_smash = 0; - health = 160; - maxHealth = 160; - melee_damage_upper = 25; - name = "hungry show bear" - }, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cxf" = ( -/obj/structure/barricade/wooden, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cxn" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"cxo" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/fore) -"cxp" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/structure/spider/stickyweb, -/obj/machinery/button/door/directional/east{ - id = "bankvault"; - name = "Bank Door Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "bankshutter"; - name = "Bank Shutter Toggle"; - pixel_y = -8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"cxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"cxr" = ( -/obj/structure/sign/poster/contraband/clown, -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"cxs" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cxt" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"cxw" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cxy" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"cxz" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - shuttledocked = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cxC" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"cxE" = ( -/obj/machinery/camera/motion{ - c_tag = "Armoury External" - }, -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space/nearstation) -"cxG" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/item/clipboard, -/obj/item/clothing/mask/fakemoustache, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cxH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cxI" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"cxK" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"cxL" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet{ - name = "engineering locker" - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/shoes/workboots, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/under/rank/engineering/engineer, -/turf/open/floor/plating, -/area/maintenance/aft) -"cxN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"cxP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cxS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cxT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cxU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Transferring Centre"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cxW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/securearea{ - name = "EMERGENCY STORAGE"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"cxY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"cya" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "greylair"; - name = "Lair Privacy Shutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"cyd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cyf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/engineering, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"cyl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"cyq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"cyr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cyu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"cyy" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/maintenance/port/aft) -"cyz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"cyE" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyG" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Storage"; - dir = 4; - name = "shuttle camera" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cyH" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/fore) -"cyI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"cyJ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/fore) -"cyL" = ( -/obj/structure/table, -/obj/item/candle/infinite{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/food/spaghetti/meatballspaghetti{ - pixel_y = 5 - }, -/obj/item/kitchen/fork, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cyN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cyQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"cyR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/assist, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/punch_shit{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cyZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/jungle/mook{ - environment_smash = 0; - name = "deformed creature" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czi" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/restraints/legcuffs/beartrap, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"czj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"czw" = ( -/obj/machinery/vending/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"czx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czy" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"czz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"czA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czE" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/backpack, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/extinguisher, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"czF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/engineering/atmos) -"czG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"czI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"czJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/processing) -"czK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"czL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"czP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/wardrobe/green, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"czR" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/storage/box/prisoner, -/obj/machinery/camera{ - c_tag = "Prison Hallway Port"; - dir = 1; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"czZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/wardrobe/mixed, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cAr" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/the_griffin{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cAs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cAv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/grey_tide{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"cAB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Council Chamber"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"cAE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cAF" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cAH" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/maintenance/fore) -"cAU" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/maintenance/fore) -"cAY" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space) -"cAZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cBc" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/fore) -"cBf" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fore) -"cBg" = ( -/obj/structure/closet/crate, -/obj/item/clothing/suit/hooded/chaplain_hoodie, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"cBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cBk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cBm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cBn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/prison{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"cBo" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cBv" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"cBw" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"cBx" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"cBy" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"cBC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access_txt = "3" - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cBD" = ( -/obj/structure/flora/grass/jungle, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cBI" = ( -/turf/open/floor/plating/asteroid, -/area/maintenance/port/aft) -"cBK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"cBN" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"cCi" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cCj" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cCk" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cCm" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock"; - safety_mode = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"cCr" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cCs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"cCy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"cCB" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cCF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cCH" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Security Desk"; - req_one_access_txt = "63" - }, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cCO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"cCP" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cCR" = ( -/obj/structure/table, -/obj/item/storage/secure/briefcase, -/obj/item/taperecorder, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"cCT" = ( -/obj/machinery/door/poddoor/shutters{ - id = "maidbay"; - name = "Maid Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cCU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cCV" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cCW" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cDa" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cDb" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/maintenance/fore) -"cDh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"cDk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/fore) -"cDl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cDq" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cDv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cDx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"cDE" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cDN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"cDO" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/fore) -"cDP" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/fore) -"cDR" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cDV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"cDW" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57" - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/maintenance/starboard/fore) -"cDY" = ( -/obj/structure/chair/sofa/corner{ - color = "#c45c57" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/starboard/fore) -"cEb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/retaliate/ghost, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEf" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/starboard/fore) -"cEg" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"cEj" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEk" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEn" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEo" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/starboard/fore) -"cEp" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEw" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEx" = ( -/obj/structure/bookcase/random/fiction, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cEz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cEB" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cEE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cEI" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/cat_butcherer, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cEJ" = ( -/obj/structure/table/optable, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/surgical_drapes, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cEL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cEN" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fore) -"cEO" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"cET" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cEV" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cEX" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/rust, -/area/maintenance/fore) -"cEY" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/security/prison) -"cFa" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cFc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"cFg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cFk" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cFl" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cFq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cFy" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"cFC" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFE" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Cargo Delivery Access"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cFK" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/port) -"cFL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/port) -"cFN" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"cFP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cFT" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"cFU" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"cFV" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cFX" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"cFY" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cGa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"cGb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"cGd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/starboard/fore) -"cGi" = ( -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGj" = ( -/obj/structure/flora/rock/pile, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGl" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGp" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGr" = ( -/obj/structure/flora/grass/jungle/b, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"cGx" = ( -/obj/structure/transit_tube/curved/flipped, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"cGy" = ( -/obj/item/target/clown, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine/vacuum, -/area/science/test_area) -"cGz" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cGA" = ( -/obj/docking_port/stationary/random{ - dir = 2; - id = "pod_lavaland1"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cGD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/turf/open/floor/plating, -/area/security/prison) -"cGF" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cGH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"cGI" = ( -/obj/machinery/camera{ - c_tag = "Satellite External Starboard"; - dir = 4; - name = "exterior camera"; - network = list("minisat"); - start_active = 1 - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cGK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cGS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/execution/education) -"cGV" = ( -/obj/machinery/power/solar_control{ - dir = 8; - id = "aftstarboard"; - name = "Starboard Quarter Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/starboard/aft) -"cHb" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"cHc" = ( -/turf/closed/wall/rust, -/area/maintenance/solars/starboard/fore) -"cHu" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cHx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cHF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/monkeycubes{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/storage/box/monkeycubes{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cHL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"cHN" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cHT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"cIc" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cIi" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/sign/plaques/kiddie/library{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"cIm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cIp" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cIv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"cIA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cIB" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"cIK" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/item/paper/crumpled{ - info = "This isn't funny, I'm trapped on the least fun room on the station."; - name = "poorly written complaint" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cIL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cIU" = ( -/turf/closed/wall/rust, -/area/construction/mining/aux_base) -"cIV" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"cIW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"cIX" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cIY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cJh" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cJi" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"cJk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"cJm" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/starboard/fore) -"cJo" = ( -/obj/docking_port/stationary{ - area_type = /area/construction/mining/aux_base; - dheight = 4; - dir = 8; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "aux base zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cJv" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cJw" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxillary Base Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"cJx" = ( -/obj/structure/girder, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cJB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cJD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"cJG" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cJH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"cJI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"cJJ" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"cJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cJO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cJQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"cJR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cJV" = ( -/obj/machinery/gulag_teleporter, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cJX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cKc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cKd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"cKe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"cKg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"cKi" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Transferring Centre Dock"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/processing) -"cKv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cKI" = ( -/obj/structure/dresser, -/obj/machinery/airalarm/directional/east, -/obj/machinery/button/door/directional/north{ - id = "Cabin_1"; - name = "Cabin 1 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/locker) -"cKV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/grille/broken, -/obj/item/clothing/suit/hazardvest{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLd" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"cLg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cLh" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/tank/internals/oxygen, -/obj/item/pickaxe, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLk" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cLr" = ( -/turf/closed/wall/rust, -/area/maintenance/department/electrical) -"cLs" = ( -/turf/closed/wall, -/area/maintenance/department/electrical) -"cLt" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"cLF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cLH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cLJ" = ( -/obj/structure/table, -/obj/item/clothing/suit/justice, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"cLM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"cLN" = ( -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cLR" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"cLZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cMd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cMe" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cMg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMh" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/fyellow{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/spider/stickyweb, -/obj/machinery/light/small/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cMl" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"cMs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmospherics Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"cMt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"cMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"cMF" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"cMG" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cMJ" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/gravity_generator) -"cNg" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/maintenance/starboard) -"cNi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"cNt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cNx" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/detective, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"cNy" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Station Monitor"; - network = list("ss13"); - pixel_x = 24 - }, -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/hand_labeler, -/obj/item/taperecorder, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"cNz" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"cNA" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"cNC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"cNE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNN" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"cNO" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector"; - req_one_access_txt = "10;24;5" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"cNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNT" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"cNY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "Director's Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cNZ" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/lowpressure, -/area/space/nearstation) -"cOb" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/maintenance/starboard) -"cOd" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_lavaland4"; - name = "lavaland" - }, -/turf/open/space, -/area/space/nearstation) -"cOg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Cabin_3Privacy"; - name = "Cabin 3 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cOn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"cOo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cOp" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/space/nearstation) -"cOs" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"cOv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cOx" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"cOz" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPa" = ( -/turf/closed/wall/r_wall/rust, -/area/security/prison/safe) -"cPg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"cPk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"cPx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/assist, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"cPA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"cPE" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/flora/grass/jungle, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cPH" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port) -"cPY" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"cQM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cQO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cQP" = ( -/obj/structure/sign/poster/official/fruit_bowl, -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"cRp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/rnd/production/techfab/department/security, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cRB" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cRM" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"cSy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cSJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"cSP" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cSR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 4 - }, -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cSS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/item/wirecutters, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"cST" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/prison) -"cSU" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/rust, -/area/security/prison) -"cSZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cTl" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"cTG" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "justiceblast"; - name = "Justice Blast door" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"cTI" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cTP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cUt" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"cUH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/sign/directions/science{ - dir = 1; - pixel_y = 40 - }, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"cVb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"cVj" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/storage/backpack/satchel, -/obj/item/analyzer, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cVz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cVA" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/virologist, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"cVJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater A"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"cVO" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fernybush, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"cVW" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"cWg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"cWw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cWK" = ( -/turf/closed/wall, -/area/commons/storage/primary) -"cWX" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/requests_console/directional/south{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"cXz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "50" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"cXD" = ( -/obj/structure/sign/poster/contraband/red_rum, -/turf/closed/wall/rust, -/area/maintenance/port) -"cXH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"cXK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/engine, -/area/tcommsat/computer) -"cYn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"cYo" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8; - filter_type = "n2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"cYQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/warden) -"cZi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"cZn" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"cZo" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/service/chapel) -"cZV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"cZY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"dab" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"daF" = ( -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/extinguisher{ - pixel_y = 4 - }, -/obj/item/extinguisher{ - pixel_x = -4 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno6"; - name = "Creature Cell 6 Toggle"; - pixel_x = 24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"daG" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"daT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"daZ" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"dbl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"dbz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"dbG" = ( -/turf/closed/wall, -/area/command/bridge) -"dcf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dcK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/brig) -"dcO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dcT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/bedsheetbin, -/obj/structure/table/glass, -/obj/machinery/airalarm/directional/north, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"ddk" = ( -/obj/structure/cable, -/obj/structure/flora/ausbushes/sparsegrass{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/security/prison) -"ddv" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Forestry" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison) -"ddA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"ddM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"ddN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"deb" = ( -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"deq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"deD" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"deI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"deP" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"deQ" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"deT" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Biogenerator"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"dfq" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/grille/broken, -/obj/item/wallframe/apc, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"dfF" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/camera_film{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/camera, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"dgk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"dhc" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dho" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dhp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialwagon"; - name = "Custodial Bay" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"dht" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dhv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 6"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"dhz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dhF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"dhG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dhL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"dhR" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"dif" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"dik" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"dim" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"dix" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "Traffic Control"; - dir = 4; - name = "shuttle camera" - }, -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"diL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"diR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"djf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"djK" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"djP" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"djY" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/hydroponics) -"dkE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"dkL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/camera{ - c_tag = "Testing Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/module_duplicator, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"dkX" = ( -/obj/structure/sign/poster/contraband/random, -/turf/closed/wall/rust, -/area/cargo/warehouse) -"dlF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dmd" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel's Requests Console" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"dmf" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"dmh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"dms" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dmx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Evidence"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"dmB" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"dnf" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dns" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Upload Access"; - req_one_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dny" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"dnD" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"dnN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dnZ" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"doj" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"doG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/warehouse) -"doL" = ( -/obj/machinery/power/emitter/welded{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"doP" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/turf/open/floor/plating, -/area/security/prison) -"dpy" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"dpC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"dpI" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"dpN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"dpS" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"dqc" = ( -/obj/machinery/door/poddoor/preopen{ - id = "brigfrontdoor"; - name = "Front Security Blast door" - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dqk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"dqz" = ( -/obj/structure/closet{ - name = "beekeeping wardrobe" - }, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/clothing/head/beekeeper_head, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/obj/item/melee/flyswatter, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"dqT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"drb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"drk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/service/library) -"drN" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps, -/obj/effect/turf_decal/bot, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dsc" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"dsd" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"dsf" = ( -/turf/open/floor/carpet/green, -/area/cargo/warehouse) -"dsp" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/door/directional/west{ - id = "brigcelldoor"; - name = "Cell Blast Door Toggle"; - pixel_y = -6 - }, -/obj/machinery/button/door/directional/west{ - id = "brigfrontdoor"; - name = "Front Blast Door Toggle"; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"dsr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dsG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/west, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"dsQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"dtb" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/item/integrated_circuit/loaded/speech_relay, -/obj/item/integrated_circuit/loaded/hello_world, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"dtq" = ( -/turf/closed/wall/rust, -/area/engineering/gravity_generator) -"dtA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"duf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"dun" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"duH" = ( -/turf/closed/wall/rust, -/area/cargo/warehouse) -"duZ" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/food/grown/poppy{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/food/grown/poppy{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/food/grown/poppy, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"dvb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dvn" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/keycard_auth, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dvu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"dvN" = ( -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"dwc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"dwf" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dwk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"dwl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dwr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table_frame, -/obj/machinery/camera{ - c_tag = "Incinerator"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"dws" = ( -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"dwU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"dxn" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"dxK" = ( -/turf/closed/wall, -/area/command/heads_quarters/cmo) -"dyi" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/wood, -/area/service/bar) -"dyu" = ( -/obj/structure/flora/grass/jungle{ - icon_state = "bushb1" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"dyx" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/folder/white{ - pixel_x = 6 - }, -/obj/item/storage/firstaid/regular, -/obj/machinery/door/window/northleft{ - name = "Emergency Storage"; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge Emergency Supplies"; - dir = 1; - name = "command camera" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dyM" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/fancy/cigarettes/cigars{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/east, -/obj/item/holosign_creator/robot_seat/bar, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"dyT" = ( -/obj/structure/cable, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"dzk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"dzB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"dAr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dAx" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner, -/mob/living/simple_animal/bot/cleanbot{ - auto_patrol = 1; - icon_state = "cleanbot1"; - name = "Mopficcer Sweepsky" - }, -/obj/machinery/button/door/directional/south{ - id = "custodialwagon"; - name = "Custodial Bay Toggle"; - req_access_txt = "26'" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dAD" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"dAH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"dAV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/security/processing) -"dBP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/mixer/airmix, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dBT" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"dCE" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"dDv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"dDS" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/west, -/obj/structure/sign/plaques/kiddie{ - pixel_y = 30 - }, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"dEf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dEq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dEO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/folder{ - pixel_x = -4 - }, -/obj/item/paicard, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"dEV" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"dFw" = ( -/obj/structure/table, -/obj/item/kitchen/fork/plastic, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"dFR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"dFU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-17"; - pixel_x = 8; - pixel_y = 3 - }, -/mob/living/carbon/human/species/monkey/punpun, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"dGa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Filter" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/supermatter) -"dGx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dGE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/security{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/vehicle/ridden/secway, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"dGI" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dGL" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dGN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"dHr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"dHw" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/status_display/evac/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"dHC" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dHI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"dHK" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/carpet/green, -/area/service/library) -"dHM" = ( -/obj/structure/table, -/obj/item/wallframe/airalarm, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"dHO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/misc_lab) -"dIq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dIT" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/east{ - id = "QMLoaddoor"; - layer = 4; - name = "Off Ramp Toggle"; - pixel_y = 6; - req_access_txt = "31" - }, -/obj/machinery/button/door/directional/east{ - id = "QMLoaddoor2"; - layer = 4; - name = "On Ramp Toggle"; - pixel_y = -6; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dIV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/item/clothing/glasses/meson/engine, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"dJB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dJU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Locker Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"dJZ" = ( -/obj/structure/bookcase/random/reference, -/obj/machinery/camera{ - c_tag = "Bar Shelves"; - name = "bar camera" - }, -/turf/open/floor/wood, -/area/service/bar) -"dKg" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/light/directional/east, -/mob/living/carbon/human/species/monkey{ - name = "mankey" - }, -/turf/open/floor/grass, -/area/medical/virology) -"dKp" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"dKu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dKD" = ( -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"dKV" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/airalarm/directional/south, -/obj/item/toy/figure/virologist{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/restraints/handcuffs, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"dLf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dLG" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dLT" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab Storage"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"dMg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/curator{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"dMx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dMI" = ( -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dML" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_2Privacy"; - name = "Unit 2 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dNb" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dNg" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/briefcase, -/obj/item/taperecorder, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"dNs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"dNv" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid/airless, -/area/space) -"dNJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard) -"dNK" = ( -/obj/structure/bed, -/obj/machinery/airalarm/directional/west, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/obj/machinery/button/door/directional/north{ - id = "Cabin_3"; - name = "Cabin 3 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/locker) -"dNT" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dOh" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dOn" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"dOq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/ticket_machine/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dON" = ( -/turf/closed/wall/rust, -/area/service/theater) -"dPh" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"dPy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"dPF" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"dQb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/fore) -"dQj" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/chair/sofa{ - color = "#c45c57" - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"dQu" = ( -/turf/open/floor/grass, -/area/service/chapel) -"dQJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"dQN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dQV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"dRe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"dRs" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/pipedispenser/disposal, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dRy" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/structure/noticeboard/directional/west, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/britcup{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"dRQ" = ( -/obj/structure/rack, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/bruise_pack, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) -"dTq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/south, -/turf/open/floor/engine, -/area/engineering/main) -"dTz" = ( -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"dTC" = ( -/obj/machinery/door/airlock/atmos{ - name = "Filter Chamber" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"dTM" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dUd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"dUk" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dUp" = ( -/turf/closed/wall, -/area/command/heads_quarters/hos) -"dUE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/table, -/obj/item/restraints/handcuffs, -/obj/item/radio{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"dUK" = ( -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"dUM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"dUR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"dUZ" = ( -/obj/structure/table, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"dVc" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel) -"dVw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/security/courtroom) -"dVC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"dVE" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dVS" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"dWe" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/aft) -"dWo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"dWK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dWL" = ( -/obj/structure/transit_tube/horizontal{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"dXa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"dXx" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/dark, -/area/service/library) -"dXW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dXX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dYo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dZr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dZv" = ( -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"dZD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"dZN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/button/door/directional/north{ - id = "prisonblast"; - name = "Prison Lockdown"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"dZP" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/rust, -/area/engineering/gravity_generator) -"dZU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"eaD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/bookbinder, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/service/library) -"eaR" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/science/robotics/mechbay) -"eaV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ebd" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ebj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ebP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ecc" = ( -/obj/effect/landmark/start/exploration, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"ecj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ecp" = ( -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"ecF" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating, -/area/space/nearstation) -"ecO" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ecX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"edb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"edr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"eee" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"eej" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/bedsheetbin, -/obj/machinery/status_display/evac/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"eeq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"eeu" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/command/bridge) -"eev" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"eeL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/east, -/turf/open/floor/carpet/green, -/area/lawoffice) -"eeN" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"eeV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/oven, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"eff" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"efC" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"efZ" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/commons/locker) -"ega" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"egh" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"egt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/cardboard/fifty, -/obj/item/storage/box/lights/mixed{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/lights/mixed{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"egB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/service/bar) -"egH" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/command/bridge) -"ehe" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/ore_box, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ehf" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"ehj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ehz" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ehK" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"eih" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Research Desk"; - dir = 4; - name = "starboard camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eiB" = ( -/obj/structure/closet/secure_closet/detective, -/obj/structure/reagent_dispensers/peppertank/directional/north, -/obj/structure/cable, -/obj/item/book/manual/wiki/detective, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/security/detectives_office) -"eiS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"eiW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"eiX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ejk" = ( -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/human/corpse/russian); - name = "Russian Mobster" - }, -/turf/open/floor/wood, -/area/maintenance/port) -"ejz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light/small/directional/north, -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_y = 24; - req_access_txt = "27" - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ejU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo, -/obj/machinery/firealarm/directional/north, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"ekn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"ekq" = ( -/obj/machinery/button/massdriver{ - id = "trash"; - pixel_x = -26; - pixel_y = -6 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/button/door/directional/west{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_y = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"ekw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ekZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"elp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/item/cartridge/lawyer, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"els" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/modular_computer/console/preset/cargochat/medical{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"ely" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"elR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"elW" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"emc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"emv" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -5; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"emC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = null; - req_one_access_txt = "1;4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"emV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"emY" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"enf" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"enl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ent" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"enE" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/analyzer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"enJ" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"enL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"enM" = ( -/obj/item/radio/intercom/directional/west, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/grassybush, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/science/genetics) -"enR" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Prison Botany"; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"enY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"enZ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"eoe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"eoj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"eox" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/warden) -"eoB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"eoL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera{ - c_tag = "Cargo Ramps"; - dir = 8; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"eoS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"epi" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"epE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"eqk" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/cmo) -"eqm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"eqH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"erd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ere" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"erq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"erx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"erO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"erP" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/machinery/button/door/directional/west{ - id = "Cabin_3Privacy"; - name = "Cabin 3 Privacy Toggle"; - pixel_y = -24 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/commons/locker) -"esc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"esf" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/machinery/airalarm/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"esg" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/crayons, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - name = "chapel camera" - }, -/turf/open/floor/wood, -/area/service/chapel/office) -"esi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Shower_2Privacy"; - name = "Shower 2 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"etE" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/carpet/green, -/area/service/library) -"etH" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eug" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"euk" = ( -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eum" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "East Ports to West Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eux" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"euy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"euE" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -2 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/command/bridge) -"euG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"euH" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"evT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ewf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ewl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Fore Hallway Robotics Bay"; - dir = 1; - name = "fore camera" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"ewE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"ewJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"exk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"exF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"eyb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"eyc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/trashcart/laundry, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"eyj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/bot_white, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"eys" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"eyw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"eyz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"ezd" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"ezi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"ezv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"ezG" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/chapel) -"ezM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eAv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"eAU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"eAV" = ( -/turf/closed/wall/r_wall/rust, -/area/engineering/supermatter) -"eAY" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = null; - req_one_access_txt = "12;25" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"eBa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - name = "atmospherics maintenance"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"eBf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"eBk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light/directional/south, -/obj/machinery/requests_console/directional/south{ - department = "Janitorial"; - departmentType = 1; - name = "Janitorial Requests Console" - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/service/janitor) -"eBZ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/silvercrate, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/screwdriver/power, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"eCd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eCi" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"eCK" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"eDq" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/inspector, -/turf/open/floor/plasteel/dark, -/area/security/main) -"eDs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"eDI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/pen/fourcolor, -/obj/item/stamp/hop{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"eEc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"eEP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"eEU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"eEW" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"eFe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eFy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"eFF" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/radio{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"eFH" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 8; - freq = 1400; - location = "Bar" - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Bar Delivery Access"; - req_access_txt = "25" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"eFJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"eGd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"eGO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"eHf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"eHD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"eIb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eIc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"eIs" = ( -/obj/structure/table, -/obj/machinery/light/directional/west, -/obj/item/clipboard, -/obj/item/airlock_painter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/airlock_painter, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"eIR" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/fore) -"eJz" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"eJC" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"eJD" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"eJQ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"eJV" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/fore) -"eKg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"eKh" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paicard, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"eKm" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/cargo/office) -"eLd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"eLL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"eLO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"eLX" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/autodrobe, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"eMc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"eMl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"eMx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"eML" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Research Hallway"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"eNm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/secure_closet/medical2, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"eNx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eNB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/button/massdriver{ - id = "chapelgun"; - name = "Chapel Mass Driver"; - pixel_x = -24; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"eNS" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eNX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"eOe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/machinery/requests_console/directional/west{ - department = "Security"; - departmentType = 5; - name = "Security Requests Console" - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/computer/security/telescreen/engine, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"eOk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"eOQ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30; - pixel_y = -32 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"eOS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/food/mint, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/beaker, -/obj/item/holosign_creator/robot_seat/restaurant, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"eOX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ePc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ePs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Locker Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"ePG" = ( -/obj/structure/cable, -/obj/machinery/power/tracker, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"ePI" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/fancy/donut_box, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"ePM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"eQf" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"eQt" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"eQB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/button/door/directional/south{ - id = "engsm"; - name = "Radiation Shutters Toggle"; - req_access_txt = "10" - }, -/turf/open/floor/engine, -/area/engineering/main) -"eQS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"eRj" = ( -/obj/docking_port/stationary{ - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/kilo; - width = 7 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"eRk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"eRm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/structure/table, -/obj/machinery/firealarm/directional/east, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"eRo" = ( -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 3; - name = "Chief Engineer's Requests Console" - }, -/obj/machinery/button/door/directional/north{ - id = "ceprivate"; - name = "Privacy Shutters Toggle"; - pixel_x = -6; - req_access_txt = "56" - }, -/obj/machinery/button/door/directional/north{ - id = "Secure Storage"; - name = "Secure Storage Toggle"; - pixel_x = 6; - req_access_txt = "11" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"eRp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"eRr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/cargo/warehouse) -"eRK" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 4; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"eRV" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"eSe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"eSG" = ( -/obj/machinery/computer/mecha{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"eSQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"eTq" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"eTr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"eTN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"eUe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"eUm" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"eUu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "qm sorting disposal pipe"; - sortType = 3 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"eUz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"eUB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"eVf" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/wood, -/area/service/bar) -"eVk" = ( -/obj/structure/table/wood, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses/big{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/big, -/turf/open/floor/carpet/green, -/area/lawoffice) -"eVu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to West Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eVL" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"eVR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "atmospherics sorting disposal pipe"; - sortType = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eWh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"eWs" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/fore) -"eWw" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/item/folder/white, -/obj/item/clothing/head/soft/paramedic{ - pixel_x = 3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"eWy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"eWI" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/starboard/aft) -"eWJ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"eWM" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eWO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cmoprivacy"; - name = "Office Privacy Shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"eWZ" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/grass, -/area/service/chapel) -"eXt" = ( -/obj/machinery/plate_press, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/security/prison) -"eXx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"eXA" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24; - req_access_txt = "2" - }, -/obj/machinery/holopad, -/obj/machinery/button/door/directional/north{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 8; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"eXC" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"eXK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"eXS" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"eYL" = ( -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"eYU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/warning/fire{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eZr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/red_rum{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"eZy" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"eZB" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 4; - freq = 1400; - location = "Atmospherics"; - name = "navigation beacon (Atmospherics Delivery)" - }, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Atmospherics Delivery Access"; - req_one_access_txt = "24;10" - }, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"eZR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eZS" = ( -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/north{ - pixel_x = 8 - }, -/obj/machinery/requests_console/directional/south{ - department = "AI"; - departmentType = 5; - name = "AI Requests Console" - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"eZT" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fal" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"faE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"faV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fbc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fbn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"fbH" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fcd" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"fco" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"fdJ" = ( -/turf/open/floor/plasteel/white, -/area/security/prison) -"fdS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/closet/boxinggloves, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fen" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fet" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"feu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"ffq" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"ffO" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Atmos to Loop" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"ffY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"ffZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fgj" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"fgq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"fgO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fgP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"fhl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"fhq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera{ - c_tag = "Fore Hallway Chapel"; - name = "fore camera" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"fhA" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/atmos) -"fhH" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar_1"; - name = "Bar Shutter" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/bar) -"fii" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/security/courtroom) -"fiu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"fiH" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel) -"fjg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fjj" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"fkn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fkB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/sheet/plasteel/fifty{ - amount = 10; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/shoes/magboots, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"fkT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"flc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/tool, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"flj" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_3"; - name = "Unit 3" - }, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"fls" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/office/light, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"flI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"flP" = ( -/turf/closed/wall/rust, -/area/commons/vacant_room/commissary) -"flW" = ( -/turf/closed/wall/rust, -/area/service/chapel) -"fma" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating, -/area/cargo/warehouse) -"fmk" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_control, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fmB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/noticeboard/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fmD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/bounty_board/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"fmM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/main) -"fnj" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/beacon, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/command/teleporter) -"fno" = ( -/turf/closed/wall/r_wall/rust, -/area/command/bridge) -"fnr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"fod" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"fog" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"foo" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/aft) -"foM" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"foT" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/depsec/science, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"fpa" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fpk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"fpm" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"fpz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/wrench/medical, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/evac/directional/west, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = 8; - pixel_y = 7 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"fpC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"fpL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"fqr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"fqD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"fqF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/obj/item/stack/package_wrap, -/obj/item/storage/secure/briefcase{ - pixel_y = 4 - }, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"fqI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"fqL" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "transit intersection"; - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"frc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"frk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"fro" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"frw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"frK" = ( -/obj/structure/table/wood/fancy, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/toy/figure/chaplain{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/lighter, -/turf/open/floor/wood, -/area/service/chapel/office) -"fsh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fsn" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/server{ - dir = 8; - pixel_x = 22 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"fsC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"fsJ" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"fsQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"fsS" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast door" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"fsU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"fsW" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/starboard) -"ftN" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fut" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"fuy" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"fuC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/engineering/break_room) -"fuK" = ( -/turf/closed/wall, -/area/commons/toilet/restrooms) -"fuN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"fuO" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/fore) -"fvj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/machinery/camera{ - c_tag = "Incinerator Entrance"; - dir = 8; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/item/hfr_box/body/fuel_input, -/obj/item/hfr_box/body/interface, -/obj/item/hfr_box/body/moderator_input, -/obj/item/hfr_box/body/waste_output, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fvl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fvt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"fvu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fvw" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/requests_console/directional/south{ - department = "Ordnance Lab"; - departmentType = 2; - name = "Ordnance Lab Requests Console"; - receive_ore_updates = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/gloves{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 11 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 11; - pixel_y = 7 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"fvI" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/grass, -/area/service/chapel) -"fvV" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Shower_1"; - name = "Shower 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"fwx" = ( -/turf/closed/wall, -/area/engineering/storage/tech) -"fxf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/ash/large, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fxq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"fxE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "mech bay maintenance"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"fxH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"fxL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/item/toy/plush/plasmamanplushie{ - name = "Dianion XV" - }, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"fya" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/northleft{ - name = "Hydroponics Lockers"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fyl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/service/chapel) -"fyu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/item/clothing/neck/tie/detective, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"fyv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement{ - pixel_y = 5 - }, -/obj/machinery/light/directional/east, -/obj/machinery/bounty_board/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"fyC" = ( -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/chief_engineer, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"fyH" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"fyV" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"fzh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"fzm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/security/checkpoint/engineering) -"fzx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigcelldoor"; - name = "Cell Blast door" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fzA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"fzE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fAE" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/hydroponics) -"fAF" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Satellite Maintenance"; - dir = 4; - name = "satellite camera"; - network = list("minisat") - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"fAV" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/fore) -"fAZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fBn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"fBA" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/machinery/button/door/directional/south{ - id = "chemistry_shutters_2"; - name = "Hall Shutters Toggle"; - pixel_x = 24; - req_access_txt = "5; 33" - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"fBN" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/service/janitor) -"fBX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/toolbox/drone, -/obj/machinery/light/directional/north, -/obj/item/flashlight/flare, -/obj/item/flashlight/flare, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"fBZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"fCd" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"fCg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/monkey_recycler, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"fCj" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/glasses/welding, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"fCm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stamp/qm{ - pixel_x = 8; - pixel_y = 10 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"fCI" = ( -/turf/closed/wall, -/area/command/gateway) -"fCS" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"fDo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199" - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"fDz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fDD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Entertainment Backstage"; - req_access_txt = "46" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"fDL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"fDS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/command/bridge) -"fEB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"fEH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/xeno_mining{ - pixel_y = 32 - }, -/obj/machinery/door/airlock/external/glass{ - name = "External Freight Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"fEJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"fER" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"fES" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"fEX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"fFA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Secure Storage"; - dir = 4; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"fFD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"fFH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/flashlight/lantern, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = 32 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"fGe" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fGg" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"fGp" = ( -/obj/machinery/telecomms/server/presets/common, -/obj/machinery/light/directional/west, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"fGB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/food/cheesiehonkers{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/food/chips, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"fGN" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/stack/package_wrap, -/obj/item/storage/box/lights/mixed{ - pixel_y = 4 - }, -/obj/item/hand_labeler, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"fGU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"fHr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"fHS" = ( -/obj/structure/closet/radiation, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"fIh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"fIm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "CO2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fIr" = ( -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"fIY" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/bikehorn/rubberducky, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/landmark/start/assistant, -/obj/machinery/button/door/directional/east{ - id = "Shower_1"; - name = "Shower 1 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "Shower_1Privacy"; - name = "Shower 1 Privacy Toggle"; - pixel_y = -8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"fJx" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"fJz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"fJK" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"fKd" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"fKi" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/infections{ - pixel_y = 6 - }, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Virology"; - dir = 8; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/machinery/requests_console/directional/east{ - department = "Virology"; - name = "Virology Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"fKl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"fKo" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/clothing/head/welding{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"fKt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"fKu" = ( -/obj/structure/closet/secure_closet/security/engine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/item/crowbar, -/obj/item/book/manual/wiki/security_space_law, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"fKw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"fKE" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/space) -"fKK" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"fLf" = ( -/turf/closed/wall/rust, -/area/engineering/main) -"fLj" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/service/chapel) -"fLJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/brown/filled/end{ - dir = 8 - }, -/obj/machinery/modular_computer/console/preset/cargochat/cargo{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"fLV" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/security/prison) -"fMq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/head/welding{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Tool Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/item/clothing/gloves/color/fyellow, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"fMz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"fNk" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fOh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/machinery/button/door/directional/west{ - id = "research_shutters"; - name = "Research Shuttle Toggle"; - pixel_y = 6; - req_access_txt = "7" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"fOi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fOz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"fOP" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 3"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fOZ" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera{ - c_tag = "Bridge Council Door"; - dir = 4; - name = "command camera" - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"fPq" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fPw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fPR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fQc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"fQX" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"fQZ" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"fRs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/break_room) -"fRH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"fSa" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"fSk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"fSq" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"fSw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"fSI" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"fSW" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"fSX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Desk"; - req_one_access_txt = "10;24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fSZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"fUt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"fVf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Brig Warden's Office"; - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"fVk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fVr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fVv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fVy" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/fancy/candle_box{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"fWe" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/command/heads_quarters/hop) -"fWh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"fXb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"fXp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "AI Upload Transit Access"; - dir = 1; - name = "command camera" - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fXF" = ( -/obj/structure/rack, -/obj/item/wirecutters{ - pixel_y = 5 - }, -/obj/item/wirerod, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"fXK" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fYs" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"fYy" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/mineral/random/labormineral, -/area/space/nearstation) -"fYD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"fZF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"fZM" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"fZO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gaa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"gai" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"gat" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"gaJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"gaZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/exile, -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"gbt" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"gbF" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/service/chapel/office) -"gcd" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"gdo" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"gds" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/space) -"gdS" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/green, -/area/cargo/warehouse) -"geg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gek" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ges" = ( -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"get" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/razor, -/turf/open/floor/plasteel, -/area/commons/locker) -"gew" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"geJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/trash/cheesie, -/obj/item/trash/syndi_cakes, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gfH" = ( -/obj/structure/rack, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gfK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ggd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"gge" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"ggo" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ggt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ggv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"ggL" = ( -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"ggR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/west, -/obj/machinery/recharger, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"ghj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/pipe_dispenser, -/obj/item/holosign_creator/atmos, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ghl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ghs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ghx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ghK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"gik" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"giw" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"giB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"gjG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"gkb" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"gkx" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"gkD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/status_display/ai/directional/north, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"gkN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/security/prison) -"gkX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/sign/poster/official/anniversary_vintage_reprint{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Chemistry North"; - network = list("ss13","medbay") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"glp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"gls" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"glv" = ( -/obj/structure/sign/poster/official/random, -/turf/closed/wall, -/area/service/bar/atrium) -"glI" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"gmb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"gmg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Freight Power Control" - }, -/obj/structure/cable, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"gml" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"gmy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"gmK" = ( -/obj/structure/chair/sofa/corner{ - color = "#c45c57"; - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"gmS" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall/r_wall/rust, -/area/security/prison) -"gmW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"gno" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/button/door/directional/south{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gnr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"gny" = ( -/obj/structure/cable, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gnE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"gnH" = ( -/obj/structure/sign/poster/official/wtf_is_co2, -/turf/closed/wall, -/area/engineering/atmos) -"gnZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"goJ" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"goP" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 1 - }, -/obj/effect/landmark/start/captain, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"gps" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"gpw" = ( -/turf/closed/wall/rust, -/area/maintenance/space_hut/plasmaman) -"gpA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"gpB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"gpC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/tank_holder/extinguisher, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"gqh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"gqz" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/processor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"gqQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/engine, -/area/engineering/main) -"gqR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"grn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "rd sorting disposal pipe"; - sortType = 13 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"grD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"grJ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/chief_medical, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/gun/energy/e_gun/mini, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"gsn" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"gss" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"gsY" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engineering/supermatter) -"gtd" = ( -/obj/structure/flora/ausbushes/palebush{ - icon_state = "fullgrass_2" - }, -/obj/structure/flora/grass/jungle{ - icon_state = "bushc2" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"gtm" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - name = "isolation room monitor"; - network = list("isolation"); - pixel_y = 31 - }, -/obj/machinery/button/flasher{ - id = "IsolationFlash"; - pixel_x = -23; - pixel_y = 8; - req_access_txt = "2" - }, -/obj/machinery/button/door/directional/west{ - id = "Isolation"; - name = "Isolation Shutter Button"; - pixel_y = -6; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gtw" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_one_access_txt = "5;6;22" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"gtL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/structure/mirror/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"gui" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"guq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"gur" = ( -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"guv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"guZ" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/toy/figure/hop{ - pixel_x = -8 - }, -/obj/item/toy/figure/ian{ - pixel_x = 8 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"gvk" = ( -/turf/open/floor/engine, -/area/engineering/storage/tech) -"gvD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"gvK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/chapel/office) -"gvR" = ( -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/camera{ - c_tag = "Bar Counter"; - dir = 8; - name = "bar camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"gvU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gwc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"gwk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/departments/engineering{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Rotunda"; - dir = 1; - name = "starboard camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gwo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"gws" = ( -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/radio{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"gwu" = ( -/obj/structure/toilet, -/obj/machinery/light/small/directional/north, -/turf/open/floor/vault, -/area/security/prison) -"gwx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"gwE" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gwX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gxe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gxs" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gxu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/lawoffice) -"gxA" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"gyE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"gyT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"gzy" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"gzJ" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard/aft) -"gzW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Suit Closet"; - req_access_txt = "1" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gAh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gAm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gAE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"gAM" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"gAW" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/button/door/directional/north{ - id = "gravity"; - name = "Gravity Generator Lockdown"; - req_one_access_txt = "19;23" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"gBk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"gBn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"gBt" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gBM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"gCp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = null; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gCq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"gCv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gCw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"gCJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"gCO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"gCQ" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"gCU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"gDl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"gDA" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"gDI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gEk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"gEl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"gEK" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"gEN" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gEQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection"; - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"gFu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"gGi" = ( -/obj/effect/turf_decal/sand/plating, -/obj/structure/grille/broken, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"gGA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"gGG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"gHj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"gHG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"gIh" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/folder/yellow, -/obj/item/stack/package_wrap, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/west, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"gIv" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"gIy" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"gJh" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"gJp" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/item/circuitboard/machine/telecomms/bus{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/machinery/camera{ - c_tag = "Telecomms Storage"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/space) -"gJJ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/misc_lab) -"gJT" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"gKl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"gKr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Ordnance Lab Burn Chamber"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/mixingchamber{ - dir = 8; - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"gKG" = ( -/obj/structure/sign/departments/engineering{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gKO" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gLe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"gLm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall, -/area/science/storage) -"gLq" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"gLE" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gLF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/beakers{ - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno2"; - name = "Creature Cell 2 Toggle"; - pixel_x = -24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"gLG" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"gLK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"gLT" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"gMi" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"gMj" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"gMy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"gNg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gNO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"gNR" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;101" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"gOd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"gOl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"gOw" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"gOB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gOH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"gON" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/item/radio/intercom/directional/north, -/obj/machinery/restaurant_portal/bar, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"gPh" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/cargo/storage) -"gPr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"gPY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"gQs" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - CO2"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"gQu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster, -/obj/item/cartridge/quartermaster, -/turf/open/floor/plasteel, -/area/cargo/qm) -"gQN" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gQQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/fore) -"gQR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"gQU" = ( -/obj/structure/table/wood, -/obj/structure/mirror/directional/east, -/obj/item/clipboard, -/obj/item/toy/figure/mime{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/toy/dummy{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/clown, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"gRd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear/fake, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"gRl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"gRF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gRL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/silver_ids{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/ids, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"gRN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"gSi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gSP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"gTc" = ( -/obj/structure/cable, -/obj/machinery/button/ignition{ - id = "Incinerator"; - pixel_x = 24; - pixel_y = -7 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 5 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"gTr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/computer/operating{ - name = "Forensics Operating Computer" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"gTC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"gTO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"gTX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/airalarm/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"gUd" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/service/bar) -"gUz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Ordnance Lab Maintenance"; - req_access_txt = "8" - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"gUC" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"gUI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"gUM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"gVy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"gVG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gVM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"gVO" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera{ - c_tag = "Atmospherics Lockers"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gVT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"gVV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"gWG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"gWN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"gWQ" = ( -/obj/structure/closet/l3closet/janitor, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/west, -/obj/item/grenade/clusterbuster/cleaner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"gWV" = ( -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"gXh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gXy" = ( -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/item/ai_module/supplied/oxygen{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"gXK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"gYq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"gYB" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/commons/locker) -"gYM" = ( -/turf/open/floor/engine, -/area/engineering/supermatter) -"gYW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/warehouse) -"gZo" = ( -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = 4 - }, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel" - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Common Channel"; - pixel_y = 4 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door/directional/north{ - id = "AI Core shutters"; - name = "AI Core Shutters Toggle"; - pixel_x = 24; - req_access_txt = "16" - }, -/obj/machinery/button/door/directional/north{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Lockdown"; - pixel_x = -24; - req_access_txt = "16" - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) -"gZv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"gZR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "O2 to Airmix" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"haD" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"haI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"haP" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/aft) -"hbf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"hbn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"hbJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"hbL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hbO" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/rust, -/area/engineering/atmos) -"hbZ" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"hca" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"hce" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"hci" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"hck" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"hcl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Courtroom"; - location = "Lockers"; - name = "lockers navigation beacon" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hct" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"hcD" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hcG" = ( -/obj/structure/table, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hcO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hcX" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/chapel/office) -"hdc" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"hdN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"hdT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/machinery/camera{ - c_tag = "Bar Storage"; - dir = 5; - name = "bar camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"hdX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/noticeboard/directional/east, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"hea" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/gun/energy/e_gun/mini, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/camera{ - c_tag = "Research Director's Office"; - name = "science camera"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"hek" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"hel" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/effect/decal/cleanable/insectguts, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"het" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"heS" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"hfb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/fore) -"hfo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"hfA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"hfQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/status_display/ai/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Recreation Fitness Ring"; - dir = 1; - name = "recreation camera" - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hgh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"hgl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hgI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/closed/wall, -/area/engineering/atmos) -"hgL" = ( -/obj/structure/cable, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"hgQ" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"hgW" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/door/window/westright{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"hha" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"hhe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"hht" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "East Ports to Engine" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hhG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hhR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"hhT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"hiz" = ( -/obj/structure/sign/departments/custodian, -/turf/closed/wall/rust, -/area/service/janitor) -"hiG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"hjc" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -25; - pixel_y = -5 - }, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = -25; - pixel_y = 5 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"hjk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"hjD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"hjE" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"hjU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"hjX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"hjY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"hkd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"hkx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hlc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"hlh" = ( -/obj/structure/cable, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = 32; - pixel_y = -23 - }, -/obj/machinery/igniter{ - id = "Incinerator" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"hlo" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/machinery/camera{ - c_tag = "Delivery Office"; - dir = 1; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"hms" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/airless, -/area/space) -"hmJ" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"hmK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"hmT" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = -8; - pixel_y = 40 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"hnt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"hnz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow, -/turf/open/floor/plasteel, -/area/engineering/main) -"hnJ" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/engineering/main) -"hnW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"hoE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/obj/item/flashlight/lantern, -/obj/machinery/firealarm/directional/east, -/obj/structure/mirror/directional/south, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"hoL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"hoZ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port) -"hpd" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"hpp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Justice Windoor"; - req_access_txt = "3" - }, -/obj/machinery/door/window/brigdoor/westright{ - name = "Justice Windoor"; - req_access_txt = "3" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"hpt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hpx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/secondary/entry) -"hpC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"hpX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera{ - c_tag = "Aft Hallway Transfer Centre Doors"; - dir = 8; - name = "aft camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hqd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"hqe" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/security_unit/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door/directional/east{ - id = "Unit_3Privacy"; - name = "Unit 3 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_3"; - name = "Unit 3 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"hqu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hqz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"hqC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"hqK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Testing Lab Maintainance"; - req_access_txt = "8" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hqN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Apiary"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"hqR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hrh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Distro to Waste" - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hrk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"hse" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard) -"hsn" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"hsu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/closed/wall/rust, -/area/engineering/atmos) -"hsv" = ( -/obj/structure/flora/rock/pile{ - icon_state = "basalt2" - }, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"hsE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Central Hallway Courtroom"; - name = "central camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hsS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating/rust, -/area/security/prison) -"htX" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/bodycontainer/crematorium{ - dir = 8; - id = "crematoriumChapel" - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hub" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"huC" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"hva" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"hwo" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/bounty_board/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"hwx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/drinks/mug/coco, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"hwF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"hwI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hxb" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"hxk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hxp" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"hxR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"hyj" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hym" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"hyv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"hyB" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 1; - name = "Chief Medical Officer's telescreen"; - network = list("medical") - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"hyK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hyP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hyV" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hzc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash/large, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hzt" = ( -/turf/closed/wall, -/area/cargo/storage) -"hzw" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 1 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"hzC" = ( -/obj/structure/flora/rock/pile{ - icon_state = "basalt2" - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"hzN" = ( -/obj/structure/chair/pew/right{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel) -"hzQ" = ( -/obj/item/clipboard, -/obj/item/folder/red{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/blue, -/obj/item/melee/chainofcommand, -/obj/item/toy/figure/captain, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"hzW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera{ - c_tag = "Security Secways"; - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box, -/obj/vehicle/ridden/secway, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"hBo" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/grass, -/area/medical/psychology) -"hBN" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"hCi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"hCy" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/clipboard, -/obj/item/storage/firstaid/regular, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"hCz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"hCA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"hCG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hCY" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"hDk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hDo" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/engineering/atmos) -"hDz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hEa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"hEn" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"hEu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"hEM" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hES" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"hFx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"hFy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"hFA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/courtroom, -/obj/item/gavelhammer, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Courtroom Judge"; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"hFM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"hFU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hGq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"hGH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"hGR" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/briefcase, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/bowler{ - pixel_y = 8 - }, -/obj/item/cane, -/turf/open/floor/plasteel, -/area/commons/locker) -"hGS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine, -/area/engineering/main) -"hHK" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"hIk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"hIH" = ( -/obj/structure/sign/warning/securearea, -/obj/item/multitool, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"hIP" = ( -/obj/structure/closet/cardboard, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"hIT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hJc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"hJi" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"hJD" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing/chamber) -"hJN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/aft) -"hJQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hKf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hKn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"hKF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hKK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel, -/area/security/main) -"hKY" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/wheat, -/turf/open/floor/grass, -/area/service/chapel) -"hLl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"hLR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"hLU" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/shieldgen, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"hMl" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"hMr" = ( -/obj/structure/displaycase/captain, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"hMH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"hMK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/janitor, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"hMN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"hNf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/south{ - id = "medbay_front_door"; - name = "Medbay Doors Toggle"; - normaldoorcontrol = 1; - req_access_txt = "5" - }, -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"hNl" = ( -/obj/structure/sign/warning/vacuum, -/turf/closed/wall/rust, -/area/cargo/warehouse) -"hNz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/reagent_containers/glass/bucket, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"hNF" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"hNK" = ( -/turf/closed/wall, -/area/service/janitor) -"hNM" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/machinery/camera{ - c_tag = "Security Office Computers"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"hNW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"hNX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/meter, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"hOw" = ( -/turf/closed/wall, -/area/security/main) -"hOB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hOZ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"hPm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"hPo" = ( -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"hPy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"hPF" = ( -/obj/structure/bed/dogbed/runtime, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"hPI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/atmos{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"hQc" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/turf/open/floor/wood, -/area/commons/locker) -"hQe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/turf/closed/wall/rust, -/area/engineering/atmos) -"hQf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"hQr" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"hQE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/lapvend, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"hQK" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/security/main) -"hQM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hQO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"hQY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"hRq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"hRZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"hSn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"hSp" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Research and Development" - }, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Research and Development Delivery Access"; - req_one_access_txt = "7;29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"hSE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"hSN" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/science/genetics) -"hST" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"hTg" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/cargo/warehouse) -"hTj" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"hTo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"hTt" = ( -/obj/machinery/computer/bank_machine, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"hTv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"hTF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"hTK" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Infirmary"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"hTQ" = ( -/obj/machinery/computer/bookmanagement, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"hTY" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hTZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"hUi" = ( -/turf/open/floor/wood, -/area/service/library) -"hUq" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/botanist, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hUK" = ( -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/camera{ - c_tag = "Security Equipment Room"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hVl" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/maintenance/port/aft) -"hVG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"hVI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"hWd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"hWn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hWC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"hWZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"hXq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"hXD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hYb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/cargo/storage) -"hYd" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"hYj" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 1; - name = "Research Monitor"; - network = list("rd") - }, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"hYC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Lockers"; - location = "Medical"; - name = "medical navigation beacon" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hZO" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"hZR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iaH" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/supply{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iaL" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"iba" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"ibe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/rust, -/area/security/prison) -"ibn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ibv" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ibJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"ica" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"ich" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"icj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"icn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"ico" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ict" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"icF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"icI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/seed_extractor, -/obj/machinery/camera{ - c_tag = "Apiary"; - dir = 4; - name = "chapel camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"icK" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"icM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "virology maintenance"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"icT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"icX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/chapel/office) -"idD" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"idN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"ieq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/command/gateway) -"ieu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"iez" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;37" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"ieC" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"ifo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/food_cart, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"ifu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/item/stack/spacecash/c500{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/spacecash/c1000, -/obj/item/gun/ballistic/automatic/pistol/deagle/gold, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"ifx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ifJ" = ( -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"ifO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"ige" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"igh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder, -/obj/item/multitool, -/obj/item/pen/red, -/obj/machinery/airalarm/directional/north, -/obj/item/toy/figure/cargotech{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/toy/figure/miner{ - pixel_x = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"igk" = ( -/obj/structure/rack, -/obj/machinery/light/small/directional/south, -/obj/machinery/status_display/shuttle{ - pixel_y = -32 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/storage/tech) -"igH" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table/wood, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/vending_refill/cigarette, -/obj/item/hand_labeler, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"igQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"igV" = ( -/obj/structure/closet/secure_closet/personal{ - name = "Commissary Locker" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"ihg" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) -"ihn" = ( -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/security/prison) -"iho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Plasma to Pure" - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Aft Tanks"; - dir = 1; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ihC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/exodrone_launcher, -/obj/item/exodrone, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"iig" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating/rust, -/area/security/prison) -"iio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/main) -"iiU" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"iji" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"ijE" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"ijV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"ikv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ikz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel, -/area/commons/locker) -"ikV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"ill" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"ilo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/noticeboard/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ily" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Starboard Bow Solar"; - dir = 1; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/fore) -"ilE" = ( -/obj/structure/sign/warning/deathsposal, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ilG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_y = 5 - }, -/obj/machinery/firealarm/directional/north, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel/dark, -/area/security/main) -"imu" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"imD" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"imG" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"imQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"imV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"ind" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ins" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"inL" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Fuel Pipe" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"inX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"inZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"ioc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"iod" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo maintenance"; - req_one_access_txt = "31;48" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"iom" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"ioF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/departments/holy{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"ioN" = ( -/obj/item/radio/intercom/directional/east, -/turf/closed/wall, -/area/maintenance/disposal) -"ioT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"ioU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ips" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"ipQ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"iqu" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"iqM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port Mix to East Ports" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iqS" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"ira" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"irz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/backpack/duffelbag/engineering{ - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"irE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"irF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/bedsheetbin, -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"isi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"ism" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ist" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"isG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chemistry West"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"isJ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Emergency Storage" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"itn" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/command/nuke_storage) -"ito" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"itH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"itL" = ( -/obj/structure/closet{ - name = "beekeeping supplies" - }, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/item/honey_frame, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"itQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"iuC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iuD" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"iuQ" = ( -/obj/machinery/modular_computer/console/preset/cargochat/security{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ivb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"ivj" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"ivp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"ivI" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"iwg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/siding/yellow{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"iwy" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"iwD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"iwV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"iwW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/library) -"ixf" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/box/red, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"ixs" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"ixF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"ixU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/port/fore) -"ixZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"iyc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"iyi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"iyz" = ( -/obj/effect/landmark/start/exploration, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"iyQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iyV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"izd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"izm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/west, -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"izw" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"izy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"izS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/engineering/main) -"izW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iAd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Waste to Filter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iAk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"iAn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"iAG" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/chapel) -"iAT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"iBa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"iBe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"iBB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"iBD" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"iBR" = ( -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"iBX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/radio/intercom/directional/south, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/gun/ballistic/shotgun/doublebarrel{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"iCd" = ( -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/commons/locker) -"iCg" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iCj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"iDD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"iDK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"iEb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"iEm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"iEH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iEO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"iEW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/cargo/qm) -"iFf" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 1"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/science/xenobiology) -"iFi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/cargo/qm) -"iFr" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/package_wrap, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters Toggle"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"iFu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"iFw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iFL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"iGn" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/hyper, -/obj/item/stack/cable_coil, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"iGo" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/shieldgen, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iGz" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iGA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Evidence Closet"; - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"iGD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"iHp" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 8 - }, -/obj/item/radio/intercom/directional/east{ - freerange = 1; - listening = 0; - name = "Common Channel" - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel"; - pixel_x = 8 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - pixel_x = -3; - req_access_txt = "16" - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) -"iHu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iHI" = ( -/turf/closed/wall/rust, -/area/cargo/storage) -"iHO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"iHR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/aft) -"iIi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iII" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"iIT" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"iJd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"iJe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"iJm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"iJp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"iJq" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/grass, -/area/medical/virology) -"iJF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"iJP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"iJZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/office, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"iKb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"iKf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/execution/education) -"iKn" = ( -/turf/closed/wall/r_wall/rust, -/area/engineering/gravity_generator) -"iKo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iLc" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"iLk" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"iLo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"iMe" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iMg" = ( -/obj/effect/turf_decal/bot/left, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"iMj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/item/t_scanner, -/turf/open/floor/plating, -/area/cargo/warehouse) -"iME" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"iMV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/commons/locker) -"iNb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iNC" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"iNG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"iNK" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iNO" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("ordnance"); - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"iNS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"iOj" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"iOu" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/watermelon, -/turf/open/floor/grass, -/area/security/prison) -"iPb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/door_assembly/door_assembly_eng{ - anchored = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"iPk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Apiary"; - req_one_access_txt = "22;35" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"iPo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"iPx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iPQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor_2"; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/button/door/directional/north{ - id = "justicedoor_2"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access_txt = "3"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"iPY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iQk" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"iQm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/storage/backpack/duffelbag{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"iQr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"iQO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"iQR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"iQY" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iQZ" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"iRb" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"iRg" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"iRt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"iRv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/execution/education) -"iRD" = ( -/obj/machinery/computer/telecomms/server, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"iRY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"iRZ" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iSk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iSz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Starboard Quarter Solar"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"iSA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"iSG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"iTb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/kitchenspike, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"iTh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iTj" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"iTp" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"iTC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"iTK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"iTW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"iUa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"iUd" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"iUi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/micro_laser{ - desc = "A tiny laser used in certain devices. A lil left."; - pixel_x = -6 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/space) -"iUr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"iUt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/rack, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/controller, -/obj/machinery/light/directional/west, -/obj/item/compact_remote, -/obj/item/compact_remote, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"iUx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"iUF" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/head/helmet/justice/escape{ - name = "justice helmet" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iUR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset{ - name = "plasmaperson emergency closet" - }, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"iVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"iVw" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"iVS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"iWc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"iWH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"iWN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"iWS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"iXv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/processor/slime, -/obj/machinery/button/door/directional/south{ - id = "xeno4"; - name = "Creature Cell 4 Toggle"; - pixel_x = 24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"iYc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/west, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/manual/wiki/tcomms, -/obj/item/radio, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"iYx" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iYJ" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"iYL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/airalarm/directional/south, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE"; - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"iYM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"iYQ" = ( -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"iYW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iYZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/kirbyplants/potty, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"iZc" = ( -/obj/structure/chair/sofa{ - color = "#c45c57" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"iZr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"iZE" = ( -/obj/structure/window/reinforced, -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/science/genetics) -"iZU" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/gravity_generator) -"iZW" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"iZY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jan" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"jaA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Ferry Shuttle Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"jaC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"jaD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air to External Air Ports" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jbj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"jbw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"jbD" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan, -/turf/closed/wall/r_wall/rust, -/area/maintenance/aft) -"jbR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/depsec/medical, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"jcx" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"jcL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"jcM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"jcQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"jdg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"jdj" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"jdN" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"jdX" = ( -/turf/closed/wall, -/area/medical/exam_room) -"jej" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 1; - id = "NTMSLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"jeE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"jeQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/package_wrap, -/obj/item/crowbar, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/electronics/airlock{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"jeS" = ( -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Unfiltered & Air to Mix" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"jfl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "Secure Storage"; - name = "Secure Storage Toggle"; - req_access_txt = "11" - }, -/turf/open/floor/engine, -/area/engineering/main) -"jft" = ( -/obj/effect/turf_decal/arrows, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jfE" = ( -/obj/machinery/vending/sustenance, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jfH" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"jfJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"jgr" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jgw" = ( -/obj/effect/decal/cleanable/chem_pile, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"jho" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jhu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"jhL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/clothing/under/color/grey, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jin" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/locker) -"jiA" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"jiV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/analyzer{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/analyzer, -/obj/item/flashlight, -/obj/item/flashlight, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"jjj" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"jjR" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/item/restraints/handcuffs/cable/red, -/obj/item/clothing/suit/apron/surgical, -/obj/item/weldingtool/mini, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"jjS" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"jkb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"jkk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"jkY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"jlg" = ( -/obj/structure/displaycase/trophy, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/sign/poster/official/pda_ad{ - pixel_y = -32 - }, -/turf/open/floor/carpet/green, -/area/service/library) -"jlA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"jmb" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"jmf" = ( -/obj/structure/sign/departments/security{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"jmh" = ( -/obj/structure/bookcase/random, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"jmm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"jmy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"jmS" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/flashlight/lantern, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "chapel sorting disposal pipe"; - sortType = 17 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"jnz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jnE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/chaplain, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/chapel/office) -"jnT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"jnU" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"joj" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/fernybush, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"jou" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"joA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"joJ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"joL" = ( -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"joR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"joU" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"jpb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"jpf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"jpm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jpD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jpG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jpH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = null; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jpL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jqu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"jqv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jqD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"jrp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"jrx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jrA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"jrK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jrN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jsb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jsj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"jsk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate/engineering, -/obj/item/hand_tele, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"jsw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"jsI" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/item/clipboard, -/obj/item/folder, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"jsL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jts" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine, -/area/engineering/main) -"jtJ" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/service/chapel) -"jtY" = ( -/turf/closed/wall/rust, -/area/medical/psychology) -"jtZ" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - name = "virology sorting disposal pipe"; - sortType = 27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"jun" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"jux" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/camera{ - c_tag = "Chapel"; - dir = 4; - name = "chapel camera" - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel) -"juQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"juR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera{ - c_tag = "Laser Room Starboard"; - dir = 1; - name = "laser room camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"juT" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jvp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"jvE" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"jvV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"jwd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera{ - c_tag = "Cryogenics"; - dir = 8; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/table, -/obj/item/book/manual/wiki/medicine, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"jwo" = ( -/obj/machinery/airalarm/directional/east, -/turf/open/floor/engine, -/area/science/xenobiology) -"jwJ" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/fore) -"jwL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"jwZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/rack, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"jxm" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"jyh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/execution/education) -"jyp" = ( -/obj/structure/table/wood/fancy, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/flashlight/lantern, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"jyr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jyz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/ids, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"jyL" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/commons/fitness/recreation) -"jzK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jzQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"jzS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jzU" = ( -/obj/structure/table, -/obj/item/storage/box/deputy, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"jzZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"jAe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jAp" = ( -/turf/open/space, -/area/space) -"jAE" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jAJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"jAW" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/food/dough, -/obj/item/food/dough, -/obj/item/kitchen/rollingpin, -/obj/item/kitchen/rollingpin, -/obj/item/paper/crumpled{ - info = "Hey whoever designed this shithole didn't give us space to install the produce computer so it's in maintenance near the theatre."; - name = "hastily written note" - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"jBp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"jBG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"jBT" = ( -/obj/machinery/light_switch/directional/east, -/obj/item/radio/intercom/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"jCj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"jCZ" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"jDu" = ( -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = -5 - }, -/obj/item/tank/internals/emergency_oxygen/engi{ - pixel_x = 5 - }, -/obj/item/geiger_counter, -/obj/item/geiger_counter, -/obj/structure/table, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jDT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"jEo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Mix to Filter" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jEr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jEB" = ( -/obj/item/storage/fancy/donut_box, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"jFh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/chapel/office) -"jFI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"jFR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics"; - name = "hydroponics camera" - }, -/obj/machinery/light/directional/north, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"jGh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"jGv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jGy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"jGI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"jGP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/security{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"jHj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"jHu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/camera{ - c_tag = "Teleporter Access"; - dir = 4; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"jHA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"jId" = ( -/obj/structure/easel, -/obj/effect/turf_decal/bot, -/obj/item/airlock_painter, -/turf/open/floor/plasteel/dark, -/area/service/library) -"jIo" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"jIQ" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/wirecutters, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/camera{ - c_tag = "Recreation Arcade"; - name = "recreation camera" - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"jJh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"jJi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"jJt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"jJA" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"jJF" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jJJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/red/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jJS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jKf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/teleporter) -"jKx" = ( -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jLe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"jLU" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/item/paper_bin{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"jMb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/crate, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"jMf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/food/grown/corn{ - pixel_y = 6 - }, -/obj/item/food/grown/pumpkin{ - pixel_y = 6 - }, -/obj/item/food/grown/carrot, -/obj/item/food/grown/tomato, -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plating, -/area/service/hydroponics) -"jMo" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/machinery/door/window/eastleft{ - name = "Engineering Desk"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"jMt" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"jMx" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/machinery/camera{ - c_tag = "Chief Medical Officer's Office"; - name = "medical camera"; - network = list("ss13","medical") - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"jMz" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jMR" = ( -/turf/closed/wall, -/area/cargo/qm) -"jNa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"jNp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"jNq" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"jNB" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jNN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining/glass{ - name = "Drone Control"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jOd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"jOe" = ( -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"jOf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"jOI" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"jOO" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"jOT" = ( -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jPc" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jPk" = ( -/obj/structure/table/glass, -/obj/item/storage/box/rxglasses{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/beakers, -/obj/item/gun/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"jPA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/service/library) -"jPF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jPN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"jPO" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"jQf" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2O"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"jQk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jQo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"jQQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"jQW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"jRb" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"jRd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"jRt" = ( -/obj/structure/closet/radiation, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"jRu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"jRP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/frame/computer{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"jRQ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/ore_silo, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"jSc" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/obj/machinery/requests_console/directional/east{ - department = "Robotics"; - departmentType = 2; - name = "Robotics Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"jSw" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"jSV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/cargo/warehouse) -"jSW" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/cobweb, -/obj/item/storage/secure/briefcase{ - pixel_y = 4 - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/button/door/directional/north{ - id = "Cabin_4"; - name = "Cabin 4 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood, -/area/commons/locker) -"jTh" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"jTH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"jTJ" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/potato, -/obj/item/seeds/tomato, -/obj/item/seeds/carrot, -/obj/item/seeds/grass, -/obj/item/seeds/ambrosia, -/obj/item/seeds/wheat, -/obj/item/seeds/pumpkin, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"jTL" = ( -/obj/structure/grille/broken, -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"jTR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/tank/jetpack/carbondioxide{ - pixel_y = 2 - }, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"jUv" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/service/chapel) -"jVg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"jVm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"jWm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"jWq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/toy/plush/pkplush{ - desc = "Give HUG-E a hug!"; - name = "TH3R4PY-X09" - }, -/obj/machinery/flasher/directional/north{ - id = "IsolationFlash" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"jWx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jWU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"jWX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/engineer{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"jXa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"jXf" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/camera_film{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/camera_film, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/camera{ - c_tag = "Library"; - dir = 8; - name = "bar camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"jXh" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/machinery/recharger, -/obj/machinery/camera{ - c_tag = "Engineering Security Post"; - dir = 1; - name = "engineering camera" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"jXi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"jXM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"jXU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jXX" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/bar) -"jXY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"jYm" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/potato, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/grass, -/area/service/chapel) -"jYU" = ( -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"jZh" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"jZl" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/delivery, -/obj/item/gun/energy/e_gun/mini, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"jZo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera{ - c_tag = "Ordnance Lab Storage"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"jZA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"jZF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"jZU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"kbd" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kbf" = ( -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"kbi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kbq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/qm) -"kbu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"kbw" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = null; - req_one_access_txt = "12;22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"kbG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"kbZ" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"kcq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"kcG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kcR" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/structure/fireaxecabinet/directional/south, -/obj/machinery/door/window/northright{ - name = "Emergency Storage"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kdd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"kdn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kdG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Recreation Area" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"kdM" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/fore) -"kdP" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"keb" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/northright{ - name = "Hydroponics Lockers"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kec" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/storage/tech) -"ken" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"keq" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"key" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"keH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"keP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/wrench, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"keT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"keV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/gps{ - gpstag = "TP0" - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"kfj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"kfm" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock"; - req_access_txt = "2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"kfu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/door_assembly/door_assembly_min{ - anchored = 1 - }, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"kfE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/obj/structure/plaque/static_plaque/golden{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"kfF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"kfK" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kga" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kgn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kgs" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/keycard_auth/directional/north{ - pixel_x = -6 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 12 - }, -/obj/item/radio/intercom/directional/east, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"kgu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"kho" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"khw" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"kig" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"kik" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"kiu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kiH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kiK" = ( -/obj/machinery/computer/monitor{ - dir = 4; - name = "Bridge Power Monitoring Console" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kiT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"kje" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kjn" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kjy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kjI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kjL" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"kjN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/deathsposal{ - layer = 4 - }, -/turf/open/floor/plating, -/area/medical/virology) -"kkf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "maidbay"; - name = "Maid Bay Toggle" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"kki" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"kkp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"kkr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"kkt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"kkD" = ( -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plasteel, -/area/security/brig) -"kkI" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/turf/open/floor/plating, -/area/security/prison) -"kkL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kkY" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"klb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"kli" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"klu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"kly" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access"; - req_one_access_txt = "19;23" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"klG" = ( -/turf/closed/wall, -/area/service/bar/atrium) -"kmj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - name = "dormitories sorting disposal pipe"; - sortType = 26 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kmC" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/weldingtool/largetank, -/obj/item/clothing/head/welding, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kmK" = ( -/obj/structure/flora/rock/pile{ - icon_state = "basalt" - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"knq" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "greydet"; - name = "trenchcoat" - }, -/obj/item/clothing/suit/jacket{ - desc = "All the class of a trenchcoat without the security fibers."; - icon_state = "detective"; - name = "trenchcoat" - }, -/obj/item/clothing/head/fedora, -/obj/item/clothing/head/fedora{ - icon_state = "detective" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"knN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 30 - }, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"knR" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"kot" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kpd" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"kpf" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"kpg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"kpm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"kpt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"kpw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/engineering/atmos) -"kpE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kpJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"kpP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kqL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"kqR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison) -"krd" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"krv" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"krA" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/closet, -/obj/item/stack/package_wrap, -/obj/item/storage/bag/trash, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"krL" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"ksb" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"ksw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "justicedoor"; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "justicedoor"; - name = "Justice Door Lock"; - normaldoorcontrol = 1; - req_access_txt = "3"; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ksx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"ksR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"ksT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ktj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ktk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ktq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"ktG" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"ktX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"kuu" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/cargo/warehouse) -"kuv" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solars/starboard/aft) -"kuw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"kux" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"kuz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"kuB" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"kuI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera{ - c_tag = "Central Hallway Personnel Queue"; - dir = 1; - name = "central camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kuL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ - dir = 8 - }, -/obj/machinery/meter/atmos/distro_loop, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kuW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/xeno_mining{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Port Quarter Solar"; - dir = 4; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"kuZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kvc" = ( -/obj/item/radio/intercom/directional/north, -/turf/open/floor/engine, -/area/science/xenobiology) -"kvx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"kvy" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/recharger, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"kvI" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard/directional/west, -/obj/item/clothing/gloves/color/latex, -/obj/item/hemostat, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"kvO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kwv" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/suit_storage_unit/engine, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kwO" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/storage/box/monkeycubes, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/virusfood/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"kwT" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/atmos) -"kxi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/bridge_pipe/supply/hidden, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"kxy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/service/library) -"kxF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/canister_frame/machine/frame_tier_0, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"kxY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"kyk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kym" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"kyv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"kyx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Checkpoint"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kyz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light/directional/south, -/turf/open/floor/engine, -/area/engineering/main) -"kyC" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kyD" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stamp/hos, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"kyH" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kyS" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/engine, -/area/tcommsat/computer) -"kyT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway Firelock"; - dir = 4; - name = "port camera" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"kzk" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"kzO" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/fore) -"kzS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kzU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"kzW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/bag/trash, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"kAm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"kAn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/security/prison) -"kAC" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"kAF" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"kAX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"kBa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"kBH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"kBU" = ( -/obj/machinery/light_switch/directional/south, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"kCc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kCl" = ( -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = 6 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/commons/locker) -"kCt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"kCA" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"kCW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/turf/open/floor/engine, -/area/engineering/main) -"kDm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/drugs, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"kDn" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kDo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"kDq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"kDr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"kDD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"kEg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 2 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"kEu" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/fore) -"kFe" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"kFf" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"kFu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/bridge) -"kFz" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/obj/machinery/camera{ - c_tag = "Recovery Room"; - dir = 1; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"kFE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kFL" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"kFW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/warden) -"kGa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_1Privacy"; - name = "Unit 1 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"kGg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"kGl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Gas to Chamber" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/supermatter) -"kGr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"kGR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"kGS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"kGY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"kHx" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/east, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"kHJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/ai_slipper{ - uses = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"kHY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ - desc = "An emerald flask, from the Keeper's soul. High in vitamins!"; - name = "estus flask"; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"kIn" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/storage/box/drinkingglasses, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/box/drinkingglasses, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kIo" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"kIr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/item/healthanalyzer, -/obj/item/crowbar/red, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/exam_room) -"kIs" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/official/help_others{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"kII" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"kIU" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/service/hydroponics) -"kIW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"kJD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"kJM" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/stamp{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Cargo Office"; - dir = 8; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"kKk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"kKu" = ( -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kKw" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/analyzer, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"kKR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"kLe" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/noticeboard/directional/west, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"kLm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/grass, -/area/service/chapel) -"kLn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/games, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"kLr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"kLy" = ( -/obj/structure/flora/ausbushes/palebush{ - icon_state = "fernybush_3" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"kLB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/engine, -/area/engineering/main) -"kLI" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/requests_console/directional/east{ - department = "Bar"; - departmentType = 2; - name = "Bar Requests Console"; - receive_ore_updates = 1 - }, -/obj/machinery/button/door/directional/north{ - id = "bar_1"; - name = "Bar Shutters Toggle"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kLL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kMH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"kNl" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ - dir = 10 - }, -/turf/closed/wall/rust, -/area/maintenance/disposal/incinerator) -"kNx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/engine, -/area/engineering/main) -"kNA" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"kNH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"kNN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kNZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"kOu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kOw" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/food/sausage, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kOH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"kOP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"kPg" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"kPB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"kPC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"kPG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"kPV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"kPX" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"kPY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"kQp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fireaxecabinet/directional/north, -/obj/machinery/camera{ - c_tag = "Atmospherics Scrubbers"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kQw" = ( -/turf/open/floor/wood, -/area/service/bar) -"kQx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/window/southleft{ - name = "Trash Chute"; - req_one_access_txt = "26" - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 4; - id = "garbage"; - name = "trash chute" - }, -/obj/effect/turf_decal/loading_area, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/janitor) -"kQU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"kRb" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/rust, -/area/command/bridge) -"kRc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"kRu" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"kRv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kRE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kRH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/turf/open/floor/plating, -/area/security/prison) -"kRX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"kSb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"kSi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/tcommsat/computer) -"kSk" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kSl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kTl" = ( -/obj/machinery/power/port_gen/pacman, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kTq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/command/storage/eva) -"kTx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"kTz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/chemist, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"kTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet/green, -/area/service/bar) -"kUs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/table/optable, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"kUK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock/command{ - name = "Transit Access"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kUM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Locker Room"; - name = "recreation camera" - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/commons/locker) -"kUP" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/matches{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/lighter{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"kVj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"kVo" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/supermatter) -"kVv" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kVN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"kVS" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kVW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kWc" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 2 - }, -/obj/item/cartridge/medical{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/cartridge/medical{ - pixel_x = 4 - }, -/obj/item/cartridge/chemistry{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"kWQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"kWT" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "External Gas to Loop" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"kWU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/mineral/ore_redemption{ - dir = 8; - input_dir = 4; - output_dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/office) -"kXq" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"kXs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kXA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kXB" = ( -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"kYi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"kYL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/caution, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/obj/machinery/camera{ - c_tag = "Crematorium"; - dir = 1; - name = "chapel camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"kYM" = ( -/obj/machinery/pdapainter, -/obj/structure/sign/poster/official/ian{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"kYX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/turf/open/floor/plating, -/area/cargo/warehouse) -"kZp" = ( -/obj/machinery/light/directional/north, -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"kZq" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"kZv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"kZA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet/green, -/area/service/bar) -"kZM" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"laA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"laN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"laT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/machinery/button/door/directional/south{ - id = "prisonblast"; - name = "Prison Lockdown"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"lbb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"lbi" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/cargo/storage) -"lbl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lbF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"lbJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/mining/glass{ - name = "Exploration Dock"; - req_access_txt = "49" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"lbY" = ( -/obj/structure/cable, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lcd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating, -/area/maintenance/port) -"lcM" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ldD" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/warehouse) -"ldP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"lea" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"leq" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/qm) -"ley" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"leY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"lfm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11; - pixel_y = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/window/southright{ - name = "Trash Chute"; - req_one_access_txt = "26" - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/janitor) -"lfG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"lfM" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lgc" = ( -/obj/machinery/door/window/westleft{ - name = "Waste Door" - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"lgq" = ( -/obj/effect/turf_decal/box, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/xenobiology) -"lgH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lgZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lhe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"lhh" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"lhj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"lhH" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"lib" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"lih" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"liA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"liP" = ( -/obj/machinery/door/airlock/mining{ - name = "Auxiliary Base"; - req_one_access_txt = "32;47;48" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"liS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"liW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ljj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"ljH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"ljK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 9 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ljM" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light_switch/directional/north{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ljS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"ljT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"lkk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "medbay maintenance"; - req_access_txt = "5" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"lkx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"llp" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"llt" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"llv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/entry) -"llz" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"llN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"llT" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"llU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"lmF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"lmH" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lmK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"lmP" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"lnA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"lnH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"lnS" = ( -/obj/structure/closet/secure_closet/hos, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"lnV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"lnZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"los" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"lov" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"loB" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/wrench/medical, -/obj/item/toy/figure/cmo, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"loE" = ( -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"loX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"lpg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"lpk" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"lpp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/crowbar{ - pixel_x = -8; - pixel_y = 11 - }, -/obj/machinery/light/directional/east, -/obj/item/roller{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/roller, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"lpH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"lpO" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"lpT" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard/fore) -"lpU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"lpY" = ( -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plastic, -/area/security/prison) -"lqm" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"lqs" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/food/salt{ - desc = "A sizable pile of concentrated salt left behind by the previous occupant." - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"lqA" = ( -/obj/structure/table_frame, -/turf/open/floor/plating, -/area/cargo/warehouse) -"lrD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/structure/mirror/directional/north, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/glasses/eyepatch{ - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"lrG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"lrL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - desc = "After his promotion, he was transferred to Kilo Station to serve as the gateway's protector."; - icon_state = "plant-21"; - name = "rodger" - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel, -/area/command/gateway) -"lsp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"lsu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/labor, -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/machinery/light/directional/west, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"lsw" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"lsT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ltg" = ( -/turf/closed/wall/r_wall, -/area/security/brig/upper) -"ltB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"ltR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/rnd/bepis, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"lum" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/storage/box/evidence{ - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/grenade/flashbang, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"lur" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Engine" - }, -/turf/open/floor/engine, -/area/engineering/main) -"luw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/cargo/storage) -"luB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Atrium Vendors"; - dir = 8; - name = "diner camera" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"luW" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/bar) -"lve" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/xmastree/rdrod, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"lvo" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"lvu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"lvU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/cargo/warehouse) -"lvV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/structure/disposalpipe/junction/flip, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"lvY" = ( -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"lwa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"lwv" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"lwE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"lxf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"lxl" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lxq" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lxB" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"lxO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"lxQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/item/taperecorder{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/camera, -/obj/item/pen{ - pixel_x = -7; - pixel_y = -5 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"lxS" = ( -/turf/open/floor/plating, -/area/cargo/warehouse) -"lyF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lyG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lyT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lzj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Science"; - location = "Cargo"; - name = "cargo navigation beacon" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lzk" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/button/door/directional/south{ - id = "robotics_shutters"; - name = "Robotics Shutter Toggle"; - pixel_x = 24; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"lzo" = ( -/obj/machinery/door/poddoor{ - id = "trash"; - name = "disposal bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"lAy" = ( -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"lAJ" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"lBj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lBn" = ( -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/structure/table, -/obj/item/toy/figure/qm, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"lBw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"lBG" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/cargo/warehouse) -"lBX" = ( -/obj/structure/cable, -/turf/open/floor/plating/rust, -/area/security/prison) -"lCl" = ( -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"lCr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lCS" = ( -/obj/structure/dresser, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"lCZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/airalarm/engine{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lDK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lDM" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"lDT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lDV" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Satellite Atmospherics"; - dir = 8; - name = "satellite camera"; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"lEF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/bag/tray, -/obj/item/food/sausage, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"lEG" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"lEI" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lEK" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"lFh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Air to Mix" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"lFt" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lGd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Supermatter Engine"; - dir = 1; - name = "supermatter camera"; - network = list("engine") - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lGe" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engineering/supermatter) -"lGj" = ( -/obj/structure/flora/junglebush/b, -/obj/machinery/airalarm/directional/east, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"lGk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lGn" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/microwave, -/turf/open/floor/plasteel/white, -/area/security/prison) -"lGH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 4 - }, -/obj/item/toy/plush/plasmamanplushie{ - name = "Lithium II" - }, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"lGO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"lGV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"lHc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"lHr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lHG" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 4 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"lHK" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/bombcloset, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"lIe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lIv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"lIw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"lIQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lIY" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lJw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lJH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lJQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/aft) -"lKt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"lKu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"lKR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"lLf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"lLm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"lLS" = ( -/obj/machinery/light/small/directional/south, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"lLY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"lMR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"lNt" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat"; - pixel_y = 6 - }, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"lNB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"lNT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "External Waste Ports to Filter" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"lOa" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/lawoffice) -"lOh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/fore) -"lOr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"lOL" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/ce{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/west{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_y = 6; - req_access_txt = "24" - }, -/obj/machinery/button/door/directional/west{ - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_y = -6; - req_access_txt = "10" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"lPu" = ( -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/camera{ - c_tag = "Captain's Office"; - name = "command camera" - }, -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 8 - }, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"lPE" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"lPU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"lPX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"lQg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lQl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel, -/area/command/gateway) -"lQG" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;101" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"lQT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"lRf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/chef_order{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"lRx" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/item/stock_parts/cell/high{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"lRG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"lSd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lSf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"lSk" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/command/gateway) -"lSn" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"lSB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lSH" = ( -/turf/closed/wall/rust, -/area/commons/toilet/restrooms) -"lSR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"lSW" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"lTc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/item/pickaxe, -/obj/item/shovel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"lTp" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/east, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Quartermaster's Desk"; - departmentType = 2; - name = "Quartermaster's Requests Console" - }, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"lTs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"lTM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"lTS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"lTW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"lUc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"lUB" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/freezer/meat, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"lUN" = ( -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"lUO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"lUP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel, -/area/cargo/storage) -"lUX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"lVq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"lVx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"lVA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"lWh" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"lWu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"lWx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"lWY" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too."; - health = 45; - maxHealth = 45; - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lXd" = ( -/obj/structure/table, -/obj/item/stack/cable_coil/five, -/turf/open/floor/plating, -/area/cargo/warehouse) -"lXn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/structure/reagent_dispensers/beerkeg{ - pixel_y = 5 - }, -/obj/structure/sign/poster/contraband/red_rum{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"lXq" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/service/library) -"lXt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lXv" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"lXC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"lXQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_y = 6; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"lYd" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - pixel_y = 15 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"lYi" = ( -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"lYm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"lYs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"lYu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"lYE" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"lYT" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"lZB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"lZI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"lZL" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"lZY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/figure/secofficer, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"lZZ" = ( -/obj/structure/noticeboard/directional/north, -/obj/item/kirbyplants{ - icon_state = "plant-17"; - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"maN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/fore) -"maU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/mmi, -/obj/item/bodypart/chest/robot{ - pixel_y = 4 - }, -/obj/item/bodypart/r_leg/robot{ - pixel_x = 6 - }, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/bodypart/l_leg/robot{ - pixel_x = -6 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/bodypart/head/robot, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"mbo" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/b_minus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/b_plus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"mbO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mailroom"; - req_access_txt = "50" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"mbU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/flashlight/pen, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/item/storage/box/rxglasses{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/machinery/requests_console/directional/north{ - department = "Genetics"; - name = "Genetics Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"mcx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"mdR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mfe" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"mfi" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"mfl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"mfz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mfD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"mfS" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/box, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/science/xenobiology) -"mfT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"mfV" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"mfY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/meter/atmos/layer2{ - name = "gas flow meter" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mgL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"mha" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/box/red, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/aisat_interior) -"mhH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mhK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"mhU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"mij" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"mio" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/noticeboard/directional/east, -/obj/item/wallframe/apc, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"miC" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"miO" = ( -/obj/structure/sign/departments/restroom, -/turf/closed/wall, -/area/commons/locker) -"mjr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/cartridge/roboticist{ - pixel_x = -3 - }, -/obj/item/circuitboard/aicore{ - pixel_y = 5 - }, -/obj/item/hand_labeler, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/obj/item/paicard{ - pixel_x = 6 - }, -/obj/item/aicard, -/obj/item/taperecorder{ - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"mjM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/closet/crate/bin, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"mkz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mkA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"mkB" = ( -/obj/structure/grille/broken, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/button/door/directional/east{ - id = "coldroom"; - name = "Coldroom Shutter Toggle"; - req_access_txt = "28" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"mkR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security/glass{ - id_tag = "Abandoned Cell"; - name = "Abandoned Cell" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"mkS" = ( -/obj/structure/sign/departments/security{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"mkY" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/port/fore) -"mld" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cyborg, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"mlj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"mll" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mlm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/autodrobe/all_access, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"mlu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/noticeboard/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"mlE" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mlF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mlI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"mmf" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"mmt" = ( -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"mmw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/station_engineer, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"mmA" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 2" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"mmM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/cargo/warehouse) -"mmP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "emmd"; - name = "Medical Lockdown Toggle" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"mnc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"mnt" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/command/bridge) -"mnv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "engineering sorting disposal pipe"; - sortType = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mnA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mok" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"moD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"moH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"moM" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/structure/displaycase/forsale, -/turf/open/floor/plating, -/area/service/kitchen) -"moO" = ( -/obj/machinery/door/window/northright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet/green, -/area/service/library) -"mpx" = ( -/turf/closed/wall, -/area/engineering/main) -"mpG" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"mpM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"mpY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"mqu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"mqF" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4; - pixel_x = -15 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"mqV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"mra" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/dinnerware, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/requests_console/directional/west{ - department = "Kitchen"; - departmentType = 2; - name = "Kitchen Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"mrr" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"mrF" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"mrN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"mrO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Central Hallway Teleporter Access"; - name = "central camera" - }, -/obj/machinery/button/door/directional/north{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"msc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"msd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"mse" = ( -/obj/machinery/light_switch/directional/west, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"msw" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"msx" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"msA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"msI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"msW" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"mtp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/maintenance/port) -"mtw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/item/crowbar/red, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"mtA" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/obj/effect/turf_decal/box/red, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"mtD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"mtP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"mtR" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/package_wrap, -/obj/item/storage/secure/briefcase, -/obj/item/hand_labeler, -/obj/item/reagent_containers/spray/cleaner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"mua" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo, -/obj/machinery/requests_console/directional/north{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo Bay Requests Console" - }, -/obj/item/radio/intercom/directional/north{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"muA" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/fore) -"muD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"muE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"muH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/carpet/green, -/area/service/library) -"muT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mvi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"mvk" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"mwc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"mwd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"mwh" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"mwi" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"mwM" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mwW" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/assistant{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/east{ - id = "commissaryshutter"; - name = "Commissary Shutter Toggle"; - pixel_y = 6 - }, -/obj/machinery/button/door/directional/east{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - pixel_y = -6; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"mwZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"mxD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"mxG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/break_room) -"myb" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/toolbox/electrical, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"myo" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"myp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"myD" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/cargo/warehouse) -"myP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/blue/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"myQ" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"myU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Gravity Generator"; - dir = 1; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"myY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"myZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/chapel/office) -"mzi" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "Queue Shutters" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"mzt" = ( -/obj/structure/flora/grass/jungle{ - icon_state = "grassb2" - }, -/obj/structure/flora/ausbushes/palebush{ - icon_state = "brflowers_3" - }, -/obj/structure/flora/ausbushes/palebush{ - icon_state = "fernybush_1" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"mzw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/closed/wall, -/area/engineering/atmos) -"mzF" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_1"; - name = "Unit 1" - }, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"mzP" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"mzU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/healthanalyzer, -/obj/item/hand_labeler, -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = 5; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mzV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mAa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"mAj" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/ai/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"mAl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"mAn" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 8 - }, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/wood, -/area/cargo/warehouse) -"mAz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Arrivals Drydock Canisters"; - dir = 1; - name = "shuttle camera" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"mAE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"mAI" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison/safe) -"mAW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"mBn" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mBt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mBN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"mBV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/surgery, -/obj/item/razor, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"mCh" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/paicard{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"mCS" = ( -/obj/effect/turf_decal/stripes/end, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mCW" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mDG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"mDO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/surgicaldrill{ - pixel_y = 5 - }, -/obj/item/healthanalyzer, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"mEr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mEy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"mEU" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"mFz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/machinery/button/door/directional/west{ - id = "coldroom"; - name = "Coldroom Shutter Toggle"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"mFC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"mFX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"mGg" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"mGu" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"mGw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"mGx" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "AI Chamber Core"; - dir = 1; - name = "core camera"; - network = list("aicore") - }, -/obj/machinery/light/floor, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"mGE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"mGQ" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/rust, -/area/maintenance/port) -"mGR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"mGX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/spider/stickyweb, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"mHd" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"mHg" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"mHi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mHk" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"mHn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"mHq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"mHQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Armoury"; - req_access_txt = "58" - }, -/obj/machinery/door/poddoor/shutters{ - id = "frontarmory"; - name = "Front Armoury Shutter" - }, -/obj/machinery/button/door/directional/north{ - id = "frontarmory"; - name = "Armoury Shutter Toggle"; - req_access_txt = "58" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"mHW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"mIa" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4; - name = "service camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"mId" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mIs" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"mIv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"mIK" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/item/food/spiderleg, -/turf/open/floor/plasteel/white, -/area/security/prison) -"mIX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/pingsky, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"mJz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"mJE" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/scientist, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/firealarm/directional/north, -/obj/item/extinguisher, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Room" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"mJM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"mJV" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/circuit/red/telecomms, -/area/tcommsat/server) -"mKE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"mLa" = ( -/obj/structure/extinguisher_cabinet/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mLc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mLf" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Security"; - name = "navigation beacon (Security Delivery)" - }, -/obj/machinery/door/window/northright{ - name = "Security Delivery Access"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"mLl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"mLo" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/item/cultivator{ - pixel_x = 9 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/grass, -/area/security/prison) -"mLF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"mLZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mMe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"mMV" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"mNe" = ( -/obj/structure/fermenting_barrel, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mNf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"mNi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"mNx" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mNy" = ( -/obj/machinery/computer/communications{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/plaque/static_plaque/golden/captain{ - pixel_y = -32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"mNE" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"mNL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"mNY" = ( -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"mOh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"mOB" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/poppy, -/turf/open/floor/grass, -/area/service/chapel) -"mOD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"mPm" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 4; - name = "diner camera" - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"mPo" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 5 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"mPs" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"mPB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"mPG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"mPH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mPI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mQc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/yellow, -/obj/item/flashlight, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/cargo/office) -"mQh" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"mQv" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/aft) -"mQM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/siding/yellow/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mQS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"mQV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"mRa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"mRh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"mRi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/structure/closet/crate/freezer{ - name = "organ storage" - }, -/obj/item/organ/tail/cat, -/obj/item/organ/tail/cat, -/obj/item/organ/ears/cat, -/obj/item/organ/ears/cat, -/obj/item/organ/heart, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"mRD" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/service/bar) -"mRK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"mRL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"mSv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"mSA" = ( -/turf/closed/wall, -/area/lawoffice) -"mSI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mSK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Command)"; - pixel_x = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"mTb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/engineering/main) -"mTf" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Gateway"; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"mTD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"mTI" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"mTS" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/fuel_pellet, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"mTW" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/box/corners, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"mTX" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/securearea{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"mUC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mUI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel" - }, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"mUS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/item/kirbyplants, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/security/courtroom) -"mUT" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"mVC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"mVT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/north, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"mVX" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"mWo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"mWr" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/electronics/apc, -/obj/item/electronics/apc, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mWt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "HoP sorting disposal pipe"; - sortType = 15 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mWF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/bed/dogbed/cayenne{ - name = "Lia's bed" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/mob/living/simple_animal/hostile/carp/lia, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"mWJ" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"mWM" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/cargo/warehouse) -"mWQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"mXn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"mXt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/box/corners, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"mXv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"mXB" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"mYk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"mYN" = ( -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 8 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"mZc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/poster/official/space_cops{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"mZB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"mZC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"mZT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/rust, -/area/space/nearstation) -"mZV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"naT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"nbd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"ncr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"ncv" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"ncR" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"ncT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"ndg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ndn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"ndE" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/tower, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/service/chapel) -"nev" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"ney" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nez" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Shower_1Privacy"; - name = "Shower 1 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/commons/toilet/restrooms) -"nfn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/captains, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"nfu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"nfw" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nfH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"nfI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Distro" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ngn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ngt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ngy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"ngz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ngG" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/hydroponics, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/crowbar/red, -/obj/item/cultivator, -/obj/item/wirecutters, -/obj/item/reagent_containers/glass/bucket, -/obj/item/circuitboard/machine/biogenerator, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"ngH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Office"; - req_one_access_txt = "31;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"nhd" = ( -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai) -"nhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"nhB" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nhS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"nhV" = ( -/obj/structure/holohoop{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"niM" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall/rust, -/area/maintenance/fore) -"njj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"njm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"njs" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"nju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"njw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"njW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"nkn" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"nlh" = ( -/obj/structure/frame/machine, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nlo" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"nlU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"nlV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nmo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"nmp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"nnN" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nnU" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light/directional/west, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"nod" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"nof" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"nom" = ( -/obj/effect/mapping_helpers/iannewyear, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"noq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/processing) -"noC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/cargo/warehouse) -"noM" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"noN" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Lockdown Toggle"; - pixel_x = 6; - pixel_y = 8; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "transittube"; - name = "Transit Tube Lockdown Toggle"; - pixel_x = 6; - pixel_y = -2; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - pixel_x = -6; - pixel_y = 8; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Toggle"; - pixel_x = -6; - pixel_y = -2; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"noY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"npd" = ( -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 8; - luminosity = 2 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Turbine Chamber"; - dir = 1; - network = list("turbine") - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"npH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"nqj" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/brflowers, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/grass, -/area/medical/psychology) -"nqr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Teleporter Access"; - req_one_access_txt = "17;19" - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"nqA" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/curator, -/turf/open/floor/carpet/green, -/area/service/library) -"nqY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"nrB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"nrI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nrY" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/law{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"nsn" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/clothing/mask/gas/sechailer/swat, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"nsr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/directional/north, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"nsR" = ( -/obj/machinery/atmospherics/components/binary/valve/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nto" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ntr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/security/detectives_office) -"ntS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ntU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"nuc" = ( -/turf/closed/wall/r_wall/rust, -/area/engineering/storage/tech) -"nvc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera{ - c_tag = "Medbay Lobby"; - dir = 4; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"nvo" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"nvS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"nwa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nwk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"nwx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/library) -"nwC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"nxT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"nxZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"nyd" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"nyh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"nyI" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/port/aft) -"nyP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northright{ - name = "Emergency Storage"; - req_access_txt = "19" - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. This one is blue."; - helmet_type = /obj/item/clothing/head/helmet/space/syndicate/blue; - suit_type = /obj/item/clothing/suit/space/syndicate/blue - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nyV" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"nzj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Brig Shuttle Airlock"; - req_one_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"nzm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nzp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"nzu" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"nzw" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/extinguisher/mini, -/obj/item/tank/internals/oxygen/yellow, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"nzQ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 1" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"nAe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"nAW" = ( -/obj/structure/bookcase/random, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"nAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"nBk" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Research Division" - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Research Division Delivery Access"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"nBl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"nBm" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solars/port/fore) -"nBC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"nBJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/obj/machinery/light/directional/north, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light_switch/directional/north{ - pixel_x = 8 - }, -/obj/machinery/button/door/directional/north{ - pixel_x = -8 - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"nCo" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"nCs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/south{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel" - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"nCO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nCW" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"nDe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"nDy" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"nDz" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/engineering/main) -"nDE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"nDK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/south, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"nDP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"nEl" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/tank/internals/oxygen{ - pixel_x = 5 - }, -/obj/item/tank/internals/oxygen{ - pixel_x = -5 - }, -/obj/item/wrench, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas, -/obj/machinery/door/window/northleft{ - name = "Emergency Storage"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nEu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"nEE" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"nFj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"nFo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/break_room) -"nFQ" = ( -/obj/item/canvas/nineteen_nineteen, -/obj/structure/easel, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"nGB" = ( -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"nHA" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"nHL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nIo" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/clipboard, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plating, -/area/service/hydroponics) -"nIq" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"nIv" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"nIy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"nIM" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"nIV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/closed/wall, -/area/engineering/atmos) -"nIX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad/secure, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"nJn" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"nJS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"nJY" = ( -/turf/closed/wall/rust, -/area/lawoffice) -"nKl" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"nKz" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/command/bridge) -"nKH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Prison Wing Lockers"; - dir = 1; - name = "prison camera"; - network = list("ss13","prison") - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"nKT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nKW" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nLl" = ( -/obj/structure/reflector/single/anchored{ - dir = 5 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"nLu" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"nLC" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"nLV" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nLY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - pixel_x = 14; - pixel_y = 13 - }, -/turf/open/floor/plating/rust, -/area/security/prison) -"nMm" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"nMw" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/command/heads_quarters/hop) -"nMC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"nMI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"nNi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/obj/structure/sign/departments/chemistry{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Chemistry East"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/button/door/directional/north{ - id = "chem_lockdown"; - name = "chemistry lockdown control"; - req_access_txt = "5; 69" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"nNp" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nNw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera{ - c_tag = "AI Chamber SMES"; - name = "core camera"; - network = list("aicore") - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"nNB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"nNU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"nNZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/door_assembly/door_assembly_min{ - anchored = 1 - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"nON" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"nOQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"nOZ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard/fore) -"nPa" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/noticeboard/directional/east, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 8; - name = "detective camera" - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"nPb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/status_display/ai/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nPE" = ( -/obj/structure/chair/sofa/right{ - color = "#c45c57" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"nPY" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel/dark, -/area/security/main) -"nQa" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/machinery/camera{ - c_tag = "Science Security Post"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/button/door/directional/south{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = 24; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"nQl" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"nQy" = ( -/obj/structure/sign/poster/official/pda_ad, -/turf/closed/wall, -/area/command/heads_quarters/hop) -"nRg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"nRi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"nRl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/reflector/double/anchored{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"nRr" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"nRA" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"nRG" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/machinery/light/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/grass, -/area/service/chapel) -"nSd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"nSg" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - name = "Security Desk"; - req_one_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nSm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"nSq" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/goldcrate, -/obj/machinery/firealarm/directional/west, -/obj/item/crowbar/power, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"nTo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/janitor, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 2; - pixel_x = 64 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"nTA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/scalpel{ - pixel_y = 5 - }, -/obj/item/cautery, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"nTL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nUa" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"nUq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"nUt" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"nUx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"nUA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nUE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2O to Pure" - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"nVD" = ( -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"nVM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"nVV" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - name = "off ramp"; - pixel_y = 5 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nWd" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/beebox, -/turf/open/floor/grass, -/area/service/chapel) -"nWh" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"nWj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"nWo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"nWN" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/chapel/office) -"nXe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"nXj" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"nXm" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/chemistry) -"nXv" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"nXD" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/atmos) -"nYc" = ( -/obj/machinery/mass_driver{ - id = "trash" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"nYd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/computer/security/telescreen/prison{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/main) -"nYK" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"nYL" = ( -/obj/structure/table, -/obj/item/instrument/harmonica, -/obj/item/camera{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"nYV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/structure/sign/barsign{ - pixel_y = 32; - req_access = null; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"nYW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Kitchen"; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"nZo" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"nZQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/engineering/main) -"nZU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"oaA" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solars/starboard/fore) -"oaK" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"oaT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry"; - req_access_txt = "33" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"oaW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"obm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"obH" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"obS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"obU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"oca" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"och" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"oct" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ocw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"ocN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/ten, -/obj/item/stack/cable_coil, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/wirecutters, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"ocP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"ocW" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"odt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"odG" = ( -/turf/closed/wall/rust, -/area/medical/paramedic) -"oep" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oeA" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"oeB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"ofB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Departures Checkpoint"; - dir = 8; - name = "shuttle camera" - }, -/obj/machinery/button/door/directional/east{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"ofH" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/cargo/storage) -"ogc" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"ogA" = ( -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/lowpressure, -/area/space/nearstation) -"ogO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"ogX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ohr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/port) -"ohC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera{ - c_tag = "Restrooms"; - dir = 1; - name = "recreation camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"ohD" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"ohH" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/security/warden) -"ohN" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"ohU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/meter, -/obj/machinery/light/directional/west, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/engine, -/area/engineering/main) -"oij" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ois" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"oiP" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/cargo/warehouse) -"oiW" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/blue, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/window/southright{ - name = "Reception Desk" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"oiX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ojw" = ( -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ojE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"okh" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"okk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"okm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/firealarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"okq" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel, -/area/command/bridge) -"okw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/service/bar) -"okF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"okQ" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security's Requests Console" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"okR" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"okT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/bed/roller, -/obj/machinery/light/small/directional/south, -/obj/machinery/iv_drip, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/central) -"okV" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"okY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"olb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"old" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"olK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI Upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -28 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"olM" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hop"; - name = "Privacy Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"olX" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"omv" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "NTMSLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"omA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"omJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"omR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"onb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"onf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ont" = ( -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"onN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/libraryscanner, -/obj/effect/turf_decal/bot_white, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/library) -"onY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ood" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"ooA" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/firstaid/o2, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"ooM" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/space_heater, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"opx" = ( -/obj/effect/turf_decal/bot, -/obj/structure/punching_bag, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/plating, -/area/maintenance/fore) -"opS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"opV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/bar) -"opW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/westleft{ - name = "Soothing Nature Exhibit"; - req_access_txt = "70" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/psychology) -"opX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/flashlight, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"opY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Supermatter Terminal"; - dir = 4; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"oqo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"oqx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"orb" = ( -/obj/effect/turf_decal/bot/right, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"orA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"orI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"orK" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"orN" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"osm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "Skynet_launch"; - name = "Mech Bay Door Control"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oss" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port) -"osw" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"osy" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Plasma"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"osF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"ota" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"oth" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"otr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"otx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"otz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/crowbar/red, -/obj/item/toy/figure/roboticist{ - pixel_x = 6 - }, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"otZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/storage/box/lights/mixed, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"oub" = ( -/obj/structure/curtain, -/turf/open/floor/plating, -/area/security/prison) -"ouF" = ( -/turf/closed/wall/r_wall/rust, -/area/command/teleporter) -"ovc" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Waste Line"; - dir = 8; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/east{ - id = "engineaccess"; - name = "Engine Access Lockdown"; - req_access_txt = "10" - }, -/turf/open/floor/engine, -/area/engineering/main) -"ovn" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/cargo/storage) -"ovp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/flasher/directional/east{ - id = "hopflash"; - name = "Crowd Pacifier" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"owO" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"owR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"oxL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"oxP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"oys" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"oyx" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"oyC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"oyF" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/main) -"oyM" = ( -/obj/machinery/light_switch/directional/south{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/security/main) -"oyS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"ozk" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ozv" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"ozA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"ozQ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"oAc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"oAg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"oAl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"oAm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"oAn" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"oAB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Fore Hallway Diner"; - name = "fore camera" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oAH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/turf_decal/delivery, -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"oAK" = ( -/obj/structure/grille, -/obj/structure/barricade/wooden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"oAZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"oBp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"oBv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oBx" = ( -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Cargo Delivery Access"; - req_access_txt = "50" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"oBA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"oBI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"oBJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"oBN" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 8 - }, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing/chamber) -"oBY" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/glass, -/obj/structure/barricade/wooden/crude, -/turf/open/floor/plating/rust, -/area/security/prison) -"oCa" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"oCh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"oCH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboad Hallway Custodial Bay"; - name = "starboard camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oCO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oDs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"oDt" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"oDC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"oDF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"oDR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"oDT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/closed/wall/rust, -/area/science/storage) -"oEh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port) -"oEk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"oEv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Restrooms" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"oEx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/flasher/directional/east{ - id = "visitorflash" - }, -/turf/open/floor/plating, -/area/security/prison) -"oEU" = ( -/turf/closed/wall/rust, -/area/commons/storage/primary) -"oEW" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"oEX" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/primary/aft) -"oFe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/west, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"oFh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/fore) -"oFk" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 4"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/science/xenobiology) -"oFp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"oFr" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/science/storage) -"oFA" = ( -/obj/machinery/firealarm/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"oFH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/button/door/directional/south{ - id = "kitchen_2"; - name = "Hallway Hatch Toggle"; - pixel_x = 24; - req_access_txt = "28" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"oFL" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"oGc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"oGM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oHb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"oHJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"oHM" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Quartermaster's Office"; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"oHO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "custodial sorting disposal pipe"; - sortType = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oHY" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/matches{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/lighter{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/lighter, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"oIk" = ( -/obj/machinery/light/directional/west, -/obj/machinery/power/emitter/welded{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"oIr" = ( -/obj/structure/bookcase/random/adult, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/library) -"oIw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access_txt = "23;30" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"oIH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oJe" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"oJA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"oJL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"oJY" = ( -/obj/structure/table/wood/fancy, -/obj/item/book/granter/spell/smoke/lesser{ - pixel_y = 4 - }, -/obj/item/nullrod{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"oKa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"oKf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oKk" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"oKy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"oKA" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"oKO" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"oKX" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/engineering/main) -"oLl" = ( -/turf/closed/wall/rust, -/area/service/chapel/office) -"oLp" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"oLw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"oLY" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/requests_console/directional/west{ - department = "Engineering"; - departmentType = 4; - name = "Engineering Requests Console" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"oMj" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console/directional/south{ - department = "Law Office"; - name = "Law Office Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"oNc" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/candy, -/obj/item/trash/chips, -/obj/item/weldingtool/mini, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"oNe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"oNg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"oNw" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/engineering/main) -"oNQ" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"oNT" = ( -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"oOf" = ( -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"oPj" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"oPn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"oPo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"oPB" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber Lockdown Shutter" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"oPH" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/maintenance/port) -"oPT" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"oQw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"oQC" = ( -/obj/structure/table, -/obj/item/ai_module/reset, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_y = 26 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"oQI" = ( -/obj/structure/sign/warning, -/turf/closed/wall/r_wall, -/area/maintenance/port/aft) -"oRa" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"oRo" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/small/directional/north, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"oRw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"oRG" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"oRL" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"oRZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/fore) -"oSw" = ( -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"oTh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "NTMSLoad"; - name = "off ramp"; - pixel_x = -8; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"oTv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/closet/cabinet, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/stack/rods/ten, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"oTV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"oTZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door/directional/west{ - id = "Abandoned Cell"; - name = "Abandoned Door Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"oUl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"oUy" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"oUz" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pixel_y = 4 - }, -/obj/item/gun/energy/temperature/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/south, -/obj/item/clothing/suit/hooded/ablative, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"oUO" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/hydroponics) -"oUZ" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/cargo/warehouse) -"oVl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/fore) -"oVx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/clothing, -/obj/item/radio/intercom/directional/south, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"oVB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"oWf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"oWi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"oWm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"oWv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"oWW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"oXB" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"oYa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"oYg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"oYi" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"oYn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oYo" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Research Lab"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"oYG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"oYL" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"oZs" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 5"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"oZA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oZM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"pan" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/east, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"pat" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"paz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/machinery/light/directional/east, -/obj/machinery/light_switch/directional/east, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"paK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/sign/warning/fire{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"paL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"paR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"paX" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/research{ - name = "Testing Lab"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"paZ" = ( -/obj/machinery/light/small/directional/west, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"pbl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 6 - }, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/item/experi_scanner{ - pixel_x = -4 - }, -/obj/item/experi_scanner, -/obj/item/experi_scanner{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"pbn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"pbw" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"pbW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"pcu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Departure Checkpoint"; - dir = 4; - name = "starboard camera" - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pcE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pcL" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"pcX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/transit_tube/horizontal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/command/bridge) -"pdd" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pdg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera{ - c_tag = "Atmospherics Entrance"; - dir = 8; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pdi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"pdA" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"pdM" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"pef" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"peg" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"pen" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"peq" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/machinery/airalarm/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"pes" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"peu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"peB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/bridge) -"peP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"peU" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"peV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"pfL" = ( -/mob/living/simple_animal/butterfly, -/turf/open/floor/grass, -/area/service/chapel) -"pfM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"pfS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"pgf" = ( -/obj/machinery/firealarm/directional/west, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/watertank/janitor, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"pgr" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"pgy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"pgF" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/rd{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/keycard_auth/directional/east{ - pixel_y = 26 - }, -/obj/machinery/button/door/directional/north{ - id = "rdprivacy"; - name = "Director's Privacy Toggle"; - pixel_x = -8; - pixel_y = 38 - }, -/obj/machinery/button/door/directional/north{ - id = "Biohazard"; - name = "Emergency Research Lockdown"; - pixel_x = -8; - req_access_txt = "47" - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = 6 - }, -/obj/machinery/button/door/directional/north{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment"; - pixel_x = 6; - pixel_y = 38; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"pgJ" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"pgN" = ( -/obj/machinery/computer/security/qm{ - dir = 8; - network = list("mine","auxbase","vault","qm") - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/qm) -"phI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/primary/aft) -"pie" = ( -/obj/machinery/power/port_gen/pacman, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/structure/cable/layer3, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/ai_monitored/storage/satellite) -"pim" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating/airless, -/area/engineering/main) -"piF" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/entry) -"piK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"piT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/aicard, -/obj/item/ai_module/reset, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"piV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/griddle, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"piY" = ( -/obj/effect/mob_spawn/human/corpse/charredskeleton, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"pjy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Transit Access"; - req_access_txt = "19" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"pjz" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Unit_2"; - name = "Unit 2" - }, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"pkn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"pkC" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "disposal exit vent" - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"pkU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/library) -"pkY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 1 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"plj" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/lockbox/medal, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"pls" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"plP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"plU" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pmd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/bar) -"pmk" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Euthanization Chamber"; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"pmu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/closet/secure_closet/hop, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"pmy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"pmJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/bridge) -"pnb" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"pnt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/engineering/main) -"pnx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"pnQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/piratepad/civilian, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"poh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"pol" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Pure to Mix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pot" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"poD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/engineering/main) -"poL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"poR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"poT" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"poZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"ppf" = ( -/obj/structure/bed, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/turf/open/floor/wood, -/area/commons/locker) -"ppC" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pqb" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"pqg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"pqo" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"pqp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Service Door"; - req_one_access_txt = "35;28" - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"pqt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"pqE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"prk" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"prC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"prF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"prS" = ( -/turf/closed/wall/r_wall, -/area/command/bridge) -"psj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"psn" = ( -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/directional/west, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"psB" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"psO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pta" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"pth" = ( -/obj/structure/closet{ - name = "maid locker" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/white, -/obj/item/clothing/accessory/maidapron{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/shoes/laceup, -/obj/structure/mirror/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"ptl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel, -/area/command/gateway) -"ptA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ptQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"ptV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"put" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/nanotrasen{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"puG" = ( -/obj/structure/table/wood, -/obj/item/stack/package_wrap, -/obj/item/storage/lockbox/loyalty, -/obj/item/hand_labeler, -/obj/machinery/keycard_auth/directional/north, -/turf/open/floor/carpet/blue, -/area/command/heads_quarters/hop) -"puH" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"puJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"puW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"pve" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/hand_tele, -/obj/structure/mirror/directional/west, -/obj/machinery/light/directional/south, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"pvi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"pvu" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/recharger{ - pixel_x = -3 - }, -/obj/structure/cable, -/obj/item/toy/figure/rd{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp/rd{ - pixel_x = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"pvR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"pwa" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"pwg" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel, -/area/command/bridge) -"pwp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"pwv" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plastic, -/area/security/prison) -"pwz" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"pwC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"pwM" = ( -/obj/structure/table, -/obj/machinery/computer/security/telescreen/turbine{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"pwS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/machinery/light/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pwX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"pxv" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"pxE" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"pxR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"pyi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/office) -"pyo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"pyt" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pyE" = ( -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/mop, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"pyF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"pyM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"pzX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"pAH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"pAP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pBc" = ( -/obj/structure/table, -/obj/item/paper_bin/construction{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler, -/obj/machinery/light/small/directional/south, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/library) -"pBd" = ( -/obj/structure/displaycase/trophy, -/obj/structure/window/reinforced, -/turf/open/floor/carpet/green, -/area/service/library) -"pBr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"pBs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"pBO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"pBQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/transit_tube/station/reverse, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/command/bridge) -"pCa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pCq" = ( -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"pCB" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_4"; - name = "Cabin 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"pCL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"pCV" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"pDe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/central) -"pDf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"pDk" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/fore) -"pDn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Atrium" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"pDt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"pDu" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"pDF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"pDR" = ( -/turf/closed/wall/rust, -/area/cargo/miningoffice) -"pDW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pDX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Cabin_4Privacy"; - name = "Cabin 4 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pEg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pEs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pEt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"pEM" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pES" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/obj/machinery/bounty_board/directional/west, -/turf/open/floor/plasteel, -/area/command/bridge) -"pET" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel) -"pEX" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division"; - req_one_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/science/research) -"pFa" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/detective, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/carpet/green, -/area/security/detectives_office) -"pFx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Foyer" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"pFC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holosign/barrier/atmos, -/turf/open/floor/plating/airless, -/area/maintenance/space_hut/plasmaman) -"pFG" = ( -/obj/machinery/light/small/directional/east, -/obj/structure/dresser, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"pGA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"pGM" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Tech Storage"; - dir = 1; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"pGW" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"pHm" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"pHG" = ( -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"pHJ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/fire{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"pHM" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"pHZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/library) -"pIj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"pIm" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"pIq" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"pIy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/machinery/status_display/ai/directional/south, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"pIU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"pJg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"pJt" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"pJG" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pJH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pJN" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light_switch/directional/south, -/obj/structure/reagent_dispensers/peppertank/directional/west, -/obj/machinery/camera{ - c_tag = "Cargo Checkpoint Post"; - dir = 1; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"pKa" = ( -/turf/closed/wall/r_wall/rust, -/area/command/heads_quarters/cmo) -"pKb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"pKd" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"pKi" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/engineering/atmos) -"pKt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"pKx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"pLA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"pLV" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/storage/box/lights/bulbs, -/obj/machinery/firealarm/directional/south, -/obj/item/tank/internals/oxygen/red, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"pLX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"pLY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"pMi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"pMx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Plasma to Incinerator" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"pMy" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/office) -"pMS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"pNq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/meter, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/execution/education) -"pNx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"pNI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"pOl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"pOr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pOu" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/exoscanner, -/turf/open/space/basic, -/area/space/nearstation) -"pOK" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pPi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/obj/machinery/camera{ - c_tag = "Xenobiology Closet"; - dir = 1; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"pPr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"pPA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"pPX" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"pQa" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"pQg" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/cargo/warehouse) -"pQs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"pQz" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/commons/locker) -"pQG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"pQO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = 24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pQY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pRu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"pRA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - pressure_checks = 0 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"pRJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"pRU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pRW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"pSf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pSl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"pSo" = ( -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_x = 32 - }, -/obj/machinery/power/smes/engineering, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/engineering/main) -"pSE" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"pSH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"pSS" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/break_room) -"pTf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"pTm" = ( -/obj/machinery/power/smes, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"pTt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"pTz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/camera{ - c_tag = "Supermatter Cooler"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/firealarm/directional/east, -/obj/structure/cable, -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pTF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4; - external_pressure_bound = 140; - pressure_checks = 0 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"pTY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"pUp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"pUA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel) -"pUD" = ( -/obj/machinery/flasher/directional/north{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Turrets"; - name = "upload camera"; - network = list("aiupload") - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"pUK" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = 28 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI Core Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"pUN" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"pUO" = ( -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"pUR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"pUY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"pVp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"pVL" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"pVQ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"pWF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/closet/secure_closet/injection{ - name = "Justice Injections" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/light_switch/directional/north, -/obj/machinery/button/door/directional/west{ - id = "justiceblast"; - name = "Justice Vent Toggle"; - pixel_y = 8; - req_access_txt = "3" - }, -/obj/machinery/button/door/directional/west{ - id = "justiceshutter"; - name = "Justice Shutter Control"; - pixel_y = -8; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"pWJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"pWK" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/crowbar/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"pXb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"pXm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"pXO" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/tank/internals/emergency_oxygen, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pXV" = ( -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"pYz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"pYF" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Mining Dock"; - dir = 1; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"pYO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"pZk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/electrolyzer, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"pZn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pZw" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engineaccess"; - name = "Engine Access Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pZN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qab" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/wood, -/area/commons/locker) -"qag" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"qaj" = ( -/obj/item/reagent_containers/food/drinks/flask/gold{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"qav" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"qax" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"qaA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/processing) -"qaG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qaY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Hallway" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"qbn" = ( -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/item/exodrone{ - pixel_y = 8 - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qbv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"qbM" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 1 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"qcg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/grunge{ - name = "Recreation Area" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"qci" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"qcF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qdo" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qdK" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall, -/area/maintenance/aft) -"qea" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table_frame, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"qek" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"qeX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/item/clipboard, -/obj/item/circuitboard/machine/paystand, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"qeZ" = ( -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"qfj" = ( -/obj/effect/turf_decal/caution{ - pixel_y = -12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qfo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qfq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"qfL" = ( -/obj/machinery/light/small/directional/east, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/fore) -"qfR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qgh" = ( -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_y = -3 - }, -/turf/open/floor/plating/rust, -/area/maintenance/port/aft) -"qgx" = ( -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/space/nearstation) -"qgO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"qgP" = ( -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = -4 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qgQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard/aft) -"qgX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qhd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/megaphone{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"qhk" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "49" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/maintenance/department/electrical) -"qho" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"qhp" = ( -/obj/structure/table, -/obj/item/toy/cards/deck{ - pixel_x = -9 - }, -/obj/item/storage/photo_album/prison{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"qhB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"qhO" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/security/prison) -"qhT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"qhU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qif" = ( -/obj/structure/chair, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"qil" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/janitor, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"qin" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"qip" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light/directional/west, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"qiu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qiQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"qiT" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/research/explosive_compressor, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"qjw" = ( -/obj/structure/filingcabinet/employment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/button/door/directional/east{ - id = "lawyer_shutters"; - name = "Law Office Shutters Toggle"; - req_access_txt = "38" - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"qku" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"qkL" = ( -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"qkT" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/cable, -/turf/open/floor/circuit/red, -/area/engineering/main) -"qld" = ( -/obj/machinery/door/airlock/grunge{ - name = "Art Cabinet" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"qlf" = ( -/obj/machinery/firealarm/directional/east, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/closet/crate{ - name = "spare parts" - }, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"qlh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"qlk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"qlH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"qlI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qlU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/wrapping_paper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/stack/wrapping_paper{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/light_switch/directional/north, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"qmV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qmX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/binary/pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"qnf" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/sign/poster/contraband/smoke{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"qnv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"qoa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"qov" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qoB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"qoD" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/oxygen/yellow, -/obj/machinery/light/directional/south, -/obj/machinery/requests_console/directional/south{ - department = "Mining"; - name = "Mining Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"qoJ" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"qoR" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall/rust, -/area/engineering/supermatter) -"qpf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"qpi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qps" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/atmospherics/components/binary/pump/on/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"qpy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qpz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qqe" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_1"; - name = "Cabin 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"qqu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"qra" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"qre" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"qsb" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/storage/eva) -"qsi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"qsj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qsn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/smartfridge/organ, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"qsG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"qsI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"qtb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"qtG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"qtT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"quq" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/camera{ - c_tag = "Autopsy Room"; - dir = 1; - name = "detective camera" - }, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/start/detective, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"qur" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"quv" = ( -/obj/item/trash/candy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"quw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"quC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"quF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"quQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "prisonblast"; - name = "Prison Blast Door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"qvb" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/backpack/satchel/eng, -/obj/item/wirecutters, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qvp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qvq" = ( -/obj/structure/flora/rock, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"qvt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"qvw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qvG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/light_switch/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"qvH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater Secondary"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"qvM" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"qvZ" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"qwd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"qwx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"qwV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"qxd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/engineering/main) -"qxe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"qxq" = ( -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"qxr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/window/southleft{ - name = "Cargo Disposal"; - req_access_txt = "50" - }, -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "mail belt"; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"qxV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Freight Mining Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"qye" = ( -/obj/machinery/conveyor{ - id = "garbage" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"qys" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"qyy" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 5"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/engine, -/area/science/xenobiology) -"qyZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/lawoffice) -"qzL" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"qAn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Captain's Tactical Relocation"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"qAu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qAG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/office) -"qCa" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"qCn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qCr" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"qCt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"qCw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"qCF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"qDp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qDM" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/security_unit/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door/directional/east{ - id = "Unit_1Privacy"; - name = "Unit 1 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_1"; - name = "Unit 1 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"qEo" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/service/chapel) -"qES" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"qEU" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"qEV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Trash Chute"; - dir = 1; - name = "service camera" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"qEW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"qFo" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/bounty_board/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"qFp" = ( -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Incinerator Construction Area"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"qFu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"qFx" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"qFC" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qFL" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qFQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qFX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qGh" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2 - }, -/obj/item/healthanalyzer, -/obj/machinery/requests_console/directional/north{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"qGi" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qGy" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"qGC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/primary/aft) -"qGO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/aicard{ - pixel_x = 4 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/machinery/light/directional/north, -/obj/machinery/camera{ - c_tag = "Bridge Control Pit"; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qGP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qGU" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qHd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"qHe" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/command/storage/eva) -"qHv" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"qHD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qHG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"qIt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Atmospherics Port Tanks"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qIv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qIF" = ( -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/nineteen_nineteen, -/obj/structure/table/rolling, -/obj/item/storage/crayons{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/storage/crayons{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = 13; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/item/pen{ - pixel_x = 11; - pixel_y = 4 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"qJc" = ( -/obj/effect/turf_decal/box, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qJj" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qJk" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qJq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel, -/area/security/warden) -"qJs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/space/basic, -/area/space/nearstation) -"qJD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qKa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/security/prison) -"qKf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/holopad/secure, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"qKy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"qKB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"qKO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/off{ - dir = 4; - name = "O2 To Pure" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qKT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "Law Office Shutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"qKY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"qLt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"qLu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qLv" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"qLE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"qLN" = ( -/obj/structure/sign/departments/botany, -/turf/closed/wall, -/area/service/hydroponics) -"qLP" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"qLV" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qMa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qMy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/machinery/camera{ - c_tag = "Arrivals Dock"; - name = "shuttle camera" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qMJ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"qMR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Cabinet" - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"qMS" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"qNw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"qNE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"qOj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/displaycase/labcage, -/obj/effect/turf_decal/box, -/obj/machinery/light/directional/south, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"qOk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"qPt" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/directional/north, -/obj/machinery/requests_console/directional/north{ - department = "Xenobiology"; - departmentType = 2; - name = "Xenobiology Requests Console"; - pixel_x = -32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qPF" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"qPH" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/command/nuke_storage) -"qPK" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qPV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"qQr" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qQu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qQw" = ( -/obj/machinery/newscaster/security_unit/directional/west, -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"qQz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/starboard/aft) -"qQN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qQP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = 23; - pixel_y = 7 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = 23; - pixel_y = -6 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"qQQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"qRl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/science/research) -"qRs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 9; - id = "QMLoad"; - name = "off ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"qRu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"qRF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qRS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qSu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/engineering/main) -"qSw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"qSA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qSF" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/gravity_generator) -"qSI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"qTq" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"qUA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"qUF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"qUM" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"qUO" = ( -/obj/machinery/airalarm/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"qVB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"qVM" = ( -/obj/structure/lattice, -/obj/structure/girder/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"qVS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"qWr" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"qXt" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"qXH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer"; - dir = 4; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/machinery/button/door/directional/west{ - id = "gravity"; - name = "Gravity Generator Lockdown"; - req_one_access_txt = "19;23" - }, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"qYi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "Bridge Access"; - dir = 8; - name = "command camera" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"qYS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qYZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"qZb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/locker) -"qZi" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"qZU" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"rai" = ( -/obj/structure/chair/sofa/right, -/obj/structure/sign/poster/official/love_ian{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"rar" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Cooling Loop Bypass" - }, -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/engineering/main) -"raA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"raL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"raM" = ( -/obj/machinery/light/directional/west, -/obj/machinery/status_display/ai/directional/west, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"rbd" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"rbt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/warden) -"rbu" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics) -"rbD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"rbF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"rbR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"rbY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"rcj" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/bounty_board/directional/south{ - pixel_x = 32 - }, -/obj/machinery/rnd/bepis, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rcm" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"rcu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"rcx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"rcA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"rcC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"rdj" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"rdu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"rdC" = ( -/obj/structure/table/glass, -/obj/item/folder/white, -/obj/item/folder/white, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/storage/box/syringes{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/beakers{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/noticeboard/directional/south, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"rdH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"rdK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/lawyer, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"rdO" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall/rust, -/area/maintenance/port) -"ref" = ( -/obj/machinery/door/poddoor/shutters{ - id = "coldroom"; - name = "Coldroom Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"rel" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rex" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Storage"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"rez" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"reE" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"reJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"rfl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rfq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/trash/chips, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"rfJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table_frame, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"rfL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rfS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"rfZ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"rgb" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/box/hug/medical{ - pixel_y = 4 - }, -/obj/item/crowbar, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"rgj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rgn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"rgQ" = ( -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"rgX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/radio/intercom/directional/north{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "prison intercom"; - prison_radio = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"rhk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"rhC" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/sheet/glass, -/turf/open/space/basic, -/area/solars/port/aft) -"rhG" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/surgical, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/east, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"rhW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"rhY" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"rhZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ria" = ( -/turf/closed/wall, -/area/cargo/warehouse) -"rif" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"riq" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"riz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"riB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"riE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"riF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/main) -"riG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/command/teleporter) -"rjm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rjx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Satellite Transit Access"; - dir = 4; - name = "satellite camera"; - network = list("minisat") - }, -/obj/machinery/button/door/directional/west{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rjK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_access_txt = "10" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rkm" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"rkn" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"rko" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"rkz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rkU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"rld" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/maintenance/port/fore) -"rlr" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/mirror/directional/east, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"rlv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/engineering/main) -"rlW" = ( -/obj/structure/rack, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/storage/tech) -"rmc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/stripes/line, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"rmd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/explosives/alt{ - pixel_x = -32 - }, -/obj/structure/table, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"rmr" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rmu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"rmx" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector"; - req_one_access_txt = "10;24;5" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"rmH" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/bikehorn/rubberducky, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"rmJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"rmQ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/structure/grille/broken, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/flashlight, -/obj/item/flashlight/flare, -/obj/machinery/light/small/directional/west, -/obj/item/relic, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rmW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rmY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/command/teleporter) -"rnf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"rnk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/library) -"rnA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/cargo/warehouse) -"rnG" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"rnV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rnW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/port/aft) -"rnY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/item/screwdriver{ - pixel_y = 18 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"rob" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"roj" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"rok" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/table, -/obj/item/hfr_box/core, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/obj/item/hfr_box/corner, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"rou" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Kitchen" - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Kitchen Delivery Access"; - req_access_txt = "28" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"row" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"roG" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"rph" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rpo" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet{ - name = "supply locker" - }, -/obj/item/clothing/shoes/sneakers/brown, -/obj/item/clothing/under/rank/cargo/tech, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rpq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"rps" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"rpx" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera{ - c_tag = "Morgue"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"rpS" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/gibber, -/obj/machinery/camera{ - c_tag = "Kitchen Cold Room"; - name = "diner camera" - }, -/obj/machinery/airalarm/directional/north, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"rqT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"rqY" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/command/heads_quarters/hop) -"rra" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/north, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"rrC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"rrF" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/girder/displaced, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"rrR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"rrS" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"rrU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"rsa" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"rsg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "ce sorting disposal pipe"; - sortType = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rsm" = ( -/obj/structure/closet/crate, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/onion, -/obj/item/food/grown/onion, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"rsn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"rsC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"rtp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Port Hallway Chemistry Desk"; - dir = 8; - name = "port camera" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"rtO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rtR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rtZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "medbay_front_door"; - name = "Medbay Doors Toggle"; - normaldoorcontrol = 1; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"ruk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ruM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ruR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"rvw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rvF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rwo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engineering/atmos) -"rwI" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"rwJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ryM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"ryU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"rzi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"rzv" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"rzN" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/structure/window/plasma/reinforced/spawner/west, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/supermatter) -"rAp" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/item/photo/old, -/turf/open/floor/plasteel, -/area/security/prison) -"rAr" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/obj/machinery/firealarm/directional/west, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rAF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera{ - c_tag = "Auxiliary Base Construction"; - dir = 8; - name = "cargo camera"; - network = list("ss13","qm") - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"rAN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/arrows, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rAS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=Arrivals"; - location = "Custodial"; - name = "custodial navigation beacon" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/starboard) -"rAU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"rBi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"rBq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"rBu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/science/xenobiology) -"rBK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the test chamber."; - dir = 8; - layer = 4; - name = "Test Chamber Telescreen"; - network = list("ordnance"); - pixel_x = 30 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"rBR" = ( -/obj/structure/sink{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/firealarm/directional/north{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"rBS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "AI Upload Transit"; - dir = 8; - name = "command camera" - }, -/obj/machinery/button/door/directional/east{ - id = "transittube"; - name = "Transit Tube Lockdown Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"rCb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"rCp" = ( -/obj/structure/girder/displaced, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters Toggle"; - req_one_access_txt = "32;47;48" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"rCA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes/cigars/havana{ - pixel_y = 5 - }, -/obj/item/crowbar/red, -/obj/item/lighter{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/machinery/light/directional/east, -/obj/item/storage/secure/safe/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"rDe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stack/rods/fifty{ - pixel_y = 5 - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/requests_console/directional/east{ - department = "EVA"; - name = "EVA Requests Console" - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rDh" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"rDl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rDB" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"rDC" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/engineering/atmos) -"rDL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"rEc" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rEl" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rEG" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - desc = "Used to grind things up into raw materials and liquids."; - pixel_y = 5 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/button/door/directional/west{ - id = "virologysurgery"; - name = "Virology Privacy Toggle"; - pixel_y = 6; - req_access_txt = "39" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"rES" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_3"; - name = "Cabin 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"rET" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"rFa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"rFc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_y = 2 - }, -/obj/item/flashlight/flare, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"rFe" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"rFg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rFk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/light/directional/west, -/turf/open/floor/engine, -/area/engineering/main) -"rFl" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"rFn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"rFD" = ( -/obj/structure/sign/departments/security{ - pixel_y = -32 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rGo" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard) -"rHd" = ( -/obj/machinery/power/tracker, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"rHe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"rHf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"rHj" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"rHn" = ( -/obj/structure/chair/pew{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"rHZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/sign/warning/securearea{ - name = "EMERGENCY STORAGE"; - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"rIf" = ( -/obj/machinery/door/window/brigdoor/westright{ - dir = 4; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/item/ai_module/core/freeformcore{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/ai_module/core/full/custom, -/obj/item/ai_module/core/full/asimov{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/flasher/directional/west{ - id = "AI"; - name = "Meatbag Pacifier" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"rIt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"rIH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rIN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"rJb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/power/emitter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rJf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"rJn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"rJz" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rJG" = ( -/turf/closed/wall, -/area/command/heads_quarters/rd) -"rJI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"rJU" = ( -/turf/closed/wall/rust, -/area/engineering/atmos) -"rKb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"rKf" = ( -/obj/item/target, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"rKo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"rKr" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"rKt" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"rKN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"rLk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"rLA" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rLF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"rLN" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/smes{ - charge = 5e+006; - name = "ai power storage unit" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"rLU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plating, -/area/maintenance/port) -"rMc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rMv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"rMG" = ( -/turf/closed/wall/rust, -/area/command/heads_quarters/hos) -"rMN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/carpet/green, -/area/service/library) -"rMX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rNg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rNC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rOe" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"rOO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/south, -/obj/machinery/vending/medical, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"rPb" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"rPt" = ( -/turf/closed/wall/r_wall/rust, -/area/command/heads_quarters/captain) -"rPu" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"rPI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"rQf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"rQj" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"rQn" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"rQB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light_switch/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/starboard/fore) -"rQX" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"rRw" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"rRC" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/south, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"rRF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/detective, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/detectives_office) -"rRG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"rSs" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"rSK" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/machinery/airalarm/directional/south, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Vacant Commissary"; - dir = 8; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"rSS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/built/directional/north, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"rTw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rTA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"rTB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"rTV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"rUc" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rUg" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/supermatter) -"rUy" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"rUR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"rVr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"rVQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"rWe" = ( -/obj/structure/table/wood/fancy, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen, -/obj/machinery/requests_console/directional/south{ - department = "Chapel"; - departmentType = 2; - name = "Chapel Requests Console" - }, -/turf/open/floor/wood, -/area/service/chapel/office) -"rWj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/meter, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rWq" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rWz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"rWU" = ( -/turf/closed/wall, -/area/service/theater) -"rWZ" = ( -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/spider/stickyweb, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"rXb" = ( -/obj/machinery/recharger{ - pixel_x = -7 - }, -/obj/machinery/recharger{ - pixel_x = 7 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/toy/figure/warden, -/obj/structure/table, -/obj/item/radio/intercom/directional/north{ - pixel_x = 32 - }, -/obj/machinery/button/door/directional/north{ - id = "sidearmory"; - name = "Armoury Shutter Toggle"; - pixel_x = -8; - req_access_txt = "3" - }, -/obj/machinery/button/door/directional/north{ - id = "prisonblast"; - name = "Prison Lockdown"; - pixel_x = 8; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"rXk" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"rXs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rXt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "disposals sorting disposal pipe"; - sortType = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rYu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"rYN" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Genetics"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"rZe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/library) -"rZn" = ( -/obj/structure/bed/dogbed/ian, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/mob/living/simple_animal/pet/dog/corgi/ian{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"rZr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"rZF" = ( -/obj/machinery/door/airlock/external{ - name = "External Airlock"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"rZL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"rZN" = ( -/turf/closed/wall/r_wall/rust, -/area/ai_monitored/storage/satellite) -"sai" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/warden) -"sar" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher/directional/west{ - id = "Cell 1"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"sav" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering"; - name = "navigation beacon (Engineering Delivery)" - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Engineering Delivery Access"; - req_one_access_txt = "10;24" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Blast Doors" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"saK" = ( -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/cargo/warehouse) -"sbe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"sbk" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"sbs" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/cook, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"sbB" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sbC" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel, -/area/cargo/storage) -"sbG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"sbL" = ( -/turf/closed/wall/rust, -/area/medical/exam_room) -"sbN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sbR" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall, -/area/maintenance/port) -"scf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"scm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Starboard Hallway Kitchen Counter"; - dir = 4; - name = "starboard camera" - }, -/obj/structure/sign/directions/evac{ - pixel_y = 24 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"sco" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"scq" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"scy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/chair/office, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"scA" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"scJ" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;101" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"scK" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"scR" = ( -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"scV" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/color/black, -/obj/item/crowbar/red, -/obj/item/flashlight/seclite, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"sdw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/melee/baseball_bat{ - desc = "A staple of security force interrogations."; - icon_state = "baseball_bat_metal"; - name = "kneecapper" - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"sdE" = ( -/obj/machinery/chem_heater/withbuffer{ - pixel_x = 6 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"sdL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/obj/structure/chair/office, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"sdO" = ( -/obj/structure/table, -/obj/machinery/light/small/directional/east, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/suit/armor/vest, -/obj/item/clothing/neck/stethoscope, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"sdR" = ( -/obj/item/beacon, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sdU" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/book/manual/hydroponics_pod_people{ - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/reagent_containers/dropper, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Hydroponics Pen"; - dir = 4; - name = "hydroponics camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"sdY" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "packageSort2"; - name = "mail belt" - }, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"sdZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"seh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"sei" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sej" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"sel" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -5 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = -5 - }, -/obj/machinery/vending/wallmed/directional/north{ - pixel_x = -32 - }, -/obj/machinery/light/directional/north, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"sen" = ( -/obj/structure/grille, -/obj/item/shard, -/turf/open/floor/plating, -/area/cargo/warehouse) -"set" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"seL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/north, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"seQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/toy/figure/geneticist{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"sfh" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/box/red, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"sfp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/mime, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"sfI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"sfT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"sgc" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/structure/noticeboard/directional/north, -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - name = "command camera" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"sgh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Operating Theatre Secondary"; - dir = 1; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"sgm" = ( -/obj/structure/dresser, -/turf/open/floor/wood, -/area/commons/locker) -"sgE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sgT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/sign/warning/vacuum{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"she" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"shg" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/locker) -"shz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"sia" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"sim" = ( -/turf/closed/wall, -/area/service/library) -"siC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"siG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"siT" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"sjJ" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"sjL" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/stamp/cmo{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/machinery/light_switch/directional/south{ - pixel_x = -8 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"sjS" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/engine, -/area/engineering/main) -"ski" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"sko" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"sky" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"skB" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"skO" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"sln" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"slz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"slK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"smG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"smV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/showroomfloor, -/area/science/genetics) -"sns" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/requests_console/directional/north{ - department = "Medbay"; - departmentType = 1; - name = "Medbay Requests Console" - }, -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/medical/surgery) -"snB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"snF" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "Privacy Shutters Toggle"; - pixel_x = -24; - pixel_y = -24 - }, -/obj/machinery/button/door{ - id = "emmd"; - name = "Medical Lockdown Toggle"; - pixel_x = -40; - pixel_y = -24 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"snK" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"snP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"soq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"sox" = ( -/turf/closed/wall/rust, -/area/service/kitchen) -"soP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"spr" = ( -/obj/machinery/light/directional/south, -/turf/open/space, -/area/space/nearstation) -"spN" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sqr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/bot, -/obj/machinery/light/directional/west, -/obj/machinery/airalarm/directional/west, -/obj/machinery/power/shieldwallgen, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"sqC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"sqO" = ( -/obj/structure/rack, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/storage/tech) -"sqU" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/security/prison) -"sra" = ( -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "medbay_front_door"; - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"srf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/virology{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"srN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ssb" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"ssy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"ssU" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"stp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"stx" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/commons/storage/primary) -"stL" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"stO" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"suc" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"suu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/clothing/under/rank/civilian/lawyer/black{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/rank/civilian/lawyer/black, -/obj/item/clothing/neck/tie/black{ - pixel_x = 6 - }, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/mask/animal/rat/jackal{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/animal/rat/jackal, -/obj/structure/spider/stickyweb, -/obj/machinery/button/door/directional/west{ - id = "bank"; - name = "Bank Vault Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"suN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"svc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"svh" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_2"; - name = "Hallway Hatch" - }, -/turf/open/floor/plating, -/area/service/kitchen) -"svC" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"svG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = -23; - pixel_y = 24 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"svR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"svU" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/service/bar) -"svX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"swc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/book/bible{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/book/bible{ - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/altar_of_gods, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"swd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"swn" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/maintenance/port/aft) -"swx" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"sxA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sxI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"sxJ" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"syg" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"syk" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/carrot, -/turf/open/floor/grass, -/area/security/prison) -"syw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"syD" = ( -/obj/machinery/door/airlock/medical{ - id_tag = "Shower_2"; - name = "Shower 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/toilet/restrooms) -"syK" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/main) -"szb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "brigcelldoor"; - name = "Cell Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"szy" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"szA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"szD" = ( -/obj/structure/cable, -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"szN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/firealarm/directional/west, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"szW" = ( -/obj/machinery/door/airlock/external{ - name = "Prison External Airlock"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"sAD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/security{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"sAP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"sBa" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"sBj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/structure/reagent_dispensers/servingdish, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sBB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"sBG" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/office) -"sBZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"sCf" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Mix"; - dir = 4; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"sCo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/computer/teleporter{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door/directional/east{ - id = "teleshutter"; - name = "Teleporter Shutter Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"sCu" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"sCP" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/cargo/miningoffice) -"sDb" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/stock_parts/subspace/analyzer{ - desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; - pixel_x = 6; - pixel_y = 4 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/space) -"sDs" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/toolbox/emergency, -/obj/item/wirerod, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"sDH" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner, -/obj/item/restraints/handcuffs, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel, -/area/security/processing) -"sEg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"sEp" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/space/nearstation) -"sEt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/retaliate/ghost, -/turf/open/floor/wood, -/area/maintenance/starboard/fore) -"sEI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"sEM" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"sET" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sGb" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"sGg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Xenobiology Labs"; - dir = 4; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/structure/closet/secure_closet/cytology, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"sGl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"sGH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/electropack, -/obj/item/assembly/signaler{ - pixel_x = 6 - }, -/obj/effect/turf_decal/bot, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"sGL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light/small/directional/west, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_y = 5 - }, -/obj/item/clothing/under/color/grey, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"sHb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"sHA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 4 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"sIq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sIM" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/dresser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"sIP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/main) -"sIT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal/incinerator) -"sJG" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/oil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/the_griffin{ - pixel_y = 32 - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"sJL" = ( -/obj/effect/turf_decal/loading_area{ - pixel_y = -5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"sKj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/fore) -"sKy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"sKH" = ( -/obj/effect/turf_decal/arrows/white, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"sKK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"sKY" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"sLg" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"sLw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"sLz" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sLF" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage"; - name = "trash belt" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/recycler, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"sLL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"sLT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/mob/living/simple_animal/bot/cleanbot/medbay, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"sMk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sMr" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 2"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"sMz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sMB" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"sMD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sMR" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Filter" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"sNr" = ( -/obj/machinery/firealarm/directional/west, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"sNR" = ( -/obj/machinery/power/turbine{ - dir = 4; - luminosity = 2 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"sNV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"sNY" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/toy/figure/bartender{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/rag, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"sOk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel, -/area/security/prison) -"sOv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"sOO" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/medical/virology) -"sPa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"sPO" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom/directional/west, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"sQs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"sQD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Prison Kitchen" - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sQQ" = ( -/turf/closed/wall/rust, -/area/engineering/storage/tech) -"sRc" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/departments/restroom{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"sRi" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, -/turf/open/space/basic, -/area/space/nearstation) -"sRj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"sRn" = ( -/obj/machinery/light/directional/east, -/obj/structure/cable, -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sRp" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"sRz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/remains/human, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/mob/living/simple_animal/hostile/jungle/mook{ - environment_smash = 0; - name = "deformed creature" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"sRA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/cartridge/engineering{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/cartridge/engineering{ - pixel_x = 8 - }, -/obj/item/cartridge/atmos{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/folder, -/obj/item/stamp/ce, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"sRM" = ( -/obj/machinery/gateway/centerstation, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/command/gateway) -"sSc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sSi" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/entertainment/directional/south, -/obj/structure/reagent_dispensers/peppertank/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"sSm" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/north, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/server) -"sSC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"sSF" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"sTh" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard/fore) -"sTQ" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sTS" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/north, -/obj/item/clothing/mask/russian_balaclava, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"sUc" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/machinery/camera{ - c_tag = "Chemistry"; - dir = 1; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/item/radio/intercom/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/pharmacy) -"sUu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sUB" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating/airless, -/area/engineering/main) -"sVj" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/atmos) -"sVn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"sVH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"sWe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sWr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"sWY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"sXv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"sYg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"sYQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sZj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"sZk" = ( -/obj/item/radio/intercom/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"sZq" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"sZQ" = ( -/obj/structure/dresser, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"sZW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"taq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"tas" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"taL" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"taM" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"taQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tbg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tbw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tbB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/security{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"tbJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/obj/machinery/camera{ - c_tag = "Telecomms Monitoring"; - dir = 4; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/obj/machinery/requests_console/directional/west{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"tbU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tci" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"tcq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"tcG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"tdH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tdW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"tdY" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/item/stack/rods, -/turf/open/floor/carpet/green, -/area/cargo/warehouse) -"tea" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"tef" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"tew" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"teL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tfm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"tfu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"tfC" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"tfL" = ( -/obj/structure/sign/departments/xenobio, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"tfR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tfS" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/mirror/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"tgp" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall, -/area/command/bridge) -"tgv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix to Ports" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tgK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"tgU" = ( -/obj/structure/flora/rock/pile{ - icon_state = "lavarocks2" - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"thp" = ( -/turf/closed/wall/rust, -/area/service/library) -"thr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/warehouse) -"thz" = ( -/obj/machinery/door/airlock/maintenance{ - name = "research lab maintenance"; - req_one_access_txt = "7;29" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"thE" = ( -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"thU" = ( -/mob/living/simple_animal/hostile/asteroid/goliath, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"tik" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/grass, -/area/service/chapel) -"tiq" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"tiN" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/structure/noticeboard/directional/east, -/obj/item/paper/monitorkey, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 8; - name = "engineering camera"; - network = list("ss13","engine") - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"tiX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"tje" = ( -/obj/structure/sign/warning/enginesafety, -/turf/closed/wall/r_wall, -/area/engineering/main) -"tjl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tjp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"tjq" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"tkg" = ( -/obj/structure/weightmachine/weightlifter, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"tkl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"tkp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tky" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"tkH" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tkL" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"tlv" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"tlS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"tlV" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/radio/intercom/directional/north, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"tmg" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "emmd"; - name = "Emergency Medical Lockdown Shutters" - }, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/item/toy/figure/md{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"tmn" = ( -/obj/machinery/door/window/westright{ - name = "Waste Door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"tmu" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tnh" = ( -/obj/machinery/suit_storage_unit/captain, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"tnC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"tnG" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"tnH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/ai_monitored/security/armory) -"tnI" = ( -/obj/structure/table, -/obj/item/storage/bag/tray/cafeteria, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"tnS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chemistry South"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"tof" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"tog" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/office) -"toh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"ton" = ( -/obj/machinery/light/small/directional/north, -/obj/structure/table/optable{ - name = "Forensics Operating Table" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"toC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"toK" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security Office Lockers" - }, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/main) -"toU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"toV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Hydroponics Lockers"; - dir = 8; - name = "hydroponics camera" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/requests_console/directional/east{ - department = "Hydroponics"; - departmentType = 2; - name = "Hydroponics Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"toZ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"tpk" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/security/main) -"tpr" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"tpx" = ( -/obj/machinery/computer/security/labor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/north{ - pixel_x = -7 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"tpU" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/storage/crayons, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"tqo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"tqQ" = ( -/obj/item/radio/intercom/directional/west, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat_interior) -"tqT" = ( -/obj/structure/flora/junglebush, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/light/directional/west, -/turf/open/floor/grass, -/area/medical/psychology) -"tsd" = ( -/obj/machinery/door/poddoor/shutters{ - id = "custodialwagon"; - name = "Custodial Bay" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"tsf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"tsk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"tsn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"tsy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"tsP" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"tsV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"tsW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/machinery/light/directional/west, -/obj/item/radio/intercom/directional/west, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tth" = ( -/turf/closed/wall, -/area/engineering/atmos) -"tto" = ( -/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"ttz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"ttO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ttR" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"ttY" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"tuj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"tuo" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/noticeboard/directional/south, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"tuA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/science/research) -"tuD" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/machinery/requests_console/directional/east{ - department = "Pharmacy"; - departmentType = 2; - name = "Pharmacy Requests Console"; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"tuH" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/backpack{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/backpack, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"tuL" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel) -"tvd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"tvf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/directional/south, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"tvj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/atmos) -"tvl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/port) -"tvx" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"tvC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tvH" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/engineering/atmos) -"tvJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/structure/noticeboard/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/storage/toolbox/electrical, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"tvO" = ( -/obj/structure/chair/sofa/left{ - color = "#c45c57"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, -/obj/machinery/camera{ - c_tag = "Atrium Booths"; - dir = 4; - name = "diner camera" - }, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"tvT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tvU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"twl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"txm" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"txu" = ( -/obj/structure/chair/pew/left{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel) -"txC" = ( -/obj/machinery/door/airlock/grunge{ - name = "Service Production"; - req_one_access_txt = "22;25;26;28;35;37;38;46;70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"txI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"txL" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/belt/utility{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/head/welding, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tyk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tyC" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"tyE" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/crowbar/red, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/north, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"tzf" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"tzn" = ( -/obj/machinery/door/airlock/maintenance{ - name = "supermatter maintenance"; - req_one_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"tzx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"tzO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"tzU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/remains/human, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"tzV" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/structure/extinguisher_cabinet/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"tAe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/secondary/entry) -"tAI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"tBc" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/noticeboard/directional/east, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"tBQ" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "bar_1"; - name = "Bar Shutter" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/service/bar) -"tBY" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Prison Cafeteria"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"tCd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"tCf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"tCi" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"tCl" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"tCu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot_white, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"tCz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"tDf" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plastic, -/area/security/prison) -"tDn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tDw" = ( -/obj/machinery/firealarm/directional/south, -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"tEb" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) -"tEd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tEA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"tEB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/break_room) -"tER" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"tFc" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"tFu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "maidbay"; - name = "Maid Bay Toggle" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"tFy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"tFL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/structure/noticeboard/directional/north, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/under/syndicate/tacticool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"tFY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"tGj" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"tGO" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"tHi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - name = "security disposal pipe"; - sortType = 7 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tHB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tHI" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/solars/port/fore) -"tHP" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tHT" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"tIc" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/rust, -/area/cargo/miningoffice) -"tIl" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/human/corpse/russian); - name = "Russian Mobster" - }, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"tID" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"tIK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tIM" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/storage/box/disks{ - pixel_y = 5 - }, -/obj/structure/noticeboard/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"tIV" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"tIY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/engine, -/area/engineering/main) -"tJb" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/paper/guides/jobs/medical/morgue, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/pen, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"tJc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tJe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tJs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"tJA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"tJB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/warden) -"tJH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"tJP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"tJV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced, -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/obj/machinery/button/door/directional/north{ - id = "xeno3"; - name = "Creature Cell 3 Toggle"; - pixel_x = 24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"tKe" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tKm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tKx" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/wardrobe/mixed, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"tKT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/obj/machinery/firealarm/directional/east, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/north, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tKZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"tLz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"tLS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tMa" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"tMj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"tMH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"tMM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"tNa" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Security Desk"; - req_one_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tNt" = ( -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"tNu" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"tNI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"tNL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"tNO" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"tNT" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4; - pixel_x = 5 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tNZ" = ( -/turf/closed/wall, -/area/commons/locker) -"tOf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tOm" = ( -/obj/machinery/disposal/delivery_chute{ - desc = "Only the worthy may claim the belt"; - dir = 8; - name = "PubbyStation Memorial Trash Chute" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"tON" = ( -/obj/machinery/modular_computer/console/preset/cargochat/engineering, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tPt" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/bar) -"tPL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"tPZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/bridge) -"tQi" = ( -/obj/machinery/doppler_array/research/science{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"tQw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"tQX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"tQY" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/security/main) -"tRf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Closet"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"tRg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/spider/stickyweb, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"tRk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "captain_escape"; - name = "Tactical Relocation Shutter" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"tRS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tSd" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"tSg" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/stamp/captain{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen/fountain/captain, -/obj/item/radio/intercom/directional/south, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"tSu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/library) -"tSA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tSE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"tSH" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"tSJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/reflector/box/anchored{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tSY" = ( -/obj/machinery/telecomms/server/presets/supply, -/obj/machinery/light/directional/east, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"tTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Freight Mining Airlock" - }, -/obj/structure/barricade/wooden/crude, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"tTn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tTB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/bz, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/button/door/directional/south{ - id = "xeno5"; - name = "Creature Cell 5 Toggle"; - pixel_x = -24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"tUc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tUl" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"tUU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/security/detectives_office) -"tVe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tVl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"tVB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/button/door/directional/north{ - id = "transittube_ai"; - name = "Transit Tube Lockdown Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"tVI" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/cargo/warehouse) -"tVR" = ( -/obj/item/shrapnel/bullet, -/turf/open/floor/plating, -/area/security/prison) -"tVX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Teleporter Access"; - req_one_access_txt = "17;19" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"tWd" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/grass, -/area/service/chapel) -"tWl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"tWy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"tXc" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"tXk" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/briefcase, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"tXn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/machinery/light/directional/west, -/obj/structure/sign/warning/vacuum{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/fore) -"tXA" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm/directional/west, -/obj/machinery/newscaster/security_unit/directional/north, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/under/costume/lobster, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"tXD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - color = "#c45c57"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment/directional/west, -/obj/effect/landmark/start/chaplain, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"tXI" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/barricade/wooden/crude, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"tXO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tXW" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tYm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"tYw" = ( -/turf/closed/wall, -/area/tcommsat/computer) -"tYF" = ( -/obj/effect/landmark/start/exploration, -/obj/structure/spider/stickyweb, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"tYM" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Entrance"; - dir = 1; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"tYN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/circuitboard/machine/exoscanner{ - pixel_y = 3 - }, -/obj/item/circuitboard/machine/exoscanner, -/obj/item/circuitboard/machine/exoscanner{ - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"tYO" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"tYW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"tZe" = ( -/turf/closed/wall, -/area/service/chapel) -"tZH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"uab" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/directions/supply{ - dir = 1; - pixel_y = 24 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"uaj" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/crowbar, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uar" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uay" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"uaH" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 3"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/science/xenobiology) -"uaJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"uaL" = ( -/obj/machinery/light/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Arrivals Shuttle Dock"; - dir = 4; - name = "shuttle camera" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uaP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uaW" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/service/kitchen) -"uaZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"ubr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ubx" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - name = "robotics sorting disposal pipe"; - sortType = 14 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"ucc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"ucC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"ucO" = ( -/turf/closed/wall/r_wall/rust, -/area/engineering/main) -"ucW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"udi" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"udj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"udp" = ( -/obj/structure/closet/secure_closet/security/science, -/obj/item/crowbar, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = 26 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science/research) -"udv" = ( -/obj/machinery/door/poddoor/preopen{ - id = "gravity"; - name = "Gravity Generator Blast Door" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"udx" = ( -/obj/structure/table/wood, -/obj/structure/mirror/directional/west, -/obj/item/food/pie/cream, -/obj/item/clothing/head/lobsterhat, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"uef" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/analyzer{ - pixel_y = 4 - }, -/obj/item/analyzer{ - pixel_x = 2 - }, -/obj/machinery/requests_console/directional/west{ - department = "Tool Storage"; - name = "Tool Storage Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"uen" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"ueE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"ueM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"ufi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"ufq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"ufz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = -24 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Foyer"; - dir = 4; - name = "upload camera"; - network = list("aiupload") - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI Upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -28 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"ufN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Freight Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"ufQ" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"ugA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/pipe_dispenser, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"ugB" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ugS" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"uhd" = ( -/obj/structure/table, -/obj/item/radio{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/radio{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uhf" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uhj" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"uhy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"uhC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"uhO" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"uie" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"uik" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 1; - name = "Medbay Monitor"; - network = list("medical") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/medical) -"uiT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder{ - pixel_x = 5 - }, -/obj/structure/table, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"uiX" = ( -/obj/structure/flora/rock/pile{ - icon_state = "basalt" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"ujx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera{ - c_tag = "Telecomms Server Room"; - dir = 8; - name = "telecomms camera"; - network = list("ss13","tcomms") - }, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"ujD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"ujR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"ujW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/button/door/atmos_test_room_mainvent_1{ - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ujY" = ( -/obj/machinery/light_switch/directional/east, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"ukq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/wood, -/turf/open/floor/plating, -/area/cargo/warehouse) -"uku" = ( -/turf/open/floor/plating/asteroid/airless, -/area/space) -"ukv" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/stack/sheet/rglass{ - amount = 20; - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"ukD" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/book/manual/chef_recipes, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ukN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/turf/open/floor/engine, -/area/engineering/main) -"ulw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"ulN" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 3" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"umb" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch/directional/west{ - pixel_y = -26 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"umc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"ums" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"uns" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"unM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"unY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Tool Storage" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"uou" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"uox" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/item/clipboard, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/blue, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"uoN" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Prisoner Locker" - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/security/prison) -"uoT" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"upa" = ( -/obj/structure/table, -/obj/item/multitool/circuit{ - pixel_x = -8 - }, -/obj/item/multitool/circuit{ - pixel_x = -4 - }, -/obj/item/multitool/circuit, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm/directional/south, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"upp" = ( -/obj/structure/flora/ausbushes/palebush, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plating/asteroid, -/area/maintenance/fore) -"upx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/science/research) -"uqb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/courtroom) -"uqd" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"uqv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"uqO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"uqP" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/grass, -/area/service/chapel) -"urc" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"urC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/port) -"urX" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/engine, -/area/engineering/main) -"usk" = ( -/obj/structure/dresser, -/obj/machinery/light/small/directional/north, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"usm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"usn" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"usI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"usM" = ( -/turf/closed/wall/rust, -/area/command/bridge) -"ute" = ( -/obj/machinery/computer/turbine_computer{ - dir = 4; - id = "incineratorturbine" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"utw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"utB" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"utD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"utE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"utH" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/directional/north, -/obj/machinery/light_switch/directional/north, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uui" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"uuH" = ( -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"uuQ" = ( -/turf/closed/wall, -/area/service/kitchen) -"uvb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"uvi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/command/storage/eva) -"uvl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"uvz" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"uvX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"uwh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/engineering) -"uwB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm/directional/west, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"uwD" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/wall, -/area/service/bar) -"uwS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library) -"uxA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"uxD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"uxJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"uxN" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"uxR" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"uyk" = ( -/obj/machinery/door/airlock/atmos/glass{ - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"uyz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"uyR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/kirbyplants, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uyZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Air to Distro" - }, -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics Distribution Loop"; - dir = 8; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uzc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy"; - req_access_txt = "5; 69" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"uzl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage"; - req_access_txt = "61" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/space) -"uzC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/camera{ - c_tag = "Laser Room Port"; - dir = 1; - name = "laser room camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/engineering/main) -"uzL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Unit_3Privacy"; - name = "Unit 3 Privacy Shutter" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uAg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"uAj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"uAo" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"uAx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Kitchen Cold Room"; - req_access_txt = "28" - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"uAR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"uAU" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/siding/purple/corner, -/turf/open/floor/plasteel/showroomfloor, -/area/science/lab) -"uBb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/conveyor_switch/oneway{ - id = "NTMSLoad2"; - name = "on ramp"; - pixel_x = 8; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"uBc" = ( -/obj/structure/frame/computer{ - anchored = 1; - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"uBm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/library) -"uBI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"uBP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"uBZ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"uCh" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/quarantine, -/obj/machinery/flasher/directional/east{ - id = "AI"; - name = "Meatbag Pacifier"; - pixel_y = -26 - }, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east{ - broadcasting = 1; - frequency = 1447; - name = "Private Channel" - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/turret_protected/ai_upload) -"uCt" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/service/chapel/office) -"uCw" = ( -/obj/structure/plaque/static_plaque/atmos, -/turf/closed/wall/rust, -/area/engineering/atmos) -"uCH" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/computer/piratepad_control/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"uCQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small/directional/east, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/computer/operating{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"uCR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"uDs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - name = "virology sorting disposal pipe"; - sortType = 27 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"uDJ" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"uDO" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"uDV" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/ausbushes/reedbush{ - pixel_y = 5 - }, -/turf/open/floor/grass, -/area/security/prison) -"uEa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uEG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/warden) -"uEH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uEI" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/potato, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"uEM" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"uFB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/locker) -"uFR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uFU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"uGe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uGr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uGx" = ( -/turf/closed/wall/rust, -/area/service/hydroponics) -"uGP" = ( -/obj/structure/sign/departments/security{ - pixel_y = -32 - }, -/obj/structure/flora/grass/jungle/b, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uGZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"uHe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uHl" = ( -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"uHN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"uHR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/vending/drugs, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery) -"uHZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/tcommsat/computer) -"uIj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"uIp" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"uIs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"uJh" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"uJr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"uJt" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm/directional/east, -/obj/machinery/camera{ - c_tag = "Aft Hallway Engineering Venders"; - dir = 8; - name = "aft camera" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uJW" = ( -/obj/item/bedsheet/red, -/obj/structure/bed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/plasteel, -/area/security/prison/safe) -"uKm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"uKy" = ( -/turf/open/floor/engine, -/area/engineering/main) -"uKH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"uKX" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port) -"uLD" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/suit_storage_unit/engine, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uLH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"uLI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/dest_tagger, -/obj/item/dest_tagger, -/obj/machinery/airalarm/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/cargo/sorting) -"uLL" = ( -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/caution/stand_clear, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/mixing/chamber) -"uLS" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Airlock"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uMr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/firealarm/directional/south, -/obj/machinery/light/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"uNl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"uNr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"uNu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"uNA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/engineering/atmos) -"uNB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/hallway/primary/port) -"uNP" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uNQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"uOs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uOG" = ( -/obj/machinery/door/window/southleft{ - name = "Mass Driver Door"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"uOP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"uOW" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/screwdriver{ - pixel_y = 18 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/radio/intercom/directional/south, -/obj/machinery/firealarm/directional/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"uPV" = ( -/obj/structure/table/reinforced, -/obj/machinery/syndicatebomb/training, -/obj/item/wirecutters, -/turf/open/floor/plasteel/dark, -/area/security/main) -"uQa" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"uQc" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uQn" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uQs" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/rust, -/area/maintenance/disposal) -"uQv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"uQB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"uQY" = ( -/obj/structure/closet/crate/medical, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/port) -"uRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"uRK" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/east, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"uRP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"uSp" = ( -/obj/machinery/door/airlock/maintenance{ - name = "xenobiology maintenance"; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard) -"uSL" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"uTd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"uTl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/machinery/skill_station, -/turf/open/floor/plasteel/dark, -/area/service/library) -"uTp" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/machinery/button/door/directional/west{ - id = "Cabin_4Privacy"; - name = "Cabin 4 Privacy Toggle"; - pixel_y = -24 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/commons/locker) -"uTL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"uTO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"uTP" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Cell 6"; - dir = 8; - name = "xenobiology camera"; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small/directional/east, -/turf/open/floor/engine, -/area/science/xenobiology) -"uUx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/box, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"uVc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/safe{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/stack/spacecash/c500{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/storage/belt/bandolier, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"uVC" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"uWd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uWx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uWN" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall/rust, -/area/security/prison) -"uXa" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/rust, -/area/commons/fitness/recreation) -"uXc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/washing_machine, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"uXy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"uXE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"uXO" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Departures Holding Area"; - name = "shuttle camera" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"uYe" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/library) -"uZa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"uZg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"uZu" = ( -/obj/machinery/announcement_system, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"uZY" = ( -/obj/machinery/light/small/directional/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/aft) -"vad" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"vaK" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/photocopier, -/obj/item/newspaper{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/newspaper, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port) -"vaP" = ( -/obj/item/storage/box/chemimp{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/box/trackimp{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/south, -/obj/structure/reagent_dispensers/peppertank/directional/south, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"vaU" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/command/heads_quarters/hos) -"vbp" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"vbD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/structure/table, -/obj/structure/sign/poster/contraband/rebels_unite{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/filled/corner, -/obj/item/flashlight/lamp, -/turf/open/floor/plating/plasma/rust, -/area/maintenance/space_hut/plasmaman) -"vbK" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"vbL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"vbP" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"vbU" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"vcb" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"vcc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"vce" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"vcs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/recharger, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"vcA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"vcO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/flasher/directional/west{ - id = "Cell 4"; - name = "Prisoner Pacifier" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"vdd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vdu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"vdA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/library) -"vdJ" = ( -/obj/machinery/door/poddoor/shutters{ - id = "gatewayshutters"; - name = "Gateway Chamber Shutters" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door/directional/west{ - id = "gatewayshutters"; - name = "Gateway Shutters"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"vdK" = ( -/obj/structure/flora/ausbushes/palebush{ - icon_state = "fullgrass_2" - }, -/obj/structure/flora/grass/jungle{ - icon_state = "grassb5" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"vdS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vea" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/science/misc_lab) -"vee" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"ver" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/engineering_electrical, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"veJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vfe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vfn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vfo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/machinery/exodrone_launcher, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vfG" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/seeds/random{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/seeds/wheat{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/seeds/sugarcane{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/seeds/potato{ - pixel_x = -1; - pixel_y = 1 - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"vfO" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"vfQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"vgr" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chemistry_shutters"; - name = "Chemistry Lobby Shutters" - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/pharmacy) -"vgz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"vgH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"vgP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Departure Shuttle Airlock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"vgT" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "Queue Shutters" - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"vhc" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/effect/turf_decal/delivery, -/obj/item/crowbar, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm/directional/north{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/supply) -"vhk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/engineering/main) -"vhM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/window/eastleft{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"vhR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vij" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"viq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/railing, -/turf/open/space/basic, -/area/space/nearstation) -"viF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/food/donut, -/obj/item/inspector, -/turf/open/floor/plasteel/dark, -/area/security/main) -"viN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"vjc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"vjk" = ( -/obj/machinery/door/airlock/command{ - name = "Gateway"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"vjp" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Gas to Cold Loop" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"vju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"vjy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vki" = ( -/obj/structure/bed, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/obj/machinery/light/directional/east, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"vkJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"vkN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"vkY" = ( -/obj/structure/girder/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"vlS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdprivacy"; - name = "Director's Privacy Blast Door" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"vmb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"vmf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"vmo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"vmq" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/start/clown, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"vmE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"vmU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"vnd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vnk" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engineering/supermatter) -"vnq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light/small/directional/west, -/obj/machinery/meter/atmos/layer4{ - name = "gas flow meter" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"vnv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/light/small/directional/west, -/obj/machinery/light_switch/directional/west, -/obj/item/assembly/prox_sensor{ - desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/wallframe/camera, -/obj/item/screwdriver, -/obj/structure/spider/stickyweb, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"vnx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"vnA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"vnK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"vnQ" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/west, -/obj/machinery/mass_driver{ - dir = 4; - id = "toxinsdriver" - }, -/turf/open/floor/plating, -/area/science/misc_lab) -"vnR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"vnS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/obj/machinery/light_switch/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"voc" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/medical/chemistry) -"voi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 11 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"voS" = ( -/obj/effect/decal/cleanable/blood/gibs/old, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/maintenance/port/fore) -"vpg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"vpn" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/light_switch/directional/east{ - pixel_y = -6 - }, -/obj/machinery/requests_console/directional/north{ - department = "Detective's Office"; - name = "Detective Requests Console" - }, -/obj/machinery/button/door/directional/east{ - id = "detective_shutters"; - name = "Detective's Privacy Toggle"; - pixel_y = 6; - req_access_txt = "4" - }, -/turf/open/floor/wood, -/area/security/detectives_office) -"vqb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"vqk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"vqR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"vqW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vqZ" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vrv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vrw" = ( -/obj/machinery/vendor/exploration, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/plasteel/dark, -/area/maintenance/department/electrical) -"vrU" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/status_display/evac/directional/north, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vsF" = ( -/obj/machinery/light/directional/north, -/obj/effect/spawner/structure/window/hollow/reinforced/middle{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"vsH" = ( -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot_white, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"vte" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"vtp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"vtw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"vtN" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/barsign{ - pixel_y = 32; - req_access = null; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"vtT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"vtW" = ( -/obj/machinery/chem_heater/withbuffer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/button/door/directional/north{ - id = "xeno1"; - name = "Creature Cell 1 Toggle"; - pixel_x = -24; - req_access_txt = "55" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"vup" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/mixer{ - name = "plasma mixer" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/disposal/incinerator) -"vuR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"vuX" = ( -/obj/effect/turf_decal/box/corners, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"vvq" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/lawyer, -/turf/open/floor/carpet/green, -/area/lawoffice) -"vvU" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Hallway" - }, -/obj/structure/sign/departments/engineering{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"vwk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - pixel_y = 29 - }, -/obj/machinery/camera{ - c_tag = "Prison Maintenance"; - dir = 4; - network = list("ss13","prison") - }, -/mob/living/simple_animal/mouse/brown/tom{ - name = "Jerm" - }, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"vwn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vwG" = ( -/turf/closed/wall/r_wall/rust, -/area/command/heads_quarters/ce) -"vwN" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"vwP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/machinery/camera{ - c_tag = "Aft Hallway Engineering Doors"; - dir = 1; - name = "aft camera" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vxg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"vxw" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"vxD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vxT" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/mousetraps{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/toy/figure/janitor{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 8 - }, -/obj/item/restraints/legcuffs/beartrap{ - pixel_y = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"vxV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"vyr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vyw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vyI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/light/small/directional/north, -/obj/item/clothing/suit/toggle/suspenders, -/obj/item/clothing/head/papersack/smiley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"vyL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/restaurant_portal/restaurant, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"vyM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"vzc" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/maintenance/aft) -"vzF" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"vzX" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/stack/package_wrap, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"vAx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/misc_lab) -"vAB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"vAL" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vAM" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel/white, -/area/security/prison) -"vAO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"vAY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"vBf" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vBt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vBv" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/dark, -/area/construction/mining/aux_base) -"vBy" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"vBT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;101" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"vCk" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/box, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"vCS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vDb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 5 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vDc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"vDm" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/turf/open/floor/carpet/green, -/area/lawoffice) -"vDn" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Council Chamber"; - dir = 8; - name = "command camera" - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"vDw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/flora/grass/jungle, -/obj/machinery/light/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"vDB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vDH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/south, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"vEj" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engineering/supermatter) -"vEl" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"vEA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"vEF" = ( -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "External Gas to Loop" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"vEU" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vFo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"vFw" = ( -/obj/structure/table/wood, -/obj/item/storage/box/seccarts{ - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front."; - name = "Bottle of Tears"; - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_y = 2 - }, -/obj/machinery/keycard_auth/directional/south{ - pixel_x = -6 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/machinery/button/door/directional/south{ - id = "hosspace"; - name = "Space Blast Door Toggle"; - pixel_x = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"vFz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"vFR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/execution/education) -"vGa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/clothing/under/color/grey{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/under/color/grey, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"vGl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"vGA" = ( -/obj/machinery/camera{ - c_tag = "Prison Recreation"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vHh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"vHK" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/yellow, -/obj/item/electronics/apc, -/obj/item/electronics/airlock{ - pixel_y = 6 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/engine, -/area/engineering/storage/tech) -"vIb" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/item/stack/sheet/iron/ten{ - amount = 5 - }, -/obj/item/assembly/prox_sensor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door/directional/west{ - id = "sparemech"; - name = "Abandoned Mech Bay Toggle" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vIc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"vIe" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"vIj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/camera{ - c_tag = "Prison Labor"; - network = list("ss13","prison") - }, -/turf/open/floor/plating, -/area/security/prison) -"vIn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/service/chapel/office) -"vIz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/north, -/obj/machinery/medical_kiosk{ - pixel_y = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"vJk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"vJH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"vJI" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/displaycase/forsale, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"vJJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"vJY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/fore) -"vKb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vKc" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/geiger_counter{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/toy/figure/ninja{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/pen, -/obj/item/radio/intercom/directional/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"vKh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/camera{ - c_tag = "Prison Isolation Cell"; - dir = 4; - network = list("ss13","prison","isolation") - }, -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"vKw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"vKz" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/obj/machinery/status_display/evac/directional/north, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/carpet, -/area/medical/psychology) -"vKC" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Hydroponics" - }, -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/eastright{ - name = "Hydroponics Delivery Access"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"vLb" = ( -/obj/machinery/deepfryer, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"vLz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"vMt" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"vMJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vMP" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/tcommsat/computer) -"vNn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/shower{ - dir = 4; - name = "emergency shower" - }, -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"vNE" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"vOg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"vOt" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"vOv" = ( -/obj/machinery/hydroponics/soil, -/obj/item/seeds/ambrosia, -/turf/open/floor/grass, -/area/security/prison) -"vOE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/port/aft) -"vPi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/plasteel/dark, -/area/service/library) -"vPm" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom/directional/north{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -8 - }, -/obj/item/radio/intercom/directional/west{ - freerange = 1; - listening = 0; - name = "Common Channel" - }, -/obj/item/radio/intercom/directional/south{ - freerange = 1; - frequency = 1447; - listening = 0; - name = "Private Channel"; - pixel_x = -8 - }, -/obj/machinery/door/window{ - atom_integrity = 300; - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - pixel_x = 4; - req_access_txt = "16" - }, -/turf/open/floor/circuit/red, -/area/ai_monitored/turret_protected/ai) -"vPL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"vQh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/food/flour, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"vQB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"vQF" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"vRa" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/solars/port/aft) -"vRn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"vRt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"vRA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"vRC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"vRY" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"vSd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "Isolation"; - name = "Isolation Shutters" - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"vSe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vSu" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small/directional/north, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"vSx" = ( -/turf/closed/wall/rust, -/area/service/bar) -"vSH" = ( -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal/incinerator) -"vSW" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/storage/box/lights/mixed{ - pixel_y = 6 - }, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/cargo/office) -"vTb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/fore) -"vTi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Fore Hallway Vault"; - dir = 1; - name = "fore camera" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"vTl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall, -/area/engineering/atmos) -"vTz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vTF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/lipstick/random{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/lipstick/random{ - pixel_x = 6 - }, -/obj/item/pen, -/obj/structure/sign/poster/official/do_not_question{ - pixel_x = 30 - }, -/obj/machinery/camera{ - c_tag = "Backstage"; - name = "diner camera" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/theater) -"vTI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"vTQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"vTT" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "E.V.A. Storage"; - dir = 8; - name = "command camera" - }, -/obj/machinery/light/directional/east, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/obj/machinery/status_display/ai/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"vUd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/extinguisher_cabinet/directional/south{ - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"vUn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"vUt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/directional/north, -/obj/machinery/bounty_board/directional/north, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"vVq" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/bar/atrium) -"vVu" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"vVX" = ( -/obj/structure/flora/ausbushes/palebush{ - icon_state = "fullgrass_2" - }, -/obj/structure/flora/ausbushes/palebush{ - icon_state = "genericbush_1" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"vVZ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"vWa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"vWq" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/bodybags{ - pixel_y = 5 - }, -/obj/item/shovel, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"vWz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"vWK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel) -"vWN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"vWP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"vWR" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"vXv" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/ywflowers, -/obj/item/plant_analyzer, -/turf/open/floor/grass, -/area/security/prison) -"vXC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel/dark, -/area/security/main) -"vXS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"vYa" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"vYn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"vZl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"wad" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"waA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"waQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/door_assembly/door_assembly_ext{ - anchored = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"waX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wbd" = ( -/obj/machinery/computer/med_data, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/wood, -/area/security/detectives_office) -"wbe" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/quartermaster, -/obj/structure/chair/office, -/turf/open/floor/plasteel, -/area/cargo/qm) -"wbm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wbL" = ( -/obj/effect/turf_decal/loading_area{ - pixel_y = -5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/storage) -"wbW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - name = "Theater sorting disposal pipe"; - sortType = 18 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"wcd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wct" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"wcH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"wdd" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wdi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/stack/sheet/plasteel/fifty{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/stack/sheet/rglass{ - amount = 50; - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high, -/obj/machinery/camera{ - c_tag = "Engineering Storage"; - dir = 1; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/machinery/light_switch/directional/east, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -6; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wdE" = ( -/obj/structure/bookcase/random/fiction, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/wood, -/area/service/bar) -"wdH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"wei" = ( -/turf/closed/wall/rust, -/area/cargo/sorting) -"wev" = ( -/turf/open/floor/plating, -/area/engineering/atmos) -"weD" = ( -/obj/machinery/modular_computer/console/preset/engineering{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"weX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/assistant, -/obj/structure/cable, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel) -"wfg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/west, -/obj/machinery/computer/mechpad{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/button/door/directional/south{ - id = "Skynet_launch"; - name = "Mech Bay Door Control" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"wfj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2"; - name = "on ramp" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/supply{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"wfB" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Robotics" - }, -/obj/machinery/door/window/eastleft{ - name = "Robotics Delivery Access"; - req_access_txt = "29" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wfH" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/chapel) -"wfK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/nuclearbomb/beer, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wgo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "justiceshutter"; - name = "Justice Shutter" - }, -/turf/open/floor/plating, -/area/security/execution/education) -"wgI" = ( -/obj/machinery/conveyor{ - id = "NTMSLoad2"; - name = "on ramp" - }, -/obj/machinery/door/poddoor{ - id = "freight_port"; - name = "Freight Bay Blast door" - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wgL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"wgQ" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal/incinerator) -"whc" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/east, -/obj/item/radio/intercom/directional/east, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"whm" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"why" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/light_switch/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - name = "vault camera"; - network = list("vault") - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"wig" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/box/lights/mixed{ - pixel_y = 5 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/storage/box/shipping{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"wir" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"wje" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/vending/wallmed/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"wjm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/command/storage/eva) -"wjn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/electrical{ - pixel_y = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"wjq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Chamber"; - req_one_access_txt = "19; 61" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"wjs" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"wjw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/engineering/atmos) -"wjU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02"; - pixel_y = 3 - }, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"wjW" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/item/pen/red{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/toy/figure/hos, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"wkw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Crematorium"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"wkB" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen"; - name = "Serving Hatch" - }, -/obj/item/toy/figure/chef, -/turf/open/floor/plating, -/area/service/kitchen) -"wkC" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_2"; - name = "Hallway Hatch" - }, -/obj/structure/window/reinforced, -/obj/item/food/pie/cream, -/turf/open/floor/plating, -/area/service/kitchen) -"wkN" = ( -/turf/closed/wall, -/area/cargo/miningoffice) -"wle" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/qm) -"wlt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/turf/open/floor/wood, -/area/lawoffice) -"wlK" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"wlP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/item/storage/photo_album/captain, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/item/disk/nuclear{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/camera, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"wlV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"wmi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/table/wood, -/obj/item/clipboard{ - pixel_x = 4 - }, -/obj/item/stack/spacecash/c50{ - pixel_y = 8 - }, -/obj/item/stack/spacecash/c50, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"wmz" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"wmA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"wmG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"wmK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"wnR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"wnU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"wog" = ( -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet/directional/west, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/main) -"woi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"wol" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"woB" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "ceprivate"; - name = "Chief Engineer's Privacy Shutters" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"woH" = ( -/mob/living/simple_animal/hostile/carp{ - environment_smash = 0; - name = "Tuna"; - real_name = "Tuna" - }, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"woP" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wpg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai_upload) -"wpn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"wpD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"wpH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"wqn" = ( -/obj/machinery/suit_storage_unit/hos, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/item/storage/secure/safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hos) -"wqt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"wqH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/fore) -"wrb" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"wre" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"wrf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"wrp" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"wrr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "bankshutter"; - name = "Bank Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/noticeboard/directional/south, -/turf/open/floor/plating, -/area/maintenance/port) -"wrz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"wrD" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wrH" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wrV" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"wsc" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"wsf" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wsn" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/west, -/obj/machinery/camera{ - c_tag = "Cargo Lockers"; - dir = 4; - name = "cargo camera"; - network = list("ss13","qm") - }, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"wtb" = ( -/obj/structure/extinguisher_cabinet/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"wtf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/biogenerator, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"wtq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/pen, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"wtC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"wtH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"wua" = ( -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb, -/obj/item/poster/random_contraband{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/poster/random_contraband, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating, -/area/maintenance/port) -"wuY" = ( -/obj/effect/decal/cleanable/blood/footprints{ - dir = 4; - pixel_x = 24; - pixel_y = 8 - }, -/obj/structure/urinal/directional/north, -/turf/open/floor/plating/rust, -/area/security/prison) -"wwa" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"wwj" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/service/bar) -"wxd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/aft) -"wxt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wyf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"wyV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"wzc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"wzn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"wzx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wzF" = ( -/obj/machinery/light/small/directional/west, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"wzL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"wAE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"wAO" = ( -/turf/closed/wall, -/area/service/bar) -"wAW" = ( -/obj/effect/turf_decal/box, -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/item/soap/nanotrasen, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/button/door/directional/east{ - id = "Shower_2"; - name = "Shower 2 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/obj/machinery/button/door/directional/east{ - id = "Shower_2Privacy"; - name = "Shower 2 Privacy Toggle"; - pixel_y = -8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"wBr" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"wBG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot_white, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"wBQ" = ( -/obj/structure/sign/warning/fire, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"wCc" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"wCe" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"wCg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wCn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wCr" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "chapelgun" - }, -/obj/item/gps, -/obj/effect/turf_decal/stripes/end, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/service/chapel/office) -"wCs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"wCu" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"wDi" = ( -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/engineering/gravity_generator) -"wDo" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/north, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/showroomfloor, -/area/security/brig) -"wDF" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"wDG" = ( -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"wDI" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"wDK" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Connector"; - req_one_access_txt = "10;24;5" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"wEf" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/turf/closed/wall, -/area/engineering/atmos) -"wET" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"wEY" = ( -/turf/closed/wall/rust, -/area/commons/locker) -"wFb" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/corner, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wFj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"wFD" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"wFL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"wFO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"wGn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"wGr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/port) -"wGv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance/external{ - name = "mass driver intersection"; - req_access_txt = "12" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"wGT" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/fernybush, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/service/chapel) -"wGZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"wHa" = ( -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/research{ - name = "Ordnance Lab"; - req_access_txt = "8" - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"wHi" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wHq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"wHt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wHU" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"wHX" = ( -/turf/closed/wall/rust, -/area/security/checkpoint/medical) -"wIl" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/ce{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"wIJ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"wJc" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"wJd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"wJf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"wJx" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wJF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wJK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"wJN" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"wJO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "chapel maintenance"; - req_one_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/fore) -"wKH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/courtroom) -"wKO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;37" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wLn" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/noticeboard/directional/east, -/obj/machinery/light/small/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"wLo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/light/small/directional/south, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"wLB" = ( -/obj/machinery/requests_console/directional/north{ - department = "Security"; - departmentType = 3; - name = "Security Requests Console" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/showroomfloor, -/area/security/checkpoint/medical) -"wLF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wLR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "command maintenance"; - req_one_access_txt = "19;63" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/central) -"wMe" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/central) -"wMo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - id_tag = "commissarydoor"; - name = "Vacant Commissary"; - req_one_access_txt = "12;63;48;50" - }, -/turf/open/floor/plasteel/dark, -/area/commons/vacant_room/commissary) -"wMA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/landmark/event_spawn, -/mob/living/simple_animal/hostile/russian{ - environment_smash = 0; - loot = list(/obj/effect/mob_spawn/human/corpse/russian); - name = "Russian Mobster" - }, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"wMF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"wMK" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/documents, -/obj/item/clothing/neck/stethoscope{ - pixel_y = 5 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"wMM" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/west, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"wMQ" = ( -/turf/closed/wall, -/area/cargo/sorting) -"wNq" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad"; - name = "off ramp" - }, -/turf/open/floor/plating, -/area/cargo/storage) -"wNu" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/item/cultivator{ - pixel_x = 8 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"wNy" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"wNV" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light/small/directional/west, -/obj/machinery/status_display/ai/directional/north, -/obj/machinery/light_switch/directional/west, -/turf/open/floor/plasteel/dark, -/area/space) -"wNZ" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wOm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"wOv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/processing) -"wOC" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -3; - pixel_y = 15 - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/machinery/light/directional/east, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"wOF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"wOG" = ( -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"wOO" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"wOP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/virology) -"wOQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wOZ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"wPb" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"wPt" = ( -/obj/machinery/computer/slot_machine, -/obj/machinery/light/small/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"wPI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wPR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"wPT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/firealarm/directional/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/engineering/gravity_generator) -"wPV" = ( -/obj/machinery/door/airlock/maintenance{ - name = "cargo maintenance"; - req_one_access_txt = "31;48" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"wQn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/east, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"wRj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/tank/internals/oxygen/empty, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"wRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/masks, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"wRB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/directional/south, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"wRO" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wRX" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/carpspawn, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard/aft) -"wSs" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/janitor) -"wSA" = ( -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/medical/virology) -"wSC" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/carpet/red, -/area/command/heads_quarters/hos) -"wSW" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/item/food/fishfingers, -/turf/open/floor/plasteel/dark, -/area/service/bar/atrium) -"wTc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "Bridge Blast door" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wTg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wTh" = ( -/obj/machinery/door/poddoor/preopen{ - id = "transittube"; - name = "Transit Tube Blast door" - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"wTq" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/supermatter) -"wTC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/closet/emcloset/anchored, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/light/small/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"wTT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel) -"wUe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"wUf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"wUj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/command{ - name = "Captain's Office"; - req_access_txt = "20" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"wUq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wUt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"wUz" = ( -/obj/structure/mirror/directional/north, -/obj/structure/sink{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"wUE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/exoscanner_control{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"wUN" = ( -/obj/structure/lattice/catwalk, -/obj/effect/landmark/carpspawn, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard/fore) -"wVb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/camera{ - c_tag = "Brig Entrance" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"wVh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"wVq" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"wVw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"wVz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/security/processing) -"wVF" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wVJ" = ( -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/obj/structure/reagent_dispensers/water_cooler, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/psychology) -"wVS" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"wWh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"wWo" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wWu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wWx" = ( -/obj/machinery/computer/message_monitor, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/east, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"wWz" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/status_display/evac/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"wWK" = ( -/turf/closed/wall, -/area/service/chapel/office) -"wWN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/siding/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"wWT" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard/aft) -"wWX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wWY" = ( -/obj/structure/girder/displaced, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"wXo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"wXD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 4 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"wXE" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/item/storage/briefcase, -/obj/machinery/status_display/evac/directional/west, -/turf/open/floor/plasteel, -/area/security/courtroom) -"wXT" = ( -/obj/machinery/chem_dispenser/drinks{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/airalarm/directional/south, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"wXW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Air to Mix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"wXY" = ( -/obj/structure/sign/departments/holy, -/turf/closed/wall, -/area/maintenance/port/fore) -"wYz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/port/aft) -"wYL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/folder/white, -/obj/item/retractor, -/obj/item/hemostat, -/obj/machinery/vending/wallmed/directional/north, -/obj/machinery/camera{ - c_tag = "Medical Operating Theater B"; - name = "medical camera"; - network = list("ss13","medical") - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"wYN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"wZj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/showroomfloor, -/area/science/xenobiology) -"wZv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"wZx" = ( -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating/airless, -/area/maintenance/starboard/fore) -"wZN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xad" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/sand/plating, -/turf/open/floor/plating, -/area/space/nearstation) -"xaf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"xaH" = ( -/obj/structure/punching_bag, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/security/prison) -"xaM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"xaQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Fitness Ring" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"xaS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/shieldgen, -/obj/machinery/light/small/directional/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xaV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xbm" = ( -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"xbn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/bot, -/obj/structure/extinguisher_cabinet/directional/east, -/obj/structure/sign/warning/fire{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"xbq" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/structure/table/wood, -/turf/open/floor/carpet/royalblue, -/area/command/heads_quarters/captain) -"xbr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"xbK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Ports" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xbU" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"xbZ" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/delivery, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/status_display/ai/directional/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/atmos) -"xcd" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"xch" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"xcx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/departments/chemistry{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"xcO" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"xcR" = ( -/obj/structure/flora/grass/jungle{ - icon_state = "bushc2" - }, -/turf/open/floor/plating/asteroid, -/area/space/nearstation) -"xdf" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"xdz" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"xdS" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xdW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/autolathe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/cargo/office) -"xee" = ( -/obj/machinery/light/small/directional/west, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"xen" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/security/prison) -"xeu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xeC" = ( -/obj/machinery/status_display/shuttle, -/turf/closed/wall, -/area/engineering/storage/tech) -"xfH" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/requests_console/directional/east{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge Requests Console" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"xfN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xfU" = ( -/obj/item/circuitboard/computer/solar_control, -/turf/open/floor/plating/asteroid/airless, -/area/space/nearstation) -"xfX" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"xgx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"xhX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/science/genetics) -"xio" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xiK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"xiX" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/leafybush, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"xjd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"xjp" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"xjq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"xjs" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/cmo) -"xju" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/engineering/break_room) -"xjz" = ( -/obj/structure/closet/secure_closet/warden, -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm/directional/north, -/obj/structure/extinguisher_cabinet/directional/north{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/security/warden) -"xjT" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/storage/box/syringes{ - pixel_y = 2 - }, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm/directional/south, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"xki" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xkq" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/solars/starboard/fore) -"xku" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"xkx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/blood/old, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"xlm" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"xmc" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/keycard_auth/directional/west, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console/directional/south{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain's Requests Console" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain) -"xmd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xmr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xmx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "Satellite Antechamber"; - req_one_access_txt = "32;19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"xmB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/ai) -"xmW" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xmZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/newscaster/security_unit/directional/west, -/obj/item/shovel/spade, -/obj/item/plant_analyzer, -/obj/item/cultivator{ - pixel_x = 6 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"xnp" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"xnJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xnQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"xnR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"xof" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Nitrogen Outlet" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xoq" = ( -/obj/machinery/computer/aifixer{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"xoD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/psychology) -"xoK" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera{ - c_tag = "Atmospherics Desk"; - dir = 1; - name = "atmospherics camera"; - network = list("ss13","engine") - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xoR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xpk" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/airalarm/directional/east, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xpL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet/directional/north, -/obj/machinery/component_printer, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab) -"xpP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/cargo/warehouse) -"xqi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/paramedic, -/obj/structure/chair/office/light, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/paramedic) -"xqr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/east, -/obj/structure/noticeboard/directional/east, -/obj/machinery/computer/gateway_control, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"xqy" = ( -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"xqE" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/hydroponics) -"xqF" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/pen/blue, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"xqJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"xqK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xrj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Kitchen Cold Room"; - req_access_txt = "28" - }, -/obj/structure/fans/tiny/invisible, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"xrO" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - desc = "Salt. From space oceans, presumably. A staple of modern medicine."; - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"xrW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/light/directional/east, -/obj/structure/marker_beacon/burgundy{ - name = "landing marker" - }, -/obj/machinery/button/door/directional/east{ - id = "Arrival Shuttle Bay"; - name = "Arrival Shuttle Bay Toggle"; - req_access_txt = "19" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"xrZ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/office) -"xsb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"xsg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/sign/departments/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"xsj" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Docking Hallway" - }, -/obj/structure/sign/directions/engineering{ - dir = 8; - pixel_y = -40 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -32 - }, -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"xsk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xsm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"xsr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Port Hallway Vendors"; - dir = 4; - name = "port camera" - }, -/obj/machinery/status_display/ai/directional/west, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/port) -"xsz" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"xsK" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/machinery/light_switch/directional/west, -/obj/item/food/grown/harebell{ - pixel_x = 7; - pixel_y = 2 - }, -/obj/item/food/grown/harebell{ - pixel_x = 12; - pixel_y = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"xsR" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xsS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/disposal) -"xsU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"xta" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel) -"xtj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator Access"; - req_one_access_txt = "10" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/aft) -"xtt" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/sign/warning/xeno_mining{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xtG" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xtT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/door/airlock/atmos{ - name = "Incinerator"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xuh" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xuj" = ( -/obj/structure/table_frame/wood, -/mob/living/simple_animal/hostile/asteroid/basilisk{ - environment_smash = 0 - }, -/turf/open/floor/carpet/green, -/area/cargo/warehouse) -"xuo" = ( -/obj/machinery/door/airlock/research{ - id_tag = "ResearchInt"; - name = "Research Division"; - req_one_access_txt = "47, 9" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xuw" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/storage/box/shipping, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"xuS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xvd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xvk" = ( -/obj/machinery/firealarm/directional/east, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plasteel/dark, -/area/cargo/storage) -"xvm" = ( -/obj/structure/table/wood, -/obj/item/storage/box/deputy{ - pixel_y = 5 - }, -/obj/item/taperecorder{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/flashlight/seclite, -/obj/machinery/firealarm/directional/east, -/obj/machinery/light_switch/directional/north{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xvA" = ( -/obj/machinery/computer/security/telescreen/entertainment/directional/east, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xvD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"xwf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/qm) -"xwo" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"xwp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/exam_room) -"xwt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/modular_computer/console/preset/cargochat/service{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"xwy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm/directional/east, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xwQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xwT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"xxn" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/showroomfloor, -/area/science/mixing) -"xxv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"xxD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/extinguisher_cabinet/directional/west, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/command/bridge) -"xxH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"xxU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"xyc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"xyd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/l3closet/virology, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/machinery/firealarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/virology) -"xyt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xyK" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xyM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xyY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"xza" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall/rust, -/area/engineering/main) -"xzg" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_y = 28; - req_access_txt = "65" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/ai_monitored/turret_protected/aisat/foyer) -"xzv" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"xzA" = ( -/obj/machinery/light_switch/directional/west, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"xzI" = ( -/obj/machinery/camera{ - c_tag = "Prison Cells"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xzO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/vending/autodrobe/all_access, -/obj/structure/noticeboard/directional/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"xzV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/science/research) -"xzX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xAk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/locker) -"xAo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig/upper) -"xAw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/radio/intercom/directional/west, -/obj/item/wallframe/apc, -/turf/open/floor/plating, -/area/maintenance/department/electrical) -"xAA" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/small/directional/east, -/obj/item/radio/intercom/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"xAK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"xBk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/aft) -"xBo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xBM" = ( -/obj/machinery/door/airlock/maintenance{ - name = "xenobiology maintenance"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"xBR" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/airalarm/directional/east, -/obj/machinery/camera{ - c_tag = "Transferring Centre"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/processing) -"xCm" = ( -/obj/machinery/door/airlock/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"xCt" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/service/bar/atrium) -"xCv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"xDG" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Engineering Lockers"; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/bounty_board/directional/north, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xDO" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/radio/headset/headset_sec, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/dark, -/area/security/main) -"xDW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"xEu" = ( -/turf/closed/wall, -/area/science/misc_lab) -"xEE" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xFp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"xFs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/showroomfloor, -/area/science/robotics/lab) -"xFx" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch/directional/west, -/obj/structure/mirror/directional/north, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"xFU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/stack/rods/twentyfive, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/item/radio/intercom/directional/south, -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xGi" = ( -/obj/machinery/computer/security/hos{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"xGB" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/directional/south, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"xGF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"xHf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light/small/directional/east, -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison/safe) -"xHo" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xHX" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xIo" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/shovel, -/obj/item/shovel, -/obj/item/pickaxe, -/obj/item/pickaxe, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/miningoffice) -"xIs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/pinpointer_dispenser, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"xIB" = ( -/obj/effect/landmark/start/captain, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"xIH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/bodybag{ - pixel_y = 5 - }, -/obj/item/shovel, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"xIW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/camera{ - c_tag = "Head of Security's Office" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"xJo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"xJP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/port) -"xJS" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xJT" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"xKJ" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/backpack, -/obj/item/storage/backpack/satchel, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light/small/directional/north, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"xKR" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xKS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/disposal/delivery_chute{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small/directional/east, -/obj/structure/sign/warning/deathsposal{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/janitor) -"xKT" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/machinery/newscaster/security_unit/directional/east, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"xKX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/closet/secure_closet/personal/patient, -/obj/machinery/camera{ - c_tag = "Medbay Aux Storage"; - name = "medical camera"; - network = list("ss13","medical") - }, -/obj/effect/turf_decal/bot, -/obj/item/toy/figure/paramedic, -/obj/machinery/newscaster/security_unit/directional/east, -/turf/open/floor/plasteel/dark, -/area/medical/paramedic) -"xLk" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen/empty, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/cargo/warehouse) -"xLJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"xLT" = ( -/obj/effect/turf_decal/box, -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"xLY" = ( -/obj/effect/turf_decal/box, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/mirror/directional/west, -/obj/machinery/newscaster/security_unit/directional/south{ - pixel_x = -28 - }, -/obj/machinery/light/small/directional/east, -/obj/effect/landmark/start/assistant, -/obj/machinery/button/door/directional/east{ - id = "Unit_2Privacy"; - name = "Unit 2 Privacy Toggle"; - pixel_y = -8 - }, -/obj/machinery/button/door/directional/east{ - id = "Unit_2"; - name = "Unit2 Privacy Lock"; - normaldoorcontrol = 1; - pixel_y = 8; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/commons/toilet/restrooms) -"xMA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engineering/main) -"xMG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/landmark/xeno_spawn, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"xNd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel/dark, -/area/cargo/warehouse) -"xNf" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xNl" = ( -/obj/machinery/door/airlock/grunge{ - id_tag = "Cabin_2"; - name = "Cabin 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"xND" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/south, -/obj/machinery/status_display/evac/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xNQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/end, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engineering/main) -"xOe" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom/directional/west, -/turf/open/floor/engine/telecomms, -/area/tcommsat/server) -"xOg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xOh" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/aft) -"xOs" = ( -/turf/closed/wall/rust, -/area/service/janitor) -"xOv" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/prison) -"xOC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/landmark/event_spawn, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/surgery/room_b) -"xPm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xPr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"xPt" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/emitter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"xQj" = ( -/turf/open/floor/plating/rust, -/area/security/prison) -"xQq" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/beebox, -/turf/open/floor/grass, -/area/service/chapel) -"xQt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"xQT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light/small/directional/south, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/entry) -"xQW" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/showroomfloor, -/area/service/theater) -"xRx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/filingcabinet, -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"xRE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ai_monitored/command/nuke_storage) -"xRV" = ( -/obj/structure/flora/grass/jungle/b, -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/grass, -/area/security/prison) -"xRY" = ( -/obj/item/radio/intercom/directional/north, -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/maintenance/port) -"xSr" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"xSP" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - name = "on ramp"; - pixel_y = 6 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xTe" = ( -/obj/structure/urinal/directional/north, -/turf/open/floor/plating/rust, -/area/security/prison) -"xTk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"xTm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/showroomfloor, -/area/command/heads_quarters/rd) -"xTr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"xTu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"xTA" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/west, -/obj/machinery/status_display/supply{ - pixel_x = -32 - }, -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"xTK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/lobby) -"xTP" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/machinery/suit_storage_unit/standard_unit{ - desc = "An industrial suit storage device carrying retro space suits. Neat!"; - helmet_type = /obj/item/clothing/head/helmet/space; - suit_type = /obj/item/clothing/suit/space - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/storage/eva) -"xTQ" = ( -/obj/structure/flora/grass/jungle, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/genericbush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/chapel) -"xTR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"xTX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/chemistry) -"xUf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"xUo" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/item/storage/belt/utility, -/obj/item/crowbar/red, -/obj/machinery/bounty_board/directional/west, -/turf/open/floor/plasteel/dark, -/area/commons/storage/primary) -"xUy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/starboard) -"xUD" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/folder/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/folder/yellow, -/obj/item/lighter, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"xUW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/fore) -"xVk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xVo" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"xWb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/firealarm/directional/south, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"xWc" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Security Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"xWk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/bridge) -"xWP" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/noticeboard/directional/north, -/turf/open/floor/plasteel, -/area/security/courtroom) -"xXa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/rust, -/area/maintenance/starboard) -"xXg" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/locker) -"xXt" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit/directional/west, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xXS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/command/bridge) -"xYa" = ( -/obj/machinery/computer/monitor{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/shuttle{ - pixel_x = 32 - }, -/obj/machinery/computer/security/telescreen/minisat{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"xYg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"xYt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"xYI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/bar) -"xYR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xYU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"xYZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xZe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/medical{ - name = "Operating Theater B"; - req_access_txt = "45" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/surgery/room_b) -"xZv" = ( -/obj/structure/table/wood, -/obj/item/folder{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/starboard/fore) -"xZy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/light/directional/south, -/obj/machinery/newscaster/security_unit/directional/south, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/storage) -"xZB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/maintenance{ - name = "security maintenance"; - req_access_txt = "1;4" - }, -/obj/structure/sign/directions/evac{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"yag" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"yah" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ai_monitored/storage/satellite) -"yan" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"yau" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/security/prison/safe) -"yaD" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/primary) -"ybl" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/turf/open/floor/carpet/green, -/area/cargo/warehouse) -"ybC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/book/manual/wiki/detective{ - pixel_y = 4 - }, -/obj/item/camera, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/maintenance/port) -"ybW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ybY" = ( -/obj/structure/sign/warning/fire, -/obj/structure/grille, -/turf/closed/wall/r_wall/rust, -/area/engineering/atmos) -"ycp" = ( -/mob/living/simple_animal/hostile/asteroid/hivelord, -/turf/open/floor/plating/asteroid/lowpressure, -/area/space/nearstation) -"ycs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ycI" = ( -/obj/structure/sign/warning/electricshock{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/lattice/catwalk, -/obj/machinery/light/small/directional/south, -/obj/effect/turf_decal/sand/plating, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ycO" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/cargo/warehouse) -"ycU" = ( -/obj/machinery/recharger{ - pixel_x = -7 - }, -/obj/machinery/recharger{ - pixel_x = 7 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch/directional/east, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ycW" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"ydd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/maintenance/port) -"ydo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/siding/yellow/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ydI" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"yed" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"yei" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"yey" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Cargo Requests"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"yeV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"yeY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/showroomfloor, -/area/science/misc_lab) -"yfj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/primary/fore) -"yfP" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel/showroomfloor, -/area/service/kitchen) -"yfT" = ( -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/security/prison) -"yfW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/break_room) -"ygq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/main) -"ygt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm/directional/west, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ygu" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"ygB" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal/incinerator) -"ygU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"yhd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/bridge) -"yhK" = ( -/obj/structure/sign/poster/official/twelve_gauge, -/turf/closed/wall, -/area/maintenance/starboard/fore) -"yid" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "sidearmory"; - name = "Side Armoury Shutter" - }, -/obj/machinery/button/door/directional/south{ - id = "sidearmory"; - name = "Armoury Shutter Toggle"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"yio" = ( -/turf/closed/wall, -/area/medical/psychology) -"yir" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"yiy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"yiF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/airalarm/directional/west, -/obj/item/toy/figure/borg{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"yiQ" = ( -/obj/machinery/light/floor, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"yjd" = ( -/obj/structure/sign/departments/security, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"yjg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/storage/bag/tray, -/obj/item/book/manual/chef_recipes{ - pixel_y = 2 - }, -/obj/item/book/manual/chef_recipes{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/kitchen) -"yjr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"yjw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"yjz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet/green, -/area/maintenance/port) -"yjC" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/window/reinforced, -/obj/machinery/door/window/southright{ - dir = 4; - name = "Mail Chute"; - req_access_txt = "50" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"yjH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light/directional/east, -/obj/machinery/status_display/ai/directional/east, -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"yjT" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/chapel) -"yke" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"yki" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/light/directional/south, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"yko" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;37;47" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/maintenance/starboard/fore) -"ykt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ykB" = ( -/obj/structure/girder, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ykN" = ( -/obj/structure/sign/poster/contraband/revolver, -/turf/closed/wall, -/area/commons/locker) -"ykS" = ( -/turf/closed/wall, -/area/service/hydroponics) -"ykU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ylc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/water_source/puddle, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/mob/living/carbon/human/species/monkey, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/grass, -/area/science/genetics) -"yll" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/camera{ - c_tag = "Engineering Foyer"; - dir = 4; - name = "engineering camera"; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ylI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"ylV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ylW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ymb" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/airalarm/directional/east, -/obj/effect/landmark/start/assistant, -/obj/item/bedsheet/dorms, -/obj/machinery/button/door/directional/north{ - id = "Cabin_2"; - name = "Cabin 2 Privacy Lock"; - normaldoorcontrol = 1; - specialfunctions = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/commons/locker) -"yme" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light/broken/directional/west, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) - -(1,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(2,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(3,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(4,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(5,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(6,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(7,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(8,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(9,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(10,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(11,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(12,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(13,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -bVu -aeu -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(14,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(15,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(16,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(17,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(18,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aau -aau -aau -aau -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(19,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -cpx -cQP -cpx -ivj -aau -nFQ -lAy -aau -asO -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(20,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -aeU -aeU -aeu -ivj -anu -anu -cPa -jWq -vKh -vSd -hTQ -vcb -lAy -qIF -aav -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(21,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -amq -aeU -aeu -cpx -sZQ -cjL -cPa -xHf -pxR -vSd -jmh -jpb -xaH -eFJ -aau -aeU -coy -aeU -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(22,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeU -aeu -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeU -aeu -aeu -cpx -uJW -rHe -cpx -cpx -djK -cpx -nAW -aBV -kJD -qhp -aav -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(23,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cAY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeU -cpx -cpx -ulN -cpx -gtm -oYa -aat -lAy -aBV -kJD -nYL -aat -aau -aau -aau -aav -aav -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(24,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeU -anu -xzI -oDs -chR -chR -xen -tFc -chR -eUB -kAn -chR -vGA -tFc -chR -hsS -tkg -aau -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(25,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeU -aeU -anu -cTl -qKa -iig -qKa -qKa -vDc -qKa -gkN -jgw -qKa -wUt -vDc -oDs -qKa -usI -aau -aeu -aUz -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(26,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -cpx -cpx -mmA -cpx -cpx -nzQ -cpx -aav -aav -lBX -xQj -xQj -aav -qhO -kqR -rAp -aau -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(27,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -cpx -sIM -rHe -cPa -sIM -rHe -cpx -aaa -aau -xGF -qGP -qGP -oBY -cTl -qKa -aav -aav -aeU -asO -aau -aav -aav -aau -aau -uWN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(28,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aeu -aeu -aUz -aeu -cpx -chl -cFN -cpx -chl -cFN -cpx -aaa -aau -kLr -xFp -xFp -aau -uNu -qKa -aav -aeU -aeU -aav -jTJ -fLV -rnG -wNu -mLo -aav -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(29,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alm -ivj -anu -anu -ivj -anu -anu -ivj -qJs -aav -kLr -xFp -xFp -aau -sqU -qKa -aav -aau -aau -aav -iqS -syk -xiX -qzL -uEI -aau -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(30,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -acm -acK -acm -acm -acm -acm -acm -aav -pJg -sOk -xFp -ihn -tFc -ibe -ddv -qKa -qKa -ddv -oPT -vbU -ddk -uDV -xRV -aau -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(31,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acK -aaa -aaa -aaa -aaa -aaa -aau -jHA -nhV -xFp -aav -chR -qKa -aav -aau -aau -aav -qoJ -vOv -pGW -vXv -iOu -aau -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(32,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acK -aaa -aaa -aaa -aaa -aaa -aav -aat -aav -aav -aav -eys -vDc -aav -hms -uku -aav -enR -oeA -rkm -kXq -fGe -aav -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(33,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aUz -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -gmS -gwu -tDf -pwv -aav -tFc -jou -aav -aav -aav -aav -aau -aav -bMJ -gCJ -irF -aav -aeU -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(34,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -acm -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aav -xTe -nLY -chR -oub -chR -qKa -doP -eXt -aav -aeU -aeU -aau -uXc -uIs -eyc -aav -cui -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(35,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aav -wuY -lpY -lpY -aav -uNu -ibe -xYt -pUO -aau -aeU -aUz -asO -aav -aau -aau -aav -aeU -aeu -aeu -aeu -aeo -acm -acm -aeo -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(36,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -aeu -ahV -ahV -amz -amz -ahV -aeu -aeu -aeu -cry -acm -cry -cry -acK -aaa -aaa -aaa -aaa -aaa -aav -yfT -aav -aat -aav -vIj -qKa -doP -eXt -aav -aeU -aeU -aeU -aeU -cmU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(37,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aeU -cuj -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -aeu -ahV -bBK -byO -uVc -ahV -aeu -aeu -cqi -cqi -alm -dNv -aaa -acK -aaa -aaa -aaa -aaa -aaa -aau -tVR -aWc -pWJ -lNB -lTW -gBM -aav -aav -aav -aeU -aeU -aeU -aeU -cmU -aeu -aeu -aeu -ckn -aeo -aeo -acm -aeo -aeo -acm -vQF -ckn -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(38,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aaQ -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aeU -aeu -aeu -amz -oAm -bzY -bFf -amz -aeu -aeu -ajd -akh -ajd -aer -ajd -acK -aaa -aaa -aaa -aaa -aaa -aau -eEc -qKa -kXB -uNu -chR -qKa -aav -kkI -aav -aav -asO -cmU -cmU -cmU -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -ckn -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(39,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aaa -aeu -alm -acm -aaQ -aeo -aeo -acm -amA -amA -amA -amR -amA -amA -acm -alm -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeu -aeu -aeu -ahV -ahV -bBm -bFF -amz -aeu -aeu -aer -seL -cvo -jbw -hVl -acm -aaa -aaa -aaa -aaa -aaa -ivj -cpx -mAI -cpx -cpx -fdJ -qKa -sQD -jBG -utw -rsm -aau -aeU -cmU -aeu -aeu -aeU -aeU -aaa -ePG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -vQF -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(40,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -acm -aeo -aeo -aeo -aeo -aaQ -alm -aeu -aeu -aeu -aaa -aaa -aaa -aaa -amA -knq -aHe -mlu -lum -amR -aaa -aeU -aeu -aeu -aeu -aeu -aeu -alm -aeo -aeo -aeu -aeu -aeu -amA -suu -bDC -bGa -amA -amA -amA -ajd -ctb -bsq -onf -ajd -qJs -aaa -aaa -aaa -aaa -aaa -cpx -vwk -yau -pgf -anu -chR -oAg -aav -rgX -rHj -kIn -aau -aeU -cmU -coy -aeU -aeU -aeU -aeU -rnW -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(41,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -acm -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -amR -xRY -ioT -fyu -ybC -amA -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aaQ -aaa -aaa -aaa -alm -aeu -amR -scV -ckR -peP -bGY -bLq -nlo -ajd -aer -ajd -oRL -aer -acm -aaa -aaa -bpm -aaa -aaa -cpx -hel -yau -kzW -anu -fdJ -ycs -aau -dUZ -rHj -lGn -aat -cmU -cmU -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(42,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aaQ -aeo -aeo -aeo -acm -aaQ -anr -acm -acm -coy -aUz -aeU -aeU -aeu -aeu -aeu -aeu -alm -acm -amA -vaK -tIl -hEn -xRx -amA -aeU -aeU -alm -aeu -aeu -aeu -aeu -acm -aaa -aaa -aaa -acm -aeu -amA -cxp -bDi -bFD -bHb -cni -wWY -ajd -ctj -aer -bCe -ajd -acm -acm -cIA -cqN -cIA -cov -cpx -cuK -yau -oNc -anu -fdJ -ycs -aau -ukD -rHj -uJr -aau -aeU -cmU -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(43,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -acm -aaa -acm -aaa -ixU -cmU -cmU -cmU -cmU -cmU -cmU -aeU -aeu -aeu -aeu -aeu -aaa -amA -cXD -nCo -amA -mGQ -amA -aeU -aeu -aeu -aeu -wDI -aeu -aeu -qJs -acK -acm -acK -qJs -aeu -amR -amA -bzE -wrr -amA -cnr -tNI -gxA -ewJ -hhT -eqm -ajd -cqt -cIA -cIA -wLo -cIA -coD -oQI -cpx -fSq -cpx -cpx -jfE -ycs -aav -xNf -sBj -gEN -aau -aeU -cmU -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(44,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -fER -fER -fER -ala -fER -ixU -fER -fER -fER -fER -fER -cmU -aeU -aeu -aeu -amA -amA -amR -amR -qMJ -yjz -gur -jOI -amA -amR -amA -amA -amR -amA -amA -aeu -aDT -agw -ccg -agw -aoc -aeu -amA -knN -mvi -bCB -amA -hoZ -jBp -amR -pTY -qRu -kki -rUR -ajd -bmU -cqI -jaA -afm -bVx -ajx -bmQ -fhl -qFC -aau -fVr -onY -xXt -wJc -ehK -tBY -asO -cmU -cmU -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(45,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aeo -aaa -ixU -ixU -ixU -ixU -ixU -nBm -ixU -ixU -ixU -ixU -ixU -cmU -aeU -aof -aeu -amR -cPH -mlI -amA -ugS -wMA -oss -oPH -kDo -fut -wDK -qps -vnq -sHb -rdO -aeu -aDU -aaa -aaa -aaa -aod -aeu -amA -anD -mGX -tRg -amR -cnL -cBh -amR -ajd -aer -ajd -iWH -aer -crp -qFu -mlF -jWU -mnc -ajx -xOv -mZV -czR -aau -geJ -ycs -dFw -mIK -sLz -oUy -aau -aUz -cmU -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(46,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -fER -fER -fER -fER -fER -nBm -fER -fER -fER -fER -fER -cmU -aeU -aeU -aeU -amA -dRQ -nON -dmf -jSw -jSw -ejk -kUP -amA -nBC -bxp -jGI -dJI -eff -amA -aeu -aUG -aaa -aaa -aaa -aUG -aeu -amA -aEw -ohD -amA -amA -bMm -vee -amA -jWm -asC -eZR -tvd -vBT -qJj -xMG -qaG -gLe -atG -ajx -eJQ -mZV -bLH -aav -lvo -ycs -cJG -cJG -cJG -vAM -aau -aeU -cmU -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(47,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -acm -acm -aaa -nBm -ckk -aaa -aaa -ckk -nBm -ckk -aaa -aaa -ckk -nBm -cmU -cmU -aeU -aeU -amA -uQY -mNi -amR -emv -wPt -qnf -dNg -amR -wFj -amR -amA -rmx -sbR -amR -amA -cqs -aaa -aaa -aaa -bFQ -amA -amA -mWo -kNH -ujD -cpT -fal -bfb -amA -dac -rhZ -cvq -gVT -ajd -ajd -cqL -xkx -bZX -bVB -ajx -bJz -mZV -rBi -cGD -cSZ -ycs -cjD -cjD -cjD -vAM -aav -cmU -cmU -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -foo -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(48,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -aeo -aaa -cmU -fER -fER -fER -fER -fER -tHI -nBm -fuO -fER -fER -fER -fER -fER -cmU -aeU -aeU -amR -cnr -tLz -amA -amA -amR -amA -amA -amA -qHd -wFO -aTP -lLY -aUi -bQg -qHd -amA -agy -crx -agy -amR -ydd -tNI -tof -amA -tLz -amR -cpX -beO -amA -aer -ajd -ajd -gVT -qRu -aer -ajd -lQG -ajd -aer -ajx -eXA -cam -rBi -bNH -cSZ -wHU -cjE -kOw -tnI -oUy -aau -aeU -aqQ -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(49,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -cmU -ixU -ixU -ixU -ixU -ixU -nBm -nBm -nBm -ixU -ixU -ixU -ixU -ixU -cmU -aeU -aeU -cni -vYn -eKg -tCi -tSE -tSE -tSE -pUp -ncT -tSE -ahV -amz -ahV -ahV -ahV -bQg -amR -kbG -bmt -cGH -amA -amR -jBp -amA -bzX -ryM -amA -amA -beO -cqC -cuy -aer -xsR -qvb -rkz -cqD -ajd -vRA -cul -ajd -ajx -bth -cam -rBi -oEx -cIp -cIL -aBK -xvA -kzS -cQM -aau -aeU -cmU -jOe -jOe -jOe -jOe -jOe -foo -jOe -jOe -jOe -jOe -jOe -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(50,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -aeU -cmU -fER -fER -fER -fER -fER -fuO -nBm -fuO -fER -fER -fER -fER -fER -cmU -aeU -aeu -amA -tSE -cCO -amz -crP -rFn -urC -ahV -ahV -ahV -ahV -bQq -nXm -voc -amz -wFO -amA -csr -bmI -csr -amR -nXe -iJP -amR -cum -rLU -bIR -amR -cpH -bdo -bgi -cqd -bpP -cqq -qRu -ezv -gNR -aky -cuE -ajx -ajx -mQh -olb -nmp -aav -aau -aau -aav -aav -aat -aav -asO -cmU -cmU -foo -rhC -foo -foo -foo -foo -foo -foo -foo -foo -foo -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(51,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -alm -aeU -cmU -cmU -nBm -ckk -aaa -aaa -ckk -nBm -ckk -aaa -aaa -ckk -nBm -cmU -cmU -aUz -aeu -amA -tSE -ahV -ahV -uKX -uKX -uKX -amz -oJA -isG -tVl -tFy -wyV -sEI -ahV -bQg -amR -bop -bmJ -wVF -oEh -tof -mNL -amA -amA -amR -amA -amA -amR -amA -amA -ajd -cql -cou -rkz -nev -aer -keP -cuF -ajx -ana -cam -cam -fhl -aav -acK -acK -acK -acK -acm -aeo -aeU -aeU -cmU -cmU -cmU -cmU -cmU -cmU -vRa -cmU -cmU -cmU -cmU -cmU -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(52,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeu -aeU -aeU -cmU -fER -fER -fER -fER -fER -nBm -fER -fER -fER -fER -fER -cmU -aeU -aeU -aeu -amR -ncT -ahV -ctV -sbe -tFy -sbe -tFy -rHf -cMe -cwP -cMe -cwP -qwV -ahV -qHd -amA -bos -crP -cBh -ohr -cpX -beX -cnL -amA -jIQ -gQR -gQR -qci -gQR -uOW -aer -cJB -ooM -cqr -ajd -ajd -ajd -ajd -ajx -ajx -ajx -cEY -kRH -ajx -cyN -cyN -ajx -acm -acm -aeo -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cmU -vRa -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(53,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alm -aeu -aeu -aof -aUz -cmU -ixU -ixU -ixU -ixU -ixU -nBm -ixU -ixU -ixU -ixU -ixU -cmU -aeU -bsC -amA -amA -sPa -ahV -uXy -cMd -cvz -cMd -cvz -cvz -pwX -cMd -cvz -cvz -mXn -amz -wFO -amA -amA -cqT -dmB -amA -amA -mtp -crP -cnJ -iNS -sWe -ePM -oKO -lZI -eMl -scJ -cJB -bMR -cuw -bRJ -bRJ -bRJ -bRJ -bRJ -kjL -sTQ -chR -qKa -ajx -dNT -nnN -ajx -ajx -ajx -jIo -ajx -aeU -aeu -aeu -aeu -aeU -aeU -cmU -vRa -cmU -aeU -aeU -aeU -aeU -aeu -aeu -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(54,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -cmU -fER -fER -fER -fER -fER -nBm -fER -fER -fER -fER -fER -cmU -aeu -amR -xJP -cnr -jjj -beN -oKa -baQ -vmE -dzB -cwP -cwP -tsy -cMe -cMe -cvz -tnS -ahV -kkp -bko -amA -gMj -vFo -boM -bpc -amA -amR -amA -ich -kPB -ich -ich -kPB -ich -ajd -aer -ajd -nlV -ikv -cyN -kGg -cyN -cyN -nnN -poT -cTl -qKa -nhB -nnN -nnN -lbY -nnN -nnN -cyN -cmU -aeU -aeU -aeu -aeu -aeu -rkn -aDS -vRa -bFI -aeU -coy -aeU -aeU -aeu -aeu -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(55,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -cmU -cmU -cmU -cmU -cmU -aDS -nBm -bFI -cmU -cmU -cmU -cmU -cmU -aeu -amA -uAg -cFL -rIN -ahV -mqV -cMd -faE -oqx -sXv -oqx -sXv -sXv -dzB -baQ -bdl -beN -wWo -wLF -vbK -hFM -rPI -crV -crP -amA -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -ajd -cFR -cuw -cyN -xad -adf -aer -swn -ajx -cEY -kRH -ajx -qgh -bRJ -sTQ -mNe -mNe -cyN -cmU -aeU -coy -aeU -aeu -aeU -aeU -aDS -vOE -bFI -aeU -aeU -aeU -aeu -aeu -aeU -acm -cry -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(56,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -coy -woH -aDS -nBm -bFI -rkn -aeU -aeU -aeu -aeu -aeu -amA -cnL -amR -ncT -ahV -gkX -cvz -cMe -sXv -cwP -cMe -cwP -cMe -cwP -pSH -crv -ahV -amA -pyF -cpX -amA -jdj -aEw -bxq -amA -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -aer -bJX -ikv -cyN -xad -cnQ -coE -aav -abp -mSv -hIk -ajd -aer -iPQ -dnf -aer -aer -ajd -cmU -cmU -cmU -aeU -aeU -aeU -aeU -aDS -vOE -bFI -aUz -aeU -aeu -aeu -aeu -aeu -ckn -aeu -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(57,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -bVv -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -coy -aDS -ixU -bFI -aeU -aeu -aeu -aeu -aeu -aeu -amA -amA -amA -pUp -amz -mqV -cMd -cMe -owR -cMe -cwP -cwP -cMe -cMe -cvz -crv -ahV -crP -laA -wRx -lcd -crP -crP -urC -amR -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -ajd -inZ -hEM -aer -aeu -acW -xad -aau -ame -ces -hdN -cRB -aez -jyh -cGS -iKf -cTG -cTI -acm -acK -cmU -aeU -aUz -xfU -aeU -cnS -cuU -cnS -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(58,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aDS -ixU -bFI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -amR -cnL -tSE -ahV -vUt -cvz -cMd -dwk -cvz -cvz -cvz -cvz -cMd -cvz -xyY -ahV -amA -vbP -aEw -amA -iUR -crP -urC -amA -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -ajd -xCm -aer -ajd -aeu -aeu -xad -aau -bNj -bYr -kym -cSS -aez -aDK -vFR -iRv -cTG -cnU -aaQ -acK -cmU -aeU -aeU -aeu -aeu -cnS -wYz -cnS -aeu -aeu -aeu -aeu -aeu -aeu -ckn -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(59,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -ctH -any -ctH -aeu -aeu -aeu -aeu -aeu -aeu -aeu -amA -oys -pUp -ahV -xTX -cvd -cMe -owR -cwP -cMe -cwP -cwP -cMe -cMe -crv -amz -wua -hVG -cCR -amA -csr -csr -amA -amA -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -aer -ikv -bCt -ajd -aeu -add -cnQ -aat -abp -cet -gnr -abh -aez -wgo -hpp -bXh -aeC -aez -cJx -aer -bNe -bNe -bNe -ajd -ajd -cnN -giw -cnO -cnN -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(60,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -cui -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aUz -aap -aeu -aeu -aeu -aeu -aeu -aeU -ctH -vJY -ctH -aeu -aeu -aeu -aeu -aeu -aeu -aeu -amA -cwp -xQt -vEl -vEl -gOH -cMl -uvb -cMk -mRL -uXE -iEm -rLk -crd -cpI -ahV -cAv -rJf -csk -cyb -aaO -ecF -kLy -ich -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -cIA -ikv -rsn -cyN -xad -aDQ -cBD -asO -bRD -coH -fuy -abp -pWF -eBf -deI -bWo -paK -akl -aer -ajd -coW -bMX -sbB -vIb -aer -kuW -cuZ -dWe -cnN -aeu -aeU -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(61,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -bVv -aeU -aeU -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -ctA -ctB -kzO -ctB -ctB -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwp -tCf -wre -vEl -cLZ -cMk -uvb -cvC -ahV -ahV -amz -ahV -ahV -ahV -ahV -brF -iJZ -cxK -cyb -abJ -hsv -gtd -ich -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -cIA -ikv -cyL -cyN -xad -cnM -xad -aau -cdT -ceu -cCy -ksw -chk -jmy -pNq -ahe -bYk -ajx -bBs -ccL -coY -cqa -crb -bNl -ajd -ere -lJQ -cse -coB -aeU -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(62,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aap -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aUz -cui -aeu -aeu -aeu -aeu -aeu -aeu -ctB -jwJ -xjd -eJV -ctA -aeu -aeu -cwp -cwq -cwp -cwq -cwp -cwp -fqD -cyq -mkY -kpg -kzk -ioc -aRF -ahV -cCO -cnr -dGI -qsi -lVq -sAP -vJk -nAY -csk -cyb -bKl -ecF -vVX -ich -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -cIA -inZ -bMR -cyN -xad -cnQ -aeu -aat -uoN -cig -qku -cST -aDM -aGN -lfG -aKp -cqU -akl -bMy -ajd -ajd -ceR -cJB -aer -ajd -haP -cBo -gDl -cnP -aUz -acm -acm -acm -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(63,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aap -aeU -aeU -aeu -aeu -aeu -aeu -aeu -ctA -fAV -sKj -eWs -ctB -aeu -aeu -cwp -hLU -ayy -rKo -azi -cwf -aRY -aEZ -vEl -vnS -cMl -raL -cvE -ahV -crP -cCO -beX -mfY -poR -amA -sDs -hdX -csl -cyb -mzt -ecF -vdK -hBN -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -bJv -aer -ikv -bDn -ajd -aeu -cnR -aeu -aav -pWK -cwH -nKH -cSU -ocN -sdw -sGH -ajx -ajx -ajx -bMR -bWK -ajd -oAK -ajT -ajd -ajx -jIo -nyI -ajx -coB -aeU -coy -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(64,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aUz -aeu -aeu -cwp -cwq -cwp -vEl -amf -fcd -apB -mkY -cwp -cwp -cwp -aPJ -ayR -mGE -aAz -aCn -aDq -cwy -vEl -nNi -cvp -jNa -eGO -amz -beX -bxq -crq -bCK -cnr -amR -amR -amA -amA -amA -csr -csr -amA -amA -amA -ich -ich -waA -ich -ich -waA -ich -ich -ajd -ajd -llt -ajd -ajd -aeu -cog -cBN -aav -bWr -hRZ -laT -ajx -ajx -ajx -akl -akl -bTL -bEJ -czZ -bMR -aqt -aLu -crc -cgi -ctn -ctU -aLu -ajd -aeu -aeu -aeU -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(65,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aaa -aaa -aeU -aeU -aeU -aeu -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwp -cvY -xzO -mkY -vEl -gQQ -rld -vEl -apU -cAs -cwq -aQz -ayV -cgP -mio -aSf -qgO -cwS -vEl -ahV -bGX -oaT -bGX -ahV -qre -aRP -aTk -nJS -tiX -ksR -skO -rbF -amA -wrV -wrV -wrV -wrV -wrV -amA -jyL -dEO -nzm -lwv -wtq -nzm -vGa -uXa -ajd -bKN -ikv -bEk -aer -aeu -aeu -cBD -add -ajx -fKw -tbB -ajx -rKb -bPN -lCr -cdU -clj -clO -cne -com -uhy -ceR -bMR -bNm -clh -clq -bzO -ajd -aer -ajd -anZ -cmt -agw -aoc -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(66,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwq -lrD -eIR -cyd -cxt -toC -apC -cyu -cxS -aNk -cwq -cwy -cwp -cti -cwq -cxy -iAn -aFa -ips -aKx -glp -mIv -aRL -tuj -aVk -aST -aZc -dZr -cnL -beX -asg -szD -amA -wrV -wrV -wrV -wrV -wrV -amA -xTu -gNO -veJ -hbL -uaJ -vdd -faV -vpg -ajd -aer -inZ -eJC -ajd -ajd -aer -cyN -ajd -ajd -jmf -kAX -iPo -lIQ -xwT -hGH -ajd -ajd -ajd -aer -ajd -xZB -ajd -ajd -ajd -ajd -iiU -cJX -cIA -iTK -agy -aaa -aaa -aaa -aod -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(67,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwp -cvX -voS -qfL -cwQ -cxq -apD -cwp -aso -atF -oFp -awU -azd -azS -aAB -aCq -awU -jFI -vEl -amz -ahV -hxR -ahV -ahV -amz -amA -amA -lkk -amA -amA -jlA -cpH -csr -wrV -wrV -wrV -wrV -wrV -csr -jzS -iNC -mXt -qhd -pNx -vmb -kGr -cfH -ajd -bzO -nZU -bUq -brJ -vwn -bzO -slK -xPr -iPo -seh -idN -aer -cIA -bsD -cIA -ajd -qPK -hOB -gHG -kfE -euG -sYQ -wjU -dcO -ajd -bqx -cmf -crD -cGK -agG -aaa -aaa -aaa -cGA -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(68,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -cwp -cwq -cwp -cwQ -cwp -cwp -cxC -uFU -cwp -cxt -cxy -nrB -awe -cyl -vEl -vEl -mkY -vEl -vEl -mkY -wMM -vte -sLT -eRK -dsd -pgJ -aPC -euH -uBI -tfS -amR -jlA -jwZ -amA -wrV -wrV -wrV -wrV -eRj -ois -hcO -iNC -jan -ybW -pLY -tYO -mTI -tMM -bNo -bOp -gOB -lJH -ajT -tqo -bZY -uaZ -rMX -ajx -fKw -feu -ajx -bpS -mkS -bMA -aer -oyF -lwE -kuw -syK -vXC -iYx -xsm -fmM -mLf -bMR -gAh -cIA -cmf -agy -aaa -aaa -aaa -aod -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(69,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -cwp -aol -ade -iRY -cxr -tas -cvS -xTr -aqO -asr -atH -pan -awQ -vEl -mkY -gTX -qCr -kvy -grJ -aOZ -jPk -aOO -iNG -oJe -hkd -aVm -aYo -aZf -oJL -aPW -amA -nMI -csi -csr -wrV -wrV -wrV -wrV -wrV -csr -fxH -ney -vqR -qlh -hWZ -sbG -lEI -hfQ -ajd -afm -szW -akh -akl -ajx -ajx -ajx -akl -ajx -dZN -quQ -ajx -ajx -akl -ajx -ajd -toK -iTC -ezi -nsn -eDq -bFw -xsm -cRp -ajd -aer -ajx -ajx -akl -ajx -anZ -cmt -aob -aoe -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(70,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwp -vyI -cxa -cxc -cxf -cxw -aar -pdi -cwp -cwp -atL -cwq -cwp -vEl -mtR -mRa -qsI -lPX -sKY -aGm -aKC -mHn -wGZ -aRS -xiK -mrr -aPC -bnf -xZy -aOZ -amA -ist -amR -amA -wrV -wrV -wrV -wrV -wrV -amA -fdS -iNC -vnx -dUR -ucW -xaQ -lEI -jzZ -ajd -afy -kRc -mCS -fzx -dhv -ngn -aaT -bWp -sPO -bTp -mwc -bQy -vnR -qKy -gls -oYg -hce -iTC -lsp -lFt -xDO -egh -xsm -uBZ -hNM -nYd -hQK -wog -gQN -ygq -aUz -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(71,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwq -tFL -cxb -cxn -cxf -cxw -cxN -pot -cwp -tqT -atM -hBo -aKV -pKa -jMx -lvu -lYs -ggv -jVm -ahc -aOz -aQq -aQT -aRg -fsC -hpd -aPC -aPI -lTs -aOZ -qsn -mwd -eNm -amA -wrV -wrV -wrV -wrV -wrV -amA -gvU -rpq -edb -ykt -ykU -wBr -mZB -jsb -aer -afz -bRw -aer -ajd -cwN -ddN -agq -bWs -abO -kFW -aeY -aeY -cYQ -aeY -aeY -gCp -pyM -mAa -sIP -lWY -uPV -pVQ -hQM -hKK -ujY -ujR -gzW -iio -rDh -ygq -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(72,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -cuj -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cwp -cvX -cwT -cxo -cwp -bLU -cxG -twl -cwq -aOa -atN -aOC -aOm -eWO -hPF -rif -kWc -uox -sjL -aOZ -hwo -aPR -aRx -aSO -mGR -aVC -aVC -aQL -aVC -aVC -wYL -rDL -tsP -amA -amA -csr -csr -csr -csr -amA -xKT -fZM -sRc -aum -hjY -kmj -tuH -rOe -ajd -csN -bRB -ycI -ajd -aef -aef -aef -aef -bXm -ueM -uEG -afE -ahn -szA -afE -jpH -hbn -eQS -sIP -vwN -iUF -heS -tQY -hOw -rMG -xaV -dUp -dUp -dUp -rMG -acm -acm -acm -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(73,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -cwp -cwq -cwp -cwp -cwq -cwq -cwp -cwp -cwq -cwy -rcu -cwp -aOb -atQ -aOE -nqj -eWO -loB -nwk -vWP -xjs -hyB -ahc -aPx -aPx -aOZ -viN -tQX -aQJ -gUM -plP -mBV -aVC -mDO -xOC -mwh -ksb -aQN -aDQ -ecF -xcR -uiX -hBN -hBN -hBN -hBN -qcg -tfC -kdG -hBN -hBN -aer -csS -cBI -bUv -szb -oZs -ngn -aaT -bWu -abY -ady -ael -aaT -aef -aef -aeg -hOw -ilG -wzc -sIP -viF -iuQ -dGL -goJ -hOw -lnS -oHJ -obH -okQ -qQw -dUp -dUp -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(74,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -cwp -cwq -alc -cyR -cyY -cWg -czj -cvg -cwq -cwp -fDL -eWy -cwp -akq -atR -xoD -caJ -eqk -qGh -deq -pdA -snF -eWO -aSW -axH -vGl -aOZ -aWp -iSA -aVC -sns -aZu -aVL -aVC -nTA -rDL -bhA -kUs -aSG -add -ecF -acW -aaO -aDQ -esi -wAW -syD -kvx -oSw -hub -flj -hqe -uzL -cBv -cBy -bUv -szb -cwR -lqs -ags -bWs -abO -ady -aeg -vNn -dZv -agd -jMt -tpk -kOP -wzc -sIP -wsc -nPY -taq -hXD -ygq -vcs -npH -dyT -pXV -pXV -vFw -dUp -aeU -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(75,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -cwp -jhL -aRi -cyS -cyZ -czl -czk -cvk -sGL -cwp -pls -ail -mkY -aWm -aWm -opW -aWm -eqk -eWO -dxK -eWO -dxK -eWO -aSa -axN -aye -fpz -aHZ -hCA -aQJ -aQQ -oVB -qvG -aQL -wzL -mqu -oBp -uCQ -aSG -aaO -ecF -dyu -bKl -add -lSH -fuK -fuK -deQ -fJK -uMr -fuK -lSH -ajd -cBw -csN -rFD -ajd -aef -aeg -aef -aef -bXp -oBI -aCv -edr -cnB -cnB -crz -ghl -mIs -aOY -mZc -pvi -eCd -tHi -eWJ -hOw -wqn -bre -dyT -wjW -pXV -pIq -dkE -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(76,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -cwq -cwp -cyH -aTT -cyT -bES -sRz -czx -ajI -gai -cwq -ylI -vEl -vEl -aOl -aPe -fzh -yio -jdX -kIr -aPE -aOp -aPE -jdX -aFp -aQF -aRt -aSz -dhF -guq -aVC -aVC -mmP -tDw -aVC -aQN -xZe -aQP -aQN -aTx -aUJ -aUJ -afe -acZ -adf -nez -fIY -fvV -jQo -osw -jXa -pjz -xLY -dML -cBx -cBv -bUv -szb -vcO -ngn -aaT -bWv -abY -ady -aaT -wje -pVL -okV -hTK -oYg -sfT -jzK -oyM -hOw -hOw -emC -jpH -hOw -dUp -xIW -wSC -rET -hzw -xGi -dkE -aeU -aUz -aeU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(77,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -cwq -cyE -cyQ -bAa -cyU -czb -czh -czm -cvv -pSl -amh -soP -vEl -vKz -pHm -aBi -mJz -yio -auA -aOe -aJW -aOh -qEW -jdX -aFC -ict -aHG -aHG -uDs -pYz -uHR -aQL -cVJ -aQJ -aVC -dPF -eLL -uQa -vNE -gik -sel -sgh -afe -aUJ -aUJ -afe -lSH -fuK -wUz -fJK -ohC -fuK -fuK -ajd -cBy -cBI -bUv -szb -cwR -fRH -aaW -bWA -acb -aes -aef -aef -aef -aeg -aef -hOw -oYg -gCp -oYg -hOw -eev -cac -cai -bAd -lKu -bre -dyT -kyD -pXV -uen -dkE -aeU -aeU -aeu -cke -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(78,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -cwp -crB -cyJ -aRi -cme -cme -cme -cme -cvk -klu -cwy -quw -mkY -rai -aqo -aMd -qax -jtY -aNS -aOd -kpm -aPh -rcC -jdX -rtZ -mfl -uxD -cSy -dUM -aTI -ixF -erq -toU -bbV -bdp -gwo -lZB -njm -gnZ -qvH -vAO -dpy -aUV -aVc -dKV -afe -peq -gFu -nNU -nRA -piK -mzF -qDM -kGa -csN -cBw -cPE -aer -aef -aef -aef -aef -ani -jrA -aeg -xjz -jzU -cBn -dsp -aei -clm -clp -tpr -aKZ -aiO -cqu -crs -vQB -wtH -ueE -tef -vjc -orI -cSJ -vaU -aeU -aeU -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(79,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -cwq -cyE -rQX -rfq -alg -ang -apF -ang -wqH -svC -czL -anX -mkY -aqP -ass -atS -dOn -awY -azf -azV -aAI -aCE -aDR -aeP -aQc -myP -els -fuN -lKt -cHT -wQn -txI -vfQ -bey -mAW -wHq -bsF -wPb -kFz -gik -rBR -vUd -aUV -hhe -foM -aoH -dpN -kvx -mGw -msd -eej -tNZ -wEY -ajd -ajd -csS -bUv -szb -fOP -mhK -aaT -bWB -bSR -hjk -cfZ -cgC -cnZ -wqt -crL -crY -akm -cmz -bYm -ama -aiP -cqx -aBh -aLi -lKu -xvm -whc -nhS -mWF -sSi -dUp -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(80,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -cwp -cwq -oTv -iRY -cmm -cop -cvf -cvf -quv -wmi -cwp -fEB -vEl -vEl -aOx -wVJ -aWf -yio -aNV -aFr -aPh -drb -aDX -fGg -ayB -jvp -aTO -aWl -kik -aWl -aTO -bbh -agZ -aWq -akP -aRs -vki -hnW -aRJ -gik -aUV -auw -bAN -fBn -aoV -afe -tNZ -bqe -pQz -oEv -miO -tNZ -jSW -uTp -pDX -cBv -bUv -szb -cwX -ddN -abc -bWs -abO -ceA -aei -axw -coF -lWx -coV -aei -cln -bCh -bVy -ama -aiQ -cqx -dGE -aka -aka -aka -amX -mHQ -aka -amX -aka -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(81,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -cwp -cwq -xIH -cyX -tMj -tvJ -czn -czu -cwp -cwq -usm -aiM -vEl -aNN -asi -aNN -asi -aQw -jwd -kDm -xwp -gBk -sbL -nwC -hEa -aTO -cgL -jbR -uik -wHX -aQV -uzc -aRn -aQW -aQW -aPf -kgu -bAN -afe -iQZ -cVA -rEG -fSW -rOO -afe -usn -kcq -eoj -lmP -riz -pCB -efZ -ppf -pDX -csS -uGP -ajd -aef -aef -aef -aef -qJq -ceA -afs -aet -syw -wdH -hPo -aef -ayi -jCj -qFo -aaj -nfu -cqx -hzW -aka -psn -azo -alv -cez -aEX -bIS -anG -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(82,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -cwp -cwp -cwq -cwq -cwp -cwp -cxt -cwp -cyI -vqk -aiN -wXY -aVY -she -hMH -ilo -aJU -aJU -aOH -kzU -aJU -aOH -aQh -tJH -aWl -aRa -bfv -lUN -aTO -aRU -lIw -aWr -bJL -beR -bAN -dnD -pPA -aUP -mbo -wOP -aVg -bwD -agm -aoH -ski -kcq -haI -jbj -oVx -tNZ -tNZ -tNZ -aer -cBI -bUv -szb -sMr -mhK -aaT -bWG -aft -ceA -aei -anv -coU -qSI -ctf -aFv -ahp -qvt -bVz -ama -aiO -cqx -aHE -aka -akC -cHL -cbp -alQ -amr -vaP -amX -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(83,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alm -aeu -aeu -aeu -aeu -aeu -cwp -fBZ -dMx -ale -ami -nIy -aqh -aqR -ghK -cVz -wpD -aWv -aJU -dcT -aOI -hQY -jTh -odG -cJJ -sra -aTO -wLB -aRH -mVX -aTO -aSi -kTz -bcn -bdq -beV -jJA -syg -aLh -srf -jtZ -ivI -biF -bwO -kwO -afe -xbU -kcq -kCl -lmP -tKx -tNZ -dNK -erP -cOg -cBv -bUv -szb -cwX -gpA -aiZ -bWs -abO -iYM -aef -rXb -bPz -ptA -hZO -aei -clo -cmz -bYm -ama -aiT -cqx -eqH -bPI -caO -tnH -alx -aCz -ams -bdK -aka -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(84,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aUz -aeU -aeu -aeu -aeu -cwp -cwp -gEQ -cxI -cwp -fFH -ajh -cwp -rpx -aWg -iJp -aWw -odG -mVT -aOK -lSf -hNf -aJU -aYB -icK -aTO -aWl -aWl -aWl -aTO -aQW -fbn -aTw -aTF -sUc -bAN -xyd -aVD -bAN -ljj -abH -pCq -fKi -rdC -aoH -mlm -kcq -get -lmP -riz -rES -iCd -sgm -cOg -cBy -jcx -ajd -aeg -aef -aef -aef -bXr -rbt -aef -aei -aei -nVM -aei -aef -wVb -cmz -dcK -aaj -wDo -cqy -nvS -csX -ctt -ibJ -aly -alS -ams -oUz -aka -aeu -aeu -aeu -cke -cxE -aaa -aaa -aaa -aaa -aaa -aaa -alm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -tgU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(85,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aeU -aeu -aeu -siT -oEk -cxX -cwp -cwq -cwp -cwq -vsH -aWh -mQV -tJb -aJU -aJU -dgk -sQs -iJF -eWw -pNI -voi -nvc -aSY -aSY -aSY -xcx -vgr -enL -bdO -cPg -hck -bAN -bAN -aUJ -bAN -vhM -kjN -aoH -afe -afe -afe -tNZ -kUM -xAk -iMV -tNZ -wEY -tNZ -ykN -ajd -csN -bUv -szb -sar -mhK -aaT -bWI -sNV -ceN -cgg -cgF -chn -kyv -sai -kiT -kMH -mOh -kkD -evT -cer -qbv -nWo -aka -vCk -cup -cwd -cxP -czv -cBC -amX -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -acm -qVM -aaa -aaa -aaa -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(86,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -acK -xch -sLw -cxY -xch -hcX -wCr -aNu -eNX -ylW -hMN -iFu -azh -azZ -lea -tky -xqi -tmg -sZj -rbR -aQD -cgN -kGR -iwD -aTG -aRn -aRG -aRN -beC -aTW -uxR -aPf -biD -blB -wSA -iJq -bAN -kkt -wMe -jRu -wWh -qZb -ikz -oCh -riz -xNl -jin -hQc -aer -cBw -bUv -szb -cwR -rmu -abr -ohH -oWv -eox -gTC -fVf -afE -tJB -mkA -rrC -tpr -cmz -omA -oWm -quF -qqu -crN -amN -alP -anF -cdF -ceE -ycU -scR -aka -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -vkY -acm -sEp -qVM -cok -aUz -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(87,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -acK -vdu -gqh -axy -vdu -uxA -eNB -aNu -qXt -kFf -uhC -ced -vDH -aNu -xKX -lpp -iCj -aVU -vIz -rQf -vmo -oNg -svc -xTK -aSl -aAc -aSw -aRO -baR -aTX -bhT -aUJ -aTh -aTi -sOO -cVO -icM -nmo -bpD -tNZ -xKJ -kcq -hGR -eUz -yki -tNZ -ymb -qab -ajd -afz -kfm -ajx -akl -ajx -ajx -aef -acH -xjq -aef -aef -acH -dmx -aef -aef -bMC -ahT -oPn -aaj -aae -amc -ndg -aka -aka -amN -aWK -yid -aka -aka -aka -aeu -aeu -aeu -cke -aeu -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aUz -acm -sEp -mZT -aUz -aeU -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(88,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeU -aUz -aeU -aeu -aeu -aeu -adQ -wGv -cAU -adH -wWK -aBg -aNu -aNu -aNC -kRu -cAZ -kEg -aNu -aJU -odG -aJU -aJU -hCy -aQt -aQr -ijE -pnx -vRY -wlV -aWx -bzM -tuD -sdE -aUx -fBA -bAN -aTi -dKg -lGj -aPf -bAN -rdj -okT -tNZ -imG -kcq -uFB -oCh -hTZ -tNZ -wEY -tNZ -ajd -bNP -bVo -krd -tsf -bVq -ajx -hek -xAo -mOD -msA -aeg -deD -eEP -pnb -aef -iYQ -aae -vRt -aaj -sTS -cdR -kuz -bCD -nKW -oYL -bGc -ceY -enf -aad -aeu -aeu -aUz -aeU -acm -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aFJ -aFJ -lbb -bKO -lbb -bKO -lbb -aFI -aFI -aeu -aeu -aeu -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(89,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -alm -aeu -wWK -wWK -wWK -oLl -wWK -adH -qin -ace -adH -iZW -rAU -tXD -ePI -wWK -tZe -gtw -tZe -flW -iAG -xTQ -tZe -tZe -aSy -aMP -aQt -bcV -aaF -icF -aNn -aQW -aWx -aQW -aSg -bae -aSg -bAN -bAN -bAN -bAN -bAN -bpo -kDD -bve -wEY -tzV -kcq -ktX -oCh -hwF -qqe -shg -ppf -ajd -ajd -aer -afm -xnR -bVt -akl -vUn -rsC -dwU -puH -aef -anj -iQr -agY -aeg -dqc -byA -cnm -afc -apH -bxS -nlU -csY -ctw -csY -cwe -pqE -czw -aae -aeU -aeU -aeU -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aFI -aFJ -msx -msx -yme -fen -ibv -prk -qFp -aFJ -aFJ -aeu -aeu -aeU -aeU -aeu -ciQ -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(90,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -oLl -vWq -vMt -uhf -biA -adH -imQ -cCU -adH -esg -myZ -frK -rWe -wWK -oTV -gRN -fiH -jux -tuL -txu -kIs -tZe -aEB -aEB -aIQ -fkT -aEB -cFK -boC -uwB -biG -boC -acY -apJ -atO -boC -bpt -wnU -bpM -boC -boC -jRu -boC -tNZ -tNZ -ePs -xXg -dJU -tNZ -tNZ -cKI -gYB -aer -czP -cou -bEI -byB -cyy -ajx -imD -xqF -dmh -bHO -aef -afR -agr -aju -aef -vIc -cmC -qCw -aae -apH -lmF -myp -cHx -cHx -lpU -cHx -cKg -bFL -aaf -akK -anh -bwu -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -utB -rfJ -sfI -vqb -sfI -sfI -tcq -pTf -sfI -njj -utB -aeu -aeU -aeU -kmK -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(91,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -wWK -hIP -vIn -uCt -nWN -aiA -ota -alf -aml -icX -jnE -jFh -gvK -hwI -vce -jmS -weX -hzN -wTT -hzN -fVy -bQb -ada -aKJ -bcK -ioU -bdf -aTJ -aSe -aYx -bjY -sky -bjY -blP -bnt -mRK -bpI -bjL -bxG -btV -prF -gVM -pRJ -szN -kyT -xYZ -bCL -bCg -bCH -tNZ -tNZ -tNZ -ajd -bMR -bqx -bMR -ceR -bzO -ajx -lqm -fqI -dwU -fXF -aef -afS -iGA -pDu -agX -dVE -aae -lSd -aaf -awk -sWY -akG -hUK -xcd -eiX -auD -lZY -amy -amO -dUK -cJV -anh -anh -bVn -aaa -aaa -aaa -aaa -aaa -acm -aFI -rSS -vXS -sIT -wVh -rQj -jkb -fPR -pJt -wYN -aFI -aeu -aeu -aeU -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(92,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -oLl -wWK -kyC -wLn -jNq -niM -kig -tJs -adQ -dwc -wOC -qPF -gEk -wWK -rra -swc -wBG -qOk -qOk -qOk -qho -vcc -aOf -aOP -hYC -cJH -kNZ -tCz -rVr -alU -alU -alU -alU -alU -alU -alU -xmr -hDz -bqE -bqE -alU -alU -bAe -bBJ -iJd -hcl -bBD -byo -bCL -xgx -bCL -psj -ajd -atk -ajd -cAb -xnR -uTL -ajx -tCd -dhR -jOf -ltg -aag -agX -agX -agX -agX -bBr -bYu -cnw -aaf -aaf -aad -aaf -aad -aaf -sAD -aad -aaf -amO -tpx -qra -cKc -bGL -bUR -cxs -aaa -aaa -aaa -aaa -aaa -acm -lbb -amY -njj -fxf -iLk -kCA -iMg -llT -njj -tNt -lbb -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(93,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -adQ -adQ -adH -adH -adH -mFC -oFh -adH -wCc -wWK -oLl -wkw -wWK -nsr -jyp -pUA -txu -dVc -txu -eAU -yjT -aGI -aKK -aPv -lhj -bdU -obU -byf -fXb -jnT -jnT -byf -umc -rtp -naT -jnT -iDK -byf -bBg -aHF -aHN -aJD -bBS -qVS -wGr -oHb -bCm -aYs -aYs -aYs -bIc -xsr -bHh -ajd -aer -cwO -gnE -akl -ajx -aVw -ajx -ajx -bmz -tRS -arq -ygt -bEF -ciJ -bEA -sMD -oep -kRE -axZ -oYn -ifx -awS -noq -iBR -anh -czy -amQ -tWl -cKe -anh -anh -anh -aaa -aaa -aaa -aaa -aaa -acm -aFI -cyr -njj -sKH -sRp -oyx -lYd -jGy -kpf -njj -aFI -aeu -aeu -hzC -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(94,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -adH -adA -ajG -adH -abN -pRW -cDE -adH -oJY -gbF -xsK -pef -oLl -bLc -lQT -vWK -hzN -pET -hzN -wOO -yjT -aGI -aKK -jZU -iWc -wAO -wAO -luW -wAO -qpy -tsn -wAO -sim -sim -uBm -vPi -sim -nwx -sim -nwx -qMR -nwx -sim -eAY -boC -tvl -lgZ -bEB -bEB -bpH -aYs -aYs -bIc -kBH -ajd -ajd -xnR -fKt -cou -dHC -bZh -ajd -bpl -bBr -cdj -bEA -bEG -bEA -csd -omJ -chd -ckw -chd -ezM -hTY -ctF -xBR -wtb -cxU -czJ -wVz -qaA -cKi -akK -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -utB -qES -kpf -iLk -nDy -szy -orb -kpf -tNt -wgQ -aFI -aFI -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(95,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -adH -aea -czi -adQ -cAF -pgy -adH -adQ -adH -adH -ejz -kYL -wWK -tZe -hqN -tZe -ncR -tpU -duZ -sjJ -tZe -fhq -aKK -buD -wAO -wAO -dJZ -fiu -wdE -duf -nEu -gUd -thp -vtN -rZe -iRt -oIr -eyj -sim -jId -pHZ -dfF -sim -bDk -mSA -mSA -qCt -mSA -qKT -fZF -bEB -bpH -bHk -bHI -oAl -ajd -ajd -tER -byB -cea -ceR -cgi -cgI -cho -chZ -chZ -chZ -ato -coO -cnF -sMk -aIS -bIi -hpX -bIu -qdK -bFa -bFa -bFa -dAV -bGS -iBa -cno -anh -anh -anh -aaa -aaa -aaa -aaa -aaa -acm -aFI -amY -sIT -vRn -vZl -mqF -hzc -njj -ygB -ygB -iLk -aFI -aeu -aeu -aeu -cry -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(96,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -adQ -cmo -mkR -adH -adH -lLm -cBc -cAF -cBg -adH -htX -gGG -wWK -gOd -qCa -flW -tZe -wfH -ezG -tZe -tZe -aGI -aKN -xAK -wAO -gON -svU -quC -tPt -duf -pes -mRD -sim -kZp -rZe -kxy -dXx -gXK -sim -gfH -pkU -pBc -thp -fJx -nJY -xFx -wCs -wlt -qKT -qKT -qKT -igQ -aYs -aYs -bIc -bOQ -ajd -aer -ajd -nzp -cBm -ajd -bws -bBk -bBk -aaY -aaY -pGA -chd -qov -axF -ebP -bIj -bFa -bFa -bET -bCw -bFM -bzv -bGw -bHS -wOv -cnp -bUP -bUR -cxz -bUU -aaa -aaa -aaa -aaa -acm -lbb -kxF -kho -kho -njj -njj -nju -tNt -sIT -njj -fFD -aFI -aeu -xzv -xzv -ahr -xzv -cFY -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(97,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -adH -aqn -dhL -oTZ -adQ -jXY -adQ -cBf -adH -adQ -adH -aTf -adH -rJn -nDP -icI -xmZ -wtf -xta -itL -yjT -aGI -aKK -xAK -luW -kQw -eVf -okw -duf -duf -qgX -nEu -qLE -iRt -kPG -uwS -rMv -rnk -qld -lXq -drk -sim -sim -bRX -mSA -gml -rdK -vvq -vDm -nrY -qKT -gyT -bHl -vtp -aYs -bOR -bGg -ajd -bWR -bMR -ajd -ajd -izm -abU -aci -okm -aaY -ubr -chd -cnG -bXV -xVk -aIR -aMM -bRT -cIc -bRT -cLJ -qdK -bGy -sDH -yjH -bUz -anh -anh -bVn -aaa -aaa -aaa -aaa -aaa -acm -aFJ -vbL -piY -kho -sIT -nju -njj -njj -lVA -nju -gyE -bKO -aFO -pIj -mfi -gWV -gWV -tto -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(98,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -adQ -inX -cce -aix -aiC -uZa -oNe -amo -amo -aqm -jGh -aEc -adH -nRG -jUv -kLm -wGT -cZo -lVx -dqz -yjT -aGI -aKR -tTn -pbW -kZA -kTU -pTt -sdL -eKh -dPh -kXs -nwx -eaD -vdA -pBd -moO -jlg -sim -sim -thp -sim -bAM -bRY -nJY -elp -hbJ -eVk -lOa -oMj -nJY -blJ -tYW -uNB -xyM -bOT -bRb -ajd -aer -bNF -ajd -eiB -jfJ -rRF -jfJ -ckg -ckI -ckS -cmG -cnV -bIj -sEM -qTq -bFa -bFa -bET -bET -bFa -bFa -akK -bwu -akK -bwu -akK -acm -qJs -aaa -aaa -aaa -aaa -aaa -qJs -utB -dwr -oGc -vSH -njj -njj -njj -njj -tcG -nju -oij -rgQ -gWV -uyk -gWV -gWV -gWV -tto -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(99,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -adH -jRP -cDh -bpk -cAH -ifO -jLe -cBk -adH -ajr -lLm -art -adQ -hKY -jtJ -tWd -fyl -nWd -hqz -tZe -tZe -ioF -aKU -tTn -pbW -kTU -wwj -pTt -scy -jsI -wVq -eSe -nwx -uTl -vdA -nqA -muH -dHK -sim -cjG -lxQ -sim -bDk -bRr -mSA -kdP -gxu -eeL -qyZ -qjw -mSA -boC -bHX -boC -gWG -bYW -bBj -bOU -gTr -qoa -aBJ -acr -cps -cNz -tUU -arp -bBk -ubr -chd -cpW -bFa -bFa -bET -bFa -idD -idD -idD -rko -idD -idD -idD -idD -idD -rko -rko -idD -idD -aaa -aaa -aaa -aaa -aFJ -aFI -uie -tNt -svX -svX -svX -pXb -pXb -tvC -iLk -ujW -bKO -aFO -pIj -lxB -gWV -gWV -tto -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(100,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -adQ -cAr -sdO -opx -adQ -bsf -akR -cBc -adH -cDb -cqp -cDP -adH -fvI -dQu -tik -fyl -qEo -tID -yjT -cdN -aGI -aKK -xAK -luW -tnC -jXX -xCv -uNl -uNl -uNl -opV -qLE -hUi -jPA -etE -rMN -muH -uYe -tSu -dMg -sim -rwI -asF -asG -asF -akL -asF -asF -asG -asF -aos -riE -avu -hsE -bOV -bRd -bOU -ton -quq -aaY -wbd -cNx -cNA -ntr -bCd -bBk -mdR -cpd -ngz -bFa -bGf -bRT -bET -idD -jnU -nVD -nVD -idD -knR -thE -thE -idD -mrF -xcO -xcO -idD -jAp -aaa -aaa -aaa -aFJ -eyb -tbg -dCE -pwM -rFl -pZk -ute -qeZ -fvl -jZF -dHr -aFJ -acm -xzv -xzv -ahr -xzv -cFY -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(101,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -adQ -adH -adQ -adH -adH -bxN -tfu -tFu -adQ -kkf -arh -gps -adH -mOB -eWZ -pfL -fLj -xQq -vKw -iPk -cdO -aGI -aLb -xAK -wAO -nYV -jzQ -kyk -uxJ -qCn -uxJ -kyH -sim -kLn -hUi -jXf -fyv -onN -sim -tKT -iwW -thp -bRY -asG -hFA -aaP -bMn -wXE -asl -xwo -vYa -iLo -bPA -bVs -bLS -bOX -pDe -bOU -aaY -rhG -aaY -vpn -cNy -pFa -nPa -arr -abT -pBs -ceS -cFC -bFa -bFa -bFS -bFa -rko -nVD -mMV -xnp -idD -thE -rPb -iTp -idD -xcO -fQc -tkL -idD -agt -alm -qgx -aFJ -aFJ -rhk -eGd -dUd -cFV -pMx -tOf -lTS -iII -blM -hhG -hfo -eOX -iYJ -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(102,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -adH -pth -crI -crW -cCT -cDx -cDO -kAm -adQ -adH -jYm -dQu -ndE -uqP -hLl -yjT -cdP -aGI -aKK -xAK -wAO -vJI -iaL -fco -pxE -mij -oHY -wAO -vSx -wAO -jJh -wAO -wAO -sim -thp -sim -sim -sim -bRY -asG -uiT -arB -atc -avy -asm -asw -asP -axj -bov -auP -iPY -bOX -bRg -hjU -aaY -aaY -bws -aaY -aaY -aaY -bws -aaY -aaY -tXW -cpN -csp -bFa -cnz -bGG -bET -idD -lHG -sko -jHj -rko -pCL -gIv -sHA -idD -tzx -gAM -wXD -rko -acm -acm -acm -lbb -fHS -pBr -yag -hgQ -oZM -vup -raA -gTc -mpM -qQP -uUx -tgK -aFJ -aaa -aeo -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(103,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -agt -acM -alm -aeu -coy -aUz -aeu -alm -acm -aaQ -aeo -aeo -aeo -acm -alm -acm -aaQ -aeo -aeo -aeo -aeo -acm -alm -aeu -aeu -aeu -aeu -aeu -aeu -adQ -opX -crS -csf -cCT -agV -cAF -gps -vTb -adQ -adQ -wJO -adH -adH -adQ -adH -adH -oRZ -aKK -xAK -fhH -sNY -lxO -qHG -xYI -qHG -lrG -uwD -igH -hdT -mYk -vqW -wAO -aLl -hxb -bDk -cem -bRX -bRY -asF -pzX -ask -aaV -aWO -aoT -pKb -bNq -rez -api -auP -qJD -bon -bOX -bZx -bQU -ayA -oEX -wzF -cgO -bBy -phI -ckh -axF -lUc -dAr -rQn -dKp -kjI -bej -bFa -rko -xHX -kPg -qwx -idD -xHX -kPg -mUT -idD -nvo -kPg -bvF -idD -acm -rJU -enJ -aFI -tIV -wDG -okY -uhj -aFI -jOO -kIo -jVg -hmT -mYN -aFI -mLF -aFJ -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(104,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -cmU -cmU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -acm -aaa -acm -aaa -acm -aaa -aaa -aeo -aaa -aaa -acm -aUz -coy -aeu -aeu -aeu -aeu -adH -cCF -brV -iLc -bsf -anY -adQ -leY -cCU -cDh -cDl -aNE -cDN -cDh -cCU -cDa -cDq -cDV -aLc -kGS -tBQ -tCu -dFU -pes -kYi -oDR -duf -vhR -mlj -pTt -egB -iBX -vSx -aLD -bRY -asF -asF -asG -asF -asF -asF -xWP -auI -atf -auK -fii -ccR -iUr -api -auP -auP -iPY -bRh -bZx -bQV -axF -bZV -qGC -bMM -aEL -qGC -ckm -ckJ -lbl -cpU -cya -bFa -vEA -bGU -bET -iVw -cVb -vdS -rrS -kVN -oDt -kVN -rrS -kVN -sRi -kVN -oaK -oLp -tvH -rJU -fhA -aFI -gzy -tXc -okY -hgL -aFI -dKD -kNl -kxi -svG -rdH -hbZ -jXM -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(105,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cmV -aeu -aeu -aeu -aeu -ceF -ceF -ceF -ceG -ceF -ceF -ceF -acm -aaa -acm -aaa -aeo -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -aeU -aUz -aeu -adH -adQ -adH -adH -adQ -adH -cCU -aya -slz -ati -auH -mpG -mpG -kdM -mpG -mpG -aCD -adH -bdf -aLd -qsG -wAO -wAO -kLI -dyM -xYg -gvR -wXT -wAO -fDo -pmd -dyi -lXn -wAO -bpq -bRY -asG -aeM -nyV -bkQ -aaD -asG -juQ -bIp -bKK -bLg -dAH -avr -iUr -apj -bSH -auP -iPY -bOX -jXU -bOU -axF -cag -cbh -cia -bBB -cqX -ffq -axF -cxW -bEA -qvw -bFa -uEM -bEV -bFz -qxq -eWh -lib -hgI -czF -rDC -nqY -mzw -rJU -kpw -oKk -pyo -tth -tth -hbO -kwT -aFJ -nxT -lVA -okY -ukv -aFI -xSr -aFI -jVg -uqd -mYN -aFI -daZ -aaQ -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(106,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -asZ -asZ -aAg -asZ -asZ -aAg -aAg -asZ -asZ -ceG -ceF -xbZ -acS -dHw -gws -ceG -ceF -ceF -ceF -aaa -acm -aaa -aaa -aaQ -aaa -aaa -acm -aaa -aaa -acm -aeU -aeU -adQ -orA -chj -vxg -osF -amo -aqs -arh -dHI -cBf -mpG -uxN -ifu -hjD -nSq -mpG -mpG -adH -aZs -aLn -pfS -rHZ -vSx -wAO -wAO -aYJ -wAO -vSx -vSx -vDb -nEu -nEu -hoE -wAO -aLQ -bRX -asF -gAE -aao -arL -wKH -bFp -eDs -bIv -avz -asn -bKi -asQ -asV -acN -bov -awd -qfj -bOX -bZB -caV -axF -axF -axF -axF -axF -axF -axF -axF -ubr -csc -cnG -bFa -izd -uvX -bFs -ind -ewf -jQk -xof -lMR -kSl -qKO -gZR -qIt -pQY -rTw -tdH -gRF -pXm -xtT -dQN -ecj -fWh -bbL -mwZ -pLV -aFI -acK -aFJ -uns -hlh -oPj -fjj -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(107,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aAg -asZ -asZ -asZ -aAg -asZ -asZ -asZ -asZ -aAg -ceF -ciT -sVj -pfM -pYO -mQS -adR -adZ -aak -aee -cHu -cHu -aeS -aeS -cHu -aeS -aeS -cHu -aeS -aeS -cHu -cHu -cHu -ahY -aiD -akO -bdm -mFC -adH -adQ -cDk -cDk -adH -kdM -wMK -nIq -qlk -mfD -gkb -hIH -kVj -afA -aLr -aNs -aPo -aRX -bdC -aVz -bdC -bpq -amg -wAO -wAO -eFH -aOy -vSx -wAO -aLT -bRY -asG -rFa -avU -aaz -iwV -avc -mUS -bIx -mTW -ast -rHn -bHp -bLy -bPD -eRm -asF -obS -bon -bZD -caX -xPm -caD -cbC -pEs -kRv -cbR -dJB -cbR -pZN -bEA -czA -bFa -emc -vEA -bFz -sZW -pqo -siG -hdc -qSw -vOg -wjw -bqf -sia -laN -mHk -lFh -rmW -iIi -rwo -nXD -aFI -tfR -pgr -hXq -aFI -aFI -acK -aFJ -aFI -npd -aFJ -aFJ -acm -aaQ -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(108,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -asZ -asZ -aAg -aAg -asZ -asZ -vPm -asZ -asZ -aAg -asZ -ceF -jBT -auf -lDV -nAe -fpk -peu -chO -iyi -ceF -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -adH -adH -adQ -ood -cyz -adQ -ciZ -bSp -bSp -nnU -uxN -hTt -skB -taM -hjE -uCR -hfA -aFq -aPv -aLy -vTi -ahx -aox -vSu -aVQ -ucc -bat -bdC -bdC -auo -bdC -bjh -bdC -boR -kCt -joA -wLR -kbu -bAx -bAx -iwV -asF -asG -asF -arn -arn -atn -arn -aur -arn -arn -asF -asF -dOq -bOX -cbi -xWc -ceS -cgk -rvw -cao -bEA -bEA -bEA -bEA -bEA -vJJ -bET -bFa -xyc -bFs -itH -ghx -hKf -rWj -dIq -aCc -jPN -dBP -fZO -qiu -uEa -gBn -bDZ -rgj -nHA -wev -aFI -fvj -rok -ghj -lbb -aaa -acK -xee -aFI -sNR -aFI -dKD -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(109,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -asZ -asZ -ajE -raM -qUO -alz -ceg -bGE -dtA -pIy -asZ -adg -azv -lbF -azv -adg -rex -chD -chD -chD -chI -aaa -acm -acm -acm -acm -aaQ -aeo -alm -aaQ -aeo -aeo -acm -aeo -alm -acm -adQ -fqL -adH -adH -dny -cGi -cCB -cGp -uxN -vKc -xRE -pDF -jQW -why -qPH -aIs -aIc -aKK -lBj -dQb -aox -aMi -cir -sZk -aox -amx -akM -apX -bkj -wMe -boy -apX -lYT -bAm -asF -eug -qQQ -uqb -bmj -aaK -dVw -oUl -arn -guZ -dmd -kNA -qvZ -pmu -wwa -hca -vgT -nSd -bZF -cbl -uSL -bXJ -cbE -mHi -cbP -erO -nPb -cdr -cdr -jxm -lyF -bFa -bGG -suN -eBa -tHB -oCO -lWh -fjg -oca -jpG -all -mkz -xzX -mkz -xsk -ehj -inL -cKv -wEf -pKi -aFJ -aFJ -aFJ -aFI -aFI -aaa -aaa -dKD -cFX -aGc -cFX -dKD -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(110,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -asZ -aAg -xsz -cIb -tzU -cdV -cdV -cdX -ceD -iAk -hbf -mtA -adT -mha -cgp -tqQ -adg -ttz -yiF -iGD -lTc -cis -ccP -ccY -bzS -cdt -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -cDk -aqm -cDk -bSp -cCB -bSp -cGl -bSp -uxN -itn -jRQ -wFL -eBZ -uxN -uxN -ago -eFy -aLz -aNw -qUF -aox -apX -civ -aSq -aox -apX -aox -aox -apX -apX -aox -aox -bqT -boX -asG -arK -tXk -apP -vDn -nkn -eSQ -aUk -atn -puG -nUa -fCd -oDF -eeq -olM -tPL -nMw -rMc -bZG -cbn -fwx -sQQ -fwx -anw -kec -fwx -sQQ -bEL -bHm -bFa -bOB -bFa -bGG -ljT -ira -kgn -taQ -pOr -dvb -oBv -fIr -uQc -kbi -uGr -tIK -sLL -iSk -bfd -vcA -tth -acK -idD -rko -idD -idD -idD -aaa -aaa -sKK -ktq -ecp -ktq -tZH -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(111,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -ciQ -aeu -aAg -asZ -gkD -aaw -uqv -cdY -cdZ -pUK -cdY -abS -qKf -cft -adg -byD -cgJ -kBU -alV -xzg -afw -afU -afw -cit -ciw -bAf -acm -aaa -cev -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -adH -jjS -adH -ccZ -cCV -cGj -cGm -ccZ -cGr -uxN -yjd -icn -itn -uxN -ago -tVB -aIk -ajJ -aKK -lBj -tXn -aox -aeD -apX -aox -acm -cry -aLW -acm -cry -acm -aox -bqZ -aox -prS -fno -prS -prS -fno -prS -cAB -prS -prS -dbG -rZn -tNO -iba -eLd -olM -hmJ -fWe -iPY -bZH -kuI -fwx -mhU -kOH -lYm -dVC -cPx -fpm -nuc -fpm -bFs -bFS -bFa -aRQ -hST -mTD -mTD -fsJ -kQp -sxA -gnH -tth -tth -ktk -tIK -tIK -tIK -xuh -tjl -wxt -vTl -okk -lRG -kWQ -gQs -nGB -idD -aaa -aaa -acm -aaa -cry -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(112,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ciI -cmS -asZ -asZ -aac -aay -iBD -cdY -gZo -mGx -ceq -atB -xmB -acu -oPB -acx -mIX -aKI -xmx -adI -adW -mld -aed -jsj -aeq -aex -aoE -aoE -aoE -aqv -awb -axk -awb -awb -awb -awb -awb -axk -awb -aWa -rcx -aWa -aWy -aWI -aWy -aWy -aWy -cds -chN -qmX -chU -rjx -aYk -byC -cjh -aIm -cjj -aNy -aPv -aKe -aTR -acm -acm -asj -axf -axf -axf -sRn -axf -axf -paZ -bff -bff -tPZ -ega -uaP -fDS -pES -fOZ -dZD -oaW -mBn -dbG -kYM -nom -iba -eDI -olM -imV -rqY -uWd -bZG -cbq -fwx -ohN -nRg -qZU -dVC -pGM -fpm -iji -rlW -bFs -bFS -wct -xVo -wct -cEn -bFs -pAH -icT -sxA -xJT -tth -uhd -utD -eum -kcG -hht -nTL -psO -ekZ -uRP -acT -kPg -ieC -mGu -nGB -idD -acK -acm -cow -aaa -cow -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(113,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -anH -aeu -asZ -aAg -aam -aaI -vPL -cdZ -cdY -eZS -cdY -nhd -wjs -mHq -adg -lxf -nIX -aph -chX -msW -cij -ahz -cio -ciu -ciy -bAf -acm -aaa -chM -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -adH -uDJ -adQ -upp -aAL -aBt -aEO -joj -aKi -aLA -cGx -afu -qag -ago -aDf -rnf -ffY -cgw -aRk -aPv -aSn -aTR -cry -spr -arl -arl -bdQ -bdQ -bha -arl -axf -tPZ -tPZ -fno -prS -fvu -fOi -hCz -sBB -sBB -emV -wmK -nEl -dbG -sgc -vnK -rBq -eIc -oiW -xbm -mzi -nSd -bZG -cbq -fwx -tUl -gvk -vHK -nFj -ucC -xqJ -mWQ -igk -bFz -uZY -wct -bFZ -bRT -cEw -bFs -pqt -tJc -rfL -xJT -uCw -qJc -yke -dEq -dXX -iRZ -rmr -rTA -fIm -nIV -eQf -nLu -pkY -pen -nGB -idD -acm -aaa -cow -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(114,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -asZ -asZ -asZ -nNw -xaf -abg -abC -abF -abC -abC -tlS -krv -adT -ixf -ccr -joL -adg -qfq -apx -irE -ill -chL -ccX -cdl -bzS -cdu -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -aaa -acm -aaa -cDk -btF -cDk -ciY -ciZ -ahh -ahh -ahh -ajC -ahh -ahh -ajC -ahh -cfM -cfM -cfM -cfM -cfM -aRl -aAE -aKg -aTR -acm -arl -arl -rIf -bsI -gXy -atd -bdQ -axf -tPZ -mPI -bGN -oXB -nUt -kjy -wCu -dbz -wir -iom -vuR -nyP -dbG -gRL -wmG -ufi -cgm -nZo -ovp -nQy -rMc -bZG -cbq -sQQ -ixs -gvk -gvk -pMi -maU -qUM -gbt -sqO -bFs -cxL -mtD -aRQ -cny -bEV -bFz -qgP -qpi -xmd -dRs -tth -qJc -gfK -eIb -elR -iRZ -pOK -bfd -uGe -rJU -vfO -idD -wBQ -idD -rko -idD -alm -acm -aaQ -acm -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(115,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -asZ -aAg -apn -kbf -abk -abD -abM -poZ -pKt -bxP -asZ -alV -acG -hPy -chV -adg -qhT -ciM -chI -chI -chI -aaa -acm -acm -acm -aaQ -aeo -aeo -alm -aeo -aeo -aaQ -aeo -aeo -alm -acm -adQ -bKQ -adH -adH -mpG -ajC -oxP -cdn -fGp -uAj -cfc -xOe -cfA -aCM -iYc -tbJ -xzA -cfM -tmu -ken -xyt -arl -arl -bha -dDS -iJe -bnU -bzf -bzk -bzd -vsF -eeu -qGO -spN -nHL -lsT -tEA -mRh -vWa -ezd -tgp -qFL -peB -dbG -dbG -xTk -usM -dbG -fno -prS -prS -czK -bZG -cbq -xeC -jiV -mTX -gvk -mNE -piT -bFs -bFs -bFz -bFs -bFa -hST -bFa -cnz -bFS -bFz -fmD -snB -xmd -uVC -tth -qJc -yke -lcM -dXX -iRZ -mUC -suc -qvp -vTl -gkx -lRG -oOf -osy -oOf -idD -acm -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(116,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aAg -asZ -asZ -asZ -aAg -asZ -iHp -asZ -aAg -asZ -asZ -ihg -rLN -fSZ -mHd -fAF -rRw -rRC -ihg -aaa -acm -aaa -aaQ -aaa -aaa -aeo -aaa -aaa -acm -aaa -aaa -acm -aUz -aeu -aeu -aeu -adH -hQf -jvV -jAJ -mpG -ajP -ccV -cdo -cdK -ceO -cfd -ceO -cfB -aCO -adB -cXK -aIA -aCV -aRo -mAE -buF -arl -ufz -cdc -pUD -qys -byJ -byS -bdQ -bdQ -axf -tPZ -kSk -spN -oAc -wNZ -mSK -kiK -wOG -mEy -sMz -qoB -vTI -oFe -pQs -blC -nrI -frc -xxD -ecX -wTc -qfR -mWt -cbr -fwx -gge -fwx -oIw -fwx -sQQ -bFa -amP -vzc -bEH -bFc -itQ -cpV -cnA -cnC -bFs -tFY -xBo -xmd -ugB -hDo -enE -eVu -tIK -iqM -eaV -snK -oYG -iNb -oKk -vfO -kPg -oOf -oCa -oOf -idD -acK -aaa -cow -aaQ -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(117,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -asZ -aAg -aAg -asZ -asZ -aAg -asZ -asZ -aAg -asZ -ihg -pie -yah -wrp -fJz -eOQ -cNT -rZN -acm -aeo -aaa -aeo -aaa -aaa -aeo -aaa -aaa -acm -aaa -aeU -adQ -adQ -adH -adH -adQ -adH -cFU -iTW -agA -kdM -aoF -atg -aua -aua -axu -cfe -cfq -aAV -aCO -aoD -bJy -aIJ -aLB -aNB -aPP -cxH -aTV -bay -aYO -bay -kHJ -byK -byT -bdQ -cry -axf -tPZ -gJh -lhH -sdR -lCl -fPq -qQu -wOG -xWk -sSc -iDD -rfS -kpP -peB -sET -wHt -wHt -uyR -peB -vOt -uFR -bZR -cbs -ahS -bJE -uvi -rDl -uvi -bML -ckq -ckK -clC -bYw -bFT -xBk -cBp -bET -bFY -bFs -tth -keT -uar -rJU -tth -tth -aoJ -fbc -lQg -utE -kkL -pvR -iho -nIV -eQf -nLu -oOf -tSH -oOf -idD -acm -aaa -acm -aaa -cow -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(118,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -asZ -aAg -aAg -asZ -asZ -aAg -asZ -aAg -asZ -rZN -ihg -xYa -mAj -mPo -pwa -ihg -ihg -aaa -aeo -aaa -acm -aaa -aaa -aaQ -aaa -aaa -acm -aUz -adH -adH -gtL -kvI -jjR -cFa -adH -adQ -lLm -cBc -mpG -mJV -cdd -cdq -cdL -atg -aua -aAf -aBd -aUS -aZM -uHZ -vMP -cfM -aRr -rVQ -chw -byj -mUI -cdc -baA -sEg -byL -byU -bdQ -bdQ -axf -tPZ -sYg -hcD -ulw -bCY -dvn -kfK -wOG -xWk -sSc -gTO -dXa -pcE -vEU -eTr -qYi -vMJ -sIq -rKr -kLL -bSf -jrN -gno -qsb -uvi -qHe -rTB -qsb -qsb -bFs -aqd -clD -aHV -bFa -jOd -dAD -bFa -dNs -peg -lNT -rNC -muT -cWw -qSA -noY -qHD -tgv -xbK -jNB -bzT -bfd -xvd -tth -vfO -idD -ybY -rko -idD -idD -ciQ -acm -cow -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(119,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -coy -aUz -aeU -aeu -alm -aeu -aUz -cGI -aeu -aeu -aeu -aeu -ihg -rZN -ihg -ihg -ihg -rZN -ihg -acm -acm -alm -aaQ -aeo -aeo -aeo -acm -acm -aaQ -alm -aeu -adQ -cCr -ncv -cEI -cEN -ldP -akR -alG -cEz -agC -mpG -arm -ceQ -aFX -aFX -ceP -azA -ceQ -aAV -aCO -tYw -bav -cgu -cfM -ssb -axx -nCs -arl -arl -arl -sfh -qYZ -wpg -bzg -bzb -bze -vsF -eeu -noN -fYs -dEf -qAu -jpD -kIW -kxY -cpc -dbG -kZv -peB -dbG -dbG -nqr -dbG -usM -dbG -prS -prS -pwS -bZG -cbv -kTq -boN -rAr -rFg -xTP -jTR -bFz -avq -dTC -bET -wUe -kfj -dfq -aHV -bAu -jbD -jaD -hxk -omR -dcf -dhz -pdg -mEr -kCc -uOs -sMB -jpL -ptQ -qvp -vTl -gkx -lRG -qbM -jQf -oNT -idD -acm -aaa -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(120,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -ciI -cmU -cmU -cmU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ccz -aeu -aeu -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -adH -wJN -cEE -cEJ -cEO -cET -cEX -cFc -iTW -jCZ -mpG -ccU -ksT -cdB -cdM -axv -cfg -ceO -cfF -aCO -iRD -kSi -uZu -cfM -aRv -dWK -aLk -aTR -acm -arl -arl -oQC -aZH -bas -uCh -bdQ -axf -tPZ -jyz -xfH -eJz -uAo -bnA -hCz -egH -hTF -yhd -rbD -dyx -dbG -keH -loX -dbl -sqr -jHu -lSR -jKf -rel -bZG -caB -lYi -rKN -lyT -wjm -wjm -dvu -bFs -pKx -fpC -bGP -nfH -bFs -wOF -bFz -qCF -bFs -tth -oKk -gwX -uNA -uNA -tth -fmB -qMa -vjy -rjm -jsL -tMH -pEg -oKk -vfO -kPg -dxn -nQl -oNT -idD -acK -acm -cow -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(121,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -anH -aeu -aeu -aeU -amq -aeu -aeu -aeu -aeu -aeu -aeu -aeu -alm -acm -aaQ -aeo -acm -alm -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -adH -cEB -oVl -aoa -apI -alf -akS -alK -cEz -nYK -iTj -iTj -tzO -cdC -tSY -axA -cfh -ujx -cfG -aCO -wWx -kyS -cfM -cfM -aRw -aPv -aSn -aTR -cry -spr -bha -arl -aZQ -bau -arl -arl -axf -tPZ -tPZ -fno -prS -mzU -bnA -ieu -kFu -kFu -pmJ -hTo -kcR -usM -jsk -big -gYq -vyM -gYq -ddA -hnt -bSf -bZG -cby -kTq -eMc -rFc -jkY -toZ -bSi -cks -nfH -bGG -bEV -bFg -bFs -bFH -ycW -gxe -sVn -tth -etH -scf -qsj -uaj -rJU -rfl -svR -qYS -hZR -hFU -vHh -nUE -hsu -eQf -nLu -ocw -yiQ -oNT -idD -acm -aaa -aaQ -aaa -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(122,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeU -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -adH -adQ -kHx -cEL -mRu -cEV -baH -cJm -lLm -baH -cFy -lpT -iTj -lpT -iTj -iTj -ahh -ahh -ajC -cfU -cfM -cfM -cfM -cgz -aRy -vnd -aKe -aTR -acm -acm -asj -aHz -aHQ -aLX -dWL -bcw -bda -bdW -bfk -bjm -tPZ -gLG -dGN -nDe -mnt -okq -pwg -biN -tNu -dbG -rIt -oth -keV -rmY -rFe -qtb -jKf -wTg -bZU -cbx -mBN -oBA -pqb -lTM -pqb -tdW -bFs -klb -bFs -bFs -bFz -bFs -ftN -pdd -old -pDW -tth -mPs -jPF -qsj -eNS -tth -wpn -pSf -sOv -kkr -hlc -xlm -rWz -tth -vfO -idD -wBQ -idD -idD -rko -cke -acm -aUz -aeU -cke -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(123,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aeu -aeu -aeu -cIU -cIU -cIV -cIU -cIU -adH -adH -adQ -adH -adH -aXW -rCb -xsU -aoI -aqw -aqw -atl -kTx -cFT -aXW -scA -pta -hYd -ptl -kQU -fCI -ago -aLJ -aKK -gPY -sgT -aox -aeD -aox -aox -cry -acm -aOk -cry -acm -cry -acm -bgP -xXS -prS -prS -fno -kUK -tEb -rPt -tEb -kkY -tEb -tEb -lih -riG -fnj -wgL -lEK -vtw -tVX -cbx -bZG -cbs -kTq -rDe -whm -iSG -vTT -fkB -bFs -wUe -bFs -kKw -dik -fog -lIY -cZn -gBt -xoK -uCw -gVO -mnA -hqR -vWN -hKn -jAe -qRS -dXW -pol -ibn -iHu -jeS -vTl -gkx -lRG -jDT -sCf -wrb -idD -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(124,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeU -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -aXW -baH -baH -aXW -aXW -baH -baH -kKk -avm -baH -vmf -sRM -mJM -hJc -lQl -vdJ -wmA -aLM -aKK -oeB -aox -aox -qVB -pLA -apX -aox -apX -aox -apX -apX -aox -aox -bgP -pcX -olK -nKz -peU -fXp -tEb -tnh -mse -pEt -hMr -pve -lih -xbn -ogO -mXv -frw -sCo -jKf -gVG -bZG -cbz -qsb -qsb -qsb -uvi -qHe -qsb -bFs -mQv -bFz -fmk -erd -yed -cxT -tNT -jWx -liW -tth -pat -wWu -uWx -qtT -tth -tKm -jEo -jho -jJS -iuC -wCn -pdM -oKk -vfO -kPg -ocW -uhO -wrb -rko -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(125,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aUz -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -baH -cCP -imu -cEj -kLe -cEx -aXW -atl -avp -baH -mTf -eHD -ttY -snP -lrL -lSk -cGa -aLV -wbW -yfj -aSv -aUe -aWP -aWP -baB -asD -bed -bfl -mkB -bjp -lhe -aeD -bgP -pBQ -aAT -dns -hTj -gvD -wUj -iyc -vgz -rJI -nMC -coG -lih -lih -bOZ -ouF -lih -lih -lih -mrO -cah -caX -qaY -caD -cbG -cbM -fDz -wJF -lIe -gui -yfW -mEU -jgr -qFQ -tyk -mRi -oGM -nto -bxh -tkp -uHe -kuZ -dLG -tvj -iAd -ffZ -geg -vKb -pCa -wXW -nKl -hQe -bEa -ojE -vgH -wrb -wrb -rko -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(126,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aeo -aeU -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -baH -cDR -cEb -cEk -cEs -cFk -baH -xsU -aXW -baH -ieq -uvl -eEU -sdZ -mrN -vjk -cFq -aLZ -cKd -aox -aox -buB -ajq -xwt -lRf -sox -ref -ref -uuQ -uuQ -kbw -apX -bFG -euE -rBS -kRb -wTh -eXK -rPt -mmf -pxv -wET -rSs -hci -qAn -tRk -bPa -bWJ -bVF -aox -bOU -lXt -bZG -ccI -xWc -ceS -cgk -chd -chd -cin -chd -njw -yfW -cMs -hPI -cRM -pIm -pRU -kmC -roG -tth -psB -fKo -vJH -juT -oKk -ggo -qLu -cfD -nfI -jyr -tUc -ebj -iVw -ygU -idD -idD -rko -idD -idD -aeu -agt -aEg -cko -cko -cke -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(127,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeU -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -aXW -qLt -cEc -cEl -cJD -cFl -cEg -jcL -avO -aXW -roj -xqr -eFF -iVb -gaZ -fCI -xUW -aMc -afL -rWU -rWU -aUl -dON -rWU -uuQ -uuQ -lUB -yfP -mFz -uuQ -rcm -aox -apX -aox -aox -aox -aox -pjy -tEb -qaj -jEB -kFe -xbq -tSg -tEb -tEb -bOM -bAj -buj -aox -fpL -jwL -can -cbA -vvU -bXJ -cbH -cbN -uJt -cbY -cgZ -tbw -uHl -uHl -tjp -hgW -eZB -xnJ -aJA -pSS -uHl -aDj -aKw -bGl -fzm -aKD -kFE -hrh -kuL -iYW -uyZ -xio -xtt -iVw -ygU -aDT -clX -clY -clX -clz -clz -clz -clz -clz -clz -aEs -aeu -agt -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(128,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alm -aeu -aeu -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cJo -cIX -cIX -cIX -cIX -aXW -cDW -anT -cGd -sEt -arv -atm -fsU -bPV -baH -baH -aXW -fyV -tXI -yhK -baH -bdf -aLd -gKl -rWU -tXA -xQW -udx -rmH -uuQ -ifo -msc -dpC -rqT -bjq -ltB -bpq -tnG -bvQ -fGN -byy -bvD -bDj -tEb -lPu -taL -wCe -hzQ -goP -xmc -rPt -bpq -ljS -bVR -bXK -qKB -bXn -cap -cbB -axF -axF -tsV -paL -axF -ccs -bEA -eYU -bHo -fuC -eIs -msw -djf -qFX -yll -nFo -awH -eOe -uwh -afY -bnr -awH -iVw -iVw -wlK -iVw -iVw -wRO -lUX -iVw -ygU -aDU -aDY -aEd -aEi -aEm -aEk -aEf -aEr -aEf -aEr -aEt -aeU -ckf -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(129,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -baH -dQj -xZv -cIi -pFG -jLU -baH -eoe -gwc -axC -aro -aAk -aBu -aEx -aEx -wKO -aIX -aMf -ewl -rWU -usk -vVu -vmq -aJC -sox -ivp -lvY -dim -bvi -rou -epE -apX -bqb -txC -aIN -aox -bAM -bDk -rPt -lZZ -xIB -wCe -dws -dws -mNy -tEb -bAb -bDk -bRr -aox -kux -bOX -xND -cWK -oEU -cWK -cWK -cWK -cWK -tVe -ckw -eVR -cmF -pFx -lGk -lGk -uay -enY -wcd -fRs -ctN -ozA -cwM -cyf -fKu -awH -wDF -fFA -gNg -rJb -qGy -jJi -pim -eHf -ozk -aDU -aDZ -aEe -aEj -aEn -aEp -aEf -aEj -aEf -aEj -aEu -aeU -ckf -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(130,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aap -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -aXW -cDY -cEf -cEo -baH -aXW -baH -aXW -iez -baH -baH -wfB -baH -aXW -baH -baH -tQw -aLV -xAK -rWU -eLX -sfp -jcQ -lCS -uuQ -rpS -gcd -fOz -mfT -sox -tGj -bed -brL -lHc -bdg -bRY -bRY -bwk -tEb -plj -wOm -nfn -wlP -rCA -gRd -tEb -bAp -bRX -apX -aox -pRu -bXQ -caA -yaD -myb -vIe -uef -xUo -stx -ciO -bEA -rsg -kXA -lmK -fsh -vCS -mfz -lxl -dnZ -liA -bFt -nDE -aCu -aSB -jXh -awH -xaS -iGo -xPt -mwM -ucO -hCi -qGy -clX -cHN -aDV -aEa -aEf -aEj -aEm -aEq -aEf -aEj -aEf -aEj -aEt -aeU -ckf -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(131,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -aeU -aeu -aeu -aeu -cIV -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -baH -aXW -cEg -cEp -aXW -apo -iAT -cEg -nWj -baH -axr -cdA -esf -aCY -wfg -ban -osm -aLV -xbr -rWU -vTF -gQU -tea -agl -uuQ -iTb -gcd -fKl -gaJ -uuQ -uuQ -blc -uuQ -ykS -ykS -uGx -bAQ -ykS -tEb -tEb -rPt -tEb -tEb -tEb -rPt -tEb -bPf -bRY -aox -hFy -jwL -bOX -mNx -rgn -srN -onb -rob -oIH -fsQ -cde -eNx -mnv -fbH -hGq -oZA -lSB -xwQ -wPI -tSA -tEB -awH -aDj -aKw -bJP -awZ -awH -myY -kDr -xNQ -drN -ucO -uLS -qGy -oAn -ucO -qGy -oAn -qGy -aEk -aEn -aEi -aEf -aEr -aEf -aEr -aEu -aeU -alm -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(132,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeU -cui -aeU -aeu -aeu -cIU -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -cIX -aXW -clS -cIW -azW -cJI -cJQ -cJQ -dDv -smG -aXW -axD -aAl -aBy -aZJ -aRz -baW -aJb -aLV -tvf -rWU -rWU -rWU -fDD -rWU -uuQ -uuQ -uAx -uuQ -xrj -uuQ -mra -qek -vbp -oUO -wVw -pyt -llp -vBy -qip -orK -sdU -qHv -hQr -xjT -ykS -bRX -bRY -bAt -aox -sKy -bQs -bYo -key -yaD -rnY -rTV -iUx -lYu -yaD -ciO -joR -gKG -bHs -fuC -eCK -ygu -ism -mPH -cTP -mxG -ucO -lNt -rEl -gDI -mCW -qGy -xza -jpm -aHr -qGy -qGy -vkJ -jDu -urX -uNP -dMI -gqQ -ucO -aEl -aEo -aEo -aEo -aEo -aEo -aEo -aEv -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(133,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aap -aeu -aUz -aeu -aeu -cIV -cIU -bTj -aiw -cIY -cIV -cIY -aiw -cJR -cIU -baH -baH -aXW -aXW -baH -cJK -fQX -auC -ktG -baH -eaR -aAm -aBC -aDa -aSh -baW -aJb -aMh -iEO -klG -gmK -lhh -oRa -nPE -dRy -tvO -lWu -uuQ -xku -mPm -eyz -keq -fSI -ykS -jrp -fXK -yei -wzx -iPx -qIv -qIv -mzV -iCg -lLS -uGx -bAQ -vKC -ykS -aox -gat -bYW -bBj -cWK -cWK -fMq -ttO -rtO -pCV -yaD -ciO -bED -vwP -uHl -uHl -fES -jMo -fES -sav -fSX -fES -qGy -sLg -iwg -dRe -kVv -qGy -otx -xsb -xsb -jfl -opY -ffO -gwx -vjp -rdu -rdu -bAq -mTb -ehf -ehf -qGy -ucO -cko -cpY -ckr -cke -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(134,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cIV -fBX -ajs -cJk -aDF -tAI -ctx -ipQ -cIV -aeO -baH -wNV -fKE -dhG -cGb -cFy -cFT -fEX -fxE -huC -vTQ -uQB -auq -avE -baW -aJb -aLV -lyG -vVq -iZc -lEF -oRa -mfV -fGB -gJT -oRa -nYW -njs -jAW -xrO -vxV -vLb -oUO -vfG -fro -lDM -eeN -dht -kdd -gAm -jOT -llp -qur -odt -eZT -gSP -ykS -bIA -rWq -bQt -bYG -yaD -wig -irz -cPk -gek -ndn -yaD -ciP -chd -orN -lGV -oLY -dIV -gUC -jWX -anx -iTh -jeQ -mpx -xDG -iWN -hnz -dOh -ehf -iUa -nEE -fvt -fvt -kNx -pnt -xxU -fvt -rar -mVC -pHG -shz -hSn -vhk -uzC -qGy -ucO -agt -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(135,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cIU -vBv -ake -reJ -ckp -cld -ahH -aid -cIU -baH -aXW -gJp -gds -uzl -rzi -cJm -qKY -gZv -baH -oAH -aqT -tvx -avk -myQ -ban -oAZ -aLV -lyG -vVq -tiq -kHY -xCt -oRa -oRa -puJ -oRa -uaW -eMx -eOS -liS -wVS -gqz -ykS -jFR -qLV -lDM -eeN -dht -kdd -jOT -jOT -llp -ljH -fya -iMe -qMS -ykS -bIB -xmW -sqC -vBt -udj -qNw -sVH -rnV -tKZ -ggd -unY -qdo -cpQ -wOZ -lGV -set -cSP -qRF -qRF -aAy -xuS -xFU -mpx -utH -mmw -uHN -gCq -jrx -wUf -xjp -deP -gLE -qkL -vEj -rUg -vEj -eAV -hGS -riB -rjK -dQV -ewE -jYU -oIk -qGy -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(136,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -coy -aUz -aeu -aXW -baH -baH -aeu -cIV -ugA -cJh -otr -rAF -cJv -ahJ -iFr -cIV -cIK -baH -iUi -sDb -cJm -vWz -aqw -smG -lpT -iTj -aZS -aYH -fEJ -aYH -aYH -aZS -aJB -aMl -wUq -kiH -icj -lZL -dqk -hym -uIp -lXv -vtT -moM -mMe -yjg -piV -sbs -joU -oUO -oDC -fro -lDM -eeN -dht -kdd -lDT -muD -xEE -gCw -keb -toV -ykS -ykS -hyj -rLA -kNN -pAP -yaD -iyV -eQt -qpf -tOm -paz -cWK -xwy -fkn -iFw -uHl -buc -ydo -vqZ -sei -lfM -msI -sUu -iZY -gmy -pUR -nod -ncr -fAZ -ums -sjS -deP -sSC -eAV -pPr -jhu -lGd -qkL -dlF -cYo -ehf -xTR -jGv -jGv -jGv -qGy -aeu -aeu -aeu -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(137,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -wZx -aXW -wTC -aXW -baH -baH -aXW -cJi -liP -cIB -cJw -ahK -baH -aXW -awf -baH -cJm -baH -baH -uab -baH -auu -iTj -uZg -bhB -bhC -iwy -baj -ggL -aZS -oAB -aLV -vfe -pDn -nLC -vQh -ntU -gEl -epi -vtT -uGZ -wkB -njs -eMx -mMe -uKH -aJk -pqp -jJF -bwL -lDM -ydI -joJ -hUq -vrv -fNk -pJG -xqE -ngG -uGx -ykS -dsG -xUy -car -daT -gwk -oEU -cWK -cWK -wMo -cWK -bOC -bEg -bEg -hJi -bEg -efC -hva -fPw -lUO -vSe -tEd -rtR -euk -mQM -kPX -kbd -frk -txL -ehf -iUa -dTq -eAV -gOw -eux -kVo -kVo -kVo -qkL -jts -wRB -oNw -nbd -uKy -hnJ -gVV -qGy -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(138,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aca -aji -aeK -aeV -afj -afx -afM -afZ -hEu -cBK -nOZ -lpk -cIv -ahL -rCp -cIB -abZ -cFT -cJO -qNE -aqA -akU -hNW -auB -iTj -eEW -amm -aRR -iwy -aZT -bdd -aYH -aJK -aLV -lyG -glv -luB -vyL -cPA -ikV -eVL -mCh -sCu -uuQ -nBJ -eeV -ogc -wIJ -oFH -kIU -ljM -rJz -ely -nyd -oYi -xdf -nIv -row -dsc -fAE -qLN -ykS -bGh -pwC -ekw -bIO -kNN -eXx -sZq -mNY -igV -kqL -qeX -bEg -coX -chz -pwp -cmp -gzJ -woB -pBO -woB -xju -ver -xeu -mLa -mpx -tkH -flc -iKo -mXB -ucO -gaa -lCZ -eux -dGa -lAJ -erx -erx -erx -eAV -qxd -rUy -ehf -nRl -gVV -izS -dwf -ucO -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(139,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -iTj -iTj -iTj -lpT -iTj -cEg -pwz -elW -ixZ -mNf -ghs -ixZ -ghs -yko -ghs -wGn -mNf -aoO -lpT -lpT -iTj -iTj -iTj -axK -azI -aAo -iwy -aZU -bgB -aZS -sej -aLV -xWb -klG -klG -rbd -cPA -vtT -sGb -wSW -hMl -sox -uuQ -uaW -svh -wkC -mgL -ykS -hTv -nIo -deT -jMf -ykS -eUm -rbu -olX -djY -iQY -bZy -miC -bPr -bSa -bSa -bSa -ylV -yir -bQF -stp -sBZ -yjw -fqF -bEg -coZ -uTO -efC -efC -efC -wnR -wcH -wnR -qLv -fUt -jrK -fUt -fLf -qGy -ucO -bzH -fzA -qGy -aNP -sMR -gsY -gYM -vnk -gYM -lGe -gYM -wTq -fzE -waX -ehf -tSJ -het -ges -oKX -qGy -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(140,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -bwe -bbx -qyy -bfs -iTj -haD -bzW -iTj -iTj -lpT -iTj -iTj -iTj -lpT -iTj -iTj -cVj -aoO -iTj -hSN -aqq -enM -aXj -vzX -apG -aAC -kDq -aEP -aVd -aYH -aJK -aLV -lBj -wZv -klG -klG -hrk -pDn -vVq -vVq -klG -bnv -scm -moH -bux -bpJ -byr -bpV -fCS -bsK -byh -bAW -bnv -nCO -bPv -bPy -bPy -rLA -bGx -bGx -bPt -bZE -bZK -lzj -siC -rAS -bQG -tBc -sGl -cOx -xnQ -chf -chz -avS -efC -eRo -lOL -weD -yiy -nzw -vwG -doj -kPC -mWr -kTl -fUt -iVS -muE -iZr -wCg -lur -eQB -opS -kGl -dhc -pRA -pRA -pRA -gOw -nZQ -nMm -ehf -xTR -jGv -rlv -nLl -qGy -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(141,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -alB -aWJ -ayv -aWJ -iTj -xBM -brr -iTj -bbx -agQ -bfs -aWR -bbx -iFf -bfs -lpT -cJm -hyv -iTj -bde -aXo -aXO -atq -aXt -cYn -aBe -oBJ -qtG -bQW -aZy -axo -aLV -aPv -chq -beu -eih -wXo -mLl -boZ -boZ -bFh -btY -kiu -tDn -bAX -bAX -bnz -mHg -rUc -bGW -bGW -bIM -hSE -xki -bGx -bJJ -bKR -bGx -bGx -bZs -hha -bSj -urc -qlI -lDK -izW -toh -flP -mwW -pLX -rSK -bEg -bGH -gSi -gzJ -wIl -fyC -xUD -rmJ -iGn -oLw -ehz -vkN -lIv -okh -gWN -uNQ -jJt -vFz -ehf -lnH -kyz -qkL -qoR -opS -rzN -rzN -rzN -qkL -dlF -wRB -oNw -nbd -uKy -dsr -jGv -qGy -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(142,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -alB -bfq -aWJ -bhj -aWR -pmk -pTF -aWR -bhu -ayv -aWJ -bwn -aWJ -ayv -bhu -iTj -dab -aoO -lpT -aWV -aXb -iZE -atq -aXe -aqU -auk -auk -xFs -bFj -bbQ -aKb -axz -aNU -aRj -aRV -aUE -aXH -aYY -baF -baF -baF -baF -eUu -bjr -baF -bpn -brR -bvZ -byV -baF -bBa -bDo -bEY -bFO -bGB -bEt -dun -bEt -okF -qGi -bEg -bEg -bEg -cUH -och -xsj -hNK -hNK -hNK -hNK -xOs -bEg -bEg -aec -gzJ -qFx -ocP -sRA -lLf -scK -oLw -kwv -hhR -eiS -xKR -fUt -pZn -kpt -teL -ehf -gMy -tIY -vEF -vxD -qkL -tJe -xUf -tJe -eAV -dlF -udi -ehf -xLJ -gVV -gVV -gVV -qGy -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(143,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -alB -alB -alB -alB -alB -alB -aeX -aeX -aeX -bwn -bbk -hRq -aWR -bfq -aWJ -bft -bhn -bfq -aWJ -bft -iTj -vxw -xvD -iTj -aXU -bdb -ylc -bah -otz -jSc -wWz -aAF -rfZ -lzk -aZS -hQE -axG -cgX -chr -tzf -bia -bkG -bbH -bnM -bpC -bpC -xpk -iEb -bZK -bBp -bBA -bEf -bEf -bEf -bHf -bsw -bIN -bvB -bPu -kjn -bnv -pnQ -uCH -cXz -wei -bEg -bGr -bEg -xsg -rPu -bvB -hiz -emY -mIa -gWQ -izw -uoT -bEg -ijV -efC -kgs -tiN -ico -gjG -wWN -dZU -rKt -riF -qSu -reE -fUt -jPc -kpt -teL -ehf -gMy -vad -kWT -vxD -qkL -vEj -rUg -vEj -qkL -kLB -xMA -dwl -rRG -ewE -doL -ont -ucO -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(144,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -alB -bbx -aax -bfs -bwe -mfS -aXa -afk -tTB -aWR -beY -jZA -aWR -agM -aha -agM -aWR -aih -aiX -aih -iTj -rhY -pOl -iTj -tIM -aLO -seQ -bah -bai -bah -aXj -bai -tkl -bai -aZS -aZr -ajL -ajL -ajL -aDI -ayU -aAj -bbU -aYf -aYK -aYK -aYd -xaM -bpd -bpF -bpL -bxc -bpZ -bsr -bxl -bsy -blf -blf -blg -blf -blf -ejU -sBa -owO -dpS -bEg -bAv -bOC -fnr -oHO -dYo -kpJ -exF -qil -wSs -kQx -gDA -lSn -poh -efC -efC -efC -oNQ -daG -jZl -qLv -uLD -soq -llz -wdi -tje -pTz -pDf -mDG -wCg -ukN -dqT -yeV -bER -ohU -ryU -ryU -yeV -rFk -ito -xMA -exk -oWW -poD -juR -qGy -qGy -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(145,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -bwe -kvc -bfo -aWJ -alB -aeQ -bfj -afl -afF -sGg -los -qPV -aWR -qPt -ahi -gLF -cqw -vtW -ahi -azM -iTj -tfL -jqv -iTj -mbU -atV -smV -fls -bdR -aTr -aZv -diL -vnA -aZB -rwJ -aZr -xuo -pEX -aZr -aYd -aYK -aZL -bch -aYd -aZg -pbl -kuB -fSk -cbk -bkd -tog -mQc -vSW -kWU -tog -ngH -blf -lsu -bkJ -pJN -blf -uLI -hoL -qxr -iIT -bEg -bAz -bEg -put -rXt -dAx -hNK -bmT -oRw -fBN -lfm -gEK -bOC -unM -bOb -bGH -gzJ -efC -gzJ -efC -efC -qGy -yey -ucO -efC -efC -efC -tzn -gzJ -efC -iJm -oQw -gmb -oQw -xLJ -kCW -ovc -puW -jKx -myo -oFA -qGy -exk -ehf -ucO -qGy -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(146,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -alB -aWJ -bfU -aWJ -ary -aeQ -bgx -eTN -wZj -lpH -bfh -bhV -sNr -ptV -jkk -obm -fqr -gpB -aja -aaL -aeQ -ajW -bmE -aWY -arG -aub -pMS -aAS -fod -hLR -biU -aXy -xzV -aZG -lOr -lve -bcE -hjX -lXQ -aYe -aXn -aZn -bcG -fOh -bnK -hWd -kuB -pQO -rmQ -ava -mua -oyS -pyi -eKm -xdW -xrZ -blg -bkx -biW -blt -blg -egt -nIM -csG -lvV -gLq -cQO -bWh -qmV -yjr -iEH -dhp -xqy -hMK -eBk -hNK -sLF -bEg -gSi -bEg -ckY -mlE -bSI -bGH -bGr -bEg -tON -ojw -cmB -bEg -jRt -cmh -kII -cKV -efC -qkT -nDz -jPO -pSo -mId -fLf -mpx -pZw -fLf -efC -efC -gzJ -sUB -ckk -aEg -cnd -cnu -cnd -cnd -cnu -cnd -cnu -alm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(147,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -bwe -bfY -bdD -apR -axR -aeR -afa -vmU -afG -fgj -aga -cZY -agB -aga -afG -ahD -tew -djP -aje -akW -kli -amI -tSd -bCS -arH -atp -grn -aws -axL -azL -aAp -aCh -ubx -aDc -aFY -aDc -aDc -uBP -bdT -bfO -bgr -bbe -uAU -aZo -aZo -bev -thz -eoB -bjs -iod -ctz -cXH -eAv -gGA -qAG -lwa -bDs -bEZ -ljK -blv -bIF -kSb -xxv -yjC -hlo -ufQ -nJn -bEg -oCH -car -flI -tsd -qEU -nBl -nTo -gsn -qEV -qZi -mtP -ckC -gUI -vDB -dzk -wpH -bSI -xYU -bOC -bEg -bEg -xYU -stO -bGr -oqo -bOb -efC -wWT -wol -efC -wWT -efC -efC -efC -xtj -efC -gzJ -lPE -bEg -bOC -bEg -bEg -bEg -dEV -fKK -qye -pkC -nYc -lzo -acK -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(148,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -alB -aWJ -iUd -aWJ -ayL -aeQ -bfK -afq -wAE -kAF -bgo -lkx -rps -abK -ahm -hFx -bgO -bgT -vAY -cHF -aeQ -ads -tYM -xhX -iRb -rlr -auJ -ifJ -rYN -aWW -aZv -aow -aXI -aXI -aXI -beD -woi -wJd -bep -aZi -uDO -aXY -lpO -arc -bdG -beB -hSp -jXi -aTp -oBx -pMy -asy -cZV -qvM -hqd -iQO -blf -vhc -bIE -aLN -blf -qlU -lXC -uou -sdY -bOC -lKR -bEg -rXs -sgE -bZm -hNK -hNz -jmm -vxT -xOs -xKS -bEg -rrF -aEK -fVv -bSN -bOb -bbE -mpY -swd -gmW -vDB -jAE -grD -iBe -uuH -sSF -iBe -eUe -prC -dzk -iqu -vDB -mLZ -vLz -bWL -mLc -cDv -rsa -cFg -rEc -cmR -cmR -cmY -bOC -tYm -tmn -lgc -cnu -cuL -cnd -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(149,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -alB -aWJ -bfo -aWJ -alB -aeQ -bfN -afr -anb -afW -acv -cLN -aWR -fCg -aho -iXv -bgF -tJV -aho -alR -kuB -cMF -nSm -guv -kuB -aZF -auO -aZF -iOj -vlS -rJG -rJG -eML -xYR -xYR -rvF -bbl -wJd -cmg -aYe -aXQ -aXY -bdY -aZe -bfx -beM -rGo -enl -bhN -bkd -igh -anS -uLH -kJM -sBG -tCl -bwz -blg -bBo -blg -blf -peV -mbO -wMQ -mzP -bEg -rZL -bOC -qGU -hqu -dms -hNK -hiz -fet -hNK -hNK -hNK -bOC -bEg -bEg -tHT -bEg -bOC -bEg -bEg -bEg -qJk -bEg -bOC -bEg -bUw -bUw -bEg -bUw -bUw -bEg -bOC -bEg -ebd -cLc -bEg -gAW -udv -enZ -bEg -bOC -nWh -cmh -bOb -qcF -uOP -hHK -oyC -czG -ekq -bEM -cwa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(150,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -alB -bfq -jwo -bft -alB -lgq -bfi -afv -daF -aWR -rBu -tRf -bwn -agU -ahs -agU -aWR -aik -ajl -aik -kuB -cMG -lpg -boF -hES -sSm -auQ -bzB -iOj -ltR -mjr -vlS -vlS -vlS -vlS -njW -bbl -wJd -bgj -aYe -aZa -aXY -aZp -oYo -dBT -fCj -kuB -qUA -bkd -bkd -kbq -aqD -kbq -jMR -qiQ -fIh -hzt -ktj -iNK -iWS -wsn -xuw -lJw -wMQ -wMQ -bEg -eXC -bEg -jcM -car -qfo -jqD -bRz -dnN -rNg -pcu -bWw -bWD -bSL -cur -tAe -llv -bTS -cyG -czE -bEg -bEg -bOC -aIY -bUI -cHu -cHu -uaL -cHu -crG -bUI -aIY -bEg -bOC -bEg -bEg -bOC -kly -pPX -bEg -bOb -vRC -cFP -gSi -mKE -ilE -krA -oyC -oRG -cnu -cnu -cnd -alm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(151,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -alB -alB -bwe -bwe -alB -alB -afg -afg -afg -aWR -bgw -ruk -aWR -bbx -aWJ -bfs -bhn -bbx -aWJ -bfs -kuB -aim -eYL -pXO -rGo -att -auU -aww -wtC -uNr -lov -iYZ -hwx -xoq -vlS -njW -bbl -wJd -aRp -aDI -aDI -biB -aYg -aDI -ava -kuB -kuB -ddM -ava -gIh -fCm -aFe -umb -kbq -tMa -tKe -tsW -uEH -hgl -xqK -mGg -wrH -dTM -kZq -aZw -bEg -ozv -bEg -dho -wyf -yan -car -car -car -cad -car -car -hpt -bYf -bOi -nCW -gCU -cmZ -bWq -piF -xQT -bWT -bPJ -bPP -bUN -bUN -bUN -cll -bUN -bUN -bUN -bUd -aeu -aeu -dtq -iZU -qXH -ssy -hxp -bEg -cma -bEg -cLh -tvU -cLk -bOC -pyE -xsS -iBB -uQs -cnd -cnu -gGi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(152,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -alB -bgR -aWJ -bfs -bwn -mJE -ruM -aWR -aWJ -ayv -aWJ -aWR -bhu -ayv -aWJ -kuB -mcx -mll -wJK -kuB -aXR -bcx -aWU -iOj -hea -lnV -aNt -hiG -gCQ -vlS -njW -bbl -wJd -bep -baU -udp -upx -bdZ -hYj -bkd -bdz -aim -aim -bkd -oHM -leq -wle -iFi -kbq -rDB -dGx -iyQ -dGx -iyQ -dGx -kpE -dGx -vfn -ecO -ecO -bPB -rrR -bEg -bEg -gVy -kiu -bSx -sbN -rIH -ekw -pEM -cas -plU -cav -cuM -ooA -cww -bSr -bWz -hpx -cAE -bSr -bPJ -eXS -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUe -aeu -aeu -lsw -cMJ -wPT -lBw -ozQ -bOC -bEg -efC -uvz -eWI -gzJ -efC -mFX -uQv -gPr -eTq -pIU -ent -gny -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(153,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -alB -aWJ -ayv -aWJ -aWR -ajj -pPi -bwn -bfq -oFk -bft -aWR -bfq -uaH -bft -kuB -aim -bkd -ykB -kuB -baJ -bcz -baJ -iOj -pvu -gHj -ivb -czz -eSG -vlS -rJG -qRl -uqO -aRB -aSJ -aUR -tuA -foT -cWX -ava -fSa -ige -cbk -ava -rXk -wbe -gQu -nOQ -xwf -kOu -gwE -iRg -jqu -oEW -kvO -iRg -xHo -hYb -mBt -rcj -bEg -tWy -tYN -bOC -bPe -jNN -bPe -bOc -hQO -hQO -cIm -bXx -bPe -bOc -bRF -bOc -bOc -bOc -bWT -isJ -bSL -bWT -bSr -bQa -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -bUE -aeu -deb -iKn -deb -wjq -pUN -deb -aeu -ckU -pTm -jdg -qQz -ckU -cnd -cnd -ioN -cnu -cnd -cnu -cnf -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(154,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -bwe -bfq -uTP -bft -kuB -cim -uSp -kuB -rGo -kuB -kuB -kuB -kuB -rGo -kuB -kuB -bxI -cbj -ehe -kuB -baP -fsn -bcH -iOj -tGO -qhB -xTm -dPy -cOs -qOj -rJG -bfr -wHa -aTU -bcD -eRV -bco -beb -nQa -bkd -bdN -bjs -aim -bkd -lTp -lBn -pgN -iEW -kbq -xtG -wbm -ovn -vTz -oEW -qhU -oEW -wWX -wFb -sbC -bEg -bEg -bTd -gpC -bEg -hNF -eFe -wUE -bOc -gKO -bTv -hDk -kdn -hkx -jfH -xTA -dix -ggR -bOc -kKu -czI -eLO -cCi -tXO -cCk -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUp -aUz -aeu -deb -qSF -kFL -rrU -iQk -deb -aeu -clb -iSz -oWi -iHR -ckU -aeu -aeu -aeu -aeu -aeu -aeu -anH -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(155,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -alm -aeU -aeu -alB -bwe -alB -kuB -kuB -hyV -eRp -cbk -abv -cmW -iuD -cLg -cMw -cLK -cbk -nNp -lPU -cLt -pDt -kuB -rGo -kuB -kuB -kuB -kuB -pgF -swx -jaC -wNy -tJP -vlS -bcL -llN -pQa -bbN -bba -baY -aLp -bba -rGo -kuB -kuB -sWr -bkd -bkd -kbq -kbq -xwf -jMR -iHI -xyK -vAL -hJQ -xJS -poL -iRg -wWX -xSP -jun -bOC -uQn -bTd -tci -wPV -bLa -cCW -lxq -bOc -oPo -ccw -uKm -bPe -tLS -bXg -bXs -bXF -xOg -kyx -bTA -vyw -bTY -bUf -bUf -bUf -bUN -bUN -bUN -bUN -bUN -bUN -bUN -nDK -bUo -bSr -deb -sxJ -giB -gIy -mPG -deb -aeu -ckU -cfs -hJN -cGV -clb -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(156,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aUz -aeu -aeu -aeu -bkd -abi -cLg -wzn -bEq -ePc -aim -alT -ahO -aim -aim -wFD -alT -ahO -apu -txm -arJ -alT -iKb -cLt -ctI -kuB -kuB -rJG -vlS -jZh -vlS -vlS -baK -scq -bbY -bcs -bxn -mvk -wbL -beJ -kGY -bct -kuB -bjs -bok -bkd -sJG -qQN -jft -ahF -xdz -ppC -lmH -wZN -lmH -hJQ -eZy -iGz -gxs -eZr -bOC -ihC -bYh -fLJ -bEg -qlf -qbn -nUA -bOc -gKO -lgH -bxD -nSg -iFL -ofB -ssU -mhH -dUE -xIs -bYN -vyw -bXc -bIr -bUf -bPR -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -aeu -aeu -iKn -iQR -wDi -khw -myU -iKn -aeu -ckU -ckU -kpd -ckU -ckU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(157,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aDT -agw -akA -beK -bkd -ava -bkd -agb -bjs -agD -aim -alT -cbk -abE -gLT -ajn -hIT -fsW -ctI -ctI -hyK -xxH -bkd -jdN -alT -ahO -ayj -rGo -aXA -aKY -rzv -baD -baE -bbm -scq -bdF -baS -baY -bbP -uIj -beS -bck -ber -kuB -lPU -cbj -bkd -oRo -gPh -rAN -bLA -hmK -iaH -dNb -nVV -gCv -fgO -qWr -fpa -tHP -wfj -bEg -vfo -bTw -cSR -bEg -bEg -bEg -bOc -bXx -hQO -hQO -cIm -bRF -bPe -bOc -tNa -kyx -bOc -bOc -qMy -kPV -cji -bUh -bXd -vDw -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -aeu -aeu -iKn -sbk -pUY -vuX -mZC -deb -aeu -aeu -ckz -alI -ckz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(158,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -aDU -aaa -aaa -aaa -agy -bsA -avA -age -cLp -bkd -bkd -lbJ -ava -bkd -bkd -ajy -rWZ -bkd -ava -bkd -cNg -cNO -ava -bkd -bkd -jRd -ayl -kuB -lHK -aKY -wMF -iME -aTZ -iME -rhW -aRD -aSK -aUY -aXM -agL -baz -bcl -baG -kuB -otZ -rpo -ava -wJf -pVp -ccf -wkN -wkN -xvk -kbZ -lnA -eoL -qRs -tbU -dIT -qQr -eRk -bEg -mTS -jMz -gLK -pQG -cmp -bOC -llU -ntS -xfN -bVb -gXh -oWf -bWF -rcA -bXw -bXS -bSr -rgb -bTC -dLf -bWY -tyC -bUf -bPX -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUd -aeu -aeu -deb -dZP -hCY -hgh -btC -deb -aeu -aeu -ckz -cGF -ckz -aeU -aeU -aeu -aeu -aeu -ciQ -aeu -alm -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(159,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acy -aaa -aaa -aaa -cLd -afI -afX -agg -abt -bkd -tYF -sco -cLs -ahP -aoy -ajA -eyw -vnv -xAw -bkd -ica -cNt -jpf -cNN -adq -bjs -cOb -kuB -vrU -aMC -aEy -aGb -aKf -uui -oKA -fvw -bbN -bba -aYb -nUx -beT -bcr -beI -rGo -ahv -bkd -bkd -nzu -vVZ -xdS -bly -wkN -hzt -ufq -ufq -iHI -wNq -wmz -ufq -mWJ -eCi -bEg -bEg -bOC -bEg -uTd -wxd -mwi -kKR -cdG -cen -cfi -woP -cmj -cmj -cmj -eWM -bXT -bYg -bYx -bTD -euy -bUb -bUf -bUf -bUf -bUN -bUN -bUN -bUN -bUN -bUN -bUN -mAz -bUo -bSr -deb -deb -deb -iKn -deb -deb -aeu -aeu -aDS -qgQ -bFI -aeU -aUz -aeU -aeu -aeu -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(160,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -acK -aDU -aaa -aaa -aaa -agy -btR -avA -abs -ava -ava -ecc -sco -cLs -ahQ -mxD -nNB -wPR -alW -tuo -ava -cNi -qLP -cNE -cNO -cNR -aim -ayp -rGo -tlV -bbS -aEG -bcc -bce -jeE -xxn -bbW -chg -gLm -fyH -sJL -jZo -xAA -bcu -kuB -oct -bkd -tyE -xIo -xDW -vBf -qoD -pDR -acm -aaa -acm -ufq -kZM -oiX -ufq -lUP -cUt -ufq -acm -aaQ -bUw -bTg -bTH -bEg -cLF -bRp -bRE -cfn -cmD -cmr -aWs -crl -cmj -bXU -bYg -bTq -bTO -wrD -rmc -cCj -fHr -cCm -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUy -aeu -aeu -bSr -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aDS -kuv -bFI -rkn -coy -aeU -aeU -aeU -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(161,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aeZ -aob -akA -bhq -ava -bkd -bkd -ava -bkd -vrw -iyz -sco -cLs -bjM -cLH -cMg -cMt -gew -dTz -bkd -akI -ava -bkd -bkd -jGP -bjs -cNH -nBk -bcI -bbn -aEH -hNX -ruR -rbY -gqR -bcd -kAC -oDT -oFr -dLT -bba -kuB -rGo -kuB -eee -bjt -tNL -vyr -rYu -vBf -gMi -wJf -acK -acK -qJs -ofH -wad -jRb -luw -tlv -cVW -lbi -qJs -pOu -bEg -bEg -bEg -bEg -bOc -bPe -bRF -cfo -cmD -fVk -bOc -eoS -bXD -bXW -bYg -bYy -bYP -bZv -bWT -bSr -bWT -bQa -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUA -bUF -aeu -bSr -aeu -aeu -aeu -aeU -aeU -aeU -aUz -aDS -kuv -bFI -aeU -aeU -aeU -coy -aeU -aaQ -aeo -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(162,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -cLs -cZi -pmy -jmb -sco -cLs -ahR -dif -ajF -akY -ait -ngy -bkd -cbj -cbk -ley -ahO -aim -ava -bkd -kuB -bbi -bbu -bbi -dQJ -bdh -gdo -uLL -bcf -xEu -xEu -iUt -pkn -vAB -hqK -oKf -bjs -bjs -bkd -loE -nxZ -qnv -rph -pYF -wkN -aaa -aaa -aaa -aaa -aaa -bnb -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -bPe -pcL -bUx -bvo -bPe -bVp -cmD -cmr -bSn -crl -bRt -kje -bWM -bPe -bZC -bPe -bOc -aeu -aeu -eOk -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUk -ctu -aeu -bSr -aeu -aeU -cmU -cmU -cmU -cmU -cmU -aDS -kuv -bFI -cmU -cmU -cmU -cmU -aaa -aaQ -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(163,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -cLs -noM -dpI -tjq -sco -cLs -ahU -bzt -cMh -hOZ -fKd -anq -ava -alD -mtw -fSw -bkd -cNC -ava -acm -hJD -aXK -baX -bbX -vzF -bby -nXj -nyh -bcg -gJJ -rmd -sln -ekn -dtb -bkd -bxU -pJH -bkd -ava -wkN -wJf -tfm -wJf -pDR -wkN -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -bOc -uXO -bVE -bXi -cCH -bVO -cmD -fVk -bOc -eoS -bXy -bXZ -bXN -bTG -bYH -bTR -bRF -aeu -bPK -bPZ -bUN -bUN -bUN -bUN -bUN -bUN -bUN -bUC -aeU -aeu -bSr -aeu -aUz -cmU -nRr -hsn -hsn -hsn -hsn -kuv -nRr -nRr -nRr -nRr -nRr -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(164,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -cLs -iHO -cLs -cLs -qhk -cLs -cLs -cLs -cLs -cLr -cLs -cLs -ava -amB -tvT -ogX -aim -bjs -cNY -acK -hJD -aXN -bbt -bca -bbD -hjc -aYn -oBN -uyz -paX -wrf -sln -jiA -upa -ava -dUk -pJH -avA -acm -wJf -pHM -uRx -ckd -wJf -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -bPe -bfF -bVZ -bRs -bPe -bVp -jEr -cmr -cGz -cro -bRt -bXZ -cFE -bTt -qpz -bZL -bRF -aeu -aeu -bTT -bUO -bUN -bUN -bUN -bUN -bUN -crK -bUD -aeu -aeu -bSr -aeU -aeU -cmU -qgQ -qgQ -qgQ -qgQ -qgQ -kuv -qgQ -qgQ -qgQ -qgQ -qgQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(165,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -okR -aeU -aeU -aeU -aeU -aeU -aeU -aeU -kuB -kuB -xkq -hse -kuB -aim -cNg -acm -hJD -baq -bbw -hct -aYt -paR -aMN -nof -gKr -gJJ -wjn -yeY -dVS -lRx -ava -lYE -pJH -avA -acm -wJf -lEG -nhj -xGB -wJf -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -bRF -qif -hCG -jJJ -bRH -lHr -nXv -cmD -cpu -cmD -bXE -lHr -bzl -ggt -xoR -jMb -bOc -aeu -aeu -uRK -cic -cic -cic -cos -cic -cic -cic -xrW -aeu -aeu -bSr -aeU -aeU -cmU -nRr -nRr -hsn -hsn -hsn -kuv -nRr -nRr -nRr -hsn -hsn -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(166,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -ave -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cHb -rQB -hfb -atz -kuB -aim -bkd -ava -kuB -rGo -kuB -kuB -rZr -glI -dNJ -gUz -kuB -kuB -xpL -pbn -qiT -xEu -bkd -ava -pJH -bkd -qJs -tIc -wJf -aFN -wJf -sCP -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acK -bPe -bfI -bSA -sxI -bPe -mSI -bWn -bjT -bRs -bjT -bXG -diR -bPe -qwd -bpN -bTU -bRF -bSr -bSr -bUj -bRv -bRv -bRv -bRv -bRv -bRv -bRv -bWT -bSr -bSr -stL -aeU -cmU -cmU -kuv -ckk -aaa -aaa -ckk -kuv -ckk -aaa -aaa -ckk -kuv -aaa -aaa -aaQ -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(167,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cOp -acm -acm -acm -qJs -doG -hVI -doG -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cHc -muA -kEu -ily -kuB -aim -ayx -alT -alT -aim -kPY -bEq -aER -aFF -cbk -kBa -kRX -xXa -dkL -sln -dFR -uOG -vnQ -bkd -ahO -jQQ -aaa -aaa -aaa -aIv -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -bOc -bPe -bPe -nzj -bTx -vgP -bPe -bPe -bTE -bPe -bPe -fGU -bRF -vgP -bPe -bPe -bOc -aeu -aeu -acm -acm -acK -acK -acm -acK -acK -acm -acm -aeu -aeu -aeU -aeU -cmU -nRr -nRr -hsn -nRr -nRr -xOh -kuv -xOh -nRr -nRr -nRr -nRr -nRr -acm -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(168,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aaa -acm -doG -rLF -doG -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cHb -aqG -maN -ayn -rGo -bkd -ava -bkd -iQm -xJo -bjs -agD -aim -alT -oKy -dKu -wrz -xXa -rKf -pbn -xfX -vAx -vea -ava -mAl -bkd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -acm -acm -bPe -cOz -bPe -wHi -bPe -acm -acm -acm -bPe -cOz -bPe -kVS -bPe -acm -aeu -aeu -aUz -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeU -aeU -aeU -aUz -cmU -qgQ -qgQ -qgQ -qgQ -qgQ -kuv -kuv -kuv -qgQ -qgQ -qgQ -qgQ -qgQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(169,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -duH -ria -ria -ria -doG -doG -duH -esc -ria -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -cHb -cHb -mfe -cHb -cHb -aeu -aeu -bkd -aze -lnZ -caN -cLt -cmy -aKl -cOv -ava -qxe -ava -qav -qlH -pbw -vAx -dHO -bkd -kfF -avA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -qJs -bPe -bSM -bTl -bXe -bPe -qJs -aaa -qJs -bPe -bXe -bTl -bXe -bPe -qJs -acm -acm -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aeU -aaa -acm -aaa -cmU -nRr -nRr -nRr -nRr -hsn -xOh -kuv -xOh -hsn -hsn -nRr -nRr -nRr -acm -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(170,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -cuj -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -duH -dHM -fma -duH -vWR -lXd -lqA -kot -alX -duH -doG -ycO -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeu -cLM -lOh -cLM -aeu -aeu -aeu -bkd -cMF -oFL -cOb -ava -avA -aKn -avA -bkd -qxe -bkd -tQi -rBK -iNO -bkd -pKd -bkd -gss -avA -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bRQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -acm -aaa -kuv -ckk -aaa -aaa -ckk -kuv -ckk -aaa -aaa -ckk -kuv -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(171,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -qea -nwa -oiP -gmg -gYW -mmM -eRr -uBb -mmt -wgI -fQZ -wgI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeu -cLM -asd -cLM -aeu -aeu -aeu -bkd -mjM -bXR -fgP -bkd -cmi -aKr -cCs -ava -qxe -ava -bkd -avA -avA -ava -uJh -cbk -jnz -bkd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -aeo -acm -aeo -acm -nRr -nRr -nRr -nRr -nRr -kuv -hsn -hsn -hsn -nRr -nRr -acm -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(172,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -sRj -hWn -ldD -doG -ttR -wJx -wdd -uAR -jsw -hPm -ngt -jTH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aDS -sTh -bFI -aeu -aeu -aeu -ava -bkd -cbV -jNp -ava -agy -cLR -agy -bkd -qxe -qxe -aUZ -ksx -aYZ -rkU -tJA -aWN -hpC -ava -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cmJ -aaa -aeo -aaa -qgQ -qgQ -wRX -qgQ -qgQ -kuv -qgQ -qgQ -qgQ -qgQ -qgQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(173,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -duH -pHJ -mok -nsR -iPb -oxL -vij -izy -oTh -eJD -fsS -jej -fsS -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeU -aDS -sTh -bFI -aeU -aeu -aeu -aeu -bkd -bkd -ava -beK -aaa -aaa -aaa -bhq -avA -avA -auz -cOn -cOo -hqC -cuf -cbm -jvE -bkd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -acm -aeo -acm -nRr -nRr -nRr -nRr -nRr -qgQ -nRr -nRr -nRr -nRr -nRr -acm -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(174,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -duH -hcG -mHW -moD -hTg -nfw -kDn -myD -fxq -omv -ria -doG -oUZ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -alm -aeu -aeU -aUz -coy -aeU -rkn -aDS -sTh -bFI -aeU -aUz -aeU -fYy -aeu -aeu -aeu -akA -aaa -aaa -aaa -akA -aeU -aeU -ava -avA -avA -bkd -pSE -ava -iYL -bkd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -acm -aaa -acm -aaa -qgQ -aaa -acm -aaa -acm -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(175,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -doG -dkX -doG -ria -rnA -saK -lxS -uAR -fgq -doG -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeU -cmU -cmU -cmU -cmU -cmU -aDS -oaA -bFI -cmU -cmU -cmU -cmU -cmU -aeu -aeu -aDU -aaa -aaa -aaa -aod -aeu -aeU -aUz -cry -aaa -acm -acm -bkd -rZF -ava -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeo -aeo -aeo -aeo -acm -acm -rHd -acm -aaQ -acm -aeo -aeo -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(176,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -duH -ria -bJZ -nlh -uBc -dkX -kga -hyP -kYX -uAR -pqg -doG -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeU -cmU -xLT -xLT -xLT -xLT -xLT -oaA -xLT -xLT -xLT -xLT -xLT -cmU -aeU -aeu -aeZ -aob -cOd -aob -aoe -aeu -aeU -aeU -alm -acm -aeo -aaa -acm -bgf -cmJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aeo -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(177,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -xLk -noC -ins -iMj -kfu -wOQ -tsk -fYD -hKF -pqg -ria -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -cmU -sTh -wUN -sTh -sTh -sTh -oaA -sTh -sTh -sTh -sTh -sTh -cmU -aeU -aof -qJs -acK -acm -acK -qJs -aeu -aUz -aeu -aeu -aaa -acm -aaa -acm -qDp -aaa -qJs -acm -acK -acK -acK -acm -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aeo -aeo -aeo -acm -acm -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(178,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -riq -ins -lvU -wsf -mWM -qxV -xNd -ria -sen -doG -duH -ria -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -cmU -xLT -xLT -xLT -xLT -xLT -oaA -xLT -xLT -xLT -xLT -xLT -cmU -aeU -aeU -aaQ -aaa -aaa -aaa -acm -aeu -aeu -aeu -aeu -aaa -acm -aaa -acK -qDp -acm -aaQ -aeo -aeo -acm -aeo -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(179,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -duH -lSW -wRj -tVI -nUq -tTi -xpP -vju -doG -gRl -lBG -ybl -ria -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -aaa -oaA -ckk -aaa -aaa -ckk -oaA -ckk -aaa -aaa -ckk -oaA -cmU -cmU -aUz -alm -aeo -aeo -aaQ -alm -aeu -aeu -aeu -aeu -aeu -acm -aaa -acm -eiW -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(180,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -duH -fEH -doG -waQ -ria -nKT -thr -nNZ -ukq -xuj -gdS -doG -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -acm -aaQ -xLT -xLT -xLT -xLT -xLT -pDk -oaA -pDk -xLT -xLT -xLT -xLT -xLT -cmU -aeU -aaQ -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -acK -aaa -acm -viq -aaQ -aeo -aeo -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(181,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -hWC -mPB -dWo -duH -nLV -wfK -dkX -jSV -dsf -tdY -doG -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -sTh -sTh -sTh -sTh -sTh -oaA -oaA -oaA -sTh -sTh -sTh -sTh -sTh -cmU -aeU -aeo -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -acm -aaa -acm -viq -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(182,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -isi -kVW -dsQ -ria -duH -ria -ria -pQg -mAn -kuu -duH -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -acm -xLT -xLT -xLT -xLT -xLT -pDk -oaA -pDk -xLT -xLT -xLT -xLT -xLT -cmU -aeU -aeo -aaa -aaa -aaa -aaa -aeu -aeu -aeu -alm -acm -acm -aaa -acm -acK -aeo -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(183,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -ria -ufN -hNl -fMz -ria -aeu -aeu -ria -duH -ria -ria -ria -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -oaA -ckk -aaa -aaa -ckk -oaA -ckk -aaa -aaa -ckk -oaA -cmU -cmU -aeU -acm -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeU -aaa -aeo -acm -acm -acK -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(184,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cPY -ogA -ogA -ogA -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -acm -aaQ -aeo -acm -xLT -xLT -xLT -xLT -xLT -oaA -xLT -xLT -xLT -xLT -xLT -cmU -aeU -aeU -alm -acm -aaQ -aeo -acm -alm -aeu -aeU -aUz -aaa -aeo -aaa -acm -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(185,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -dvN -dvN -ogA -cNZ -ogA -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -sTh -sTh -sTh -sTh -sTh -oaA -sTh -sTh -sTh -sTh -sTh -cmU -coy -aof -aeu -aeu -aaa -aaa -aaa -aeu -aeu -aeU -aaa -aaa -aaQ -aaa -acm -qDp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(186,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -wDI -dvN -qvq -dvN -dvN -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeU -aeU -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -acm -aaQ -acm -xLT -xLT -xLT -xLT -xLT -sTh -xLT -xLT -xLT -xLT -xLT -cmU -aUz -aeu -aeu -aeu -aeU -aaa -aaa -aeu -aaa -aaa -aaa -aaa -acm -aaa -acK -eiW -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(187,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -dvN -ycp -dvN -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -aaa -acm -aaa -acm -aaa -sTh -aaa -cmU -cmU -cmU -cmU -cmU -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaQ -jTL -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(188,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -arz -dvN -dvN -dvN -dvN -wDI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -aeo -aaQ -aeo -aeo -aaQ -krL -acm -acm -acm -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -acK -aaa -aeo -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(189,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -cui -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -dvN -dvN -aoz -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aeo -aaa -acm -aaa -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -acK -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(190,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -wDI -apm -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -acm -acm -aeo -acm -alm -aeu -aeu -aeu -aeU -aap -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(191,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -aoz -bQN -dvN -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aeu -aeu -aeu -aUz -amq -aeU -aeu -aeu -alm -acm -aaQ -aeo -aeo -aeo -aaQ -aeo -acm -acK -acm -acK -acK -aaQ -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(192,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aoz -thU -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aeu -aeu -aeu -aeu -aap -aeu -aUz -aeu -aeu -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -lGO -acK -acK -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(193,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -dvN -wDI -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aeo -aeo -acm -aaQ -alm -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -acm -gpw -pFC -pFC -gpw -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(194,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -bRy -dvN -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeU -aeu -aeu -aaa -aaa -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -pFC -nRi -fxL -pFC -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(195,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -dvN -dvN -aoz -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaQ -aaa -pFC -gOl -gCO -pFC -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(196,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -dvN -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aeo -aaa -pFC -lGH -vbD -pFC -viq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(197,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -acm -acm -gpw -pFC -pFC -gpw -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(198,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -acK -acK -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(199,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aeo -acm -aaQ -aeo -aeo -aeo -acm -acm -acm -alm -aeu -alm -acm -aeo -aeo -aaQ -aeo -aeo -aeo -acm -acK -acm -acK -acm -aeo -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(200,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aUz -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(201,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -coy -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(202,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -acm -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(203,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(204,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aeu -alm -aeU -aUz -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(205,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -coy -aeU -aeU -aeU -aeU -aeU -aeU -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aaa -aaa -aaa -aeU -aeU -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(206,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeU -aeU -aeU -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -cuj -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(207,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -alm -aaQ -aeo -aeo -acm -acK -acm -acK -acm -aeo -aeo -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(208,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -acm -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(209,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(210,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaQ -aaa -aaa -aaa -aaa -aaQ -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(211,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(212,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(213,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -aeo -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(214,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aaa -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(215,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -coy -aeU -aeu -aeu -aeu -aeu -aeu -aaa -aeo -aaa -aaa -aaa -aaa -acK -acm -acK -acm -aeo -aaa -aaa -aaa -aeU -aUz -aeU -aeu -ciQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(216,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aeo -aaa -aaa -aaa -aaa -aaQ -aaa -acm -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -acm -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(217,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -acm -aaa -aaa -aaa -aaa -acm -aaa -acm -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(218,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -ciQ -acm -aeo -aaQ -acm -aaa -acm -acm -aaQ -aeo -ciQ -aeu -aeu -aeu -aeU -aaa -aeo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(219,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -acm -aaa -acm -cbU -ccB -cbU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aaa -aaQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(220,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeu -aUz -aeu -cci -cbU -ccC -cbU -bVI -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aaa -aeU -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(221,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bVu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -cbU -cbU -ccp -ccD -ccJ -cbU -cbU -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(222,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -coy -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -bVH -bVH -ccj -ccq -ccx -ccK -ccO -bVH -caT -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(223,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cbU -cbX -cck -ccx -ccE -ccx -ciz -cGy -cbU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(224,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -caT -bVH -ccn -ccy -ccF -ccM -ciL -caT -bVH -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(225,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aap -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cbU -cbU -ccA -ccG -ccN -cbU -cbU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(226,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -amq -aeU -coy -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cco -cbU -ccH -cbU -bVL -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(227,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aUz -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -cbU -bVH -cbU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(228,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeU -aaa -aeu -aeu -aeu -aeu -aeu -bVu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aUz -aeu -aeu -aeu -aap -aeu -aeu -aap -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(229,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(230,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -coy -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(231,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(232,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(233,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aUz -aeU -aeU -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(234,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aaa -aaa -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(235,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -aeu -aaa -aaa -aaa -aaa -aaa -aaa -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(236,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bVu -aaa -aaa -aaa -aaa -aaa -aaa -bVu -aeu -aaa -aaa -aeu -aeu -aeu -aaa -aeu -aeu -aeu -aaa -aeU -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(237,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aUz -aeU -aeu -aeu -aeU -aeu -aeu -aeu -aeu -aeU -aUz -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(238,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aeU -bVu -aUz -aeU -aeu -aeu -bVu -aeU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(239,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -qJs -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(240,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(241,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(242,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(243,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(244,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(245,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(246,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(247,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(248,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(249,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(250,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(251,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(252,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(253,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(254,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} -(255,1,1) = {" -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -"} diff --git a/_maps/map_files/MetaStation/MetaStationWhite.dmm b/_maps/map_files/MetaStation/MetaStationWhite.dmm deleted file mode 100644 index 24dba75355eb..000000000000 --- a/_maps/map_files/MetaStation/MetaStationWhite.dmm +++ /dev/null @@ -1,148785 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aab" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 1; - name = "plasma mixer" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aae" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"aah" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/port/fore) -"aak" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/port/fore) -"aal" = ( -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/fore) -"aam" = ( -/obj/structure/table/wood, -/obj/machinery/button/ticket_machine{ - pixel_x = 32 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/stamp/hop{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"aan" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/ticket_machine{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"aao" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/service/bar) -"aap" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"aaq" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aar" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/service/bar) -"aas" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/bar) -"aat" = ( -/obj/machinery/rnd/bepis, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aau" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aav" = ( -/turf/open/space/basic, -/area/space) -"aaw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"aax" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aay" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/item/electropack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaz" = ( -/obj/structure/chair/stool, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aaA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - name = "justice injector" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaD" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aaE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/toy/plush/beeplushie{ - desc = "Maybe hugging this will make you feel better about yourself."; - name = "Therabee" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aaF" = ( -/obj/machinery/vending/boozeomat, -/obj/structure/sign/plaques/deempisi{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/service/bar) -"aaG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaI" = ( -/obj/machinery/door/window/brigdoor{ - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Justice Chamber"; - req_access_txt = "3" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "executionfireblast" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aaK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aaL" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Cargo Bay Maintenance"; - req_one_access_txt = "31;48" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/storage) -"aaM" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/service/bar) -"aaN" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/starboard/fore) -"aaO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aaP" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_containers/glass/bottle/chloralhydrate, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 5; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/facid{ - name = "fluorosulfuric acid bottle"; - pixel_x = -3; - pixel_y = 6 - }, -/obj/item/reagent_containers/syringe{ - pixel_y = 5 - }, -/obj/item/reagent_containers/dropper, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/button/ignition{ - id = "executionburn"; - name = "Justice Ignition Switch"; - pixel_x = -25; - pixel_y = 36 - }, -/obj/machinery/button/door{ - id = "executionfireblast"; - name = "Justice Area Lockdown"; - pixel_x = -25; - pixel_y = 26; - req_access_txt = "2" - }, -/obj/item/assembly/signaler{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/button/flasher{ - id = "justiceflash"; - name = "Justice Flash Control"; - pixel_x = -36; - pixel_y = 36; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - id = "SecJusticeChamber"; - layer = 4; - name = "Justice Vent Control"; - pixel_x = -36; - pixel_y = 26; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaQ" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/taperecorder{ - pixel_x = -3 - }, -/obj/item/storage/fancy/cigarettes, -/obj/item/assembly/flash/handheld, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"aaS" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaT" = ( -/obj/structure/closet/secure_closet/injection{ - name = "educational injections"; - pixel_x = 2 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"aaU" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/structure/sign/warning/deathsposal{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aaV" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/janitor) -"aaW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aaX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aaY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/starboard/fore) -"aaZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aba" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abd" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"abe" = ( -/turf/closed/wall, -/area/security/prison) -"abf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"abi" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"abj" = ( -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/item/emptysandbag, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"abn" = ( -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec/surgery{ - pixel_y = 5 - }, -/obj/item/clothing/mask/balaclava, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 5 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abo" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abp" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/maintenance/central) -"abq" = ( -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - aiControlDisabled = 1; - id_tag = "prisonereducation"; - name = "Prisoner Education Chamber"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/execution/education) -"abt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/storage/box/lights/mixed{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/grenade/chem_grenade/cleaner{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/machinery/requests_console{ - department = "Janitorial"; - departmentType = 1; - pixel_y = 29 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"abu" = ( -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"abv" = ( -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/fore) -"abx" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aby" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"abz" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"abC" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"abD" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/security/prison/safe) -"abF" = ( -/obj/machinery/meter, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "gas ports" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abG" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 1; - icon_state = "right"; - name = "gas ports" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "justice gas pump" - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"abJ" = ( -/turf/closed/wall, -/area/security/execution/education) -"abK" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/security/prison) -"abL" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"abM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"abN" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"abO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"abR" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/fore) -"abS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar) -"abV" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"abX" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"abZ" = ( -/obj/item/storage/bag/trash, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison/safe) -"aca" = ( -/obj/item/tank/internals/oxygen/red{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/tank/internals/oxygen/red{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/internals/anesthetic{ - pixel_x = 2 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/wrench, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acb" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"acd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/service/janitor) -"ace" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/machinery/camera{ - c_tag = "Prison Sanitarium"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acf" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"acg" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aci" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"acj" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"acp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/mob/living/simple_animal/bot/medbot{ - auto_patrol = 1; - desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; - name = "Inspector Johnson" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/medbay/central) -"acq" = ( -/obj/machinery/door/airlock{ - name = "Cleaning Closet" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"acv" = ( -/turf/closed/wall/r_wall, -/area/security/execution/education) -"acw" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/iannewyear, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"acx" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acy" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"acz" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/fore) -"acE" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"acF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acK" = ( -/obj/effect/spawner/randomarcade, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"acL" = ( -/obj/item/folder/red, -/obj/item/pen, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acM" = ( -/obj/structure/bed/roller, -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"acO" = ( -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acP" = ( -/turf/closed/wall, -/area/commons/fitness/recreation) -"acQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"acR" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"acS" = ( -/obj/structure/closet/crate/necropolis{ - desc = "Presumably placed here by top men."; - name = "\improper Ark of the Covenant" - }, -/obj/item/toy/clockwork_watch{ - desc = "An ancient piece of machinery, made from an unknown metal by an unknown maker."; - name = "\improper Ancient Relic" - }, -/mob/living/simple_animal/pet/dog/corgi{ - desc = "Make sure you give him plenty of bellyrubs, or he'll melt your skin off."; - name = "\improper Keeper of the Ark" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"acT" = ( -/obj/structure/bed/dogbed/runtime, -/obj/item/toy/cattoy, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"acU" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"acX" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"acZ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adb" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"adc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"add" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel, -/area/security/prison) -"ade" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Prison Sanitarium"; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adf" = ( -/obj/structure/table, -/obj/item/storage/box/prisoner{ - pixel_y = 8 - }, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"adg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adh" = ( -/turf/open/floor/plasteel, -/area/security/prison) -"adi" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adj" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"adk" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"adq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ads" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adv" = ( -/mob/living/carbon/human/species/monkey, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/medical/virology) -"adw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/delivery_chute{ - dir = 4; - name = "Prisoner Transfer" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/plasticflaps/opaque{ - name = "Prisoner Transfer" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ady" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Prison Cell Block 2"; - dir = 4; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adB" = ( -/obj/structure/cable, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"adC" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"adD" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/status_display/evac{ - pixel_x = 32; - pixel_y = null - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"adE" = ( -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"adF" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"adG" = ( -/obj/machinery/computer/bookmanagement, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"adH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/service/janitor) -"adI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"adM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adN" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"adR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"adS" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"adU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"adV" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/clothing/shoes/sneakers/orange{ - pixel_x = -6; - pixel_y = -8 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = 8; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adW" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"adX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"adY" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"adZ" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"aeb" = ( -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/structure/table/glass, -/obj/item/book/manual/hydroponics_pod_people, -/obj/machinery/requests_console{ - department = "Hydroponics"; - departmentType = 2; - pixel_x = -32 - }, -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aec" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/crew{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"aed" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"aee" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aef" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aeg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"aeh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"aei" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"aej" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ael" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aem" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aen" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aep" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"aeq" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aer" = ( -/obj/structure/rack, -/obj/item/storage/box/flashes{ - pixel_x = 3 - }, -/obj/item/storage/box/teargas{ - pixel_x = 1; - pixel_y = -2 - }, -/obj/item/gun/grenadelauncher, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aes" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aex" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aey" = ( -/turf/closed/wall, -/area/security/range) -"aeA" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Three" - }, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"aeB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"aeC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aeD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aeF" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/fore) -"aeG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aeJ" = ( -/turf/closed/wall/r_wall, -/area/security/prison/safe) -"aeM" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/camera{ - c_tag = "Prison Cell Block 1"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aeN" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aeO" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aeP" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aeQ" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aeS" = ( -/obj/structure/bookcase/random, -/turf/open/floor/plasteel, -/area/security/prison) -"aeT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aeU" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aeV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aeW" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aeX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/brig) -"aeY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/obj/item/storage/toolbox/electrical, -/obj/item/radio, -/obj/item/hand_labeler, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aeZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"afa" = ( -/obj/structure/table, -/obj/item/pen, -/obj/structure/cable, -/obj/item/instrument/harmonica, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"afb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"afc" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/mob/living/simple_animal/sloth/citrus, -/turf/open/floor/plasteel, -/area/cargo/storage) -"afd" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"aff" = ( -/obj/structure/filingcabinet/security{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"afh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"afs" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "shower" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"aft" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afu" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/sillycup{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afv" = ( -/obj/structure/easel, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afw" = ( -/obj/structure/closet/masks, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afx" = ( -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afy" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afz" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afB" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"afC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afD" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"afE" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"afG" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"afI" = ( -/obj/machinery/door/airlock/grunge{ - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"afJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison/safe) -"afM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner, -/area/security/prison) -"afN" = ( -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"afO" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"afP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/suit_storage_unit/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"afQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"afR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"afS" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"afT" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/security/brig) -"afU" = ( -/obj/structure/table, -/turf/open/floor/plasteel/dark/side, -/area/security/prison) -"afV" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/fore) -"afW" = ( -/obj/effect/turf_decal/tile/neutral, -/mob/living/simple_animal/bot/cleanbot{ - auto_patrol = 1; - icon_state = "cleanbot1"; - name = "Mopficcer Sweepsky" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"afY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"afZ" = ( -/obj/structure/table, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/hand_labeler{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/evidence{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/storage/box/prisoner{ - pixel_x = 9 - }, -/obj/machinery/recharger{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aga" = ( -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_y = -2 - }, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agb" = ( -/obj/structure/rack, -/obj/item/shield/riot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/shield/riot, -/obj/item/shield/riot{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agc" = ( -/obj/effect/turf_decal/bot, -/mob/living/simple_animal/bot/secbot{ - arrest_type = 1; - health = 45; - icon_state = "secbot1"; - idcheck = 1; - name = "Sergeant-at-Armsky"; - weaponscheck = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agd" = ( -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 6 - }, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agk" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"agm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"agq" = ( -/turf/closed/wall, -/area/maintenance/fore) -"agr" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/button/door{ - id = "FitnessShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"ags" = ( -/obj/machinery/door/airlock{ - id_tag = "FitnessShower"; - name = "Fitness Room Shower" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/fitness/recreation) -"agt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agu" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit{ - dir = 4; - pixel_x = 26; - pixel_y = 12 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"agv" = ( -/obj/machinery/camera{ - c_tag = "Fitness Room - Fore" - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"agA" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port/fore) -"agB" = ( -/obj/machinery/power/solar_control{ - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"agC" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"agD" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/solars/port/fore) -"agG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"agH" = ( -/turf/closed/wall, -/area/security/prison/safe) -"agI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"agJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security E.V.A. Storage"; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"agK" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"agM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_x = 26; - req_access_txt = "2" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"agN" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"agO" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"agP" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/security/prison) -"agQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/security/labor{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"agR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"agS" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/security/main) -"agT" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agU" = ( -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"agV" = ( -/obj/machinery/turretid{ - icon_state = "control_stun"; - name = "AI Chamber turret control"; - pixel_x = 3; - pixel_y = -23 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - name = "Primary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ahc" = ( -/turf/open/floor/plasteel, -/area/security/range) -"ahd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahf" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_x = 30; - pixel_y = 30 - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 23; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ahg" = ( -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahh" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahi" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahj" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahk" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahn" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aho" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ahp" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"ahq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ahr" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ahs" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aht" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ahu" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"ahv" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"ahw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"ahx" = ( -/turf/closed/wall, -/area/security/brig) -"ahy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/crate/trashcart/laundry, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/item/clothing/under/rank/prisoner/skirt, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"ahA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"ahB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ahC" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahD" = ( -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - name = "Primary AI Core Access"; - obj_integrity = 300; - req_access_txt = "16" - }, -/obj/machinery/camera{ - c_tag = "AI Chamber - Core"; - network = list("aicore") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"ahE" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahF" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ahG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ahI" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"ahN" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"ahR" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahS" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"ahT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ahU" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahV" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ahW" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ahX" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ahY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"ahZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aia" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aib" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aid" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aie" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aif" = ( -/obj/machinery/door/poddoor/massdriver_trash, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aig" = ( -/obj/machinery/mass_driver/trash{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aih" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "garbage"; - name = "disposal conveyor" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aii" = ( -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aij" = ( -/obj/item/vending_refill/coffee, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) -"aik" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ail" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/solars/port/fore) -"aim" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"ain" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aio" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"aip" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"air" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/southleft{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/prison) -"ais" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Prison Visitation"; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ait" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aiv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Laundry"; - dir = 8; - network = list("ss13","prison") - }, -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aiw" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aix" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aiy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/camera{ - c_tag = "Evidence Storage" - }, -/obj/item/storage/secure/safe{ - name = "evidence safe"; - pixel_x = 6; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aiz" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aiA" = ( -/obj/item/storage/secure/safe{ - name = "armory safe A"; - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aiB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"aiC" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aiD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/main) -"aiE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aiF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aiH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aiI" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #3"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"aiJ" = ( -/turf/closed/wall/r_wall, -/area/security/range) -"aiN" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aiO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aiP" = ( -/obj/structure/table, -/obj/item/folder, -/turf/open/floor/plating, -/area/maintenance/fore) -"aiQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aiR" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/sl, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aiS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aiT" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aiU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aiV" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aiW" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aiY" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aiZ" = ( -/obj/machinery/computer/holodeck{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aja" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ajb" = ( -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"ajc" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Disposal Exit"; - name = "disposal exit vent" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ajd" = ( -/obj/structure/chair/stool, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/trash{ - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aje" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"ajf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ajg" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) -"ajh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Bow Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/fore) -"aji" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"ajj" = ( -/obj/structure/table, -/obj/item/stack/medical/mesh{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/stack/medical/suture{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/item/restraints/handcuffs/cable/pink, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajk" = ( -/mob/living/simple_animal/hostile/lizard/wags_his_tail, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/service/janitor) -"ajl" = ( -/obj/item/soap/deluxe, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/obj/item/kitchen/rollingpin, -/obj/structure/closet/crate, -/obj/item/clothing/suit/xenos, -/obj/item/clothing/suit/monkeysuit, -/obj/item/clothing/head/xenos, -/obj/item/clothing/mask/gas/monkeymask, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajm" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"ajn" = ( -/obj/structure/table, -/obj/item/folder, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/photo_album/prison, -/obj/item/camera, -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"ajo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"ajp" = ( -/obj/machinery/camera{ - c_tag = "Prison Common Room"; - dir = 1; - network = list("ss13","prison") - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"ajq" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ajr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ajs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ajt" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aju" = ( -/obj/machinery/meter, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ajv" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ajw" = ( -/obj/structure/closet/secure_closet{ - name = "contraband locker"; - req_access_txt = "3" - }, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ajx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"ajy" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ajz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #4"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"ajA" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ajD" = ( -/turf/closed/wall, -/area/security/main) -"ajO" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/clothing/head/festive, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajP" = ( -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajQ" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajR" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ajS" = ( -/obj/structure/table, -/obj/item/storage/firstaid/brute, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ajT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajW" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ajX" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ajZ" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"aka" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"akb" = ( -/obj/structure/sign/warning/radiation/rad_area{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"akc" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"akd" = ( -/turf/open/space/basic, -/area/maintenance/solars/starboard/fore) -"ake" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/maintenance/solars/starboard/fore) -"akf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door{ - id = "Disposal Exit"; - name = "Disposal Vent Control"; - pixel_x = -25; - pixel_y = 4; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aki" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akl" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Access"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"akm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akn" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ako" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port) -"akp" = ( -/obj/structure/rack, -/obj/item/mop, -/obj/item/bikehorn/rubberducky, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akq" = ( -/obj/item/vending_refill/cola, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akr" = ( -/obj/item/vending_refill/snack, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aks" = ( -/obj/structure/rack, -/obj/item/clothing/neck/tie/red{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/neck/tie/horrible, -/obj/item/clothing/neck/tie/blue{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/dice/d8, -/obj/item/healthanalyzer, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akt" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/machinery/door/window/southright{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/security/prison) -"aku" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akv" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akw" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Permabrig Visitation"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akx" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aky" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akz" = ( -/obj/structure/chair/stool, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"akA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"akB" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"akC" = ( -/obj/structure/rack, -/obj/item/grenade/barrier{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier{ - pixel_x = 3; - pixel_y = -1 - }, -/obj/item/grenade/barrier{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"akD" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"akE" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"akF" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"akI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/main) -"akJ" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"akK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"akW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/range) -"ala" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"alb" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"alc" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ald" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ale" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"alf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"alg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"alh" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"ali" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"alj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"alk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"all" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aln" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"alp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"alq" = ( -/turf/closed/wall, -/area/maintenance/starboard) -"alr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard) -"als" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"alt" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"alu" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"alv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alw" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alx" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aly" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - layer = 3 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alz" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 1; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alA" = ( -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alB" = ( -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 8; - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/disposal) -"alC" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port) -"alE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Secure Storage Room"; - req_access_txt = "65" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alG" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alH" = ( -/obj/item/bot_assembly/cleanbot, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alI" = ( -/obj/item/grown/log, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alJ" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/disk/data, -/obj/item/grenade/flashbang, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/grenade/smokebomb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alK" = ( -/turf/closed/wall, -/area/maintenance/port) -"alL" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/prison) -"alM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"alO" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"alP" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/security/prison) -"alQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Evidence Storage"; - req_one_access_txt = "1;4" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"alS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"alT" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"alU" = ( -/obj/structure/rack, -/obj/item/gun/energy/disabler{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/disabler, -/obj/item/gun/energy/disabler{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"alV" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alW" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"alX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"alZ" = ( -/obj/structure/rack, -/obj/item/gun/energy/ionrifle, -/obj/item/gun/energy/temperature/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/clothing/suit/hooded/ablative, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"amb" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ame" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"amf" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"amt" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/fore) -"amu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"amv" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amw" = ( -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Fitness Ring" - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amx" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amy" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amz" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"amB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"amC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"amD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amH" = ( -/obj/machinery/door/airlock/external{ - req_one_access_txt = "13,8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"amK" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"amL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/security/brig) -"amM" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Room"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"amN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"amO" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 9; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amP" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amQ" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - icon_state = "left"; - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amR" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/disposal) -"amS" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/storage/box/lights/mixed, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amU" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"amV" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"amW" = ( -/obj/structure/table/reinforced, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right" - }, -/obj/item/book/manual/wiki/engineering_hacking, -/obj/item/tape/random, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amX" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/stock_parts/cell/crap, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amY" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/item/electronics/firealarm, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"anb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"anc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"and" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ane" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/healthanalyzer, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"anf" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ang" = ( -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ani" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"anj" = ( -/obj/structure/disposaloutlet{ - dir = 8; - name = "Prisoner Delivery" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"ank" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Armory External"; - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"anl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"anm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"ann" = ( -/obj/structure/rack, -/obj/item/clothing/glasses/hud/security/sunglasses/gars{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses/gars{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/glasses/hud/security/sunglasses{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera/motion{ - c_tag = "Armory - Internal"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ano" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"anq" = ( -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/e_gun, -/obj/item/gun/energy/e_gun{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"anu" = ( -/obj/machinery/vending/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"anz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"anB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anD" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_one_access_txt = "1;4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"anE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"anF" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anG" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anH" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anI" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anJ" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"anM" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard) -"anO" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"anP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"anQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"anR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"anS" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"anU" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anV" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anW" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anX" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "garbage" - }, -/obj/machinery/recycler, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anY" = ( -/obj/machinery/door/window/eastright{ - name = "Danger: Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"anZ" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoa" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"aob" = ( -/turf/open/floor/plating, -/area/maintenance/port) -"aoc" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aod" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aoe" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port) -"aof" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aog" = ( -/obj/machinery/computer/exoscanner_control{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoh" = ( -/obj/item/exodrone, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoi" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aol" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"aom" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/security/prison) -"aon" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/syringe, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aoo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aop" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aoq" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Infirmary" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aor" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aos" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aou" = ( -/obj/structure/rack, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/riot{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_y = -2 - }, -/obj/item/clothing/head/helmet/alt{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aov" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -31 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aox" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"aoy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aoz" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aoJ" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Security Delivery"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/main) -"aoK" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Security" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/main) -"aoL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aoO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aoP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aoS" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "1;4;38;12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aoT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoX" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.8-Dorms-Lockers"; - location = "14.5-Recreation" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aoZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"apa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/theater) -"apc" = ( -/turf/open/floor/plating, -/area/maintenance/starboard) -"apd" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ape" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"apf" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"apg" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/reagent_containers/food/drinks/beer{ - desc = "Takes you to a whole new level of thinking."; - name = "Meta-Cider" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aph" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/gravity_generator) -"api" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"apj" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Gravity Generator Area"; - req_access_txt = "19; 61" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/gravity_generator) -"apk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apm" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"apn" = ( -/obj/machinery/power/solar_control{ - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"app" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"apq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"apr" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - freq = 1400; - location = "Disposals" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/window/northright{ - dir = 2; - name = "delivery door"; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "garbage" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"aps" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Disposal Conveyor Access"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/disposal) -"apt" = ( -/obj/structure/sign/warning/securearea{ - name = "\improper STAY CLEAR HEAVY MACHINERY" - }, -/turf/closed/wall, -/area/maintenance/disposal) -"apu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apv" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apw" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apx" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/service, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"apy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apz" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/port) -"apA" = ( -/obj/structure/sign/plaques/kiddie/library{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"apC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/item/tank/internals/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "N2O Storage"; - req_access_txt = "3" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/fore) -"apE" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"apG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"apJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"apL" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Shutters"; - pixel_y = -28; - req_access_txt = "3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"apM" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"apN" = ( -/obj/effect/turf_decal/trimline/neutral/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"apP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/trinary/filter/flipped, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"apQ" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Security - Gear Room"; - dir = 8 - }, -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"apX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"aqa" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aqb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqc" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqd" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/red, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/red, -/obj/item/clothing/head/soft/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqe" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/syringe, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"aqf" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aqh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aqi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"aqj" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fitness Room - Aft"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqk" = ( -/obj/machinery/vending/coffee, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aql" = ( -/obj/machinery/light, -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqm" = ( -/obj/machinery/vending/cigarette, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"aqo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aqp" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/main) -"aqq" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aqr" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"aqs" = ( -/obj/item/mmi, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aqt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aqu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aqv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aqw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aqx" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aqy" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqz" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqA" = ( -/obj/machinery/power/terminal, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aqC" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqD" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"aqE" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqF" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqG" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqH" = ( -/obj/machinery/space_heater, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aqI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port) -"aqL" = ( -/obj/structure/rack, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqO" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port) -"aqP" = ( -/obj/structure/light_construct/small, -/obj/item/bot_assembly/floorbot{ - build_step = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"aqR" = ( -/obj/structure/light_construct/small{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqS" = ( -/obj/item/cigbutt, -/obj/machinery/exodrone_launcher, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqT" = ( -/obj/structure/closet/crate, -/obj/item/clothing/gloves/color/fyellow, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aqX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aqY" = ( -/obj/structure/bed, -/obj/item/bedsheet, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"aqZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/rack, -/obj/machinery/camera{ - c_tag = "Brig - Infirmary"; - dir = 1 - }, -/obj/item/clothing/under/rank/medical/doctor/purple, -/obj/item/storage/firstaid/regular, -/obj/item/healthanalyzer{ - pixel_y = -2 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"ara" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Port" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/window{ - id = "armory"; - name = "armory shutters" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"arf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_access_txt = "3" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"arh" = ( -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ari" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Gear Room"; - req_one_access_txt = "1;4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"arj" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ark" = ( -/obj/machinery/newscaster/security_unit, -/turf/closed/wall, -/area/security/main) -"arq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aru" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_one_access_txt = "1;4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"arv" = ( -/turf/open/floor/plasteel/grimy, -/area/security/main) -"arw" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"arx" = ( -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"ary" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/maintenance/fore) -"arz" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"arA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/fore) -"arB" = ( -/turf/closed/wall, -/area/commons/dorms) -"arC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"arD" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/commons/dorms) -"arE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Recreation Area" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"arF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"arG" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"arH" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arI" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arK" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"arL" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arM" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"arO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"arP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"arQ" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"arR" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"arS" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"arT" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/starboard/fore) -"arU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"arV" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"arW" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arX" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arY" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control"; - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - dir = 1; - name = "'Monkey Pen"; - req_access_txt = "9" - }, -/turf/open/floor/grass, -/area/science/genetics) -"asb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asc" = ( -/obj/machinery/door/airlock/public/glass{ - name = "space-bridge access" - }, -/obj/machinery/button/door{ - id = "supplybridge"; - name = "Shuttle Bay Space Bridge Control"; - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asd" = ( -/obj/machinery/light, -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ase" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asf" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asi" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ask" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"asn" = ( -/obj/structure/closet/crate, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/breadslice/plain, -/obj/item/food/grown/potato, -/obj/item/food/grown/potato, -/obj/item/food/grown/onion, -/obj/item/food/grown/onion, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"aso" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"asp" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asr" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ass" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ast" = ( -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Entrance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asu" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"asv" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asw" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asx" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"asz" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"asB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"asC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"asK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"asM" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"asN" = ( -/obj/structure/chair, -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 1; - pixel_y = -30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"asP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"asT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/lighter, -/turf/open/floor/wood, -/area/commons/dorms) -"asU" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/commons/dorms) -"asV" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin3"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/commons/dorms) -"asW" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/lawoffice) -"asX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"asY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ata" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/button/door{ - id = "Cabin4"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/commons/dorms) -"atb" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/burgundy, -/turf/open/floor/carpet, -/area/commons/dorms) -"atc" = ( -/obj/structure/dresser, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"atd" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"ate" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"atf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"atg" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Room"; - req_access_txt = "19;23" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ath" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"ati" = ( -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"atk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"atl" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"atm" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"atn" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ato" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Cargo Bay Bridge Access" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atp" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atq" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atr" = ( -/obj/machinery/door/poddoor/shutters{ - id = "supplybridge" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"att" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atv" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atw" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/space/basic, -/area/maintenance/disposal/incinerator) -"atx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aty" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 2 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atC" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"atD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"atG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Brig Maintenance"; - req_one_access_txt = "63;12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atK" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atL" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"atM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"atO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"atR" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"atS" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"atW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"atY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"atZ" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/main) -"aua" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/fore) -"aub" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"auc" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"aud" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aue" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"auf" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aug" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin3"; - name = "Cabin 6" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aui" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"auj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"auk" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin4"; - name = "Cabin 5" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aul" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"aum" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"aun" = ( -/turf/open/floor/carpet, -/area/commons/dorms) -"auo" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"auq" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aur" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aus" = ( -/obj/structure/closet, -/obj/item/stock_parts/matter_bin, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aut" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"auu" = ( -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"auv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"auw" = ( -/obj/machinery/camera{ - c_tag = "Gravity Generator Foyer" - }, -/obj/structure/closet/radiation, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"aux" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auy" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/flashlight, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auz" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auB" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"auC" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"auD" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port) -"auG" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"auH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"auI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auK" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"auQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Incinerator Access"; - req_access_txt = "24" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"auR" = ( -/mob/living/simple_animal/hostile/retaliate/goose/vomit, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"auT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"auU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/security/brig) -"auW" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/security/brig) -"auY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auZ" = ( -/obj/machinery/computer/shuttle_flight/labor{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/brig) -"ava" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"avc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ave" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avf" = ( -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avi" = ( -/obj/machinery/computer/security/telescreen/interrogation{ - dir = 8; - pixel_x = 30 - }, -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avk" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"avl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avn" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"avo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"avp" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"avq" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"avt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"avx" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"avy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"avz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avA" = ( -/obj/structure/sign/warning/radiation/rad_area{ - dir = 1; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"avD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"avE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"avF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"avH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"avI" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/stack/sheet/iron/fifty{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"avJ" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avK" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"avN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"avO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"avR" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"avY" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"avZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awb" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"awe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"awg" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"awh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"awi" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too."; - health = 45; - maxHealth = 45; - name = "Officer Beepsky" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awn" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"awo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"awp" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"awq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awr" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aws" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"awt" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aww" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awx" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awz" = ( -/obj/machinery/camera{ - c_tag = "Interrogation room"; - dir = 8; - network = list("interrogation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"awA" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/fore) -"awB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/fore) -"awC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/dresser, -/turf/open/floor/carpet, -/area/commons/dorms) -"awD" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/tan, -/turf/open/floor/carpet, -/area/commons/dorms) -"awE" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin2"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/commons/dorms) -"awF" = ( -/obj/machinery/camera{ - c_tag = "Dormitories - Fore"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"awG" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin5"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/commons/dorms) -"awH" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/paper, -/turf/open/floor/wood, -/area/commons/dorms) -"awI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"awJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"awK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/highsecurity{ - name = "Gravity Generator Foyer"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/gravity_generator) -"awL" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"awM" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awP" = ( -/obj/item/clothing/gloves/color/rainbow, -/obj/item/clothing/shoes/sneakers/rainbow, -/obj/item/clothing/under/color/rainbow, -/obj/item/clothing/head/soft/rainbow, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"awS" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"awU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/mmi, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"awV" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awW" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"awZ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/security/warden) -"axc" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"axe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"axf" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_y = -25; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axh" = ( -/obj/machinery/computer/prisoner/management{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"axi" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/warden) -"axj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axl" = ( -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/under/rank/security/officer/formal, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/suit/security/officer, -/obj/item/clothing/under/rank/security/warden/formal, -/obj/item/clothing/suit/security/warden, -/obj/item/clothing/under/rank/security/head_of_security/formal, -/obj/item/clothing/suit/security/hos, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navyofficer, -/obj/item/clothing/head/beret/sec/navywarden, -/obj/item/clothing/head/hos/beret/navyhos, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"axm" = ( -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flasher"; - pixel_x = -6; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/machinery/button/flasher{ - id = "holdingflash"; - name = "Holding Cell Flasher"; - pixel_x = 6; - pixel_y = -38; - req_access_txt = "1" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/security/brig) -"axn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"axp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"axq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"axr" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"axs" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Brig - Hallway - Starboard"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axt" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"axu" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axv" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"axx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"axy" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axz" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/taperecorder, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1423; - listening = 0; - name = "Interrogation Intercom"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axA" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"axC" = ( -/turf/closed/wall, -/area/commons/toilet/restrooms) -"axD" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"axE" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"axF" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin2"; - name = "Cabin 4" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"axI" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin5"; - name = "Cabin 3" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"axJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"axK" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"axL" = ( -/obj/item/caution, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axM" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"axO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"axR" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axT" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Engineering" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/main) -"axU" = ( -/obj/machinery/door/window/southright{ - dir = 4; - name = "Engineering Deliveries"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"axV" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"axW" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"axX" = ( -/obj/machinery/light_switch{ - pixel_x = 23 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"axY" = ( -/turf/closed/wall/r_wall, -/area/engineering/main) -"axZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aya" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ayc" = ( -/obj/structure/table/reinforced, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aye" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ayf" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass{ - amount = 10 - }, -/obj/item/stack/rods, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ayi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"ayj" = ( -/turf/closed/wall, -/area/cargo/miningoffice) -"ayk" = ( -/obj/structure/closet/crate, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"ayl" = ( -/obj/structure/closet/emcloset, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_x = 30; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aym" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ayn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ayo" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"ayp" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"ayq" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"ayr" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"ays" = ( -/obj/machinery/light, -/obj/machinery/door_timer{ - id = "Cell 1"; - name = "Cell 1"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayw" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ayx" = ( -/obj/machinery/door_timer{ - id = "Cell 2"; - name = "Cell 2"; - pixel_y = -32 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/brig) -"ayy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"ayz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/dogbed/mcgriff, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/power/apc/auto_name/north, -/mob/living/simple_animal/pet/dog/pug/mcgriff, -/turf/open/floor/plasteel, -/area/security/warden) -"ayB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"ayC" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/security/brig) -"ayE" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 8; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/poster/random_official, -/obj/structure/cable, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"ayF" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"ayG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "detective_shutters"; - name = "detective's office shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/detectives_office) -"ayH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/detectives_office) -"ayI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ayJ" = ( -/turf/closed/wall, -/area/security/detectives_office) -"ayL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"ayM" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"ayN" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ayO" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"ayQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayR" = ( -/obj/item/wrench, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ayS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ayT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"ayU" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ayV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ayW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ayX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aza" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"azb" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"azd" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"azg" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"azj" = ( -/obj/structure/closet/crate, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"azk" = ( -/obj/structure/closet/crate, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"azl" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"azm" = ( -/obj/structure/closet/secure_closet/miner, -/obj/item/clothing/suit/hooded/wintercoat/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"azn" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"azp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"azr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/cigbutt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"azs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"azt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"azv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"azw" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"azx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"azy" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"azz" = ( -/obj/machinery/door_timer{ - id = "Cell 3"; - name = "Cell 3"; - pixel_x = 32; - pixel_y = -32 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"azD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/secure_closet/warden, -/obj/item/gun/energy/laser, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"azG" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"azK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azN" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"azO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"azP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"azQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"azR" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"azS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide{ - pixel_x = -2 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/trash/can{ - pixel_x = -8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"azT" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azU" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azV" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/safe{ - pixel_x = 32 - }, -/obj/machinery/button/door{ - id = "detective_shutters"; - name = "detective's office shutters control"; - pixel_y = 26; - req_access_txt = "4" - }, -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"azW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/fore) -"azX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/fore) -"azY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"azZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAa" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aAb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/bikehorn/rubberducky, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aAc" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aAd" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/dorms) -"aAe" = ( -/obj/structure/table, -/obj/item/clothing/under/suit/black/skirt, -/obj/item/clothing/under/suit/black_really, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/item/clothing/accessory/waistcoat, -/obj/item/clothing/suit/toggle/lawyer/black, -/obj/item/clothing/under/suit/red, -/obj/item/clothing/neck/tie/black, -/obj/item/clothing/under/suit/black, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/dorms) -"aAf" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aAg" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aAh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aAi" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAn" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aAo" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAp" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAr" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Fore" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAu" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aAv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"aAw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aAx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aAy" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/main) -"aAA" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"aAB" = ( -/obj/machinery/door/airlock/external{ - name = "Mining Dock Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"aAC" = ( -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAD" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Dock"; - req_access_txt = "48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAF" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAG" = ( -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAI" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAK" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/item/storage/fancy/cigarettes/cigpack_robust{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Dock Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/miningoffice) -"aAM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"aAN" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 1"; - name = "Cell 1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aAO" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aAP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"aAQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"aAR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit/green{ - luminosity = 2 - }, -/area/ai_monitored/command/nuke_storage) -"aAS" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/structure/closet/crate/silvercrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aAT" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 2"; - name = "Cell 2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aAV" = ( -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aAW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Labor Shuttle Dock"; - dir = 8 - }, -/obj/machinery/flasher{ - id = "PRelease"; - pixel_x = 24; - pixel_y = 20 - }, -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"aAX" = ( -/obj/machinery/door/window/brigdoor/security/cell{ - id = "Cell 3"; - name = "Cell 3" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 1"; - name = "Cell 1 Locker" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"aBa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 3"; - name = "Cell 3 Locker" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"aBb" = ( -/obj/effect/landmark/start/warden, -/obj/structure/chair/office, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel, -/area/security/warden) -"aBc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/turf/open/floor/plating, -/area/security/warden) -"aBd" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBe" = ( -/obj/machinery/holopad, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel, -/area/security/brig) -"aBf" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aBi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aBj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aBl" = ( -/obj/machinery/light_switch{ - pixel_x = -25 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aBn" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/hand_labeler, -/obj/item/camera/detective, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBo" = ( -/obj/effect/landmark/start/detective, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBp" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aBq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBs" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBt" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aBu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aBv" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aBw" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aBy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aBz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aBB" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aBC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aBD" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aBE" = ( -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aBF" = ( -/obj/structure/tank_dispenser, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aBG" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Storage" - }, -/obj/machinery/suit_storage_unit/engine, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aBH" = ( -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -2; - pixel_y = 2 - }, -/obj/structure/table, -/obj/item/stack/sheet/rglass{ - amount = 30; - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aBI" = ( -/turf/closed/wall, -/area/engineering/main) -"aBJ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aBK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aBM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aBN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"aBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aBQ" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aBS" = ( -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/rack, -/obj/item/shovel{ - pixel_x = -5 - }, -/obj/item/pickaxe{ - pixel_x = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aBT" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aBU" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall, -/area/cargo/miningoffice) -"aBW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aBX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aBY" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aBZ" = ( -/obj/item/hand_labeler_refill, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"aCd" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aCe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aCf" = ( -/obj/machinery/camera/motion{ - c_tag = "Vault"; - dir = 1; - network = list("vault") - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aCg" = ( -/obj/structure/safe, -/obj/item/storage/secure/briefcase{ - contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/melee/classic_baton/telescopic,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) - }, -/obj/item/storage/backpack/duffelbag/syndie/hitman, -/obj/item/card/id/advanced/silver/reaper, -/obj/item/lazarus_injector, -/obj/item/gun/energy/disabler, -/obj/item/gun/ballistic/revolver/russian, -/obj/item/ammo_box/a357, -/obj/item/clothing/neck/stethoscope, -/obj/item/book{ - desc = "An undeniably handy book."; - icon_state = "bookknock"; - name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" - }, -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aCh" = ( -/obj/machinery/camera{ - c_tag = "Warden's Office"; - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/table, -/obj/machinery/button/door{ - desc = "Controls the shutters over the cell windows."; - id = "Secure Gate"; - name = "Cell Window Control"; - pixel_x = -6; - pixel_y = 7; - req_access_txt = "63"; - specialfunctions = 4 - }, -/obj/machinery/button/door{ - desc = "Controls the shutters over the brig windows."; - id = "briglockdown"; - name = "Brig Lockdown Control"; - pixel_x = 6; - pixel_y = 7; - req_access = null; - req_access_txt = "63" - }, -/obj/machinery/button/door{ - desc = "Controls the blast doors in front of the prison wing."; - id = "Prison Gate"; - name = "Prison Wing Lockdown"; - pixel_y = -3; - req_access_txt = "2" - }, -/obj/item/key/security, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aCj" = ( -/obj/structure/table, -/obj/structure/cable, -/obj/machinery/button/door{ - desc = "A door remote control switch for the exterior brig doors."; - id = "outerbrig"; - name = "Brig Exterior Door Control"; - normaldoorcontrol = 1; - pixel_x = 6; - pixel_y = 7; - req_access_txt = "63" - }, -/obj/machinery/button/flasher{ - id = "secentranceflasher"; - name = "Brig Entrance Flasher"; - pixel_y = -3; - req_access_txt = "1" - }, -/obj/machinery/button/door{ - desc = "A door remote control switch for the interior brig doors."; - id = "innerbrig"; - name = "Brig Interior Door Control"; - normaldoorcontrol = 1; - pixel_x = -6; - pixel_y = 7; - req_access_txt = "63" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/warden) -"aCk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "Secure Gate"; - name = "brig shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"aCl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aCn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aCp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aCr" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aCs" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/geiger_counter{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -5; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"aCt" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aCu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCv" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCw" = ( -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCx" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/open/floor/carpet, -/area/security/detectives_office) -"aCz" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/fore) -"aCA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"aCB" = ( -/obj/machinery/door/airlock{ - name = "Unisex Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aCC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCD" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCE" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCG" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aCI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aCJ" = ( -/obj/structure/bed, -/obj/machinery/button/door{ - id = "Cabin6"; - name = "Dorm Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/carpet, -/area/commons/dorms) -"aCK" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/clothing/under/suit/navy, -/turf/open/floor/carpet, -/area/commons/dorms) -"aCM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aCN" = ( -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aCO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aCP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aCQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aCR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"aCT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aCU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"aCY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aCZ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/main) -"aDa" = ( -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"aDb" = ( -/turf/closed/wall, -/area/construction/mining/aux_base) -"aDh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aDi" = ( -/obj/machinery/requests_console{ - department = "Mining"; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aDj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aDk" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aDl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/safe/floor, -/obj/item/food/fortunecookie, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"aDq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aDr" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/command/nuke_storage) -"aDs" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/vault{ - name = "Vault"; - req_access_txt = "53" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aDu" = ( -/obj/machinery/door/poddoor/preopen{ - id = "prison release"; - name = "prisoner processing blast door" - }, -/obj/machinery/button/door{ - id = "prison release"; - name = "Labor Camp Shuttle Lockdown"; - pixel_x = -25; - req_access_txt = "2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDv" = ( -/turf/closed/wall, -/area/hallway/primary/fore) -"aDw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDx" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aDy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aDA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDC" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aDE" = ( -/turf/open/floor/plasteel, -/area/security/warden) -"aDF" = ( -/obj/machinery/flasher{ - id = "holdingflash"; - pixel_x = 25 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aDG" = ( -/obj/structure/rack, -/obj/item/storage/box/firingpins{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/firingpins, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aDH" = ( -/obj/structure/closet/secure_closet/brig, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aDI" = ( -/obj/machinery/requests_console{ - department = "Detective's office"; - pixel_x = -30 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDL" = ( -/obj/machinery/light/small, -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDM" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDN" = ( -/obj/machinery/vending/wardrobe/det_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aDO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/fore) -"aDP" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "Toilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDQ" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet3"; - name = "Unit 3" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDS" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDT" = ( -/obj/structure/urinal{ - pixel_y = 29 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDV" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aDW" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"aDX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aDY" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aDZ" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aEa" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aEb" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aEc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"aEd" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin6"; - name = "Cabin 2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aEe" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"aEf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/dorms) -"aEg" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet, -/area/commons/dorms) -"aEh" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aEi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEj" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Storage"; - req_access_txt = "10" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aEn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aEq" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"aEt" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aEv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"aEw" = ( -/obj/machinery/computer/security/mining{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aEx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aEz" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aEF" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"aEG" = ( -/obj/machinery/flasher{ - id = "Cell 1"; - pixel_x = -28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aEH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/construction/storage_wing) -"aEI" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aEK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEL" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aEM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aEN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"aEQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aES" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"aET" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1-BrigCells"; - location = "0-SecurityDesk" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command) -"aEV" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aEW" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"aEX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEZ" = ( -/obj/machinery/door/window{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFa" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aFb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Detective Maintenance"; - req_access_txt = "4" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aFc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Restrooms"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFd" = ( -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFe" = ( -/obj/machinery/light/small, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFg" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aFj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFl" = ( -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFm" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFn" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFo" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aFp" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -38 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aFq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aFr" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/main) -"aFs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain/private) -"aFt" = ( -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aFu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"aFx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aFz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plating, -/area/engineering/main) -"aFB" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"aFC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"aFD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/meter, -/obj/machinery/light, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"aFE" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access_txt = "37" - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/turf/open/floor/carpet/royalblue, -/area/service/library) -"aFF" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 1; - req_access = null - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aFH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aFI" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aFJ" = ( -/obj/machinery/door/airlock/mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aFK" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -26; - pixel_y = -12 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aFL" = ( -/obj/structure/chair/office, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/effect/landmark/start/depsec/supply, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aFR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 4; - name = "Prison Monitor"; - network = list("prison"); - pixel_x = -30 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aFV" = ( -/obj/machinery/status_display/supply{ - pixel_y = 32 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aFW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aFX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"aFY" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/structure/closet/crate/goldcrate, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"aFZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGd" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGf" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGh" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/effect/spawner/lootdrop/gambling, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"aGl" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGo" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aGq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/flasher{ - id = "secentranceflasher"; - pixel_x = 25 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"aGr" = ( -/obj/structure/rack, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/under/rank/prisoner, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/clothing/shoes/sneakers/orange, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"aGu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGv" = ( -/obj/machinery/light/small, -/obj/effect/landmark/blobstart, -/obj/structure/closet/secure_closet/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aGw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGy" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 30 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGz" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door{ - id = "Toilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGA" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet2"; - name = "Unit 2" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGF" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aGG" = ( -/obj/machinery/camera{ - c_tag = "Dormitories - Aft"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aGH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aGJ" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aGK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aGL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aGM" = ( -/obj/machinery/door/airlock{ - id_tag = "Cabin7"; - name = "Cabin 1" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aGN" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"aGO" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aGP" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/clothing/under/misc/assistantformal, -/turf/open/floor/wood, -/area/commons/dorms) -"aGQ" = ( -/obj/structure/table, -/obj/item/stack/rods/fifty, -/obj/item/wrench, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aGR" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = 4; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aGS" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/stack/cable_coil, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/item/stock_parts/cell/emproof{ - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aGT" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/closet/crate/solarpanel_small, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aGU" = ( -/obj/machinery/power/port_gen/pacman, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aGV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aGW" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engineering/main) -"aGX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aGY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"aGZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "External Gas to Loop" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aHc" = ( -/obj/structure/filingcabinet, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHe" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHg" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHh" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHj" = ( -/obj/structure/closet/secure_closet/security/cargo, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aHk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aHl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/closet, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aHm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aHn" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/box; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"aHp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel, -/area/security/brig) -"aHs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/service/theater) -"aHt" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aHu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"aHv" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aHw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHx" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"aHy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/fore) -"aHA" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHC" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/turf/closed/wall, -/area/security/courtroom) -"aHD" = ( -/turf/closed/wall, -/area/security/courtroom) -"aHE" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/turf/open/floor/plasteel, -/area/security/brig) -"aHF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aHG" = ( -/turf/closed/wall, -/area/lawoffice) -"aHH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Law Office Maintenance"; - req_access_txt = "38" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHI" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aHJ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aHK" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet4"; - name = "Unit 4" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aHL" = ( -/obj/machinery/door/airlock{ - name = "Unit B" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aHM" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.9-CrewQuarters-Central"; - location = "14.8-Dorms-Lockers" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aHN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aHR" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aHS" = ( -/obj/machinery/button/door{ - id = "Cabin7"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/obj/structure/bed, -/obj/item/bedsheet/dorms, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aHT" = ( -/obj/structure/chair/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"aHU" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = 29; - pixel_y = 1 - }, -/obj/item/paper, -/turf/open/floor/wood, -/area/commons/dorms) -"aHV" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aHX" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aHY" = ( -/turf/open/floor/plasteel, -/area/engineering/main) -"aHZ" = ( -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aIc" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plating, -/area/engineering/main) -"aIf" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Base Construction"; - dir = 1 - }, -/obj/machinery/button/door{ - id = "aux_base_shutters"; - name = "Public Shutters Control"; - pixel_y = -24; - req_one_access_txt = "72" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aIg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/storage) -"aIi" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 1; - pixel_y = 27 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Fore" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aIj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"aIn" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -11; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aIo" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/camera{ - c_tag = "Security Post - Cargo"; - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aIp" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aIr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aIu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aIv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aIw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aIx" = ( -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aIz" = ( -/obj/machinery/camera{ - c_tag = "Outer Vault"; - dir = 8; - name = "storage wing camera" - }, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/obj/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aIA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"aIC" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/camera/autoname, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aID" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aIE" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aIF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 28 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aII" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIK" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aIL" = ( -/obj/structure/closet/secure_closet/courtroom, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIM" = ( -/obj/structure/chair{ - name = "Bailiff" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIN" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIO" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIP" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Courtroom" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIQ" = ( -/obj/structure/chair{ - name = "Judge" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIR" = ( -/turf/open/floor/plasteel, -/area/security/courtroom) -"aIS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aIT" = ( -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aIU" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/requests_console{ - department = "Law office"; - pixel_y = 32 - }, -/obj/machinery/newscaster{ - pixel_x = -31 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aIV" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/pen/red, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aIW" = ( -/obj/structure/rack, -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/wood, -/area/lawoffice) -"aIX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/lawoffice) -"aIY" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/lawoffice) -"aIZ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aJa" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/button/door{ - id = "Toilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = -25; - specialfunctions = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aJb" = ( -/obj/machinery/door/airlock{ - id_tag = "Toilet1"; - name = "Unit 1" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aJc" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 32 - }, -/obj/machinery/button/door{ - id = "Toilet4"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aJd" = ( -/obj/machinery/light/small, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aJe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aJf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aJg" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aJh" = ( -/turf/closed/wall, -/area/service/hydroponics/garden) -"aJi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher{ - id = "Cell 2"; - pixel_x = -23; - pixel_y = -23 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel, -/area/security/brig) -"aJj" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engineering/main) -"aJk" = ( -/obj/machinery/field/generator, -/turf/open/floor/plating, -/area/engineering/main) -"aJl" = ( -/obj/machinery/shieldgen, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Secure Storage" - }, -/turf/open/floor/plating, -/area/engineering/main) -"aJm" = ( -/obj/machinery/shieldgen, -/turf/open/floor/plating, -/area/engineering/main) -"aJn" = ( -/obj/structure/table, -/obj/item/airlock_painter, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"aJp" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/item/clothing/glasses/meson/engine, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel, -/area/engineering/main) -"aJu" = ( -/turf/open/floor/plating, -/area/engineering/main) -"aJB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/cargo/storage) -"aJC" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aJE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"aJF" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aJG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"aJH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aJJ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Security Post - Cargo"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"aJK" = ( -/turf/closed/wall, -/area/security/checkpoint/supply) -"aJN" = ( -/turf/closed/wall, -/area/commons/storage/primary) -"aJO" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/primary) -"aJP" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aJQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aJS" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload) -"aJT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJV" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aJW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Brig"; - req_access_txt = "63; 42" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aJX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aJY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aJZ" = ( -/obj/structure/table/wood, -/obj/item/radio/intercom{ - broadcasting = 1; - dir = 8; - listening = 0; - name = "Station Intercom (Court)" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKa" = ( -/obj/structure/table/wood, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKb" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aKd" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aKe" = ( -/obj/machinery/door/window/southleft{ - name = "Court Cell"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aKf" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aKg" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/folder/blue, -/obj/item/stamp/law, -/turf/open/floor/wood, -/area/lawoffice) -"aKh" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aKj" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aKk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "1;4;38;12" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/fore) -"aKl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"aKm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aKn" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/commons/dorms) -"aKo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitories" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/dorms) -"aKp" = ( -/obj/item/reagent_containers/spray/plantbgone, -/obj/item/reagent_containers/spray/pestspray{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/nutrient/ez, -/obj/item/reagent_containers/glass/bottle/nutrient/rh{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aKq" = ( -/obj/machinery/biogenerator, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aKr" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/item/crowbar, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aKs" = ( -/obj/machinery/seed_extractor, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aKt" = ( -/obj/item/seeds/apple, -/obj/item/seeds/banana, -/obj/item/seeds/cocoapod, -/obj/item/seeds/grape, -/obj/item/seeds/orange, -/obj/item/seeds/sugarcane, -/obj/item/seeds/wheat, -/obj/item/seeds/watermelon, -/obj/structure/table, -/obj/item/seeds/tower, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aKu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aKv" = ( -/mob/living/simple_animal/chicken{ - name = "Featherbottom"; - real_name = "Featherbottom" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aKw" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aKx" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plating, -/area/engineering/main) -"aKz" = ( -/obj/machinery/door/poddoor{ - id = "Secure Storage"; - name = "Secure Storage" - }, -/turf/open/floor/plating, -/area/engineering/main) -"aKB" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engineering/main) -"aKF" = ( -/obj/machinery/button/door{ - id = "engsm"; - name = "Radiation Shutters Control"; - pixel_x = 24; - req_access_txt = "10" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"aKG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"aKH" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Gas to Chamber" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"aKI" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"aKL" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Mix Bypass" - }, -/turf/open/floor/engine, -/area/engineering/main) -"aKN" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"aKO" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/storage) -"aKP" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aKR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aKS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aKU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aKW" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aKX" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 28; - pixel_y = 1; - req_access_txt = "31" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aKZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aLa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/waterbottle/large{ - pixel_x = 5; - pixel_y = 20 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/trash/plate{ - pixel_x = -9 - }, -/obj/item/storage/box/donkpockets{ - pixel_x = -9; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/waterbottle{ - pixel_x = 7 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aLb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/freezer, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aLc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"aLd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"aLe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 27 - }, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aLh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aLj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aLk" = ( -/obj/item/cigbutt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aLl" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/commons/storage/primary) -"aLm" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aLn" = ( -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aLo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"aLp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"aLq" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLr" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLs" = ( -/obj/structure/sign/plaques/kiddie{ - pixel_y = 32 - }, -/obj/structure/table, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Fore"; - network = list("aiupload") - }, -/obj/item/kirbyplants/photosynthetic{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLt" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLu" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aLv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aLw" = ( -/obj/machinery/door/window/eastleft{ - dir = 8; - name = "Service Deliveries"; - req_one_access_txt = "25;26;35;28;22;37;46;38;70" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"aLx" = ( -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/library) -"aLy" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aLz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLB" = ( -/obj/effect/landmark/start/lawyer, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aLD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aLE" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/folder/red, -/obj/item/clothing/glasses/sunglasses/big, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aLF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aLG" = ( -/obj/machinery/photocopier, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 8 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aLH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aLJ" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"aLK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLN" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLO" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/status_display/evac{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLP" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/camera{ - c_tag = "Locker Room Starboard" - }, -/obj/structure/sign/warning/pods{ - pixel_y = 30 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLT" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aLU" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aLV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aLW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aLX" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen A" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aLY" = ( -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aLZ" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"aMa" = ( -/obj/machinery/power/emitter, -/turf/open/floor/plating, -/area/engineering/main) -"aMb" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/engineering/main) -"aMc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aMd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"aMf" = ( -/obj/structure/cable, -/obj/vehicle/ridden/forklift{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aMg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plating, -/area/engineering/main) -"aMh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) -"aMi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Engine Coolant Bypass" - }, -/turf/open/floor/engine, -/area/engineering/main) -"aMj" = ( -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"aMk" = ( -/turf/open/floor/engine, -/area/engineering/supermatter) -"aMm" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aMo" = ( -/obj/structure/reflector/box/anchored{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aMq" = ( -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"aMr" = ( -/obj/structure/window/reinforced, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aMs" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"aMt" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/cargo/storage) -"aMu" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aMv" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aMw" = ( -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aMy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aMz" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aMA" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aMB" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aMC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Primary Tool Storage" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aMD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aME" = ( -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/stack/package_wrap, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"aMF" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor2"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/cargo/storage) -"aMG" = ( -/obj/structure/table, -/obj/item/ai_module/core/full/asimov, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/item/ai_module/core/freeformcore, -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Core Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_neutral, -/obj/item/ai_module/core/full/custom, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aMH" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aMI" = ( -/obj/structure/table, -/obj/machinery/door/window{ - dir = 8; - name = "High-Risk Modules"; - req_access_txt = "20" - }, -/obj/structure/window/reinforced, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/obj/effect/spawner/lootdrop/aimodule_harmful, -/obj/item/ai_module/supplied/oxygen, -/obj/item/ai_module/supplied/protect_station, -/obj/item/ai_module/zeroth/onehuman, -/obj/item/ai_module/reset/purge, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aMJ" = ( -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aMK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aML" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMM" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMN" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMO" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMP" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aMQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/turf/open/floor/wood, -/area/security/courtroom) -"aMR" = ( -/turf/open/floor/wood, -/area/lawoffice) -"aMS" = ( -/obj/effect/landmark/start/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"aMT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"aMU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"aMV" = ( -/obj/structure/filingcabinet/employment, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/lawoffice) -"aMW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aMX" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aMY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aMZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNc" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNd" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNe" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.5-Recreation"; - location = "14.3-Lockers-Dorms" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aNg" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/service/hydroponics/garden) -"aNi" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aNj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aNk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/mob/living/simple_animal/chicken{ - name = "Kentucky"; - real_name = "Kentucky" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aNl" = ( -/obj/structure/window/reinforced, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aNm" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aNn" = ( -/obj/machinery/power/emitter, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/engineering/main) -"aNo" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stack/sheet/mineral/plasma{ - amount = 30 - }, -/obj/item/gps, -/turf/open/floor/plating, -/area/engineering/main) -"aNq" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"aNr" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aNu" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Gas to Filter" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"aNv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/engine, -/area/engineering/supermatter) -"aNw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aNx" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNy" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNz" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNA" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aNB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aNC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aNE" = ( -/obj/machinery/button/door{ - id = "QMLoaddoor"; - layer = 4; - name = "Loading Doors"; - pixel_x = -27; - pixel_y = -5; - req_access_txt = "31" - }, -/obj/machinery/button/door{ - id = "QMLoaddoor2"; - layer = 4; - name = "Loading Doors"; - pixel_x = -27; - pixel_y = 5; - req_access_txt = "31" - }, -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aNF" = ( -/obj/machinery/door/airlock/mining{ - name = "Warehouse"; - req_one_access_txt = "31;48" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aNI" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aNJ" = ( -/obj/structure/cable, -/obj/machinery/computer/security/telescreen/interrogation{ - name = "isolation room monitor"; - network = list("isolation"); - pixel_y = 31 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aNL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aNM" = ( -/obj/machinery/door/poddoor/shutters{ - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aNT" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aNV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/machinery/button/door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -25; - pixel_y = 33; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/item/electronics/apc, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aNZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload) -"aOa" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOb" = ( -/obj/machinery/computer/upload/borg, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - layer = 3.1; - name = "Cyborg Upload Console Window"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOc" = ( -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOd" = ( -/obj/machinery/computer/upload/ai, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - layer = 3.1; - name = "Upload Console Window"; - req_access_txt = "16" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOe" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aOf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOg" = ( -/obj/structure/chair{ - dir = 4; - name = "Prosecution" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOh" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOj" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOk" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOl" = ( -/obj/structure/chair{ - dir = 8; - name = "Defense" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOn" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "lawyer_shutters"; - name = "law office shutters control"; - pixel_y = -26; - req_access_txt = "38" - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/item/taperecorder, -/obj/item/cartridge/lawyer, -/turf/open/floor/wood, -/area/lawoffice) -"aOo" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/wood, -/area/lawoffice) -"aOp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"aOq" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/lawoffice) -"aOr" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/turf/open/floor/wood, -/area/lawoffice) -"aOs" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table, -/obj/item/folder, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/engine, -/area/engineering/main) -"aOu" = ( -/turf/open/floor/plasteel, -/area/commons/locker) -"aOv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOw" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOy" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aOG" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Garden" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aON" = ( -/obj/machinery/disposal/bin, -/obj/machinery/camera{ - c_tag = "Garden"; - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aOO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/engineering/main) -"aOR" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aOS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"aOT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aOU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aOV" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aOW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/aisat) -"aOX" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aOY" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aPd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aPe" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Mid"; - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aPf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aPl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aPo" = ( -/obj/structure/noticeboard{ - pixel_y = 31 - }, -/obj/item/reagent_containers/food/condiment/milk{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/condiment/sugar{ - pixel_y = 4 - }, -/obj/item/reagent_containers/food/condiment/soymilk{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/reagent_containers/food/drinks/ice{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/reagent_containers/food/drinks/bottle/cream{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aPp" = ( -/obj/structure/sign/poster/contraband/robust_softdrinks{ - name = "Jim Norton's Quebecois Coffee"; - pixel_y = 32 - }, -/obj/item/seeds/coffee{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/seeds/coffee/robusta{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/seeds/coffee{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/storage/pill_bottle/happinesspsych{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/seeds/coffee{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aPq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aPt" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/quarantine, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aPv" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPw" = ( -/obj/machinery/ai_slipper{ - uses = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPx" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/freeform, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aPz" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=0-SecurityDesk"; - location = "16-Fore" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPA" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aPB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom) -"aPC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom"; - req_access_txt = "42" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aPD" = ( -/obj/effect/landmark/start/botanist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aPE" = ( -/obj/machinery/light/small/broken, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aPF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/lawoffice) -"aPG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "lawyer_shutters"; - name = "law office shutters" - }, -/turf/open/floor/plating, -/area/lawoffice) -"aPH" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aPI" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/plasteel, -/area/commons/locker) -"aPJ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aPK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aPM" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plasteel, -/area/commons/locker) -"aPO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aPP" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/bot, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aPQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aPR" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aPS" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aPT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"aPU" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aPV" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/atmos_alert, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aPW" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Power Monitoring" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/station_alert, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aPX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aPY" = ( -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"aQa" = ( -/obj/structure/table, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/engineering/main) -"aQd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"aQe" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aQg" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/cargo/storage) -"aQh" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aQi" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aQj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aQk" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aQl" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"aQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #4" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/airlock_painter/decal, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQu" = ( -/obj/structure/cable, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aQv" = ( -/obj/machinery/door/window/southright{ - dir = 8; - name = "Jim Norton's Quebecois Coffee"; - req_one_access_txt = "12;25;28;35;37" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aQw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aQx" = ( -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aQy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/stock_parts/cell{ - maxcharge = 2000 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aQz" = ( -/obj/structure/table, -/obj/item/ai_module/reset, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aQA" = ( -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Port"; - dir = 1; - network = list("aiupload") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aQC" = ( -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_y = -25 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Chamber - Starboard"; - dir = 1; - network = list("aiupload") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai_upload) -"aQD" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aQE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aQF" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQG" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aQH" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aQJ" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aQK" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQM" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQO" = ( -/obj/machinery/camera{ - c_tag = "Crew Quarters Entrance" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/sign/departments/lawyer{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQS" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aQW" = ( -/obj/structure/table, -/obj/item/clothing/head/soft/grey{ - pixel_x = -2; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQX" = ( -/obj/structure/table, -/obj/item/razor{ - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQY" = ( -/obj/structure/table, -/obj/item/paicard, -/turf/open/floor/plasteel, -/area/commons/locker) -"aQZ" = ( -/obj/structure/cable, -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"aRa" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/item/clothing/mask/balaclava, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aRb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aRc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aRd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aRe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aRf" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aRg" = ( -/obj/machinery/door/firedoor/border_only/closed{ - dir = 8; - name = "Animal Pen B" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aRh" = ( -/mob/living/simple_animal/cow{ - name = "Betsy"; - real_name = "Betsy" - }, -/turf/open/floor/grass, -/area/service/hydroponics/garden) -"aRi" = ( -/obj/item/cigbutt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aRj" = ( -/obj/effect/landmark/start/station_engineer, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -31 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRm" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"aRn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRp" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRr" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aRv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"aRy" = ( -/turf/closed/wall/r_wall, -/area/aisat) -"aRA" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"aRD" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/camera_advanced/base_construction/aux{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRF" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/pipe_dispenser, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aRG" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aRH" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aRI" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/folder/yellow{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_x = -9; - pixel_y = 1 - }, -/obj/item/paper{ - pixel_x = -5 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aRK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/internals, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aRL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #3" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #3"; - suffix = "#3" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aRQ" = ( -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/storage/fancy/donut_box, -/obj/item/paper{ - info = "Jim Norton's Quebecois Coffee. You see, in 2265 the Quebecois had finally had enough of Canada's shit, and went to the one place that wasn't corrupted by Canuckistan.Je vais au seul endroit qui n'a pas � corrompu par les Canadiens ... ESPACE."; - name = "Coffee Shop"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aRR" = ( -/obj/structure/window/reinforced, -/obj/item/reagent_containers/food/drinks/mug/coco{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/mug/tea{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -3 - }, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aRS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aRT" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_y = -24 - }, -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aRV" = ( -/obj/machinery/porta_turret/ai{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aRW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aRX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aRY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aRZ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=16-Fore"; - location = "15-Court" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aSa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"aSc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aSd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"aSe" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/locker) -"aSf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aSg" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/commons/locker) -"aSh" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"aSi" = ( -/obj/structure/rack, -/obj/item/storage/briefcase, -/obj/item/storage/briefcase{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aSj" = ( -/obj/structure/table, -/obj/item/cultivator, -/obj/item/hatchet, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/coin/silver, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aSk" = ( -/obj/structure/table, -/obj/item/hatchet, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/reagent_containers/glass/bucket, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aSl" = ( -/obj/structure/table, -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/item/food/grown/cocoapod, -/obj/item/food/grown/apple, -/obj/item/food/grown/chili, -/obj/item/food/grown/cherries, -/obj/item/food/grown/soybeans, -/obj/item/food/grown/citrus/lime, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aSm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aSn" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics/garden) -"aSp" = ( -/obj/machinery/power/terminal, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSq" = ( -/obj/machinery/power/terminal, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSr" = ( -/obj/machinery/power/terminal, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSs" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Monitoring"; - req_access_txt = "32" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aSu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSv" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"aSB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aSD" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/aisat) -"aSF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"aSG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"aSH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/secondary/entry) -"aSI" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aSJ" = ( -/obj/machinery/computer/shuttle_flight/mining{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSK" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSL" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSM" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSN" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/item/stack/rods/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"aSO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"aSP" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aSQ" = ( -/turf/open/floor/plasteel, -/area/cargo/storage) -"aSR" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"aSS" = ( -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aST" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aSU" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aSV" = ( -/obj/structure/table, -/obj/item/pen/red{ - pixel_x = 8; - pixel_y = 15 - }, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = -4; - pixel_y = 10 - }, -/obj/item/pen/fountain{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aSZ" = ( -/turf/closed/wall, -/area/cargo/warehouse) -"aTb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aTc" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"aTd" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"aTe" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/obj/structure/chair/stool{ - name = "Jim Norton's Quebecois Coffee stool" - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"aTf" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aTg" = ( -/obj/effect/turf_decal/arrows/red{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aTh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aTi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload"; - req_access_txt = "16" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload) -"aTj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"aTk" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/courtroom) -"aTl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTm" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTn" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Courtroom - Gallery"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aTp" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aTq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTs" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.3-Lockers-Dorms"; - location = "14.2-Central-CrewQuarters" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Locker Room" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTw" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Locker Room Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTx" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTy" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTz" = ( -/obj/machinery/light, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTA" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTB" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aTC" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aTD" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aTE" = ( -/obj/machinery/power/smes/engineering, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"aTF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/structure/cable, -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 3; - name = "Engineering RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/main) -"aTO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aTQ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aTR" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aTS" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore Port"; - dir = 8; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aTT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/aisat) -"aTU" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/aisat) -"aTV" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aTW" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aTX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aTY" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/aisat) -"aTZ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore Starboard"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aUa" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aUb" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aUc" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod One" - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aUd" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aUe" = ( -/turf/closed/wall, -/area/cargo/storage) -"aUf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aUg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"aUh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aUi" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm{ - pixel_y = 27 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aUj" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap{ - pixel_y = 2 - }, -/obj/item/stack/package_wrap{ - pixel_y = 5 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aUk" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aUl" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aUm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aUp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"aUq" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/cafeteria) -"aUs" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/structure/table{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/modular_computer/laptop{ - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"aUt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"aUv" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"aUw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aUx" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUy" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai_upload"; - icon_state = "control_stun"; - name = "AI Upload turret control"; - pixel_y = 28 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - name = "Private AI Channel"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the AI Upload."; - dir = 4; - name = "AI Upload Monitor"; - network = list("aiupload"); - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUA" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera/motion{ - c_tag = "AI Upload Foyer"; - network = list("aiupload") - }, -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aUB" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/fore) -"aUC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fore Primary Hallway" - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"aUF" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/security/courtroom) -"aUG" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUJ" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aUL" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/commons/locker) -"aUM" = ( -/turf/closed/wall, -/area/commons/locker) -"aUN" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUO" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUP" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUR" = ( -/obj/structure/closet/wardrobe/green, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUS" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUT" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aUU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aUV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aUW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"aUX" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"aUY" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/main) -"aUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aVc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aVd" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engineering/main) -"aVe" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aVh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aVk" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aVl" = ( -/obj/machinery/porta_turret/ai{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVn" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVp" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Fore"; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVq" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVr" = ( -/obj/machinery/porta_turret/ai{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aVs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aVt" = ( -/obj/item/kirbyplants{ - icon_state = "plant-13" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVv" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVw" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVx" = ( -/obj/structure/chair, -/obj/machinery/camera{ - c_tag = "Arrivals - Fore Arm - Far" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVy" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVC" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVD" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aVE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aVG" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aVK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aVM" = ( -/obj/machinery/door/airlock/mining{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aVN" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aVQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aVR" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/cafeteria) -"aVS" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/bot, -/obj/item/clothing/suit/apron/chef{ - name = "Jim Norton's Quebecois Coffee apron" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/autoname{ - c_tag = "Jim Norton's Quebecois Coffee" - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"aVT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"aVU" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aVV" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aVW" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aVY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Network Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aVZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"aWa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWd" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWf" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWi" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Courtroom" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"aWm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"aWn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/locker) -"aWo" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/commons/locker) -"aWp" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aWq" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aWr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"aWs" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aWt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aWu" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"aWv" = ( -/turf/closed/wall, -/area/engineering/storage/tech) -"aWw" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/ce) -"aWx" = ( -/obj/machinery/keycard_auth{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/computer/apc_control, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aWy" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 4; - name = "Chief Engineer RC"; - pixel_y = 32 - }, -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aWz" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aWA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"aWB" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/heads_quarters/ce) -"aWD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"aWH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/engine, -/area/engineering/main) -"aWK" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aWL" = ( -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWN" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWO" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/engine, -/area/engineering/main) -"aWQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aWR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aWT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWU" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWV" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWY" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aWZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"aXa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aXb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"aXd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Fore Arm"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aXf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aXg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"aXh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aXi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aXj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"aXk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aXl" = ( -/obj/machinery/door/poddoor{ - id = "QMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMLoad" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"aXn" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"aXq" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXr" = ( -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXs" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"aXu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXw" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXx" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXy" = ( -/obj/machinery/disposal/bin, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aXz" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aXB" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXE" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - AI Upload" - }, -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'HIGH-POWER TURRETS AHEAD'."; - name = "\improper HIGH-POWER TURRETS AHEAD"; - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXF" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXH" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXK" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXL" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXM" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXN" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXO" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXP" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXQ" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYa" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYd" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"aYg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aYi" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYj" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYk" = ( -/obj/structure/rack, -/obj/machinery/status_display/ai{ - pixel_y = 31 - }, -/obj/effect/spawner/lootdrop/techstorage/medical, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYl" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYm" = ( -/obj/structure/table, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYn" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/ai_module/reset, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aYo" = ( -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aYp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aYq" = ( -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aYr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aYs" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/closet/radiation, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"aYt" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/closet/firecloset, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"aYu" = ( -/turf/closed/wall, -/area/security/checkpoint/engineering) -"aYx" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aYy" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Port"; - dir = 4; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aYz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Core shutters"; - name = "AI core shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"aYA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aYC" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aYE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYF" = ( -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"aYH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aYI" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"aYJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"aYL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"aYM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Cargo Bay - Aft"; - dir = 1; - pixel_x = 14 - }, -/obj/machinery/disposal/delivery_chute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Crate to Shuttle"; - req_access_txt = "50" - }, -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYP" = ( -/obj/machinery/conveyor/inverted{ - dir = 6; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYR" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/cargo/storage) -"aYS" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/southright{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"aYT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aYU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYV" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYY" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=3-Central-Port"; - location = "2.1-Leaving-Storage" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"aZa" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZd" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZe" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZg" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZh" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=2.1-Leaving-Storage"; - location = "1.5-Fore-Central" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZk" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZl" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZm" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZp" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=15-Court"; - location = "14.9-CrewQuarters-Central" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZs" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZt" = ( -/turf/closed/wall, -/area/commons/storage/tools) -"aZw" = ( -/turf/closed/wall/r_wall, -/area/engineering/storage/tech) -"aZx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aZy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aZz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aZB" = ( -/obj/structure/table, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"aZC" = ( -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = -24; - pixel_y = -5; - req_access_txt = "10" - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "24" - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aZD" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/lamp, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"aZE" = ( -/obj/structure/table/reinforced, -/obj/item/folder/yellow, -/obj/item/stamp/ce, -/obj/item/reagent_containers/pill/patch/aiuri, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"aZF" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"aZG" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/rcl/pre_loaded, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"aZH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"aZI" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aZJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aZK" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"aZL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) -"aZM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"aZO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/turf/open/floor/wood, -/area/service/library) -"aZP" = ( -/obj/structure/table/wood, -/obj/structure/sign/picture_frame/showroom/three{ - pixel_x = -8; - pixel_y = 32 - }, -/obj/structure/sign/picture_frame/showroom/four{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/paicard{ - desc = "A real Nanotrasen success, these personal AIs provide all of the companionship of an AI without any law related red-tape."; - name = "\improper Nanotrasen-brand personal AI device exhibit" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"aZQ" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = -10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "rightsecure"; - dir = 4; - icon_state = "rightsecure"; - layer = 4.1; - name = "Secondary AI Core Access"; - obj_integrity = 300; - pixel_x = 4; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aZR" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -25; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aZU" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"aZW" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aZX" = ( -/obj/machinery/flasher{ - id = "AI"; - pixel_x = 25; - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"aZY" = ( -/obj/effect/landmark/start/ai/secondary, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = 10; - pixel_y = 22 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 10; - pixel_y = -25 - }, -/obj/machinery/door/window{ - base_state = "leftsecure"; - dir = 8; - icon_state = "leftsecure"; - layer = 4.1; - name = "Tertiary AI Core Access"; - obj_integrity = 300; - pixel_x = -3; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"aZZ" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"baa" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bab" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bac" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bad" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bae" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"baf" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;48;50;1" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bag" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bah" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"bai" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bak" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bal" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/main) -"bao" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Atmos to Loop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"bap" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster"; - req_access_txt = "41" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/qm) -"bat" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Crate Security Door"; - req_access_txt = "50" - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bau" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/storage) -"bav" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/storage) -"baw" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bax" = ( -/obj/machinery/computer/cargo{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bay" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"baA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"baB" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed{ - pixel_x = 11; - pixel_y = 11 - }, -/obj/item/multitool{ - pixel_x = -3; - pixel_y = -4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"baE" = ( -/turf/closed/wall, -/area/hallway/primary/port) -"baF" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baH" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baL" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baM" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baO" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baP" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baQ" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baS" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baU" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baV" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Courtroom"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baW" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baX" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baZ" = ( -/obj/item/radio/intercom{ - pixel_x = -27; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbb" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Starboard Corner"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbc" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bbd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bbe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bbf" = ( -/obj/structure/closet/toolcloset, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bbg" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bbh" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bbi" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bbj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"bbk" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/ai, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbl" = ( -/obj/machinery/camera{ - c_tag = "Secure Tech Storage"; - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbn" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbo" = ( -/turf/closed/wall, -/area/maintenance/solars/port/fore) -"bbp" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbr" = ( -/obj/structure/table, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bbs" = ( -/obj/machinery/button/door{ - id = "transittube"; - name = "Transit Tube Lockdown"; - pixel_x = -24; - pixel_y = -5; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for secure storage."; - id = "Secure Storage"; - name = "Engineering Secure Storage"; - pixel_x = -24; - pixel_y = 5; - req_access_txt = "11" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bbt" = ( -/obj/item/cartridge/engineering{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/cartridge/engineering{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/cartridge/engineering{ - pixel_x = 3 - }, -/obj/structure/table/reinforced, -/obj/item/cartridge/atmos, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bbu" = ( -/obj/effect/landmark/start/chief_engineer, -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bbv" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bbw" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bbx" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bbz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"bbA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"bbB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/trash/popcorn, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) -"bbC" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"bbF" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bbG" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clothing/under/misc/assistantformal, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/item/clothing/suit/hooded/wintercoat, -/obj/item/clothing/shoes/winterboots, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/locker) -"bbH" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Starboard"; - dir = 8; - network = list("aicore") - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bbJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bbK" = ( -/turf/closed/wall, -/area/security/checkpoint/customs) -"bbL" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"bbM" = ( -/obj/item/stack/sheet/cardboard, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bbN" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bbQ" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/cargo/sorting) -"bbR" = ( -/obj/machinery/door/airlock/mining{ - name = "Deliveries"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bbT" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bcb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bcd" = ( -/turf/closed/wall, -/area/service/janitor) -"bcg" = ( -/turf/closed/wall, -/area/maintenance/central) -"bch" = ( -/obj/machinery/door/airlock{ - name = "Central Emergency Storage" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bci" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bcj" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"bcl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcn" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hazardvest, -/obj/item/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bco" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bcp" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bcq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bcr" = ( -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bcs" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bcu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage/tech) -"bcv" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd_secure, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcx" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcy" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcz" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcD" = ( -/obj/structure/table, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/wirecutters, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bcE" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bcF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bcG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bcH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/ce) -"bcI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bcK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"bcL" = ( -/obj/machinery/power/apc/auto_name/west, -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/checker, -/area/engineering/storage_shared) -"bcM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"bcN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"bcO" = ( -/obj/structure/easel, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"bcP" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_x = -32 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bcQ" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bcV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bcX" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bcY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bcZ" = ( -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bda" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Customs Checkpoint" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bdb" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster/security_unit{ - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bdc" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 30 - }, -/obj/structure/closet/secure_closet/security, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bde" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bdi" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/camera/autoname, -/turf/open/floor/wood, -/area/cargo/qm) -"bdl" = ( -/obj/structure/plasticflaps, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/disposal/delivery_chute, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"bdo" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdp" = ( -/obj/structure/table, -/obj/item/hand_labeler{ - pixel_y = 11 - }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/stack/package_wrap{ - pixel_x = 2; - pixel_y = -3 - }, -/obj/item/hand_labeler_refill{ - pixel_x = -8; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdq" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/dest_tagger{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdr" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -9; - pixel_y = -9 - }, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bds" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdv" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdw" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bdx" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"bdB" = ( -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bdC" = ( -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bdD" = ( -/obj/machinery/light_switch{ - pixel_x = 28; - pixel_y = -6 - }, -/obj/structure/table, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/item/stack/sheet/iron/five, -/obj/item/radio/intercom{ - pixel_x = 28; - pixel_y = 5 - }, -/obj/item/circuitboard/machine/paystand, -/obj/item/stack/cable_coil/five, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bdE" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/central) -"bdF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bdG" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"bdH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/item/radio/intercom{ - pixel_x = -27 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bdI" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/disk/nuclear, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bdJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bdK" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bdL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bdM" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bdN" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/dresser, -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bdO" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdQ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdR" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bdS" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bdT" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bdU" = ( -/obj/structure/rack, -/obj/item/electronics/apc, -/obj/item/electronics/airlock, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bdV" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bdW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bdX" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/command, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bdY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bdZ" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bea" = ( -/obj/structure/table, -/obj/item/plant_analyzer, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"beb" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bec" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/item/multitool, -/obj/item/clothing/glasses/meson, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bed" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bee" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bef" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"beg" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -29 - }, -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"beh" = ( -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/machinery/computer/security/telescreen/ce{ - dir = 1; - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bei" = ( -/obj/structure/rack, -/obj/item/lighter, -/obj/item/clothing/glasses/meson, -/obj/machinery/button/door{ - id = "ceprivacy"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bej" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/mob/living/simple_animal/parrot/poly, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bek" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/ce) -"bel" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"bep" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.3-Engineering-Central"; - location = "13.2-Tcommstore" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"beq" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bes" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bet" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Fore"; - dir = 8; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beu" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bey" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Fore"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bez" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"beE" = ( -/obj/machinery/door/window/northright{ - dir = 8; - name = "Research Test Chamber"; - req_access_txt = "7" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"beK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"beL" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beM" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"beP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"beR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beT" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"beU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Quartermaster Maintenance"; - req_one_access_txt = "41" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/qm) -"beV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"beW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"beX" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/cargo/qm) -"beZ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfa" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfb" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfc" = ( -/obj/structure/table, -/obj/item/stack/wrapping_paper, -/obj/item/stack/wrapping_paper{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfd" = ( -/obj/structure/table, -/obj/item/stack/package_wrap{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/paperslip{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bff" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfg" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westright{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bfh" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/structure/noticeboard{ - pixel_y = 31 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bfk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"bfl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bfm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bfn" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - id_tag = "commissarydoor"; - name = "Commissary" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfp" = ( -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bfq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"bfr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command) -"bfv" = ( -/turf/closed/wall/r_wall, -/area/command) -"bfy" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster/security_unit{ - pixel_x = -30; - pixel_y = 1 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bfz" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bfA" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bfB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bfC" = ( -/obj/machinery/door/window/westright, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bfD" = ( -/obj/structure/bed, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/camera{ - c_tag = "Captain's Quarters"; - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bfE" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfG" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/commons/storage/tools) -"bfI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Auxiliary Tool Storage"; - req_access_txt = "12" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/tools) -"bfJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/commons/storage/tools) -"bfK" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/map/left{ - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bfL" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/starboard) -"bfM" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bfN" = ( -/turf/closed/wall, -/area/hallway/primary/starboard) -"bfP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Tech Storage"; - req_one_access_txt = "23;30" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/storage/tech) -"bfR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "ceprivacy"; - name = "privacy shutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/ce) -"bfS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bfT" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/caution/stand_clear, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bfU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"bfW" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Shared Engineering Storage"; - req_one_access_txt = "32;19" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"bfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/engineering) -"bfY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bfZ" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Starboard"; - dir = 6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bgc" = ( -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Space Access Airlock"; - req_one_access_txt = "32;19" - }, -/turf/open/floor/plating, -/area/aisat) -"bgd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bge" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bgf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"bgg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bgh" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgj" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bgm" = ( -/obj/structure/table/reinforced, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bgn" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bgo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bgv" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bgw" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet, -/obj/item/crowbar, -/obj/item/assembly/flash/handheld, -/obj/item/radio, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgy" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table/reinforced, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgz" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor{ - name = "Arrivals Security Checkpoint"; - pixel_y = -8; - req_access_txt = "1" - }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bgB" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/gun/energy/e_gun/dragnet, -/obj/item/gun/energy/e_gun/dragnet, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"bgC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bgF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 4 - }, -/obj/item/paper_bin/carbon{ - pixel_x = -10; - pixel_y = 9 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 9 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 5; - pixel_y = 11 - }, -/obj/item/cartridge/quartermaster{ - pixel_x = 8; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"bgG" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/cargo/qm) -"bgH" = ( -/obj/structure/table/wood, -/obj/item/ashtray, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/cargo/qm) -"bgI" = ( -/obj/structure/table/wood, -/obj/item/stamp{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/stamp/denied{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/stamp/qm{ - pixel_x = 7; - pixel_y = -2 - }, -/obj/item/clipboard{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/cargo/qm) -"bgJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/cargo/qm) -"bgK" = ( -/turf/open/floor/carpet/red, -/area/cargo/qm) -"bgN" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"bgP" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "packageSort2"; - name = "Sort and Deliver"; - pixel_x = -2; - pixel_y = 12 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packageExternal"; - name = "Crate Returns"; - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgQ" = ( -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bgZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/newspaper, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "commissaryshutter"; - name = "Vacant Commissary Shutter" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bhb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bhc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bhd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "commissarydoor"; - name = "Commissary Door Lock"; - normaldoorcontrol = 1; - pixel_x = 26; - pixel_y = 6; - specialfunctions = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"bhe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bhf" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/maintenance/central) -"bhh" = ( -/obj/machinery/modular_computer/console/preset/id, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhi" = ( -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhj" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhk" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Central" - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhl" = ( -/obj/machinery/computer/station_alert, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhm" = ( -/obj/machinery/computer/monitor{ - name = "Bridge Power Monitoring Console" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bhn" = ( -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bho" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhp" = ( -/obj/machinery/computer/security, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bhq" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bhr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel/dark, -/area/command) -"bht" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album{ - pixel_y = -4 - }, -/obj/item/camera{ - pixel_y = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = -28 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bhu" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/structure/table/wood, -/obj/item/razor{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/reagent_containers/food/drinks/flask/gold, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bhv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bhw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bhx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bhy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/holopad/secure, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bhz" = ( -/obj/structure/table/wood, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bhA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhB" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14.2-Central-CrewQuarters"; - location = "14-Starboard-Central" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhH" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhI" = ( -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Tech Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhN" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhP" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhT" = ( -/turf/closed/wall/r_wall, -/area/engineering/break_room) -"bhU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bhV" = ( -/obj/item/book/manual/wiki/engineering_construction{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bhW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/folder/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bhX" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bhY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bhZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bia" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bib" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bic" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bif" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bii" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_3_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space/nearstation) -"bik" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Space Access"; - dir = 1; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bil" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window{ - dir = 8; - name = "MiniSat Airlock Access" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bim" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bin" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/status_display/ai{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bio" = ( -/obj/machinery/camera{ - c_tag = "AI Chamber - Aft"; - dir = 1; - network = list("aicore") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bip" = ( -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biq" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bir" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bis" = ( -/obj/structure/table/reinforced, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"biu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"biw" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall, -/area/security/checkpoint/customs) -"biy" = ( -/obj/machinery/door/airlock/security{ - name = "Customs Desk"; - req_access_txt = "1" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"biz" = ( -/obj/machinery/suit_storage_unit/hos, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"biA" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"biE" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/cargo/qm) -"biG" = ( -/obj/machinery/computer/security/qm{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"biH" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biI" = ( -/obj/machinery/firealarm{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"biK" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"biL" = ( -/obj/structure/rack, -/obj/item/storage/box/shipping, -/obj/item/pushbroom, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biM" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biO" = ( -/obj/machinery/autolathe, -/obj/machinery/camera{ - c_tag = "Cargo - Mailroom"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biR" = ( -/obj/structure/table/reinforced, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/pen/red{ - pixel_y = 10 - }, -/obj/item/dest_tagger{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"biT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "commissaryshutter"; - name = "Commissary Shutter Control"; - pixel_x = -26; - pixel_y = 6 - }, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"biU" = ( -/obj/item/storage/secure/safe{ - pixel_x = 6; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/vacant_room/commissary) -"biV" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/screwdriver, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "Vacant Commissary"; - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"biW" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"biX" = ( -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/central) -"biZ" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bja" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bjb" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bjc" = ( -/turf/open/floor/plasteel/dark, -/area/command) -"bjd" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bje" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bjf" = ( -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/red{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bjg" = ( -/turf/closed/wall, -/area/command/heads_quarters/captain/private) -"bjh" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment, -/obj/item/bikehorn/rubberducky, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bji" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Captain's Bedroom"; - req_access_txt = "20" - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bjj" = ( -/obj/structure/closet/secure_closet/captains, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bjk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/suit_storage_unit/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bjl" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=14-Starboard-Central"; - location = "13.3-Engineering-Central" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bjI" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bjL" = ( -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bjO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bjP" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat/foyer) -"bjQ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"bjR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bjS" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -24; - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bjT" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/satellite) -"bjV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bjW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bjX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/mining, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bjZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bka" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkb" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkc" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bke" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkf" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkg" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bkh" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bki" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/qm) -"bkl" = ( -/obj/machinery/computer/cargo{ - dir = 1 - }, -/turf/open/floor/wood, -/area/cargo/qm) -"bkn" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating, -/area/cargo/sorting) -"bkp" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Service Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bkq" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Security Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Security Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bkr" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Engineering Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Engineering Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bks" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Medical Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Medical Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bku" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm{ - pixel_x = -31 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bkv" = ( -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bkw" = ( -/obj/machinery/photocopier, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"bkx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"bky" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkz" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hop) -"bkA" = ( -/obj/item/tank/internals/oxygen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bkB" = ( -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/central) -"bkC" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bkD" = ( -/obj/item/radio/intercom{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/computer/price_controller, -/turf/open/floor/plasteel/dark, -/area/command) -"bkE" = ( -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bkF" = ( -/obj/item/beacon, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bkG" = ( -/obj/machinery/recharger{ - pixel_y = 3 - }, -/obj/item/restraints/handcuffs{ - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bkH" = ( -/obj/machinery/computer/security/mining, -/obj/machinery/keycard_auth{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bkI" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 32 - }, -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bkJ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/item/soap/deluxe, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/structure/curtain, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bkK" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 17 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bkL" = ( -/obj/structure/toilet{ - pixel_y = 13 - }, -/obj/machinery/light, -/obj/effect/landmark/start/captain, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bkM" = ( -/obj/machinery/door/airlock/silver{ - name = "Bathroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/captain/private) -"bkN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bkO" = ( -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bkP" = ( -/obj/effect/landmark/start/captain, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bkQ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.1-Engineering-Enter"; - location = "12-Central-Starboard" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Starboard Primary Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bkW" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bkY" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bla" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blb" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Auxiliary Tool Storage"; - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bld" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ble" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bli" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"blj" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/break_room) -"blk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bln" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"blo" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"blp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bls" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"blu" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"blv" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"blw" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"blx" = ( -/turf/closed/wall, -/area/space/nearstation) -"bly" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"blA" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating/airless, -/area/aisat) -"blB" = ( -/obj/machinery/computer/teleporter, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"blC" = ( -/obj/machinery/teleport/station, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"blD" = ( -/obj/machinery/teleport/hub, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"blE" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"blF" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blH" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blI" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Chamber"; - req_access_txt = "16" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters" - }, -/obj/machinery/flasher{ - id = "AI"; - pixel_x = -26; - pixel_y = 3 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1447; - listening = 0; - name = "Station Intercom (AI Private)"; - pixel_x = 28 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"blJ" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"blK" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/port_gen/pacman, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"blL" = ( -/obj/machinery/airalarm{ - pixel_y = 26 - }, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"blM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"blT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"blU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"blV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blY" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=5-Customs"; - location = "4-Customs" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"blZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bma" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmf" = ( -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bmh" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/sorting) -"bmk" = ( -/turf/closed/wall, -/area/cargo/sorting) -"bmm" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"bmn" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmo" = ( -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_y = 25; - req_access_txt = "28" - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bmp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/storage/secure/briefcase, -/obj/item/assembly/flash/handheld, -/obj/machinery/computer/security/telescreen/vault{ - pixel_y = 30 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bmq" = ( -/obj/machinery/recharger, -/obj/item/storage/secure/safe{ - pixel_x = 34 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bmr" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/central) -"bms" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bmt" = ( -/obj/item/radio/off, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bmu" = ( -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Bridge" - }, -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/central) -"bmv" = ( -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Bridge Deliveries"; - req_access_txt = "19" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command) -"bmw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bmx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bmy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bmA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bmB" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bmC" = ( -/obj/machinery/door/window/brigdoor{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bmE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"bmF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bmH" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bmI" = ( -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bmJ" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Art Storage"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmL" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/service/bar) -"bmM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/commons/storage/art) -"bmN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Art Storage" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"bmO" = ( -/turf/closed/wall, -/area/commons/storage/art) -"bmP" = ( -/turf/closed/wall, -/area/service/bar) -"bmR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bmS" = ( -/obj/machinery/door/airlock{ - name = "Starboard Emergency Storage" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bmT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;22;25;26;28;35;37;46;38;70" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bna" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bnd" = ( -/obj/structure/table/glass, -/obj/item/food/chips, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bnf" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"bng" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"bnk" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnl" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnm" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnn" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bno" = ( -/obj/structure/transit_tube/diagonal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bnp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved/flipped, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnq" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnr" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bns" = ( -/obj/machinery/door/window{ - dir = 1; - name = "MiniSat Walkway Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnu" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bnw" = ( -/obj/structure/showcase/cyborg/old{ - dir = 4; - pixel_x = -9; - pixel_y = 2 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bny" = ( -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/aisat_interior"; - name = "Antechamber Turret Control"; - pixel_x = 30; - req_access_txt = "65" - }, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bnA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat - Antechamber"; - dir = 4; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnC" = ( -/obj/effect/landmark/start/cyborg, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bnF" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnI" = ( -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bnK" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Station Entrance"; - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bnL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bnP" = ( -/obj/machinery/door/airlock/external{ - name = "Common Mining Dock" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bnR" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnS" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnU" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnV" = ( -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Research Director Observation"; - req_access_txt = "30" - }, -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"bnX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bnZ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Middle" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boa" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bob" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bod" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bof" = ( -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bog" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boh" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"boj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bok" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=4-Customs"; - location = "3-Central-Port" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bol" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/hop) -"bom" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bon" = ( -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/chair/office{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"boo" = ( -/obj/machinery/newscaster/security_unit{ - pixel_x = 32 - }, -/obj/machinery/computer/security/mining{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bop" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Port"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bos" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bot" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bou" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/item/restraints/handcuffs, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command) -"bov" = ( -/obj/machinery/computer/communications, -/turf/open/floor/plasteel/dark, -/area/command) -"bow" = ( -/obj/machinery/computer/security/wooden_tv{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command) -"box" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/obj/item/folder/blue{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"boy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"boB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"boC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/storage/fancy/donut_box, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command) -"boD" = ( -/obj/structure/displaycase/captain{ - pixel_y = 5 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"boE" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"boF" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"boG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"boH" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Captain)"; - pixel_x = 28 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"boI" = ( -/obj/structure/rack, -/obj/item/cane, -/obj/item/food/grown/mushroom/glowshroom, -/turf/open/floor/plating, -/area/command/heads_quarters/captain/private) -"boJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"boN" = ( -/obj/effect/spawner/randomcolavend, -/obj/machinery/camera{ - c_tag = "Bar - Fore" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/service/bar) -"boO" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"boQ" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"boS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/commons/dorms) -"boT" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"boU" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/bar) -"boX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"boY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bpb" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"bpd" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/obj/machinery/camera{ - c_tag = "Telecomms - Storage"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bpe" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bpm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30; - pixel_y = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 26; - pixel_y = 20 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bpn" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bpq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpr" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bps" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Fore"; - dir = 1; - network = list("minisat") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpt" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bpu" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bpv" = ( -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/structure/transit_tube_pod{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bpy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"bpz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/junction/flipped{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"bpA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bpB" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"bpC" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/station{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpD" = ( -/obj/effect/turf_decal/box/red, -/obj/effect/turf_decal/arrows/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpF" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpH" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Foyer"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpK" = ( -/obj/item/beacon, -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bpM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Antechamber"; - req_one_access_txt = "32;19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpP" = ( -/obj/machinery/ai_slipper{ - uses = 10 - }, -/obj/structure/cable, -/mob/living/simple_animal/bot/secbot/pingsky, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpR" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bpT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "MiniSat Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bpY" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bpZ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bqa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bqb" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bqc" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bqd" = ( -/obj/machinery/door/airlock/grunge{ - name = "Vacant Office" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/vacant_room/office) -"bqe" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqf" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/maintenance/port) -"bqg" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 3; - height = 5; - id = "commonmining_home"; - name = "SS13: Common Mining Dock"; - roundstart_template = /datum/map_template/shuttle/mining_common/meta; - width = 7 - }, -/turf/open/floor/plating, -/area/hallway/primary/port) -"bqh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - id_tag = "AuxShower"; - name = "Showers" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bqk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #1" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"bql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqo" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqq" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqs" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/stack/spacecash/c1{ - pixel_y = 5 - }, -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"bqv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqw" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bqz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqB" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bqC" = ( -/obj/machinery/door/window{ - name = "HoP's Desk"; - req_access_txt = "57" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bqD" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bqE" = ( -/obj/machinery/vending/cart{ - req_access_txt = "57" - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bqF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bqG" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/filingcabinet/chestdrawer{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bqH" = ( -/turf/closed/wall, -/area/command/heads_quarters/hop) -"bqJ" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/rack, -/obj/item/storage/secure/briefcase, -/obj/item/clothing/mask/cigarette/cigar, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bqK" = ( -/obj/structure/rack, -/obj/item/aicard, -/obj/item/radio/off, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bqL" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/cell_charger{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bqM" = ( -/turf/open/floor/carpet, -/area/command) -"bqN" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command) -"bqO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command) -"bqP" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/structure/rack, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler, -/obj/item/assembly/timer, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bqQ" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/item/storage/toolbox/emergency{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/multitool, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bqT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"bqU" = ( -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/command) -"bqV" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/paper/fluff/gateway, -/obj/item/coin/plasma, -/obj/item/melee/chainofcommand, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bqW" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bqX" = ( -/obj/structure/table/wood, -/obj/item/stamp/captain, -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bqY" = ( -/obj/effect/landmark/start/captain, -/obj/structure/chair/comfy/brown, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bqZ" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bra" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brd" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"brf" = ( -/obj/structure/table, -/obj/item/paper_bin/construction, -/obj/item/airlock_painter, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/rcl/pre_loaded, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"brh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"brk" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"brl" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/service/bar) -"brn" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/structure/cable, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/stack/pipe_cleaner_coil/random, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/canvas, -/obj/item/chisel{ - pixel_y = 7 - }, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"bro" = ( -/obj/structure/cable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"brp" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;22;25;37;38;46" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brr" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brs" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"brt" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bru" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"brv" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 8; - pixel_y = -3 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"brw" = ( -/obj/machinery/door/airlock{ - name = "Theatre Stage"; - req_one_access_txt = "12;46;70" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bry" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"brE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"brI" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Engineering Security Post"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"brJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"brL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"brM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"brN" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"brO" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space/basic, -/area/space/nearstation) -"brP" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/transit_tube/curved{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brQ" = ( -/obj/structure/window/reinforced, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior Access"; - dir = 1; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brR" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brS" = ( -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brT" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brU" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/cyborg/old{ - dir = 8; - pixel_x = 9; - pixel_y = 2 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"brW" = ( -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"brX" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the RD's goons from the safety of his office."; - dir = 4; - name = "Research Monitor"; - network = list("rd"); - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"brY" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Foyer"; - dir = 8; - network = list("minisat") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsa" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsd" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bse" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/porta_turret/ai, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"bsf" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat/foyer) -"bsg" = ( -/obj/machinery/computer/station_alert{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsh" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/machinery/computer/monitor{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsi" = ( -/obj/machinery/camera/motion{ - c_tag = "MiniSat Maintenance"; - dir = 8; - network = list("minisat") - }, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"bsj" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bsk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bsl" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsm" = ( -/obj/item/beacon, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsn" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bsq" = ( -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bsr" = ( -/obj/structure/cable, -/obj/structure/chair/office, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/customs) -"bss" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"bsu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsw" = ( -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsB" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsD" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsE" = ( -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsG" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsH" = ( -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Starboard"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Primary Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bsK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsL" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7-Command-Starboard"; - location = "6-Port-Central" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bsM" = ( -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -6; - req_access_txt = "28" - }, -/obj/machinery/light_switch{ - pixel_x = -25; - pixel_y = 5 - }, -/obj/effect/mapping_helpers/ianbirthday, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bsO" = ( -/obj/structure/cable, -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bsP" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/ian, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bsQ" = ( -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bsR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bsS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bsU" = ( -/turf/closed/wall, -/area/command) -"bsV" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/dark, -/area/command) -"bsW" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -1; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Command Chair"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command) -"bsX" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command) -"bsY" = ( -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -34; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command) -"bsZ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/dark, -/area/command) -"btb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"btc" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/storage/secure/briefcase{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/storage/lockbox/medal, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"btd" = ( -/obj/machinery/door/window{ - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bte" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/pen, -/obj/structure/window/reinforced, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"btf" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "Captain's Desk"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment, -/obj/item/stamp/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"btg" = ( -/obj/structure/table/wood, -/obj/item/hand_tele, -/obj/structure/window/reinforced, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bth" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bti" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "20;12" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"btj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btl" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"bto" = ( -/obj/effect/spawner/xmastree, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"btp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"btq" = ( -/obj/structure/table/wood/poker, -/obj/item/storage/pill_bottle/dice, -/turf/open/floor/wood, -/area/service/bar) -"btx" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"btC" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = 30 - }, -/obj/machinery/pdapainter{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"btD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"btE" = ( -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"btF" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"btG" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_y = 3 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"btH" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"btI" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"btJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved/flipped{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"btK" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"btL" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"btN" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Control Room"; - req_one_access_txt = "19; 61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"btO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-18" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btS" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"btU" = ( -/obj/item/folder/blue, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"btV" = ( -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"btW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"btZ" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bua" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"buc" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/port) -"bud" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bue" = ( -/turf/closed/wall, -/area/service/library) -"buf" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bug" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/library) -"buh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/library) -"bui" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/service/library) -"buj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buk" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 15 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bul" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bum" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bun" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"buo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bup" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"buq" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bur" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"bus" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"but" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"buu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel"; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hop) -"buv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"buA" = ( -/obj/machinery/door/airlock/command{ - name = "Command Desk"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"buC" = ( -/obj/structure/bookcase, -/turf/open/floor/wood, -/area/command) -"buD" = ( -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command) -"buE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"buF" = ( -/obj/machinery/vending/boozeomat, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"buG" = ( -/obj/machinery/holopad/secure{ - pixel_x = 9; - pixel_y = -9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"buH" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"buI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"buJ" = ( -/obj/machinery/camera{ - c_tag = "Captain's Office"; - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"buK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Captain's Office - Emergency Escape"; - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"buO" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/bar) -"buP" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"buQ" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/turntable, -/turf/open/floor/wood, -/area/service/bar) -"buR" = ( -/obj/effect/spawner/randomarcade, -/obj/machinery/camera{ - c_tag = "Bar - Starboard" - }, -/turf/open/floor/wood, -/area/service/bar) -"buS" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 29 - }, -/turf/open/floor/wood, -/area/service/bar) -"buU" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/monocle, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/service/theater) -"bva" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bvb" = ( -/obj/machinery/door/airlock/engineering{ - name = "Telecomms Storage"; - req_access_txt = "61" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bvd" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_one_access_txt = "25;26;35;28;22;37;46;38;70" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bve" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"bvf" = ( -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = -27; - pixel_y = -7 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_y = -27 - }, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -7 - }, -/obj/effect/landmark/start/ai, -/obj/machinery/button/door{ - id = "AI Core shutters"; - name = "AI Core shutters control"; - pixel_x = 24; - pixel_y = -22; - req_access_txt = "16" - }, -/obj/machinery/button/door{ - id = "AI Chamber entrance shutters"; - name = "AI Chamber entrance shutters control"; - pixel_x = -23; - pixel_y = -23; - req_access_txt = "16" - }, -/turf/open/floor/circuit/green, -/area/ai_monitored/turret_protected/ai) -"bvl" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"bvs" = ( -/obj/structure/table/glass, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = -8 - }, -/obj/item/clothing/mask/breath{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bvt" = ( -/turf/closed/wall, -/area/aisat) -"bvu" = ( -/obj/structure/table/wood, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/radio/off{ - pixel_y = 4 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvw" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvy" = ( -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvz" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/ai{ - pixel_y = 31 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 8; - freerange = 1; - name = "Station Intercom (Telecomms)"; - pixel_y = 30 - }, -/obj/structure/table/wood, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bvB" = ( -/obj/item/kirbyplants{ - icon_state = "plant-20" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvC" = ( -/obj/structure/chair, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvD" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvF" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvI" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bvT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/extinguisher, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bvV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bvW" = ( -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"bwa" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"bwb" = ( -/obj/structure/table/wood, -/obj/machinery/computer/libraryconsole, -/turf/open/floor/wood, -/area/service/library) -"bwc" = ( -/turf/open/floor/carpet, -/area/service/library) -"bwd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"bwf" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"bwh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwi" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwj" = ( -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwk" = ( -/obj/structure/closet/secure_closet/hop, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat Space Access Airlock"; - req_access_txt = "32" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bwm" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwn" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwo" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/head_of_personnel, -/obj/machinery/light_switch{ - pixel_x = 38; - pixel_y = -35 - }, -/obj/machinery/button/door{ - id = "hopqueue"; - name = "Queue Shutters Control"; - pixel_x = 25; - pixel_y = -36; - req_access_txt = "28" - }, -/obj/machinery/button/door{ - id = "hop"; - name = "Privacy Shutters Control"; - pixel_x = 25; - pixel_y = -26; - req_access_txt = "28" - }, -/obj/machinery/button/flasher{ - id = "hopflash"; - pixel_x = 38; - pixel_y = -25 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bwp" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/shower{ - pixel_y = 12 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bwq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bwr" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Bridge - Port Access"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bws" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bwt" = ( -/obj/structure/table/wood, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 3 - }, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bwu" = ( -/obj/machinery/holopad, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bwv" = ( -/obj/machinery/camera{ - c_tag = "Council Chamber" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"bww" = ( -/obj/structure/table/wood, -/obj/item/folder/yellow, -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bwx" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bwy" = ( -/obj/machinery/camera{ - c_tag = "Bridge - Starboard Access"; - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/dark, -/area/command) -"bwz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"bwA" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/command/heads_quarters/captain/private) -"bwB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bwC" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bwD" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bwE" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bwF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bwG" = ( -/obj/machinery/door/airlock/command{ - name = "Emergency Escape"; - req_access_txt = "20" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bwH" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bwO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bwS" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/bar) -"bwU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"bwX" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"bwY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 19 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bwZ" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bxc" = ( -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bxd" = ( -/turf/closed/wall, -/area/engineering/atmos) -"bxh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bxi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bxj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bxk" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/item/stock_parts/micro_laser/high, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"bxm" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "MiniSat Space Access Airlock"; - req_access_txt = "32" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"bxn" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bxp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxq" = ( -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxr" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxs" = ( -/obj/machinery/computer/security/telescreen{ - dir = 8; - name = "Telecomms Camera Monitor"; - network = list("tcomms"); - pixel_x = 26 - }, -/obj/machinery/computer/telecomms/monitor{ - dir = 8; - network = "tcommsat" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bxt" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxu" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Middle Arm - Far"; - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxx" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxy" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxz" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Middle Arm"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bxD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bxN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bxO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Auxiliary Bathrooms" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bxP" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bxQ" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bxS" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/port) -"bxU" = ( -/obj/structure/table/wood, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"bxV" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/librarian, -/turf/open/floor/wood, -/area/service/library) -"bxX" = ( -/obj/structure/table/wood/fancy/royalblue, -/obj/structure/window/reinforced, -/obj/machinery/door/window{ - dir = 8; - name = "Secure Art Exhibition"; - req_access_txt = "37" - }, -/obj/structure/sign/painting/library_secure{ - pixel_x = 32 - }, -/turf/open/floor/carpet/royalblue, -/area/service/library) -"bxY" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byb" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 1; - icon_state = "rightsecure"; - name = "Head of Personnel's Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Reception Window" - }, -/obj/machinery/door/poddoor/preopen{ - id = "hop"; - name = "privacy shutters" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/hop) -"byc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"byd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bye" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"byf" = ( -/obj/structure/chair/comfy/beige, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command) -"byg" = ( -/obj/structure/chair/comfy/black, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/command) -"byh" = ( -/obj/structure/chair/comfy/beige, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command) -"byi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/command) -"byj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command) -"byk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"byl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Council Chamber"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bym" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"byn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"byo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/captain/private) -"byp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"byq" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"byr" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bys" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"byt" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"byu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"byv" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byx" = ( -/obj/machinery/porta_turret/ai, -/obj/machinery/flasher{ - id = "AI"; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"byy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/service/bar) -"byz" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/bar) -"byC" = ( -/turf/open/floor/wood, -/area/service/bar) -"byE" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"byI" = ( -/turf/open/floor/wood, -/area/cargo/qm) -"byJ" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"byK" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"byM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue, -/mob/living/simple_animal/bot/cleanbot, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/aisat_interior) -"byN" = ( -/turf/closed/wall, -/area/service/theater) -"byO" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/mineral/plasma{ - amount = 35 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/satellite) -"byZ" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"bza" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"bzb" = ( -/obj/machinery/meter/atmos/atmos_waste_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Distro to Waste" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzd" = ( -/obj/machinery/meter/atmos/distro_loop, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bze" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzf" = ( -/obj/machinery/airalarm{ - pixel_y = 25 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Distro Loop" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bzi" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bzj" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bzk" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bzl" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bzm" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Port Aft"; - dir = 8; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bzn" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzo" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzq" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzr" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzs" = ( -/obj/structure/chair/office, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzt" = ( -/obj/machinery/computer/telecomms/server{ - dir = 8; - network = "tcommsat" - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bzu" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Starboard Aft"; - dir = 4; - network = list("minisat") - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bzv" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bzw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bzx" = ( -/turf/closed/wall, -/area/commons/vacant_room/office) -"bzA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Auxilary Restrooms"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bzB" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bzD" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/service/library) -"bzE" = ( -/turf/open/floor/wood, -/area/service/library) -"bzF" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"bzI" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzJ" = ( -/turf/closed/wall, -/area/hallway/secondary/command) -"bzK" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bzL" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzM" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzN" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzO" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzP" = ( -/obj/machinery/flasher{ - id = "hopflash"; - pixel_x = 28; - pixel_y = -28 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzQ" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bzR" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"bzS" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "19" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bzT" = ( -/obj/machinery/vending/coffee{ - pixel_x = -3 - }, -/obj/machinery/button/door{ - id = "council blast"; - name = "Council Chamber Blast Door Control"; - pixel_x = -28; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bzU" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command) -"bzV" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/carpet, -/area/command) -"bzW" = ( -/obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/lighter, -/turf/open/floor/carpet, -/area/command) -"bzX" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/turf/open/floor/carpet, -/area/command) -"bzY" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/command) -"bzZ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/command) -"bAa" = ( -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Access Blast Door Control"; - pixel_x = -24; - pixel_y = -24; - req_access_txt = "19" - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bAb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bAc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bAd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bAe" = ( -/obj/machinery/light, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 1; - pixel_y = -29 - }, -/obj/structure/bed/dogbed/renault, -/mob/living/simple_animal/pet/fox/renault, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bAf" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bAg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"bAh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bAo" = ( -/obj/machinery/smartfridge/drinks{ - icon_state = "boozeomat" - }, -/turf/closed/wall, -/area/service/bar) -"bAp" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/bar) -"bAs" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/theater) -"bAu" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"bAv" = ( -/obj/structure/table/wood, -/obj/item/lipstick{ - pixel_y = 5 - }, -/obj/machinery/camera{ - c_tag = "Theatre - Stage"; - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/instrument/guitar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"bAy" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/storage/belt/utility, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bAA" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAC" = ( -/obj/machinery/door/window/westright{ - dir = 1; - name = "Atmospherics Access"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/loading_area, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAD" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAE" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"bAH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bAM" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bAN" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Distro" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bAO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bAP" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bAQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bAR" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bAS" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bAT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAU" = ( -/obj/machinery/microwave{ - pixel_y = 4 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAV" = ( -/obj/machinery/light/small, -/obj/item/storage/box/donkpockets, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAW" = ( -/obj/structure/table/wood, -/obj/machinery/status_display/evac{ - pixel_y = 31 - }, -/obj/item/book/manual/wiki/tcomms, -/obj/item/folder/blue, -/obj/item/pen, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAY" = ( -/obj/structure/filingcabinet{ - pixel_x = 3 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bAZ" = ( -/obj/machinery/camera{ - c_tag = "Head of Personnel's Office"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/storage/box/pdas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/silver_ids, -/obj/item/storage/box/ids, -/obj/machinery/light, -/turf/open/floor/wood, -/area/command/heads_quarters/hop) -"bBa" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_y = -30 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 6 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bBb" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bBc" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bBg" = ( -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bBh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bBi" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bBj" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/camera, -/obj/item/camera_film, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/obj/item/storage/crayons, -/turf/open/floor/plasteel, -/area/commons/storage/art) -"bBm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/urinal{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bBo" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet1"; - name = "Unit 1" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bBp" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet1"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bBq" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"bBr" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"bBs" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"bBt" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bBu" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/wood, -/area/service/library) -"bBv" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/chair/comfy/black, -/turf/open/floor/wood, -/area/service/library) -"bBw" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/service/library) -"bBy" = ( -/obj/structure/sign/directions/command{ - dir = 4; - pixel_y = -8 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/command) -"bBz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/command) -"bBA" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bBC" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hopqueue"; - name = "HoP Queue Shutters" - }, -/obj/effect/turf_decal/loading_area, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bBD" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/command) -"bBE" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"bBH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "council blast"; - name = "Council Blast Doors" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command) -"bBM" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bBN" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain/private) -"bBO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "20;12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bBP" = ( -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -8 - }, -/turf/closed/wall, -/area/maintenance/central) -"bBQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bBR" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=12-Central-Starboard"; - location = "11.1-Command-Starboard" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bBS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/service/bar) -"bBT" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bBU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bBZ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"bCb" = ( -/obj/structure/chair/wood/wings, -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/theater) -"bCc" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/theater) -"bCg" = ( -/obj/structure/table, -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/item/storage/box{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/box, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bCh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCi" = ( -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCl" = ( -/obj/structure/cable, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = -4; - pixel_y = 26; - req_access_txt = "24" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bCn" = ( -/obj/structure/cable, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bCp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bCr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste to Filter" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bCt" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCw" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Mix" - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bCy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bCz" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bCA" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bCB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bCC" = ( -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bCD" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"bCE" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"bCF" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bCG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bCH" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bCI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bCJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bCL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bCP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bCQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/commons/toilet/auxiliary) -"bCR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/urinal{ - dir = 4; - pixel_x = -32 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bCS" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bCW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCX" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDe" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDh" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDi" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDo" = ( -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDu" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Starboard" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDv" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDw" = ( -/obj/machinery/airalarm{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bDz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/service/bar) -"bDJ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/kirbyplants/potty, -/obj/machinery/light, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bDK" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/theater) -"bDO" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDP" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_alert{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bDS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bDT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bDW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDX" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Mix to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDY" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bDZ" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bEa" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bEb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bEc" = ( -/obj/machinery/computer/atmos_control/tank/mix_tank{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bEd" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bEe" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bEf" = ( -/obj/machinery/telecomms/processor/preset_one, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Fore-Port"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEg" = ( -/obj/structure/showcase/cyborg/old{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bEh" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"bEj" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEk" = ( -/obj/machinery/telecomms/processor/preset_three, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Fore-Starboard"; - network = list("ss13","tcomms") - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bEl" = ( -/obj/machinery/door/airlock/external{ - name = "Transport Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bEn" = ( -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bEo" = ( -/obj/machinery/door/airlock{ - name = "Port Emergency Storage" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port) -"bEt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bEu" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet2"; - name = "Unit 2" - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bEv" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet2"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bEw" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"bEx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/carpet, -/area/service/library) -"bEy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"bEB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11.1-Command-Starboard"; - location = "11-Command-Port" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bEC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bED" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEH" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEI" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEM" = ( -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEO" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEQ" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bER" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bET" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEV" = ( -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bEZ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFa" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFc" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Command Hallway" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bFg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFh" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=7.5-Starboard-Aft-Corner"; - location = "7-Command-Starboard" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFi" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bFo" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/bar) -"bFp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_one_access_txt = "25;28" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon/wayfinding/kitchen, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bFq" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bFr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"bFs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/food/pie/cream, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"bFt" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/service/bar) -"bFv" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/theater) -"bFF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/plaque/static_plaque/atmos{ - pixel_x = -32 - }, -/obj/machinery/newscaster{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Desk"; - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"bFG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bFH" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFI" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFK" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bFL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/landmark/event_spawn, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bFM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bFP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bFQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFT" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Pure to Mix" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFV" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Unfiltered & Air to Mix" - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFW" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bFX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bFY" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bFZ" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"bGa" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bGb" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Mix"; - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/engineering/atmos) -"bGc" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGd" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bGe" = ( -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGf" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bGg" = ( -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/door/window{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Theatre Stage" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/theater) -"bGh" = ( -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bGk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bGl" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxShower"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_y = 25; - specialfunctions = 4 - }, -/obj/item/soap/nanotrasen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bGm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bGq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access_txt = "12;37" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port) -"bGr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/library) -"bGs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"bGt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/service/library) -"bGu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"bGv" = ( -/obj/item/radio/intercom{ - dir = 4 - }, -/turf/closed/wall, -/area/service/library) -"bGw" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Port"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGx" = ( -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"bGy" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"bGz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bGA" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"bGB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bGC" = ( -/turf/closed/wall/r_wall, -/area/command/teleporter) -"bGD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_one_access_txt = "17;19" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bGE" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/teleporter) -"bGG" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGH" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGI" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGJ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/camera{ - c_tag = "Command Hallway - Central"; - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bGM" = ( -/turf/closed/wall/r_wall, -/area/command/gateway) -"bGN" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/gateway) -"bGO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"bGQ" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bGR" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bGS" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/command) -"bGT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;17" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/central) -"bGU" = ( -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/medical{ - pixel_y = 8 - }, -/obj/structure/sign/directions/science{ - pixel_y = -8 - }, -/turf/closed/wall, -/area/maintenance/central) -"bGZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/radio/intercom{ - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/chem_master/condimaster{ - desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; - name = "HoochMaster Deluxe" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/bar) -"bHc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"bHg" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bHh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/processor{ - pixel_y = 12 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bHk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"bHl" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bHp" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHq" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHr" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHs" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bHw" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Distribution Loop"; - req_access_txt = "24" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bHx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bHz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bHA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bHB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bHC" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHE" = ( -/obj/structure/cable, -/obj/machinery/holopad/secure, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHF" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHG" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bHH" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bHI" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bHJ" = ( -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bHK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bHL" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"bHN" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"bHO" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bHP" = ( -/obj/machinery/door/airlock{ - id_tag = "AuxToilet3"; - name = "Unit 3" - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bHQ" = ( -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "AuxToilet3"; - name = "Lock Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bHR" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/wood, -/area/service/library) -"bHS" = ( -/obj/structure/bookcase/random/fiction, -/turf/open/floor/wood, -/area/service/library) -"bHT" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"bHU" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/library) -"bHV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/service/library) -"bHW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bHY" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bHZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bIa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bIb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bIc" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bId" = ( -/turf/closed/wall, -/area/ai_monitored/storage/eva) -"bIe" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/item/beacon, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bIf" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bIg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bIh" = ( -/obj/structure/closet/crate, -/obj/item/stack/cable_coil, -/obj/item/crowbar, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bIj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bIk" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bIm" = ( -/obj/structure/closet/secure_closet/exile, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bIn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"bIo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bIp" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/rods/fifty, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bIq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bIx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"bIy" = ( -/obj/structure/cable, -/obj/structure/table, -/obj/item/storage/bag/tray, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bIA" = ( -/obj/effect/turf_decal/tile/bar, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bIB" = ( -/turf/open/floor/wood, -/area/service/theater) -"bIC" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/theater) -"bII" = ( -/obj/structure/sign/warning/vacuum/external, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bIK" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIN" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/atmos) -"bIO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to External Air Ports" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bIP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bIS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIT" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bIU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bIY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "N2O to Pure" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"bIZ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bJa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"bJb" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bJc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bJd" = ( -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bJg" = ( -/obj/machinery/telecomms/message_server/preset, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJh" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJi" = ( -/obj/machinery/light/small, -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera{ - c_tag = "Telecomms - Control Room"; - dir = 1; - network = list("ss13","tcomms") - }, -/obj/structure/table/wood, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"bJk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bJl" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bJm" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJn" = ( -/obj/machinery/blackbox_recorder, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bJo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bJq" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJr" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bJt" = ( -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bJv" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"bJw" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/commons/vacant_room/office) -"bJx" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = 6; - pixel_y = 7 - }, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bJy" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/wood, -/area/service/library) -"bJz" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/service/library) -"bJA" = ( -/obj/machinery/door/window/northright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Library Desk Door"; - pixel_x = 3; - req_access_txt = "37" - }, -/turf/open/floor/wood, -/area/service/library) -"bJB" = ( -/obj/effect/landmark/start/librarian, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/library) -"bJC" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJD" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bJE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bJF" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bJG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bJH" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bJI" = ( -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bJJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bJK" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bJL" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/toolbox/emergency, -/obj/item/flashlight, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bJM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/teleporter) -"bJO" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJQ" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"bJS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/gateway) -"bJT" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bJU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"bJV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bJW" = ( -/obj/structure/table, -/obj/item/folder/yellow, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bJY" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bJZ" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bKa" = ( -/obj/effect/turf_decal/bot_white/left, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bKb" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"bKc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKd" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bKe" = ( -/turf/closed/wall, -/area/service/kitchen) -"bKh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKl" = ( -/obj/structure/table, -/obj/item/food/mint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kitchen/rollingpin, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"bKm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bKo" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bKp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/deepfryer, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bKv" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "External Waste Ports to Filter" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bKw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKy" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKA" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Air to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKB" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Pure to Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKD" = ( -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bKF" = ( -/obj/machinery/computer/atmos_control/tank/nitrous_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"bKG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bKH" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bKI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bKJ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bKL" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKM" = ( -/obj/structure/table/glass, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/folder{ - pixel_y = 2 - }, -/obj/item/pen, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKN" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKO" = ( -/obj/machinery/telecomms/hub/preset, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit/green/telecomms/mainframe, -/area/tcommsat/server) -"bKP" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bKQ" = ( -/obj/structure/lattice, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/space/basic, -/area/aisat) -"bKR" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/door/window{ - base_state = "right"; - icon_state = "right"; - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Starboard"; - dir = 4; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bKS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/computer/shuttle_flight/ferry/request/trader, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKT" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bKW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Arrivals - Aft Arm"; - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bKY" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bLa" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bLb" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"bLd" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/port) -"bLe" = ( -/obj/machinery/vending/autodrobe/all_access, -/turf/open/floor/plating, -/area/maintenance/port) -"bLf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bLg" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bLh" = ( -/obj/structure/bookcase/random/religion, -/turf/open/floor/wood, -/area/service/library) -"bLi" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/wood, -/area/service/library) -"bLk" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/wood, -/area/service/library) -"bLl" = ( -/obj/structure/table/wood, -/obj/item/pen/red, -/obj/item/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"bLm" = ( -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/sheet/rglass{ - amount = 50 - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bLn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bLo" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bLq" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Magboot Storage"; - pixel_x = -1; - req_access_txt = "18" - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/rack, -/obj/item/clothing/shoes/magboots{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bLr" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plating, -/area/command/teleporter) -"bLs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bLt" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bLu" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Disposals Chute" - }, -/obj/machinery/disposal/delivery_chute{ - dir = 8; - name = "disposals chute"; - pixel_x = 5 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bLv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "corporate_privacy"; - name = "showroom shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/corporate_showroom) -"bLw" = ( -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"bLx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bLy" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bLz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"bLA" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bLB" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/computer/gateway_control, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bLD" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bLE" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bLG" = ( -/obj/item/cigbutt, -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bLH" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Starboard - Kitchen"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLI" = ( -/obj/structure/plasticflaps/opaque{ - name = "Service Deliveries" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Service" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bLJ" = ( -/obj/effect/landmark/start/bartender, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"bLK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"bLM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/service/bar) -"bLN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/bar) -"bLO" = ( -/obj/machinery/vending/dinnerware, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"bLR" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/theater) -"bLS" = ( -/obj/machinery/camera{ - c_tag = "Theatre - Backstage"; - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/clothing/mask/animal/pig, -/obj/item/bikehorn, -/turf/open/floor/wood, -/area/service/theater) -"bLT" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command) -"bLW" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bLX" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bLY" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bLZ" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bMa" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"bMb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bMd" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMe" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Central"; - dir = 1 - }, -/obj/structure/reagent_dispensers/fueltank/large, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMf" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMh" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMj" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bMk" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/engineering/atmos) -"bMl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bMm" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input{ - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bMn" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2O"; - dir = 8 - }, -/turf/open/floor/engine/n2o, -/area/engineering/atmos) -"bMo" = ( -/obj/machinery/airalarm/server{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft-Port"; - dir = 4; - network = list("ss13","tcomms") - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bMr" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft-Starboard"; - dir = 8; - network = list("ss13","tcomms") - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bMt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bMu" = ( -/obj/machinery/camera{ - c_tag = "Arrivals - Aft Arm - Far"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMw" = ( -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMx" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bMy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMA" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMB" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = -32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"bMC" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bMD" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bME" = ( -/obj/structure/mirror{ - pixel_x = -28 - }, -/obj/item/lipstick/black, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port) -"bMF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bMH" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/wood, -/area/service/library) -"bMI" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/library) -"bMJ" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/library) -"bMK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/library) -"bML" = ( -/obj/machinery/light/small, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/service/library) -"bMM" = ( -/obj/item/folder, -/obj/item/folder, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/taperecorder, -/obj/item/tape, -/turf/open/floor/wood, -/area/service/library) -"bMN" = ( -/obj/machinery/light/small, -/obj/machinery/libraryscanner, -/turf/open/floor/wood, -/area/service/library) -"bMO" = ( -/obj/machinery/newscaster{ - pixel_x = -1; - pixel_y = -29 - }, -/turf/open/floor/wood, -/area/service/library) -"bMR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMS" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 8 - }, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bMT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bMU" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bMV" = ( -/obj/machinery/camera/motion{ - c_tag = "E.V.A. Storage"; - dir = 8 - }, -/obj/machinery/requests_console{ - department = "EVA"; - pixel_x = 32 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bMW" = ( -/obj/machinery/teleport/station, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/command/teleporter) -"bMX" = ( -/obj/machinery/bluespace_beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bMY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bMZ" = ( -/obj/machinery/camera{ - c_tag = "Teleporter Room"; - dir = 8 - }, -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bNa" = ( -/obj/structure/window/reinforced, -/obj/structure/showcase/mecha/ripley, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNb" = ( -/obj/structure/sign/plaques/kiddie/perfect_drone{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/storage/backpack/duffelbag/drone, -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNc" = ( -/obj/structure/showcase/mecha/marauder, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNe" = ( -/obj/structure/table/wood, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/item/reagent_containers/food/drinks/mug{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bNf" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bNg" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/clothing/shoes/laceup, -/obj/item/clothing/under/suit/black_really, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/camera{ - c_tag = "Corporate Showroom" - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bNh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bNi" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/showcase/machinery/cloning_pod{ - layer = 4; - pixel_x = 2; - pixel_y = 5 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNj" = ( -/obj/structure/showcase/perfect_employee, -/obj/structure/sign/plaques/kiddie/perfect_man{ - pixel_y = 32 - }, -/obj/structure/window/reinforced, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNk" = ( -/obj/structure/window/reinforced, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/showcase/machinery/implanter{ - layer = 2.7; - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bNl" = ( -/turf/closed/wall, -/area/command/gateway) -"bNm" = ( -/obj/structure/bed/roller, -/obj/machinery/vending/wallmed{ - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Gateway - Atrium"; - dir = 4 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bNn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bNo" = ( -/obj/structure/tank_dispenser/oxygen{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bNq" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bNs" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) -"bNt" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bNu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bNx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bNy" = ( -/obj/machinery/smartfridge/organ, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"bNB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bND" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"bNE" = ( -/obj/structure/sign/poster/random, -/turf/closed/wall, -/area/hallway/secondary/service) -"bNG" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"bNK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"bNL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance"; - req_one_access_txt = "12;25;26;35;28;22;37;46;38;70" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bNM" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bNN" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bNO" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bNP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bNQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bNS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port Mix to West Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bNU" = ( -/obj/item/crowbar, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port Mix to East Ports" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bNV" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bNW" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/door/window{ - name = "MiniSat Walkway Access" - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft Port"; - dir = 8; - network = list("minisat") - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bNX" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNY" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bNZ" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Telecomms - Server Room - Aft"; - dir = 1; - network = list("ss13","tcomms") - }, -/obj/machinery/ntnet_relay, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"bOa" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOb" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOc" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bOd" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bOe" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bOf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOg" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bOh" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"bOi" = ( -/obj/structure/table, -/obj/item/clothing/mask/cigarette/pipe, -/turf/open/floor/plating, -/area/maintenance/port) -"bOk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/turf/open/floor/wood, -/area/service/library) -"bOl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/grunge{ - name = "Quiet Room" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/library) -"bOm" = ( -/obj/machinery/door/morgue{ - name = "Private Study"; - req_access_txt = "37" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor, -/turf/open/floor/engine/cult, -/area/service/library) -"bOn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOo" = ( -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bOp" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bOq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"bOr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bOs" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Jetpack Storage"; - pixel_x = -1; - req_access_txt = "18" - }, -/obj/structure/window/reinforced, -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/item/tank/jetpack/carbondioxide, -/obj/item/tank/jetpack/carbondioxide{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/storage/eva) -"bOt" = ( -/obj/machinery/computer/teleporter{ - dir = 4 - }, -/turf/open/floor/plating, -/area/command/teleporter) -"bOu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bOv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bOw" = ( -/turf/closed/wall, -/area/command/teleporter) -"bOx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bOy" = ( -/obj/effect/decal/cleanable/oil, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bOC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bOD" = ( -/obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/command/corporate_showroom) -"bOF" = ( -/obj/item/cigbutt, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bOG" = ( -/obj/structure/rack, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/item/reagent_containers/syringe/multiver, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bOH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bOI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bOK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bOL" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bOM" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/gateway) -"bON" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/central) -"bOO" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bOQ" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/stack/package_wrap{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/stack/package_wrap, -/obj/structure/table/wood, -/obj/item/gun/ballistic/shotgun/doublebarrel, -/turf/open/floor/wood, -/area/service/bar) -"bOS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock{ - name = "Bar Storage"; - req_access_txt = "25" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/hallway/secondary/service) -"bOT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Service - Port" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bOW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/service) -"bOY" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bPb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"bPd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"bPe" = ( -/obj/machinery/airalarm/kitchen_cold_room{ - pixel_y = 24 - }, -/obj/machinery/door/window/eastleft{ - name = "Kitchen Delivery"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"bPh" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 2; - sortType = 18 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bPj" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPl" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPm" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPn" = ( -/obj/structure/closet/emcloset, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bPo" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bPp" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bPr" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bPs" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/atmos) -"bPt" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bPu" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/atmos) -"bPw" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Plasma to Pure" - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bPx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bPy" = ( -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bPz" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bPA" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"bPC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPD" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bPF" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bPH" = ( -/obj/item/trash/candy, -/turf/open/floor/plating, -/area/maintenance/port) -"bPI" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Vacant Office Maintenance"; - req_access_txt = "32" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bPJ" = ( -/obj/structure/rack, -/obj/item/clothing/mask/animal/horsehead, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/port) -"bPK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bPL" = ( -/obj/structure/rack, -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port) -"bPM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"bPN" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port) -"bPO" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/photocopier, -/turf/open/floor/wood, -/area/service/library) -"bPQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/library) -"bPR" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/library) -"bPS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/library) -"bPT" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/turf/open/floor/wood, -/area/service/library) -"bPU" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/machinery/vending/games, -/turf/open/floor/wood, -/area/service/library) -"bPV" = ( -/obj/structure/destructible/cult/tome, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/item/clothing/under/suit/red, -/obj/effect/decal/cleanable/cobweb, -/obj/item/book/codex_gigas, -/turf/open/floor/engine/cult, -/area/service/library) -"bPW" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/engine/cult, -/area/service/library) -"bPX" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/engine/cult, -/area/service/library) -"bPY" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bPZ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bQa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bQb" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bQc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bQd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bQe" = ( -/obj/machinery/power/shieldwallgen, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bQf" = ( -/obj/item/bodypart/chest/robot{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/bodypart/head/robot{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bQg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bQh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bQi" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/command/corporate_showroom) -"bQj" = ( -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/crap, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bQk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bQl" = ( -/obj/structure/table/wood, -/obj/item/toy/plush/carpplushie{ - color = "red"; - name = "\improper Nanotrasen wildlife department space carp plushie" - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bQm" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bQn" = ( -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bQp" = ( -/obj/structure/rack, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/head/hardhat/orange{ - name = "protective hat" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bQq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Gateway Chamber" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQv" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command/gateway) -"bQx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gateway Maintenance"; - req_access_txt = "17" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bQy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bQD" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bQF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bQH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bQI" = ( -/obj/structure/table, -/obj/item/storage/bag/plants, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bQN" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"bQQ" = ( -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bQR" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bQS" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bQT" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/engineering/atmos) -"bQU" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bQV" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bQW" = ( -/obj/machinery/computer/atmos_control/tank/toxin_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bQX" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bQY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bQZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bRa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/aisat) -"bRd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bRe" = ( -/obj/item/trash/cheesie, -/turf/open/floor/plating, -/area/maintenance/port) -"bRf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bRg" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood, -/area/service/library) -"bRh" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/library) -"bRi" = ( -/obj/structure/chair/office, -/turf/open/floor/wood, -/area/service/library) -"bRj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/service/library) -"bRk" = ( -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/skill_station, -/turf/open/floor/wood, -/area/service/library) -"bRl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen/invisible, -/turf/open/floor/engine/cult, -/area/service/library) -"bRn" = ( -/obj/structure/bookcase{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/engine/cult, -/area/service/library) -"bRo" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRq" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRs" = ( -/obj/machinery/power/shieldwallgen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bRt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bRu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bRw" = ( -/obj/structure/table/wood, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/folder/blue, -/obj/item/clothing/head/collectable/hop{ - name = "novelty HoP hat" - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRx" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase{ - desc = "A large briefcase with a digital locking system, and the Nanotrasen logo emblazoned on the sides."; - name = "\improper Nanotrasen-brand secure briefcase exhibit"; - pixel_y = 2 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bRz" = ( -/obj/structure/showcase/machinery/microwave{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRA" = ( -/obj/item/toy/beach_ball{ - desc = "The simple beach ball is one of Nanotrasen's most popular products. 'Why do we make beach balls? Because we can! (TM)' - Nanotrasen"; - name = "\improper Nanotrasen-brand beach ball"; - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRB" = ( -/obj/machinery/nuclearbomb/beer{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRC" = ( -/obj/item/storage/box/matches{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRD" = ( -/obj/structure/showcase/machinery/tv{ - dir = 1; - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bRF" = ( -/obj/item/disk/data{ - pixel_x = 9; - pixel_y = -1 - }, -/obj/item/disk/tech_disk{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/disk/design_disk{ - name = "component design disk"; - pixel_y = 6 - }, -/obj/structure/table/wood, -/obj/item/toy/talking/ai{ - name = "\improper Nanotrasen-brand toy AI"; - pixel_y = 6 - }, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRG" = ( -/obj/item/book/manual/wiki/security_space_law{ - name = "space law"; - pixel_y = 2 - }, -/obj/item/toy/gun, -/obj/item/restraints/handcuffs, -/obj/structure/table/wood, -/obj/item/clothing/head/collectable/hos{ - name = "novelty HoS hat" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"bRH" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bRI" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bRJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bRK" = ( -/obj/item/storage/belt/utility, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/structure/rack, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = -26; - req_access_txt = "19" - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/command/gateway) -"bRL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"bRM" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/camera{ - c_tag = "Gateway - Access"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/command/gateway) -"bRN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bRO" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bRR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bRT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/service) -"bRU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bRV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bRW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bRX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/hallway/secondary/service) -"bRY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bSb" = ( -/obj/machinery/door/window/westleft{ - dir = 1; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy2"; - name = "Robotics Shutters" - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bSg" = ( -/obj/structure/fireaxecabinet{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bSh" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/atmos) -"bSi" = ( -/obj/machinery/meter, -/obj/item/wrench, -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bSj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bSk" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input{ - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bSl" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Toxins"; - dir = 8 - }, -/turf/open/floor/engine/plasma, -/area/engineering/atmos) -"bSn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bSp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSr" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bSt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port) -"bSu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bSv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bSw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bSx" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"bSy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/library) -"bSz" = ( -/obj/structure/table/wood, -/obj/item/folder, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library) -"bSA" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/turf/open/floor/wood, -/area/service/library) -"bSB" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/library) -"bSC" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/service/library) -"bSD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bSF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "evashutter"; - name = "E.V.A. Storage Shutter" - }, -/obj/machinery/button/door{ - id = "evashutter"; - name = "E.V.A. Storage Shutter Control"; - pixel_x = 30; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bSG" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bSH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "teleshutter"; - name = "Teleporter Access Shutter" - }, -/obj/machinery/button/door{ - id = "teleshutter"; - name = "Teleporter Shutter Control"; - pixel_x = 30; - pixel_y = 5; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/command/teleporter) -"bSK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bSM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Corporate Showroom"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bSO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters{ - id = "gateshutter"; - name = "Gateway Access Shutter" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/command/gateway) -"bSP" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;17" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/central) -"bSS" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"bST" = ( -/turf/closed/wall, -/area/service/hydroponics) -"bSX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bTa" = ( -/obj/structure/cable, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bTb" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bTc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"bTe" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bTi" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bTj" = ( -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 3; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/machinery/shower{ - dir = 8; - name = "emergency shower" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bTk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard"; - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bTm" = ( -/obj/structure/lattice/catwalk, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/space/basic, -/area/aisat) -"bTn" = ( -/turf/closed/wall, -/area/maintenance/solars/port/aft) -"bTq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, -/turf/open/space/basic, -/area/space) -"bTr" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bTs" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bTt" = ( -/obj/item/storage/box, -/turf/open/floor/plating, -/area/maintenance/port) -"bTv" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/paper, -/turf/open/floor/plating, -/area/maintenance/port) -"bTw" = ( -/obj/structure/table/wood, -/obj/item/storage/crayons, -/obj/item/toy/crayon/spraycan, -/obj/item/toy/crayon/spraycan{ - pixel_x = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"bTx" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/library) -"bTy" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/service/library) -"bTz" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/turf/open/floor/wood, -/area/service/library) -"bTA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/library) -"bTD" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bTE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=11-Command-Port"; - location = "10.2-Aft-Port-Corner" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTH" = ( -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTK" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTL" = ( -/obj/machinery/firealarm{ - pixel_y = 28 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTM" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTN" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTZ" = ( -/obj/structure/table/wood, -/obj/structure/sign/picture_frame/showroom/one{ - pixel_x = -8; - pixel_y = 32 - }, -/obj/structure/sign/picture_frame/showroom/two{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"bUa" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUc" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUd" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUe" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/service/hydroponics) -"bUf" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_y = 28 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUg" = ( -/obj/machinery/vending/hydronutrients, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUi" = ( -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUj" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "SapMaster XP" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Hydroponics - Fore" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUm" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 36 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUq" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/storage/box/drinkingglasses, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/hallway/secondary/service) -"bUx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUy" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bUz" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bUA" = ( -/obj/machinery/pipedispenser, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUB" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUC" = ( -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Port to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUE" = ( -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUF" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bUH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "CO2 to Pure" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bUI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bUJ" = ( -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bUK" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bUL" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"bUM" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"bUN" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/secure_closet/hydroponics, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bUQ" = ( -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bUR" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/port) -"bUS" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;25;28" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUT" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/item/reagent_containers/food/condiment/flour, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUV" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUW" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUX" = ( -/obj/structure/closet/crate/bin, -/obj/item/kitchen/knife, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bUY" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bUZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVa" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVe" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVf" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.2-Aft-Port-Corner"; - location = "10.1-Central-from-Aft" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVh" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8.1-Aft-to-Escape"; - location = "8-Central-to-Aft" - }, -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVj" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVm" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVo" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=8-Central-to-Aft"; - location = "7.5-Starboard-Aft-Corner" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVp" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVq" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVr" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/chem_dispenser/mutagensaltpeter, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVy" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bVz" = ( -/obj/structure/closet/secure_closet/bar{ - req_access_txt = "25" - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"bVB" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bVC" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"bVE" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bVF" = ( -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bVG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bVH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bVI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bVJ" = ( -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bVK" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bVL" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Fuel Pipe" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bVM" = ( -/obj/machinery/computer/atmos_control/tank/carbon_tank{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bVN" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bVO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/closed/wall/r_wall, -/area/aisat) -"bVP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bVT" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bVU" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port) -"bVV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bVW" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"bWa" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/genetics) -"bWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;37;25;28" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bWg" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bWh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWi" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Port Corner"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWk" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWl" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWm" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWr" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWs" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWt" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWu" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWv" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWw" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWE" = ( -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Starboard Corner"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWH" = ( -/obj/effect/turf_decal/trimline/green/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWJ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWK" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westright{ - dir = 4; - name = "Hydroponics Desk"; - req_one_access_txt = "30;35" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWL" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/start/botanist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWS" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWT" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWV" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"bWX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bWY" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"bWZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"bXa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/item/cigbutt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXe" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Atmospherics Maintenance"; - req_access_txt = "24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bXf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bXg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Fuel Pipe to Filter" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXi" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXk" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXl" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXn" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXo" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Pure to Fuel Pipe" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bXq" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bXr" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input{ - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bXs" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - CO2"; - dir = 8 - }, -/turf/open/floor/engine/co2, -/area/engineering/atmos) -"bXu" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/b_plus, -/obj/item/reagent_containers/blood/b_minus, -/obj/item/reagent_containers/blood/a_plus, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/lizard, -/obj/item/reagent_containers/blood/ethereal, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bXv" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bXx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"bXy" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXz" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bXA" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/aft) -"bXE" = ( -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXF" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bXG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"bXJ" = ( -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port) -"bXK" = ( -/turf/closed/wall, -/area/medical/storage) -"bXL" = ( -/turf/closed/wall, -/area/security/checkpoint/medical) -"bXM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXQ" = ( -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Port"; - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXR" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXU" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXV" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXZ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYa" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"bYb" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;35;47" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"bYc" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bYd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics Storage" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYf" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYh" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYj" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYl" = ( -/obj/item/seeds/wheat, -/obj/item/seeds/sugarcane, -/obj/item/seeds/potato, -/obj/item/seeds/apple, -/obj/item/grown/corncob, -/obj/item/food/grown/carrot, -/obj/item/food/grown/wheat, -/obj/item/food/grown/pumpkin{ - pixel_y = 5 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYm" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYn" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYo" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = -32 - }, -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYp" = ( -/obj/item/reagent_containers/spray/plantbgone{ - pixel_y = 3 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 13; - pixel_y = 5 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bYq" = ( -/obj/structure/rack, -/obj/item/tank/internals/oxygen, -/obj/item/tank/internals/oxygen, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/teleporter) -"bYr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"bYv" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Port-Aft"; - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bYw" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bYx" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bYz" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bYA" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bYB" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"bYC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"bYD" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bYH" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"bYI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYJ" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYK" = ( -/obj/machinery/mech_bay_recharge_port, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYL" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/maintenance/port/aft) -"bYM" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bYN" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"bYO" = ( -/obj/item/vending_refill/cola, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;25;28" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bYR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"bYS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"bYT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"bYU" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 10 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/pill_bottle/mannitol, -/obj/item/reagent_containers/dropper{ - pixel_y = 6 - }, -/obj/structure/sign/warning/coldtemp{ - name = "\improper CRYOGENICS"; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"bYV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/cryo_cell, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"bYW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/book/manual/wiki/medicine, -/obj/item/clothing/neck/stethoscope, -/obj/item/wrench/medical, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"bYX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table/glass, -/obj/item/folder/white, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"bYY" = ( -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = 30 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security Post - Medbay"; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"bYZ" = ( -/obj/item/pen, -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"bZa" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bZb" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/central) -"bZc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"bZd" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/central) -"bZe" = ( -/obj/structure/sign/directions/security{ - dir = 1; - pixel_y = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4 - }, -/obj/structure/sign/directions/command{ - dir = 1; - pixel_y = -8 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"bZf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Aft Primary Hallway" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZi" = ( -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = 8 - }, -/obj/structure/sign/directions/evac, -/obj/structure/sign/directions/science{ - dir = 4; - pixel_y = -8 - }, -/turf/closed/wall, -/area/science/research) -"bZj" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/science/research) -"bZk" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall, -/area/science/research) -"bZn" = ( -/turf/closed/wall, -/area/science/research) -"bZq" = ( -/obj/item/food/grown/wheat, -/obj/item/food/grown/watermelon, -/obj/item/food/grown/citrus/orange, -/obj/item/food/grown/grapes, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZs" = ( -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/plant_analyzer, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZt" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"bZx" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"bZB" = ( -/obj/effect/landmark/start/exploration, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"bZE" = ( -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"bZF" = ( -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"bZG" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZH" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZJ" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZL" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"bZM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"bZN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"bZO" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZP" = ( -/obj/structure/cable, -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bZQ" = ( -/turf/open/floor/circuit, -/area/maintenance/port/aft) -"bZR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZS" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"bZT" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"bZU" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"bZV" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"bZY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/warning/coldtemp{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"bZZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"caa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"cab" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/medical/cryo) -"cac" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cad" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cae" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Medbay Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"caf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"cag" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "medsecprivacy"; - name = "Privacy Shutters Control"; - pixel_x = 24; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"cai" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cak" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"can" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cao" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cap" = ( -/obj/structure/table, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/suture, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"caq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"car" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"caA" = ( -/obj/structure/window/reinforced, -/obj/item/food/cakeslice/pound_cake_slice{ - pixel_x = 8; - pixel_y = -2 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/table/reinforced{ - name = "Jim Norton's Quebecois Coffee table" - }, -/obj/item/food/poppypretzel{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/food/muffin/berry{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/food/hotcrossbun{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"caG" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/navbeacon/wayfinding/hydro, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caN" = ( -/obj/structure/cable, -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caS" = ( -/obj/structure/table/glass, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/clothing/suit/apron, -/obj/item/wrench, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"caU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"caY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cba" = ( -/obj/machinery/power/smes{ - capacity = 9e+006; - charge = 10000 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cbb" = ( -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cbc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cbd" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbe" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/nitrogen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbf" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "N2 to Airmix" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbg" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "N2 to Pure" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cbh" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbi" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/oxygen_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbj" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 to Airmix" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cbk" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/northleft{ - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cbl" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"cbn" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"cbo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"cbp" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cbq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"cbt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbu" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/medical/central) -"cbv" = ( -/obj/structure/light_construct{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbw" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cbx" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cby" = ( -/obj/machinery/mecha_part_fabricator/maint{ - name = "forgotten exosuit fabricator" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbz" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/radio/off, -/obj/structure/light_construct{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbA" = ( -/obj/structure/closet, -/obj/item/stack/sheet/iron{ - amount = 34 - }, -/obj/item/extinguisher/mini, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbB" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cbD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medical Freezer Maintenance"; - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cbE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"cbF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"cbI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Freezer"; - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/coldroom) -"cbJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbN" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera{ - c_tag = "Medbay Cryogenics"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cbQ" = ( -/obj/structure/closet/secure_closet/security/med, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"cbR" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_y = 28 - }, -/obj/machinery/camera{ - c_tag = "Medbay Clinic"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table, -/obj/item/stack/medical/mesh, -/obj/item/stack/medical/gauze, -/obj/item/stack/medical/suture, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbW" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/medbay/central) -"cbX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/medbay/central) -"cbY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cbZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cca" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ccb" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"ccc" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"ccd" = ( -/turf/open/floor/plasteel/white, -/area/science/research) -"ccg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"ccp" = ( -/obj/machinery/vending/hydroseeds{ - slogan_delay = 700 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ccq" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/machinery/light, -/obj/item/paper/guides/jobs/hydroponics, -/obj/machinery/camera{ - c_tag = "Hydroponics - Foyer"; - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ccr" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ccs" = ( -/obj/machinery/disposal/bin{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cct" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ccu" = ( -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ccw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ccx" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ccB" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ccI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ccK" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ccL" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"ccM" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccN" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccQ" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccS" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccT" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccU" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccV" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard Aft"; - dir = 1 - }, -/obj/effect/turf_decal{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccW" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Airway"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccY" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"ccZ" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cdc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/girder, -/obj/structure/grille, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cde" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdi" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass{ - amount = 12 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdk" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdl" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cdm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/aft) -"cdn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/airalarm/kitchen_cold_room{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"cdo" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"cdp" = ( -/obj/machinery/light_switch{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cds" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdt" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cdw" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring medbay to ensure patient safety."; - dir = 4; - name = "Medbay Monitor"; - network = list("medbay"); - pixel_x = -32 - }, -/obj/structure/cable, -/obj/structure/chair/office, -/obj/effect/landmark/start/depsec/medical, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_x = -27; - pixel_y = -25 - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"cdy" = ( -/obj/structure/cable, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdA" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdB" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/igniter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cdC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/medical/medbay/central) -"cdD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/medbay/central) -"cdG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdI" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Hydroponics Maintenance"; - req_access_txt = "35" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cdX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/mousetraps{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/structure/table, -/obj/item/storage/box/mousetraps{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/clothing/gloves/color/orange{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/radio/intercom{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"cdY" = ( -/obj/machinery/suit_storage_unit/rd, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Science Admin"; - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"ced" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cee" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cef" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Fuel Pipe to Incinerator" - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"ceg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"ceh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"cei" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"cen" = ( -/obj/structure/girder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceo" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cep" = ( -/obj/structure/rack, -/obj/item/screwdriver{ - pixel_y = 16 - }, -/obj/item/hand_labeler, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceq" = ( -/obj/structure/rack, -/obj/item/stack/cable_coil{ - pixel_x = -1; - pixel_y = -3 - }, -/obj/item/wrench, -/obj/item/flashlight/seclite, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cer" = ( -/obj/structure/rack, -/obj/item/stack/rods{ - amount = 23 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ceu" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cev" = ( -/turf/closed/wall, -/area/medical/sleeper) -"cew" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cex" = ( -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cey" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cez" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"ceA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/computer/med_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"ceB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"ceC" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"ceD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceE" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceF" = ( -/obj/structure/bed/roller, -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Medbay Foyer"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceG" = ( -/obj/machinery/light, -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceH" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceI" = ( -/obj/item/kirbyplants{ - icon_state = "plant-11" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceK" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 26; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ceL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ceY" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ceZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cfa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/secondary) -"cfc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cfd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/secondary) -"cff" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/secondary) -"cfg" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cfj" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 2; - sortType = 22 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cfk" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"cfl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"cfq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cfs" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"cft" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cfu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cfw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cfx" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cfy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cfC" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cfG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cfI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cfJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cfK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cfL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cfM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cfN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cfO" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cfP" = ( -/obj/machinery/medical_kiosk, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cfT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cfU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Clinic" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cfV" = ( -/obj/structure/sign/directions/medical{ - pixel_y = -7 - }, -/turf/closed/wall, -/area/medical/pharmacy) -"cfW" = ( -/obj/structure/sign/departments/chemistry/pharmacy, -/turf/closed/wall, -/area/medical/pharmacy) -"cfX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"cfY" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/pharmacy) -"cfZ" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/machinery/door/firedoor, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters"; - name = "pharmacy shutters" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cga" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry"; - req_access_txt = "33" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cgb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgc" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgd" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"cgo" = ( -/turf/closed/wall/r_wall, -/area/science/research) -"cgq" = ( -/turf/closed/wall/r_wall, -/area/science/genetics) -"cgu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cgv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"cgx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cgy" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cgz" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cgA" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"cgB" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank In" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"cgC" = ( -/obj/machinery/meter{ - name = "Mixed Air Tank Out" - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"cgH" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"cgI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cgL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cgN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cgO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cgP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cgQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cgR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cgT" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay Treatment Hallway"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cgU" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cgV" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"cgX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cgZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cha" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"chb" = ( -/obj/machinery/light_switch{ - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"chc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"chd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"che" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"chf" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/machinery/button/door{ - id = "pharmacy_shutters"; - name = "pharmacy shutters control"; - pixel_x = 24; - pixel_y = 24; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"chn" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"cho" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"chw" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/command/corporate_showroom) -"chz" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"chC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"chD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard) -"chE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/janitorialcart, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/service/janitor) -"chM" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "MiniSat Exterior - Aft"; - network = list("minisat") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"chN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"chO" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"chP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"chQ" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"chR" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"chS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"chT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"chU" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"chV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"chW" = ( -/obj/effect/turf_decal/box/white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cia" = ( -/turf/closed/wall, -/area/medical/surgery) -"cic" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/northleft{ - name = "MuleBot Access"; - req_access_txt = "50" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Medbay" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/medical/storage) -"cie" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cik" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cil" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cin" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cio" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Intensive Care"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cip" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ciq" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cit" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ciu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"civ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Pharmacy"; - req_access_txt = "69" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ciw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cix" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ciy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ciz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ciA" = ( -/obj/machinery/chem_master, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - name = "requests board"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"ciL" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ciX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/secondary) -"ciY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/layer_manifold/general, -/turf/open/floor/plating, -/area/maintenance/disposal/incinerator) -"cja" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ - pixel_x = 40; - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cjb" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cjc" = ( -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"cjd" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cje" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - N2"; - dir = 8 - }, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"cjf" = ( -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"cjg" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cjh" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - O2"; - dir = 8 - }, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"cji" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"cjj" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"cjk" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics Tank - Air"; - dir = 8 - }, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"cjl" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cjm" = ( -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/obj/effect/turf_decal/arrows/white{ - color = "#FF0000"; - dir = 4; - pixel_x = -15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cjn" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cjs" = ( -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = -1 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/structure/table/wood, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjt" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cjw" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/toxin{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cjx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cjy" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cjz" = ( -/obj/machinery/door/window/southright{ - name = "Medical Deliveries"; - req_access_txt = "5" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cjA" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/machinery/recharge_station, -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cjB" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/stasis, -/obj/machinery/defibrillator_mount{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/computer/operating, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjE" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = 21; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cjK" = ( -/obj/structure/plaque/static_plaque/golden{ - desc = "A golden plaque commemorating excellence in medical care. God only knows how this ended up in this medbay."; - name = "The Hippocratic Award for Excellence in Medicine"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"cjN" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - id_tag = "MedbayFoyer"; - name = "Medbay Intensive Care"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cjS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cjT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cjU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cjV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cjW" = ( -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/igniter{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/storage/pill_bottle/epinephrine{ - pixel_x = 8; - pixel_y = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cku" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ckv" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ckw" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/item/shard, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ckx" = ( -/obj/structure/table, -/obj/structure/sign/departments/medbay{ - pixel_y = 32 - }, -/obj/item/reagent_containers/glass/beaker/large, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cky" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ckz" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ckD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/airlock_sensor/incinerator_atmos{ - pixel_x = -8; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 8 - }, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckF" = ( -/obj/structure/sign/warning/fire{ - pixel_x = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"ckG" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engineering/atmos) -"ckH" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engineering/atmos) -"ckI" = ( -/turf/open/floor/engine/air, -/area/engineering/atmos) -"ckJ" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engineering/atmos) -"ckK" = ( -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ckN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ckP" = ( -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ckQ" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"ckR" = ( -/obj/item/reagent_containers/glass/rag, -/obj/structure/table/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"ckS" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/maintenance/port/aft) -"ckT" = ( -/turf/open/floor/plasteel/dark, -/area/aisat) -"ckU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ckV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ckW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ckX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ckY" = ( -/obj/structure/closet/secure_closet/medical1{ - pixel_x = -3 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"clb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"clc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cld" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"clg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 5 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cli" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack"; - req_access_txt = "13" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"clj" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/sign/departments/examroom{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clm" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cln" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"clo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clp" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/storage/firstaid/regular{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clq" = ( -/obj/item/kirbyplants, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/vending/wallmed{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cls" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Pharmacy Desk"; - req_access_txt = "5" - }, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/reagent_containers/glass/bottle/toxin{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 8 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -5 - }, -/obj/item/reagent_containers/syringe/epinephrine, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"clt" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"clu" = ( -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"clv" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"clw" = ( -/obj/structure/table/glass, -/obj/item/folder/white{ - pixel_y = 2 - }, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/radio/headset/headset_med, -/obj/structure/extinguisher_cabinet{ - pixel_x = 24 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/hand_labeler, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"clx" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"clK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Psychology Maintenance"; - req_access_txt = "70" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"clW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"clX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"clY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"clZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cma" = ( -/obj/structure/rack, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cmb" = ( -/obj/machinery/chem_master{ - pixel_x = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cmc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cmd" = ( -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/maintenance/disposal/incinerator) -"cmh" = ( -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cmk" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/storage/box/bodybags{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = 1; - pixel_y = 1 - }, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/hud/health, -/obj/item/gun/syringe, -/obj/item/gun/syringe, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cml" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cmm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cmn" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmp" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cmr" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cms" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmt" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cmu" = ( -/turf/closed/wall, -/area/command/heads_quarters/cmo) -"cmv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cmoprivacy"; - name = "privacy shutter" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/cmo) -"cmy" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_one_access_txt = "5;12;33;69" - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cmz" = ( -/obj/machinery/reagentgrinder, -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cmB" = ( -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmC" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/closet/secure_closet/chemical, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cmD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/departments/chemistry/pharmacy{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmK" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cmP" = ( -/turf/closed/wall, -/area/science/genetics) -"cmX" = ( -/obj/structure/window/reinforced, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cmY" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cmZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cna" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/under/color/white, -/obj/item/clothing/head/soft/mime, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cnb" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/secondary) -"cnc" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cne" = ( -/obj/machinery/igniter/incinerator_atmos, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnf" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cng" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cnh" = ( -/obj/item/flashlight/lamp, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnj" = ( -/obj/item/reagent_containers/food/drinks/beer, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cnl" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"cnm" = ( -/obj/structure/table/glass, -/obj/machinery/door/window/eastleft{ - name = "First-Aid Supplies"; - req_access_txt = "5" - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/fire{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cno" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cnp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cnq" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cnr" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cns" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnt" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/medical_kiosk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"cnv" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 5 - }, -/area/medical/sleeper) -"cnw" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cny" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnz" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cnA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnB" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/camera{ - c_tag = "Medbay Main Hallway- CMO"; - dir = 8; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnC" = ( -/obj/structure/table/glass, -/obj/item/cartridge/medical{ - pixel_x = -3 - }, -/obj/item/cartridge/medical{ - pixel_x = 3 - }, -/obj/item/cartridge/chemistry{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cnD" = ( -/obj/structure/table/glass, -/obj/item/folder/blue, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cnE" = ( -/obj/structure/table/glass, -/obj/item/storage/secure/briefcase{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cnF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cnG" = ( -/obj/structure/closet/secure_closet/chief_medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/item/screwdriver, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"cnH" = ( -/obj/item/radio/intercom{ - dir = 8; - pixel_x = -28 - }, -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Pharmacy"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cnI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cnK" = ( -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cnL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy shutters" - }, -/turf/open/floor/plating, -/area/medical/pharmacy) -"cnM" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cnO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cor" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cos" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_y = 6 - }, -/obj/item/pen, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cot" = ( -/obj/structure/table, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cou" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cov" = ( -/obj/structure/bed, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cow" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/reagent_containers/glass/bucket, -/obj/item/cultivator, -/obj/item/wirecutters, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"coy" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/regular{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"coz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"coA" = ( -/mob/living/simple_animal/bot/cleanbot/medbay, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"coB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"coC" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/structure/bedsheetbin, -/obj/structure/table/glass, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"coD" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coF" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coG" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/reagent_containers/chem_pack{ - pixel_x = 10; - pixel_y = 10 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/stack/medical/gauze{ - pixel_x = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 10 - }, -/area/medical/sleeper) -"coH" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/syringe, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/sleeper) -"coI" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/stack/medical/mesh, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 6 - }, -/area/medical/sleeper) -"coJ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coL" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coM" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Primary Treatment Centre"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"coN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"coO" = ( -/obj/machinery/vending/wallmed{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"coP" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"coQ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"coR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"coS" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"coT" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/table/glass, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"coU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"coV" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"coW" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"coX" = ( -/obj/structure/table/reinforced, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Pharmacy Desk"; - req_access_txt = "5; 69" - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "pharmacy_shutters_2"; - name = "Pharmacy shutters" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"coY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/secondary) -"cpJ" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cpK" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cpL" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/structure/rack, -/obj/item/storage/firstaid/regular, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cpM" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cpN" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal/incinerator) -"cpO" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/dark, -/area/aisat) -"cpP" = ( -/obj/structure/lattice/catwalk, -/obj/item/wrench, -/turf/open/space/basic, -/area/space/nearstation) -"cpQ" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"cpR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 8; - network = list("ss13","engine") - }, -/obj/machinery/airalarm/engine{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"cpU" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Spare Surgical Supplies"; - req_access_txt = "5" - }, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath/medical, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/item/reagent_containers/glass/bottle/ethanol, -/obj/item/reagent_containers/glass/bottle/ethanol, -/obj/item/blood_filter, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"cpV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/vending/wallmed{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/requests_console{ - department = "Medical Response"; - departmentType = 1; - name = "Emergency Response RC"; - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cpW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cpX" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cpZ" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cqc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cqf" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cqg" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cqi" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqj" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cql" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cqm" = ( -/obj/structure/chair/office/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cqn" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cqo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cqp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "CMO Maintenance"; - req_access_txt = "40" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cqq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cqr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cqs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cqu" = ( -/obj/machinery/chem_master, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 1; - name = "requests board"; - pixel_y = -32 - }, -/obj/machinery/button/door{ - id = "pharmacy_shutters_2"; - name = "pharmacy shutters control"; - pixel_x = 26; - pixel_y = -26; - req_access_txt = "5; 69" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"cqY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cqZ" = ( -/obj/structure/barricade/wooden, -/obj/structure/girder, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cra" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"crb" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/blood/old, -/obj/effect/decal/cleanable/blood/gibs/old, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"crc" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"crd" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"cre" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"crf" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"crh" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"cri" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"crk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"crl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"crm" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"crn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Storage"; - dir = 8; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"crr" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"cru" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 6 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"crw" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"crx" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cry" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"crz" = ( -/obj/structure/table/glass, -/obj/item/folder/blue{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/folder/white, -/obj/item/pen, -/obj/item/stamp/cmo, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"crA" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/clipboard, -/obj/item/toy/figure/cmo, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"crD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"crE" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Pharmacy Maintenance"; - req_access_txt = "69" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"crF" = ( -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"crQ" = ( -/turf/closed/wall, -/area/command/heads_quarters/rd) -"crR" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"crS" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/storage) -"crZ" = ( -/obj/structure/table, -/obj/structure/bedsheetbin{ - pixel_x = 2 - }, -/obj/item/clothing/mask/muzzle, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"csa" = ( -/obj/structure/table, -/obj/item/restraints/handcuffs/cable/white, -/obj/item/toy/plush/pkplush{ - name = "C.H.E.R.U.B." - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"csb" = ( -/obj/structure/rack, -/obj/item/hatchet, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"csc" = ( -/obj/machinery/iv_drip, -/obj/item/roller, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"csd" = ( -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cse" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"csf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"csg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"csj" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"csk" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"csl" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/screwdriver{ - pixel_y = 6 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/clothing/neck/stethoscope, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"csm" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"csn" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/storage) -"csp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/defibrillator_mount{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/structure/table/optable, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"csr" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"css" = ( -/turf/closed/wall, -/area/medical/cryo) -"cst" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"csv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"csx" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer's RC"; - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"csy" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"csz" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"csA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera{ - c_tag = "Chief Medical Officer's Office"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"csB" = ( -/obj/machinery/disposal/bin, -/obj/machinery/status_display/ai{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/cmo) -"csC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"csD" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"csE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/medical/central) -"csF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 11 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"csH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"csI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;33;69" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"csT" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctl" = ( -/obj/machinery/camera{ - active_power_usage = 0; - c_tag = "Turbine Vent"; - dir = 4; - network = list("turbine"); - use_power = 0 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ctn" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ctq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"ctx" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/cmo{ - dir = 4; - pixel_x = -30 - }, -/obj/machinery/keycard_auth{ - pixel_x = 7; - pixel_y = -25 - }, -/obj/machinery/button/door{ - id = "cmoprivacy"; - name = "CMO Privacy Shutters"; - pixel_x = -7; - pixel_y = -26; - req_access_txt = "40" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"cty" = ( -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ctz" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/machinery/newscaster{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"ctD" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"ctE" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctF" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctG" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ctH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft) -"ctJ" = ( -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"ctK" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ctL" = ( -/turf/closed/wall/r_wall, -/area/science/nanite) -"cue" = ( -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"cuk" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white/corner, -/area/medical/break_room) -"cul" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Break Room"; - network = list("ss13","medbay") - }, -/obj/structure/chair/comfy, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white/side, -/area/medical/break_room) -"cum" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/medical/break_room) -"cuo" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cus" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cuu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chemistry North"; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cuA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cuZ" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab/range) -"cva" = ( -/turf/closed/wall, -/area/maintenance/space_hut) -"cvl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/frame/computer{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cvn" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cvo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/break_room) -"cvp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/break_room) -"cvq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvr" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cvv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cvG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvH" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"cwc" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"cwf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"cwn" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"cwo" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/break_room) -"cwp" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/break_room) -"cwq" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/break_room) -"cwv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"cwF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwZ" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"cxd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"cxe" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/medical/break_room) -"cxf" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/break_room) -"cxg" = ( -/obj/structure/table/glass, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/break_room) -"cxj" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cxp" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"cxr" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cxz" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10.1-Central-from-Aft"; - location = "10-Aft-To-Central" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxB" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.1-Escape-1"; - location = "8.1-Aft-to-Escape" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cxL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cxM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxQ" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"cxS" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cxT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = 27; - pixel_y = -5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cxU" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"cxV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cya" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cyo" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyr" = ( -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"cyF" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"cyK" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"cyP" = ( -/obj/machinery/door/airlock{ - name = "Medical Break Room"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/break_room) -"cyT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyX" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Transit Tube Access"; - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"czf" = ( -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"czh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"czt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Science Toxins Corridor"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"czD" = ( -/turf/closed/wall, -/area/science/mixing) -"czH" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"czJ" = ( -/turf/closed/wall, -/area/science/test_area) -"czK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"czP" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czQ" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czT" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"czU" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cAh" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Middle"; - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAH" = ( -/obj/machinery/door/poddoor/shutters{ - id = "toxinsaccess"; - name = "Toxins Access" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cAP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"cAT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAV" = ( -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"cAY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cBa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/departments/chemistry{ - pixel_x = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay Main Hallway- Surgical Junction"; - dir = 8; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cBe" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/security/prison) -"cBr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"cBx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cBM" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"cBN" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBP" = ( -/obj/structure/chair, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cBR" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cBS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cBX" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cBY" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cCa" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/yellow/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cCe" = ( -/turf/closed/wall, -/area/medical/morgue) -"cCf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cCj" = ( -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cCk" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"cCl" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cCm" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCn" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"cCq" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"cCH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCI" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cCK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/virology) -"cCM" = ( -/obj/structure/lattice/catwalk, -/obj/item/reagent_containers/food/drinks/bottle/rum{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/colocup{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/clothing/mask/cigarette/rollie/cannabis{ - pixel_y = -3 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cCN" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cCO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cCP" = ( -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cCY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cCZ" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cDi" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"cDv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDx" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cDz" = ( -/turf/closed/indestructible/riveted{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"cDD" = ( -/obj/structure/lattice/catwalk, -/obj/item/instrument/guitar, -/turf/open/space/basic, -/area/space/nearstation) -"cDJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cDN" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/carpet, -/area/medical/psychology) -"cDO" = ( -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green{ - pixel_y = 4 - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"cDQ" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"cDR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cDS" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cDT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cDW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cDX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cEb" = ( -/obj/structure/cable, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cEf" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"cEg" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEh" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEz" = ( -/obj/structure/closet/wardrobe/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cEB" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cEC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cEE" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old decommissioned scanner, permanently scuttled."; - icon_state = "scanner"; - name = "decommissioned cloning scanner" - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cEI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEJ" = ( -/obj/structure/cable, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEK" = ( -/obj/structure/cable, -/obj/structure/grille, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEM" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/abandoned) -"cEN" = ( -/turf/open/floor/carpet, -/area/medical/psychology) -"cEO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEP" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cER" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cFa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFc" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/departments/science{ - name = "\improper ROBOTICS!"; - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cFh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cFu" = ( -/obj/structure/closet, -/obj/item/assembly/prox_sensor{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cFv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFx" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"cFy" = ( -/obj/structure/flora/junglebush/b, -/obj/structure/flora/ausbushes/ppflowers, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/medical/virology) -"cFI" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet/cardboard, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/item/toy/plush/lizardplushie{ - name = "Tends-the-Wounds" - }, -/obj/structure/sign/poster/contraband/lizard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cFJ" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cFK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/skub{ - name = "medicinal skub" - }, -/obj/item/toy/cattoy, -/turf/open/floor/plating, -/area/medical/abandoned) -"cFL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cFN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cFO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cFP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cFR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"cFS" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFT" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFU" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"cFV" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Morgue"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFW" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"cFY" = ( -/obj/structure/closet, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/aft) -"cFZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cGo" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cGs" = ( -/obj/machinery/door/airlock/medical{ - name = "Abandoned Storage"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cGA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/surgery, -/obj/structure/light_construct{ - dir = 8 - }, -/obj/item/storage/fancy/cigarettes/cigpack_uplift, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cGB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair/office/light, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cGG" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cGH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_x = -32; - req_access_txt = "70" - }, -/obj/structure/closet/secure_closet/psychology, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cGI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cGJ" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cGK" = ( -/obj/structure/chair/office/light, -/obj/structure/cable, -/obj/effect/landmark/start/psychologist, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cGL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cGN" = ( -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cGU" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cHk" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solars/port/aft) -"cHv" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/storage/box/lights/mixed, -/obj/item/cigbutt/cigarbutt, -/obj/item/candle{ - pixel_x = -5 - }, -/obj/item/storage/box/matches{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cHw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/memeorgans, -/obj/structure/closet/crate/medical, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"cHy" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cHz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/camera{ - c_tag = "Medbay Psychology Office"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cHA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/noticeboard{ - pixel_y = -32 - }, -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1; - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"cHD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/machinery/light, -/obj/item/hand_labeler, -/obj/item/pen, -/obj/item/pen, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cHE" = ( -/obj/structure/table/glass, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/storage/box/masks, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cHF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/camera{ - c_tag = "Medbay Paramedic Dispatch"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/item/phone{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cHH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair/sofa/right{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/start/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cHI" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cHL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHM" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIg" = ( -/turf/closed/wall/r_wall, -/area/science/server) -"cIk" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"cIl" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIu" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cIE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIF" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIG" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Aft"; - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/primary/aft) -"cIH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"cJa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/aft) -"cJd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJe" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cJk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJl" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJq" = ( -/obj/machinery/space_heater, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJr" = ( -/obj/structure/cable, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJs" = ( -/obj/structure/closet/firecloset, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/structure/closet/secure_closet/personal, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"cJu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 10 - }, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cJv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/construction/plumbing, -/obj/item/construction/plumbing, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cJx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"cJy" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJz" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJA" = ( -/obj/effect/spawner/randomarcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJB" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJC" = ( -/obj/machinery/vending/coffee, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJD" = ( -/obj/effect/spawner/randomsnackvend, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/exit/departure_lounge) -"cJE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cJW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1; - external_pressure_bound = 120; - name = "server vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"cJX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/aft) -"cKa" = ( -/obj/structure/closet, -/obj/effect/turf_decal/stripes/line, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKc" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cKk" = ( -/obj/machinery/door/airlock/engineering{ - name = "Port Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cKn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKo" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/aft) -"cKp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKq" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKr" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 17 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKv" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKC" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cKJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"cKO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"cKP" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKQ" = ( -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cKR" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/aft) -"cKW" = ( -/obj/machinery/camera/autoname, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"cKX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cKY" = ( -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cLa" = ( -/turf/closed/wall, -/area/service/chapel/office) -"cLb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium Maintenance"; - req_one_access_txt = "27" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Office Maintenance"; - req_one_access_txt = "22" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLd" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLg" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"cLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLk" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;6" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cLl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLm" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLn" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=10-Aft-To-Central"; - location = "9.4-Escape-4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLr" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLs" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLx" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cLA" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"cLC" = ( -/obj/machinery/button/ignition/incinerator/atmos{ - pixel_x = 8; - pixel_y = -36 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching the turbine vent."; - dir = 8; - name = "turbine vent monitor"; - network = list("turbine"); - pixel_x = 29 - }, -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -8; - pixel_y = -36 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -8; - pixel_y = -24 - }, -/obj/machinery/computer/turbine_computer{ - dir = 1; - id = "incineratorturbine" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"cLE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cLF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"cLJ" = ( -/obj/structure/closet, -/obj/item/storage/box/lights/mixed, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cLL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cLN" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cLO" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cLP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cLQ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cLT" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cLV" = ( -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/structure/table/wood, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/obj/item/clothing/under/misc/burial, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cLW" = ( -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cLX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cLZ" = ( -/obj/machinery/door/morgue{ - name = "Relic Closet"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/office) -"cMa" = ( -/obj/structure/table/wood, -/obj/item/book/granter/spell/smoke/lesser{ - name = "mysterious old book of cloud-chasing" - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/nullrod{ - pixel_x = 4 - }, -/obj/item/organ/heart, -/obj/item/soulstone/anybody/chaplain, -/turf/open/floor/plasteel/cult, -/area/service/chapel/office) -"cMb" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Maintenance"; - req_one_access_txt = "12;22" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/aft) -"cMc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"cMd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMe" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.2-Escape-2"; - location = "9.1-Escape-1" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMj" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Starboard Fore"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMk" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"cMl" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = -4 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit/departure_lounge) -"cMm" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery A Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"cMo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/light_construct{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cMp" = ( -/obj/structure/chair, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cMr" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/solars/starboard/aft) -"cMy" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/power/solar_control{ - dir = 4; - id = "aftport"; - name = "Port Quarter Solar Control" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cMz" = ( -/obj/machinery/light/small, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"cMA" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/solars/port/aft) -"cMC" = ( -/obj/item/radio/intercom{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cMD" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cME" = ( -/obj/item/flashlight/lamp, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cMF" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cMG" = ( -/obj/structure/table/wood, -/obj/structure/cable, -/obj/item/storage/photo_album/chapel, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cMH" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cMI" = ( -/turf/closed/wall, -/area/service/chapel/main) -"cMJ" = ( -/obj/item/candle, -/obj/machinery/light_switch{ - pixel_x = -27 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMK" = ( -/obj/item/storage/book/bible, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Fore" - }, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cML" = ( -/obj/structure/table/wood, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMM" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMN" = ( -/obj/structure/table/wood, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMO" = ( -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/structure/noticeboard{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMP" = ( -/obj/item/candle, -/obj/machinery/light_switch{ - pixel_y = 25 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cMQ" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cMR" = ( -/obj/structure/table, -/obj/item/candle, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMS" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMT" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMU" = ( -/obj/machinery/status_display/evac{ - layer = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cMV" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMW" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cMZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Outer Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 4; - name = "Security Desk"; - req_access_txt = "1" - }, -/obj/item/folder/red, -/obj/item/pen, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNa" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching output from station security cameras."; - name = "Security Camera Monitor"; - network = list("ss13"); - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNb" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNc" = ( -/obj/structure/chair, -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNd" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security in red at the top, you see engineering in yellow, science in purple, escape in checkered red-and-white, medbay in green, arrivals in checkered red-and-blue, and then cargo in brown."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNe" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"cNf" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"cNg" = ( -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"cNh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cNm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cNt" = ( -/obj/machinery/button/crematorium{ - id = "crematoriumChapel"; - pixel_x = -26; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cNu" = ( -/obj/machinery/camera{ - c_tag = "Chapel Office - Backroom"; - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cNv" = ( -/obj/item/storage/crayons, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cNw" = ( -/obj/machinery/power/compressor{ - comp_id = "incineratorturbine"; - dir = 1; - luminosity = 2 - }, -/obj/structure/cable, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cNx" = ( -/obj/item/storage/fancy/candle_box{ - pixel_y = 5 - }, -/obj/structure/table/wood, -/obj/structure/cable, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cNy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cNz" = ( -/obj/structure/chair, -/obj/item/radio/intercom/chapel{ - pixel_x = -27 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cNA" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cNB" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cND" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cNE" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cNG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cNH" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cNI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNN" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cNP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cNQ" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNR" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNS" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 3 - }, -/obj/item/folder/white{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/restraints/handcuffs, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/off, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cNT" = ( -/turf/closed/wall, -/area/cargo/exploration_dock) -"cNY" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOa" = ( -/obj/structure/cable, -/obj/machinery/power/turbine{ - luminosity = 2 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cOb" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOc" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Crematorium"; - req_access_txt = "22;27" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOg" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOh" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOi" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cOj" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cOk" = ( -/obj/effect/spawner/xmastree, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cOl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cOm" = ( -/turf/open/floor/carpet, -/area/service/chapel/main) -"cOn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cOo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOs" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cOt" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Departure Lounge Security Post"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOw" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOy" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOz" = ( -/obj/structure/table, -/obj/machinery/newscaster/security_unit{ - pixel_x = 29; - pixel_y = 1 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Security Post"; - dir = 1 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/taperecorder{ - pixel_x = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOF" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOG" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOI" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cOK" = ( -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOL" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/item/radio/intercom/chapel{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cOM" = ( -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cON" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cOP" = ( -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cOR" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cOS" = ( -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cOT" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cOW" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/sunnybush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/hallway/secondary/exit/departure_lounge) -"cOY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPa" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPb" = ( -/turf/closed/wall, -/area/hallway/secondary/exit/departure_lounge) -"cPl" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cPm" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"cPn" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cPq" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"cPr" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cPs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit/departure_lounge) -"cPx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPz" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_parlour"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"cPB" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/service/chapel/main) -"cPC" = ( -/obj/structure/closet/crate/coffin, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"cPD" = ( -/obj/structure/noticeboard{ - desc = "A memorial wall for pinning up momentos"; - name = "memorial board"; - pixel_y = 32 - }, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cPE" = ( -/obj/structure/sign/plaques/kiddie/badger{ - pixel_y = 32 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/item/food/grown/poppy{ - pixel_y = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cPF" = ( -/obj/structure/noticeboard{ - desc = "A memorial wall for pinning up momentos"; - name = "memorial board"; - pixel_y = 32 - }, -/obj/item/storage/book/bible, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/service/chapel/main) -"cPI" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cPJ" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cPL" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cPN" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cPO" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Aft"; - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/item/kirbyplants{ - icon_state = "plant-04" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPS" = ( -/obj/item/beacon, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPT" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPV" = ( -/obj/machinery/camera{ - c_tag = "Departure Lounge - Starboard Aft"; - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"cPZ" = ( -/obj/structure/closet/crate/coffin, -/turf/open/floor/plating, -/area/service/chapel/main) -"cQa" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQc" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Funeral Parlour" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cQi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"cQj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cQk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cQl" = ( -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"cQm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQo" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.4-Escape-4"; - location = "9.3-Escape-3" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQp" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=9.3-Escape-3"; - location = "9.2-Escape-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQx" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQF" = ( -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQG" = ( -/obj/item/storage/book/bible, -/obj/structure/altar_of_gods, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cQI" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chapel- Starboard"; - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cQJ" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = -32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQK" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQM" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQO" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQP" = ( -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cQT" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/service/chapel/main) -"cQV" = ( -/obj/item/flashlight/lantern{ - pixel_y = 7 - }, -/obj/structure/table/wood, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQW" = ( -/obj/effect/landmark/start/chaplain, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cQX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cQY" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRa" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/science/xenobiology) -"cRb" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/xenobiology) -"cRe" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRi" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRk" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRl" = ( -/obj/machinery/door/window{ - dir = 4; - name = "Mass Driver"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRm" = ( -/obj/machinery/mass_driver/chapelgun, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/gps, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRn" = ( -/obj/machinery/camera{ - c_tag = "Chapel - Port"; - dir = 4 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 8 - }, -/area/service/chapel/main) -"cRo" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cRp" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRq" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRr" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "chapel_shutters_space"; - name = "chapel shutters control"; - pixel_x = -6; - pixel_y = -25 - }, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cRs" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"cRu" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRD" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRE" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/main) -"cRF" = ( -/obj/machinery/door/morgue{ - name = "Chapel Garden" - }, -/turf/open/floor/plasteel/cult, -/area/service/chapel/main) -"cRG" = ( -/obj/machinery/light/small, -/obj/machinery/button/door{ - id = "chapel_shutters_parlour"; - name = "chapel shutters control"; - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRH" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRI" = ( -/obj/structure/chair, -/obj/effect/landmark/start/chaplain, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/item/food/grown/harebell, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRK" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"cRL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chapel_shutters_space"; - name = "chapel shutters" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"cRM" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRP" = ( -/obj/machinery/door/poddoor/massdriver_chapel, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/service/chapel/main) -"cRR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRT" = ( -/obj/machinery/light_switch{ - pixel_x = 25 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cRU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cRV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cRX" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cRY" = ( -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cRZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSb" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSc" = ( -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cSd" = ( -/turf/closed/wall, -/area/science/xenobiology) -"cSe" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSj" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSl" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSm" = ( -/obj/machinery/door/airlock/research{ - glass = 1; - name = "Slime Euthanization Chamber"; - opacity = 0; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSn" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"cSp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #1"; - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSq" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "Xenobio Pen 1 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSs" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #1"; - req_access_txt = "55" - }, -/obj/structure/cable, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSt" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSv" = ( -/obj/machinery/atmospherics/components/unary/passive_vent{ - dir = 1 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cSw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/coldtemp, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Euthanasia Chamber"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"cSy" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/sign/warning/electricshock, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cSF" = ( -/obj/structure/closet/secure_closet/miner, -/obj/machinery/camera{ - c_tag = "Mining Dock" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"cSG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSI" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSJ" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSK" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Central"; - dir = 8; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSM" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSN" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSP" = ( -/obj/docking_port/stationary/random{ - id = "pod_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space/nearstation) -"cSQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSS" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cST" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cSW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cSX" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cSY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/folder{ - pixel_y = 2 - }, -/turf/open/floor/plasteel/grimy, -/area/service/chapel/office) -"cSZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTa" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"cTg" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTm" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/button/ignition{ - id = "Xenobio"; - pixel_x = -6; - pixel_y = -3 - }, -/obj/machinery/button/door{ - id = "Xenolab"; - name = "Test Chamber Blast Doors"; - pixel_x = 4; - pixel_y = -3; - req_access_txt = "55" - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTn" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/department/science/xenobiology) -"cTp" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTq" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cTr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTs" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "31; 48" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/cargo/warehouse) -"cTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTy" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/chapel{ - dir = 1 - }, -/area/service/chapel/main) -"cTz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cTA" = ( -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTB" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTC" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTD" = ( -/obj/item/crowbar/red, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cTT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small, -/obj/structure/table/greyscale, -/obj/item/toy/plush/slimeplushie{ - name = "Nanners" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cTY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/brig{ - id = "Cell 2"; - name = "Cell 2 Locker" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"cUM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cUR" = ( -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"cUT" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/service/library) -"cUU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/wood, -/area/service/library) -"cUZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Bay"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"cVa" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cVb" = ( -/obj/structure/table/wood, -/obj/item/camera_film{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/camera_film{ - pixel_y = 9 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 27 - }, -/turf/open/floor/wood, -/area/service/library) -"cVd" = ( -/obj/item/radio/intercom{ - pixel_x = -30 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cVe" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. Probably helpful for keeping track of requests."; - dir = 8; - name = "requests board"; - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"cVf" = ( -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/turf/open/floor/wood, -/area/service/library) -"cVh" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/central) -"cVi" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/wood, -/area/service/library) -"cVx" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"cVy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engineering/atmos) -"cVz" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1 - }, -/turf/open/space/basic, -/area/engineering/atmos) -"cVC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"cVD" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"cVG" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Test Subject Cell"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cVI" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Science Robotics Office" - }, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/item/storage/firstaid{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/storage/firstaid{ - pixel_x = -5; - pixel_y = -1 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/healthanalyzer{ - pixel_x = -3; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cVJ" = ( -/obj/structure/window/reinforced, -/obj/machinery/computer/atmos_control/tank/air_tank{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/engineering/atmos) -"cWA" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cWB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"cWK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cWM" = ( -/obj/machinery/door/airlock/external{ - name = "Construction Zone" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"cWN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cXc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/easel, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"cXe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"cXm" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"cXz" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Aft"; - dir = 1; - network = list("ss13","engine") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"cXA" = ( -/obj/machinery/rnd/production/protolathe/department/engineering, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"cXD" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"cXE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cXI" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cXR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cXT" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"cYj" = ( -/obj/structure/closet/firecloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"cYE" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYJ" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 9; - height = 25; - id = "emergency_home"; - name = "MetaStation emergency evac bay"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cYK" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for the Auxiliary Mining Base."; - dir = 1; - name = "Auxiliary Base Monitor"; - network = list("auxbase"); - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYL" = ( -/obj/machinery/door/poddoor/shutters{ - id = "aux_base_shutters"; - name = "Auxiliary Base Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Auxiliary Base Construction"; - req_one_access_txt = "72" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"cYT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cZc" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/turf/open/floor/plasteel/chapel, -/area/service/chapel/main) -"cZd" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"cZe" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"cZf" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZk" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Weapon Distribution"; - req_access_txt = "3" - }, -/obj/item/paper, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/window/southleft{ - name = "Requests Window" - }, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"cZq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cZv" = ( -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"cZG" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = -2; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"cZP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/science/research) -"cZQ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"cZS" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/library) -"cZZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/range) -"dah" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/item/toy/figure/geneticist, -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/item/storage/pill_bottle/mutadone{ - pixel_x = -9 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"dat" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip, -/obj/machinery/monkey_recycler, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daA" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"daC" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"daD" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"daF" = ( -/obj/machinery/sparker{ - id = "Xenobio"; - pixel_x = -25 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/aisat_interior) -"daH" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"daI" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 - }, -/obj/item/stack/cable_coil, -/obj/item/multitool, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daK" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #2"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daL" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"daM" = ( -/obj/structure/table, -/obj/item/assembly/igniter{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/assembly/igniter{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/assembly/igniter{ - pixel_x = 2; - pixel_y = -1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"daQ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"daS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"daW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"daX" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"daY" = ( -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dbb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dbd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/wood, -/area/service/bar) -"dbe" = ( -/obj/machinery/keycard_auth{ - pixel_x = 26 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"dbg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dbh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Cooling Loop Bypass" - }, -/turf/open/floor/engine, -/area/engineering/main) -"dbm" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"dbo" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbq" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, -/area/maintenance/port/aft) -"dbs" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbt" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dbv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbw" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dbx" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"dbF" = ( -/obj/structure/bookcase{ - name = "Holy Bookcase" - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) -"dbG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"dbN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"dbX" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dci" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcj" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_interior"; - name = "Xenobiology Lab Internal Airlock"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dck" = ( -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "xeno_airlock_exterior"; - idInterior = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Console"; - pixel_x = -25; - pixel_y = -25; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dco" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcq" = ( -/obj/structure/chair/office/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcs" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Airlock"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcx" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcy" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"dcA" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcB" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dcC" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcD" = ( -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcG" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet{ - anchored = 1; - can_be_unanchored = 1; - name = "Cold protection gear" - }, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/science, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcK" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcM" = ( -/obj/machinery/chem_master, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcN" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcO" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcP" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #2"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "Xenobio Pen 2 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dcQ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcR" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #3"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "Xenobio Pen 3 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dcS" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"dcT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dcU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "Xenobio Pen 4 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcV" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"dcW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/electricshock, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"dcX" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #6"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "Xenobio Pen 6 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ddb" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #7"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ddc" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddd" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dde" = ( -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #4"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddf" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddg" = ( -/obj/structure/cable, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Containment Pen #5"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "Xenobio Pen 5 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ddh" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #5"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ddj" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/department/science/xenobiology) -"ddk" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Aft-Port"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/bz, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddl" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddm" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"ddn" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/aisat) -"ddo" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Aft-Starboard"; - dir = 8; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddp" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddq" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddr" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dds" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddu" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ddw" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddx" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddy" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ddz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddA" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"ddB" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #6"; - dir = 4; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ddC" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"ddO" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ddP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ddQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/main) -"ddS" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Fore"; - dir = 4; - network = list("ss13","engine") - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ddU" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ddV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"ddW" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ddX" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ddY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ddZ" = ( -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dea" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste, -/turf/open/floor/plating/airless, -/area/engineering/main) -"deb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/main) -"ded" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dee" = ( -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"def" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/tcommsat/computer) -"deh" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"dei" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dej" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dek" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump{ - name = "Mix to Gas" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"del" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dem" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Gas to Mix" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"den" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dep" = ( -/obj/machinery/firealarm{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"deq" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"der" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"deu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dev" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dew" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Laser Room"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/plating, -/area/engineering/main) -"dex" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"deC" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"deD" = ( -/obj/machinery/status_display/evac, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"deI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"deJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"deK" = ( -/obj/machinery/power/emitter/welded, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"deL" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"deM" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engineering/main) -"deN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"deO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"deS" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/window/plasma/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/supermatter) -"deU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"deV" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"deW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 4; - network = list("ss13","engine") - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"deX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"deY" = ( -/obj/structure/reflector/single/anchored{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engineering/main) -"dfa" = ( -/obj/machinery/power/supermatter_crystal/engine, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dfb" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dfc" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dfd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dfe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, -/turf/open/floor/engine, -/area/engineering/main) -"dff" = ( -/obj/structure/reflector/double/anchored{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dfg" = ( -/obj/structure/reflector/single/anchored{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engineering/main) -"dfh" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engineering/main) -"dfi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dfj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dfm" = ( -/obj/machinery/power/rad_collector/anchored, -/obj/structure/window/plasma/reinforced{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dfp" = ( -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dfq" = ( -/obj/machinery/camera{ - c_tag = "Supermatter Chamber"; - dir = 4; - network = list("engine") - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"dft" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/tcommsat/server) -"dfu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ - filter_type = "n2" - }, -/turf/open/floor/engine, -/area/engineering/main) -"dfy" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/turf/open/floor/wood, -/area/service/bar) -"dfz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dfB" = ( -/obj/machinery/power/emitter/welded{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"dfC" = ( -/obj/machinery/power/emitter/welded{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/main) -"dfF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dfJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dfR" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Gas to Cold Loop" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dfU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Cold Loop to Gas" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dfV" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dfW" = ( -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dfX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = 24; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel{ - dir = 1 - }, -/area/engineering/main) -"dfZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dga" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/turf/open/floor/plating, -/area/engineering/main) -"dgb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dgd" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"dge" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"dgf" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgg" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgi" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dgj" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgk" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgm" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"dgo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dgt" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgu" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/space/basic, -/area/space/nearstation) -"dgv" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgw" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"dgx" = ( -/obj/machinery/camera{ - c_tag = "Security - Office - Port"; - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dgz" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/delivery, -/obj/item/clothing/glasses/meson/engine, -/turf/open/floor/plasteel, -/area/engineering/main) -"dgB" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgN" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dgO" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dgV" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"dgX" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"dha" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dhc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, -/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dhe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dhg" = ( -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dhh" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dhi" = ( -/obj/machinery/door/window/northleft{ - dir = 8; - name = "Inner Pipe Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dhj" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"dhk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"dhl" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"dhn" = ( -/obj/structure/table, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"dho" = ( -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/watertank, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance/four, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhp" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"dhq" = ( -/obj/structure/table/reinforced, -/obj/structure/light_construct/small{ - dir = 8 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/window/reinforced, -/obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dhs" = ( -/obj/structure/rack, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/neck/tie/blue, -/obj/item/clothing/head/soft/blue, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/commons/fitness/recreation) -"dhu" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/flasher{ - id = "Cell 3"; - pixel_x = -23; - pixel_y = -23 - }, -/obj/structure/bed, -/obj/item/bedsheet, -/turf/open/floor/plasteel, -/area/security/brig) -"dhw" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhy" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"dhz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dhA" = ( -/obj/machinery/washing_machine, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/commons/dorms) -"dhB" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhC" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/checkpoint/supply) -"dhD" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/freezer, -/area/commons/toilet/restrooms) -"dhE" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhF" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/commons/dorms) -"dhG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"dhH" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dhI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"dhJ" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, -/turf/open/floor/plasteel, -/area/commons/locker) -"dhK" = ( -/obj/structure/closet, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhM" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/entry) -"dhN" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dhO" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dhP" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dhQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"dhR" = ( -/obj/structure/closet, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"dhS" = ( -/obj/machinery/vending/cigarette, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"dhT" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"dhW" = ( -/turf/closed/wall/r_wall, -/area/commons/storage/tcom) -"dhZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dic" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"did" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch{ - pixel_x = -28 - }, -/obj/item/folder, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"dif" = ( -/obj/machinery/vending/autodrobe, -/obj/structure/sign/poster/contraband/clown{ - pixel_x = 32 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"dig" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"dih" = ( -/obj/machinery/light/small, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/commons/toilet/auxiliary) -"dij" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/mime, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/theater) -"din" = ( -/obj/structure/table/wood, -/obj/item/paper, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"dio" = ( -/obj/effect/loot_site_spawner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"dip" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "corporate_privacy"; - name = "corporate showroom shutters control"; - pixel_x = 28; - req_access_txt = "19" - }, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/item/poster/random_official, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/corporate_showroom) -"diq" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/mask/animal/horsehead, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/item/clothing/mask/cigarette/pipe, -/obj/item/clothing/mask/fakemoustache, -/turf/open/floor/wood, -/area/service/theater) -"dir" = ( -/obj/machinery/gibber, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"dis" = ( -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/obj/structure/kitchenspike, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"dit" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"div" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"diw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dix" = ( -/obj/structure/rack, -/obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/port) -"diy" = ( -/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"diA" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/secondary) -"diB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"diC" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"diF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"diI" = ( -/obj/item/kirbyplants/random, -/obj/structure/light_construct/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"diJ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/aft) -"diQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/aft) -"diR" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"diS" = ( -/obj/item/storage/box/lights/mixed, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/aft) -"diV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Departure Lounge - Port Fore"; - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-24" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"djg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"djj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel - Funeral Parlour"; - dir = 8 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/chapelgun{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"djl" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"djm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"djq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command) -"djr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"djt" = ( -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engineering/supermatter) -"dju" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"djx" = ( -/obj/item/crowbar, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engineering/supermatter) -"djz" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djB" = ( -/obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"djC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"djM" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 15; - id = "arrivals_stationary"; - name = "arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/box; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"djS" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/science/lab) -"djV" = ( -/obj/machinery/vending/wardrobe/bar_wardrobe, -/obj/item/radio/intercom{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"djW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"djX" = ( -/obj/structure/closet/crate/coffin, -/obj/machinery/door/window/eastleft{ - name = "Coffin Storage"; - req_access_txt = "22" - }, -/turf/open/floor/plating, -/area/service/chapel/main) -"dkR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dlI" = ( -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dlN" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/supermatter) -"dlP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"dlV" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/xenobiology) -"dmq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmr" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dmD" = ( -/obj/structure/displaycase/trophy, -/turf/open/floor/wood, -/area/service/library) -"dmH" = ( -/turf/closed/wall, -/area/cargo/qm) -"dmT" = ( -/obj/structure/chair/office, -/obj/effect/landmark/start/quartermaster, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/cargo/qm) -"dmU" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"dnd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dne" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"dnh" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"dni" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnk" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnr" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"dnu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnz" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnF" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dnM" = ( -/obj/structure/cable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"dnO" = ( -/obj/machinery/space_heater, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dnP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"dnR" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnS" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dnT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"dnZ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"dod" = ( -/obj/item/cigbutt, -/obj/item/vending_refill/cigarette, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doh" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/fore) -"don" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dou" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dow" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/service/kitchen/coldroom) -"doA" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"doJ" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpk" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dpo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"dps" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/fore) -"dpG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dpL" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"dpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/science/research) -"dqe" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dql" = ( -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/security/checkpoint/engineering) -"dqp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"dqu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dqT" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/fore) -"drQ" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port/fore) -"dsa" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/white, -/area/science/research) -"dss" = ( -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 8 - }, -/obj/machinery/button/door/incinerator_vent_toxmix{ - id = "toxinsaccess"; - name = "Toxins Access"; - pixel_x = -26; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"dst" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dsG" = ( -/obj/structure/table, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = -13; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner/skirt{ - pixel_x = 9; - pixel_y = 5 - }, -/obj/item/clothing/under/rank/prisoner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"dtl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"dtx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"dtE" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dtM" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"dtP" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"dtS" = ( -/obj/item/cigbutt, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dtX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"duo" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dux" = ( -/turf/closed/wall, -/area/maintenance/port/aft) -"duF" = ( -/obj/structure/cable, -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"duH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvq" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/warning/chemdiamond{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"dvt" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"dvw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dvC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dvE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"dvM" = ( -/obj/item/target/alien/anchored, -/obj/machinery/camera/preset/toxins{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless{ - luminosity = 2 - }, -/area/science/test_area) -"dvY" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"dwb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwf" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dwj" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dwr" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/maintenance/port/aft) -"dwv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dww" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dwy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dwL" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/secondary) -"dwQ" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dwX" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard/secondary) -"dwY" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dxh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dxP" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/belt/utility, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 20; - pixel_y = 22 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"dxQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyc" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dyg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/structure/table_frame, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dyj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery B Maintenance"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyw" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"dyH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/bookcase/random/reference, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"dyI" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Science Hallway - Research" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"dyL" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dzc" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dzh" = ( -/obj/structure/table/wood/poker, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"dzK" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/vehicle/ridden/wheelchair, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/medical/abandoned) -"dAd" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAn" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAw" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dAx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dBu" = ( -/turf/closed/wall, -/area/engineering/gravity_generator) -"dBw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dBx" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"dBy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/closed/wall/r_wall, -/area/engineering/supermatter) -"dBz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dBA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"dBB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engineering/main) -"dBC" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"dBN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"dBO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"dBX" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/ore_silo, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/command/nuke_storage) -"dBY" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"dBZ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"dCc" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"dCe" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"dCf" = ( -/obj/structure/table, -/obj/item/folder/red, -/obj/item/restraints/handcuffs, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/clothing/head/cone{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dCg" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"dCh" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper_bin{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -11; - pixel_y = 7 - }, -/obj/item/hand_labeler{ - pixel_x = -10; - pixel_y = -6 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"dCi" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engineering/main) -"dCp" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/fore) -"dCq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/courtroom) -"dCr" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"dCs" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/vending/coffee{ - custom_premium_price = 0; - custom_price = 0; - default_price = 0; - extra_price = 0; - fair_market_price = 0; - name = "\improper Jim Norton's Quebecois Coffee" - }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = 27 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"dCv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/locker) -"dCx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/warehouse) -"dCz" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"dCA" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/commons/locker) -"dCB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/bot_white, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dCC" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dCE" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"dCI" = ( -/obj/structure/table, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -7; - pixel_y = 5 - }, -/obj/item/paper_bin/bundlenatural{ - pixel_x = -19; - pixel_y = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/paperplane{ - pixel_x = 9 - }, -/obj/item/paperplane{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"dCJ" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dCK" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/command) -"dCM" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"dCN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"dCO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/heads_quarters/hop) -"dCP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain/private) -"dCW" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"dCX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/library) -"dCY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dCZ" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"dDa" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/command) -"dDb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/navbeacon/wayfinding/bar, -/obj/item/reagent_containers/glass/rag, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"dDf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"dDg" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/corporate_showroom) -"dDi" = ( -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/structure/easel, -/obj/item/canvas/nineteen_nineteen, -/obj/item/canvas/twentythree_nineteen, -/obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood, -/area/service/library) -"dDl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"dDm" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"dDo" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dDq" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dDr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dDs" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"dDt" = ( -/obj/structure/chair/office/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"dDv" = ( -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"dDw" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dDC" = ( -/obj/structure/cable, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dDG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"dDH" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"dDI" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"dDJ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"dDK" = ( -/obj/structure/rack, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/assault_pod/mining, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/mining/aux_base) -"dDL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"dFg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dFB" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"dFC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "47" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"dFK" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/paper/guides/jobs/hydroponics, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/potato, -/obj/item/seeds/tomato, -/obj/item/seeds/carrot, -/obj/item/seeds/grass, -/obj/item/seeds/ambrosia, -/obj/item/seeds/wheat, -/obj/item/seeds/pumpkin, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"dGP" = ( -/obj/structure/training_machine, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"dHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = 22; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"dHo" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"dHN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"dIs" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Dock Airlock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/storage) -"dIz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"dID" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"dJb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"dJh" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/science/genetics) -"dJr" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"dKy" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/multiver, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"dKN" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/pen, -/obj/item/storage/box/prisoner, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Prison Hallway Port"; - dir = 1; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"dKO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dLn" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/grass, -/area/medical/virology) -"dLp" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"dLM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"dLU" = ( -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"dMl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"dME" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/item/kirbyplants/random, -/obj/machinery/camera{ - c_tag = "Science - Server Room"; - dir = 8; - name = "science camera"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark, -/area/science/server) -"dMN" = ( -/obj/machinery/food_cart, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"dMW" = ( -/obj/effect/turf_decal/loading_area, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"dNG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"dNL" = ( -/obj/machinery/door/airlock/research{ - name = "Cytology Access"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"dOR" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageSort2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Crate Security Door"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/cargo/sorting) -"dPu" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/pillbottles, -/obj/item/storage/box/syringes, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"dQd" = ( -/turf/closed/wall, -/area/security/checkpoint/science) -"dQe" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"dQs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/sign/warning/coldtemp{ - pixel_y = 32 - }, -/obj/vehicle/ridden/wheelchair, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"dRv" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/mecha_part_fabricator{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"dRL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"dSh" = ( -/obj/item/paper_bin/carbon, -/obj/item/pen/fountain, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dSN" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"dTc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"dUu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"dUX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"dWv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"dWz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"dXp" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"dXK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/space/basic, -/area/space) -"dXV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/engineering/atmos) -"dYm" = ( -/obj/machinery/door/airlock{ - name = "Maintenance Bathroom"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"dYu" = ( -/obj/machinery/door/airlock/external{ - name = "Auxiliary Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"dYF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"dZd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"dZe" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/maintenance/aft/secondary) -"dZw" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"dZy" = ( -/obj/item/radio/intercom{ - pixel_x = -29; - pixel_y = 4 - }, -/obj/item/storage/box/deputy, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/main) -"eaA" = ( -/obj/structure/table/wood, -/obj/item/stamp/hos, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"ece" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ecs" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ecJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"edl" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"eds" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"edS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"eee" = ( -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eeh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"eeq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Firing Range"; - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = -13 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -24; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"ees" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "pile" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eew" = ( -/obj/structure/rack, -/obj/item/reagent_containers/food/drinks/bottle/vodka{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vermouth{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"eeL" = ( -/obj/machinery/photocopier, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"efa" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"efd" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/toy/figure/scientist, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"efN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"efV" = ( -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/bar) -"ege" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"egR" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/window/northleft{ - name = "MuleBot Access"; - req_access_txt = "50" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ehi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Secure Gear Storage"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/main) -"eiA" = ( -/obj/structure/cable, -/obj/machinery/power/solar_control{ - dir = 1; - id = "starboardsolar"; - name = "Starboard Quarter Solar Control" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"ejE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ejL" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/range) -"ekr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/science/research) -"ekW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"elm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"elp" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/camera{ - c_tag = "Virology Airlock"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"emb" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"emz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"emW" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/mob/living/carbon/human/species/monkey/punpun, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"enV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"eoc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"eoF" = ( -/obj/effect/turf_decal/siding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"eoI" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"eoT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"epD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"epU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"eqf" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"eqC" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Space Bridge"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "xeno_blastdoor"; - name = "biohazard containment door" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eqD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"eqF" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/kitchen/knife, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"eqH" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall/r_wall, -/area/maintenance/department/science/central) -"eqN" = ( -/obj/effect/turf_decal/siding, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"erc" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"esU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"etr" = ( -/obj/structure/table, -/obj/item/storage/box/gloves{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/storage/box/masks{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"eud" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/science/research) -"euC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"evc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"evO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/range) -"evW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"ewb" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/item/chair, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ewt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"ewR" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"exA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"eyo" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eyv" = ( -/obj/structure/grille/broken, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"eyG" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"eyR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/obj/machinery/door/window/southleft{ - dir = 4; - name = "Research Lab Desk"; - req_one_access_txt = "7" - }, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ezA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"ezE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"eAh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"eAs" = ( -/obj/machinery/camera{ - c_tag = "Science Toxins Lab"; - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/effect/turf_decal/siding{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"eAP" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/lab) -"eBl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/chair/stool/bar, -/obj/item/storage/crayons, -/turf/open/space/basic, -/area/space/nearstation) -"eBK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eBX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"eCd" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"eCs" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Monitoring"; - req_access_txt = "24" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/atmos) -"eCw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/abandoned) -"eCF" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"eCQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"eCT" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"eDt" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"eDK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/northright{ - dir = 4; - name = "Research Delivery"; - req_access_txt = "7" - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"eDU" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"eEe" = ( -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"eEi" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eEu" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eEI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"eEU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port) -"eFN" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 1; - id = "crematoriumChapel" - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/office) -"eGU" = ( -/obj/structure/table, -/obj/item/poster/random_official{ - pixel_y = 13 - }, -/obj/item/poster/random_official{ - pixel_y = 5 - }, -/obj/item/poster/random_official, -/turf/open/floor/plasteel/dark, -/area/security/main) -"eHe" = ( -/turf/closed/wall, -/area/service/cafeteria) -"eHl" = ( -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"eIk" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eIt" = ( -/obj/machinery/holopad, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"eIG" = ( -/obj/structure/cable, -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/machinery/power/apc/auto_name/north, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"eII" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"eIP" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"eLn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eLP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"eLS" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/science/mixing) -"eLW" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"eMK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eMU" = ( -/obj/item/food/snowcones/clown, -/turf/open/floor/grass/snow/safe, -/area/maintenance/port/aft) -"eNy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"eNA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eOd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"eOp" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"eOy" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"eOz" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"ePo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"ePA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) -"eQp" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"eQF" = ( -/obj/machinery/door/airlock/external{ - name = "Space Shack"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"eRH" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/trimline/purple/warning, -/obj/effect/turf_decal/trimline/purple/warning, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"eRV" = ( -/obj/effect/turf_decal/trimline/purple/corner, -/obj/structure/cable, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"eSm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"eSY" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"eTm" = ( -/obj/structure/table, -/obj/item/circuitboard/machine/HFR_corner, -/obj/item/circuitboard/machine/HFR_corner, -/obj/item/circuitboard/machine/HFR_corner, -/obj/item/circuitboard/machine/HFR_corner, -/obj/item/stack/cable_coil{ - pixel_x = 3; - pixel_y = -7 - }, -/obj/effect/turf_decal/bot, -/obj/item/stack/sheet/plasteel/fifty, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"eTx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/warning/gasmask{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"eUK" = ( -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"eUQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"eUX" = ( -/obj/item/instrument/violin, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/item/clothing/glasses/regular/hipster{ - name = "Hipster Glasses" - }, -/obj/machinery/light/small, -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/theater) -"eUZ" = ( -/obj/structure/cable, -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"eVe" = ( -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Test Chamber"; - dir = 1; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"eVn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"eVT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eWd" = ( -/turf/closed/wall, -/area/science/lab) -"eWs" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eWu" = ( -/obj/structure/toilet/greyscale{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"eXh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/science/server) -"eXn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"eXx" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"eXS" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"eYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"eYE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"eYL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 29 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"eYX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"eZe" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"eZG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"eZU" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom) -"faT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fbZ" = ( -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"fcn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/horizontal, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"fcw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/range) -"fcW" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fdr" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/engineering/main) -"fdM" = ( -/obj/item/cigbutt, -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/fire{ - pixel_y = -4 - }, -/obj/item/paper{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"fdP" = ( -/obj/item/storage/box/lights/mixed, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/starboard) -"fdX" = ( -/obj/structure/table/glass, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/machinery/camera{ - c_tag = "Virology Isolation A"; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fee" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"fej" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"ffu" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "surgeryc"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/medical/surgery/room_c) -"fgU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fhk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/cargo/miningoffice) -"fht" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 4; - name = "old sink"; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -27 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"fhT" = ( -/obj/machinery/computer/atmos_control/toxinsmix, -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"fiq" = ( -/obj/machinery/mass_driver/shack{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/maintenance/space_hut) -"fis" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_y = 4 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 5; - pixel_y = 2 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Security - Office - Starboard" - }, -/turf/open/floor/wood, -/area/security/main) -"fit" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"fiI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"fiM" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/science/research) -"fjo" = ( -/obj/machinery/holopad/secure, -/obj/structure/chair/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"fjy" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fjF" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/electrical, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"fjG" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cardboard, -/obj/item/stack/sheet/cardboard, -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fkb" = ( -/obj/effect/landmark/start/assistant, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/service/cafeteria) -"fkc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"fkK" = ( -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"fkP" = ( -/obj/machinery/door/window/northright{ - name = "Nanite Lab" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/research) -"fkQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"flh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"flL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Surgery C Maintenance"; - req_access_txt = "45" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/aft) -"flZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"fme" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fmr" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/bowl, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/reagent_containers/glass/bowl, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/kitchen/fork/plastic, -/obj/item/storage/box/drinkingglasses, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/spoon/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/kitchen/knife/plastic, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/bag/tray/cafeteria, -/obj/item/storage/box/drinkingglasses, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fmA" = ( -/turf/open/floor/engine, -/area/science/mixing/chamber) -"fmC" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fmX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fnI" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"fok" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "QM #2" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"fos" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/security/prison) -"foV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fpM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"fqx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"fqC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"frq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"frX" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -30 - }, -/obj/item/storage/box/beakers{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"fse" = ( -/obj/machinery/newscaster/security_unit, -/turf/closed/wall/r_wall, -/area/security/main) -"ftK" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ftV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Prison Isolation Cell"; - dir = 8; - network = list("ss13","prison","isolation") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fui" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"fuw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"fuY" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"fvc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/range) -"fvw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fwb" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"fxj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/door{ - id = "cytologysecure"; - name = "Secure Pen Lockdown"; - pixel_x = 24; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"fxT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"fyu" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"fzQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/security/telescreen/toxins{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"fAn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/science/server) -"fBB" = ( -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"fBG" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/item/surgical_drapes, -/obj/item/cautery, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"fBP" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"fCe" = ( -/obj/machinery/door/airlock/security{ - name = "Court Cell"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/security/brig) -"fCG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"fCV" = ( -/obj/machinery/button/flasher{ - id = "visitorflash"; - pixel_x = -6; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "visitation"; - name = "Visitation Shutters"; - pixel_x = 6; - pixel_y = 25; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"fCX" = ( -/obj/item/radio/intercom{ - pixel_y = -25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"fDB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"fED" = ( -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Abandoned Warehouse"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fEU" = ( -/obj/structure/table/glass, -/obj/item/wrench, -/obj/item/crowbar, -/obj/item/flashlight{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fFb" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Science Mechbay" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"fFB" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"fFJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fGa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/service/bar) -"fGz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"fGM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"fHe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"fHp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"fId" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"fIF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/sleeper) -"fJe" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"fJl" = ( -/obj/structure/rack, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/sheet/iron/twenty, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"fJp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Entrance"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"fJA" = ( -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"fJL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fJR" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"fJX" = ( -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"fLC" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/trimline/purple/corner, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/camera{ - c_tag = "Science Hallway - Security"; - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fLU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"fMw" = ( -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/structure/cable, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"fMy" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fMA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "Engineering"; - name = "Engineering Security Doors" - }, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"fML" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fMS" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"fNg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/science/research) -"fNk" = ( -/obj/structure/sign/departments/cargo, -/turf/closed/wall, -/area/cargo/warehouse) -"fNo" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_interior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_x = 29; - pixel_y = -8; - req_access_txt = "55" - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"fNO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"fNP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Exploration Dock"; - req_access_txt = "49" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/exploration_dock) -"fOY" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"fPh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"fPj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/range) -"fPR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"fRv" = ( -/obj/machinery/mineral/ore_redemption{ - dir = 4; - input_dir = 8; - output_dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"fRx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"fRM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"fSg" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"fSN" = ( -/obj/item/storage/bag/plants/portaseeder, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/bucket, -/obj/structure/rack, -/obj/item/seeds/corn, -/obj/item/seeds/cabbage, -/obj/item/seeds/ambrosia, -/obj/item/seeds/grass, -/obj/item/food/grown/mushroom/glowshroom, -/obj/item/vending_refill/hydroseeds, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fTQ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"fUj" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/maintenance/aft) -"fUt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"fUL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"fVm" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"fVx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/stack/ducts/fifty, -/obj/item/plunger, -/obj/item/plunger, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"fWc" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"fWp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hosprivacy"; - name = "privacy shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"fWQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"fWV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"fYd" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"fYr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"fYG" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"fYP" = ( -/obj/structure/window/reinforced, -/obj/machinery/camera{ - c_tag = "Cytology Lab - Worklab"; - dir = 4; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"fZx" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/item/stack/sheet/glass, -/obj/item/assembly/signaler, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"fZE" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater) -"gad" = ( -/obj/machinery/camera{ - c_tag = "Science Hallway - Security"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"gaD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"gaS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gaZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/lab) -"gbb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gbq" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"gbr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"gbw" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cytologylockdown"; - name = "Cytology Lockdown" - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"gbx" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"gcj" = ( -/obj/structure/table/wood/fancy/orange, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = -1; - pixel_y = -2 - }, -/obj/item/lighter{ - pixel_x = 11; - pixel_y = -7 - }, -/obj/item/coin/gold{ - pixel_x = 9; - pixel_y = 9 - }, -/turf/open/floor/carpet/red, -/area/cargo/qm) -"gdG" = ( -/obj/machinery/computer/nanite_cloud_controller, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/circuit/green, -/area/science/nanite) -"gdH" = ( -/obj/structure/table/wood/fancy/orange, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - pixel_x = 32 - }, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ - pixel_x = -9; - pixel_y = -4 - }, -/turf/open/floor/carpet/red, -/area/cargo/qm) -"gdK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/theater) -"gdQ" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Testing Room"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ged" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"geL" = ( -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"geT" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"gfK" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"gfP" = ( -/obj/structure/table, -/obj/item/storage/fancy/egg_box, -/obj/item/reagent_containers/food/condiment/flour, -/obj/item/reagent_containers/food/condiment/rice, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ghw" = ( -/obj/machinery/light_switch{ - pixel_x = -10; - pixel_y = -22 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"ghJ" = ( -/obj/effect/turf_decal/siding/wood/corner{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"ghZ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Testing Labs"; - req_one_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"gie" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Science Toxins Launch"; - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Toxins Test Range"; - departmentType = 5; - name = "Toxins Test RC"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"gjo" = ( -/obj/structure/table/wood, -/obj/item/toy/prize/honk{ - pixel_y = 12 - }, -/obj/item/toy/dummy, -/obj/item/lipstick/purple{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/lipstick/jade{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lipstick/black, -/obj/structure/mirror{ - pixel_x = -27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/theater) -"gjw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"gjB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) -"gjD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gjM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"gka" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/aft) -"gkA" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/paper, -/obj/machinery/door/window/eastleft{ - dir = 2; - name = "Hydroponics Window"; - req_one_access_txt = "30;35" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "hydro_service"; - name = "Service Shutter" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"gkU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"gkW" = ( -/obj/structure/rack, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/maintenance/aft/secondary) -"glk" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"glT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/eyepatch, -/obj/item/clothing/suit/straight_jacket, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"gmk" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"gmp" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gna" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gnu" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"gnA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/easel, -/obj/item/canvas/twentythree_twentythree, -/turf/open/space/basic, -/area/space/nearstation) -"gnB" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"gnT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gnW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gol" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gox" = ( -/turf/closed/wall, -/area/medical/coldroom) -"goM" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"gpk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"gqA" = ( -/obj/machinery/button/door{ - id = "abandoned_kitchen"; - name = "Shutters Control"; - pixel_x = 26; - pixel_y = 6; - req_one_access_txt = null - }, -/obj/effect/decal/cleanable/blood/old, -/obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"gqE" = ( -/obj/structure/cable, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"grc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"grU" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"gsj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/lab) -"gsF" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gtm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"gtO" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"guo" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"guu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gvn" = ( -/obj/structure/chair/sofa/corp/left{ - desc = "Looks like someone threw it out. Covered in donut crumbs."; - name = "couch" - }, -/turf/open/space/basic, -/area/space) -"gwb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"gwH" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gxB" = ( -/obj/structure/bodycontainer/morgue{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"gxF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gxH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_interior"; - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/door_buttons/access_button{ - idDoor = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = 8; - pixel_y = -24; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"gyl" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/space/basic, -/area/space/nearstation) -"gyx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"gyL" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"gzq" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gzx" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"gzA" = ( -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = -8; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gAf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/sparker{ - id = "executionburn"; - pixel_x = -25 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"gAo" = ( -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel, -/area/science/mixing) -"gBC" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"gCa" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"gCo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"gCF" = ( -/obj/item/wrench, -/obj/item/stack/sheet/glass{ - amount = 30 - }, -/obj/item/stack/sheet/iron{ - amount = 30 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/structure/closet, -/obj/item/vending_refill/cigarette, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"gCM" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/library) -"gCP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"gDK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"gEz" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/firealarm{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"gEY" = ( -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Infirmary" - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"gFy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"gGb" = ( -/obj/structure/table/reinforced, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/stock_parts/cell/high/plus{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/cell_charger, -/obj/item/borg/upgrade/rename{ - pixel_x = 3; - pixel_y = 18 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"gGe" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 25 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"gGf" = ( -/obj/machinery/camera{ - c_tag = "Atmospherics - Entrance" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/atmospherics, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/storage/belt/utility, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"gGI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"gGL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"gHf" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"gHh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"gHk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"gHK" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/service) -"gHT" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"gIg" = ( -/obj/effect/turf_decal/siding/wood, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/cafeteria) -"gIt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"gIx" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"gIF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gJs" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engineering/atmos) -"gJK" = ( -/obj/structure/grille, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"gMG" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/lab) -"gMV" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"gMW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gNS" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gOu" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "surgeryb"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/medical/surgery/room_b) -"gON" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"gPf" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/storage/pod{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"gPA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gPF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"gPT" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"gPV" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"gQo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"gQV" = ( -/turf/open/floor/plasteel/white, -/area/medical/storage) -"gSV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"gTV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clipboard, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"gUR" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Hydroponics"; - req_one_access_txt = "35;28" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"gVv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"gXi" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/sink{ - pixel_y = 15 - }, -/obj/item/radio/intercom{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"gXq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"gXY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"gYy" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/showcase/machinery/oldpod{ - desc = "An old NT branded sleeper, decommissioned after the lead acetate incident. None of the functional machinery remains inside."; - name = "decommissioned sleeper" - }, -/obj/effect/decal/cleanable/greenglow, -/obj/effect/spawner/lootdrop/glowstick, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"gYD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"gYQ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"gZM" = ( -/obj/structure/sign/warning/pods, -/turf/closed/wall/r_wall, -/area/maintenance/starboard) -"gZR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/port/aft) -"hae" = ( -/obj/effect/turf_decal/loading_area/white, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"hav" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"haG" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/science/research) -"hbc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hbk" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"hbs" = ( -/obj/structure/table, -/obj/item/flashlight, -/obj/item/storage/secure/briefcase{ - pixel_x = -7; - pixel_y = 12 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"hbK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"hbT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Virology Central Hallway"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"hcT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/bar) -"hcY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"hdb" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"hdd" = ( -/obj/machinery/button/door{ - id = "xenobio3"; - layer = 3.3; - name = "Xenobio Pen 3 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"hdh" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port) -"hdA" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"hdT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hdX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hev" = ( -/obj/effect/turf_decal/bot, -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"heF" = ( -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"hfn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hfz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hfE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/aisat) -"hfJ" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hgv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/chair/stool, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hhf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hic" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/main) -"hio" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/storage) -"hiA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"hiT" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/security/main) -"hja" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hjl" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hjF" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 20 - }, -/turf/open/floor/plasteel, -/area/security/main) -"hkv" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"hkA" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#9FED58" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"hkC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"hkT" = ( -/obj/structure/light_construct{ - dir = 1 - }, -/obj/effect/decal/cleanable/greenglow, -/obj/structure/showcase/machinery/cloning_pod{ - desc = "An old prototype cloning pod, permanently decommissioned following the incident."; - name = "decommissioned cloner" - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"hlo" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - name = "MuleBot Access"; - req_access_txt = "50" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Research" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/science/lab) -"hlB" = ( -/obj/machinery/light, -/obj/item/stack/sheet/cardboard{ - amount = 14 - }, -/obj/item/stack/package_wrap, -/turf/open/floor/plasteel, -/area/security/prison) -"hlN" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = -1; - pixel_y = -1 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/assembly/flash/handheld, -/obj/item/bodypart/r_arm/robot{ - pixel_x = 3 - }, -/obj/item/bodypart/l_arm/robot{ - pixel_x = -3 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"hnc" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"hnw" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"hop" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/button/door{ - id = "kitchen_service"; - name = "Service Shutter Control"; - pixel_x = -24; - pixel_y = -24; - req_access_txt = "28" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -34; - pixel_y = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"hox" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hpi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hpn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/cargo/qm) -"hps" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Cleaning Closet"; - req_one_access_txt = "12;35" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"hpQ" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/camera{ - c_tag = "Medbay Surgical Wing"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/bed/roller, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hql" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - base_state = "right"; - dir = 2; - icon_state = "right"; - name = "Reception Window" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - name = "Brig Control Desk"; - req_access_txt = "3" - }, -/obj/item/paper, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/item/storage/fancy/donut_box, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "briglockdown"; - name = "Warden Desk Shutters" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/security/warden) -"hqn" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/science/research) -"hqF" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"hsD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"htu" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper{ - pixel_y = -5 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"htR" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 4 - }, -/area/security/prison) -"huc" = ( -/obj/machinery/power/shieldwallgen/xenobiologyaccess, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"huV" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/obj/machinery/disposal/bin{ - name = "Jim Norton's Quebecois Coffee disposal unit" - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/bot, -/turf/open/floor/wood, -/area/service/cafeteria) -"hvt" = ( -/obj/structure/kitchenspike_frame, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hvF" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"hwj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/service/janitor) -"hxH" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 3 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"hxP" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hxX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hyi" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery B"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"hyP" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"hyU" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"hzY" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"hAu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"hAY" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hBB" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"hDr" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"hEd" = ( -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"hEi" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hEp" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"hEP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"hEU" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"hFP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"hFW" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/blue{ - desc = "An old pair of nitrile gloves, with no sterile properties."; - name = "old nitrile gloves" - }, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/item/reagent_containers/glass/rag, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"hGd" = ( -/obj/structure/chair{ - pixel_y = -2 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"hGB" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/structure/closet/crate/medical, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"hGR" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"hHJ" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=1.5-Fore-Central"; - location = "1-BrigCells" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"hIt" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters{ - id = "abandoned_kitchen" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"hJS" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"hKT" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"hKX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Service Maintinance" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"hLm" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"hLF" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"hMa" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"hMM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"hMO" = ( -/obj/item/target/syndicate, -/obj/structure/training_machine, -/turf/open/floor/plasteel, -/area/security/range) -"hMT" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"hMV" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/bar) -"hNa" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hNd" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"hNJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"hOP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/grenades, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/book/manual/wiki/plumbing{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"hQQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hRs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"hRK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/medical/virology) -"hSb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"hSZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hTh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"hTk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"hTM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"hTO" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"hTU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"hUA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -20; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"hVf" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box/corners{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8; - pixel_x = 25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"hVF" = ( -/obj/effect/turf_decal/siding{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"hWk" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"hWp" = ( -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/radiation/preopen{ - id = "engsm"; - name = "Radiation Chamber Shutters" - }, -/turf/open/floor/plating, -/area/engineering/supermatter) -"hWH" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"hYz" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"hYF" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"hZj" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"hZz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"hZB" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"iaR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ibu" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"ibL" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/sink{ - pixel_y = 29 - }, -/mob/living/simple_animal/mouse/brown/tom, -/turf/open/floor/plating, -/area/security/prison/safe) -"ibS" = ( -/obj/item/poster/wanted/missing, -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ibT" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"icw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/doppler_array/research/science{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/item/radio/intercom{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"icO" = ( -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "6" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"idk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"iej" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/turf/open/floor/plating, -/area/science/server) -"ifi" = ( -/obj/effect/loot_site_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"ifK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/cryo) -"ifN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"ifR" = ( -/obj/effect/decal/cleanable/garbage, -/turf/open/floor/plasteel/white, -/area/science/research) -"igV" = ( -/obj/machinery/power/tracker, -/turf/open/floor/plating/airless, -/area/solars/starboard/aft) -"ihP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"iiB" = ( -/obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"iiU" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ijv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ijD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engineering/atmos) -"ijR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"ikD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"ikF" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/purple/warning{ - dir = 6 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"ili" = ( -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"ilm" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ilo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"imI" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"imV" = ( -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/command) -"inw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/aft) -"inF" = ( -/obj/structure/sign/map/left{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-left-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"inS" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ios" = ( -/obj/structure/rack, -/obj/item/crowbar/red, -/obj/item/restraints/handcuffs, -/obj/item/wrench, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"iou" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ipr" = ( -/turf/open/floor/glass/reinforced, -/area/science/research) -"iqM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall, -/area/maintenance/starboard) -"irg" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"irI" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"isH" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel/white, -/area/science/research) -"isV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"itG" = ( -/obj/machinery/newscaster{ - pixel_x = 1; - pixel_y = 34 - }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/cargo/sorting) -"itJ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iuk" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"iuX" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iva" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 29 - }, -/obj/machinery/shower{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ivv" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Kitchen Cold Room"; - req_access_txt = "28" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen/coldroom) -"ivz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"ivA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/service/theater) -"ixc" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ixd" = ( -/obj/machinery/door/airlock/external{ - req_one_access_txt = "13,8" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ixg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ixj" = ( -/obj/machinery/flasher/portable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"ixE" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"iyN" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/item/radio/intercom{ - desc = "A station intercom. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iyV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"izI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/glass, -/obj/structure/microscope, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"izO" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"iAj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel, -/area/service/janitor) -"iAs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"iAy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/medical/abandoned) -"iBL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"iCD" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iCI" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"iDJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/scanning_module{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plasteel, -/area/science/lab) -"iEs" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/science/mixing) -"iEW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"iFr" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Science Lobby" - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"iFy" = ( -/obj/machinery/door/window/northleft{ - base_state = "right"; - dir = 8; - icon_state = "right"; - name = "Containment Pen #7"; - req_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"iFV" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"iGj" = ( -/obj/structure/table, -/obj/item/implanter{ - pixel_x = 5; - pixel_y = 12 - }, -/obj/item/storage/box/evidence{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/toy/crayon/white{ - pixel_y = -4 - }, -/obj/item/toy/crayon/white{ - pixel_x = -5; - pixel_y = -4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iGI" = ( -/obj/structure/bed, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/glasses/blindfold, -/obj/item/clothing/mask/muzzle, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"iGJ" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison/safe) -"iGT" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"iHk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/medical/abandoned) -"iHl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rndlab2"; - name = "Secondary Research and Development Shutter" - }, -/turf/open/floor/plating, -/area/science/lab) -"iHt" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"iHH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"iIM" = ( -/obj/item/nanite_scanner{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/nanite_scanner{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/nanite_remote{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/nanite_remote{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/table/glass, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"iJw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/filingcabinet, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"iJH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/clothing/head/that, -/obj/structure/table, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"iJI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/exploration_dock) -"iKe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"iLb" = ( -/obj/effect/turf_decal/bot, -/obj/item/robot_suit, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"iLf" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/science/research) -"iLj" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"iLR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"iLU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/main) -"iMc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"iMF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"iMM" = ( -/obj/structure/table/glass, -/obj/item/book/manual/wiki/cytology{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/biopsy_tool{ - pixel_x = 8; - pixel_y = 2 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"iMY" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/vending/drugs, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"iNp" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 12 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"iND" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod Two" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"iOi" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"iOF" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"iPj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"iPP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"iQb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"iQy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"iQD" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"iQR" = ( -/obj/structure/table, -/obj/item/folder/red{ - pixel_x = 14 - }, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = -3; - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"iSy" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"iSQ" = ( -/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"iTQ" = ( -/obj/item/caution, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"iTU" = ( -/obj/structure/sign/poster/contraband/missing_gloves, -/turf/closed/wall, -/area/commons/storage/primary) -"iUc" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"iUe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"iUh" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Visitation" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"iUy" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"iUN" = ( -/turf/open/floor/plasteel/dark, -/area/science/lab) -"iVt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"iVH" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/starboard/aft) -"iVV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"iVX" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"iWd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/button/door{ - id = "gateshutter"; - name = "Gateway Shutter Control"; - pixel_y = 26; - req_access_txt = "19" - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"iWG" = ( -/obj/machinery/door/airlock/command{ - name = "Chief Medical Officer's Office"; - req_access_txt = "40" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"iWQ" = ( -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/wood, -/area/service/theater) -"iWT" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/cytology) -"iXv" = ( -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/science/mixing) -"iYp" = ( -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plating/airless, -/area/science/test_area) -"iYR" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"iZq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"jah" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"jaZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/requests_console{ - department = "Xenobiology"; - departmentType = 5; - name = "Xenobiology RC"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"jbB" = ( -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/security/prison) -"jcu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/service/theater) -"jcz" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"jdv" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jev" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jeM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/research) -"jfq" = ( -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jgz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"jgM" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jhK" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"jib" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/prison_contraband, -/obj/item/trash/chips, -/obj/item/trash/candy, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/security/prison/safe) -"jik" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jir" = ( -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - frequency = 1423; - name = "Interrogation Intercom"; - pixel_y = -31 - }, -/obj/item/taperecorder{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plasteel/grimy, -/area/security/main) -"jiz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/mining{ - name = "Deliveries"; - req_one_access_txt = "31;48" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"jjg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/button/door{ - id = "maintwarehouse"; - name = "Privacy Shutters Control"; - pixel_x = 26; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"jkq" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Hydroponics" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"jkv" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/range) -"jkQ" = ( -/obj/structure/table, -/obj/item/phone{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"jla" = ( -/obj/machinery/camera{ - c_tag = "Science Robotics Workshop" - }, -/obj/machinery/newscaster{ - pixel_x = -4; - pixel_y = 32 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"jlg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jlw" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"jlG" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -9; - pixel_y = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"jmm" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/space/basic, -/area/aisat) -"jmX" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/science/mixing) -"jni" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jnA" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jnI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jnW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"joB" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jpn" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/stripes/box, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"jpq" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jpv" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"jpP" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Security Post - Research Division"; - dir = 8; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"jqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"jql" = ( -/obj/structure/table, -/obj/item/circuitboard/machine/HFR_core, -/obj/item/circuitboard/machine/HFR_fuel_input, -/obj/item/circuitboard/machine/HFR_interface, -/obj/item/circuitboard/machine/HFR_moderator_input, -/obj/item/circuitboard/machine/HFR_waste_output, -/obj/item/stack/cable_coil{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jqA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"jqV" = ( -/obj/machinery/airalarm/directional/south, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jrE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"jsA" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"jsZ" = ( -/obj/machinery/computer/operating, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"jtd" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jtY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/virology{ - autoclose = 0; - frequency = 1449; - id_tag = "virology_airlock_exterior"; - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/machinery/door_buttons/access_button{ - dir = 1; - idDoor = "virology_airlock_exterior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_y = -24; - req_access_txt = "39" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jux" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"juI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"juT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"juX" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jvb" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets{ - pixel_x = -13; - pixel_y = 9 - }, -/obj/item/storage/fancy/donut_box{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"jvx" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"jvy" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft) -"jwJ" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"jwP" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 4 - }, -/area/science/research) -"jwW" = ( -/turf/closed/wall/mineral/plastitanium, -/area/commons/fitness/recreation) -"jxb" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"jxg" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"jxK" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"jxP" = ( -/obj/machinery/computer/security/telescreen{ - desc = "Used for watching Prison Wing holding areas."; - dir = 1; - name = "Prison Monitor"; - network = list("prison"); - pixel_y = -30 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jxW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jyc" = ( -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jzQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"jzV" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"jAh" = ( -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"jAo" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/security/main) -"jAy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jBf" = ( -/obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 9 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jBs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jBH" = ( -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northleft{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"jBW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"jCF" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"jCO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"jCZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"jEp" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"jEJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"jEO" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jEW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jEX" = ( -/obj/machinery/seed_extractor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jFh" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"jFr" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"jFA" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jFB" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/loot_site_spawner, -/obj/machinery/light/dim{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jGU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/bar) -"jHc" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"jHk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"jHw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/power/apc/auto_name/south, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"jHD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"jHQ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"jIt" = ( -/obj/structure/sign/poster/official/get_your_legs{ - pixel_y = 32 - }, -/obj/structure/chair/sofa/right, -/obj/item/toy/plush/moth{ - name = "Mender Moff" - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"jIy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/lab) -"jIE" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/bar) -"jJG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jKu" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"jKK" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"jLo" = ( -/obj/structure/chair, -/obj/item/toy/plush/pkplush, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"jMc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"jMg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"jMm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"jMF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"jMU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"jNz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"jNA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"jNE" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"jNH" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jNJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/flasher{ - id = "IsolationFlash"; - pixel_y = 28 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"jNL" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"jNM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/reagentgrinder{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/drinks/shaker{ - pixel_x = -6 - }, -/obj/machinery/camera{ - c_tag = "Bar - Counter"; - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - pixel_y = -30 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/bar) -"jOf" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"jOh" = ( -/obj/structure/cable, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/pipe, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/wood, -/area/service/bar) -"jPr" = ( -/obj/item/storage/secure/safe/hos{ - pixel_x = 36; - pixel_y = 28 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"jPt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"jPL" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Paramedic Dispatch Room"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"jPR" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"jPZ" = ( -/obj/structure/sign/warning/explosives, -/turf/closed/wall/r_wall, -/area/science/storage) -"jQd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"jQh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"jQO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door_buttons/airlock_controller{ - idExterior = "virology_airlock_exterior"; - idInterior = "virology_airlock_interior"; - idSelf = "virology_airlock_control"; - name = "Virology Access Console"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "39" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jRi" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/airlock/medical/glass{ - name = "Recovery Ward"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"jSg" = ( -/obj/structure/plasticflaps/opaque, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Atmospherics" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"jTg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/door/airlock/medical{ - name = "Psychology"; - req_access_txt = "70" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"jTj" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"jUu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"jVe" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;27;37" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port) -"jVo" = ( -/obj/machinery/chem_master/condimaster{ - name = "CondiMaster Neo" - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"jVx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"jVH" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"jWM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/lab) -"jXH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"jYc" = ( -/obj/machinery/chem_dispenser/drinks{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/bar) -"jYJ" = ( -/obj/item/reagent_containers/food/drinks/bottle/tequila, -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"jYU" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jZA" = ( -/obj/structure/table/reinforced, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/circuitboard/mecha/ripley/main, -/obj/item/circuitboard/mecha/ripley/peripherals, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"jZN" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"jZS" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/sign/departments/botany{ - pixel_x = 32 - }, -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"jZY" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"kat" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kbl" = ( -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"kbp" = ( -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 3; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kbu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"kcI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel, -/area/service/janitor) -"kcW" = ( -/obj/machinery/door/window/northleft{ - name = "Nanite Lab" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/research) -"kdA" = ( -/obj/structure/rack, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = 1 - }, -/obj/item/gun/energy/laser/practice{ - pixel_x = 2; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/range) -"kex" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"keM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"kfL" = ( -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kfZ" = ( -/obj/structure/table/wood, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"kge" = ( -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"kgg" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"kgO" = ( -/obj/structure/cable, -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/item/paper/crumpled{ - info = "Hey, assholes. We don't need a couch in the meeting room, I threw it out the airlock. I don't care if it's real leather, go patrol like you're paid to do instead of cycling through cameras all shift!"; - name = "old, crumpled note" - }, -/turf/open/floor/plasteel, -/area/security/main) -"khK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=13.2-Tcommstore"; - location = "13.1-Engineering-Enter" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kiy" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "QMLoad" - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/cargo/storage) -"kja" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/bar) -"kjh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/vehicle/ridden/janicart, -/obj/item/key/janitor, -/turf/open/floor/plasteel, -/area/service/janitor) -"kjJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kkA" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"kkN" = ( -/obj/machinery/camera{ - c_tag = "RD Observation Cage"; - dir = 1 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"kkR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/main) -"kkY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kld" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kle" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"klh" = ( -/obj/structure/light_construct{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"klu" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"klB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"klF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kmc" = ( -/obj/machinery/rnd/production/circuit_imprinter, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"kmq" = ( -/turf/closed/wall/r_wall, -/area/medical/morgue) -"knx" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/button/flasher{ - id = "IsolationFlash"; - pixel_x = -23; - pixel_y = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"kny" = ( -/obj/structure/table, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kpa" = ( -/obj/machinery/light_switch{ - pixel_x = 26 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/camera{ - c_tag = "Virology Lab"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"kqz" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall, -/area/hallway/primary/port) -"krX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ksN" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ksY" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/red/line, -/turf/open/floor/engine, -/area/science/cytology) -"kta" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/medical/psychology) -"ktv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"kuP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"kuS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/reagent_containers/pill/maintenance, -/obj/item/reagent_containers/pill/maintenance, -/obj/item/storage/box/gum, -/obj/item/surgicaldrill, -/turf/open/floor/plating, -/area/medical/abandoned) -"kuW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kvf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/security/prison) -"kwd" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kwe" = ( -/obj/machinery/door_buttons/access_button{ - idDoor = "xeno_airlock_exterior"; - idSelf = "xeno_airlock_control"; - name = "Access Button"; - pixel_y = -24; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/airlock/research{ - autoclose = 0; - frequency = 1449; - id_tag = "xeno_airlock_exterior"; - name = "Xenobiology Lab External Airlock"; - req_access_txt = "55" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"kwL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/canister/water_vapor, -/turf/open/floor/plasteel, -/area/service/janitor) -"kxh" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - id_tag = "permaouter"; - name = "Permabrig Transfer"; - req_access_txt = "2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"kxJ" = ( -/turf/open/floor/plating, -/area/security/prison) -"kyp" = ( -/obj/structure/table, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/item/disk/tech_disk{ - pixel_x = -6 - }, -/obj/item/disk/tech_disk{ - pixel_x = 6 - }, -/obj/item/disk/tech_disk{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"kyr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"kyG" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kzn" = ( -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"kzs" = ( -/obj/machinery/door/airlock/hatch{ - name = "Test Chamber Maintenance"; - req_access_txt = "47" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"kzK" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"kAu" = ( -/obj/effect/turf_decal, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kBb" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"kBh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay Primary Treatment Centre"; - dir = 1; - network = list("ss13","medbay") - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"kBo" = ( -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kBu" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"kBT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kBV" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/obj/effect/landmark/start/clown, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/service/theater) -"kCw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kCS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kDc" = ( -/obj/effect/turf_decal/stripes/white/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"kDC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kDM" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"kDT" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "surgeryc"; - name = "Privacy Shutters Control"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"kDW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kEb" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/turf/open/floor/plating, -/area/cargo/qm) -"kEz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kFW" = ( -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/security/prison) -"kGm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"kGE" = ( -/obj/machinery/camera{ - c_tag = "Prison Central"; - dir = 8; - network = list("ss13","prison") - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kHF" = ( -/obj/machinery/door/poddoor{ - id = "SecJusticeChamber"; - name = "Justice Vent" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/execution/education) -"kHU" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/research) -"kHZ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"kIu" = ( -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/robotics/lab) -"kIL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"kIY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kJl" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"kJt" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"kKo" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"kKH" = ( -/obj/structure/table/wood, -/obj/item/taperecorder{ - pixel_x = 3 - }, -/obj/item/storage/box/evidence, -/obj/item/flashlight/seclite, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"kKQ" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"kLl" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kLC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"kMy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"kMC" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port) -"kMG" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"kNa" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"kNq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Visitation" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"kOK" = ( -/turf/open/space/basic, -/area/maintenance/port/aft) -"kPy" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"kPN" = ( -/obj/structure/rack, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"kPY" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"kQx" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/weldingtool, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"kRc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/scan_consolenew{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"kRe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/light, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"kRp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"kRP" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"kSe" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"kSB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"kSN" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"kTE" = ( -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible/layer4, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"kUH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/iv_drip, -/turf/open/floor/plating, -/area/medical/abandoned) -"kWn" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"kWx" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"kWX" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard) -"kXs" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Storage Maintenance"; - req_access_txt = "8" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/science/storage) -"kXN" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"kYh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"kZk" = ( -/obj/structure/chair/sofa/corp/right{ - desc = "Looks like someone threw it out. Covered in donut crumbs."; - name = "couch" - }, -/turf/open/space/basic, -/area/space) -"kZt" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"laB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 5 - }, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"laD" = ( -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"lbd" = ( -/obj/structure/table/glass, -/obj/machinery/light/small, -/obj/item/folder/white{ - pixel_y = 4 - }, -/obj/item/pen/red, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"lbj" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/science/research) -"lbt" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"lbB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"lcK" = ( -/obj/machinery/button/door{ - id = "kitchen_counter"; - name = "Counter Shutters Control"; - pixel_x = 26; - pixel_y = 24; - req_access_txt = "28" - }, -/obj/effect/landmark/start/cook, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"ldJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"leJ" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Forestry" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lfx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lfy" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/sign/departments/court{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lfH" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/item/aicard, -/obj/item/paicard, -/obj/item/circuitboard/aicore, -/obj/machinery/keycard_auth{ - pixel_x = -5; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"lfN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"lfR" = ( -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lhv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"lhQ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"liB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red/corner, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"liD" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation B"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ljn" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"ljB" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 10 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"ljG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"lkk" = ( -/obj/structure/plasticflaps/opaque, -/obj/effect/turf_decal/delivery, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=8"; - dir = 8; - freq = 1400; - location = "Kitchen" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/maintenance/starboard) -"lkO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "medbreakroom"; - name = "Privacy Shutters Control"; - pixel_x = -26; - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/medical/break_room) -"llI" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"lme" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"lmG" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"lnS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"loM" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lpO" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"lqa" = ( -/obj/structure/table/reinforced, -/obj/item/kitchen/fork/plastic, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"lqU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"lrd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/wood, -/area/service/bar) -"lrI" = ( -/obj/structure/rack, -/obj/item/vending_refill/security, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lrL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Access"; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lrP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/lab) -"lrV" = ( -/obj/effect/turf_decal/trimline/red/filled/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"lsp" = ( -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "xeno_blastdoor"; - name = "Xenobiology Containment Control"; - pixel_x = -23; - pixel_y = 24; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_x = -7; - pixel_y = 24; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdtoxins"; - name = "Toxins Containment Control"; - pixel_x = 7; - pixel_y = 24; - req_access_txt = "30" - }, -/obj/machinery/button/door{ - id = "rdoffice"; - name = "Privacy Control"; - pixel_x = 24; - pixel_y = 24; - req_access_txt = "30" - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"lsU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"ltO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/table/wood, -/obj/item/clothing/mask/cigarette/cigar, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/service/bar) -"luf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 1; - req_one_access = null; - req_one_access_txt = "4;5;9" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"luZ" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/cargo/qm) -"lvi" = ( -/obj/effect/turf_decal/trimline/purple/line, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 23 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lvG" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/security/main) -"lwd" = ( -/obj/effect/turf_decal/trimline/purple/corner, -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lwr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"lwx" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Departure Lounge Airlock" - }, -/obj/machinery/navbeacon/wayfinding, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"lwA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) -"lxj" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Fore Primary Hallway Cells" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"lxk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lxQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"lzA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"lAu" = ( -/turf/open/space/basic, -/area/space/nearstation) -"lAE" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"lAM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"lBk" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"lBz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"lCL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"lCP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lDf" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"lDl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/closed/wall, -/area/service/janitor) -"lDT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/holohoop{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Prison Yard"; - dir = 8; - network = list("ss13","prison") - }, -/turf/open/floor/plasteel, -/area/security/prison) -"lEI" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lEV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"lFr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"lFH" = ( -/obj/structure/window, -/obj/effect/decal/cleanable/food/flour, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"lFM" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/engine, -/area/science/cytology) -"lGi" = ( -/obj/structure/sign/warning/securearea, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/science/research) -"lGw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"lGz" = ( -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"lGA" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/sec{ - pixel_y = 7 - }, -/obj/item/storage/backpack/duffelbag/sec, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lGD" = ( -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/plasteel/dark, -/area/security/main) -"lGS" = ( -/obj/docking_port/stationary/public_mining_dock, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"lHI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light_switch{ - pixel_x = 28 - }, -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = -14; - pixel_y = 3 - }, -/obj/item/paper_bin/carbon{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"lIl" = ( -/obj/machinery/computer/operating{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"lJn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_x = -1; - pixel_y = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"lJt" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"lJP" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"lKu" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"lKK" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"lLd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"lLx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lLC" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/science/genetics) -"lLO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"lLQ" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Break Room Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lLW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"lMa" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/recharge_station, -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"lMJ" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"lNj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lNO" = ( -/obj/machinery/disposal/bin{ - desc = "A pneumatic waste disposal unit. This one leads into space!"; - name = "deathsposal unit" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/sign/warning/deathsposal{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"lNZ" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"lOj" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/syriniver, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"lOn" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"lOC" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"lOR" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Primary Treatment Maintenance"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"lPx" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"lPK" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lSZ" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "5" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"lTd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "rdoffice"; - name = "Research Director's Shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/command/heads_quarters/rd) -"lTf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"lTo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/computer/med_data{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"lTU" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/cytology) -"lUi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood, -/area/service/bar) -"lUZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/l3closet/janitor, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"lWh" = ( -/obj/machinery/computer/security/hos{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"lWo" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/wiki/barman_recipes{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/service/bar) -"lWO" = ( -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"lWY" = ( -/obj/machinery/door/airlock/hatch{ - name = "Telecomms Server Room" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/tcommsat/server) -"lYO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 27 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"lZn" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"lZV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"maC" = ( -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mbI" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Arrival Airlock"; - safety_mode = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"mcg" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mci" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/frame/computer{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"mcs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = 28; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"mdo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "cytologysecure"; - name = "Secure Pen Lockdown" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine/vacuum, -/area/science/cytology) -"mdx" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Service Maintenance"; - req_one_access_txt = "12;25;26;35;28;22;37;46;38;70" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mdC" = ( -/obj/structure/table, -/obj/machinery/microwave, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - pixel_x = -30 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"mdG" = ( -/obj/effect/turf_decal/delivery/white{ - color = "#52B4E9" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/southright{ - name = "Corpse Arrivals" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"meC" = ( -/obj/effect/turf_decal/trimline/green/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"meE" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"meP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/sign/poster/official/anniversary_vintage_reprint{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mfc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"mfh" = ( -/obj/machinery/camera{ - c_tag = "Aft Starboard Solar Maintenance"; - dir = 4 - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/chair/stool, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"mfj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mfG" = ( -/obj/item/radio/intercom{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"mfN" = ( -/obj/machinery/door/airlock/maintenance{ - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/commons/fitness/recreation) -"mfR" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"mgB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/scan_consolenew{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"mgE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"mha" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"mhe" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"mhg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"mhq" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"mhI" = ( -/obj/structure/dresser, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/theater) -"miu" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Lab"; - departmentType = 5; - name = "Research RC"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"mjj" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/turf/open/floor/engine, -/area/science/xenobiology) -"mjq" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/bodybags, -/obj/item/pen, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"mjB" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/main) -"mjT" = ( -/turf/closed/wall, -/area/medical/psychology) -"mla" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mlg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"mlj" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"mls" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"mmb" = ( -/obj/structure/fluff/broken_flooring{ - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mmq" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/lab) -"mmB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"mmL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"mna" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"mnI" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"mnS" = ( -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/poster/random_contraband, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/ale, -/obj/structure/table/wood, -/obj/item/instrument/eguitar, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"moz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small/broken, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"moO" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"mpe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/wood, -/area/cargo/qm) -"mpy" = ( -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/theater) -"mpD" = ( -/obj/structure/cable, -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"mpI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mpZ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"mqn" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_y = 6 - }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"mqo" = ( -/obj/machinery/door/poddoor/shutters{ - id = "maintwarehouse" - }, -/turf/open/floor/plasteel/dark, -/area/maintenance/port/aft) -"mqU" = ( -/obj/structure/closet/firecloset, -/obj/machinery/airalarm/directional/north, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/science/research) -"mrg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"mrv" = ( -/obj/structure/rack, -/obj/item/stack/sheet/cloth/five, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mrP" = ( -/obj/machinery/reagentgrinder{ - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/button/door{ - id = "hydro_service"; - name = "Service Shutter Control"; - pixel_x = -24; - pixel_y = 24; - req_access_txt = "28" - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mrT" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"msD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"msT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"mtC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_access_txt = "12" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"mum" = ( -/obj/machinery/rnd/production/techfab/department/service, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/box, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"muq" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"muv" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"muH" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"mvj" = ( -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/door/window/eastright{ - dir = 1; - name = "Hydroponics Delivery"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"mvq" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/fore) -"myd" = ( -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mzr" = ( -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison/safe) -"mzz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"mzU" = ( -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"mAO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39;25;28" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft) -"mBf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engineering/atmos) -"mBC" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"mBU" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/storage/box/gloves{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/bodybags, -/obj/item/healthanalyzer, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"mCu" = ( -/obj/item/clothing/suit/snowman, -/obj/item/clothing/head/snowman, -/turf/open/floor/grass/snow/safe, -/area/maintenance/port/aft) -"mDG" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/research) -"mDI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 1 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/storage/box/disks{ - pixel_x = 6; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"mDQ" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"mEn" = ( -/obj/machinery/door/window/brigdoor/security/holding{ - id = "Holding Cell"; - name = "Holding Cell" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"mEI" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard) -"mGc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"mHk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"mHy" = ( -/obj/structure/displaycase/labcage, -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"mIm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/stripes/red/corner, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"mIU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mJn" = ( -/obj/effect/spawner/randomsnackvend, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/security/main) -"mJx" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"mJB" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"mJY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot_white, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"mKb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"mKc" = ( -/obj/machinery/status_display/evac{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/atmos_control{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"mKK" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"mKO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/tank/toxins{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal/incinerator) -"mKP" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"mKW" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/storage/box/petridish{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/storage/box/petridish{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"mLe" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/vending/wardrobe/chem_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mLI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"mMd" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 5 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - layer = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"mMD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 2; - name = "Atmospherics Desk"; - req_access_txt = "24" - }, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/preopen{ - id = "atmos"; - name = "Atmospherics Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mML" = ( -/obj/effect/turf_decal/bot/right, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mNg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/server) -"mNE" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"mNK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/computer/operating{ - dir = 1; - name = "Robotics Operating Computer" - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"mNW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"mOq" = ( -/obj/machinery/camera/autoname, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"mOK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"mPi" = ( -/obj/machinery/button/door{ - id = "hosprivacy"; - name = "Privacy Shutters Control"; - pixel_x = -24; - pixel_y = -26 - }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"mQI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"mQQ" = ( -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"mRg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mRT" = ( -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"mSk" = ( -/obj/structure/cable, -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"mSz" = ( -/turf/open/floor/plasteel, -/area/science/mixing) -"mTi" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Lab"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mTj" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/open/floor/plating, -/area/medical/chemistry) -"mTs" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = -32 - }, -/obj/structure/bed/dogbed, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/maintenance/port/aft) -"mUf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"mUz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"mUD" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"mVt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"mVy" = ( -/obj/structure/table/glass, -/obj/structure/cable, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"mVF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"mWg" = ( -/obj/structure/girder, -/obj/structure/grille, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"mYD" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/science/server) -"mYR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"mYU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"naq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"nav" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Division Server Room"; - req_access_txt = "30" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/server) -"naM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Test Site Materials Crate"; - req_access_txt = "8" - }, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/alien, -/obj/item/target/alien, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nbp" = ( -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"nbv" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"nbP" = ( -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/box/corners{ - pixel_x = -25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ncb" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"nco" = ( -/obj/structure/lattice/catwalk, -/obj/item/stack/cable_coil, -/turf/open/space/basic, -/area/solars/port/aft) -"nde" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engineering/break_room) -"ndr" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/maintenance/aft/secondary) -"ndG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/lab) -"ndK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/camera{ - c_tag = "Science Toxins Launch 2"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"ndM" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/science/test_area) -"ndN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"neo" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"neP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nfn" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"nfX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/destructive_scanner, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"ngp" = ( -/obj/effect/landmark/start/roboticist, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"ngD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/camera{ - c_tag = "Science Toxins Secure 2"; - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"ngK" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/ywflowers, -/obj/item/food/grown/banana, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/grass, -/area/medical/virology) -"nhu" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nhT" = ( -/obj/item/target, -/obj/structure/training_machine, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"nio" = ( -/obj/structure/rack, -/obj/item/wrench, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"niJ" = ( -/obj/effect/turf_decal/trimline/red/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"njJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nks" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nkG" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"nkS" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"nkV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"nla" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/grunge{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"nme" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/main) -"nmr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"nmM" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"noe" = ( -/obj/structure/rack, -/obj/item/storage/box, -/obj/effect/turf_decal/bot, -/obj/item/radio/off{ - pixel_x = 6 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"npx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"npN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"nqy" = ( -/obj/structure/chair/comfy{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/airalarm/directional/south, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nqZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"nrc" = ( -/obj/structure/flora/ausbushes/sunnybush, -/obj/machinery/camera{ - c_tag = "Virology Test Subject Chamber"; - network = list("ss13","medbay") - }, -/turf/open/floor/grass, -/area/medical/virology) -"nry" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"nrB" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chemistry South"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nrI" = ( -/obj/machinery/atmospherics/components/trinary/filter{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"nsi" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/storage_shared) -"nsH" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt{ - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"nsN" = ( -/obj/structure/statue/snow/snowman, -/turf/open/floor/grass/snow/safe, -/area/maintenance/port/aft) -"nud" = ( -/obj/machinery/rnd/server, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 6 - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"nuZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"nvq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nvs" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/folder/white{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 7 - }, -/obj/item/reagent_containers/dropper{ - pixel_x = -3; - pixel_y = -6 - }, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel, -/area/science/lab) -"nvH" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMLoad"; - name = "Loading Conveyor"; - pixel_x = -13; - pixel_y = -5 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"nwt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"nxn" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"nyc" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nyh" = ( -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nyz" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"nyO" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"nzS" = ( -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"nBA" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/medical/abandoned) -"nBI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"nBU" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/multiver, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"nCo" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/effect/landmark/start/prisoner, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"nCx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "xenobio7"; - layer = 3.3; - name = "Xenobio Pen 7 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nCQ" = ( -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"nDc" = ( -/obj/structure/sign/warning/fire, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"nDf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/fluff/broken_flooring, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nDw" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/science/nanite) -"nDT" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"nEv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"nEz" = ( -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"nEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nEQ" = ( -/obj/machinery/nanite_program_hub, -/obj/machinery/requests_console{ - department = "Law office"; - pixel_y = 32 - }, -/turf/open/floor/circuit/green, -/area/science/nanite) -"nFh" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/mixing) -"nFC" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"nGu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nGG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engineering/atmos) -"nGI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nGT" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/structure/bed/roller, -/obj/item/toy/plush/snakeplushie{ - name = "Boa Ben" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/secondary) -"nHO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"nIa" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/white/side{ - dir = 8 - }, -/area/medical/break_room) -"nIb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/construction/storage_wing) -"nIg" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/ears/earmuffs{ - pixel_y = 7 - }, -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"nIk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"nJh" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 10 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"nKc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nKi" = ( -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"nKq" = ( -/obj/effect/turf_decal/box/red/corners{ - dir = 8 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 4 - }, -/obj/effect/turf_decal/box/red/corners{ - dir = 1 - }, -/obj/effect/turf_decal/box/red/corners, -/turf/open/floor/engine, -/area/science/cytology) -"nKv" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research) -"nLx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"nLy" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool/bar, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"nLG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"nLU" = ( -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/structure/table/wood, -/obj/item/clothing/head/sombrero, -/turf/open/floor/wood, -/area/service/theater) -"nLZ" = ( -/obj/item/toy/beach_ball{ - name = "Nanotrasen-branded beach ball" - }, -/turf/open/space/basic, -/area/space) -"nMe" = ( -/turf/closed/wall, -/area/medical/surgery/room_b) -"nMg" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Security - EVA Storage"; - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"nMl" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/bar) -"nMs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera{ - c_tag = "Chemistry East"; - dir = 8; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nMU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/storage_wing) -"nMY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/raw_anomaly_core/random{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/raw_anomaly_core/random{ - pixel_x = 7; - pixel_y = 9 - }, -/obj/item/raw_anomaly_core/random, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"nNe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"nNh" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nNB" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"nOc" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"nOl" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/chair/office/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"nOI" = ( -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/structure/closet/secure_closet/security/science, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"nOL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science Genetics"; - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"nOY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"nOZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/qm) -"nPl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"nPq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research Division Access"; - req_access_txt = "47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/science/research) -"nPC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"nPS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene2"; - name = "Genetics Lab Shutters" - }, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Genetics Desk"; - req_access_txt = "9" - }, -/obj/item/folder, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/science/genetics) -"nQm" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#EFB341" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nQR" = ( -/obj/machinery/light, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 6; - pixel_y = 10 - }, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Xenobiology"; - departmentType = 5; - name = "Xenobiology RC"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"nRb" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 5; - height = 7; - id = "exploration_home"; - name = "NT SS13: Док Рейнджеров"; - roundstart_template = /datum/map_template/shuttle/exploration; - width = 13 - }, -/turf/open/space/basic, -/area/space) -"nRn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"nRv" = ( -/obj/structure/table/glass, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"nRJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"nRY" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/service/chapel/main) -"nSh" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"nSk" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"nSp" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"nSO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/button/door{ - id = "xenobio5"; - layer = 3.3; - name = "Xenobio Pen 5 Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"nTh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"nTt" = ( -/obj/machinery/modular_computer/console/preset/id{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm/directional/west, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"nUa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"nUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"nUQ" = ( -/obj/structure/table/reinforced, -/obj/structure/reagent_dispensers/servingdish, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"nUW" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"nVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"nWD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"nWN" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/bed/roller, -/obj/item/pizzabox/pineapple{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"nXv" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/light, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/medical/break_room) -"nXA" = ( -/obj/structure/rack{ - icon = 'icons/obj/stationobjs.dmi'; - icon_state = "minibar"; - name = "skeletal minibar" - }, -/obj/item/storage/fancy/candle_box, -/turf/open/floor/engine/cult, -/area/service/library) -"nXE" = ( -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = 8; - pixel_y = -30 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -6; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plasteel, -/area/science/mixing) -"nXH" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"nYH" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/ambrosia, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"nYJ" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"nZb" = ( -/obj/machinery/computer/slot_machine{ - pixel_y = 2 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"oaa" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/science/research) -"oaq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"obg" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"obv" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"obA" = ( -/obj/structure/table/optable{ - desc = "A cold, hard place for your final rest."; - name = "Morgue Slab" - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"obP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"obX" = ( -/obj/docking_port/stationary{ - dheight = 4; - dwidth = 4; - height = 9; - id = "aux_base_zone"; - name = "aux base zone"; - roundstart_template = /datum/map_template/shuttle/aux_base/default; - width = 9 - }, -/turf/open/floor/plating, -/area/construction/mining/aux_base) -"oca" = ( -/obj/machinery/atmospherics/components/trinary/filter, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ocq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Research and Development Lab"; - req_one_access_txt = "7" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ocv" = ( -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"ocA" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engineering/main) -"odi" = ( -/obj/structure/rack, -/obj/item/flashlight, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/book/manual/wiki/engineering_hacking{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/book/manual/wiki/engineering_guide, -/obj/item/book/manual/wiki/engineering_construction{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/airlock_painter, -/obj/item/crowbar, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"oem" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command) -"oeK" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ofo" = ( -/obj/machinery/door/airlock{ - name = "Theatre Backstage"; - req_access_txt = "46" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/firedoor, -/turf/open/floor/wood, -/area/service/theater) -"ofB" = ( -/obj/machinery/door/airlock/security{ - name = "Court Cell"; - req_access_txt = "63" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"ofT" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ogO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ohT" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"oid" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"oiB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"oiC" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Exploration Dock"; - req_access_txt = "49" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"ojm" = ( -/obj/structure/musician/piano, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/theater) -"okr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/cargo/qm) -"okv" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"okP" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"omg" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"omh" = ( -/obj/structure/toilet/greyscale{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"omn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Vault Storage" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/construction/storage_wing) -"ong" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"oos" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"ooS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"ooY" = ( -/obj/machinery/computer/warrant{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"opc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/range) -"oqv" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ore" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"orL" = ( -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"orS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"osT" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"osV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"otn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/lightreplacer{ - pixel_y = 7 - }, -/obj/machinery/status_display/evac{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/checker, -/area/engineering/storage_shared) -"otq" = ( -/obj/structure/closet/emcloset, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ouu" = ( -/obj/effect/turf_decal/bot/left, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ouA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ova" = ( -/obj/item/toy/cards/deck{ - pixel_y = 4 - }, -/obj/structure/table/wood/poker, -/obj/structure/cable, -/turf/open/floor/wood, -/area/service/bar) -"ovj" = ( -/turf/closed/wall, -/area/maintenance/starboard/secondary) -"ovn" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Atmospherics"; - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"ovx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ovU" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"owp" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/smartfridge/organ, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"ows" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 1; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"owR" = ( -/turf/closed/wall, -/area/engineering/storage_shared) -"oxa" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"oxX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oyx" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"oyR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Mining Shuttle"; - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"ozg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Port Primary Hallway - Port"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"oAe" = ( -/obj/structure/fluff/broken_flooring{ - dir = 4; - icon_state = "singular" - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"oAI" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"oAL" = ( -/obj/machinery/hydroponics/soil, -/obj/item/shovel/spade, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grass, -/area/security/prison) -"oBU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/camera{ - c_tag = "Engineering - Desk"; - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"oCD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"oCQ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oCR" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oDq" = ( -/obj/structure/table, -/obj/item/training_toolbox, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"oEp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"oEw" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -10; - pixel_y = -1 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"oEx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"oFi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/optable, -/obj/structure/noticeboard{ - dir = 8; - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"oFQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Prison Workshop"; - dir = 8; - network = list("ss13","prison") - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"oGS" = ( -/obj/machinery/plate_press, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/prison) -"oHg" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"oHk" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/machinery/airalarm/mixingchamber{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/science/mixing/chamber) -"oHs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/window/westleft{ - base_state = "right"; - icon_state = "right"; - name = "Shooting Range" - }, -/turf/open/floor/plasteel, -/area/security/range) -"oHZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oJi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"oJm" = ( -/obj/effect/landmark/start/exploration, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"oJL" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) -"oJP" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"oKP" = ( -/obj/item/toy/cards/deck, -/obj/structure/table/wood/poker, -/obj/effect/decal/cleanable/dirt, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"oLn" = ( -/obj/structure/kitchenspike, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"oLq" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"oMF" = ( -/obj/machinery/light, -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"oMI" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"oMJ" = ( -/obj/machinery/door/airlock{ - name = "Prison Showers" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"oMO" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"oNl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"oOy" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"oOD" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/siding/green{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"oPN" = ( -/obj/item/toy/figure/roboticist, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"oPW" = ( -/obj/effect/landmark/blobstart, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"oQj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"oQl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oQH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"oRD" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/white, -/area/science/research) -"oRI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"oRL" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_home"; - name = "SS13: Auxiliary Dock, Station-Port"; - width = 35 - }, -/turf/open/space/basic, -/area/space) -"oSf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"oSr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/security/main) -"oSx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"oSA" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"oTh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oTs" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"oTC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/science/genetics) -"oTW" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/obj/structure/sign/departments/psychology{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"oUn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"oUz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/medical/break_room) -"oUQ" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"oVx" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 1 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"oVO" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/rack, -/obj/effect/turf_decal/tile/blue, -/obj/item/reagent_containers/glass/bottle/morphine, -/obj/item/storage/box/chemimp{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/storage/box/trackimp, -/obj/item/storage/lockbox/loyalty, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"oWf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/priem_steklotara, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/fore) -"oWY" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"oXi" = ( -/obj/structure/table, -/obj/item/stack/sheet/iron{ - amount = 10 - }, -/obj/item/electropack, -/turf/open/floor/engine, -/area/science/xenobiology) -"oXy" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"oXA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"oXP" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"oYa" = ( -/obj/machinery/door/window{ - dir = 1; - name = "Mass Driver"; - req_access_txt = "12" - }, -/obj/machinery/door/window{ - name = "Mass Driver"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/loading_area{ - dir = 1 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/shack{ - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"oYd" = ( -/obj/machinery/flasher{ - id = "visitorflash"; - pixel_y = 28 - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/trimline/red/warning{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"oYv" = ( -/obj/effect/turf_decal/loading_area/white{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"oZg" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"oZH" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/security/main) -"oZQ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay Surgery B"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"pai" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pay" = ( -/obj/structure/table/glass, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/clothing/glasses/hud/health, -/obj/item/clothing/glasses/science, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"paD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Surgery A"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/east, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"paR" = ( -/obj/structure/cable, -/obj/machinery/light/small/broken{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"pbc" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/science/research) -"pbe" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"pcd" = ( -/obj/effect/decal/cleanable/blood/old, -/obj/machinery/camera{ - c_tag = "Science Maintenance Corridor"; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"pcn" = ( -/turf/open/floor/engine, -/area/science/misc_lab/range) -"pcG" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pcN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"pcT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/structure/cable, -/obj/item/cigbutt{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/structure/chair/stool, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"pdx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"pdH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"pdL" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"pdX" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/structure/disposaloutlet{ - dir = 4; - name = "Cargo Deliveries" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"pdZ" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ped" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - name = "Server Vent" - }, -/turf/open/floor/circuit/telecomms/server, -/area/science/server) -"pgC" = ( -/obj/machinery/door/window/southleft{ - dir = 1; - name = "Mass Driver Control Door"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pgX" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/prison) -"phK" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"phV" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"phY" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"piK" = ( -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pjB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"pkr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"plu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"plC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"plI" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/port) -"pmn" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"pna" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"pnz" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"pnA" = ( -/obj/structure/rack, -/obj/item/stack/package_wrap{ - pixel_x = 6 - }, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 5 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"pnW" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pod" = ( -/obj/effect/mapping_helpers/dead_body_placer, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"poP" = ( -/obj/machinery/power/apc/auto_name/east, -/obj/structure/table/wood, -/obj/item/cartridge/detective{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/item/folder/red{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/folder/red{ - pixel_x = -7 - }, -/obj/item/cartridge/detective{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/cartridge/detective{ - pixel_x = 7 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"ppi" = ( -/obj/machinery/door/poddoor/massdriver_toxins, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"ppz" = ( -/obj/machinery/vending/boozeomat/all_access, -/obj/effect/decal/cleanable/cobweb, -/turf/closed/wall, -/area/maintenance/port/aft) -"ppN" = ( -/obj/structure/window/plasma/reinforced/spawner/west, -/turf/open/space/basic, -/area/space/nearstation) -"pqy" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"pqH" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/aft) -"pqM" = ( -/turf/closed/wall, -/area/medical/break_room) -"pqR" = ( -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plating, -/area/maintenance/starboard) -"prl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"ptz" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet/directional/east, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"ptF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ptG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics - Aft"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"ptP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pua" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"puy" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"puI" = ( -/obj/item/soap/nanotrasen, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"puQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/chem_dispenser{ - layer = 2.7 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pvt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/chem_heater, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pvC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"pvK" = ( -/obj/structure/cable, -/obj/machinery/computer/crew{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/filled/line, -/turf/open/floor/plasteel, -/area/security/warden) -"pvL" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_one_access_txt = "10;24" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"pvY" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Fore"; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"pwn" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/aft) -"pwv" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pwT" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/grass, -/area/medical/virology) -"pxo" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"pxv" = ( -/turf/closed/wall, -/area/maintenance/department/science/central) -"pxY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"pyi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"pyv" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Primary Research Shutters Control"; - pixel_x = 24; - pixel_y = 7; - req_access_txt = "7" - }, -/obj/machinery/button/door{ - id = "rndlab2"; - name = "Secondary Research Shutters Control"; - pixel_x = 24; - pixel_y = -7; - req_access_txt = "7" - }, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/turf/open/floor/plasteel, -/area/science/lab) -"pzj" = ( -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"pAv" = ( -/obj/structure/table, -/obj/structure/window, -/obj/item/reagent_containers/food/condiment/saltshaker{ - layer = 3.1; - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; - pixel_x = -8; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/condiment/enzyme{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/book/manual/chef_recipes, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"pAA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "packageExternal"; - name = "Crate Returns"; - pixel_x = -5; - pixel_y = 23 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"pBA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"pBF" = ( -/obj/structure/rack, -/obj/item/radio/off{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/radio/off{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"pBL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/starboard/secondary) -"pCe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pCp" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"pCw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/security/brig) -"pCz" = ( -/obj/machinery/button/door{ - id = "PermaLockdown"; - name = "Panic Button"; - pixel_x = -1; - pixel_y = -24; - req_access_txt = "2" - }, -/obj/structure/cable, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"pCV" = ( -/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"pDa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/commons/toilet/auxiliary) -"pDc" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/grass, -/area/science/genetics) -"pDY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"pEb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"pEr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"pEM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/closet{ - name = "nurse's locker" - }, -/obj/item/clothing/under/rank/medical/doctor/nurse, -/obj/item/clothing/head/nursehat, -/obj/item/storage/belt/medical, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"pFV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"pGP" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Toxins Lab"; - departmentType = 5; - name = "Toxins RC"; - pixel_x = -32 - }, -/obj/effect/turf_decal/siding{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"pGY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"pHd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/cargo/sorting) -"pIt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pJO" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"pJV" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"pKJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"pKP" = ( -/obj/structure/cable, -/obj/structure/rack, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/syringes, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"pLp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/toy/figure/paramedic, -/obj/machinery/light_switch{ - pixel_x = 10; - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"pLw" = ( -/obj/machinery/iv_drip, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"pLI" = ( -/obj/structure/chair/comfy{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science Break Room"; - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/science/research) -"pLU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"pMn" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"pME" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/main) -"pMF" = ( -/obj/structure/table, -/obj/item/inspector{ - pixel_x = -5; - pixel_y = 12 - }, -/obj/item/inspector{ - pixel_x = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"pMX" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 16 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"pND" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"pNI" = ( -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"pNO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"pOu" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"pOP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"pPh" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"pPi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/table/glass, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"pPA" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red, -/obj/machinery/light, -/obj/structure/cable, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"pPZ" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/green{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"pQF" = ( -/obj/structure/sign/departments/science, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/science/research) -"pRp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"pSm" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"pSM" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"pSX" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departure Lounge" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"pTt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock{ - name = "Bar"; - req_access_txt = "25" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"pTS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"pTW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/stock_parts/cell/high, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"pUf" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad2"; - name = "Unloading Conveyor"; - pixel_x = -13; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"pUW" = ( -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"pVb" = ( -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"pVi" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/lab) -"pVq" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"pVK" = ( -/obj/machinery/flasher{ - id = "justiceflash"; - name = "mounted justice flash"; - pixel_x = 28 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"pWo" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"pWO" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"pXb" = ( -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"pXD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"pXE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"pYm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/lab) -"pYu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"pYC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"pZo" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"pZx" = ( -/obj/structure/closet/secure_closet/research_director, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/command/heads_quarters/rd) -"pZC" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/science/mixing) -"qby" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qbz" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"qbF" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/closet/l3closet/scientist, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"qcl" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"qcK" = ( -/obj/machinery/camera{ - c_tag = "Bar - Backroom" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/mirror{ - pixel_y = 34 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/open/floor/wood, -/area/service/bar) -"qcN" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"qcO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"qdm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"qdB" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/frame/machine, -/obj/item/circuitboard/machine/smartfridge, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"qeb" = ( -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/test_area) -"qey" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Access"; - req_access_txt = "55" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"qeN" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qeO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/item/cigbutt/roach, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"qeW" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall/r_wall, -/area/science/cytology) -"qfy" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard/fore) -"qfG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qfJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"qgl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qgQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qhe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"qhy" = ( -/obj/machinery/camera{ - c_tag = "Holodeck - Aft"; - dir = 1; - name = "holodeck camera" - }, -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"qhE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"qhS" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/obj/effect/mapping_helpers/airlock/locked, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"qif" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"qiB" = ( -/obj/machinery/camera{ - c_tag = "Aft Primary Hallway - Fore"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"qjg" = ( -/obj/effect/turf_decal/trimline/blue/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"qjh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qjI" = ( -/obj/structure/cable, -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qkg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qkl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qkq" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxins_mixing_input{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"qls" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"qmt" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qmy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/chief_medical_officer, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/cmo) -"qmZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"qnr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"qnA" = ( -/obj/machinery/door/window/southleft{ - dir = 8; - name = "Mass Driver Door"; - req_access_txt = "8" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"qnH" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"qnQ" = ( -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/stack/sheet/mineral/plasma{ - pixel_y = 4 - }, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"qod" = ( -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Starboard Primary Hallway - Engineering"; - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qoj" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"qok" = ( -/obj/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"qpc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = 32; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qpk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"qqf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"qrp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"qrF" = ( -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qrL" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qrV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qsb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"qsx" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"qtr" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"qtK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"qtU" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"quc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/marker_beacon/burgundy, -/turf/open/space/basic, -/area/space/nearstation) -"quj" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qus" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"quB" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"quD" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"qvw" = ( -/obj/effect/turf_decal/siding/white/corner{ - color = null; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"qvO" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"qwp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/chair/sofa/left{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"qwx" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qwO" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = 32; - pixel_y = -28 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"qxe" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qxh" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"qxm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"qxn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"qyH" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qyW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"qze" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/folder/red{ - pixel_x = -5 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qzl" = ( -/obj/item/crowbar, -/obj/item/wrench, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"qzo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"qzD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"qzS" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"qAe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, -/turf/open/floor/plating, -/area/engineering/atmos) -"qAs" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"qAt" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"qAO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port) -"qAX" = ( -/obj/structure/cable, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/virology) -"qBc" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Storage"; - req_access_txt = "8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"qBq" = ( -/turf/closed/wall/mineral/plastitanium, -/area/hallway/secondary/entry) -"qBy" = ( -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/clown, -/obj/item/target/clown, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/structure/closet/crate/secure{ - desc = "A secure crate containing various materials for building a customised test-site."; - name = "Firing Range Gear Crate"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"qBH" = ( -/obj/machinery/mechpad, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"qBS" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"qBU" = ( -/obj/effect/turf_decal/bot, -/obj/structure/tank_dispenser, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/mixing) -"qCa" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/prison/safe) -"qCy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"qCJ" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/bar) -"qDO" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 4 - }, -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/turf/open/floor/circuit/green, -/area/science/nanite) -"qEU" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation A"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qEW" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/book/manual/wiki/robotics_cyborgs, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/multitool, -/obj/item/clothing/head/welding, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"qEY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/northleft{ - dir = 4; - name = "Engineering Desk"; - req_one_access_txt = "24;32" - }, -/obj/item/folder/yellow, -/obj/item/pen, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qFk" = ( -/obj/structure/rack, -/obj/item/book/manual/wiki/infections{ - pixel_y = 7 - }, -/obj/item/reagent_containers/syringe/antiviral, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/spray/cleaner, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qFq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/structure/table/wood, -/obj/item/food/pie/cream, -/turf/open/floor/wood, -/area/service/theater) -"qFQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"qGP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/entry) -"qHE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"qHJ" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qIa" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"qIz" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Server Access"; - req_access_txt = "30" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server) -"qIY" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm/directional/north, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"qLf" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/library, -/turf/open/floor/engine/cult, -/area/service/library) -"qLm" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"qLx" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cytologylockdown"; - name = "Cytology Lockdown" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"qLZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"qMs" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/aft) -"qNp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"qNO" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"qPL" = ( -/obj/machinery/pinpointer_dispenser, -/turf/closed/wall, -/area/cargo/qm) -"qQc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/computer/operating{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"qQr" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"qQw" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qQE" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = 6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_x = -6 - }, -/obj/item/cartridge/signal/toxins{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"qQP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"qRr" = ( -/obj/machinery/flasher/portable, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_x = 30 - }, -/obj/machinery/camera{ - c_tag = "Security - Secure Gear Storage"; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"qRO" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/service/bar) -"qRQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"qRW" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"qSq" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"qTc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"qTL" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/item/food/grown/banana, -/turf/open/floor/grass, -/area/medical/virology) -"qUk" = ( -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qUR" = ( -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"qVp" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"qVW" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"qWw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/botanist, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"qWF" = ( -/obj/structure/cable, -/obj/structure/bed/roller, -/turf/open/floor/plasteel, -/area/security/prison) -"qXR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 26 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"qYi" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/spawner/lootdrop/maintenance/three, -/turf/open/floor/plating, -/area/maintenance/starboard) -"qYo" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/plasticflaps/opaque, -/turf/open/floor/plating, -/area/cargo/qm) -"qYs" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = 30 - }, -/obj/machinery/keycard_auth{ - pixel_x = -26; - pixel_y = 23 - }, -/obj/machinery/button/door{ - id = "hosspace"; - name = "Space Shutters Control"; - pixel_x = -26; - pixel_y = 34 - }, -/obj/item/radio/intercom{ - pixel_x = -29; - pixel_y = -10 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"qYx" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"qZf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"qZu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"rac" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"raA" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"raM" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/structure/cable, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"raN" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"raW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"rbG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"rch" = ( -/turf/closed/wall/mineral/plastitanium, -/area/security/prison) -"rcr" = ( -/obj/structure/cable, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/plasteel, -/area/security/main) -"rcH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Hydroponics Backroom"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"rdm" = ( -/obj/structure/cable, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"rdo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"rdt" = ( -/obj/machinery/button/door{ - id = "prisonereducation"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"rdB" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/medical/morgue{ - pixel_x = -4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"rdZ" = ( -/obj/structure/cable, -/obj/effect/landmark/start/scientist, -/obj/effect/turf_decal/siding/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"rel" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/rack, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"ren" = ( -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"reI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"reQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rfU" = ( -/obj/structure/table/wood, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/storage/photo_album/bar, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/wood, -/area/service/bar) -"rgz" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/science/xenobiology) -"rgD" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/medical/virology) -"rhN" = ( -/obj/machinery/light_switch{ - pixel_x = -22; - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"rhT" = ( -/turf/closed/wall, -/area/maintenance/department/science/xenobiology) -"rig" = ( -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"rij" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"riE" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/cargo/storage) -"riF" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"riP" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rji" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/matches{ - pixel_y = 5 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"rjm" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"rjF" = ( -/obj/machinery/suit_storage_unit/exploration, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"rjI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/geneticist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"rjV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table/reinforced, -/obj/item/clipboard{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/folder/yellow{ - pixel_x = 4 - }, -/obj/machinery/requests_console{ - department = "Engineering"; - departmentType = 3; - name = "Engineering RC"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rky" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/court{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"rlb" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/binary/pump/on, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"rli" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/westleft{ - dir = 2; - name = "Cargo Desk"; - req_access_txt = "50" - }, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 6 - }, -/obj/item/paper/crumpled{ - pixel_x = 7 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"rmg" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/stamp/rd, -/obj/item/toy/figure/rd{ - pixel_y = 10 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"rmM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"rmY" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"rnj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - dir = 1; - name = "Kitchen Window"; - req_access_txt = "28" - }, -/obj/machinery/door/firedoor, -/obj/item/paper, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_service"; - name = "Service Shutter" - }, -/obj/item/pen, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rnM" = ( -/obj/machinery/computer/nanite_chamber_control{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Science Nanites Lab"; - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/nanite) -"rnV" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/cytology) -"ror" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"roZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"rpD" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/science/mixing) -"rpL" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/solars/port/aft) -"rpQ" = ( -/obj/machinery/door/poddoor/preopen{ - id = "Prison Gate"; - name = "Security Blast Door" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"rqI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rqO" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/security/glass{ - id_tag = "outerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/brig) -"rqS" = ( -/obj/machinery/vendor/exploration, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"rqW" = ( -/obj/structure/table/wood, -/obj/item/staff/broom, -/obj/item/wrench, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/sign/poster/random{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/theater) -"rrB" = ( -/turf/closed/wall, -/area/commons/vacant_room/commissary) -"rrJ" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"rtp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"rty" = ( -/obj/effect/loot_site_spawner, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"rtU" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"rtW" = ( -/obj/structure/table/wood, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = -3; - pixel_y = 5 - }, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"rtZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/smartfridge/petri/preloaded, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"rue" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"ruu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"ruD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"ruM" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ruP" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"rvk" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"rvS" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"rwR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"rxn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rxD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"ryi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ryn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ryq" = ( -/obj/machinery/camera{ - c_tag = "Science Toxins Secure"; - dir = 4 - }, -/obj/structure/filingcabinet/chestdrawer, -/obj/item/radio/intercom{ - pixel_x = -28; - pixel_y = -9 - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"ryw" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"rzE" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"rzZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/computer/rdservercontrol{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/dark, -/area/science/server) -"rAF" = ( -/turf/closed/wall/r_wall, -/area/medical/chemistry) -"rAW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"rBn" = ( -/obj/item/crowbar, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard) -"rBy" = ( -/obj/machinery/biogenerator, -/turf/closed/wall, -/area/hallway/secondary/service) -"rDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"rDF" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"rDG" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"rEd" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 13 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"rEy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"rEU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/radio/intercom{ - dir = 4; - pixel_x = 31; - pixel_y = 27 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"rFa" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"rGw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Foyer - Shared Storage"; - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) -"rGW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rHA" = ( -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"rID" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rJk" = ( -/obj/machinery/door/window/southleft{ - name = "Maximum Security Test Chamber"; - req_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "Xenolab"; - name = "test chamber blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"rJm" = ( -/obj/structure/cable, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker, -/obj/item/reagent_containers/syringe, -/obj/item/reagent_containers/dropper, -/obj/machinery/camera{ - c_tag = "Virology Isolation B"; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"rJp" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 32; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/storage) -"rJv" = ( -/turf/open/floor/plating, -/area/hallway/primary/port) -"rJH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel/white/side, -/area/science/research) -"rKh" = ( -/obj/machinery/computer/rdconsole{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"rKA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/lab) -"rKK" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"rKS" = ( -/turf/closed/wall, -/area/medical/surgery/room_c) -"rLg" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/commons/storage/tcom) -"rMb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/rack, -/obj/item/roller, -/obj/item/roller, -/obj/item/toy/figure/md, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"rMg" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"rNJ" = ( -/obj/structure/closet/bombcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"rNZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"rOF" = ( -/obj/effect/landmark/start/bartender, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/bar) -"rPb" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/bar) -"rPm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Science Research"; - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/lab) -"rQw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"rQQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"rRk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"rRq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, -/turf/closed/wall, -/area/service/janitor) -"rRu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rSR" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rTa" = ( -/obj/machinery/door/airlock{ - name = "Service Hall"; - req_access_txt = "null"; - req_one_access_txt = "25;26;35;28;22;37;46;38;70" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/unres{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rTl" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/closet/l3closet, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"rTr" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"rTC" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"rUF" = ( -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"rUK" = ( -/turf/closed/wall, -/area/service/kitchen/coldroom) -"rUZ" = ( -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/effect/turf_decal/arrows/white{ - color = "#0000FF"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"rVb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"rVd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/checkpoint/medical) -"rVn" = ( -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"rWd" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"rWg" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rWp" = ( -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plating, -/area/maintenance/starboard) -"rWs" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/storage/box/lights/mixed, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/cultivator, -/obj/item/clothing/head/chefhat, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera{ - c_tag = "Service - Starboard"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"rXb" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/turf/open/floor/plasteel/white, -/area/medical/paramedic) -"rXc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"rXe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/westleft{ - dir = 4; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/obj/item/folder, -/obj/item/pen, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"rXn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"rXo" = ( -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/effect/turf_decal/siding, -/turf/open/floor/plasteel, -/area/science/lab) -"rXN" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"rYl" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/service/library) -"rYC" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/starboard/secondary) -"rYV" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"rZw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"sad" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"sao" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"saC" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"saJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdtoxins"; - name = "Toxins Lab Shutters" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"saV" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"scn" = ( -/obj/machinery/door/poddoor/shutters{ - id = "visitation"; - name = "Visitation Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/prison) -"scp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/carpet, -/area/service/theater) -"scu" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"scO" = ( -/obj/machinery/door/poddoor/shutters{ - id = "toxinsaccess"; - name = "Toxins Access" - }, -/turf/open/floor/plasteel/white, -/area/science/storage) -"scY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/medical/virology) -"sdp" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"sdA" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"sdJ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"sdT" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera{ - c_tag = "Prison Cafeteria"; - dir = 4; - network = list("ss13","prison") - }, -/obj/item/food/energybar, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sdU" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"sen" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/machinery/power/apc/auto_name/north, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/airalarm/directional/east, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"seP" = ( -/turf/closed/wall, -/area/medical/patients_rooms) -"sfD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/grass, -/area/medical/virology) -"sfI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sfJ" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/electropack, -/obj/structure/table, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"sfQ" = ( -/obj/structure/closet, -/obj/item/extinguisher, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sht" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"shE" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"shH" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Science Entry"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/science/research) -"siF" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"sjs" = ( -/obj/machinery/disposal/delivery_chute{ - dir = 1; - name = "Science Deliveries" - }, -/obj/structure/plasticflaps/opaque{ - name = "Science Deliveries" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"sjB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom/directional/north, -/obj/machinery/camera/autoname, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"sjZ" = ( -/obj/structure/sign/directions/evac, -/turf/closed/wall, -/area/maintenance/aft/secondary) -"skm" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"skv" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard) -"slf" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sls" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"sme" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"smJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"smK" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"smL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"smS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility/full, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"snb" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall, -/area/cargo/exploration_dock) -"snF" = ( -/obj/structure/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/brig) -"snH" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"snP" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sof" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/line, -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating/airless, -/area/maintenance/space_hut) -"spa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Chemistry West"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"spp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/atmos) -"spr" = ( -/turf/open/floor/plating, -/area/science/mixing) -"sqe" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/rack, -/obj/item/tank/internals/anesthetic, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/medical/abandoned) -"sqf" = ( -/obj/structure/table, -/obj/item/folder/blue{ - pixel_x = -18; - pixel_y = 3 - }, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 7 - }, -/obj/item/pen{ - pixel_x = 3; - pixel_y = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"sqr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "medsecprivacy"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/security/checkpoint/medical) -"sqy" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"sqU" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sqV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/chem_master, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"srC" = ( -/obj/structure/table, -/obj/item/crowbar, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"srE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"srI" = ( -/obj/item/retractor, -/obj/item/hemostat{ - pixel_x = -10 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"srW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/item/broken_bottle{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/starboard) -"ssm" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/department/science/xenobiology) -"sst" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery C"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"sta" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/paicard, -/turf/open/floor/plasteel/white, -/area/science/research) -"suh" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"suP" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 1 - }, -/turf/open/space/basic, -/area/medical/virology) -"suR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"suV" = ( -/obj/machinery/airalarm/directional/north, -/obj/machinery/button/door{ - id = "roboticsprivacy"; - name = "Robotics Privacy Control"; - pixel_x = -26; - pixel_y = 26; - req_access_txt = "29" - }, -/obj/machinery/vending/wardrobe/robo_wardrobe, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"svg" = ( -/obj/structure/lattice, -/obj/structure/girder/reinforced, -/turf/open/space/basic, -/area/space/nearstation) -"svh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"svl" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"svt" = ( -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/service/bar) -"swf" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"sxG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/service/theater) -"sxS" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;39" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"syh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"syw" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"sze" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"szy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"sAk" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sBb" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"sBe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 4 - }, -/obj/effect/turf_decal/siding/red{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"sBj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/lab) -"sBo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/service/library) -"sBW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/mechbay) -"sCT" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"sDU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"sEs" = ( -/obj/effect/turf_decal/siding, -/obj/machinery/newscaster{ - pixel_x = -32 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/lab) -"sEC" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"sEG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"sFe" = ( -/obj/machinery/camera{ - c_tag = "Holodeck Control"; - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/commons/fitness/recreation) -"sFV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"sGh" = ( -/obj/machinery/door/airlock/external{ - name = "Solar Maintenance"; - req_access_txt = "10; 13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"sHq" = ( -/obj/machinery/meter, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"sIe" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"sIi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"sIr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"sIA" = ( -/obj/machinery/door/airlock/external{ - name = "Transport Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"sIB" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/floor/plasteel/white, -/area/science/research) -"sJV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/photocopier{ - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"sKL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"sKZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/table/reinforced, -/obj/item/lighter, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"sLY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"sMM" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/purple/filled/line{ - dir = 5 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's RC"; - pixel_x = 32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/command/heads_quarters/rd) -"sMV" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/port) -"sMY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/starboard/aft) -"sNr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"sNv" = ( -/obj/structure/statue/sandstone/assistant, -/turf/open/floor/plating, -/area/space/nearstation) -"sOe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/research) -"sOg" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/starboard/aft) -"sPc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"sQe" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/engineering/main) -"sQu" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"sQv" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/cytology) -"sQG" = ( -/obj/structure/table, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/mask/gas/sechailer{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/assembly/flash/handheld{ - pixel_x = 6; - pixel_y = 13 - }, -/turf/open/floor/plasteel/dark, -/area/security/main) -"sQR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"sRB" = ( -/mob/living/carbon/human/species/monkey, -/turf/open/floor/grass, -/area/science/genetics) -"sRH" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"sSr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/hatch{ - name = "MiniSat Access"; - req_one_access_txt = "32;19" - }, -/obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"sTb" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"sTf" = ( -/obj/item/seeds/watermelon, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"sTK" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"sTV" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"sUG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engineering/main) -"sUX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "cytologylockdown"; - name = "Cytology Lockdown"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"sVa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"sVe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/belt/utility, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"sVy" = ( -/obj/structure/closet/secure_closet/cytology, -/obj/effect/turf_decal/stripes/white/box, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"sVR" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Prison Cafeteria" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"sWX" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance"; - req_access_txt = "33" - }, -/turf/open/floor/plating, -/area/maintenance/department/medical/central) -"sYs" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/tank_holder/extinguisher, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"sYH" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"sYQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"sZl" = ( -/obj/structure/table/glass, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"sZs" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard) -"sZw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"sZA" = ( -/obj/machinery/light, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/storage) -"taf" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Containment Cells"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tag" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/server) -"tay" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"tbe" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tbu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tbC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=6-Port-Central"; - location = "5-Customs" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"tbW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"tcR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/wood, -/area/service/bar) -"tcW" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Lab Maintenance"; - req_access_txt = "8" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"tdH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"ted" = ( -/obj/effect/turf_decal/trimline/brown/warning{ - dir = 10 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"tew" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -28; - pixel_y = -10 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"teN" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/starboard) -"tfK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/range) -"tgb" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/storage) -"tgc" = ( -/obj/structure/rack, -/obj/item/restraints/handcuffs{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/restraints/handcuffs, -/obj/item/restraints/handcuffs{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"tgQ" = ( -/obj/structure/water_source/puddle, -/obj/structure/flora/junglebush/large{ - pixel_y = 0 - }, -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/virology) -"thI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"tir" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/table/reinforced, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tiy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"tiC" = ( -/obj/item/stack/cable_coil, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"tjc" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/toy/figure/virologist{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tje" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tll" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tls" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"tml" = ( -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/box, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"tmp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tmN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/filingcabinet, -/obj/machinery/computer/security/telescreen/minisat{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"tnI" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"tnM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xenobio1"; - layer = 3.3; - name = "Xenobio Pen 1 Blast Doors"; - pixel_y = 1; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"toP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"tpc" = ( -/obj/structure/fans/tiny/invisible, -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"tqi" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/door/poddoor/preopen{ - id = "surgerya"; - name = "privacy shutter" - }, -/turf/open/floor/plating, -/area/medical/surgery) -"tqm" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"tqI" = ( -/turf/closed/wall, -/area/engineering/break_room) -"tqM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tru" = ( -/obj/machinery/computer/warrant{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom) -"trJ" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/grass, -/area/security/prison) -"trV" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/siding/purple{ - dir = 6 - }, -/obj/machinery/power/apc/auto_name/east, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"tsg" = ( -/obj/structure/table/reinforced, -/obj/item/stack/sheet/plasteel{ - amount = 15 - }, -/obj/item/paicard{ - pixel_x = -15 - }, -/obj/machinery/requests_console{ - department = "Robotics Lab"; - name = "Robotics RC"; - pixel_y = 32; - receive_ore_updates = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 5; - pixel_y = 7 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tsx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tsL" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/chemistry) -"tsU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"tto" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ttK" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"ttZ" = ( -/obj/machinery/airalarm/directional/west, -/obj/structure/table, -/obj/item/crowbar, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/storage) -"tuW" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tvA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"tvV" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"twp" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"tws" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 2 - }, -/turf/open/floor/wood, -/area/service/theater) -"txO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"txP" = ( -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/dark, -/area/security/main) -"tyf" = ( -/obj/item/clothing/head/fedora, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/service/bar) -"tyh" = ( -/obj/structure/sign/map/right{ - desc = "A framed picture of the station. Clockwise from security at the top (red), you see engineering (yellow), science (purple), escape (red and white), medbay (green), arrivals (blue and white), and finally cargo (brown)."; - icon_state = "map-right-MS"; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tyk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"tyz" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 12 - }, -/obj/structure/toilet{ - pixel_y = 8 - }, -/obj/structure/light_construct/small, -/turf/open/floor/plating, -/area/maintenance/aft) -"tyJ" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/machinery/exoscanner, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"tyZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/warning{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"tzq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"tzy" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"tAh" = ( -/obj/item/radio/intercom{ - pixel_x = -29 - }, -/obj/machinery/piratepad/civilian, -/obj/effect/turf_decal/bot_white, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Fore - Port Corner"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"tAG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tAN" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/floor/wood, -/area/security/main) -"tBm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"tBJ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"tCi" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"tCx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/junction{ - dir = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"tCB" = ( -/obj/structure/closet/secure_closet/bar{ - pixel_x = -3; - pixel_y = -1; - req_access_txt = "25" - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"tDj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tDv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/box/corners{ - pixel_x = -25; - pixel_y = 25 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8; - pixel_x = 25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tDC" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"tDM" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/engineering/glass/critical{ - heat_proof = 1; - name = "Supermatter Chamber"; - req_one_access_txt = "10;24" - }, -/turf/open/floor/engine, -/area/engineering/supermatter) -"tDQ" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/medbay/central) -"tEu" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"tEy" = ( -/obj/effect/turf_decal/tile/red, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"tFJ" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"tFM" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 14 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"tFU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"tGe" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engineering/storage_shared) -"tGq" = ( -/obj/machinery/icecream_vat, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"tHY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"tIo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"tJs" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"tJz" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "kitchen_counter"; - name = "Kitchen Counter Shutters" - }, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"tKb" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/computer/security/telescreen/toxins{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"tKc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/color_adapter, -/turf/open/floor/plasteel/dark, -/area/engineering/main) -"tKF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tLs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"tLz" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Science Research Office" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"tLG" = ( -/obj/item/assembly/prox_sensor{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8; - pixel_y = 9 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 9; - pixel_y = -2 - }, -/obj/item/assembly/prox_sensor{ - pixel_y = 2 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"tMJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"tMM" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"tMR" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"tMX" = ( -/obj/structure/closet/crate, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/item/stack/license_plates/empty/fifty, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/plating, -/area/security/prison) -"tNc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -26 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"tNn" = ( -/obj/machinery/door/airlock/security{ - id_tag = "IsolationCell"; - name = "Isolation Cell"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/prison) -"tNJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Cryogenics"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"tNR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/closed/wall, -/area/maintenance/starboard) -"tOc" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"tOo" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"tOw" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"tOL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/security/prison) -"tPi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"tPk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/commons/locker) -"tPD" = ( -/obj/structure/table, -/obj/item/food/grown/poppy/lily, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tPH" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"tQf" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tQN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tQZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/lab) -"tRQ" = ( -/obj/item/stack/cable_coil, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solars/port/fore) -"tRX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/scrubber/huge, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"tSO" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/aft) -"tSU" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"tTw" = ( -/obj/structure/chair/stool, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"tTJ" = ( -/obj/machinery/mass_driver/toxins, -/turf/open/floor/plating, -/area/science/mixing) -"tUa" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"tUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"tUN" = ( -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"tWl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"tWU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall, -/area/medical/sleeper) -"tXF" = ( -/obj/item/kirbyplants/random, -/obj/machinery/airalarm/directional/north, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"tXX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/carpet, -/area/service/theater) -"tYi" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/radio/intercom{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"tYx" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"tYD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"tYS" = ( -/obj/structure/sign/poster/random{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"tZg" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/machinery/light_switch{ - pixel_x = 6; - pixel_y = -25 - }, -/turf/open/floor/wood, -/area/service/theater) -"uax" = ( -/obj/effect/landmark/start/roboticist, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"uaC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ubj" = ( -/obj/effect/turf_decal/arrows/red{ - pixel_y = 15 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"ubD" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"ubZ" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"uce" = ( -/obj/effect/loot_site_spawner, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ucj" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight, -/obj/item/analyzer{ - pixel_x = 7; - pixel_y = 3 - }, -/obj/item/assembly/signaler, -/obj/item/stack/rods{ - amount = 25 - }, -/obj/item/stack/cable_coil, -/obj/item/gps, -/obj/structure/cable, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/gps, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"ucI" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"ucX" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/wood, -/area/service/theater) -"udc" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"ueg" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"uet" = ( -/obj/item/bot_assembly/floorbot{ - created_name = "FloorDiffBot"; - desc = "Why won't it work?"; - name = "FloorDiffBot" - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ufe" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/piratepad_control/civilian{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/brown/filled/line, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ufS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint/science) -"ugf" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"ugk" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Medbay Surgery C"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/power/apc/auto_name/west, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"ugo" = ( -/obj/machinery/airalarm/directional/south, -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"uhd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"uhe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 8 - }, -/obj/effect/turf_decal/siding/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, -/turf/open/floor/plasteel/dark/telecomms, -/area/science/server) -"uhk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"uiN" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uiO" = ( -/obj/effect/turf_decal/trimline/blue/filled/line, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"uiS" = ( -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"uiT" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/holofloor/dark, -/area/science/cytology) -"ujz" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"uko" = ( -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"ukp" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"ulz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"umb" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"umI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/siding/purple{ - dir = 10 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - departmentType = 5; - name = "Genetics RC"; - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"unp" = ( -/obj/structure/cable, -/obj/structure/sign/poster/ripped{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"unx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"uow" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"upe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"upm" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 10 - }, -/turf/open/floor/plasteel/checker, -/area/science/research) -"upz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/button/door{ - id = "cytologylockdown"; - name = "Cytology Lockdown"; - pixel_x = -24; - pixel_y = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"upG" = ( -/obj/structure/cable, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"uqQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"uqX" = ( -/obj/structure/cable, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"ura" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ure" = ( -/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"urv" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/security/prison) -"urx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar"; - req_access_txt = "25" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/service/bar) -"urI" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot_white, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"usN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"utH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8; - pixel_x = 25; - pixel_y = 25 - }, -/obj/effect/turf_decal/box/corners{ - pixel_x = -25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"utN" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/obj/effect/turf_decal/box/corners{ - dir = 1; - pixel_x = 25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uuj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uup" = ( -/obj/structure/table, -/obj/item/clothing/suit/cyborg_suit, -/obj/item/clothing/mask/gas/cyborg, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uus" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"uuS" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -4; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"uvg" = ( -/obj/effect/landmark/start/head_of_security, -/obj/structure/chair/comfy/black, -/turf/open/floor/plasteel/dark, -/area/security/main) -"uvH" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"uwX" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law{ - pixel_x = 9; - pixel_y = 4 - }, -/obj/structure/cable, -/obj/item/radio{ - pixel_x = -6; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"uxd" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/bartender, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/service/bar) -"uxB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"uyw" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/service/bar) -"uyE" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/trimline/purple/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uzf" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uzn" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uzx" = ( -/obj/effect/turf_decal/trimline/brown/warning, -/obj/effect/turf_decal/trimline/brown/warning, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"uzE" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/cytology) -"uzH" = ( -/obj/machinery/camera{ - c_tag = "Science Firing Range" - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"uzI" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/theater) -"uzM" = ( -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uzR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/west, -/obj/structure/cable, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"uAL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/light_construct{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"uBx" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"uBB" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uCb" = ( -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"uDx" = ( -/obj/structure/lattice, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/hos) -"uDK" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Research Maintenance"; - req_access_txt = "47" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/science/misc_lab) -"uDW" = ( -/obj/effect/turf_decal/trimline/purple/filled/line, -/obj/effect/turf_decal/trimline/brown/filled/warning, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"uEi" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uEG" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"uFb" = ( -/obj/structure/cable, -/turf/open/floor/grass, -/area/medical/virology) -"uFZ" = ( -/obj/machinery/nanite_programmer, -/turf/open/floor/circuit/green, -/area/science/nanite) -"uGa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/transit_tube/crossing/horizontal, -/obj/structure/cable, -/turf/open/space/basic, -/area/space/nearstation) -"uGf" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"uGy" = ( -/obj/machinery/power/apc/auto_name/north, -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/range) -"uGJ" = ( -/obj/machinery/computer/mecha{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/science) -"uGO" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/firstaid/toxin{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/book/manual/wiki/toxins{ - pixel_x = 4; - pixel_y = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"uGS" = ( -/turf/closed/wall, -/area/medical/pharmacy) -"uHp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"uHM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft/secondary) -"uIw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/engine, -/area/engineering/main) -"uIL" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uIS" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uJl" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/central) -"uJy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"uKt" = ( -/obj/effect/turf_decal/trimline/blue/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/purple/corner, -/obj/machinery/airalarm/directional/east, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple/corner{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"uLc" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"uLp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Cold Room"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/structure/cable, -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/machinery/power/apc/auto_name/west, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"uLY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"uLZ" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/service/bar) -"uMh" = ( -/obj/structure/cable, -/obj/item/radio/intercom{ - pixel_y = 25 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"uNe" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/security/glass{ - id_tag = "innerbrig"; - name = "Brig"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"uNv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"uOc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"uPM" = ( -/obj/structure/sign/painting/library{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/service/library) -"uQa" = ( -/obj/machinery/light_switch{ - pixel_x = 8; - pixel_y = 28 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/pickaxe/mini, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"uQc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"uQh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/rack, -/obj/item/restraints/handcuffs, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "rdrnd"; - name = "Research and Development Containment Control"; - pixel_x = -25; - pixel_y = 7; - req_access_txt = "63" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"uQj" = ( -/obj/item/wrench, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"uRe" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"uRv" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"uSw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"uSK" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"uTm" = ( -/obj/item/kirbyplants/dead, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/obj/effect/turf_decal/siding/blue/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"uTI" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"uTO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"uVk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"uVH" = ( -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"uWc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"uWm" = ( -/obj/structure/flora/rock/jungle, -/turf/open/floor/grass, -/area/medical/virology) -"uWn" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/plasma, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"uWH" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Fuel Closet"; - req_one_access_txt = "12;35" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"uWT" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"uWX" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/berry, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"uXd" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"uYd" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/stack/cable_coil/five, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"uYi" = ( -/obj/structure/table/wood, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"uYE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"uYG" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"uYL" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"uYR" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"uZe" = ( -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/obj/machinery/computer/rdconsole, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"uZY" = ( -/obj/machinery/nanite_chamber, -/turf/open/floor/circuit/green, -/area/science/nanite) -"vaT" = ( -/obj/structure/cable, -/turf/open/floor/goonplaque, -/area/hallway/primary/port) -"vaY" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/effect/turf_decal/trimline/brown/warning, -/obj/machinery/camera/autoname, -/obj/item/reagent_containers/glass/rag, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"vcm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vcH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/item/cigbutt{ - pixel_y = 7 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"vcS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"vdw" = ( -/obj/machinery/power/apc/auto_name/south, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/rack, -/obj/item/storage/toolbox/electrical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"vdD" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Test Lab"; - req_access_txt = "8" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/storage) -"veQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"veU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"vfd" = ( -/obj/item/assembly/timer{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/assembly/timer{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/assembly/timer, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/bot, -/obj/item/radio/intercom{ - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"vfl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/bodycontainer/morgue{ - dir = 2 - }, -/obj/effect/turf_decal/stripes/white/full, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"vgd" = ( -/obj/item/taperecorder, -/obj/item/camera, -/obj/structure/table/wood, -/obj/item/radio/intercom{ - pixel_y = -29 - }, -/obj/structure/sign/painting/library_private{ - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/engine/cult, -/area/service/library) -"vhx" = ( -/obj/machinery/computer/pandemic, -/obj/structure/cable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"viE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"viH" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/taperecorder{ - pixel_x = 6; - pixel_y = 10 - }, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"viR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/research/explosive_compressor, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vjb" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/cytology) -"vjc" = ( -/obj/structure/cable, -/obj/machinery/airalarm{ - pixel_y = 22 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"vjl" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/science/lab) -"vju" = ( -/obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, -/turf/open/floor/plasteel, -/area/cargo/sorting) -"vkR" = ( -/obj/machinery/door/poddoor/preopen{ - id = "medbreakroom"; - name = "privacy shutter" - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/medical/break_room) -"vmd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/research) -"vmB" = ( -/obj/effect/decal/cleanable/insectguts, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"vnm" = ( -/obj/structure/cable, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"vnv" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table, -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"vnH" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"vnL" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"vnX" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vnZ" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vou" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/red, -/turf/open/floor/plasteel, -/area/security/checkpoint/science) -"voJ" = ( -/obj/machinery/vending/cola/red, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"voU" = ( -/obj/structure/closet/secure_closet/atmospherics, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"voX" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/engineering/storage_shared) -"vpF" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/plant_analyzer, -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vpX" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/construction/storage_wing) -"vqh" = ( -/turf/closed/wall/r_wall, -/area/science/cytology) -"vqw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"vqC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"vrI" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = -32 - }, -/obj/structure/sink{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"vrL" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"vrW" = ( -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"vsn" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "surgerya"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"vso" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/service/kitchen/coldroom) -"vsp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bodycontainer/morgue, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/security/brig) -"vty" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"vug" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27; - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"vvb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "chem_lockdown"; - name = "chemistry lockdown control"; - pixel_x = 26; - pixel_y = 26; - req_access_txt = "5; 69" - }, -/obj/machinery/light_switch{ - pixel_x = 26; - pixel_y = 38 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"vvJ" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "hosspace"; - name = "Space Shutters" - }, -/turf/open/floor/plating, -/area/command/heads_quarters/hos) -"vvQ" = ( -/obj/structure/closet/radiation, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"vwi" = ( -/obj/structure/girder, -/obj/structure/grille, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"vxU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem_lockdown"; - name = "Chemistry shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"vyQ" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/caution/stand_clear/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"vyS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engineering/storage_shared) -"vzK" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"vzO" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vAj" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/displaycase/forsale/kitchen{ - pixel_y = 8 - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -31 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"vAn" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vAs" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"vAE" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"vAO" = ( -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;5;33;69" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/science/central) -"vBx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"vBQ" = ( -/obj/machinery/door/airlock/atmos/glass{ - name = "Atmospherics Testing Room"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"vCd" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"vCn" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/effect/turf_decal/siding{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/lab) -"vCI" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Cytology Lab - Primary"; - dir = 4; - network = list("ss13","rd") - }, -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"vCZ" = ( -/obj/machinery/button/door{ - id = "xenobio4"; - layer = 3.3; - name = "Xenobio Pen 4 Blast Doors"; - pixel_y = 1; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vDb" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"vDg" = ( -/obj/structure/disposaloutlet{ - desc = "An outlet for the pneumatic disposal system. This one seems designed for rapid corpse disposal."; - dir = 8; - name = "rapid corpse mover 9000" - }, -/obj/structure/window/reinforced, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"vDQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/service/bar) -"vEB" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - name = "plasma mixer" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"vEI" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Science Toxins Launch"; - dir = 1 - }, -/obj/machinery/computer/pod/old/mass_driver_controller/toxinsdriver{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vFd" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_x = -26; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"vFS" = ( -/obj/structure/closet/toolcloset, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engineering/storage_shared) -"vGs" = ( -/obj/item/pushbroom, -/obj/structure/closet{ - name = "janitorial supplies" - }, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"vGw" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vGB" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/engine, -/area/command/heads_quarters/rd) -"vHt" = ( -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"vHP" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vIc" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/box/corners{ - dir = 4; - pixel_x = -25; - pixel_y = -10 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vJJ" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vKq" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Genetics Maintenance"; - req_access_txt = "9" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"vKx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) -"vKG" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/sign/departments/court{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/fore) -"vKV" = ( -/turf/open/floor/plasteel/dark, -/area/security/main) -"vLs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vLB" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 9 - }, -/obj/item/stock_parts/matter_bin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/turf/open/floor/plasteel, -/area/science/lab) -"vLD" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space) -"vLG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"vMa" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"vMD" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy2"; - name = "Robotics Shutters" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/robotics/lab) -"vNu" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"vNJ" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Access"; - req_access_txt = "39" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vNS" = ( -/obj/item/target/syndicate, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"vOa" = ( -/obj/machinery/light_switch{ - pixel_x = -23; - pixel_y = -6 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Fore"; - dir = 4; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"vOg" = ( -/obj/machinery/door/airlock/hatch{ - name = "Secure Pen"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/engine, -/area/science/cytology) -"vOs" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/yellow/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"vOy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/wrench, -/obj/machinery/camera{ - c_tag = "Science Toxins Test"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/mixing) -"vOC" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"vPe" = ( -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Primary Hallway - Aft-Starboard"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vPx" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"vPC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vPM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/starboard/aft) -"vQv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"vSn" = ( -/obj/effect/turf_decal/trimline/green/filled/corner{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"vSo" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"vSz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"vTd" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Freezer"; - req_access_txt = "5" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"vTk" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"vTs" = ( -/obj/machinery/vending/tool, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"vTA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/misc_lab/range) -"vTZ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"vUg" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"vUI" = ( -/obj/structure/table/glass, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"vUQ" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"vVl" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 5 - }, -/obj/structure/cable, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vVt" = ( -/obj/structure/table, -/obj/item/storage/bag/tray/cafeteria, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"vVC" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"vVP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/white/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"vWu" = ( -/obj/docking_port/stationary/random{ - dir = 4; - id = "pod_4_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space) -"vWK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"vWQ" = ( -/obj/machinery/vending/modularpc, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/research) -"vXi" = ( -/obj/machinery/button/door{ - id = "xenobio6"; - layer = 3.3; - name = "Xenobio Pen 6 Blast Doors"; - pixel_y = 1; - req_access_txt = "55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"vXl" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 5 - }, -/turf/open/floor/engine, -/area/science/cytology) -"vXN" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel, -/area/cargo/storage) -"vYK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/airalarm/directional/east, -/turf/open/floor/plasteel/dark, -/area/science/storage) -"vZX" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"waj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wbd" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/effect/turf_decal/siding/thinplating/dark{ - dir = 9 - }, -/turf/open/floor/plasteel/checker, -/area/science/research) -"wbm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdrnd"; - name = "Research and Development Shutters" - }, -/turf/open/floor/plating, -/area/science/lab) -"wbF" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wbM" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wcX" = ( -/obj/structure/table/wood/poker, -/obj/item/ashtray, -/turf/open/floor/wood, -/area/service/bar) -"wdc" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wdk" = ( -/obj/item/mop/cyborg, -/obj/structure/mopbucket, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"wdq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"wdC" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wdD" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "xenobio2"; - layer = 3.3; - name = "Xenobio Pen 2 Blast Doors"; - pixel_y = 1; - req_access_txt = "55" - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/table, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"wdI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wen" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"weu" = ( -/obj/effect/turf_decal, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wfd" = ( -/obj/effect/spawner/lootdrop/donkpockets, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"wfq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet/green, -/area/maintenance/port/aft) -"wfA" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"wfI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/griddle, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"wgg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "rdgene2"; - name = "Genetics Lab Shutters" - }, -/turf/open/floor/plating, -/area/science/genetics) -"wgD" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wgP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wgX" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "packageExternal" - }, -/obj/structure/plasticflaps/opaque, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating, -/area/cargo/qm) -"wgZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Medbay Ward"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"whI" = ( -/obj/structure/sink/kitchen{ - dir = 8; - pixel_x = 14 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"wih" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = -29 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"wij" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wim" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Foyer"; - req_one_access_txt = "32;19" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"wiy" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"wiG" = ( -/obj/structure/table, -/obj/effect/turf_decal/siding{ - dir = 8 - }, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/wrench, -/obj/item/clothing/glasses/welding, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"wiZ" = ( -/obj/machinery/door/airlock/external{ - name = "Security External Airlock"; - req_access_txt = "1" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/security/prison) -"wjC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"wjE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wjF" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -8; - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"wjK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 5; - name = "Robotics RC"; - pixel_x = -30; - receive_ore_updates = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"wjN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/bar) -"wmj" = ( -/obj/structure/closet/secure_closet/hos, -/obj/item/clothing/shoes/cowboy/black, -/obj/machinery/camera{ - c_tag = "Head of Security's Office" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/hos) -"wmt" = ( -/obj/effect/decal/cleanable/food/flour, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"woe" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"woz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/maintenance/port/aft) -"wps" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Surgery A"; - req_access_txt = "45" - }, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"wpI" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"wqg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"wqm" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/execution/education) -"wqM" = ( -/obj/machinery/camera{ - c_tag = "Science Hallway - Admin"; - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"wrO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/turf/open/floor/wood, -/area/service/bar) -"wsO" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wtq" = ( -/turf/closed/wall, -/area/maintenance/aft/secondary) -"wtJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"wtW" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"wuc" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wvy" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 21 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"wvP" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"wvW" = ( -/obj/item/radio/intercom{ - pixel_y = -30 - }, -/obj/structure/table/reinforced, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/obj/item/clothing/head/welding, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"wwX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"wxc" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wxi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"wxm" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/chem_mass_spec, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wxr" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wyf" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/service/kitchen) -"wym" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;35" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"wyn" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/wrench/medical, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_c) -"wyI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Brig Infirmary Maintenance"; - req_access_txt = "63" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"wzr" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/wood, -/area/service/theater) -"wzA" = ( -/obj/machinery/firealarm{ - pixel_x = -29; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/banner/cargo/mundane, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/brown/filled/corner, -/turf/open/floor/plasteel, -/area/cargo/storage) -"wAb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wAq" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;63;48;50" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel/dark, -/area/hallway/primary/fore) -"wBb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"wBp" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"wBM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/box/corners{ - dir = 8; - pixel_x = 25; - pixel_y = 25 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"wCa" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"wDi" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "49" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor/dark, -/area/cargo/exploration_dock) -"wDJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "roboticsprivacy"; - name = "Robotics Shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"wEy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wFB" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"wFH" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit/departure_lounge) -"wGd" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = -5 - }, -/obj/item/transfer_valve{ - pixel_x = 5 - }, -/obj/item/transfer_valve{ - pixel_x = -9 - }, -/obj/item/transfer_valve{ - pixel_x = 9 - }, -/obj/item/transfer_valve{ - pixel_x = 15 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"wGG" = ( -/obj/structure/sign/poster/contraband/random{ - pixel_y = 32 - }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"wGN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solars/starboard/aft) -"wHc" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"wHj" = ( -/obj/structure/flora/junglebush/c, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/medical/virology) -"wHU" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"wJc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/starboard) -"wKj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wKC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel, -/area/cargo/warehouse) -"wLu" = ( -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_access_txt = "58" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/siding/wood/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"wMq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/processor/slime, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -26; - pixel_y = 23 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"wMR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/wardrobe/science_wardrobe, -/turf/open/floor/plasteel/white, -/area/science/research) -"wMS" = ( -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/science/research) -"wNt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"wNE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/assembly/timer, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/storage/box/shipping, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/commons/storage/primary) -"wNT" = ( -/obj/machinery/holopad, -/obj/effect/landmark/start/scientist, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"wOc" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"wOf" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel/dark, -/area/engineering/atmos) -"wOm" = ( -/obj/structure/table/glass, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology Requests Console"; - pixel_y = -32; - receive_ore_updates = 1 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/folder/white{ - pixel_x = 4; - pixel_y = -3 - }, -/obj/item/pen/red, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"wOn" = ( -/turf/open/floor/carpet/green, -/area/maintenance/port/aft) -"wOA" = ( -/obj/item/dice/d20, -/obj/item/dice, -/obj/structure/table/wood, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/storage/pill_bottle/dice, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/light_construct/small, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wOE" = ( -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"wOX" = ( -/obj/machinery/door/poddoor/shutters/preopen{ - id = "cytologylockdown"; - name = "Cytology Lockdown" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/cytology) -"wOY" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"wPm" = ( -/obj/item/trash/candy, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"wPI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"wPP" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"wQf" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/candle, -/obj/effect/decal/cleanable/dirt/dust, -/obj/item/radio{ - desc = "An old handheld radio. You could use it, if you really wanted to."; - icon_state = "radio"; - name = "old radio"; - pixel_y = 15 - }, -/turf/open/floor/plating, -/area/maintenance/space_hut) -"wQh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"wQr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard) -"wQy" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery) -"wQA" = ( -/turf/closed/wall/r_wall, -/area/science/mixing/chamber) -"wQZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/sign/poster/official/random{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"wRM" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plating, -/area/science/research) -"wSf" = ( -/obj/structure/table/reinforced, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"wSq" = ( -/obj/effect/turf_decal/trimline/purple/corner{ - dir = 1 - }, -/obj/machinery/airalarm/directional/north, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"wTy" = ( -/obj/item/radio/intercom{ - pixel_y = 21 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"wTY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"wTZ" = ( -/obj/machinery/shower{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"wVo" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/port) -"wWj" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/aft) -"wWt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal/patient, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"wWE" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/hallway/secondary/service) -"wXB" = ( -/obj/effect/turf_decal/stripes/white/line{ - dir = 10 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"wXC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal/incinerator) -"wYb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"wYi" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"wYq" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"wZw" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"wZA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"wZN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"xbf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"xbk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xbP" = ( -/obj/machinery/hydroponics/soil, -/obj/item/cultivator, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/turf/open/floor/grass, -/area/security/prison) -"xcw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/cigbutt{ - pixel_x = -6; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"xcN" = ( -/obj/docking_port/stationary/random{ - id = "pod_2_lavaland"; - name = "lavaland" - }, -/turf/open/space/basic, -/area/space) -"xdf" = ( -/obj/structure/table, -/obj/item/storage/box/hug{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/razor{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xdo" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"xdB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"xdW" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/turf/open/floor/plasteel, -/area/service/janitor) -"xel" = ( -/obj/structure/table/reinforced, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/button/door{ - id = "surgeryb"; - name = "Privacy Shutters Control"; - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/medical/surgery/room_b) -"xeG" = ( -/turf/closed/wall/r_wall, -/area/command/heads_quarters/rd) -"xeT" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"xeX" = ( -/obj/machinery/door/window/southleft{ - name = "Permabrig Kitchen" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xfo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Medbay Main Hallway- South"; - dir = 4; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"xfp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/atmos) -"xfr" = ( -/turf/open/floor/plasteel/white, -/area/medical/virology) -"xgQ" = ( -/obj/machinery/chem_heater{ - pixel_x = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) -"xgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"xhc" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/sleeper) -"xjc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"xke" = ( -/obj/structure/bed/roller, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/brig) -"xlK" = ( -/obj/structure/table, -/obj/item/wirecutters, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 10 - }, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/main) -"xlN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/shutters{ - id = "mechbay"; - name = "Mech Bay Shutters" - }, -/obj/machinery/button/door{ - id = "mechbay"; - name = "Mech Bay Shutters Control"; - pixel_x = -26; - req_access_txt = "29" - }, -/turf/open/floor/plasteel, -/area/science/robotics/mechbay) -"xmf" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/white/side{ - dir = 9 - }, -/area/medical/sleeper) -"xmN" = ( -/obj/effect/turf_decal/siding/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"xnx" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/wood, -/area/security/main) -"xoi" = ( -/obj/effect/decal/cleanable/oil/slippery, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display/evac{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"xop" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/service/janitor) -"xoB" = ( -/obj/structure/cable, -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"xoD" = ( -/turf/closed/wall, -/area/science/cytology) -"xoL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/brig) -"xoM" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/science/research) -"xoR" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xoZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xpn" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/maintenance{ - req_one_access_txt = "12;47" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/science/mixing) -"xpu" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/door/airlock/research/glass{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/machinery/door/firedoor, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"xpZ" = ( -/turf/closed/wall, -/area/medical/abandoned) -"xqr" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"xrj" = ( -/turf/closed/wall, -/area/medical/paramedic) -"xrD" = ( -/obj/machinery/holopad, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/side{ - dir = 1 - }, -/area/science/research) -"xrI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/dark, -/area/command/heads_quarters/rd) -"xrL" = ( -/obj/structure/sign/painting/library{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/service/library) -"xsq" = ( -/obj/structure/weightmachine/weightlifter, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/prison) -"xsx" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"xtp" = ( -/obj/structure/table, -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/science/misc_lab) -"xtF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/closed/wall, -/area/maintenance/starboard) -"xtH" = ( -/mob/living/simple_animal/hostile/retaliate/bat/sgt_araneus, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"xuu" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/science/central) -"xuw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xuA" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xvg" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"xvo" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Gamer Lair"; - req_one_access_txt = "12;27" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xwk" = ( -/obj/effect/landmark/start/clown, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/wood, -/area/service/theater) -"xwG" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Library Maintenance"; - req_one_access_txt = "12;37" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/port) -"xxT" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/security/prison) -"xxU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/wood, -/area/service/bar) -"xyp" = ( -/obj/docking_port/stationary{ - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_nw"; - name = "northwest of station"; - width = 23 - }, -/turf/open/space/basic, -/area/space/nearstation) -"xyV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/bedsheet/medical, -/obj/structure/bed, -/obj/structure/curtain, -/turf/open/floor/plasteel/white, -/area/medical/patients_rooms) -"xzi" = ( -/obj/structure/cable, -/obj/machinery/computer/shuttle_flight/mining/common, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"xzs" = ( -/obj/structure/chair/stool{ - name = "Jim Norton's Quebecois Coffee stool" - }, -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/service/cafeteria) -"xzM" = ( -/obj/effect/turf_decal/box, -/obj/structure/cable, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/range) -"xAL" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research) -"xAO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xBk" = ( -/obj/effect/decal/cleanable/dirt/dust, -/obj/structure/closet, -/obj/item/surgicaldrill, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/abandoned) -"xBA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/carpet, -/area/command/heads_quarters/hos) -"xBL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/security/prison) -"xBZ" = ( -/obj/effect/turf_decal/trimline/purple/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/science/research) -"xCf" = ( -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood, -/area/service/cafeteria) -"xCg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, -/area/medical/coldroom) -"xCo" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"xCQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/cargo/storage) -"xCR" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/seeds/carrot, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xDd" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/departments/science{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xDk" = ( -/obj/machinery/biogenerator, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xDA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"xDR" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/engineering/atmos) -"xEf" = ( -/obj/structure/table, -/obj/item/flashlight/lamp{ - on = 0 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xEG" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - pixel_y = -28 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/security/main) -"xEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "Xenobio Pen 7 Blast Door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xFj" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/white/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/research) -"xFA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/space_hut) -"xFX" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Firing Range"; - req_one_access_txt = "1;4" - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/dark, -/area/security/range) -"xHg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable, -/obj/effect/turf_decal/siding/purple, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/research) -"xHh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/brown/filled/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port) -"xHV" = ( -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine, -/area/science/mixing/chamber) -"xIm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"xIx" = ( -/obj/machinery/computer/exodrone_control_console{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"xJp" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/service/bar) -"xJq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/security/main) -"xJX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Escape Pod Four"; - req_access_txt = "32" - }, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"xKe" = ( -/obj/machinery/door/airlock/wood{ - doorClose = 'sound/effects/doorcreaky.ogg'; - doorOpen = 'sound/effects/doorcreaky.ogg'; - name = "The Gobetting Barmaid" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xKw" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 10 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xKx" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/service/bar) -"xKy" = ( -/obj/machinery/door/airlock/grunge{ - name = "Prison Workshop" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xLF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit/departure_lounge) -"xMe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/siding/purple{ - dir = 9 - }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/pen{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/machinery/light_switch{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"xNe" = ( -/obj/structure/cable, -/obj/effect/turf_decal/box/white{ - color = "#52B4E9" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/medical/cryo) -"xNz" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/service/hydroponics) -"xNF" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/science/mixing) -"xNX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"xOf" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"xOI" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/commons/vacant_room/commissary) -"xON" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"xPJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"xQh" = ( -/obj/effect/turf_decal/stripes/red/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Cytology - Secure Pen"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/science/cytology) -"xQt" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/displaycase/trophy, -/turf/open/floor/plasteel/monofloor, -/area/hallway/secondary/exit/departure_lounge) -"xQF" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Science Tool Closet"; - req_one_access_txt = "12;47" - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"xQP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard) -"xRg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/siding/purple{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "rdgene"; - name = "Primary Genetics Shutters Control"; - pixel_x = 24; - pixel_y = 7; - req_access_txt = "7" - }, -/obj/machinery/button/door{ - id = "rdgene2"; - name = "Secondary Genetics Shutters Control"; - pixel_x = 24; - pixel_y = -7; - req_access_txt = "7" - }, -/obj/item/radio/headset/headset_medsci{ - pixel_x = -7; - pixel_y = 4 - }, -/obj/item/storage/box/monkeycubes{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/storage/box/gloves{ - pixel_x = 5; - pixel_y = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/genetics) -"xRq" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/security/prison) -"xSC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"xSF" = ( -/obj/structure/table, -/obj/item/clothing/gloves/color/orange, -/obj/item/restraints/handcuffs, -/obj/item/reagent_containers/spray/pepper, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/security/prison) -"xSU" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Storage Room"; - req_one_access_txt = "12;35" - }, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/maintenance/starboard/secondary) -"xTK" = ( -/obj/machinery/button/door{ - id = "roboticsprivacy2"; - name = "Robotics Privacy Control"; - pixel_x = 25; - pixel_y = -24; - req_access_txt = "29" - }, -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"xUf" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/grass, -/area/science/research) -"xVb" = ( -/obj/structure/cable, -/obj/machinery/power/solar{ - id = "aftport"; - name = "Aft-Port Solar Array" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solars/port/aft) -"xVd" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/engineering/break_room) -"xVe" = ( -/obj/structure/table/wood/fancy/orange, -/obj/item/gps{ - gpstag = "QM0"; - pixel_x = 10; - pixel_y = 12 - }, -/obj/machinery/status_display/supply{ - pixel_x = 32 - }, -/obj/item/storage/wallet{ - pixel_x = -3; - pixel_y = 10 - }, -/obj/item/ammo_casing/caseless/rocket{ - desc = "Your grandpappy brought this home after the war. You're pretty sure it's a dud."; - name = "Dud Rocket"; - pixel_x = -4; - pixel_y = -7 - }, -/turf/open/floor/carpet/red, -/area/cargo/qm) -"xVl" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"xWr" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/cargo/exploration_dock) -"xWD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/computer/secure_data, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"xWI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"xWK" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/cooking_to_serve_man, -/obj/structure/cable, -/turf/open/floor/plasteel/cafeteria{ - dir = 5 - }, -/area/service/kitchen) -"xXl" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/commons/vacant_room/office) -"xXu" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"xXB" = ( -/obj/machinery/hydroponics/soil, -/obj/machinery/camera{ - c_tag = "Prison Forestry"; - dir = 4; - network = list("ss13","prison") - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/security/prison) -"xXL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/medical/morgue) -"xXZ" = ( -/obj/structure/chair/comfy{ - dir = 1 - }, -/obj/item/clothing/suit/nerdshirt, -/obj/item/clothing/head/fedora, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"xYl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology Lab - Pen #7"; - dir = 8; - network = list("ss13","rd","xeno") - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"xYI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"xYW" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"xYY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/white, -/area/medical/psychology) -"xZn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/sign/warning/securearea{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/starboard) -"yax" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/closet/secure_closet/security/engine, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - pixel_y = -30 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 26; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) -"yaN" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/loot_site_spawner, -/turf/open/floor/plasteel, -/area/maintenance/port/aft) -"yaR" = ( -/obj/machinery/computer/prisoner/management{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/hos) -"yaS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Robotics Maintenance"; - req_access_txt = "29" - }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plating, -/area/science/robotics/lab) -"ybh" = ( -/obj/structure/light_construct{ - dir = 4 - }, -/turf/open/floor/wood, -/area/maintenance/port/aft) -"ybn" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/blobstart, -/turf/open/floor/engine/cult, -/area/service/library) -"ybx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ybE" = ( -/obj/machinery/hydroponics/soil, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/item/plant_analyzer, -/turf/open/floor/grass, -/area/security/prison) -"ybN" = ( -/obj/effect/turf_decal/trimline/green/filled/line{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ycH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/port) -"ydn" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"ydI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ydZ" = ( -/obj/item/soap/nanotrasen, -/obj/structure/table/wood, -/obj/structure/sign/poster/random{ - pixel_x = 32 - }, -/turf/open/floor/wood, -/area/service/theater) -"yeb" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab) -"yeh" = ( -/obj/effect/turf_decal/siding/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"yej" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "brig shutters" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"yes" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"yeM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/maintenance/starboard) -"yfg" = ( -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/security/prison) -"yfw" = ( -/obj/machinery/hydroponics/soil{ - pixel_y = 8 - }, -/obj/item/seeds/glowshroom, -/obj/item/seeds/glowshroom, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"yfG" = ( -/obj/machinery/computer/arcade/orion_trail{ - desc = "For gamers only. Casuals need not apply."; - icon_screen = "library"; - icon_state = "oldcomp"; - name = "Gamer Computer" - }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_x = -32 - }, -/obj/item/toy/katana{ - desc = "As seen in your favourite Japanese cartoon."; - name = "anime katana" - }, -/obj/structure/table/wood, -/turf/open/floor/plating, -/area/maintenance/port/aft) -"yfM" = ( -/obj/machinery/vending/engivend, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engineering/main) -"yfS" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/plasteel, -/area/engineering/main) -"yga" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable, -/obj/effect/landmark/event_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/service) -"ygg" = ( -/turf/open/floor/plasteel/white, -/area/science/cytology) -"ygh" = ( -/obj/machinery/computer/camera_advanced/xenobio, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"yhM" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"yiz" = ( -/obj/machinery/camera{ - c_tag = "Science Toxins Mix"; - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"yjI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"yka" = ( -/obj/structure/cable, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary) -"ykb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "PermaLockdown"; - name = "Lockdown Shutters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/security/prison) -"ykk" = ( -/obj/structure/table/glass, -/obj/item/storage/box/disks_nanite{ - pixel_x = -5; - pixel_y = 6 - }, -/obj/item/storage/box/disks_nanite{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/science/nanite) -"yko" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engineering/break_room) -"ylE" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ylH" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/white, -/area/security/prison) -"ylT" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -1; - pixel_y = 5 - }, -/obj/item/pen, -/obj/machinery/computer/security/telescreen{ - desc = "Used for monitoring the engine."; - dir = 8; - name = "Engine Monitor"; - network = list("engine"); - pixel_x = 26 - }, -/obj/machinery/button/door{ - id = "atmos"; - name = "Atmospherics Lockdown"; - pixel_x = 22; - pixel_y = 26; - req_one_access_txt = "1;24" - }, -/obj/machinery/button/door{ - desc = "A remote control-switch for the engineering security doors."; - id = "Engineering"; - name = "Engineering Lockdown"; - pixel_x = 22; - pixel_y = 16; - req_one_access_txt = "1;10" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/engineering) - -(1,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(2,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(3,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(4,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(5,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(6,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(7,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(8,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(9,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(10,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(11,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(12,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(13,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(14,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(15,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(16,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(17,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(18,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(19,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(20,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(21,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(22,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(23,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(24,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(25,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(26,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(27,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(28,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(29,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(30,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(31,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(32,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aav -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(33,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -nYJ -anS -lMJ -lMJ -aav -anS -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(34,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aav -anS -lMJ -anS -lMJ -lMJ -lMJ -anS -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(35,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -nYJ -anS -anS -anS -anS -anS -lMJ -anS -anS -anS -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(36,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -lMJ -lMJ -anS -anS -apq -anS -lMJ -anS -anS -anS -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -qBq -aRA -aRA -aRA -aRA -aVs -aVs -aVs -aVs -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aVs -aVs -aVs -aVs -aVs -aav -aav -aav -aav -aav -aVs -aVs -aVs -aVs -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(37,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -anS -anS -anS -anS -anS -lMJ -anS -anS -anS -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -wOY -aSH -aUb -aVt -aWT -aVs -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aVs -bvB -aWT -aVs -aav -aav -aav -aav -aav -aVs -bKS -dBO -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(38,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -anS -anS -anS -anS -anS -anS -anS -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -cSP -aav -aav -aav -abu -bsk -aUc -aVu -aWU -aYC -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aYC -aVu -aWU -aRA -aav -aav -aav -aav -aav -aRA -btS -aWU -bOd -bPA -dYu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(39,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -nYJ -anS -anS -anS -anS -anS -anS -apq -anS -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -wOY -aSI -aRA -aVv -aWU -aVs -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aVs -aVw -aWU -aVs -aav -aav -aav -aav -aav -aVs -aVw -aWU -bOd -aZZ -dYu -oRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(40,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -lMJ -anS -lMJ -anS -anS -anS -anS -anS -anS -lMJ -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -qBq -aRA -aRA -aRA -aRA -cZf -aWV -aRA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aRA -bvC -bxt -aYC -aav -aav -aav -aav -aav -aYC -bKT -aWU -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -kgg -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(41,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -anS -anS -anS -avI -anS -anS -anS -anS -anS -lMJ -anS -aav -lMJ -aav -aav -lMJ -lMJ -lMJ -lMJ -aav -lMJ -lMJ -aRA -aVx -aWU -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -aVs -aVs -bvD -aWU -aVs -aav -aav -aav -aav -aav -aVs -aVw -aWU -aVs -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -fGM -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(42,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -anS -apq -anS -anS -lMJ -anS -anS -anS -lMJ -anS -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVu -aWU -djz -aZZ -fJe -aav -aav -aav -aav -aav -aav -aav -mbI -bsk -djC -aVu -bxu -aRA -aav -aav -aav -aav -aav -aRA -aVu -aWU -aVs -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -fGM -fwb -fwb -fwb -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(43,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -xyp -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -lMJ -lMJ -lMJ -lMJ -anS -anS -anS -anS -azg -anS -anS -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRD -aSJ -aDb -aVy -aWU -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -aVs -aVs -aVu -bxv -aVs -aav -aav -aav -aav -aav -aVs -aVu -bMu -aRA -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -cva -sof -cva -cva -cva -cva -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(44,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -lMJ -nYJ -anS -anS -lMJ -anS -anS -lMJ -eyv -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRE -aSK -cYL -aVz -wdq -aWT -baa -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -bsl -btO -aWW -bxw -aVs -aav -aav -aav -aav -aav -aVs -bKU -bMv -aVs -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -cva -fiq -oYa -xFA -wpI -oXy -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(45,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -lMJ -anS -auC -anS -anS -ayf -anS -lMJ -aav -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRE -aSK -cYL -aVz -bvF -aWU -baa -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -bsm -aVu -bvF -bxw -aVs -aav -aav -aav -aav -aav -aVs -aVu -aLn -aRA -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -cva -cva -cva -fMS -wQf -oXy -aav -sNv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(46,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS -anS -lMJ -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -cXE -aIf -aDb -cZh -bvF -aWU -bab -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -baa -btP -aWX -bxx -aRA -aav -aav -aav -aav -aav -aRA -btS -bxw -aVs -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -oXy -eAh -lWO -hTU -oXy -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(47,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -apq -anS -anS -lMJ -lMJ -anS -anS -lMJ -anS -anS -lMJ -aDb -aDa -aDa -aDa -aDa -obX -aDa -aDa -aDa -lGS -cWM -cXR -cYG -cYP -aVA -aWY -aYE -bac -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -bsn -btQ -bvI -aEQ -aVs -aav -aav -cVx -aav -aav -aVs -aVu -bxw -aRA -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -cva -cli -cva -cva -cva -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(48,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -anS -anS -lMJ -lMJ -nYJ -anS -lMJ -lMJ -lMJ -lMJ -lMJ -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -cYE -cYK -aDb -aVB -aWU -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -aVs -aVs -aVu -bxy -aRA -lMJ -bCG -bEl -aVs -lMJ -aRA -bKV -bMx -aRA -aav -lMJ -aav -lMJ -lMJ -cwf -aox -lMJ -lMJ -gJK -gJK -gJK -eyv -gJK -gJK -eyv -gJK -lMJ -lMJ -aav -aav -aav -lMJ -aav -aav -aox -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -gJK -gJK -gJK -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(49,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -anS -aav -aav -lMJ -dne -avJ -dne -lMJ -aav -lMJ -aav -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -dDJ -aSL -aDb -cZq -aWU -djz -aZZ -fJe -aav -aav -aav -aav -aav -aav -aav -mbI -bsk -djC -aVu -bMw -aRA -aVs -aVs -bEm -aVs -aVs -aRA -btS -bMy -alK -alK -alK -alK -aav -aox -cwf -aox -aox -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aox -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -lMJ -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(50,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -dne -avK -dne -lMJ -lMJ -dne -dne -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -dDK -aSM -aDb -cZq -aWU -aVs -aVs -aVs -aav -aav -aav -aav -aav -aav -aav -aVs -aVs -aVs -tbW -bxz -aRA -bBc -aVs -sIA -aVs -bHH -aRA -aVu -bxD -bOe -bPC -bbL -alK -alK -alK -plI -alK -alK -fwb -eyv -lMJ -lMJ -lMJ -lMJ -aav -vrW -vrW -aav -nYJ -lMJ -fwb -fwb -fwb -nYJ -aav -aox -aav -aav -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -cHk -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(51,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -lMJ -dne -dne -pzj -dne -dne -aip -dne -dnk -aDb -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -aDa -cWK -aRF -aSN -aDb -aVC -wdq -aYF -aVs -aav -aav -aav -aav -djM -aav -aav -aav -aav -aVs -btR -aWW -bxA -qHE -bjV -bjV -bjV -bjV -bjV -bjV -btT -bMA -alK -bPD -bbL -ako -alK -otq -qAO -vAs -dux -dux -ckN -ckN -dux -dux -dux -ckN -ckN -ckN -ckN -ckN -lMJ -aav -aav -aav -lMJ -fwb -aox -fwb -fwb -lMJ -fwb -fwb -lMJ -fwb -fwb -fwb -fwb -nYJ -fwb -fee -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -gZR -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(52,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -dne -dne -aip -dne -auD -avL -awM -dnk -dqe -doA -dnk -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aDb -aVD -bvF -aWV -aRA -aRA -aRA -aVs -aVs -aVs -aVs -aVs -aRA -aRA -aRA -jFA -bvF -bxB -nRJ -vUg -bCH -bEn -dic -bHI -bJo -bKW -bMB -alK -dio -bbL -alK -alK -alK -lZn -alK -dux -ppz -cpQ -cnh -mTs -fht -kfZ -ckN -dwr -oKP -cjt -ckN -ckN -lMJ -aav -aav -lMJ -aav -aox -aav -aav -aav -fwb -aav -aav -aav -aav -aav -lMJ -aav -aav -lZV -aav -nLZ -lMJ -lMJ -lMJ -fwb -fwb -fwb -lMJ -fwb -fwb -lMJ -lMJ -gZR -lMJ -lMJ -nYJ -gJK -gJK -lMJ -gJK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(53,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -vrW -gJK -gJK -gJK -eyv -gJK -gJK -gJK -vrW -gJK -gJK -eyv -gJK -gJK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -dne -aqC -arW -ato -auE -avM -aHk -aHk -aHk -aHk -arq -pWo -aHk -avM -aHk -aHk -aHk -aHk -aHk -aHk -aHk -aHk -aHk -dtl -aUd -aVE -bvK -aYH -bad -bad -azQ -bad -bad -jMc -txO -aBO -bnK -bqb -bad -sdA -bvK -bxC -nRJ -vUg -blU -alK -alK -alK -alK -alK -alK -alK -bPF -bbL -bPL -alK -kPN -wVo -alC -dux -tCB -wOn -wOn -wfq -wOn -ckP -ckP -auR -cjt -crh -vDb -ckN -ckN -lMJ -aav -lMJ -aav -aox -fwb -fwb -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -aav -aav -lZV -aav -aav -lMJ -aav -aav -nYJ -aav -aav -aav -aav -lMJ -aav -aav -gka -aav -lMJ -aav -aav -lMJ -aav -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(54,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -eyv -aav -lMJ -lMJ -lMJ -aav -lMJ -lMJ -lMJ -aav -lMJ -lMJ -aav -aav -gJK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aip -aqD -arX -dne -dne -dne -aRG -aoc -drQ -dne -aip -dne -dst -awS -dhE -aRG -aRG -cWA -auG -dnd -dhK -dnk -aRG -aSP -dne -dhM -aXd -aYI -bJo -bbJ -bcV -bbJ -bgv -biv -bjW -blT -qGP -bqc -bEt -bEt -bEt -beO -bzw -jEJ -bCI -bEo -hiA -bbL -bJq -bud -dLM -dLM -ycH -dLM -wBp -nfn -bbL -bbL -auF -dux -eew -wfq -wOn -wOn -wOn -jYJ -cjt -dbq -ckQ -wYq -ckP -qNO -ckN -lMJ -fwb -fwb -fwb -aox -lMJ -aav -aav -cBR -cBR -dBN -dBN -dBN -cBR -rgD -dBN -dBN -hRK -dBN -dBN -cBR -lMJ -lMJ -fwb -aav -cue -cue -cue -cue -cue -lMJ -gka -aav -cue -cue -cue -cue -cue -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(55,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -aav -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -lMJ -gJK -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -dne -dne -arY -dne -lMJ -dne -dne -aip -dne -dne -aav -dne -dne -dne -dne -aip -dne -dne -dne -dne -dne -dne -aip -dne -dne -dne -dne -dne -baf -bbK -bbK -beK -bbK -biw -wZA -bCL -baE -baE -bnM -bnM -bnM -baE -baE -qLZ -bCJ -alK -auF -bsq -bJr -alK -aqK -aqO -alC -aGN -ycH -alC -eEU -aob -sMV -dux -cjs -uYi -tOc -ckR -cmh -cnj -cjt -ckP -ckP -ckP -ckP -eOp -ckN -aav -lMJ -aav -aav -aox -lMJ -aav -aav -cBR -bXu -bYD -vhx -pay -wOm -cBR -fdX -maC -hRK -rJm -lbd -cBR -lMJ -aav -lMJ -lMJ -gZR -gZR -gZR -gZR -gZR -gZR -gka -gZR -gZR -gZR -gZR -gZR -gZR -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(56,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aqE -arZ -atp -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -aav -aav -dne -arZ -bbK -bcX -beL -bgw -bbK -bjY -ong -kqz -rJv -rJv -rJv -rJv -rJv -kqz -djW -oyR -alK -bqf -bHJ -ako -alK -kMC -aob -bPH -aob -ycH -alK -alK -alK -alK -dux -wGG -ckP -tTw -cjt -eSY -diJ -ckP -ckS -ckP -ckP -wYq -eSY -ckN -aav -lMJ -lMJ -aav -aox -aav -aav -lMJ -cBR -bXv -xfr -wuc -hzY -tjc -cBR -lKK -srE -hRK -vjc -jTj -cBR -lMJ -aav -fwb -aav -cue -cue -cue -cue -cue -aav -gka -aav -cue -cue -cue -cue -cue -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(57,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -gJK -lMJ -aal -aak -aal -lMJ -aal -aak -aal -lMJ -aal -aak -aal -lMJ -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aqF -doJ -atq -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -dne -doJ -bbK -bcY -beM -bgx -biy -bjZ -blW -bnM -rJv -rJv -rJv -rJv -rJv -bnM -jMF -lfx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -alC -cgH -alK -hdh -aob -dix -dux -eDt -eSY -ckP -ckP -dvt -csf -bXE -ckP -ckP -ckS -ckP -ckN -ckN -lMJ -lMJ -lMJ -dux -eQF -dux -kOK -lMJ -cBR -eds -xfr -hkA -xOf -gEz -cBR -dBN -qEU -hRK -liD -dBN -cBR -cBR -lMJ -fwb -aav -aav -aav -lMJ -aav -aav -aav -nco -aav -aav -aav -aav -lMJ -aav -aav -nYJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(58,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -lMJ -aav -lMJ -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aqF -doJ -atq -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -dne -bag -bbK -bcZ -beM -bgy -xzi -bka -blX -bnM -rJv -rJv -rJv -rJv -rJv -bnM -jMF -iyV -bzx -did -bHK -bJt -bKY -bBi -bMD -bzx -amZ -bSq -bTr -bUQ -bVT -aob -dux -cxQ -cjt -ckS -ckP -ckP -cdg -ckP -ckP -ckP -ckP -ckP -wOA -dux -dux -dux -dux -dux -bXE -ckN -kOK -lMJ -cBR -hEP -jni -qQw -tvV -lNO -cBR -ios -fDB -hbT -fDB -kSN -sZl -dBN -aav -fwb -lMJ -xVb -xVb -xVb -xVb -xVb -aav -gka -aav -xVb -xVb -xVb -xVb -xVb -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(59,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -gJK -vrW -aav -aav -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aqF -doJ -atq -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aip -doJ -bbK -bda -bsr -bgz -biA -bjX -blY -bnP -bqg -rJv -rJv -rJv -rJv -bnM -tbC -wQZ -bzx -bBg -aKU -bGk -xXl -bMC -din -bzx -auF -ycH -alK -bJs -bVU -bXx -dux -nZb -qNO -ckP -obv -ckP -woz -ptP -ckP -ckP -ybh -uet -dux -dux -dux -yfG -xXZ -dux -cvn -dux -dux -lMJ -cBR -pKP -tQf -tto -eBX -nDT -taf -qTc -rmY -cgu -dMl -gqE -mVy -scY -suP -fwb -aav -gZR -gZR -gZR -gZR -gZR -gZR -gka -gZR -gZR -gZR -gZR -gZR -gZR -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(60,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -lMJ -aav -aav -lMJ -aak -lMJ -lMJ -lMJ -aak -lMJ -aav -lMJ -aak -lMJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aqF -doJ -atq -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aip -asi -bbK -bdb -beP -bgA -beK -bkb -blZ -bnM -rJv -rJv -rJv -rJv -rJv -bnM -bBh -bnL -bqd -aJH -aLc -bHL -bss -bBg -bOg -bzx -aoa -ycH -alK -bUR -alK -alK -dux -ctn -tSO -diI -dux -uYL -jnW -dux -qyH -vHP -dux -mnS -dux -acS -dux -pLU -uzM -xvo -rFa -sAk -dux -lMJ -cBR -qFk -vug -kpa -lhQ -tYi -hkv -jev -yhM -gnu -yhM -qby -jBf -dBN -aav -lMJ -aav -xVb -xVb -xVb -xVb -xVb -aav -gka -lMJ -xVb -xVb -xVb -xVb -xVb -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(61,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -aah -aak -aak -afV -afV -afV -afV -tRQ -afV -afV -mvq -afV -afV -afV -afV -afV -afV -aak -aak -aak -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aqF -doJ -atq -lMJ -aav -aav -aav -aav -aAA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aip -doJ -bbK -bdc -beQ -bpt -bbK -bkc -bma -bnM -rJv -rJv -rJv -rJv -rJv -bnM -jMF -xoZ -bzx -bzx -oyx -bJv -btU -btW -btW -bPI -bRd -dLM -alK -alK -alK -bXy -dux -dux -dux -dux -dux -dux -xKe -dux -dux -dux -dux -dux -dux -dux -dux -dux -dux -dux -ceu -cdg -dux -lMJ -cBR -cBR -mTi -cBR -cBR -cBR -cBR -cBR -dBN -cVG -dBN -dBN -cBR -cBR -aav -fwb -aav -aav -aav -aav -lMJ -lMJ -aav -gka -aav -aav -lMJ -lMJ -aav -aav -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(62,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -lMJ -aav -lMJ -lMJ -aak -lMJ -aav -lMJ -aak -lMJ -aav -lMJ -aak -lMJ -aav -lMJ -aav -aav -aav -aak -lMJ -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aqG -asb -atr -lMJ -aav -lMJ -ayi -ayi -aAB -ayi -ayi -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -dne -daX -bbK -bbK -beR -bbK -bbK -dhP -blV -kqz -rJv -rJv -rJv -rJv -rJv -kqz -djW -aIj -bqe -bzx -iiB -bJw -btV -bMC -rtW -bzx -bRe -bPG -bSn -bUS -bVV -bXz -uOc -uOc -pai -eEu -uOc -mSk -uOc -dux -cCk -qUR -mmb -yaN -uHp -bXE -oAe -cCk -dux -sfQ -bXE -cdg -dux -lMJ -aav -dBN -wsO -dBN -aav -lMJ -cBR -nrc -jwJ -sfD -pwT -adv -ngK -dBN -aav -fwb -aav -xVb -xVb -xVb -xVb -xVb -lMJ -gka -aav -xVb -xVb -xVb -xVb -xVb -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(63,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -vrW -vrW -aav -lMJ -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -aav -lMJ -aav -aav -aav -aak -aav -aav -aav -aav -aav -lMJ -lMJ -aav -lMJ -lMJ -lMJ -lMJ -lMJ -dne -dne -asc -dne -lMJ -aav -lMJ -ayi -azj -aEx -aBS -ayi -lMJ -aav -aav -aav -aav -aav -aav -aav -cUZ -aav -aav -aav -aav -aav -lMJ -dne -doJ -dhO -bag -arZ -bgC -baf -bkd -ong -baE -baE -bnM -baE -bnM -baE -baE -jMF -bNh -bNK -bzx -dig -bJx -bLa -bMD -bOh -bzx -aqO -bSt -dux -dux -dux -dux -dux -dux -bXF -dux -dux -dux -nPC -egR -cCk -bXE -bXE -hLm -bXE -slf -bXE -hLm -dux -dux -pwn -cdg -dux -lMJ -lMJ -dBN -wsO -dBN -lMJ -lMJ -cBR -acU -qTL -qAX -uFb -tgQ -adB -dBN -lMJ -fwb -aav -gZR -gZR -gZR -gZR -gZR -gZR -gka -gZR -gZR -gZR -gZR -gZR -gZR -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(64,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aal -aak -aal -lMJ -aal -aak -aal -aav -aal -aak -aal -aav -lMJ -aav -aav -aav -aak -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -lMJ -aav -aip -dnO -asd -dne -lMJ -aav -lMJ -ayi -azk -aAC -aBT -ayi -lMJ -lMJ -lMJ -lMJ -aJB -aKN -aMs -aJB -aMs -aQg -aJB -lMJ -lMJ -lMJ -lMJ -dne -doJ -bbM -bde -beT -dou -dne -bke -bmc -bnS -bsu -bsu -ozg -bsu -bsu -biu -wxi -bnR -bzx -bzx -bzx -bzx -bzx -bzx -bzx -bzx -alK -ycH -dux -bUT -bVW -bXA -diy -dux -xuA -reI -hxX -wen -unp -dux -klh -bXE -rig -rue -bXE -hLm -rig -bXE -dux -slf -bXE -cdg -dux -lMJ -aav -dBN -jQO -dBN -aav -lMJ -cBR -wHj -dLn -cCK -jwJ -uWm -cFy -dBN -aav -fwb -lMJ -xVb -xVb -xVb -xVb -xVb -lMJ -gka -aav -xVb -xVb -xVb -xVb -xVb -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(65,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -aal -aak -aal -aav -aal -aak -aal -lMJ -aal -aak -aal -lMJ -lMJ -lMJ -lMJ -lMJ -aak -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -ahp -aif -ahp -ahq -ahp -ahp -ahp -ahp -aqH -ase -dne -lMJ -lMJ -lMJ -ayj -ayj -aAD -aBU -ayj -ayi -ayj -lAu -lMJ -aIg -aKO -aMt -aIg -aPd -aQh -aIg -lMJ -lAu -aUe -aUe -aUe -aaL -aUe -dmH -beU -dmH -dmH -bkf -bmd -bnT -bsv -bsv -btZ -bvV -bxN -dhZ -sht -bCP -bvW -bGl -bHN -bvW -bLb -bME -bOi -bPJ -alK -cgH -dux -iLj -dvt -bXE -hvt -dux -dux -dux -cen -dux -cbq -dux -bcc -bXE -bXE -bXE -rig -yaN -bXE -yaN -dux -dux -hdX -cdg -dux -dux -cBR -cBR -gxH -cBR -cBR -lMJ -cBR -cBR -dBN -dBN -dBN -dBN -cBR -cBR -aav -fwb -lMJ -aav -aav -lMJ -aav -aav -aav -gka -aav -lMJ -aav -aav -lMJ -aav -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(66,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -lMJ -aal -aak -aal -lMJ -aal -aak -aal -aav -aal -aak -aal -aav -lMJ -aav -aav -aav -aak -aav -aav -aav -aav -aav -aav -ahp -aig -ajc -akf -alx -amO -anU -ahp -dne -asf -dne -dne -dne -dne -ayj -azl -aAC -aAE -aDh -aFF -ayj -aIg -aIg -aIg -aMF -dIs -aIg -dIs -aXl -aIg -aIg -aIg -aUe -aat -aau -abi -abj -dmH -byI -bgF -dmH -baE -baE -bnU -bqw -bsw -baE -bvW -bxO -bvW -bvW -bCQ -bCQ -bGm -bHO -bvW -hdh -aod -aGN -aqK -alK -dit -dux -ydn -wmt -bXC -bYH -dux -bXE -hxX -ceo -dux -cdc -fED -diF -diF -qZf -nDf -ueg -geT -bXE -bXE -eSm -mqo -duH -cdg -dux -nsN -cBR -vrI -aRm -rTl -cBR -lMJ -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aav -fwb -aav -aav -gZR -gZR -gZR -gZR -gZR -aav -lMJ -gJK -nYJ -gJK -gJK -gJK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(67,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -aav -aal -aak -aal -aav -aal -aak -aal -aav -aal -aak -aal -aav -lMJ -aav -aav -aav -aak -aav -aav -aav -aav -aav -aav -ahq -ahq -ahp -ahp -ahp -amP -anV -apr -aqI -asg -avO -dnu -dne -awP -ayj -azm -aAF -aFH -aAC -aEw -ayj -aFV -aJC -aJC -aKP -aMu -aNE -aMu -aQi -aRH -aRH -aUf -kiy -faT -aYM -aYM -dmH -dmH -luZ -bgG -nOZ -bkg -lDf -boc -vaT -bsy -bua -bvW -bxP -bzA -bBm -bCR -bvW -bqh -bvW -bvW -bLd -aof -aob -alC -alK -bSu -dux -bUW -bXE -bXD -bYI -bZO -cbt -oZg -dux -dux -csT -dux -cxp -riP -bXE -ees -bXE -plC -rig -oAe -xsx -mqo -duH -cdg -dux -mCu -cBR -hDr -ryi -meE -cBR -lMJ -aav -aav -lMJ -cCM -cDD -lMJ -aav -lMJ -aav -aav -fwb -aav -aav -gZR -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(68,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -lMJ -aav -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aak -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -ahq -aih -ajd -akh -aly -amP -anW -aps -aqJ -nEv -att -dqe -dne -dne -ayj -cSF -aAC -aFH -aDi -ayj -ayj -aIi -aSQ -pUf -aSQ -aSQ -aSQ -aSQ -aSQ -nvH -aSQ -aSQ -aSQ -dLp -aUe -dmH -dmH -bdi -beV -bgH -nOZ -bkh -lDf -boc -bqw -bsy -buc -bvW -bxQ -bzB -pDa -bCS -pDa -bQN -dih -bvW -bLe -bMF -apz -aob -alK -ycH -dux -bUX -bUU -gqA -xEf -dux -mWg -cdd -dux -cfC -fWc -dux -ovU -jkQ -fJl -fjG -mrv -tFJ -hev -aae -jjg -mqo -jqA -cdg -dux -eMU -cBR -bwp -cWN -elp -cBR -lMJ -lMJ -lMJ -lMJ -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -bYC -rpL -bYC -lMJ -lMJ -lMJ -gJK -gJK -lMJ -gnA -eBl -lMJ -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(69,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -eyv -gJK -eyv -gJK -vrW -gJK -eyv -vrW -aav -lMJ -aav -lMJ -aav -lMJ -aav -aav -aak -aav -aav -aav -aav -aav -aav -ahq -aii -ajg -aki -alz -amP -anX -apt -dnk -aIu -auJ -doJ -fVm -ayj -ayk -azn -aAJ -aBW -aAJ -fhk -aFI -sze -aYM -aYM -aYM -vXN -aKR -riE -cVC -vXN -aKR -riE -cVC -aXf -wzA -biE -mpe -okr -beW -bgI -bki -bki -bmf -bnX -bqo -bsz -buc -bvW -dhS -bvW -bBo -bvW -bEu -bvW -bHP -bvW -bLf -bJs -aLd -bPK -bRf -bSv -dux -dux -hIt -dux -dux -dux -dux -cde -dux -dux -vOC -dux -dux -dux -dux -dux -dux -dux -dux -dux -dux -dux -ceu -cdg -dux -dux -sYH -sYH -jtY -sYH -sYH -lMJ -fUj -fUj -hcY -hcY -hcY -hcY -fUj -fUj -lMJ -aav -lMJ -aav -bYC -cLN -bYC -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(70,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -lMJ -aav -fwb -vrW -vrW -vrW -fwb -vrW -vrW -lMJ -lMJ -lMJ -aak -aav -aav -aav -aav -aav -aav -ahq -aij -ajf -akj -alA -amQ -anY -ahp -dhu -akg -atu -doe -aHk -azs -aAG -api -aAI -aBX -aDj -aEz -aFJ -uVH -aID -aID -aKS -dCB -aMf -aTh -aQj -bak -aXh -aTh -xAO -aKS -phK -bap -hpn -hpn -beX -bgJ -biG -dmH -qPL -boc -bqw -bsA -baE -bvW -bvW -bvW -bBp -bvW -bEv -bvW -bHQ -bvW -bLg -bLf -amU -bPL -alK -bOf -bOv -alC -qhe -dux -bYK -bZP -cbv -cdf -cep -dux -cgI -sLY -gnT -wdc -cBr -wdc -gnT -wdc -fFJ -gnT -gnT -cbB -wdc -njJ -wdc -nks -sxS -gMW -lYO -jEW -sYH -bTs -bTs -lEV -dlP -dlP -dlP -cEI -jNL -bTs -fUj -bTs -bTs -bYC -bYC -cLO -bYC -bTn -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(71,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -vrW -aav -aav -lMJ -aav -lMJ -vrW -aav -aav -aav -aak -aav -aav -aav -aav -aav -lMJ -ahq -aik -anZ -akk -alB -amR -aoO -ahp -aqL -all -att -auG -dne -dne -aAO -aAJ -aAC -aAF -aFX -aJK -aJK -aJG -aJG -aJF -aSQ -aMw -aYM -riE -aQk -vXN -aSQ -riE -xCQ -aYM -fSg -biE -bgK -bgK -bgK -bgK -dmT -byI -dmH -bnZ -bqw -bsB -alK -aoe -bxS -bvW -bvW -bvW -bvW -bvW -bvW -bvW -alK -alK -alK -alK -alK -alC -bPG -dLM -bOv -dux -bYL -bZQ -cbw -cdg -ceq -dux -dwb -bXK -bXK -bXK -bXK -bXK -bXK -bXK -saC -bXK -bXK -wjE -dux -dux -dux -dux -sYH -nxn -tCi -mcg -mAO -mmB -dlP -ktv -bTs -dYm -bTs -cEJ -dlP -dlP -dlP -cIu -cEI -bTn -cKW -cLP -cMy -bTn -lMJ -lMJ -fwb -aav -aav -aav -nYJ -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(72,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -vrW -aav -aav -aep -aep -aep -aax -aax -aax -aav -aak -aav -aav -lMJ -lMJ -aee -bbo -bbo -bbo -bbo -akl -ahp -ahp -ahp -ahp -dne -aIu -atD -dnk -dnk -dne -ayl -aEt -aAK -aBY -aDk -aJK -aFK -aHe -aJG -aJG -aYM -aNI -aYM -aMv -aSQ -aTg -aSS -aMv -xCQ -aYM -wxr -biE -gdH -xVe -gcj -bgK -biI -bkl -dmH -aCq -bqp -bsC -jVe -bSv -dLM -dLM -dLM -dCW -bOv -alC -bSw -dLM -dLM -dLM -dLM -bPM -dLM -dLM -bSp -alC -ycH -dux -bYM -bZP -cbx -cdh -bUV -dux -dwc -bXK -cjw -ckY -cmk -cnm -coy -cpU -crj -csj -bXK -vOC -cia -dDw -uAL -cNg -sYH -sYH -vNJ -sYH -sYH -jvy -jNL -jNL -bTs -tyz -bTs -cEK -bTs -jNL -jNL -bTs -cJk -cKk -cKX -cLQ -cMz -bTn -aav -aav -fwb -aav -aav -aav -fwb -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(73,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -vrW -lMJ -aep -aep -xbP -ybE -xXB -oAL -aax -aav -aak -aav -aav -aee -aee -aee -agB -ahr -ail -bbo -akm -dnk -amS -dnF -dnk -aRG -aIu -atv -auL -cGo -dne -ayj -aAL -ayj -ayj -ayj -aJK -aFL -aHf -aIn -aJG -aSQ -xCQ -aYM -aSQ -aSQ -aSQ -aSQ -aSQ -xCQ -aYM -aYO -dmH -dmH -dmH -nOZ -nOZ -dmH -dmH -dmH -boa -bqq -bsD -alK -dhR -aoa -alC -bBq -apz -bOf -dLM -bSp -aoa -aqO -hdh -alC -bPN -apz -bTt -bTv -alC -ycH -dux -dux -dux -cby -bXE -cer -dux -dwb -bXK -cjx -ckV -cml -cml -coz -cml -crk -csk -bXK -vOC -cia -cvl -rNZ -uYd -tqi -quB -eBK -hpQ -rKS -rKS -rKS -flL -xpZ -xpZ -xpZ -cEL -xpZ -xpZ -xpZ -xpZ -hav -bTn -cKY -cLN -cMA -bTn -lMJ -lMJ -fwb -aav -aav -aav -fwb -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(74,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -vrW -aav -aep -orL -gBC -aNL -kvf -aST -aax -aav -aak -aak -aak -aef -aeG -afE -aeG -ahs -aim -ajh -akn -apu -aqN -afC -afC -afC -ask -alM -auI -axe -dne -aBZ -dpG -auL -aDn -aDm -dhC -aHc -aHg -aIo -dhC -aKW -aVK -aXk -bau -bau -afc -aSU -aSQ -xCQ -aYM -aYP -bat -kEb -uGf -bgN -bgN -bgN -wgX -qYo -bob -bqw -bsE -bue -bue -bue -bue -bue -bue -bue -bGq -bue -bue -bue -bue -bue -bue -bue -bue -bue -bue -cgH -dux -bYN -dux -cbz -bXE -bYJ -dux -dwe -bXK -cjy -ckW -aSF -cno -coA -gQV -crl -csl -bXK -vOC -cia -dyg -imI -vsn -cia -ogO -gaS -uiN -sst -jHD -ugk -eUQ -xpZ -gYy -cDJ -cEM -cFI -cGA -cHv -xpZ -hav -bTn -bTn -bTn -bTn -bTn -aav -aav -fwb -lMJ -lMJ -lMJ -fwb -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(75,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -aav -vrW -vrW -vrW -vrW -vrW -lMJ -lMJ -lMJ -vrW -lMJ -aep -qok -adh -adh -aaw -meC -aax -aax -aav -aav -aav -aee -aee -aee -agD -aht -ain -aji -dnd -alE -dnr -aRG -alE -dou -dne -alV -auJ -avQ -dne -aCc -azt -auL -aDn -aDn -dhC -aHj -aHh -aIp -aJJ -aKX -aMy -aXk -aPe -aXy -aRI -aSV -bau -aVK -aXk -bau -bau -bbQ -bdl -biK -dOR -biK -bkn -bmh -pAA -bqs -lCP -bue -bwa -bxU -bzD -bBr -bSx -bEw -bzE -bHR -bJy -bLh -bMH -bue -bPO -bRg -dDi -bTw -bue -ycH -bXF -bYO -dux -bXE -dvt -dux -dux -vGw -cic -cjz -ckX -cmm -cnp -coB -sZw -crm -csm -bXK -vOC -cia -wQy -dHo -cxS -tqi -qtU -qcN -swf -ffu -gHT -pGY -heF -xpZ -cEE -iHk -iAy -cFJ -cGB -hFW -xpZ -hav -bTs -jvy -bZT -bTs -aav -aav -aav -nYJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(76,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -vrW -vrW -vrW -aav -lMJ -aav -vrW -aav -aav -aav -vrW -aav -aax -dFK -tOw -dgX -vSn -meC -trJ -aax -vrW -vrW -lMJ -lMJ -lMJ -aee -bbo -bbo -agA -agA -aio -alF -aeB -dne -apv -dne -dne -atx -auK -avR -apa -aym -alG -aIs -awS -aHl -aJK -aJK -aJK -aJK -aJK -aSZ -aMz -aNM -aSZ -aSZ -aSZ -aSZ -aUi -aXi -aYM -aYR -bav -bbR -bdo -beZ -bgP -biL -bmk -bmk -qsb -dCN -apA -bue -bwb -bxV -bzE -dmD -bzE -dmD -bzE -bHR -bJz -bLi -bMI -bue -bzE -bRh -bSy -bTx -bue -bSu -dux -slf -dux -cbA -cdi -dux -cdl -dwb -bXK -cjA -cXe -mcs -cnq -coC -cpW -crn -csn -bXK -gmp -cMm -cMo -paD -cxT -wps -wOc -vnZ -cca -rKS -kDT -rMg -wyn -xpZ -hkT -iHk -kuS -cFK -nBA -cBS -xpZ -jNz -sdU -jNL -jNL -bTs -lMJ -lMJ -lMJ -lMJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(77,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -vrW -aav -lMJ -aav -aax -aep -alP -alP -alP -aax -alP -aax -aax -abe -xxT -xxT -iyN -aVG -qoj -aep -aav -vrW -aav -aav -lMJ -lMJ -lMJ -lMJ -aio -ajj -akp -avL -dhq -aoc -avL -aoc -dne -aty -auL -avS -auL -aDl -aEv -aFW -amE -amE -aGY -aHm -amE -nRn -aSZ -aKZ -aNV -aNP -aPg -fok -bqk -aSZ -nMU -aVM -fRv -bmk -bmk -bmk -vju -bfa -bgQ -biH -bkp -bmh -bnX -plu -avH -bug -rYl -rYl -rYl -rYl -rYl -bEx -bwc -bwc -bwc -bwc -bMJ -bOk -bPQ -aLx -bSz -bTy -bue -ycH -dux -dux -dux -dux -dux -dux -dyw -dwb -cev -cev -cev -ohT -cev -cev -cpX -cev -cev -cev -vOC -cia -cia -cia -cia -cia -kPy -vnZ -cca -ffu -uWc -gDK -mci -xpZ -rMb -moO -iHk -nWN -iHk -xBk -xpZ -iVX -wtW -jNL -vCd -bTs -aav -aav -aav -cMI -cPA -cPA -cPA -cMI -cPA -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(78,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -vrW -aav -aep -aep -aax -ajn -abe -asn -fmr -lFH -mKK -sdT -nUQ -nUQ -lqa -xxT -vVl -ybN -oAL -aep -aav -vrW -aav -aav -aav -lMJ -aav -lMJ -aip -dho -akq -alH -amW -doe -apw -dod -dne -atH -dne -dne -dne -dne -dne -dne -dne -dne -dne -dne -aHl -aVh -aSZ -aLa -aNW -aNP -aQp -aQq -aRK -aSZ -aUj -aVN -aXn -bmk -baw -bbT -aAv -bfb -bgR -niJ -bkq -bmk -aaJ -bqt -aCH -buh -bwd -bwd -bzF -bwd -bwd -bEy -bGr -bwd -bwd -bwd -bMK -bOl -bPR -bRi -bSA -bTz -bue -bWc -bXG -bYQ -bZR -cbB -gnT -cse -gnT -cgL -cev -cjB -lOj -gHf -cnr -coD -uiO -dKy -cjB -cev -gmp -dyj -dyL -oZQ -nuZ -hyi -aUh -viE -cdD -ffu -qdB -smJ -gbx -xpZ -sqe -dPu -iHk -dzK -iHk -kUH -xpZ -eOz -aWZ -cLa -cLa -cLa -cLa -cLa -cLa -cMI -cPB -cPZ -cQT -cMI -cRE -cPA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(79,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -vrW -aav -aav -aep -adG -agN -aaw -abe -aso -aaZ -xeX -aaZ -aaZ -abM -xuw -bkx -abe -aep -leJ -agH -aeJ -aeJ -aeJ -aeJ -aeJ -aeJ -lMJ -aav -lMJ -aio -ajl -akr -alI -amX -aoi -dnZ -aqP -dne -atA -dne -aav -aav -lMJ -aav -aav -lMJ -aav -aav -dne -dnk -iMF -aSZ -aLb -aNX -aNP -aNP -aQr -aRL -aSZ -aUk -pMn -aXq -eUK -bax -bgQ -bdp -bfc -bgS -biM -bkr -bmk -boc -bql -awL -bue -bzE -bzE -bGv -bHT -bwc -dCZ -bGs -bHS -bzE -bLk -bzE -bue -bPS -cZS -bBs -bBs -bue -bWd -hdh -dux -bZS -dvw -cdk -ceu -slf -hxP -cev -cjC -clb -cmn -cns -coE -cpZ -nJh -csp -cev -mla -nMe -dZw -sIi -pRp -gOu -loM -vnZ -gYQ -rKS -rKS -rKS -rKS -xpZ -xpZ -xpZ -hYF -eCw -hYF -hGB -xpZ -bTs -hav -cLa -cLT -cMC -cNt -cTf -eFN -cMI -cPC -djX -cPC -cMI -cRF -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(80,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -lMJ -aax -aax -aeS -adh -aaw -abe -atL -gfP -pAv -voJ -ylH -hNd -jik -guu -aep -abx -abV -agH -eWu -aeg -agH -eWu -aeg -aeJ -aav -aav -lMJ -aio -aio -aks -alJ -amY -okv -aqR -aqQ -dne -atB -dne -lMJ -awW -awW -awW -awW -awW -awW -lMJ -dne -raA -aVh -cTs -aRS -asY -aNQ -lxQ -aQs -aSZ -aSZ -aUl -pMn -aXq -rli -bay -bgQ -bdq -bbN -bgY -uDW -sjs -bmk -bod -hxH -bsG -bue -xrL -uPM -bue -bBu -bwc -sBo -bGt -bHS -bzE -bLk -bML -bue -bzE -bRj -bSB -aMU -bue -div -bLd -gox -gox -cbD -gox -dux -dux -dwj -cev -cjD -clc -wfA -cnt -coF -xhc -uiO -mNK -cev -mla -nMe -ugf -cNf -xel -nMe -cNm -vnZ -ylE -seP -glT -uSw -wgZ -klB -nUa -cGs -eCQ -cFL -cGG -cHw -xpZ -cdm -cKn -cLb -cRT -cMD -cNu -cOb -cOF -cLa -cMI -cQa -cOP -nRY -cRG -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(81,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -aav -aep -aaq -aeT -adh -ajp -abe -abe -aep -abe -abe -gNS -acg -jik -vVt -abe -aby -abX -agH -nCo -aeh -agH -nCo -aeh -aeJ -lMJ -lMJ -lMJ -lMJ -aio -aio -aio -aio -dne -dne -dne -dne -akm -dne -aav -awW -azG -aDx -aFY -dBX -awW -aav -dne -dne -tzy -aSZ -bOq -aNY -aNR -ivz -aQt -aSZ -dhy -aUm -aVQ -aXq -aYS -bgQ -bgQ -bdr -bfd -bgY -biN -bks -bmh -boe -plu -bsH -bue -xrL -uPM -bue -bzE -bwc -sBo -bGu -bHT -bJA -bLl -bMM -bue -bPU -bRk -bSC -bTA -xwG -pMX -alC -gox -dvq -cbE -uLp -cev -dQs -cgO -cev -gXi -pPh -uiO -xmf -coG -clc -cmp -xeT -cev -mla -nMe -lIl -gbr -cxU -gOu -ixg -dQe -eyo -jRi -pVq -bfU -cnl -nOl -aec -xpZ -xpZ -xpZ -xpZ -xpZ -xpZ -pUW -cKo -cLa -cLa -cLa -cLa -cOc -cLa -cLa -cPD -cOP -cQx -aYZ -cRH -cPA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(82,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -aav -aep -aaw -aeU -agO -aaw -aaq -vrL -yfg -fgU -abe -abe -sVR -abe -abe -abe -abz -abX -agH -afJ -acX -agH -afJ -aei -aeJ -aeJ -aav -aav -lMJ -lMJ -lMJ -dne -dne -tyJ -dnk -aqT -dne -dhx -anb -aav -awW -ayo -azv -aAP -aCd -aDr -aEH -aEH -uqX -pMn -aSZ -wKC -aPq -aQy -aQq -aXA -dCx -dhy -rVn -eIt -aXq -bmm -baA -bgQ -bds -dCI -bgY -biO -bmk -bmk -bof -bql -lCP -bue -xrL -uPM -bue -bBv -bwc -sBo -bzE -bPT -bzE -bzE -bMN -bue -bue -bue -bue -bue -bue -bWd -aqK -gox -bZU -xCg -dvE -vTd -cfG -cgP -cie -cjE -cld -hdA -cnu -coH -cqc -crr -csr -lOR -wYb -nMe -cwn -cxd -brd -gOu -grc -vnZ -swf -seP -pPi -pEM -fqC -jZY -lTo -mjT -dyH -cFN -cGH -cHy -mjT -cJl -cKp -cLa -cLV -cME -cNv -cOd -cOG -cLa -cPE -cRj -dDH -bae -cRI -cPA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(83,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -vrW -lMJ -aax -aaz -aeW -agP -agO -adh -fPR -rjm -jEO -ilo -pna -qzo -pna -pna -pna -tSU -oXP -cBe -yfg -qzo -ady -yfg -qzo -xKw -aeJ -aeJ -aeJ -aeJ -aav -aav -dne -aoh -apy -aqS -dnZ -dne -atE -anb -aav -awW -ayp -azw -aAQ -aCe -aDs -nIb -omn -aXo -aIw -aSZ -aLe -aQq -aQq -aPl -aYJ -aSZ -ewb -rVn -ayn -aXr -bmm -baB -dLU -pXD -bgY -bgY -biP -bku -bmm -bog -bqv -lCP -bue -xrL -uPM -bue -cUT -bwc -sBo -bHU -bHV -bJB -bzE -bMO -bue -bPV -qLf -bRl -bue -alC -bWd -bXJ -gox -bZV -cbF -cdn -cev -cfI -cgQ -cev -cjF -xhc -uiO -cnv -coI -clc -wfA -kBh -pqM -lLQ -nMe -nMe -nMe -nMe -nMe -czP -cAT -cca -seP -seP -wWt -fqC -jCZ -seP -mjT -veU -nmr -cGI -xYY -clK -diQ -cKq -cLa -cLW -cMF -cSY -cOe -cOH -cLa -cPF -aXg -djj -aYZ -cRq -cPA -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(84,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -aav -aax -abK -afa -ahu -akz -ani -kGE -xoR -acZ -uYG -xoR -xoR -xoR -xoR -xoR -uYG -adS -ejE -xoR -adS -adq -adN -aej -aeO -afJ -nCo -eWu -aeJ -lMJ -lMJ -aip -aRG -dnP -uYR -asl -atG -atP -anb -aav -awW -ayq -azx -aAR -aCf -aDr -aEH -aEH -aVe -aIx -aSZ -aNF -aNF -aSZ -aSZ -aSZ -aSZ -fNk -uTI -qvO -aXs -bmh -bmh -itG -syh -biQ -biQ -biQ -bkv -jiz -boh -bqw -lCP -bue -bwf -bzE -bzE -bzE -dCX -sBo -bzE -cVb -cVe -cVf -cVi -bOm -ybn -bPW -vgd -bue -auF -aXt -aqO -gox -bZV -aSa -cdo -cev -cfI -mha -cev -cjD -clc -cmp -cnw -coJ -pPh -uiO -ezA -pqM -cuk -cvo -cwo -cxe -lkO -cyP -czQ -cAU -cca -jpv -seP -ooS -fqC -ljG -seP -jIt -cEN -cFO -cGJ -cHz -mjT -diR -cKr -cLc -cLX -cMG -cNx -cOf -cOI -cLa -cMI -cQc -cMI -cRl -cRJ -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(85,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -aav -aep -adh -afd -ahv -aaw -adr -abe -abe -oMJ -abe -abe -xKy -abe -abe -agH -agH -agH -agH -xsq -adh -adr -pgX -aem -aeN -afG -agG -qCa -aeJ -aav -aav -dne -xIx -aog -dne -dne -dne -atH -anb -aav -awW -ayr -azy -aAS -aCg -awW -aav -aEH -aHt -pMn -aIE -aMA -aMA -aNT -aHt -aQu -aHt -aHt -aHt -pMn -vpX -tAh -ufe -bmk -bdv -bff -bgY -biR -bkw -bmm -xHh -bqw -lCP -bue -aFE -bxX -bzE -bzE -bwc -sBo -bBw -bue -bue -bue -bue -bue -bPX -nXA -bRn -bue -alK -bWf -alK -gox -gox -cbI -gox -cev -cfJ -cgR -cev -cjC -clg -aSR -cnx -coK -cqf -cru -csp -pqM -cul -cvp -cwp -cxf -nXv -pqM -loM -cAV -cca -jpv -seP -cFR -lbB -tNc -seP -cDN -cEN -cFP -cGK -cHA -mjT -cJo -cKs -cLa -cLY -cMH -cNy -cOg -cOJ -cPl -djr -djr -cMI -cRm -cRK -cRP -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(86,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -aav -aep -acK -afM -abf -ahw -anj -abe -wTZ -rQw -wTZ -abe -piK -fBP -oGS -agH -ibL -abZ -acq -aaw -adh -ads -adO -ael -aeM -agH -agH -agH -aeJ -lMJ -lMJ -dne -dne -dne -dne -asm -atI -atQ -dne -lMJ -awW -awW -awW -awW -awW -awW -lMJ -aEH -kQx -aIz -aJP -aMB -qYx -aTf -uLc -aYL -uLc -aTb -jBW -ayw -aXu -oYv -aXq -bmk -bdw -bfg -bgZ -pHd -bmm -bmm -boi -bqx -bsJ -bui -bue -bue -bue -cUU -aZO -gCM -cUU -bue -buf -cVh -aVW -bue -bue -bue -bue -bTD -bUY -bWg -css -bYR -bZY -cbJ -cdp -cev -cfK -cgT -cev -cjB -brv -jxb -cny -coL -cqg -nBU -cjB -pqM -cum -nIa -cwq -cxg -oUz -pqM -czS -cAW -cBX -iMY -seP -xyV -hAu -quD -seP -cDO -kta -ePo -cGL -lHI -mjT -diR -cPW -cLa -cLZ -cLa -cLa -cLa -cOK -cLa -cPI -aXj -cMI -cMI -cMI -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(87,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -vrW -lMJ -aax -aax -afU -ahz -alN -aoj -abe -fJX -puI -keM -abe -jbB -kyr -hlB -agH -jib -mzr -agH -acE -adb -fos -htR -aem -eqf -afI -agG -qCa -aeJ -aav -aav -lMJ -dne -apC -doe -azu -dne -dne -dne -aav -aav -aav -aav -aav -aav -aav -aav -aJN -iTU -aJN -aJO -aMC -aJO -aJN -dCt -aQv -bqu -aTc -aUp -huV -aXv -enV -baF -bcb -bdx -bfh -aBf -bfh -aYU -aYU -boj -aZd -bsK -buj -buj -bxY -bzI -buj -bCW -oEx -buj -cVd -buj -buj -buj -bxY -buj -bwh -bSD -buj -klF -bWh -css -bYS -bZZ -cbK -cdq -tWU -tNJ -cev -cev -cev -cev -fIF -cnz -coM -fIF -cev -cev -pqM -pqM -vkR -vkR -vkR -pqM -pqM -czT -cAX -rvk -tay -seP -seP -seP -seP -seP -mjT -mjT -jTg -mjT -mjT -mjT -diS -cKs -cLa -cMa -cLa -cNz -cOh -cOL -cLa -cMI -cQf -cMI -cMI -dbF -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(88,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vrW -vrW -vrW -aax -aax -aiv -alO -aom -abe -wiy -qbz -jsA -abe -tMX -oFQ -oGS -agH -abD -iGJ -agH -acF -nkV -adt -alL -ilm -aeO -afJ -nCo -omh -aeJ -lMJ -lMJ -lMJ -dne -awS -aRG -ajT -dne -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aJN -vTs -sTb -aIF -aMD -odi -aJN -aPo -fkb -aRQ -ruP -aUq -gIg -aXw -aYV -baG -npN -baG -auT -aBk -auT -baG -baG -bok -bqz -bsL -buk -dCH -bdP -baG -baG -bCX -bEB -baG -bHW -baG -dCH -baG -bdP -baG -baG -baG -bTE -bUZ -bWi -css -bYT -caa -cbL -cdr -cew -cfL -ifK -cik -cjK -clj -cmr -cnA -coN -aTp -crw -cst -dwf -cuo -cvq -cvq -cvq -cxV -cNh -czU -cAY -cBY -cCN -sfI -mUz -jpq -cEO -aVZ -xfo -oTW -hFP -cqi -frX -tay -cJq -cKs -cLa -cLa -cMI -cNA -cLa -cLa -cLa -cPJ -cQg -cTy -cRn -cOS -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(89,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -aax -aax -aax -aax -acv -acv -acv -acv -acv -acv -acv -acv -acv -acv -acv -acv -acI -adc -vVP -alL -ilm -aeP -agH -agH -agH -aeJ -aep -aep -aax -aio -dne -dne -ajT -dne -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aJN -aIC -sVe -aJQ -jqa -aME -aJN -aPp -aQw -aRR -aTd -xCf -aVR -aXx -aYW -baH -vZX -bqA -xYW -vTZ -lCL -wgP -bmn -bqA -bqA -bqA -bul -bqA -bky -bGw -bqA -bCY -bEC -bHX -bHX -bJC -bHX -bMR -bOn -bPY -bRo -bHX -bTF -bVa -bWj -css -bYU -apG -cbM -cds -xNe -cfM -cgU -cil -cvr -rGW -cvr -cvr -cms -cqj -aTX -kkA -tyZ -cvr -cvr -cvr -cvr -cvr -cyT -cvr -cvr -cvr -uzf -rGW -saV -uJl -tyZ -cCO -cDR -cEP -cFS -cGN -cHD -tay -cJr -cKu -cLd -cLa -cMJ -cNB -cOi -cOM -cPm -cOM -cQi -cOM -cQl -cRo -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(90,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -kHF -epU -gAf -aaA -aaG -aaP -wih -abn -eII -wqm -acv -acH -adc -vVP -adR -fjy -aeQ -iUh -agI -fML -xRq -fML -jNH -fgU -aio -aol -anb -atH -dne -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aJN -ucj -wNE -aeY -dhI -afb -aJN -aVS -aQx -caA -aTe -aUs -xzs -pdZ -qHJ -xYW -rrB -pqy -cXT -xOI -dtM -bkz -bkz -bol -bkz -bkz -bum -bkz -bkz -bzJ -bBy -bCZ -bED -bGx -bGy -bGy -bGy -bGy -bGy -bGy -bGy -bGy -bTG -dCE -bWk -css -bYV -cab -cbN -cdt -cex -cfN -cgV -ciq -cvr -cca -cmt -cnB -jlg -jPR -crx -csv -iQD -cuq -aaK -czW -czW -czW -czW -czW -cBa -cCa -cyU -vOs -lNj -pyi -iQD -cCP -cDS -wEy -cFT -cxj -cHE -tay -cJs -cJX -cLe -cLa -cMK -cND -cOj -cON -cPn -cPL -cQg -cQF -cQV -cRp -cRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(91,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -kHF -oaq -aay -aaB -aaH -aaQ -aba -abo -abF -aca -acv -acI -add -vVP -alL -aen -gxF -kNq -gxF -gxF -raW -yes -mnI -wYi -aio -aol -apD -atA -dne -aav -aav -aav -aav -aav -aav -aav -aav -aav -dne -aJN -aJN -aJN -aJN -aLl -aJN -aJN -eHe -eHe -eHe -eHe -eHe -eHe -aXz -aYY -baQ -rrB -bdA -bfj -bha -bdA -bkz -bmo -bom -bqB -bsM -bun -bwi -bkz -bzK -bBz -bDa -bEG -bGy -bHY -bJD -bLm -bMS -bOo -bJD -bJD -bGy -bTH -aWf -bWl -css -bYW -cac -cdu -sme -cey -cfO -ifK -cin -cjN -clm -cmu -cmu -iWG -cmv -cmv -cmu -cmu -rAF -rAF -nBI -nBI -nBI -nBI -nBI -rAF -tsL -cga -mTj -rAF -rAF -rAF -lfR -cDT -wEy -xrj -xrj -xrj -xrj -xrj -xrj -cgJ -cLa -cML -cND -cOk -cOR -cPq -cOR -cQi -cQF -cOP -cRp -cRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(92,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -kHF -tiy -pVK -aaC -aaI -rbG -abb -dXp -abG -acb -acv -acJ -lDT -adw -alL -hyP -ajm -ajm -ajm -ajm -oYd -aep -hgv -ajm -ajm -ajm -ajm -wyI -aio -aav -aav -aav -aav -aav -aav -aHn -aav -aav -anb -doJ -doJ -doJ -doJ -aLm -doJ -doJ -doJ -fVm -doJ -doJ -doJ -aVT -aXD -gsF -afW -rrB -bdB -bfk -bhb -biT -bkz -bmp -bon -bqC -acw -buo -bwj -bol -bzL -bBA -bDb -bEF -bGz -bHZ -bJE -bLn -bMT -bOp -aLv -bRp -bSE -mIU -aWf -bWm -css -bYX -cad -cbP -cdv -cez -css -tay -cio -cjO -cln -cmu -cnC -coO -cql -cry -csx -ctx -rAF -cvu -czX -czX -czX -czX -wNt -spa -wNt -iaR -cER -pvt -puQ -nBI -hox -cDT -ovx -xrj -pLp -cHF -cIA -cJt -xrj -cLg -cMb -cMM -cNE -cOl -djr -djr -djr -aXp -cQG -cQW -cRq -cRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(93,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -acv -acv -acv -acv -acv -acv -aaS -abc -rdt -acv -acv -acv -aax -aax -ykb -tOL -kxh -ajm -afN -gFy -ajm -air -scn -akt -ajm -and -aon -vsp -aqX -ajm -ajo -ajo -axf -ajo -aav -aDz -aAV -aDz -aDv -aDv -wAq -aHx -anb -aio -aio -aio -aio -aio -aio -aio -anb -aio -aio -aXB -kex -baK -rrB -bdC -bfl -bhc -biU -bkz -bmq -boo -bqD -bsO -bup -bwk -bkz -bzM -bBz -aan -bEG -bGA -bIa -bJF -bLo -bMU -dbm -bPZ -bRq -bSE -mIU -aWf -eoc -bXL -bXL -cae -bXL -bXL -bXL -bXL -cbR -cip -cjQ -clo -cmv -cnD -coP -cqm -crz -csy -cty -rAF -cvv -cmB -cmB -cmB -cmB -cmB -cmB -cmB -gnW -svh -nQm -fMy -jBH -oqv -cDW -dtF -jPL -cpV -hEd -rXb -fRx -lSZ -iYR -cLa -cMN -cNG -cOm -cON -cPn -cON -cQj -cQF -cOP -cRp -cRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(94,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aax -eEe -aaE -acv -aaT -ewR -abq -acv -mqn -iGI -acL -aep -adx -adh -hyP -ajm -afO -nMg -ahx -ais -aiq -aku -ahx -ane -aoo -pCw -iUe -ajm -auZ -ajo -avk -ajo -aav -aDv -aAW -eYX -aDu -uvH -aFZ -aHx -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aUv -aVU -aXC -gsF -baL -qBS -bdD -bfm -bhd -biV -bkz -bkz -bkz -bkz -btH -buq -bAZ -bkz -bzN -bBz -bDa -bEG -bGB -bIb -bJG -bJG -bMV -bOr -bQa -bRr -bSF -mIU -aWf -eoc -bXL -bYY -rVd -cbQ -cdw -ceA -sqr -cgX -wAb -wgD -cri -cmv -cnE -coQ -dDt -crA -csz -ctz -rAF -cus -cmB -kDW -aUg -aUg -aUg -aUg -aUg -cDX -cmB -cmB -sqV -nBI -cya -eNA -don -xrj -cGS -cHH -qwp -fej -xrj -cgJ -cLa -cMO -cNG -cOm -cOR -cPq -cOR -aYG -cQF -cQV -cRp -cRL -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(95,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -alP -lbt -qLm -acv -acv -acv -abr -abJ -okP -gON -jgM -ade -foV -adh -hyP -ahx -afP -gFy -ahx -fCV -afh -akv -ahx -anf -aop -xke -aqY -ahx -atK -ahx -axg -ahx -ahx -ajm -ajm -ajm -aDv -aEI -aFZ -aHy -aav -aav -aJS -aJS -aNZ -aNZ -aJS -aJS -aav -aUw -aVV -aXD -gsF -baM -rrB -rrB -bfn -rrB -rrB -bcg -bmr -bkz -bqE -dCO -bup -bwm -bkz -bzO -bBz -bDa -bEH -bGy -bIc -bJH -bLq -bId -bOs -bJD -bJD -bGy -uzn -aWf -eoc -bXL -bYZ -cag -caf -ruD -ceB -sqr -cgX -cbY -cvr -cfP -cmv -cnF -qmy -cqo -coR -csA -rAF -rAF -cus -cmB -cmB -cmB -cmB -cmB -cmB -cmB -aUt -cmB -eIP -wxm -rAF -kny -efN -eZG -xrj -xrj -xrj -xrj -xrj -xrj -cLi -cLa -cMP -cNG -cOm -cOS -cPr -cOS -cQk -cQH -cQX -cRr -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(96,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aax -jNJ -ftV -qQr -tNn -knx -adU -abe -ace -acx -acM -aep -qkg -adh -pCz -ahx -ahx -agJ -ahx -aiq -aiq -akw -ahx -ang -aoq -gEY -aqZ -ahx -aws -awV -avZ -axR -aiq -aEG -aHp -aCk -aDy -aDC -aFZ -aHx -aav -aJS -aJS -aMG -aOa -aPt -aQz -aJS -aav -aUv -aVW -ayI -aZc -baN -bcg -bdE -bfo -bhe -biW -bkA -bms -bkz -btC -bsR -bur -bwn -bol -bzL -bBz -aIA -bEI -bGy -bId -bId -bId -bId -bId -bId -bId -bGA -bTK -aZa -bWn -bXL -bXL -bXL -sqr -sqr -sqr -bXL -dwy -cbY -cdy -clp -cmu -cnG -coS -cqn -acT -csB -rAF -cCf -kKo -kEz -kEz -kEz -kEz -wbF -qxh -nSk -gGL -cmB -uuS -kmq -kmq -cCe -nla -ore -cCe -cCe -cHI -cJx -cJx -cJx -cLj -cLa -cMI -cNH -cOn -cMI -cMI -cPN -cQl -cQI -cZc -cZd -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(97,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aox -aox -aox -rch -aax -aax -urv -urv -aNJ -qkg -abe -aep -aep -aep -aep -dsG -adh -hyP -aeX -afR -ege -ahy -axj -iZq -akx -alQ -apE -aor -apE -dCg -agT -aws -auU -awa -axp -aAN -azD -aAY -aCk -aDw -hHJ -aGb -aHx -lMJ -aJS -aLq -atf -atf -aPu -aQA -aJS -aJS -aUx -aUx -aXE -hdT -baO -bch -bdF -bfp -bhf -biX -bkB -bmt -bkz -bsP -bsQ -bus -bwo -byb -bzP -bBC -bDd -bEG -bGC -bIe -bJI -bLr -bMW -bOt -bQb -bRs -bGC -bTL -aWf -ydI -bXM -tDQ -cai -cbT -oTh -ceD -cfT -cgZ -cit -cvr -clq -cmu -cmu -cmu -cqp -cmu -cmu -rAF -cus -cmB -mRT -cxr -kBT -gol -xdB -qxn -ryn -rQQ -cmB -vqw -kmq -bNy -pLw -hUA -wCa -kJt -cCe -cgJ -bTs -bTs -bTs -cLk -cPb -cMR -cNI -cOo -cMR -cMI -cMI -cMI -cMI -cMI -cMI -cMI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(98,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aox -aav -aav -aav -aav -wOY -kxJ -aax -aaw -adM -abL -acf -acy -xSF -adf -adV -aaw -hyP -aiq -rpQ -ege -aiq -awp -awp -aky -awp -awp -uhk -awp -aos -apF -atM -auV -awb -ays -ahx -aiq -aiq -ajm -hjl -aDC -aFZ -aHx -aav -aJS -aLr -aMH -aOb -aPv -avN -aRT -aJS -aUy -aUx -aXF -gsF -baP -bcg -bdG -bfq -bdG -bdG -bcg -bmu -bkz -bqG -dbe -but -aam -bkz -bzQ -bzR -bDa -dDa -bGC -bIf -bJJ -bLs -bMX -bOu -bQc -bRt -bSG -mIU -aWf -bWq -bXN -bZb -uzx -cbU -cdz -ceE -cfU -cha -ciu -cjR -clr -cmy -ctq -cbu -cqq -crD -csC -rAF -waj -cmB -wij -cmB -cmB -cmB -xdB -mRg -ryn -rQQ -cmB -nrB -kmq -jsZ -obA -rRk -sad -tBJ -wWj -cHJ -bTs -cJy -cKv -cLl -diV -cMS -cNJ -cMg -cMV -cMV -cPO -cQm -cQJ -cQY -cRs -kzn -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(99,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aox -xcN -aav -aav -aav -abu -xBL -iND -aaw -qkg -adh -adh -adh -adh -adh -pwv -anc -xON -aeZ -afS -agM -ahA -aiw -dtX -lrV -ajQ -uiS -atN -alS -ajU -alS -atN -alS -awc -aws -aiq -aEJ -aJi -aCk -aDy -aEK -aGd -aHx -aav -aJS -aLs -aMH -aOc -aPw -awo -axn -aTi -aUz -aVY -aXG -aZe -kjJ -bci -lMJ -lMJ -lMJ -bfv -bfv -bmv -bfv -bqH -bqH -buu -bqH -bkz -bzR -bBD -bDe -bEK -bGD -bIg -bJK -bLt -bMY -bMY -bQd -bRu -bSH -mIU -bVc -aPf -bXN -bZa -cak -cbV -cdA -ceF -cfV -uGS -civ -cfY -cls -uGS -uGS -uGS -uGS -uGS -csD -rAF -cuu -cmB -ekW -cyd -wNt -fme -xdB -qxn -ryn -rQQ -cmB -rZw -kmq -jlG -tYD -dDC -ruu -xXL -cCe -ctK -bTs -cJz -cKw -cLm -cLm -cLm -cNK -cLm -cLm -cLm -cLm -cMf -cQK -cPv -cPv -cPv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(100,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aox -aav -aav -aav -aav -wOY -kFW -aax -qWF -adg -abN -adU -mNE -adU -adU -adA -adh -dKN -ajm -afT -ajm -ajm -ahx -ahx -ahx -alR -ahx -afZ -agQ -pdx -irI -sJV -auW -ara -axp -aAT -xjc -cTY -aCk -aDw -aDC -asC -aHx -aav -aJS -aLt -aMH -aOd -aPv -awQ -aRV -aJS -aUA -aUx -aXH -gsF -kjJ -bci -lMJ -lMJ -lMJ -bfr -bkC -bmw -bop -aCA -aDp -buv -bwq -byc -buE -bBE -bDf -bEG -bGE -bIh -bJL -bLu -bMZ -bYq -bQe -bRs -bGC -bTM -dCE -bWp -bXO -bZc -fmC -cbW -acp -ceG -cfW -chb -ciw -cjS -clt -cmz -cnH -coT -cqr -uGS -csE -rAF -meP -cmB -cmB -cmB -cmB -cmB -nvq -ksN -uYE -rQQ -cmB -jHc -kmq -kJt -kJt -pod -ren -gxB -cCe -diC -bTs -cJA -cKx -cLn -cMd -cMd -cNL -cOq -cOT -cLm -cPP -cQo -cQL -cQY -cQK -eCT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(101,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aox -aox -aox -rch -aax -aax -aax -aax -sfJ -xdf -abe -aci -abe -acO -adh -naq -adW -aep -ajm -lMJ -aav -ajm -aNA -ajq -aix -akA -aeq -aeq -anl -aeq -asp -ahE -aiq -atO -ayx -ahx -aiq -aiq -ajm -hjl -dCr -aGf -aHx -lMJ -aJS -aLu -atY -atY -avo -aQC -aJS -aJS -aUx -aUx -aXI -iuX -kjJ -bci -lMJ -bfr -bfr -bfv -bkD -bmx -oem -bos -bsS -bjc -bwr -byd -bzS -bBM -bDn -bEM -bGC -bGC -bJM -bGC -bGC -bOw -bOw -bOw -bGC -bTN -aWf -bWq -bXN -bZd -eWs -cbX -cdC -ceH -cfX -chc -cix -cjT -cjT -cjT -cnI -coU -cqs -crE -csF -sWX -vvb -cmB -cmB -cmB -cmB -cmB -cmB -cmB -cmB -gna -xNX -vqw -kmq -qif -wFB -cEb -ruu -cFV -cCe -cKp -bTs -cPb -cKy -cLo -cLm -cLm -cLm -cLm -cLm -dDG -cPU -cMf -cQK -cPv -cPv -cPv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(102,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aax -aep -aep -aax -acj -abe -acR -adi -adC -aep -aep -aav -lMJ -aav -ajm -aiy -dBZ -ajr -akK -anl -aou -apJ -arb -asq -ava -anB -awe -aws -aiq -aEJ -dhv -aCk -aDy -aHA -aGg -aHx -aav -aJS -aJS -aMI -aOe -aPx -aQD -aJS -aav -aUv -aWa -aXC -gsF -kjJ -bci -lMJ -bfr -bhh -biZ -bkE -bmy -bmA -aaR -bsU -bsU -bsU -bye -bsU -bfv -bDh -bEG -bBz -lMJ -lMJ -bLv -bNa -bOx -bQf -bRw -bLv -bTG -aWf -bWq -bXN -bZa -can -rHA -dDo -ceI -cfY -chd -ciy -cjU -kge -fuY -rTC -coV -xgQ -uGS -cKJ -rAF -cus -cmB -cmB -rtp -pTS -pTS -pTS -pTS -pTS -neP -cmB -vqw -kmq -mdG -cCj -vzK -ruu -cFW -cCe -cHL -bTs -cJB -cKz -cLp -cMe -cMT -cMT -cMT -cMT -cMT -cPT -cMf -cQK -cPv -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(103,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aax -wiZ -aax -aax -aax -aep -aep -lMJ -aav -lMJ -aav -ajm -aiz -ajt -akB -aff -aeq -aga -apJ -arb -asr -ahF -auY -avb -azz -aAX -aEL -aBa -aCk -aDw -aHA -aGh -aHx -aav -aav -aJS -aJS -aNZ -aNZ -aJS -aJS -aav -aUw -aWb -aXJ -gsF -kjJ -bci -lMJ -bfr -bhi -bja -oem -oem -bos -bqJ -bsU -buC -bws -aES -bzT -bfv -bDi -bEO -bzR -bBz -bBz -bLw -bNb -bOy -bQg -bRx -chw -bTG -aWf -bWq -bXQ -bZb -cao -cbZ -cdD -ceJ -cfZ -che -ciz -twp -clv -cmC -cnK -coW -cqu -uGS -csH -rAF -cus -clu -cmB -cmB -cmB -cmB -mRT -kBT -nMs -cCY -sQR -fvw -kmq -vDg -oOy -mNW -oMO -dJr -cCe -cxL -bTs -cJC -cKA -cLq -cMf -cMU -cNN -cOs -cOW -cMU -cPS -cMf -cQM -cPv -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(104,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -aav -aav -aox -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aeq -aeq -aeq -aeq -aeq -aeq -agb -apL -aeq -ass -ahI -adY -axi -ajx -adY -ajx -ajx -adY -lxj -aHA -aHw -aHy -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aUv -aWc -aXK -aZg -kjJ -bci -lMJ -bfr -bhj -bjb -bjc -bmA -bot -bqK -bsU -bsU -bwt -aEU -bqM -bLT -bDj -bEG -bGG -bGG -bJO -bLv -bNc -bNf -bQh -bRy -bSK -bTO -bVe -bWr -bXN -bZa -cap -cca -cdE -ceK -cfX -chf -ciA -cjW -clw -uGS -cnL -coX -cnL -uGS -cbC -rAF -exA -hOP -cjV -fVx -mLe -cJv -cJu -rAF -rAF -rAF -rAF -rAF -kmq -cCe -rdB -mjq -cCj -vGs -cCe -cgN -bTs -cJD -cKB -cLr -cMg -cMV -cMV -cMV -cMV -cMV -fGz -cMf -cQK -cPv -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(105,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aox -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aeq -aer -bgB -akC -alU -ann -agc -apM -aeq -ast -avY -awZ -ayz -azE -aCh -aFR -dnM -adY -aDw -aHA -aIr -aHx -aHy -aHx -aHx -aHx -aHx -aHx -aHx -aHx -aHy -aUB -aWd -aXL -aZh -kjJ -bci -lMJ -bfv -bhk -bjc -dCK -bmB -bou -bqL -bsV -bsU -bwu -aEU -bzU -bBH -bDk -bEP -bGH -bGH -bJO -bLw -bTZ -dDf -bQi -bRz -bLw -cMQ -bVf -bWs -bXR -bZe -bZb -ccb -cdF -bZa -uGS -cfX -uGS -cfX -uGS -uGS -cnM -coY -coY -uGS -csI -ctD -rAF -rAF -rAF -vxU -rAF -rAF -rAF -cIH -cCl -cCZ -cEf -cFY -cFY -cCe -cCe -cCe -icO -cCe -bTs -cHM -ctH -cPb -cKC -cLr -cLm -cLm -cLm -cLm -cLm -cLm -cPU -cMf -cQK -cPv -cPv -cPv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(106,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aeq -aiA -akD -ano -agK -ano -agK -apN -cZk -asu -ahI -ajx -awf -aDE -aDE -roZ -pvK -aBc -aDw -aHA -aGj -aJT -aII -aJT -aLy -aMJ -aJT -aJT -aQE -aJT -aII -aUC -aWe -aXM -aZi -kjJ -bci -lMJ -bfr -bhl -bjb -bjc -bmC -bjc -bqM -bsW -bsU -bjc -byf -bzV -bBH -bDk -bEP -bGI -bGH -bJP -bLw -bNe -bNf -bQj -bRA -bLv -bTQ -bVg -bWt -bXS -bZf -caq -caq -cdG -caq -cgb -hfz -hfz -hbc -clx -cmD -cnN -coZ -coZ -crF -kld -ctE -dDv -cuA -cwF -cxz -ura -czf -cAh -hfz -hfz -hfz -cEg -cFa -cFZ -hja -hfz -hfz -hfz -kJl -cGU -cHN -cIE -cJE -cKD -cLs -cOY -cMW -cOY -aXb -cOY -cPs -cPU -cQp -cQN -lwx -cQK -eCT -cYJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(107,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -aeq -aeq -ajv -akE -alW -akE -alW -akE -arf -asv -atR -azb -ayB -ayy -aCj -npx -aBb -hql -aDw -aHA -asK -aHA -aIJ -aHA -aHA -dCr -aHA -aPz -aHA -aRW -aHA -aUD -aWf -aXN -djB -baS -bci -lMJ -bfr -bhm -bjd -bkF -bmB -bov -bqN -bsX -buA -aDW -byg -bzW -bBH -bDl -bEQ -bGJ -bIj -bJQ -bLx -bNf -bNf -bQk -bRB -bLv -bTQ -bVh -bWu -aWf -bZg -car -hpi -tCx -ceL -ceL -ceL -ceL -iPP -ceL -ceL -cnO -ceL -ceL -ceL -juI -ctF -car -car -car -car -car -sVa -cAi -car -car -car -car -cFb -car -hGR -car -car -car -car -car -car -cIF -cJF -cKE -cLt -cMi -cLr -cLr -cOt -cLm -cLm -cLm -cMf -cQO -cPv -cPv -cPv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(108,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -ank -aav -lMJ -aav -aav -aeq -ajw -akF -alZ -anq -agd -aoy -anl -asw -ahI -ajx -awg -axh -dCh -mDQ -dmU -yej -aDA -aHA -aGl -aIK -adD -aJV -aIK -aIK -aIK -aPA -vKG -aIK -aIK -aUE -aWg -aXO -aZk -baT -bci -lMJ -bfr -bhn -bjb -bjc -bmB -bow -bqM -bsY -bsU -bjc -byh -bzX -bBH -bDm -bER -bGK -bGH -bJO -bLw -bNg -bOC -bQl -bRC -bLv -bTQ -bVi -bWv -bXV -bZh -cdI -oQj -cdI -cdI -cgc -cyo -gIF -nWD -qiB -xDd -cdI -upe -upe -cEh -kIY -ctG -cgc -cvG -cyo -cxB -cyo -cyo -xIm -cyo -cCm -cEh -cEh -cFc -cyo -mJB -cyo -cyo -fCG -cyo -cyo -cvG -cIG -cJG -cKF -cLu -cMj -cMY -cMT -cOu -cPa -cPu -cPV -cQq -cQP -cQY -cRt -eCT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(109,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -agS -aiD -aiD -agS -aqa -aeq -anl -anl -aeq -aeq -aeq -aeq -aeq -agU -ahI -adY -ayE -ajx -adY -ajx -ajx -adY -aDB -aHA -aGo -aHC -aHD -aJW -aHD -aHD -aHD -aHD -aHD -axq -aTk -aUF -aWh -aXP -aZl -baT -bci -lMJ -bfv -bho -bjc -bjc -bmB -box -bqO -bsZ -bsU -bwv -byi -bzY -bBH -bDk -bEP -bGH -bGH -bJP -bLw -aZP -dDg -bQg -bRD -bLw -bTQ -bVj -bWw -bXU -bZi -bZk -jwP -ccc -bZj -cCn -cCn -cCn -wwX -cCn -cCn -cIH -eMK -uus -eOd -cCq -cCq -cCq -cCq -cCq -cCq -cCq -xuu -vAO -eqH -cmP -tir -gPF -cgq -cgq -cgq -cgq -cgq -cgq -cgq -wtq -wtq -sjZ -wtq -pSX -cLv -cPb -cMZ -cNP -cOv -cPb -cPv -cPb -cPv -cPb -cPv -cPv -cPv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(110,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aqa -agS -aDG -lrI -oVO -aqa -aes -ajy -arj -amb -afY -amf -dCf -aiD -ahC -atS -aaD -awi -axj -uNe -aBd -ece -rqO -aHF -aET -aJV -aHD -aIL -aJX -aLz -aMK -aOf -aPB -aQG -aRY -aTl -aHD -aWi -aXQ -aZm -baT -bci -lMJ -bfr -bhp -bjb -dCK -bmE -boy -bqP -bsU -bsU -bww -byj -bqM -bLT -bDn -bFd -bGL -bIk -bJP -bLv -bNi -bOD -bQm -bRE -bSM -suR -qeN -hLF -vPe -pQF -eRH -hSZ -ccd -vWQ -cCn -fFb -nSh -fId -lMa -wvW -cCq -wDJ -rXe -wDJ -cCq -hlN -dRv -qEW -dRv -wjK -yaS -gtm -aAM -qZu -cmP -wgg -nPS -cgq -dah -mgB -umI -dJh -sRB -cgq -qVW -kWn -cNe -wtq -tsU -cLw -cPb -cNa -cNQ -cOw -cPb -lMJ -aav -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(111,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aiD -axl -ame -ahB -ahG -ehi -ajs -akI -akI -akI -akI -ait -aiH -ari -asx -aiB -apF -awj -aws -ayC -azK -aBe -aCp -aDD -aDC -aGo -aHD -aIM -aIR -aIR -aML -aOg -aPB -aQH -aQH -aIT -aHD -aWj -bWq -aWf -baT -bci -lMJ -bfr -bhq -bje -oem -oem -bos -bqQ -bsU -buC -bwx -byk -bzZ -bfv -bDo -bET -bzR -bBz -bBz -bLw -bNj -bOC -bQn -bRF -chw -bUb -aWf -bWq -bXV -bZj -ikF -gpk -cMc -fiM -xlN -vqC -uTO -uSK -oUn -rrJ -cDi -suV -qtr -ili -sTV -qcO -rKK -xXu -ujz -dgV -cDi -pxv -pxv -pxv -cmP -xMe -uhd -nOL -mDI -eLP -vTk -lLC -sRB -cgq -deh -uHM -wOE -wtq -vBx -cLx -cPb -cNb -aXa -cOx -cNP -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(112,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aqa -agS -aEW -ixj -qRr -aqa -aex -ajA -akJ -aiC -anu -aoz -apQ -aiD -asz -fjF -anB -aCn -axp -azN -aBh -eoT -aGq -gPT -aEV -ooY -aHD -aIN -aJY -aLA -aMM -aOh -aPB -aQH -aQH -aTm -aHD -aWk -aXS -aWf -baT -bci -lMJ -bfr -bhr -bjf -bkG -bmF -bmE -boy -bsU -bsU -bsU -byl -bsU -bfv -bDp -bFd -bBz -lMJ -lMJ -bLv -bNk -bOF -dip -bRG -bLv -bUb -aWf -bWq -bXV -qnH -ccd -gpk -iQb -fiM -lfN -vqC -uax -nbp -fWV -dHg -xpu -kRP -wQh -hnw -tKF -kRp -iLb -ngp -syw -vHt -cDi -vUI -fcW -fLC -oTC -djl -iMc -kkY -nTh -rjI -vTk -asa -pDc -cgq -wtq -cMk -wtq -wtq -xLF -hTk -cPb -cNc -cNR -cOy -cNP -aav -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(113,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -agS -aiD -aiD -agS -aqa -aqa -fse -aiD -alX -ajD -aiD -ajD -ark -aiD -ajD -ave -awl -axm -ajm -aiq -aiq -ajm -ajm -ajm -ajm -eZU -aIO -aJZ -aIR -aIR -aOi -aPB -aQH -aQH -aTn -aHD -aHD -aXS -aWf -baT -bci -lMJ -bfr -bfr -bfv -bkH -byk -oem -bos -bsS -buD -bwy -bym -bAa -bBM -bDj -bEV -bGM -bGM -bJS -bGM -bNl -bNl -bNl -bNl -bGM -kuW -aWf -bWy -pnW -rJH -oLq -xrD -iQb -fiM -lfN -qrp -ctJ -qBH -euC -cyr -cDi -cVI -rzE -hnw -mJx -uQj -cFh -tiC -oPN -rVb -vMD -pEr -sQu -lvi -bWa -mmL -gSV -wKj -uXd -wZw -mHk -gHh -gVv -vKq -yka -mKb -mKb -fxT -gfK -hQQ -cPb -cNd -cNS -cOz -cPb -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(114,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aiJ -qBy -oCD -eeq -akW -iLU -hTh -tuW -shE -dgx -pSM -xlK -ajD -juX -ajD -avf -amL -aws -aiq -azP -aBi -aGr -ajm -aEX -aDH -eZU -aIP -aKa -aLB -aMN -aOj -aPC -axc -aRZ -axw -aUG -aHD -aXS -aWf -baT -bci -lMJ -lMJ -lMJ -bfr -bkI -bmH -boB -bqT -btb -djq -bwz -byn -bAb -imV -bDr -bFd -bGN -bIm -bJT -bLy -bNm -bOG -bQp -bRH -bGM -mYR -aWf -rqI -sFV -wRM -cdB -gpk -iQb -fZx -cCn -jKu -qIa -iOF -qIa -ugo -cDi -tsg -gGb -jZA -tOo -tFM -osV -rVb -osV -xTK -bSb -nEI -ipr -tDC -oTC -laB -iBL -kRc -xRg -gIt -iBL -luf -trV -cgq -sEG -wtq -wtq -wtq -tsU -jHk -cPb -cPb -cPb -cPb -cPb -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(115,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -ejL -kdA -xzM -cZZ -xFX -mlg -gYD -phV -oHg -ikD -eVn -sIr -tEy -vKV -aiD -ahC -awh -aws -aiq -snF -eeh -aCr -ajm -avk -aDH -eZU -aIQ -aKb -dCq -aIR -avc -aPB -aQH -aQH -dCz -aUH -aTk -aXT -aZn -baT -bci -lMJ -lMJ -lMJ -bfv -bfv -bfv -boC -bqU -bfv -bcj -bcj -aFs -bcj -bBN -bDs -bEX -bGO -bIn -bJU -bLz -bLz -aLo -bQq -bRI -bGM -inF -bVm -gPA -bXV -bZk -ttK -woe -qxm -wPP -cCn -sBW -cvH -fYG -cvH -fYG -cDi -cDi -jMU -cDi -cDi -jla -smS -uqQ -rVb -oMF -cDi -xgZ -ipr -jqV -cgq -cgq -cgq -cgq -cgq -cgq -cgq -cgq -cgq -cgq -sEG -wOE -jVH -wtq -ulz -ryw -xQt -cPb -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(116,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aiJ -uGy -uBx -nIg -aey -ajD -oTs -ybx -iGj -eGU -cZG -ijv -jFr -dWv -hic -xoL -awn -axp -mEn -azO -apk -aBi -fCe -avk -avk -eZU -aIR -aKc -aLC -aMO -aOk -aPB -aQH -aQH -aTo -aUI -aWl -aXU -aWf -baU -bcj -bcj -bcj -bcj -bcj -bkJ -bcj -bcj -bcj -bcj -buF -bwA -aFu -bAc -bcj -bDj -bFd -bGM -bIo -bJV -bLA -bNn -bOH -bQr -bRJ -bGM -tyh -dCE -bWq -bXV -bZn -cXD -ndN -qFQ -kuP -gCo -mpZ -uBB -mpZ -mlj -mpZ -fUL -oid -wMS -uyE -fJA -iQy -wtJ -wtJ -mBU -fBG -cDi -hWk -ipr -lwd -cyK -rNJ -pGP -wXB -kDc -ibu -mSz -czD -qAs -tcW -xSC -wOE -moz -wtq -mOq -ryw -wFH -cPv -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(117,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aiJ -fvc -oHs -opc -aey -lEI -gjB -vKV -vKV -vKV -sqf -tll -asH -vKV -pME -avh -awp -aws -aiq -azP -aBj -rky -ajm -hdb -avk -ofB -aIS -aKd -aIR -aMP -aOl -aPB -aQH -aQH -aIT -tru -aHD -lfy -dCE -baV -bcj -bdH -bfy -bht -bjg -bkK -bjg -boD -bqV -btc -buG -bwB -byp -bAd -byo -bDj -bEZ -bGM -bIp -bJW -bLB -bNo -bOI -bQs -bRK -bGM -wTy -aWf -bWG -bXZ -bZn -iFr -ccd -fJL -vmd -nPq -ccd -fmX -ccd -fJL -ccd -haG -ftK -ipr -ruM -kIu -vfl -hae -fkK -uCb -vnv -kIu -ouA -ipr -gGe -juT -vVC -qvw -hVF -phY -fit -qBU -wGd -lGz -cyK -pYC -wOE -gkW -wtq -tsU -ryw -cMl -cPb -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(118,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aiJ -fPj -ahc -jkv -aey -lEI -gjB -qrF -ibS -vKV -hbs -tll -mjB -lGD -aiD -asw -awp -axr -aiq -azP -aDF -ayF -ayJ -ayJ -ayJ -aHD -aIT -aKe -aIR -aIR -aOm -aPB -aQJ -aIT -aIT -aUJ -aHD -aXS -aWf -baW -bcj -bdI -bfz -bhu -bjg -bkL -bjg -boE -bqW -btd -buH -bwC -byq -bfA -bcj -bDu -bFa -bGM -bGM -bJS -bJS -bGM -bJS -bQt -bJS -bGM -iWd -aZa -hAY -bSS -bZn -sta -smK -smK -eud -cgo -mqU -upm -lPK -wbd -shH -bZn -wSq -ipr -xoi -cDi -oEw -awU -oFi -qQc -srI -cDi -ouA -ipr -uIL -cyK -skm -qhE -eoF -nFh -jOf -mLI -hZj -yiz -cyK -cLA -wtq -cNT -cNT -cNT -oiC -cNT -cNT -cNT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(119,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aiJ -fPj -ahc -jkv -aey -lEI -gjB -uvg -dZy -vKV -vKV -snP -jxP -ajD -ajD -mfG -awp -axs -ayF -ayF -ayF -ayF -aDI -aFa -kKH -aHD -aHD -aHD -aHD -aMQ -aHD -aHD -aHD -aRX -aTk -aHD -aHD -aXV -aZa -baX -bcj -bdJ -bfA -bhv -bjg -bkM -bjg -boF -bqX -bte -dCP -bwD -byr -bAe -bcj -bDj -bFd -bGQ -bGM -bJY -bLD -bKa -bOK -bQu -bRL -bSO -bTI -aWf -bWG -aVU -cgd -iHl -eyR -iHl -iHl -cgd -lmG -eWd -vjl -eWd -vjl -eWd -xHg -ipr -nKi -cDi -kIu -kIu -cDi -kIu -kIu -cDi -jnA -ipr -iou -jmX -nyc -nNh -eqN -iEs -iXv -qmZ -nrI -iHt -cyK -eqD -cwc -cNT -pTW -toP -hyU -xWr -vdw -cNT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(120,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -akW -fPj -hMO -jkv -aey -lEI -gjB -gbq -dSh -vKV -iQR -tll -rcr -kgO -rDF -amD -awq -aHE -ayG -azR -aBl -aCt -aDJ -aEZ -aGu -aHG -aIU -aKf -aLD -aMR -aOn -aHG -aQK -aLK -dCA -aLK -aSe -aXS -aZp -baT -bcj -bdK -bfB -bhw -bjh -bkN -bmI -boG -bqY -btf -buI -bwE -bys -bAf -bcj -bDv -bFc -bGR -bGM -bJZ -bLE -bNq -bOL -bQv -bRL -bSO -bTI -aWf -bWG -aVW -cgd -tLz -tqm -jWM -obP -sEs -rKA -tMM -sBj -gsj -tdH -czh -eEi -ipr -kNa -eVT -eVT -sBb -fNg -hZB -ccg -gad -evc -ipr -iou -jmX -uGO -uWn -eqN -btl -nrI -qjh -kbu -vnH -cyK -ndr -cwc -fNP -gyL -bZB -mhg -oJm -gPf -iJI -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(121,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aiJ -evO -tfK -fcw -aey -ajD -jAo -vKV -vKV -vKV -qze -tll -cZe -xoB -rDF -amI -awr -axt -ayH -aCu -aCu -aCu -aDK -aFa -aGv -aHG -aIV -aKg -aLE -aMS -aOo -aPG -aQL -aOy -aTq -aOy -aWm -aXW -aWf -baY -bcj -bdL -bfA -bhx -bji -bkO -bjg -boH -bqZ -btg -buJ -bwF -byt -bAg -bcj -bDw -bFd -bGS -bGM -bKa -bLD -bJY -bOM -bQw -bRM -bSO -bTI -aWf -bWG -aVW -cgd -nvs -iKe -rdm -kzK -rXo -eAP -uRv -mmq -ptF -szy -ocq -xBZ -ipr -ipr -ipr -ipr -irg -eNy -muH -eRV -ayU -jCF -qls -fkQ -jmX -fhT -eHl -eAs -czD -tUN -cyK -ppN -ppN -cyK -paR -dZe -snb -rqS -tyk -iHH -tPH -wPI -cNT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(122,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aiJ -akW -aiJ -akW -aiJ -txP -aPX -ePA -lGA -sQG -pMF -dpo -xEG -ajD -ajD -amJ -anK -axu -ayG -azT -aBn -aCv -aDL -ayJ -ayJ -aHG -aIW -aKh -asW -aMT -aOp -aPF -aQM -aSc -aTr -axx -aWn -aXX -aWf -baU -bcj -bdM -bfC -bhy -bjj -bkO -bjg -bjg -bcj -bcj -bcj -bwG -bcj -bcj -bcj -bDj -bFd -bGM -bGM -bGM -bGM -bGM -bGM -bQx -bGM -bGN -bTJ -aWf -mpI -bYa -cgd -miu -kyp -efd -pyv -djS -mmq -iNp -vLB -iDJ -wiG -eWd -dyI -nhu -mfR -pWO -mUf -jyc -sOe -tUK -jvx -iLf -xUf -joB -eYq -cyK -czD -guo -oHk -dtx -dtx -wQA -iSy -iSy -nOc -dAw -dvY -cNT -cNT -sjB -lwr -lwr -tHY -wDi -nRb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(123,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -lMJ -aiD -jvb -pcN -xJq -gjD -oSr -kkR -nme -cZe -tgc -aiD -avi -awt -axv -ayF -azU -aBo -aCw -aDM -aFb -aGw -aHG -aIX -aIY -aLF -aIY -aOq -aPG -aQN -aOu -aTs -aUL -aSe -aXS -aWf -baT -bcj -bdN -bfD -bhz -bjk -bkP -bjg -boI -bcj -bth -buK -bwH -byu -bAh -bBO -bDx -bFd -bGT -bIq -bKb -bLG -bNs -bON -bQy -bRN -bSP -bUa -aNH -bWE -bSS -cgd -cgd -cgd -cgd -cgd -cgd -uMh -fpM -jIy -tQZ -rPm -eWd -dQd -lAM -ufS -ufS -dQd -bZn -bZn -qIY -jvx -cZP -lbj -joB -hSZ -jmX -xNF -dJb -gAo -tLs -laD -nDc -hnc -fmA -nOc -dAx -ciL -dwv -cNT -uQa -ptz -rjF -iCI -cNT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(124,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -adZ -adZ -rxD -adZ -adZ -fFB -lpO -vSo -sqU -hjF -fRM -gzx -fRM -pBF -aqa -ajm -awu -ajm -ayF -azV -aBp -aCx -aDN -ayJ -aGx -aHH -aIY -aKj -aLG -aMV -aOr -aHG -aQO -aOu -aTA -aUM -aWo -aXS -aWf -baT -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bcj -bti -bcg -bcg -bcg -abp -bBP -bDy -bFf -bGU -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bcg -bUb -aWf -bWF -bYb -vWK -diA -crJ -dDq -ceY -dFC -gMG -pVi -vCn -ocv -eQp -pYm -uQh -lJt -dHN -izO -nOI -jeM -isH -oNl -suh -eIk -hMa -mDG -iVt -jmX -dbG -nkG -wZN -qhS -nSp -mBC -xHV -eoI -nOc -dxQ -ciL -dzc -cNT -cNT -cNT -iJI -cNT -cNT -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(125,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -adZ -qYs -lWh -yaR -adZ -fWp -adZ -fis -oZH -aqa -aoJ -aqa -aru -aqa -aqa -avj -awv -avk -ayJ -ayJ -ayJ -ayJ -ayJ -ayJ -dCp -aHG -aHG -aHG -aHG -aHG -aHG -aHG -aQP -aSe -aTu -aUM -aWp -aXS -aWf -baZ -bcl -bdO -bfE -bhA -bjl -bkQ -bmJ -boJ -bra -btj -bcl -abO -byv -bcl -bBQ -bDz -bFg -bUb -bKc -bUb -bLH -bNt -bOO -bUb -bRO -sKL -bUb -aWf -bWG -bSS -bSS -bSS -bSS -bSS -ceZ -cgd -eDK -xWI -uZe -iUN -rXN -pYm -dUX -fHe -glk -vou -uwX -jeM -isH -vLG -dvC -hSZ -oRD -wMR -sIB -jmX -anm -vEB -nXE -vSz -eTx -iuk -qkq -fmA -nOc -dxQ -ciL -cMp -rdo -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(126,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vvJ -bZN -udc -mPi -oVx -dID -adZ -hiT -aAy -aqa -aoK -aqa -arv -asM -atZ -avk -aww -axy -ahx -azW -aBq -aqb -aDO -aqb -aGy -aqb -aIZ -aKk -aLH -aMW -aOs -aPH -aQN -aOu -aTA -aUM -aWq -aXY -aZr -auT -dCH -bdP -baG -bhB -aWf -bkR -aWf -abC -brb -aDq -aWf -aWf -aWf -dCE -bBR -bDA -bFh -aWf -aZa -aWf -sPc -aWf -aWf -aWf -dCE -aWf -aWf -bVo -bWH -bYc -bZq -caG -ccp -bSS -ceZ -hlo -nUI -aTj -gaZ -lrP -ndG -pYm -liB -oXA -sBe -dSN -pPA -bZn -bZn -rDo -xFj -ekr -cgo -cgo -cgo -cyK -rpD -saJ -cAH -wQA -mVt -wQA -iSy -iSy -nOc -cLF -dvY -dvY -dvY -dvY -dvY -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(127,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -vvJ -eXx -svl -eaA -tYx -qAt -wLu -lvG -xnx -anD -aoL -ajD -arv -asN -atZ -avk -awx -axz -ahx -azX -aoP -axC -axC -axC -axC -axC -axC -axC -aZU -aMX -tPk -tPk -aQQ -aOy -aTv -aUM -aWr -aXZ -aZs -bbb -bcm -bdQ -bfF -bhC -bjn -oJP -bmK -boK -brc -qwx -isV -fiI -vPC -byw -byw -bDB -bFi -byw -bKd -gtO -aLj -jYU -vnX -epD -vLs -aCl -bUc -bVp -bWI -bYd -aPK -aQF -ccq -bSS -ceZ -cgd -eWd -ghZ -wbm -wbm -wbm -eWd -sen -nyO -lPx -uGJ -jpP -jeM -dsa -pjB -flh -nyh -nOc -dwv -uce -czD -czt -dKO -erc -czD -hKT -dvY -gyl -gyl -nOc -dxQ -dvY -nio -wdC -llI -dvY -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(128,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -vvJ -xtH -xBA -fjo -fbZ -ghw -adZ -tAN -mJn -aqa -aoM -ajD -arw -asM -atZ -avk -awy -axA -ahx -dhz -aoP -axC -aDP -axC -aGz -axC -aJa -axC -bbG -aMY -aOu -aOv -aQR -dCv -aTw -aUM -aWs -dnh -aZt -aZt -aZt -aZt -bfG -bhD -bjo -bkT -bmL -bmP -bBS -fGa -kja -aEc -bBS -bBS -bmP -bmP -bBS -bmP -bmP -bmP -bmP -bmP -bmP -gwH -dgq -jZS -bUd -bVq -bWJ -bYc -bZs -pCe -ccr -bSS -cfa -yeb -gCa -qdm -vUQ -cXm -htu -crQ -crQ -crQ -crQ -crQ -crQ -xeG -xeG -lTf -ipr -vmB -nOc -oRI -qyW -xpn -lme -oSf -oAI -eLS -gkU -iiU -ukp -ukp -ukp -cxM -xQF -ciL -ciL -ciL -dvY -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(129,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -adZ -jPr -ahN -upG -kGm -hbk -adZ -aqa -aqa -aqa -aoN -ajD -arx -jir -ajD -avk -awz -axB -ahx -azY -aoP -axC -aDQ -axC -aGA -axC -aJb -axC -bah -aMY -aOv -aOw -aQR -aOu -aTx -aUM -aWt -aYa -aZt -bbc -bcn -bdR -aZt -bhG -bjp -tFU -xKx -aao -aap -qQP -wjN -qCy -byC -dbx -vAj -mGc -bwO -bGZ -aaF -bmP -bVz -bOQ -bmP -bLI -rTa -xVl -bUe -bVr -bWK -bST -bUe -caJ -bUe -bST -ceZ -yeb -ibT -pOu -iPj -eCd -xtp -lTd -uTm -uzR -cdY -pZx -nTt -jxg -lTd -orS -ipr -hfJ -nOc -pDY -dww -czD -gXq -nGu -oSA -czD -hEi -hEi -hEi -ciL -vty -ciL -dvY -uRe -ciL -qmt -dvY -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(130,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -adZ -wmj -biz -poP -eeL -adZ -adZ -ala -amt -agq -dhr -ajD -ajD -ajD -ajD -ahx -ahx -ahx -ahx -aGE -aBr -aCz -aDR -aFc -aGB -aHI -aFd -aKl -aLK -aMY -aOw -aPI -aQS -aSf -aTy -aUM -aUM -avC -aZt -bbd -bco -bdS -bfJ -bhG -bjp -tFU -bmP -boN -aar -hMV -aas -aEq -byy -lOC -rtU -pEb -cjM -jGU -abS -pTt -bLJ -rfU -bmP -vAE -ecJ -xVl -bUf -bWS -bWL -aeb -bZt -caK -ccs -bST -fui -uDK -lnS -ucI -jzV -wTY -pSm -iOi -qzD -nwt -hNJ -hNJ -pJV -hNJ -lTd -vNu -ipr -eee -nOc -pDY -crR -crR -crS -qBc -scO -crR -crR -crR -cyK -cyK -dNG -nOc -nOc -nOc -nOc -dvY -dvY -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(131,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -uDx -vvJ -adZ -adZ -adZ -adZ -ajO -alb -aje -agq -aur -aqb -aqb -asP -aua -aqb -aqb -aqb -aqb -azZ -aBs -axC -aDS -arN -aGC -aHJ -aHJ -aKl -aLL -aMZ -aOx -aPJ -aQT -aOu -aTA -aUN -aUM -aYc -aTC -bbe -bcp -bdT -bfI -aBK -bjp -tFU -bBS -bFt -bwX -tyf -byC -aaM -byC -iUy -rtU -aJE -iJH -rOF -jNM -bmP -bLK -gCF -bmP -aLw -bRR -xVl -bUg -bVt -kat -bYf -wBM -caL -cct -cdU -cfc -yeb -wjF -kZt -uxB -muq -edl -lTd -fkc -uNv -sTK -xrI -bHk -fLU -lOn -rEd -ipr -thI -nOc -pxo -crR -tRX -frq -gGI -dss -ryq -ttZ -crR -qRW -qRW -rhN -gie -vOy -tvA -cAP -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(132,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aav -agq -ahd -ahR -aje -aje -alc -aje -agq -dCe -agq -agq -asQ -agq -agq -agq -axC -axC -axC -axC -axC -aDS -aFe -axC -axC -axC -axC -dhJ -aNa -aQR -aOy -aOy -aSg -aTA -aUO -aUM -biq -aZt -bbf -bcq -bdU -bfJ -bhG -bjp -tFU -bBS -kLC -ghJ -rPb -byC -iGT -byz -bBU -sKZ -jZN -dDb -vDQ -efV -bmP -qcK -hMT -bmP -bOT -bRT -xVl -bUj -edS -dDl -bWR -lLx -caM -ccu -bST -cfd -yeb -sqy -srC -nfX -muq -nXH -lTd -sDU -lhv -aSO -ihP -qQE -viH -lTd -goM -ipr -lxk -nOc -pDY -crR -nIk -mrg -oiB -tgb -lsU -sZA -jPZ -dFg -jNA -pFV -ror -pBA -fzQ -cAP -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(133,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -lMJ -agq -ahe -ahS -aje -ajP -ald -amu -anE -aoQ -agq -ary -asR -aje -auc -awA -axC -aBt -aAa -aBt -axC -aDT -aFf -aGD -aHK -aJc -axC -aLN -aNa -aOz -aOu -aOw -aOv -aTA -aUP -aUM -dCC -aZt -bbg -bcr -bdV -aZt -bhH -bjp -nVM -bDC -nPl -byC -bto -svt -ldJ -qQP -iUy -xJp -emW -bFn -bHc -jYc -bmP -bLM -tcR -bOS -bQD -hbK -wWE -mrP -bVw -bWT -bYj -utH -aQV -qUk -bST -dDr -cuZ -jFh -dFB -jNE -beE -fWQ -xeG -lfH -rmg -bWV -vGB -nEz -kkN -xeG -lQP -ipr -gwb -jJG -jtd -crR -urI -mJY -qtK -hio -rmM -rJp -vdD -rwR -jMm -cBx -sdp -qNp -kRe -cyK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -czK -czJ -czK -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(134,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -acP -acP -acP -acP -dhn -aiO -aje -ale -ahS -agq -aoR -agq -arz -asS -aub -aje -ahd -axC -ayL -aAb -aBu -aCB -aDU -aFg -dhD -axC -axC -axC -aLO -aNb -aOB -aOw -aQW -aOw -aTA -aUQ -dtE -aUV -aZt -aZt -aZt -aZt -aZt -bhI -bjC -tFU -kja -uWT -uyw -btp -buO -wrO -hcT -msT -rji -uxd -rDG -bFo -lWo -bmP -bLN -djV -bmP -bRQ -cwv -gkA -uEG -bVu -bWP -bYh -hhf -caN -ccw -bST -ceZ -cuZ -uzH -cwZ -esU -lBz -dGP -xeG -lsp -lBk -bWV -bnV -mHy -mUD -xeG -sRH -ipr -wqM -nOc -dxQ -crR -pKJ -pKJ -oJi -nFC -idk -idk -cyK -tXF -nOY -pdL -vcm -jgz -viR -cAP -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -lMJ -lMJ -czK -czK -qeb -czK -czK -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(135,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -acQ -afs -agr -acP -ahU -aiP -acP -acP -acP -acP -aoP -agq -arA -aje -auc -aje -awB -axC -ayM -aAc -aBv -axC -aDV -aFh -aGF -aHL -aJd -axC -aLP -aNb -aOB -aOw -aQX -aOu -aTA -aUR -aUM -avB -dnh -bbh -duo -dnh -bfK -bhG -bjp -tFU -bBS -qRO -byC -btq -jux -ldJ -qQP -nLy -cDQ -bAo -bmP -urx -bmP -bmP -bmP -bmP -bmP -bQF -hqF -rBy -bUi -qWw -vIc -quj -tDv -aQZ -tYS -bST -csg -cuZ -pcn -oxa -mYU -vTA -vNS -xeG -sMM -nUW -rKh -vGB -nEz -nEz -xeG -orS -ipr -xoM -nOc -dxQ -crR -gCP -gCP -mzz -ged -ged -ged -crR -naM -mQI -qpk -ijR -icw -nMY -cAP -aav -aav -aav -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -quc -lMJ -lMJ -cBM -czK -cCH -cDv -cEB -czK -cBM -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(136,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -aav -lMJ -aav -acP -acP -ags -acP -acP -acP -acP -alf -amv -acP -aoS -acP -arB -arB -arB -arB -arB -axC -axC -axC -axC -axC -axC -aFi -axC -axC -axC -axC -aLQ -aNc -aQR -dCv -aQY -aOw -aTA -aUS -aUM -aYg -mtC -bbi -bct -dnh -bfL -bhG -bjp -tFU -bBS -dbd -jUu -byE -dzh -ldJ -qQP -byz -lUi -jIE -bFp -dhT -mdC -gMV -bLO -qVp -bKe -bNB -bRU -gUR -bUm -mfj -dkR -vJJ -auj -qjI -ccx -bST -ceZ -cuZ -ewt -pcn -tBm -pcn -nyz -xeG -xeG -iej -iej -cIg -cIg -cIg -cgo -hNa -ipr -sYQ -nOc -cLF -crR -rXn -bng -pZo -nNe -nNe -nNe -crR -wSf -eOy -xPJ -czD -czD -cAP -czD -czD -czD -anS -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -czK -czK -cBN -cCI -cCI -cCI -cFv -czK -czK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(137,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -lMJ -aav -acQ -aft -agt -agt -ahV -aiQ -dhp -alg -alg -anF -aoT -aqc -arB -asT -aud -arB -awC -aun -arB -aAd -aBw -aCC -aDX -aFj -aGG -aHM -aJe -aKm -aLR -aNd -aOD -aOv -aOw -aOv -aTz -aUM -aUM -avB -dnh -dnh -dnh -dnh -dnh -bhG -bjp -dCM -bmP -boT -brk -eXn -klu -xxU -qQP -hZz -bwS -pcG -cfs -wyf -fOY -pvC -mgE -hop -bOW -bQH -bRV -xVl -bST -bVx -kBu -cyF -tDv -utN -xNz -bST -ceZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cuZ -cIg -nud -ped -tag -rzZ -gTV -cIg -gPV -ipr -rUF -nOc -dxQ -crR -bng -bng -dIz -nNe -nNe -auM -crR -tLG -wNT -dWz -czD -tTJ -spr -pZC -ppi -aYT -anS -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -lMJ -veQ -iYp -cBO -cCI -cDx -cCI -dvM -cDz -czJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(138,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -lMJ -aav -acQ -afu -agt -ahg -ahg -ahg -ajR -ahg -ahg -anG -aoU -aqd -arB -asU -aue -arB -awD -axD -arB -aAe -aCC -aCD -aDY -aFk -aGH -aHN -aJf -aKn -aLS -aNe -aOE -aOu -aOu -aOv -aTA -aUT -aUM -aYh -aCM -bbj -aCM -bdW -bfM -bhJ -bjp -lqU -bmP -boU -brl -dfy -buP -pNO -ltO -fnI -bwS -lOC -bFr -lJP -bIy -wfI -eEI -qsx -rnj -bNx -bRW -rWs -xVl -bVy -scu -pbe -jAy -duF -iLR -bST -ceZ -hps -wdk -ovj -sEC -ovj -oUQ -cmY -cIg -rAW -uhe -qIz -mNg -fAn -nav -qjg -ipr -sYQ -nOc -dxQ -crR -ubD -ngD -nLG -vYK -sdJ -sdJ -crR -gzA -qzS -prl -dtP -hJS -qnA -vEI -czD -czD -anS -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -lMJ -czK -czK -cBP -cCI -cCI -cCI -cFx -czK -czK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(139,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -lMJ -aav -acQ -afv -agt -ahh -ahh -aiR -ajS -alh -agz -agz -aoV -dhs -arB -asV -auf -arB -awE -axE -arB -dhA -aCC -aCE -aDZ -aFl -aGK -aJg -aJg -aKo -aLT -aNf -aOF -aPM -aRa -aSi -aTB -aUT -aUM -dhN -dnh -dnh -dni -dnh -dnh -vQv -pkr -krX -bmO -bmO -bmO -bmO -buQ -efa -aGk -bAp -qCJ -bBT -bFs -lJP -pJO -bKl -pVb -bND -bKe -bQI -bRX -fCX -xVl -vPx -uEi -qgl -hVf -tQN -ptG -bST -diB -ovj -ovj -ovj -uWH -ovj -jAh -hTO -cIg -ljB -cJW -eXh -dME -jQd -mYD -uKt -jxW -jPt -nOc -dxQ -crR -crR -crR -kXs -crR -crR -crR -crR -vfd -kPY -ndK -pgC -evW -lzA -tKb -cAP -aav -aav -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -quc -lMJ -lMJ -aav -lMJ -aav -lMJ -quc -lMJ -lMJ -cBM -czK -cCJ -cDw -cEC -czK -cBM -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(140,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -aav -lMJ -lMJ -acP -acP -agv -ahh -ahW -aiS -aiS -aiS -amw -dCc -aoV -aqf -arB -arB -aug -arB -arB -axF -arB -arB -aBy -aCF -aEa -aFm -aGJ -arB -aJh -aJh -aJh -aNg -aOG -aNg -aJh -aJh -aJh -aUM -aUM -biq -dnh -aav -aav -aav -bfN -bhG -bjp -lqU -bmM -bBj -brn -bmO -jOh -bwU -emb -bwS -bwS -bBT -bFr -lJP -xWK -mMd -hBB -jVo -bKe -vaY -bRY -yga -bNE -bST -bWU -inS -lLW -eUZ -aeV -bST -cff -iTQ -cmY -wfd -nbv -ovj -ovj -xSU -cIg -cIg -cIg -cIg -cIg -cIg -cIg -dpV -lrL -dpV -nOc -dxQ -dyc -uce -ciL -hSb -dvY -xDk -xCR -cyK -cyK -cyK -cyK -cyK -cyK -cyK -cyK -cyK -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -lMJ -lMJ -czK -czK -ndM -czK -czK -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(141,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -kZk -gJK -aav -aav -lMJ -aav -acQ -afw -agt -ahi -ahX -afA -afA -ali -amx -anH -aoW -aqg -arC -asX -aBz -avl -asX -aBz -ayN -aAf -asX -aCG -aEb -aFm -aGK -dhF -aJh -aKp -aLU -aPO -aOH -aPO -aRb -aSj -aJh -aUU -aCM -avF -aZw -aZw -bcu -aZw -aZw -bhL -bjv -bla -bmN -boX -bro -bmO -buR -kBb -lrd -iAs -bwS -bBT -gmk -lJP -mpD -bKm -whI -pnA -bKe -mum -dMW -xqr -pdX -bST -puy -jBs -nbP -caQ -jHw -bST -cfg -rvS -pCp -ciX -pCp -clW -cIk -pCp -pCp -pCp -pCp -kMG -ciX -ncb -osT -pXb -hsD -obg -raM -oEp -dZd -ciL -inw -rty -dvY -jEX -ciL -fYd -mls -ciL -sTf -fSN -dvY -lMJ -fwb -lMJ -lMJ -fwb -fwb -fwb -fwb -lMJ -lMJ -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -czK -czJ -czK -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(142,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gvn -gJK -aav -aav -lMJ -aav -acQ -afx -agw -ahj -ahX -afA -afA -afA -amy -anI -aoX -aqh -arD -aFl -aui -avm -aFl -aui -ayO -aAg -aFl -aFl -aFm -aFn -aGK -aUX -aJh -aKq -aLV -aNi -aOI -avp -aRc -aSk -aJh -avD -dnR -dtS -aZw -bbk -bcv -bdX -aZw -bhM -bjw -lqU -bmM -boO -brf -bmO -buS -ldJ -rPb -uLZ -nMl -qwO -tJz -lcK -fyu -bKo -rUK -rUK -rUK -rUK -rUK -bSX -mhq -bST -tAG -bYm -kwd -iCD -tPD -bST -kBo -hkC -oUQ -ovj -ovj -clX -ovj -ovj -xvg -nbv -tPi -dwL -cmY -ifi -dwL -pcd -oPW -ifR -nOc -hEi -qrV -iiU -mVF -mVF -sMY -dvY -vpF -uWX -ciL -nYH -yfw -uup -dvY -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -lMJ -lMJ -aav -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(143,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -lMJ -lMJ -lMJ -aav -acQ -afy -agx -ahk -ahX -aiU -alj -alj -amz -anJ -aoY -aqi -arE -aCI -aGL -avn -awF -aGL -aCI -aAh -aBB -aCI -arF -aFo -aGL -aHR -aJh -aKr -aLV -aNi -aOJ -aNi -aRd -aSl -aJh -avB -dnS -dnS -aZw -bbl -bcw -bdY -aZw -bhN -bjx -blb -bmO -bmO -bmO -bmO -byC -iGT -jux -wcX -ova -bDJ -bKe -ted -dnT -bKp -dow -bNG -hEp -bZx -rUK -jxK -bUq -bST -diw -bYn -bYl -caS -ccB -bST -xtF -wym -iqM -ovj -cku -clY -cmY -ovj -pBL -pBL -ovj -dwL -ctL -ctL -ctL -lGi -qey -pbc -nOc -dyc -dxQ -ciL -wbM -xbk -wjC -dvY -dvY -dvY -cNY -dvY -dvY -dvY -dvY -aav -lMJ -aav -iVH -wGN -iVH -vLD -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(144,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -nYJ -aav -aav -aav -lMJ -aav -acP -acP -agy -ahl -ahY -aiV -aiV -aiV -amA -alk -aoZ -aqj -arB -arB -auk -arB -arB -axI -arB -aAi -arB -arB -aEd -arB -aGM -arB -aJh -aKs -aLV -aNi -aOK -aPP -aRe -aSm -aTC -aUV -aWv -aWv -aZw -aZw -bcx -aZw -aZw -uuj -khK -bkY -alq -boY -brr -alq -bGg -bAu -scp -bBZ -tXX -ojm -byN -bHg -nHO -vFd -ivv -rlb -vso -dMN -rUK -ows -xVl -bST -rcH -bST -bST -bST -bST -bST -dDs -nqZ -chD -ovj -ckv -clZ -uLY -vwi -cpI -cqY -nGT -ctL -uFZ -qDO -uZY -xdo -nKv -pLI -cgo -cEz -dxQ -dyc -dvY -cKa -cKO -cLJ -cor -cmZ -jLo -hcY -aav -aav -aav -aav -lMJ -aav -iVH -wGN -iVH -vLD -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(145,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -acP -acP -acQ -acP -acP -afz -agz -dBY -ahl -oDq -nhT -oDq -alk -alk -aoZ -aqk -arB -ata -aul -arB -awG -axJ -arB -aAj -arB -aCJ -aEe -arB -boS -aHS -aJh -aKt -aLW -auH -aOL -aNj -aRf -aSn -aJh -dCC -aWv -aYi -aZx -bbm -bcy -bdZ -aWv -dCJ -bjp -lqU -alq -bcs -brs -alq -bIB -ivA -bCb -bAs -kBV -bDK -byN -bHh -bIA -cFU -dow -eIG -bPb -tGq -rUK -bTa -xVl -fJR -bWX -bYo -bST -caU -fuw -fuw -cfj -bTe -chC -alq -ovj -ovj -ovj -ovj -cpJ -cqZ -ovj -ctL -iIM -pPZ -xmN -xAL -nKv -gzq -cgo -qfG -cIl -dAd -dvY -dvY -dvY -dvY -cKP -cKP -cKP -cKP -dbN -aav -aav -aav -lMJ -aav -iVH -wGN -iVH -vLD -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(146,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -acQ -adj -adE -aed -aeA -afA -agz -ahm -anL -anL -ajW -anL -anL -anL -aiF -aql -arB -atb -aum -arB -asU -axK -arB -axQ -arB -aCK -aEf -arB -aGO -aHT -aJh -aKu -aLX -aNk -aOM -aPQ -aRg -aKu -aJh -aUW -aWv -aYj -aZy -bbn -bcz -bea -aWv -bhO -bjy -bld -bmS -bTh -brt -alq -qFq -sxG -jcu -byJ -bCc -wzr -byN -byN -byN -byN -byN -byN -nry -dir -rUK -bTb -gHK -boQ -brh -bYp -bST -jVx -bcd -bcd -cfk -bcd -bcd -bcd -ckw -cma -cna -cos -dxh -clY -crZ -ctL -nEQ -rdZ -nkS -kcW -wHU -nqy -cgo -vPM -ciL -eZe -cJa -cPx -cJb -tEu -cKR -geL -mfh -eiA -dbN -yjI -yjI -aav -lMJ -aav -iVH -wGN -iVH -aav -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -gJK -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(147,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -acP -wOY -adF -wOY -acP -afB -agz -ahn -agz -aiY -aiY -ahh -amC -amC -ahh -aqm -arB -atc -aun -arB -awH -aud -arB -axO -arB -atc -aEg -arB -aGP -aHU -aJh -aKv -aLY -aNl -aON -aPR -aRh -aLY -aJh -avB -aWv -aYk -aZy -apx -bcB -beb -aWv -oWY -bjz -nKc -alq -bpb -bru -alq -buU -pnz -aHs -aHs -gdK -mpy -bFv -bLR -bIC -gjo -diq -byN -bPd -oLn -rUK -bTc -xVl -bUN -aPD -cow -bST -tsx -bcd -kSB -cfl -iAj -kjh -bcd -ckx -nbv -dwQ -cot -cnb -cra -csa -ctL -gdG -mQQ -ljn -fkP -aQl -oaa -cgo -dww -cFu -dyc -uce -eZe -cJc -cKc -cKQ -cLL -cMr -jlw -eCF -wvP -qcl -wGN -wGN -lMJ -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -lMJ -aav -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(148,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -acP -aav -aav -aav -acP -acP -acQ -acQ -alm -acQ -acQ -alm -acQ -acQ -acQ -acP -arB -arB -arB -arB -arB -arB -arB -aBC -arB -arB -arB -arB -arB -arB -aJh -aJh -aJh -aJh -aJh -aJh -aJh -aJh -aJh -biq -aWv -aYl -aZz -bbp -bcB -bec -aWv -bhG -bjp -lqU -alq -alq -brp -alq -rqW -apb -nLU -bAv -ydZ -eUX -byN -tws -dij -fZE -bLS -byN -bPe -dis -rUK -bvd -xVl -jfq -bFq -mvj -jkq -wvy -bcd -cdX -adH -kcI -chE -bcd -cky -nbv -dwX -nbv -nbv -cou -csb -ctL -ykk -oOD -yeh -jHQ -gQo -hqn -cgo -dvY -dvY -dvY -dvY -ciL -cJd -cPz -cKP -kKQ -jCO -iEW -gyx -wqg -wqg -dXK -wGN -lMJ -lMJ -wGN -lMJ -lMJ -lMJ -wGN -lMJ -aav -lMJ -wGN -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(149,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -jwW -aav -aav -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -dhw -dnh -auo -avq -awI -axL -dnh -axO -dnh -dhB -aLk -aIv -aYa -aHV -dnh -aKw -aLZ -aNm -dnR -aPS -cXc -dhB -dnh -avB -aWv -aYm -ayT -azp -bcC -bed -bfP -aBN -bjp -lqU -alq -avs -bru -alq -byN -brw -byN -byN -byN -byN -byN -mhI -bIB -xwk -tZg -byN -lkk -rUK -rUK -pmn -alq -bST -myd -bST -bST -mKP -bcd -abt -adI -ajk -amB -bcd -ckz -nbv -dwY -nbv -nbv -rYC -csc -ctL -uFZ -rnM -uZY -jdv -nGI -hWH -cgo -aav -lMJ -lMJ -dvY -dvY -dAn -dvY -cKP -cKP -cKP -cKP -dbN -aav -aav -aav -wGN -wGN -sOg -sOg -sOg -pqH -sOg -sOg -sOg -sOg -qMs -sOg -sOg -sOg -sOg -igV -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(150,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -aav -aav -aav -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -dnh -dnh -dnh -dnh -dnh -axM -ayQ -aAn -qfy -aCM -avF -aLJ -aNS -aIv -dhH -aCM -aCM -dCs -aCM -aPT -aRi -aCM -mhe -avF -aWv -aYn -aZB -bbr -bcD -bee -aWv -bhP -oHZ -ble -bmT -bHl -dhQ -bHl -bHl -bwY -sZs -bHl -bHl -uVk -byN -dif -iWQ -ucX -uzI -ofo -nsH -dYF -wPm -xcw -alq -jFB -gaD -fuw -lLO -oxX -bcd -xdW -lUZ -xop -kwL -bcd -aqe -dwQ -cnb -cou -cpK -nbv -csc -dwL -nDw -ctL -ctL -kHU -eqC -kHU -cgo -aav -lMJ -aav -lMJ -dvY -cJe -dvY -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -wGN -lMJ -aav -lMJ -wGN -lMJ -aav -lMJ -wGN -lMJ -aav -aav -lMJ -aav -fwb -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(151,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -aav -bii -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -arG -asB -vnL -dnR -dnh -axN -dnR -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -sQe -axY -axY -sQe -axY -aWw -aWw -aWw -aWw -aWw -aWw -aWw -bhQ -bjw -lqU -dhW -dhW -dhW -dhW -dhW -dhW -dhW -uko -bNM -kCS -alq -alq -alq -alq -alq -alq -hKX -vcH -qeO -yeM -mdx -sls -tIo -teN -ezE -tNR -aaV -acd -lDl -rRq -hwj -bcd -arh -cmb -cnc -cov -cpL -crb -csd -ovj -lMJ -aav -aav -cRe -uaC -cRe -aav -aav -lMJ -aav -lMJ -dvY -kDM -dvY -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -aav -lMJ -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(152,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -lMJ -lMJ -lMJ -eyv -lMJ -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -arH -dpk -auq -dqp -dnh -azr -dnz -axY -aBD -aCN -aEh -aFp -aGQ -axY -aJj -aJk -aMa -aMa -axY -aPU -aRj -aSp -aTD -axY -aWx -aYo -aZC -bbs -bcE -bef -aWw -gbb -gjw -lqU -dhW -bpd -rLg -btx -bkW -bwZ -dhW -bVE -bNM -bNO -bHl -bHl -bHl -bHl -jXH -bNL -bPh -srW -pcT -lGw -alq -bVC -bWY -bYr -muv -lLd -mKO -aaW -aeD -apX -amV -bZE -ovj -ovj -ovj -ovj -jah -ovj -ovj -ovj -lMJ -aav -aav -cRe -uaC -cRe -aav -aav -lMJ -lKu -aav -aox -cwf -aox -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -iVH -wGN -iVH -aav -iVH -wGN -iVH -aav -iVH -wGN -iVH -aav -fwb -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(153,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -acQ -pvY -afD -afD -afD -afD -afD -afD -afD -afD -qhy -acP -arI -atd -bai -ate -dDL -axP -oeK -axY -aBE -aCO -aEi -aFq -aGR -axY -aJk -aJk -aMa -aNn -axY -aPV -aCP -aSq -aTE -axY -aWy -aYp -aZD -bbt -bcF -beg -aWw -bhR -rTr -lqU -dhW -bpe -bry -fMw -bva -bxk -dhW -bAy -aHv -apc -oCR -anM -apc -skv -alq -alq -alq -alq -alq -alq -alq -oCR -bWZ -apc -qYi -lLd -aaX -adk -afQ -afQ -anz -ciY -atw -cmc -cmc -cmc -cpM -crc -lMJ -ctl -lMJ -aav -aav -cRe -uaC -cRe -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(154,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -arI -atd -atd -atd -dnh -aAm -oeK -axY -aBF -aCP -aEj -aFr -aGS -axY -aJl -aKx -aJu -aNo -axY -aPW -aRl -aSr -aTE -axY -aWz -aYp -aZE -bbu -bcG -beh -aWw -bhS -rTr -qod -dhW -dhW -dhW -bvb -dhW -dhW -dhW -bxc -bxc -bxc -bxc -bxc -rSR -boY -alq -bLZ -bLW -bNN -bPj -pqR -alq -bPn -bXa -aPE -bZE -lLd -abd -ced -ahT -cfq -aov -cgz -atC -cgz -cgz -cgz -cpN -crd -aox -aox -lMJ -aav -aav -cRe -gHk -cSd -cRe -cRe -cRe -cRe -cRe -cRe -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(155,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -arI -atd -dnS -atd -dnh -oWf -ayR -axY -aBG -dCk -aEk -aFr -aGT -axY -aJm -aJu -aMb -fdr -axY -aCR -aCR -aSs -aCR -axY -aWw -aYq -aZF -bbv -bcG -bei -aWw -iVV -pdH -bmR -uIS -ovn -qzl -cWB -kHZ -xZn -flZ -bAA -bCg -mKc -bFF -bxc -bxc -bxc -atm -aqr -kWX -vcS -apc -rWp -alq -alq -bXb -bYu -auQ -caY -ccI -ced -aiT -aju -apP -cjb -ckD -cjb -atF -cgz -cgz -cre -aav -aox -aav -aav -aav -cRe -cbp -pND -cYT -cYT -cYT -mfc -djg -cRe -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -iVH -wGN -iVH -aav -iVH -wGN -iVH -lMJ -iVH -wGN -iVH -lMJ -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(156,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -dnR -aus -dCi -tUa -dnh -axO -dnS -axY -aBH -aCQ -aEl -aFt -aGU -axY -axY -aKz -aKz -axY -axY -aPY -aRn -aEi -aTF -aUY -aWA -aYp -aZG -bbw -bcH -bej -bfR -bhU -bjD -xYI -hfn -hfn -msD -bep -smL -hYz -mMD -bAB -bCh -bDO -bFG -bHp -bHp -aaO -atm -bLX -bPk -bQQ -pNI -bTh -bUx -aut -bXc -tDj -wXC -aaU -afQ -cee -cgx -cgx -cgx -cja -ckE -cmd -cne -cNw -cOa -crf -aav -aox -aav -aav -aav -cRe -cRe -cRe -cRe -cRe -cRe -cSd -rRu -cRe -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aav -lMJ -aav -aav -lMJ -lMJ -aav -lMJ -aav -lMJ -lMJ -aav -fwb -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(157,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -acQ -afD -afD -afD -afD -afD -afD -afD -afD -afD -afD -acP -dnh -dnh -dnh -dnh -dnh -kYh -axY -axY -aBI -aCR -aEm -aCR -aBI -aBI -aJn -aCO -aFq -aNq -aBI -yfM -aRo -aSu -aTG -aUZ -aWB -aYr -aZH -bbx -bcI -bek -bfR -qpc -bjE -bli -bna -kCw -elm -uJy -bve -ofT -jSg -bAC -xDR -dCY -lFr -oCQ -aiN -bHq -atm -bLY -bPl -apc -aqq -rID -bUy -alq -bXd -apf -wXC -cba -ccK -cef -aiW -czH -cLC -cjb -ckF -cjb -cnf -cgz -cgz -cre -aav -aox -aav -aav -aav -aav -aav -aav -aav -aav -aav -cRe -uaC -cRe -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -fwb -fwb -fwb -lMJ -fwb -fwb -lMJ -fwb -fwb -fwb -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(158,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -acP -acP -acP -acP -aln -acQ -acQ -aln -acP -acP -acP -acP -ixc -arI -dnh -dqu -doh -axO -axY -aAo -aBJ -aEi -aEn -aEi -aGV -aHX -lwA -aMc -fUt -lwA -aOO -ifN -aRp -aSv -aTH -aBI -aWw -aWw -aWw -aWw -aWw -aWw -aWw -nde -wim -blj -bhT -bhT -nde -qEY -nde -bhT -bxc -bAD -bFI -bDP -fYr -bIK -bBt -bHr -atm -kbp -bPm -kWX -rBn -bVE -bxc -bxc -bXe -wHc -aEN -aEN -ccL -aSd -cft -pOP -pOP -aSh -gXY -cgz -cng -cgz -cpP -aox -aox -aox -aav -aav -aav -aav -aav -aav -aav -aav -aav -cRe -uaC -cRe -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(159,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -acP -aid -aiZ -ajX -sFe -acP -dnh -apd -ape -arK -dnS -dnh -dnh -dnh -uQc -axY -aAp -aCP -aSu -aEo -aHY -aGW -aNr -aHY -aKB -aMd -aHY -aHY -aMd -aRq -aHY -ddY -yfS -aBI -aYs -aZI -fJp -dgz -aBI -byK -wdI -qkl -bln -tew -iJw -sNr -usN -vzO -rjV -bxc -bAE -bCk -bFH -fYr -bHs -cVD -bSr -atm -fdP -oca -bQR -pqR -anM -bxc -bVF -bXf -bYv -bZF -cbb -ccM -bxc -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -cRu -cRi -kwe -cRi -cRi -lMJ -aav -lMJ -lMJ -aav -aav -lMJ -lMJ -lMJ -aav -lMJ -lMJ -lMJ -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -lMJ -lMJ -aav -lMJ -lMJ -eyv -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(160,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -acP -aie -aja -anL -alp -mfN -aeC -aeC -aho -arL -aia -aib -avt -awJ -axS -axY -vKx -ddW -aCT -aEp -ddQ -aFx -ddQ -aSx -aSx -ddQ -ddQ -ddQ -ddQ -aRr -aSx -aTJ -dfX -aWD -aVc -aZJ -bbz -bcK -bel -bfT -bhY -bjI -ecs -rxn -djm -dRL -rxn -sao -hRs -bxc -bxc -bCl -bKh -bFK -xfp -tzq -tzq -bxc -bxc -bxc -bxc -bxc -bxc -bxc -bVG -bXg -bCp -bZG -cbc -cUR -cVy -cVz -bAR -bAR -bAR -bAR -bAR -lMJ -aav -eyv -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -cRi -dbX -reQ -dcs -cRi -anS -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -lMJ -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -gJK -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(161,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -acP -acP -acP -acP -acP -acP -bcO -dnS -dnS -ahZ -dnS -dnh -avu -axY -axT -axY -aAr -ddX -aCU -aqo -aTO -aGX -aHZ -aJp -aTO -aSB -aTO -aOR -aQa -aGX -aTO -aWQ -aVd -aBI -aYt -aZK -bbA -dgz -aBI -byK -bhZ -vAn -bnd -mrT -mna -brE -riF -sao -tbu -kfL -eyG -qXR -bKh -bDR -xfp -bIN -tzq -bMa -bMa -bPo -bPo -bxc -bTi -bUz -bVH -bXh -bCi -bCi -cbd -ccN -ceg -cfu -cgA -chN -cjc -cjc -bAR -lMJ -aav -bzi -aav -eyv -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -cRi -iva -fTQ -rWd -cRi -aox -cRi -cSh -cSp -cSy -cSX -daK -cSn -dbs -ajz -cSn -dbs -ddB -cSn -cRi -ddj -cTp -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -aav -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(162,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -ixd -dnS -amH -dnS -dnS -apg -aqs -arM -dBu -dBu -avv -axY -axU -ayS -dCk -ddY -deb -aqp -aFz -aCZ -deM -axY -aCZ -aMg -aCZ -dfh -deM -aCZ -aFz -bal -axY -axY -owR -fMA -fMA -owR -owR -tqI -bia -yko -blo -grU -rYV -blk -bjL -rWg -oBU -bxc -bxc -bCn -qnr -bFL -bxc -bIO -bKv -bMb -bNP -bPp -ijD -bSg -bDS -bDS -bVI -bXi -bYw -bYw -cbe -ccO -bza -lMJ -gJs -chO -cjc -ckG -bAR -lMJ -aav -bzi -aav -bzj -lMJ -aav -aav -vqh -vqh -vqh -vqh -vqh -vqh -cRi -fNo -dci -qbF -cRi -cRe -cRi -cSg -cSn -cSn -cSZ -cSn -cSn -daQ -cSn -cSn -daQ -cSn -cSn -cRi -cTn -dUu -cTC -cTC -cTC -cTC -cTC -cTC -cTC -bIx -ssm -dlV -lMJ -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(163,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -auu -avw -ajb -axV -ddP -aAt -ddY -deb -dei -aOt -aRv -dBB -dBB -dBB -aMh -dBB -dBB -dBB -aWH -aWP -aTM -axY -voX -rGw -aZL -bbB -bcL -vyS -tmp -bib -xDA -blp -bnf -vMa -tJs -itJ -fdM -azS -bxc -bAH -rij -bDT -bFM -dXV -nNB -bKw -bIP -bNQ -aLp -bFI -bHu -bTj -kLl -bVJ -bXj -bYx -bKx -cbf -ccP -ceh -cfw -sHq -chP -cje -cjc -bAR -lMJ -aav -bzi -aav -bzj -aav -aav -aav -sQv -eqF -qqf -rel -vCI -sVy -cSd -cSd -dcj -cSd -cRb -cRD -cRi -cSg -cSn -cSn -cSZ -cSn -cSn -daQ -cSn -cSn -daQ -cSn -cSn -cRi -cSd -kzs -cSd -cSd -cRi -cRi -cRi -cRi -cRi -cLE -cTA -dlV -aav -aav -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(164,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -ajb -ajZ -als -ajZ -anO -aph -aqt -arO -atg -auv -avx -awK -axW -aAu -ddQ -aBM -aCV -del -aFB -dBw -daW -dBw -aKF -aMi -cpR -dfi -aQd -dBA -aSA -jQh -axY -vFS -tGe -aZM -bbC -bcM -bfW -kIL -bic -jrE -eLn -bfX -bfX -brI -bfX -aYu -dql -bxc -gGf -bCi -bCi -fHp -eCs -bIQ -aLh -bMd -bxd -bPr -bQS -bPr -bxd -bUA -bVK -bXk -bIS -bZH -cbg -sIe -bza -lMJ -bAR -bAR -bAR -bAR -bAR -lMJ -lMJ -bzi -aav -bzj -lMJ -aav -lMJ -vqh -mKW -ygg -ygg -kXN -pxY -sQv -vOa -dck -dat -wMq -cRN -cRi -cRU -cSq -cRZ -cTq -dcP -cSN -cSD -dbo -dcU -cTc -dcX -atW -cRi -ddk -cTj -cTD -huc -cRi -daF -cSn -mjj -cRi -ddz -rhT -dlV -dlV -dlV -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(165,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -eyv -gJK -gJK -gJK -vrW -gJK -gJK -gJK -eyv -gJK -gJK -gJK -eyv -gJK -ajb -aka -alt -akc -anP -aph -aqu -arP -ajb -auw -avy -ajb -axX -ayV -aTO -aTK -aCZ -del -aFC -aGZ -aGZ -dlI -aKG -aMj -dBy -dlI -aQe -dBx -dfF -jQh -axY -oJL -hMM -mzU -mzU -bcN -vyS -bhX -bjL -blk -qSq -bfX -aCs -btD -rEy -bvl -dql -bxc -byZ -bCq -bDV -nGG -bza -rXc -bKy -bMe -bxd -bxd -bQT -bxd -bxd -bUB -bVK -bXl -bIS -ure -cbh -ccR -ceg -cfu -cgA -chQ -cjf -cjf -bAR -lMJ -aav -bzi -aav -eyv -aav -aav -lMJ -sQv -etr -jaZ -sYs -ygg -ygg -dNL -cSt -dcl -fqx -cRA -cRM -cRa -cSj -cSs -tnM -cSI -daL -wdD -cSS -dde -vCZ -cTb -cST -vXi -cSd -cVa -cTr -cRY -daC -jhK -cSn -cSn -cSn -cRi -ddz -rhT -cZv -cTp -dlV -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(166,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -lMJ -lMJ -aav -lMJ -aav -lMJ -aav -aav -lMJ -lMJ -aav -lMJ -ajb -akb -ajZ -amK -agR -apj -aqv -arQ -ajb -ajb -avz -axY -axY -ayW -axY -aCZ -axY -dej -aFC -deC -deC -dlI -aKH -aMk -aNu -dlI -dfp -dfp -dfF -ocA -axY -otn -kmc -cXA -nsi -dxP -vyS -bhV -qxe -nLx -noe -bfX -xWD -kSe -uow -gjM -aEF -bxc -bza -bza -bza -bFP -bza -rXc -bKz -bMf -bxd -bPs -bPs -bSh -bxd -bUC -pCV -bXm -bIS -ure -cbi -ccS -bza -lMJ -gJs -chR -cjf -ckH -bAR -lMJ -aav -bzi -aav -bzj -aav -lMJ -vqh -vqh -xoD -xoD -xoD -tMR -ygg -xoD -xbf -ygh -xCo -cRC -dcG -cSe -cSi -cSr -cSG -cSA -cSK -daO -cSA -cSW -ddp -ddx -dmq -ddc -cSk -ddl -cTk -cTm -daC -cSn -cSn -cSn -cSn -cRi -ddz -rhT -cTA -iUc -dbv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(167,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -lMJ -ajb -akc -alt -aka -anQ -aph -aqw -arR -ath -ajb -avA -axY -axZ -ayX -ddS -ddV -aCY -dek -der -deD -dlI -aKG -aKI -tDM -dfb -dfj -dlI -deD -uIw -jQh -axY -alq -alq -alq -alq -alq -atm -bhW -bjL -bls -eXS -bfX -bpm -ylT -tmN -yax -bxh -bzb -bAK -bCr -spp -adX -bHw -bIT -bKA -bMg -bNS -bPt -bQU -bSi -bTk -bDW -bFQ -bXm -bYz -bZJ -cbj -ccP -ceh -cfw -sHq -chS -cjh -cjf -bAR -lMJ -aav -eyv -aav -bzj -lMJ -aav -vqh -pYu -qfJ -fYP -tml -dTc -upz -wOX -sUX -cSJ -oMI -cRk -dcH -cSf -cSl -cYT -cYT -cYT -cYT -cUM -cUN -cYT -cYT -cYT -cYT -cYT -cYT -cYT -cTt -daA -rJk -cSn -cSn -cSn -rgz -cRi -ddA -daS -cTC -cTT -ddC -eLW -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(168,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -lMJ -ajb -ajZ -alu -amM -anR -aph -aqx -arS -ati -ajb -avB -axY -ddO -tKc -ddV -aBQ -aCZ -del -aFC -djt -aMk -deS -dbb -aMk -aNv -dfm -dfq -djt -dfF -jQh -axY -avs -kDC -nzS -mEI -oQH -aWu -jnI -neo -qgQ -bhT -bhT -bhT -bhT -bhT -bhT -bxc -bzc -bAM -dhg -bDX -bFR -bHx -bIU -bKB -bMh -bCi -bCi -bKD -bCi -bCi -bUD -bCi -dDm -bIS -bZK -cbk -sIe -bza -lMJ -bAR -bAR -bAR -bAR -bAR -lMJ -lMJ -bzi -aav -bzj -aav -aav -vqh -kWx -hEU -gIx -hTM -ygg -ygg -gbw -cSt -dco -dcx -dcA -dcI -cRR -cRV -cRX -cSL -dcO -dcT -daP -cSb -dcT -dcQ -ddy -dmr -ddd -cTa -dcQ -cTz -ddu -daD -ixE -daH -cSn -eVe -cRi -cTA -rhT -cTA -cTA -dbv -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(169,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -abv -aaY -abv -lMJ -abv -aaY -abv -lMJ -abv -aaY -abv -lMJ -lMJ -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -ajb -avC -axY -aya -tKc -ddU -aBQ -aCZ -del -aFC -hWp -daY -deS -dbb -dfa -aNv -dfm -daY -djx -sUG -bao -kyG -xQP -bxo -bzk -apc -wJc -atm -bfZ -bif -bfY -sSr -bqF -bpp -btF -fEU -bvs -bxj -bzd -bAM -bCt -deI -bFS -bHB -bIV -bKC -bMi -bNU -bMg -bQV -bMg -bMg -bUE -bVL -bXn -bYA -bZJ -cbl -eYE -cei -cfy -cgB -chT -cji -ckI -bAR -lMJ -aav -bzj -lMJ -eyv -lMJ -aav -vqh -eDU -uiT -dju -jpn -ygg -ygg -gbw -cSt -qnQ -dDI -cSt -dcJ -cRa -cSm -cSw -cSd -hdd -cSM -cSR -nSO -ddf -dcV -nCx -iFy -dcV -cSd -jcz -cTz -kbl -daC -jhK -cSn -cSn -cSn -cRi -cTA -rhT -dbw -cTn -dlV -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(170,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -gJK -lMJ -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -dni -dps -dpL -avD -axY -ddO -tKc -ddV -aBQ -aCZ -del -aKL -djt -aMk -deS -dbb -aMk -aNv -dfm -aMk -djt -oos -cXz -axY -atm -alr -alr -cXI -cYj -atm -qrL -bjR -pXE -bhT -lAE -xVd -fNO -cyX -wBb -bxc -bze -bAN -bCu -bDZ -bFT -bHz -bUG -bKD -dhe -dhg -bPu -bPu -bPu -bUF -bUF -bCi -bXo -bMj -iFV -cVJ -ccQ -bza -lMJ -gJs -chU -cjj -ckJ -bAR -lMJ -aav -bzi -aav -bzj -aav -aav -sQv -lJn -iMM -fxj -mIm -vyQ -pua -qLx -jMg -ubZ -cSt -dcy -dcK -cSd -cRW -cSv -cRi -daJ -dcR -cSQ -dcS -ddg -dcW -cTg -ddb -xEH -cRi -ddo -dds -tMJ -huc -cRi -daI -daM -oXi -cRi -cTA -dlV -dlV -dlV -dlV -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(171,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -eyv -vrW -gJK -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -aav -lMJ -aav -aav -akd -alv -apm -apm -apm -apm -dnR -avE -axY -ayc -aza -aAw -aAw -pvL -dem -aFD -deD -dlI -dlI -deV -dlN -dfc -dlI -dlI -deD -dbg -dfR -dga -dgd -dgj -alr -alr -atm -atm -atm -kle -gZM -bhT -bpv -brL -btE -bhT -bxm -aEN -bzf -bCp -bDY -bEa -bFU -dfZ -bIX -dgi -dgi -dhh -aab -dgi -dgi -dgi -kMy -dgi -bZI -dgi -bZL -cbn -ccT -cei -cfy -cgC -chV -cjk -ckI -bAR -lMJ -aav -bzj -lMJ -bzj -lMJ -aav -sQv -izI -rEU -tls -vqh -vOg -mdo -rnV -cRi -nRv -dcq -cSt -nQR -cSd -cSc -cSc -cRi -cSn -cSn -cSg -dbt -cSn -cSg -dbt -cSn -cSg -cRi -cSd -fBB -cSd -cSd -cRi -cRi -cRi -cRi -cRi -cTA -dlV -lMJ -aav -aav -lMJ -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(172,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -lMJ -aav -aav -lMJ -aaY -lMJ -lMJ -lMJ -aaY -lMJ -aav -lMJ -aaY -lMJ -aav -aav -lMJ -akd -alv -alv -alv -apn -aqy -arT -apm -dnS -avB -axY -axY -axY -axY -aCZ -axY -aOS -deu -deN -deN -deN -deW -aMm -dfd -deN -deN -aMh -dbh -jQh -aCZ -aav -aYx -dgf -dgj -aox -atm -kDC -fPh -apc -atm -brJ -brN -btG -bhT -raN -bxc -bzg -bAP -bCw -bEb -bFV -bHA -bIY -bKF -bMk -dhi -bPw -bQW -bSj -bNV -bUH -bVM -bXq -bNV -bZM -cbo -ccU -bxc -lMJ -bAR -bAR -cZQ -bAR -bAR -lMJ -aav -lMJ -aav -bzj -aav -aav -qeW -vqh -owp -rtZ -vqh -iWT -lTU -vXl -cRi -sCT -cSt -dcC -dcM -cSd -cSc -cSc -cRi -cSn -cSn -cSg -dbt -cSn -cSg -dbt -cSn -cSg -cRi -cTA -ddq -ddq -ddq -ddq -ddw -cTA -cTA -cTA -cTn -dlV -lMJ -lMJ -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(173,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aaN -aaY -aaY -abR -abR -abR -acz -abR -abR -abR -abR -aeF -abR -abR -abR -abR -aaY -ake -alw -amN -sGh -amN -aqz -arU -atk -aux -avF -dqT -dqT -lMJ -aox -dea -aIc -den -dev -deJ -deO -deU -deX -dBx -dfe -dBz -dfu -dfz -dfJ -dfU -dga -dge -azd -azd -azd -dgB -atm -boY -dgo -jEp -alr -ccJ -brM -aNC -bhT -bwl -bxc -bzh -bAQ -bCx -bEc -bFW -dgb -bIZ -bKG -bMl -dhj -gnB -bKG -iSQ -bKG -kTE -bKG -bMl -bYB -bKG -bVB -ccV -bxc -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -bzj -bzj -lMJ -aav -lMJ -vqh -vqh -vqh -vqh -xQh -nKq -ksY -cRi -eYL -bvT -dcD -dcN -cSd -cSc -cSx -cRi -cSn -aiI -dbp -dbt -ddh -dbp -dbt -xYl -dbp -cRi -ddr -cTB -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -dlV -lMJ -aav -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(174,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -aav -aav -lMJ -lMJ -aaY -lMJ -aav -lMJ -aaY -lMJ -aav -lMJ -aaY -lMJ -aav -aav -lMJ -akd -alv -alv -alv -app -aqA -arV -atl -auy -dnS -dqT -dqT -lMJ -aox -aox -axY -aqp -dew -aCZ -axY -axY -aCZ -aCZ -aCZ -axY -axY -aCZ -dew -bal -axY -dgf -dgk -dgt -dgk -dgv -atm -aqr -dgo -hGd -alr -cfx -bpy -lMJ -lMJ -aox -bxc -bxc -bxc -bCy -bza -bFX -bza -bJa -bza -bFX -dhk -bCy -bza -bFX -bza -mBf -bza -bFX -bxc -bxc -bxc -ccW -bxc -bxc -bza -bza -bza -bza -bza -bxc -bxc -aav -lMJ -aav -aav -aav -lMJ -lMJ -lMJ -qeW -vqh -vjb -uzE -lFM -qRQ -jzQ -cRe -cRe -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -cRi -dlV -dlV -dlV -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -aav -lMJ -lMJ -gJK -gJK -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(175,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -vrW -eyv -vrW -lMJ -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -aav -lMJ -aav -aav -akd -alv -apm -apm -apm -apm -dnh -dnS -dnz -dqT -lMJ -lMJ -lMJ -axY -aEM -dex -aJu -ddZ -ddZ -ddZ -aMo -dff -ddZ -ddZ -aJu -dex -bgf -axY -aWK -dgk -dgt -dgk -dgB -atm -dgN -pIt -alT -emz -dgO -fcn -ddm -ddm -dgw -dgw -dgw -dgw -bCz -dgw -dha -dgw -dhc -dgw -dha -dhl -bJb -lMJ -bFY -lMJ -nmM -lMJ -bFY -lMJ -lMJ -bxc -umb -bxc -voU -kAu -oSx -oSx -oSx -oSx -eTm -bxc -fwb -lMJ -aav -aav -aav -aav -lMJ -lMJ -lMJ -vqh -sQv -sQv -sQv -qeW -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -aav -aav -lMJ -aav -aav -aav -lMJ -lMJ -aav -lMJ -lMJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(176,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -lMJ -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -dnh -auz -dqp -dqT -dqT -aav -aav -aav -axY -dep -dex -dex -ddZ -ddZ -ddZ -ddZ -ddZ -ddZ -ddZ -dex -dex -dfV -axY -dgg -azd -azd -azd -dgv -atm -alr -xJX -alr -atm -cfx -uGa -lMJ -lMJ -lMJ -aav -lMJ -bAR -dBC -gJs -bFZ -bAR -bCA -gJs -bFZ -bAR -dBC -gJs -bFZ -bAR -omg -gJs -bFZ -bAR -lMJ -bxc -wxc -vBQ -eYE -weu -tWl -hvF -unx -oSx -gdQ -bza -aav -eyv -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(177,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -abv -aaY -abv -lMJ -abv -aaY -abv -lMJ -abv -aaY -abv -aav -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -dni -dhB -dnS -dqT -aav -aav -aav -aav -axY -deq -aJu -deK -ddZ -ddZ -ddZ -aMo -ddZ -ddZ -ddZ -dfB -aJu -dfW -axY -aWK -dgk -dgt -dgk -dgB -atm -qus -wQr -rac -atm -cgv -bpy -aav -aav -lMJ -aav -lMJ -bAR -bCB -bEd -bGa -bAR -bJc -bKH -bMm -bAR -bPx -bQX -bSk -bAR -bUI -bVN -bXr -bAR -lMJ -bxc -ccQ -bxc -ccQ -kAu -mML -rUZ -ouu -oSx -oSx -bza -aav -bzj -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(178,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -aav -lMJ -aav -aav -aav -aav -aav -lMJ -aav -dnh -auB -avG -dqT -aav -aav -aav -aav -axY -aJu -aJu -deL -aJu -aJu -deY -axY -dfg -aJu -aJu -dfC -aJu -ddZ -axY -dgh -dgk -dgk -dgk -dgv -atm -tbe -apc -rSR -atm -cfx -uGa -lMJ -lMJ -lMJ -aav -lMJ -bAR -bCC -bCC -bCC -bAR -bJd -bJd -bJd -bAR -bPy -bPy -bPy -bAR -bUJ -bUJ -bUJ -bAR -lMJ -bxc -ccQ -bxc -vvQ -kAu -chW -cjl -ckK -ubj -oSx -bza -lMJ -bzj -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(179,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -aav -abv -aaY -abv -aav -abv -aaY -abv -aav -abv -aaY -abv -lMJ -lMJ -gJK -aav -aav -aav -aav -aav -lMJ -aav -dnh -dnh -jKK -dqT -lMJ -aav -aav -aav -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -axY -aWK -dgm -dgu -dgm -dgB -lMJ -wOY -tpc -wOY -lMJ -cgv -bpy -aav -lMJ -lMJ -lMJ -lMJ -bAR -bCC -bEe -bGb -bAR -bJd -bKJ -bMn -bAR -bPz -bQZ -bSl -bAR -bUJ -bVP -bXs -bAR -lMJ -bxc -ccQ -bxc -wOf -kAu -ouu -cjm -mML -oSx -mOK -bza -aav -bzj -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(180,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -aav -lMJ -aav -lMJ -aav -aav -lMJ -lMJ -aav -lMJ -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aox -aox -atn -bOY -avG -dqT -lMJ -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -lMJ -aav -lMJ -lMJ -aox -aox -aye -dgv -aye -dgv -lMJ -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -lMJ -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -bAR -lMJ -bxc -ccY -bxc -tnI -kAu -ckU -cjn -oSx -oSx -tqM -qAe -cVz -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(181,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -vrW -eyv -gJK -gJK -gJK -eyv -gJK -gJK -gJK -vrW -gJK -gJK -eyv -gJK -eyv -gJK -eyv -gJK -lMJ -lMJ -lMJ -lMJ -lMJ -dnh -dnh -lNZ -dqT -lMJ -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -lMJ -aav -lMJ -aav -lMJ -aav -aav -lMJ -lMJ -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -lMJ -bxc -ccZ -bxc -jql -kAu -oQl -oQl -oSx -oSx -nCQ -bxc -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(182,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aox -dqT -lMJ -fwb -fwb -fwb -fwb -lMJ -fwb -fwb -fwb -fwb -fwb -fwb -nYJ -fwb -fwb -fwb -fwb -fwb -nYJ -fwb -fwb -fwb -lMJ -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -bxc -tje -bxc -bxc -bza -bza -bza -bza -bza -bxc -bxc -aav -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(183,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -lMJ -aox -lMJ -aav -aav -aav -lMJ -aav -aav -bpu -bpu -bpu -bpu -svg -bpu -bpu -bpu -bpu -svg -lMJ -aav -aav -lMJ -lMJ -lMJ -lMJ -aav -aav -aav -vWu -aav -lMJ -cfx -uGa -lMJ -lMJ -lMJ -lMJ -eyv -bzj -bzj -bzj -bzj -bzj -bzi -bzj -bzj -eyv -bzj -bzj -bzj -bzj -bzj -bzj -bzj -bzj -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(184,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -lMJ -fwb -fwb -fwb -fwb -nYJ -fwb -fwb -fwb -fwb -nYJ -fwb -fwb -fwb -lMJ -aav -lMJ -lMJ -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -bzj -eyv -bzj -fwb -fwb -eyv -bzj -eyv -bzj -bzj -lMJ -lMJ -lMJ -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(185,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -eyv -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -lMJ -eyv -bzi -bzi -bzi -bzi -bzi -bzi -bzj -bzi -bzi -bzi -bzi -bzi -bzi -bzj -bzi -bzi -bzi -bzi -lMJ -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(186,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -eyv -aav -eyv -aav -aav -aav -aav -aav -lMJ -cfx -uGa -lMJ -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -lMJ -aav -aav -aav -aav -lMJ -aav -aav -lMJ -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(187,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -siF -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -lMJ -eyv -bzj -bzj -eyv -bzj -siF -bzj -bzj -bzj -bzj -bzj -bzj -bzj -siF -eyv -bzj -bzj -bzj -bzj -bzj -bzj -bzj -snH -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(188,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -lKu -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(189,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lMJ -lMJ -fwb -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -lMJ -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(190,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -eyv -lMJ -fwb -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(191,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -eyv -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(192,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -gJK -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(193,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -aav -aav -aav -lMJ -cfx -uGa -lMJ -lMJ -aav -aav -aav -aav -eyv -aav -siF -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(194,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -lKu -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -eyv -aav -siF -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(195,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -lMJ -cgv -bpy -aav -lMJ -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(196,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -lMJ -eyv -lMJ -lMJ -lMJ -aav -aav -lMJ -cgv -bpz -aav -lMJ -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(197,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -gJK -aav -siF -aav -aav -lMJ -lMJ -lMJ -lMJ -bno -cwf -brO -lMJ -aav -aav -aav -aav -gJK -lMJ -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(198,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -lMJ -aav -aav -blu -cgv -cwf -aav -btI -aav -aav -aav -aav -gJK -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(199,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -fwb -lMJ -lMJ -aox -aox -lMJ -blv -cfx -cwf -lMJ -blv -lMJ -lMJ -lMJ -lMJ -gJK -aav -siF -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(200,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -nYJ -aav -aMq -bgc -bgc -aOV -blw -cjd -bpB -aNw -btJ -aav -aav -aav -aav -eyv -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(201,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -fwb -aav -aMq -bgd -bgd -aOV -aMq -bnp -bpC -brP -btK -aav -aav -aav -aav -gJK -aav -eyv -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(202,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -fwb -fwb -bII -bge -bik -beq -blx -bnq -bpD -brQ -blx -fwb -fwb -fwb -fwb -gJK -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(203,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -aav -bKI -bgd -bgd -aOX -bly -bnr -bpE -brR -aOX -aNw -aNw -aTQ -aav -fwb -aav -gJK -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(204,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -fwb -fwb -fwb -aav -aTQ -aNw -aNw -aNw -aNw -aNw -bzl -bes -bgg -bil -bjO -bjO -bns -bpF -brS -bjO -bjO -ddn -bUK -bAS -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(205,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aTQ -aNw -aNw -aNw -aSD -aTR -aOT -aOT -aOT -aOT -aOT -bAO -bet -aVk -aOY -aOY -aSG -cjg -bpG -brT -bvt -aOY -ded -aNy -bAT -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aNw -bJl -aNw -aNw -aNw -aTQ -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(206,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNx -aOT -aOT -aOT -aOT -aTS -aVk -aOY -aOY -aOY -aOY -aOY -aTT -aav -aav -bTq -blA -bnu -bpH -brU -bvt -lAu -dee -bzm -aOT -aOT -aOT -aOT -bMt -bMt -bNW -bMt -bMt -bMt -bMt -aOT -aOT -bUK -bBb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(207,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNy -aOU -aOY -aOY -aOY -aTT -aav -aav -aav -aav -aav -aav -aTU -aav -aav -aRy -aRy -daB -bpI -aRy -aRy -lAu -aav -aTT -aOY -aOY -aOY -aOY -aOY -aOY -bKQ -aOY -aOY -aOY -aOY -aOY -bcQ -aNy -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(208,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNy -aOV -aav -aav -aav -aTU -aav -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -blB -bnw -bpJ -brW -aRy -bvt -aav -aTU -aav -aav -aav -aav -aav -aav -aTU -aav -aav -aav -aav -aav -aMq -aNy -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(209,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNy -aOV -aav -aav -aav -aRy -aRy -aRy -aTV -aTV -aTV -aRy -aRy -aRy -aRy -bjP -blC -bnx -bpK -bsf -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -bvt -bvt -aav -aav -aav -aMq -aNy -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(210,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -aMr -aNy -aOV -aav -aav -aRy -aRy -aTV -aTV -aTV -aZQ -aTV -aTV -aTV -aTV -aTV -bjP -blD -bny -bpL -brY -btL -btL -btL -btL -btL -bCD -bEf -bGc -bHC -bJg -aRy -aRy -aRy -aRy -aav -aav -aMq -bez -bBb -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(211,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aNw -aSD -aNy -aOV -aav -aav -aRy -aTV -aVl -aWL -aYy -aZR -bbF -bcP -aVl -bgh -bim -bjQ -bjQ -daG -bpM -bjQ -btL -bvu -bGh -bzn -bAU -bCD -bEg -bGd -bGd -bJm -bNX -bMo -bOc -aRy -aav -aav -aMq -bez -bAT -aNw -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(212,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -bnl -bpn -bpr -aOV -aav -aRy -aRy -bpA -agk -agm -agm -agC -aWM -aWM -bMq -blE -bin -bjQ -brX -bnA -bpR -bsa -btL -bAW -bxn -bzo -bAV -bCD -bEh -bGe -bGd -bKL -bNY -bGd -ceC -aRy -bvt -aav -aMq -chz -bpn -cpO -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(213,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -bnk -bnn -bpr -aOV -aav -aRy -aRy -vnm -aVn -aWN -aTV -agV -aTV -aTV -beu -aAx -bio -bjQ -blF -bnB -bpR -bsb -btL -bvw -bxq -bxq -bJh -bCE -bCE -bCE -bHD -bGd -bGd -bGd -bUL -aRy -bvt -aav -aMq -chz -cmK -bpr -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(214,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aYd -bfS -bps -aOW -aOW -aSE -aSE -aTW -bjS -aWO -aYz -ahf -bvf -aTV -byx -bgj -bip -blI -blG -bnC -bpP -bsc -btN -bvx -bxp -bzq -aHu -bCF -bEi -lWY -bHE -bKM -bKO -bMp -bNZ -hfE -bRa -jmm -bTm -chM -ckT -cmX -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(215,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -bnk -bnn -bpr -aOV -aav -aRy -aRy -bqa -aVp -aWN -aTV -ahD -aTV -aTV -bNu -bgk -blE -bjQ -blH -bnD -bpR -bsd -btL -bvy -def -bzr -bAY -bCE -bCE -dft -bHF -bJk -dhG -bMr -cgy -aRy -bvt -aav -aMq -chz -cmK -bpr -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(216,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -bnm -bpq -bpr -aOV -aav -aRy -aRy -bxi -aVq -aYA -aYA -aZW -aiE -aiE -bQY -blE -bir -bjQ -bse -bnE -bpR -byM -btL -bvz -bxr -bzs -bJi -bCD -bEj -bGe -bGd -bKP -bOb -bMr -cho -aRy -bvt -aav -aMq -chz -bpq -bzv -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(217,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aOY -bcQ -aNz -aOV -aav -aav -aRy -aTV -aVr -aWR -agu -aZX -bbH -aWR -aVr -bgm -bis -bjQ -bjQ -daG -bpS -bjQ -btL -bvA -bxs -bzt -bBa -bCD -bEg -bGd -bGd -bKN -bOa -bMs -chn -aRy -aav -aav -aMq -bez -aVk -aOY -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(218,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -aMr -aNz -aOV -aav -aav -aRy -aRy -aTV -aTV -aTV -aZY -aTV -aTV -aTV -aTV -aTV -bjT -blJ -bnF -bpT -byO -btL -btL -btL -btL -btL -bCD -bEk -bGf -bHG -bJn -aRy -aRy -aRy -aRy -aav -aav -aMq -bez -bBb -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(219,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNz -aOV -aav -aav -aav -aRy -aRy -aRy -aTV -aTV -aTV -aRy -aRy -aRy -aRy -bjT -blK -bnG -bpU -bsg -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -bvt -bvt -aav -aav -aav -aMq -bez -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(220,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNz -aOV -aav -aav -aav -aTU -aav -aRy -aRy -aRy -aRy -aRy -aRy -aRy -aRy -bVO -blL -bnH -bpV -bsh -aRy -bvt -aav -aTU -aav -aav -aav -aav -aav -aav -aTU -aav -aav -aav -aav -aav -aMq -bez -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(221,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNz -aOX -aNw -aNw -aNw -aTY -aav -aav -aav -aav -aav -aav -aTU -aav -aav -aRy -blM -bnI -bpW -bsi -aRy -aav -aav -aTY -aNw -aNw -aNw -aNw -aNw -aNw -aTY -aNw -aNw -aNw -aNw -aNw -bly -bez -bgn -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(222,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aMq -aNB -aOT -aOT -aOT -aOT -aTZ -aOX -aNw -aNw -aNw -aNw -aNw -aTY -aav -aav -aRy -aRy -dcz -bpX -aRy -aRy -aav -aMq -bzu -aOT -aOT -aOT -aOT -aOT -aOT -bKR -bMt -bMt -bMt -bMt -bMt -bMt -bUM -bBb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(223,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aNC -aOY -aOY -aOY -aSG -aUa -aOT -aOT -aOT -aOT -aOT -aOT -bey -bgn -aav -aav -aav -dcB -bpY -bgn -aav -aav -aMq -bez -aVk -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aOY -aOY -aNC -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(224,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -fwb -fwb -fwb -aav -aNC -aOY -aOY -aOY -aOY -aOY -bcQ -bez -bgo -aNw -aNw -aNw -bKI -bpZ -bsj -aNw -aNw -bly -bez -bgn -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(225,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -aMq -beA -aOT -aOT -aOT -aOT -bAO -bpq -aOT -aOT -aOT -aOT -bzv -bBb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(226,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -aav -aNC -aOY -aOY -aOY -aOY -aOY -aNC -aOY -aOY -aOY -aOY -aNC -aav -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(227,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -fwb -fwb -gJK -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -fwb -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(228,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(229,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(230,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(231,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(232,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(233,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(234,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(235,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(236,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(237,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(238,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(239,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(240,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(241,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(242,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(243,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(244,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(245,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(246,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(247,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(248,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(249,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(250,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(251,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(252,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(253,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(254,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} -(255,1,1) = {" -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -aav -"} diff --git a/_maps/map_files/Mining/Lavaland.dmm b/_maps/map_files/Mining/Lavaland.dmm deleted file mode 100644 index 605b15b86e19..000000000000 --- a/_maps/map_files/Mining/Lavaland.dmm +++ /dev/null @@ -1,70802 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/indestructible/riveted/boss, -/area/lavaland/surface/outdoors) -"ab" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ac" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ad" = ( -/turf/closed/mineral/random/high_chance/volcanic, -/area/lavaland/surface/outdoors) -"ae" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"af" = ( -/obj/structure/necropolis_gate/legion_gate, -/obj/structure/necropolis_arch, -/obj/structure/stone_tile/slab, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ag" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ah" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ai" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors) -"aj" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"ak" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors/unexplored/danger) -"am" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors/unexplored) -"an" = ( -/turf/closed/mineral/random/labormineral/volcanic, -/area/lavaland/surface/outdoors) -"ao" = ( -/obj/machinery/computer/shuttle_flight/labor/one_way{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ap" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/laborcamp) -"aq" = ( -/turf/closed/wall, -/area/mine/laborcamp) -"ar" = ( -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"as" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"at" = ( -/obj/machinery/shower{ - pixel_y = 22 - }, -/obj/item/soap/nanotrasen, -/obj/item/bikehorn/rubberducky/plasticducky, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"au" = ( -/obj/structure/table, -/obj/machinery/computer/bookmanagement, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"av" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aw" = ( -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"ax" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"ay" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 8; - name = "old sink"; - pixel_x = 12 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"az" = ( -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Library"; - dir = 8; - network = list("labor") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aB" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Showers" - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"aD" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"aE" = ( -/obj/machinery/vending/sustenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aF" = ( -/obj/machinery/door/airlock{ - name = "Labor Camp Library" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aG" = ( -/obj/structure/table, -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aH" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = 3 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aJ" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restroom" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aN" = ( -/obj/machinery/light/small{ - pixel_y = 32 - }, -/turf/closed/wall/r_wall, -/area/mine/laborcamp) -"aO" = ( -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/item/seeds/wheat, -/obj/item/seeds/wheat, -/obj/item/seeds/tomato, -/obj/item/seeds/onion, -/obj/item/seeds/garlic, -/obj/item/seeds/carrot, -/obj/item/seeds/ambrosia, -/obj/item/seeds/apple, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aT" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"aV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/tank_dispenser/oxygen, -/turf/open/floor/plasteel, -/area/mine/eva) -"aW" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"aX" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"aY" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock"; - req_access_txt = "2" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"aZ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "labor"; - name = "Labor Camp Lockdown"; - pixel_y = 28; - req_access_txt = "2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ba" = ( -/obj/machinery/door/poddoor/preopen{ - id = "labor"; - name = "labor camp blast door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Security Airlock"; - req_access_txt = "2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bc" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/carrot, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"bd" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall, -/area/mine/laborcamp) -"be" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/seeds/soya, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"bf" = ( -/turf/closed/wall, -/area/mine/eva) -"bg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/eva) -"bh" = ( -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"bi" = ( -/obj/structure/gulag_beacon, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bj" = ( -/obj/machinery/status_display/evac{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bk" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bl" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/plant_analyzer, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"bm" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/onion, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"bn" = ( -/turf/closed/wall, -/area/mine/mechbay) -"bo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/mechbay) -"bp" = ( -/obj/machinery/mech_bay_recharge_port, -/turf/open/floor/plating, -/area/mine/mechbay) -"bq" = ( -/turf/closed/wall, -/area/mine/production) -"br" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"bs" = ( -/obj/structure/table, -/obj/item/pickaxe, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/item/gps/mining, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bt" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bu" = ( -/obj/machinery/light_switch{ - pixel_x = 27 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bv" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_x = 32 - }, -/turf/closed/wall, -/area/mine/eva) -"bw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"bx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"by" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 1; - name = "Labor Camp APC"; - pixel_y = 23 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"bB" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"bC" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/computer/shuttle_flight/mining{ - req_access = null - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"bD" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/mech_bay_recharge_floor, -/area/mine/mechbay) -"bE" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/production) -"bF" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/eva) -"bG" = ( -/obj/machinery/camera{ - c_tag = "EVA"; - dir = 4; - network = list("mine") - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bH" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/mine/eva) -"bI" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/eva) -"bJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/machinery/shower{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/eva) -"bL" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Labor Camp Monitoring"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"bM" = ( -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"bN" = ( -/obj/structure/sign/warning/docking, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/production) -"bO" = ( -/obj/item/beacon, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"bP" = ( -/turf/open/floor/plasteel, -/area/mine/production) -"bQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"bS" = ( -/obj/machinery/door/airlock/mining/glass{ - name = "Mining Station EVA"; - req_access_txt = "54" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bW" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0; - req_access_txt = "54" - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bY" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"bZ" = ( -/turf/closed/mineral/random/volcanic, -/area/lavaland/surface/outdoors/explored) -"ca" = ( -/turf/closed/wall, -/area/mine/laborcamp/security) -"cb" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/table, -/obj/item/restraints/handcuffs, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "Powered by the tears and sweat of laborers."; - name = "Prison Ofitser" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cf" = ( -/obj/machinery/computer/secure_data, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cg" = ( -/obj/machinery/computer/security/labor, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"ch" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cj" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Shuttle Airlock"; - opacity = 0 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/production) -"ck" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"co" = ( -/obj/machinery/power/apc{ - name = "Mining EVA APC"; - pixel_x = 1; - pixel_y = -23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable, -/obj/structure/table, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/stack/package_wrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel, -/area/mine/eva) -"cp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/eva) -"cq" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"cs" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"ct" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/eva) -"cu" = ( -/obj/item/pickaxe, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"cv" = ( -/obj/structure/ore_box, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"cB" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cC" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cE" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"cF" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cG" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/secure_closet/freezer/gulag_fridge, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"cH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cI" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cJ" = ( -/obj/machinery/door/airlock{ - name = "Closet" - }, -/turf/open/floor/plating, -/area/mine/production) -"cK" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"cL" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/mine/production) -"cM" = ( -/turf/closed/wall, -/area/mine/living_quarters) -"cO" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cP" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"cQ" = ( -/turf/closed/wall/r_wall, -/area/mine/maintenance) -"cR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"cS" = ( -/obj/machinery/power/smes{ - charge = 5e+006 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"cT" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate/secure/loot, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"cU" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"cV" = ( -/turf/open/floor/plating, -/area/mine/living_quarters) -"cW" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/mine/living_quarters) -"cX" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "Mining Station Starboard Wing APC"; - pixel_x = -25; - pixel_y = 2 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/production) -"cZ" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"db" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/production) -"dc" = ( -/obj/structure/closet/crate, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/bot, -/obj/item/food/mint, -/turf/open/floor/plasteel, -/area/mine/production) -"dd" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/structure/table, -/obj/item/paper/fluff/stations/lavaland/orm_notice, -/turf/open/floor/plasteel, -/area/mine/production) -"de" = ( -/obj/structure/ore_box, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/production) -"df" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/production) -"dg" = ( -/turf/open/floor/circuit, -/area/mine/maintenance) -"dh" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Communications APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"di" = ( -/obj/machinery/telecomms/relay/preset/mining, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"dj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"dk" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"dl" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dn" = ( -/obj/structure/table, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"do" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dp" = ( -/obj/machinery/meter, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dr" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"ds" = ( -/obj/machinery/vendor/mining, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/production) -"du" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/item/coin/gold, -/turf/open/floor/plasteel, -/area/mine/production) -"dv" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dw" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/mine/production) -"dx" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"dy" = ( -/obj/structure/cable, -/obj/machinery/bluespace_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/mine/maintenance) -"dz" = ( -/obj/machinery/light_switch{ - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"dA" = ( -/obj/machinery/camera{ - c_tag = "Communications Relay"; - dir = 8; - network = list("mine") - }, -/turf/open/floor/circuit, -/area/mine/maintenance) -"dB" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/item/reagent_containers/blood/a_minus, -/obj/item/reagent_containers/blood/b_minus{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/blood/b_plus{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_containers/blood/o_minus, -/obj/item/reagent_containers/blood/o_plus{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/machinery/camera{ - c_tag = "Sleeper Room"; - dir = 1; - network = list("mine") - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dC" = ( -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dD" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dE" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dF" = ( -/obj/machinery/power/port_gen/pacman{ - anchored = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dH" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/binary/pump/on, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dK" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Shuttle Docking Foyer"; - dir = 8; - network = list("mine") - }, -/obj/machinery/newscaster{ - pixel_x = 30; - pixel_y = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/turf/open/floor/plasteel, -/area/mine/production) -"dN" = ( -/obj/machinery/camera{ - c_tag = "Processing Area Room"; - dir = 8; - network = list("mine") - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dO" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"dP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Communications"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/maintenance) -"dQ" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dR" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"dS" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Mining Station Maintenance"; - req_access_txt = "48" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold, -/turf/open/floor/plating, -/area/mine/living_quarters) -"dT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dU" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/production) -"dV" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/mine/production) -"dW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/production) -"dX" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "mining_internal"; - name = "mining conveyor" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"dY" = ( -/obj/machinery/conveyor{ - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/production) -"dZ" = ( -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ea" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ec" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ed" = ( -/obj/machinery/camera{ - c_tag = "Crew Area Hallway"; - network = list("mine") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ee" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ef" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eg" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Station Port Wing APC"; - pixel_x = 1; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eh" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ei" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ej" = ( -/obj/machinery/camera{ - c_tag = "Crew Area Hallway East"; - network = list("mine") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ek" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"em" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"en" = ( -/obj/machinery/mineral/processing_unit_console, -/turf/closed/wall, -/area/mine/production) -"eo" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"et" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eu" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ew" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ex" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ey" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ez" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eA" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/glass{ - name = "Mining Station Bridge" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eB" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"eE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eH" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eI" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eJ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eM" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eO" = ( -/obj/machinery/light/small, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eQ" = ( -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eR" = ( -/obj/machinery/door/airlock/glass{ - name = "Break Room" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"eS" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/vendor/mining, -/turf/open/floor/plasteel, -/area/mine/production) -"eT" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eU" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eW" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"eX" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/structure/plasticflaps, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating, -/area/mine/production) -"eY" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "mining_internal" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"eZ" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "mining_internal" - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/production) -"fa" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fb" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fc" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fd" = ( -/obj/machinery/camera{ - c_tag = "Public Shuttle Lobby"; - network = list("mine") - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fe" = ( -/obj/structure/bed, -/obj/item/bedsheet/brown, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"ff" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"fg" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm1"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fh" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fj" = ( -/obj/machinery/vending/snack, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fm" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fn" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fp" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fq" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = 28 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fr" = ( -/obj/structure/table, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"fs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "miningdorm1"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"ft" = ( -/obj/machinery/camera{ - c_tag = "Dormitories"; - dir = 4; - network = list("mine") - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fu" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fv" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fy" = ( -/obj/structure/table, -/obj/item/clothing/glasses/meson, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/mining_scanner, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fB" = ( -/obj/structure/displaycase, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fD" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -1; - pixel_y = 9 - }, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fE" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fF" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fG" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fH" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fI" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fJ" = ( -/obj/machinery/camera{ - c_tag = "Crew Area"; - dir = 1; - network = list("mine") - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fK" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fL" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fM" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "miningdorm2"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"fN" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fO" = ( -/obj/machinery/door/airlock{ - id_tag = "miningdorm3"; - name = "Room 3" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"fP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "miningdorm3"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_x = 25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/mine/living_quarters) -"fQ" = ( -/turf/open/genturf, -/area/lavaland/surface/outdoors/unexplored/danger) -"fR" = ( -/turf/closed/mineral/random/high_chance/volcanic, -/area/lavaland/surface/outdoors/unexplored) -"fS" = ( -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/unexplored) -"fT" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"fV" = ( -/turf/closed/indestructible/riveted/boss/see_through, -/area/lavaland/surface/outdoors) -"fW" = ( -/obj/structure/necropolis_gate/locked, -/obj/structure/stone_tile/slab, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"gd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"gj" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/center, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"gk" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/center, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"gn" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"go" = ( -/obj/structure/stone_tile/block, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"gp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"gr" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gs" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gy" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gB" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gC" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"gG" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gM" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"gO" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"gP" = ( -/obj/structure/stone_tile/slab, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gR" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile/block{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"gY" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_away"; - name = "NT Lavaland base: labor camp"; - width = 9 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"hg" = ( -/obj/structure/stone_tile/surrounding, -/obj/structure/stone_tile/center/cracked, -/mob/living/simple_animal/hostile/megafauna/legion, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"hs" = ( -/obj/structure/stone_tile/block{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"hz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"hH" = ( -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"hJ" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"hL" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/sign/warning/gasmask{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"hN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"hU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"ia" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/production) -"id" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ip" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ir" = ( -/obj/structure/stone_tile/slab/cracked{ - dir = 5 - }, -/obj/structure/stone_tile/slab/cracked{ - dir = 10 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"it" = ( -/obj/structure/stone_tile/block, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iu" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iw" = ( -/obj/structure/stone_tile/slab/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/slab/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ix" = ( -/obj/structure/stone_tile/block/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iy" = ( -/obj/structure/stone_tile/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iC" = ( -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/structure/stone_tile/block/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iK" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iM" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"iX" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"iY" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ja" = ( -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jb" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jg" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jj" = ( -/turf/open/floor/plasteel, -/area/mine/mechbay) -"jk" = ( -/obj/structure/stone_tile/center, -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jl" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/center/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jm" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jq" = ( -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"js" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ju" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"jx" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"jF" = ( -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/center/cracked, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"jH" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/center/cracked, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"jL" = ( -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/center, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"jN" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/center/cracked, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"jQ" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jR" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jS" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"jV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"kg" = ( -/obj/structure/fluff/drake_statue, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"kj" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"kl" = ( -/obj/structure/fluff/drake_statue/falling, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"km" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - dir = 1; - name = "old sink"; - pixel_y = -5 - }, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"kn" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "gulag"; - name = "labor camp conveyor" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ko" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ku" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/displaycase, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"kv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"ky" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"kB" = ( -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/center/cracked, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"kD" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/center, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"kH" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 1 - }, -/obj/structure/stone_tile/surrounding_tile, -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/center/cracked, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"kI" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/mining/glass{ - name = "Processing Area"; - req_access_txt = "48" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"kJ" = ( -/obj/structure/stone_tile/surrounding_tile{ - dir = 4 - }, -/obj/structure/stone_tile/surrounding_tile{ - dir = 8 - }, -/obj/structure/stone_tile/surrounding_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/center, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"kM" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"kN" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"kO" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"kR" = ( -/obj/structure/stone_tile/slab/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"le" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lg" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lj" = ( -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ll" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lp" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lq" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lr" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ls" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lu" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lv" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lw" = ( -/obj/structure/stone_tile/cracked, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"ly" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lz" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lD" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lE" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lF" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lG" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/block, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lI" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Operations"; - dir = 8; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"lO" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"lP" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lQ" = ( -/obj/structure/stone_tile/surrounding/cracked{ - dir = 6 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lR" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"lS" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lW" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"lZ" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"ma" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mb" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"mk" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"ml" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"mn" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile/block{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mq" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mr" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ms" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mt" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile/cracked, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mu" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mv" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"mw" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"mx" = ( -/obj/structure/stone_tile, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"my" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mA" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mB" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mC" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/lava/smooth/lava_land_surface, -/area/lavaland/surface/outdoors) -"mD" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mE" = ( -/obj/structure/stone_tile/block, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mF" = ( -/obj/structure/stone_tile/block/cracked, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mG" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mH" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mI" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mJ" = ( -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mK" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mL" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mM" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mN" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mO" = ( -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mP" = ( -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"mQ" = ( -/obj/structure/stone_tile/block{ - dir = 8 - }, -/obj/structure/stone_tile/block{ - dir = 4 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mS" = ( -/obj/structure/stone_tile/cracked{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mV" = ( -/obj/structure/stone_tile/block{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mW" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 4 - }, -/obj/structure/stone_tile/block{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mX" = ( -/obj/structure/stone_tile/cracked, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mY" = ( -/obj/structure/stone_tile/block/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"mZ" = ( -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"nb" = ( -/obj/structure/stone_tile/cracked{ - dir = 8 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile{ - dir = 4 - }, -/obj/structure/stone_tile, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"nc" = ( -/obj/structure/stone_tile/cracked{ - dir = 4 - }, -/obj/structure/stone_tile{ - dir = 1 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ne" = ( -/obj/structure/stone_tile/block{ - dir = 1 - }, -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"nf" = ( -/obj/structure/stone_tile/slab/cracked, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"ng" = ( -/obj/structure/stone_tile, -/obj/structure/stone_tile{ - dir = 8 - }, -/obj/structure/stone_tile/block/cracked{ - dir = 1 - }, -/turf/open/indestructible/boss, -/area/lavaland/surface/outdoors) -"nj" = ( -/obj/structure/chair/stool, -/obj/machinery/flasher{ - id = "GulagCell 1"; - pixel_x = -28 - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"nm" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "old sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"nt" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"nA" = ( -/obj/machinery/computer/mech_bay_power_console, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 1; - name = "Mining Station Mech Bay APC"; - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"nF" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Infirmary" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"nH" = ( -/obj/machinery/camera{ - c_tag = "Labor Camp External South"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/laborcamp) -"nI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/living_quarters) -"nU" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/mine/laborcamp) -"ob" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"oL" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Lavaland Shuttle Airlock" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"oO" = ( -/obj/structure/table, -/obj/item/gps/mining, -/obj/item/gps/mining, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"oS" = ( -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"oU" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"oW" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"po" = ( -/obj/machinery/light/small{ - dir = 1; - pixel_y = -32 - }, -/turf/closed/wall, -/area/mine/production) -"pr" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"ps" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 3 - }, -/obj/item/stock_parts/cell/high, -/obj/item/stock_parts/cell/high{ - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/camera{ - c_tag = "Mech Bay"; - dir = 1; - network = list("mine") - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"pR" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"pV" = ( -/obj/structure/cable, -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"qk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - id_tag = "cellblock1"; - name = "Labor Camp Cellblock" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"qm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"qs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/mine/laborcamp) -"qt" = ( -/obj/structure/table, -/obj/item/cigbutt, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"qI" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"qP" = ( -/obj/structure/bed, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ri" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"rj" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"rG" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag1"; - name = "Cell 1" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"rH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/kirbyplants{ - icon_state = "plant-05" - }, -/obj/machinery/camera{ - c_tag = "Labor Camp Cellblock"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"rR" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"sa" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"sj" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/mine/production) -"sq" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Labor Camp External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"ss" = ( -/obj/machinery/button/door{ - id = "miningbathroom"; - name = "Door Bolt Control"; - normaldoorcontrol = 1; - pixel_y = -25; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"su" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"sH" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/mine/production) -"sK" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"sM" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"tI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"tP" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"tZ" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"ut" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"uB" = ( -/obj/structure/chair/stool, -/obj/structure/sign/poster/official/report_crimes{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"uG" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"uI" = ( -/obj/machinery/advanced_airlock_controller/lavaland, -/turf/closed/wall, -/area/mine/laborcamp) -"uJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating, -/area/mine/living_quarters) -"vb" = ( -/obj/machinery/door/window/southleft, -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"vg" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"vh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/poster/official/twelve_gauge{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"vj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"vq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"vy" = ( -/obj/machinery/computer/mechpad{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"vH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"vM" = ( -/obj/machinery/mineral/processing_unit{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"wj" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"wk" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_access = list(54) - }, -/obj/structure/cable, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"wE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"wQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"xi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/closed/wall, -/area/mine/living_quarters) -"xW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"xX" = ( -/obj/structure/sign/departments/medbay/alt{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"yh" = ( -/obj/structure/sign/poster/official/safety_report{ - pixel_x = -32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Central"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"yi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"yk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"yr" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp) -"yw" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Cell 3"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"za" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Labor Camp Security APC"; - pixel_y = 23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"zn" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/production) -"zo" = ( -/obj/machinery/computer/prisoner, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"zT" = ( -/obj/structure/cable, -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"zX" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/closet/secure_closet/labor_camp_security, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Aw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"AB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"AH" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"AW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Bd" = ( -/obj/machinery/camera{ - c_tag = "Labor Camp External West"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/laborcamp) -"Be" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"Bj" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag2"; - name = "Cell 2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Bt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"BA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"BL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Co" = ( -/obj/machinery/computer/shuttle_flight/mining/common{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Dh" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Dv" = ( -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Dw" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Cell 1"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Ef" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"En" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Es" = ( -/obj/machinery/door/window/southright, -/obj/machinery/shower{ - pixel_y = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"EG" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"EK" = ( -/obj/machinery/conveyor{ - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"EY" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Fd" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Labor Camp Security Office"; - dir = 1; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Fe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"FF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/mine/laborcamp/security) -"FO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/public/glass{ - id_tag = "cellblock1"; - name = "Labor Camp Operations" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Gf" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Gh" = ( -/obj/structure/table, -/obj/item/mecha_parts/mecha_equipment/drill, -/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ - pixel_y = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"Gn" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Gz" = ( -/obj/machinery/door/airlock/public/glass{ - id_tag = "gulag3"; - name = "Cell 3" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"GI" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"GJ" = ( -/obj/item/bikehorn{ - color = "#000"; - desc = "A horn off of a bicycle. This one has been charred to hell and back, yet somehow it still honks."; - name = "charred bike horn" - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"GN" = ( -/obj/structure/table, -/obj/item/tank/internals/emergency_oxygen{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Hd" = ( -/turf/closed/wall/r_wall, -/area/mine/laborcamp/security) -"Hi" = ( -/obj/machinery/washing_machine, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/mine/laborcamp) -"Hj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Ho" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/mine/living_quarters) -"Hx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"HO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"HP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Iq" = ( -/obj/structure/cable, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Monitoring"; - req_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Iv" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"IJ" = ( -/obj/structure/fence{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"IK" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"Jd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"Je" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Jf" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Jh" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/cultivator, -/obj/item/seeds/potato, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"Jx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Kb" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Kv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Kz" = ( -/obj/machinery/camera{ - c_tag = "Labor Camp External North"; - dir = 1; - network = list("labor") - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/laborcamp) -"KD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/cafeteria, -/area/mine/laborcamp) -"Lg" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Lu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"LL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/eva) -"Na" = ( -/turf/closed/wall/r_wall, -/area/lavaland/surface/outdoors/explored) -"Nb" = ( -/obj/machinery/mechpad, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"Nj" = ( -/obj/machinery/door/airlock{ - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"Nt" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"NC" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 7; - id = "lavaland_common_away"; - name = "NT Lavaland base: Public dock"; - width = 7 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"NS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/dice/d4, -/turf/open/floor/plasteel, -/area/mine/production) -"Om" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/mineral/labor_points_checker{ - pixel_y = 25 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Oz" = ( -/obj/structure/table, -/obj/item/paper, -/obj/item/pen, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Labor Camp Cell 2"; - dir = 4; - network = list("labor") - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"OI" = ( -/obj/structure/table, -/obj/item/toy/cards/deck, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"OQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"OX" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Pa" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/machinery/recharger, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"Pl" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Pp" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Labor Camp Infirmary"; - dir = 8; - network = list("labor") - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"Pr" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Pt" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Px" = ( -/obj/effect/turf_decal/bot, -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"PE" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"PL" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/turf/open/floor/plasteel, -/area/mine/eva) -"Qg" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/flashlight, -/obj/item/pickaxe, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Qo" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/book/manual/chef_recipes{ - pixel_x = 2; - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"QN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"QO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"QQ" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"QW" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"QX" = ( -/obj/structure/chair/stool, -/obj/machinery/flasher{ - id = "GulagCell 3"; - pixel_x = -28 - }, -/obj/structure/sign/poster/official/obey{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Rx" = ( -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/production) -"RE" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 30 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"RO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"RY" = ( -/obj/structure/chair/stool, -/obj/machinery/flasher{ - id = "GulagCell 2"; - pixel_x = -28 - }, -/obj/structure/sign/poster/official/work_for_a_future{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Sd" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/decal/cleanable/dirt, -/obj/item/seeds/redbeet, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"SJ" = ( -/obj/structure/statue{ - desc = "A lifelike statue of a horrifying monster."; - dir = 8; - icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; - icon_state = "goliath"; - name = "goliath" - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Tb" = ( -/obj/item/radio/intercom{ - desc = "Talk through this. It looks like it has been modified to not broadcast."; - name = "Prison Intercom (General)"; - pixel_y = 24; - prison_radio = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Tn" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"TC" = ( -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/mine/living_quarters) -"TJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"TP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Uh" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/mine/production) -"Ui" = ( -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Labor Camp External Airlock"; - opacity = 0 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/mine/laborcamp) -"Uq" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 11; - height = 22; - id = "whiteship_lavaland"; - name = "south-east of NT Lavaland base"; - width = 35 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"Ur" = ( -/obj/structure/bookcase, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Uv" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/mine/laborcamp) -"UA" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/living_quarters) -"UC" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Mining Station Mech Bay"; - req_access_txt = "54" - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"UH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"UJ" = ( -/obj/machinery/vending/security{ - onstation_override = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp/security) -"UO" = ( -/obj/machinery/mineral/unloading_machine{ - dir = 1; - icon_state = "unloader-corner"; - input_dir = 1; - output_dir = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"UQ" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"US" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Lavaland Shuttle Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"UV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"UX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"Vb" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"VA" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/dark, -/area/mine/laborcamp) -"VP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"VY" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ - dir = 4 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/mine/living_quarters) -"We" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Wp" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 3; - height = 10; - id = "mining_away"; - name = "NT Lavaland base: Mining shuttle bay"; - width = 7 - }, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors) -"WC" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/security/glass{ - name = "Labor Camp Shuttle Prisoner Airlock" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"WD" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining External Airlock"; - opacity = 0; - req_access_txt = "54" - }, -/obj/structure/fans/tiny, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/mine/eva) -"WE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - glass = 1; - name = "Mining Shuttle Airlock"; - opacity = 0 - }, -/turf/open/floor/plasteel, -/area/mine/production) -"Xb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Xx" = ( -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Ym" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"YA" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"YG" = ( -/obj/structure/fence{ - dir = 4 - }, -/obj/effect/turf_decal/mining, -/turf/open/floor/plating/asteroid/basalt/lava_land_surface, -/area/lavaland/surface/outdoors/explored) -"YJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/mine/laborcamp) -"YV" = ( -/obj/structure/rack, -/obj/item/storage/bag/ore, -/obj/item/pickaxe, -/obj/item/flashlight, -/obj/item/clothing/glasses/meson, -/obj/item/mining_scanner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"YY" = ( -/obj/machinery/camera{ - c_tag = "Crew Area Hallway West"; - dir = 1; - network = list("mine") - }, -/turf/open/floor/plasteel, -/area/mine/living_quarters) -"Zf" = ( -/obj/machinery/door/airlock{ - id_tag = "miningbathroom"; - name = "Restroom" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/mine/living_quarters) -"Zh" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/mine/mechbay) -"Zk" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "gulag" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/mine/laborcamp) -"Zn" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/donkpockets, -/turf/open/floor/plasteel, -/area/mine/laborcamp) -"Zs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/mine/laborcamp) -"ZD" = ( -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Labor Camp Showers"; - dir = 1; - network = list("labor") - }, -/turf/open/floor/plasteel/freezer, -/area/mine/laborcamp) -"ZO" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/mine/laborcamp) - -(1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ad -ad -ad -ad -ad -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ai -ai -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ai -ai -ai -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ai -aD -ab -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aw -aw -ab -aD -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -ab -ab -ad -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ad -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -ab -an -an -ab -ab -an -an -an -an -an -an -an -an -an -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -aj -aj -aj -aw -aw -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -ab -ab -aj -aj -aj -aj -aw -aw -aj -aj -aw -aw -aj -aj -aw -aj -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aw -aw -aD -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -ab -aj -aj -aj -aj -aj -aj -aj -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iX -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -an -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aw -aw -aw -aD -aw -aw -aw -aw -aw -aD -aw -aw -aD -aw -aw -aw -aj -aw -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iY -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -aj -aj -aj -aj -aj -aj -ab -an -an -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -aj -aw -aw -aw -aD -aD -aD -aD -aD -aD -aD -aD -aD -aw -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aw -aw -aw -aw -aD -aD -aD -aD -aD -aD -aD -aD -aD -aw -aw -ab -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -ab -aj -aj -aj -aj -aj -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aw -aw -aw -aw -aD -aD -aD -aD -aD -aD -aD -aD -aD -aw -aw -aw -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ir -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aw -aw -aw -aD -aD -aD -aD -aD -aD -aD -aD -aD -aw -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gP -ad -ad -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aw -aw -aD -aD -aD -aD -aD -aD -aD -gY -aD -aD -aD -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -ab -aj -aj -aj -aj -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -aj -aj -aj -aj -aj -aD -aj -aj -aj -aj -aj -aj -aj -aj -yr -ap -ap -ap -ap -yr -aY -yr -yr -yr -bx -yr -aw -aw -aj -aj -aj -aj -aj -ab -ai -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aj -aj -aj -aj -aj -yr -vj -Pr -Pr -vj -aq -aZ -aq -ao -aq -Je -yr -aD -bZ -aj -aj -GJ -aj -ab -ab -ai -ai -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aj -aj -aj -aD -yr -Dv -aH -ZO -aQ -uI -vj -aq -bi -aq -az -yr -bZ -bZ -bZ -aj -aj -aj -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -ap -ap -ap -yr -vj -OI -aG -vj -aq -ba -aq -bj -aq -WC -yr -Hd -Hd -Hd -FF -Hd -nI -TC -TC -cM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ix -ab -ab -ab -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -ap -ar -ZD -aq -vj -vj -tP -vj -yh -az -vj -su -vj -aQ -yr -cb -UJ -cG -QQ -Hd -qt -rj -Gn -cM -VY -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -Kz -yr -as -ar -aB -vj -vj -ut -En -En -HP -En -hN -Iv -HP -bL -cc -bw -Hx -oU -Hd -Ym -rj -eM -cM -UA -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aX -yr -at -ay -aq -aE -vj -Kv -vj -tZ -Zn -Qo -bk -EY -EY -yr -vh -bh -GI -Fd -Hd -Xx -rj -dZ -cM -uJ -nI -cM -ab -ab -ab -ab -ab -NC -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -ap -ap -yr -aq -aq -aq -aq -oS -BL -vj -VA -bc -Jh -bl -yr -yr -yr -za -bh -QN -oW -sM -eL -gn -ec -dZ -yk -ju -cM -ab -ab -ab -ab -cR -US -cR -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -ab -ak -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ad -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -Vb -YJ -aq -au -uB -Xb -aq -Tb -Kv -vj -sK -Jd -wE -km -yr -by -pV -UH -ch -iM -sa -Iq -QW -QW -QW -QW -RO -YY -cM -ab -ab -ab -ab -cR -dZ -cR -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -jq -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -ab -ak -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -Bt -OQ -aq -av -xW -yi -aF -Iv -En -aS -aW -be -Sd -bm -yr -bB -ca -cf -bh -AW -bM -sM -dZ -dZ -Dh -Nt -YA -dZ -cM -cM -cM -xi -cM -cR -oL -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -fQ -fQ -fQ -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -ap -BA -Pp -aq -Ur -aA -aq -aq -aq -qk -aq -aq -aq -aq -aq -yr -yr -Hd -cg -cB -bh -uG -cQ -cQ -cQ -cQ -ip -YA -dZ -cM -Lg -kO -Co -kO -eL -Pl -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -yr -UX -aq -aq -aq -aq -aq -pr -aq -UV -rH -aq -nj -Dw -ap -nH -aw -FF -zo -cC -Pa -zX -cQ -dg -dg -cQ -dZ -YA -dZ -cM -fa -dZ -dZ -dZ -dZ -dZ -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -ab -ab -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aT -yr -UX -aq -YV -YV -YV -aq -nm -aJ -gp -En -rG -Jx -qP -ap -aD -aw -FF -FF -FF -FF -FF -cQ -dh -dx -cQ -ea -YA -ek -cM -fb -dZ -fy -fy -dZ -SJ -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -fQ -aj -aj -aj -aj -aj -an -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aT -yr -nF -aq -Qg -vj -vj -aq -aq -aq -OX -jt -aq -aq -aq -yr -aD -aj -aj -aj -aj -aj -ab -cQ -di -dy -dP -eb -QW -kv -eQ -ef -Aw -fy -fy -dZ -dZ -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aN -yr -yr -jz -xX -az -vj -vj -vj -PE -aq -aO -vj -aq -RY -Oz -ap -aj -aj -aj -aj -aj -ab -ad -cQ -dj -dz -cQ -ec -YA -eL -cM -fc -dZ -dZ -dZ -dZ -eM -cM -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -Ui -Zs -sq -vH -nt -Jf -Jf -Px -vj -vj -aq -TJ -En -Bj -Hj -qP -ap -aD -aj -aj -aj -aj -ab -ai -cQ -dk -dA -cQ -ed -Kb -eM -cM -fd -fq -oO -GN -fB -ku -cM -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ja -ab -ab -ab -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aN -yr -yr -hL -Ef -Ef -qI -pR -En -En -FO -En -vj -aq -aq -aq -yr -aD -aj -aj -aj -aj -ab -ab -cQ -cQ -cQ -cQ -ee -YA -dZ -cM -cM -cM -cM -cM -cM -cM -cM -cM -cM -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ab -ab -ab -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aX -ap -AH -vj -az -vj -We -vj -vj -vj -aq -Om -ri -aq -QX -yw -ap -aD -aj -aj -aj -aj -aj -ab -cM -dl -dB -cM -dZ -EG -fp -cM -fe -fr -cM -fe -fr -cM -fe -fr -cM -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -ap -vj -vj -lK -vj -kn -wQ -az -QO -aq -qm -En -Gz -Jx -qP -ap -aD -aD -aj -aj -aj -aj -ab -cR -dm -dC -dQ -ea -YA -dZ -cM -ff -fs -cM -ff -fM -cM -ff -fP -cM -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -ab -ab -ab -aj -aj -ab -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -Gf -ob -aq -aq -bd -aq -aq -nU -yr -qs -KD -yr -yr -yr -yr -aD -aD -aj -aj -aj -aj -ab -cR -Ho -dD -dR -ef -QW -dZ -cM -fg -cM -cM -fH -cM -cM -fO -cM -cM -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -Gf -vg -UO -EK -vM -EK -EK -Zk -yr -Uv -Hi -ap -aD -aD -aD -aD -aD -aD -aj -aj -ai -ad -cM -dn -dE -dQ -ec -YA -dZ -eL -fh -ft -eL -fh -VP -eL -fh -ec -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -ap -ap -ap -yr -yr -yr -yr -yr -yr -yr -ap -ap -ap -aD -aD -aD -aD -aD -aD -aj -aj -ai -cM -cM -cM -cM -cM -eg -et -HO -HO -fi -HO -HO -fi -fN -HO -HO -fp -cR -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -Bd -aD -aD -IJ -aD -aD -aD -aD -aD -aD -aD -aD -aD -aj -aj -aj -aj -cM -cS -do -dF -cM -eh -EG -fp -cM -cM -dQ -dQ -cM -cM -cM -Nj -cM -cM -ai -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jq -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -YG -aD -aD -aD -aD -aD -aD -aD -aj -aj -aj -aj -aj -aj -cM -cT -cV -cV -cM -ea -YA -eM -cM -fj -fk -Pt -fI -cM -vb -hz -cM -ai -ad -ai -ai -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iu -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -IJ -aD -aD -aD -aD -aD -aD -aj -aj -aj -aj -aj -aj -aj -cM -cU -dp -dH -dS -ei -eu -ek -dQ -fk -fk -fC -fk -cM -Es -Tn -cM -ab -ai -ai -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -ab -ab -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -IJ -aD -aD -aD -aD -aD -aj -aj -aj -aj -ab -ab -aj -ab -cM -cV -dq -dI -cM -ej -et -kv -eR -TP -fu -fD -fJ -cM -cM -Zf -cM -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -an -ab -an -an -an -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -Na -aD -aD -aD -aD -aj -aj -aj -ab -ab -ab -ab -ab -ab -cM -cW -dr -dr -cM -vq -Kb -eL -dQ -fk -fk -fE -fK -cM -Fe -ss -cM -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -an -an -an -an -an -an -an -an -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -an -an -ab -aj -aj -ab -an -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aD -aj -aj -aD -aD -aD -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -cM -cM -cM -cM -cM -dZ -YA -dZ -cM -fm -fk -fF -fk -cM -IK -tI -cM -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ja -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aD -aD -aD -aD -aD -aj -aj -aj -aj -aj -aD -aD -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -cR -dZ -YA -dZ -cM -fn -fv -fG -fL -cM -cM -cM -cM -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -cR -ek -ew -eO -cM -cR -cR -cR -cR -cM -ai -ai -ai -aj -ab -aj -aj -ab -ab -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -ai -aj -aj -aj -aj -aj -aj -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -cR -cR -ex -cR -cR -ab -ab -ab -ab -ai -ai -ai -ab -aj -aj -aj -aj -ab -ab -ab -ai -ad -ad -ab -ab -aj -aj -aj -aj -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -ai -ai -aj -aj -aj -aj -aj -aj -aj -ai -ai -ai -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -cR -ey -cR -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ad -ad -ad -ad -ad -ai -ai -aj -aj -aj -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -ab -ai -am -ai -ai -ai -ai -ai -ai -ai -am -ai -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -cR -YA -cR -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -ab -ab -ad -ad -ad -ad -ad -ad -ad -ad -ab -aj -aj -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -ai -am -am -am -am -am -am -am -am -am -ai -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -cR -YA -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ad -ad -ad -ad -ad -ad -ad -ab -aj -aj -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -aj -aj -ab -ab -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -cR -YA -cR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ad -ad -ad -ad -ad -ad -ad -ab -aj -aj -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -aj -ab -ab -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -br -ez -br -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ad -ad -ai -ad -ab -ab -aj -aj -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -Wp -ab -ab -ab -ab -aj -aj -aj -br -ez -br -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -jx -ad -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -aj -ab -aj -aj -aj -aj -aj -ab -ab -bN -cj -br -ab -ab -aj -aj -aj -ab -br -ez -br -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ai -ai -ai -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -aj -aj -aj -aj -aj -aj -ab -br -bP -br -ab -aj -aj -aj -aj -ab -br -UQ -br -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ai -ai -ai -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -bn -bo -bo -bn -bn -br -br -WE -br -br -ab -aj -aj -ab -br -br -eA -br -br -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ai -ai -ai -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -bn -bp -rR -ps -bn -br -bO -ck -NS -br -bq -bq -bq -bq -ia -cH -eB -cD -br -bq -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ad -ad -jq -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -ai -bn -bD -jj -Gh -bn -bC -Lu -bP -cl -cH -cO -cX -ax -dJ -ia -cn -ez -bP -eS -bq -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -aj -aj -ab -ab -aj -ab -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -aj -bn -nA -zT -Zh -UC -Rx -bQ -Uh -cE -Uh -Uh -Uh -Uh -Uh -kI -Be -Uh -eP -eT -bq -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -aj -aj -bn -wk -Nb -vy -bo -bE -UQ -cn -cF -cI -cP -cn -Rx -bP -ia -gd -eD -bP -eU -bq -bq -bq -po -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -aj -ab -bn -bo -bn -bf -bf -bF -bS -bF -bf -cJ -bq -cZ -ds -dK -ia -bP -hU -bP -dU -br -wj -dU -br -ab -ab -ai -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -bf -bs -bG -bT -co -bf -cK -bq -bq -ia -bq -ia -bP -eE -bP -sj -sH -lO -sj -zn -ab -ab -ai -ai -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -ab -ab -ab -ab -bg -PL -LL -bU -cp -bf -cL -bq -du -bP -bP -cH -dT -eE -bP -cH -br -jV -RE -br -ab -ab -ab -ai -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aj -ab -ab -aj -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -ai -aj -ab -ab -ab -bg -bt -bH -bV -cq -bf -bq -bq -db -bP -bP -bP -bP -eH -cF -eW -bq -bq -bq -po -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -aj -aj -ab -ab -bf -bu -bI -bW -aV -bf -ad -bq -dc -bP -dM -dW -AB -eI -bq -eX -bq -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -aj -aj -ab -ab -bf -bf -bg -bX -bg -bf -ai -bq -dd -bP -dN -dX -em -eJ -dV -eY -bq -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -jb -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -aj -aj -ab -ab -ab -bf -bJ -bY -cs -bf -ai -bq -de -dv -bq -dV -en -dV -dV -eY -bq -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ai -aj -aj -ab -ab -bf -bK -bW -ct -bf -ai -bq -df -dw -dO -dY -eo -dY -dY -eZ -bq -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ai -ai -aj -aj -ab -bv -bg -WD -bg -bv -ai -bq -bq -bq -bq -bq -bq -bq -bq -bq -bq -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ai -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iw -ad -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -ab -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ai -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ai -ab -ai -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ai -ai -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -ab -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ai -ab -ab -ab -ab -ab -ab -ai -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ai -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ai -ai -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ai -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ad -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -ab -ab -ab -ab -ab -ab -aj -ab -aj -aj -aj -aj -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ai -ai -ai -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ai -ai -ai -ad -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ai -ai -ai -ad -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ad -ad -ix -ab -aj -aj -aj -aj -aj -aj -aj -ab -aj -ab -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -ai -ab -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -ai -aj -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -ai -aj -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -aj -ab -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -ai -aj -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ab -ab -ab -ai -am -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -jb -ab -ab -ab -ab -ab -ab -ab -aj -ab -aj -ab -ab -ab -aj -ab -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ai -am -ai -ai -ab -ai -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -aj -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -ai -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ix -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -ab -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ai -ab -ab -ab -ab -ab -ai -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ai -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ai -ai -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ai -ab -ab -ab -ab -ab -ab -ai -am -ai -ai -ai -ai -ab -ab -ai -ai -ai -am -am -ai -ai -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ad -ai -ai -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ai -ab -ab -ai -am -am -am -am -am -ai -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ad -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -ai -ab -ai -am -am -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Uq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ai -am -ai -am -am -ai -cu -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -am -am -am -am -ai -cv -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -jb -jb -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ai -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ai -am -ai -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ai -am -am -am -am -am -am -am -ai -ai -ab -ab -ai -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ai -ab -am -am -am -am -am -am -am -am -am -ai -ai -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -ai -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -ab -ab -ab -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -aj -aj -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ad -ai -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -aj -aj -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ad -ad -ai -ai -ad -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ky -ad -ai -ai -ad -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ad -ai -ai -jq -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -kN -aj -aj -aj -aj -aj -aj -mD -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ai -ai -ab -ab -ab -ab -ab -ab -aj -ab -ab -aj -aj -aj -aj -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -jg -gB -gB -js -ab -ab -ab -ab -aj -aj -mu -aj -aj -aj -ab -mA -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ai -ab -ab -ab -ab -aj -aj -ab -aj -aj -aj -aj -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iC -gr -gs -gr -gr -kR -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -jQ -fQ -fQ -fQ -fQ -fQ -iy -ab -ab -mK -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ag -jF -gM -kB -jm -ix -ab -jS -aj -aj -aj -aj -lI -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -ab -ab -jx -ab -ab -mM -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -ab -ab -aj -aj -ab -aj -aj -aj -aj -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gG -go -kg -hs -gr -hH -ab -ab -aj -ly -aj -aj -aj -lw -aj -aj -ls -aj -aj -jx -jS -iy -fQ -fQ -fQ -jq -ab -kN -ab -ab -jx -ab -ab -mN -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -ai -ab -aj -aj -ab -aj -aj -ab -ab -aj -aj -aj -"} -(125,1,1) = {" -aa -aa -aa -mS -mV -mq -mV -nc -aa -aa -fV -fV -gr -jH -gO -kD -ag -le -aa -aa -ls -aj -aj -aj -aj -aj -aj -aj -aj -aj -lI -aa -aa -jS -ab -ab -ja -ab -jx -ab -jq -ab -kN -ab -ab -ab -mO -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -am -aj -aj -aj -aj -aj -aj -aj -ab -aj -aj -aj -"} -(126,1,1) = {" -aa -aa -fV -gj -gC -mr -nb -ne -aa -aa -fV -fV -jk -gr -gr -gr -gr -gs -aa -lp -lp -lz -lp -lF -lp -lP -lS -lp -lZ -lS -lS -lp -aa -mE -ab -ab -ab -ab -kN -ab -ab -ab -ab -ab -jS -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -"} -(127,1,1) = {" -mQ -mQ -fW -mQ -mW -hg -ac -nf -ac -ac -ac -af -lg -fT -kj -fT -fT -lg -gP -lq -lu -lq -lD -lG -lu -lQ -lu -lW -ma -lq -mk -mn -kR -mF -ab -mG -ab -ja -ab -jx -ab -ab -kN -ab -ab -jq -jR -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -am -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(128,1,1) = {" -aa -aa -fV -gk -mX -mZ -nc -ng -aa -aa -fV -fV -jl -gr -ah -gG -gs -gy -aa -lr -lv -lv -lE -lv -lE -lR -lv -lv -mb -lR -ml -lR -aa -it -ab -ab -jx -jR -ab -ab -ab -mL -fQ -iY -ab -ab -jQ -ab -jx -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -am -am -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(129,1,1) = {" -aa -aa -aa -mS -mY -ms -hJ -id -aa -aa -fV -fV -jm -jL -gM -kH -gr -hH -aa -aa -lw -aj -aj -aj -lI -aj -aj -aj -aj -lw -aj -aa -aa -jq -ab -ab -ab -jQ -ab -mI -ab -ab -fQ -fQ -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -am -fR -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gr -go -kl -hs -gG -lj -ab -ab -aj -aj -mv -my -lw -aj -aj -aj -lI -aj -aj -kN -jq -jS -jx -jS -ab -ab -ab -ab -ab -ab -jR -fQ -jS -kN -ab -ab -jR -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -am -am -fS -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -ah -jN -gO -kJ -gr -it -ab -ab -aj -aj -aj -ab -jQ -aj -jx -ab -ly -aj -aj -ab -ab -fQ -fQ -ja -ab -mH -ab -ab -mJ -fQ -fQ -fQ -fQ -ab -ab -mP -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -fS -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gR -gr -gr -gr -jm -gP -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -mB -aj -aj -aj -ab -ja -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -am -fS -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -gr -jm -ko -iu -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -iy -aj -aj -aj -kN -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -am -am -fS -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -jq -ab -ab -ab -ab -ab -kN -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -am -am -am -am -am -fS -aj -ab -aj -ab -aj -aj -aj -aj -aj -aj -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -jR -mt -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -jq -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -mC -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iK -ab -jQ -jq -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -lI -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -iy -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -jq -ab -ab -ab -ab -ab -ab -ab -aj -aj -mw -ab -lI -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -mx -ab -ab -mx -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -jR -ad -ab -ab -ll -ab -ab -aj -aj -aj -ab -ab -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -aj -aj -aj -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ix -ab -ab -ab -ad -ad -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -jS -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -jS -ad -ad -ab -ab -aj -aj -aj -aj -ab -ab -ab -aj -ab -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ai -ai -ai -ai -ab -aj -aj -aj -ab -ab -ab -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -ab -aj -ab -aj -aj -aj -aj -aj -aj -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -kM -ai -ai -ai -ai -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ad -ai -ai -ai -ai -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ad -ad -ai -ai -ai -ai -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ad -ai -ai -ai -ai -ad -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ad -ai -ai -ai -ai -ad -ad -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -aj -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ad -ai -ai -ai -ai -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ad -ai -ai -ai -ai -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -kN -ai -ai -ai -ai -jq -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ai -ai -ai -ai -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ad -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ad -ai -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ai -jS -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ai -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ai -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ai -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -iy -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -ab -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -iy -ab -ad -ad -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -iy -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -iy -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ab -ab -ab -ai -ai -ab -ab -ab -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ad -ai -ai -ab -ab -ab -aj -ab -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ai -ai -ad -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -js -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ai -ai -ai -ai -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ai -ai -ai -ai -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ai -ai -ai -ai -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ai -ai -ai -ai -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gP -ai -ai -ai -ai -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ai -ai -ai -ai -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -it -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -gP -js -ab -ad -ad -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -ab -ab -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -aj -ab -aj -ab -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -ab -ab -ab -ab -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ab -ab -ad -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ad -ad -ad -js -ab -ab -ab -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -js -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -ab -ab -ab -aj -aj -aj -aj -aj -aj -aj -aj -aj -ab -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -fQ -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -"} diff --git a/_maps/map_files/RT/RT1.dmm b/_maps/map_files/RT/RT1.dmm deleted file mode 100644 index f7db8467cc0a..000000000000 --- a/_maps/map_files/RT/RT1.dmm +++ /dev/null @@ -1,65985 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"af" = ( -/obj/structure/railing{ - dir = 9 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"al" = ( -/obj/machinery/door/airlock/wood, -/turf/open/floor/rospilovo/plitka, -/area/ctf) -"bh" = ( -/turf/open/water/jungle, -/area/ctf) -"bq" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"bK" = ( -/turf/open/floor/plasteel/stairs/left, -/area/ctf) -"bO" = ( -/obj/structure/flora/rock/pile/largejungle, -/turf/open/floor/plating/dirt/jungle, -/area/ctf) -"bS" = ( -/obj/structure/flora/junglebush/c, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"cU" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 2; - pixel_y = 13 - }, -/turf/open/floor/wood, -/area/ctf) -"du" = ( -/obj/structure/chair/sofa/corp{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"dK" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/dirt/jungle, -/area/ctf) -"em" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/ctf) -"ez" = ( -/obj/structure/railing/corner, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"eN" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/ctf) -"fi" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ctf) -"fr" = ( -/turf/open/floor/dz/green, -/area/ctf) -"fz" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 3; - pixel_y = -5 - }, -/turf/open/floor/wood, -/area/ctf) -"fY" = ( -/obj/machinery/vending/sovietsoda, -/turf/open/floor/rospilovo/plitka, -/area/ctf) -"hm" = ( -/obj/structure/railing{ - dir = 6 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"jy" = ( -/obj/effect/landmark/start, -/obj/effect/landmark/latejoin, -/turf/open/floor/wood, -/area/ctf) -"jA" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"jH" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"kL" = ( -/obj/machinery/turntable, -/obj/effect/turf_decal/siding/wood{ - dir = 9 - }, -/turf/open/floor/wood, -/area/ctf) -"kZ" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 5 - }, -/turf/open/floor/wood, -/area/ctf) -"lI" = ( -/obj/structure/railing{ - dir = 10 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"mQ" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"nR" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/wood, -/area/ctf) -"oa" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"oc" = ( -/obj/structure/flora/junglebush/c, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"py" = ( -/turf/open/floor/plating/dirt/jungle, -/area/ctf) -"pC" = ( -/obj/structure/flora/tree/jungle, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"qn" = ( -/turf/open/floor/dz/cyber, -/area/ctf) -"qx" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/ctf) -"rw" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ctf) -"tb" = ( -/obj/structure/chair/sofa/corp{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ctf) -"tA" = ( -/obj/structure/flora/junglebush/large, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"tG" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"uv" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"uA" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 6 - }, -/turf/open/floor/wood, -/area/ctf) -"ve" = ( -/obj/structure/water_source/puddle, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"vo" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ctf) -"vO" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 10 - }, -/turf/open/floor/wood, -/area/ctf) -"vS" = ( -/obj/effect/turf_decal/siding/wood, -/turf/open/floor/wood, -/area/ctf) -"xO" = ( -/obj/structure/closet/crate/trashcart/filled, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"yc" = ( -/obj/machinery/vending/boozeomat/all_access, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"yj" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"yA" = ( -/obj/structure/lattice, -/turf/open/floor/dz/cyber, -/area/space) -"zR" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"Ad" = ( -/turf/open/floor/plasteel/stairs/right, -/area/ctf) -"AW" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = -3; - pixel_y = 7 - }, -/turf/open/floor/wood, -/area/ctf) -"Bc" = ( -/turf/open/floor/plasteel, -/area/ctf) -"Bm" = ( -/obj/structure/railing, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"BL" = ( -/turf/closed/indestructible/rock, -/area/space) -"ER" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Fn" = ( -/turf/closed/indestructible/fakeglass, -/area/ctf) -"Fu" = ( -/obj/structure/table/wood, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/obj/item/clothing/glasses/thermal/xray, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"FJ" = ( -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"Ge" = ( -/obj/structure/flora/junglebush, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Hj" = ( -/obj/structure/flora/rock/jungle, -/turf/open/floor/plating/dirt/jungle, -/area/ctf) -"HI" = ( -/obj/structure/flora/rock/jungle, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Jf" = ( -/turf/open/floor/rospilovo/plitka, -/area/ctf) -"KM" = ( -/obj/structure/railing{ - dir = 5 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Lc" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"Ls" = ( -/obj/machinery/door/airlock/wood, -/turf/open/floor/dz/green, -/area/ctf) -"Lu" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"Lv" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer, -/turf/open/floor/wood, -/area/ctf) -"Mo" = ( -/turf/closed/indestructible/wood, -/area/ctf) -"Mz" = ( -/obj/structure/flora/rock/pile/largejungle, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Nf" = ( -/obj/effect/landmark/observer_start, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"NI" = ( -/turf/open/floor/plating/dirt/jungle/dark, -/area/ctf) -"PQ" = ( -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Qb" = ( -/obj/structure/sign/barsign, -/turf/closed/indestructible/wood, -/area/ctf) -"QE" = ( -/obj/effect/landmark/arena/end, -/turf/open/indestructible/binary, -/area/ctf) -"QQ" = ( -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"QS" = ( -/obj/machinery/computer/arena, -/turf/open/floor/plasteel, -/area/ctf) -"Ts" = ( -/turf/closed/dz/normal/cyber, -/area/ctf) -"Tt" = ( -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"Uk" = ( -/turf/open/floor/plating/grass/jungle, -/area/ctf) -"UD" = ( -/obj/structure/chair/sofa/corp{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wood{ - dir = 4 - }, -/turf/open/floor/wood, -/area/ctf) -"Vk" = ( -/obj/effect/turf_decal/siding/wood{ - dir = 8 - }, -/turf/open/floor/wood, -/area/ctf) -"WO" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/fullupgrade{ - dir = 8 - }, -/turf/open/floor/rospilovo/plitka/full, -/area/ctf) -"Xc" = ( -/obj/effect/landmark/arena/start, -/turf/open/indestructible/binary, -/area/ctf) -"Yy" = ( -/turf/open/indestructible/binary, -/area/ctf) -"Zw" = ( -/turf/open/floor/dz/cyber, -/area/space) - -(1,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(2,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(3,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(4,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(5,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(6,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(7,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(8,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(9,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(10,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(11,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(12,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(13,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(14,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(15,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(16,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(17,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(18,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(19,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(20,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(21,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(22,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(23,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(24,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(25,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(26,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(27,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(28,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(29,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(30,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(31,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(32,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(33,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(34,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(35,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(36,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(37,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(38,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(39,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(40,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(41,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(42,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(43,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(44,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(45,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(46,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(47,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(48,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(49,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(50,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(51,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(52,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(53,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(54,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(55,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(56,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(57,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(58,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(59,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(60,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(61,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(62,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(63,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(64,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(65,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(66,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(67,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(68,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(69,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(70,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(71,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(72,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(73,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(74,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(75,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(76,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(77,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(78,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(79,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(80,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(81,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(82,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(83,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(84,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(85,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -yA -BL -BL -BL -BL -BL -BL -BL -BL -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(86,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(87,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(88,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(89,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(90,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(91,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(92,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(93,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(94,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(95,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(96,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -xO -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(97,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -xO -Uk -oc -Uk -Uk -Uk -Ge -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(98,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -oa -Uk -Uk -HI -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(99,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -Mo -Mo -Mo -Mo -yj -yj -yj -yj -yj -yj -yj -yj -bS -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(100,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -bK -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -KM -Tt -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(101,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Ad -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -uv -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(102,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Fn -Fn -Fn -Mo -jH -lI -fY -Jf -Jf -uv -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(103,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Fn -qx -Bc -qx -Fn -Fn -PQ -lI -Jf -Jf -uv -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(104,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Fn -Bc -Bc -Bc -Bc -Fn -Uk -Bm -Jf -Jf -uv -Uk -oa -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(105,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Fn -QS -fi -Bc -Bc -Fn -Uk -Bm -Jf -Jf -uv -Uk -Uk -oc -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(106,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Fn -Bc -Bc -Bc -Bc -Fn -Uk -Bm -Jf -Jf -uv -Uk -Uk -Mz -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(107,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Fn -qx -Bc -qx -Fn -Fn -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(108,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Fn -Fn -Fn -Mo -Uk -Uk -Bm -Jf -Jf -uv -Uk -ER -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(109,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Mo -Mo -Ls -Mo -Mo -Uk -Uk -Uk -Uk -Uk -oc -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(110,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -bq -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(111,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(112,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -Uk -Uk -Uk -bq -Ge -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -pC -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(113,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -HI -Uk -Bm -Jf -Jf -uv -oa -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(114,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Xc -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(115,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -pC -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -oc -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(116,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -pC -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(117,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -bq -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(118,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Ge -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(119,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -oc -Uk -Uk -Uk -ER -Bm -Jf -Jf -uv -oa -Uk -Uk -Uk -Uk -HI -Ge -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(120,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -oa -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(121,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(122,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -oa -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(123,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -ve -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -bq -Uk -pC -Uk -Uk -Uk -Uk -Uk -HI -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(124,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -Uk -ER -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(125,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -Uk -Uk -Uk -HI -Uk -Bm -Jf -Jf -uv -Uk -oc -Uk -Uk -Uk -Uk -Uk -Uk -Uk -NI -NI -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(126,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Uk -pC -Uk -bq -Uk -Uk -Bm -Jf -Jf -uv -HI -Uk -Uk -Uk -HI -NI -NI -NI -NI -NI -NI -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(127,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Mo -Fn -Mo -Mo -Fn -Mo -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -py -NI -NI -bh -bh -NI -NI -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(128,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -yc -FJ -FJ -FJ -FJ -Fn -Bm -Jf -Jf -uv -Uk -Ge -Uk -NI -py -bh -bh -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(129,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -yc -FJ -Nf -Fu -FJ -Mo -Bm -Jf -Jf -uv -Uk -bq -NI -NI -bh -bh -bh -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(130,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -Mo -Lu -WO -jA -FJ -Mo -Bm -Jf -Jf -uv -Uk -Uk -NI -bh -bh -bh -bh -bh -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(131,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -kL -Vk -Vk -Vk -vO -Mo -Bm -Jf -Jf -tA -Uk -py -py -bh -bh -bh -bh -bh -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(132,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -Lc -du -mQ -vS -Fn -Bm -Jf -Jf -uv -NI -Hj -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(133,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -Lv -nR -cU -vS -Mo -hm -Jf -Jf -uv -py -NI -bh -bh -bh -bh -bh -py -bh -bh -bh -bh -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(134,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -vo -tb -rw -vS -al -Jf -Jf -Jf -NI -py -bh -bh -bh -bh -py -py -py -py -bh -bh -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(135,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -jy -jy -jy -vS -al -Jf -Jf -Jf -NI -py -bh -bh -bh -bh -py -dK -bO -py -bh -bh -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(136,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -Lc -du -mQ -vS -Qb -lI -Jf -Jf -uv -py -py -bh -bh -bh -py -py -py -py -bh -bh -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(137,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -QE -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Yy -Fn -qn -qn -qn -Mo -eN -fz -em -AW -vS -Mo -Bm -Jf -Jf -uv -NI -py -bh -bh -bh -bh -py -py -bh -bh -py -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(138,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -Fn -qn -qn -qn -Mo -kZ -zR -UD -tG -uA -Mo -Bm -Jf -Jf -uv -Uk -dK -py -bh -bh -bh -bh -bh -bh -bh -py -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(139,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -Mo -Fn -Mo -Mo -Fn -Mo -Bm -Jf -Jf -uv -Uk -Uk -py -bh -bh -bh -bh -bh -bh -bh -py -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(140,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -Uk -Uk -oa -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -py -py -bh -bh -bh -bh -bh -bh -py -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(141,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Mo -Uk -Uk -Ge -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -py -bh -bh -bh -bh -py -py -py -py -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(142,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Ts -Mo -Mo -Ls -Mo -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -oc -HI -py -py -py -py -py -py -py -py -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(143,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -py -py -py -py -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(144,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Uk -Uk -Uk -Uk -Uk -Uk -Bm -Jf -Jf -uv -Uk -Uk -Uk -HI -Uk -Uk -Uk -Uk -Uk -HI -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(145,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Uk -Uk -Uk -Uk -Uk -pC -Bm -Jf -Jf -uv -bq -bq -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(146,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -Uk -Uk -Uk -Uk -Uk -ez -hm -Jf -Jf -uv -Uk -Uk -Uk -Uk -Uk -Uk -oc -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(147,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Mo -yj -yj -yj -yj -yj -hm -Jf -Jf -Jf -uv -Uk -Uk -Ge -Uk -Uk -Uk -Uk -Uk -bq -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(148,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -bK -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -uv -Uk -Uk -oa -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(149,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -fr -fr -fr -Ad -Jf -Jf -Jf -Jf -Jf -Jf -Jf -Jf -af -QQ -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(150,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Mo -Mo -Mo -Mo -Mo -jH -jH -jH -jH -jH -jH -jH -jH -QQ -Uk -Uk -Uk -Uk -Uk -Uk -Uk -oa -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(151,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(152,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -pC -Uk -Uk -Uk -oa -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(153,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -Uk -Uk -Ge -bq -Uk -Uk -Uk -Uk -Uk -ER -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(154,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(155,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(156,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Uk -Uk -Uk -Uk -Uk -Uk -Uk -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(157,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(158,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(159,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(160,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(161,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(162,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(163,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(164,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(165,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(166,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(167,1,1) = {" -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -yA -"} -(168,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(169,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(170,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(171,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(172,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(173,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -yA -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(174,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -yA -Zw -Zw -BL -BL -BL -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(175,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -BL -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(176,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(177,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(178,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(179,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(180,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(181,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(182,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(183,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(184,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(185,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(186,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(187,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(188,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(189,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(190,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(191,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(192,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(193,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(194,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(195,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(196,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(197,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(198,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(199,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(200,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(201,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(202,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(203,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(204,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(205,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(206,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(207,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(208,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(209,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(210,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(211,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(212,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(213,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(214,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(215,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(216,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(217,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(218,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(219,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(220,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(221,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(222,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(223,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(224,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(225,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(226,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(227,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(228,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(229,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(230,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(231,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(232,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(233,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(234,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(235,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(236,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(237,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(238,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(239,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(240,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(241,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(242,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(243,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(244,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(245,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(246,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(247,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(248,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(249,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(250,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(251,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(252,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(253,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(254,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} -(255,1,1) = {" -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -yA -Zw -Zw -yA -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -Zw -"} diff --git a/_maps/map_files/generic/CityOfCogs.dmm b/_maps/map_files/generic/CityOfCogs.dmm deleted file mode 100644 index 3502c8572faa..000000000000 --- a/_maps/map_files/generic/CityOfCogs.dmm +++ /dev/null @@ -1,65722 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/machinery/sleeper, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"b" = ( -/turf/open/indestructible/reebe_void, -/area/reebe) -"c" = ( -/obj/machinery/door/airlock/clockwork/glass{ - name = "Infirmary" - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"d" = ( -/obj/structure/chair/bronze{ - dir = 1 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"e" = ( -/obj/structure/table/bronze, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"g" = ( -/obj/machinery/computer/camera_advanced/ratvar{ - dir = 4 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"h" = ( -/obj/effect/landmark/city_of_cogs, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"i" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"j" = ( -/obj/machinery/door/airlock/clockwork/glass{ - name = "Listening Station" - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"k" = ( -/obj/structure/window/reinforced/clockwork/fulltile, -/obj/structure/grille/ratvar, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"l" = ( -/obj/structure/mirror/magic/lesser{ - pixel_x = 32 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"n" = ( -/obj/structure/table/bronze, -/obj/item/clockwork/clockwork_slab, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"o" = ( -/obj/structure/grille/ratvar, -/obj/structure/window/reinforced/clockwork/fulltile, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"q" = ( -/turf/closed/wall/clockwork, -/area/reebe/city_of_cogs) -"r" = ( -/obj/machinery/door/airlock/clockwork/glass{ - name = "Summoning Chamber" - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"t" = ( -/obj/structure/chair/bronze, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"v" = ( -/obj/structure/table/bronze, -/obj/effect/mob_spawn/drone/cogscarab, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"w" = ( -/obj/effect/landmark/servant_of_ratvar, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"x" = ( -/obj/structure/dresser, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"z" = ( -/obj/structure/destructible/clockwork/eminence_beacon, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"A" = ( -/obj/machinery/door/airlock/clockwork/glass{ - name = "Observation Room" - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"B" = ( -/obj/structure/chair/bronze{ - dir = 8 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"C" = ( -/obj/effect/clockwork/servant_blocker, -/turf/closed/wall/clockwork, -/area/reebe/city_of_cogs) -"D" = ( -/obj/structure/lattice/catwalk/clockwork, -/obj/effect/clockwork/servant_blocker, -/turf/open/indestructible/reebe_void, -/area/reebe/city_of_cogs) -"E" = ( -/obj/structure/table/bronze, -/obj/item/clockwork/clockwork_slab, -/obj/item/clockwork/clockwork_slab, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"H" = ( -/turf/open/indestructible/reebe_void/spawning/lattices, -/area/reebe) -"I" = ( -/obj/machinery/door/airlock/clockwork/glass, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"K" = ( -/obj/machinery/door/airlock/clockwork/glass{ - name = "Ark Chamber" - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"L" = ( -/obj/structure/chair/bronze{ - dir = 4 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"O" = ( -/obj/structure/table/bronze, -/obj/item/clockwork/clockwork_slab, -/obj/item/clockwork/clockwork_slab, -/obj/item/clockwork/clockwork_slab, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"R" = ( -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"T" = ( -/obj/machinery/telecomms/relay/preset/reebe, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"U" = ( -/obj/structure/table/bronze, -/obj/item/clockwork/replica_fabricator, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"V" = ( -/obj/machinery/computer/camera_advanced/ratvar, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"W" = ( -/obj/machinery/computer/camera_advanced/ratvar{ - dir = 8 - }, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"X" = ( -/obj/structure/destructible/clockwork/massive/celestial_gateway, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"Y" = ( -/obj/structure/table/bronze, -/obj/item/storage/firstaid/regular, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) -"Z" = ( -/obj/structure/table/bronze, -/obj/item/radio/intercom, -/turf/open/floor/clockwork/reebe, -/area/reebe/city_of_cogs) - -(1,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(2,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(3,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(4,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(5,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(6,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(7,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(8,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(9,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(10,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(11,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(12,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(13,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(14,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(15,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(16,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(17,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(18,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(19,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(20,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(21,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(22,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(23,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(24,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(25,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(26,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(27,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(28,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(29,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(30,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(31,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(32,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(33,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(34,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(35,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(36,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(37,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(38,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(39,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(40,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(41,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(42,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(43,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(44,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(45,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(46,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(47,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(48,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(49,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(50,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(51,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(52,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(53,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(54,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(55,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(56,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(57,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(58,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(59,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(60,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(61,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(62,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(63,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(64,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(65,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(66,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(67,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(68,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(69,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(70,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(71,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(72,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(73,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(74,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(75,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(76,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(77,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(78,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(79,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(80,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(81,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(82,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(83,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(84,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(85,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(86,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(87,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(88,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(89,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(90,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(91,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -h -R -h -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(92,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(93,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -h -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(94,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(95,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -h -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(96,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(97,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(98,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -k -I -k -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(99,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(100,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(101,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(102,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(103,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -o -o -o -o -o -o -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(104,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -R -o -o -o -o -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(105,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -o -o -o -o -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(106,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -q -I -q -q -q -q -R -R -R -R -R -R -R -R -o -o -o -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(107,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -q -q -q -q -R -R -R -R -R -R -R -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(108,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -R -R -R -q -q -q -q -R -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(109,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -R -R -R -R -R -R -q -q -q -q -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(110,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -C -D -D -D -D -D -D -R -R -R -R -R -R -R -R -R -q -q -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(111,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -D -D -D -D -R -R -R -R -R -R -R -q -q -R -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(112,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -D -D -D -D -R -R -R -R -R -q -q -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(113,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -D -D -D -R -R -R -R -q -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(114,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(115,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(116,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(117,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(118,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -H -H -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(119,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -o -o -q -q -q -q -o -o -q -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(120,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -a -R -e -Y -q -Z -R -R -Z -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(121,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -e -a -R -R -R -o -B -R -R -B -Z -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(122,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -o -i -i -R -R -R -R -c -R -R -R -R -t -Z -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -o -H -H -H -H -b -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(123,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -o -L -R -L -R -R -R -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(124,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -q -l -R -R -R -x -Y -q -Z -T -Z -R -R -R -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(125,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -q -q -o -c -o -q -q -q -q -q -q -o -j -o -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -H -H -H -H -H -H -o -o -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(126,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -o -o -o -q -q -R -R -R -R -R -R -R -R -R -q -v -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -H -H -H -H -H -o -o -h -R -h -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(127,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -w -w -R -w -w -q -R -R -R -d -R -d -R -d -R -o -E -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -o -o -o -o -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(128,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -w -R -R -R -w -o -R -n -R -d -R -d -R -d -R -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -R -R -R -R -o -R -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(129,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -X -R -R -r -R -e -R -R -R -R -R -R -R -K -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -I -R -R -R -R -R -R -R -I -R -R -R -R -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(130,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -w -R -R -R -w -o -R -z -R -d -R -d -R -d -R -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -R -R -R -R -o -R -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(131,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -w -w -R -w -w -q -R -R -R -d -R -d -R -d -R -o -E -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -o -o -o -o -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(132,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -o -o -o -q -q -R -R -R -R -R -R -R -R -R -q -v -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -H -H -H -H -H -o -o -h -R -h -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(133,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -q -q -o -A -o -q -q -q -q -q -q -o -K -o -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -o -H -H -H -H -H -H -o -o -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(134,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -q -V -d -R -R -g -e -q -O -e -O -R -R -R -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(135,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -o -e -R -R -R -B -R -o -R -R -R -R -R -R -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(136,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -o -V -d -R -R -R -R -A -R -R -R -R -R -U -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -o -H -H -H -H -b -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(137,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -e -L -R -L -R -o -R -R -R -R -e -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(138,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -W -e -W -e -q -e -R -R -U -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(139,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -o -o -q -q -q -q -o -o -q -q -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(140,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -H -H -q -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(141,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(142,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(143,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -R -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(144,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -R -D -D -R -R -R -R -q -q -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(145,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -D -D -D -R -R -R -R -q -q -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(146,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -D -D -D -D -R -R -R -R -R -q -q -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(147,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -D -D -D -D -R -R -R -R -R -R -R -q -q -R -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(148,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -C -D -D -D -D -D -D -R -R -R -R -R -R -R -R -R -q -q -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(149,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -R -R -R -R -R -R -q -q -q -q -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(150,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -R -R -R -q -q -q -q -R -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(151,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -R -R -R -R -R -R -q -q -q -q -R -R -R -R -R -R -R -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(152,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -q -q -q -I -q -q -q -q -R -R -R -R -R -R -R -R -o -o -o -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(153,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -R -R -R -R -o -o -o -o -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(154,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -R -R -o -o -o -o -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(155,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -o -o -o -o -o -o -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(156,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(157,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(158,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(159,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -o -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(160,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -k -I -k -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(161,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(162,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(163,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -h -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(164,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -R -R -R -R -R -R -R -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(165,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -h -R -R -R -R -R -h -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(166,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -R -R -R -R -R -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(167,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -h -R -h -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(168,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -o -o -o -o -o -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(169,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(170,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -H -H -H -H -H -H -H -H -H -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(171,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(172,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(173,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(174,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(175,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(176,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(177,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(178,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(179,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(180,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(181,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(182,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(183,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(184,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(185,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(186,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(187,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(188,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(189,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(190,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(191,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(192,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(193,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(194,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(195,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(196,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(197,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(198,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(199,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(200,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(201,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(202,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(203,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(204,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(205,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(206,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(207,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(208,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(209,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(210,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(211,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(212,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(213,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(214,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(215,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(216,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(217,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(218,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(219,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(220,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(221,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(222,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(223,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(224,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(225,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(226,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(227,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(228,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(229,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(230,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(231,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(232,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(233,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(234,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(235,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(236,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(237,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(238,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(239,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(240,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(241,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(242,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(243,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(244,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(245,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(246,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(247,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(248,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(249,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(250,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(251,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(252,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(253,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(254,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} -(255,1,1) = {" -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -"} diff --git a/_maps/map_files/protocol_c/endpoint.dmm b/_maps/map_files/protocol_c/endpoint.dmm deleted file mode 100644 index ed614f6ede31..000000000000 --- a/_maps/map_files/protocol_c/endpoint.dmm +++ /dev/null @@ -1,73708 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien24" - }, -/area/abductor_ship) -"ab" = ( -/obj/effect/landmark/mafia_game_area, -/turf/open/space/basic, -/area/space) -"ad" = ( -/turf/open/floor/plasteel/stairs/old{ - dir = 4 - }, -/area/centcom/control) -"aj" = ( -/turf/closed/indestructible/riveted, -/area/awaymission/errorroom) -"ak" = ( -/turf/open/floor/carpet, -/area/wizard_station) -"ao" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/nullrod/claymore/glowing{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"as" = ( -/turf/closed/indestructible/wood, -/area/centcom/holding) -"at" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien17" - }, -/area/abductor_ship) -"au" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien18" - }, -/area/abductor_ship) -"aw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"ax" = ( -/turf/closed/indestructible/sandstone, -/area/syndicate_mothership) -"az" = ( -/turf/closed/mineral/ash_rock, -/area/awaymission/errorroom) -"aA" = ( -/obj/structure/speaking_tile, -/turf/closed/mineral/ash_rock, -/area/awaymission/errorroom) -"aG" = ( -/obj/machinery/abductor/experiment{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"aI" = ( -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"aL" = ( -/obj/machinery/hydroponics/constructable, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"aO" = ( -/obj/structure/flora/ausbushes/stalkybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"aP" = ( -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stamp, -/obj/structure/table/reinforced, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"aU" = ( -/obj/structure/flora/ausbushes/ywflowers, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"aV" = ( -/obj/structure/flora/rock/pile, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"aX" = ( -/obj/machinery/abductor/console{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"aZ" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"ba" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bc" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/item/flashlight/seclite, -/obj/item/flashlight/seclite{ - pixel_y = 11 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"bd" = ( -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = -10; - pixel_y = 23; - req_access_txt = "150" - }, -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = 12; - pixel_y = 34; - req_access_txt = "150" - }, -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = 12; - pixel_y = 23; - req_access_txt = "150" - }, -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = 1; - pixel_y = 23; - req_access_txt = "150" - }, -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = 1; - pixel_y = 34; - req_access_txt = "150" - }, -/obj/machinery/button{ - desc = "It's a secret!"; - name = "secret button"; - pixel_x = -10; - pixel_y = 34; - req_access_txt = "150" - }, -/turf/open/indestructible/white, -/area/centcom/control) -"bi" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bj" = ( -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"bo" = ( -/obj/machinery/abductor/pad{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"bu" = ( -/mob/living/simple_animal/butterfly, -/obj/effect/light_emitter, -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"bv" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"bw" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bx" = ( -/obj/vehicle/sealed/car/fucking_tank{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"bz" = ( -/obj/structure/flora/ausbushes/palebush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bC" = ( -/obj/structure/sink/oil_well, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bH" = ( -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bK" = ( -/obj/structure/flora/ausbushes/brflowers, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bO" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bP" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"bR" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"bV" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bW" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"bX" = ( -/obj/machinery/computer/shuttle_flight, -/turf/open/floor/engine/cult, -/area/wizard_station) -"ca" = ( -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"cb" = ( -/obj/structure/flora/ausbushes/sparsegrass, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"cd" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien19" - }, -/area/abductor_ship) -"cf" = ( -/obj/item/secateurs, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"ch" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/obj/structure/flora/ausbushes/ppflowers, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"ci" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 7; - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"ck" = ( -/obj/item/rupee, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"cn" = ( -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"co" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"cp" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/syndicate_mothership/control) -"cs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"cu" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Personal Quarters" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"cF" = ( -/turf/closed/indestructible/opsglass, -/area/syndicate_mothership/control) -"cH" = ( -/turf/closed/indestructible/syndicate, -/area/syndicate_mothership/control) -"cJ" = ( -/obj/effect/baseturf_helper/asteroid/snow, -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/syndicate_mothership/control) -"cO" = ( -/obj/machinery/abductor/experiment{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"cP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/cigarette/syndicate, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"cS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"cY" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"da" = ( -/obj/machinery/computer/shuttle_flight/syndicate/recall, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"db" = ( -/turf/open/floor/plasteel/stairs/old{ - dir = 8 - }, -/area/centcom/control) -"dc" = ( -/obj/structure/flora/ausbushes/rospilovo/pointybush{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"di" = ( -/obj/machinery/abductor/console{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"dj" = ( -/obj/machinery/abductor/pad{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"dm" = ( -/obj/structure/bodycontainer/crematorium{ - dir = 4; - id = "yoheifuckery" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"dn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/spawner/xmastree, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"ds" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"dv" = ( -/obj/structure/flora/ausbushes/ppflowers{ - pixel_x = 14; - pixel_y = -14 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"dx" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"dC" = ( -/obj/machinery/autolathe, -/turf/open/floor/wood, -/area/centcom/holding) -"dE" = ( -/obj/structure/closet/abductor, -/obj/item/storage/box/alienhandcuffs, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"dF" = ( -/obj/structure/flora/ausbushes/ppflowers{ - pixel_x = 14 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"dH" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"dK" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien15" - }, -/area/abductor_ship) -"dL" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Bathroom" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"dN" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/space/basic, -/area/wizard_station) -"dR" = ( -/obj/machinery/vending/cola, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"dX" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"dY" = ( -/obj/item/soap/syndie, -/obj/structure/mopbucket, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"eb" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"ec" = ( -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"eh" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"ei" = ( -/obj/structure/rospilovo/tree{ - pixel_x = -9; - pixel_y = 15 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"el" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"em" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"en" = ( -/obj/structure/showcase{ - desc = "A strange machine supposedly from another world. The Wizard Federation has been meddling with it for years."; - icon = 'icons/obj/machines/telecomms.dmi'; - icon_state = "processor"; - name = "byond random number generator" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"es" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien12" - }, -/area/abductor_ship) -"eu" = ( -/obj/machinery/shuttle_manipulator, -/turf/open/floor/circuit/green, -/area/centcom/brief) -"ex" = ( -/obj/item/retractor/alien, -/obj/item/hemostat/alien, -/obj/structure/table/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"ey" = ( -/obj/structure/showcase{ - desc = "A historical figure of great importance to the wizard federation. He spent his long life learning magic, stealing artifacts, and harassing idiots with swords. May he rest forever, Rodney."; - icon = 'icons/mob/mob.dmi'; - icon_state = "nim"; - name = "wizard of yendor showcase" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"eA" = ( -/obj/effect/landmark/error, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"eC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"eE" = ( -/obj/structure/flora/ausbushes/rospilovo/brflowers, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"eH" = ( -/obj/machinery/door/poddoor/shuttledock{ - checkdir = 4; - name = "syndicate blast door"; - turftype = /turf/open/floor/plating/beach/sand - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"eI" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"eJ" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Cockpit" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"eL" = ( -/obj/structure/table/wood/bar, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/storage/toolbox/mechanical, -/obj/item/multitool, -/turf/open/floor/wood, -/area/centcom/holding) -"eN" = ( -/obj/structure/signpost/salvation{ - icon = 'icons/obj/structures.dmi'; - icon_state = "ladder10"; - invisibility = 100 - }, -/turf/open/floor/plating/ashplanet/wateryrock{ - initial_gas_mix = "o2=22;n2=82;TEMP=293.15"; - planetary_atmos = 0 - }, -/area/awaymission/errorroom) -"eQ" = ( -/obj/item/paper/fluff/stations/centcom/disk_memo, -/obj/structure/noticeboard{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"eR" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"eS" = ( -/turf/open/floor/wood, -/area/centcom/holding) -"fa" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - id = "pod_3_away"; - name = "NT CentCom: Recovery field #3"; - width = 3 - }, -/turf/open/floor/engine, -/area/centcom/control) -"fb" = ( -/obj/structure/flora/rock/pile{ - pixel_y = -16 - }, -/obj/structure/flora/ausbushes/rospilovo/pointybush{ - pixel_x = -8; - pixel_y = 9 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"fe" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/mob/living/simple_animal/hostile/carp/cayenne, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"fh" = ( -/obj/structure/table/wood/bar, -/obj/structure/safe/floor, -/obj/item/seeds/cherry/bomb, -/turf/open/floor/wood, -/area/centcom/holding) -"fi" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 4 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fj" = ( -/obj/structure/table/abductor, -/obj/machinery/recharger, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fl" = ( -/obj/machinery/computer/camera_advanced, -/turf/open/floor/wood, -/area/wizard_station) -"fq" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien13" - }, -/area/abductor_ship) -"fs" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"fw" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"fA" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fD" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 3 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fE" = ( -/obj/structure/shuttle/engine/heater{ - resistance_flags = 3 - }, -/obj/structure/window/reinforced{ - color = "#008000"; - dir = 1; - resistance_flags = 3 - }, -/turf/open/lava/airless, -/area/wizard_station) -"fF" = ( -/obj/item/surgical_drapes, -/obj/item/paper/guides/antag/abductor, -/obj/item/scalpel/alien, -/obj/structure/table/abductor, -/obj/item/cautery/alien, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fI" = ( -/obj/structure/dresser, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"fJ" = ( -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"fK" = ( -/obj/structure/closet/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"fL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"fO" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/item/mop, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"fQ" = ( -/obj/structure/rospilovo/tree{ - pixel_x = -16; - pixel_y = 15 - }, -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"fR" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"fS" = ( -/obj/effect/light_emitter, -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"fU" = ( -/obj/structure/flora/ausbushes/reedbush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"fV" = ( -/obj/structure/table/wood/bar, -/obj/structure/mirror{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"fW" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"fX" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien11" - }, -/area/abductor_ship) -"fY" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien6" - }, -/area/abductor_ship) -"gb" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/nukeop, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"gi" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gk" = ( -/obj/structure/flora/ausbushes/rospilovo/sparsegrass{ - pixel_x = 10; - pixel_y = 3 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"gl" = ( -/obj/structure/table/wood, -/obj/item/pizzabox, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/storage/crayons{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/storage/crayons{ - pixel_x = 2; - pixel_y = 5 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gm" = ( -/obj/machinery/door/airlock/centcom{ - name = "Restroom"; - req_access_txt = "150" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gq" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"gr" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/food/syndicake{ - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gs" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/beer{ - pixel_x = 5; - pixel_y = -2 - }, -/obj/item/toy/cards/deck/syndicate{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gu" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"gw" = ( -/obj/machinery/suit_storage_unit/mining, -/turf/open/indestructible/white, -/area/centcom/control) -"gx" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/window{ - dir = 8; - icon_state = "right"; - name = "Tactical Toilet"; - opacity = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/syndicate_mothership/control) -"gy" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 25; - height = 50; - id = "emergency_syndicate"; - name = "Syndicate recon outpost: Auxillary Dock"; - width = 50 - }, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"gA" = ( -/obj/structure/table/wood/fancy, -/obj/item/radio/headset, -/turf/open/floor/wood, -/area/wizard_station) -"gD" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien7" - }, -/area/abductor_ship) -"gE" = ( -/obj/structure/closet/crate/radiation, -/obj/item/stack/sheet/mineral/uranium{ - amount = 20 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"gF" = ( -/obj/item/banner/engineering/atmos/mundane, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"gG" = ( -/obj/structure/flora/ausbushes/rospilovo/brflowers, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"gH" = ( -/obj/docking_port/stationary{ - area_type = /area/syndicate_mothership; - dheight = 1; - dir = 8; - dwidth = 12; - height = 17; - id = "syndicate_away"; - name = "Syndicate recon outpost: Shuttle Dock"; - roundstart_template = /datum/map_template/shuttle/infiltrator/basic; - width = 23 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"gJ" = ( -/obj/machinery/abductor/gland_dispenser, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"gK" = ( -/obj/structure/flora/ausbushes/rospilovo/sparsegrass, -/obj/machinery/light/directional/east, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"gM" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular{ - pixel_x = 6; - pixel_y = -5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"gN" = ( -/obj/structure/table/abductor, -/obj/item/surgicaldrill/alien, -/obj/item/circular_saw/alien, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"gS" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/machinery/door/window/brigdoor/southright{ - req_access_txt = "101" - }, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/obj/item/restraints/legcuffs/bola/energy, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"gT" = ( -/obj/structure/bed/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"gU" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "150" - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"gV" = ( -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "nukeop_ready"; - name = "shuttle dock" - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"gY" = ( -/obj/machinery/button/door/indestructible{ - id = "nukeop_ready"; - name = "mission launch control"; - pixel_x = -26; - req_access_txt = "151" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"gZ" = ( -/obj/machinery/vending/clothing, -/turf/open/floor/wood, -/area/centcom/holding) -"hb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/chetverochka, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"hc" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien8" - }, -/area/abductor_ship) -"hd" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/chetverochka/pharma, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"hi" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/structure/mirror/directional/north, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"hj" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien9" - }, -/area/abductor_ship) -"hk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table, -/obj/item/gun/energy/ionrifle, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"hn" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien3" - }, -/area/abductor_ship) -"hq" = ( -/turf/closed/indestructible/abductor, -/area/abductor_ship) -"ht" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - req_access_txt = "101" - }, -/obj/machinery/door/window/brigdoor{ - dir = 1; - req_access_txt = "101" - }, -/obj/item/construction/rcd/arcd{ - pixel_y = 4 - }, -/obj/item/construction/rcd/arcd, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"hw" = ( -/obj/structure/flora/ausbushes/rospilovo, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"hA" = ( -/obj/structure/table/abductor, -/obj/item/storage/backpack/duffelbag/syndie/surgery, -/obj/item/camera{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"hB" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien4" - }, -/area/abductor_ship) -"hC" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien5" - }, -/area/abductor_ship) -"hK" = ( -/obj/machinery/abductor/experiment{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"hQ" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/whiskey{ - pixel_y = 5 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"hZ" = ( -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/bottle/rum, -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"ic" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"id" = ( -/obj/machinery/light/directional/north, -/turf/open/indestructible/white, -/area/centcom/control) -"if" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/floor/holofloor/hyperspace, -/area/space) -"ih" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"ii" = ( -/obj/machinery/abductor/console{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"ik" = ( -/obj/structure/table/wood, -/obj/item/syndicatedetonator{ - desc = "This gaudy button can be used to instantly detonate syndicate bombs that have been activated on the station. It is also fun to press." - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"im" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"ip" = ( -/obj/structure/table/wood, -/obj/item/toy/nuke, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"is" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/wood, -/area/centcom/holding) -"iw" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album/syndicate{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/camera{ - pixel_x = -2 - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"iz" = ( -/obj/machinery/abductor/pad{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iA" = ( -/obj/machinery/abductor/experiment{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iF" = ( -/obj/machinery/abductor/console{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iH" = ( -/obj/machinery/abductor/pad{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iJ" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 1 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iK" = ( -/obj/machinery/computer/camera_advanced/abductor{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iL" = ( -/obj/structure/table, -/turf/open/indestructible/white, -/area/centcom/control) -"iV" = ( -/obj/effect/landmark/abductor/scientist, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"iW" = ( -/obj/machinery/modular_computer/console/preset/research, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"iY" = ( -/obj/structure/flora/ausbushes/genericbush{ - pixel_x = 54; - pixel_y = 71 - }, -/obj/structure/railing, -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"iZ" = ( -/obj/effect/landmark/abductor/agent, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"je" = ( -/obj/machinery/conveyor/inverted{ - dir = 4; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"jg" = ( -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"jh" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/structure/plasticflaps, -/obj/machinery/conveyor/inverted{ - dir = 4; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"ji" = ( -/obj/effect/landmark/abductor/scientist{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"jj" = ( -/turf/closed/indestructible/black, -/area/start) -"jo" = ( -/obj/structure/closet/secure_closet/ert_med, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"jp" = ( -/obj/effect/landmark/abductor/agent{ - team_number = 2 - }, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"jq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"jv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Auxillary Dock"; - req_access_txt = "" - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"jx" = ( -/obj/structure/table/wood, -/obj/machinery/computer/bookmanagement, -/turf/open/floor/wood, -/area/centcom/holding) -"jz" = ( -/obj/structure/railing, -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"jA" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_y = -24; - req_access_txt = "150" - }, -/turf/open/indestructible/white, -/area/centcom/control) -"jF" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"jH" = ( -/obj/structure/table/wood, -/obj/item/camera/detective{ - desc = "A polaroid camera with extra capacity for social media marketing."; - name = "Professional camera" - }, -/obj/item/camera_film, -/obj/item/wallframe/newscaster, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/turf/open/floor/wood, -/area/centcom/holding) -"jK" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/structure/flora/ausbushes/ppflowers{ - pixel_x = 14 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"jL" = ( -/obj/effect/landmark/start/nukeop_leader, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"jM" = ( -/obj/machinery/chem_master/condimaster{ - desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; - name = "BrewMaster 2199"; - pixel_x = -4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"jO" = ( -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"jP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"jT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"jV" = ( -/obj/machinery/door/window{ - base_state = "right"; - dir = 4; - icon_state = "right"; - name = "Uplink Management Control"; - req_access_txt = "151" - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"jZ" = ( -/obj/structure/table, -/obj/item/book/manual/hydroponics_pod_people, -/obj/item/seeds/pumpkin/blumpkin, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"kc" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"kg" = ( -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/rospilovo/ywflowers{ - pixel_x = 17 - }, -/mob/living/simple_animal/parrot, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"kj" = ( -/obj/machinery/door/airlock/wood, -/turf/open/floor/wood, -/area/centcom/holding) -"kk" = ( -/obj/structure/table/wood, -/obj/item/storage/bag/tray, -/turf/open/floor/carpet, -/area/wizard_station) -"kl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"km" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_x = -24; - req_access_txt = "150" - }, -/turf/open/indestructible/white, -/area/centcom/control) -"kn" = ( -/turf/open/floor/holofloor/hyperspace, -/area/space) -"ko" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"kp" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"kr" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/supplypod/pod_storage) -"ks" = ( -/obj/structure/chair/comfy/teal, -/turf/open/floor/carpet/green, -/area/centcom/control) -"ky" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"kz" = ( -/obj/machinery/vending/boozeomat, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"kB" = ( -/obj/structure/chair/wood{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"kG" = ( -/obj/structure/grille, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"kK" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"kN" = ( -/obj/structure/sign/map/left{ - pixel_y = -32 - }, -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks{ - dir = 1 - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"kP" = ( -/obj/structure/sign/map/right{ - pixel_y = -32 - }, -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer{ - dir = 1 - }, -/turf/open/floor/wood, -/area/syndicate_mothership/control) -"kQ" = ( -/obj/machinery/door/airlock/centcom{ - name = "Equipment Room"; - req_access_txt = "150" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/syndicate_mothership/control) -"kW" = ( -/obj/structure/flora/ausbushes/ywflowers, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"kX" = ( -/obj/structure/closet/syndicate/personal, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/syndicate_mothership/control) -"lc" = ( -/obj/machinery/power/port_gen/pacman/super, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"lf" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/item/reagent_containers/glass/beaker/large, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"lg" = ( -/turf/open/floor/plasteel/dark, -/area/syndicate_mothership/control) -"lh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/syndicate_mothership/control) -"lj" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"lk" = ( -/obj/machinery/vending/tool, -/turf/open/floor/plasteel/dark, -/area/syndicate_mothership/control) -"lm" = ( -/obj/structure/flora/ausbushes/stalkybush, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"lr" = ( -/obj/structure/flora/ausbushes/ppflowers, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"ls" = ( -/turf/closed/indestructible/opsglass, -/area/centcom/circus) -"lu" = ( -/obj/machinery/seed_extractor, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"lz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"lE" = ( -/obj/machinery/mech_bay_recharge_port{ - dir = 2 - }, -/turf/open/floor/plating, -/area/syndicate_mothership/control) -"lG" = ( -/obj/item/chainsaw/circular, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"lI" = ( -/obj/structure/chair/comfy/lime, -/turf/open/floor/carpet/green, -/area/centcom/control) -"lO" = ( -/obj/structure/flora/rock{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/structure/flora/rock, -/obj/item/clothing/head/helmet/space/hardsuit/ert/sec{ - desc = "You ever wonder why we're here?"; - name = "Red combat armor helmet"; - pixel_x = -8; - pixel_y = -4 - }, -/obj/item/clothing/head/helmet/space/hardsuit/ert/engi{ - desc = "It's one of life's great mysteries, isn't it?"; - name = "orange combat armor helmet"; - pixel_x = 10; - pixel_y = -8 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"lT" = ( -/turf/open/floor/mech_bay_recharge_floor, -/area/syndicate_mothership/control) -"lX" = ( -/obj/structure/rospilovo/tree/leafless, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"md" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Animal Pen" - }, -/turf/open/floor/grass, -/area/centcom/holding) -"me" = ( -/obj/machinery/computer/mech_bay_power_console{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/syndicate_mothership/control) -"mg" = ( -/obj/structure/flora/ausbushes/fernybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"mj" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"mk" = ( -/obj/structure/closet/cardboard, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"mo" = ( -/obj/machinery/vending/medical, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"mr" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/grass, -/area/centcom/holding) -"ms" = ( -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"mt" = ( -/obj/structure/closet/cardboard/metal, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"mw" = ( -/obj/item/grown/log/tree, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"my" = ( -/obj/structure/chair/comfy/beige, -/turf/open/floor/carpet/green, -/area/centcom/control) -"mz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"mD" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"mF" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Не открывается."; - name = "airlock" - }, -/area/centcom/circus) -"mH" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"mO" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_x = -24; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"mR" = ( -/obj/structure/flora/ausbushes/fullgrass, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"mS" = ( -/turf/closed/indestructible/syndicate, -/area/centcom/brief) -"mT" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"mY" = ( -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"nb" = ( -/obj/structure/flora/ausbushes/grassybush, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"ne" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"nh" = ( -/obj/machinery/vending/hydronutrients, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"ni" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/centcom/control) -"nm" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien23" - }, -/area/abductor_ship) -"nq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"nr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"nw" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/chicken, -/turf/open/floor/grass, -/area/centcom/holding) -"ny" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/ert_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"nz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"nB" = ( -/obj/structure/closet/crate/freezer/blood, -/turf/open/floor/wood, -/area/centcom/holding) -"nE" = ( -/turf/open/floor/grass, -/area/centcom/holding) -"nJ" = ( -/obj/structure/flora/rock/pile, -/obj/structure/rospilovo/tree/leafless, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"nN" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/floor/holofloor/hyperspace, -/area/centcom/supplypod/supplypod_temp_holding) -"nO" = ( -/obj/structure/flora/grass/jungle/b, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"nP" = ( -/obj/structure/window/plasma/reinforced/spawner, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"nQ" = ( -/turf/closed/indestructible/syndicate, -/area/ruin/powered/yohei_base) -"nS" = ( -/turf/closed/indestructible/opsglass, -/area/ruin/powered/yohei_base) -"nT" = ( -/obj/machinery/computer/message_monitor, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"nY" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"ob" = ( -/mob/living/simple_animal/cow, -/turf/open/floor/grass, -/area/centcom/holding) -"oc" = ( -/obj/structure/closet/crate, -/obj/item/vending_refill/autodrobe, -/obj/item/stack/sheet/paperframes/fifty, -/obj/item/stack/sheet/paperframes/fifty, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/fancy/candle_box, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/wood, -/area/centcom/holding) -"oe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"oi" = ( -/obj/machinery/computer/telecomms/monitor, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"ol" = ( -/obj/machinery/vending/hydroseeds, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"om" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"ot" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/carpet, -/area/wizard_station) -"ou" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"oA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"oB" = ( -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"oG" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/shovel/spade, -/obj/item/wirecutters, -/obj/item/wrench, -/obj/item/watertank, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"oH" = ( -/obj/machinery/light/directional/south, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"oJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"oK" = ( -/obj/structure/shuttle/engine/large, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/engine/airless, -/area/ruin/powered/yohei_base) -"oN" = ( -/obj/machinery/biogenerator, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"oP" = ( -/obj/structure/closet/secure_closet/hydroponics{ - locked = 0 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"oT" = ( -/obj/effect/light_emitter, -/turf/open/floor/plasteel/stairs/old{ - dir = 1 - }, -/area/centcom/control) -"oW" = ( -/turf/open/floor/plasteel/dark/side, -/area/centcom/control) -"oY" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"oZ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"pc" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light, -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"pd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pf" = ( -/obj/lab_monitor{ - pixel_y = 4; - plane = -1 - }, -/turf/closed/indestructible/syndicate, -/area/centcom/circus) -"pk" = ( -/obj/machinery/gibber, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"pp" = ( -/obj/docking_port/stationary{ - area_type = /area/syndicate_mothership/control; - dwidth = 3; - height = 7; - name = "Syndicate recon outpost: Pod loader"; - roundstart_template = /datum/map_template/shuttle/assault_pod/default; - width = 7 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pr" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Дверь, ведущая на свободу."; - name = "Internal airlock" - }, -/area/centcom/circus) -"px" = ( -/obj/machinery/computer/camera_advanced, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"pA" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/engine, -/area/centcom/control) -"pD" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"pN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/syndicate_mothership/control) -"pV" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"pW" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/nullrod/claymore/darkblade{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"pX" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/centcom/control) -"pZ" = ( -/turf/closed/indestructible/fakedoor{ - desc = "�����, ������� ������ � ������ �������."; - name = "airlock" - }, -/area/centcom/control) -"qf" = ( -/obj/structure/table/wood, -/turf/open/floor/engine/cult, -/area/wizard_station) -"qg" = ( -/turf/open/floor/wood, -/area/wizard_station) -"qj" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/wizard_station) -"qk" = ( -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"ql" = ( -/obj/structure/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"qm" = ( -/obj/structure/flora/rock/pile{ - pixel_y = -16 - }, -/turf/open/floor/plating/beach/sand, -/area/syndicate_mothership) -"qn" = ( -/turf/closed/indestructible/riveted, -/area/ai_multicam_room) -"qp" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/figure/wizard, -/turf/open/floor/carpet, -/area/wizard_station) -"qq" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"qs" = ( -/turf/closed/indestructible/fakeglass{ - color = "#008000" - }, -/area/wizard_station) -"qt" = ( -/obj/structure/windoor_assembly, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"qu" = ( -/obj/machinery/processor, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"qw" = ( -/turf/open/ai_visible, -/area/ai_multicam_room) -"qx" = ( -/obj/effect/landmark/ai_multicam_room, -/turf/open/ai_visible, -/area/ai_multicam_room) -"qy" = ( -/obj/structure/table, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"qB" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/centcom/control) -"qD" = ( -/obj/structure/sink/kitchen{ - desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; - name = "sink"; - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"qF" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"qI" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"qL" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"qP" = ( -/obj/structure/window/reinforced, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"qQ" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"qR" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"qS" = ( -/obj/item/radio{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/radio{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/radio, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"qU" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"qY" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"qZ" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien21" - }, -/area/abductor_ship) -"rh" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien22" - }, -/area/abductor_ship) -"rk" = ( -/obj/structure/fans/tiny/invisible, -/obj/effect/turf_decal/stripes/full, -/obj/structure/railing/corner{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"rl" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/yellow, -/obj/item/pen/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"rm" = ( -/obj/structure/fans/tiny/invisible, -/obj/effect/turf_decal/stripes/full, -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"ro" = ( -/obj/structure/fans/tiny/invisible, -/obj/effect/turf_decal/stripes/full, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"rr" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/soap/deluxe, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"rt" = ( -/obj/structure/flora/junglebush/c, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"ru" = ( -/obj/structure/window/plasma/reinforced/spawner/east, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"rv" = ( -/obj/structure/closet/syndicate/resources/everything{ - storage_capacity = 40 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"rw" = ( -/obj/machinery/button/crematorium/indestructible{ - id = "yoheifuckery"; - pixel_x = -32 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"ry" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/arrows/white, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"rz" = ( -/obj/structure/rack, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 12 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty{ - pixel_y = 6 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/item/tank/internals/emergency_oxygen/double/empty, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"rB" = ( -/obj/structure/flora/rock/pile, -/obj/structure/flora/ausbushes/rospilovo/pointybush{ - pixel_y = 12 - }, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"rC" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Observation Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"rG" = ( -/obj/effect/mob_spawn/human/donate/artist{ - pixel_y = 6 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"rI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"rL" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Game Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"rO" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien2" - }, -/area/abductor_ship) -"rT" = ( -/mob/living/simple_animal/butterfly, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"rU" = ( -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"rV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"rX" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"sj" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 1; - height = 4; - id = "pod_4_away"; - name = "NT CentCom: Recovery field #4"; - width = 3 - }, -/turf/open/floor/engine, -/area/centcom/control) -"sk" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"sm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"sn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/obj/structure/railing/corner, -/turf/open/floor/plasteel, -/area/centcom/control) -"sp" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 1; - height = 4; - id = "pod_2_away"; - name = "NT CentCom: Recovery field #2"; - width = 3 - }, -/turf/open/floor/engine, -/area/centcom/control) -"sq" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/radio/headset/headset_cent, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"st" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/centcom/control) -"su" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/engine, -/area/centcom/control) -"sw" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"sy" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_y = 28; - use_power = 0 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"sA" = ( -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"sB" = ( -/obj/structure/mopbucket, -/obj/item/mop, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"sE" = ( -/obj/effect/light_emitter, -/turf/closed/indestructible/opsglass, -/area/centcom/circus) -"sF" = ( -/obj/effect/turf_decal/arrows/white, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"sM" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/railing/corner, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"sN" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 2; - height = 7; - id = "pod_away"; - name = "NT CentCom: Recovery field #1"; - width = 5 - }, -/turf/open/floor/engine, -/area/centcom/control) -"sQ" = ( -/obj/machinery/suit_storage_unit/mining, -/obj/machinery/light/directional/north, -/turf/open/indestructible/white, -/area/centcom/control) -"sT" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"sU" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/carpet/green, -/area/centcom/control) -"sV" = ( -/obj/structure/rospilovo/tree{ - pixel_x = -16; - pixel_y = 15 - }, -/obj/structure/flora/ausbushes/rospilovo/ywflowers{ - pixel_x = 11; - pixel_y = 6 - }, -/obj/structure/flora/ausbushes/ywflowers{ - pixel_x = 2; - pixel_y = -4 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"sW" = ( -/obj/lab_monitor/yohei{ - anchored = 1; - pixel_y = 32; - plane = -1 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"tb" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"tk" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/obj/structure/chair/office{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"tl" = ( -/obj/machinery/smartfridge, -/turf/closed/indestructible/wood, -/area/centcom/holding) -"tn" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"tp" = ( -/obj/structure/destructible/cult/forge{ - desc = "An engine used in powering the wizard's ship"; - name = "magma engine" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"tq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"tt" = ( -/obj/structure/window/reinforced{ - color = "#008000"; - dir = 1; - resistance_flags = 3 - }, -/turf/open/lava, -/area/wizard_station) -"ty" = ( -/obj/structure/chair/office{ - dir = 8 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"tJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"tP" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/wizard_station) -"tQ" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"tR" = ( -/obj/structure/closet, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/machinery/iv_drip, -/obj/item/roller, -/obj/item/storage/firstaid/regular, -/turf/open/floor/wood, -/area/centcom/holding) -"tV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"tW" = ( -/obj/machinery/light, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/centcom/control) -"ua" = ( -/obj/structure/closet/secure_closet/freezer/meat/open, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"ud" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"uf" = ( -/obj/structure/closet/secure_closet/freezer/fridge/open, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"ui" = ( -/obj/structure/closet/secure_closet/freezer/kitchen{ - locked = 0 - }, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"uj" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"uo" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"ur" = ( -/obj/structure/table/abductor, -/obj/item/paper/monitorkey{ - pixel_x = -5; - pixel_y = 1 - }, -/obj/item/multitool/tricorder{ - pixel_x = 11; - pixel_y = 6 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"ut" = ( -/obj/structure/chair/sofa/corp{ - dir = 1 - }, -/turf/open/floor/dz/green, -/area/centcom/control) -"uv" = ( -/turf/open/floor/light/colour_cycle/dancefloor_a{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"uw" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"uA" = ( -/obj/structure/sign/poster/random, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"uB" = ( -/obj/structure/closet/secure_closet/ert_sec, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"uC" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"uD" = ( -/obj/structure/flora/grass/jungle, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"uF" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"uP" = ( -/mob/living/simple_animal/pet/fox, -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"uQ" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"uS" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"vb" = ( -/obj/structure/table, -/obj/item/stack/package_wrap, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"ve" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"vn" = ( -/obj/machinery/light, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/centcom/control) -"vo" = ( -/obj/lab_monitor{ - pixel_y = 4; - plane = -1 - }, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"vp" = ( -/obj/structure/table, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"vu" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"vL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"vO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"vR" = ( -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/item/reagent_containers/food/drinks/shaker, -/obj/item/book/manual/wiki/barman_recipes, -/obj/structure/closet/crate, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"vY" = ( -/obj/structure/table/optable/abductor, -/turf/open/floor/plating/abductor, -/area/abductor_ship) -"wb" = ( -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"wf" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/obj/machinery/newscaster/security_unit/directional/north, -/turf/open/floor/plasteel, -/area/centcom/control) -"wh" = ( -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"wi" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"wj" = ( -/obj/effect/spawner/randomsnackvend, -/turf/open/indestructible/white, -/area/centcom/control) -"wl" = ( -/obj/structure/closet/chefcloset, -/turf/open/floor/plasteel/cafeteria, -/area/centcom/holding) -"wo" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"wr" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"wv" = ( -/obj/structure/table/reinforced, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/taperecorder, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"wx" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom" - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"wz" = ( -/obj/structure/table/abductor, -/obj/item/radio/intercom{ - freerange = 1 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"wA" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wC" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/red, -/obj/item/pen/red, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"wF" = ( -/obj/structure/table/wood/fancy/red, -/obj/item/construction/rcd/combat/admin, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"wI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wN" = ( -/obj/structure/rack, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/iron/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/machinery/light/directional/north, -/obj/item/stack/sheet/plastic/fifty, -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_y = 24; - req_access_txt = "150" - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"wO" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wQ" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wT" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"wU" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"wW" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/centcom/control) -"xd" = ( -/obj/machinery/autolathe/hacked{ - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"xe" = ( -/obj/machinery/telecomms/relay/preset/ruskie{ - use_power = 0 - }, -/turf/open/floor/circuit/green, -/area/ruin/powered/yohei_base) -"xk" = ( -/obj/machinery/door/airlock/centcom{ - req_access_txt = "220" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"xl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xq" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Security"; - req_access_txt = "101" - }, -/obj/machinery/door/poddoor/shutters{ - dir = 1; - id = "ck_ops"; - name = "spec ops shutters" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"xs" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom" - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"xt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"xu" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/plating, -/area/centcom/control) -"xB" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"xD" = ( -/obj/machinery/computer/camera_advanced{ - dir = 4 - }, -/turf/open/floor/wood, -/area/wizard_station) -"xN" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"xO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"xP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/caution/stand_clear, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"xX" = ( -/obj/structure/table/abductor, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"xZ" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"yc" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"yp" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"yr" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/brflowers, -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/centcom/control) -"yt" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"yu" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"yv" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/wizard_station) -"yx" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_y = 24; - req_access_txt = "150" - }, -/obj/machinery/light/directional/north, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"yy" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet/green, -/area/centcom/control) -"yz" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/machinery/iv_drip, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"yB" = ( -/obj/structure/closet/secure_closet/ert_med, -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - pixel_y = -32; - use_power = 0 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"yE" = ( -/obj/machinery/computer/med_data{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"yO" = ( -/obj/structure/curtain, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 12 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"yQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 6 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"yR" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/lighter, -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"yT" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_y = 24; - req_access_txt = "150" - }, -/turf/open/indestructible/white, -/area/centcom/control) -"yU" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"yX" = ( -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"za" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"zb" = ( -/obj/machinery/vending/boozeomat, -/turf/closed/indestructible{ - icon = 'icons/turf/walls/wood_wall.dmi'; - icon_state = "wood"; - smoothing_flags = 1 - }, -/area/centcom/holding) -"zl" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"zn" = ( -/obj/structure/table/wood/fancy, -/obj/item/camera/spooky, -/turf/open/floor/carpet, -/area/wizard_station) -"zq" = ( -/obj/machinery/smartfridge, -/turf/closed/indestructible{ - icon = 'icons/turf/walls/wood_wall.dmi'; - icon_state = "wood"; - smoothing_flags = 1 - }, -/area/centcom/holding) -"zu" = ( -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"zv" = ( -/obj/machinery/chem_dispenser/drinks/beer, -/turf/closed/indestructible/wood, -/area/centcom/holding) -"zz" = ( -/obj/structure/table/reinforced, -/obj/item/flashlight/seclite, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"zB" = ( -/obj/structure/table/wood/poker, -/obj/item/toy/cards/deck, -/turf/open/floor/carpet, -/area/wizard_station) -"zE" = ( -/obj/machinery/chem_dispenser/drinks, -/turf/closed/indestructible/wood, -/area/centcom/holding) -"zH" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/wizard_station) -"zJ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"zK" = ( -/obj/item/statuebust{ - pixel_y = 12 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/wood, -/area/wizard_station) -"zL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"zP" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Заблокировано."; - name = "External airlock" - }, -/area/centcom/control) -"zQ" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"zR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"zU" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"zV" = ( -/turf/closed/indestructible/syndicate, -/area/centcom/circus) -"zW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light/directional/east, -/turf/open/indestructible/white, -/area/centcom/control) -"zX" = ( -/obj/machinery/vending/magivend, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ab" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Af" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Ag" = ( -/turf/open/floor/plating/asteroid, -/area/centcom/outdoors) -"Ah" = ( -/obj/machinery/vending/snack, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ai" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Supply"; - req_access_txt = "106" - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"Aj" = ( -/obj/structure/bookcase/random/adult, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"Ak" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/pill_bottle/dice{ - icon_state = "magicdicebag" - }, -/turf/open/floor/carpet, -/area/wizard_station) -"Al" = ( -/obj/structure/filingcabinet/security, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Ap" = ( -/obj/structure/table/wood/fancy, -/obj/item/storage/photo_album, -/obj/machinery/light, -/turf/open/floor/carpet, -/area/wizard_station) -"Ar" = ( -/turf/open/space/basic, -/area/centcom/control) -"At" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Au" = ( -/obj/structure/table/abductor, -/obj/item/stock_parts/cell/hyper{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/stock_parts/cell/hyper{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/stock_parts/cell/hyper{ - pixel_x = 5; - pixel_y = 3 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Av" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Aw" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Ay" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"AA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"AE" = ( -/obj/structure/rack, -/obj/item/nullrod/claymore{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"AF" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/indestructible/syndicate, -/area/centcom/brief) -"AK" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"AN" = ( -/obj/effect/turf_decal/siding/wideplating/dark, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"AP" = ( -/obj/structure/table, -/turf/open/floor/carpet/green, -/area/centcom/control) -"AQ" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"AS" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"AT" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"AV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"AY" = ( -/obj/machinery/light/directional/south, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"AZ" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_away"; - json_key = "ferry"; - name = "NT CentCom: Ferry dock"; - width = 5 - }, -/turf/open/floor/engine, -/area/centcom/outdoors) -"Bb" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Study" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bh" = ( -/obj/structure/chair/e_chair, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Bj" = ( -/obj/machinery/door/airlock/external{ - name = "Ferry Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Bl" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Break Room" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bm" = ( -/obj/structure/chair/wood/wings, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bn" = ( -/obj/structure/table/wood, -/obj/item/stack/medical/bruise_pack, -/obj/item/stack/medical/ointment, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bo" = ( -/obj/structure/table/wood, -/obj/item/retractor, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bp" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ - dir = 8; - resistance_flags = 64 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Br" = ( -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/centcom/control) -"Bs" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/wizrobe/magusblue, -/obj/item/clothing/head/wizard/magus, -/obj/item/staff, -/obj/structure/mirror/magic{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Bu" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"Bw" = ( -/obj/structure/table/wood, -/obj/item/integrated_circuit_printer/upgraded/prog, -/obj/item/integrated_circuit_printer/upgraded/prog{ - pixel_y = 7 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"By" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"BB" = ( -/obj/structure/table/wood/fancy, -/obj/item/skub{ - pixel_y = 16 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"BD" = ( -/obj/machinery/door/airlock/external{ - name = "Ferry Airlock" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"BF" = ( -/obj/structure/filingcabinet/security, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"BG" = ( -/obj/machinery/door/airlock/vault{ - name = "Artifact storage" - }, -/obj/effect/mapping_helpers/airlock/cutaiwire, -/obj/effect/mapping_helpers/airlock/abandoned, -/obj/effect/mapping_helpers/airlock/locked{ - max_integrity = 1500; - req_access_txt = "150" - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"BI" = ( -/obj/structure/table/wood, -/obj/item/clothing/suit/wizrobe/magusred, -/obj/item/clothing/head/wizard/magus, -/obj/item/staff, -/turf/open/floor/engine/cult, -/area/wizard_station) -"BJ" = ( -/obj/item/food/meat/slab/human/mutant/lizard, -/turf/open/floor/grass, -/area/wizard_station) -"BK" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/grass, -/area/wizard_station) -"BL" = ( -/obj/effect/decal/remains/xeno/larva, -/turf/open/floor/grass, -/area/wizard_station) -"BN" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grass, -/area/wizard_station) -"BP" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 1 - }, -/turf/open/floor/plasteel/stairs/old{ - dir = 8 - }, -/area/centcom/control) -"BQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/obj/structure/railing/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"BY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"BZ" = ( -/obj/structure/destructible/cult/tome, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ca" = ( -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, -/obj/item/clothing/suit/wizrobe/red, -/obj/item/clothing/head/wizard/red, -/obj/item/staff, -/obj/item/clothing/shoes/sandal/magic, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Cb" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/arrows/white{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Cc" = ( -/turf/open/floor/grass, -/area/wizard_station) -"Cd" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/wrench, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Cf" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/engine, -/area/centcom/control) -"Cg" = ( -/obj/item/food/meat/slab/corgi, -/turf/open/floor/grass, -/area/wizard_station) -"Ch" = ( -/obj/structure/bookcase/random/reference, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ci" = ( -/obj/structure/destructible/cult/talisman{ - desc = "An altar dedicated to the Wizards' Federation" - }, -/obj/item/kitchen/knife/ritual, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Cl" = ( -/obj/item/clothing/shoes/sandal/marisa, -/obj/item/clothing/suit/wizrobe/marisa, -/obj/item/clothing/head/wizard/marisa, -/obj/item/staff/broom, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Cm" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"Co" = ( -/turf/open/space/basic, -/area/space) -"Cp" = ( -/obj/effect/decal/cleanable/blood/splatter, -/mob/living/simple_animal/hostile/netherworld{ - name = "Experiment 35b" - }, -/turf/open/floor/grass, -/area/wizard_station) -"Cq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Cr" = ( -/obj/effect/landmark/start/wizard, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Cv" = ( -/obj/structure/table/abductor, -/obj/item/spacepod_equipment/weaponry/laser, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Cy" = ( -/obj/structure/windoor_assembly{ - dir = 2 - }, -/obj/structure/cable, -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"Cz" = ( -/obj/structure/fluff/arc{ - pixel_x = 1; - pixel_y = 10 - }, -/turf/open/floor/dz/green, -/area/centcom/that_zone) -"CA" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom" - }, -/obj/machinery/door/poddoor/shutters{ - id = "ck_inlet"; - name = "arrival shutters" - }, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"CE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"CF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"CI" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/turf/open/floor/grass, -/area/centcom/control) -"CL" = ( -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"CS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"CT" = ( -/turf/closed/indestructible/fakedoor{ - desc = "Дверь, ведущая дальше в пучину небытия."; - name = "Internal airlock" - }, -/area/centcom/control) -"Db" = ( -/obj/machinery/light/small/directional/south, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Dd" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"De" = ( -/obj/effect/decal/remains/human, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/grass, -/area/wizard_station) -"Dg" = ( -/obj/structure/table/reinforced, -/obj/item/restraints/handcuffs/cable/zipties, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Di" = ( -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Dl" = ( -/obj/machinery/door/poddoor/shutters/indestructible{ - dir = 1; - id = "ck_tank" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"Dq" = ( -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/obj/structure/chair/stool, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Dr" = ( -/obj/machinery/computer/camera_advanced/base_construction/centcom{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/centcom/control) -"Ds" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Du" = ( -/obj/machinery/camera/motion/thunderdome/xray{ - alpha = 0; - c_tag = "Artists' Den"; - network = list("thunder"); - resistance_flags = 227; - view_range = 8 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"Dz" = ( -/obj/item/food/meat/slab/human/mutant/slime, -/turf/open/floor/grass, -/area/wizard_station) -"DB" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"DC" = ( -/obj/machinery/computer/secure_data, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 9 - }, -/obj/effect/turf_decal/trimline/red/corner, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"DG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"DH" = ( -/obj/structure/grille/broken, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"DI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"DJ" = ( -/obj/machinery/modular_computer/console/preset/command, -/obj/effect/turf_decal/trimline/red/line{ - dir = 5 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"DN" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"DO" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/grass, -/area/wizard_station) -"DP" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"DQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"DS" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"DT" = ( -/mob/living/simple_animal/bot/medbot/mysterious{ - desc = "If you don't accidentally blow yourself up from time to time you're not really a wizard anyway."; - faction = list("neutral","silicon","creature"); - name = "Nobody's Perfect" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"DU" = ( -/obj/machinery/light, -/turf/open/floor/engine/cult, -/area/wizard_station) -"DV" = ( -/obj/item/food/meat/slab/xeno, -/turf/open/floor/grass, -/area/wizard_station) -"DW" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/centcom/holding) -"Eb" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Observation Deck" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ec" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ee" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Storage" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Eg" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"Eh" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"Ek" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"Eq" = ( -/obj/item/clothing/suit/wizrobe/black, -/obj/item/clothing/head/wizard/black, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"Er" = ( -/obj/structure/table/reinforced, -/obj/item/folder/red{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/folder/blue{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/lighter, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"Es" = ( -/obj/effect/landmark/ctf, -/turf/open/space/basic, -/area/space) -"Ev" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"Ew" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/carpet/green, -/area/centcom/control) -"Ez" = ( -/obj/item/cardboard_cutout, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"EA" = ( -/obj/structure/table/wood, -/obj/item/dice/d20, -/obj/item/dice, -/turf/open/floor/carpet, -/area/wizard_station) -"EC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"ED" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"EF" = ( -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"EG" = ( -/turf/closed/indestructible/opsglass, -/area/centcom/control) -"EI" = ( -/obj/effect/turf_decal/box/corners{ - dir = 1 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"EK" = ( -/turf/open/floor/plasteel/stairs/old, -/area/centcom/control) -"EO" = ( -/obj/structure/urinal{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"EQ" = ( -/turf/open/floor/plasteel/white, -/area/wizard_station) -"ES" = ( -/obj/effect/turf_decal/box/corners{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"ET" = ( -/obj/structure/mirror/magic{ - pixel_y = 28 - }, -/obj/structure/sink{ - pixel_y = 20 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"EU" = ( -/obj/item/cautery/alien, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"EX" = ( -/obj/structure/table/abductor, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/spacepod_equipment/cargo/chair, -/obj/item/spacepod_equipment/cargo/chair, -/obj/item/spacepod_equipment/cargo/chair, -/obj/item/spacepod_equipment/cargo/chair, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"EZ" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Security"; - req_access_txt = "101" - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Fe" = ( -/obj/item/coin/antagtoken, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/wizard_station) -"Ff" = ( -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Fh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Fi" = ( -/obj/structure/chair/office{ - dir = 4 - }, -/obj/machinery/button/door/indestructible{ - id = "ck_outlet"; - name = "outlet control"; - pixel_x = 25; - pixel_y = 25; - req_access_txt = "101" - }, -/obj/machinery/button/door/indestructible{ - id = "ck_inlet"; - name = "inlet control"; - pixel_x = 25; - pixel_y = 39; - req_access_txt = "101" - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Fj" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor{ - base_state = "rightsecure"; - dir = 8; - icon_state = "rightsecure"; - name = "CentCom Customs"; - req_access_txt = "109" - }, -/obj/machinery/door/window/eastleft, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Fk" = ( -/obj/machinery/door/airlock/public/glass{ - req_access_txt = "220" - }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Fl" = ( -/obj/structure/table/abductor, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Fp" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Fq" = ( -/obj/structure/bed, -/obj/item/bedsheet/wiz, -/turf/open/floor/carpet, -/area/wizard_station) -"Fs" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"Ft" = ( -/obj/effect/turf_decal/bot, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Fu" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/zipties, -/obj/item/crowbar/red, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Fv" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Fw" = ( -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor/inverted{ - dir = 8; - id = "XCCQMLoad2" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/centcom/control) -"Fx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/machinery/computer/shuttle_flight/ferry/request{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Fz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/obj/structure/railing/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"FB" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = -12; - pixel_y = 2 - }, -/obj/machinery/button/door/indestructible{ - id = "lmrestroom"; - name = "Lock Control"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"FC" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plasteel/white, -/area/centcom/holding) -"FD" = ( -/obj/structure/table/wood, -/obj/item/instrument/piano_synth, -/obj/item/instrument/guitar, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"FH" = ( -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"FN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"FO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"FP" = ( -/obj/effect/mob_spawn/human/donate/artist{ - pixel_y = 6 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"FU" = ( -/obj/machinery/light/small/directional/north, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Ga" = ( -/obj/structure/table/wood, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 7; - pixel_y = 12 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Gf" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Gg" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Gl" = ( -/obj/structure/punching_bag, -/turf/open/floor/carpet, -/area/wizard_station) -"Go" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/silver_ids, -/obj/machinery/button/door/indestructible{ - id = "ck_ops"; - name = "ops control"; - pixel_x = -25; - req_access_txt = "101" - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Gp" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/corner{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/red/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Gr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Gv" = ( -/obj/item/scalpel{ - pixel_y = 12 - }, -/obj/item/circular_saw, -/obj/item/retractor{ - pixel_x = 4 - }, -/obj/item/hemostat{ - pixel_x = -4 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/mask/surgical, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"Gw" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien20" - }, -/area/abductor_ship) -"Gy" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien10" - }, -/area/abductor_ship) -"Gz" = ( -/obj/structure/cable, -/obj/structure/frame, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"GB" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "XCCQMLoad2"; - pixel_x = 6 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"GC" = ( -/turf/open/floor/plasteel, -/area/centcom/control) -"GE" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"GI" = ( -/turf/open/floor/carpet/black, -/area/centcom/holding) -"GK" = ( -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"GS" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Shuttle"; - req_access_txt = "106" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"GW" = ( -/obj/structure/table/wood, -/obj/item/food/chawanmushi, -/turf/open/floor/wood, -/area/centcom/holding) -"GZ" = ( -/obj/machinery/door/airlock/external{ - name = "Supply Shuttle"; - req_access_txt = "106" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/centcom/control) -"Hb" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 8; - height = 7; - id = "supply_away"; - json_key = "cargo"; - name = "NT CentCom: Cargo Shuttle Dock"; - width = 20 - }, -/turf/open/floor/engine, -/area/centcom/outdoors) -"Hc" = ( -/obj/structure/table/wood, -/obj/machinery/chem_dispenser/drinks/fullupgrade{ - dir = 8; - resistance_flags = 64 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Hl" = ( -/obj/structure/table/abductor, -/obj/item/blacksmith/tongs{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/assembly/signaler{ - pixel_x = 7 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Hm" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"Ho" = ( -/obj/structure/table/wood, -/turf/open/floor/wood, -/area/centcom/holding) -"Hp" = ( -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 2 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Hq" = ( -/obj/machinery/light/floor, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"Hs" = ( -/obj/structure/table/wood, -/obj/item/food/sashimi, -/turf/open/floor/wood, -/area/centcom/holding) -"Hw" = ( -/obj/machinery/door/airlock/centcom{ - name = "Briefing Room"; - req_access_txt = "101" - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Hx" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"HB" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"HN" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"HT" = ( -/obj/spacepod/prebuilt/yohei, -/obj/effect/landmark/yohei_beacon, -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"HV" = ( -/obj/effect/turf_decal/box/corners, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Ie" = ( -/obj/item/kirbyplants/random, -/obj/structure/sign/nanotrasen{ - pixel_x = 32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Im" = ( -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 6 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = -3 - }, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = -3; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/bottle/multiver{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 3; - pixel_y = -2 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/reagent_containers/syringe/epinephrine{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"In" = ( -/obj/item/defibrillator/loaded, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"Ir" = ( -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"ID" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"IL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"IN" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/sake, -/turf/open/floor/wood, -/area/centcom/holding) -"IO" = ( -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"IP" = ( -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = -2; - pixel_y = -1 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"IQ" = ( -/obj/structure/table/wood, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"IS" = ( -/obj/machinery/light/directional/north, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"IT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/four) -"IV" = ( -/obj/machinery/chem_master{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"IY" = ( -/obj/machinery/light/directional/west, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Jc" = ( -/obj/machinery/chem_mass_spec{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Jf" = ( -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/centcom/control) -"Jh" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Jl" = ( -/obj/effect/turf_decal/stripes/corner, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"Js" = ( -/obj/structure/table/reinforced, -/obj/item/crowbar/red, -/obj/item/tank/internals/emergency_oxygen/engi, -/obj/item/clothing/mask/gas, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Jt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/wizard_station) -"Ju" = ( -/obj/structure/table/wood/fancy/blue, -/obj/item/integrated_circuit_printer/debug{ - pixel_y = 6 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Jv" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Jw" = ( -/obj/machinery/button/door/indestructible{ - id = "ck_tank"; - pixel_x = 32; - pixel_y = 32; - req_access_txt = "101" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"JA" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"JC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"JD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"JF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"JP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/fans/tiny/invisible, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"JU" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"JW" = ( -/obj/structure/sign/warning/radiation{ - pixel_x = -32 - }, -/obj/structure/grille, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Kh" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien14" - }, -/area/abductor_ship) -"Kj" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"Kl" = ( -/mob/living/simple_animal/butterfly, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"Ko" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light/directional/east, -/obj/machinery/chem_dispenser/fullupgrade{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Kr" = ( -/obj/machinery/computer/arcade/battle{ - dir = 8; - resistance_flags = 64 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Kw" = ( -/obj/lab_monitor{ - pixel_y = 36; - plane = -1; - what_pic = "survive" - }, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"Ky" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/ruin/powered/yohei_base) -"KD" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"KI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"KL" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"KP" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 9 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"KR" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"KT" = ( -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"KV" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"KW" = ( -/obj/structure/closet/crate/bin, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Ld" = ( -/obj/machinery/door/airlock/wood{ - id_tag = "lmrestroom" - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Lh" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/syndicate, -/area/centcom/brief) -"Ln" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Lq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Lr" = ( -/obj/machinery/chem_dispenser/chem_synthesizer, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Ls" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Lv" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"Ly" = ( -/turf/open/floor/plasteel/stairs, -/area/centcom/holding) -"LB" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/wood, -/area/centcom/holding) -"LD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"LJ" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom" - }, -/obj/machinery/door/poddoor/shutters{ - id = "ck_outlet"; - name = "arrival shutters" - }, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"LL" = ( -/obj/machinery/sleeper{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"LO" = ( -/obj/machinery/light/floor/directional/east, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"LP" = ( -/obj/effect/landmark/start/new_player, -/turf/open/floor/plating, -/area/start) -"LQ" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"LS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"LX" = ( -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"LZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"Mc" = ( -/obj/machinery/door/airlock/centcom{ - name = "Orbital Drop Pod Loading"; - req_access_txt = "106" - }, -/turf/open/floor/plasteel/dark, -/area/centcom/control) -"Mh" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/turf/open/floor/light/colour_cycle/dancefloor_a{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Ml" = ( -/obj/structure/window/plasma/reinforced/spawner, -/obj/machinery/computer/arcade/orion_trail{ - dir = 8; - resistance_flags = 64 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Mo" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/turf/open/floor/light/colour_cycle/dancefloor_b{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Mr" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Mv" = ( -/obj/machinery/door/airlock/centcom{ - name = "Briefing Room"; - req_access_txt = "101" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"Mw" = ( -/turf/closed/indestructible/riveted/uranium, -/area/wizard_station) -"Mx" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"My" = ( -/obj/structure/chair/wood/wings{ - dir = 3 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"MD" = ( -/obj/structure/ladder/unbreakable{ - height = 2; - id = "ert1"; - name = "durable ladder" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"ME" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"MJ" = ( -/obj/machinery/light/directional/east, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"MN" = ( -/obj/structure/flora/ausbushes/lavendergrass, -/obj/structure/flora/ausbushes/sparsegrass, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/grassybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/pointybush, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/centcom/control) -"MO" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"MS" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"MU" = ( -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor/inverted{ - dir = 4; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"MV" = ( -/obj/structure/chair/wood/wings{ - dir = 3 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"MX" = ( -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor/inverted{ - dir = 4; - id = "XCCQMLoad2" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/centcom/control) -"MY" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/ert_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"MZ" = ( -/obj/item/soap/homemade, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"Na" = ( -/obj/structure/chair/sofa/corp/right{ - dir = 1 - }, -/turf/open/floor/dz/green, -/area/centcom/control) -"Nb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"Nk" = ( -/obj/structure/chair/sofa/corp/left{ - dir = 1 - }, -/turf/open/floor/dz/green, -/area/centcom/control) -"Np" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"Nq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/bluespace, -/area/centcom/supplypod/loading/ert) -"Nr" = ( -/obj/structure/chair/comfy/arm{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"Nx" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"Ny" = ( -/turf/open/floor/plasteel/stairs/old{ - dir = 1 - }, -/area/centcom/control) -"NA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"NF" = ( -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/structure/table, -/obj/item/construction/plumbing{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/item/construction/plumbing{ - pixel_x = 2 - }, -/obj/item/construction/plumbing{ - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"NK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"NM" = ( -/obj/docking_port/stationary{ - dwidth = 25; - height = 50; - id = "emergency_away"; - json_key = "emergency"; - name = "NT CentCom: Emergency Shuttle Dock"; - width = 50 - }, -/turf/open/floor/engine, -/area/centcom/outdoors) -"NO" = ( -/obj/structure/table/abductor, -/obj/item/paper_bin/carbon{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/edagger{ - pixel_y = 5 - }, -/obj/item/integrated_circuit_printer/upgraded{ - pixel_y = -9 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"NQ" = ( -/obj/structure/chair/comfy/arm{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"NS" = ( -/obj/machinery/door/airlock/vault{ - name = "Power generator room" - }, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"NT" = ( -/obj/structure/rack, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/obj/item/clothing/gloves/color/yellow, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"NU" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"NW" = ( -/obj/machinery/button{ - desc = "Открывает дверь при нажатии."; - name = "airlock cycle button"; - pixel_x = 24; - req_access_txt = "150" - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"NY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"NZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/chetverochka/pharma, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Ob" = ( -/obj/machinery/chem_heater{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Of" = ( -/obj/machinery/status_display/evac, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"Oi" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/control) -"Om" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"On" = ( -/obj/machinery/light/floor/directional/north, -/turf/closed/indestructible/syndicate, -/area/centcom/supplypod) -"Op" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/syndicate, -/area/centcom/supplypod) -"Ov" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Supply"; - req_access_txt = "106" - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/supplypod) -"Ox" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/item/paper/pamphlet/centcom/visitor_info, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"OD" = ( -/turf/closed/indestructible/syndicate, -/area/centcom/supplypod) -"OE" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"OF" = ( -/obj/structure/chair, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"OJ" = ( -/obj/structure/chair/office, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"ON" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"OQ" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line, -/turf/open/floor/plasteel, -/area/centcom/control) -"OS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"OV" = ( -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"OW" = ( -/obj/structure/rack, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/boozeomat, -/obj/item/vending_refill/boozeomat, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Pb" = ( -/obj/structure/rack, -/obj/item/storage/part_replacer/bluespace/tier2, -/obj/item/storage/part_replacer/bluespace/tier3, -/obj/item/storage/part_replacer/bluespace/tier4, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Pc" = ( -/obj/structure/table/wood/fancy, -/obj/item/candle/infinite{ - pixel_y = 6 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Pd" = ( -/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, -/turf/open/floor/plating, -/area/centcom/control) -"Pg" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"Ph" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"Pk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"Pl" = ( -/obj/structure/table/abductor, -/obj/item/modular_computer/tablet/preset/cheap, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"Pt" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/supplypod) -"Px" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"PA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/chetverochka, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"PF" = ( -/obj/item/kirbyplants/random, -/turf/open/indestructible/white, -/area/centcom/control) -"PH" = ( -/obj/item/storage/photo_album/syndicate, -/obj/structure/table/abductor, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"PM" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Supply"; - req_access_txt = "106" - }, -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "ck_outlet"; - name = "arrival shutters" - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"PN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"PO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"PR" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"PT" = ( -/obj/structure/table/abductor, -/obj/item/restraints/handcuffs/cable{ - pixel_y = 6 - }, -/obj/item/restraints/handcuffs/cable{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/restraints/handcuffs/cable, -/obj/item/restraints/handcuffs/cable{ - pixel_x = 4; - pixel_y = 11 - }, -/obj/item/restraints/handcuffs/cable{ - pixel_x = -5; - pixel_y = 8 - }, -/obj/item/restraints/handcuffs/cable{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/ruin/powered/yohei_base) -"PU" = ( -/obj/structure/chair/wood/wings{ - dir = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Qa" = ( -/obj/machinery/vending/clothing{ - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Qb" = ( -/obj/machinery/vending/engivend{ - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Qd" = ( -/obj/structure/chair/wood/wings{ - dir = 4 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Qg" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Qn" = ( -/turf/closed/indestructible/fakedoor{ - name = "Scarlet Dawn Access" - }, -/area/centcom/control) -"Qo" = ( -/obj/machinery/door/airlock{ - icon = 'icons/obj/doors/airlocks/station/uranium.dmi'; - name = "Engine Room" - }, -/obj/structure/barricade/wooden, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Qr" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/centcom/holding) -"Qw" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/centcom/holding) -"Qz" = ( -/obj/structure/closet/crate/bin, -/turf/open/floor/wood, -/area/centcom/holding) -"QA" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/centcom/holding) -"QC" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/centcom/holding) -"QD" = ( -/obj/structure/chair/office{ - dir = 1 - }, -/obj/effect/landmark/ert_spawn, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"QE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"QF" = ( -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"QG" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"QH" = ( -/obj/item/vending_refill/engivend{ - pixel_y = 6 - }, -/obj/structure/table, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"QJ" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/grass, -/area/centcom/holding) -"QK" = ( -/obj/effect/turf_decal/arrows/white{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/centcom/control) -"QO" = ( -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/turf/open/floor/grass, -/area/centcom/holding) -"QR" = ( -/obj/structure/flora/ausbushes/fernybush, -/obj/structure/flora/ausbushes/fullgrass, -/obj/structure/flora/ausbushes/ppflowers, -/obj/structure/flora/ausbushes/palebush, -/obj/structure/window/reinforced/fulltile, -/obj/machinery/light, -/turf/open/floor/grass, -/area/centcom/holding) -"QS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"QU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/centcom/control) -"QW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"QY" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"Rb" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Rq" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/centcom/holding) -"Rs" = ( -/obj/structure/rack, -/obj/item/nullrod/scythe/vibro{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Rt" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Ru" = ( -/obj/structure/window/paperframe{ - CanAtmosPass = 0 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Rv" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Rw" = ( -/obj/structure/bookcase/random, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Rx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"RC" = ( -/obj/item/kirbyplants/random, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"RF" = ( -/obj/structure/mineral_door/paperframe, -/turf/open/floor/wood, -/area/centcom/holding) -"RK" = ( -/obj/effect/spawner/randomarcade, -/turf/open/floor/wood, -/area/centcom/holding) -"RM" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"RN" = ( -/obj/effect/turf_decal/trimline/neutral/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"RO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"RP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"RR" = ( -/obj/structure/ladder/unbreakable{ - height = 1; - id = "ert1"; - name = "durable ladder" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"RX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"Sb" = ( -/obj/machinery/computer/arcade/battle, -/turf/open/floor/wood, -/area/centcom/holding) -"Sc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"Sf" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod) -"Sg" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Si" = ( -/turf/closed/indestructible/fakedoor{ - name = "Scarlet Dawn Access" - }, -/area/centcom/supplypod) -"Sl" = ( -/obj/machinery/light, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Sn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"Sp" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/open/floor/wood, -/area/centcom/holding) -"Sr" = ( -/obj/structure/table/wood, -/obj/item/gun/magic/wand{ - desc = "Used in emergencies to reignite magma engines."; - max_charges = 0; - name = "wand of emergency engine ignition" - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Ss" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Su" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Sx" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/centcom/control) -"Sz" = ( -/obj/structure/closet{ - anchored = 1; - desc = "A storage unit for plasmaman internals, courtesy of the Spider Clan."; - icon_state = "emergency"; - name = "Plasmaman emergency closet" - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/obj/item/tank/internals/plasmaman/belt/full, -/turf/open/floor/wood, -/area/centcom/holding) -"SB" = ( -/obj/structure/closet{ - anchored = 1; - name = "Plasmaman suits" - }, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/under/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/obj/item/clothing/head/helmet/space/plasmaman, -/turf/open/floor/wood, -/area/centcom/holding) -"SE" = ( -/obj/structure/chair/stool, -/turf/open/floor/wood, -/area/centcom/holding) -"SG" = ( -/obj/effect/turf_decal/siding/wideplating/dark/corner, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"SH" = ( -/obj/structure/table/wood/fancy/black, -/obj/item/gun/magic/wand/resurrection/debug, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"SJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"SL" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/engine, -/area/centcom/supplypod/pod_storage) -"SM" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"SO" = ( -/obj/structure/table_frame/wood, -/obj/item/stack/sheet/mineral/wood{ - amount = 2 - }, -/obj/machinery/power/rtg/abductor, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"SQ" = ( -/mob/living/simple_animal/bot/medbot{ - desc = "A little medical robot. You can make out the word \"sincerity\" on its chassis."; - name = "Hijikata"; - radio_key = null; - stationary_mode = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"ST" = ( -/obj/effect/landmark/holding_facility, -/turf/open/floor/wood, -/area/centcom/holding) -"SV" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"SZ" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Te" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/indestructible/white, -/area/centcom/control) -"Tp" = ( -/mob/living/simple_animal/bot/medbot{ - desc = "When engaged in combat, the vanquishing of thine enemy can be the warrior's only concern."; - name = "Hattori"; - radio_key = null; - stationary_mode = 1 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Tw" = ( -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Tx" = ( -/obj/structure/grille, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Ty" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"TA" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"TD" = ( -/obj/machinery/vending/medical{ - contraband = list(); - premium = list(/obj/item/reagent_containers/hypospray/medipen = 100, /obj/item/storage/belt/medical = 100, /obj/item/sensor_device = 100, /obj/item/storage/firstaid/advanced = 100, /obj/item/shears = 100); - products = list(/obj/item/stack/medical/gauze = 100, /obj/item/reagent_containers/syringe = 100, /obj/item/reagent_containers/dropper = 100, /obj/item/healthanalyzer = 100, /obj/item/stack/sticky_tape/surgical = 100, /obj/item/healthanalyzer/wound = 4, /obj/item/stack/medical/ointment = 100, /obj/item/stack/medical/suture = 100, /obj/item/stack/medical/bone_gel/four = 100); - resistance_flags = 64 - }, -/obj/machinery/light/directional/south, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"TE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"TF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"TG" = ( -/obj/machinery/vending/donksofttoyvendor{ - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"TI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"TK" = ( -/obj/structure/flora/ausbushes/rospilovo/pointybush{ - pixel_y = 12 - }, -/obj/effect/light_emitter, -/turf/open/floor/plating/grass{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors) -"TL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/brief) -"TM" = ( -/turf/open/floor/light/colour_cycle/dancefloor_b{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"TO" = ( -/turf/open/floor/engine, -/area/centcom/control) -"TP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"TQ" = ( -/obj/machinery/turntable, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"TR" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"TX" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/centcom/control) -"TY" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"Uc" = ( -/obj/docking_port/mobile/emergency/backup, -/turf/open/space/basic, -/area/space) -"Ud" = ( -/obj/machinery/door/airlock/centcom{ - name = "Briefing Room"; - req_access_txt = "101" - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Ue" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 5 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Uf" = ( -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/two) -"Ui" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Um" = ( -/obj/effect/spawner/randomcolavend, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Un" = ( -/turf/open/floor/carpet/green, -/area/centcom/control) -"Uq" = ( -/obj/structure/mineral_door/paperframe{ - name = "Arcade" - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Ur" = ( -/obj/structure/mineral_door/paperframe{ - name = "Dojo" - }, -/turf/open/floor/wood, -/area/centcom/holding) -"Uw" = ( -/obj/structure/window/plasma/reinforced/spawner, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Uz" = ( -/obj/structure/table/wood, -/obj/item/folder/red, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/restraints/handcuffs, -/obj/item/assembly/flash/handheld, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"UA" = ( -/obj/structure/table/abductor, -/obj/item/clothing/glasses/sunglasses, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"UB" = ( -/turf/open/floor/plasteel/checker, -/area/ruin/powered/yohei_base) -"UD" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/plasteel/checker, -/area/ruin/powered/yohei_base) -"UF" = ( -/obj/machinery/light/directional/north, -/turf/open/floor/carpet/green, -/area/centcom/control) -"UH" = ( -/obj/structure/rack, -/obj/item/nullrod/claymore/katana{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"UJ" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"UK" = ( -/obj/machinery/vending/games{ - resistance_flags = 64 - }, -/obj/machinery/light/floor, -/obj/machinery/light_switch{ - pixel_y = -32 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"UL" = ( -/obj/structure/table/wood, -/obj/item/phone{ - desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/mask/cigarette/cigar/cohiba{ - pixel_x = 6 - }, -/obj/item/clothing/mask/cigarette/cigar/havana{ - pixel_x = 2 - }, -/obj/item/clothing/mask/cigarette/cigar{ - pixel_x = 4.5 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"UN" = ( -/obj/structure/bookcase/random, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"UQ" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"UT" = ( -/obj/structure/chair/wood/wings{ - dir = 4 - }, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"UV" = ( -/obj/structure/grille/broken, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"UY" = ( -/obj/structure/table, -/obj/item/construction/plumbing/research{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/construction/plumbing/research{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/construction/plumbing/research{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Vb" = ( -/obj/machinery/vending/boozeomat/all_access{ - resistance_flags = 64 - }, -/turf/open/floor/wood{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Vc" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Vi" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Vo" = ( -/obj/structure/closet/secure_closet/ert_engi, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Vr" = ( -/obj/structure/window/plasma/reinforced/spawner, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light/directional/east, -/obj/machinery/chem_dispenser/fullupgrade{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Vt" = ( -/obj/structure/dresser, -/obj/item/storage/backpack/satchel, -/turf/open/floor/carpet, -/area/wizard_station) -"VJ" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"VP" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"VQ" = ( -/obj/structure/closet/secure_closet/ert_engi, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"VR" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"VT" = ( -/obj/structure/closet/secure_closet/ert_com, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"VX" = ( -/obj/structure/chair/wood/wings{ - dir = 8 - }, -/obj/machinery/defibrillator_mount/loaded{ - pixel_y = 28 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"VZ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"Wd" = ( -/obj/structure/table/abductor, -/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ - dir = 8; - resistance_flags = 64 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Wf" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/arrows/white{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Wh" = ( -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 8 - }, -/obj/machinery/light/directional/west, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Wk" = ( -/obj/structure/chair/stool/bar, -/obj/effect/turf_decal/siding/wideplating/dark{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ruin/powered/yohei_base) -"Wm" = ( -/turf/open/indestructible/white, -/area/centcom/control) -"Wo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"Wp" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 7; - pixel_y = 3 - }, -/turf/open/floor/carpet/green, -/area/centcom/control) -"Wq" = ( -/obj/structure/table/abductor, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 5; - pixel_y = 16 - }, -/obj/item/book/yohei_codex{ - pixel_x = -4 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Wr" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"Wu" = ( -/obj/structure/safe/floor, -/obj/item/uplink/nuclear, -/turf/open/floor/plasteel/checker, -/area/ruin/powered/yohei_base) -"Wy" = ( -/obj/structure/table/abductor, -/obj/machinery/chem_dispenser/drinks/fullupgrade{ - dir = 8; - resistance_flags = 64 - }, -/obj/machinery/light/directional/east, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"WA" = ( -/turf/closed/indestructible/abductor{ - icon_state = "alien16" - }, -/area/abductor_ship) -"WC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/wizard_station) -"WF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/lab_monitor{ - pixel_y = 36; - plane = -1 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"WG" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/centcom/brief) -"WI" = ( -/turf/open/floor/plasteel/white, -/area/centcom/control) -"WJ" = ( -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"WK" = ( -/obj/effect/mob_spawn/human/donate/yohei, -/turf/open/floor/plating/abductor, -/area/ruin/powered/yohei_base) -"WM" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/centcom/control) -"WN" = ( -/obj/structure/grille/broken, -/obj/machinery/camera/motion/thunderdome/xray{ - alpha = 0; - c_tag = "Artists' Den (Storage)"; - network = list("thunder"); - resistance_flags = 227; - view_range = 5 - }, -/obj/structure/cable, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"WO" = ( -/obj/structure/table/abductor, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"WP" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 7; - pixel_y = 5 - }, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -8; - pixel_y = 9 - }, -/obj/item/storage/bag/trash/bluespace{ - pixel_x = -2; - pixel_y = 2 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"WT" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"WV" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/nullrod/claymore/saber{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"WX" = ( -/obj/item/storage/briefcase{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/secure/briefcase, -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"WY" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"Xb" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Xc" = ( -/turf/open/floor/plasteel/grimy, -/area/centcom/brief) -"Xg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"Xh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Xk" = ( -/obj/structure/falsewall/wood, -/obj/structure/mirror, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Xl" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Xn" = ( -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"Xo" = ( -/obj/structure/table/wood, -/obj/item/paint/anycolor{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/paint/anycolor{ - pixel_x = -5 - }, -/obj/item/paint/anycolor{ - pixel_x = 7 - }, -/obj/item/paint/anycolor{ - pixel_x = 1; - pixel_y = -4 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Xu" = ( -/obj/structure/rack, -/obj/item/storage/lockbox/loyalty, -/obj/item/wrench, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Xx" = ( -/obj/machinery/vending/boozeomat/all_access{ - resistance_flags = 64 - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"Xy" = ( -/obj/machinery/light/directional/south, -/obj/effect/mob_spawn/human/donate/artist{ - pixel_y = 6 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"XA" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/centcom/control) -"XB" = ( -/turf/open/floor/engine, -/area/centcom/outdoors) -"XD" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/folder/white, -/obj/item/pen/blue, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"XF" = ( -/turf/open/space/transit, -/area/space) -"XG" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/centcom/control) -"XH" = ( -/obj/machinery/door/poddoor/ert, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/plasteel, -/area/centcom/brief) -"XI" = ( -/obj/effect/spawner/randomcolavend, -/turf/open/indestructible/white, -/area/centcom/control) -"XM" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"XN" = ( -/obj/machinery/conveyor/inverted{ - dir = 8; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"XP" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"XQ" = ( -/obj/structure/table/wood, -/obj/item/checkers_kit, -/obj/item/toy/crayon/spraycan/infinite{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/toy/crayon/spraycan/infinite{ - pixel_x = -6; - pixel_y = 4 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"XV" = ( -/obj/structure/dresser, -/obj/item/camera{ - pixel_y = 16 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"XW" = ( -/obj/machinery/vending/mechcomp{ - contraband = list(); - premium = list(/obj/item/multitool/mechcomp = 42); - products = list(/obj/item/mechcomp/button = 42, /obj/item/mechcomp/delay = 42, /obj/item/mechcomp/speaker = 42, /obj/item/mechcomp/textpad = 42, /obj/item/mechcomp/pressurepad = 10, /obj/item/mechcomp/grav_accelerator = 10, /obj/item/mechcomp/math = 42, /obj/item/mechcomp/list_packer = 12, /obj/item/mechcomp/list_extractor = 12, /obj/item/mechcomp/find_regex = 7, /obj/item/mechcomp/timer = 7, /obj/item/mechcomp/microphone = 7, /obj/structure/disposalconstruct/mechcomp = 10); - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"XX" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor{ - req_access_txt = "101" - }, -/obj/item/gun/energy/taser/carbine{ - pixel_y = 3 - }, -/obj/item/gun/energy/taser/carbine, -/obj/item/gun/energy/taser/carbine{ - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Yc" = ( -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/machinery/conveyor/inverted{ - dir = 8; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Yd" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"Yi" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/outdoors) -"Yj" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/control) -"Ym" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Yn" = ( -/obj/structure/chair/office, -/obj/effect/landmark/ert_spawn, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Yo" = ( -/turf/open/floor/dz/green, -/area/centcom/control) -"Yp" = ( -/obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"Yq" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"Yr" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/door/poddoor{ - id = "XCCQMLoaddoor"; - name = "Supply Dock Loading Door" - }, -/obj/structure/plasticflaps, -/obj/machinery/conveyor/inverted{ - dir = 8; - id = "XCCQMLoad2" - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Ys" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Yt" = ( -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"Yv" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/one) -"Yx" = ( -/obj/structure/table/wood, -/obj/item/bikehorn/golden{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/engine/cult, -/area/wizard_station) -"Yy" = ( -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/engine/airless, -/area/ruin/powered/yohei_base) -"YC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"YD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/nullrod/claymore/saber/red{ - damtype = "stamina"; - force = 30 - }, -/turf/open/floor/wood, -/area/centcom/holding) -"YF" = ( -/obj/machinery/vending/sustenance{ - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"YG" = ( -/obj/item/spacepod_key/yohei{ - pixel_x = -5; - pixel_y = 5 - }, -/obj/item/spacepod_key/yohei{ - pixel_x = -6; - pixel_y = -1 - }, -/obj/item/spacepod_key/yohei{ - pixel_x = -2; - pixel_y = -5 - }, -/obj/item/spacepod_key/yohei, -/obj/structure/table/abductor, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"YI" = ( -/obj/structure/closet/cardboard, -/obj/item/banhammer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/wizard_station) -"YK" = ( -/obj/item/clothing/under/costume/jabroni, -/obj/item/clothing/under/costume/geisha, -/obj/item/clothing/under/costume/kilt, -/obj/structure/closet, -/obj/item/clothing/under/costume/roman, -/turf/open/floor/wood, -/area/centcom/holding) -"YL" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"YM" = ( -/obj/machinery/door/airlock/centcom{ - name = "CentCom Supply"; - req_access_txt = "106" - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod) -"YN" = ( -/obj/machinery/vending/autodrobe/all_access{ - products = list(/obj/item/storage/backpack = 100, /obj/item/clothing/suit/chickensuit = 1, /obj/item/clothing/head/chicken = 1, /obj/item/clothing/under/rank/civilian/clown/blue = 1, /obj/item/clothing/under/rank/civilian/clown/green = 1, /obj/item/clothing/under/rank/civilian/clown/yellow = 1, /obj/item/clothing/under/rank/civilian/clown/orange = 1, /obj/item/clothing/under/rank/civilian/clown/purple = 1, /obj/item/clothing/under/costume/gladiator = 1, /obj/item/clothing/head/helmet/gladiator = 1, /obj/item/clothing/under/rank/captain/suit = 1, /obj/item/clothing/under/rank/captain/suit/skirt = 1, /obj/item/clothing/head/flatcap = 1, /obj/item/clothing/suit/toggle/labcoat/mad = 1, /obj/item/clothing/shoes/jackboots = 1, /obj/item/clothing/under/costume/schoolgirl = 1, /obj/item/clothing/under/costume/schoolgirl/red = 1, /obj/item/clothing/under/costume/schoolgirl/green = 1, /obj/item/clothing/under/costume/schoolgirl/orange = 1, /obj/item/clothing/head/kitty = 1, /obj/item/clothing/under/dress/skirt = 1, /obj/item/clothing/head/beret = 1, /obj/item/clothing/accessory/waistcoat = 1, /obj/item/clothing/under/suit/black = 1, /obj/item/clothing/head/that = 1, /obj/item/clothing/under/costume/kilt = 1, /obj/item/clothing/head/beret = 1, /obj/item/clothing/head/beret = 1, /obj/item/clothing/head/beret = 1, /obj/item/clothing/accessory/waistcoat = 1, /obj/item/clothing/glasses/monocle = 1, /obj/item/clothing/head/bowler = 1, /obj/item/cane = 1, /obj/item/clothing/under/suit/sl = 1, /obj/item/clothing/mask/fakemoustache = 1, /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 1, /obj/item/clothing/head/plaguedoctorhat = 1, /obj/item/clothing/mask/gas/plaguedoctor = 1, /obj/item/clothing/suit/toggle/owlwings = 1, /obj/item/clothing/under/costume/owl = 1, /obj/item/clothing/mask/gas/owl_mask = 1, /obj/item/clothing/suit/toggle/owlwings/griffinwings = 1, /obj/item/clothing/under/costume/griffin = 1, /obj/item/clothing/shoes/griffin = 1, /obj/item/clothing/head/griffin = 1, /obj/item/clothing/suit/apron = 1, /obj/item/clothing/under/suit/waiter = 1, /obj/item/clothing/suit/jacket/miljacket = 1, /obj/item/clothing/under/costume/pirate = 1, /obj/item/clothing/suit/pirate = 1, /obj/item/clothing/head/pirate = 1, /obj/item/clothing/head/bandana = 1, /obj/item/clothing/head/bandana = 1, /obj/item/clothing/under/costume/soviet = 1, /obj/item/clothing/head/ushanka = 1, /obj/item/clothing/suit/imperium_monk = 1, /obj/item/clothing/mask/gas/cyborg = 1, /obj/item/clothing/suit/chaplainsuit/holidaypriest = 1, /obj/item/clothing/suit/chaplainsuit/whiterobe = 1, /obj/item/clothing/head/wizard/marisa/fake = 1, /obj/item/clothing/suit/wizrobe/marisa/fake = 1, /obj/item/clothing/under/dress/sundress = 1, /obj/item/clothing/head/witchwig = 1, /obj/item/staff/broom = 1, /obj/item/clothing/suit/wizrobe/fake = 1, /obj/item/clothing/head/wizard/fake = 1, /obj/item/staff = 3, /obj/item/clothing/mask/gas/sexyclown = 1, /obj/item/clothing/under/rank/civilian/clown/sexy = 1, /obj/item/clothing/mask/gas/sexymime = 1, /obj/item/clothing/under/rank/civilian/mime/sexy = 1, /obj/item/clothing/under/rank/civilian/mime/skirt = 1, /obj/item/clothing/mask/animal/rat/bat = 1, /obj/item/clothing/mask/animal/rat/bee = 1, /obj/item/clothing/mask/animal/rat/bear = 1, /obj/item/clothing/mask/animal/rat/raven = 1, /obj/item/clothing/mask/animal/rat/jackal = 1, /obj/item/clothing/mask/animal/rat/fox = 1, /obj/item/clothing/mask/animal/frog = 1, /obj/item/clothing/mask/animal/rat/tribal = 1, /obj/item/clothing/mask/animal/rat = 1, /obj/item/clothing/suit/apron/overalls = 1, /obj/item/clothing/head/rabbitears = 1, /obj/item/clothing/head/sombrero = 1, /obj/item/clothing/head/sombrero/green = 1, /obj/item/clothing/suit/poncho = 1, /obj/item/clothing/suit/poncho/green = 1, /obj/item/clothing/suit/poncho/red = 1, /obj/item/clothing/under/costume/maid = 1, /obj/item/clothing/under/rank/civilian/janitor/maid = 1, /obj/item/clothing/glasses/cold = 1, /obj/item/clothing/glasses/heat = 1, /obj/item/clothing/suit/whitedress = 1, /obj/item/clothing/under/rank/civilian/clown/jester = 1, /obj/item/clothing/head/jester = 1, /obj/item/clothing/under/costume/villain = 1, /obj/item/clothing/shoes/singery = 1, /obj/item/clothing/under/costume/singer/yellow = 1, /obj/item/clothing/shoes/singerb = 1, /obj/item/clothing/under/costume/singer/blue = 1, /obj/item/clothing/suit/hooded/carp_costume = 1, /obj/item/clothing/suit/hooded/ian_costume = 1, /obj/item/clothing/suit/hooded/bee_costume = 1, /obj/item/clothing/suit/snowman = 1, /obj/item/clothing/head/snowman = 1, /obj/item/clothing/mask/joy = 1, /obj/item/clothing/head/cueball = 1, /obj/item/clothing/under/suit/white_on_white = 1, /obj/item/clothing/under/costume/sailor = 1, /obj/item/clothing/head/delinquent = 1, /obj/item/clothing/head/wig/random = 3, /obj/item/clothing/head/shrine_wig = 1, /obj/item/clothing/suit/shrine_maiden = 1, /obj/item/clothing/suit/changshan_red = 1, /obj/item/clothing/suit/changshan_blue = 1, /obj/item/clothing/suit/cheongsam_red = 1, /obj/item/clothing/suit/cheongsam_blue = 1, /obj/item/gohei = 1); - resistance_flags = 64 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"YP" = ( -/turf/open/floor/plasteel/monofloor/dark, -/area/centcom/supplypod/pod_storage) -"YQ" = ( -/turf/closed/indestructible/fakedoor{ - name = "Scarlet Dawn Access" - }, -/area/centcom/brief) -"YR" = ( -/obj/structure/table/reinforced, -/obj/item/storage/firstaid/regular, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"YS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/supplypod/pod_storage) -"YX" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"YY" = ( -/obj/machinery/door/airlock/public/glass{ - req_access_txt = "220" - }, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/powered/yohei_base) -"YZ" = ( -/obj/machinery/vending/chetverochka{ - resistance_flags = 64; - tiltable = 0 - }, -/obj/item/uplink{ - anchored = 1; - desc = "Какая-то дылда положила аплинк на самый верх вендомата. Теперь его не достать."; - layer = 4.01; - name = "аплинк синдиката"; - pixel_y = 19 - }, -/turf/open/floor/holofloor/carpet{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/circus) -"Zc" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/supplypod/loading/three) -"Zf" = ( -/turf/closed/indestructible/splashscreen, -/area/start) -"Zg" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/cola{ - pixel_x = 7; - pixel_y = 8 - }, -/obj/machinery/light/directional/north, -/turf/open/indestructible/white, -/area/centcom/control) -"Zm" = ( -/obj/effect/spawner/randomsnackvend, -/obj/effect/turf_decal/delivery, -/obj/effect/turf_decal/trimline/neutral/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/control) -"Zq" = ( -/obj/machinery/door/window/westleft, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"Zr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"Zt" = ( -/turf/open/floor/circuit/green, -/area/centcom/brief) -"Zu" = ( -/obj/machinery/light/directional/west, -/turf/open/floor/carpet/green, -/area/centcom/control) -"Zw" = ( -/obj/structure/fans/tiny/invisible, -/obj/effect/turf_decal/stripes/full, -/turf/open/floor/plasteel, -/area/centcom/control) -"Zz" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/green, -/area/centcom/control) -"ZA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/secure/briefcase, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"ZB" = ( -/obj/effect/light_emitter{ - set_cap = 1; - set_luminosity = 4 - }, -/turf/open/floor/plating{ - baseturfs = /turf/open/floor/plating/asteroid - }, -/area/centcom/outdoors/circus) -"ZC" = ( -/obj/structure/chair/comfy/brown{ - color = "#596479"; - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/centcom/control) -"ZH" = ( -/obj/effect/light_emitter{ - light_range = 16; - set_cap = 2.5; - set_luminosity = 16 - }, -/turf/open/floor/engine, -/area/centcom/outdoors) -"ZL" = ( -/obj/machinery/door/window/eastright, -/turf/open/floor/carpet/black, -/area/centcom/holding) -"ZN" = ( -/obj/structure/rack, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/window/brigdoor/southright{ - dir = 1; - req_access_txt = "101" - }, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/obj/item/rcd_ammo/large, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"ZO" = ( -/obj/vehicle/ridden/scooter/skateboard{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/wizard_station) -"ZP" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) -"ZR" = ( -/obj/structure/closet/secure_closet/ert_sec, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/centcom/brief) -"ZU" = ( -/turf/closed/indestructible/syndicate, -/area/centcom/control) -"ZV" = ( -/turf/open/floor/engine/cult, -/area/wizard_station) -"ZX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/centcom/brief) - -(1,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Zf -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -mS -mS -mS -mS -mS -mS -mS -mS -mS -Co -Co -Co -Co -"} -(2,1,1) = {" -Co -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -mS -mS -mS -YQ -mS -mS -mS -mS -mS -Co -Co -Co -Co -"} -(3,1,1) = {" -Co -as -aL -aL -aL -ne -aL -aL -aL -as -xO -Cm -FB -as -My -Pc -PU -Qr -eS -eS -Qd -Ru -RK -SE -eS -Ru -eS -lz -eS -eS -lz -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -WA -Kh -es -Gy -fY -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -WA -Kh -es -Gy -fY -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -Lh -UJ -hQ -WX -Xh -qF -sq -Uz -Lh -mS -Co -Co -Co -Co -"} -(4,1,1) = {" -Co -as -bv -bR -bR -bR -bR -bR -bR -as -yp -CL -CL -Ld -eS -eS -eS -Qw -eS -eS -Pc -Ru -RP -eS -eS -Ru -eS -eS -eS -eS -eS -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Gw -at -ds -ex -fF -gD -hq -Co -Co -Co -Co -Co -Co -Co -Co -Co -Gw -at -iJ -ex -fF -gD -hq -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -UL -Xc -Xc -Xc -Xc -Xc -yR -mS -mS -Co -Co -Co -Co -"} -(5,1,1) = {" -Co -as -bP -jM -lf -nh -ol -oN -sT -as -yu -CL -CL -as -eS -eS -eS -eS -eS -eS -Qg -Ru -RK -SE -eS -Ru -eS -eS -eS -eS -eS -Rq -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -qZ -aG -mY -eI -mY -gJ -rO -Co -Co -Co -Co -Co -Co -Co -Co -Co -qZ -hK -mY -iV -mY -gJ -rO -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -mS -Co -mS -mS -UN -Xc -ic -Wr -wU -Xc -Rw -mS -mS -Co -Co -Co -Co -"} -(6,1,1) = {" -Co -as -bR -bR -bR -bR -bR -bR -bR -as -yO -CL -FC -as -eS -eS -eS -Qz -eS -Qw -QR -as -MS -eS -eS -Uq -eS -eS -eS -eS -eS -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -rh -aX -mY -vY -mY -gN -hn -Co -Co -Co -Co -Co -Co -Co -Co -Co -rh -ii -mY -vY -mY -gN -hn -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -mS -mS -mS -mS -mS -UQ -Xc -Er -aP -wv -Xc -SV -mS -mS -Co -Co -Co -Co -"} -(7,1,1) = {" -Co -as -cf -jZ -lu -bR -oG -oP -bR -as -as -as -as -as -eS -eS -Qd -QA -eS -eS -Qd -Ru -Sb -SE -eS -Ru -eS -eS -eS -eS -eS -Rq -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -nm -bo -mY -fi -mY -gT -hB -Co -Co -Co -Co -Co -Co -Co -Co -Co -nm -iz -mY -iZ -mY -gT -hB -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -mS -mS -mS -mS -YQ -mS -mS -VP -pV -Xh -pV -Xh -pV -Al -mS -mS -Co -Co -Co -Co -"} -(8,1,1) = {" -Co -as -as -as -as -kj -as -as -tl -as -eS -lz -eS -kj -eS -eS -Pc -Qw -eS -eS -Pc -Ru -Sg -eS -eS -Ru -eS -eS -eS -eS -eS -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -aa -au -dE -fj -fK -hc -hC -Co -Co -Co -Co -Co -Co -Co -Co -Co -aa -au -dE -fj -fK -hc -hC -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -mS -mS -mS -PN -RO -Sn -Ud -Wf -Xh -ZA -zz -Yp -Xh -KW -mS -mS -Co -Co -Co -Co -"} -(9,1,1) = {" -Co -as -dC -eS -lz -eS -eS -eS -eS -tV -eS -as -as -as -MS -eS -Qg -Qw -eS -eS -Qg -Ru -Sp -SE -eS -Ru -eS -mz -eS -eS -mz -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -cd -dK -fq -fX -hj -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -cd -dK -fq -fX -hj -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -qs -qs -qs -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -mS -mS -Lh -PO -RR -SJ -mS -WF -OJ -YR -eu -Js -QD -em -mS -mS -Co -Co -Co -Co -"} -(10,1,1) = {" -Co -as -eL -eS -md -nw -as -pk -sA -ua -as -as -FD -Ln -eS -eS -eS -eS -eS -eS -Rq -as -eS -eS -eS -as -as -as -as -as -as -as -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -LP -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -Mw -Mw -Bm -BZ -Ch -BZ -DP -Mw -qs -qs -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZH -XB -XB -XB -XB -XB -ZH -ZU -ZU -Co -mS -mS -mS -QE -RX -TL -Ud -Wf -Yn -XD -Zt -rl -MY -ED -mS -mS -Co -Co -Co -Co -"} -(11,1,1) = {" -Co -as -eS -eS -mr -nE -as -qu -sA -uf -as -Dd -GI -Ln -eS -eS -GI -GI -GI -GI -GI -RF -eS -eS -eS -Ru -UH -WV -YK -YK -ao -Rs -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -xD -qg -Bb -ZV -ZV -ZV -ZV -ZV -Eb -ZV -ZV -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -mS -mS -mS -mS -YQ -mS -mS -WT -OJ -Ls -wC -Dg -QD -pc -mS -mS -Co -Co -Co -Co -"} -(12,1,1) = {" -Co -as -eS -eS -mr -ob -as -qy -sA -ui -as -Dq -GI -Ln -eS -eS -GI -GI -GI -GI -GI -as -MS -SQ -eS -Ur -eS -eS -eS -eS -eS -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -gA -yv -qg -Mw -ZV -ZV -ZV -ZV -ZV -Mw -ZV -ak -ZV -Mw -Mw -Mw -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -mS -mS -mS -mS -mS -mS -mS -VP -Xh -ty -ny -ty -Xh -Ty -mS -mS -Co -Co -Co -Co -"} -(13,1,1) = {" -Co -as -as -kj -as -as -as -qD -sA -uj -as -DB -GI -Lq -eS -eS -GI -GI -GI -GI -GI -RF -eS -eS -eS -Ru -UT -Qd -eS -Qd -Qd -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -qg -qg -qg -qg -Mw -Bm -BZ -ZV -BZ -DP -Mw -ZV -ZV -ZV -Mw -Eq -EU -YI -Mw -Mw -qs -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -mS -Lh -Xb -HB -pI -RX -pI -nY -qS -Lh -mS -Co -Co -Co -Co -"} -(14,1,1) = {" -Co -as -fh -eS -lz -eS -as -qY -sA -uC -as -as -GI -Ly -eS -eS -eS -eS -eS -eS -Rq -as -Ss -ST -ST -Ru -Vc -Xl -Zq -Xl -Vi -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -fl -qj -qg -qg -zH -Mw -Mw -qs -qs -qs -Mw -Mw -Ec -ak -ZV -Ee -Ev -Ev -tP -Qo -ZV -ZV -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -CE -CE -CE -Om -CE -QG -ZU -mS -mS -mS -AF -XH -XH -XH -AF -mS -mS -mS -Co -Co -Co -Co -"} -(15,1,1) = {" -Co -as -fI -eS -eS -eS -as -rr -sA -vb -as -as -as -as -MS -eS -Qd -Qw -eS -eS -Qd -Ru -eS -ST -ST -Ru -VJ -GI -GI -GI -qP -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -Mw -Mw -gA -qg -qg -qg -zK -Mw -Bn -ZV -ZV -ZV -DT -Mw -ZV -ZV -ZV -Mw -Ez -Fe -ZO -Mw -Mw -Qo -Mw -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -Dl -Yj -Yj -Yj -Yj -Yj -QS -ZU -mS -Lh -Vo -Jl -Zr -Zr -Zr -xN -jo -Lh -mS -Co -Co -Co -Co -"} -(16,1,1) = {" -Co -as -fV -eS -eS -eS -as -rU -sA -vp -zb -lz -GW -LB -eS -eS -Pc -QC -eS -eS -Pc -Ru -Sz -ST -ST -Ru -VJ -GI -GI -GI -qP -Tp -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -co -en -Mw -Mw -Mw -rC -Mw -Mw -Mw -Bo -ZV -ZV -ZV -DU -Mw -ZV -ak -ZV -Mw -Mw -Mw -Mw -Mw -ZV -ZV -tp -tt -Mw -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -Dl -Yj -Yj -bx -Yj -Yj -QS -ZU -mS -mS -VQ -WG -XX -zu -ht -IL -yB -mS -mS -Co -Co -Co -Co -"} -(17,1,1) = {" -Co -as -gZ -eS -eS -eS -as -rX -sA -sA -zq -eS -Ho -LB -eS -eS -Qg -Qw -eS -eS -Qg -Ru -SB -ST -ST -Ru -VJ -GI -GI -GI -qP -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -qs -ZV -ZV -ZV -qs -ZV -ZV -ZV -yU -zX -Mw -ZV -ZV -ZV -ZV -ZV -qs -ZV -ZV -ZV -Mw -EA -AQ -Vt -Mw -qf -ZV -ZV -tt -fE -dN -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qx -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -Dl -Jw -Yj -Yj -Yj -Yj -QS -ZU -mS -mS -VT -WG -gS -zu -ZN -IL -uB -mS -mS -Co -Co -Co -Co -"} -(18,1,1) = {" -Co -as -is -eS -eS -eS -as -sw -sA -sA -zv -eS -Hs -LB -eS -eS -eS -Qz -eS -QO -QR -as -MS -ST -ST -Ru -VR -Ym -ZL -Ym -qL -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -WA -Kh -es -Gy -fY -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -WA -Kh -es -Gy -fY -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -qs -bX -ZV -ZV -eJ -ZV -ZV -ZV -ZV -ZV -Bl -ZV -ZV -Ci -Cr -ZV -Eb -ZV -ak -ZV -cu -ak -Fq -ak -qs -Sr -ZV -ZV -tt -fE -dN -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -DG -DG -DG -Ek -DG -QU -ZU -mS -Lh -Xu -Yq -ZX -ZX -ZX -ZP -ZR -Lh -mS -Co -Co -Co -Co -"} -(19,1,1) = {" -Co -as -iW -eS -eS -eS -as -sy -sA -vR -zE -eS -Ho -LB -eS -eS -eS -eS -eS -eS -Qd -Ru -eS -eS -eS -Ru -VX -Qg -eS -Qg -Qg -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -Gw -at -dX -ex -fF -gD -hq -Co -Co -Co -Co -Co -Co -Co -Co -Co -Gw -at -iK -ex -fF -gD -hq -Co -Co -Co -Co -Co -Co -Co -Co -Co -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -jj -Co -XF -XF -XF -XF -XF -XF -XF -XF -qs -ZV -ZV -ZV -qs -ZV -ZV -ZV -zl -Ah -Mw -ZV -ZV -ZV -ZV -ZV -qs -ZV -ZV -ZV -Mw -Gl -Jt -kk -Mw -qf -ZV -ZV -tt -fE -dN -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -mS -mS -mS -gM -IP -Fu -zU -bc -mS -mS -mS -OD -Co -Co -Co -"} -(20,1,1) = {" -Co -as -jx -kB -eS -eS -kj -sA -sA -sA -kj -eS -IN -LB -eS -eS -eS -Qw -eS -eS -Pc -Ru -eS -eS -eS -Ur -eS -eS -eS -eS -eS -eS -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -qZ -cO -mY -fA -mY -gJ -rO -Co -Co -Co -Co -Co -Co -Co -Co -Co -qZ -iA -mY -ji -mY -gJ -rO -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -el -ey -Mw -Mw -Mw -rL -Mw -Mw -Mw -Bs -ZV -ZV -ZV -DU -Mw -ZV -ak -ZV -Mw -Mw -Mw -Mw -Mw -Yx -ZV -tp -tt -Mw -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -OD -OD -OD -OD -OD -mS -mS -mS -AF -mS -mS -mS -AF -mS -mS -OD -OD -Co -Co -Co -"} -(21,1,1) = {" -Co -as -jH -eS -mz -oc -as -sB -tQ -wl -as -DW -as -as -MV -Pc -PU -QJ -eS -eS -Qg -Ru -eS -eS -eS -Ru -UH -YD -tR -nB -pW -AE -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -rh -di -mY -vY -mY -gN -hn -Co -Co -Co -Co -Co -Co -Co -Co -Co -rh -iF -mY -vY -mY -gN -hn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -Mw -Mw -ak -ql -ak -zn -Ak -Mw -BI -Ca -Cl -ZV -ZV -Mw -ZV -ZV -ZV -Mw -EO -MZ -Aj -Mw -Mw -qs -Mw -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -OD -OD -OS -OS -OS -OS -OS -XM -OD -qR -qR -qR -qR -qR -Zc -OD -OD -Co -Co -Co -"} -(22,1,1) = {" -Co -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -as -Co -Co -Co -Co -Co -Co -Co -Co -Co -nm -dj -mY -fD -mY -gT -hB -Co -Co -Co -Co -Co -Co -Co -Co -Co -nm -iH -mY -jp -mY -gT -hB -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -ot -qp -tn -ak -Ap -Mw -Mw -qs -qs -qs -Mw -Mw -Ec -ak -ZV -dL -EQ -EQ -VZ -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -OD -OD -OV -OV -OV -OV -Pg -XP -OD -Yd -Yt -Yd -Yt -Yd -Hm -OD -OD -Co -Co -Co -"} -(23,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aa -au -dE -fj -fK -hc -hC -Co -Co -Co -Co -Co -Co -Co -Co -Co -aa -au -dE -fj -fK -hc -hC -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -qq -ak -ql -ak -qs -BJ -BN -Cp -De -BN -qs -ZV -ZV -ZV -Mw -ET -WC -BB -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -AZ -XB -XB -XB -ZU -WY -LO -WY -OD -Pg -OV -OV -OV -Pg -XP -OD -Yd -Yt -Yd -Yt -Yd -Hm -OD -OD -Co -Co -Co -"} -(24,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -cd -dK -fq -fX -hj -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -cd -dK -fq -fX -hj -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -ot -zB -tn -qs -BK -Cc -BK -Dz -BK -qs -ZV -ak -ZV -Mw -Mw -Mw -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -Co -Co -Co -ZU -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -XB -XB -ZU -Bj -ZU -XB -XB -WY -JC -LS -Nb -OD -Pg -Pg -Pg -Pg -Pg -XP -OD -Yd -Yt -Yd -Yt -Yd -Hm -OD -OD -Co -Co -Co -"} -(25,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -qq -ak -qs -BL -Cg -BN -Cc -BN -qs -ZV -ZV -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -EG -EG -EG -ZU -EG -EG -EG -ZU -ZU -ZU -ZU -ZU -ZU -ZU -XB -ZH -ZU -Br -ZU -ZH -XB -Hq -JD -LX -Np -On -OV -OV -OV -OV -Pg -XP -OD -Yd -Yd -Yd -Yd -Yd -Hm -OD -OD -Co -Co -Co -"} -(26,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -Mw -Mw -BN -Cc -BK -DO -DV -Mw -qs -qs -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Pd -ZU -BD -ZU -Pd -ZU -Hq -JD -LX -Np -On -Ph -Ph -Ph -Ph -Ph -Yv -OD -YL -YL -YL -YL -YL -ko -OD -OD -OD -OD -Co -"} -(27,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Mw -Mw -Mw -Mw -Mw -Mw -Mw -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qw -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -ZU -ZU -Qn -ZU -WY -xu -xu -BP -xu -xu -Fx -WY -JF -LZ -Nq -OD -OD -OD -OD -OD -OD -YM -OD -YM -OD -OD -OD -OD -OD -OD -OD -Op -OD -Co -"} -(28,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -qn -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZH -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -vo -jP -FH -wA -Pd -xB -yQ -BQ -CS -EC -Fz -ZU -ZU -Mc -ZU -Op -Pk -QW -Sc -Pk -OD -YC -dH -YC -YC -YC -YC -By -SL -SL -SL -OD -OD -Co -"} -(29,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -Cf -TO -sj -TO -pA -TO -fa -TO -ZU -ZU -ZU -WY -za -FH -FH -xq -xP -zJ -Cb -zJ -zJ -FN -Hw -JU -Yj -Nx -Ov -Pt -Pt -Pt -Pt -Ov -YP -YP -YP -YP -YP -YP -kr -SL -SL -SL -OD -OD -Co -"} -(30,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -uo -qI -rk -Cq -fL -sm -fL -fL -fL -sm -fL -tq -TE -TE -TE -vu -FH -FH -xq -xZ -zL -zL -zL -zL -FO -Hw -JU -Yj -NA -Ov -Pt -Pt -Pt -Pt -Ov -YP -YP -YP -YP -YP -YP -kr -SL -SL -SL -OD -OD -Co -"} -(31,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ry -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -wI -Pd -yc -zQ -Cd -Ds -EF -Gf -ZU -Kw -Mv -ZU -Op -Px -QY -Sf -Px -OD -YS -Bu -lj -lj -lj -lj -Wo -SL -SL -SL -OD -OD -OD -"} -(32,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -Zw -ry -FH -FH -FH -FH -FH -sF -FH -FH -FH -FH -FH -FH -QK -wO -WY -Pd -Pd -ZU -ZU -EZ -ZU -ZU -KI -Mx -NK -OD -OD -OD -OD -OD -OD -OD -OD -OD -YM -OD -YM -OD -OD -OD -OD -Op -OD -OD -"} -(33,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ry -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -wP -Pd -CI -CI -ZU -DC -Ff -Go -ZU -Lv -MD -NU -ZU -OD -OD -OD -TP -TP -TP -TP -TP -aw -OD -IT -IT -IT -IT -IT -im -OD -OD -"} -(34,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -NM -Xg -yX -Zw -cs -TF -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -WJ -TF -PR -FH -wP -Pd -CI -yr -ZU -DJ -Fi -Gp -ZU -LD -ME -NY -ZU -OD -OD -OD -TR -Uf -TR -TR -TR -jT -OD -Hx -Hx -Hx -GK -GK -AA -OD -OD -"} -(35,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ni -WY -pX -Jf -Jf -Jf -Jf -Jf -Jf -Jf -tW -ZU -vL -FH -wQ -Pd -Pd -Pd -WY -ZU -Fj -Pd -ZU -ZU -ZU -ZU -ZU -ZU -ZU -OD -TR -Uf -TR -Uf -TR -jT -OD -GK -GK -Hx -GK -GK -AA -OD -OD -"} -(36,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ax -ax -aI -aI -aI -aI -aI -aI -fU -aI -aI -aI -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -ax -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -Zw -BY -oW -Yo -Yo -Yo -Yo -Yo -Yo -Yo -Yo -Na -Pd -vO -FH -Su -TE -TE -Aw -ZU -DN -Mr -Mr -HN -ZU -DN -NZ -Ox -PA -Rt -OD -TR -Uf -TR -Uf -TR -jT -OD -GK -GK -Hx -GK -GK -AA -OD -OD -"} -(37,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -ax -ax -ax -ax -ax -ax -aI -aI -cb -aI -bW -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -BY -oW -Yo -Yo -Yo -Yo -Cz -Yo -Yo -Yo -ut -Pd -wb -sF -FH -FH -sF -AK -CA -DQ -FH -sF -AK -LJ -DQ -FH -FH -QK -FH -Si -TR -TR -TR -Uf -TR -jT -OD -Hx -Hx -Hx -Hx -Hx -AA -OD -OD -"} -(38,1,1) = {" -Co -Co -Co -Co -Co -ax -ax -ax -ax -ax -aI -aI -aI -aI -aI -aI -bi -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -Zw -BY -oW -Yo -Yo -Yo -Yo -Yo -Yo -Yo -Yo -Nk -Pd -ky -FH -wT -TF -TF -AS -ZU -DS -Fp -Gr -Ie -ZU -cs -WJ -PR -FH -Rv -OD -TY -TY -TY -TY -TY -pb -OD -eh -eh -eh -eh -eh -qU -OD -OD -"} -(39,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -bz -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -if -if -if -if -if -if -if -if -if -if -if -if -if -if -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ni -WY -qB -st -st -st -st -st -st -st -vn -ZU -wf -FH -Sx -Pd -Pd -Pd -WY -ZU -ZU -ZU -ZU -ZU -ZU -Of -OE -FH -wO -Op -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -OD -"} -(40,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -Zw -rI -TE -Mr -Mr -Mr -Mr -Mr -Mr -Mr -Mr -Mr -TE -vu -FH -Sx -Pd -CI -CI -ZU -Eg -Fs -Gv -Im -ZU -CI -Pd -OF -FH -wO -WM -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -OD -OD -OD -OD -OD -"} -(41,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -bw -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -az -az -az -az -az -az -az -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ry -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -Sx -Pd -yr -CI -ZU -WI -WI -WI -In -ZU -yr -Pd -OF -FH -Su -Mr -Of -Ui -YX -YX -ZU -Ny -Ny -WI -WI -ZU -Co -Co -Co -Co -Co -"} -(42,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -Zw -ry -FH -FH -FH -FH -FH -sF -FH -FH -FH -FH -FH -FH -wo -Sx -ZU -Pd -Pd -ZU -Eh -WI -WI -Ir -ZU -MN -Pd -OF -sF -FH -FH -wx -sF -FH -FH -wx -Ny -Ny -WI -oH -ZU -Co -Co -Co -Co -Co -"} -(43,1,1) = {" -Co -Co -Co -Co -ax -ax -aI -aV -aI -aI -aI -bH -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -bw -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Xg -yX -rm -ry -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -FH -Sx -Pd -yz -oY -mo -WI -WI -WI -IO -WY -ZU -ZU -yt -FH -wT -Sl -Of -Um -Zm -WM -ZU -Ny -Ny -WI -NW -ZU -Co -Co -Co -Co -Co -"} -(44,1,1) = {" -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -Yi -qQ -ro -rV -Ys -sn -Ys -Ys -Ys -sM -Ys -tJ -TF -TF -TF -PR -FH -Sx -xs -WI -WI -WI -WI -WI -WI -WI -LL -ZU -Oi -wb -FH -wO -WM -ZU -ZU -ZU -ZU -ZU -ZU -ZU -pZ -ZU -ZU -Co -Co -Co -Co -Co -"} -(45,1,1) = {" -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -bw -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -cn -cn -cn -cn -cn -cn -cn -az -aj -Co -Co -Co -if -kn -kn -kn -kn -if -if -if -if -if -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -Cf -TO -sp -TO -su -TO -sN -TO -ZU -ZU -ZU -WY -vO -FH -Sx -Pd -WI -WI -WI -WI -XA -WI -WI -LL -ZU -WM -ON -FH -Rx -WY -ZU -Un -Zu -EK -EK -EK -mO -oH -ZU -Co -Co -Co -Co -Co -Co -"} -(46,1,1) = {" -Co -Co -Co -Co -ax -aI -aI -aI -aI -ba -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -cn -cn -cn -az -aj -Co -Co -Co -if -kn -kn -kn -kn -if -nN -nN -nN -if -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZH -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -vo -wi -FH -wW -ZU -yE -AT -CF -WY -ZU -ZU -ZU -ZU -ZU -ZU -ZU -PM -ZU -ZU -ZU -Un -Un -EK -EK -EK -WI -WI -ZU -Co -Co -Co -Co -Co -Co -"} -(47,1,1) = {" -Co -Co -Co -ax -ax -aI -aO -aI -aI -aI -bz -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -aA -ck -ck -ck -cn -cn -eA -eN -az -aj -Co -Co -Co -if -kn -kn -kn -kn -if -nN -nN -nN -if -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -ZU -Pd -wx -Pd -ZU -ZU -ZU -ZU -ZU -XG -XG -Jh -XG -XG -ZU -OQ -FH -RC -ZU -ZU -Un -Zz -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -"} -(48,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -cn -cn -cn -az -aj -Co -Co -Co -if -kn -kn -kn -kn -if -nN -nN -nN -if -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -TO -TO -TO -ZU -TO -TO -TO -ZU -ZU -ZU -ZU -gg -FH -xl -xt -om -om -om -ZU -Ft -Ft -Ft -Ft -Ft -Pd -vu -FH -RM -ZU -ZU -Un -Un -Un -Un -Un -AP -AP -ZU -Co -Co -Co -Co -Co -Co -"} -(49,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -cn -cn -cn -cn -cn -cn -cn -az -aj -Co -Co -Co -if -kn -kn -kn -kn -if -if -if -if -if -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -EG -EG -EG -ZU -EG -EG -EG -ZU -ZU -ZU -Qn -FH -FH -FH -FH -FH -FH -FH -Ai -FH -FH -FH -FH -FH -Ai -FH -FH -wO -Qn -ZU -Un -Un -Un -Un -Un -ks -Dr -ZU -Co -Co -Co -Co -Co -Co -"} -(50,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -Co -Co -Co -ZU -Co -Co -Co -ZU -ZU -ZU -ZU -kK -FH -xn -TI -TI -AV -TI -ZU -Fv -GB -WJ -WJ -MO -Pd -WJ -WJ -RN -ZU -ZU -Un -Un -ZU -ZU -UF -AP -AP -ZU -Co -Co -Co -Co -Co -Co -"} -(51,1,1) = {" -Co -Co -ax -ax -aI -aI -aI -aI -aI -bi -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -Qn -ZU -WY -ZU -ZU -ZU -ZU -XN -GC -Jv -GC -je -ZU -WM -GC -WM -ZU -ZU -Un -TX -ZU -Zz -Un -yy -Dr -ZU -Co -Co -Co -Co -Co -Co -"} -(52,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ba -bO -aI -aI -aI -gH -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -ck -ck -ck -cn -ck -ck -ck -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -XB -XB -XB -XB -ZH -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Yc -GS -Pd -GS -MU -ZU -ZU -ZU -ZU -ZU -ZU -UF -Wp -ZU -AP -Un -AP -AP -ZU -Co -Co -Co -Co -Co -Co -"} -(53,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bV -aI -aI -bW -aI -aI -aI -bO -bO -bO -cF -gU -cF -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -az -az -az -az -az -az -az -az -az -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Yr -GC -Pd -GC -jh -ZU -TO -TO -TO -ZU -ZU -Un -ZC -ZU -sU -Un -lI -Dr -ZU -Co -Co -Co -Co -Co -Co -"} -(54,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cF -ec -cF -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -bV -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj -Co -Co -Co -if -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -kn -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Fw -GZ -Pd -GZ -MX -ZU -ZU -ZU -ZU -ZU -ZU -Un -Un -ZU -ZU -UF -AP -AP -ZU -Co -Co -Co -Co -Co -Co -"} -(55,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -bK -aI -aI -aI -aI -aI -bO -bO -bO -bO -bO -cF -gU -cF -bO -bO -bO -bO -fU -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -if -if -if -if -if -if -if -if -if -if -if -if -if -if -if -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZH -XB -XB -XB -XB -XB -Hb -XB -XB -XB -XB -XB -XB -ZH -ZU -ZU -Un -Un -Un -Un -Un -my -Dr -ZU -Co -Co -Co -Co -Co -Co -"} -(56,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ba -aI -aI -bO -bO -cp -cp -cp -cp -cp -gV -cp -cp -cp -cp -kW -bO -aI -bi -aI -aV -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Un -Un -Un -Un -Un -AP -AP -ZU -Co -Co -Co -Co -Co -Co -"} -(57,1,1) = {" -Co -ax -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aU -aI -aI -bO -cp -cJ -da -eQ -fW -cS -cS -gY -hZ -jF -cp -cp -bO -aI -lX -bW -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Un -Zz -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -"} -(58,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ca -ch -cF -cP -cS -cS -gb -gb -cS -eR -ih -jL -kp -cp -bO -aI -aV -aI -mj -mw -aI -nJ -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Un -Un -EK -EK -EK -WI -WI -ZU -Co -Co -Co -Co -Co -Co -"} -(59,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cF -cS -dn -eR -gi -gr -cS -eR -ik -jO -kz -cp -bO -aI -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Un -Ew -EK -EK -EK -NW -WI -ZU -Co -Co -Co -Co -Co -Co -"} -(60,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cF -cS -cS -eR -gl -gs -cS -eR -ip -jO -kN -cp -lm -lG -bO -cp -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bO -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -pZ -ZU -ZU -Co -Co -Co -Co -Co -"} -(61,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cF -cY -cS -fe -gb -gb -cS -cS -iw -jV -kP -cp -lr -bO -bO -cH -mk -ms -mH -oe -oA -oA -oA -oe -oZ -cH -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -XB -ZU -ZU -Co -Co -Co -ZU -Ny -Ny -WI -mO -ZU -Co -Co -Co -Co -Co -"} -(62,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -cp -dx -cS -cS -cS -cS -cS -cS -cS -cp -cp -cp -cF -cp -cH -ms -mH -nr -ms -ms -ms -ms -ms -pd -oZ -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZH -XB -XB -XB -XB -XB -ZH -XB -XB -XB -XB -XB -XB -ZH -ZU -ZU -Co -Co -Co -ZU -oT -Ny -WI -oH -ZU -Co -Co -Co -Co -Co -"} -(63,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -bC -aI -aI -aI -aI -aI -aI -bO -bO -cH -dR -cS -cS -cS -cS -cS -cS -cS -cp -kX -kX -kX -kX -cH -ms -mT -ms -ms -ms -ms -ms -ms -ms -pN -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -ZU -Ny -Ny -WI -WI -ZU -Co -Co -Co -Co -Co -"} -(64,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -cH -cH -gm -cH -cp -hb -cS -kc -cp -lg -lg -lg -lg -cF -cF -cF -ms -ms -ms -ms -ms -ms -ms -pN -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -ZU -ZU -ZU -pZ -ZU -ZU -Co -Co -Co -Co -Co -"} -(65,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -cp -fs -fJ -gu -cH -hd -cS -cS -kQ -lg -lg -lg -lg -gU -ms -gU -ms -ms -ms -ms -ms -ms -pp -pN -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Uc -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(66,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aU -aI -aI -aI -bO -cH -dY -fJ -fJ -gx -cH -hk -jq -kl -cp -lh -lg -lg -lg -cF -cF -cF -ms -ms -ms -ms -ms -ms -ms -pN -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(67,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -eb -fO -gq -cp -cH -cH -jv -cH -cH -lg -lg -lg -lg -cH -ms -mT -ms -ms -ms -ms -ms -ms -ms -pN -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(68,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aU -aI -aI -aI -aI -aI -aI -aI -aI -bO -cp -cH -cH -cH -cH -ec -ec -ec -ec -cH -lk -lE -lT -me -cH -ms -nq -nz -ms -ms -ms -ms -ms -pq -pD -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(69,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -ec -fR -ec -ec -ec -ec -ec -ec -cp -cH -cH -cH -cH -cH -mt -ms -nq -ou -oJ -oJ -oJ -ou -pD -cH -cH -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(70,1,1) = {" -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -ec -ec -ec -ec -ec -ec -ec -ec -ec -ec -fR -ec -ec -cp -cH -cH -cH -cH -cH -cH -cH -cH -cH -cH -bO -bO -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -Ar -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(71,1,1) = {" -Co -ax -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cH -eC -eC -eC -eC -eC -eC -eC -eC -eC -eC -eC -eC -eC -cH -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ad -ad -ZU -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -PF -Wm -Ny -Ny -ZU -Co -zV -wF -qk -qk -SH -zV -lc -Gz -Tw -NT -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(72,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -cp -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -eH -cp -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ad -ad -ZU -Co -Co -Co -Co -ZU -mD -bj -dv -ei -bj -rt -bj -ZU -id -Wm -Ny -oT -ZU -Co -zV -Lr -qk -qk -Db -zV -FU -qk -Tw -OW -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(73,1,1) = {" -Co -Co -ax -aI -aI -aI -aU -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bO -bO -bO -bO -bO -gy -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -bd -Wm -ZU -ZU -ZU -ZU -ZU -ZU -bj -TK -jg -gG -Kl -fQ -bj -ZU -Wm -Wm -Ny -Ny -ZU -Co -zV -Ju -qk -qk -SO -zV -gE -Hp -Tw -Pb -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(74,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -bd -Wm -EK -EK -EK -EK -EK -Wm -Ag -bu -Ag -nO -bj -jg -uw -uA -PF -Wm -zV -zV -zV -zV -zV -zV -BG -zV -zV -zV -zV -zV -NS -zV -zV -zV -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(75,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aO -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aU -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -bd -Wm -EK -EK -EK -EK -EK -Wm -Ag -fS -Ag -Ag -Ag -Kl -bj -ZU -wj -Wm -ls -rv -Rb -qk -qk -qk -qk -Rb -Tw -WN -Tx -JW -Tw -Rb -qk -Qb -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(76,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bi -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -bd -Wm -ZU -ZU -gF -ZU -ZU -ZU -bj -dc -dF -Ag -Ag -fS -uD -ZU -Zg -Wm -ls -rG -qk -qk -qk -qk -qk -Tx -qk -qk -qk -qk -qt -qk -qk -QH -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(77,1,1) = {" -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aV -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -db -db -ZU -Co -Co -Co -Co -ZU -rT -jg -jg -jg -fS -fS -Ag -uA -XI -Wm -mF -wh -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -UV -qk -qk -TD -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(78,1,1) = {" -Co -Co -ax -ax -aI -aI -aI -aZ -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -mg -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -db -db -ZU -Co -Co -Co -Co -ZU -mR -nb -bj -bj -fb -Ag -Ag -ZU -ZU -jA -zV -wN -qk -qk -qk -qk -qk -UV -qk -qk -qk -qk -oB -qk -qk -TG -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(79,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bK -aI -aI -aI -aI -aI -hw -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aZ -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -gk -Ag -uP -ZU -ZU -pf -xd -qk -qk -qk -qk -ZB -Cy -ZB -ZB -qk -qk -Tx -qk -qk -UK -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(80,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -rT -rB -Ag -iY -jK -sE -wh -qk -qk -qk -qk -ZB -ID -ID -kG -DH -qk -qk -qk -qk -WP -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(81,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -bi -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -lO -bj -sV -jz -kg -sE -wh -qk -qk -qk -qk -ZB -Xn -Xn -ZB -qk -qk -qk -qk -qk -Xk -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(82,1,1) = {" -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bV -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ca -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -bj -rT -gK -jz -eE -sE -wh -qk -qk -qk -qk -ZB -Xn -Du -ZB -qk -qk -qk -qk -qk -Xo -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(83,1,1) = {" -Co -Co -Co -ax -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -qm -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -zP -ZU -zV -yx -qk -qk -qk -qk -ZB -ZB -ZB -ZB -qk -qk -qk -qk -qk -Xy -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(84,1,1) = {" -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -sQ -Wm -Wm -km -pr -wh -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -qk -XQ -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(85,1,1) = {" -Co -Co -Co -Co -ax -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bi -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -gw -Wm -Wm -Wm -ls -GE -GE -GE -GE -qk -qk -ru -qk -qk -ru -TM -uv -uv -TM -XV -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(86,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aU -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aU -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -Te -zW -Te -zV -Vb -IQ -IQ -IQ -QF -nP -Jc -Uw -Gg -Jc -Mh -TM -TM -uv -XW -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(87,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bW -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -bH -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -CT -ZU -zV -FP -QF -QF -IQ -QF -nP -Ob -Uw -Gg -Ob -Mo -uv -uv -TM -YF -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(88,1,1) = {" -Co -Co -Co -Co -Co -ax -aI -aI -aI -aI -aI -aI -aI -aZ -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aZ -aI -aI -aI -aI -aI -aI -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -wj -Wm -Wm -pf -IQ -QF -QF -QF -QF -nP -ci -Uw -Gg -ci -Mh -TM -TM -uv -YN -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(89,1,1) = {" -Co -Co -Co -Co -Co -ax -ax -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aZ -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -aI -ax -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -PF -Wm -Wm -zV -Ga -Bp -Hc -Bw -Kr -Ml -IV -Vr -Ko -IV -NF -UY -Qa -wh -YZ -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(90,1,1) = {" -Co -Co -Co -Co -Co -Co -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -id -Wm -Wm -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -zV -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(91,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -PF -Wm -Wm -ZU -yT -Wm -Wm -Ny -Ny -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(92,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -XI -Wm -Wm -pZ -Wm -Wm -Wm -Ny -oT -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(93,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -iL -Wm -jA -ZU -id -Wm -Wm -Ny -Ny -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(94,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -ZU -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(95,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(96,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(97,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(98,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(99,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(100,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(101,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(102,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(103,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(104,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(105,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(106,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(107,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(108,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(109,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(110,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(111,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(112,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(113,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(114,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(115,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(116,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(117,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(118,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(119,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(120,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(121,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(122,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(123,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(124,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(125,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(126,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(127,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(128,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(129,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(130,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(131,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(132,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(133,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(134,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(135,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(136,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(137,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(138,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(139,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(140,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(141,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(142,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(143,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(144,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(145,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(146,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(147,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(148,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(149,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(150,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(151,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(152,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(153,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(154,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(155,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(156,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(157,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(158,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(159,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(160,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(161,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(162,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(163,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(164,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(165,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(166,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(167,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(168,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(169,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(170,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(171,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(172,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(173,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(174,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(175,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Es -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(176,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(177,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(178,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(179,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(180,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(181,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(182,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(183,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(184,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(185,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(186,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(187,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(188,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(189,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(190,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(191,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(192,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(193,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -ab -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(194,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(195,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(196,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(197,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(198,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(199,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(200,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(201,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(202,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(203,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(204,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(205,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(206,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(207,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(208,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(209,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(210,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(211,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(212,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(213,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(214,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(215,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -"} -(216,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(217,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(218,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(219,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(220,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(221,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(222,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(223,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(224,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(225,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(226,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(227,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -zR -DI -DI -JP -nQ -XF -XF -XF -XF -nQ -zR -DI -DI -JP -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(228,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -Ab -EI -HT -Kj -nQ -zR -DI -DI -JP -nQ -Ab -EI -HT -Kj -nQ -Yy -oK -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(229,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -Ab -ES -HV -Kj -nQ -Ab -EI -HT -Kj -nQ -Ab -ES -HV -Kj -nQ -Yy -Yy -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(230,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -Af -Fh -Fh -Ky -nQ -Ab -ES -HV -Kj -nQ -Af -Fh -Fh -Ky -nQ -nQ -nQ -nQ -nQ -nQ -nQ -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(231,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -nQ -Fk -Fk -nQ -nQ -Af -Fh -Fh -Ky -nQ -nQ -Fk -Fk -nQ -nQ -YG -nQ -hA -IY -rw -dm -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(232,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -xe -At -uS -uS -KD -nQ -nQ -Fk -Fk -nQ -nQ -KP -uS -uS -Wh -uS -SZ -nQ -Bh -tb -AN -Di -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(233,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -nQ -nQ -tb -ve -ve -KL -uS -uS -uS -uS -uS -uS -KR -ve -ve -ve -WK -AN -nQ -Hl -JA -TA -PH -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(234,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nS -rz -uF -xk -ud -wr -wr -wr -MJ -wr -wr -wr -wr -wr -MJ -wr -KV -ve -ve -AN -nQ -nQ -nQ -xk -nQ -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(235,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nS -sk -uQ -nQ -Au -Fl -nQ -nQ -nQ -nQ -xk -xk -nQ -nQ -nQ -TQ -tb -ve -ve -Ay -nQ -At -Wh -uS -SZ -nS -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(236,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -nQ -nQ -nQ -nQ -nQ -KP -uS -uS -uS -uS -uS -Av -nQ -nQ -hi -ve -ve -AN -xk -tb -ve -ve -AN -nS -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(237,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -sW -uS -uS -Av -nQ -At -KR -KT -KT -KT -KT -KT -KL -SZ -nQ -Ue -Wk -Wk -TA -nQ -ud -wr -wr -SM -nS -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(238,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nS -nT -tb -ve -ve -Ay -nQ -IS -KT -KT -Nr -Nr -Nr -KT -KT -Ay -nQ -UA -Wq -WO -YY -nQ -Di -fw -nQ -nQ -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(239,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nS -oi -tk -ve -ve -AN -xk -tb -KT -KT -NO -Pl -PT -KT -KT -AN -nQ -UB -UB -UB -UB -nQ -Cv -EX -nQ -Yy -oK -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(240,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nS -px -ud -wr -wr -AY -nQ -IS -KT -KT -NQ -NQ -NQ -KT -KT -Ay -nQ -UD -Wu -UB -nQ -nQ -nQ -nQ -nQ -Yy -Yy -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(241,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -ur -wz -xX -BF -nQ -ud -KV -KT -KT -KT -KT -KT -SG -TA -nQ -Wd -Wy -Xx -nQ -Yy -oK -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(242,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -nQ -nQ -nQ -nQ -nQ -LQ -wr -wr -wr -wr -wr -SM -nQ -nQ -nQ -nQ -nQ -nQ -Yy -Yy -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(243,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -nQ -nQ -nS -nS -nS -nS -nS -nQ -nQ -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(244,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(245,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(246,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(247,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(248,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(249,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(250,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(251,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(252,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(253,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(254,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} -(255,1,1) = {" -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -Co -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -XF -"} diff --git a/_maps/meta.json b/_maps/meta.json new file mode 100644 index 000000000000..71a0c9b9ae39 --- /dev/null +++ b/_maps/meta.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "map_name": "Meta", + "map_path": "stations", + "map_file": "meta.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_meta", + "emergency": "emergency_meta" + } +} diff --git a/_maps/metastation.json b/_maps/metastation.json deleted file mode 100644 index db08317dde1e..000000000000 --- a/_maps/metastation.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 1, - "map_name": "MetaStation", - "map_path": "map_files/MetaStation", - "map_file": "MetaStationWhite.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_meta", - "emergency": "emergency_meta" - } -} diff --git a/_maps/mining/lavaland.dmm b/_maps/mining/lavaland.dmm new file mode 100644 index 000000000000..2b499389edc4 --- /dev/null +++ b/_maps/mining/lavaland.dmm @@ -0,0 +1,71396 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/closed/indestructible/riveted/boss, +/area/lavaland/surface/outdoors) +"ab" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ac" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"ad" = ( +/turf/closed/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors) +"ae" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"af" = ( +/obj/structure/necropolis_gate/legion_gate, +/obj/structure/necropolis_arch, +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"ag" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ah" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ai" = ( +/turf/closed/mineral/random/volcanic, +/area/lavaland/surface/outdoors) +"aj" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"ak" = ( +/turf/closed/mineral/random/volcanic, +/area/lavaland/surface/outdoors/unexplored/danger) +"am" = ( +/turf/closed/mineral/random/volcanic, +/area/lavaland/surface/outdoors/unexplored) +"an" = ( +/turf/closed/mineral/random/labormineral/volcanic, +/area/lavaland/surface/outdoors) +"ao" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"aq" = ( +/turf/closed/wall, +/area/mine/laborcamp) +"ar" = ( +/obj/structure/sign/poster/official/safety_report{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Central"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"at" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"au" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"av" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"aw" = ( +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"ax" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ay" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"az" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mineral/labor_points_checker{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"aA" = ( +/obj/machinery/light/small{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/mine/laborcamp) +"aD" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aE" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"aF" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/onion, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"aG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Prisoner Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"aH" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Labor Camp External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/laborcamp) +"aJ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"aO" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"aS" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"aT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"aV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel, +/area/mine/eva) +"aW" = ( +/turf/closed/wall, +/area/mine/laborcamp/security) +"aY" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Labor Camp External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/mine/laborcamp) +"ba" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"bc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Labor Camp Security APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet/labor_camp_security, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bd" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"be" = ( +/obj/machinery/computer/secure_data, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bf" = ( +/turf/closed/wall, +/area/mine/eva) +"bg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/eva) +"bh" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"bn" = ( +/turf/closed/wall, +/area/mine/mechbay) +"bo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/mechbay) +"bp" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/plating, +/area/mine/mechbay) +"bq" = ( +/turf/closed/wall, +/area/mine/production) +"br" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"bs" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/turf/open/floor/plasteel, +/area/mine/eva) +"bt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/suit_storage_unit, +/turf/open/floor/plasteel, +/area/mine/eva) +"bu" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bv" = ( +/obj/machinery/light/small{ + dir = 8; + pixel_x = 32 + }, +/turf/closed/wall, +/area/mine/eva) +"bw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bC" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/computer/shuttle_flight/mining{ + req_access = null + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/mine/mechbay) +"bE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/production) +"bF" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/eva) +"bG" = ( +/obj/machinery/camera{ + c_tag = "EVA"; + dir = 4; + network = list("mine") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/mine/eva) +"bI" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/eva) +"bJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bK" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel, +/area/mine/eva) +"bL" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"bM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"bN" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/production) +"bO" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bP" = ( +/turf/open/floor/plasteel, +/area/mine/production) +"bQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"bR" = ( +/obj/structure/chair/stool, +/obj/machinery/flasher{ + id = "GulagCell 2"; + pixel_x = -28 + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"bS" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Station EVA"; + req_access_txt = "54" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0; + req_access_txt = "54" + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bY" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"bZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ca" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/gasmask{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cb" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cd" = ( +/obj/machinery/door/airlock/external{ + name = "Lavaland Shuttle Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"cf" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp External North"; + dir = 1; + network = list("labor") + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"cg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"ch" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"cj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining Shuttle Airlock"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/production) +"cl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"co" = ( +/obj/machinery/power/apc{ + name = "Mining EVA APC"; + pixel_x = 1; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel, +/area/mine/eva) +"cp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/pinpointer/deepcore, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/mine/eva) +"cq" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"cs" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"ct" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/eva) +"cu" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cv" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"cB" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Infirmary"; + dir = 8; + network = list("labor") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/laborcamp) +"cC" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"cF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cG" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"cH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cJ" = ( +/obj/machinery/door/airlock{ + name = "Closet" + }, +/turf/open/floor/plating, +/area/mine/production) +"cK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/mine/production) +"cL" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"cM" = ( +/turf/closed/wall, +/area/mine/living_quarters) +"cO" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cP" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"cQ" = ( +/turf/closed/wall/r_wall, +/area/mine/maintenance) +"cR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/living_quarters) +"cS" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"cT" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"cU" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing/right{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"cV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"cW" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/mine/living_quarters) +"cX" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Mining Station Starboard Wing APC"; + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/production) +"cZ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/mine/production) +"db" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dd" = ( +/obj/machinery/gateway/lavaland, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"de" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"df" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dg" = ( +/turf/open/floor/circuit, +/area/mine/maintenance) +"dh" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Communications APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"di" = ( +/obj/machinery/telecomms/relay/preset/mining, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"dj" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"dk" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/super, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"dl" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/storage/firstaid/brute{ + pixel_y = 3; + pixel_x = 3 + }, +/obj/item/storage/firstaid/fire, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"do" = ( +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dp" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"dq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dr" = ( +/obj/machinery/power/lavagenerator, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/mine/living_quarters) +"ds" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/mine/production) +"du" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dv" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"dw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/mine/maintenance) +"dy" = ( +/obj/structure/cable, +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"dz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/mine/maintenance) +"dA" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/unexplored/danger) +"dB" = ( +/obj/machinery/camera{ + c_tag = "Sleeper Room"; + dir = 1; + network = list("mine") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical3{ + locked = 0 + }, +/obj/item/pinpointer/crew/prox, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dC" = ( +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dE" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dF" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dH" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"dI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/caution/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"dJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"dK" = ( +/obj/machinery/camera{ + c_tag = "Shuttle Docking Foyer"; + dir = 8; + network = list("mine") + }, +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel, +/area/mine/production) +"dM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"dN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"dO" = ( +/obj/machinery/camera{ + c_tag = "Processing Area Room"; + dir = 8; + network = list("mine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Communications"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/maintenance) +"dQ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/living_quarters) +"dR" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"dS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Mining Station Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/mine/living_quarters) +"dT" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dU" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/production) +"dV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"dW" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "mining airlock"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dX" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dY" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"dZ" = ( +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ea" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ec" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ed" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"ee" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"ef" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Station Port Wing APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ei" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ej" = ( +/obj/machinery/camera{ + c_tag = "Crew Area Hallway East"; + network = list("mine") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ek" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"em" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"en" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"eo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"es" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/engine, +/area/mine/living_quarters) +"et" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ew" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ex" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/glass{ + name = "Mining Station Bridge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ey" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ez" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eA" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/glass{ + name = "Mining Station Bridge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"eE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/mineral/ore_redemption/lavaland{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plating, +/area/mine/production) +"eI" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"eJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/production) +"eL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eO" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eQ" = ( +/obj/item/bikehorn{ + color = "#000"; + desc = "A horn off of a bicycle. This one has been charred to hell and back, yet somehow it still honks."; + name = "charred bike horn" + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"eR" = ( +/obj/machinery/door/airlock/glass{ + name = "Break Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"eS" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel, +/area/mine/production) +"eT" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eU" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"eW" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel, +/area/mine/production) +"eX" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/mine/production) +"eY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/mine/production) +"eZ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/production) +"fa" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fc" = ( +/obj/machinery/camera{ + c_tag = "Public Shuttle Lobby"; + network = list("mine") + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fd" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fe" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ff" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fg" = ( +/obj/structure/table, +/obj/item/cigbutt, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fh" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fj" = ( +/obj/machinery/vending/snack, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fk" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fm" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fn" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fr" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm3"; + name = "Room 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fs" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm1"; + name = "Room 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ft" = ( +/obj/machinery/camera{ + c_tag = "Dormitories"; + dir = 4; + network = list("mine") + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fu" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fv" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fy" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fB" = ( +/obj/machinery/door/airlock{ + id_tag = "miningdorm2"; + name = "Room 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fD" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/item/storage/ashtray, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fE" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fF" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fG" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"fI" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fJ" = ( +/obj/machinery/camera{ + c_tag = "Crew Area"; + dir = 1; + network = list("mine") + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fK" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fL" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "miningdorm3"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"fN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "miningdorm1"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"fP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"fQ" = ( +/turf/open/genturf, +/area/lavaland/surface/outdoors/unexplored/danger) +"fR" = ( +/turf/closed/mineral/random/high_chance/volcanic, +/area/lavaland/surface/outdoors/unexplored) +"fS" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/unexplored) +"fT" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"fV" = ( +/turf/closed/indestructible/riveted/boss/see_through, +/area/lavaland/surface/outdoors) +"fW" = ( +/obj/structure/necropolis_gate/locked, +/obj/structure/stone_tile/slab, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"gd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"gj" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"gk" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"gn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"go" = ( +/obj/structure/stone_tile/block, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"gp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Operations"; + dir = 8; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"gr" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gs" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gy" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gB" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gC" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"gG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gM" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"gO" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"gP" = ( +/obj/structure/stone_tile/slab, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gR" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"gY" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/mine/laborcamp) +"hg" = ( +/obj/structure/stone_tile/surrounding, +/obj/structure/stone_tile/center/cracked, +/mob/living/simple_animal/hostile/megafauna/legion, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"hs" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"hz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"hH" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"hJ" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"hL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + id_tag = "cellblock1"; + name = "Labor Camp Operations" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"hN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ia" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/production) +"id" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"io" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"ip" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ir" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 5 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"it" = ( +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iu" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iw" = ( +/obj/structure/stone_tile/slab/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/slab/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ix" = ( +/obj/structure/stone_tile/block/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iy" = ( +/obj/structure/stone_tile/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iC" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iG" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"iK" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iM" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/obj/item/flashlight, +/obj/item/clothing/glasses/meson, +/obj/item/mining_scanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"iX" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"iY" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ja" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jb" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jg" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jh" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1 + }, +/turf/open/floor/circuit, +/area/mine/living_quarters) +"jj" = ( +/turf/open/floor/plasteel, +/area/mine/mechbay) +"jk" = ( +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jl" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jm" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jq" = ( +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"js" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jt" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/flashlight, +/obj/item/pickaxe, +/obj/item/clothing/glasses/meson, +/obj/item/mining_scanner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ju" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"jx" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"jF" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"jH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"jL" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"jN" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/center/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"jQ" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jR" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jS" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"jV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"kf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"kg" = ( +/obj/structure/fluff/drake_statue, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kj" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/world_anvil, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kl" = ( +/obj/structure/fluff/drake_statue/falling, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"km" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"kn" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "gulag3"; + name = "Cell 3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ko" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ku" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"kv" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"ky" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kB" = ( +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"kD" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"kH" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile, +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/center/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"kI" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/mining/glass{ + name = "Processing Area"; + req_access_txt = "48" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"kJ" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"kM" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kN" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"kO" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"kR" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"le" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lg" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lj" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ll" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lo" = ( +/obj/machinery/computer/shuttle_flight/labor/one_way{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"lp" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lq" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lr" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ls" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lu" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lv" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lw" = ( +/obj/structure/stone_tile/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"ly" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lz" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lD" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lE" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lF" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lG" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/block, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lI" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"lO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"lP" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lQ" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 6 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lR" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"lS" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lW" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"lZ" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"ma" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mb" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"mh" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"mk" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ml" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"mn" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile/block{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mq" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mr" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"ms" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mt" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mu" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mv" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"mw" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"mx" = ( +/obj/structure/stone_tile, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"my" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mA" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mB" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mC" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"mD" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mE" = ( +/obj/structure/stone_tile/block, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mF" = ( +/obj/structure/stone_tile/block/cracked, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mG" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mH" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mI" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mJ" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mK" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mL" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mM" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mN" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mO" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mP" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"mQ" = ( +/obj/structure/stone_tile/block{ + dir = 8 + }, +/obj/structure/stone_tile/block{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mS" = ( +/obj/structure/stone_tile/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mV" = ( +/obj/structure/stone_tile/block{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mW" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile/block{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mX" = ( +/obj/structure/stone_tile/cracked, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mY" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"mZ" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"nb" = ( +/obj/structure/stone_tile/cracked{ + dir = 8 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"nc" = ( +/obj/structure/stone_tile/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"ne" = ( +/obj/structure/stone_tile/block{ + dir = 1 + }, +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"nf" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"ng" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/turf/open/indestructible/boss, +/area/lavaland/surface/outdoors) +"nj" = ( +/obj/machinery/computer/prisoner, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"nt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"nx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"nA" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 1; + name = "Mining Station Mech Bay APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"nF" = ( +/obj/machinery/conveyor{ + id = "gulag" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/mine/laborcamp) +"nH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"nI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/living_quarters) +"nU" = ( +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"ob" = ( +/obj/machinery/shower{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"ox" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/plant_analyzer, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"oL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Lavaland Shuttle Airlock" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"oO" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"oU" = ( +/obj/machinery/shower{ + pixel_y = 22 + }, +/obj/item/soap/nanotrasen, +/obj/item/bikehorn/rubberducky/plasticducky, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"oV" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/railing/left{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"oW" = ( +/obj/structure/table, +/obj/machinery/computer/bookmanagement, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"oX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"pf" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Labor Camp Gas"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp) +"po" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = -32 + }, +/turf/closed/wall, +/area/mine/production) +"ps" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 3 + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + dir = 1; + network = list("mine") + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"pw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"px" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"pz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"pM" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"pQ" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"pR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"pV" = ( +/obj/structure/bookcase, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"pY" = ( +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"qm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"qs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"qt" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"qF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"qI" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "gulag"; + name = "labor camp conveyor" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"qO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/table, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"ri" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/mine/laborcamp) +"rj" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"rr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"rs" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"rH" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/mine/laborcamp) +"rR" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"rS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/production) +"rX" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"sa" = ( +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Labor Camp Showers"; + dir = 1; + network = list("labor") + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"sj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/production) +"so" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"sq" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 8; + name = "old sink"; + pixel_x = 12 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"ss" = ( +/obj/machinery/button/door{ + id = "miningbathroom"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"su" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/gulag_fridge, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"sH" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/mine/production) +"sK" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"sM" = ( +/obj/machinery/door/airlock/glass, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"sY" = ( +/obj/machinery/vending/security{ + onstation_override = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"tr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"tI" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"tP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ud" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"uh" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/engine, +/area/mine/living_quarters) +"ut" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"uB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"uE" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/circuit, +/area/mine/living_quarters) +"uG" = ( +/obj/structure/chair/stool, +/obj/structure/sign/poster/official/report_crimes{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"uI" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp) +"uJ" = ( +/obj/machinery/camera{ + c_tag = "Crew Area Hallway West"; + dir = 1; + network = list("mine") + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"vb" = ( +/obj/machinery/door/window/southleft, +/obj/machinery/shower{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"vg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"vh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Library"; + dir = 8; + network = list("labor") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"vj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"vq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"vy" = ( +/obj/machinery/computer/mechpad{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"vH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"wj" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"wk" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_access = list(54) + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"wo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"wA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"wE" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"wQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"wR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"xi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/living_quarters) +"xq" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/eva) +"xD" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 1; + name = "old sink"; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"xG" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"xW" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/item/seeds/soya, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"xX" = ( +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"yg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"yi" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/redbeet, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"yl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"yr" = ( +/turf/closed/wall/r_wall, +/area/mine/laborcamp) +"yw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"yB" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/cultivator, +/obj/item/seeds/potato, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"yL" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"yU" = ( +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"za" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"zn" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/mine/production) +"zo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"zM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"zT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"zX" = ( +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Aa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Aq" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"Aw" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"AB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"AH" = ( +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"AQ" = ( +/obj/machinery/camera/autoname, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/production) +"AW" = ( +/obj/machinery/door/airlock{ + name = "Labor Camp Library" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Bd" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp External West"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"Be" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"Bi" = ( +/obj/structure/chair/stool, +/obj/machinery/flasher{ + id = "GulagCell 1"; + pixel_x = -28 + }, +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Bj" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"Bl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Prisoner Airlock" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Bt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"BA" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/laborcamp) +"BH" = ( +/obj/machinery/camera{ + c_tag = "Labor Camp External South"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/laborcamp) +"BO" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"BQ" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Cell 1"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Co" = ( +/obj/machinery/computer/shuttle_flight/mining/common{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"CU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"Dh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Di" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/eva) +"Dv" = ( +/obj/structure/gulag_beacon, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Dw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"DD" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"En" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/machinery/power/terminal, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"Es" = ( +/obj/machinery/door/window/southright, +/obj/machinery/shower{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"EG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"EK" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria, +/area/mine/laborcamp) +"EY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Security Office"; + dir = 1; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Fd" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Fe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"FF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"FO" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "gulag" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/mine/laborcamp) +"Gf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "gulag" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/mine/laborcamp) +"Gh" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/drill, +/obj/item/mecha_parts/mecha_equipment/hydraulic_clamp{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"Gj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Gk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/advanced_airlock_controller/lavaland{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Gn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Gs" = ( +/obj/structure/chair/stool, +/obj/machinery/flasher{ + id = "GulagCell 3"; + pixel_x = -28 + }, +/obj/structure/sign/poster/official/obey{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Gz" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"GI" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"GJ" = ( +/obj/structure/displaycase, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"GN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/living_quarters) +"GZ" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Cell 2"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Hd" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/living_quarters) +"Hh" = ( +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/mine/production) +"Hi" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Hj" = ( +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Ho" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"Hw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Hx" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"HO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"HP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "Powered by the tears and sweat of laborers."; + name = "Prison Ofitser" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"HX" = ( +/obj/structure/table, +/obj/item/paper, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Labor Camp Cell 3"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Iq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"IJ" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/turf_decal/mining, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"IK" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Jd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Je" = ( +/turf/closed/wall/r_wall, +/area/lavaland/surface/outdoors/explored) +"Jx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"JQ" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/carrot, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"Kb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Ke" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/mine/production) +"Kv" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Kz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"KD" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Lf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -1 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"Lg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Lu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"LL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/eva) +"Mg" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Mt" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Labor Camp Monitoring"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Na" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Nb" = ( +/obj/machinery/mechpad, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"Nj" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Nl" = ( +/obj/machinery/status_display/evac{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Nt" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"NC" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 7; + id = "lavaland_common_away"; + name = "NT Lavaland base: Public dock"; + width = 7 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"NS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/dice/d4, +/turf/open/floor/plasteel, +/area/mine/production) +"Om" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Oz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"OF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"OI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"OX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Pa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Pl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Pp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + id_tag = "cellblock1"; + name = "Labor Camp Cellblock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Pr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Pt" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Px" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"PL" = ( +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/mine/eva) +"PP" = ( +/turf/open/floor/plating, +/area/mine/laborcamp/security) +"PX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"Qc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"Qg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Qq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Qy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/mine/maintenance) +"QF" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/laborcamp) +"QN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/mine/laborcamp) +"QO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/laborcamp) +"QQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"QW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"QX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/seeds/wheat, +/obj/item/seeds/wheat, +/obj/item/seeds/tomato, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/carrot, +/obj/item/seeds/ambrosia, +/obj/item/seeds/apple, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Rq" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/laborcamp) +"Rr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/living_quarters) +"Rx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/production) +"RE" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel, +/area/mine/production) +"RL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"RO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"RY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/camera{ + c_tag = "Labor Camp Cellblock"; + dir = 4; + network = list("labor") + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Sd" = ( +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Sp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"SJ" = ( +/obj/structure/statue{ + desc = "A lifelike statue of a horrifying monster."; + dir = 8; + icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; + icon_state = "goliath"; + name = "goliath" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"SK" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_away"; + name = "NT Lavaland base: labor camp"; + width = 9 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors/explored) +"Tg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Tn" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"TC" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"TD" = ( +/obj/machinery/camera{ + c_tag = "Crew Area Hallway"; + network = list("mine") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"TJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"TP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"TZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"Uh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/production) +"Ui" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Uq" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_lavaland"; + name = "south-east of NT Lavaland base"; + width = 35 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"Ur" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria, +/area/mine/laborcamp) +"Uv" = ( +/obj/item/stack/rods/lava/thirty, +/obj/structure/closet/body_bag/environmental, +/obj/effect/mob_spawn/human/miner/explorer{ + brute_damage = 150; + oxy_damage = 50 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"UA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "miningdorm2"; + name = "Door Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"UC" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Mining Station Mech Bay"; + req_access_txt = "54" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"UH" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"UJ" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "gulag1"; + name = "Cell 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"UL" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"UO" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/mine/laborcamp) +"UQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/production) +"US" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Lavaland Shuttle Airlock" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"UV" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "gulag2"; + name = "Cell 2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"UX" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restroom" + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Vb" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"VC" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/b_minus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/b_plus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/mine/living_quarters) +"VF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"VP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"VY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/carpet, +/area/mine/living_quarters) +"We" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Security Airlock"; + req_access_txt = "2" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Wh" = ( +/turf/closed/wall/r_wall, +/area/mine/living_quarters) +"Wp" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 10; + id = "mining_away"; + name = "NT Lavaland base: Mining shuttle bay"; + width = 7 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"WC" = ( +/turf/closed/wall/r_wall, +/area/mine/laborcamp/security) +"WD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining External Airlock"; + opacity = 0; + req_access_txt = "54" + }, +/obj/structure/fans/tiny, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/mine/eva) +"WE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Mining Shuttle Airlock"; + opacity = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/production) +"WO" = ( +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/lavaland/surface/outdoors) +"Xb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/mine/laborcamp) +"Xx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Yd" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Ym" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"YA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"YF" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters{ + id = "ex_lava" + }, +/obj/machinery/button/door{ + id = "ex_lava"; + req_access_txt = "49"; + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"YG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "labor"; + name = "Labor Camp Lockdown"; + pixel_y = 28; + req_access_txt = "2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"YJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"YV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"YW" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/living_quarters) +"YY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/living_quarters) +"Zf" = ( +/obj/machinery/door/airlock{ + id_tag = "miningbathroom"; + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/mine/living_quarters) +"Zh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/mechbay) +"Zk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "labor"; + name = "labor camp blast door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Security Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Zn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/poster/official/twelve_gauge{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"Zq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/mine/living_quarters) +"Zs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"Zv" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "exploration_away"; + name = "NT SS13: Док Рейнджеров Лаваленда"; + width = 13 + }, +/turf/open/floor/plating/asteroid/basalt/lava_land_surface, +/area/lavaland/surface/outdoors) +"ZD" = ( +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ZG" = ( +/obj/machinery/computer/security/labor, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ZH" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/mine/laborcamp/security) +"ZO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/laborcamp) +"ZP" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/shutters{ + id = "ex_lava" + }, +/turf/open/floor/plasteel, +/area/mine/living_quarters) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +ad +ad +ad +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +ai +aj +aj +aj +ab +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +ai +ai +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ai +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aw +aw +ab +aD +ab +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +dA +dA +aj +ab +Uv +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ad +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +ab +an +an +ab +ab +an +an +an +an +an +an +an +an +an +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +aj +aj +aj +aw +aw +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +dA +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +ab +aj +aj +aj +aj +aw +aw +aj +aj +aw +aw +aj +aj +aw +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aw +aw +aD +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iX +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +an +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aw +aw +aw +aD +aw +aw +aw +aw +aw +aD +aw +aw +aD +aw +aw +aw +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +aj +aj +aj +aj +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iY +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aj +ab +an +an +aj +ab +aj +aj +aj +aj +aj +aj +ab +aj +aw +aw +aw +aD +aD +aD +aD +aD +aD +aD +aD +aD +aw +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +cM +nI +nI +cM +cM +cM +cM +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aj +aj +aw +aw +aw +aw +aD +aD +aD +aD +aD +aD +aD +aD +aD +aw +aw +ab +aj +aj +aj +aj +aj +aj +aj +aj +cM +ip +RL +fr +fH +ku +cM +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +ab +aj +aj +aj +aj +aw +aw +aw +aw +aD +aD +aD +aD +aD +aD +aD +aD +aD +aw +aw +aw +aj +aj +aj +aj +aj +aj +aj +aj +nI +dZ +ud +cM +fM +oO +cM +aj +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +ab +aj +aj +aj +aj +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ir +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aw +aw +aw +aD +aD +aD +aD +aD +aD +aD +aD +aD +aw +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +nI +TC +Qq +cM +cM +cM +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +ad +ad +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aw +aw +aD +aD +aD +aD +aD +aD +aD +SK +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +cM +fd +Gn +fs +fH +ku +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aj +aj +aj +aj +aj +aj +aj +aj +yr +QO +QO +QO +QO +yr +We +yr +yr +yr +Bl +yr +yr +yr +yr +aj +aj +aj +aj +aj +aj +aj +aj +eQ +cM +fe +zM +cM +fO +oO +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +yr +vj +Gz +Gz +vj +aq +YG +aq +lo +aq +Pr +pf +QF +aZ +yr +aj +aj +aj +aj +aj +aj +aj +aj +ab +nI +TC +fq +cM +cM +cM +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aj +aj +aj +aD +yr +zX +GI +KD +QQ +aq +Gk +aq +Dv +aq +ZO +yr +uI +Rq +yr +aj +aj +aj +aj +aj +aj +aj +aj +aj +nI +dZ +OF +cM +VY +oO +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +QO +QO +QO +yr +vj +Hi +Na +vj +aq +Zk +aq +Nl +aq +aG +yr +yr +yr +yr +WC +Jx +WC +aj +aj +aj +aj +aj +aj +cM +Nt +Gn +fB +UA +qt +cM +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ix +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +QO +nU +sa +aq +vj +vj +Om +vj +ar +ZD +vj +kf +vj +tP +QQ +WC +Tg +sY +su +DD +WC +aj +aj +aj +aj +aj +ab +cM +rj +fh +cM +cM +cM +cM +ab +ab +ab +ab +ab +NC +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +cf +yr +ob +nU +yw +vj +vj +Kz +YV +YV +Zs +YV +Aa +Bt +ut +wA +Mt +HP +wo +hN +BO +WC +aj +aj +aj +aj +aj +ab +nI +dZ +fq +dZ +TC +ju +cM +ab +ab +ab +ab +cR +US +cR +ab +ab +ab +ab +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aJ +yr +oU +sq +aq +AH +vj +YJ +vj +at +ay +tr +aE +vj +Kv +Kv +WC +Zn +Sd +bk +EY +WC +aj +aj +aj +aj +ab +ab +nI +ff +YA +YA +RO +YY +xi +Hd +ab +ab +yU +cR +TC +cR +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +QO +QO +QO +yr +aq +aq +aq +aq +Hj +Oz +vj +UH +JQ +yB +ox +WC +WC +WC +WC +bc +Sd +bl +pw +Jx +aj +aj +aj +aj +ab +ab +cM +fg +Dh +Nt +fP +uJ +cM +cM +cM +cR +cM +cR +oL +cR +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +ab +ak +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ad +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +QO +bh +cg +aq +oW +uG +za +aq +Vb +YJ +vj +au +uB +Xb +xD +WC +PP +rX +sK +Jd +wE +km +Sp +Jx +aj +aj +aj +aj +cQ +cQ +cQ +cQ +cQ +ip +fP +dZ +cM +Lg +kO +Co +kO +eL +Pl +cR +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +jq +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +ak +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +QO +bi +ch +aq +pR +vg +zo +AW +Bt +YV +QX +av +xW +yi +aF +WC +En +aS +aW +be +Sd +bm +rr +Jx +aj +aj +aj +aj +cQ +dh +dx +dg +cQ +ea +fP +ek +cM +fa +TC +TC +TC +TC +TC +cR +cR +cM +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +fQ +fQ +fQ +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +QO +bw +cB +aq +pV +vh +aq +aq +aq +Pp +aq +aq +aq +aq +aq +WC +WC +WC +WC +ZG +Yd +Sd +ZH +WC +aj +aj +aj +ab +cQ +di +dy +nx +dP +eb +fP +VF +Aw +fb +Xx +fy +fy +dZ +SJ +dZ +so +cM +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +yr +bx +aq +aq +aq +aq +aq +Bj +aq +OI +RY +aq +Bi +BQ +QO +BH +aj +aj +Jx +nj +xG +xG +nH +WC +aj +aj +aj +ab +cQ +Qy +dz +dg +cQ +ec +QW +eL +cM +Iq +dZ +fy +fy +dZ +dZ +dZ +pQ +ZP +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aO +yr +bx +aq +iM +iM +iM +aq +BA +UX +OX +YV +UJ +wQ +yL +QO +aD +aj +aj +Jx +Jx +Jx +Jx +Jx +WC +aj +aj +aj +Wh +cQ +cQ +cQ +cQ +cQ +TD +YA +dZ +cM +fc +Ym +dZ +dZ +dZ +pz +Nt +pQ +YF +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +fQ +aj +aj +aj +aj +aj +an +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aO +yr +bL +aq +jt +vj +vj +aq +aq +aq +Pa +Qg +aq +aq +aq +yr +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +Wh +Dw +Lf +dl +dB +cM +dZ +Kb +eM +cM +cM +cM +cR +cR +cM +cM +mh +yl +cM +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +ao +aA +yr +yr +bM +cC +ZD +vj +vj +vj +Fd +aq +xX +vj +aq +bR +GZ +QO +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +cR +Qc +dC +dm +dC +dQ +ea +YA +dZ +GJ +cR +ab +ab +ab +ab +cR +dZ +dZ +cM +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aH +aT +aY +bZ +cG +jz +jz +Ui +vj +vj +aq +nt +YV +UV +Px +yL +QO +aD +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +cR +TZ +dC +Ho +dD +dR +ef +EG +fp +GN +cR +aj +aj +aj +ab +cR +dZ +dZ +cd +Zv +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ja +ab +ab +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +ao +aA +yr +yr +ca +gn +gn +qm +aN +YV +YV +hL +YV +vj +aq +aq +aq +yr +aD +aj +aj +aj +aj +aj +ai +ab +aj +aj +aj +aj +Wh +VC +qO +dn +dE +dQ +ec +YA +dZ +GJ +cR +ab +aj +aj +aj +cR +dZ +dZ +cM +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ab +ab +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aJ +QO +ba +vj +ZD +vj +qs +vj +vj +vj +aq +az +TJ +aq +Gs +HX +QO +aD +aj +aj +aj +aj +ai +ad +ad +ai +aj +Wh +Wh +Wh +Wh +cM +cM +cM +cM +eg +QW +dZ +cM +cM +cM +cR +cR +cM +cM +sM +cM +cM +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +QO +vj +vj +gp +vj +qI +vH +ZD +FF +aq +lK +YV +kn +wQ +yL +QO +aD +aD +aj +aj +aj +aj +ai +ai +ai +aj +Wh +Aq +YW +PX +PX +ee +dk +cM +eh +YA +dZ +dZ +dZ +ft +dZ +dZ +VP +dZ +dZ +dZ +cR +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +aj +aj +ab +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +QO +bd +cb +aq +aq +ri +aq +aq +Gf +yr +QN +Ur +yr +yr +yr +yr +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +cR +cU +dI +Mg +rs +Gj +ed +cM +dZ +et +HO +HO +fi +HO +HO +fi +fN +HO +HO +fp +cR +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +QO +bd +cc +gY +nF +rH +nF +nF +FO +yr +UO +EK +QO +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +cR +es +oX +dj +jh +Hw +dq +cM +qF +EG +fp +cM +cM +dQ +dQ +cM +cM +cM +Nj +cM +cM +ai +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +QO +QO +QO +yr +yr +yr +yr +yr +yr +yr +QO +QO +QO +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +cR +uh +dr +px +cW +wR +Rr +dS +ei +YA +eM +cM +fj +fk +Pt +fI +cM +vb +hz +cM +ai +ad +ai +ai +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +Hx +aD +aD +Bd +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +cR +CU +Zq +cT +uE +do +dF +cM +ej +eu +ek +dQ +fk +fk +fC +fk +cM +Es +Tn +cM +ab +ai +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jq +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +Hx +aD +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +ab +cR +oV +cV +pM +cS +yg +UL +cM +vq +et +kv +eR +TP +fu +fD +fJ +cM +cM +Zf +cM +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iu +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +aD +IJ +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +Wh +Aq +iG +PX +pY +dp +dH +cM +dZ +Kb +eL +dQ +fk +fk +fE +fK +cM +Fe +ss +cM +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +ab +ab +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +Hx +aD +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +Wh +Wh +Wh +cR +cR +Wh +Wh +Wh +dZ +YA +dZ +cM +fm +fk +fF +fk +cM +IK +tI +cM +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +an +ab +an +an +an +an +aD +aD +aD +aD +aD +aD +aD +Hx +aD +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +cR +dZ +YA +dZ +cM +fn +fv +fG +fL +cM +cM +cM +cM +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +an +an +an +an +an +an +an +an +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +an +an +ab +aj +aj +ab +an +aD +aD +aD +aj +aj +aj +aD +aD +Je +aD +aD +aD +aD +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +cR +ek +ew +eO +cM +cR +cR +cR +cR +cM +ai +ai +ai +aj +ab +aj +aj +ab +ab +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ja +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +cR +cR +ex +cR +cR +ab +ab +ab +ab +ai +ai +ai +ab +aj +aj +aj +aj +ab +ab +ab +ai +ad +ad +ab +ab +aj +aj +aj +aj +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +cR +ey +cR +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ai +ai +aj +aj +aj +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +ai +aj +aj +aj +aj +aj +aj +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +cR +YA +cR +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +ab +ad +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +ai +ai +aj +aj +aj +aj +aj +aj +aj +ai +ai +ai +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +cR +YA +cR +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +ab +ai +am +ai +ai +ai +ai +ai +ai +ai +am +ai +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +cR +YA +cR +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ad +ad +ad +ad +ab +aj +aj +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +ai +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +cR +YA +cR +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ad +ai +ad +ab +ab +aj +aj +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +br +ez +br +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ad +ad +ab +ab +aj +aj +aj +aj +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +ab +ab +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +br +ez +br +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ad +ab +aj +aj +aj +aj +aj +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +Wp +ab +ab +ab +ab +aj +aj +aj +br +ez +br +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +jx +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +aj +ab +aj +aj +aj +aj +aj +ab +ab +bN +cj +br +ab +ab +aj +aj +aj +ab +br +ez +br +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +aj +aj +aj +aj +aj +WO +ab +br +Rx +br +ab +aj +aj +aj +aj +ab +br +UQ +br +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +bn +bo +bo +bn +bn +br +br +WE +br +br +ab +aj +aj +ab +br +br +eA +br +br +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +bn +bp +rR +ps +bn +br +bO +rS +NS +br +bq +bq +bq +bq +ia +cH +eB +cD +br +bq +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ad +ad +jq +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +ai +bn +bD +jj +Gh +bn +bC +Lu +Rx +cl +cH +cO +cX +ax +dJ +ia +cn +ez +bP +eS +bq +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +aj +bn +nA +zT +Zh +UC +Rx +bQ +Uh +cE +Uh +Uh +Uh +Uh +Uh +kI +Be +Uh +eP +eT +bq +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +bn +wk +Nb +vy +bo +bE +UQ +cn +cF +cI +cP +cn +bP +bP +ia +gd +eD +bP +eU +bq +bq +bq +po +Hh +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +aj +ab +bn +bo +bn +bf +bf +bF +bS +bF +bf +cJ +bq +cZ +ds +dK +ia +bP +eE +bP +dU +br +wj +dU +br +ab +ab +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +bf +bs +bG +bT +co +bf +cK +bq +bq +eH +bq +ia +bP +eE +bP +sj +sH +lO +sj +zn +ab +ab +ai +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +ab +ab +ab +ab +bg +PL +LL +bU +cp +bf +bq +bq +du +eI +dY +bq +bP +eE +bP +cH +br +jV +RE +br +ab +ab +ab +ai +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +ab +ab +aj +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +ab +ab +ab +bg +bt +bH +bV +cq +bf +cL +em +db +db +eJ +bq +cn +eE +bP +eW +bq +bq +bq +po +AQ +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +bf +bu +bI +bW +aV +bf +dT +dv +de +en +dM +dW +AB +eE +bP +eX +bq +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +bf +bf +bg +bX +bg +bf +dX +de +dd +de +dN +bq +cD +eE +io +eY +br +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +jb +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +aj +aj +ab +ab +ab +bf +bJ +bY +cs +bf +dY +en +de +dv +eZ +bq +bP +dV +bP +Ke +bq +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +aj +aj +ab +ab +bf +bK +bW +ct +bf +dY +eo +df +dw +dO +bq +bq +br +br +bq +bq +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ai +ai +aj +aj +ab +bv +bg +WD +bg +bv +bq +bq +bq +bq +bq +bq +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +Di +ab +ab +ab +xq +ai +ai +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ai +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iw +ad +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ai +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +ab +ai +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ai +ai +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ai +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ad +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +aj +aj +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ai +ai +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ai +ai +ai +ad +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ad +ix +ab +aj +aj +aj +aj +aj +aj +aj +ab +aj +ab +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +ai +ab +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +ai +aj +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +ai +aj +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +aj +ab +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +ai +aj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ab +ab +ab +ai +am +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +jb +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +ab +ab +ab +aj +ab +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ai +am +ai +ai +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +aj +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ix +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ai +ab +ab +ab +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ai +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ai +ai +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ai +ab +ab +ab +ab +ab +ab +ai +am +ai +ai +ai +ai +ab +ab +ai +ai +ai +am +am +ai +ai +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ai +ai +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ai +ab +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ad +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ai +ab +ai +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Uq +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ai +am +ai +am +am +ai +cu +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +am +am +am +ai +cv +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +jb +jb +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ai +am +ai +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ai +am +am +am +am +am +am +am +ai +ai +ab +ab +ai +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ai +ab +am +am +am +am +am +am +am +am +am +ai +ai +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +ai +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +ab +ab +ab +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +aj +aj +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ad +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +aj +aj +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ad +ad +ai +ai +ad +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ky +ad +ai +ai +ad +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ad +ai +ai +jq +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +kN +aj +aj +aj +aj +aj +aj +mD +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ai +ab +ab +ab +ab +ab +ab +aj +ab +ab +aj +aj +aj +aj +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +jg +gB +gB +js +ab +ab +ab +ab +aj +aj +mu +aj +aj +aj +ab +mA +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ai +ab +ab +ab +ab +aj +aj +ab +aj +aj +aj +aj +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +gr +gs +gr +gr +kR +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +jQ +fQ +fQ +fQ +fQ +fQ +iy +ab +ab +mK +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ag +jF +gM +kB +jm +ix +ab +jS +aj +aj +aj +aj +lI +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +ab +ab +jx +ab +ab +mM +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +ab +ab +aj +aj +ab +aj +aj +aj +aj +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gG +go +kg +hs +gr +hH +ab +ab +aj +ly +aj +aj +aj +lw +aj +aj +ls +aj +aj +jx +jS +iy +fQ +fQ +fQ +jq +ab +kN +ab +ab +jx +ab +ab +mN +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +ai +ab +aj +aj +ab +aj +aj +ab +ab +aj +aj +aj +"} +(125,1,1) = {" +aa +aa +aa +mS +mV +mq +mV +nc +aa +aa +fV +fV +gr +jH +gO +kD +ag +le +aa +aa +ls +aj +aj +aj +aj +aj +aj +aj +aj +aj +lI +aa +aa +jS +ab +ab +ja +ab +jx +ab +jq +ab +kN +ab +ab +ab +mO +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +ab +aj +aj +aj +"} +(126,1,1) = {" +aa +aa +fV +gj +gC +mr +nb +ne +aa +aa +fV +fV +jk +gr +gr +gr +gr +gs +aa +lp +lp +lz +lp +lF +lp +lP +lS +lp +lZ +lS +lS +lp +aa +mE +ab +ab +ab +ab +kN +ab +ab +ab +ab +ab +jS +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +"} +(127,1,1) = {" +mQ +mQ +fW +mQ +mW +hg +ac +nf +ac +ac +ac +af +lg +fT +kj +fT +fT +lg +gP +lq +lu +lq +lD +lG +lu +lQ +lu +lW +ma +lq +mk +mn +kR +mF +ab +mG +ab +ja +ab +jx +ab +ab +kN +ab +ab +jq +jR +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(128,1,1) = {" +aa +aa +fV +gk +mX +mZ +nc +ng +aa +aa +fV +fV +jl +gr +ah +gG +gs +gy +aa +lr +lv +lv +lE +lv +lE +lR +lv +lv +mb +lR +ml +lR +aa +it +ab +ab +jx +jR +ab +ab +ab +mL +fQ +iY +ab +ab +jQ +ab +jx +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +am +am +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(129,1,1) = {" +aa +aa +aa +mS +mY +ms +hJ +id +aa +aa +fV +fV +jm +jL +gM +kH +gr +hH +aa +aa +lw +aj +aj +aj +lI +aj +aj +aj +aj +lw +aj +aa +aa +jq +ab +ab +ab +jQ +ab +mI +ab +ab +fQ +fQ +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +am +fR +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +go +kl +hs +gG +lj +ab +ab +aj +aj +mv +my +lw +aj +aj +aj +lI +aj +aj +kN +jq +jS +jx +jS +ab +ab +ab +ab +ab +ab +jR +fQ +jS +kN +ab +ab +jR +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ah +jN +gO +kJ +gr +it +ab +ab +aj +aj +aj +ab +jQ +aj +jx +ab +ly +aj +aj +ab +ab +fQ +fQ +ja +ab +mH +ab +ab +mJ +fQ +fQ +fQ +fQ +ab +ab +mP +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +gr +gr +gr +jm +gP +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +mB +aj +aj +aj +ab +ja +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +gr +jm +ko +iu +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +iy +aj +aj +aj +kN +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +am +am +fS +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jq +ab +ab +ab +ab +ab +kN +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +am +am +am +am +am +fS +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +jR +mt +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +jq +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +mC +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iK +ab +jQ +jq +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +lI +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(141,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +iy +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(142,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(143,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(144,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +jq +ab +ab +ab +ab +ab +ab +ab +aj +aj +mw +ab +lI +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(145,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +mx +ab +ab +mx +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(146,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(147,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(148,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +jR +ad +ab +ab +ll +ab +ab +aj +aj +aj +ab +ab +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(149,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(150,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +aj +aj +aj +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(151,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ix +ab +ab +ab +ad +ad +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(152,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(153,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(154,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +jS +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(155,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(156,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(157,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(158,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(159,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(160,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(161,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(162,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(163,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(164,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(165,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(166,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +jS +ad +ad +ab +ab +aj +aj +aj +aj +ab +ab +ab +aj +ab +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(167,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ai +ai +ai +ai +ab +aj +aj +aj +ab +ab +ab +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +ab +aj +ab +aj +aj +aj +aj +aj +aj +"} +(168,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +kM +ai +ai +ai +ai +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(169,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ad +ai +ai +ai +ai +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(170,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ad +ai +ai +ai +ai +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(171,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ad +ai +ai +ai +ai +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(172,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ad +ai +ai +ai +ai +ad +ad +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +aj +"} +(173,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ad +ai +ai +ai +ai +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(174,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ad +ai +ai +ai +ai +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(175,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +kN +ai +ai +ai +ai +jq +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(176,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ai +ai +ai +ai +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(177,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(178,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(179,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(180,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(181,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(182,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(183,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(184,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ad +ai +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(185,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ai +jS +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(186,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ai +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(187,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ai +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(188,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ai +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(189,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +iy +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(190,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +ab +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(191,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(192,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(193,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(194,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(195,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(196,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(197,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(198,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +iy +ab +ad +ad +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(199,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iy +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(200,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(201,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(202,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(203,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +iy +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(204,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(205,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(206,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ai +ai +ab +ab +ab +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(207,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ad +ai +ai +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(208,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ai +ai +ad +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(209,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(210,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(211,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(212,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(213,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(214,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(215,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(216,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(217,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(218,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +js +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(219,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(220,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(221,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(222,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +"} +(223,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(224,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(225,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +ai +ai +ai +ai +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(226,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(227,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ai +ai +ai +ai +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(228,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(229,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(230,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(231,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(232,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +it +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(233,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(234,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(235,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(236,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(237,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +js +ab +ad +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(238,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(239,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +ab +ab +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(240,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +aj +ab +aj +ab +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(241,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +ab +ab +ab +ab +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(242,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(243,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(244,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(245,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(246,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(247,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(248,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(249,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(250,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ab +ab +ad +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(251,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(252,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(253,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +js +ab +ab +ab +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(254,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +js +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} +(255,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +aj +aj +aj +aj +aj +aj +aj +aj +aj +ab +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +fQ +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +"} diff --git a/_maps/null.json b/_maps/null.json new file mode 100644 index 000000000000..08db712fb1a7 --- /dev/null +++ b/_maps/null.json @@ -0,0 +1,22 @@ +{ + "version": 1, + "map_name": "Null", + "map_path": "stations", + "map_file": "null.dmm", + "shuttles": { + "cargo": "cargo_box", + "ferry": "ferry_fancy", + "whiteship": "whiteship_box", + "emergency": "emergency_box" + }, + "space_ruin_levels": 0, + "space_empty_levels": 0, + "minetype": "none", + "traits": [ + { + "Linkage": "Self", + "Gravity": true, + "No Parallax": true + } + ] +} diff --git a/_maps/RandomRooms/10x10/sk_rdm033_deltalibrary.dmm b/_maps/r_rooms/10x10/sk_rdm033_deltalibrary.dmm similarity index 92% rename from _maps/RandomRooms/10x10/sk_rdm033_deltalibrary.dmm rename to _maps/r_rooms/10x10/sk_rdm033_deltalibrary.dmm index a044fa66b939..00813d24fb5a 100644 --- a/_maps/RandomRooms/10x10/sk_rdm033_deltalibrary.dmm +++ b/_maps/r_rooms/10x10/sk_rdm033_deltalibrary.dmm @@ -28,16 +28,14 @@ /area/template_noop) "f" = ( /obj/item/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "g" = ( /obj/effect/decal/cleanable/dirt, /obj/item/kirbyplants/random, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "h" = ( /obj/machinery/photocopier, @@ -48,9 +46,8 @@ /obj/structure/table/wood, /obj/item/paper_bin, /obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "j" = ( /obj/machinery/light/small{ @@ -111,7 +108,7 @@ "r" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, -/obj/item/paicard, +/obj/item/pai_card, /turf/open/floor/carpet, /area/template_noop) "s" = ( @@ -183,9 +180,8 @@ /turf/closed/wall, /area/template_noop) "E" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "F" = ( /obj/structure/bookcase/random/reference, @@ -223,9 +219,8 @@ /obj/structure/chair/office{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "N" = ( /obj/structure/table/wood, @@ -233,11 +228,6 @@ /obj/item/pen, /turf/open/floor/wood, /area/template_noop) -"O" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/template_noop) "P" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/morgue{ @@ -266,14 +256,13 @@ /obj/effect/decal/cleanable/dirt, /obj/item/folder, /obj/item/pen, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "U" = ( /obj/structure/table/wood, /obj/item/clothing/under/rank/civilian/curator, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/wood, /area/template_noop) "V" = ( @@ -387,7 +376,7 @@ z C p I -O +E W "} (8,1,1) = {" diff --git a/_maps/RandomRooms/10x10/sk_rdm060_snakefighter.dmm b/_maps/r_rooms/10x10/sk_rdm060_snakefighter.dmm similarity index 97% rename from _maps/RandomRooms/10x10/sk_rdm060_snakefighter.dmm rename to _maps/r_rooms/10x10/sk_rdm060_snakefighter.dmm index 88439c707329..b5cbbeefce47 100644 --- a/_maps/RandomRooms/10x10/sk_rdm060_snakefighter.dmm +++ b/_maps/r_rooms/10x10/sk_rdm060_snakefighter.dmm @@ -16,9 +16,8 @@ dir = 1 }, /obj/structure/cable, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "d" = ( /obj/item/storage/fancy/cigarettes/cigpack_shadyjims, @@ -35,9 +34,8 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "h" = ( /obj/structure/closet/secure_closet/freezer/meat/open, diff --git a/_maps/RandomRooms/10x10/sk_rdm062_roosterdome.dmm b/_maps/r_rooms/10x10/sk_rdm062_roosterdome.dmm similarity index 92% rename from _maps/RandomRooms/10x10/sk_rdm062_roosterdome.dmm rename to _maps/r_rooms/10x10/sk_rdm062_roosterdome.dmm index f27a854d7651..349646c98df7 100644 --- a/_maps/RandomRooms/10x10/sk_rdm062_roosterdome.dmm +++ b/_maps/r_rooms/10x10/sk_rdm062_roosterdome.dmm @@ -28,20 +28,26 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "f" = ( -/obj/structure/closet/boxinggloves, +/obj/structure/closet/masks, +/obj/item/food/deadmouse, /turf/open/floor/plasteel/dark, /area/template_noop) "g" = ( -/obj/structure/closet/masks, -/obj/item/food/deadmouse, +/obj/structure/closet/boxinggloves, /turf/open/floor/plasteel/dark, /area/template_noop) "h" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Arena" + }, /obj/structure/window/reinforced{ - dir = 4 + dir = 1 }, /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, /turf/open/floor/plating, /area/template_noop) @@ -50,18 +56,16 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "j" = ( -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Arena" - }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ - dir = 1 + dir = 8 }, /obj/structure/window/reinforced{ dir = 4 }, +/mob/living/simple_animal/chicken{ + name = "Roscoe Reichard" + }, /turf/open/floor/plating, /area/template_noop) "k" = ( @@ -77,7 +81,7 @@ /turf/open/floor/plating, /area/template_noop) "l" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/template_noop) "m" = ( @@ -167,28 +171,13 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "s" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel/dark, /area/template_noop) "t" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/mob/living/simple_animal/chicken{ - name = "Adam Jensen" - }, -/turf/open/floor/plating, +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plasteel/dark, /area/template_noop) "u" = ( /obj/machinery/door/window/eastright{ @@ -241,19 +230,6 @@ }, /turf/open/floor/plasteel/dark, /area/template_noop) -"z" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/mob/living/simple_animal/chicken{ - name = "Roscoe Reichard" - }, -/turf/open/floor/plating, -/area/template_noop) "A" = ( /obj/effect/decal/cleanable/oil{ icon_state = "floor6" @@ -294,14 +270,20 @@ }, /turf/open/floor/plasteel/dark, /area/template_noop) -"G" = ( -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel/dark, -/area/template_noop) "H" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plasteel/dark, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/mob/living/simple_animal/chicken{ + name = "Adam Jensen" + }, +/turf/open/floor/plating, /area/template_noop) "I" = ( /obj/item/stack/medical/bruise_pack, @@ -355,12 +337,6 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plasteel/dark, /area/template_noop) -"P" = ( -/obj/structure/table, -/obj/item/storage/box/mousetraps, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/dark, -/area/template_noop) "Q" = ( /obj/structure/mopbucket, /obj/item/mop, @@ -374,12 +350,12 @@ /area/template_noop) "S" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/template_noop) "T" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/template_noop) "U" = ( @@ -403,14 +379,14 @@ (1,1,1) = {" a +t +t +t a a -t -h -k H -H -P +k +a R "} (2,1,1) = {" @@ -498,25 +474,25 @@ a W "} (9,1,1) = {" -g a a a a -G +a +a a a a X "} (10,1,1) = {" +g a -a -a -a +h j +a s -z +a a Q O diff --git a/_maps/RandomRooms/10x10/sk_rdm070_pubbybar.dmm b/_maps/r_rooms/10x10/sk_rdm070_pubbybar.dmm similarity index 89% rename from _maps/RandomRooms/10x10/sk_rdm070_pubbybar.dmm rename to _maps/r_rooms/10x10/sk_rdm070_pubbybar.dmm index bdaccc74891e..4fecdf5a0401 100644 --- a/_maps/RandomRooms/10x10/sk_rdm070_pubbybar.dmm +++ b/_maps/r_rooms/10x10/sk_rdm070_pubbybar.dmm @@ -23,12 +23,11 @@ /turf/open/floor/plasteel/stairs/right, /area/template_noop) "g" = ( -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/effect/spawner/lootdrop/three_course_meal, +/obj/effect/spawner/random/food_or_drink/three_course_meal, +/obj/effect/spawner/random/food_or_drink/three_course_meal, /obj/structure/closet/crate, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/structure/sign/barsign, @@ -38,9 +37,8 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 24 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "j" = ( /turf/open/floor/wood, @@ -88,9 +86,8 @@ /turf/open/floor/carpet, /area/template_noop) "r" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "s" = ( /obj/effect/decal/cleanable/oil{ @@ -100,9 +97,8 @@ /area/template_noop) "t" = ( /obj/item/cigbutt/cigarbutt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "u" = ( /obj/structure/mineral_door/wood, @@ -140,6 +136,7 @@ "z" = ( /obj/structure/table, /obj/item/storage/fancy/cigarettes/cigars, +/obj/item/storage/ashtray, /obj/item/stack/spacecash/c20, /turf/open/floor/plating, /area/template_noop) @@ -169,18 +166,16 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "F" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "G" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/wood, /area/template_noop) "H" = ( @@ -237,9 +232,8 @@ brightness = 3; dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "P" = ( /obj/structure/table, diff --git a/_maps/RandomRooms/10x10/sk_rdm083_bigtheatre.dmm b/_maps/r_rooms/10x10/sk_rdm083_bigtheatre.dmm similarity index 95% rename from _maps/RandomRooms/10x10/sk_rdm083_bigtheatre.dmm rename to _maps/r_rooms/10x10/sk_rdm083_bigtheatre.dmm index 52ccf0195544..d5c88d3a0f8f 100644 --- a/_maps/RandomRooms/10x10/sk_rdm083_bigtheatre.dmm +++ b/_maps/r_rooms/10x10/sk_rdm083_bigtheatre.dmm @@ -10,12 +10,6 @@ "c" = ( /turf/open/floor/plasteel/stairs/old, /area/template_noop) -"d" = ( -/obj/structure/chair/comfy/brown, -/obj/structure/chair/comfy/brown, -/obj/effect/turf_decal/weather/side, -/turf/open/floor/wood, -/area/template_noop) "e" = ( /turf/open/floor/wood, /area/template_noop) @@ -260,7 +254,7 @@ e "} (10,1,1) = {" a -d +b a t a diff --git a/_maps/RandomRooms/10x10/sk_rdm088_bigconstruction.dmm b/_maps/r_rooms/10x10/sk_rdm088_bigconstruction.dmm similarity index 93% rename from _maps/RandomRooms/10x10/sk_rdm088_bigconstruction.dmm rename to _maps/r_rooms/10x10/sk_rdm088_bigconstruction.dmm index f5832f6150cf..8a3f5b5422ef 100644 --- a/_maps/RandomRooms/10x10/sk_rdm088_bigconstruction.dmm +++ b/_maps/r_rooms/10x10/sk_rdm088_bigconstruction.dmm @@ -84,13 +84,13 @@ "p" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /turf/open/floor/plating, /area/template_noop) "q" = ( /obj/structure/window/reinforced/spawner/west, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "r" = ( @@ -102,13 +102,13 @@ "s" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "t" = ( /obj/structure/window/reinforced/spawner/west, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "u" = ( @@ -129,13 +129,13 @@ "w" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/effect/spawner/random/maintenance/seven, /turf/open/floor/plating, /area/template_noop) "x" = ( /obj/structure/window/reinforced/spawner/west, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "y" = ( diff --git a/_maps/RandomRooms/10x10/sk_rdm098_graffitiroom.dmm b/_maps/r_rooms/10x10/sk_rdm098_graffitiroom.dmm similarity index 100% rename from _maps/RandomRooms/10x10/sk_rdm098_graffitiroom.dmm rename to _maps/r_rooms/10x10/sk_rdm098_graffitiroom.dmm diff --git a/_maps/RandomRooms/10x10/sk_rdm102_podrepairbay.dmm b/_maps/r_rooms/10x10/sk_rdm102_podrepairbay.dmm similarity index 95% rename from _maps/RandomRooms/10x10/sk_rdm102_podrepairbay.dmm rename to _maps/r_rooms/10x10/sk_rdm102_podrepairbay.dmm index 4ed19d64d153..3b9e16b5ff09 100644 --- a/_maps/RandomRooms/10x10/sk_rdm102_podrepairbay.dmm +++ b/_maps/r_rooms/10x10/sk_rdm102_podrepairbay.dmm @@ -8,7 +8,7 @@ /area/template_noop) "c" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "d" = ( @@ -31,7 +31,7 @@ /turf/open/floor/plating, /area/template_noop) "h" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "i" = ( @@ -95,7 +95,7 @@ /area/template_noop) "x" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "y" = ( @@ -114,7 +114,7 @@ "A" = ( /obj/structure/table, /obj/item/stack/rods/ten, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "B" = ( diff --git a/_maps/RandomRooms/10x10/sk_rdm106_sanitarium.dmm b/_maps/r_rooms/10x10/sk_rdm106_sanitarium.dmm similarity index 97% rename from _maps/RandomRooms/10x10/sk_rdm106_sanitarium.dmm rename to _maps/r_rooms/10x10/sk_rdm106_sanitarium.dmm index 3b6100c7f82d..a49b886ab56f 100644 --- a/_maps/RandomRooms/10x10/sk_rdm106_sanitarium.dmm +++ b/_maps/r_rooms/10x10/sk_rdm106_sanitarium.dmm @@ -118,7 +118,7 @@ /area/template_noop) "ml" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/happiness{ +/obj/item/storage/pill_bottle/happinesspsych{ pixel_x = 8; pixel_y = 3 }, @@ -250,14 +250,9 @@ /obj/item/tape/random, /obj/item/camera, /obj/item/camera_film, -/obj/item/storage/pill_bottle/happiness{ - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/happiness{ - pixel_x = -7 - }, -/obj/item/storage/pill_bottle/mannitol, /obj/item/clothing/glasses/hud/health, +/obj/item/storage/pill_bottle/happinesspsych, +/obj/item/storage/pill_bottle/happinesspsych, /turf/open/floor/carpet/blue, /area/template_noop) "Cz" = ( @@ -299,7 +294,7 @@ /area/template_noop) "Kr" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/happiness{ +/obj/item/storage/pill_bottle/happinesspsych{ pixel_x = -7 }, /obj/item/toy/crayon/black, diff --git a/_maps/RandomRooms/10x10/sk_rdm129_beach.dmm b/_maps/r_rooms/10x10/sk_rdm129_beach.dmm similarity index 100% rename from _maps/RandomRooms/10x10/sk_rdm129_beach.dmm rename to _maps/r_rooms/10x10/sk_rdm129_beach.dmm diff --git a/_maps/r_rooms/10x10/sk_rdm130_benoegg.dmm b/_maps/r_rooms/10x10/sk_rdm130_benoegg.dmm new file mode 100644 index 000000000000..ec03d03e8e57 --- /dev/null +++ b/_maps/r_rooms/10x10/sk_rdm130_benoegg.dmm @@ -0,0 +1,195 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/alien/weeds, +/turf/open/floor/plating, +/area/template_noop) +"b" = ( +/obj/structure/alien/weeds, +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/turf/open/floor/plating, +/area/template_noop) +"c" = ( +/obj/structure/alien/resin/wall, +/turf/open/floor/plating, +/area/template_noop) +"e" = ( +/turf/open/floor/plating, +/area/template_noop) +"f" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/turf/open/floor/plating, +/area/template_noop) +"g" = ( +/turf/closed/wall, +/area/template_noop) +"h" = ( +/obj/structure/alien/weeds, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/template_noop) +"i" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/template_noop) +"j" = ( +/obj/structure/alien/weeds/node, +/turf/open/floor/plating, +/area/template_noop) +"m" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/template_noop) +"n" = ( +/obj/structure/alien/weeds, +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/obj/structure/rack, +/turf/open/floor/plating, +/area/template_noop) +"o" = ( +/obj/structure/alien/weeds, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/turf/open/floor/plating, +/area/template_noop) +"q" = ( +/obj/structure/alien/weeds, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/template_noop) +"r" = ( +/obj/structure/alien/weeds, +/obj/structure/bed/nest, +/obj/item/flamethrower, +/turf/open/floor/plating, +/area/template_noop) +"s" = ( +/obj/structure/alien/weeds, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +e +e +i +g +e +e +g +a +e +e +"} +(2,1,1) = {" +e +e +e +g +m +a +g +b +c +e +"} +(3,1,1) = {" +e +g +b +g +c +a +c +j +r +e +"} +(4,1,1) = {" +e +g +j +a +c +a +b +a +c +g +"} +(5,1,1) = {" +e +g +a +a +c +j +a +c +c +e +"} +(6,1,1) = {" +e +g +c +a +h +a +a +a +g +e +"} +(7,1,1) = {" +e +g +g +a +c +c +c +b +g +e +"} +(8,1,1) = {" +e +i +c +a +c +f +c +g +g +e +"} +(9,1,1) = {" +e +i +g +a +n +o +c +q +s +e +"} +(10,1,1) = {" +e +i +g +e +e +e +e +e +e +e +"} diff --git a/_maps/RandomRooms/10x10/sk_rdm131_confinementroom.dmm b/_maps/r_rooms/10x10/sk_rdm131_confinementroom.dmm similarity index 92% rename from _maps/RandomRooms/10x10/sk_rdm131_confinementroom.dmm rename to _maps/r_rooms/10x10/sk_rdm131_confinementroom.dmm index a47a5de797e9..cc1510bc14d3 100644 --- a/_maps/RandomRooms/10x10/sk_rdm131_confinementroom.dmm +++ b/_maps/r_rooms/10x10/sk_rdm131_confinementroom.dmm @@ -46,9 +46,8 @@ /area/template_noop) "i" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "j" = ( /obj/effect/turf_decal/tile/red{ @@ -73,9 +72,8 @@ "m" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/xeno, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "n" = ( /obj/effect/turf_decal/tile/red, @@ -173,12 +171,6 @@ }, /turf/open/floor/plating, /area/template_noop) -"x" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) "y" = ( /obj/effect/turf_decal/tile/red, /obj/effect/turf_decal/tile/red{ @@ -196,16 +188,14 @@ /area/template_noop) "z" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "A" = ( /obj/structure/table_frame, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "B" = ( /obj/effect/decal/cleanable/blood/old, @@ -234,7 +224,7 @@ /turf/open/floor/plating, /area/template_noop) "E" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "F" = ( @@ -243,7 +233,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/button/door{ id = "confine4"; name = "Confinement Lock 4"; @@ -284,7 +274,7 @@ i c b b -x +i "} (2,1,1) = {" b @@ -294,7 +284,7 @@ h a b G -x +i b b "} @@ -375,11 +365,11 @@ i e e o -x +i b H b -x +i b "} (10,1,1) = {" diff --git a/_maps/RandomRooms/10x10/sk_rdm132_conveyorroom.dmm b/_maps/r_rooms/10x10/sk_rdm132_conveyorroom.dmm similarity index 85% rename from _maps/RandomRooms/10x10/sk_rdm132_conveyorroom.dmm rename to _maps/r_rooms/10x10/sk_rdm132_conveyorroom.dmm index 95531eef65bd..ede8d188bb91 100644 --- a/_maps/RandomRooms/10x10/sk_rdm132_conveyorroom.dmm +++ b/_maps/r_rooms/10x10/sk_rdm132_conveyorroom.dmm @@ -10,14 +10,13 @@ /obj/machinery/light/broken{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /obj/machinery/light{ dir = 1 }, @@ -36,16 +35,14 @@ /turf/open/floor/plasteel, /area/template_noop) "h" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( /turf/open/floor/plasteel, @@ -81,7 +78,7 @@ "p" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/effect/spawner/random/maintenance/seven, /turf/open/floor/plating, /area/template_noop) "q" = ( @@ -111,14 +108,13 @@ /obj/machinery/light/built{ dir = 4 }, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plasteel, /area/template_noop) "w" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "x" = ( /obj/machinery/conveyor{ @@ -143,7 +139,7 @@ /area/template_noop) "A" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "B" = ( @@ -154,9 +150,8 @@ /turf/open/floor/plating, /area/template_noop) "C" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "D" = ( /obj/machinery/light/broken{ @@ -173,7 +168,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/oil, /obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/plasteel, /area/template_noop) "G" = ( @@ -183,7 +178,7 @@ "H" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/template_noop) "I" = ( @@ -192,7 +187,7 @@ /area/template_noop) "J" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/effect/spawner/random/maintenance/four, /turf/open/floor/plating, /area/template_noop) "K" = ( @@ -208,7 +203,7 @@ "M" = ( /obj/effect/turf_decal/bot, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/template_noop) "N" = ( @@ -216,11 +211,6 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/template_noop) -"O" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) "P" = ( /obj/machinery/light/built, /turf/open/floor/plasteel, @@ -231,7 +221,7 @@ /area/template_noop) "S" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/six, +/obj/effect/spawner/random/maintenance/six, /turf/open/floor/plasteel, /area/template_noop) "T" = ( @@ -347,7 +337,7 @@ a C J f -O +C a "} (10,1,1) = {" diff --git a/_maps/RandomRooms/10x10/sk_rdm133_oldoffice.dmm b/_maps/r_rooms/10x10/sk_rdm133_oldoffice.dmm similarity index 89% rename from _maps/RandomRooms/10x10/sk_rdm133_oldoffice.dmm rename to _maps/r_rooms/10x10/sk_rdm133_oldoffice.dmm index d00d5da1a0b2..7cbb43a0dae1 100644 --- a/_maps/RandomRooms/10x10/sk_rdm133_oldoffice.dmm +++ b/_maps/r_rooms/10x10/sk_rdm133_oldoffice.dmm @@ -19,9 +19,8 @@ /turf/open/floor/plating, /area/template_noop) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/machinery/light/broken{ @@ -57,7 +56,7 @@ /turf/open/floor/plating, /area/template_noop) "m" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/template_noop) @@ -77,9 +76,8 @@ /turf/open/floor/plasteel, /area/template_noop) "q" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/structure/table, @@ -96,9 +94,8 @@ /area/template_noop) "t" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "u" = ( /obj/structure/chair{ @@ -114,14 +111,13 @@ /turf/open/floor/plasteel, /area/template_noop) "w" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/template_noop) "x" = ( /obj/item/paper/crumpled, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "y" = ( /obj/structure/table, @@ -134,7 +130,7 @@ /turf/open/floor/plasteel, /area/template_noop) "A" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "B" = ( @@ -177,14 +173,9 @@ dir = 4; icon_state = "tube-broken" }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) -"J" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) "K" = ( /obj/item/chair, /turf/open/floor/plasteel, @@ -216,7 +207,7 @@ /turf/open/floor/plasteel, /area/template_noop) "Q" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/built, /turf/open/floor/plasteel, @@ -282,7 +273,7 @@ q x d k -J +e N b "} diff --git a/_maps/RandomRooms/10x10/sk_rdm134_snowforest.dmm b/_maps/r_rooms/10x10/sk_rdm134_snowforest.dmm similarity index 79% rename from _maps/RandomRooms/10x10/sk_rdm134_snowforest.dmm rename to _maps/r_rooms/10x10/sk_rdm134_snowforest.dmm index df9fcc4a31dc..5c77540590bf 100644 --- a/_maps/RandomRooms/10x10/sk_rdm134_snowforest.dmm +++ b/_maps/r_rooms/10x10/sk_rdm134_snowforest.dmm @@ -34,15 +34,15 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "f" = ( -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "g" = ( -/obj/effect/spawner/lootdrop/costume, -/turf/open/floor/grass/snow/safe/oxy, +/obj/effect/spawner/random/clothing/costume, +/turf/open/floor/grass/snow/safe, /area/template_noop) "h" = ( /obj/structure/flora/bush, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "i" = ( /obj/effect/turf_decal/tile/blue{ @@ -55,11 +55,11 @@ /area/template_noop) "j" = ( /obj/structure/flora/tree/pine, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "k" = ( -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/grass/snow/safe/oxy, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/grass/snow/safe, /area/template_noop) "l" = ( /obj/machinery/light{ @@ -73,7 +73,7 @@ /area/template_noop) "m" = ( /obj/item/dnainjector/geladikinesis, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "n" = ( /obj/machinery/light{ @@ -89,27 +89,27 @@ /area/template_noop) "o" = ( /obj/item/soap, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "p" = ( /obj/item/clothing/shoes/winterboots, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "q" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/grass/snow/safe/oxy, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/grass/snow/safe, /area/template_noop) "r" = ( /obj/structure/statue/snow/snowman, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "t" = ( /obj/item/clothing/suit/hooded/wintercoat, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "u" = ( /obj/item/hatchet, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "v" = ( /obj/effect/turf_decal/tile/blue{ @@ -143,16 +143,16 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "B" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/grass/snow/safe/oxy, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/grass/snow/safe, /area/template_noop) "C" = ( /obj/item/shovel, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) "D" = ( /obj/item/nullrod/chainsaw, -/turf/open/floor/grass/snow/safe/oxy, +/turf/open/floor/grass/snow/safe, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/10x10/sk_rdm141_6sectorsdown.dmm b/_maps/r_rooms/10x10/sk_rdm141_6sectorsdown.dmm similarity index 91% rename from _maps/RandomRooms/10x10/sk_rdm141_6sectorsdown.dmm rename to _maps/r_rooms/10x10/sk_rdm141_6sectorsdown.dmm index 2157085b7c24..7688c15bbf39 100644 --- a/_maps/RandomRooms/10x10/sk_rdm141_6sectorsdown.dmm +++ b/_maps/r_rooms/10x10/sk_rdm141_6sectorsdown.dmm @@ -57,7 +57,7 @@ /area/template_noop) "hp" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/radio/intercom{ pixel_y = 26 }, @@ -66,7 +66,7 @@ "iC" = ( /obj/structure/closet, /obj/structure/window/reinforced/tinted/frosted, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "kn" = ( @@ -132,9 +132,8 @@ /turf/open/floor/plating, /area/template_noop) "sw" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "sZ" = ( /obj/structure/curtain, @@ -159,9 +158,8 @@ /turf/open/floor/plasteel, /area/template_noop) "zY" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "AU" = ( /obj/structure/table, @@ -180,9 +178,8 @@ /area/template_noop) "Ee" = ( /obj/item/trash/popcorn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "GN" = ( /obj/structure/closet, @@ -222,7 +219,7 @@ /area/template_noop) "NR" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "Pf" = ( @@ -243,7 +240,7 @@ /turf/open/floor/plating, /area/template_noop) "QK" = ( -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plating, /area/template_noop) "TC" = ( @@ -257,28 +254,26 @@ /obj/machinery/light{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "Uy" = ( /obj/effect/decal/cleanable/glass, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "UJ" = ( /obj/structure/closet, /obj/structure/sign/poster/contraband/random{ pixel_y = 32 }, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "UQ" = ( /obj/structure/rack, /obj/item/storage/toolbox/emergency, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "Vd" = ( @@ -301,7 +296,7 @@ /area/template_noop) "Yy" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "YL" = ( diff --git a/_maps/RandomRooms/10x10/sk_rdm142_olddiner.dmm b/_maps/r_rooms/10x10/sk_rdm142_olddiner.dmm similarity index 89% rename from _maps/RandomRooms/10x10/sk_rdm142_olddiner.dmm rename to _maps/r_rooms/10x10/sk_rdm142_olddiner.dmm index 987f1e425e5b..02b09d813500 100644 --- a/_maps/RandomRooms/10x10/sk_rdm142_olddiner.dmm +++ b/_maps/r_rooms/10x10/sk_rdm142_olddiner.dmm @@ -18,17 +18,15 @@ /area/template_noop) "hL" = ( /obj/structure/table_frame/wood, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "ig" = ( /obj/structure/chair/wood{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "iU" = ( /obj/structure/closet/firecloset/full, @@ -43,9 +41,8 @@ /turf/open/floor/wood, /area/template_noop) "nt" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "oV" = ( /obj/machinery/light/small{ @@ -54,7 +51,7 @@ /turf/open/floor/wood, /area/template_noop) "pb" = ( -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /obj/structure/rack, /turf/open/floor/plasteel/white, /area/template_noop) @@ -78,11 +75,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/template_noop) -"uB" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/template_noop) "uE" = ( /obj/structure/closet, /obj/item/stack/tile/wood, @@ -103,12 +95,12 @@ /area/template_noop) "wa" = ( /obj/structure/table/wood/fancy/black, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/carpet/royalblack, /area/template_noop) "wr" = ( /obj/structure/table/wood/fancy/black, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/carpet/royalblack, /area/template_noop) "xT" = ( @@ -129,9 +121,8 @@ /turf/open/floor/plating, /area/template_noop) "yH" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "ze" = ( /turf/open/floor/plating, @@ -155,9 +146,8 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "Bw" = ( /obj/machinery/light/small{ @@ -171,14 +161,8 @@ "Dz" = ( /obj/structure/table_frame/wood, /obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/template_noop) -"Eg" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "FF" = ( /obj/structure/sign/warning/nosmoking/circle, @@ -214,9 +198,8 @@ /turf/open/floor/carpet, /area/template_noop) "Ok" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "Os" = ( /obj/item/chair/wood, @@ -266,11 +249,6 @@ /obj/item/stack/sheet/mineral/wood, /turf/open/floor/carpet/royalblack, /area/template_noop) -"XA" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/template_noop) "XO" = ( /obj/structure/closet/crate, /obj/item/storage/box/ingredients/sweets, @@ -314,7 +292,7 @@ (1,1,1) = {" lT -Eg +nt dZ ig dZ @@ -337,7 +315,7 @@ SJ iU "} (3,1,1) = {" -uB +nt Os SJ SJ @@ -346,7 +324,7 @@ SJ RI yH SJ -Eg +nt "} (4,1,1) = {" ze @@ -361,7 +339,7 @@ QG Ch "} (5,1,1) = {" -XA +nt Dz Wn tO diff --git a/_maps/RandomRooms/10x10/sk_rdm143_gamercave.dmm b/_maps/r_rooms/10x10/sk_rdm143_gamercave.dmm similarity index 92% rename from _maps/RandomRooms/10x10/sk_rdm143_gamercave.dmm rename to _maps/r_rooms/10x10/sk_rdm143_gamercave.dmm index 420a3fbb564d..b65f5ac61e93 100644 --- a/_maps/RandomRooms/10x10/sk_rdm143_gamercave.dmm +++ b/_maps/r_rooms/10x10/sk_rdm143_gamercave.dmm @@ -15,9 +15,8 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( /turf/closed/wall, @@ -78,10 +77,9 @@ /turf/open/floor/plating, /area/template_noop) "q" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/effect/landmark/event_spawn, @@ -126,7 +124,7 @@ /area/template_noop) "B" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, @@ -142,7 +140,7 @@ /turf/open/floor/plating, /area/template_noop) "E" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "F" = ( @@ -202,7 +200,7 @@ "T" = ( /obj/structure/closet/crate, /obj/item/storage/box, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "U" = ( @@ -214,7 +212,7 @@ dir = 8 }, /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "W" = ( diff --git a/_maps/RandomRooms/10x10/sk_rdm144_smallmagician.dmm b/_maps/r_rooms/10x10/sk_rdm144_smallmagician.dmm similarity index 89% rename from _maps/RandomRooms/10x10/sk_rdm144_smallmagician.dmm rename to _maps/r_rooms/10x10/sk_rdm144_smallmagician.dmm index c2d657e0e910..0818f64a4ea1 100644 --- a/_maps/RandomRooms/10x10/sk_rdm144_smallmagician.dmm +++ b/_maps/r_rooms/10x10/sk_rdm144_smallmagician.dmm @@ -38,7 +38,7 @@ /area/template_noop) "kG" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "le" = ( @@ -63,7 +63,7 @@ /turf/open/floor/wood, /area/template_noop) "ri" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "rV" = ( @@ -112,7 +112,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/carpet, /area/template_noop) "vu" = ( @@ -147,9 +147,8 @@ /turf/open/floor/plating, /area/template_noop) "yn" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "CR" = ( /obj/structure/chair/sofa/right, @@ -175,9 +174,8 @@ "FD" = ( /obj/structure/table_frame/wood, /obj/item/stack/sheet/mineral/wood, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "Gx" = ( /obj/structure/grille, @@ -205,22 +203,20 @@ "Lp" = ( /obj/structure/table/wood, /obj/structure/window/reinforced/spawner/west, -/obj/effect/spawner/lootdrop/gambling, +/obj/effect/spawner/random/entertainment/gambling, /turf/open/floor/plasteel/cafeteria, /area/template_noop) "Lt" = ( /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "Me" = ( /obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "Mw" = ( /obj/effect/landmark/event_spawn, @@ -237,9 +233,8 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "PX" = ( /obj/effect/decal/cleanable/blood/old, @@ -266,8 +261,8 @@ "TR" = ( /obj/structure/closet, /obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/lootdrop/maintenance/three, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/carpet, /area/template_noop) "Un" = ( @@ -277,7 +272,7 @@ /turf/open/floor/carpet/red, /area/template_noop) "Zs" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/10x10/sk_rdm145_ladytesla_altar.dmm b/_maps/r_rooms/10x10/sk_rdm145_ladytesla_altar.dmm similarity index 86% rename from _maps/RandomRooms/10x10/sk_rdm145_ladytesla_altar.dmm rename to _maps/r_rooms/10x10/sk_rdm145_ladytesla_altar.dmm index 1d3505cf3457..7506460d7fa3 100644 --- a/_maps/RandomRooms/10x10/sk_rdm145_ladytesla_altar.dmm +++ b/_maps/r_rooms/10x10/sk_rdm145_ladytesla_altar.dmm @@ -7,7 +7,7 @@ /turf/open/floor/plasteel, /area/template_noop) "c" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "f" = ( @@ -20,33 +20,29 @@ /obj/structure/sign/poster/contraband/random{ pixel_y = 32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/template_noop) "j" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "k" = ( /obj/machinery/light/small, /turf/open/floor/plating, /area/template_noop) "l" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "m" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "o" = ( /obj/machinery/light/small{ @@ -109,7 +105,7 @@ /area/template_noop) "z" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "A" = ( @@ -129,14 +125,8 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) -"D" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "E" = ( /obj/item/radio/intercom{ @@ -172,9 +162,8 @@ /turf/open/floor/carpet/royalblue, /area/template_noop) "O" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "Q" = ( /obj/machinery/light/small{ @@ -217,11 +206,6 @@ }, /turf/open/floor/carpet/royalblue, /area/template_noop) -"X" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, -/area/template_noop) "Z" = ( /obj/structure/table/wood, /obj/item/storage/fancy/candle_box, @@ -297,7 +281,7 @@ L J U L -X +j b a "} @@ -319,7 +303,7 @@ p u w W -D +j Z p p diff --git a/_maps/RandomRooms/10x10/sk_rdm146_blastdoor_interchange.dmm b/_maps/r_rooms/10x10/sk_rdm146_blastdoor_interchange.dmm similarity index 89% rename from _maps/RandomRooms/10x10/sk_rdm146_blastdoor_interchange.dmm rename to _maps/r_rooms/10x10/sk_rdm146_blastdoor_interchange.dmm index e56d68650137..1d03aa93e41f 100644 --- a/_maps/RandomRooms/10x10/sk_rdm146_blastdoor_interchange.dmm +++ b/_maps/r_rooms/10x10/sk_rdm146_blastdoor_interchange.dmm @@ -1,16 +1,15 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aC" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/effect/spawner/random/maintenance/four, /turf/open/floor/plasteel, /area/template_noop) "aT" = ( /obj/structure/grille/broken, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/four, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "bd" = ( /obj/machinery/door/airlock/maintenance/external/glass, @@ -30,7 +29,7 @@ /area/template_noop) "di" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/six, +/obj/effect/spawner/random/maintenance/six, /turf/open/floor/plasteel, /area/template_noop) "dF" = ( @@ -45,14 +44,8 @@ /turf/open/floor/plasteel, /area/template_noop) "ec" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) -"eD" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "eQ" = ( /obj/effect/turf_decal/delivery/red, @@ -68,9 +61,8 @@ /turf/open/floor/plating, /area/template_noop) "go" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "hh" = ( /obj/structure/falsewall, @@ -121,16 +113,16 @@ /area/template_noop) "lm" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/plasteel, /area/template_noop) "lq" = ( -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plating, /area/template_noop) "nf" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "oB" = ( @@ -148,9 +140,8 @@ /area/template_noop) "rm" = ( /obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "rP" = ( /obj/item/storage/pod{ @@ -187,7 +178,7 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "wg" = ( @@ -219,9 +210,8 @@ /obj/effect/turf_decal/stripes/red/line{ dir = 6 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "xF" = ( /obj/effect/turf_decal/tile/red, @@ -250,7 +240,7 @@ /turf/open/floor/plasteel, /area/template_noop) "zD" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/turf_decal/stripes, /turf/open/floor/plating, /area/template_noop) @@ -309,7 +299,7 @@ /turf/open/floor/plating, /area/template_noop) "QE" = ( -/obj/effect/spawner/lootdrop/gambling, +/obj/effect/spawner/random/entertainment/gambling, /obj/structure/rack, /obj/machinery/button/door{ id = "maint1"; @@ -326,7 +316,7 @@ /turf/open/floor/plating, /area/template_noop) "Sc" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/turf_decal/stripes{ dir = 4 }, @@ -417,7 +407,7 @@ eQ xu oB iM -eD +ec cU iA "} diff --git a/_maps/RandomRooms/10x10/sk_rdm146_botany_apiary.dmm b/_maps/r_rooms/10x10/sk_rdm146_botany_apiary.dmm similarity index 93% rename from _maps/RandomRooms/10x10/sk_rdm146_botany_apiary.dmm rename to _maps/r_rooms/10x10/sk_rdm146_botany_apiary.dmm index 4814b119b7eb..424a38bf1c1e 100644 --- a/_maps/RandomRooms/10x10/sk_rdm146_botany_apiary.dmm +++ b/_maps/r_rooms/10x10/sk_rdm146_botany_apiary.dmm @@ -64,14 +64,12 @@ /area/template_noop) "n" = ( /obj/effect/spawner/structure/window, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "o" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "q" = ( /obj/structure/water_source/puddle, @@ -90,16 +88,15 @@ /turf/open/floor/plating, /area/template_noop) "v" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "x" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/grass, /area/template_noop) "A" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/machinery/light/small, /turf/open/floor/plating, /area/template_noop) @@ -109,7 +106,7 @@ /turf/open/floor/grass, /area/template_noop) "E" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/machinery/light/small{ dir = 1 }, @@ -153,7 +150,7 @@ /turf/open/floor/grass, /area/template_noop) "N" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "O" = ( diff --git a/_maps/RandomRooms/10x10/sk_rdm147_advbotany.dmm b/_maps/r_rooms/10x10/sk_rdm147_advbotany.dmm similarity index 95% rename from _maps/RandomRooms/10x10/sk_rdm147_advbotany.dmm rename to _maps/r_rooms/10x10/sk_rdm147_advbotany.dmm index cc4c8d14ef53..6d5c928af7a9 100644 --- a/_maps/RandomRooms/10x10/sk_rdm147_advbotany.dmm +++ b/_maps/r_rooms/10x10/sk_rdm147_advbotany.dmm @@ -45,7 +45,7 @@ /turf/open/floor/plating, /area/template_noop) "m" = ( -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /obj/structure/rack, /turf/open/floor/plating, /area/template_noop) @@ -152,7 +152,7 @@ /turf/open/floor/plating, /area/template_noop) "M" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "O" = ( @@ -162,16 +162,15 @@ /turf/open/floor/plating, /area/template_noop) "Q" = ( -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /obj/machinery/light/small{ dir = 8 }, /turf/open/floor/plating, /area/template_noop) "T" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "U" = ( /obj/structure/table/wood, diff --git a/_maps/RandomRooms/10x5/sk_rdm011_barbershop.dmm b/_maps/r_rooms/10x5/sk_rdm011_barbershop.dmm similarity index 90% rename from _maps/RandomRooms/10x5/sk_rdm011_barbershop.dmm rename to _maps/r_rooms/10x5/sk_rdm011_barbershop.dmm index 7111fad4a839..b9815c1e41e3 100644 --- a/_maps/RandomRooms/10x5/sk_rdm011_barbershop.dmm +++ b/_maps/r_rooms/10x5/sk_rdm011_barbershop.dmm @@ -50,9 +50,7 @@ /turf/closed/wall, /area/template_noop) "k" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "l" = ( /obj/item/hemostat, @@ -111,15 +109,11 @@ "r" = ( /obj/structure/window/spawner/west, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "s" = ( /obj/machinery/door/window/westleft, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "t" = ( /turf/open/floor/plasteel, @@ -133,15 +127,11 @@ "v" = ( /obj/structure/window/spawner/west, /obj/structure/table/wood, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "w" = ( /obj/structure/chair/sofa/left, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "x" = ( /obj/effect/decal/cleanable/vomit/old, @@ -173,16 +163,12 @@ /obj/item/reagent_containers/food/drinks/soda_cans/space_up, /obj/item/reagent_containers/food/drinks/soda_cans/starkist, /obj/item/storage/pill_bottle/happy, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "A" = ( /obj/structure/chair/sofa/right, /obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "B" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -190,17 +176,13 @@ /area/template_noop) "C" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "D" = ( /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, +/turf/open/floor/carpet, /area/template_noop) "E" = ( /obj/structure/table/wood, diff --git a/_maps/RandomRooms/10x5/sk_rdm031_deltarobotics.dmm b/_maps/r_rooms/10x5/sk_rdm031_deltarobotics.dmm similarity index 100% rename from _maps/RandomRooms/10x5/sk_rdm031_deltarobotics.dmm rename to _maps/r_rooms/10x5/sk_rdm031_deltarobotics.dmm diff --git a/_maps/RandomRooms/10x5/sk_rdm039_deltaclutter1.dmm b/_maps/r_rooms/10x5/sk_rdm039_deltaclutter1.dmm similarity index 92% rename from _maps/RandomRooms/10x5/sk_rdm039_deltaclutter1.dmm rename to _maps/r_rooms/10x5/sk_rdm039_deltaclutter1.dmm index 1a855d0e7208..58a9fa47518e 100644 --- a/_maps/RandomRooms/10x5/sk_rdm039_deltaclutter1.dmm +++ b/_maps/r_rooms/10x5/sk_rdm039_deltaclutter1.dmm @@ -34,9 +34,8 @@ /obj/structure/table/wood, /obj/item/storage/briefcase, /obj/item/taperecorder, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "h" = ( /obj/structure/table/wood, @@ -77,9 +76,8 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "m" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "n" = ( /turf/open/floor/wood, @@ -88,9 +86,8 @@ /obj/structure/chair/comfy/brown{ dir = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "p" = ( /obj/structure/table/wood, @@ -109,14 +106,8 @@ /obj/structure/chair/comfy/brown{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, -/area/template_noop) -"r" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "t" = ( /obj/structure/chair/comfy/black{ @@ -196,11 +187,6 @@ }, /turf/open/floor/wood, /area/template_noop) -"D" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, -/area/template_noop) "F" = ( /obj/structure/table/wood, /obj/machinery/airalarm{ @@ -296,7 +282,7 @@ z n n V -r +m n "} (6,1,1) = {" @@ -304,7 +290,7 @@ n o t A -r +m "} (7,1,1) = {" g @@ -329,8 +315,8 @@ m "} (10,1,1) = {" d -r +m w -D +m n "} diff --git a/_maps/RandomRooms/10x5/sk_rdm040_deltabotnis.dmm b/_maps/r_rooms/10x5/sk_rdm040_deltabotnis.dmm similarity index 100% rename from _maps/RandomRooms/10x5/sk_rdm040_deltabotnis.dmm rename to _maps/r_rooms/10x5/sk_rdm040_deltabotnis.dmm index 842a5802ffc0..5b64b3e195a1 100644 --- a/_maps/RandomRooms/10x5/sk_rdm040_deltabotnis.dmm +++ b/_maps/r_rooms/10x5/sk_rdm040_deltabotnis.dmm @@ -74,7 +74,7 @@ /area/template_noop) "l" = ( /obj/structure/sink{ - dir = 4; + dir = 8; pixel_x = 11 }, /obj/effect/turf_decal/bot, @@ -82,7 +82,7 @@ /area/template_noop) "m" = ( /obj/structure/sink{ - dir = 8; + dir = 4; pixel_x = -12; pixel_y = 2 }, diff --git a/_maps/RandomRooms/10x5/sk_rdm045_deltacafeteria.dmm b/_maps/r_rooms/10x5/sk_rdm045_deltacafeteria.dmm similarity index 98% rename from _maps/RandomRooms/10x5/sk_rdm045_deltacafeteria.dmm rename to _maps/r_rooms/10x5/sk_rdm045_deltacafeteria.dmm index 0d37feba9914..aaea34858c54 100644 --- a/_maps/RandomRooms/10x5/sk_rdm045_deltacafeteria.dmm +++ b/_maps/r_rooms/10x5/sk_rdm045_deltacafeteria.dmm @@ -64,7 +64,7 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "e" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -176,7 +176,7 @@ /area/template_noop) "n" = ( /obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/template_noop) diff --git a/_maps/RandomRooms/10x5/sk_rdm046_deltaarcade.dmm b/_maps/r_rooms/10x5/sk_rdm046_deltaarcade.dmm similarity index 95% rename from _maps/RandomRooms/10x5/sk_rdm046_deltaarcade.dmm rename to _maps/r_rooms/10x5/sk_rdm046_deltaarcade.dmm index b7a498434806..602abb59addf 100644 --- a/_maps/RandomRooms/10x5/sk_rdm046_deltaarcade.dmm +++ b/_maps/r_rooms/10x5/sk_rdm046_deltaarcade.dmm @@ -15,35 +15,6 @@ }, /turf/open/floor/plasteel/dark, /area/template_noop) -"b" = ( -/obj/machinery/computer/arcade, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/template_noop) -"c" = ( -/obj/machinery/computer/arcade, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/template_noop) "d" = ( /obj/structure/table/wood, /obj/item/coin/antagtoken, @@ -65,10 +36,6 @@ "f" = ( /turf/open/floor/plasteel/dark, /area/template_noop) -"g" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/plating, -/area/template_noop) "h" = ( /obj/structure/table/wood, /obj/item/paper_bin, @@ -275,8 +242,8 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "y" = ( -/obj/machinery/computer/arcade, /obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plating, /area/template_noop) "z" = ( @@ -291,7 +258,39 @@ /area/template_noop) "A" = ( /obj/structure/table/wood, -/obj/item/gun/ballistic/automatic/toy/pistol/unrestricted, +/obj/item/gun/ballistic/automatic/pistol/toy, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"F" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plating, +/area/template_noop) +"X" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/dark, +/area/template_noop) +"Z" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -302,6 +301,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel/dark, /area/template_noop) @@ -313,18 +313,18 @@ e w "} (2,1,1) = {" -b +Z l e u -c +X "} (3,1,1) = {" -c +X m n l -g +F "} (4,1,1) = {" d @@ -348,11 +348,11 @@ e n "} (7,1,1) = {" -g +F n n l -b +Z "} (8,1,1) = {" h diff --git a/_maps/RandomRooms/10x5/sk_rdm082_maintmedical.dmm b/_maps/r_rooms/10x5/sk_rdm082_maintmedical.dmm similarity index 97% rename from _maps/RandomRooms/10x5/sk_rdm082_maintmedical.dmm rename to _maps/r_rooms/10x5/sk_rdm082_maintmedical.dmm index 1715ebf8d8db..95787e9295be 100644 --- a/_maps/RandomRooms/10x5/sk_rdm082_maintmedical.dmm +++ b/_maps/r_rooms/10x5/sk_rdm082_maintmedical.dmm @@ -103,9 +103,8 @@ /turf/open/floor/plating, /area/template_noop) "k" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "l" = ( /obj/machinery/chem_master, @@ -139,9 +138,8 @@ /area/template_noop) "o" = ( /obj/machinery/door/window/westleft, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "p" = ( /obj/effect/decal/cleanable/greenglow, diff --git a/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm b/_maps/r_rooms/10x5/sk_rdm091_skidrow.dmm similarity index 91% rename from _maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm rename to _maps/r_rooms/10x5/sk_rdm091_skidrow.dmm index de898743b24d..b0c1df0a17aa 100644 --- a/_maps/RandomRooms/10x5/sk_rdm091_skidrow.dmm +++ b/_maps/r_rooms/10x5/sk_rdm091_skidrow.dmm @@ -6,8 +6,7 @@ /obj/structure/closet/cardboard, /obj/item/trash/popcorn, /obj/effect/decal/cleanable/shreds, -/obj/item/toy/cards/singlecard, -/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/effect/spawner/random/maintenance/seven, /obj/item/cigbutt, /turf/open/floor/plating, /area/template_noop) @@ -53,7 +52,9 @@ /area/template_noop) "l" = ( /obj/effect/decal/cleanable/cobweb, -/obj/machinery/computer/arcade/amputation, +/obj/machinery/computer/arcade/amputation{ + dir = 4 + }, /turf/open/floor/plating, /area/template_noop) "m" = ( @@ -76,7 +77,7 @@ /turf/open/floor/plating, /area/template_noop) "s" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "t" = ( @@ -84,7 +85,7 @@ pixel_x = 3; pixel_y = 12 }, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/template_noop) @@ -136,12 +137,12 @@ /area/template_noop) "D" = ( /obj/item/trash/energybar, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/decal/cleanable/glass, /turf/open/floor/plating, /area/template_noop) "F" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/decal/cleanable/dirt/dust, /obj/item/cigbutt, /turf/open/floor/plating, @@ -162,7 +163,7 @@ "K" = ( /obj/structure/closet/cardboard, /obj/item/storage/toolbox/emergency, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /obj/item/reagent_containers/food/drinks/bottle/hooch, /turf/open/floor/plating, /area/template_noop) @@ -186,7 +187,7 @@ /turf/open/floor/plating, /area/template_noop) "P" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/effect/decal/cleanable/glass, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, @@ -214,7 +215,7 @@ /turf/open/floor/plating, /area/template_noop) "Z" = ( -/obj/effect/spawner/lootdrop/maintenance/seven, +/obj/effect/spawner/random/maintenance/seven, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/10x5/sk_rdm100_meetingroom.dmm b/_maps/r_rooms/10x5/sk_rdm100_meetingroom.dmm similarity index 93% rename from _maps/RandomRooms/10x5/sk_rdm100_meetingroom.dmm rename to _maps/r_rooms/10x5/sk_rdm100_meetingroom.dmm index cffcfdccd352..73c638eab9e2 100644 --- a/_maps/RandomRooms/10x5/sk_rdm100_meetingroom.dmm +++ b/_maps/r_rooms/10x5/sk_rdm100_meetingroom.dmm @@ -76,9 +76,8 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "j" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( /obj/structure/chair/office/light, @@ -87,9 +86,8 @@ "l" = ( /obj/structure/table, /obj/item/pen, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "m" = ( /obj/structure/chair/office/light{ @@ -115,9 +113,8 @@ "q" = ( /obj/structure/table, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -221,9 +218,8 @@ /obj/structure/chair/office/light{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "F" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -234,9 +230,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "H" = ( /obj/machinery/light/built, diff --git a/_maps/RandomRooms/10x5/sk_rdm105_phage.dmm b/_maps/r_rooms/10x5/sk_rdm105_phage.dmm similarity index 93% rename from _maps/RandomRooms/10x5/sk_rdm105_phage.dmm rename to _maps/r_rooms/10x5/sk_rdm105_phage.dmm index 8ef8c1f6e4e6..b3ec3958f1c0 100644 --- a/_maps/RandomRooms/10x5/sk_rdm105_phage.dmm +++ b/_maps/r_rooms/10x5/sk_rdm105_phage.dmm @@ -9,11 +9,8 @@ /turf/open/floor/plating, /area/template_noop) "h" = ( -/obj/item/caution{ - desc = "CAUTION! BIOHAZARD QUARANTINE!"; - name = "biohazard warning sign" - }, /obj/effect/decal/cleanable/dirt/dust, +/obj/item/clothing/suit/caution, /turf/open/floor/plating, /area/template_noop) "i" = ( @@ -60,10 +57,7 @@ /turf/open/floor/plasteel, /area/template_noop) "y" = ( -/obj/item/caution{ - desc = "CAUTION! BIOHAZARD QUARANTINE!"; - name = "biohazard warning sign" - }, +/obj/item/clothing/suit/caution, /turf/open/floor/plating, /area/template_noop) "A" = ( @@ -122,6 +116,7 @@ "Q" = ( /obj/item/ammo_casing/spent, /obj/item/ammo_casing/spent{ + dir = 5; pixel_y = 4 }, /obj/effect/decal/cleanable/dirt/dust, @@ -144,7 +139,7 @@ "Y" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/10x5/sk_rdm125_courtroom.dmm b/_maps/r_rooms/10x5/sk_rdm125_courtroom.dmm similarity index 95% rename from _maps/RandomRooms/10x5/sk_rdm125_courtroom.dmm rename to _maps/r_rooms/10x5/sk_rdm125_courtroom.dmm index cd92bcff7d56..d8b783eb0ff7 100644 --- a/_maps/RandomRooms/10x5/sk_rdm125_courtroom.dmm +++ b/_maps/r_rooms/10x5/sk_rdm125_courtroom.dmm @@ -32,9 +32,8 @@ /area/template_noop) "d" = ( /obj/structure/table_frame/wood, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/effect/turf_decal/tile/neutral{ @@ -81,15 +80,13 @@ /turf/open/floor/plating, /area/template_noop) "k" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "l" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "m" = ( /obj/structure/table/wood, @@ -202,9 +199,8 @@ /area/template_noop) "v" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "w" = ( /obj/structure/chair{ diff --git a/_maps/RandomRooms/10x5/sk_rdm126_gaschamber.dmm b/_maps/r_rooms/10x5/sk_rdm126_gaschamber.dmm similarity index 94% rename from _maps/RandomRooms/10x5/sk_rdm126_gaschamber.dmm rename to _maps/r_rooms/10x5/sk_rdm126_gaschamber.dmm index a9bfe730a206..eb44f49d35c0 100644 --- a/_maps/RandomRooms/10x5/sk_rdm126_gaschamber.dmm +++ b/_maps/r_rooms/10x5/sk_rdm126_gaschamber.dmm @@ -49,12 +49,11 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "f" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector{ - dir = 8; - icon_state = "inje_map-2" - }, /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/template_noop) "g" = ( @@ -67,7 +66,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ dir = 6 }, /turf/open/floor/plasteel/dark, @@ -77,8 +76,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 }, /turf/open/floor/plasteel/dark, /area/template_noop) @@ -89,11 +88,10 @@ /turf/open/floor/plasteel, /area/template_noop) "k" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector{ - dir = 4; - icon_state = "inje_map-2" - }, /obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/template_noop) "l" = ( @@ -185,11 +183,10 @@ /turf/open/floor/plasteel, /area/template_noop) "y" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 8; - icon_state = "connector_map-2" - }, /obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, /turf/open/floor/plasteel, /area/template_noop) "z" = ( @@ -264,12 +261,11 @@ /turf/open/floor/plasteel, /area/template_noop) "J" = ( -/obj/machinery/atmospherics/components/unary/portables_connector{ - dir = 4; - icon_state = "connector_map-2" - }, /obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, /turf/open/floor/plasteel, /area/template_noop) "K" = ( diff --git a/_maps/RandomRooms/10x5/sk_rdm127_oldaichamber.dmm b/_maps/r_rooms/10x5/sk_rdm127_oldaichamber.dmm similarity index 98% rename from _maps/RandomRooms/10x5/sk_rdm127_oldaichamber.dmm rename to _maps/r_rooms/10x5/sk_rdm127_oldaichamber.dmm index 34d0621aab0b..cafe3f54241b 100644 --- a/_maps/RandomRooms/10x5/sk_rdm127_oldaichamber.dmm +++ b/_maps/r_rooms/10x5/sk_rdm127_oldaichamber.dmm @@ -84,7 +84,7 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "p" = ( -/obj/structure/ai_core/latejoin_inactive, +/obj/structure/ai_core, /turf/open/floor/plasteel/dark, /area/template_noop) "q" = ( diff --git a/_maps/RandomRooms/10x5/sk_rdm128_radiationtherapy.dmm b/_maps/r_rooms/10x5/sk_rdm128_radiationtherapy.dmm similarity index 88% rename from _maps/RandomRooms/10x5/sk_rdm128_radiationtherapy.dmm rename to _maps/r_rooms/10x5/sk_rdm128_radiationtherapy.dmm index faf2245f45a8..245bbaabec3f 100644 --- a/_maps/RandomRooms/10x5/sk_rdm128_radiationtherapy.dmm +++ b/_maps/r_rooms/10x5/sk_rdm128_radiationtherapy.dmm @@ -79,9 +79,8 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "l" = ( /obj/effect/decal/cleanable/dirt, @@ -99,26 +98,22 @@ /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "p" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "q" = ( /obj/machinery/door/window/westleft, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/item/surgicaldrill, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "s" = ( /obj/structure/window/reinforced, @@ -137,9 +132,8 @@ /area/template_noop) "u" = ( /obj/effect/decal/cleanable/ash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "v" = ( /obj/effect/turf_decal/stripes/line{ @@ -161,9 +155,8 @@ /area/template_noop) "x" = ( /obj/item/scalpel, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "y" = ( /obj/structure/window/reinforced{ @@ -210,17 +203,15 @@ "D" = ( /obj/structure/table/optable, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "E" = ( /obj/structure/table, /obj/machinery/light, /obj/item/surgical_drapes, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "F" = ( /obj/effect/decal/cleanable/dirt, @@ -265,6 +256,10 @@ /mob/living/simple_animal/hostile/cat_butcherer, /turf/open/floor/plasteel, /area/template_noop) +"V" = ( +/mob/living/simple_animal/pet/cat/space, +/turf/open/floor/mineral/uranium, +/area/template_noop) (1,1,1) = {" a @@ -318,7 +313,7 @@ G (8,1,1) = {" h n -n +V n H "} diff --git a/_maps/RandomRooms/10x5/sk_rdm149_cratewindow.dmm b/_maps/r_rooms/10x5/sk_rdm149_cratewindow.dmm similarity index 87% rename from _maps/RandomRooms/10x5/sk_rdm149_cratewindow.dmm rename to _maps/r_rooms/10x5/sk_rdm149_cratewindow.dmm index 1558a521242c..5d7eb2eed5f9 100644 --- a/_maps/RandomRooms/10x5/sk_rdm149_cratewindow.dmm +++ b/_maps/r_rooms/10x5/sk_rdm149_cratewindow.dmm @@ -17,14 +17,13 @@ "g" = ( /obj/structure/window/reinforced/spawner/west, /obj/structure/closet/firecloset/full, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) "k" = ( @@ -39,9 +38,8 @@ /area/space) "m" = ( /obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "n" = ( /obj/machinery/light{ @@ -68,9 +66,8 @@ /area/space) "z" = ( /obj/structure/window/reinforced/spawner, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "B" = ( /obj/structure/window/reinforced/spawner, @@ -92,10 +89,9 @@ "G" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/five, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/spawner/random/maintenance/five, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "H" = ( /obj/structure/window/reinforced/spawner/north, @@ -112,7 +108,7 @@ "L" = ( /obj/structure/window/reinforced/spawner/east, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "M" = ( @@ -129,9 +125,8 @@ /obj/item/radio/intercom{ pixel_y = 26 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "Z" = ( /obj/structure/window/reinforced/spawner/east, diff --git a/_maps/RandomRooms/10x5/sk_rdm150_smallmedlobby.dmm b/_maps/r_rooms/10x5/sk_rdm150_smallmedlobby.dmm similarity index 91% rename from _maps/RandomRooms/10x5/sk_rdm150_smallmedlobby.dmm rename to _maps/r_rooms/10x5/sk_rdm150_smallmedlobby.dmm index 688b80cb286b..0ab36f426351 100644 --- a/_maps/RandomRooms/10x5/sk_rdm150_smallmedlobby.dmm +++ b/_maps/r_rooms/10x5/sk_rdm150_smallmedlobby.dmm @@ -19,7 +19,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /obj/structure/closet/crate, /turf/open/floor/plasteel, /area/template_noop) @@ -36,9 +36,8 @@ /turf/open/floor/plasteel, /area/template_noop) "i" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( /obj/effect/turf_decal/tile/blue, @@ -56,9 +55,8 @@ /turf/open/floor/plasteel, /area/template_noop) "o" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "p" = ( /turf/closed/wall, @@ -97,7 +95,7 @@ dir = 8 }, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /obj/machinery/light/broken, /turf/open/floor/plasteel, /area/template_noop) @@ -133,14 +131,8 @@ /area/template_noop) "F" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/template_noop) -"G" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "H" = ( /obj/effect/turf_decal/tile/blue{ @@ -220,7 +212,7 @@ /area/template_noop) "X" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /turf/open/floor/plating, /area/template_noop) @@ -242,7 +234,7 @@ f K F s -G +o x "} (4,1,1) = {" @@ -255,7 +247,7 @@ M (5,1,1) = {" q i -G +o c P "} diff --git a/_maps/RandomRooms/10x5/sk_rdm151_ratburger.dmm b/_maps/r_rooms/10x5/sk_rdm151_ratburger.dmm similarity index 90% rename from _maps/RandomRooms/10x5/sk_rdm151_ratburger.dmm rename to _maps/r_rooms/10x5/sk_rdm151_ratburger.dmm index 9d5d6a61dc11..455b1488725e 100644 --- a/_maps/RandomRooms/10x5/sk_rdm151_ratburger.dmm +++ b/_maps/r_rooms/10x5/sk_rdm151_ratburger.dmm @@ -9,7 +9,7 @@ /turf/open/floor/grass, /area/template_noop) "c" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "d" = ( @@ -58,9 +58,8 @@ /turf/open/floor/grass, /area/template_noop) "v" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "w" = ( /obj/structure/rack, @@ -68,9 +67,8 @@ /obj/item/stack/cable_coil, /obj/item/kitchen/knife/butcher, /obj/item/clothing/suit/apron/chef, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "z" = ( /mob/living/simple_animal/mouse/brown, @@ -132,9 +130,8 @@ "I" = ( /obj/structure/chair/stool/bar, /obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "J" = ( /obj/machinery/light/small{ @@ -162,9 +159,8 @@ /turf/open/floor/plating, /area/template_noop) "O" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "Q" = ( /turf/open/floor/plasteel/cafeteria, @@ -173,16 +169,15 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "S" = ( /obj/structure/sign/barsign{ pixel_y = 32 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "T" = ( /obj/effect/decal/cleanable/oil, @@ -193,16 +188,11 @@ /mob/living/simple_animal/mouse/white, /turf/open/floor/grass, /area/template_noop) -"Y" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) (1,1,1) = {" a a -Y +v H a "} @@ -232,7 +222,7 @@ O C L r -Y +v "} (6,1,1) = {" S diff --git a/_maps/RandomRooms/10x5/sk_rdm152_geneticsoffice.dmm b/_maps/r_rooms/10x5/sk_rdm152_geneticsoffice.dmm similarity index 91% rename from _maps/RandomRooms/10x5/sk_rdm152_geneticsoffice.dmm rename to _maps/r_rooms/10x5/sk_rdm152_geneticsoffice.dmm index c1606378668f..f5c4065fda64 100644 --- a/_maps/RandomRooms/10x5/sk_rdm152_geneticsoffice.dmm +++ b/_maps/r_rooms/10x5/sk_rdm152_geneticsoffice.dmm @@ -19,7 +19,7 @@ /area/template_noop) "d" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/template_noop) @@ -31,7 +31,7 @@ /turf/open/floor/plating, /area/template_noop) "j" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "l" = ( @@ -39,9 +39,8 @@ /turf/open/floor/plating, /area/template_noop) "q" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/structure/reagent_dispensers/fueltank, @@ -96,7 +95,7 @@ /area/template_noop) "B" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /turf/open/floor/plating, /area/template_noop) "C" = ( @@ -179,13 +178,12 @@ /area/template_noop) "R" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /turf/open/floor/plating, /area/template_noop) "T" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "V" = ( /obj/effect/landmark/event_spawn, @@ -197,11 +195,6 @@ }, /turf/open/floor/plating, /area/template_noop) -"X" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) (1,1,1) = {" M @@ -242,11 +235,11 @@ B E E v -X +q E "} (7,1,1) = {" -X +q q V g diff --git a/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm b/_maps/r_rooms/10x5/sk_rdm153_hobowithpeter.dmm similarity index 82% rename from _maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm rename to _maps/r_rooms/10x5/sk_rdm153_hobowithpeter.dmm index 4d2ac963d8eb..40f9953adae5 100644 --- a/_maps/RandomRooms/10x5/sk_rdm153_hobowithpeter.dmm +++ b/_maps/r_rooms/10x5/sk_rdm153_hobowithpeter.dmm @@ -2,14 +2,12 @@ "a" = ( /obj/structure/rack, /obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "c" = ( /obj/structure/window/reinforced/spawner, -/obj/structure/sink, /turf/open/floor/grass, /area/template_noop) "e" = ( @@ -21,10 +19,9 @@ /turf/open/floor/plating, /area/template_noop) "h" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "j" = ( /obj/item/trash/plate, @@ -35,13 +32,12 @@ /turf/open/floor/plating, /area/template_noop) "m" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plasteel, /area/template_noop) "n" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "q" = ( /obj/structure/chair/office{ @@ -66,7 +62,7 @@ pixel_y = 4 }, /obj/item/reagent_containers/food/drinks/soda_cans/space_up, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "w" = ( @@ -86,7 +82,7 @@ /obj/item/wirerod, /obj/structure/table/wood, /obj/item/storage/belt/utility, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/carpet, /area/template_noop) "A" = ( @@ -99,15 +95,9 @@ /turf/open/floor/plasteel, /area/template_noop) "C" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/template_noop) -"D" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "E" = ( /obj/item/trash/can{ @@ -127,6 +117,9 @@ /area/template_noop) "H" = ( /obj/structure/flora/grass/jungle/b, +/obj/structure/sink{ + pixel_y = 18 + }, /turf/open/floor/grass, /area/template_noop) "I" = ( @@ -141,9 +134,8 @@ /area/template_noop) "K" = ( /obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "L" = ( /obj/structure/bed, @@ -185,7 +177,7 @@ /area/template_noop) "W" = ( /obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/lootdrop/gambling, +/obj/effect/spawner/random/entertainment/gambling, /turf/open/floor/plasteel, /area/template_noop) "X" = ( @@ -194,11 +186,6 @@ }, /turf/open/floor/plating, /area/template_noop) -"Y" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) "Z" = ( /turf/open/floor/plasteel, /area/template_noop) @@ -214,7 +201,7 @@ a H c v -Y +n U "} (3,1,1) = {" @@ -235,7 +222,7 @@ R T Q l -D +n m "} (6,1,1) = {" diff --git a/_maps/RandomRooms/10x5/sk_rdm154_butchersden.dmm b/_maps/r_rooms/10x5/sk_rdm154_butchersden.dmm similarity index 83% rename from _maps/RandomRooms/10x5/sk_rdm154_butchersden.dmm rename to _maps/r_rooms/10x5/sk_rdm154_butchersden.dmm index 2148b2379643..ebbd824dc45b 100644 --- a/_maps/RandomRooms/10x5/sk_rdm154_butchersden.dmm +++ b/_maps/r_rooms/10x5/sk_rdm154_butchersden.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /obj/structure/rack, /turf/open/floor/plating, /area/template_noop) @@ -29,15 +29,18 @@ "o" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/closet/secure_closet/freezer/meat, +/obj/item/food/meat/slab/human, +/obj/item/food/meat/slab/human, +/obj/item/food/meat/slab/human, +/obj/item/food/meat/slab/human, /turf/open/floor/plating, /area/template_noop) "u" = ( /turf/closed/wall, /area/template_noop) "w" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "x" = ( /obj/machinery/gibber, @@ -61,14 +64,12 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, /area/template_noop) -"C" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) "E" = ( /obj/structure/closet/secure_closet/freezer/meat, /obj/effect/decal/cleanable/blood/old, +/obj/item/food/meat/slab/human, +/obj/item/food/meat/slab/human, +/obj/item/food/meat/slab/human, /turf/open/floor/plating, /area/template_noop) "F" = ( @@ -77,7 +78,7 @@ /area/template_noop) "G" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/five, +/obj/effect/spawner/random/maintenance/five, /turf/open/floor/plating, /area/template_noop) "H" = ( @@ -104,6 +105,7 @@ /obj/structure/closet/secure_closet/freezer/meat, /obj/effect/decal/cleanable/blood/old, /obj/item/kitchen/knife/butcher, +/obj/item/food/meat/slab/human, /turf/open/floor/plating, /area/template_noop) "O" = ( @@ -116,10 +118,9 @@ /turf/open/floor/plating, /area/template_noop) "Q" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "R" = ( /obj/effect/landmark/event_spawn, @@ -131,13 +132,12 @@ /area/template_noop) "W" = ( /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "X" = ( /obj/effect/decal/cleanable/blood/old, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "Y" = ( @@ -183,7 +183,7 @@ c F "} (6,1,1) = {" -C +w J R W diff --git a/_maps/RandomRooms/10x5/sk_rdm155_punjiconveyor.dmm b/_maps/r_rooms/10x5/sk_rdm155_punjiconveyor.dmm similarity index 88% rename from _maps/RandomRooms/10x5/sk_rdm155_punjiconveyor.dmm rename to _maps/r_rooms/10x5/sk_rdm155_punjiconveyor.dmm index 931cf04b408a..acece5dd821a 100644 --- a/_maps/RandomRooms/10x5/sk_rdm155_punjiconveyor.dmm +++ b/_maps/r_rooms/10x5/sk_rdm155_punjiconveyor.dmm @@ -6,9 +6,8 @@ /turf/open/floor/plating, /area/template_noop) "d" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/machinery/conveyor_switch/oneway{ @@ -25,9 +24,8 @@ /obj/structure/punji_sticks, /obj/item/restraints/handcuffs/cable, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/item/wirerod, @@ -56,7 +54,7 @@ /turf/open/floor/plating, /area/template_noop) "B" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "H" = ( @@ -74,9 +72,8 @@ /turf/open/floor/plating, /area/template_noop) "M" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "P" = ( /obj/item/trash/sosjerky{ diff --git a/_maps/RandomRooms/10x5/sk_rdm156_oldairlock_interchange.dmm b/_maps/r_rooms/10x5/sk_rdm156_oldairlock_interchange.dmm similarity index 77% rename from _maps/RandomRooms/10x5/sk_rdm156_oldairlock_interchange.dmm rename to _maps/r_rooms/10x5/sk_rdm156_oldairlock_interchange.dmm index cead15850548..93a78b8bef60 100644 --- a/_maps/RandomRooms/10x5/sk_rdm156_oldairlock_interchange.dmm +++ b/_maps/r_rooms/10x5/sk_rdm156_oldairlock_interchange.dmm @@ -1,26 +1,25 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "c" = ( /turf/open/floor/plating, /area/template_noop) "d" = ( -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/structure/rack, /turf/open/floor/plating, /area/template_noop) "f" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /turf/closed/wall, /area/template_noop) "m" = ( -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "n" = ( @@ -38,21 +37,20 @@ "A" = ( /obj/structure/closet/toolcloset, /obj/item/storage/belt/bandolier, -/obj/effect/spawner/lootdrop/gambling, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/entertainment/gambling, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "B" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "M" = ( /obj/item/trash/boritos, /turf/open/floor/plasteel, /area/template_noop) "T" = ( -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/structure/closet/secure_closet/personal, /obj/item/trash/can/food/peaches/maint, /turf/open/floor/plating, diff --git a/_maps/RandomRooms/3x3/sk_rdm001_9storage.dmm b/_maps/r_rooms/3x3/sk_rdm001_9storage.dmm similarity index 82% rename from _maps/RandomRooms/3x3/sk_rdm001_9storage.dmm rename to _maps/r_rooms/3x3/sk_rdm001_9storage.dmm index c3abbd8ccc02..362ea341fcdc 100644 --- a/_maps/RandomRooms/3x3/sk_rdm001_9storage.dmm +++ b/_maps/r_rooms/3x3/sk_rdm001_9storage.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/template_noop) @@ -11,7 +11,7 @@ dir = 1; icon_state = "bulb" }, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/effect/turf_decal/box, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm002_shrine.dmm b/_maps/r_rooms/3x3/sk_rdm002_shrine.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm002_shrine.dmm rename to _maps/r_rooms/3x3/sk_rdm002_shrine.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm003_plasma.dmm b/_maps/r_rooms/3x3/sk_rdm003_plasma.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm003_plasma.dmm rename to _maps/r_rooms/3x3/sk_rdm003_plasma.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm004_tanning.dmm b/_maps/r_rooms/3x3/sk_rdm004_tanning.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm004_tanning.dmm rename to _maps/r_rooms/3x3/sk_rdm004_tanning.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm005_wash.dmm b/_maps/r_rooms/3x3/sk_rdm005_wash.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm005_wash.dmm rename to _maps/r_rooms/3x3/sk_rdm005_wash.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm006_gibs.dmm b/_maps/r_rooms/3x3/sk_rdm006_gibs.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm006_gibs.dmm rename to _maps/r_rooms/3x3/sk_rdm006_gibs.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm007_radspill.dmm b/_maps/r_rooms/3x3/sk_rdm007_radspill.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm007_radspill.dmm rename to _maps/r_rooms/3x3/sk_rdm007_radspill.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm008_2storage.dmm b/_maps/r_rooms/3x3/sk_rdm008_2storage.dmm similarity index 83% rename from _maps/RandomRooms/3x3/sk_rdm008_2storage.dmm rename to _maps/r_rooms/3x3/sk_rdm008_2storage.dmm index 8a4a77edcebb..149d72280cd5 100644 --- a/_maps/RandomRooms/3x3/sk_rdm008_2storage.dmm +++ b/_maps/r_rooms/3x3/sk_rdm008_2storage.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/obj/effect/spawner/lootdrop/maintenance/six, +/obj/effect/spawner/random/maintenance/six, /obj/structure/closet/crate, /obj/machinery/light/small{ dir = 1; @@ -12,7 +12,7 @@ /turf/open/floor/plating, /area/template_noop) "c" = ( -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /obj/structure/closet/crate, /obj/item/clothing/mask/surgical, /turf/open/floor/plating, diff --git a/_maps/RandomRooms/3x3/sk_rdm009_airstation.dmm b/_maps/r_rooms/3x3/sk_rdm009_airstation.dmm similarity index 75% rename from _maps/RandomRooms/3x3/sk_rdm009_airstation.dmm rename to _maps/r_rooms/3x3/sk_rdm009_airstation.dmm index f8b603d05bac..6e4b8d680f3c 100644 --- a/_maps/RandomRooms/3x3/sk_rdm009_airstation.dmm +++ b/_maps/r_rooms/3x3/sk_rdm009_airstation.dmm @@ -10,15 +10,12 @@ /turf/open/floor/plating, /area/template_noop) "c" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general{ - dir = 8; - icon_state = "pipe11-2" - }, /obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w, /turf/open/floor/plating, /area/template_noop) "d" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 8 }, /obj/machinery/light{ @@ -32,10 +29,7 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/anifold4w/general{ - dir = 5; - icon_state = "pipe11-2" - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm010_hazmat.dmm b/_maps/r_rooms/3x3/sk_rdm010_hazmat.dmm similarity index 96% rename from _maps/RandomRooms/3x3/sk_rdm010_hazmat.dmm rename to _maps/r_rooms/3x3/sk_rdm010_hazmat.dmm index b31b09a81cdd..0f35a309c141 100644 --- a/_maps/RandomRooms/3x3/sk_rdm010_hazmat.dmm +++ b/_maps/r_rooms/3x3/sk_rdm010_hazmat.dmm @@ -25,6 +25,7 @@ dir = 4; icon_state = "shower" }, +/obj/effect/decal/cleanable/glitter/white, /turf/open/floor/plating, /area/template_noop) "f" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm014_boxwindow.dmm b/_maps/r_rooms/3x3/sk_rdm014_boxwindow.dmm similarity index 85% rename from _maps/RandomRooms/3x3/sk_rdm014_boxwindow.dmm rename to _maps/r_rooms/3x3/sk_rdm014_boxwindow.dmm index ddc1ef5c4d0d..a91182d1fd4b 100644 --- a/_maps/RandomRooms/3x3/sk_rdm014_boxwindow.dmm +++ b/_maps/r_rooms/3x3/sk_rdm014_boxwindow.dmm @@ -12,11 +12,13 @@ dir = 4 }, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "e" = ( -/obj/structure/chair, +/obj/structure/chair{ + dir = 8 + }, /turf/open/floor/plating, /area/template_noop) "f" = ( @@ -26,7 +28,7 @@ /area/template_noop) "h" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) @@ -37,11 +39,11 @@ f "} (2,1,1) = {" b -e +b b "} (3,1,1) = {" c -b +e h "} diff --git a/_maps/RandomRooms/3x3/sk_rdm016_boxclutter2.dmm b/_maps/r_rooms/3x3/sk_rdm016_boxclutter2.dmm similarity index 93% rename from _maps/RandomRooms/3x3/sk_rdm016_boxclutter2.dmm rename to _maps/r_rooms/3x3/sk_rdm016_boxclutter2.dmm index 384b85c51177..43328f802a90 100644 --- a/_maps/RandomRooms/3x3/sk_rdm016_boxclutter2.dmm +++ b/_maps/r_rooms/3x3/sk_rdm016_boxclutter2.dmm @@ -3,7 +3,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/table_frame, /obj/item/wirerod, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm017_boxclutter3.dmm b/_maps/r_rooms/3x3/sk_rdm017_boxclutter3.dmm similarity index 92% rename from _maps/RandomRooms/3x3/sk_rdm017_boxclutter3.dmm rename to _maps/r_rooms/3x3/sk_rdm017_boxclutter3.dmm index 021f4b17d30d..bf6ebc4b266d 100644 --- a/_maps/RandomRooms/3x3/sk_rdm017_boxclutter3.dmm +++ b/_maps/r_rooms/3x3/sk_rdm017_boxclutter3.dmm @@ -18,9 +18,8 @@ /turf/open/floor/plating, /area/template_noop) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/structure/table, diff --git a/_maps/RandomRooms/3x3/sk_rdm018_boxclutter4.dmm b/_maps/r_rooms/3x3/sk_rdm018_boxclutter4.dmm similarity index 85% rename from _maps/RandomRooms/3x3/sk_rdm018_boxclutter4.dmm rename to _maps/r_rooms/3x3/sk_rdm018_boxclutter4.dmm index c29a15d6b39c..97b9f8fbd1e8 100644 --- a/_maps/RandomRooms/3x3/sk_rdm018_boxclutter4.dmm +++ b/_maps/r_rooms/3x3/sk_rdm018_boxclutter4.dmm @@ -2,12 +2,12 @@ "a" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "c" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm019_boxclutter5.dmm b/_maps/r_rooms/3x3/sk_rdm019_boxclutter5.dmm similarity index 86% rename from _maps/RandomRooms/3x3/sk_rdm019_boxclutter5.dmm rename to _maps/r_rooms/3x3/sk_rdm019_boxclutter5.dmm index 87636f6a16d7..197adcc6bd7c 100644 --- a/_maps/RandomRooms/3x3/sk_rdm019_boxclutter5.dmm +++ b/_maps/r_rooms/3x3/sk_rdm019_boxclutter5.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( @@ -9,7 +9,7 @@ /area/template_noop) "c" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "d" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm020_boxclutter6.dmm b/_maps/r_rooms/3x3/sk_rdm020_boxclutter6.dmm similarity index 84% rename from _maps/RandomRooms/3x3/sk_rdm020_boxclutter6.dmm rename to _maps/r_rooms/3x3/sk_rdm020_boxclutter6.dmm index c587509c96aa..99f48bb0f15f 100644 --- a/_maps/RandomRooms/3x3/sk_rdm020_boxclutter6.dmm +++ b/_maps/r_rooms/3x3/sk_rdm020_boxclutter6.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "b" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "c" = ( @@ -19,7 +19,7 @@ /area/template_noop) "f" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -28,7 +28,7 @@ /area/template_noop) "h" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm022_boxchemcloset.dmm b/_maps/r_rooms/3x3/sk_rdm022_boxchemcloset.dmm similarity index 90% rename from _maps/RandomRooms/3x3/sk_rdm022_boxchemcloset.dmm rename to _maps/r_rooms/3x3/sk_rdm022_boxchemcloset.dmm index cd9b5e8af46d..0de5dfa7fd05 100644 --- a/_maps/RandomRooms/3x3/sk_rdm022_boxchemcloset.dmm +++ b/_maps/r_rooms/3x3/sk_rdm022_boxchemcloset.dmm @@ -16,12 +16,12 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( /obj/structure/chair/stool, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "N" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm024_boxbedroom.dmm b/_maps/r_rooms/3x3/sk_rdm024_boxbedroom.dmm similarity index 93% rename from _maps/RandomRooms/3x3/sk_rdm024_boxbedroom.dmm rename to _maps/r_rooms/3x3/sk_rdm024_boxbedroom.dmm index 1cd239f58234..120e6fa7ac76 100644 --- a/_maps/RandomRooms/3x3/sk_rdm024_boxbedroom.dmm +++ b/_maps/r_rooms/3x3/sk_rdm024_boxbedroom.dmm @@ -23,7 +23,7 @@ /obj/item/electronics/airalarm, /obj/item/circuitboard/machine/seed_extractor, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/effect/spawner/random/maintenance/four, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm025_boxclutter8.dmm b/_maps/r_rooms/3x3/sk_rdm025_boxclutter8.dmm similarity index 85% rename from _maps/RandomRooms/3x3/sk_rdm025_boxclutter8.dmm rename to _maps/r_rooms/3x3/sk_rdm025_boxclutter8.dmm index 801def3323c2..b9c79d988222 100644 --- a/_maps/RandomRooms/3x3/sk_rdm025_boxclutter8.dmm +++ b/_maps/r_rooms/3x3/sk_rdm025_boxclutter8.dmm @@ -1,12 +1,12 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "c" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "d" = ( diff --git a/_maps/r_rooms/3x3/sk_rdm027_hullbreach.dmm b/_maps/r_rooms/3x3/sk_rdm027_hullbreach.dmm new file mode 100644 index 000000000000..9f92e1e6bec2 --- /dev/null +++ b/_maps/r_rooms/3x3/sk_rdm027_hullbreach.dmm @@ -0,0 +1,39 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/template_noop) +"b" = ( +/turf/open/floor/plating/airless, +/area/template_noop) +"c" = ( +/obj/item/paper/crumpled, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/template_noop) +"d" = ( +/obj/item/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space/basic, +/area/template_noop) +"f" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/template_noop) + +(1,1,1) = {" +a +b +a +"} +(2,1,1) = {" +b +d +f +"} +(3,1,1) = {" +c +a +a +"} diff --git a/_maps/RandomRooms/3x3/sk_rdm028_tranquility.dmm b/_maps/r_rooms/3x3/sk_rdm028_tranquility.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm028_tranquility.dmm rename to _maps/r_rooms/3x3/sk_rdm028_tranquility.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm036_owloffice.dmm b/_maps/r_rooms/3x3/sk_rdm036_owloffice.dmm similarity index 93% rename from _maps/RandomRooms/3x3/sk_rdm036_owloffice.dmm rename to _maps/r_rooms/3x3/sk_rdm036_owloffice.dmm index 82fc82986d57..d6638fa90e45 100644 --- a/_maps/RandomRooms/3x3/sk_rdm036_owloffice.dmm +++ b/_maps/r_rooms/3x3/sk_rdm036_owloffice.dmm @@ -24,9 +24,8 @@ "d" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "e" = ( /obj/effect/decal/cleanable/dirt, @@ -37,7 +36,10 @@ /area/template_noop) "f" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/modular_computer/tablet/preset/cheap, +/obj/item/modular_computer/tablet{ + pixel_x = 10; + pixel_y = 7 + }, /obj/structure/table_frame/wood, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm037_deltajanniecloset.dmm b/_maps/r_rooms/3x3/sk_rdm037_deltajanniecloset.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm037_deltajanniecloset.dmm rename to _maps/r_rooms/3x3/sk_rdm037_deltajanniecloset.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm044_deltaorgantrade.dmm b/_maps/r_rooms/3x3/sk_rdm044_deltaorgantrade.dmm similarity index 98% rename from _maps/RandomRooms/3x3/sk_rdm044_deltaorgantrade.dmm rename to _maps/r_rooms/3x3/sk_rdm044_deltaorgantrade.dmm index efc5f8d0d7e2..c4e3b6b74c94 100644 --- a/_maps/RandomRooms/3x3/sk_rdm044_deltaorgantrade.dmm +++ b/_maps/r_rooms/3x3/sk_rdm044_deltaorgantrade.dmm @@ -2,7 +2,6 @@ "a" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/effect/turf_decal/bot, /obj/structure/sink/kitchen{ diff --git a/_maps/RandomRooms/3x3/sk_rdm050_medicloset.dmm b/_maps/r_rooms/3x3/sk_rdm050_medicloset.dmm similarity index 95% rename from _maps/RandomRooms/3x3/sk_rdm050_medicloset.dmm rename to _maps/r_rooms/3x3/sk_rdm050_medicloset.dmm index a3eae8470a00..d5022eb55cda 100644 --- a/_maps/RandomRooms/3x3/sk_rdm050_medicloset.dmm +++ b/_maps/r_rooms/3x3/sk_rdm050_medicloset.dmm @@ -2,7 +2,7 @@ "a" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sink{ - dir = 8; + dir = 4; pixel_x = -12; pixel_y = 2 }, @@ -59,9 +59,8 @@ /obj/item/clothing/suit/apron/surgical, /obj/item/clothing/mask/surgical, /obj/item/clothing/mask/breath/medical, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/3x3/sk_rdm051_metagamergear.dmm b/_maps/r_rooms/3x3/sk_rdm051_metagamergear.dmm similarity index 89% rename from _maps/RandomRooms/3x3/sk_rdm051_metagamergear.dmm rename to _maps/r_rooms/3x3/sk_rdm051_metagamergear.dmm index f76a1fd159d2..22ba397c5e02 100644 --- a/_maps/RandomRooms/3x3/sk_rdm051_metagamergear.dmm +++ b/_maps/r_rooms/3x3/sk_rdm051_metagamergear.dmm @@ -31,7 +31,7 @@ /obj/item/poster/random_contraband, /obj/item/poster/random_contraband, /obj/item/poster/random_contraband, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "c" = ( @@ -46,7 +46,7 @@ /obj/item/clothing/suit/monkeysuit, /obj/item/clothing/head/xenos, /obj/item/clothing/mask/gas/monkeymask, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "d" = ( @@ -54,7 +54,7 @@ /obj/item/clothing/gloves/color/yellow, /obj/item/mop, /obj/item/bikehorn/rubberducky, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/item/grenade/empgrenade, /turf/open/floor/plating, /area/template_noop) @@ -75,7 +75,7 @@ }, /obj/item/dice/d8, /obj/item/healthanalyzer, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -88,7 +88,7 @@ pixel_y = 7 }, /obj/item/poster/random_official, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "h" = ( @@ -96,7 +96,7 @@ /obj/item/folder, /obj/item/book/manual/wiki/engineering_hacking, /obj/item/tape/random, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "i" = ( @@ -107,7 +107,7 @@ /obj/item/storage/secure/briefcase, /obj/item/disk/data, /obj/item/grenade/flashbang, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/grenade/smokebomb, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/r_rooms/3x3/sk_rdm053_metaclutter2.dmm b/_maps/r_rooms/3x3/sk_rdm053_metaclutter2.dmm new file mode 100644 index 000000000000..812679aaf4ad --- /dev/null +++ b/_maps/r_rooms/3x3/sk_rdm053_metaclutter2.dmm @@ -0,0 +1,55 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/closet, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"c" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/template_noop) +"d" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/template_noop) +"e" = ( +/turf/open/floor/plating, +/area/template_noop) +"f" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/template_noop) +"g" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/template_noop) +"h" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"i" = ( +/obj/structure/closet, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +a +d +g +"} +(2,1,1) = {" +e +e +h +"} +(3,1,1) = {" +c +f +i +"} diff --git a/_maps/RandomRooms/3x3/sk_rdm056_metaclutter4.dmm b/_maps/r_rooms/3x3/sk_rdm056_metaclutter4.dmm similarity index 92% rename from _maps/RandomRooms/3x3/sk_rdm056_metaclutter4.dmm rename to _maps/r_rooms/3x3/sk_rdm056_metaclutter4.dmm index b07955a8434d..c914c72b3454 100644 --- a/_maps/RandomRooms/3x3/sk_rdm056_metaclutter4.dmm +++ b/_maps/r_rooms/3x3/sk_rdm056_metaclutter4.dmm @@ -13,9 +13,8 @@ /area/template_noop) "e" = ( /obj/item/storage/toolbox/emergency, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/item/clothing/mask/breath, diff --git a/_maps/RandomRooms/3x3/sk_rdm057_pubbyclutter1.dmm b/_maps/r_rooms/3x3/sk_rdm057_pubbyclutter1.dmm similarity index 84% rename from _maps/RandomRooms/3x3/sk_rdm057_pubbyclutter1.dmm rename to _maps/r_rooms/3x3/sk_rdm057_pubbyclutter1.dmm index dd61c6d4e040..45db46c98f0b 100644 --- a/_maps/RandomRooms/3x3/sk_rdm057_pubbyclutter1.dmm +++ b/_maps/r_rooms/3x3/sk_rdm057_pubbyclutter1.dmm @@ -2,7 +2,7 @@ "a" = ( /obj/structure/table, /obj/item/wirecutters, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/light/small{ brightness = 3; dir = 8 @@ -11,9 +11,8 @@ /area/template_noop) "c" = ( /obj/structure/closet/emcloset, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/structure/chair/comfy/black{ @@ -27,7 +26,7 @@ "f" = ( /obj/structure/closet/crate/medical, /obj/item/stack/medical/gauze, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( diff --git a/_maps/RandomRooms/3x3/sk_rdm058_pubbyclutter2.dmm b/_maps/r_rooms/3x3/sk_rdm058_pubbyclutter2.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm058_pubbyclutter2.dmm rename to _maps/r_rooms/3x3/sk_rdm058_pubbyclutter2.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm059_pubbyclutter3.dmm b/_maps/r_rooms/3x3/sk_rdm059_pubbyclutter3.dmm similarity index 91% rename from _maps/RandomRooms/3x3/sk_rdm059_pubbyclutter3.dmm rename to _maps/r_rooms/3x3/sk_rdm059_pubbyclutter3.dmm index 07f46af43212..fe49ca97eb82 100644 --- a/_maps/RandomRooms/3x3/sk_rdm059_pubbyclutter3.dmm +++ b/_maps/r_rooms/3x3/sk_rdm059_pubbyclutter3.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/light/small{ dir = 1 }, @@ -14,7 +14,7 @@ /area/template_noop) "c" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/kitchen/knife, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, diff --git a/_maps/RandomRooms/3x3/sk_rdm069_pubbyartism.dmm b/_maps/r_rooms/3x3/sk_rdm069_pubbyartism.dmm similarity index 96% rename from _maps/RandomRooms/3x3/sk_rdm069_pubbyartism.dmm rename to _maps/r_rooms/3x3/sk_rdm069_pubbyartism.dmm index 5e7017442020..f511f08b8292 100644 --- a/_maps/RandomRooms/3x3/sk_rdm069_pubbyartism.dmm +++ b/_maps/r_rooms/3x3/sk_rdm069_pubbyartism.dmm @@ -30,7 +30,7 @@ /obj/structure/table, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/storage/box/matches, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm072_donutcapgun.dmm b/_maps/r_rooms/3x3/sk_rdm072_donutcapgun.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm072_donutcapgun.dmm rename to _maps/r_rooms/3x3/sk_rdm072_donutcapgun.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm073_kilomechcharger.dmm b/_maps/r_rooms/3x3/sk_rdm073_kilomechcharger.dmm similarity index 93% rename from _maps/RandomRooms/3x3/sk_rdm073_kilomechcharger.dmm rename to _maps/r_rooms/3x3/sk_rdm073_kilomechcharger.dmm index 8b432f79dc5e..02b206a987ed 100644 --- a/_maps/RandomRooms/3x3/sk_rdm073_kilomechcharger.dmm +++ b/_maps/r_rooms/3x3/sk_rdm073_kilomechcharger.dmm @@ -12,9 +12,8 @@ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "c" = ( /obj/effect/turf_decal/stripes/corner{ @@ -73,7 +72,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm074_kilotheatre.dmm b/_maps/r_rooms/3x3/sk_rdm074_kilotheatre.dmm similarity index 96% rename from _maps/RandomRooms/3x3/sk_rdm074_kilotheatre.dmm rename to _maps/r_rooms/3x3/sk_rdm074_kilotheatre.dmm index d5ddae62ea8b..7c839e262745 100644 --- a/_maps/RandomRooms/3x3/sk_rdm074_kilotheatre.dmm +++ b/_maps/r_rooms/3x3/sk_rdm074_kilotheatre.dmm @@ -38,9 +38,8 @@ /area/template_noop) "e" = ( /obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "f" = ( /obj/effect/decal/cleanable/blood/gibs/old, diff --git a/_maps/RandomRooms/3x3/sk_rdm077_kilolustymaid.dmm b/_maps/r_rooms/3x3/sk_rdm077_kilolustymaid.dmm similarity index 91% rename from _maps/RandomRooms/3x3/sk_rdm077_kilolustymaid.dmm rename to _maps/r_rooms/3x3/sk_rdm077_kilolustymaid.dmm index e6be59dd07d9..6dff53b51706 100644 --- a/_maps/RandomRooms/3x3/sk_rdm077_kilolustymaid.dmm +++ b/_maps/r_rooms/3x3/sk_rdm077_kilolustymaid.dmm @@ -55,16 +55,14 @@ /area/template_noop) "d" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/food/pie_smudge, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/effect/decal/cleanable/dirt, @@ -76,9 +74,8 @@ }, /obj/item/reagent_containers/glass/bucket, /obj/item/mop, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( /obj/structure/janitorialcart, diff --git a/_maps/RandomRooms/3x3/sk_rdm081_biohazard.dmm b/_maps/r_rooms/3x3/sk_rdm081_biohazard.dmm similarity index 94% rename from _maps/RandomRooms/3x3/sk_rdm081_biohazard.dmm rename to _maps/r_rooms/3x3/sk_rdm081_biohazard.dmm index 342abd669d61..7b90349b23c7 100644 --- a/_maps/RandomRooms/3x3/sk_rdm081_biohazard.dmm +++ b/_maps/r_rooms/3x3/sk_rdm081_biohazard.dmm @@ -13,7 +13,7 @@ pixel_x = -5; pixel_y = -3 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( @@ -54,7 +54,7 @@ "h" = ( /obj/item/reagent_containers/glass/bottle/synaptizine, /obj/structure/table/glass, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x3/sk_rdm092_hobohut.dmm b/_maps/r_rooms/3x3/sk_rdm092_hobohut.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm092_hobohut.dmm rename to _maps/r_rooms/3x3/sk_rdm092_hobohut.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm093_bubblegumaltar.dmm b/_maps/r_rooms/3x3/sk_rdm093_bubblegumaltar.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm093_bubblegumaltar.dmm rename to _maps/r_rooms/3x3/sk_rdm093_bubblegumaltar.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm107_banana.dmm b/_maps/r_rooms/3x3/sk_rdm107_banana.dmm similarity index 88% rename from _maps/RandomRooms/3x3/sk_rdm107_banana.dmm rename to _maps/r_rooms/3x3/sk_rdm107_banana.dmm index a90e2000dba4..df735e17677d 100644 --- a/_maps/RandomRooms/3x3/sk_rdm107_banana.dmm +++ b/_maps/r_rooms/3x3/sk_rdm107_banana.dmm @@ -16,9 +16,8 @@ "d" = ( /obj/item/clothing/shoes/clown_shoes, /obj/item/stack/ore/bananium, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/3x3/sk_rdm108_communism.dmm b/_maps/r_rooms/3x3/sk_rdm108_communism.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm108_communism.dmm rename to _maps/r_rooms/3x3/sk_rdm108_communism.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm109_hardclown.dmm b/_maps/r_rooms/3x3/sk_rdm109_hardclown.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm109_hardclown.dmm rename to _maps/r_rooms/3x3/sk_rdm109_hardclown.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm110_lipidchamber.dmm b/_maps/r_rooms/3x3/sk_rdm110_lipidchamber.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm110_lipidchamber.dmm rename to _maps/r_rooms/3x3/sk_rdm110_lipidchamber.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm111_naughtyroom.dmm b/_maps/r_rooms/3x3/sk_rdm111_naughtyroom.dmm similarity index 100% rename from _maps/RandomRooms/3x3/sk_rdm111_naughtyroom.dmm rename to _maps/r_rooms/3x3/sk_rdm111_naughtyroom.dmm diff --git a/_maps/RandomRooms/3x3/sk_rdm139_containmentcell.dmm b/_maps/r_rooms/3x3/sk_rdm139_containmentcell.dmm similarity index 90% rename from _maps/RandomRooms/3x3/sk_rdm139_containmentcell.dmm rename to _maps/r_rooms/3x3/sk_rdm139_containmentcell.dmm index 65750ec09af3..387a2995f284 100644 --- a/_maps/RandomRooms/3x3/sk_rdm139_containmentcell.dmm +++ b/_maps/r_rooms/3x3/sk_rdm139_containmentcell.dmm @@ -7,9 +7,8 @@ /turf/open/floor/plating, /area/template_noop) "k" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "I" = ( /obj/structure/toilet/secret{ diff --git a/_maps/RandomRooms/3x5/sk_rdm013_boxkitchen.dmm b/_maps/r_rooms/3x5/sk_rdm013_boxkitchen.dmm similarity index 97% rename from _maps/RandomRooms/3x5/sk_rdm013_boxkitchen.dmm rename to _maps/r_rooms/3x5/sk_rdm013_boxkitchen.dmm index 4e5896a0f44a..9c63a2fbbc19 100644 --- a/_maps/RandomRooms/3x5/sk_rdm013_boxkitchen.dmm +++ b/_maps/r_rooms/3x5/sk_rdm013_boxkitchen.dmm @@ -61,7 +61,7 @@ /area/template_noop) "l" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm b/_maps/r_rooms/3x5/sk_rdm023_boxclutter7.dmm similarity index 96% rename from _maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm rename to _maps/r_rooms/3x5/sk_rdm023_boxclutter7.dmm index 36f3bd7da1e0..805c30255dae 100644 --- a/_maps/RandomRooms/3x5/sk_rdm023_boxclutter7.dmm +++ b/_maps/r_rooms/3x5/sk_rdm023_boxclutter7.dmm @@ -38,7 +38,7 @@ dir = 1 }, /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( diff --git a/_maps/RandomRooms/3x5/sk_rdm063_pubbyclutter5.dmm b/_maps/r_rooms/3x5/sk_rdm063_pubbyclutter5.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm063_pubbyclutter5.dmm rename to _maps/r_rooms/3x5/sk_rdm063_pubbyclutter5.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm064_pubbyrobotics.dmm b/_maps/r_rooms/3x5/sk_rdm064_pubbyrobotics.dmm similarity index 96% rename from _maps/RandomRooms/3x5/sk_rdm064_pubbyrobotics.dmm rename to _maps/r_rooms/3x5/sk_rdm064_pubbyrobotics.dmm index 399ae1ea17f5..8f340336b1b6 100644 --- a/_maps/RandomRooms/3x5/sk_rdm064_pubbyrobotics.dmm +++ b/_maps/r_rooms/3x5/sk_rdm064_pubbyrobotics.dmm @@ -11,7 +11,7 @@ /area/template_noop) "d" = ( /obj/item/weldingtool, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/oil{ icon_state = "floor6" }, diff --git a/_maps/RandomRooms/3x5/sk_rdm065_pubbyclutter6.dmm b/_maps/r_rooms/3x5/sk_rdm065_pubbyclutter6.dmm similarity index 75% rename from _maps/RandomRooms/3x5/sk_rdm065_pubbyclutter6.dmm rename to _maps/r_rooms/3x5/sk_rdm065_pubbyclutter6.dmm index e4beaae25147..89f0697f12f5 100644 --- a/_maps/RandomRooms/3x5/sk_rdm065_pubbyclutter6.dmm +++ b/_maps/r_rooms/3x5/sk_rdm065_pubbyclutter6.dmm @@ -20,9 +20,8 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( /obj/item/chair, @@ -33,25 +32,22 @@ /turf/open/floor/plating, /area/template_noop) "i" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "j" = ( /obj/structure/girder, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( /obj/structure/girder, /turf/open/floor/plating, /area/template_noop) "l" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/3x5/sk_rdm079_kilomobden.dmm b/_maps/r_rooms/3x5/sk_rdm079_kilomobden.dmm similarity index 98% rename from _maps/RandomRooms/3x5/sk_rdm079_kilomobden.dmm rename to _maps/r_rooms/3x5/sk_rdm079_kilomobden.dmm index bf241f0cb897..9811dcd07626 100644 --- a/_maps/RandomRooms/3x5/sk_rdm079_kilomobden.dmm +++ b/_maps/r_rooms/3x5/sk_rdm079_kilomobden.dmm @@ -34,9 +34,8 @@ pixel_y = 4 }, /obj/item/newspaper, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "d" = ( /obj/effect/turf_decal/tile/neutral, diff --git a/_maps/RandomRooms/3x5/sk_rdm084_monky.dmm b/_maps/r_rooms/3x5/sk_rdm084_monky.dmm similarity index 78% rename from _maps/RandomRooms/3x5/sk_rdm084_monky.dmm rename to _maps/r_rooms/3x5/sk_rdm084_monky.dmm index 1db808acc800..774604384677 100644 --- a/_maps/RandomRooms/3x5/sk_rdm084_monky.dmm +++ b/_maps/r_rooms/3x5/sk_rdm084_monky.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/flora/ausbushes/sunnybush, -/mob/living/carbon/monkey, +/mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/template_noop) "b" = ( @@ -14,7 +14,7 @@ /area/template_noop) "d" = ( /obj/structure/flora/ausbushes/ppflowers, -/mob/living/carbon/monkey, +/mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/template_noop) "e" = ( @@ -26,7 +26,7 @@ /obj/machinery/light{ dir = 4 }, -/mob/living/carbon/monkey{ +/mob/living/carbon/human/species/monkey{ name = "mankey" }, /turf/open/floor/grass, @@ -44,12 +44,12 @@ /area/template_noop) "i" = ( /obj/structure/flora/junglebush/b, -/mob/living/carbon/monkey, +/mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/template_noop) "j" = ( /obj/structure/flora/grass/jungle, -/mob/living/carbon/monkey, +/mob/living/carbon/human/species/monkey, /turf/open/floor/grass, /area/template_noop) "k" = ( @@ -58,6 +58,13 @@ }, /turf/open/floor/grass, /area/template_noop) +"J" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/template_noop) (1,1,1) = {" a @@ -69,7 +76,7 @@ h (2,1,1) = {" b e -h +J j i "} diff --git a/_maps/RandomRooms/3x5/sk_rdm085_hank.dmm b/_maps/r_rooms/3x5/sk_rdm085_hank.dmm similarity index 95% rename from _maps/RandomRooms/3x5/sk_rdm085_hank.dmm rename to _maps/r_rooms/3x5/sk_rdm085_hank.dmm index 694b05336f4f..9cdfaec3270f 100644 --- a/_maps/RandomRooms/3x5/sk_rdm085_hank.dmm +++ b/_maps/r_rooms/3x5/sk_rdm085_hank.dmm @@ -33,9 +33,6 @@ "i" = ( /obj/structure/bed, /obj/item/bedsheet/clown, -/obj/machinery/light_switch{ - pixel_x = 20 - }, /turf/open/floor/carpet/orange, /area/template_noop) "j" = ( diff --git a/_maps/RandomRooms/3x5/sk_rdm086_laststand.dmm b/_maps/r_rooms/3x5/sk_rdm086_laststand.dmm similarity index 77% rename from _maps/RandomRooms/3x5/sk_rdm086_laststand.dmm rename to _maps/r_rooms/3x5/sk_rdm086_laststand.dmm index 72797b3385f8..7364832487c8 100644 --- a/_maps/RandomRooms/3x5/sk_rdm086_laststand.dmm +++ b/_maps/r_rooms/3x5/sk_rdm086_laststand.dmm @@ -13,21 +13,18 @@ /turf/open/floor/plating, /area/template_noop) "d" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/effect/decal/cleanable/blood/tracks, /obj/item/ammo_casing/spent, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( /obj/item/ammo_casing/shotgun/improvised, @@ -42,9 +39,8 @@ /obj/effect/mob_spawn/human/corpse/assistant, /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/item/trash/raisins, @@ -52,9 +48,8 @@ /area/template_noop) "j" = ( /obj/item/trash/syndi_cakes, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( /obj/effect/decal/cleanable/blood/gibs/up, @@ -62,9 +57,8 @@ /area/template_noop) "T" = ( /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/3x5/sk_rdm087_junkcloset.dmm b/_maps/r_rooms/3x5/sk_rdm087_junkcloset.dmm similarity index 91% rename from _maps/RandomRooms/3x5/sk_rdm087_junkcloset.dmm rename to _maps/r_rooms/3x5/sk_rdm087_junkcloset.dmm index 94150c96834b..9c5e762fd7e4 100644 --- a/_maps/RandomRooms/3x5/sk_rdm087_junkcloset.dmm +++ b/_maps/r_rooms/3x5/sk_rdm087_junkcloset.dmm @@ -38,7 +38,7 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -51,7 +51,7 @@ /area/template_noop) "i" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "j" = ( @@ -62,7 +62,7 @@ /area/template_noop) "k" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x5/sk_rdm094_canisterroom.dmm b/_maps/r_rooms/3x5/sk_rdm094_canisterroom.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm094_canisterroom.dmm rename to _maps/r_rooms/3x5/sk_rdm094_canisterroom.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm095_durandwreck.dmm b/_maps/r_rooms/3x5/sk_rdm095_durandwreck.dmm similarity index 97% rename from _maps/RandomRooms/3x5/sk_rdm095_durandwreck.dmm rename to _maps/r_rooms/3x5/sk_rdm095_durandwreck.dmm index 1b7e5c6b4bd4..e30807d4eac9 100644 --- a/_maps/RandomRooms/3x5/sk_rdm095_durandwreck.dmm +++ b/_maps/r_rooms/3x5/sk_rdm095_durandwreck.dmm @@ -70,7 +70,7 @@ /area/template_noop) "l" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/effect/spawner/random/maintenance/four, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/template_noop) diff --git a/_maps/RandomRooms/3x5/sk_rdm112_chromosomes.dmm b/_maps/r_rooms/3x5/sk_rdm112_chromosomes.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm112_chromosomes.dmm rename to _maps/r_rooms/3x5/sk_rdm112_chromosomes.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm113_dissection.dmm b/_maps/r_rooms/3x5/sk_rdm113_dissection.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm113_dissection.dmm rename to _maps/r_rooms/3x5/sk_rdm113_dissection.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm114_emergencyoxy.dmm b/_maps/r_rooms/3x5/sk_rdm114_emergencyoxy.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm114_emergencyoxy.dmm rename to _maps/r_rooms/3x5/sk_rdm114_emergencyoxy.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm115_krebs.dmm b/_maps/r_rooms/3x5/sk_rdm115_krebs.dmm similarity index 91% rename from _maps/RandomRooms/3x5/sk_rdm115_krebs.dmm rename to _maps/r_rooms/3x5/sk_rdm115_krebs.dmm index df3d073a0375..765ac5bc98b0 100644 --- a/_maps/RandomRooms/3x5/sk_rdm115_krebs.dmm +++ b/_maps/r_rooms/3x5/sk_rdm115_krebs.dmm @@ -10,7 +10,7 @@ /area/template_noop) "c" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/template_noop) "d" = ( @@ -27,7 +27,7 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -35,7 +35,7 @@ /turf/open/floor/plating, /area/template_noop) "h" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/3x5/sk_rdm116_oreboxes.dmm b/_maps/r_rooms/3x5/sk_rdm116_oreboxes.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm116_oreboxes.dmm rename to _maps/r_rooms/3x5/sk_rdm116_oreboxes.dmm diff --git a/_maps/RandomRooms/3x5/sk_rdm137_tinyshrink.dmm b/_maps/r_rooms/3x5/sk_rdm137_tinyshrink.dmm similarity index 93% rename from _maps/RandomRooms/3x5/sk_rdm137_tinyshrink.dmm rename to _maps/r_rooms/3x5/sk_rdm137_tinyshrink.dmm index 4304a3ce93db..96c63145c498 100644 --- a/_maps/RandomRooms/3x5/sk_rdm137_tinyshrink.dmm +++ b/_maps/r_rooms/3x5/sk_rdm137_tinyshrink.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/table/wood, -/obj/item/storage/pill_bottle/happiness{ +/obj/item/storage/pill_bottle/happinesspsych{ pixel_x = 8; pixel_y = 3 }, @@ -73,10 +73,10 @@ /obj/item/tape/random, /obj/item/camera, /obj/item/camera_film, -/obj/item/storage/pill_bottle/happiness{ +/obj/item/storage/pill_bottle/happinesspsych{ pixel_x = -7 }, -/obj/item/storage/pill_bottle/happiness{ +/obj/item/storage/pill_bottle/happinesspsych{ pixel_x = -7 }, /obj/item/storage/pill_bottle/mannitol, diff --git a/_maps/RandomRooms/3x5/sk_rdm140_crossroads.dmm b/_maps/r_rooms/3x5/sk_rdm140_crossroads.dmm similarity index 100% rename from _maps/RandomRooms/3x5/sk_rdm140_crossroads.dmm rename to _maps/r_rooms/3x5/sk_rdm140_crossroads.dmm diff --git a/_maps/RandomRooms/5x3/sk_rdm015_boxclutter1.dmm b/_maps/r_rooms/5x3/sk_rdm015_boxclutter1.dmm similarity index 82% rename from _maps/RandomRooms/5x3/sk_rdm015_boxclutter1.dmm rename to _maps/r_rooms/5x3/sk_rdm015_boxclutter1.dmm index 65f126acaeb2..d2f68895178d 100644 --- a/_maps/RandomRooms/5x3/sk_rdm015_boxclutter1.dmm +++ b/_maps/r_rooms/5x3/sk_rdm015_boxclutter1.dmm @@ -5,7 +5,7 @@ /turf/open/floor/plating, /area/template_noop) "b" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "c" = ( @@ -19,11 +19,11 @@ /area/template_noop) "e" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -32,7 +32,7 @@ /area/template_noop) "h" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/5x3/sk_rdm042_deltaclutter2.dmm b/_maps/r_rooms/5x3/sk_rdm042_deltaclutter2.dmm similarity index 78% rename from _maps/RandomRooms/5x3/sk_rdm042_deltaclutter2.dmm rename to _maps/r_rooms/5x3/sk_rdm042_deltaclutter2.dmm index ecea2abeeeee..349df9d4ca92 100644 --- a/_maps/RandomRooms/5x3/sk_rdm042_deltaclutter2.dmm +++ b/_maps/r_rooms/5x3/sk_rdm042_deltaclutter2.dmm @@ -10,9 +10,8 @@ /obj/structure/easel, /obj/item/canvas/twentythree_twentythree, /obj/item/canvas/twentythree_twentythree, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "c" = ( /obj/effect/decal/cleanable/dirt, @@ -25,9 +24,8 @@ /obj/item/storage/crayons, /obj/item/storage/crayons, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "e" = ( /obj/structure/table/wood, @@ -37,9 +35,8 @@ /area/template_noop) "f" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "h" = ( /turf/open/floor/wood, @@ -47,26 +44,23 @@ "i" = ( /obj/structure/table/wood, /obj/item/camera, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "j" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "k" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ pixel_y = -32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "l" = ( /obj/machinery/photocopier, diff --git a/_maps/RandomRooms/5x3/sk_rdm043_deltaclutter3.dmm b/_maps/r_rooms/5x3/sk_rdm043_deltaclutter3.dmm similarity index 98% rename from _maps/RandomRooms/5x3/sk_rdm043_deltaclutter3.dmm rename to _maps/r_rooms/5x3/sk_rdm043_deltaclutter3.dmm index 7d1babeb52bc..1ed8ab3ef694 100644 --- a/_maps/RandomRooms/5x3/sk_rdm043_deltaclutter3.dmm +++ b/_maps/r_rooms/5x3/sk_rdm043_deltaclutter3.dmm @@ -35,7 +35,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/template_noop) diff --git a/_maps/RandomRooms/5x3/sk_rdm052_metaclutter1.dmm b/_maps/r_rooms/5x3/sk_rdm052_metaclutter1.dmm similarity index 88% rename from _maps/RandomRooms/5x3/sk_rdm052_metaclutter1.dmm rename to _maps/r_rooms/5x3/sk_rdm052_metaclutter1.dmm index 229ccc7b6f8a..c285a3f7ff75 100644 --- a/_maps/RandomRooms/5x3/sk_rdm052_metaclutter1.dmm +++ b/_maps/r_rooms/5x3/sk_rdm052_metaclutter1.dmm @@ -21,9 +21,8 @@ /turf/open/floor/plating, /area/template_noop) "e" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/structure/light_construct/small{ @@ -52,9 +51,8 @@ /obj/structure/chair{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/5x3/sk_rdm054_metaclutter3.dmm b/_maps/r_rooms/5x3/sk_rdm054_metaclutter3.dmm similarity index 84% rename from _maps/RandomRooms/5x3/sk_rdm054_metaclutter3.dmm rename to _maps/r_rooms/5x3/sk_rdm054_metaclutter3.dmm index 99d7b4b613d2..f8a060f79701 100644 --- a/_maps/RandomRooms/5x3/sk_rdm054_metaclutter3.dmm +++ b/_maps/r_rooms/5x3/sk_rdm054_metaclutter3.dmm @@ -6,7 +6,7 @@ name = "multi-belt" }, /obj/item/clothing/gloves/color/fyellow, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/structure/sink/kitchen{ desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; name = "old sink"; @@ -39,9 +39,8 @@ /area/template_noop) "d" = ( /obj/structure/easel, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/structure/closet, @@ -50,26 +49,25 @@ desc = "Takes you to a whole new level of thinking."; name = "Meta-Cider" }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "f" = ( /obj/item/mmi, /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( /obj/structure/rack, /obj/item/clothing/suit/poncho, /obj/item/clothing/head/sombrero, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "h" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/structure/rack, @@ -77,7 +75,7 @@ pixel_x = 3; pixel_y = 4 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/template_noop) diff --git a/_maps/RandomRooms/5x3/sk_rdm061_pubbyclutter4.dmm b/_maps/r_rooms/5x3/sk_rdm061_pubbyclutter4.dmm similarity index 86% rename from _maps/RandomRooms/5x3/sk_rdm061_pubbyclutter4.dmm rename to _maps/r_rooms/5x3/sk_rdm061_pubbyclutter4.dmm index 5755bbfe9975..814f341001b5 100644 --- a/_maps/RandomRooms/5x3/sk_rdm061_pubbyclutter4.dmm +++ b/_maps/r_rooms/5x3/sk_rdm061_pubbyclutter4.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/item/broken_bottle, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( @@ -12,9 +12,8 @@ /turf/open/floor/plating, /area/template_noop) "d" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/structure/closet, @@ -23,7 +22,7 @@ /area/template_noop) "f" = ( /obj/item/picket_sign, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -37,7 +36,7 @@ "i" = ( /obj/structure/closet, /obj/item/cigbutt/cigarbutt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "j" = ( diff --git a/_maps/RandomRooms/5x3/sk_rdm066_pubbybedroom.dmm b/_maps/r_rooms/5x3/sk_rdm066_pubbybedroom.dmm similarity index 100% rename from _maps/RandomRooms/5x3/sk_rdm066_pubbybedroom.dmm rename to _maps/r_rooms/5x3/sk_rdm066_pubbybedroom.dmm diff --git a/_maps/RandomRooms/5x3/sk_rdm068_pubbyclutter7.dmm b/_maps/r_rooms/5x3/sk_rdm068_pubbyclutter7.dmm similarity index 93% rename from _maps/RandomRooms/5x3/sk_rdm068_pubbyclutter7.dmm rename to _maps/r_rooms/5x3/sk_rdm068_pubbyclutter7.dmm index 96dd7f736f1e..36c786e95aee 100644 --- a/_maps/RandomRooms/5x3/sk_rdm068_pubbyclutter7.dmm +++ b/_maps/r_rooms/5x3/sk_rdm068_pubbyclutter7.dmm @@ -1,6 +1,6 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "b" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/structure/closet, /turf/open/floor/plating, /area/template_noop) @@ -14,7 +14,7 @@ amount = 5; layer = 3.3 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/assembly/prox_sensor{ pixel_y = 2 }, diff --git a/_maps/RandomRooms/5x3/sk_rdm071_pubbykitchen.dmm b/_maps/r_rooms/5x3/sk_rdm071_pubbykitchen.dmm similarity index 100% rename from _maps/RandomRooms/5x3/sk_rdm071_pubbykitchen.dmm rename to _maps/r_rooms/5x3/sk_rdm071_pubbykitchen.dmm diff --git a/_maps/RandomRooms/5x3/sk_rdm078_kiloclutter1.dmm b/_maps/r_rooms/5x3/sk_rdm078_kiloclutter1.dmm similarity index 88% rename from _maps/RandomRooms/5x3/sk_rdm078_kiloclutter1.dmm rename to _maps/r_rooms/5x3/sk_rdm078_kiloclutter1.dmm index a6bc02cde707..23e7fe2ae60d 100644 --- a/_maps/RandomRooms/5x3/sk_rdm078_kiloclutter1.dmm +++ b/_maps/r_rooms/5x3/sk_rdm078_kiloclutter1.dmm @@ -10,7 +10,7 @@ /obj/machinery/status_display/evac{ pixel_y = 32 }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/plating, /area/template_noop) "b" = ( /obj/effect/turf_decal/bot, @@ -29,9 +29,8 @@ /area/template_noop) "c" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/effect/turf_decal/bot, @@ -56,21 +55,13 @@ }, /turf/open/floor/plasteel/dark, /area/template_noop) -"f" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/template_noop) "g" = ( /obj/effect/decal/cleanable/blood/old, /obj/structure/chair/office{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/structure/table, @@ -83,9 +74,7 @@ "i" = ( /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/turf/open/floor/plating, /area/template_noop) "j" = ( /obj/effect/turf_decal/bot, @@ -98,19 +87,23 @@ }, /turf/open/floor/plating, /area/template_noop) +"k" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) (1,1,1) = {" a -f +c h "} (2,1,1) = {" b -c +k c "} (3,1,1) = {" -c +k g c "} @@ -121,6 +114,6 @@ i "} (5,1,1) = {" e -c +k j "} diff --git a/_maps/RandomRooms/5x3/sk_rdm080_cloner.dmm b/_maps/r_rooms/5x3/sk_rdm080_cloner.dmm similarity index 82% rename from _maps/RandomRooms/5x3/sk_rdm080_cloner.dmm rename to _maps/r_rooms/5x3/sk_rdm080_cloner.dmm index 88c3e9f61023..df52a7e220f8 100644 --- a/_maps/RandomRooms/5x3/sk_rdm080_cloner.dmm +++ b/_maps/r_rooms/5x3/sk_rdm080_cloner.dmm @@ -13,6 +13,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/template_noop) "b" = ( @@ -79,16 +80,15 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/template_noop) "h" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/structure/closet, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/template_noop) "j" = ( @@ -105,8 +105,27 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/template_noop) +"x" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/template_noop) +"O" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white, /area/template_noop) +"X" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) (1,1,1) = {" a @@ -116,20 +135,20 @@ i (2,1,1) = {" b g -j +h "} (3,1,1) = {" c -k -j +h +X "} (4,1,1) = {" k -f +x j "} (5,1,1) = {" e h -j +O "} diff --git a/_maps/RandomRooms/5x3/sk_rdm089_nastytrap.dmm b/_maps/r_rooms/5x3/sk_rdm089_nastytrap.dmm similarity index 82% rename from _maps/RandomRooms/5x3/sk_rdm089_nastytrap.dmm rename to _maps/r_rooms/5x3/sk_rdm089_nastytrap.dmm index bf0860fcd256..92356090178f 100644 --- a/_maps/RandomRooms/5x3/sk_rdm089_nastytrap.dmm +++ b/_maps/r_rooms/5x3/sk_rdm089_nastytrap.dmm @@ -4,9 +4,8 @@ /obj/machinery/disposal/delivery_chute{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "b" = ( /obj/machinery/conveyor/auto{ @@ -18,9 +17,8 @@ /area/template_noop) "c" = ( /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/structure/disposalpipe/trunk{ @@ -36,9 +34,8 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( /obj/structure/disposalpipe/trunk{ @@ -55,9 +52,8 @@ }, /obj/effect/decal/cleanable/blood/old, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/machinery/conveyor/auto{ @@ -74,9 +70,8 @@ /obj/machinery/disposal/delivery_chute{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "l" = ( /turf/open/floor/plating, diff --git a/_maps/RandomRooms/5x3/sk_rdm099_incompletefloor.dmm b/_maps/r_rooms/5x3/sk_rdm099_incompletefloor.dmm similarity index 96% rename from _maps/RandomRooms/5x3/sk_rdm099_incompletefloor.dmm rename to _maps/r_rooms/5x3/sk_rdm099_incompletefloor.dmm index e84270dcbfec..70b0e218e8fd 100644 --- a/_maps/RandomRooms/5x3/sk_rdm099_incompletefloor.dmm +++ b/_maps/r_rooms/5x3/sk_rdm099_incompletefloor.dmm @@ -34,9 +34,8 @@ /turf/open/floor/plasteel, /area/template_noop) "g" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/effect/decal/cleanable/oil/slippery, diff --git a/_maps/RandomRooms/5x3/sk_rdm101_minibreakroom.dmm b/_maps/r_rooms/5x3/sk_rdm101_minibreakroom.dmm similarity index 100% rename from _maps/RandomRooms/5x3/sk_rdm101_minibreakroom.dmm rename to _maps/r_rooms/5x3/sk_rdm101_minibreakroom.dmm diff --git a/_maps/RandomRooms/5x3/sk_rdm103_stroreroom.dmm b/_maps/r_rooms/5x3/sk_rdm103_stroreroom.dmm similarity index 95% rename from _maps/RandomRooms/5x3/sk_rdm103_stroreroom.dmm rename to _maps/r_rooms/5x3/sk_rdm103_stroreroom.dmm index 84d0d5abd174..cff9a3cd6280 100644 --- a/_maps/RandomRooms/5x3/sk_rdm103_stroreroom.dmm +++ b/_maps/r_rooms/5x3/sk_rdm103_stroreroom.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/template_noop) "b" = ( diff --git a/_maps/r_rooms/5x3/sk_rdm104_pills.dmm b/_maps/r_rooms/5x3/sk_rdm104_pills.dmm new file mode 100644 index 000000000000..1ab62487418e --- /dev/null +++ b/_maps/r_rooms/5x3/sk_rdm104_pills.dmm @@ -0,0 +1,101 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/template_noop) +"d" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/mob_spawn/human/corpse/assistant, +/obj/item/storage/pill_bottle, +/turf/open/floor/plating, +/area/template_noop) +"f" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = -6 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = -11; + pixel_y = -3 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = 13; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/template_noop) +"k" = ( +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating, +/area/template_noop) +"r" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/pill/maintenance{ + pixel_y = -5 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = 4 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/template_noop) +"C" = ( +/turf/open/floor/plating, +/area/template_noop) +"I" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/pill/maintenance, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = 14; + pixel_y = 6 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_y = 7 + }, +/obj/item/reagent_containers/pill/maintenance{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +C +k +a +"} +(2,1,1) = {" +a +f +k +"} +(3,1,1) = {" +C +r +d +"} +(4,1,1) = {" +C +I +C +"} +(5,1,1) = {" +C +C +C +"} diff --git a/_maps/RandomRooms/5x3/sk_rdm117_chestburst.dmm b/_maps/r_rooms/5x3/sk_rdm117_chestburst.dmm similarity index 100% rename from _maps/RandomRooms/5x3/sk_rdm117_chestburst.dmm rename to _maps/r_rooms/5x3/sk_rdm117_chestburst.dmm diff --git a/_maps/RandomRooms/5x3/sk_rdm118_gloveroom.dmm b/_maps/r_rooms/5x3/sk_rdm118_gloveroom.dmm similarity index 82% rename from _maps/RandomRooms/5x3/sk_rdm118_gloveroom.dmm rename to _maps/r_rooms/5x3/sk_rdm118_gloveroom.dmm index 2e8e317595ac..050c9b8a76c1 100644 --- a/_maps/RandomRooms/5x3/sk_rdm118_gloveroom.dmm +++ b/_maps/r_rooms/5x3/sk_rdm118_gloveroom.dmm @@ -1,7 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/color/fyellow/old, /turf/open/floor/plasteel/grimy, @@ -12,7 +12,7 @@ dir = 1; icon_state = "bulb-broken" }, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/grimy, /area/template_noop) @@ -22,34 +22,34 @@ /area/template_noop) "d" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/grimy, /area/template_noop) "f" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/grimy, /area/template_noop) "g" = ( /obj/structure/table, /obj/machinery/light/small/broken, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/color/fyellow/old, /turf/open/floor/plasteel/grimy, /area/template_noop) "y" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/color/yellow, /turf/open/floor/plasteel/grimy, /area/template_noop) "H" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/gloves/color/fyellow, /turf/open/floor/plasteel/grimy, diff --git a/_maps/RandomRooms/5x3/sk_rdm119_spareparts.dmm b/_maps/r_rooms/5x3/sk_rdm119_spareparts.dmm similarity index 93% rename from _maps/RandomRooms/5x3/sk_rdm119_spareparts.dmm rename to _maps/r_rooms/5x3/sk_rdm119_spareparts.dmm index 7a71137ed8d1..c6fabe78e563 100644 --- a/_maps/RandomRooms/5x3/sk_rdm119_spareparts.dmm +++ b/_maps/r_rooms/5x3/sk_rdm119_spareparts.dmm @@ -29,9 +29,8 @@ icon_state = "tube-broken" }, /obj/item/stock_parts/cell/hyper, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "e" = ( /obj/structure/table, @@ -44,9 +43,8 @@ /turf/open/floor/plating, /area/template_noop) "g" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/structure/rack, diff --git a/_maps/RandomRooms/5x3/sk_rdm138_magicroom.dmm b/_maps/r_rooms/5x3/sk_rdm138_magicroom.dmm similarity index 86% rename from _maps/RandomRooms/5x3/sk_rdm138_magicroom.dmm rename to _maps/r_rooms/5x3/sk_rdm138_magicroom.dmm index 97c5ad0a3f1b..ee62dd50be4f 100644 --- a/_maps/RandomRooms/5x3/sk_rdm138_magicroom.dmm +++ b/_maps/r_rooms/5x3/sk_rdm138_magicroom.dmm @@ -34,8 +34,8 @@ /obj/machinery/iv_drip{ name = "clothes rack" }, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/circuit, /area/template_noop) "D" = ( @@ -53,8 +53,8 @@ /obj/machinery/iv_drip{ name = "clothes rack" }, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/circuit/red, /area/template_noop) diff --git a/_maps/RandomRooms/5x4/sk_rdm012_boxbar.dmm b/_maps/r_rooms/5x4/sk_rdm012_boxbar.dmm similarity index 84% rename from _maps/RandomRooms/5x4/sk_rdm012_boxbar.dmm rename to _maps/r_rooms/5x4/sk_rdm012_boxbar.dmm index 7396c353a46b..c5eddb2ab74a 100644 --- a/_maps/RandomRooms/5x4/sk_rdm012_boxbar.dmm +++ b/_maps/r_rooms/5x4/sk_rdm012_boxbar.dmm @@ -17,13 +17,13 @@ "e" = ( /obj/structure/table/wood, /obj/item/soap/nanotrasen, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "g" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/maintenance/four, +/obj/item/storage/ashtray, +/obj/effect/spawner/random/maintenance/four, /turf/open/floor/wood, /area/template_noop) "h" = ( @@ -35,9 +35,8 @@ /turf/open/floor/plasteel, /area/template_noop) "i" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "j" = ( /obj/effect/decal/cleanable/blood/old, diff --git a/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm b/_maps/r_rooms/5x4/sk_rdm021_boxdinner.dmm similarity index 95% rename from _maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm rename to _maps/r_rooms/5x4/sk_rdm021_boxdinner.dmm index 32caba69b3ff..2ab7b3bc6ccf 100644 --- a/_maps/RandomRooms/5x4/sk_rdm021_boxdinner.dmm +++ b/_maps/r_rooms/5x4/sk_rdm021_boxdinner.dmm @@ -12,7 +12,7 @@ /area/template_noop) "c" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "d" = ( diff --git a/_maps/RandomRooms/5x4/sk_rdm026_boxsurgery.dmm b/_maps/r_rooms/5x4/sk_rdm026_boxsurgery.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm026_boxsurgery.dmm rename to _maps/r_rooms/5x4/sk_rdm026_boxsurgery.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm029_deltabar.dmm b/_maps/r_rooms/5x4/sk_rdm029_deltabar.dmm similarity index 88% rename from _maps/RandomRooms/5x4/sk_rdm029_deltabar.dmm rename to _maps/r_rooms/5x4/sk_rdm029_deltabar.dmm index c01f58e93534..46c64169e4d2 100644 --- a/_maps/RandomRooms/5x4/sk_rdm029_deltabar.dmm +++ b/_maps/r_rooms/5x4/sk_rdm029_deltabar.dmm @@ -51,9 +51,8 @@ "g" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/vomit/old, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "h" = ( /turf/open/floor/plating, @@ -65,10 +64,10 @@ /area/template_noop) "j" = ( /obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/spawner/random/maintenance, +/obj/item/storage/ashtray, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "k" = ( /obj/structure/table/wood/poker, @@ -81,7 +80,7 @@ "l" = ( /obj/structure/table/wood/poker, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/wood, /area/template_noop) "m" = ( @@ -90,9 +89,8 @@ /area/template_noop) "n" = ( /obj/structure/chair/stool/bar, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "o" = ( /obj/structure/chair/stool/bar, diff --git a/_maps/RandomRooms/5x4/sk_rdm030_deltalounge.dmm b/_maps/r_rooms/5x4/sk_rdm030_deltalounge.dmm similarity index 90% rename from _maps/RandomRooms/5x4/sk_rdm030_deltalounge.dmm rename to _maps/r_rooms/5x4/sk_rdm030_deltalounge.dmm index f943141bdc56..97436826f63b 100644 --- a/_maps/RandomRooms/5x4/sk_rdm030_deltalounge.dmm +++ b/_maps/r_rooms/5x4/sk_rdm030_deltalounge.dmm @@ -3,7 +3,7 @@ /turf/open/floor/plating, /area/template_noop) "b" = ( -/obj/structure/chair/wood/red{ +/obj/structure/chair/wood{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -12,7 +12,7 @@ "c" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/light/small{ dir = 1; icon_state = "bulb" @@ -20,7 +20,7 @@ /turf/open/floor/plasteel/dark, /area/template_noop) "d" = ( -/obj/structure/chair/wood/red{ +/obj/structure/chair/wood{ dir = 8 }, /turf/open/floor/plating, @@ -31,7 +31,7 @@ /turf/open/floor/plating, /area/template_noop) "f" = ( -/obj/structure/chair/wood/red, +/obj/structure/chair/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/template_noop) @@ -68,7 +68,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/item/toy/cards/deck/syndicate{ pixel_y = 6 }, @@ -86,11 +86,11 @@ pixel_y = 8 }, /obj/item/stack/spacecash/c100, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/green, /area/template_noop) "n" = ( -/obj/structure/chair/wood/red{ +/obj/structure/chair/wood{ dir = 1 }, /obj/effect/decal/cleanable/dirt, diff --git a/_maps/RandomRooms/5x4/sk_rdm032_deltaEVA.dmm b/_maps/r_rooms/5x4/sk_rdm032_deltaEVA.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm032_deltaEVA.dmm rename to _maps/r_rooms/5x4/sk_rdm032_deltaEVA.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm034_deltadetective.dmm b/_maps/r_rooms/5x4/sk_rdm034_deltadetective.dmm similarity index 94% rename from _maps/RandomRooms/5x4/sk_rdm034_deltadetective.dmm rename to _maps/r_rooms/5x4/sk_rdm034_deltadetective.dmm index 122675a6bf4d..5b50d01d164c 100644 --- a/_maps/RandomRooms/5x4/sk_rdm034_deltadetective.dmm +++ b/_maps/r_rooms/5x4/sk_rdm034_deltadetective.dmm @@ -1,8 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "b" = ( /obj/structure/chair/office, @@ -46,7 +45,7 @@ }, /obj/item/folder/red, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/red, /area/template_noop) "h" = ( @@ -96,11 +95,6 @@ "m" = ( /turf/open/floor/plasteel/dark, /area/template_noop) -"n" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/template_noop) "o" = ( /obj/structure/rack, /obj/item/storage/briefcase{ @@ -158,7 +152,7 @@ r (4,1,1) = {" i i -n +a s "} (5,1,1) = {" diff --git a/_maps/RandomRooms/5x4/sk_rdm035_deltasurgery.dmm b/_maps/r_rooms/5x4/sk_rdm035_deltasurgery.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm035_deltasurgery.dmm rename to _maps/r_rooms/5x4/sk_rdm035_deltasurgery.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm038_deltadressing.dmm b/_maps/r_rooms/5x4/sk_rdm038_deltadressing.dmm similarity index 97% rename from _maps/RandomRooms/5x4/sk_rdm038_deltadressing.dmm rename to _maps/r_rooms/5x4/sk_rdm038_deltadressing.dmm index 4deb7be1ab2d..8bb591986d12 100644 --- a/_maps/RandomRooms/5x4/sk_rdm038_deltadressing.dmm +++ b/_maps/r_rooms/5x4/sk_rdm038_deltadressing.dmm @@ -48,7 +48,7 @@ }, /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -117,7 +117,7 @@ /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/shoes/jackboots, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, /obj/structure/sign/poster/contraband/random{ pixel_y = -32 }, diff --git a/_maps/RandomRooms/5x4/sk_rdm041_deltagamble.dmm b/_maps/r_rooms/5x4/sk_rdm041_deltagamble.dmm similarity index 79% rename from _maps/RandomRooms/5x4/sk_rdm041_deltagamble.dmm rename to _maps/r_rooms/5x4/sk_rdm041_deltagamble.dmm index e4f0dfbc33c8..1094697d54f9 100644 --- a/_maps/RandomRooms/5x4/sk_rdm041_deltagamble.dmm +++ b/_maps/r_rooms/5x4/sk_rdm041_deltagamble.dmm @@ -44,26 +44,17 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "l" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "m" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/template_noop) -"n" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "o" = ( /obj/machinery/computer/slot_machine, @@ -71,14 +62,13 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "Z" = ( /obj/structure/table/wood, /obj/item/toy/cards/deck, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/carpet/green, /area/template_noop) @@ -104,7 +94,7 @@ c d c j -n +l "} (5,1,1) = {" j diff --git a/_maps/RandomRooms/5x4/sk_rdm047_metarobotics.dmm b/_maps/r_rooms/5x4/sk_rdm047_metarobotics.dmm similarity index 89% rename from _maps/RandomRooms/5x4/sk_rdm047_metarobotics.dmm rename to _maps/r_rooms/5x4/sk_rdm047_metarobotics.dmm index 7179f00a61bf..38956fde5f77 100644 --- a/_maps/RandomRooms/5x4/sk_rdm047_metarobotics.dmm +++ b/_maps/r_rooms/5x4/sk_rdm047_metarobotics.dmm @@ -24,7 +24,7 @@ /obj/structure/light_construct{ dir = 1 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "f" = ( @@ -36,7 +36,7 @@ amount = 34 }, /obj/item/extinguisher/mini, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "h" = ( @@ -50,7 +50,7 @@ /obj/item/stack/sheet/glass{ amount = 12 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "j" = ( @@ -59,7 +59,7 @@ pixel_y = 16 }, /obj/item/hand_labeler, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "k" = ( @@ -70,7 +70,7 @@ }, /obj/item/wrench, /obj/item/flashlight/seclite, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "l" = ( @@ -80,7 +80,7 @@ "m" = ( /obj/structure/rack, /obj/item/clothing/glasses/sunglasses, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/stack/rods{ amount = 23 }, diff --git a/_maps/RandomRooms/5x4/sk_rdm048_metatheatre.dmm b/_maps/r_rooms/5x4/sk_rdm048_metatheatre.dmm similarity index 84% rename from _maps/RandomRooms/5x4/sk_rdm048_metatheatre.dmm rename to _maps/r_rooms/5x4/sk_rdm048_metatheatre.dmm index d9146356e456..9316cbca37fa 100644 --- a/_maps/RandomRooms/5x4/sk_rdm048_metatheatre.dmm +++ b/_maps/r_rooms/5x4/sk_rdm048_metatheatre.dmm @@ -1,14 +1,14 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/template_noop) "b" = ( /obj/structure/closet/crate{ opened = 1 }, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/template_noop) "d" = ( @@ -18,8 +18,8 @@ "e" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/template_noop) "g" = ( @@ -33,8 +33,8 @@ /area/template_noop) "i" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/template_noop) "j" = ( diff --git a/_maps/RandomRooms/5x4/sk_rdm049_metakitchen.dmm b/_maps/r_rooms/5x4/sk_rdm049_metakitchen.dmm similarity index 90% rename from _maps/RandomRooms/5x4/sk_rdm049_metakitchen.dmm rename to _maps/r_rooms/5x4/sk_rdm049_metakitchen.dmm index 60d04ef91bde..7dabeddd6ed6 100644 --- a/_maps/RandomRooms/5x4/sk_rdm049_metakitchen.dmm +++ b/_maps/r_rooms/5x4/sk_rdm049_metakitchen.dmm @@ -34,14 +34,12 @@ /obj/structure/table, /obj/item/kitchen/rollingpin, /obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "g" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/effect/decal/cleanable/food/flour, @@ -78,9 +76,8 @@ /obj/item/stack/rods{ amount = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "p" = ( /obj/structure/table, diff --git a/_maps/RandomRooms/5x4/sk_rdm055_metamedical.dmm b/_maps/r_rooms/5x4/sk_rdm055_metamedical.dmm similarity index 95% rename from _maps/RandomRooms/5x4/sk_rdm055_metamedical.dmm rename to _maps/r_rooms/5x4/sk_rdm055_metamedical.dmm index b2c2e9258749..a13987281cce 100644 --- a/_maps/RandomRooms/5x4/sk_rdm055_metamedical.dmm +++ b/_maps/r_rooms/5x4/sk_rdm055_metamedical.dmm @@ -70,14 +70,12 @@ /turf/open/floor/plating, /area/template_noop) "j" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "k" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "l" = ( /obj/structure/rack, diff --git a/_maps/r_rooms/5x4/sk_rdm067_pubbysurgery.dmm b/_maps/r_rooms/5x4/sk_rdm067_pubbysurgery.dmm new file mode 100644 index 000000000000..1c2fdca612e1 --- /dev/null +++ b/_maps/r_rooms/5x4/sk_rdm067_pubbysurgery.dmm @@ -0,0 +1,134 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plating, +/area/template_noop) +"b" = ( +/obj/structure/frame/computer, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"c" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/template_noop) +"d" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/circuitboard/computer/operating, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"e" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair, +/obj/item/reagent_containers/blood/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"f" = ( +/obj/effect/spawner/random/medical/organs, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"g" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"h" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/template_noop) +"i" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"j" = ( +/obj/structure/bed, +/turf/open/floor/plating, +/area/template_noop) +"k" = ( +/turf/open/floor/plating{ + luminosity = 2 + }, +/area/template_noop) +"l" = ( +/obj/item/ectoplasm, +/turf/open/floor/plating{ + luminosity = 2 + }, +/area/template_noop) +"m" = ( +/turf/open/floor/plating, +/area/template_noop) +"n" = ( +/obj/structure/table/glass, +/obj/item/hemostat, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/template_noop) +"o" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/template_noop) +"p" = ( +/obj/structure/table/glass, +/obj/item/weldingtool/mini, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/template_noop) +"r" = ( +/obj/effect/spawner/random/medical/organs, +/obj/structure/closet/crate, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +a +f +k +n +"} +(2,1,1) = {" +b +g +l +o +"} +(3,1,1) = {" +c +h +m +m +"} +(4,1,1) = {" +d +i +m +p +"} +(5,1,1) = {" +e +j +j +r +"} diff --git a/_maps/RandomRooms/5x4/sk_rdm075_kilosurgery.dmm b/_maps/r_rooms/5x4/sk_rdm075_kilosurgery.dmm similarity index 86% rename from _maps/RandomRooms/5x4/sk_rdm075_kilosurgery.dmm rename to _maps/r_rooms/5x4/sk_rdm075_kilosurgery.dmm index d514b5a97001..3191a0d0bc87 100644 --- a/_maps/RandomRooms/5x4/sk_rdm075_kilosurgery.dmm +++ b/_maps/r_rooms/5x4/sk_rdm075_kilosurgery.dmm @@ -7,9 +7,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/box, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "b" = ( /obj/effect/decal/cleanable/blood/old, @@ -19,15 +18,13 @@ pixel_y = 28 }, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "c" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/effect/decal/cleanable/dirt, @@ -39,9 +36,8 @@ /obj/item/radio/intercom{ pixel_x = 28 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "f" = ( /obj/effect/decal/cleanable/dirt, @@ -49,9 +45,8 @@ dir = 4 }, /mob/living/simple_animal/hostile/cat_butcherer, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "h" = ( /obj/effect/decal/cleanable/dirt, @@ -59,9 +54,8 @@ dir = 8 }, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "i" = ( /obj/structure/table/optable, @@ -135,9 +129,8 @@ dir = 8 }, /obj/item/circuitboard/computer/operating, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "n" = ( /obj/effect/decal/cleanable/dirt, @@ -193,9 +186,8 @@ "p" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "q" = ( /obj/effect/decal/cleanable/dirt, @@ -204,9 +196,8 @@ dir = 8 }, /obj/item/shard, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) "r" = ( /obj/effect/decal/cleanable/dirt, @@ -224,9 +215,8 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/template_noop) (1,1,1) = {" diff --git a/_maps/RandomRooms/5x4/sk_rdm076_kilohauntedlibrary.dmm b/_maps/r_rooms/5x4/sk_rdm076_kilohauntedlibrary.dmm similarity index 90% rename from _maps/RandomRooms/5x4/sk_rdm076_kilohauntedlibrary.dmm rename to _maps/r_rooms/5x4/sk_rdm076_kilohauntedlibrary.dmm index 84e5f3b99515..6a38f189c70b 100644 --- a/_maps/RandomRooms/5x4/sk_rdm076_kilohauntedlibrary.dmm +++ b/_maps/r_rooms/5x4/sk_rdm076_kilohauntedlibrary.dmm @@ -30,9 +30,8 @@ color = "#c45c57"; dir = 2 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "d" = ( /obj/machinery/light/small{ @@ -53,9 +52,8 @@ icon_state = "sofacorner" }, /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "f" = ( /obj/effect/turf_decal/tile/neutral, @@ -93,9 +91,8 @@ pixel_x = 4; pixel_y = 4 }, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "j" = ( /obj/structure/chair/sofa/left{ @@ -104,9 +101,8 @@ icon_state = "sofaend_left" }, /obj/effect/decal/cleanable/blood/old, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "k" = ( /obj/structure/table/wood, @@ -143,9 +139,8 @@ /turf/open/floor/wood, /area/template_noop) "n" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/template_noop) "o" = ( /obj/structure/bookcase/random/fiction, @@ -176,11 +171,6 @@ /obj/item/pen, /turf/open/floor/wood, /area/template_noop) -"t" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, -/area/template_noop) (1,1,1) = {" a @@ -197,7 +187,7 @@ p (3,1,1) = {" c h -t +n g "} (4,1,1) = {" diff --git a/_maps/RandomRooms/5x4/sk_rdm090_tinybarbershop.dmm b/_maps/r_rooms/5x4/sk_rdm090_tinybarbershop.dmm similarity index 98% rename from _maps/RandomRooms/5x4/sk_rdm090_tinybarbershop.dmm rename to _maps/r_rooms/5x4/sk_rdm090_tinybarbershop.dmm index 24a832d1ada0..35064b0a10b0 100644 --- a/_maps/RandomRooms/5x4/sk_rdm090_tinybarbershop.dmm +++ b/_maps/r_rooms/5x4/sk_rdm090_tinybarbershop.dmm @@ -74,7 +74,7 @@ amount = 2 }, /obj/item/stack/sheet/iron/ten, -/obj/item/twohanded/required/chainsaw, +/obj/item/chainsaw, /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/item/clothing/head/wig/random, /obj/item/radio, diff --git a/_maps/RandomRooms/5x4/sk_rdm096_comproom.dmm b/_maps/r_rooms/5x4/sk_rdm096_comproom.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm096_comproom.dmm rename to _maps/r_rooms/5x4/sk_rdm096_comproom.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm097_firemanroom.dmm b/_maps/r_rooms/5x4/sk_rdm097_firemanroom.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm097_firemanroom.dmm rename to _maps/r_rooms/5x4/sk_rdm097_firemanroom.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm120_cheese.dmm b/_maps/r_rooms/5x4/sk_rdm120_cheese.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm120_cheese.dmm rename to _maps/r_rooms/5x4/sk_rdm120_cheese.dmm diff --git a/_maps/RandomRooms/5x4/sk_rdm121_honkaccident.dmm b/_maps/r_rooms/5x4/sk_rdm121_honkaccident.dmm similarity index 85% rename from _maps/RandomRooms/5x4/sk_rdm121_honkaccident.dmm rename to _maps/r_rooms/5x4/sk_rdm121_honkaccident.dmm index bfefbc560e1e..9296628736c5 100644 --- a/_maps/RandomRooms/5x4/sk_rdm121_honkaccident.dmm +++ b/_maps/r_rooms/5x4/sk_rdm121_honkaccident.dmm @@ -5,30 +5,31 @@ /turf/open/floor/plasteel, /area/template_noop) "b" = ( +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/template_noop) "c" = ( /obj/item/grown/bananapeel, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/template_noop) "d" = ( /obj/structure/mecha_wreckage/honker, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1" + }, /area/template_noop) "e" = ( /obj/effect/decal/cleanable/ash, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/template_noop) "f" = ( @@ -48,9 +49,9 @@ /obj/machinery/light/broken{ dir = 4 }, +/obj/effect/mapping_helpers/burnt_floor, /turf/open/floor/plating{ - heat_capacity = 1e+006; - icon_state = "panelscorched" + heat_capacity = 1e+006 }, /area/template_noop) "h" = ( diff --git a/_maps/RandomRooms/5x4/sk_rdm122_musicroom.dmm b/_maps/r_rooms/5x4/sk_rdm122_musicroom.dmm similarity index 96% rename from _maps/RandomRooms/5x4/sk_rdm122_musicroom.dmm rename to _maps/r_rooms/5x4/sk_rdm122_musicroom.dmm index 0b744a51736c..c2737ec94bf2 100644 --- a/_maps/RandomRooms/5x4/sk_rdm122_musicroom.dmm +++ b/_maps/r_rooms/5x4/sk_rdm122_musicroom.dmm @@ -24,9 +24,8 @@ }, /area/template_noop) "c" = ( -/turf/open/floor/plating{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/template_noop) "d" = ( /obj/structure/table/wood, diff --git a/_maps/RandomRooms/5x4/sk_rdm123_nanitechamber.dmm b/_maps/r_rooms/5x4/sk_rdm123_nanitechamber.dmm similarity index 100% rename from _maps/RandomRooms/5x4/sk_rdm123_nanitechamber.dmm rename to _maps/r_rooms/5x4/sk_rdm123_nanitechamber.dmm diff --git a/_maps/r_rooms/5x4/sk_rdm124_oldcryoroom.dmm b/_maps/r_rooms/5x4/sk_rdm124_oldcryoroom.dmm new file mode 100644 index 000000000000..818842bf5a82 --- /dev/null +++ b/_maps/r_rooms/5x4/sk_rdm124_oldcryoroom.dmm @@ -0,0 +1,147 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"b" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes/end, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"c" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"d" = ( +/obj/structure/showcase/machinery/cloning_pod, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) +"e" = ( +/obj/structure/showcase/horrific_experiment, +/obj/effect/turf_decal/bot_red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"f" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"g" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/template_noop) +"i" = ( +/obj/item/wrench/medical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/template_noop) +"j" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"k" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/end{ + dir = 4; + icon_state = "warn_end" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"l" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"m" = ( +/obj/machinery/stasis, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken{ + dir = 4 + }, +/turf/open/floor/plating, +/area/template_noop) +"n" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"o" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"p" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/showroomfloor, +/area/template_noop) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/template_noop) + +(1,1,1) = {" +a +f +k +n +"} +(2,1,1) = {" +b +g +l +o +"} +(3,1,1) = {" +c +s +f +f +"} +(4,1,1) = {" +d +i +s +q +"} +(5,1,1) = {" +e +j +m +p +"} diff --git a/_maps/RandomRuins/AnywhereRuins/fountain_hall.dmm b/_maps/r_ruins/anywhere/fountain_hall.dmm similarity index 100% rename from _maps/RandomRuins/AnywhereRuins/fountain_hall.dmm rename to _maps/r_ruins/anywhere/fountain_hall.dmm diff --git a/_maps/RandomRuins/AnywhereRuins/golem_ship.dmm b/_maps/r_ruins/anywhere/golem_ship.dmm similarity index 100% rename from _maps/RandomRuins/AnywhereRuins/golem_ship.dmm rename to _maps/r_ruins/anywhere/golem_ship.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_asteroid.dmm b/_maps/r_ruins/icemoon/icemoon_surface_asteroid.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_surface_asteroid.dmm rename to _maps/r_ruins/icemoon/icemoon_surface_asteroid.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm b/_maps/r_ruins/icemoon/icemoon_surface_engioutpost.dmm similarity index 97% rename from _maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm rename to _maps/r_ruins/icemoon/icemoon_surface_engioutpost.dmm index 48c6fc4b5065..786f4caa624d 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_surface_engioutpost.dmm +++ b/_maps/r_ruins/icemoon/icemoon_surface_engioutpost.dmm @@ -148,12 +148,6 @@ }, /turf/open/floor/plating/snowed/icemoon, /area/icemoon/surface/outdoors) -"aI" = ( -/obj/item/pda/engineering{ - note = "To-do: Check on singularity status. Get a pint at eat. Nag the research manager for RCDs." - }, -/turf/open/floor/plating/asteroid/snow/icemoon, -/area/icemoon/surface/outdoors) "aJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/icemoon, @@ -491,7 +485,7 @@ }, /obj/machinery/power/apc/unlocked{ dir = 4; - pixel_x = 26 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/icemoon, @@ -543,11 +537,6 @@ /obj/structure/cable, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) -"bF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, -/turf/open/floor/plasteel/icemoon, -/area/icemoon/surface/outdoors) "bG" = ( /obj/effect/turf_decal/trimline/yellow/filled/warning{ dir = 4 @@ -569,16 +558,6 @@ /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) "bI" = ( -/obj/item/pda/clear{ - note = "Chief's asked me to check on the machinery inside PDA. He's also worried about Build, but i'm sure Harry'll handle the construction. I just need to work on Internals. Fuck i'm hungry" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8; - icon_state = "pipe11-2" - }, -/turf/open/floor/plasteel/icemoon, -/area/icemoon/surface/outdoors) -"bJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 8; icon_state = "pipe11-2" @@ -847,10 +826,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, /turf/open/floor/plasteel/icemoon, /area/icemoon/surface/outdoors) -"cy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, -/turf/open/floor/plasteel/icemoon, -/area/icemoon/surface/outdoors) "cz" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ dir = 4; @@ -1357,7 +1332,7 @@ aa aa aa aa -aI +aa aa be aa @@ -1676,7 +1651,7 @@ aj aS bn aj -bJ +bI cj aB aB @@ -1697,7 +1672,7 @@ aw aT bo aj -bJ +bI aj aj cK @@ -1716,7 +1691,7 @@ aj aj aj aU -bF +bp aj bX ck @@ -1738,10 +1713,10 @@ aj aj aj bq -bF +bp bY -bF -bF +bp +bp cL cX di @@ -1822,7 +1797,7 @@ aa aa ae bt -bJ +bI ae aa aa diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_hotsprings.dmm b/_maps/r_ruins/icemoon/icemoon_surface_hotsprings.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_surface_hotsprings.dmm rename to _maps/r_ruins/icemoon/icemoon_surface_hotsprings.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_lust.dmm b/_maps/r_ruins/icemoon/icemoon_surface_lust.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_surface_lust.dmm rename to _maps/r_ruins/icemoon/icemoon_surface_lust.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm b/_maps/r_ruins/icemoon/icemoon_surface_mining_site.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_surface_mining_site.dmm rename to _maps/r_ruins/icemoon/icemoon_surface_mining_site.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm b/_maps/r_ruins/icemoon/icemoon_underground_abandoned_village.dmm similarity index 99% rename from _maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_abandoned_village.dmm index f9da2871f278..f1a57e963220 100644 --- a/_maps/RandomRuins/IceRuins/icemoon_underground_abandoned_village.dmm +++ b/_maps/r_ruins/icemoon/icemoon_underground_abandoned_village.dmm @@ -447,13 +447,13 @@ /turf/open/floor/carpet, /area/ruin/powered) "Pp" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/holofloor/wood, /area/ruin/powered) "PQ" = ( /obj/effect/decal/cleanable/blood/splatter, /mob/living/simple_animal/hostile/illusion{ - deathmessage = "disperses into the air in a cloud of red mist, you feel slightly more at ease."; + death_message = "disperses into the air in a cloud of red mist, you feel slightly more at ease."; desc = "You can't quite make out what you're seeing."; faction = list("cult"); health = 500; diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_bathhouse.dmm b/_maps/r_ruins/icemoon/icemoon_underground_bathhouse.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_bathhouse.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_bathhouse.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm b/_maps/r_ruins/icemoon/icemoon_underground_hermit.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_hermit.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_hermit.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_lavaland.dmm b/_maps/r_ruins/icemoon/icemoon_underground_lavaland.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_lavaland.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_lavaland.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_library.dmm b/_maps/r_ruins/icemoon/icemoon_underground_library.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_library.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_library.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_mining_site.dmm b/_maps/r_ruins/icemoon/icemoon_underground_mining_site.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_mining_site.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_mining_site.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_puzzle.dmm b/_maps/r_ruins/icemoon/icemoon_underground_puzzle.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_puzzle.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_puzzle.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_wendigo_cave.dmm b/_maps/r_ruins/icemoon/icemoon_underground_wendigo_cave.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_wendigo_cave.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_wendigo_cave.dmm diff --git a/_maps/RandomRuins/IceRuins/icemoon_underground_wrath.dmm b/_maps/r_ruins/icemoon/icemoon_underground_wrath.dmm similarity index 100% rename from _maps/RandomRuins/IceRuins/icemoon_underground_wrath.dmm rename to _maps/r_ruins/icemoon/icemoon_underground_wrath.dmm diff --git a/_maps/RandomRuins/LavaRuins/doom_slayer_lavaland.dmm b/_maps/r_ruins/lavaland/doom_slayer_lavaland.dmm similarity index 98% rename from _maps/RandomRuins/LavaRuins/doom_slayer_lavaland.dmm rename to _maps/r_ruins/lavaland/doom_slayer_lavaland.dmm index 2c0b9b50bb43..632b0258b906 100644 --- a/_maps/RandomRuins/LavaRuins/doom_slayer_lavaland.dmm +++ b/_maps/r_ruins/lavaland/doom_slayer_lavaland.dmm @@ -12,9 +12,6 @@ /obj/item/storage/box/lethalshot, /turf/open/floor/pod/dark, /area/ruin/powered) -"e" = ( -/turf/open/floor/pod/dark, -/area/ruin/powered) "f" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/pod/dark, @@ -45,9 +42,6 @@ /obj/item/gun/energy/kinetic_accelerator, /turf/open/floor/pod/dark, /area/ruin/powered) -"m" = ( -/turf/open/floor/pod/dark, -/area/ruin/powered) "n" = ( /obj/item/reagent_containers/hypospray/medipen/survival, /turf/open/floor/pod/dark, @@ -251,7 +245,7 @@ a a b M -e +c d b c @@ -742,7 +736,7 @@ c c c l -m +c n o c diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm b/_maps/r_ruins/lavaland/lavaland_biodome_beach.dmm similarity index 98% rename from _maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm rename to _maps/r_ruins/lavaland/lavaland_biodome_beach.dmm index 6d5b55fef059..13df99262af9 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_biodome_beach.dmm +++ b/_maps/r_ruins/lavaland/lavaland_biodome_beach.dmm @@ -248,9 +248,8 @@ /obj/structure/girder{ damage_deflection = 22 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/powered/beach) "ch" = ( /obj/machinery/light{ @@ -381,10 +380,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel{ - icon = 'icons/misc/beach.dmi'; - icon_state = "sand" - }, +/turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "hq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -570,10 +566,7 @@ dir = 4 }, /obj/effect/turf_decal/sand, -/turf/open/floor/plasteel{ - icon = 'icons/misc/beach.dmi'; - icon_state = "sand" - }, +/turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "qc" = ( /obj/structure/mirror{ @@ -812,9 +805,8 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/ruin/powered/beach) "yB" = ( /mob/living/simple_animal/crab{ @@ -1060,9 +1052,8 @@ /obj/item/toy/beach_ball/holoball/dodgeball, /obj/item/toy/beach_ball/holoball/dodgeball, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/powered/beach) "Hn" = ( /obj/machinery/light, @@ -1132,7 +1123,7 @@ /turf/open/floor/wood, /area/ruin/powered/beach) "IL" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, @@ -1285,8 +1276,8 @@ /area/ruin/powered/beach) "PN" = ( /obj/effect/turf_decal/sand, -/obj/machinery/jukebox, /obj/item/coin/gold, +/obj/machinery/turntable, /turf/open/floor/sepia, /area/ruin/powered/beach) "PY" = ( @@ -1404,9 +1395,8 @@ /turf/open/floor/plating/beach/sand, /area/ruin/powered/beach) "Ui" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/powered/beach) "Uk" = ( /obj/structure/sign/barsign, @@ -1434,9 +1424,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/ruin/powered/beach) "Vf" = ( /obj/machinery/light, @@ -1479,11 +1468,6 @@ "VO" = ( /turf/open/floor/pod/dark, /area/ruin/powered/beach) -"Wa" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/ruin/powered/beach) "Wd" = ( /obj/structure/table/wood, /obj/item/reagent_containers/pill/happy, @@ -1692,7 +1676,7 @@ aj aj aj as -Wa +Ui as pE mh diff --git a/_maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm b/_maps/r_ruins/lavaland/lavaland_biodome_clown_planet.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_biodome_clown_planet.dmm rename to _maps/r_ruins/lavaland/lavaland_biodome_clown_planet.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_strong_rock.dmm b/_maps/r_ruins/lavaland/lavaland_strong_rock.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_strong_rock.dmm rename to _maps/r_ruins/lavaland/lavaland_strong_rock.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm b/_maps/r_ruins/lavaland/lavaland_surface_ash_walker1.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_ash_walker1.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_ash_walker1.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm b/_maps/r_ruins/lavaland/lavaland_surface_biodome_winter.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_biodome_winter.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_biodome_winter.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.dmm b/_maps/r_ruins/lavaland/lavaland_surface_blooddrunk1.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk1.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_blooddrunk1.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.dmm b/_maps/r_ruins/lavaland/lavaland_surface_blooddrunk2.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk2.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_blooddrunk2.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.dmm b/_maps/r_ruins/lavaland/lavaland_surface_blooddrunk3.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_blooddrunk3.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_blooddrunk3.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm b/_maps/r_ruins/lavaland/lavaland_surface_cube.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_cube.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_cube.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm b/_maps/r_ruins/lavaland/lavaland_surface_cultaltar.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_cultaltar.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_cultaltar.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm b/_maps/r_ruins/lavaland/lavaland_surface_dead_ratvar.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_dead_ratvar.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_dead_ratvar.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm b/_maps/r_ruins/lavaland/lavaland_surface_elephant_graveyard.dmm similarity index 99% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_elephant_graveyard.dmm index 6c886d959d4c..f000dac8beb7 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_elephant_graveyard.dmm +++ b/_maps/r_ruins/lavaland/lavaland_surface_elephant_graveyard.dmm @@ -159,7 +159,7 @@ /area/ruin/unpowered/elephant_graveyard) "aG" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plating/asteroid/basalt/wasteland, /area/ruin/unpowered/elephant_graveyard) "aH" = ( diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_elite_tumor.dmm b/_maps/r_ruins/lavaland/lavaland_surface_elite_tumor.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_elite_tumor.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_elite_tumor.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm b/_maps/r_ruins/lavaland/lavaland_surface_envy.dmm similarity index 94% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_envy.dmm index d8ec5f9b4ae9..9f87a0143a02 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_envy.dmm +++ b/_maps/r_ruins/lavaland/lavaland_surface_envy.dmm @@ -29,9 +29,8 @@ icon_state = "mirror_broke"; pixel_x = 28 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/ruin/unpowered) "g" = ( /obj/effect/decal/cleanable/blood/tracks, @@ -83,9 +82,8 @@ /turf/open/floor/plating, /area/ruin/unpowered) "n" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/unpowered) "o" = ( /obj/structure/mirror{ @@ -94,9 +92,8 @@ icon_state = "mirror_broke"; pixel_x = -28 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/unpowered) "p" = ( /obj/machinery/door/airlock/hatch, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gaia.dmm b/_maps/r_ruins/lavaland/lavaland_surface_gaia.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_gaia.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_gaia.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm b/_maps/r_ruins/lavaland/lavaland_surface_gluttony.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_gluttony.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_gluttony.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm b/_maps/r_ruins/lavaland/lavaland_surface_greed.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_greed.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_greed.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm b/_maps/r_ruins/lavaland/lavaland_surface_hermit.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_hermit.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_hermit.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm b/_maps/r_ruins/lavaland/lavaland_surface_hierophant.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_hierophant.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_hierophant.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm b/_maps/r_ruins/lavaland/lavaland_surface_pizzaparty.dmm similarity index 97% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_pizzaparty.dmm index faba7ec9ca00..35d1928cc720 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_pizzaparty.dmm +++ b/_maps/r_ruins/lavaland/lavaland_surface_pizzaparty.dmm @@ -57,7 +57,7 @@ /area/ruin/unpowered) "k" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/pizzaparty, +/obj/effect/spawner/random/food_or_drink/pizzaparty, /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood{ initial_gas_mix = "o2=14;n2=30;TEMP=293.15" @@ -68,7 +68,7 @@ dir = 4 }, /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/pizzaparty, +/obj/effect/spawner/random/food_or_drink/pizzaparty, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb/cobweb2, /turf/open/floor/wood{ @@ -153,7 +153,7 @@ /area/ruin/unpowered) "x" = ( /obj/structure/table/wood, -/obj/effect/spawner/lootdrop/pizzaparty, +/obj/effect/spawner/random/food_or_drink/pizzaparty, /turf/open/floor/wood{ initial_gas_mix = "o2=14;n2=30;TEMP=293.15" }, diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm b/_maps/r_ruins/lavaland/lavaland_surface_pride.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_pride.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_pride.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_puzzle.dmm b/_maps/r_ruins/lavaland/lavaland_surface_puzzle.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_puzzle.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_puzzle.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm b/_maps/r_ruins/lavaland/lavaland_surface_random_ripley.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_random_ripley.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_random_ripley.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm b/_maps/r_ruins/lavaland/lavaland_surface_seed_vault.dmm similarity index 97% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_seed_vault.dmm index 948b526be6e8..9b5fdf8aa593 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_seed_vault.dmm +++ b/_maps/r_ruins/lavaland/lavaland_surface_seed_vault.dmm @@ -185,10 +185,10 @@ /turf/open/floor/vault, /area/ruin/powered/seedvault) "aB" = ( -/obj/effect/spawner/lootdrop/seed_vault, +/obj/effect/spawner/random/food_or_drink/seed_vault, /obj/structure/closet/crate/hydroponics, -/obj/effect/spawner/lootdrop/seed_vault, -/obj/effect/spawner/lootdrop/seed_vault, +/obj/effect/spawner/random/food_or_drink/seed_vault, +/obj/effect/spawner/random/food_or_drink/seed_vault, /obj/item/vending_refill/hydronutrients, /obj/item/vending_refill/hydroseeds, /turf/open/floor/vault, @@ -402,6 +402,7 @@ dir = 8 }, /obj/structure/table/reinforced, +/obj/machinery/smartfridge/disks, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/seedvault) "bb" = ( @@ -481,6 +482,7 @@ dir = 8 }, /obj/structure/table/reinforced, +/obj/machinery/plantgenes, /turf/open/floor/mineral/plastitanium, /area/ruin/powered/seedvault) "bj" = ( @@ -652,7 +654,7 @@ /turf/closed/wall/r_wall, /area/lavaland/surface/outdoors) "ca" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 4 }, /turf/open/floor/plasteel/freezer, @@ -667,18 +669,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/freezer, /area/ruin/powered/seedvault) -"qQ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) "sv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/vault, /area/ruin/powered/seedvault) -"Bb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/freezer, -/area/ruin/powered/seedvault) "DA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -842,8 +836,8 @@ aa ac ap Vn -Bb -Bb +pW +pW ah av am @@ -952,13 +946,13 @@ ac ae al Vn -Bb -Bb -Bb -Bb -Bb +pW +pW +pW +pW +pW aH -Bb +pW DA Uz aV @@ -1040,8 +1034,8 @@ ac ai al Vn -Bb -Bb +pW +pW ah aF ac diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm b/_maps/r_ruins/lavaland/lavaland_surface_sloth.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_sloth.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_sloth.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm b/_maps/r_ruins/lavaland/lavaland_surface_survivalpod.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_survivalpod.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_survivalpod.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm b/_maps/r_ruins/lavaland/lavaland_surface_swarmer_crash.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_swarmer_crash.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_swarmer_crash.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm b/_maps/r_ruins/lavaland/lavaland_surface_syndicate_base1.dmm similarity index 98% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_syndicate_base1.dmm index fb8d346688d2..5d328ebcd6a8 100644 --- a/_maps/RandomRuins/LavaRuins/lavaland_surface_syndicate_base1.dmm +++ b/_maps/r_ruins/lavaland/lavaland_surface_syndicate_base1.dmm @@ -40,10 +40,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) "ag" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -178,8 +176,7 @@ "cP" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_o2_out"; + chamber_id = "syndie_lavaland_o2_out"; internal_pressure_bound = 5066; name = "Plasma Out" }, @@ -346,9 +343,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/cargo) "dL" = ( -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/structure/closet/crate, /obj/item/extinguisher{ pixel_x = -5; @@ -497,10 +493,8 @@ pixel_x = -3 }, /obj/item/reagent_containers/dropper, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/item/screwdriver/nuke{ pixel_y = 18 @@ -600,7 +594,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Cargo Bay APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/closet/emcloset/anchored, /obj/effect/decal/cleanable/dirt, @@ -1035,10 +1029,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/testlab) "eN" = ( -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, @@ -1290,7 +1282,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Virology APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1319,7 +1311,7 @@ "fk" = ( /obj/machinery/power/apc/syndicate{ name = "Experimentation Lab APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -1469,10 +1461,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/structure/table, /obj/item/clothing/suit/hazardvest, /obj/item/clothing/suit/hazardvest, @@ -1569,9 +1559,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/main) @@ -2033,10 +2022,8 @@ /turf/open/floor/plasteel/white, /area/ruin/unpowered/syndicate_lava_base/virology) "gU" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/structure/sink{ dir = 4; pixel_x = -12; @@ -2314,10 +2301,8 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/main) "hx" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/decal/cleanable/dirt, @@ -2458,9 +2443,8 @@ /obj/structure/table/wood, /obj/item/ammo_box/magazine/m9mm, /obj/item/ammo_box/magazine/sniper_rounds, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hN" = ( @@ -2483,9 +2467,8 @@ "hQ" = ( /obj/structure/table/wood, /obj/item/ammo_box/magazine/m9mm, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "hR" = ( @@ -2857,9 +2840,8 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/dormitories) "iB" = ( -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral{ @@ -3055,7 +3037,7 @@ }, /obj/machinery/power/apc/syndicate{ name = "Dormitories APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/tile/neutral, /obj/structure/cable, @@ -3258,9 +3240,8 @@ /obj/effect/mob_spawn/human/lavaland_syndicate{ dir = 4 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jo" = ( @@ -3281,15 +3262,12 @@ /obj/effect/mob_spawn/human/lavaland_syndicate{ dir = 8 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jr" = ( -/obj/effect/spawner/randomsnackvend{ - hacked = 1 - }, +/obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red{ @@ -3384,9 +3362,7 @@ /turf/open/floor/plasteel/grimy, /area/ruin/unpowered/syndicate_lava_base/dormitories) "jD" = ( -/obj/effect/spawner/randomcolavend{ - hacked = 1 - }, +/obj/effect/spawner/random/vending/colavend, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -3459,10 +3435,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, @@ -3762,10 +3736,8 @@ /turf/open/floor/plasteel/dark, /area/ruin/unpowered/syndicate_lava_base/bar) "kq" = ( -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/vending/coffee{ extended_inventory = 1 }, @@ -3870,7 +3842,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Engineering APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{ dir = 9 @@ -3908,8 +3880,7 @@ /area/ruin/unpowered/syndicate_lava_base/engineering) "kE" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - frequency = 1442; - id_tag = "syndie_lavaland_co2_out"; + chamber_id = "syndie_lavaland_co2_out"; internal_pressure_bound = 5066; name = "CO2 out" }, @@ -4096,7 +4067,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "la" = ( -/obj/machinery/portable_atmospherics/canister/tier_3, +/obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "lb" = ( @@ -4171,9 +4142,8 @@ pixel_x = -6; pixel_y = 6 }, -/turf/open/floor/wood{ - icon_state = "wood-broken4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ruin/unpowered/syndicate_lava_base/bar) "lj" = ( /obj/machinery/door/window/southleft{ @@ -4417,10 +4387,8 @@ }, /area/ruin/unpowered/syndicate_lava_base/medbay) "lL" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/light/small{ dir = 8 }, @@ -4481,10 +4449,8 @@ /turf/open/floor/plating, /area/ruin/unpowered/syndicate_lava_base/arrivals) "lU" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/structure/chair/stool, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -4607,10 +4573,8 @@ dir = 8; pixel_x = 11 }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/medbay) @@ -4728,7 +4692,7 @@ /obj/machinery/light/small, /obj/machinery/power/apc/syndicate{ name = "Bar APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -4973,7 +4937,7 @@ pixel_x = 6; pixel_y = -40 }, -/obj/machinery/portable_atmospherics/canister/tier_3, +/obj/machinery/portable_atmospherics/canister, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "nf" = ( @@ -5170,7 +5134,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Arrival Hallway APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/red{ dir = 1 @@ -5286,10 +5250,8 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/ruin/unpowered/syndicate_lava_base/engineering) "nH" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/light/small{ dir = 8 }, @@ -5492,9 +5454,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -5553,7 +5514,7 @@ /obj/machinery/power/apc/syndicate{ dir = 4; name = "Medbay APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -5653,7 +5614,7 @@ }, /obj/machinery/power/apc/syndicate{ name = "Telecommunications APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -5835,8 +5796,7 @@ "pJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_n2_out"; + chamber_id = "syndie_lavaland_n2_out"; internal_pressure_bound = 5066; name = "Nitrogen Out" }, @@ -5922,8 +5882,7 @@ "yg" = ( /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_o2_out"; + chamber_id = "syndie_lavaland_o2_out"; internal_pressure_bound = 5066; name = "Oxygen Out" }, @@ -5988,7 +5947,7 @@ /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) "Ed" = ( -/obj/machinery/portable_atmospherics/canister/tier_3, +/obj/machinery/portable_atmospherics/canister, /obj/machinery/atmospherics/components/unary/portables_connector/visible, /turf/open/floor/plasteel, /area/ruin/unpowered/syndicate_lava_base/engineering) diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm b/_maps/r_ruins/lavaland/lavaland_surface_ufo_crash.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_ufo_crash.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_ufo_crash.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_wizard.dmm b/_maps/r_ruins/lavaland/lavaland_surface_wizard.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_wizard.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_wizard.dmm diff --git a/_maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm b/_maps/r_ruins/lavaland/lavaland_surface_xeno_nest.dmm similarity index 100% rename from _maps/RandomRuins/LavaRuins/lavaland_surface_xeno_nest.dmm rename to _maps/r_ruins/lavaland/lavaland_surface_xeno_nest.dmm diff --git a/_maps/r_ruins/space/DJstation.dmm b/_maps/r_ruins/space/DJstation.dmm new file mode 100644 index 000000000000..85f3f77d4fa3 --- /dev/null +++ b/_maps/r_ruins/space/DJstation.dmm @@ -0,0 +1,769 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"e" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"h" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/crate, +/obj/item/gps/spaceruin, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"i" = ( +/obj/structure/reagent_dispensers/plumbed{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"n" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"o" = ( +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/modular_map_root/djstation{ + key = "radioroom" + }, +/turf/template_noop, +/area/template_noop) +"v" = ( +/turf/closed/wall, +/area/ruin/space/djstation/service) +"w" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"x" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"y" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"A" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"C" = ( +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"D" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"E" = ( +/obj/machinery/power/solar/fake, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/ruin/space/djstation/solars) +"G" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate, +/obj/item/clothing/head/ushanka, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"I" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"M" = ( +/obj/structure/cable, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"N" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"O" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/template_noop, +/area/ruin/space/djstation/solars) +"P" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"R" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"S" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"U" = ( +/obj/modular_map_root/djstation{ + key = "solars" + }, +/turf/template_noop, +/area/template_noop) +"V" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"W" = ( +/obj/machinery/door/airlock/external{ + name = "Ruskie DJ Station" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"X" = ( +/obj/machinery/door/airlock/external{ + name = "Ruskie DJ Station" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"Y" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/ruin/space/djstation/service) +"Z" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) + +(1,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +e +e +e +o +o +o +o +o +"} +(2,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +e +o +e +o +e +o +o +o +o +o +"} +(3,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +E +E +O +E +E +o +e +o +o +o +"} +(4,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +o +e +o +O +o +e +o +e +o +o +o +"} +(5,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +E +E +O +E +E +e +e +o +o +o +"} +(6,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +o +e +o +O +o +e +o +e +o +o +o +"} +(7,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +E +E +O +E +E +o +e +o +o +o +"} +(8,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +e +o +O +o +e +e +e +e +o +o +"} +(9,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +v +y +P +y +v +o +o +e +e +e +"} +(10,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +v +y +y +v +v +h +M +A +v +v +o +e +o +e +"} +(11,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +w +A +A +D +A +C +C +A +V +v +v +v +Z +e +"} +(12,1,1) = {" +o +o +o +o +o +o +o +o +o +o +s +v +C +Y +v +A +A +R +S +C +W +n +X +Z +Z +"} +(13,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +x +N +N +x +I +N +C +A +C +v +v +v +Z +e +"} +(14,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +v +y +y +v +v +i +A +G +v +v +o +e +o +e +"} +(15,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +e +e +v +y +P +y +v +o +o +e +e +e +"} +(16,1,1) = {" +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +o +U +o +o +o +o +e +o +o +"} +(17,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 +"} +(18,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 +"} +(19,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 +"} +(20,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 +"} +(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 +"} +(22,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 +"} +(23,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/r_ruins/space/DJstation/kitchen_1.dmm b/_maps/r_ruins/space/DJstation/kitchen_1.dmm new file mode 100644 index 000000000000..f2fada80ac68 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/kitchen_1.dmm @@ -0,0 +1,170 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"n" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"o" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"u" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"J" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"L" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"N" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"O" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/turf/template_noop, +/area/template_noop) +"P" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"V" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"W" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) + +(1,1,1) = {" +V +V +V +V +V +V +V +a +V +a +"} +(2,1,1) = {" +V +a +V +a +a +a +V +a +V +a +"} +(3,1,1) = {" +V +V +L +N +N +N +L +V +V +a +"} +(4,1,1) = {" +V +a +L +l +P +u +L +V +V +a +"} +(5,1,1) = {" +a +a +L +W +P +n +L +V +V +V +"} +(6,1,1) = {" +a +a +L +o +P +P +L +a +V +a +"} +(7,1,1) = {" +a +a +a +a +O +J +L +a +V +V +"} diff --git a/_maps/r_ruins/space/DJstation/kitchen_2.dmm b/_maps/r_ruins/space/DJstation/kitchen_2.dmm new file mode 100644 index 000000000000..f3c2827cc40d --- /dev/null +++ b/_maps/r_ruins/space/DJstation/kitchen_2.dmm @@ -0,0 +1,156 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"e" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"h" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"k" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"o" = ( +/obj/structure/table_frame, +/obj/machinery/light/broken/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"B" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = 2 + }, +/turf/template_noop, +/area/space/nearstation) +"I" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"J" = ( +/obj/modular_map_connector, +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden, +/turf/template_noop, +/area/template_noop) +"L" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"O" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden, +/turf/template_noop, +/area/template_noop) +"V" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"X" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation) + +(1,1,1) = {" +a +e +V +B +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +V +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +V +V +a +k +a +a +a +a +"} +(4,1,1) = {" +a +a +k +V +a +V +a +a +a +a +"} +(5,1,1) = {" +a +a +h +k +V +V +V +V +V +I +"} +(6,1,1) = {" +a +a +L +o +k +k +X +a +e +a +"} +(7,1,1) = {" +a +a +a +a +O +J +L +a +V +V +"} diff --git a/_maps/r_ruins/space/DJstation/kitchen_3.dmm b/_maps/r_ruins/space/DJstation/kitchen_3.dmm new file mode 100644 index 000000000000..275d41a0a842 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/kitchen_3.dmm @@ -0,0 +1,122 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"l" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plastic, +/area/ruin/space/djstation) +"o" = ( +/turf/template_noop, +/area/ruin/space/djstation) +"J" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/turf/template_noop, +/area/ruin/space/djstation) +"L" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"N" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/ruin/space/djstation) +"P" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/obj/item/food/burger/appendix, +/turf/open/floor/plastic, +/area/ruin/space/djstation) +"S" = ( +/obj/structure/rack, +/obj/item/food/burger/cheese, +/turf/open/floor/plastic, +/area/ruin/space/djstation) +"V" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"W" = ( +/turf/open/floor/plastic, +/area/ruin/space/djstation) +"Y" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) + +(1,1,1) = {" +V +V +V +V +V +V +V +V +V +a +"} +(2,1,1) = {" +V +a +V +a +a +a +V +a +V +a +"} +(3,1,1) = {" +V +V +L +L +L +L +L +V +V +a +"} +(4,1,1) = {" +a +V +Y +l +P +S +L +a +V +V +"} +(5,1,1) = {" +a +a +L +W +W +W +Y +a +V +a +"} +(6,1,1) = {" +a +a +o +o +J +N +L +a +V +V +"} diff --git a/_maps/r_ruins/space/DJstation/kitchen_4.dmm b/_maps/r_ruins/space/DJstation/kitchen_4.dmm new file mode 100644 index 000000000000..e416a2faae12 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/kitchen_4.dmm @@ -0,0 +1,251 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"c" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"f" = ( +/obj/machinery/door/window{ + name = "Kitchen Coldroom" + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"g" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/reagent_containers/food/condiment/flour{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"h" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"i" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"j" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"k" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"z" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"A" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"F" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"J" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"L" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"M" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"N" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"O" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"Q" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/mining, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"R" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"T" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/turf/template_noop, +/area/template_noop) +"V" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"W" = ( +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"Y" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/ruin/space/djstation) +"Z" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +b +b +b +b +b +b +b +b +b +b +b +a +"} +(2,1,1) = {" +b +a +a +b +a +a +b +a +a +b +a +a +"} +(3,1,1) = {" +b +a +L +L +L +N +N +L +N +N +L +a +"} +(4,1,1) = {" +b +b +L +Q +h +W +W +Y +W +M +L +b +"} +(5,1,1) = {" +b +a +L +A +f +W +R +g +W +V +N +b +"} +(6,1,1) = {" +b +b +L +k +h +W +i +z +W +F +N +a +"} +(7,1,1) = {" +b +a +L +L +L +c +O +J +j +L +L +b +"} +(8,1,1) = {" +b +a +a +a +L +W +W +W +W +L +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +T +Z +N +a +L +a +"} diff --git a/_maps/r_ruins/space/DJstation/quarters_1.dmm b/_maps/r_ruins/space/DJstation/quarters_1.dmm new file mode 100644 index 000000000000..563bb7ca7d82 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/quarters_1.dmm @@ -0,0 +1,168 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/machinery/duct, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/djstation) +"f" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"i" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"k" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/djstation) +"p" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/turf/template_noop, +/area/template_noop) +"u" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/djstation) +"v" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/duct, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"B" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"F" = ( +/obj/structure/curtain, +/obj/machinery/shower{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"J" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"M" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/djstation) +"R" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"V" = ( +/obj/machinery/duct, +/turf/closed/wall, +/area/ruin/space/djstation) +"W" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"Z" = ( +/turf/open/floor/plasteel/grimy, +/area/ruin/space/djstation) + +(1,1,1) = {" +a +a +a +a +p +B +i +a +i +W +"} +(2,1,1) = {" +a +a +i +k +Z +u +i +F +i +a +"} +(3,1,1) = {" +a +a +i +M +Z +d +V +v +i +W +"} +(4,1,1) = {" +W +a +i +k +Z +Z +J +R +i +a +"} +(5,1,1) = {" +W +W +i +f +f +f +i +i +i +a +"} +(6,1,1) = {" +W +a +W +a +a +a +a +W +a +a +"} +(7,1,1) = {" +W +W +W +W +W +W +W +W +a +a +"} diff --git a/_maps/r_ruins/space/DJstation/quarters_2.dmm b/_maps/r_ruins/space/DJstation/quarters_2.dmm new file mode 100644 index 000000000000..6a7915e0a0e7 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/quarters_2.dmm @@ -0,0 +1,139 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"f" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"i" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"k" = ( +/obj/machinery/shower{ + pixel_y = 12 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"p" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/turf/template_noop, +/area/template_noop) +"v" = ( +/obj/structure/bed/maint, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"B" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"J" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"M" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"V" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"W" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"Z" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) + +(1,1,1) = {" +a +a +a +a +p +B +J +a +W +W +"} +(2,1,1) = {" +a +a +i +k +Z +Z +v +i +a +a +"} +(3,1,1) = {" +W +a +i +M +f +d +V +i +a +W +"} +(4,1,1) = {" +W +W +i +J +i +i +J +i +a +a +"} +(5,1,1) = {" +W +a +W +a +a +a +a +W +a +a +"} +(6,1,1) = {" +W +W +W +W +W +W +W +W +W +a +"} diff --git a/_maps/r_ruins/space/DJstation/quarters_3.dmm b/_maps/r_ruins/space/DJstation/quarters_3.dmm new file mode 100644 index 000000000000..a0b215ca74e2 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/quarters_3.dmm @@ -0,0 +1,264 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"d" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"f" = ( +/obj/machinery/duct, +/turf/open/floor/wood/tile, +/area/ruin/space/djstation) +"h" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"i" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"p" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"t" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood/tile, +/area/ruin/space/djstation) +"u" = ( +/obj/machinery/duct, +/obj/machinery/door/airlock/silver{ + name = "Bedroom" + }, +/turf/open/floor/wood/tile, +/area/ruin/space/djstation) +"v" = ( +/obj/structure/window/plasma, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/ruin/space/djstation) +"x" = ( +/obj/structure/table/reinforced, +/obj/machinery/duct, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"z" = ( +/obj/structure/bed, +/obj/item/bedsheet/rainbow, +/turf/open/floor/carpet/purple, +/area/ruin/space/djstation) +"A" = ( +/turf/open/floor/wood/tile, +/area/ruin/space/djstation) +"B" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/obj/modular_map_connector, +/turf/template_noop, +/area/template_noop) +"C" = ( +/obj/machinery/duct, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"D" = ( +/turf/open/floor/carpet/purple, +/area/ruin/space/djstation) +"H" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"J" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"L" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/carpet/purple, +/area/ruin/space/djstation) +"N" = ( +/obj/structure/window/plasma, +/obj/structure/table/wood, +/turf/open/floor/carpet/purple, +/area/ruin/space/djstation) +"T" = ( +/obj/structure/dresser, +/obj/machinery/duct, +/turf/open/floor/wood/tile, +/area/ruin/space/djstation) +"U" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"V" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"W" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"X" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink{ + pixel_y = 17 + }, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/djstation) +"Z" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) + +(1,1,1) = {" +a +a +a +a +a +p +B +J +a +i +W +"} +(2,1,1) = {" +a +a +W +i +Z +Z +Z +V +h +i +a +"} +(3,1,1) = {" +a +a +W +i +Z +V +d +V +h +i +W +"} +(4,1,1) = {" +a +J +J +i +u +i +i +i +i +i +a +"} +(5,1,1) = {" +a +J +L +v +f +A +i +s +c +i +a +"} +(6,1,1) = {" +a +J +D +D +f +t +i +X +C +i +a +"} +(7,1,1) = {" +a +J +z +N +T +f +U +H +x +i +a +"} +(8,1,1) = {" +a +J +J +i +i +i +i +i +i +i +a +"} +(9,1,1) = {" +a +a +a +a +W +a +a +a +W +a +a +"} +(10,1,1) = {" +a +a +a +W +W +W +W +W +W +W +a +"} diff --git a/_maps/r_ruins/space/DJstation/quarters_4.dmm b/_maps/r_ruins/space/DJstation/quarters_4.dmm new file mode 100644 index 000000000000..6ebd1551c0db --- /dev/null +++ b/_maps/r_ruins/space/DJstation/quarters_4.dmm @@ -0,0 +1,181 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/open/floor/carpet/airless, +/area/ruin/space/djstation) +"g" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"h" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/template_noop, +/area/space/nearstation) +"i" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"p" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden, +/turf/template_noop, +/area/template_noop) +"q" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"t" = ( +/turf/open/floor/plasteel/freezer/airless, +/area/ruin/space/djstation) +"w" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"x" = ( +/obj/item/bedsheet/random, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"A" = ( +/obj/structure/bed, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"C" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"E" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) +"M" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"P" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Rest Room" + }, +/obj/modular_map_connector, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/barricade/wooden, +/turf/template_noop, +/area/template_noop) +"U" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"W" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/template_noop, +/area/template_noop) +"Z" = ( +/obj/item/stack/sheet/mineral/wood{ + pixel_x = 4; + pixel_y = -10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/ruin/space/djstation) + +(1,1,1) = {" +a +a +a +a +p +P +i +a +i +C +"} +(2,1,1) = {" +a +a +i +A +Z +b +i +t +i +a +"} +(3,1,1) = {" +a +U +U +U +w +x +g +E +i +W +"} +(4,1,1) = {" +a +a +U +a +U +a +U +U +q +a +"} +(5,1,1) = {" +a +a +a +a +U +a +a +U +w +a +"} +(6,1,1) = {" +a +a +a +a +U +a +a +M +a +a +"} +(7,1,1) = {" +a +a +M +h +U +M +a +a +a +a +"} diff --git a/_maps/r_ruins/space/DJstation/radioroom_1.dmm b/_maps/r_ruins/space/DJstation/radioroom_1.dmm new file mode 100644 index 000000000000..d6fc84d0de80 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/radioroom_1.dmm @@ -0,0 +1,193 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"b" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"g" = ( +/obj/modular_map_root/djstation{ + key = "kitchen" + }, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"h" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -10; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"i" = ( +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"k" = ( +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"n" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Pirate Radio Listening Channel" + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"q" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"r" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/duct, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"v" = ( +/obj/structure/table, +/obj/item/paper/fluff/ruins/djstation, +/obj/structure/window, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"w" = ( +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"y" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"z" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Pirate Radio Listening Channel" + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"A" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"H" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"J" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"K" = ( +/obj/modular_map_connector, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"M" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + freerange = 1; + listening = 0; + name = "Pirate Radio Broadcast Channel" + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plasteel/vaporwave, +/area/ruin/space/djstation) +"U" = ( +/obj/machinery/duct, +/obj/modular_map_root/djstation{ + key = "quarters" + }, +/turf/open/floor/plasteel, +/area/ruin/space/djstation) +"Y" = ( +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +y +y +a +a +w +g +Y +a +"} +(2,1,1) = {" +y +Y +Y +q +h +w +J +a +"} +(3,1,1) = {" +y +Y +Y +a +z +n +A +A +"} +(4,1,1) = {" +y +y +y +a +H +v +w +K +"} +(5,1,1) = {" +y +Y +Y +a +k +M +b +r +"} +(6,1,1) = {" +y +Y +Y +q +w +b +i +a +"} +(7,1,1) = {" +y +y +a +a +w +U +Y +a +"} diff --git a/_maps/r_ruins/space/DJstation/radioroom_2.dmm b/_maps/r_ruins/space/DJstation/radioroom_2.dmm new file mode 100644 index 000000000000..ae7637f354f5 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/radioroom_2.dmm @@ -0,0 +1,379 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"b" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"c" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck/cas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = -5; + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/ruin/space/djstation) +"d" = ( +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/ruin/space/djstation) +"e" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"f" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"g" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/dark{ + dir = 8 + }, +/area/ruin/space/djstation) +"j" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/duct, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"k" = ( +/obj/modular_map_root/djstation{ + key = "kitchen" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"m" = ( +/obj/machinery/duct, +/obj/modular_map_root/djstation{ + key = "quarters" + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"n" = ( +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"o" = ( +/turf/template_noop, +/area/template_noop) +"p" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/ruin/space/djstation) +"q" = ( +/obj/item/paper/fluff/ruins/djstation, +/obj/item/pen/fountain, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"r" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"u" = ( +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Pirate Radio Listening Channel" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"v" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"w" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + dir = 4 + }, +/area/ruin/space/djstation) +"x" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"y" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/ruin/space/djstation) +"z" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + dir = 8 + }, +/area/ruin/space/djstation) +"C" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/duct, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"F" = ( +/obj/item/clipboard, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"I" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"K" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"L" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"N" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"O" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/ruin/space/djstation) +"Q" = ( +/obj/item/pen/red{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/pen/blue{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"R" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) +"T" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/duct, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/ruin/space/djstation) +"U" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + freerange = 1; + listening = 0; + name = "Pirate Radio Broadcast Channel" + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"V" = ( +/obj/modular_map_connector, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) +"W" = ( +/turf/open/floor/wood/parquet, +/area/ruin/space/djstation) +"X" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ruin/space/djstation) + +(1,1,1) = {" +v +v +v +o +o +a +R +n +k +o +a +"} +(2,1,1) = {" +v +o +a +R +a +a +N +w +w +K +a +"} +(3,1,1) = {" +v +v +R +c +p +b +r +u +F +O +X +"} +(4,1,1) = {" +v +o +R +y +W +f +I +U +q +d +V +"} +(5,1,1) = {" +v +v +R +W +W +e +L +u +Q +T +j +"} +(6,1,1) = {" +v +o +a +R +a +a +x +z +g +C +a +"} +(7,1,1) = {" +v +v +v +o +o +a +R +n +m +o +a +"} diff --git a/_maps/r_ruins/space/DJstation/radioroom_3.dmm b/_maps/r_ruins/space/DJstation/radioroom_3.dmm new file mode 100644 index 000000000000..f571672361cf --- /dev/null +++ b/_maps/r_ruins/space/DJstation/radioroom_3.dmm @@ -0,0 +1,179 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/ruin/space/djstation) +"b" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"f" = ( +/obj/modular_map_root/djstation{ + key = "kitchen" + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"g" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"h" = ( +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"r" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"s" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"u" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"x" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"z" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"A" = ( +/obj/machinery/duct, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"G" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"K" = ( +/obj/machinery/duct, +/obj/modular_map_root/djstation{ + key = "quarters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"M" = ( +/turf/template_noop, +/area/template_noop) +"N" = ( +/obj/modular_map_connector, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"O" = ( +/obj/structure/table, +/obj/item/paper/fluff/ruins/djstation, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"Q" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + freerange = 1; + listening = 0; + name = "Pirate Radio Broadcast Channel" + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"T" = ( +/obj/machinery/light/directional/east, +/obj/machinery/duct, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"V" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Pirate Radio Listening Channel" + }, +/turf/open/floor/plasteel/cafeteria, +/area/ruin/space/djstation) +"W" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ruin/space/djstation) + +(1,1,1) = {" +x +x +x +a +W +h +f +M +a +"} +(2,1,1) = {" +x +M +a +a +b +g +g +g +a +"} +(3,1,1) = {" +x +M +W +u +h +O +V +g +G +"} +(4,1,1) = {" +x +M +W +h +h +Q +z +h +N +"} +(5,1,1) = {" +x +M +W +s +h +r +V +A +T +"} +(6,1,1) = {" +x +M +a +a +h +h +A +A +a +"} +(7,1,1) = {" +x +x +x +a +W +h +K +M +a +"} diff --git a/_maps/r_ruins/space/DJstation/solars_1.dmm b/_maps/r_ruins/space/DJstation/solars_1.dmm new file mode 100644 index 000000000000..dc9544bd8879 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/solars_1.dmm @@ -0,0 +1,164 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"e" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"h" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"k" = ( +/obj/item/shard{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation/solars) +"n" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation/solars) +"t" = ( +/obj/structure/lattice, +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"u" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/modular_map_connector, +/turf/template_noop, +/area/ruin/space/djstation/solars) +"z" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"G" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/obj/item/stack/rods{ + pixel_x = 6; + pixel_y = -4 + }, +/turf/template_noop, +/area/space/nearstation) +"M" = ( +/obj/item/shard{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/ruin/space/djstation/solars) +"O" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/template_noop, +/area/ruin/space/djstation/solars) +"T" = ( +/turf/template_noop, +/area/template_noop) +"U" = ( +/obj/structure/cable, +/obj/machinery/power/solar/fake, +/turf/open/floor/plasteel/airless/solarpanel, +/area/ruin/space/djstation/solars) + +(1,1,1) = {" +T +T +z +T +u +T +z +z +z +"} +(2,1,1) = {" +z +z +U +U +O +U +U +T +e +"} +(3,1,1) = {" +z +T +z +T +O +T +z +T +h +"} +(4,1,1) = {" +z +z +U +U +O +U +k +z +e +"} +(5,1,1) = {" +e +T +z +T +z +T +T +T +z +"} +(6,1,1) = {" +e +z +M +n +z +t +T +T +T +"} +(7,1,1) = {" +T +T +z +T +T +T +T +T +T +"} +(8,1,1) = {" +T +T +G +z +T +T +T +T +T +"} diff --git a/_maps/r_ruins/space/DJstation/solars_2.dmm b/_maps/r_ruins/space/DJstation/solars_2.dmm new file mode 100644 index 000000000000..1732009a2ae5 --- /dev/null +++ b/_maps/r_ruins/space/DJstation/solars_2.dmm @@ -0,0 +1,113 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"E" = ( +/turf/template_noop, +/area/template_noop) +"L" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/template_noop, +/area/ruin/space/djstation/solars) +"P" = ( +/obj/structure/cable, +/obj/machinery/power/solar/fake, +/turf/open/floor/plasteel/airless/solarpanel, +/area/ruin/space/djstation/solars) +"U" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"V" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/modular_map_connector, +/turf/template_noop, +/area/ruin/space/djstation/solars) + +(1,1,1) = {" +E +E +U +E +V +E +U +U +U +"} +(2,1,1) = {" +U +U +P +P +L +P +P +E +U +"} +(3,1,1) = {" +U +E +U +E +L +E +U +E +U +"} +(4,1,1) = {" +U +U +P +P +L +P +P +U +U +"} +(5,1,1) = {" +U +E +U +E +L +E +U +E +U +"} +(6,1,1) = {" +U +U +P +P +L +P +P +E +U +"} +(7,1,1) = {" +E +E +U +E +U +E +U +E +E +"} +(8,1,1) = {" +E +E +U +U +U +U +U +E +E +"} diff --git a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm b/_maps/r_ruins/space/TheDerelict.dmm similarity index 89% rename from _maps/RandomRuins/SpaceRuins/TheDerelict.dmm rename to _maps/r_ruins/space/TheDerelict.dmm index 0da70fac90bc..07001bc82f97 100644 --- a/_maps/RandomRuins/SpaceRuins/TheDerelict.dmm +++ b/_maps/r_ruins/space/TheDerelict.dmm @@ -12,15 +12,13 @@ /turf/open/floor/plasteel/airless, /area/solars/derelict_starboard) "af" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/solars/derelict_starboard) "ag" = ( /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/solars/derelict_starboard) "ai" = ( /turf/template_noop, @@ -206,11 +204,6 @@ /obj/structure/grille, /turf/open/floor/plating/airless, /area/ruin/space/derelict/bridge/ai_upload) -"bk" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/ruin/space/derelict/solar_control) "bl" = ( /turf/closed/wall, /area/ruin/space/derelict/bridge/ai_upload) @@ -243,24 +236,17 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bs" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bt" = ( /obj/machinery/door/window, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) -"bu" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, -/area/ruin/space/derelict/solar_control) "bv" = ( /obj/item/stock_parts/matter_bin, -/turf/open/floor/plasteel{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bw" = ( /obj/structure/rack, @@ -279,24 +265,10 @@ "bz" = ( /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) -"bA" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/ruin/space/derelict/solar_control) -"bB" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/solar_control) "bC" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bD" = ( /obj/structure/rack, @@ -304,14 +276,8 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/ai_upload) "bE" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/bridge/ai_upload) -"bF" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "bG" = ( /obj/machinery/light{ @@ -321,10 +287,7 @@ /area/ruin/space/derelict/bridge/ai_upload) "bH" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "bI" = ( @@ -341,11 +304,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) -"bK" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/bridge/ai_upload) "bL" = ( /turf/template_noop, /area/ruin/space/derelict/bridge/ai_upload) @@ -362,9 +320,8 @@ /area/ruin/space/derelict/bridge/ai_upload) "bQ" = ( /obj/item/aicard, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "bR" = ( /obj/structure/lattice, @@ -427,10 +384,9 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/solar_control) "cb" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/template_noop) "cd" = ( /obj/machinery/light, @@ -460,23 +416,20 @@ /turf/template_noop, /area/template_noop) "co" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cp" = ( /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cq" = ( /obj/item/stock_parts/manipulator, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cr" = ( /obj/structure/cable, @@ -490,21 +443,10 @@ /obj/structure/cable, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) -"cu" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/gravity_generator) "cv" = ( /obj/item/stack/ore/slag, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/gravity_generator) -"cw" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cx" = ( /turf/open/floor/plasteel, @@ -519,7 +461,7 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) "cA" = ( @@ -529,7 +471,7 @@ /area/ruin/space/derelict/bridge/access) "cB" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge/access) "cC" = ( @@ -555,12 +497,11 @@ /area/ruin/space/derelict/bridge/access) "cG" = ( /obj/item/screwdriver, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cH" = ( -/obj/machinery/gravity_generator/main/station{ +/obj/machinery/gravity_generator/main{ on = 0 }, /turf/open/floor/plasteel/airless, @@ -574,14 +515,13 @@ /area/ruin/space/derelict/gravity_generator) "cP" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/gravity_generator) "cQ" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel, @@ -671,7 +611,7 @@ /turf/open/floor/plating, /area/ruin/space/derelict/bridge/access) "de" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless/solarpanel, /area/template_noop) "df" = ( @@ -784,7 +724,7 @@ /turf/closed/wall/r_wall, /area/ruin/space/derelict/gravity_generator) "dE" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/template_noop, /area/template_noop) "dF" = ( @@ -797,14 +737,6 @@ /obj/structure/frame/computer, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) -"dI" = ( -/obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plasteel, -/area/ruin/space/derelict/bridge) "dJ" = ( /obj/machinery/computer/security, /turf/open/floor/plasteel, @@ -841,20 +773,13 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "dO" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/singularity_engine) -"dP" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "dQ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "dR" = ( /obj/machinery/light/small{ @@ -872,11 +797,6 @@ "dW" = ( /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) -"dX" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/ruin/space/derelict/singularity_engine) "dZ" = ( /obj/item/reagent_containers/food/drinks/beer, /turf/open/floor/plasteel, @@ -901,35 +821,20 @@ /area/ruin/space/derelict/bridge) "ee" = ( /obj/structure/window/reinforced, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "ef" = ( /obj/structure/window/reinforced, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "eg" = ( /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/singularity_engine) -"eh" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/singularity_engine) -"ei" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "ej" = ( /turf/open/floor/plasteel, @@ -948,9 +853,8 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "en" = ( /obj/machinery/power/emitter{ @@ -1000,11 +904,6 @@ /obj/structure/noticeboard, /turf/closed/wall/r_wall, /area/ruin/space/derelict/singularity_engine) -"ez" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) "eB" = ( /obj/machinery/door/window/eastleft{ name = "Heads of Staff"; @@ -1014,7 +913,7 @@ /area/ruin/space/derelict/bridge/access) "eC" = ( /obj/structure/table, -/obj/item/paicard, +/obj/item/pai_card, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "eD" = ( @@ -1031,15 +930,13 @@ /area/ruin/space/derelict/bridge) "eF" = ( /obj/item/storage/toolbox/syndicate, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "eG" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "eJ" = ( /obj/structure/window/reinforced{ @@ -1058,9 +955,8 @@ /area/ruin/space/derelict/singularity_engine) "eN" = ( /obj/item/paper/fluff/ruins/thederelict/nukie_objectives, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "eO" = ( /obj/structure/window/reinforced{ @@ -1074,7 +970,7 @@ /area/ruin/space/derelict/bridge) "eQ" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "eS" = ( @@ -1111,9 +1007,8 @@ desc = "This guy seemed to have died in terrible way! Half his remains are dust."; name = "Syndicate agent remains" }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "eY" = ( /obj/item/clothing/suit/space/eva, @@ -1125,9 +1020,8 @@ /area/ruin/space/derelict/singularity_engine) "fa" = ( /obj/item/shard, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fb" = ( /obj/structure/grille, @@ -1158,9 +1052,9 @@ /obj/structure/table, /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/structure/cable, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) @@ -1174,16 +1068,15 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "fj" = ( /obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fk" = ( /obj/item/clothing/head/helmet/space/eva, @@ -1234,9 +1127,8 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fs" = ( /obj/structure/window/reinforced{ @@ -1253,14 +1145,8 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) -"fu" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/ruin/space/derelict/singularity_engine) "fv" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/access) "fw" = ( @@ -1320,27 +1206,12 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/access) -"fG" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/singularity_engine) "fI" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 10 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) -"fJ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fK" = ( /obj/machinery/door/window, @@ -1349,10 +1220,9 @@ /area/ruin/space/derelict/bridge/access) "fL" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fN" = ( /obj/item/shard{ @@ -1364,23 +1234,13 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fP" = ( /obj/structure/grille, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/singularity_engine) -"fQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fR" = ( /obj/machinery/door/airlock/maintenance{ @@ -1401,9 +1261,8 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fV" = ( /obj/item/screwdriver, @@ -1411,9 +1270,8 @@ /area/ruin/space/derelict/singularity_engine) "fW" = ( /obj/item/stack/rods, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fX" = ( /obj/item/shard{ @@ -1427,25 +1285,22 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "fZ" = ( /turf/closed/wall, /area/ruin/space/derelict/hallway/primary) "ga" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "gb" = ( /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "gc" = ( /obj/structure/cable, @@ -1483,14 +1338,8 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "gm" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/hallway/primary) -"gn" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "go" = ( /turf/open/floor/plasteel/airless, @@ -1505,14 +1354,6 @@ "gr" = ( /turf/open/floor/plasteel/airless, /area/ruin/unpowered/no_grav) -"gs" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) "gt" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ dir = 9 @@ -1528,32 +1369,17 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) -"gz" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, -/area/ruin/space/derelict/hallway/primary) "gA" = ( /obj/machinery/light/small, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) -"gB" = ( -/obj/machinery/power/apc{ - name = "Worn-out APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless, -/area/ruin/space/derelict/bridge/access) "gC" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered/no_grav) "gD" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/unpowered/no_grav) "gE" = ( /obj/effect/spawner/structure/window/hollow/reinforced/middle{ @@ -1566,22 +1392,9 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "gG" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/unpowered/no_grav) -"gH" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, -/area/ruin/unpowered/no_grav) -"gI" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) "gJ" = ( /obj/structure/grille/broken, /turf/open/floor/plating/airless, @@ -1590,9 +1403,8 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "gL" = ( /turf/open/floor/plating/airless, @@ -1609,13 +1421,8 @@ /obj/structure/girder, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) -"gP" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/unpowered/no_grav) "gQ" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless, /area/ruin/unpowered/no_grav) "gR" = ( @@ -1655,9 +1462,8 @@ /area/ruin/space/derelict/singularity_engine) "hb" = ( /obj/machinery/light/small, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "hc" = ( /obj/structure/lattice, @@ -1715,28 +1521,20 @@ /obj/structure/grille, /turf/template_noop, /area/ruin/space/derelict/singularity_engine) -"ho" = ( -/obj/item/shard, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) "hp" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/derelict/arrival) "hq" = ( /turf/open/floor/plating/airless, /area/ruin/space/derelict/arrival) "hr" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/arrival) "hs" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "ht" = ( @@ -1783,11 +1581,6 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) -"hD" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/derelict/hallway/primary) "hE" = ( /obj/machinery/door/window{ dir = 8 @@ -1826,16 +1619,14 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "hL" = ( /obj/structure/frame/computer, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "hM" = ( /obj/machinery/light{ @@ -1848,9 +1639,8 @@ /area/ruin/space/derelict/medical) "hN" = ( /obj/machinery/light/small, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "hP" = ( /turf/open/floor/plating, @@ -1867,7 +1657,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -1901,14 +1691,8 @@ /turf/open/floor/plasteel/airless/white, /area/ruin/space/derelict/medical) "hX" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/medical) -"hY" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "hZ" = ( /obj/structure/window/reinforced{ @@ -1917,9 +1701,8 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/medical) "ia" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/template_noop) "ib" = ( /obj/item/stack/cable_coil/cut, @@ -1943,7 +1726,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/chapel{ dir = 8 }, @@ -1956,7 +1739,7 @@ /area/ruin/space/derelict/medical/chapel) "ig" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/chapel{ dir = 8 }, @@ -1971,13 +1754,12 @@ /area/ruin/space/derelict/medical/chapel) "ik" = ( /obj/structure/chair, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "il" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/medical) "im" = ( @@ -1989,20 +1771,9 @@ /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) "io" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/singularity_engine) -"ip" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/hallway/primary) -"iq" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/template_noop) "ir" = ( /obj/structure/chair{ dir = 1 @@ -2034,7 +1805,7 @@ dir = 8 }, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -2117,15 +1888,13 @@ /area/ruin/space/derelict/medical) "iM" = ( /obj/item/stack/medical/bruise_pack, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "iN" = ( /obj/item/stack/medical/ointment, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "iO" = ( /obj/machinery/light{ @@ -2167,7 +1936,7 @@ /obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -2238,22 +2007,17 @@ /area/ruin/space/derelict/medical) "jj" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "jk" = ( /obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/medical) "jl" = ( /obj/structure/closet/wardrobe/genetics_white, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless/white, /area/ruin/space/derelict/medical) "jm" = ( @@ -2280,9 +2044,8 @@ /area/ruin/unpowered/no_grav) "jr" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "js" = ( /obj/machinery/light/small{ @@ -2319,7 +2082,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Worn-out APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/airless, @@ -2327,7 +2090,7 @@ "jz" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel/airless/white, @@ -2347,12 +2110,6 @@ /obj/structure/bed, /turf/open/floor/plasteel/airless/white, /area/ruin/space/derelict/medical) -"jD" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/medical) "jE" = ( /obj/machinery/door/airlock/medical{ name = "Medical" @@ -2442,28 +2199,22 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/unpowered/no_grav) "jW" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "jX" = ( /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "jY" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "jZ" = ( /obj/machinery/light/small{ @@ -2485,10 +2236,7 @@ /area/ruin/unpowered/no_grav) "ke" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/unpowered/no_grav) "kf" = ( @@ -2525,9 +2273,8 @@ /area/ruin/space/derelict/medical/chapel) "km" = ( /obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "ko" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on, @@ -2549,7 +2296,7 @@ "kr" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel, @@ -2651,7 +2398,7 @@ /area/ruin/space/derelict/arrival) "kW" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "kX" = ( @@ -2670,14 +2417,14 @@ "la" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) "lb" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary/port) "lc" = ( @@ -2724,10 +2471,7 @@ /area/ruin/space/derelict/hallway/primary/port) "lk" = ( /obj/structure/closet/wardrobe/orange, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /obj/item/shovel/spade, /obj/item/cultivator, /turf/open/floor/plasteel/airless, @@ -2738,10 +2482,7 @@ /area/ruin/space/derelict/arrival) "lm" = ( /obj/structure/closet/wardrobe, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "ln" = ( @@ -2754,10 +2495,7 @@ /area/ruin/space/derelict/hallway/primary) "lo" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "lp" = ( @@ -2769,7 +2507,7 @@ "lq" = ( /obj/structure/table, /obj/item/reagent_containers/glass/beaker{ - list_reagents = list(/datum/reagent/toxin/acid = 50) + list_reagents = list(/datum/reagent/toxin/acid=50) }, /obj/item/paper/crumpled/bloody/ruins/thederelict/unfinished, /obj/item/pen, @@ -2837,11 +2575,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary) -"lG" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, -/area/ruin/space/derelict/hallway/primary) "lH" = ( /obj/item/ammo_casing/a357, /turf/open/floor/plasteel/airless, @@ -2876,7 +2609,7 @@ }, /area/ruin/space/derelict/atmospherics) "lO" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste, /turf/open/floor/engine/air{ initial_gas_mix = "o2=20000;n2=80000;TEMP=293.15" }, @@ -2894,10 +2627,7 @@ /area/ruin/space/derelict/hallway/primary/port) "lS" = ( /obj/structure/closet/wardrobe/mixed, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel, /area/ruin/space/derelict/arrival) "lT" = ( @@ -2994,11 +2724,6 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) -"mk" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, -/area/ruin/space/derelict/atmospherics) "ml" = ( /obj/structure/window/fulltile, /turf/open/floor/plating/airless, @@ -3020,25 +2745,12 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) "mp" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) "mq" = ( -/turf/open/floor/plasteel{ - icon_state = "damaged2"; - initial_gas_mix = "TEMP=2.7" - }, -/area/ruin/space/derelict/atmospherics) -"mr" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/atmospherics) -"ms" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) "mt" = ( /obj/structure/window/fulltile, @@ -3113,16 +2825,10 @@ }, /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) -"mG" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/atmospherics) "mH" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary/port) "mI" = ( /obj/structure/cable, @@ -3142,13 +2848,8 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) -"mN" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged1" - }, -/area/ruin/space/derelict/atmospherics) "mO" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/template_noop, /area/ruin/space/derelict/hallway/primary/port) "mP" = ( @@ -3157,14 +2858,11 @@ /area/ruin/space/derelict/atmospherics) "mQ" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/atmospherics) "mR" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary) "mT" = ( @@ -3216,7 +2914,7 @@ areastring = "/area/ruin/space/derelict/atmospherics"; dir = 1; name = "Worn-out APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/airless, @@ -3362,7 +3060,7 @@ /area/ruin/space/derelict/hallway/secondary) "nE" = ( /obj/machinery/door/firedoor, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/secondary) "nF" = ( @@ -3402,9 +3100,8 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/se_solar) "nQ" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/se_solar) "nR" = ( /turf/open/floor/plasteel/airless, @@ -3462,9 +3159,8 @@ /area/ruin/space/derelict/se_solar) "oa" = ( /obj/item/paper/fluff/ruins/thederelict/syndie_mission, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/se_solar) "ob" = ( /obj/machinery/light/small{ @@ -3533,19 +3229,12 @@ name = "Derelict Solar Array" }, /obj/structure/cable, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/solars/derelict_aft) "oq" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/solars/derelict_aft) -"oy" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/solars/derelict_aft) "oz" = ( /obj/structure/lattice/catwalk, @@ -3563,7 +3252,7 @@ /turf/open/floor/plasteel, /area/ruin/space/derelict/bridge) "pZ" = ( -/obj/machinery/air_sensor/atmos/air_tank, +/obj/machinery/air_sensor/air_tank, /turf/open/floor/engine/air{ initial_gas_mix = "o2=20000;n2=80000;TEMP=293.15" }, @@ -3606,11 +3295,6 @@ }, /turf/template_noop, /area/template_noop) -"wK" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/derelict/se_solar) "xi" = ( /obj/item/shard{ icon_state = "medium" @@ -3625,16 +3309,10 @@ /obj/item/stack/rods, /turf/open/floor/plating/airless, /area/ruin/space/derelict/hallway/primary/port) -"Bx" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/template_noop) "CZ" = ( /obj/item/clothing/suit/space/eva, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "DE" = ( /obj/machinery/door/airlock/external{ @@ -3660,11 +3338,6 @@ /obj/item/stack/sheet/glass/fifty, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) -"Ev" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/template_noop) "ES" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, @@ -3684,18 +3357,17 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "Ih" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/hallway/primary/port) "Ik" = ( /obj/structure/closet/crate, -/obj/item/clothing/head/beanie/rasta, +/obj/item/clothing/head/rasta, /obj/item/clothing/head/beanie/black, /obj/item/clothing/head/beanie/christmas, /obj/item/clothing/head/beanie/darkblue, /obj/item/clothing/head/beanie/red, -/obj/item/clothing/head/beanie/waldo, +/obj/item/clothing/head/waldo, /obj/item/clothing/head/bearpelt, /obj/item/clothing/head/beret, /obj/item/clothing/head/bomb_hood, @@ -3718,9 +3390,8 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "IA" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/template_noop) "Kf" = ( /obj/item/paper/fluff/ruins/thederelict/vaultraider, @@ -3728,9 +3399,8 @@ desc = "This guy seemed to have died in terrible way! Half his remains are dust."; name = "Syndicate agent remains" }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/bridge/ai_upload) "KN" = ( /turf/closed/wall, @@ -3824,9 +3494,8 @@ /area/ruin/space/derelict/atmospherics) "Rd" = ( /obj/item/stack/cable_coil, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/derelict/singularity_engine) "RF" = ( /obj/machinery/door/airlock/engineering{ @@ -3869,12 +3538,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, /turf/open/floor/plasteel/airless, /area/ruin/space/derelict/atmospherics) -"Xq" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/derelict/singularity_engine) "Xu" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/iron/fifty, @@ -4318,8 +3981,8 @@ iV ij hS jL -gP -gH +gD +gC ay aa aa @@ -5336,7 +4999,7 @@ gX jw jL jV -gP +gD ay aY aa @@ -5677,7 +5340,7 @@ gX jW gL mJ -gn +gm gL ZB ZB @@ -5789,10 +5452,10 @@ jy jM jX gL -gn +gm gL gm -gn +gm ZB ZB ZB @@ -6674,7 +6337,7 @@ dr dr fL em -ez +dO dr dr ZB @@ -6699,7 +6362,7 @@ go kW fZ jY -lG +gm go gL gL @@ -6784,11 +6447,11 @@ ZB ZB dr dr -ez dO -dX -ez -ez +dO +dO +dO +dO dr dr ZB @@ -6796,7 +6459,7 @@ aa hm hz hz -hY +hX ik hX iM @@ -6897,11 +6560,11 @@ dr dr dr dr -fG +eG fE fU fU -gs +fU dr dr dr @@ -6911,7 +6574,7 @@ hA hz hz il -hY +hX hX hI jf @@ -7010,7 +6673,7 @@ dr dr dr dr -Xq +eG fd ft ft @@ -7118,19 +6781,19 @@ dr ee ev dW -ez dO -ez -ez -ez -ez -ez -dP -ez dO -ez dO -dX +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO dW dW hB @@ -7138,10 +6801,10 @@ eL hz hz hz -hY hX hX -jD +hX +jj jN gc gc @@ -7156,7 +6819,7 @@ lr lg go fZ -hD +gm gm gL gL @@ -7230,20 +6893,20 @@ dr dr ef ev -ez -dP -dX -dO -ez -ez -ez -dP -dP -dX -dP -ez -gI -dP +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +dO +fO +dO gY hn eL @@ -7252,8 +6915,8 @@ hz hz hz hz -hY -hY +hX +hX jE jO go @@ -7269,12 +6932,12 @@ lr lg go fZ -gn +gm gL -gn +gm go fZ -gn +gm gL gL md @@ -7343,15 +7006,15 @@ dr dO eg ev -ez -dX +dO +dO dO eW fq fq fI -ez -dP +dO +dO eZ gt fq @@ -7453,18 +7116,18 @@ aa ZB dr dr -dP -eh +dO +ef ev -ez +dO dO eW fj fr fj -fJ +fj dW -dX +dO gh gj dW @@ -7495,13 +7158,13 @@ go go go fZ -lG +gm go go gm fZ go -gn +gm go mW mU @@ -7567,14 +7230,14 @@ ZB dr dA dQ -eh +ef ew eF eN eX fk -dP -dP +dO +dO dW dW dW @@ -7585,7 +7248,7 @@ dO dW gJ dW -ez +dO dr dr eL @@ -7682,7 +7345,7 @@ dr dR dO dW -dP +dO dO eY fl @@ -7694,11 +7357,11 @@ dW dW dW dO -dX +dO dO fb -ho -ez +fa +dO dr dr dr @@ -7784,19 +7447,19 @@ aa aa aa cn -cu -cu -cw +co +co +co cO cY df ds dB dW -ei +ef ex dO -dX +dO eZ dW dW @@ -7810,9 +7473,9 @@ dW dW gS ft -ez dO -ez +dO +dO dr dr dr @@ -7922,16 +7585,16 @@ ai dW dW dO -ez dO -dP +dO +dO hN dr im dr hv iD -gP +gD jp fZ go @@ -8010,7 +7673,7 @@ ZB aa cl cp -cw +co cH cO cO @@ -8021,7 +7684,7 @@ dC ej ej dr -ez +dO dW fa dW @@ -8034,11 +7697,11 @@ ai ai dW dW -dP -ez dO -dP -dX +dO +dO +dO +dO dW in dr @@ -8066,7 +7729,7 @@ lt lt lt lt -mG +mp mT md ne @@ -8123,8 +7786,8 @@ Lv aa cl co -cu -cu +co +co cP cO db @@ -8146,11 +7809,11 @@ ai ai ai dW -dP -dX -ez +dO +dO +dO fW -dP +dO dO dr io @@ -8158,7 +7821,7 @@ dr iQ ay ay -gP +gD fZ go go @@ -8176,11 +7839,11 @@ lt lt lt ls -mN -mG +mp +mp lt lt -mG +mp md nf np @@ -8236,10 +7899,10 @@ Lv aa cl cq -cu +co cI co -cu +co dc di du @@ -8247,8 +7910,8 @@ dD cl el dr -ez -ez +dO +dO dW dW dW @@ -8260,11 +7923,11 @@ ai ai dW dO -eh +ef gZ -ez dO -ez +dO +dO dr dr dr @@ -8290,10 +7953,10 @@ ls ls lt ls -mN +mp lt ls -mG +mp md ng nq @@ -8360,7 +8023,7 @@ dr dW em dW -ez +dO dO fb fm @@ -8373,10 +8036,10 @@ dW dW dW dW -ei +ef ev -ez -ez +dO +dO dr dr dr @@ -8397,7 +8060,7 @@ pZ lO ES VV -mk +mq mq mp lt @@ -8472,7 +8135,7 @@ dr dr dO dO -ez +dO dO dO fc @@ -8486,10 +8149,10 @@ dW dW dW dW -eh +ef ev dO -ez +dO dr dr GM @@ -8511,12 +8174,12 @@ ly ly lx lx -mr +mp lt lt lt lt -ms +mp lt lt lt @@ -8583,10 +8246,10 @@ aa ZB dr dr -dX dO -dX -dP +dO +dO +dO dO fd fn @@ -8601,7 +8264,7 @@ dW gK gS ew -dP +dO dO dr dr @@ -8624,12 +8287,12 @@ lP ls lP lP -mr +mp lt -mr -mr -mG -mN +mp +mp +mp +mp mp lx lx @@ -8698,10 +8361,10 @@ dr dr dO dO -Xq +eG Rd dO -ez +dO fd ft ft @@ -8714,8 +8377,8 @@ gE gE gT dO -dX -dP +dO +dO dr dr GM @@ -8737,10 +8400,10 @@ lx lx lx lx -ms +mp mt -mG -mG +mp +mp mp mp mt @@ -8811,23 +8474,23 @@ ZB dr dr en -ez -ez -dX -dP dO -ez +dO +dO +dO +dO +dO dW dW -ez -ez +dO +dO dW -ez -dP -dX -dP dO -ez +dO +dO +dO +dO +dO dr dr GM @@ -8925,22 +8588,22 @@ dr dr eo dW -ez dO -dX -dP -fu -ez -ez +dO +dO +dO +eG +dO +dO fO fW -ez -ez -dP -ez -dP -ez -ez +dO +dO +dO +dO +dO +dO +dO dr dr tS @@ -8949,7 +8612,7 @@ iD tS tS jo -gP +gD gD fZ go @@ -9157,11 +8820,11 @@ dr dr dr dr -ez -fQ -fQ +dO +fj +fj gj -fJ +fj dr dr dr @@ -9273,8 +8936,8 @@ dr dW dO dO -dX -ez +dO +dO dr dr tS @@ -9284,7 +8947,7 @@ tS gL mJ gm -gn +gm fZ go go @@ -9384,9 +9047,9 @@ ZB ZB dr dr -ez +dO fY -ez +dO dr dr GM @@ -9398,7 +9061,7 @@ gl gm gm gb -ip +ga gc gc gc @@ -9508,10 +9171,10 @@ gl gL gm gm -gn -ip -gn -gn +gm +ga +gm +gm go go go @@ -9619,10 +9282,10 @@ gl mJ gm gm -gn -gn -gn -gn +gm +gm +gm +gm go fZ go @@ -9660,7 +9323,7 @@ nV ZB nV nV -wK +nQ nR aa aa @@ -9772,7 +9435,7 @@ aa nV nV nV -wK +nQ og nR nB @@ -9841,8 +9504,8 @@ ga gl ga fZ -gn -gn +gm +gm go fZ go @@ -9952,23 +9615,23 @@ fx fR gb gm -gz +jY fZ gL gL go fZ -gz -gn -gn +jY +gm +gm fZ -gz +jY go go jr go gc -gn +gm ko go gk @@ -10037,7 +9700,7 @@ ax bz bL bR -bK +bE cd ax aa @@ -10064,25 +9727,25 @@ fx fx cs gb -gn -gn +gm +gm gF gL -gn +gm go go -gn +gm gL -gn +gm fZ -gn +gm gL go go go gb go -gn +gm go kJ fZ @@ -10150,7 +9813,7 @@ ax bz bM bL -bF +bE bO ax ci @@ -10181,23 +9844,23 @@ go go fZ fZ -gn -gn +gm +gm fZ -gz -gz +jY +jY gL -gz -gz -gz +jY +jY +jY go js gL gc go -gn +gm go -gn +gm fZ KN lk @@ -10260,7 +9923,7 @@ bj bj bj ax -bF +bE Kf CZ bZ @@ -10298,7 +9961,7 @@ go hb fZ fZ -gz +jY gk gk gk @@ -10345,7 +10008,7 @@ aa aa op ol -oy +oq aa on ol @@ -10410,13 +10073,13 @@ gM go go fZ -gz -hD +jY +gm gk -Bx +ia IA IA -iq +ia gk go gc @@ -10523,11 +10186,11 @@ gN go fZ fZ -gz -gz +jY +jY gk IA -iq +ia ia IA gk @@ -10599,7 +10262,7 @@ bj bj bj ax -bK +bE Lr xr YQ @@ -10636,10 +10299,10 @@ fZ fZ fZ fZ -hD +gm gL gk -Bx +ia IA aa aa @@ -10749,10 +10412,10 @@ gO fZ fZ fZ -gz +jY gL gk -iq +ia IA aa aa @@ -10968,8 +10631,8 @@ cF fK fT fT -fT -gB +fx +fx cs cs ZB @@ -11633,7 +11296,7 @@ cW cx cF cs -dI +eQ eb eb ea @@ -11655,7 +11318,7 @@ gW hp hp gV -Ev +ia aa aa aa @@ -11727,8 +11390,8 @@ as as as as -bk -bA +bH +bH bH az az @@ -11837,7 +11500,7 @@ aP az aB as -bk +bH as bq az @@ -11883,7 +11546,7 @@ hr gV Uz ZB -iq +ia aa aa ZB @@ -11953,8 +11616,8 @@ bh aB aQ br -bu -bB +bs +bs br aB aB @@ -11995,9 +11658,9 @@ hr hq gV ib -iq +ia ZB -Bx +ia gV Uz aa @@ -12085,7 +11748,7 @@ cX cF dq cs -dI +eQ ea eb ea @@ -12439,7 +12102,7 @@ ay ay ay ay -gH +gC gD gV hf @@ -12553,7 +12216,7 @@ ay gr gC gr -gP +gD gV hg hf diff --git a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm b/_maps/r_ruins/space/abandonedteleporter.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm rename to _maps/r_ruins/space/abandonedteleporter.dmm index 37df1cc60380..079dab163e76 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedteleporter.dmm +++ b/_maps/r_ruins/space/abandonedteleporter.dmm @@ -60,7 +60,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/abandoned_tele) "o" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating/airless, /area/ruin/space/abandoned_tele) "p" = ( diff --git a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm b/_maps/r_ruins/space/abandonedzoo.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/abandonedzoo.dmm rename to _maps/r_ruins/space/abandonedzoo.dmm index a9ae9af8cf70..78ca51aca922 100644 --- a/_maps/RandomRuins/SpaceRuins/abandonedzoo.dmm +++ b/_maps/r_ruins/space/abandonedzoo.dmm @@ -247,7 +247,7 @@ }, /obj/structure/rack, /obj/item/melee/baton/cattleprod, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/structure/cable, /turf/open/floor/plasteel/dark/side, /area/ruin/space/has_grav/abandonedzoo) diff --git a/_maps/RandomRuins/SpaceRuins/asteroid1.dmm b/_maps/r_ruins/space/asteroid1.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/asteroid1.dmm rename to _maps/r_ruins/space/asteroid1.dmm diff --git a/_maps/RandomRuins/SpaceRuins/asteroid2.dmm b/_maps/r_ruins/space/asteroid2.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/asteroid2.dmm rename to _maps/r_ruins/space/asteroid2.dmm diff --git a/_maps/RandomRuins/SpaceRuins/asteroid3.dmm b/_maps/r_ruins/space/asteroid3.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/asteroid3.dmm rename to _maps/r_ruins/space/asteroid3.dmm diff --git a/_maps/RandomRuins/SpaceRuins/asteroid4.dmm b/_maps/r_ruins/space/asteroid4.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/asteroid4.dmm rename to _maps/r_ruins/space/asteroid4.dmm diff --git a/_maps/RandomRuins/SpaceRuins/asteroid5.dmm b/_maps/r_ruins/space/asteroid5.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/asteroid5.dmm rename to _maps/r_ruins/space/asteroid5.dmm diff --git a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm b/_maps/r_ruins/space/bigderelict1.dmm similarity index 97% rename from _maps/RandomRuins/SpaceRuins/bigderelict1.dmm rename to _maps/r_ruins/space/bigderelict1.dmm index f9a8d7dc643b..95b874472097 100644 --- a/_maps/RandomRuins/SpaceRuins/bigderelict1.dmm +++ b/_maps/r_ruins/space/bigderelict1.dmm @@ -62,13 +62,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "ao" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Bay APC"; - pixel_x = 24; - start_charge = 0 - }, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargobay) "ap" = ( @@ -157,6 +152,7 @@ "aE" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/tactical, /turf/open/floor/mineral/titanium/yellow, /area/ruin/space/has_grav/derelictoutpost/dockedship) "aF" = ( @@ -276,8 +272,11 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "bb" = ( -/obj/machinery/power/smes, /obj/structure/cable, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "bc" = ( @@ -459,6 +458,9 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/item/gun/ballistic/automatic/pistol/m1911{ + spawnwithmagazine = 0 + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/derelictoutpost) "bB" = ( @@ -519,11 +521,21 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "bI" = ( -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 +/obj/effect/decal/cleanable/blood/old{ + dir = 4; + icon_state = "trails_1"; + name = "dried blood trail" }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/derelictoutpost/powerstorage) +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin/space/has_grav/derelictoutpost) "bJ" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) @@ -675,14 +687,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "ca" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Power Storage APC"; - pixel_x = 24; - pixel_y = 2; - start_charge = 0 - }, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/powerstorage) "cb" = ( @@ -761,12 +767,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "ck" = ( -/obj/machinery/power/apc{ - name = "Tradepost APC"; - pixel_y = -23; - start_charge = 0 - }, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "cl" = ( @@ -944,6 +946,7 @@ dir = 4; pixel_x = 24 }, +/obj/item/ammo_box/c45, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "cR" = ( @@ -1161,11 +1164,8 @@ /area/ruin/space/has_grav/derelictoutpost) "du" = ( /obj/structure/alien/weeds/creature, -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 - }, /obj/item/ammo_box/magazine/m45, -/turf/open/floor/plating/asteroid, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost) "dv" = ( /obj/effect/decal/cleanable/blood/old{ @@ -1184,6 +1184,7 @@ }, /obj/structure/alien/weeds/creature, /obj/structure/alien/weeds/creature, +/obj/item/ammo_box/magazine/m45, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/derelictoutpost) "dx" = ( @@ -1249,6 +1250,7 @@ "dE" = ( /obj/structure/alien/weeds/creature, /obj/structure/alien/weeds/creature, +/obj/item/ammo_box/c45, /turf/open/floor/plating/asteroid, /area/ruin/space/has_grav/derelictoutpost) "dF" = ( @@ -1284,9 +1286,6 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/derelictoutpost) "dJ" = ( -/obj/item/gun/ballistic/automatic/pistol/m1911{ - spawnwithmagazine = 0 - }, /obj/structure/alien/weeds/creature, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plasteel, @@ -1489,13 +1488,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "el" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "Cargo Storage APC"; - pixel_x = 24; - start_charge = 0 - }, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "eo" = ( @@ -1516,7 +1510,7 @@ /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/space/fancytool, +/obj/effect/spawner/random/exotic/tool, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "er" = ( @@ -1594,12 +1588,12 @@ }, /obj/machinery/light, /obj/effect/turf_decal/delivery, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) "eC" = ( /obj/structure/closet/crate, -/obj/item/pda/clear, +/obj/item/modular_computer/tablet/pda/clear, /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/ruin/space/has_grav/derelictoutpost/cargostorage) @@ -1690,6 +1684,17 @@ }, /turf/open/floor/plating, /area/ruin/space/has_grav/derelictoutpost) +"OH" = ( +/obj/effect/decal/cleanable/blood/old{ + dir = 8; + icon_state = "trails_1"; + name = "dried blood trail" + }, +/turf/open/floor/plating{ + icon_state = "wall_thermite"; + name = "melted wall" + }, +/area/ruin/space/has_grav/derelictoutpost) (1,1,1) = {" aa @@ -1812,7 +1817,7 @@ aA aA bb br -bI +bJ bY co aS @@ -2640,7 +2645,7 @@ aa aY aZ bC -bU +bI bC cy bC @@ -2649,7 +2654,7 @@ aZ aZ aZ aZ -dN +OH aZ cm cm @@ -2717,7 +2722,7 @@ bj cj bF ci -bl +du dm dC dC @@ -2861,7 +2866,7 @@ bj bF bF ci -bl +du bF bF bF @@ -3042,7 +3047,7 @@ cE cR cm dn -du +cR cR dt cR diff --git a/_maps/RandomRuins/SpaceRuins/bus.dmm b/_maps/r_ruins/space/bus.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/bus.dmm rename to _maps/r_ruins/space/bus.dmm index a9227b27e093..2f40b9322122 100644 --- a/_maps/RandomRuins/SpaceRuins/bus.dmm +++ b/_maps/r_ruins/space/bus.dmm @@ -116,7 +116,7 @@ /area/ruin/unpowered/no_grav) "av" = ( /obj/structure/table, -/obj/item/paicard, +/obj/item/pai_card, /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered/no_grav) "aw" = ( diff --git a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm b/_maps/r_ruins/space/caravanambush.dmm similarity index 93% rename from _maps/RandomRuins/SpaceRuins/caravanambush.dmm rename to _maps/r_ruins/space/caravanambush.dmm index 5e01a860d4a6..450815166273 100644 --- a/_maps/RandomRuins/SpaceRuins/caravanambush.dmm +++ b/_maps/r_ruins/space/caravanambush.dmm @@ -58,9 +58,8 @@ /turf/template_noop, /area/template_noop) "ak" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "an" = ( /obj/structure/lattice, @@ -172,10 +171,8 @@ /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "aO" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -264,17 +261,10 @@ }, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter2) -"bd" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/shuttle/caravan/freighter3) "bg" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -285,17 +275,16 @@ dir = 4 }, /obj/effect/gibspawner/human, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "bi" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter2) "bl" = ( @@ -362,9 +351,8 @@ /obj/item/stack/cable_coil{ amount = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "fZ" = ( /turf/closed/wall/mineral/titanium, @@ -380,10 +368,7 @@ /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "gc" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "gd" = ( @@ -496,8 +481,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter3) "gW" = ( @@ -551,9 +536,8 @@ id = "caravantrade2_cargo_port"; name = "Cargo Blast Door" }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "hp" = ( /obj/effect/decal/cleanable/dirt, @@ -568,9 +552,8 @@ id = "caravantrade2_cargo_port"; name = "Cargo Blast Door" }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "hr" = ( /obj/machinery/door/poddoor/preopen{ @@ -581,10 +564,7 @@ /area/shuttle/caravan/freighter2) "hs" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "ht" = ( @@ -618,8 +598,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/secure/engineering, -/obj/effect/spawner/lootdrop/space/fancytech, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter3) "hy" = ( @@ -642,9 +622,8 @@ }, /area/shuttle/caravan/freighter3) "hB" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "hQ" = ( /obj/structure/shuttle/engine/propulsion/burst/left{ @@ -655,9 +634,8 @@ "hS" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "hT" = ( /obj/effect/turf_decal/bot_white, @@ -669,13 +647,6 @@ /obj/item/ammo_casing/shotgun/stunslug, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter2) -"hU" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/shuttle/caravan/freighter2) "hV" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, @@ -694,8 +665,8 @@ dir = 1 }, /obj/structure/closet/crate/secure, -/obj/effect/spawner/lootdrop/space/cashmoney, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter2) "hX" = ( @@ -734,9 +705,8 @@ /area/shuttle/caravan/freighter3) "ia" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "ib" = ( /obj/effect/turf_decal/box/white/corners{ @@ -744,16 +714,15 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/secure/engineering, -/obj/effect/spawner/lootdrop/space/fancytech, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "ic" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "id" = ( /obj/effect/turf_decal/box/white/corners, @@ -761,10 +730,8 @@ /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter3) "ie" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, @@ -792,9 +759,8 @@ dir = 8 }, /obj/item/shard, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "io" = ( /obj/structure/shuttle/engine/propulsion/burst{ @@ -820,9 +786,8 @@ /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "is" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "it" = ( /obj/effect/decal/cleanable/dirt, @@ -835,9 +800,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "iv" = ( /obj/effect/decal/cleanable/dirt, @@ -856,8 +820,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 10 }, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter2) "iy" = ( @@ -865,22 +829,19 @@ /obj/structure/fluff/broken_flooring{ icon_state = "pile" }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "iz" = ( /obj/item/shard, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "iA" = ( /obj/machinery/meter, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter3) "iB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -892,8 +853,8 @@ "iC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter3) "iD" = ( @@ -976,9 +937,8 @@ "jb" = ( /obj/effect/turf_decal/bot_white, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter3) "jc" = ( /obj/effect/turf_decal/bot_white, @@ -1047,10 +1007,8 @@ /area/shuttle/caravan/freighter2) "ju" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "jv" = ( @@ -1079,7 +1037,7 @@ /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter3) "jH" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 4 }, /obj/effect/turf_decal/stripes/line{ @@ -1102,8 +1060,8 @@ /area/shuttle/caravan/freighter2) "jK" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter2) "jL" = ( @@ -1117,8 +1075,8 @@ /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "jN" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" +/turf/open/floor/plasteel{ + initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter2) "jO" = ( @@ -1207,15 +1165,13 @@ /obj/item/tank/internals/oxygen, /obj/item/radio, /obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter2) "kd" = ( /obj/structure/grille/broken, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter2) "ke" = ( /obj/effect/decal/cleanable/dirt, @@ -1273,9 +1229,8 @@ /area/ruin/unpowered) "lD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "tH" = ( /obj/structure/shuttle/engine/propulsion/burst{ @@ -1283,25 +1238,6 @@ }, /turf/closed/wall/mineral/plastitanium, /area/ruin/unpowered) -"vE" = ( -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/freighter3) -"GL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/external{ - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/freighter2) (1,1,1) = {" aa @@ -3721,7 +3657,7 @@ af af af hq -hU +hS it js js @@ -3935,7 +3871,7 @@ bg jv jN kb -GL +hs aa aa aa @@ -5388,7 +5324,7 @@ hw ib iB ja -bd +ak aa aa aa @@ -5648,7 +5584,7 @@ aO if iF je -vE +gc aa aa aa diff --git a/_maps/RandomRuins/SpaceRuins/clericden.dmm b/_maps/r_ruins/space/clericden.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/clericden.dmm rename to _maps/r_ruins/space/clericden.dmm diff --git a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm b/_maps/r_ruins/space/clownplanet.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/clownplanet.dmm rename to _maps/r_ruins/space/clownplanet.dmm index 22c6489370cc..783f8360cc8e 100644 --- a/_maps/RandomRuins/SpaceRuins/clownplanet.dmm +++ b/_maps/r_ruins/space/clownplanet.dmm @@ -347,7 +347,7 @@ /turf/open/floor/bluespace, /area/ruin/powered/clownplanet) "bh" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/stripes/white/box, /turf/open/floor/bluespace, /area/ruin/powered/clownplanet) @@ -356,12 +356,11 @@ /area/ruin/powered/clownplanet) "bj" = ( /obj/structure/mineral_door/wood, -/turf/open/floor/wood{ - icon_state = "wood-broken5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ruin/powered/clownplanet) "bk" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/stripes/white/box, /turf/open/floor/bluespace, /area/ruin/powered/clownplanet) diff --git a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm b/_maps/r_ruins/space/crashedclownship.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/crashedclownship.dmm rename to _maps/r_ruins/space/crashedclownship.dmm index 144812dd7840..8992a1c54449 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedclownship.dmm +++ b/_maps/r_ruins/space/crashedclownship.dmm @@ -48,10 +48,7 @@ }, /obj/item/clothing/shoes/clown_shoes/banana_shoes, /obj/item/gps/spaceruin, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/mineral/bananium/airless, /area/ruin/unpowered) "l" = ( diff --git a/_maps/RandomRuins/SpaceRuins/crashedship.dmm b/_maps/r_ruins/space/crashedship.dmm similarity index 96% rename from _maps/RandomRuins/SpaceRuins/crashedship.dmm rename to _maps/r_ruins/space/crashedship.dmm index d31fb9fc5d7a..ef0745245b5b 100644 --- a/_maps/RandomRuins/SpaceRuins/crashedship.dmm +++ b/_maps/r_ruins/space/crashedship.dmm @@ -67,9 +67,8 @@ "ar" = ( /obj/effect/mapping_helpers/airlock/locked, /obj/machinery/door/airlock/titanium, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/awaymission/bmpship/aft) "as" = ( /obj/structure/bed/roller, @@ -303,9 +302,8 @@ /turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "bu" = ( -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/awaymission/bmpship/fore) "bv" = ( /obj/effect/turf_decal/stripes/line, @@ -411,7 +409,7 @@ /obj/machinery/power/apc/unlocked{ dir = 1; environ = 0; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/carpet, @@ -760,7 +758,7 @@ /obj/machinery/power/apc/unlocked{ dir = 1; environ = 0; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -827,7 +825,7 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "dg" = ( @@ -945,7 +943,7 @@ "dN" = ( /obj/machinery/power/apc/unlocked{ dir = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -1067,7 +1065,7 @@ /area/awaymission/bmpship/fore) "ee" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/carpet, /area/awaymission/bmpship/fore) "ef" = ( @@ -1265,7 +1263,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plasteel, /area/awaymission/bmpship/aft) "eS" = ( @@ -1336,9 +1334,8 @@ /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plasteel{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "fg" = ( /obj/structure/kitchenspike, @@ -1422,19 +1419,13 @@ /turf/open/floor/engine, /area/awaymission/bmpship/aft) "ft" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fu" = ( /obj/structure/lattice, /turf/template_noop, /area/awaymission/bmpship/fore) -"fv" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/awaymission/bmpship/fore) "fw" = ( /obj/structure/cable, /turf/open/floor/plating/airless, @@ -1448,9 +1439,8 @@ /area/awaymission/bmpship/fore) "fy" = ( /obj/structure/cable, -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fA" = ( /obj/item/kitchen/knife, @@ -1486,22 +1476,15 @@ }, /turf/open/floor/plasteel, /area/awaymission/bmpship/aft) -"fI" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/awaymission/bmpship/fore) "fJ" = ( /obj/item/shard, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fK" = ( /obj/structure/chair/stool, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fL" = ( /obj/item/stack/cable_coil{ @@ -1530,18 +1513,16 @@ anchored = 1; dir = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fU" = ( /obj/structure/frame/computer{ anchored = 1; dir = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "fV" = ( /obj/machinery/light/small, @@ -1552,14 +1533,8 @@ /turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "fW" = ( -/turf/open/floor/plasteel{ - icon_state = "platingdmg3" - }, -/area/awaymission/bmpship/midship) -"fX" = ( -/turf/open/floor/plasteel{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "fY" = ( /obj/effect/mapping_helpers/airlock/locked, @@ -1582,9 +1557,8 @@ /area/awaymission/bmpship) "gc" = ( /obj/item/multitool, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship) "gd" = ( /obj/machinery/door/airlock/titanium, @@ -1643,9 +1617,8 @@ /area/awaymission/bmpship/fore) "gn" = ( /obj/structure/cable, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/fore) "go" = ( /obj/machinery/light/small{ @@ -1670,9 +1643,8 @@ /turf/open/floor/plating/asteroid/airless, /area/awaymission/bmpship/midship) "gt" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/midship) "gv" = ( /obj/item/wallframe/apc, @@ -1689,7 +1661,7 @@ /turf/open/floor/plating/airless, /area/awaymission/bmpship/midship) "gz" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel, /area/awaymission/bmpship/aft) "gA" = ( @@ -1736,11 +1708,6 @@ "gK" = ( /turf/closed/mineral/random, /area/awaymission/bmpship/fore) -"gL" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/awaymission/bmpship/midship) "gM" = ( /obj/structure/mecha_wreckage/ripley, /turf/open/floor/plating/airless, @@ -1795,9 +1762,8 @@ /turf/template_noop, /area/template_noop) "ha" = ( -/turf/open/floor/plating/airless{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/midship) "hb" = ( /obj/effect/decal/remains/human, @@ -1827,11 +1793,6 @@ }, /turf/open/floor/plasteel/cafeteria, /area/awaymission/bmpship/aft) -"hg" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/awaymission/bmpship/midship) "hh" = ( /obj/item/clothing/suit/caution, /turf/open/floor/plating/airless, @@ -1842,7 +1803,7 @@ /area/awaymission/bmpship/midship) "hk" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plasteel, /area/awaymission/bmpship/aft) "hl" = ( @@ -1894,9 +1855,6 @@ "hE" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/awaymission/bmpship/fore) -"xA" = ( -/turf/closed/mineral/random, -/area/awaymission/bmpship) "ya" = ( /obj/machinery/door/poddoor/shutters{ id = "packerMine" @@ -1913,7 +1871,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "EQ" = ( @@ -1928,7 +1886,7 @@ /obj/effect/turf_decal/tile/green{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/awaymission/bmpship/midship) "Hy" = ( @@ -1965,9 +1923,8 @@ /obj/machinery/light/small{ dir = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/awaymission/bmpship/midship) "Xc" = ( /obj/structure/frame/computer{ @@ -2014,9 +1971,9 @@ aa aa aa aa -xA -xA -xA +gb +gb +gb aa aa aa @@ -2065,9 +2022,9 @@ aa aa aa fS -xA -xA -xA +gb +gb +gb aa aa aa @@ -2116,10 +2073,10 @@ aa aa aa fS -xA -xA -xA -xA +gb +gb +gb +gb aa aa aa @@ -2168,8 +2125,8 @@ aa aa aa fS -xA -xA +gb +gb fS fS aa @@ -2230,9 +2187,9 @@ aa aa aa aa -xA -xA -xA +gb +gb +gb aa aa aa @@ -2280,11 +2237,11 @@ aa aa fS fS -xA -xA -xA -xA -xA +gb +gb +gb +gb +gb aa aa aa @@ -2330,13 +2287,13 @@ aa fS fS fS -xA -xA -xA -xA -xA -xA -xA +gb +gb +gb +gb +gb +gb +gb aa aa aa @@ -2381,14 +2338,14 @@ hn fS fS fS -xA -xA -xA -xA -xA -xA -xA -xA +gb +gb +gb +gb +gb +gb +gb +gb aa aa aa @@ -2434,13 +2391,13 @@ fS fS fS fS -xA -xA -xA -xA -xA -xA -xA +gb +gb +gb +gb +gb +gb +gb aa aa "} @@ -2471,7 +2428,7 @@ bV bV aT fu -fI +ft fu aa aa @@ -2488,10 +2445,10 @@ fS fS fS fS -xA -xA -xA -xA +gb +gb +gb +gb aa aa "} @@ -2521,7 +2478,7 @@ bV bV bV fc -fv +ft fJ cG hE @@ -2540,8 +2497,8 @@ fS fS fS fS -xA -xA +gb +gb fS aa aa @@ -2676,7 +2633,7 @@ eT aT fy fL -fv +ft cG cG gH @@ -2731,7 +2688,7 @@ fw gd gn gI -fv +ft cG gb gb @@ -2781,8 +2738,8 @@ aT aT aT go -fI -fv +ft +ft cG gb gb @@ -2986,7 +2943,7 @@ ce aq gr gI -fv +ft gK gb gb @@ -3035,7 +2992,7 @@ dB ce ce aq -fv +ft gp gp gK @@ -3237,7 +3194,7 @@ dg dg fA ej -fX +fW ge gb gb @@ -3474,8 +3431,8 @@ aa aa am EQ -gL -hg +gt +gt ha at aq @@ -3495,7 +3452,7 @@ dg ce fm at -gL +gt gs Mx Mx @@ -3525,9 +3482,9 @@ aa aa ap aq -hg +gt at -hg +gt by aq ci @@ -3599,7 +3556,7 @@ fm Kj at gs -gL +gt gs fm gb @@ -3651,7 +3608,7 @@ at gs at at -gL +gt fm gb gb @@ -3663,8 +3620,8 @@ gb fS fS fS -xA -xA +gb +gb aa aa "} @@ -3714,9 +3671,9 @@ fS fS fS fS -xA -xA -xA +gb +gb +gb aa "} (35,1,1) = {" @@ -3764,10 +3721,10 @@ fS fS fS fS -xA -xA -xA -xA +gb +gb +gb +gb aa "} (36,1,1) = {" @@ -3804,7 +3761,7 @@ QM at at at -hg +gt fm fS fS @@ -3815,10 +3772,10 @@ aa aa aa aa -xA -xA -xA -xA +gb +gb +gb +gb aa "} (37,1,1) = {" @@ -3867,8 +3824,8 @@ aa aa aa aa -xA -xA +gb +gb aa aa "} diff --git a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm b/_maps/r_ruins/space/deepstorage.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/deepstorage.dmm rename to _maps/r_ruins/space/deepstorage.dmm index e984a174e32a..b4083c0a6578 100644 --- a/_maps/RandomRuins/SpaceRuins/deepstorage.dmm +++ b/_maps/r_ruins/space/deepstorage.dmm @@ -132,7 +132,7 @@ "aE" = ( /obj/machinery/power/apc/away{ name = "Recycling APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -171,9 +171,8 @@ /obj/item/stack/sheet/mineral/wood, /obj/item/stack/package_wrap, /obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) @@ -345,8 +344,8 @@ /obj/structure/closet/cardboard, /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/space/languagebook, -/obj/effect/spawner/lootdrop/space/languagebook, +/obj/effect/spawner/random/exotic/languagebook, +/obj/effect/spawner/random/exotic/languagebook, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) "aX" = ( @@ -375,9 +374,8 @@ "aZ" = ( /obj/structure/table, /obj/machinery/reagentgrinder, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ dir = 4 }, @@ -655,7 +653,7 @@ "bN" = ( /obj/machinery/power/apc/away{ name = "Kitchen APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel/cafeteria, @@ -795,8 +793,8 @@ /area/ruin/space/has_grav/deepstorage) "cd" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/space/rareseed, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/hydroponics) "cf" = ( @@ -808,17 +806,15 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Hydroponics APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/hydroponics) "ch" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, -/obj/machinery/airalarm/away{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/storage) @@ -872,9 +868,8 @@ /area/ruin/space/has_grav/deepstorage) "cm" = ( /obj/structure/table, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 4 }, @@ -925,9 +920,8 @@ /area/ruin/space/has_grav/deepstorage) "cs" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/deepstorage) "ct" = ( @@ -1147,7 +1141,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Storage APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1270,7 +1264,7 @@ /area/ruin/space/has_grav/deepstorage/storage) "dh" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage) @@ -1527,10 +1521,8 @@ /obj/item/radio{ pixel_x = 4 }, -/obj/machinery/airalarm/away{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/away_general_access, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/deepstorage/armory) "dR" = ( @@ -1567,7 +1559,7 @@ }, /obj/machinery/power/apc/away{ name = "Main Area APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/stripes/corner, /obj/effect/decal/cleanable/dirt, @@ -1624,7 +1616,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Armory APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -1728,7 +1720,7 @@ /obj/structure/reagent_dispensers/peppertank{ pixel_x = 32 }, -/obj/effect/spawner/lootdrop/space/fancytool, +/obj/effect/spawner/random/exotic/tool, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/deepstorage/armory) "ey" = ( @@ -1868,7 +1860,7 @@ /obj/machinery/power/apc/away{ dir = 1; name = "Airlock Control APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2072,9 +2064,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/power) @@ -2109,10 +2100,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/hidden{ dir = 4 }, -/obj/machinery/airalarm/away{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/airlock) @@ -2146,8 +2135,7 @@ /obj/machinery/power/apc/away{ dir = 8; name = "Power and Atmospherics APC"; - pixel_x = -25; - pixel_y = 1 + pixel_x = -25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2184,7 +2172,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/deepstorage/power) "fC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 8; id_tag = "o2_out_bunker"; name = "oxygen out" @@ -2199,7 +2187,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 4; name = "Dormitory APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2250,7 +2238,7 @@ /area/ruin/space/has_grav/deepstorage/power) "fL" = ( /obj/machinery/air_sensor{ - id_tag = "o2_sensor_bunker" + chamber_id = "o2_sensor_bunker" }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2422,10 +2410,8 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/airalarm/away{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/away_general_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_scrubber/on{ dir = 1 @@ -2505,7 +2491,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/deepstorage/power) "gv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 8; id_tag = "n2_out_bunker"; name = "nitrogen out" @@ -2573,7 +2559,7 @@ /area/ruin/space/has_grav/deepstorage/power) "gD" = ( /obj/machinery/air_sensor{ - id_tag = "n2_sensor_bunker" + chamber_id = "n2_sensor_bunker" }, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/deepstorage/power) @@ -2743,9 +2729,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ dir = 4 }, -/obj/machinery/airalarm/away{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/away_general_access, /turf/open/floor/light, /area/ruin/space/has_grav/deepstorage/hydroponics) "hg" = ( diff --git a/_maps/RandomRuins/SpaceRuins/derelict1.dmm b/_maps/r_ruins/space/derelict1.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/derelict1.dmm rename to _maps/r_ruins/space/derelict1.dmm diff --git a/_maps/RandomRuins/SpaceRuins/derelict2.dmm b/_maps/r_ruins/space/derelict2.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/derelict2.dmm rename to _maps/r_ruins/space/derelict2.dmm diff --git a/_maps/RandomRuins/SpaceRuins/derelict3.dmm b/_maps/r_ruins/space/derelict3.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/derelict3.dmm rename to _maps/r_ruins/space/derelict3.dmm diff --git a/_maps/RandomRuins/SpaceRuins/derelict4.dmm b/_maps/r_ruins/space/derelict4.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/derelict4.dmm rename to _maps/r_ruins/space/derelict4.dmm index c30258775f9e..5938f653b518 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict4.dmm +++ b/_maps/r_ruins/space/derelict4.dmm @@ -36,7 +36,7 @@ /turf/open/floor/mineral/titanium/blue/airless, /area/ruin/unpowered) "k" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/mineral/titanium/blue/airless, /area/ruin/unpowered) "l" = ( diff --git a/_maps/RandomRuins/SpaceRuins/derelict5.dmm b/_maps/r_ruins/space/derelict5.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/derelict5.dmm rename to _maps/r_ruins/space/derelict5.dmm index 356daa38b485..0c44ee8150bb 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict5.dmm +++ b/_maps/r_ruins/space/derelict5.dmm @@ -25,7 +25,7 @@ /turf/open/floor/plating, /area/ruin/unpowered) "i" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/ruin/unpowered) "j" = ( @@ -40,7 +40,7 @@ /area/ruin/unpowered) "l" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/unpowered) "m" = ( diff --git a/_maps/RandomRuins/SpaceRuins/derelict6.dmm b/_maps/r_ruins/space/derelict6.dmm similarity index 83% rename from _maps/RandomRuins/SpaceRuins/derelict6.dmm rename to _maps/r_ruins/space/derelict6.dmm index 66b4e002b7db..d90ff064f4eb 100644 --- a/_maps/RandomRuins/SpaceRuins/derelict6.dmm +++ b/_maps/r_ruins/space/derelict6.dmm @@ -16,9 +16,8 @@ /area/template_noop) "ad" = ( /obj/structure/girder, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "ae" = ( /obj/item/stack/sheet/iron, @@ -36,9 +35,8 @@ /turf/open/floor/plasteel/airless, /area/ruin/unpowered) "ah" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "ai" = ( /turf/closed/wall, @@ -52,9 +50,8 @@ /area/template_noop) "ak" = ( /obj/item/stack/rods, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "al" = ( /obj/structure/fluff/broken_flooring{ @@ -76,20 +73,8 @@ /area/ruin/unpowered) "ao" = ( /obj/structure/closet/emcloset, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/unpowered) -"ap" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/unpowered) -"aq" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "ar" = ( /obj/structure/girder, @@ -97,20 +82,13 @@ /area/ruin/unpowered) "as" = ( /obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "at" = ( /obj/item/stack/rods, /turf/open/floor/plasteel/airless, /area/ruin/unpowered) -"au" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/unpowered) "av" = ( /obj/effect/decal/remains/human, /turf/open/floor/plasteel/airless, @@ -125,9 +103,8 @@ /area/ruin/unpowered) "ay" = ( /obj/item/stack/tile/plasteel, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "az" = ( /obj/structure/fluff/broken_flooring{ @@ -145,12 +122,6 @@ }, /turf/template_noop, /area/template_noop) -"aB" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/unpowered) "aC" = ( /obj/machinery/light/broken, /turf/open/floor/plasteel/airless, @@ -161,9 +132,8 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "aE" = ( /obj/structure/door_assembly/door_assembly_mhatch{ @@ -240,9 +210,8 @@ /obj/machinery/light/broken{ dir = 1 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "aQ" = ( /obj/item/stack/tile/plasteel, @@ -266,16 +235,14 @@ "aU" = ( /obj/structure/table/wood, /obj/item/shard, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "aV" = ( /obj/structure/table/wood, /obj/item/trash/plate, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "aW" = ( /obj/structure/table, @@ -320,17 +287,6 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/unpowered) -"be" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/ruin/unpowered) -"bg" = ( -/obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/unpowered) "bh" = ( /obj/machinery/light/broken{ dir = 8 @@ -341,9 +297,8 @@ "bi" = ( /obj/item/stack/sheet/iron, /obj/item/clothing/head/chefhat, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "bj" = ( /obj/item/trash/plate, @@ -352,21 +307,13 @@ /area/ruin/unpowered) "bk" = ( /obj/structure/table_frame/wood, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/unpowered) -"bl" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "bm" = ( /obj/item/chair, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "bo" = ( /obj/item/stack/rods, @@ -375,22 +322,14 @@ "bp" = ( /obj/item/stack/sheet/iron, /obj/structure/girder, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/unpowered) -"bq" = ( -/obj/item/stack/tile/plasteel, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "br" = ( /obj/structure/girder, /obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/unpowered) "bt" = ( /obj/structure/fluff/broken_flooring{ @@ -579,11 +518,11 @@ aa aa aa ac -ap +ah aw ag ag -be +ah bH aa ac @@ -607,14 +546,14 @@ ag ag ag ah -be -be -be -be -be -be -be -be +ah +ah +ah +ah +ah +ah +ah +ah bH aa aa @@ -624,21 +563,21 @@ aa aa aa ac -ap -ap +ah +ah at bD ag ai ai ai -aq +ad ah -bg -bl +as +ad ah ay -be +ah ac aa "} @@ -647,7 +586,7 @@ aa ac ac ac -be +ah ai aw ag @@ -656,12 +595,12 @@ aE aH aQ aH -ap -ap ah ah -be -be +ah +ah +ah +ah aa aa "} @@ -669,7 +608,7 @@ aa aa ac ac -ap +ah am ai ag @@ -681,7 +620,7 @@ ai ai ai ai -aq +ad bp ah as @@ -692,7 +631,7 @@ aa aa ac ac -ap +ah ah ai av @@ -704,8 +643,8 @@ aR aW aW bh -ap -ap +ah +ah br ac ac @@ -715,9 +654,9 @@ aa aa aa aa -ap ah -aq +ah +ad ag aw ag @@ -727,9 +666,9 @@ aR aR aR bi -ap -bq -bl +ah +ay +ad ac ac aa @@ -750,9 +689,9 @@ aR aR ba bj -au -ap -aq +as +ah +ad ac ac ab @@ -842,8 +781,8 @@ aT ah aM aT -au -be +as +ah ai ac aa @@ -852,8 +791,8 @@ aa (16,1,1) = {" aa ac -ap -ap +ah +ah ao ai ag @@ -863,11 +802,11 @@ aG aO bI ac -be -ap +ah +ah ac -au -aq +as +ad aa aa aa @@ -877,7 +816,7 @@ aa ac bx ak -ap +ah ai ag ag @@ -885,8 +824,8 @@ ag ai aM aU -aB -ap +ay +ah bk bm az @@ -899,19 +838,19 @@ aa aa aa ae -ap -ap -aq +ah +ah +ad ag ag aC ai aM -ap -ap -ap +ah +ah +ah ac -ap +ah ac aa aa @@ -923,17 +862,17 @@ aa aa aa bz -ap +ah ai ag ag ag ai aP -ap +ah ac -be -ap +ah +ah aZ aa aa @@ -946,16 +885,16 @@ aa aa aa ac -ap +ah ai ag ag ag ai -ap +ah aV aD -ap +ah ac ac aa @@ -975,9 +914,9 @@ ag ag ag ai -au -ap -ap +as +ah +ah aY ac ac @@ -993,14 +932,14 @@ aa aa aa ac -ap +ah aw at ag ai ai ai -aq +ad ac aa bo diff --git a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm b/_maps/r_ruins/space/emptyshell.dmm similarity index 80% rename from _maps/RandomRuins/SpaceRuins/emptyshell.dmm rename to _maps/r_ruins/space/emptyshell.dmm index 583151d8ef2f..c4ab86a1d98d 100644 --- a/_maps/RandomRuins/SpaceRuins/emptyshell.dmm +++ b/_maps/r_ruins/space/emptyshell.dmm @@ -13,17 +13,13 @@ /turf/open/floor/plating, /area/ruin/unpowered) "e" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/ruin/unpowered) "f" = ( /obj/item/ammo_box/magazine/sniper_rounds, /turf/open/floor/plating, /area/ruin/unpowered) -"g" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/ruin/unpowered) "h" = ( /obj/item/stack/rods, /turf/open/floor/plating, @@ -35,22 +31,12 @@ /obj/machinery/door/airlock, /turf/open/floor/plating, /area/ruin/unpowered) -"k" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/ruin/unpowered) "l" = ( /obj/item/stack/cable_coil, /turf/open/floor/plating, /area/ruin/unpowered) "m" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/unpowered) @@ -182,7 +168,7 @@ e d d h -k +m d e d @@ -215,7 +201,7 @@ c d d d -g +m d d d @@ -247,7 +233,7 @@ a c c d -g +m d d d diff --git a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm b/_maps/r_ruins/space/forgottenship.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/forgottenship.dmm rename to _maps/r_ruins/space/forgottenship.dmm index d0a78e82eec6..92a1e70e1584 100644 --- a/_maps/RandomRuins/SpaceRuins/forgottenship.dmm +++ b/_maps/r_ruins/space/forgottenship.dmm @@ -178,7 +178,7 @@ req_one_access_txt = "150"; secure = 1 }, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, +/obj/effect/spawner/random/contraband/armory, /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "aF" = ( @@ -354,7 +354,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Syndicate Cargo Pod APC"; - pixel_y = 32; + pixel_y = 25; start_charge = 0 }, /obj/structure/cable, @@ -466,7 +466,7 @@ }, /obj/item/toy/nuke, /obj/item/clothing/under/chameleon, -/obj/item/pda/chameleon, +/obj/item/modular_computer/tablet/pda/chameleon, /obj/item/clothing/mask/chameleon, /obj/item/card/id/advanced/chameleon, /turf/open/floor/mineral/plastitanium, @@ -475,7 +475,7 @@ /obj/machinery/power/apc/syndicate{ dir = 1; name = "Syndicate Forgotten Ship APC"; - pixel_y = 32; + pixel_y = 25; start_charge = 0 }, /obj/structure/cable, @@ -626,9 +626,8 @@ /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bP" = ( -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "bQ" = ( @@ -654,8 +653,7 @@ /obj/machinery/computer/security/telescreen/interrogation{ name = "Cameras monitor"; network = list("fsci"); - req_one_access_txt = "150"; - screen_loc = "" + req_one_access_txt = "150" }, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) @@ -696,12 +694,6 @@ "bZ" = ( /turf/closed/wall/r_wall/syndicate, /area/ruin/space/has_grav/syndicate_forgotten_ship) -"ca" = ( -/obj/machinery/computer/crew/syndie{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/ruin/space/has_grav/syndicate_forgotten_ship) "cb" = ( /obj/machinery/computer/atmos_alert{ dir = 8 @@ -993,7 +985,7 @@ /turf/open/floor/mineral/plastitanium/red, /area/ruin/space/has_grav/syndicate_forgotten_ship) "cM" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 8 }, /turf/open/floor/mineral/plastitanium/red, @@ -1198,7 +1190,7 @@ /obj/structure/closet/crate/secure/gear{ req_one_access_txt = "150" }, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "dl" = ( @@ -1256,8 +1248,8 @@ /obj/structure/closet/crate/secure/gear{ req_one_access_txt = "150" }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "dr" = ( @@ -1269,7 +1261,7 @@ /obj/structure/closet/crate/secure/gear{ req_one_access_txt = "150" }, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/mineral/plastitanium, /area/ruin/space/has_grav/syndicate_forgotten_ship) "dt" = ( @@ -2938,7 +2930,7 @@ cu aw aT aw -ca +aw aw cb aw diff --git a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm b/_maps/r_ruins/space/gasthelizards.dmm similarity index 97% rename from _maps/RandomRuins/SpaceRuins/gasthelizards.dmm rename to _maps/r_ruins/space/gasthelizards.dmm index 00c7e0883200..a813f30762c2 100644 --- a/_maps/RandomRuins/SpaceRuins/gasthelizards.dmm +++ b/_maps/r_ruins/space/gasthelizards.dmm @@ -174,8 +174,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Worn-out APC"; - pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/machinery/light{ dir = 1 @@ -220,12 +219,6 @@ /obj/machinery/portable_atmospherics/canister/carbon_dioxide, /turf/open/floor/plasteel, /area/ruin/space/has_grav/gasthelizard) -"A" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ruin/space/has_grav/gasthelizard) "B" = ( /turf/open/floor/plasteel, /area/ruin/space/has_grav/gasthelizard) @@ -244,7 +237,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /turf/open/floor/plasteel, /area/ruin/space/has_grav/gasthelizard) "F" = ( @@ -444,7 +437,7 @@ c c c t -A +u F B T @@ -459,7 +452,7 @@ c d i p -A +u B B B @@ -491,7 +484,7 @@ c f k p -A +u B B K @@ -523,7 +516,7 @@ c g k p -A +u B B M @@ -555,7 +548,7 @@ c f k p -A +u B B O diff --git a/_maps/RandomRuins/SpaceRuins/gondolaasteroid.dmm b/_maps/r_ruins/space/gondolaasteroid.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/gondolaasteroid.dmm rename to _maps/r_ruins/space/gondolaasteroid.dmm diff --git a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm b/_maps/r_ruins/space/hellfactory.dmm similarity index 97% rename from _maps/RandomRuins/SpaceRuins/hellfactory.dmm rename to _maps/r_ruins/space/hellfactory.dmm index 89e1e6a928fa..9889e2950682 100644 --- a/_maps/RandomRuins/SpaceRuins/hellfactory.dmm +++ b/_maps/r_ruins/space/hellfactory.dmm @@ -70,7 +70,7 @@ "ak" = ( /obj/machinery/atmospherics/components/unary/tank/oxygen{ dir = 8; - gas_type = /datum/gas/water_vapor; + gas_type = "water_vapor"; initialize_directions = 8 }, /turf/open/floor/plasteel/grimy, @@ -501,12 +501,12 @@ "bz" = ( /obj/structure/closet/crate, /obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) "bA" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/space/languagebook, +/obj/effect/spawner/random/exotic/languagebook, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) "bB" = ( @@ -604,7 +604,7 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/spawner/lootdrop/space/languagebook, +/obj/effect/spawner/random/exotic/languagebook, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) "bP" = ( @@ -735,7 +735,7 @@ /area/ruin/space/has_grav/hellfactory) "cj" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/space/material, +/obj/effect/spawner/random/engineering/material_rare, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) "ck" = ( @@ -751,7 +751,8 @@ "cm" = ( /obj/structure/cable, /obj/machinery/power/apc/highcap/ten_k{ - dir = 1 + dir = 1; + pixel_y = 25 }, /turf/open/floor/plating, /area/ruin/space/has_grav/hellfactory) @@ -798,9 +799,10 @@ /obj/effect/turf_decal{ dir = 9 }, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cv" = ( @@ -822,9 +824,10 @@ dir = 1 }, /obj/effect/turf_decal/caution/stand_clear/white, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cy" = ( @@ -866,9 +869,10 @@ "cF" = ( /obj/effect/turf_decal/delivery/white, /obj/machinery/door/poddoor, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cG" = ( @@ -876,36 +880,40 @@ /obj/effect/turf_decal/delivery/red, /obj/item/stack/tile/plasteel, /obj/machinery/door/poddoor, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cH" = ( /obj/effect/turf_decal/delivery/white, /obj/structure/grille/broken, /obj/machinery/door/poddoor, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cI" = ( /obj/effect/turf_decal/delivery/white, /obj/effect/turf_decal/delivery/red, /obj/machinery/door/poddoor, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cJ" = ( /obj/effect/turf_decal/delivery/white, /obj/item/stack/tile/plasteel, /obj/machinery/door/poddoor, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ broken = 1; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/hellfactory) "cK" = ( @@ -985,7 +993,7 @@ /obj/structure/rack, /obj/item/stack/wrapping_paper, /obj/item/stack/package_wrap, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hellfactory) "oH" = ( @@ -1017,7 +1025,8 @@ /area/ruin/space/has_grav/hellfactory) "wv" = ( /obj/machinery/power/apc/highcap/ten_k{ - dir = 1 + dir = 1; + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/grimy, diff --git a/_maps/r_ruins/space/hilbertresearchfacility.dmm b/_maps/r_ruins/space/hilbertresearchfacility.dmm new file mode 100644 index 000000000000..41f21360748d --- /dev/null +++ b/_maps/r_ruins/space/hilbertresearchfacility.dmm @@ -0,0 +1,5305 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/holosign/barrier/atmos/sturdy, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ao" = ( +/obj/item/stack/sheet/mineral/plasma/five{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"az" = ( +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"aX" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ba" = ( +/obj/structure/table/wood, +/obj/item/plate, +/obj/item/food/cherrycupcake/blue{ + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bi" = ( +/obj/structure/rack, +/obj/item/reagent_containers/syringe/bluespace{ + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe/bluespace{ + pixel_y = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/machinery/door/window/survival_pod, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bE" = ( +/turf/open/floor/plasteel/stairs, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bK" = ( +/obj/item/bag_of_holding_inert{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bM" = ( +/obj/effect/gibspawner/xeno, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bN" = ( +/obj/item/stack/sheet/mineral/diamond{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"bO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"cg" = ( +/turf/closed/mineral/asteroid, +/area/ruin/unpowered/no_grav) +"ch" = ( +/turf/open/floor/plating/asteroid/airless, +/area/ruin/unpowered/no_grav) +"cQ" = ( +/obj/structure/closet{ + desc = "It's a storage unit for mining."; + icon_door = "eng_tool"; + icon_state = "eng"; + name = "mining closet" + }, +/obj/item/storage/bag/ore/holding, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/under/rank/cargo/miner, +/obj/item/pickaxe/drill, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/head/hardhat, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dq" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/light/red/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dA" = ( +/obj/structure/grille/broken, +/obj/structure/shuttle/engine/propulsion/burst{ + anchored = 0; + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dB" = ( +/obj/machinery/chem_master, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dD" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dJ" = ( +/obj/structure/grille/broken, +/turf/open/floor/mineral/titanium/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"dO" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"eg" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"el" = ( +/obj/item/disk/cargo/bluespace_pod{ + pixel_y = 8 + }, +/obj/machinery/autolathe, +/obj/machinery/light/red/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"en" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"es" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"ev" = ( +/obj/structure/table/reinforced, +/obj/item/pen, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ex" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/glasses/science, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"eB" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"eC" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"eE" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"eG" = ( +/obj/item/transfer_valve, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"fv" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"fU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"gg" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"gm" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_purple" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"gv" = ( +/obj/structure/fluff/tram_rail, +/obj/machinery/door/window/survival_pod, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_white" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"gx" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mineral/processing_unit_console{ + pixel_x = -32 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"gB" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"gU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ha" = ( +/obj/structure/statue/bone/rib{ + dir = 1 + }, +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hk" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hw" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hB" = ( +/obj/machinery/door/window/survival_pod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hQ" = ( +/obj/machinery/door/keycard/light{ + puzzle_id = "hilbert" + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"hW" = ( +/obj/structure/spawner/nether{ + light_color = "#FF0000"; + light_power = 2; + light_range = 2; + max_mobs = 2 + }, +/obj/effect/gibspawner/human, +/obj/effect/rune/raise_dead, +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ie" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/seed_extractor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ig" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"io" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"iO" = ( +/obj/structure/girder/displaced, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"iP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"iS" = ( +/obj/effect/landmark/tram/middle_part/hilbert, +/obj/machinery/light/floor{ + brightness = 2; + bulb_colour = "#deefff"; + bulb_power = 0.6 + }, +/obj/machinery/computer/tram_controls{ + dir = 8; + specific_lift_id = "tram_hilbert" + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_white" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"iY" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mineral/processing_unit_console{ + pixel_x = 32 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"jt" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ju" = ( +/obj/item/assembly/signaler, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"jC" = ( +/mob/living/simple_animal/slime{ + colour = "bluespace"; + rabid = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"jF" = ( +/obj/structure/lattice/catwalk, +/obj/item/paper/crumpled/ruins/note_institute, +/obj/item/pen, +/turf/template_noop, +/area/ruin/unpowered/no_grav) +"jJ" = ( +/obj/item/reagent_containers/glass/beaker/bluespace{ + pixel_y = 5 + }, +/obj/structure/table/glass, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"jK" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"jT" = ( +/obj/effect/mapping_helpers/dead_body_placer{ + bodycount = 1 + }, +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"kp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ks" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"kw" = ( +/obj/structure/frame/machine, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ky" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"kD" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/plants, +/obj/item/plant_analyzer, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"kO" = ( +/obj/effect/turf_decal/siding/thinplating_new/light, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"le" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ln" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/light/red/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"lq" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"lI" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 5 + }, +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"lL" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"lY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mb" = ( +/turf/open/floor/mineral/titanium/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mc" = ( +/obj/structure/chair/stool/bar/directional/south, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/template_noop, +/area/template_noop) +"mo" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/end, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mC" = ( +/obj/machinery/chem_mass_spec, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"mY" = ( +/obj/machinery/light/floor{ + brightness = 2; + bulb_colour = "#deefff"; + bulb_power = 0.6 + }, +/turf/closed/mineral/asteroid, +/area/ruin/unpowered/no_grav) +"nh" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/red/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"nk" = ( +/obj/structure/sign/departments/botany/directional/west, +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 8 + }, +/obj/item/pickaxe/mini, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"np" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/red/directional/east, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"nx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"ny" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"nB" = ( +/obj/structure/sign/departments/chemistry/directional/north, +/obj/effect/turf_decal/trimline/blue/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"nN" = ( +/obj/effect/decal/cleanable/greenglow/ecto, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"oi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"on" = ( +/obj/effect/turf_decal/trimline/red/arrow_cw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/mid_joiner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ow" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"oI" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"oL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/frame/computer, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"pq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"pC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"pI" = ( +/obj/structure/chair/stool/bar/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"pY" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"qd" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"qx" = ( +/obj/structure/lattice/catwalk, +/obj/item/raw_anomaly_core/bluespace, +/turf/template_noop, +/area/ruin/unpowered/no_grav) +"qI" = ( +/obj/item/stack/sheet/bluespace_crystal{ + amount = 7 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"qR" = ( +/obj/machinery/door/morgue, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"qU" = ( +/obj/machinery/light/cold/directional/north, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"qX" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rb" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/dropper, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rg" = ( +/obj/item/keycard/hilbert, +/turf/open/floor/plating/asteroid/airless, +/area/ruin/unpowered/no_grav) +"ru" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rJ" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"rM" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rQ" = ( +/obj/machinery/door/morgue, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rV" = ( +/obj/effect/turf_decal/trimline/green/mid_joiner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/arrow_cw{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"rW" = ( +/obj/machinery/light/cold/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"sj" = ( +/turf/open/floor/circuit/green/anim, +/area/ruin/space/has_grav/powered/hilbertresearchfacility/secretroom) +"sz" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"sU" = ( +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"te" = ( +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/machinery/light/small/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"th" = ( +/obj/structure/rack, +/obj/item/gun/syringe, +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"tr" = ( +/turf/open/floor/plating/airless, +/area/ruin/unpowered/no_grav) +"ty" = ( +/obj/item/stock_parts/matter_bin/bluespace{ + pixel_y = 7 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"tL" = ( +/obj/machinery/light/broken/directional/south, +/obj/item/slime_cookie/bluespace, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"uf" = ( +/obj/effect/turf_decal/trimline/neutral/arrow_cw, +/obj/effect/turf_decal/trimline/neutral/mid_joiner, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"up" = ( +/obj/item/stock_parts/matter_bin/bluespace{ + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/bluespace{ + pixel_x = -16; + pixel_y = 7 + }, +/obj/machinery/light/red/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"us" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"uG" = ( +/obj/item/stock_parts/matter_bin/bluespace{ + pixel_y = 7 + }, +/obj/item/stock_parts/matter_bin/bluespace{ + pixel_x = 16; + pixel_y = 7 + }, +/obj/machinery/light/red/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"uV" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"uW" = ( +/obj/structure/table/glass, +/obj/item/bodybag/bluespace{ + pixel_y = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vi" = ( +/turf/template_noop, +/area/ruin/unpowered/no_grav) +"vq" = ( +/obj/item/toy/plush/beeplushie, +/turf/open/floor/plasteel/elevatorshaft, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vt" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vz" = ( +/obj/structure/rack, +/obj/item/clothing/suit/bio_suit/cmo, +/obj/item/clothing/head/bio_hood/cmo, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/machinery/door/window/survival_pod, +/turf/open/floor/mineral/plastitanium/red, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vG" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vK" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vN" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"vT" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Secured Door" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility/secretroom) +"vZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/loom, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wa" = ( +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wh" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wo" = ( +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wG" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shower/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wI" = ( +/obj/machinery/door/poddoor/shutters/preopen, +/obj/item/food/monkeycube, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wJ" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"wY" = ( +/mob/living/simple_animal/slime{ + colour = "bluespace"; + rabid = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"xb" = ( +/obj/structure/table/glass, +/obj/item/seeds/tomato, +/obj/item/seeds/tomato, +/obj/item/seeds/tomato, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"xc" = ( +/obj/structure/displaycase{ + start_showpiece_type = /obj/item/hilbertshotel + }, +/obj/machinery/light/floor{ + brightness = 2; + bulb_colour = "#deefff"; + bulb_power = 0.6 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility/secretroom) +"xm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"xI" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_purple" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"xO" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + anchored = 0; + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"xU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yi" = ( +/obj/structure/table/glass, +/obj/item/food/grown/banana, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yj" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/holosign/barrier/atmos/sturdy, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yq" = ( +/obj/machinery/light/small/broken/directional/west, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yw" = ( +/obj/item/stack/sheet/iron, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yD" = ( +/obj/structure/table/glass, +/obj/item/food/grown/tomato, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yI" = ( +/obj/structure/table/glass, +/obj/item/grown/bananapeel/mimanapeel, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yK" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yO" = ( +/obj/structure/door_assembly/door_assembly_shuttle, +/turf/open/floor/mineral/titanium/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yV" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"yZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"za" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/smartfridge, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zc" = ( +/obj/effect/turf_decal/trimline/blue/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/mid_joiner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zq" = ( +/obj/structure/table/glass, +/obj/item/food/grown/tomato/blue/bluespace, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zu" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/obj/structure/sign/departments/cargo/directional/north, +/obj/machinery/button/tram{ + id = "middle_part_hilbert"; + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zw" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zC" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zM" = ( +/obj/structure/table/wood, +/obj/item/food/snowcones/blue, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"zO" = ( +/obj/machinery/chem_dispenser, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Af" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/warm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ax" = ( +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/mid_joiner{ + dir = 1 + }, +/obj/item/crowbar/large{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"AX" = ( +/obj/effect/turf_decal/trimline/yellow/arrow_cw{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/mid_joiner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"AZ" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ba" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Bh" = ( +/obj/machinery/light/small/red/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Bj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Bk" = ( +/turf/open/floor/plating/asteroid, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Bo" = ( +/turf/closed/indestructible/riveted/plastinum, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BF" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BH" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BI" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BJ" = ( +/turf/closed/indestructible/riveted/plastinum, +/area/ruin/space/has_grav/powered/hilbertresearchfacility/secretroom) +"BL" = ( +/obj/structure/table/wood, +/obj/item/folder/white, +/obj/item/stamp/rd, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BM" = ( +/obj/effect/turf_decal/stripes/red/line, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BO" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BQ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/food/tomato_smudge, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"BY" = ( +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Co" = ( +/obj/structure/table/wood, +/obj/item/plate, +/obj/item/food/pancakes/blueberry{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"CO" = ( +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"CP" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"CV" = ( +/obj/machinery/light/cold/directional/north, +/obj/effect/turf_decal/stripes/red/corner, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"CZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Dh" = ( +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Do" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Dy" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"DB" = ( +/obj/structure/fluff/tram_rail/end{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"DO" = ( +/obj/machinery/door/window/survival_pod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"DR" = ( +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ee" = ( +/obj/structure/filingcabinet, +/obj/item/paper/fluff/ruins/docslabnotes, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ei" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ej" = ( +/obj/structure/light_puzzle{ + puzzle_id = "hilbert" + }, +/turf/closed/indestructible/riveted/plastinum, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Eu" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"EI" = ( +/obj/machinery/door/poddoor/shutters/preopen, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"EM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"EP" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ER" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"EY" = ( +/obj/structure/closet/crate/bin, +/obj/item/paper/crumpled/ruins/postdocs_memo, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Fg" = ( +/obj/machinery/door/airlock/cult/unruned/friendly, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Fm" = ( +/obj/machinery/light/warm/directional/east, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Fn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/conveyor{ + id = "hilbert1" + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Fo" = ( +/obj/machinery/button/tram{ + id = "left_part_hilbert"; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Fv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"FB" = ( +/obj/structure/table/wood, +/obj/item/lighter, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"FC" = ( +/obj/item/storage/box/monkeycubes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"FF" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Gf" = ( +/obj/effect/landmark/tram/right_part/hilbert, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Gi" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Gl" = ( +/obj/structure/table/reinforced, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Gs" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/button/tram{ + id = "right_part_hilbert"; + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Gy" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/obj/machinery/light/cold/directional/north, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"GJ" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"GP" = ( +/obj/structure/table/wood, +/obj/item/gps/spaceruin, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"GV" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ha" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Hb" = ( +/obj/item/mop, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Hf" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Hu" = ( +/obj/machinery/door/keycard/hilbert, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Hx" = ( +/obj/machinery/door/poddoor/shutters/preopen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"HK" = ( +/obj/structure/closet/crate/secure/plasma, +/obj/item/stack/ore/plasma{ + amount = 30 + }, +/obj/item/stack/ore/diamond{ + amount = 5 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"HN" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_white" + }, +/obj/effect/landmark/lift_id/hilbert, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ic" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ih" = ( +/obj/machinery/light/small/red/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Im" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"It" = ( +/obj/effect/landmark/tram/left_part/hilbert, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Iv" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Iy" = ( +/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/area/ruin/space/has_grav/powered/hilbertresearchfacility/secretroom) +"ID" = ( +/obj/structure/table/glass, +/obj/item/grown/bananapeel, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"IO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/item/grown/bananapeel, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"IU" = ( +/obj/item/food/monkeycube, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"IW" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"IY" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Jc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Jd" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod, +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + pixel_x = -32 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_purple" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Jh" = ( +/obj/structure/fluff/tram_rail/anchor, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Jp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"JL" = ( +/obj/structure/fluff/tram_rail, +/obj/structure/holosign/barrier/atmos/sturdy, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"JM" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"JR" = ( +/obj/structure/fluff/tram_rail, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"JV" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"JW" = ( +/obj/machinery/light/broken/directional/north, +/obj/machinery/monkey_recycler, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Kd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"KC" = ( +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"KJ" = ( +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium, +/area/ruin/unpowered/no_grav) +"KL" = ( +/obj/structure/chair/stool/bar/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"La" = ( +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Lh" = ( +/obj/structure/fluff/tram_rail/end, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Lr" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Lw" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"LD" = ( +/obj/machinery/light/cold/directional/south, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"LE" = ( +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Mf" = ( +/obj/structure/girder/reinforced, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Mh" = ( +/obj/machinery/computer{ + desc = "A computer long since rendered non-functional due to lack of maintenance. Spitting out old messages."; + dir = 8; + name = "broken terminal" + }, +/obj/item/paper/fluff/ruins/romans_emails{ + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Mv" = ( +/turf/open/floor/mineral/titanium/tiled/blue, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"MD" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ME" = ( +/obj/structure/chair/stool/bar/directional/west, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"MX" = ( +/turf/closed/wall/mineral/titanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Nc" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Nh" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/ruin/unpowered/no_grav) +"Nl" = ( +/obj/structure/table/glass, +/obj/item/food/grown/tomato/blue, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Np" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 5 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Nw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ny" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"NF" = ( +/obj/structure/grille/broken, +/obj/structure/girder, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"NJ" = ( +/obj/effect/decal/remains/human, +/obj/machinery/door/window/survival_pod{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"NQ" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/obj/machinery/light/cold/directional/south, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Oe" = ( +/obj/machinery/light/warm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ok" = ( +/turf/closed/indestructible/riveted/plastinum/nodiagonal, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"OA" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/plastitanium, +/area/ruin/unpowered/no_grav) +"Pu" = ( +/obj/structure/table/wood, +/obj/item/plate, +/obj/item/food/burger/blue{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Pw" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/machinery/door/window/survival_pod{ + dir = 1 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_white" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"PG" = ( +/obj/effect/turf_decal/trimline/white/arrow_cw, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"PL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"PR" = ( +/obj/machinery/porta_turret/syndicate{ + desc = "A ballistic machine gun auto-turret that fires bluespace bullets."; + lethal_projectile = /obj/projectile/magic/teleport; + name = "displacement turret"; + stun_projectile = /obj/projectile/magic/teleport + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Qu" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/nutrient/l4z{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/mutagen, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"QA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"QS" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_white" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"QU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/tomato_smudge, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"QV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"QY" = ( +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Rg" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Rj" = ( +/obj/machinery/hydroponics, +/turf/open/floor/mineral/titanium/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Rk" = ( +/obj/structure/sign/departments/evac/directional/south, +/obj/effect/turf_decal/trimline/white/arrow_cw, +/obj/effect/turf_decal/trimline/white/mid_joiner, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Rq" = ( +/turf/closed/indestructible/riveted/plastinum, +/area/ruin/unpowered/no_grav) +"Ru" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Rw" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"RE" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"RL" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"RN" = ( +/obj/structure/statue/bone/rib, +/turf/open/floor/plasteel/cult, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"RX" = ( +/obj/machinery/door/poddoor/shutters, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sa" = ( +/obj/effect/turf_decal/trimline/purple/arrow_cw, +/obj/effect/turf_decal/trimline/purple/mid_joiner, +/obj/structure/sign/departments/xenobio/directional/south, +/obj/item/grown/log/tree{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/chem_master/condimaster, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sg" = ( +/obj/machinery/door/airlock/science, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sn" = ( +/obj/structure/table/wood, +/obj/item/stock_parts/cell/bluespace{ + pixel_y = 4 + }, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Sp" = ( +/obj/effect/turf_decal/trimline/purple/arrow_cw, +/obj/effect/turf_decal/trimline/purple/mid_joiner, +/obj/item/wrench{ + pixel_y = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"SD" = ( +/obj/machinery/conveyor{ + id = "hilbert2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"SH" = ( +/obj/effect/decal/remains/human, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"SR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"SU" = ( +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/item/slimecross/industrial/bluespace, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"SX" = ( +/obj/machinery/light/cold/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ti" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"To" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/clothing/suit/toggle/labcoat, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"TE" = ( +/obj/structure/table/glass, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/secateurs, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"TO" = ( +/obj/machinery/light/broken/directional/south, +/obj/item/slime_extract/bluespace, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"TT" = ( +/obj/machinery/light/cold/directional/north, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"TV" = ( +/obj/structure/table/glass, +/obj/item/grown/bananapeel/bluespace, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Uc" = ( +/obj/structure/table/glass, +/obj/item/food/grown/banana/bluespace, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ui" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ut" = ( +/turf/template_noop, +/area/template_noop) +"Uy" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Uz" = ( +/obj/effect/turf_decal/siding/thinplating_new/light/corner, +/obj/effect/turf_decal/siding/thinplating_new/light/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"UF" = ( +/obj/machinery/door/airlock/science, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"UH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/biogenerator, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"UK" = ( +/obj/structure/table/glass, +/obj/item/seeds/banana, +/obj/item/seeds/banana, +/obj/item/seeds/banana, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"UL" = ( +/obj/structure/table/glass, +/obj/item/food/grown/tomato/blood, +/turf/open/floor/glass, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Vk" = ( +/obj/effect/turf_decal/siding/thinplating_new/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Vn" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/black, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"VD" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"VT" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Wg" = ( +/obj/structure/mopbucket, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Wt" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"WA" = ( +/obj/item/storage/bag/trash/bluespace, +/mob/living/simple_animal/hostile/rat, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"WC" = ( +/obj/machinery/door/window/survival_pod{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/slime{ + colour = "bluespace"; + rabid = 1 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"WI" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"WJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"WP" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/ruin/unpowered/no_grav) +"WY" = ( +/obj/effect/turf_decal/trimline/purple/arrow_cw, +/obj/effect/turf_decal/trimline/purple/mid_joiner, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Xi" = ( +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Xq" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/head/soft/purple{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Xt" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Xw" = ( +/obj/structure/fluff/tram_rail, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"XI" = ( +/obj/item/pickaxe/silver, +/turf/open/floor/plating/asteroid, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"XN" = ( +/obj/machinery/light/broken/directional/north, +/obj/structure/tank_holder/extinguisher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"XP" = ( +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"XY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Yg" = ( +/obj/structure/table/wood, +/obj/structure/bedsheetbin, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ym" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/reagentgrinder{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Yt" = ( +/obj/structure/fluff/tram_rail{ + dir = 1 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 1 + }, +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + pixel_x = -32 + }, +/obj/structure/industrial_lift/tram{ + icon_state = "titanium_purple" + }, +/turf/open/floor/engine, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Yv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"YF" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/floor, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"YG" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/tiled/white, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"YL" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/mineral/titanium/tiled/yellow, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"YP" = ( +/obj/structure/chair/stool/bar/directional/north, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"YU" = ( +/obj/machinery/light/warm/directional/west, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Zc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Ze" = ( +/mob/living/simple_animal/slime{ + colour = "bluespace"; + rabid = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/plastitanium, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Zk" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"Zy" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ZG" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/item/grown/bananapeel, +/turf/open/floor/grass/fairy, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ZH" = ( +/obj/machinery/light/small/broken/directional/east, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ZM" = ( +/obj/machinery/light/small/broken/directional/west, +/obj/effect/turf_decal/siding/wideplating_new/dark{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/tiled/purple, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) +"ZV" = ( +/turf/open/floor/plating, +/area/ruin/space/has_grav/powered/hilbertresearchfacility) + +(1,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(2,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Ok +Ym +za +Sc +ie +UH +vZ +Qu +Ok +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(3,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +kD +vt +Iv +BQ +Iv +Im +Iv +YF +TE +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(4,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +Bo +xb +zF +Rj +CO +Rj +CO +Rj +Zc +yD +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(5,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +Bo +Nl +yQ +Rj +CO +Rj +CO +Rj +Ti +TV +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(6,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +ID +eg +SR +hw +Jp +IO +SR +XY +Nl +Bo +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(7,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +yi +yQ +Rj +CO +Rj +CO +Rj +Zc +Uc +Bo +ch +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(8,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +Bo +zq +yV +Rj +CO +Rj +CO +Rj +Zc +ID +Bo +ch +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(9,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +yD +eg +SR +hw +Jp +IW +SR +XY +UK +Bo +ch +ch +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(10,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +Bo +yI +yQ +Rj +CO +Rj +CO +Rj +Zc +UL +Bo +cg +ch +ch +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(11,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Bo +Bo +Bo +Bo +Ok +yZ +Rj +CO +Rj +CO +Rj +QA +Ok +Ok +cg +cg +ch +ch +ch +ch +Ut +Ut +Ut +Ut +Ut +Ut +"} +(12,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +uW +uW +Ok +vq +Bo +GJ +hM +ZG +vN +mD +gB +QU +Bo +cg +cg +cg +cg +cg +ch +ch +ch +ch +Ut +Ut +Ut +Ut +"} +(13,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +La +La +Ok +Bo +Bo +Bo +Ok +CP +Bo +CP +Ok +Bo +Ok +cg +cg +cg +cg +cg +cg +cg +ch +ch +ch +Ut +Ut +Ut +"} +(14,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Bo +Bo +Bo +jT +qX +rM +Bo +cg +cg +Bo +rV +nk +rV +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +ch +ch +ch +Ut +Ut +"} +(15,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Bo +ex +jJ +Bo +nN +qX +rM +Bo +cg +Ok +Ok +XP +XP +XP +Ok +Ok +cg +cg +cg +Ok +Bo +Bo +Bo +Bo +Bo +ch +ch +ch +Ut +Ut +"} +(16,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +rb +eB +ks +Ok +Bo +qR +Bo +Ok +Bo +Ok +CV +Ru +Fo +Ru +LD +Ok +Bo +Bo +Bo +Ok +Hf +FF +Gl +QV +Bo +Bo +ch +mk +Ut +Ut +"} +(17,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +qU +Vk +Uz +mo +Mv +uV +Rw +wJ +Bo +nB +Xi +Do +KC +vG +YG +Rk +Bo +To +To +Ok +Ok +fv +fv +QV +BY +Ok +Rq +Rq +Ut +Ut +"} +(18,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +dB +Vk +kO +Mv +Mv +Mv +Mv +Mv +Ei +zc +Xi +hk +It +Xw +YG +PG +Sg +CZ +DR +CZ +hQ +sU +ev +QV +Ui +en +KJ +OA +Ut +Ut +"} +(19,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +zO +Np +le +mo +Mv +hL +Jc +xU +Bo +zc +Xi +hk +KC +Xw +YG +PG +Bo +wG +rW +lL +Ej +wh +Gl +WJ +BY +Ok +Rq +Rq +Ut +Ut +"} +(20,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Bo +Bo +AZ +Dh +mC +Ok +Bo +rQ +Ok +Bo +Ok +BH +hk +KC +Xw +LE +Ok +Bo +Bo +Bo +Bo +Ok +Mh +Fv +QV +Af +Bo +ch +mk +Ut +Ut +"} +(21,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +cg +Bo +Bo +Bo +Bo +Bo +bi +sz +Bo +cg +Ok +Ok +Dy +KC +Jh +Ok +Ok +Wg +Bo +cg +Bo +Yv +pq +Nw +bO +BY +Bo +ch +ch +Ut +Ut +"} +(22,1,1) = {" +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +Bo +vz +te +Bo +cg +cg +Bo +yj +ae +JL +Bo +Hb +WA +Bo +cg +Ok +Bo +pI +eC +KL +Bo +Ok +cg +cg +ch +Ut +"} +(23,1,1) = {" +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +Bo +Ok +th +Bo +cg +cg +Bo +hk +KC +Xw +Bo +RL +Xq +Bo +cg +cg +Ok +Bo +Bo +Bo +Ok +cg +cg +ch +ch +Ut +"} +(24,1,1) = {" +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Bo +Ok +cg +cg +Bo +hk +KC +Xw +Bo +Rg +RE +Bo +cg +cg +cg +cg +cg +cg +cg +cg +ch +ch +Ut +Ut +"} +(25,1,1) = {" +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Dy +KC +JM +Bo +ZV +Xt +Bo +cg +cg +cg +cg +cg +cg +cg +cg +ch +ch +Ut +Ut +"} +(26,1,1) = {" +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +JR +Bo +NF +RL +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +ch +Ut +Ut +"} +(27,1,1) = {" +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +lI +Mf +ZV +Rg +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +"} +(28,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +RL +Ok +Ok +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(29,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +mY +cg +cg +cg +cg +cg +cg +Bo +Dy +KC +Jh +Bo +RE +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(30,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +Bk +Ok +Bo +Bo +Bo +Bo +Bo +Bo +Bo +cg +cg +cg +cg +Ut +Ut +"} +(31,1,1) = {" +Ut +cg +cg +cg +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Ok +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +Bk +Bk +Bo +fU +ZM +Bo +yq +Ha +Bo +cg +cg +cg +cg +Ut +Ut +"} +(32,1,1) = {" +Ut +cg +cg +Bo +Ok +ln +Uy +Fn +gx +Fn +nh +Ok +Bo +Bo +Ok +cg +cg +Bo +yj +ae +JL +Bo +Bk +Bk +Bo +hB +NJ +Bo +DO +NJ +Bo +cg +cg +cg +cg +Ut +Ut +"} +(33,1,1) = {" +Ut +cg +Bo +Ok +cQ +wo +VT +dD +VT +lq +ZV +La +La +ty +Bo +cg +Ok +Ok +Dy +KC +Jh +Ok +Ok +XI +Bo +EI +Hx +Bo +EI +Hx +Bo +cg +cg +cg +Ut +Ut +Ut +"} +(34,1,1) = {" +cg +cg +Bo +ao +La +gU +xO +MX +dJ +MX +xm +oi +ZV +up +Ok +Bo +Ok +BI +hk +KC +Xw +MD +Ok +Bo +Bo +kw +wY +IU +La +kw +Bo +Bo +cg +cg +Ut +Ut +Ut +"} +(35,1,1) = {" +cg +cg +Bo +qI +wo +Wt +yO +HK +ha +iO +MX +ow +La +La +wo +Bo +zu +Xi +Yt +QS +Jd +YG +Sa +Bo +XN +La +lY +DR +kp +La +TO +Bo +cg +cg +Ut +Ut +Ut +"} +(36,1,1) = {" +cg +cg +Bo +el +ZV +Wt +KC +RN +hW +KC +dJ +oL +wa +wa +YL +Fg +zC +Xi +Pw +iS +gv +YG +WY +UF +Kd +lY +DR +vK +DR +ig +FC +Bo +cg +cg +Ut +Ut +Ut +"} +(37,1,1) = {" +cg +cg +Bo +bK +La +eE +dA +MX +iO +wo +MX +ow +ZV +La +La +Bo +Ax +Xi +gm +HN +xI +YG +Sp +Bo +JW +yw +VD +lY +jC +kw +tL +Bo +cg +cg +Ut +Ut +Ut +"} +(38,1,1) = {" +cg +cg +Bo +bN +La +iP +Bj +Sh +Bj +mb +Sh +pC +wo +uG +Ok +Bo +Ok +BI +hk +KC +Xw +MD +Ok +Bo +Bo +Ze +La +La +La +bM +Bo +Bo +cg +cg +Ut +Ut +Ut +"} +(39,1,1) = {" +cg +cg +Bo +Ok +cQ +wo +Ny +dO +Ny +Ny +La +La +La +ty +Bo +cg +Ok +Ok +Dy +KC +Jh +Ok +Ok +cg +Bo +EI +wI +Bo +RX +RX +Bo +cg +cg +cg +Ut +Ut +Ut +"} +(40,1,1) = {" +Ut +cg +cg +Bo +Ok +dq +Uy +SD +iY +SD +np +Ok +Bo +Bo +Ok +cg +cg +Bo +yj +ae +JL +Bo +cg +cg +Bo +yK +us +Bo +BF +WC +Bo +cg +cg +cg +Ut +Ut +Ut +"} +(41,1,1) = {" +Ut +cg +cg +cg +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Ok +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +Bo +SH +ZH +Bo +pY +SU +Bo +cg +cg +cg +Ut +Ut +Ut +"} +(42,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +Bo +Bo +Bo +Bo +Bo +Bo +Bo +cg +cg +cg +Ut +Ut +Ut +"} +(43,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Dy +KC +Jh +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(44,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(45,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(46,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(47,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Dy +KC +Jh +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(48,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +"} +(49,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +Rq +Rq +cg +cg +cg +cg +cg +cg +cg +cg +Bo +hk +KC +Xw +Bo +cg +cg +cg +Ok +Bo +Bo +Bo +Ok +cg +cg +cg +cg +cg +Ut +Ut +"} +(50,1,1) = {" +Ut +cg +cg +cg +cg +cg +Rq +cg +ju +Rq +Rq +Rq +rg +cg +cg +cg +cg +Bo +yj +ae +JL +Bo +cg +cg +cg +Bo +Vn +oI +ky +Bo +Bo +Bo +Bo +Ok +cg +cg +Ut +"} +(51,1,1) = {" +Ut +cg +cg +cg +cg +cg +ch +es +tr +tr +nx +tr +rJ +Rq +cg +cg +Ok +Ok +Dy +KC +Jh +Ok +Ok +cg +cg +Bo +az +jt +az +Bo +Vn +JV +ky +Bo +cg +cg +Ut +"} +(52,1,1) = {" +Ut +Ut +cg +cg +cg +ch +Rq +tr +jF +WP +Nh +Rq +tr +tr +Rq +cg +Ok +BM +hk +KC +Xw +Nc +Ok +Bo +Bo +Bo +Bo +Bo +EP +Bo +az +jt +az +Bo +cg +cg +Ut +"} +(53,1,1) = {" +Ut +Ut +Ut +ch +cg +ch +tr +tr +WP +vi +vi +WP +tr +Rq +cg +Bo +AX +Xi +hk +KC +Xw +YG +uf +Bo +Yg +sU +YU +sU +sU +Bo +Bo +Bo +EP +Bo +cg +cg +Ut +"} +(54,1,1) = {" +Ut +Ut +Ut +ch +ch +ch +tr +Nh +WP +vi +vi +WP +Rq +Rq +cg +cg +AX +Xi +hk +Gf +Xw +YG +uf +CP +sU +sU +sU +sU +QY +sU +QV +BY +BY +Bo +Bo +Bo +Bo +"} +(55,1,1) = {" +Ut +Ut +Ut +cg +ch +Rq +tr +tr +vi +WP +Rq +qx +tr +cg +Rq +cg +AX +Xi +DB +KC +Lh +YG +uf +Bo +sU +sU +mc +WI +Co +sU +QV +BY +Oe +Bo +oI +Vn +Bo +"} +(56,1,1) = {" +Ut +Ut +cg +cg +cg +ch +Rq +gg +tr +tr +tr +tr +es +Rq +cg +Bo +Ok +Gy +zw +Gs +zw +NQ +Ok +Bo +Ok +Zk +sU +ba +zM +YP +QV +BY +BY +EP +az +jt +Bo +"} +(57,1,1) = {" +Ut +cg +cg +cg +cg +cg +ch +ch +ch +eG +ny +cg +Rq +cg +Rq +cg +Ok +Ok +XP +XP +XP +Ok +Ok +cg +Bo +Zy +sU +ME +Fm +sU +QV +BY +BY +Bo +aX +az +Bo +"} +(58,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +Rq +cg +Rq +Rq +Rq +cg +cg +cg +cg +cg +Bo +on +on +on +Bo +cg +cg +Ok +Bo +Bo +Bo +Bo +EP +Bo +jK +Ok +Bo +Bo +Bo +Bo +"} +(59,1,1) = {" +Ut +cg +cg +cg +cg +cg +cg +cg +Rq +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Bo +CP +Bo +Bo +cg +cg +cg +cg +Bo +az +jt +az +Bo +Gi +Bo +cg +cg +Ut +Ut +"} +(60,1,1) = {" +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ok +Ok +Ee +sU +Lr +Ok +Ok +cg +cg +cg +Bo +Vn +JV +ky +Bo +Bo +Ok +cg +cg +Ut +Ut +"} +(61,1,1) = {" +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ok +Ok +Eu +EM +pq +io +Eu +Ok +Ok +cg +cg +Ok +Bo +Bo +Bo +Ok +cg +cg +cg +cg +Ut +Ut +"} +(62,1,1) = {" +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +Lw +pq +ER +BY +Lw +pq +ER +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +"} +(63,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +Bo +TT +GP +qd +Pu +FB +Sn +SX +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +"} +(64,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +Bo +BY +BO +BY +GV +BY +BY +BY +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +"} +(65,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +Ok +Ok +BL +EY +BY +BY +PL +Ok +Ok +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +"} +(66,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +Ok +Bo +Ok +Hu +Ok +Bo +Ok +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +Ut +"} +(67,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +Bo +Ic +Bo +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +Ut +"} +(68,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +Ok +Bo +Bo +Ok +La +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Ok +cg +cg +cg +cg +Ut +Ut +Ut +Ut +"} +(69,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +La +IY +IY +Ih +Bo +PR +KC +KC +PR +KC +KC +PR +Ok +Ok +cg +Iy +BJ +BJ +BJ +BJ +Ut +"} +(70,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +Bh +Bo +Bo +Bo +Bo +Bo +Ba +Ba +Ba +Ba +Ba +Ba +Ba +Ok +Bo +Iy +sj +sj +sj +BJ +Ut +"} +(71,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Bo +La +bE +bE +bE +bE +bE +La +La +La +La +La +La +La +ru +La +vT +sj +xc +sj +BJ +Ut +"} +(72,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +Ok +Bo +Bo +Bo +Bo +Bo +Bo +vr +vr +vr +vr +vr +vr +vr +Ok +Bo +Iy +sj +sj +sj +BJ +Ut +"} +(73,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +Bo +PR +KC +KC +PR +KC +KC +PR +Ok +Ok +cg +Iy +BJ +BJ +BJ +BJ +Ut +"} +(74,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +Ok +Bo +Bo +Bo +Bo +Bo +Bo +Bo +Ok +cg +cg +cg +cg +Ut +Ut +Ut +Ut +"} +(75,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +Ut +Ut +"} +(76,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +cg +cg +cg +cg +cg +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} +(77,1,1) = {" +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +cg +cg +cg +cg +cg +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +Ut +"} diff --git a/_maps/RandomRuins/SpaceRuins/intactemptyship.dmm b/_maps/r_ruins/space/intactemptyship.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/intactemptyship.dmm rename to _maps/r_ruins/space/intactemptyship.dmm diff --git a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm b/_maps/r_ruins/space/listeningstation.dmm similarity index 97% rename from _maps/RandomRuins/SpaceRuins/listeningstation.dmm rename to _maps/r_ruins/space/listeningstation.dmm index c04048d1da39..ca74baa64ff5 100644 --- a/_maps/RandomRuins/SpaceRuins/listeningstation.dmm +++ b/_maps/r_ruins/space/listeningstation.dmm @@ -10,9 +10,8 @@ /area/ruin/space/has_grav/listeningstation) "ad" = ( /obj/machinery/computer/message_monitor, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/item/paper/monitorkey, @@ -249,10 +248,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/listeningstation) "ax" = ( @@ -622,9 +619,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/listeningstation) "aU" = ( -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -710,9 +706,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/listeningstation) "aY" = ( -/obj/effect/spawner/randomsnackvend{ - hacked = 1 - }, +/obj/effect/spawner/random/vending/snackvend, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ @@ -771,10 +765,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ @@ -827,9 +819,7 @@ /turf/open/floor/plasteel/white/side, /area/ruin/space/has_grav/listeningstation) "bh" = ( -/obj/effect/spawner/randomcolavend{ - hacked = 1 - }, +/obj/effect/spawner/random/vending/colavend, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/white/corner{ @@ -947,7 +937,7 @@ /obj/machinery/power/apc/syndicate{ dir = 4; name = "Syndicate Listening Post APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1076,10 +1066,8 @@ }, /obj/machinery/iv_drip, /obj/machinery/light/small, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 @@ -1112,7 +1100,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/listeningstation) "bH" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /obj/effect/turf_decal/bot, diff --git a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm b/_maps/r_ruins/space/mechtransport.dmm similarity index 95% rename from _maps/RandomRuins/SpaceRuins/mechtransport.dmm rename to _maps/r_ruins/space/mechtransport.dmm index 66e2d127f21a..a65095f037c7 100644 --- a/_maps/RandomRuins/SpaceRuins/mechtransport.dmm +++ b/_maps/r_ruins/space/mechtransport.dmm @@ -154,14 +154,8 @@ /turf/open/floor/mineral/titanium/yellow/airless, /area/ruin/space/has_grav/powered/mechtransport) "M" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/powered/mechtransport) -"N" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/mechtransport) "O" = ( /obj/structure/mecha_wreckage/odysseus, @@ -175,11 +169,6 @@ /obj/structure/mecha_wreckage/gygax, /turf/open/floor/mineral/titanium/airless, /area/ruin/space/has_grav/powered/mechtransport) -"R" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/powered/mechtransport) "S" = ( /obj/item/stack/rods, /turf/open/floor/plating/airless, @@ -226,7 +215,7 @@ H S H I -R +M V T "} @@ -241,7 +230,7 @@ w F w H -N +M I I T diff --git a/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm b/_maps/r_ruins/space/mrow_thats_right.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm rename to _maps/r_ruins/space/mrow_thats_right.dmm index 2734f5a0d219..0ee97ba21a76 100644 --- a/_maps/RandomRuins/SpaceRuins/mrow_thats_right.dmm +++ b/_maps/r_ruins/space/mrow_thats_right.dmm @@ -789,7 +789,7 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/powered/cat_man) "cl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 8; id_tag = "n2o_out_cat"; name = "n2o out" @@ -823,7 +823,7 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/powered/cat_man) "cs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1; id_tag = "o2_out_cat"; name = "freezer vent" diff --git a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm b/_maps/r_ruins/space/oldAIsat.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/oldAIsat.dmm rename to _maps/r_ruins/space/oldAIsat.dmm index 7ba5fce9c8b1..c4bbb9fabe58 100644 --- a/_maps/RandomRuins/SpaceRuins/oldAIsat.dmm +++ b/_maps/r_ruins/space/oldAIsat.dmm @@ -47,7 +47,7 @@ dir = 1; name = "Worn-out APC"; pixel_x = 1; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating/airless, @@ -82,14 +82,8 @@ /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "ar" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/tcommsat/oldaisat) -"as" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "at" = ( /obj/structure/lattice, @@ -121,7 +115,7 @@ /turf/template_noop, /area/template_noop) "ay" = ( -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "az" = ( @@ -898,12 +892,12 @@ /area/tcommsat/oldaisat) "jZ" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plasteel/airless, /area/tcommsat/oldaisat) "AX" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/spawner/lootdrop/space/fancytool, +/obj/effect/spawner/random/exotic/tool, /turf/open/floor/plasteel/airless/dark, /area/tcommsat/oldaisat) @@ -2653,7 +2647,7 @@ ag cn az ar -as +ar ar az cD @@ -2768,7 +2762,7 @@ cg bw ac ag -as +ar cs ar ag @@ -3223,7 +3217,7 @@ aa ab ah ac -as +ar ar az aY @@ -3283,7 +3277,7 @@ aa ac ab ac -as +ar ar aZ bj @@ -3342,7 +3336,7 @@ aa ab ab ac -as +ar ar ba bk diff --git a/_maps/RandomRuins/SpaceRuins/oldstation.dmm b/_maps/r_ruins/space/oldstation.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/oldstation.dmm rename to _maps/r_ruins/space/oldstation.dmm index ae2826307499..899eb174288c 100644 --- a/_maps/RandomRuins/SpaceRuins/oldstation.dmm +++ b/_maps/r_ruins/space/oldstation.dmm @@ -348,10 +348,8 @@ /obj/structure/chair{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light{ dir = 4 }, @@ -505,9 +503,10 @@ /area/ruin/space/has_grav/ancientstation/medbay) "br" = ( /obj/effect/spawner/structure/window/hollow/reinforced, +/obj/effect/mapping_helpers/broken_floor, /turf/open/floor/plating{ heat_capacity = 1e+006; - icon_state = "platingdmg1" + }, /area/ruin/space/has_grav/ancientstation/betastorage) "bs" = ( @@ -616,7 +615,6 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/medbay) "bG" = ( -/obj/structure/lattice, /turf/closed/wall/rust, /area/ruin/space/has_grav/ancientstation/betastorage) "bH" = ( @@ -777,7 +775,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Beta Station Main Corridor APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /turf/open/floor/plasteel, @@ -1036,9 +1034,8 @@ /turf/closed/mineral/iron, /area/ruin/space/has_grav/ancientstation) "cL" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "cM" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ @@ -1219,10 +1216,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/plasteel, @@ -1306,10 +1301,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, @@ -1522,7 +1515,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Charlie Station Bridge APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /obj/effect/decal/cleanable/cobweb, @@ -1562,7 +1555,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Delta Station RnD APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /turf/open/floor/plasteel/white, @@ -1775,10 +1768,8 @@ /area/ruin/space/has_grav/ancientstation/rnd) "eC" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/rnd) "eD" = ( @@ -2041,10 +2032,8 @@ dir = 8 }, /obj/structure/closet/crate/bin, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/hydroponics) "fm" = ( @@ -2141,9 +2130,8 @@ /area/ruin/space/has_grav/ancientstation/deltaai) "fA" = ( /obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "fB" = ( /obj/effect/spawner/structure/window/hollow/reinforced/end{ @@ -2330,10 +2318,9 @@ /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/mining) "gd" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "ge" = ( /obj/structure/alien/weeds, @@ -2341,7 +2328,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Delta Station Artifical Program Core APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/effect/decal/cleanable/blood/gibs/old, @@ -2350,9 +2337,8 @@ /area/ruin/space/has_grav/ancientstation/deltaai) "gf" = ( /obj/structure/closet/crate/bin, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/atmo) "gg" = ( /obj/effect/spawner/structure/window/hollow/reinforced/directional{ @@ -2496,15 +2482,13 @@ /obj/structure/rack, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/emergency_oxygen, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "gv" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/food/egg_smudge, /obj/structure/cable, /turf/open/floor/plasteel/cafeteria, @@ -2605,7 +2589,7 @@ /obj/structure/cable, /obj/machinery/power/apc{ name = "Charlie Station Garden APC "; - pixel_y = -23; + pixel_y = -25; start_charge = 0 }, /obj/item/reagent_containers/glass/bottle/nutrient/ez, @@ -2783,10 +2767,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/rnd) "hj" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -2815,10 +2797,8 @@ /area/ruin/space/has_grav/ancientstation/engi) "hn" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "ho" = ( @@ -2886,9 +2866,8 @@ /area/ruin/space/has_grav/ancientstation/engi) "hw" = ( /obj/structure/grille/broken, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "hx" = ( /obj/effect/decal/cleanable/dirt, @@ -3475,7 +3454,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Charlie Engineering APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/effect/turf_decal/tile/yellow, @@ -3521,10 +3500,8 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/sec) "iA" = ( @@ -3866,9 +3843,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "jl" = ( /obj/effect/decal/cleanable/dirt, @@ -4014,10 +3990,8 @@ /area/ruin/space/has_grav/ancientstation/deltacorridor) "jy" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) @@ -4166,7 +4140,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Charlie Main Corridor APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/structure/cable, @@ -4243,7 +4217,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Beta Atmospherics APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/effect/decal/cleanable/dirt, @@ -4321,7 +4295,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Delta Prototype Lab APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /obj/structure/cable, @@ -4340,9 +4314,8 @@ /area/ruin/space/has_grav/ancientstation/proto) "kj" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - pixel_y = 23 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/ancientstation/proto) "kk" = ( @@ -4486,7 +4459,7 @@ /area/ruin/space/has_grav/ancientstation/atmo) "kC" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, @@ -4833,7 +4806,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Delta Station Corridor APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4848,7 +4821,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Charlie Station Kitchen APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /obj/structure/cable, @@ -4940,19 +4913,15 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) "lL" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, @@ -5004,10 +4973,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light_switch{ pixel_y = 26 }, @@ -5036,9 +5003,8 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/medbay) "lX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -5163,10 +5129,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/mining) "mq" = ( @@ -5227,7 +5191,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Beta Station Medbay APC"; - pixel_y = 23; + pixel_y = 25; start_charge = 0 }, /obj/effect/turf_decal/tile/blue, @@ -5394,7 +5358,7 @@ "mQ" = ( /obj/machinery/power/apc{ name = "Beta Station Mining Equipment APC "; - pixel_y = -23; + pixel_y = -25; start_charge = 0 }, /obj/effect/turf_decal/tile/brown{ @@ -5498,10 +5462,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -22 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) "nb" = ( @@ -5640,10 +5602,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/ancientstation/medbay) "nr" = ( @@ -5900,9 +5860,8 @@ /area/ruin/space/has_grav/ancientstation/deltacorridor) "nQ" = ( /obj/item/stack/rods, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "nR" = ( /obj/effect/decal/cleanable/dirt, @@ -6219,10 +6178,8 @@ /area/ruin/space/has_grav/ancientstation/engi) "oz" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, @@ -6389,47 +6346,34 @@ "oV" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "oW" = ( /obj/item/shard{ icon_state = "medium" }, /obj/effect/decal/cleanable/glass, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "oX" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/effect/decal/cleanable/blood/old, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"oY" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/ancientstation/betacorridor) "oZ" = ( /obj/item/shard{ icon_state = "small" }, /obj/effect/decal/cleanable/glass, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betacorridor) "pa" = ( /obj/item/stack/rods, @@ -6778,7 +6722,7 @@ /area/ruin/space/has_grav/ancientstation/engi) "xl" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation) "xP" = ( @@ -6878,7 +6822,7 @@ /turf/closed/mineral/plasma, /area/ruin/space/has_grav/ancientstation/betacorridor) "AF" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "AK" = ( @@ -6952,9 +6896,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/deltacorridor) -"DF" = ( -/turf/closed/wall/rust, -/area/ruin/space/has_grav/ancientstation/betastorage) "DJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light_switch{ @@ -7004,7 +6945,7 @@ /area/ruin/space/has_grav/ancientstation/betacorridor) "GG" = ( /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "GP" = ( @@ -7051,10 +6992,8 @@ /area/ruin/space/has_grav/ancientstation) "Iw" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/tracks, /turf/open/floor/plasteel, @@ -7120,7 +7059,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation) "Ky" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "KF" = ( @@ -7145,9 +7084,8 @@ /area/ruin/space/has_grav/ancientstation/proto) "KO" = ( /obj/item/stack/rods, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/ancientstation/betastorage) "Le" = ( /obj/machinery/door/airlock/science, @@ -7182,10 +7120,8 @@ /area/ruin/space/has_grav/ancientstation/atmo) "LO" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light{ dir = 8 }, @@ -7246,8 +7182,7 @@ /obj/structure/window/reinforced, /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_n2_out"; + chamber_id = "syndie_lavaland_n2_out"; internal_pressure_bound = 5066; name = "Nitrogen Out" }, @@ -7507,10 +7442,8 @@ "UE" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/betacorridor) "UV" = ( @@ -7530,11 +7463,11 @@ /area/ruin/space/has_grav/ancientstation/atmo) "Ve" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/ruin/space/has_grav/ancientstation/deltacorridor) "Vm" = ( -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2{ dir = 8 }, @@ -7594,8 +7527,7 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ dir = 8; - frequency = 1442; - id_tag = "syndie_lavaland_o2_out"; + chamber_id = "syndie_lavaland_o2_out"; internal_pressure_bound = 5066; name = "Oxygen Out" }, @@ -7678,11 +7610,6 @@ }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/ancientstation/engi) -"YN" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/ancientstation/betastorage) "Ze" = ( /obj/machinery/portable_atmospherics/canister/nitrogen, /turf/open/floor/engine/n2, @@ -8026,7 +7953,7 @@ qA oQ oS oV -oY +nQ BX pc nx @@ -8112,15 +8039,15 @@ bJ aj cj bJ -DF +bG GU GU GU GU GU lX -DF -DF +bG +bG fi nH bJ @@ -8214,8 +8141,8 @@ eg cL oC KO -YN -YN +cL +cL nE nG GU @@ -8308,14 +8235,14 @@ ch np mV ch -DF +bG mf -DF -DF +bG +bG br bG GU -DF +bG GU aa aa diff --git a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm b/_maps/r_ruins/space/oldteleporter.dmm similarity index 89% rename from _maps/RandomRuins/SpaceRuins/oldteleporter.dmm rename to _maps/r_ruins/space/oldteleporter.dmm index 107b3c55a75d..b48e713e3672 100644 --- a/_maps/RandomRuins/SpaceRuins/oldteleporter.dmm +++ b/_maps/r_ruins/space/oldteleporter.dmm @@ -16,17 +16,15 @@ /turf/open/floor/plasteel/airless, /area/ruin/space/oldteleporter) "f" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/oldteleporter) "g" = ( /obj/structure/light_construct/small{ dir = 1 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/oldteleporter) "h" = ( /obj/machinery/computer/teleporter{ @@ -56,15 +54,10 @@ }, /turf/open/floor/plasteel/airless, /area/ruin/space/oldteleporter) -"m" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/oldteleporter) "n" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /turf/open/floor/plasteel/airless, /area/ruin/space/oldteleporter) @@ -163,7 +156,7 @@ d c e e -m +f e d "} diff --git a/_maps/RandomRuins/SpaceRuins/onehalf.dmm b/_maps/r_ruins/space/onehalf.dmm similarity index 90% rename from _maps/RandomRuins/SpaceRuins/onehalf.dmm rename to _maps/r_ruins/space/onehalf.dmm index 759754e2ae48..fe41b18c2afe 100644 --- a/_maps/RandomRuins/SpaceRuins/onehalf.dmm +++ b/_maps/r_ruins/space/onehalf.dmm @@ -113,9 +113,8 @@ /area/ruin/space/has_grav/onehalf/hallway) "ay" = ( /obj/structure/table_frame, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "az" = ( /obj/machinery/washing_machine, @@ -142,9 +141,9 @@ dir = 8 }, /obj/structure/closet, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, +/obj/effect/spawner/random/exotic/syndie, +/obj/effect/spawner/random/exotic/syndie, +/obj/effect/spawner/random/exotic/syndie, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf/dorms_med) "aD" = ( @@ -174,14 +173,12 @@ /turf/template_noop, /area/ruin/space/has_grav/onehalf/hallway) "aI" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "aJ" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "aK" = ( /obj/machinery/iv_drip, @@ -200,7 +197,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Crew Quarters APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/white, @@ -251,14 +248,8 @@ /area/template_noop) "aT" = ( /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/has_grav/onehalf/hallway) -"aU" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "aV" = ( /obj/machinery/door/airlock/medical/glass, @@ -280,7 +271,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Mining Drone Bay APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -374,36 +365,24 @@ /area/ruin/space/has_grav/onehalf/drone_bay) "bf" = ( /obj/item/stack/sheet/iron, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "bg" = ( /obj/structure/disposalpipe/broken{ dir = 4 }, /obj/item/stack/cable_coil/cut, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "bh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/has_grav/onehalf/hallway) -"bi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bj" = ( /obj/structure/disposalpipe/segment{ @@ -417,9 +396,8 @@ dir = 4 }, /obj/structure/cable, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bm" = ( /obj/structure/disposalpipe/junction{ @@ -491,17 +469,15 @@ /obj/structure/disposalpipe/broken{ dir = 4 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "bw" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bx" = ( /obj/structure/disposalpipe/segment{ @@ -514,9 +490,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bz" = ( /obj/structure/disposalpipe/segment{ @@ -524,19 +499,11 @@ }, /obj/machinery/power/apc{ name = "Hallway APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) -"bA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, -/area/ruin/space/has_grav/onehalf/hallway) "bB" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ @@ -595,21 +562,18 @@ /area/ruin/space/has_grav/onehalf/hallway) "bL" = ( /obj/structure/closet/emcloset, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bM" = ( /obj/machinery/vending/coffee, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bN" = ( /obj/machinery/vending/snack, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bO" = ( /obj/structure/disposalpipe/trunk{ @@ -630,11 +594,6 @@ "bR" = ( /turf/closed/wall/r_wall, /area/ruin/space/has_grav/onehalf/hallway) -"bS" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, -/area/ruin/space/has_grav/onehalf/hallway) "bT" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/airless, @@ -646,17 +605,11 @@ /obj/item/stack/sheet/iron, /turf/template_noop, /area/template_noop) -"bW" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/onehalf/hallway) "bX" = ( /obj/structure/disposalpipe/segment, /obj/item/stack/rods, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "bY" = ( /obj/structure/grille, @@ -700,14 +653,14 @@ /obj/machinery/power/apc{ dir = 1; name = "Bridge APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf/bridge) "cg" = ( /obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf/bridge) "ch" = ( @@ -715,9 +668,8 @@ dir = 1 }, /obj/item/shard, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "ci" = ( /obj/structure/lattice, @@ -778,7 +730,7 @@ /area/ruin/space/has_grav/onehalf/bridge) "cp" = ( /obj/structure/table/reinforced, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plasteel, /area/ruin/space/has_grav/onehalf/bridge) "cq" = ( @@ -810,9 +762,8 @@ /area/ruin/space/has_grav/onehalf/hallway) "cu" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/ruin/space/has_grav/onehalf/hallway) "cv" = ( /obj/structure/girder/reinforced, @@ -895,11 +846,6 @@ /obj/item/stack/cable_coil/cut, /turf/template_noop, /area/ruin/space/has_grav/onehalf/hallway) -"cL" = ( -/turf/open/floor/plating/airless{ - icon_state = "platingdmg2" - }, -/area/ruin/space/has_grav/onehalf/hallway) "cM" = ( /obj/machinery/light{ dir = 8 @@ -911,11 +857,6 @@ /obj/item/stack/sheet/plasteel, /turf/template_noop, /area/template_noop) -"cP" = ( -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, -/area/ruin/space/has_grav/onehalf/hallway) "cQ" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, @@ -968,16 +909,14 @@ /area/ruin/space/has_grav/onehalf/bridge) "dc" = ( /obj/structure/grille/broken, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "dd" = ( /obj/structure/grille, /obj/item/shard, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/ruin/space/has_grav/onehalf/hallway) "dh" = ( /obj/item/stack/sheet/plasteel, @@ -1098,7 +1037,7 @@ aT bh bw ak -bW +aI aa aa aa @@ -1116,8 +1055,8 @@ ab ak az aJ -aU -bi +aJ +bh bx bL bK @@ -1205,7 +1144,7 @@ an aB aM ag -bi +bh bx bP aj @@ -1227,7 +1166,7 @@ ag ag ag ag -bi +bh bx bQ aw @@ -1237,7 +1176,7 @@ aa aw cA aa -cL +aI dh aa "} @@ -1272,9 +1211,9 @@ ap ap aW bj -bA -bS -bW +bw +aJ +aI ax ct cK @@ -1300,8 +1239,8 @@ bX ch cu cD -cL -cP +aI +aJ aJ dd ad diff --git a/_maps/RandomRuins/SpaceRuins/originalcontent.dmm b/_maps/r_ruins/space/originalcontent.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/originalcontent.dmm rename to _maps/r_ruins/space/originalcontent.dmm diff --git a/_maps/RandomRuins/SpaceRuins/shuttlerelic.dmm b/_maps/r_ruins/space/shuttlerelic.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/shuttlerelic.dmm rename to _maps/r_ruins/space/shuttlerelic.dmm index c7328847a6eb..1264b6d39af0 100644 --- a/_maps/RandomRuins/SpaceRuins/shuttlerelic.dmm +++ b/_maps/r_ruins/space/shuttlerelic.dmm @@ -32,7 +32,6 @@ /area/ruin/powered) "i" = ( /obj/structure/closet{ - icon_state = "oldcloset"; name = "strange closet" }, /turf/open/floor/oldshuttle, diff --git a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm b/_maps/r_ruins/space/spacehotel.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/spacehotel.dmm rename to _maps/r_ruins/space/spacehotel.dmm index 157869dcf2e1..81847edb98ed 100644 --- a/_maps/RandomRuins/SpaceRuins/spacehotel.dmm +++ b/_maps/r_ruins/space/spacehotel.dmm @@ -424,7 +424,7 @@ "bN" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Guest Room APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -467,7 +467,7 @@ "bT" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Guest Room APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -510,7 +510,7 @@ "bZ" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Guest Room APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -553,7 +553,7 @@ "cf" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Guest Room APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -909,7 +909,6 @@ }, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, /turf/open/floor/plating, /area/ruin/space/has_grav/hotel/workroom) "dk" = ( @@ -940,7 +939,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Guest Room APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -997,7 +996,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Guest Room APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -1034,7 +1033,6 @@ /area/ruin/space/has_grav/hotel/workroom) "dB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/structure/cable, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/hotel/workroom) "dC" = ( @@ -1132,14 +1130,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ dir = 5 }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/hotel/workroom) -"dY" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/structure/cable, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/hotel/workroom) "ea" = ( @@ -1240,13 +1230,6 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/hotel/workroom) -"eq" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/hotel/workroom) "er" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -1294,14 +1277,6 @@ /obj/structure/closet/crate/bin, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/hotel/workroom) -"eA" = ( -/obj/machinery/power/apc/highcap/five_k{ - name = "Laundry APC"; - pixel_y = -23 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/ruin/space/has_grav/hotel/workroom) "eB" = ( /obj/machinery/light, /turf/open/floor/plasteel/white, @@ -1467,7 +1442,7 @@ "fh" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Kitchen APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -2296,7 +2271,7 @@ "hA" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Staff Room APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /mob/living/simple_animal/bot/medbot{ @@ -2620,7 +2595,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Power Storage APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -2781,7 +2756,7 @@ "iU" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Security APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -2811,7 +2786,7 @@ "iZ" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Pool APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -2841,7 +2816,7 @@ }, /obj/machinery/power/apc/highcap/five_k{ name = "Dock APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -3140,7 +3115,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/hotel/pool) "jS" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hotel/pool) "jT" = ( @@ -3178,7 +3153,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/hotel/pool) "ka" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, /area/ruin/space/has_grav/hotel/pool) @@ -3717,14 +3692,14 @@ /turf/open/floor/plasteel/freezer, /area/ruin/space/has_grav/hotel/pool) "lp" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, /area/ruin/space/has_grav/hotel/power) "lq" = ( /obj/machinery/light/small, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, @@ -4405,7 +4380,7 @@ "mJ" = ( /obj/machinery/power/apc/highcap/five_k{ name = "Custodial APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -7100,7 +7075,7 @@ ca cp cy cS -cS +cW dj dB dB @@ -7243,7 +7218,7 @@ cL cF di dD -dY +ea ep ez di @@ -7313,9 +7288,9 @@ cL cF di dE -dY -eq -eA +ea +ep +dV di eS fm diff --git a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm b/_maps/r_ruins/space/turretedoutpost.dmm similarity index 97% rename from _maps/RandomRuins/SpaceRuins/turretedoutpost.dmm rename to _maps/r_ruins/space/turretedoutpost.dmm index f971a6ed40db..22ffdec8bd06 100644 --- a/_maps/RandomRuins/SpaceRuins/turretedoutpost.dmm +++ b/_maps/r_ruins/space/turretedoutpost.dmm @@ -77,7 +77,7 @@ "ar" = ( /obj/machinery/power/apc{ name = "Worn-out APC"; - pixel_y = -23 + pixel_y = -25 }, /turf/open/floor/plasteel, /area/ruin/space/has_grav/turretedoutpost) @@ -89,7 +89,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, +/obj/effect/spawner/random/exotic/syndie, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/turretedoutpost) "at" = ( @@ -236,7 +236,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, +/obj/effect/spawner/random/exotic/syndie, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/turretedoutpost) "aM" = ( @@ -340,7 +340,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, +/obj/effect/spawner/random/exotic/syndie, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/turretedoutpost) "aZ" = ( @@ -349,7 +349,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/syndiecosmetic, +/obj/effect/spawner/random/exotic/syndie, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/turretedoutpost) "ba" = ( diff --git a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm b/_maps/r_ruins/space/vaporwave.dmm similarity index 99% rename from _maps/RandomRuins/SpaceRuins/vaporwave.dmm rename to _maps/r_ruins/space/vaporwave.dmm index dd5c54ff3293..3efa21b560d7 100644 --- a/_maps/RandomRuins/SpaceRuins/vaporwave.dmm +++ b/_maps/r_ruins/space/vaporwave.dmm @@ -213,7 +213,7 @@ /area/ruin/space/has_grav/powered/aesthetic) "Q" = ( /obj/structure/closet/crate/bin, -/obj/effect/spawner/lootdrop/space/fancytech, +/obj/effect/spawner/random/exotic/technology, /turf/open/floor/plating/asteroid/airless, /area/ruin/unpowered/no_grav) "R" = ( diff --git a/_maps/RandomRuins/SpaceRuins/way_home.dmm b/_maps/r_ruins/space/way_home.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/way_home.dmm rename to _maps/r_ruins/space/way_home.dmm diff --git a/_maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm b/_maps/r_ruins/space/whiteshipruin_box.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/whiteshipruin_box.dmm rename to _maps/r_ruins/space/whiteshipruin_box.dmm diff --git a/_maps/r_ruins/space/wruin1.dmm b/_maps/r_ruins/space/wruin1.dmm new file mode 100644 index 000000000000..d730f0a049b8 --- /dev/null +++ b/_maps/r_ruins/space/wruin1.dmm @@ -0,0 +1,996 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/closed/mineral/random, +/area/ruin/space/has_grav/powered/telepadovo) +"ac" = ( +/turf/open/floor/plating/asteroid/airless, +/area/ruin/space/has_grav/powered/telepadovo) +"ad" = ( +/turf/closed/wall/partyhard, +/area/ruin/space/has_grav/powered/telepadovo) +"af" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"ag" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/autolathe/hacked, +/obj/item/stack/sheet/iron/five, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"ah" = ( +/obj/structure/table, +/obj/item/storage/toolbox/syndicate, +/obj/item/gps/science, +/obj/item/gps/science, +/obj/item/gps/science, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"ai" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aj" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"an" = ( +/obj/structure/cable, +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"ao" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"aq" = ( +/obj/machinery/telepad, +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"ar" = ( +/obj/machinery/computer/telescience{ + dir = 8 + }, +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"at" = ( +/obj/machinery/computer/camera_advanced/syndie{ + dir = 8 + }, +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"au" = ( +/obj/effect/spawner/structure/window/reinforced/partyhard, +/turf/open/floor/partyhard/steel{ + icon_state = "st-6" + }, +/area/ruin/space/has_grav/powered/telepadovo) +"aw" = ( +/obj/item/flashlight, +/obj/structure/closet/cabinet, +/obj/item/radio, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"az" = ( +/turf/open/floor/resin, +/area/ruin/space/has_grav/powered/telepadovo) +"aA" = ( +/obj/machinery/sleeper/syndie{ + dir = 8 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/mob_spawn/human/syndicate{ + desc = "Там кто-то есть. И он смотрит на меня не очень мило."; + dir = 8; + flavour_text = "Я заведующий этой космоостановкой. В мои обязанности входит переправка прибывающих агентов на станцию."; + important_info = "И мне нельзя покидать это место, если только ему совсем не придут кранты."; + short_desc = "Я телепадовец" + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aC" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aD" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aG" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aI" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aL" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aN" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aP" = ( +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aR" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aS" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/soymilk, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aT" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/radio, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aV" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aX" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/hypospray/combat/nanites, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"aY" = ( +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"be" = ( +/obj/machinery/vending/cigarette/syndicate, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bf" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bg" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bh" = ( +/obj/structure/table/reinforced, +/obj/item/phone, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bi" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bj" = ( +/obj/machinery/status_display, +/turf/closed/wall/partyhard, +/area/ruin/space/has_grav/powered/telepadovo) +"bk" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bm" = ( +/obj/machinery/light/small, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bn" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bp" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bq" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"br" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bs" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bt" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"bu" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) +"iP" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/restraints/handcuffs/cable/zipties, +/turf/open/floor/plasteel/durasteel, +/area/ruin/space/has_grav/powered/telepadovo) + +(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 +"} +(2,1,1) = {" +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +ac +ab +ab +ab +ab +aa +ab +ac +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +"} +(4,1,1) = {" +aa +ac +ac +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +ab +ad +ad +bj +ad +ad +ad +ad +aa +aa +"} +(5,1,1) = {" +aa +ac +ab +ab +ab +ab +ab +ab +ab +ab +aa +ac +aa +aa +aa +ab +ad +be +aP +aP +bn +bo +bp +aa +aa +"} +(6,1,1) = {" +aa +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +ab +ab +ad +bf +aP +bk +ad +ad +ad +aa +aa +"} +(7,1,1) = {" +aa +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +bg +aP +bk +ad +ab +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +bh +aP +bl +ad +ab +aa +aa +aa +"} +(9,1,1) = {" +aa +ab +ab +ad +bs +bt +br +bq +bq +bq +ad +aD +aP +aC +aP +aP +aC +aP +aP +bk +ad +ab +ab +aa +aa +"} +(10,1,1) = {" +ab +ab +ab +ad +af +an +an +az +az +aP +au +aP +aP +ad +aN +aV +ad +aP +aP +bm +ad +ab +ab +aa +aa +"} +(11,1,1) = {" +aa +ab +ab +ad +aP +az +ao +az +az +aP +ad +aP +aJ +ad +aO +bi +au +aP +aP +ad +ad +ab +ab +aa +aa +"} +(12,1,1) = {" +aa +aa +ab +ad +bu +az +az +az +az +aP +aC +aP +aP +ad +aP +aP +au +bi +bi +ad +ab +ab +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +ab +ad +ag +az +aq +az +az +aP +aC +aP +aP +ad +aC +ad +ad +ad +ad +ad +ab +ab +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +ab +ad +ah +az +az +az +az +aP +ad +aF +aP +aP +aQ +aQ +aP +ad +ab +ab +ab +ab +aa +aa +aa +"} +(15,1,1) = {" +aa +ab +ab +ad +ai +az +ar +at +az +aP +au +aP +aP +aP +aR +aX +bb +ad +ab +ab +ab +ab +aa +aa +aa +"} +(16,1,1) = {" +aa +ab +ab +ad +aj +aP +aP +aP +aP +aP +ad +aG +aP +aL +aS +aY +bm +ad +ab +ab +ab +ab +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +ab +ad +ad +ad +ad +au +au +au +ad +aP +aP +aP +aT +aY +bk +ad +ab +ab +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +ab +ab +ab +ab +ad +aP +aP +aP +aC +aH +aH +aH +aU +bi +aP +ad +ab +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +ab +ab +ab +ab +ad +aw +aA +aB +ad +aI +iP +iP +ad +ad +ad +ad +ab +ab +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +ab +ab +ab +ab +ad +ad +ad +ad +ad +ad +ad +ad +ad +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +ab +ab +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +"} diff --git a/_maps/RandomRuins/SpaceRuins/wruin2.dmm b/_maps/r_ruins/space/wruin2.dmm similarity index 98% rename from _maps/RandomRuins/SpaceRuins/wruin2.dmm rename to _maps/r_ruins/space/wruin2.dmm index 247ddef198f6..ebd817b6069c 100644 --- a/_maps/RandomRuins/SpaceRuins/wruin2.dmm +++ b/_maps/r_ruins/space/wruin2.dmm @@ -31,7 +31,7 @@ /obj/item/assembly/igniter, /obj/item/assembly/igniter, /obj/item/assembly/igniter, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/machinery/status_display/evac{ pixel_y = 32 }, @@ -89,7 +89,7 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, @@ -555,9 +555,8 @@ /area/ruin/space/has_grav/austation/maint) "aY" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/ruin/space/has_grav/austation/maint) "aZ" = ( /obj/effect/spawner/structure/window/reinforced, @@ -695,9 +694,8 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/med) "bn" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/station) "bo" = ( /obj/effect/turf_decal/stripes/line{ @@ -761,9 +759,8 @@ pixel_y = 3 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "bv" = ( /obj/effect/turf_decal/tile/purple{ @@ -824,11 +821,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) -"bA" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/austation/station) "bB" = ( /obj/structure/girder, /obj/effect/decal/cleanable/dirt/dust, @@ -872,12 +864,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) -"bH" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken2" - }, -/area/ruin/space/has_grav/austation/maint) "bI" = ( /obj/structure/table/wood, /obj/item/storage/fancy/cigarettes/cigpack_uplift{ @@ -970,9 +956,8 @@ /area/ruin/space/has_grav/austation/med) "bP" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) "bQ" = ( /obj/machinery/chem_heater, @@ -1017,9 +1002,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "bV" = ( /obj/machinery/holopad, @@ -1055,11 +1039,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) -"ca" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/ruin/space/has_grav/austation/station) "cb" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/grunge{ @@ -1103,12 +1082,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) -"cf" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/wood{ - icon_state = "wood-broken7" - }, -/area/ruin/space/has_grav/austation/maint) "cg" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -1666,9 +1639,8 @@ "di" = ( /obj/effect/turf_decal/tile/purple, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/rnd) "dj" = ( /obj/machinery/light, @@ -2952,7 +2924,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "fw" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste{ dir = 4 }, /turf/open/floor/engine/air{ @@ -3018,7 +2990,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) "fH" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/elevatorshaft, @@ -3216,7 +3188,7 @@ /obj/item/weldingtool, /obj/item/assembly/voice, /obj/item/clothing/head/welding, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -3348,9 +3320,8 @@ /area/ruin/space/has_grav/austation/med) "gm" = ( /obj/machinery/door/firedoor/closed, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "gn" = ( /obj/effect/decal/cleanable/dirt/dust, @@ -3358,9 +3329,8 @@ /area/ruin/space/has_grav/austation/xeno) "gp" = ( /obj/machinery/door/firedoor/closed, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/station) "gq" = ( /obj/item/circuitboard/computer/rdconsole, @@ -3578,7 +3548,7 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/item/tank/internals/emergency_oxygen/engi, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/stripes/line{ dir = 10 }, @@ -3781,10 +3751,7 @@ /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/xeno) "hp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4; - icon_state = "warningline" - }, +/obj/effect/mapping_helpers/broken_floor, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/vault) @@ -3820,9 +3787,8 @@ "hs" = ( /obj/item/secateurs, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) "ht" = ( /obj/machinery/door/airlock/maintenance_hatch{ @@ -4037,16 +4003,14 @@ /obj/structure/table, /obj/item/stack/sheet/cardboard/fifty, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/elevatorshaft, -/area/ruin/space/has_grav/austation/vault) -"hQ" = ( +/obj/effect/mapping_helpers/broken_floor, /obj/structure/table, /obj/item/crowbar/large{ desc = "Пахнет белыми мечтами."; name = "большой брат ванечки" }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel/elevatorshaft, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/vault) "hR" = ( /obj/structure/window/reinforced/spawner, @@ -4375,7 +4339,7 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/xeno) @@ -4686,9 +4650,8 @@ /turf/open/floor/plating/airless, /area/ruin/space/has_grav/austation/station) "jv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/mapping_helpers/broken_floor, /obj/effect/turf_decal/tile/purple{ dir = 4 }, @@ -4925,7 +4888,7 @@ /area/ruin/space/has_grav/austation/rnd) "mi" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) @@ -4990,9 +4953,8 @@ icon_state = "trimline" }, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plasteel{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) "ty" = ( /obj/structure/window/reinforced/spawner/east, @@ -5058,14 +5020,10 @@ /area/ruin/space/has_grav/austation/xeno) "vy" = ( /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel, /area/ruin/space/has_grav/austation/station) -"vF" = ( -/obj/item/card/id/advanced/gold/captains_spare, -/turf/open/space/basic, -/area/ruin/space/has_grav/austation/rnd) "vT" = ( /obj/effect/turf_decal/tile/purple, /obj/structure/cable, @@ -5119,9 +5077,8 @@ "Av" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) "Az" = ( /obj/effect/spawner/structure/window/reinforced, @@ -5155,9 +5112,8 @@ /area/ruin/space/has_grav/austation/rnd) "CX" = ( /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) "Dd" = ( /turf/closed/wall/r_wall/rust, @@ -5212,9 +5168,8 @@ "Gt" = ( /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/ruin/space/has_grav/austation/maint) "Gz" = ( /turf/closed/wall/rust, @@ -5236,7 +5191,7 @@ /obj/effect/turf_decal/tile/purple{ dir = 1 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, @@ -5255,12 +5210,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/xeno) -"Jb" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/ruin/space/has_grav/austation/maint) "Jw" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -5365,7 +5314,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/austation/med) @@ -5401,12 +5350,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/austation/rnd) -"Rw" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/ruin/space/has_grav/austation/maint) "Uk" = ( /obj/machinery/light{ dir = 8 @@ -6085,7 +6028,7 @@ nv hi Ey hw -hQ +hp ig Ey Ey @@ -6315,8 +6258,8 @@ aa aa aa aa -ca -ca +bn +bn bf bf bf @@ -6368,8 +6311,8 @@ aa aa aa aa -bA -ca +bn +bn fZ hc ax @@ -6421,7 +6364,7 @@ aa aa aa aa -bA +bn gm hh EF @@ -6692,7 +6635,7 @@ aa be bv bW -vF +cN cN di Az @@ -7055,7 +6998,7 @@ aL aU zU hs -Jb +CX DG ci dm @@ -7268,7 +7211,7 @@ CX uu uu bP -Rw +CX uu DG gS @@ -7375,7 +7318,7 @@ WZ dV uu bP -Jb +CX dE uu CX @@ -7418,8 +7361,8 @@ aH aP aY bh -bH -cf +aY +aY cz cz dq @@ -7486,7 +7429,7 @@ gd gv gT WZ -Rw +CX ht uu uu diff --git a/_maps/RandomRuins/SpaceRuins/wruin3.dmm b/_maps/r_ruins/space/wruin3.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/wruin3.dmm rename to _maps/r_ruins/space/wruin3.dmm diff --git a/_maps/RandomRuins/SpaceRuins/wruin4.dmm b/_maps/r_ruins/space/wruin4.dmm similarity index 87% rename from _maps/RandomRuins/SpaceRuins/wruin4.dmm rename to _maps/r_ruins/space/wruin4.dmm index 4cf8c58cab02..14d4ebabe4b5 100644 --- a/_maps/RandomRuins/SpaceRuins/wruin4.dmm +++ b/_maps/r_ruins/space/wruin4.dmm @@ -17,23 +17,21 @@ /area/ruin/space/has_grav/terrorship) "af" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonheavy, /obj/effect/turf_decal/bot, +/obj/effect/spawner/random/contraband/armory, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "ah" = ( /obj/structure/fluff/divine/conduit, -/turf/open/floor/partyhard/steel{ - icon_state = "st-9" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "ai" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, /obj/effect/turf_decal/bot, /obj/machinery/light{ dir = 1 }, +/obj/item/gun/ballistic/automatic/c20r/unrestricted, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aj" = ( @@ -77,7 +75,14 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "au" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) +"av" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/obj/effect/turf_decal/bot, +/obj/item/ammo_box/magazine/smgm45, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aw" = ( @@ -117,7 +122,7 @@ /area/ruin/space/has_grav/terrorship) "aB" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, +/obj/effect/spawner/random/exotic/antag_gear_weak, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) @@ -142,75 +147,158 @@ /area/ruin/space/has_grav/terrorship) "aG" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonmisc, +/obj/effect/spawner/random/exotic/snow_gear, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aH" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/full, /obj/structure/window/reinforced{ - dir = 4 + dir = 1; + layer = 2.9 }, -/obj/item/gun/ballistic/automatic/ak47, -/obj/item/ammo_box/magazine/ak47mag, -/obj/item/ammo_box/magazine/ak47mag, -/obj/item/ammo_box/magazine/ak47mag, -/turf/open/floor/plasteel/dark, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = 2 + }, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = 4; + layer = 3.02 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "aI" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/full, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, /obj/structure/window/reinforced{ dir = 8 }, +/obj/structure/rack{ + color = "#999999" + }, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, /obj/structure/window/reinforced{ - dir = 4 + dir = 4; + layer = 2.9 }, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/shield/riot, -/obj/item/pickaxe, -/turf/open/floor/plasteel/dark, +/turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "aK" = ( /obj/machinery/dna_scannernew, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aL" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/full, +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = -2 + }, /obj/structure/window/reinforced{ dir = 8 }, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, /obj/structure/window/reinforced{ - dir = 4 + dir = 4; + layer = 2.9 }, -/obj/item/katana, -/turf/open/floor/plasteel/dark, +/turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "aM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/rack{ + color = "#999999" + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/dark, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "aN" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonmid, +/obj/effect/spawner/random/exotic/antag_gear, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aP" = ( /obj/item/mecha_ammo/lmg, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "aQ" = ( /obj/effect/turf_decal/stripes/line{ @@ -221,6 +309,12 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "aT" = ( @@ -244,11 +338,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) -"aV" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "cx-9" - }, -/area/ruin/space/has_grav/terrorship) "aX" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -304,25 +393,11 @@ /obj/structure/fluff/big_chain, /obj/item/mecha_ammo/lmg, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/terrorship) -"bf" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, -/area/ruin/space/has_grav/terrorship) -"bg" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "cx-7" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "bh" = ( /obj/structure/fluff/divine/powerpylon, -/turf/open/floor/partyhard/steel{ - icon_state = "st-9" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "bi" = ( /obj/machinery/computer/monitor/secret{ @@ -334,22 +409,10 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) -"bk" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/terrorship) -"bl" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "cx-8" - }, -/area/ruin/space/has_grav/terrorship) "bm" = ( /obj/item/mecha_ammo/flashbang, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "bn" = ( /obj/effect/turf_decal/tile/blue{ @@ -360,7 +423,7 @@ "bo" = ( /obj/structure/table, /obj/item/suppressor, -/obj/item/pda/syndicate, +/obj/item/modular_computer/tablet/pda/syndicate, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "bp" = ( @@ -373,9 +436,7 @@ /area/ruin/space/has_grav/terrorship) "br" = ( /mob/living/simple_animal/hostile/syndicate/ranged/smg/space/stormtrooper, -/turf/open/floor/partyhard/steel{ - icon_state = "cx-2" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "bt" = ( /obj/machinery/light{ @@ -421,9 +482,7 @@ "bz" = ( /obj/machinery/power/rtg/abductor, /obj/effect/turf_decal/bot, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-3" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "bA" = ( /obj/effect/turf_decal/tile/blue{ @@ -442,11 +501,11 @@ /area/ruin/space/has_grav/terrorship) "bD" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, /obj/effect/turf_decal/bot, /obj/machinery/light{ dir = 4 }, +/obj/effect/spawner/random/exotic/tool, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "bE" = ( @@ -468,8 +527,9 @@ /area/ruin/space/has_grav/terrorship) "bI" = ( /obj/structure/table, -/obj/item/valentine, -/obj/item/storage/part_replacer/bluespace/tier4, +/obj/item/recharger_item{ + pixel_y = 9 + }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "bL" = ( @@ -515,8 +575,8 @@ }, /area/ruin/space/has_grav/terrorship) "bS" = ( -/obj/machinery/suit_storage_unit/syndicate, /obj/effect/turf_decal/stripes/full, +/obj/machinery/suit_storage_unit/standard_unit, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "bT" = ( @@ -622,40 +682,24 @@ /area/ruin/space/has_grav/terrorship) "ck" = ( /obj/machinery/porta_turret/syndicate, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-3" - }, -/area/ruin/space/has_grav/terrorship) -"co" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-9" - }, -/area/ruin/space/has_grav/terrorship) -"cp" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-4" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cq" = ( /obj/item/mecha_ammo/missiles_br, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cr" = ( /obj/item/mecha_ammo/missiles_he, /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cs" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/snowdin/dungeonlite, /obj/effect/turf_decal/bot, /obj/machinery/light, +/obj/effect/spawner/random/exotic/languagebook, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "cu" = ( @@ -667,9 +711,7 @@ /area/ruin/space/has_grav/terrorship) "cv" = ( /mob/living/simple_animal/hostile/syndicate/ranged/shotgun, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cw" = ( /obj/item/scythe, @@ -707,9 +749,7 @@ /obj/structure/fluff/big_chain, /obj/item/mecha_ammo/missiles_br, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cH" = ( /mob/living/simple_animal/hostile/syndicate/civilian, @@ -779,17 +819,13 @@ /obj/machinery/light{ dir = 8 }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cW" = ( /obj/machinery/light{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-8" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "cX" = ( /obj/structure/closet/crate/bin, @@ -835,11 +871,9 @@ /turf/open/floor/engine/airless, /area/ruin/space/has_grav/terrorship) "dh" = ( -/obj/item/mecha_ammo/clusterbang, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/obj/item/storage/toolbox/ammo/wt550, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "di" = ( /obj/machinery/gibber, @@ -960,11 +994,9 @@ /area/ruin/space/has_grav/terrorship) "dW" = ( /obj/structure/fluff/big_chain, -/obj/item/mecha_ammo/incendiary, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/obj/item/storage/toolbox/ammo/wt550, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "eg" = ( /obj/structure/shuttle/engine/large, @@ -975,7 +1007,7 @@ dir = 1 }, /obj/structure/table, -/obj/item/paicard, +/obj/item/pai_card, /obj/machinery/light{ dir = 8 }, @@ -997,21 +1029,28 @@ "el" = ( /obj/structure/table/wood/fancy/royalblack, /obj/item/melee/baseball_bat/ablative, +/obj/item/shield/riot/kevlar, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/terrorship) "em" = ( /obj/structure/shuttle/engine/huge, /turf/closed/indestructible/syndicate, /area/ruin/space/has_grav/terrorship) +"eH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = 4; + layer = 3.02 + }, +/turf/open/floor/partyhard/steel{ + icon_state = "mm-2" + }, +/area/ruin/space/has_grav/terrorship) "eW" = ( /mob/living/simple_animal/hostile/syndicate/civilian, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/terrorship) -"eY" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "cx-2" - }, -/area/ruin/space/has_grav/terrorship) "eZ" = ( /obj/effect/turf_decal/stripes/line{ dir = 4; @@ -1021,9 +1060,7 @@ /area/ruin/space/has_grav/terrorship) "fa" = ( /obj/structure/fluff/divine/nexus, -/turf/open/floor/partyhard/steel{ - icon_state = "st-9" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "fb" = ( /obj/structure/curtain, @@ -1054,9 +1091,7 @@ /area/ruin/space/has_grav/terrorship) "ff" = ( /obj/structure/fluff/divine/defensepylon, -/turf/open/floor/partyhard/steel{ - icon_state = "st-9" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "fg" = ( /obj/item/kirbyplants/random, @@ -1066,10 +1101,8 @@ "fh" = ( /obj/item/mecha_ammo/clusterbang, /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fi" = ( /obj/machinery/light{ @@ -1080,11 +1113,6 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) -"fj" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-6" - }, -/area/ruin/space/has_grav/terrorship) "fk" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1094,50 +1122,30 @@ "fl" = ( /obj/item/mecha_ammo/lmg, /obj/structure/table, -/obj/effect/spawner/lootdrop/gloves, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/obj/effect/spawner/random/clothing/gloves, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fm" = ( /obj/item/mecha_ammo/missiles_he, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, -/area/ruin/space/has_grav/terrorship) -"fn" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-7" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fo" = ( /obj/structure/fluff/big_chain, /obj/item/mecha_ammo/missiles_he, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fp" = ( /obj/item/mecha_ammo/incendiary, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-2" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fq" = ( /obj/structure/fluff/big_chain, /obj/item/mecha_ammo/clusterbang, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, -/area/ruin/space/has_grav/terrorship) -"fr" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fs" = ( /obj/structure/closet/crate/eva, @@ -1159,14 +1167,12 @@ /obj/structure/fluff/big_chain, /obj/item/mecha_ammo/flashbang, /obj/structure/table, -/turf/open/floor/partyhard/steel{ - icon_state = "dd-10" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fx" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "fy" = ( @@ -1183,9 +1189,7 @@ /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "fB" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "dd-5" - }, +/turf/open/floor/resin, /area/ruin/space/has_grav/terrorship) "fC" = ( /obj/effect/mob_spawn/human/corpse/assistant, @@ -1210,9 +1214,7 @@ /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "fG" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "cx-10" - }, +/turf/open/floor/resin/crypto, /area/ruin/space/has_grav/terrorship) "fH" = ( /obj/item/shard{ @@ -1231,10 +1233,24 @@ /mob/living/simple_animal/hostile/syndicate/melee/sword/space, /turf/template_noop, /area/template_noop) +"go" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/genetics_filler, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "hb" = ( /obj/item/wirecutters, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"hd" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "hY" = ( /mob/living/simple_animal/hostile/syndicate/ranged/shotgun, /turf/open/floor/carpet/red, @@ -1265,8 +1281,20 @@ /obj/item/stack/cable_coil, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"jS" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/exotic/antag_gear, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "jY" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) +"ka" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/donkpockets, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "kc" = ( @@ -1320,6 +1348,12 @@ /obj/item/pizzabox/infinite, /turf/open/floor/plasteel/cafeteria, /area/ruin/space/has_grav/terrorship) +"nH" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/exotic/antag_gear_weak, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "nN" = ( /turf/open/floor/engine/airless, /area/ruin/space/has_grav/terrorship) @@ -1360,7 +1394,7 @@ "qk" = ( /obj/structure/table/reinforced, /obj/item/storage/toolbox/electrical, -/obj/effect/spawner/lootdrop/gloves, +/obj/effect/spawner/random/clothing/gloves, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "qK" = ( @@ -1469,6 +1503,12 @@ /obj/effect/turf_decal/bot_red, /turf/open/floor/engine/airless, /area/ruin/space/has_grav/terrorship) +"zG" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/pins, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "zL" = ( /obj/effect/turf_decal/bot, /turf/open/floor/engine, @@ -1496,6 +1536,12 @@ /obj/structure/fans/tiny, /turf/open/floor/plasteel/cafeteria, /area/ruin/space/has_grav/terrorship) +"Bx" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/genetics_good, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "BB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/dark{ dir = 10; @@ -1506,6 +1552,13 @@ }, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"CA" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/ruinloot/medical, +/obj/item/ammo_box/magazine/smgm45, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "CP" = ( /obj/structure/chair/stool/bar, /obj/effect/turf_decal/tile/neutral{ @@ -1513,12 +1566,28 @@ }, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) +"CQ" = ( +/obj/structure/table, +/turf/open/floor/partyhard/steel{ + icon_state = "mm-2" + }, +/area/ruin/space/has_grav/terrorship) "CW" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"Da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4; + icon_state = "warningline" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "DF" = ( /obj/machinery/porta_turret/syndicate, /obj/effect/turf_decal/tile/neutral{ @@ -1545,6 +1614,13 @@ /obj/item/stack/cable_coil, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"EJ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/spawner/random/clothing/gloves, +/obj/item/storage/part_replacer/bluespace/tier4, +/turf/open/floor/engine, +/area/ruin/space/has_grav/terrorship) "ET" = ( /obj/effect/turf_decal/tile/neutral{ dir = 8 @@ -1576,7 +1652,6 @@ /area/ruin/space/has_grav/terrorship) "Gd" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/melee/beesword, /obj/item/storage/backpack/duffelbag/syndie/c4, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/terrorship) @@ -1585,6 +1660,12 @@ /mob/living/simple_animal/hostile/syndicate/civilian, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"Gz" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/exotic/snow_gear, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "HI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 4 @@ -1618,6 +1699,28 @@ /obj/machinery/vending/engineering, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) +"IT" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/clothing/syndie, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) +"Jc" = ( +/obj/structure/table/reinforced, +/obj/item/full_armor_upgrade{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/full_armor_upgrade{ + pixel_y = 3; + layer = 3.01 + }, +/obj/item/full_armor_upgrade{ + pixel_x = 6; + layer = 3.02 + }, +/turf/open/floor/carpet/red, +/area/ruin/space/has_grav/terrorship) "Jv" = ( /obj/machinery/light{ dir = 8 @@ -1638,7 +1741,7 @@ /area/ruin/space/has_grav/terrorship) "KD" = ( /obj/structure/table/reinforced, -/obj/item/melee/baton/loaded/german, +/obj/item/melee/baton/loaded, /turf/open/floor/engine, /area/ruin/space/has_grav/terrorship) "Lp" = ( @@ -1651,6 +1754,12 @@ /mob/living/simple_animal/hostile/syndicate/ranged/smg, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) +"Mk" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/ruinloot/science, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "Mo" = ( /obj/structure/closet/crate/bin, /obj/effect/turf_decal/tile/neutral{ @@ -1667,6 +1776,12 @@ }, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/terrorship) +"Ns" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/lootdrop/ruinloot/important, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "NR" = ( /obj/item/wrench, /turf/open/floor/engine, @@ -1682,11 +1797,24 @@ /obj/machinery/modular_computer/console/preset/id, /turf/open/floor/plasteel/white, /area/ruin/space/has_grav/terrorship) +"PD" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/exotic/technology, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "PO" = ( /obj/machinery/light{ dir = 4 }, -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) +"PY" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/clothing/syndie, +/obj/item/ammo_box/magazine/smgm45, /turf/open/floor/plasteel/dark, /area/ruin/space/has_grav/terrorship) "Qz" = ( @@ -1703,8 +1831,7 @@ /area/ruin/space/has_grav/terrorship) "SC" = ( /obj/structure/table/wood/fancy/royalblack, -/obj/item/melee/chainofcommand/tailwhip/kitty, -/obj/item/storage/belt/utility/full, +/obj/item/tactical_recharger, /turf/open/floor/carpet/red, /area/ruin/space/has_grav/terrorship) "SD" = ( @@ -1810,6 +1937,12 @@ /obj/item/sharpener, /turf/open/floor/plasteel/cafeteria, /area/ruin/space/has_grav/terrorship) +"YN" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/exotic/tool, +/turf/open/floor/plasteel/dark, +/area/ruin/space/has_grav/terrorship) "Zk" = ( /obj/item/restraints/handcuffs/cable, /turf/open/floor/plasteel/dark, @@ -2345,7 +2478,7 @@ ri aF dj qk -qk +EJ IN xD fx @@ -2722,17 +2855,17 @@ bc ad ad ck -fn -fn -fn -fn +fB +fB +fB +fB cV -fn -fn -fn -fn -fn -fj +fB +fB +fB +fB +fB +fB aF bG ad @@ -2788,15 +2921,15 @@ bc ad ad cg -co +fB cq cq cG -bk +fB fp fp dW -bk +fB dh fh fq @@ -2855,18 +2988,18 @@ ad ad bN ch -co -bk +fB +fB cv -bk -bk -bk -bk -bk -bk -bk -bk -fr +fB +fB +fB +fB +fB +fB +fB +fB +fB fz fd ad @@ -2921,19 +3054,19 @@ ad ad bN bR -ay -co -bk +eH +fB +fB cv -bk -bk -bk -bk -bk -bk -bk -bk -fr +fB +fB +fB +fB +fB +fB +fB +fB +fB fz fd ad @@ -2987,17 +3120,17 @@ ad ad bN bR -cb +CQ ay -co +fB cr fm fo -bk +fB aP fl be -bk +fB bm bm fw @@ -3053,20 +3186,20 @@ ad ad bN bR -cb +CQ cb ay -cp -bf -bf -bf -bf +fB +fB +fB +fB +fB cW -bf -bf -bf -bf -bf +fB +fB +fB +fB +fB fB aF fd @@ -3311,7 +3444,7 @@ fJ fJ fJ ac -aN +PY ad ad ad @@ -3378,7 +3511,7 @@ fJ fJ fJ ac -aN +IT ad ad al @@ -3392,7 +3525,7 @@ eZ ap ad ad -aN +YN ac az bC @@ -3445,16 +3578,16 @@ fJ fJ fJ ac -aB +hd ad ad an ah -bg -bg +fG +fG fa -bg -bg +fG +fG ah as ad @@ -3512,21 +3645,21 @@ fJ fJ fJ ac -af +PD ad ad an -aV +fG bh -eY -eY -eY +fG +fG +fG bh fG as ad ad -aG +PD ac cJ bC @@ -3579,21 +3712,21 @@ fJ fJ fJ ac -aN +PD ad ad an -aV -eY +fG +fG br ff br -eY +fG fG as ad ad -aN +go ac cK bC @@ -3651,11 +3784,11 @@ ad ak ax fa -eY +fG ff bz ff -eY +fG fa cc ad @@ -3717,17 +3850,17 @@ af ad ad an -aV -eY +fG +fG br ff br -eY +fG fG as ad ad -aG +jS ac cL aF @@ -3780,15 +3913,15 @@ fJ fJ fJ ac -aB +Gz ad ad an -aV +fG bh -eY -eY -eY +fG +fG +fG bh fG as @@ -3847,21 +3980,21 @@ fJ fJ fJ ac -af +nH ad ad an ah -bl -bl +fG +fG fa -bl -bl +fG +fG ah as ad ad -aB +av ac bA cT @@ -3928,7 +4061,7 @@ ab aY ad ad -aG +Bx ac bA bn @@ -3981,7 +4114,7 @@ fJ fJ fJ ac -af +Gz ad ad ad @@ -3995,7 +4128,7 @@ ad ad ad ad -aG +zG ac Pv eW @@ -4118,16 +4251,16 @@ fJ ac ac aG +go +Bx aG -aB -aG -aB +go bD -aN -aG -aB -aG -aG +ka +Ns +CA +Mk +Mk ac cA cE @@ -4158,7 +4291,7 @@ SM ad kQ zS -ba +Jc Xy ac ac @@ -4454,7 +4587,7 @@ fJ fJ ac aM -aY +as ad ad ad @@ -4521,7 +4654,7 @@ fJ fJ ac aQ -eZ +Da eZ eZ eZ diff --git a/_maps/RandomRuins/SpaceRuins/wruin5.dmm b/_maps/r_ruins/space/wruin5.dmm similarity index 100% rename from _maps/RandomRuins/SpaceRuins/wruin5.dmm rename to _maps/r_ruins/space/wruin5.dmm diff --git a/_maps/RandomRuins/SpaceRuins/wruin6.dmm b/_maps/r_ruins/space/wruin6.dmm similarity index 94% rename from _maps/RandomRuins/SpaceRuins/wruin6.dmm rename to _maps/r_ruins/space/wruin6.dmm index 3c447b766ca7..48fb4bc8551d 100644 --- a/_maps/RandomRuins/SpaceRuins/wruin6.dmm +++ b/_maps/r_ruins/space/wruin6.dmm @@ -18,7 +18,7 @@ /area/ruin/space/has_grav/powered) "n" = ( /obj/structure/table/wood/fancy/purple, -/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c10000, /turf/open/floor/eighties, /area/ruin/space/has_grav/powered) "C" = ( @@ -38,19 +38,19 @@ "U" = ( /obj/machinery/light/directional/north, /obj/structure/table/wood/fancy/purple, -/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c10000, /turf/open/floor/eighties, /area/ruin/space/has_grav/powered) "W" = ( /obj/machinery/light/directional/east, /obj/structure/table/wood/fancy/purple, -/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c10000, /turf/open/floor/eighties, /area/ruin/space/has_grav/powered) "Y" = ( /obj/machinery/light/directional/west, /obj/structure/table/wood/fancy/purple, -/obj/item/stack/spacecash/c100, +/obj/item/stack/spacecash/c10000, /turf/open/floor/eighties, /area/ruin/space/has_grav/powered) "Z" = ( diff --git a/_maps/r_ruins/station/bar/bar_dark.dmm b/_maps/r_ruins/station/bar/bar_dark.dmm new file mode 100644 index 000000000000..2ca2b166792f --- /dev/null +++ b/_maps/r_ruins/station/bar/bar_dark.dmm @@ -0,0 +1,2262 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"ac" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"ad" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ae" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"af" = ( +/turf/closed/wall, +/area/service/bar) +"ag" = ( +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/food/grown/poppy/lily{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/machinery/reagentgrinder{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"ah" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"ai" = ( +/obj/structure/sign/picture_frame/portrait{ + pixel_y = 25 + }, +/obj/structure/ladder, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar) +"aj" = ( +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ak" = ( +/turf/closed/wall, +/area/service/kitchen) +"am" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"an" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/instrument/eguitar, +/obj/item/instrument/guitar{ + pixel_x = 11 + }, +/obj/effect/turf_decal/bot/left, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/service/theater) +"ao" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/theater) +"ap" = ( +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/autoname, +/turf/open/floor/wood, +/area/service/theater) +"aq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/theater) +"ar" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"as" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"at" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 29 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"au" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/turntable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"av" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag{ + pixel_y = 8 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"aw" = ( +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"ax" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"ay" = ( +/obj/structure/sign/poster/contraband/space_cube{ + pixel_x = 31 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"az" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aB" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aC" = ( +/obj/machinery/door/window/southleft{ + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/service/kitchen) +"aD" = ( +/turf/closed/wall, +/area/service/theater) +"aF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater) +"aH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/area/service/bar) +"aI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"aL" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/vending_refill/cigarette, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthEast"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/clothing/head/collectable/tophat, +/turf/open/floor/wood, +/area/service/bar) +"aM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"aN" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"aO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"aP" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"aQ" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aR" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aS" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aV" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/theater) +"aW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater) +"ba" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/vending/cigarette, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"bb" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"bc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"bd" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/newspaper, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"be" = ( +/obj/structure/kitchenspike, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bf" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bm" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood, +/area/service/bar) +"bn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bo" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"br" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bs" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"by" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"bz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"bA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6 + }, +/obj/machinery/button/door{ + id = "barmanpriv"; + name = "barman privacy"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "barShutters"; + name = "bar shutters"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/wood, +/area/service/bar) +"bB" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"bI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"bJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/bar) +"bK" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/service/bar) +"bL" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bM" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bN" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bP" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Kitchen" + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bQ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bR" = ( +/obj/machinery/oven{ + pixel_y = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bS" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bT" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "barShutters"; + name = "privacy shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/bar) +"bW" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"bX" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"bZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"ca" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"cd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "barmanpriv"; + name = "bar shutters" + }, +/turf/open/floor/plating, +/area/service/kitchen) +"ce" = ( +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ch" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ck" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cl" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"cm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/food/grown/poppy/geranium{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"co" = ( +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"cq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/bar) +"cr" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/service/bar) +"cs" = ( +/obj/structure/table, +/obj/item/food/mint, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ct" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cu" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cv" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/obj/item/book/manual/wiki/cooking_to_serve_man{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "kitchenhydro"; + name = "Service Shutter" + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/cafeteria{ + dir = 5 + }, +/area/service/kitchen) +"cy" = ( +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"cz" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"cA" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/food/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "barmanpriv"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cB" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/stack/package_wrap, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cC" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cD" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cE" = ( +/obj/machinery/processor, +/obj/machinery/button/door{ + id = "kitchenhydro"; + name = "Service Shutter Control"; + pixel_x = 24; + pixel_y = 7; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cH" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"cI" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/turf/open/floor/wood, +/area/service/bar) +"cJ" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cK" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_x = 30 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/window/southright{ + dir = 8; + name = "Bar Door"; + req_one_access_txt = "25;28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/beakers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cP" = ( +/turf/open/floor/wood, +/area/service/bar) +"cQ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cR" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"cU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"da" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/service/bar) +"db" = ( +/obj/structure/table/wood, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -30 + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"dc" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beakers, +/obj/effect/turf_decal/siding/wood, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/service/bar) +"dd" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/service/kitchen) +"de" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"df" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dh" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/service/bar) +"di" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Bar Service Hall"; + req_one_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"dj" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"dk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen Service Hall"; + req_access_txt = "28"; + req_one_access_txt = null + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"dl" = ( +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"dm" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"eT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/restaurant_portal/bar, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"iY" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/starboard) +"lf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ml" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"mE" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"nI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/storage/ashtray, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qs" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"qM" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"rF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/beakers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/service/bar) +"ue" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/bar) +"xf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"yP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"yW" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"zd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/obj/structure/displaycase/forsale/kitchen, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"Ak" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"Bq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"BN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"BW" = ( +/obj/item/stack/sheet/mineral/coal/ten{ + pixel_x = 11; + pixel_y = -16 + }, +/obj/machinery/grill, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"Ct" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"Dt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Ei" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"El" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/instrument/violin, +/obj/item/instrument/piano_synth, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot/left, +/turf/open/floor/wood, +/area/service/theater) +"En" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"GF" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"GJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/theater) +"IP" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"IU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"JY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"KY" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"Ok" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"OG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"QL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/head/collectable/tophat, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"QU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"Rf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "barmanpriv"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"Ri" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/theater) +"Ro" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Rp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"TX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Uz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"UD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"UU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Vq" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"Xp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/storage/ashtray/glass, +/turf/open/floor/light, +/area/service/bar) +"Xy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"XG" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/theater) +"YX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) + +(1,1,1) = {" +aa +aa +aa +af +bT +af +bT +af +bT +af +bT +af +bT +af +af +"} +(2,1,1) = {" +aa +aa +aa +cU +aT +bi +cW +bD +eT +cm +aT +cF +eT +cU +af +"} +(3,1,1) = {" +aa +aa +aa +aF +cG +JY +JY +Rp +Rp +cV +JY +Rp +Rp +cV +af +"} +(4,1,1) = {" +aa +aD +an +Ri +El +BN +Rp +bE +cG +cG +cG +cG +xf +cW +af +"} +(5,1,1) = {" +aa +ab +ao +XG +aV +BN +TX +bu +bW +GF +Vq +qs +BN +cX +af +"} +(6,1,1) = {" +aa +aD +ap +GJ +aV +QL +Uz +Bq +bX +co +cy +KY +BN +Rp +dg +"} +(7,1,1) = {" +aa +aD +aq +aG +aW +Ei +nI +Bq +ca +cy +co +IP +BN +Rp +bT +"} +(8,1,1) = {" +aa +af +ar +aH +BN +cL +Xy +bu +bZ +mE +cz +cH +cL +UU +lf +"} +(9,1,1) = {" +aa +bn +bv +aI +UU +UU +UU +UD +Ok +Ok +Ok +Ok +Dt +cY +dh +"} +(10,1,1) = {" +aa +dj +at +aJ +Rp +JY +Rp +JY +Rp +En +Rp +cO +UU +UU +af +"} +(11,1,1) = {" +aa +af +au +aK +ba +fo +bG +bG +bG +bG +Ro +bG +rF +hh +af +"} +(12,1,1) = {" +af +af +af +af +af +af +QU +bH +IU +IU +IU +Xp +cN +af +af +"} +(13,1,1) = {" +af +ag +av +aL +bb +af +by +bI +sD +cq +ml +Ct +Ct +da +af +"} +(14,1,1) = {" +di +ah +ac +aM +bc +bm +bz +bJ +cP +cP +cP +ue +hv +db +af +"} +(15,1,1) = {" +af +ai +aw +aN +bd +af +bA +bK +as +cr +bJ +cI +cP +dc +af +"} +(16,1,1) = {" +af +af +ax +aO +yP +af +ak +ak +cd +ak +cA +ak +Rf +ak +ak +"} +(17,1,1) = {" +ad +aj +ay +aP +OG +af +ak +bL +ce +ce +ce +ce +Ak +dd +iY +"} +(18,1,1) = {" +af +ak +ak +ak +ak +ak +ak +bM +cf +bF +bF +bF +cQ +ak +qM +"} +(19,1,1) = {" +aa +ak +az +aQ +be +bo +ak +bN +cJ +cs +cB +ce +YX +de +yW +"} +(20,1,1) = {" +aa +dk +aA +aA +ae +bp +bB +bO +ch +ct +cC +cJ +YX +df +yW +"} +(21,1,1) = {" +aa +ak +aB +aR +bf +bq +ak +bP +cj +cu +cD +ce +cR +df +yW +"} +(22,1,1) = {" +aa +am +aC +aS +bg +br +ak +bQ +cj +cv +BW +ce +YX +zd +yW +"} +(23,1,1) = {" +aa +ak +ak +ak +bh +bs +ak +bR +ck +cw +cw +cw +cS +ak +dm +"} +(24,1,1) = {" +aa +aa +aa +ak +ak +ak +ak +bS +ce +ce +cE +cK +cT +ak +dl +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +ak +ak +cl +cx +ak +ak +ak +ak +ak +"} diff --git a/_maps/RandomRuins/StationRuins/bar_default.dmm b/_maps/r_ruins/station/bar/bar_default.dmm similarity index 99% rename from _maps/RandomRuins/StationRuins/bar_default.dmm rename to _maps/r_ruins/station/bar/bar_default.dmm index 20c291b11b65..308916cf0370 100644 --- a/_maps/RandomRuins/StationRuins/bar_default.dmm +++ b/_maps/r_ruins/station/bar/bar_default.dmm @@ -205,7 +205,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/plasteel, /area/service/kitchen) "aD" = ( @@ -294,7 +294,7 @@ /turf/open/floor/wood, /area/service/bar) "aO" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/service/bar) "aP" = ( @@ -478,7 +478,7 @@ req_access_txt = "25" }, /obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/wood, /area/service/bar) "bn" = ( @@ -519,7 +519,6 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/item/ashtray, /turf/open/floor/plasteel, /area/service/bar) "bu" = ( @@ -552,7 +551,7 @@ /area/service/bar) "by" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/plaques/deempisi{ +/obj/structure/sign/picture_frame/portrait{ pixel_x = -28; pixel_y = -4 }, @@ -743,7 +742,6 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/item/ashtray, /turf/open/floor/plasteel, /area/service/bar) "bW" = ( @@ -776,7 +774,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/item/ashtray, /turf/open/floor/plasteel, /area/service/bar) "ca" = ( @@ -999,7 +996,7 @@ /area/service/kitchen) "cC" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /obj/item/reagent_containers/glass/beaker, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) @@ -1039,7 +1036,6 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/item/ashtray, /turf/open/floor/plasteel, /area/service/bar) "cH" = ( @@ -1056,7 +1052,6 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/obj/item/ashtray, /turf/open/floor/plasteel, /area/service/bar) "cI" = ( @@ -1186,7 +1181,7 @@ /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) "cU" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ dir = 1 @@ -1291,7 +1286,7 @@ req_access_txt = "28" }, /obj/machinery/door/firedoor, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/plasteel, /area/service/kitchen) "de" = ( @@ -1500,6 +1495,7 @@ id = "barmanpriv"; name = "bar shutters" }, +/obj/item/storage/ashtray/glass, /turf/open/floor/light/colour_cycle/dancefloor_a, /area/service/bar) "JY" = ( diff --git a/_maps/RandomRuins/StationRuins/bar_lava.dmm b/_maps/r_ruins/station/bar/bar_lava.dmm similarity index 98% rename from _maps/RandomRuins/StationRuins/bar_lava.dmm rename to _maps/r_ruins/station/bar/bar_lava.dmm index 4c43deeaea1c..14ba72038103 100644 --- a/_maps/RandomRuins/StationRuins/bar_lava.dmm +++ b/_maps/r_ruins/station/bar/bar_lava.dmm @@ -78,12 +78,12 @@ /area/hallway/primary/starboard) "cv" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /obj/item/reagent_containers/glass/beaker, /turf/open/floor/mineral/plastitanium/red, /area/service/kitchen) "cx" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/mineral/plastitanium, /area/service/bar) "cy" = ( @@ -156,7 +156,6 @@ /obj/structure/chair/stool{ pixel_y = 8 }, -/obj/item/ashtray, /turf/open/floor/mineral/plastitanium, /area/service/bar) "fR" = ( @@ -189,7 +188,7 @@ req_access_txt = "28" }, /obj/machinery/door/firedoor, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /obj/machinery/door/poddoor/shutters/preopen{ id = "kitchenhydro"; name = "Service Shutter" @@ -339,7 +338,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/mineral/plastitanium, /area/service/bar) "kh" = ( @@ -396,7 +395,6 @@ /area/service/bar) "kS" = ( /obj/structure/chair, -/obj/item/ashtray, /turf/open/floor/mineral/plastitanium, /area/service/bar) "kX" = ( @@ -420,7 +418,7 @@ /area/hallway/primary/starboard) "mi" = ( /obj/structure/table/wood, -/obj/structure/sign/plaques/deempisi{ +/obj/structure/sign/picture_frame/portrait{ pixel_x = -28; pixel_y = -4 }, @@ -510,7 +508,6 @@ "pQ" = ( /obj/structure/table, /obj/item/clothing/mask/cigarette/cigar, -/obj/item/ashtray, /turf/open/floor/mineral/plastitanium, /area/service/bar) "pW" = ( @@ -884,7 +881,7 @@ name = "Bar Storage"; req_access_txt = "25" }, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/service/bar) @@ -1181,16 +1178,6 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/service/bar) -"PL" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "barmanpriv"; - name = "bar shutters" - }, -/obj/machinery/door/firedoor, -/obj/item/ashtray, -/turf/open/floor/light, -/area/service/bar) "PY" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -1395,12 +1382,6 @@ /obj/machinery/door/firedoor, /turf/open/floor/wood, /area/hallway/secondary/service) -"Xh" = ( -/obj/structure/chair/stool{ - pixel_y = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/service/bar) "Xj" = ( /obj/structure/table/reinforced, /obj/machinery/door/poddoor/shutters/preopen{ @@ -1446,6 +1427,16 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/service/kitchen) +"Zx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/storage/ashtray/glass, +/turf/open/floor/light, +/area/service/bar) "Zy" = ( /obj/machinery/status_display/evac{ layer = 4; @@ -1513,7 +1504,7 @@ dO xo zF zF -PL +Zx tf fQ rU @@ -1782,7 +1773,7 @@ ln Nr Cj Ey -Xh +fQ rJ rJ sG diff --git a/_maps/RandomRuins/StationRuins/bar_neon.dmm b/_maps/r_ruins/station/bar/bar_neon.dmm similarity index 98% rename from _maps/RandomRuins/StationRuins/bar_neon.dmm rename to _maps/r_ruins/station/bar/bar_neon.dmm index 6d25af1d0bea..9d8ecedb3083 100644 --- a/_maps/RandomRuins/StationRuins/bar_neon.dmm +++ b/_maps/r_ruins/station/bar/bar_neon.dmm @@ -214,7 +214,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/plasteel, /area/service/kitchen) "aG" = ( @@ -252,9 +252,7 @@ /turf/open/floor/plasteel/vaporwave, /area/service/theater) "aN" = ( -/obj/effect/spawner/randomarcade{ - dir = 8 - }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel/vaporwave, /area/service/theater) "aO" = ( @@ -283,7 +281,7 @@ /turf/open/floor/wood, /area/service/bar) "aR" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/service/bar) "aS" = ( @@ -347,9 +345,7 @@ /obj/machinery/status_display/evac{ pixel_x = 32 }, -/obj/effect/spawner/randomarcade{ - dir = 8 - }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/plasteel/vaporwave, /area/service/theater) "be" = ( @@ -436,7 +432,7 @@ req_access_txt = "25" }, /obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/wood, /area/service/bar) "bq" = ( @@ -472,7 +468,7 @@ /area/service/kitchen) "bB" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/plaques/deempisi{ +/obj/structure/sign/picture_frame/portrait{ pixel_x = -28; pixel_y = -4 }, @@ -691,6 +687,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/item/storage/ashtray/glass, /turf/open/floor/light/colour_cycle/dancefloor_a, /area/service/bar) "cf" = ( @@ -863,7 +860,7 @@ /area/service/kitchen) "cF" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /obj/item/reagent_containers/glass/beaker, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) @@ -1047,7 +1044,7 @@ req_access_txt = "28" }, /obj/machinery/door/firedoor, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/plasteel, /area/service/kitchen) "dh" = ( @@ -1331,7 +1328,7 @@ /area/service/kitchen) "Si" = ( /obj/structure/table/wood/poker, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/eighties, /area/service/bar) "Sy" = ( diff --git a/_maps/RandomRuins/StationRuins/bar_theatre.dmm b/_maps/r_ruins/station/bar/bar_theatre.dmm similarity index 99% rename from _maps/RandomRuins/StationRuins/bar_theatre.dmm rename to _maps/r_ruins/station/bar/bar_theatre.dmm index 6fc8e1ac6501..45a5a0f78cee 100644 --- a/_maps/RandomRuins/StationRuins/bar_theatre.dmm +++ b/_maps/r_ruins/station/bar/bar_theatre.dmm @@ -118,7 +118,7 @@ req_access_txt = "25" }, /obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/wood, /area/service/bar) "gc" = ( @@ -225,7 +225,7 @@ /obj/structure/window/reinforced{ dir = 8 }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/plasteel, /area/service/kitchen) "it" = ( @@ -460,7 +460,7 @@ /turf/open/floor/plasteel, /area/service/bar) "oV" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/service/bar) "pa" = ( @@ -663,7 +663,7 @@ /area/service/bar) "xI" = ( /obj/machinery/disposal/bin, -/obj/structure/sign/plaques/deempisi{ +/obj/structure/sign/picture_frame/portrait{ pixel_x = -28; pixel_y = -4 }, @@ -816,9 +816,7 @@ /area/service/kitchen) "CX" = ( /obj/effect/turf_decal/tile/bar, -/obj/effect/spawner/randomarcade{ - dir = 1 - }, +/obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/bar{ dir = 1 }, @@ -966,7 +964,7 @@ /area/service/bar) "In" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /obj/item/reagent_containers/glass/beaker, /turf/open/floor/plasteel/cafeteria, /area/service/kitchen) @@ -1058,7 +1056,7 @@ req_access_txt = "28" }, /obj/machinery/door/firedoor, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /turf/open/floor/plasteel, /area/service/kitchen) "Lh" = ( @@ -1103,6 +1101,7 @@ id = "barmanpriv"; name = "bar shutters" }, +/obj/item/storage/ashtray/glass, /turf/open/floor/light/colour_cycle/dancefloor_a, /area/service/bar) "MH" = ( @@ -1442,7 +1441,6 @@ id = "barmanpriv"; name = "bar shutters" }, -/obj/item/ashtray, /turf/open/floor/light/colour_cycle/dancefloor_a, /area/service/bar) "YM" = ( diff --git a/_maps/RandomRuins/StationRuins/bridge_compact.dmm b/_maps/r_ruins/station/bridge/bridge_compact.dmm similarity index 77% rename from _maps/RandomRuins/StationRuins/bridge_compact.dmm rename to _maps/r_ruins/station/bridge/bridge_compact.dmm index aa5f96d35606..97a3ddcac5ee 100644 --- a/_maps/RandomRuins/StationRuins/bridge_compact.dmm +++ b/_maps/r_ruins/station/bridge/bridge_compact.dmm @@ -9,35 +9,20 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ad" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Central Access" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ae" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "af" = ( /turf/closed/wall/r_wall, /area/engineering/gravity_generator) @@ -60,10 +45,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"aj" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ak" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -81,35 +63,25 @@ pixel_y = 24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"al" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "am" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L1" + icon_state = "W1" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "an" = ( /turf/closed/wall, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ao" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ap" = ( -/obj/machinery/door/firedoor/window, /obj/structure/cable, /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "aq" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -124,20 +96,20 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ar" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "as" = ( /turf/closed/wall/r_wall, /area/command/meeting_room) "at" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "au" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -146,61 +118,53 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "av" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = 30 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ax" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-West" }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"ax" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "ay" = ( /obj/machinery/light{ dir = 1; pixel_y = 0 }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "az" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aA" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "aD" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/central) +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "aE" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "aI" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L3" + icon_state = "W2" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -212,18 +176,17 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aK" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aL" = ( /obj/structure/cable, /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aM" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -238,7 +201,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aN" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-East" @@ -250,7 +213,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aO" = ( /obj/machinery/light{ dir = 1; @@ -263,7 +226,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aP" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -275,19 +238,25 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, /obj/machinery/airalarm{ pixel_y = 23 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 10 +/obj/structure/railing{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 10 +/obj/machinery/door/firedoor/border_only{ + dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aR" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -298,20 +267,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aU" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L5" + icon_state = "W3" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aZ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Security"; @@ -321,14 +285,17 @@ /obj/machinery/holopad, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"ba" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/west) "bc" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bd" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=EVA2"; @@ -337,8 +304,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "be" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -347,7 +320,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bf" = ( /obj/structure/sign/directions/evac{ dir = 4; @@ -363,17 +336,23 @@ pixel_x = -31; pixel_y = -24 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bg" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=QM"; location = "CHW" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bh" = ( /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ @@ -393,47 +372,47 @@ /area/command/teleporter) "bk" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L7" + icon_state = "W4" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bl" = ( /obj/machinery/light{ dir = 8 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bm" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L9" + icon_state = "W5" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bn" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L11" + icon_state = "W6" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bo" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bp" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bq" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -441,18 +420,18 @@ pixel_y = 36 }, /turf/open/openspace, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "br" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L13" + icon_state = "W7" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bt" = ( /obj/machinery/light/small{ dir = 8 }, -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/maintenance/central/secondary) "bw" = ( @@ -494,8 +473,10 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "bD" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 @@ -553,12 +534,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/command/teleporter) "bL" = ( @@ -567,7 +543,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bN" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -586,35 +562,35 @@ /area/command/teleporter) "bR" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L2" + icon_state = "W8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bS" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bT" = ( -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/west) "bU" = ( /obj/machinery/camera{ c_tag = "Central Hallway West"; dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -622,14 +598,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bW" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -638,8 +609,11 @@ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "bY" = ( /obj/machinery/status_display/evac{ pixel_x = -32 @@ -649,16 +623,19 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ca" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L4" + icon_state = "W9" }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cb" = ( /obj/effect/turf_decal/bot_white/left, /obj/effect/turf_decal/tile/neutral{ @@ -690,25 +667,25 @@ }, /obj/structure/cable, /turf/open/openspace, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ce" = ( /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "cn" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L6" + icon_state = "W10" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "co" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L10" + icon_state = "W12" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -717,10 +694,10 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cp" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L12" + icon_state = "W13" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -729,11 +706,11 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cq" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/plaque{ - icon_state = "L14" + icon_state = "W14" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -742,26 +719,23 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cr" = ( /obj/effect/turf_decal/tile/blue, /obj/machinery/light{ pixel_y = 0 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cs" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ct" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "cu" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -772,7 +746,7 @@ pixel_y = 5 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cv" = ( /obj/machinery/computer/communications, /obj/effect/turf_decal/tile/blue{ @@ -787,7 +761,7 @@ "cw" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cx" = ( /obj/machinery/light{ dir = 4 @@ -796,7 +770,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cy" = ( /obj/machinery/button/door{ id = "bridge blast"; @@ -821,6 +795,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/item/multitool{ + pixel_x = 9 + }, /turf/open/floor/plasteel/dark, /area/command) "cB" = ( @@ -849,10 +826,6 @@ pixel_y = 0 }, /obj/machinery/camera/autoname, -/obj/item/storage/pod{ - pixel_x = 8; - pixel_y = 32 - }, /turf/open/floor/plasteel/dark, /area/command) "cD" = ( @@ -999,6 +972,10 @@ /obj/machinery/light{ pixel_y = 0 }, +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = -38 + }, /turf/open/floor/plasteel/dark, /area/command) "cQ" = ( @@ -1048,16 +1025,12 @@ /obj/machinery/light{ pixel_y = 0 }, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, /obj/effect/turf_decal/tile/blue, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cV" = ( /obj/machinery/computer/med_data{ dir = 1 @@ -1077,29 +1050,28 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "cY" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cZ" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_centre) "db" = ( /obj/effect/turf_decal/tile/blue, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dc" = ( /obj/effect/turf_decal/tile/blue, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dd" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -1109,18 +1081,15 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "de" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "df" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Lockers"; @@ -1132,16 +1101,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "dg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dj" = ( -/obj/machinery/gravity_generator/main/station, +/obj/machinery/gravity_generator/main, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -1180,12 +1149,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "dn" = ( /obj/machinery/light{ dir = 8 @@ -1219,10 +1185,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/engineering/gravity_generator) "du" = ( @@ -1234,8 +1197,9 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "dv" = ( /obj/structure/sign/warning/radiation/rad_area{ pixel_x = 32 @@ -1300,8 +1264,7 @@ areastring = "/area/engineering/gravity_generator"; dir = 8; name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 + pixel_x = -25 }, /obj/structure/table, /obj/item/paper/guides/jobs/engi/gravity_gen, @@ -1315,7 +1278,7 @@ "dH" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dJ" = ( /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) @@ -1353,10 +1316,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/gravity_generator) "dT" = ( @@ -1384,6 +1344,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/structure/closet/crate/graviton_beacon, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "ea" = ( @@ -1396,6 +1357,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, +/obj/structure/closet/crate/jetpack, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "eb" = ( @@ -1412,12 +1374,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/teleporter, /turf/open/floor/plasteel, /area/command/teleporter) "ee" = ( @@ -1432,7 +1390,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ef" = ( /obj/structure/lattice, /obj/machinery/light, @@ -1443,7 +1401,7 @@ areastring = "/area/maintenance/central"; dir = 1; name = "Central Maintenance APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -1454,6 +1412,7 @@ name = "Captain's Office Maintenance"; req_access_txt = "12" }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central/secondary) "ej" = ( @@ -1468,12 +1427,16 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "el" = ( -/obj/structure/cable, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "en" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -1481,24 +1444,19 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ep" = ( /turf/closed/wall/r_wall, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "er" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "es" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/captain) @@ -1507,7 +1465,7 @@ dir = 10 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ew" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Dorm"; @@ -1515,7 +1473,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ex" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -1527,8 +1485,9 @@ pixel_x = 32; pixel_y = 28 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ey" = ( /turf/closed/wall/r_wall, /area/command/heads_quarters/hop) @@ -1536,6 +1495,16 @@ /obj/structure/disposalpipe/segment, /turf/closed/wall/r_wall, /area/command/heads_quarters/hop) +"eB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "eC" = ( /obj/structure/railing/corner{ dir = 8 @@ -1612,7 +1581,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "eK" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ @@ -1651,6 +1620,7 @@ id = "hop"; name = "Privacy Shutters" }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "eM" = ( @@ -1671,7 +1641,7 @@ /obj/effect/turf_decal/tile/blue, /obj/structure/disposalpipe/trunk/multiz/down, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "eS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1693,7 +1663,6 @@ /area/command/heads_quarters/hop) "eU" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ dir = 4; id = "aquaprivacy"; @@ -1713,6 +1682,16 @@ "eW" = ( /turf/closed/wall, /area/command/heads_quarters/captain) +"eX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "eY" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1736,24 +1715,21 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fd" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fe" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ff" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Stbd"; @@ -1763,7 +1739,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fg" = ( /obj/structure/sign/directions/medical{ dir = 4; @@ -1780,14 +1756,14 @@ pixel_y = -40 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fh" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fi" = ( /obj/structure/disposalpipe/segment{ dir = 9 @@ -1799,7 +1775,7 @@ pixel_y = 5 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1808,7 +1784,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fk" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; @@ -1821,12 +1797,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /obj/structure/railing/corner{ dir = 8 }, @@ -1852,8 +1823,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, /area/command/heads_quarters/hop) +"fn" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "fo" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -1875,7 +1854,7 @@ pixel_y = -24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -1930,8 +1909,9 @@ /area/command/heads_quarters/hop) "fC" = ( /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fD" = ( /obj/structure/window/reinforced{ dir = 4; @@ -1941,8 +1921,9 @@ /obj/effect/turf_decal/arrows{ dir = 1 }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fF" = ( /obj/structure/closet/radiation, /obj/effect/turf_decal/stripes/line{ @@ -1979,10 +1960,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/gravity_generator) "fK" = ( @@ -2002,7 +1980,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fL" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -2011,7 +1989,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fM" = ( /obj/machinery/light{ dir = 8 @@ -2023,6 +2001,8 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/ian, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "fO" = ( @@ -2034,12 +2014,12 @@ }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fP" = ( /obj/effect/turf_decal/tile/blue, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fR" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -2049,7 +2029,7 @@ "fS" = ( /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "fT" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -2061,7 +2041,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fU" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -2070,20 +2050,17 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fW" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fX" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fZ" = ( /obj/structure/chair{ name = "Crew Station" @@ -2110,14 +2087,15 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gf" = ( /obj/effect/turf_decal/arrows{ dir = 1 }, /obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gg" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -2130,12 +2108,8 @@ name = "Head of Personnel"; req_access_txt = "57" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/hop, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "gk" = ( @@ -2143,7 +2117,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gl" = ( /obj/effect/turf_decal/arrows{ dir = 4 @@ -2152,7 +2126,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gm" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -2178,26 +2152,16 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"gr" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gu" = ( /obj/structure/disposalpipe/trunk/multiz/down{ dir = 4 }, /obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/south) "gw" = ( /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ @@ -2208,7 +2172,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -2219,18 +2183,18 @@ }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gB" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gC" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -2241,7 +2205,7 @@ pixel_y = 5 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gE" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -2251,13 +2215,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"gF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gG" = ( /obj/machinery/light{ dir = 1; @@ -2266,9 +2224,8 @@ /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gH" = ( /obj/machinery/firealarm{ pixel_y = 24 @@ -2277,7 +2234,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gI" = ( /obj/machinery/light{ dir = 8 @@ -2289,7 +2246,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gJ" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -2301,7 +2258,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gK" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -2314,7 +2271,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gL" = ( /obj/effect/turf_decal/tile/yellow{ dir = 1 @@ -2322,8 +2279,9 @@ /obj/structure/sign/warning/securearea{ pixel_y = 32 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gP" = ( /obj/machinery/computer/teleporter{ dir = 1 @@ -2353,18 +2311,24 @@ /obj/effect/turf_decal/tile/blue, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "gX" = ( /obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gY" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, /area/command/teleporter) +"gZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "ha" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/central/secondary) "hf" = ( @@ -2386,8 +2350,8 @@ "hg" = ( /obj/structure/lattice/catwalk, /obj/structure/cable/multilayer/multiz, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/north) "hi" = ( /obj/structure/dresser, /turf/open/floor/carpet, @@ -2409,7 +2373,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "hp" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -2418,15 +2382,16 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hr" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = -32 }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "hs" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 10 @@ -2462,7 +2427,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "hE" = ( /obj/machinery/light, /turf/open/openspace, @@ -2474,7 +2439,7 @@ /area/maintenance/central/secondary) "hJ" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/central) "hL" = ( @@ -2488,7 +2453,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hP" = ( /obj/machinery/power/apc{ areastring = "/area/maintenance/central/secondary"; @@ -2501,7 +2466,7 @@ /area/maintenance/central/secondary) "hS" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L8" + icon_state = "W11" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -2510,7 +2475,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "hT" = ( /obj/machinery/light, /obj/machinery/firealarm{ @@ -2519,7 +2484,7 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "hX" = ( /turf/open/openspace, /area/command/meeting_room) @@ -2530,9 +2495,8 @@ /obj/structure/fans/tiny, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "hZ" = ( -/obj/structure/closet/secure_closet/hop, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -2548,10 +2512,12 @@ dir = 1; pixel_y = -23 }, +/obj/structure/table, +/obj/machinery/fax, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "ia" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/engineering/storage/tech) "ib" = ( /obj/effect/turf_decal/tile/blue{ @@ -2559,8 +2525,7 @@ }, /obj/effect/turf_decal/tile/blue, /obj/structure/cable, -/obj/structure/bed/dogbed/ian, -/mob/living/simple_animal/pet/dog/corgi/ian, +/obj/structure/closet/secure_closet/hop, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "ic" = ( @@ -2570,7 +2535,7 @@ /obj/machinery/power/apc{ areastring = "/area/command/heads_quarters/hop"; name = "Head of Personnel APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -2584,11 +2549,10 @@ /area/command/heads_quarters/hop) "ie" = ( /obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/multitool, /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/machinery/fax, /turf/open/floor/plasteel/dark, /area/command) "if" = ( @@ -2603,7 +2567,7 @@ }, /obj/structure/cable, /turf/open/openspace, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ih" = ( /turf/closed/wall/r_wall, /area/command) @@ -2622,12 +2586,7 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "im" = ( @@ -2673,13 +2632,6 @@ }, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) -"iw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "iy" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -2692,7 +2644,11 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"iA" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) "iI" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -2700,8 +2656,15 @@ /obj/effect/turf_decal/tile/blue, /obj/structure/table, /obj/machinery/accounting, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = -10 + }, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) +"iQ" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) "je" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Entrance"; @@ -2712,25 +2675,29 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ju" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"jx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "jD" = ( /obj/machinery/camera{ c_tag = "Central Hallway South-East"; dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -2739,9 +2706,9 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "jI" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /obj/structure/disposalpipe/segment{ dir = 9 }, @@ -2763,7 +2730,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jP" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AIW"; @@ -2775,15 +2742,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jQ" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jR" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AftH"; @@ -2792,7 +2760,7 @@ /obj/structure/disposalpipe/segment, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jT" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CHE"; @@ -2806,7 +2774,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jU" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=HOP"; @@ -2820,31 +2788,33 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jV" = ( -/obj/machinery/light{ - pixel_y = 0 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_centre) "jW" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jX" = ( /obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = -32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "jZ" = ( /obj/structure/disposalpipe/junction/flip{ dir = 2 @@ -2864,7 +2834,7 @@ pixel_y = -32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ka" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -2873,7 +2843,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "kc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2882,7 +2852,7 @@ pixel_y = -32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2890,11 +2860,9 @@ /obj/machinery/light{ pixel_y = 0 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ke" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -2904,14 +2872,14 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kf" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; sortType = 22 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kh" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -2921,7 +2889,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ki" = ( /obj/machinery/light{ pixel_y = 0 @@ -2930,23 +2898,20 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kj" = ( /obj/structure/disposalpipe/junction/flip{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 1 - }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kk" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kl" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/public/glass{ @@ -2955,12 +2920,9 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "km" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -2972,43 +2934,28 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "kn" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ko" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kr" = ( /obj/effect/turf_decal/tile/green, /turf/open/floor/plasteel/dark, /area/command) -"kt" = ( -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "kA" = ( /obj/machinery/door/airlock/external{ req_one_access_txt = "12" @@ -3025,7 +2972,14 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) +"kS" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"kT" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/east) "kW" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 10 @@ -3041,24 +2995,32 @@ /area/command/heads_quarters/captain) "lu" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ name = "Captain's Office Maintenance"; req_access_txt = "12" }, /turf/open/floor/plating, /area/maintenance/central/secondary) +"lv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/maintenance/central) "lL" = ( /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) "md" = ( -/obj/effect/spawner/lootdrop/gross_decal_spawner, +/obj/effect/spawner/random/trash/mess, /turf/open/floor/plating, /area/maintenance/central) "mm" = ( @@ -3070,8 +3032,9 @@ dir = 4 }, /obj/structure/cable, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ms" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -3089,10 +3052,18 @@ dir = 10 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"mJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "nd" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ id = "aquaprivacy"; name = "Privacy Shutters" @@ -3104,7 +3075,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "no" = ( /obj/structure/railing/corner{ dir = 1 @@ -3115,20 +3086,34 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel, /area/command/meeting_room) +"nE" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/hallway/primary/central/south) +"nH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "nL" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; req_access_txt = "12" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) +"nZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "oc" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -3140,13 +3125,12 @@ /obj/structure/cable, /obj/structure/disposalpipe/junction, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ol" = ( /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" }, -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, @@ -3154,8 +3138,16 @@ dir = 4 }, /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) +"oC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "pP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3172,12 +3164,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pS" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -3201,51 +3189,48 @@ }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) -"qb" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) +"qn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"qt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "qx" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "qC" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "qJ" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qL" = ( -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"qO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "rb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 8 @@ -3253,51 +3238,57 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rN" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, +/area/hallway/primary/central/east) +"rd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"rV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/central) +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"sd" = ( +/turf/open/space/openspace, +/area/hallway/primary/central/north) "se" = ( /obj/structure/bed, /obj/item/bedsheet/captain, /obj/item/storage/secure/safe/caps_spare{ - pixel_y = -32 + pixel_x = 7; + pixel_y = -30 }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) +"sl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"sx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "sD" = ( /obj/machinery/door/airlock/command{ name = "Conference Room"; req_access_txt = "19" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel, /area/command/meeting_room) +"sH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "sM" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -3321,6 +3312,9 @@ /obj/machinery/power/shieldwallgen, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) +"ui" = ( +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) "uu" = ( /obj/structure/ladder, /obj/machinery/airalarm{ @@ -3351,8 +3345,18 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm{ + pixel_y = 23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"uX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "vg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3361,8 +3365,9 @@ dir = 1 }, /obj/structure/cable, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "vl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3379,14 +3384,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "vw" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown{ @@ -3394,36 +3394,58 @@ }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "wg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "wu" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"wv" = ( +/obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "wy" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"wC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "wL" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, /turf/open/floor/plating, /area/command/heads_quarters/captain) +"wV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "xb" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, @@ -3431,7 +3453,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "xc" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -3446,24 +3468,26 @@ /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "xu" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/maintenance/central) +"xB" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "xG" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "xQ" = ( /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central/secondary) "yf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "yh" = ( /obj/structure/lattice, /turf/template_noop, @@ -3475,22 +3499,31 @@ /obj/structure/rack, /obj/item/tank/internals/oxygen, /obj/item/clothing/mask/gas, +/obj/tacmap/directional/south, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "yl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"yU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/area/hallway/primary/central/north) +"yF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"yU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "zb" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) @@ -3521,12 +3554,22 @@ /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/central) -"zS" = ( -/obj/machinery/light{ +"zX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/openspace, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ag" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "At" = ( /obj/machinery/status_display/evac, /turf/closed/wall, @@ -3535,9 +3578,13 @@ /turf/open/floor/plasteel/monofloor, /area/command/heads_quarters/hop) "Bi" = ( -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "Bl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -3545,24 +3592,34 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Bs" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; req_access_txt = "12" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "Bv" = ( -/obj/effect/spawner/lootdrop/maint_drugs, +/obj/effect/spawner/random/entertainment/drugs, /turf/open/floor/plating, /area/maintenance/central) +"BH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"BI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "Cc" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -3572,12 +3629,9 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Cx" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "Cz" = ( @@ -3585,32 +3639,53 @@ dir = 4 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"CW" = ( +/area/hallway/primary/central/south) +"CB" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"CK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"CW" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"Dh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "Do" = ( /obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "Dp" = ( /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "DR" = ( /obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/maintenance/central) "DT" = ( @@ -3619,7 +3694,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Eg" = ( /obj/structure/railing, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -3647,8 +3722,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/south) +"Eu" = ( +/turf/open/space/openspace, +/area/hallway/primary/central/south) "Fb" = ( /obj/structure/table/wood, /obj/item/storage/box/matches, @@ -3658,18 +3736,20 @@ pixel_x = 28; pixel_y = 5 }, +/obj/item/storage/ashtray/bronze, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"Fe" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +"Fd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"Fe" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "Fk" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ @@ -3677,8 +3757,8 @@ name = "Scrubbers multi deck pipe adapter" }, /obj/structure/cable, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/north) "Fn" = ( /obj/structure/chair/comfy/brown, /obj/item/storage/secure/safe{ @@ -3689,6 +3769,10 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) +"Fv" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/hallway/primary/central/north) "FF" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -3707,7 +3791,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Gm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3717,14 +3801,15 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "GH" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway South-West"; dir = 1 }, +/obj/machinery/firealarm/directional/south, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "GN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3733,12 +3818,25 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "GR" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/north) +"Hb" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Hk" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"Hq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "HD" = ( /obj/structure/railing{ dir = 1 @@ -3751,13 +3849,20 @@ }, /turf/open/floor/plasteel, /area/command/meeting_room) +"Ik" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "Im" = ( /obj/structure/lattice, /obj/machinery/camera/autoname{ dir = 8 }, /turf/open/openspace, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "IV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -3767,7 +3872,7 @@ dir = 10 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Jk" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -3777,11 +3882,40 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Jx" = ( /obj/structure/lattice/catwalk, /turf/open/openspace, /area/maintenance/central) +"JB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"JC" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"JG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"JM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "JO" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -3789,15 +3923,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "JT" = ( /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "JV" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -3807,13 +3938,13 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Kd" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Ko" = ( /obj/effect/turf_decal/bot, /obj/machinery/power/shieldwallgen, @@ -3826,7 +3957,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "KG" = ( /obj/machinery/camera/autoname, /turf/open/floor/plating, @@ -3837,19 +3968,27 @@ pixel_y = 0 }, /obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/west) "KM" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/light{ dir = 8 }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) +"KP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "KS" = ( /obj/machinery/door/airlock/maintenance{ name = "Captain's Office Maintenance"; - req_access_txt = "20" + req_access_txt = "20"; + security_level = 6 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3857,12 +3996,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/command/heads_quarters/captain) "KW" = ( @@ -3870,14 +4004,14 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "KX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Lc" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/segment{ @@ -3890,27 +4024,31 @@ dir = 5 }, /obj/structure/cable, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/south) +"Lk" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "LF" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 }, /obj/item/kirbyplants/random, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"Mc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "Mg" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Mz" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -3931,7 +4069,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "MK" = ( /obj/structure/railing, /obj/machinery/camera/autoname{ @@ -3949,9 +4087,14 @@ }, /obj/structure/table, /obj/item/book/manual/wiki/security_space_law, -/obj/effect/spawner/lootdrop/space/cashmoney, +/obj/effect/spawner/random/entertainment/money_large, /turf/open/floor/plasteel, /area/command/meeting_room) +"Nf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "No" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -3961,7 +4104,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "NG" = ( /turf/open/openspace, /area/maintenance/central) @@ -3971,12 +4114,6 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) -"Oi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) "On" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -3986,7 +4123,7 @@ }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "Op" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4008,10 +4145,28 @@ }, /turf/open/floor/plating, /area/maintenance/central) +"Pb" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Pc" = ( +/turf/template_noop, +/area/commons/fitness/recreation) "PC" = ( /obj/structure/sign/poster/contraband/random, /turf/closed/wall/r_wall, /area/maintenance/central) +"PK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "PV" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -4022,7 +4177,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "PZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 @@ -4035,7 +4190,7 @@ }, /obj/machinery/vending/chetverochka, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "Qd" = ( /obj/structure/railing{ dir = 10 @@ -4057,43 +4212,53 @@ pixel_y = 32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Qy" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "QC" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "QF" = ( /obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/hallway/primary/central) -"QI" = ( +/turf/open/space/openspace, +/area/hallway/primary/central/west) +"QJ" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/hallway/primary/central/west) +"Rl" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"QJ" = ( -/obj/structure/lattice, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Rm" = ( /obj/structure/lattice, /turf/open/openspace, /area/command/heads_quarters/captain) +"Rn" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/north) +"Rq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "Rr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -4101,7 +4266,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"Rz" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "RK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4110,7 +4281,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "RN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4123,7 +4294,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "RR" = ( /obj/structure/closet/secure_closet/captains, /obj/item/radio/intercom{ @@ -4132,8 +4303,15 @@ name = "Captain's Intercom"; pixel_x = -26 }, +/obj/machinery/light_switch/directional/south, /turf/open/floor/carpet, /area/command/heads_quarters/captain) +"RW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "Sa" = ( /obj/machinery/door/airlock/external{ req_one_access_txt = "19" @@ -4169,14 +4347,9 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Tf" = ( /obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -4187,22 +4360,24 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Tx" = ( -/obj/machinery/firealarm/directional/south, +/area/hallway/primary/central/south) +"Tk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "TB" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "TS" = ( /turf/open/openspace, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Ue" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -4211,23 +4386,20 @@ dir = 5 }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Uj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 - }, /obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Up" = ( /obj/structure/lattice, /turf/open/openspace, /area/maintenance/central) -"Uz" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, -/obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) "UE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4239,29 +4411,44 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "UJ" = ( /turf/open/openspace, /area/command/heads_quarters/captain) +"UL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"UT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "UX" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "UZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Vf" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -4279,37 +4466,43 @@ id = "bridge blast"; name = "bridge blast door" }, -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) "VY" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/central"; - dir = 1; - name = "Compact Central Hall APC"; - pixel_y = 23 - }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"Wn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) "Wo" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, /obj/item/kirbyplants/random, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Wq" = ( /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) +"Ws" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "Wt" = ( /obj/structure/lattice/catwalk, /obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ @@ -4317,30 +4510,38 @@ name = "Supply multi deck pipe adapter" }, /obj/structure/cable, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/north) "WE" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "WG" = ( /obj/machinery/light{ dir = 4 }, /obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/west) +"WO" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/hallway/primary/central/north) +"WZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "Xe" = ( /obj/machinery/light, /obj/structure/lattice/catwalk, -/turf/open/openspace/airless, -/area/hallway/primary/central) +/turf/open/space/openspace, +/area/hallway/primary/central/north) "Xk" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4348,19 +4549,37 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Yc" = ( +/area/hallway/primary/central/east) +"Xn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"XK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"XL" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"XS" = ( +/obj/machinery/light{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"Yc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Yr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -4369,14 +4588,11 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Yu" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/maintenance{ dir = 4; name = "Captain's Office Maintenance"; @@ -4395,7 +4611,7 @@ pixel_y = 24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Yz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4404,7 +4620,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "YB" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 @@ -4416,11 +4632,8 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Zd" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -4430,12 +4643,11 @@ dir = 1 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Zo" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Zw" = ( /turf/open/floor/plating, /area/maintenance/central) @@ -4443,14 +4655,29 @@ /obj/machinery/light, /turf/open/floor/plating, /area/maintenance/central/secondary) +"ZB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ZD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ZT" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) (1,1,1) = {" ab ab ab -ad +fn aR -ad +fn ab ab ab @@ -4461,7 +4688,7 @@ cY cY dH ee -ao +iQ ab ab ab @@ -4491,16 +4718,16 @@ Yr bf bl aA -aj -aj -aj -aj -aj -aj -aj -aj -aj -aj +aA +sl +aA +aA +aA +aA +aA +aA +aA +rV fX bS fX @@ -4509,13 +4736,13 @@ fX gI fX hp -gX +UL Cc YH -iw +YH je ju -iw +JG vw vw ab @@ -4529,63 +4756,63 @@ Bl bg Uj qJ -Bi -Bi -Bi -Uz +qJ +qJ +Zo +Zo +Zo +Zo +Zo Zo -Oi -yU -yU bc -yU -yU +Wn +Wn QC -yU +Wn hN -yU -yU +Wn +Wn nf RK -yU -Gm +Wn +CK xb -yU -yU +Wn +Wn QC -yU +rd jP Kd -ab +Hk "} (4,1,1) = {" ab ab ab -ax +Ws KX -aj -az +yf +wu pR -QI -az +VY +yF cu cx -cZ -gV -cZ -cZ -cZ -cZ -gV +JC +sx +JC +JC +JC +BH +sx bU db KW -Bi +Zo fe fh fi -cZ +JC MF eQ fP @@ -4593,7 +4820,7 @@ eJ fc fd Cz -aj +Lk aE "} (5,1,1) = {" @@ -4601,22 +4828,22 @@ ab ab ab ay -Bi -cZ +Hq +kS ep -aK -aK -aK +ba +ba +ba ep ep -aK -aK -aK +ba +ba +ba ep ep -aK -aK -aK +ba +ba +ba ep wu CW @@ -4631,16 +4858,16 @@ eM as Qp Cz -jV -an +Hb +Hk "} (6,1,1) = {" ab ab ab -az -Bi -cZ +yf +Hq +kS aK bT bT @@ -4655,9 +4882,9 @@ bT QJ bT bT -aK -az -Bi +ba +pR +Zo cT as hX @@ -4669,15 +4896,15 @@ hX eM fj Cz -aj +Lk aE "} (7,1,1) = {" ab ab ab -al -Bi +Rz +Hq gV aK bT @@ -4693,9 +4920,9 @@ QF QJ bT bT -aK -QI -Bi +ba +VY +Zo dc as hX @@ -4708,15 +4935,15 @@ eM fO Cz jW -an +Hk "} (8,1,1) = {" ab ab ab -al -Bi -cZ +yf +Hq +kS aK QJ QJ @@ -4731,9 +4958,9 @@ QF QJ QJ QJ -aK -az -Bi +ba +pR +Zo dc eM eC @@ -4745,17 +4972,17 @@ hE as fj Cz -aj +Lk ia "} (9,1,1) = {" ab ab ab -al -Bi -cZ -ep +aD +Hq +nH +Rn bT QF QF @@ -4770,8 +4997,8 @@ QF QF bT ep -az -Bi +Rl +Zo dc eM eD @@ -4790,12 +5017,12 @@ ia ab ab ab -ai -Bi +el +Hq cr -ep -bT -QF +Rn +sd +Fv if Vh ih @@ -4828,12 +5055,12 @@ ia ab ab ab -az -Bi -cZ +mJ +Hq +kS aK -bT -QF +sd +Fv Vh zG ie @@ -4845,8 +5072,8 @@ cR Vh QF bT -aK -az +ba +pR dg ej ey @@ -4858,20 +5085,20 @@ ey ey ey fT -Bi -Tx +JM +Lk ia "} (12,1,1) = {" ab ab ab -az -Bi -cZ +mJ +Hq +gV aK -QJ -QF +WO +Fv Vh cv cy @@ -4883,8 +5110,8 @@ cS Vh QF QJ -aK -QI +ba +VY dg fp ey @@ -4896,20 +5123,20 @@ gm hZ ey fU -Bi -aj +Mc +Lk ia "} (13,1,1) = {" ab -ab +Pc nd -az -Bi -cZ +mJ +Hq +kS aK -bT -QF +sd +Fv Vh hC cA @@ -4921,8 +5148,8 @@ cV Vh QF bT -aK -az +ba +pR Zd fK ey @@ -4934,19 +5161,19 @@ fR iI ey Yy -Bi -aj +gZ +Lk ia "} (14,1,1) = {" ab -ab +Pc nd -az -Bi -cZ -ep -bT +mJ +Hq +Nf +Rn +sd Xe if Vh @@ -4961,7 +5188,7 @@ QF bT ep VY -Gm +CK fL ey eI @@ -4972,7 +5199,7 @@ gS ib bN fj -Bi +gZ jY ia "} @@ -4980,14 +5207,14 @@ ia ab eU uH -az -Bi +zX +Pb hr -ep -bT -QF -QF -QF +Rn +sd +Fv +Fv +Fv Vh cE cM @@ -5010,8 +5237,8 @@ gg ic ey fj -Bi -jV +gZ +Hb ia "} (16,1,1) = {" @@ -5019,12 +5246,12 @@ ab bL am bR -Bi -cZ +Hq +kS aK -QJ -QJ -QJ +WO +WO +WO hg if Vh @@ -5035,10 +5262,10 @@ QF QJ QJ QJ -aK -az -Gm -ar +ba +pR +CK +wv ey eL eV @@ -5048,7 +5275,7 @@ gj ey ey vp -CW +XL qL ia "} @@ -5057,49 +5284,49 @@ ab az aI ca -Bi +Hq cs aK -bT -bT -QJ +sd +sd +WO Fk Ue Dp No Dp KM -QF +nE gu -bT -bT -aK -QI -Zd +Eu +Eu +Xn +ZD +eB FR -ep +Hk fC fD fD fD gf -ey -Wo +Hk +wC cW -Bi -aj +gZ +Lk ia "} (18,1,1) = {" ac -aj +yf aU cn -Bi -cZ +uX +kS aK -bT -bT +sd +sd GR Wt hn @@ -5109,20 +5336,20 @@ wg Wq Eq Lc -bT -bT -aK -az -Gm -aj -aA +Eu +Eu +Xn +Ag +eX +Lk +qL gl -aj -aj -aj +Lk +Lk +Lk gk -aA -aj +qL +Lk et jR jZ @@ -5135,33 +5362,33 @@ bk hS aZ hT -ep -ep -ep +Rn +Rn +Rn hY -ep -aK -aK -aK -aK -aK -ep +cZ +jV +jV +jV +jV +jV +cZ kA -ep -ep -ep +Hk +Hk +Hk Kx IV -yU +rd UX -Xk -yU +qO +rd df -yU -yU +rd +rd UX -yU -yU +rd +rd Tf GN JO @@ -5171,37 +5398,37 @@ ae ak bm co -Bi +KP er ct bq -zS +XS ig -TS -TS -zS +ui +ui +XS Im -TS -TS -TS +ui +ui +ui cd -TS -zS +ui +XS dm Jk -fS -az -pR +sH +Ag +Ik bC iy hD gC -gF +Mg gq -aj -aj +Lk +ZB jT -cW +Rq kn "} (21,1,1) = {" @@ -5222,7 +5449,7 @@ lm lm es dC -rN +ii dy At dy @@ -5237,8 +5464,8 @@ dy dy dy LF -aj -Gm +Lk +eX kc ab "} @@ -5262,20 +5489,20 @@ es md zL qx -el lL lL lL -el lL lL lL -aD +lL +lL +lL lL dT dy dy -gF +gq vg kd ab @@ -5309,12 +5536,12 @@ zb dC dC PC -aD +lL Zw hk dy -gF -Gm +Mg +eX ke ab "} @@ -5324,7 +5551,7 @@ ab xG jE fS -ar +BI dP im bD @@ -5351,8 +5578,8 @@ eg xu xu dy -gF -Gm +Mg +eX cW ab "} @@ -5390,7 +5617,7 @@ hJ xu dy gG -Xk +qO cW ab "} @@ -5428,7 +5655,7 @@ dW Bs dW gH -Gm +eX kf ab "} @@ -5438,7 +5665,7 @@ ao at aJ fS -bo +wV bj bw bF @@ -5450,7 +5677,7 @@ Qd ef es DR -OQ +lv zb Jx af @@ -5465,9 +5692,9 @@ af dX fF fI -gF -Gm -cW +Mg +eX +Rq ab "} (28,1,1) = {" @@ -5504,7 +5731,7 @@ xc NN fJ gJ -yU +rd cW ab "} @@ -5525,8 +5752,8 @@ KS eW eW es -Zw -OQ +xu +lv zb Jx af @@ -5542,7 +5769,7 @@ ea fH dW gL -Gm +eX kh ab "} @@ -5551,7 +5778,7 @@ ab ab ab aM -fS +CB ar bj Vf @@ -5576,12 +5803,12 @@ dv dE dO af -qb +Bs dW dW Mg -Ta -Yc +eX +cW ab "} (31,1,1) = {" @@ -5617,8 +5844,8 @@ af xu hL dy -gF -Gm +Mg +eX ki ab "} @@ -5627,7 +5854,7 @@ ab ab ab aO -fS +nZ ar bj pY @@ -5656,7 +5883,7 @@ xu hJ dy gK -vg +PK kj ab "} @@ -5679,33 +5906,33 @@ es es RN Qc -ep -ep -ep -ep -ep -ep -ep +kT +kT +kT +kT +kT +kT +kT ap -ep +kT dC -qb +Bs dy dy dy -gF +gq mm -cW +XK ab "} (34,1,1) = {" ab ab ab -be -fS -aj -ar +aQ +UT +yf +oC ms gE bW @@ -5714,23 +5941,23 @@ Qy bY de gX -gX +Tk oc -gX -gr +qt +gB du gd -gr +Dh gw WE -gr +WE gA gB -gr -gr -gr -gr -gr +WE +Dh +WE +Bi +wI UZ Yz kk @@ -5740,77 +5967,77 @@ ko ab ab ab -aQ +TS bd yU -yU +WZ Rr -Uj -Bi -Bi -Bi -Bi +JB +JB +ax +ax +ax TB -Bi +ax ew PV ff -yU -yU -yU +qn +WZ +qn rb -yU +qn Xk -yU -yU -UX -yU -yU -yU -yU -yU -yU +qn +qn +qn +qn +qn +qn +WZ +rd +rd jU -aj -at +Kd +ZT "} (36,1,1) = {" ab ab ab -aj -aj -aj -aj +TS +xB +yf +fW Do -aj -aj -aj -aj -aj -kt -aj +ad +RW +ad +ad +ad +fW +ad ex Gm fg -aj +ad +fW +Fd +ad +ad +ad +ad +ad +ad +Fd +ad +ad fW -aj -yf -aj -aj -aj -aj -aA -aj -aj -aj -aj jD jN -aj -aj -cw +Lk +Lk +iA "} (37,1,1) = {" ab @@ -5828,9 +6055,9 @@ ab ab ab ab -ad +jx km -ad +jx ab ab ab diff --git a/_maps/RandomRuins/StationRuins/bridge_compact_bottom.dmm b/_maps/r_ruins/station/bridge/bridge_compact_bottom.dmm similarity index 91% rename from _maps/RandomRuins/StationRuins/bridge_compact_bottom.dmm rename to _maps/r_ruins/station/bridge/bridge_compact_bottom.dmm index c439af8840d0..c657acb4cfc6 100644 --- a/_maps/RandomRuins/StationRuins/bridge_compact_bottom.dmm +++ b/_maps/r_ruins/station/bridge/bridge_compact_bottom.dmm @@ -24,12 +24,7 @@ dir = 4; req_access_txt = "12" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/bottom_station_maints/north) "ao" = ( @@ -83,10 +78,6 @@ }, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) -"bm" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) "br" = ( /obj/structure/lattice/catwalk, /obj/structure/disposalpipe/trunk/multiz{ @@ -94,6 +85,10 @@ }, /turf/open/space/basic, /area/space/nearstation) +"bH" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "bW" = ( /obj/machinery/camera/autoname{ dir = 4 @@ -102,7 +97,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "bZ" = ( /obj/effect/turf_decal/trimline/blue/filled/corner, /obj/structure/cable, @@ -123,7 +118,7 @@ "ce" = ( /obj/structure/stairs/north, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ch" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -131,8 +126,23 @@ /obj/structure/table/reinforced, /obj/machinery/recharger, /obj/structure/cable, +/obj/item/aicard{ + pixel_x = -7; + pixel_y = 17 + }, /turf/open/floor/plasteel/dark, /area/command) +"cw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) "cF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 @@ -143,6 +153,11 @@ /obj/structure/cable, /turf/open/floor/carpet, /area/command/meeting_room) +"cV" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "cY" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -169,7 +184,7 @@ /area/space/nearstation) "dt" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) "dO" = ( @@ -179,6 +194,10 @@ }, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) +"ee" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) "eD" = ( /obj/effect/landmark/stationroom/maintenance/rdm3x5, /turf/open/floor/plating, @@ -190,7 +209,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "fa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -204,19 +223,6 @@ }, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) -"fm" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) "fw" = ( /obj/machinery/holopad, /obj/effect/landmark/blobstart, @@ -225,7 +231,7 @@ /area/ai_monitored/turret_protected/ai_upload) "fE" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/plating, /area/maintenance/central) "fH" = ( @@ -245,13 +251,12 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "fT" = ( /obj/structure/stairs/south, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "gd" = ( /obj/structure/table/wood, /obj/machinery/recharger, @@ -271,25 +276,15 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "gs" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /obj/structure/cable, /turf/open/floor/wood, /area/command/meeting_room) "gw" = ( /obj/structure/table/wood, -/obj/item/food/candy{ - pixel_x = 5 - }, -/obj/item/food/candy{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/item/food/candy{ - pixel_x = -2; - pixel_y = 4 - }, +/obj/machinery/fax, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) "gM" = ( @@ -301,7 +296,7 @@ /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) "gV" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) "hk" = ( @@ -320,10 +315,7 @@ dir = 4; req_access_txt = "19" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -341,14 +333,9 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "hA" = ( /turf/open/floor/plating, /area/maintenance/central) @@ -367,14 +354,9 @@ /area/command/meeting_room) "id" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/command/meeting_room) "il" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, /obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -393,6 +375,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "io" = ( @@ -404,7 +390,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "iA" = ( /obj/machinery/holopad, /obj/machinery/light_switch{ @@ -450,6 +436,9 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) +"iU" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_eva) "jF" = ( /obj/item/radio/intercom{ pixel_y = -26 @@ -505,7 +494,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "kA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 @@ -530,8 +519,8 @@ id = "bridge blast"; name = "bridge blast door" }, -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) "kZ" = ( @@ -558,10 +547,6 @@ }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"lr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) "lv" = ( /obj/structure/bed/dogbed/renault, /mob/living/simple_animal/pet/fox/renault{ @@ -572,6 +557,10 @@ }, /turf/open/floor/wood, /area/command/heads_quarters/captain) +"ly" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "lE" = ( /obj/machinery/light, /turf/open/floor/plating, @@ -597,7 +586,7 @@ }, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ma" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 @@ -612,12 +601,7 @@ name = "Captain's Office Maintenance"; req_access_txt = "20" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/command/heads_quarters/captain) "mI" = ( @@ -634,7 +618,7 @@ /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/ai_monitored/turret_protected/ai_upload"; name = "Upload APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/circuit, @@ -730,6 +714,10 @@ /obj/structure/table/wood, /obj/item/stamp/hop, /obj/structure/cable, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -13; + pixel_y = 10 + }, /turf/open/floor/carpet, /area/command/meeting_room) "pa" = ( @@ -770,7 +758,7 @@ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "qq" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, @@ -830,7 +818,7 @@ }, /obj/machinery/light, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "re" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -845,7 +833,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ru" = ( /obj/structure/sink{ dir = 4; @@ -874,7 +862,11 @@ pixel_y = 20 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) +"rX" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "rY" = ( /obj/structure/disposalpipe/trunk/multiz{ dir = 4 @@ -908,8 +900,8 @@ req_access_txt = "20" }, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/effect/spawner/random/aimodule/harmless, +/obj/effect/spawner/random/aimodule/neutral, /obj/structure/window/reinforced{ dir = 1 }, @@ -955,7 +947,6 @@ /area/command) "tw" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/maintenance/central) "tF" = ( @@ -985,17 +976,6 @@ }, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) -"ug" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/bottom_station_maints/north) "un" = ( /turf/closed/wall, /area/maintenance/bottom_station_maints/north) @@ -1008,7 +988,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "uU" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -1029,7 +1009,7 @@ }, /obj/item/ai_module/reset/purge, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/effect/spawner/random/aimodule/harmful, /obj/structure/window/reinforced{ dir = 1 }, @@ -1040,20 +1020,23 @@ /obj/item/ai_module/supplied/freeform, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) +"vp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bad Doggies Room"; + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/maintenance/central) "vr" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "vu" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/command{ name = "Conference Room"; req_access_txt = "19" @@ -1095,9 +1078,6 @@ dir = 1; pixel_y = 0 }, -/obj/machinery/light_switch{ - pixel_y = 28 - }, /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/command) @@ -1108,7 +1088,7 @@ /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/command"; name = "Bridge APC"; - pixel_y = -23 + pixel_y = -25 }, /turf/open/floor/plasteel/dark, /area/command) @@ -1124,6 +1104,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/item/storage/ashtray/bronze, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1153,7 +1134,7 @@ dir = 4 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "xH" = ( /obj/structure/ladder, /turf/open/floor/plating, @@ -1189,7 +1170,7 @@ dir = 6 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "zn" = ( /obj/structure/chair/comfy/brown{ dir = 4 @@ -1214,7 +1195,7 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "zT" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -1229,9 +1210,9 @@ /obj/structure/cable, /obj/structure/disposalpipe/junction/yjunction, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Ak" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /obj/machinery/light{ pixel_y = 0 }, @@ -1294,7 +1275,7 @@ pixel_x = -2 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Be" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -1364,7 +1345,7 @@ pixel_y = 32 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "BW" = ( /obj/structure/table, /obj/item/storage/firstaid/regular, @@ -1386,13 +1367,9 @@ /turf/open/space/basic, /area/space/nearstation) "Cb" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, /obj/item/kirbyplants/random, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Cd" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -1404,6 +1381,11 @@ /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/command) +"Ck" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) "Cw" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) @@ -1417,6 +1399,10 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, /area/command) +"Dr" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) "Dz" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -1478,7 +1464,7 @@ /turf/open/floor/plasteel/stairs/right{ dir = 8 }, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Ff" = ( /obj/machinery/door/airlock/command/glass{ name = "Bridge"; @@ -1535,7 +1521,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "FA" = ( /obj/structure/fireplace, /obj/effect/turf_decal/tile/neutral{ @@ -1575,14 +1561,13 @@ /turf/open/floor/plasteel/monofloor/dark, /area/command) "FG" = ( -/obj/item/book/manual/wiki/security_space_law, /obj/structure/table/wood, -/obj/item/storage/lockbox/medal, +/obj/machinery/fax, /turf/open/floor/carpet, /area/command/meeting_room) "FO" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/maintenance/central) "FT" = ( @@ -1615,7 +1600,7 @@ /turf/open/floor/wood, /area/command/meeting_room) "GM" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/structure/rack, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) @@ -1627,8 +1612,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, +/obj/tacmap/directional/south, /turf/open/floor/wood, /area/command/heads_quarters/captain) +"Hj" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "HB" = ( /turf/closed/wall, /area/command/heads_quarters/captain) @@ -1647,16 +1638,14 @@ "HU" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload Access"; - req_access_txt = "16" + req_access_txt = "16"; + security_level = 6 }, /obj/effect/turf_decal/delivery, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "HV" = ( @@ -1674,12 +1663,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/heads_quarters/captain) "HW" = ( @@ -1706,12 +1690,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/heads_quarters/captain) "ID" = ( @@ -1723,7 +1702,7 @@ dir = 1 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Ja" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/poddoor/preopen{ @@ -1742,15 +1721,13 @@ }, /turf/open/floor/plasteel/monofloor/dark, /area/command) +"Jh" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints) "Ji" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Jl" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -1768,8 +1745,17 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, +/obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) +"Kq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "KB" = ( /obj/structure/window/reinforced{ dir = 8 @@ -1808,17 +1794,18 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/heads_quarters/captain) "Lw" = ( /turf/open/floor/plasteel/stairs/right{ dir = 8 }, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) +"LJ" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) "LK" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -1830,12 +1817,7 @@ /turf/open/floor/plasteel/monofloor/dark, /area/command/meeting_room) "LU" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "Mi" = ( @@ -1846,8 +1828,11 @@ dir = 4 }, /obj/structure/cable, +/obj/machinery/firealarm{ + pixel_y = 24 + }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Mv" = ( /obj/structure/chair/comfy/brown{ dir = 8 @@ -1861,6 +1846,12 @@ }, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) +"MH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) "ML" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1869,7 +1860,7 @@ dir = 9 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "MP" = ( /turf/closed/wall, /area/command/meeting_room) @@ -1925,8 +1916,11 @@ dir = 1; pixel_y = 0 }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "NH" = ( /turf/closed/wall/r_wall, /area/maintenance/central) @@ -1996,7 +1990,6 @@ /area/space/nearstation) "Pa" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) "Pe" = ( @@ -2062,11 +2055,12 @@ /area/command/meeting_room) "QX" = ( /turf/closed/wall/r_wall, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Re" = ( /obj/machinery/door/airlock/external{ req_one_access_txt = "19" }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/command/meeting_room) "Ro" = ( @@ -2079,7 +2073,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Rr" = ( /obj/effect/turf_decal/stripes/line, /obj/structure/cable, @@ -2096,13 +2090,13 @@ dir = 1 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "RJ" = ( /obj/machinery/power/apc{ areastring = "/area/command/meeting_room"; dir = 4; name = "Conference Room APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -2155,16 +2149,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "SF" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; req_access_txt = "12" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -2173,7 +2164,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "SM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 6 @@ -2201,12 +2192,7 @@ /turf/open/floor/plasteel/white, /area/command/heads_quarters/captain) "SV" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -2227,8 +2213,9 @@ dir = 8 }, /obj/structure/cable, +/obj/tacmap/directional/west, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Tf" = ( /obj/machinery/computer/upload/borg{ dir = 8 @@ -2292,9 +2279,10 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Wm" = ( /obj/machinery/vending/coffee, +/obj/tacmap/directional/south, /turf/open/floor/wood, /area/command/meeting_room) "Ws" = ( @@ -2319,7 +2307,7 @@ pixel_y = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "WI" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -2342,13 +2330,13 @@ /turf/open/floor/plasteel/dark, /area/command) "Xo" = ( -/obj/effect/spawner/lootdrop/grille_or_trash, +/obj/effect/spawner/random/trash/grille_or_waste, /obj/structure/closet/firecloset/full, /turf/open/floor/plating, /area/maintenance/bottom_station_maints) "XF" = ( /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "XI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -2363,7 +2351,7 @@ areastring = "/area/command/heads_quarters/captain"; dir = 1; name = "Captain's Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/item/kirbyplants/random, /obj/structure/cable, @@ -2412,12 +2400,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/grimy, /area/command/heads_quarters/captain) "Zf" = ( @@ -2425,7 +2408,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "Zg" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -2445,9 +2428,8 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/low_level_centre) "ZQ" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -2850,8 +2832,8 @@ ab ab ab ab -ab -ab +MH +Ck YS Ca kT @@ -2888,8 +2870,8 @@ ab ab ab ab -ab -ab +Dr +Ck Zl Ca mZ @@ -2926,8 +2908,8 @@ ab ab ab ab -ab -ab +ee +Ck YS Ca kT @@ -2965,7 +2947,7 @@ ab ab ab ab -ab +iU YS YS Bk @@ -3058,14 +3040,14 @@ jH tw aV hA +NH tw -YS -YS -Zl -YS -YS -YS -Zl +NH +tw +tw +NH +tw +NH YS YS ab @@ -3096,14 +3078,14 @@ YS tw aV hA -tw -YS -YS -Zl -YS -YS -YS -Zl +vp +hA +hA +hA +hA +hA +hA +NH YS YS ab @@ -3135,13 +3117,13 @@ NH aV hA NH -YS -YS -Zl -YS -YS -YS -Zl +tw +NH +tw +tw +NH +tw +NH YS YS YS @@ -3182,8 +3164,8 @@ Zl Zl Zl Zl -Zl -Zl +aU +aU ab "} (20,1,1) = {" @@ -3220,8 +3202,8 @@ YS Zl YS YS -YS -YS +aU +uV ab "} (21,1,1) = {" @@ -3259,7 +3241,7 @@ Pa Pa Pa aU -aU +uV ab "} (22,1,1) = {" @@ -3297,7 +3279,7 @@ GM GM dt RP -go +uV ab "} (23,1,1) = {" @@ -3369,7 +3351,7 @@ YS YS Pa Xo -uV +bH uV uV uV @@ -3409,9 +3391,9 @@ aU aU aU aU +go iP uV -uV ab "} (26,1,1) = {" @@ -3432,7 +3414,7 @@ Vi Mv jF aD -Mi +cw Zf lZ Cw @@ -3448,7 +3430,7 @@ YS YS aU aU -uV +gV uV ab "} @@ -3486,7 +3468,7 @@ YS YS YS aU -uV +ly uV ab "} @@ -3524,7 +3506,7 @@ YS YS YS aU -uV +bH uV ab "} @@ -3562,7 +3544,7 @@ YS YS YS aU -uV +bH uV ab "} @@ -3594,14 +3576,14 @@ MD Nt Cw YS -ab -ab -ab -ab -ab -ab -ab -ab +YS +aU +aU +Pa +Pa +aU +aU +Kq ab "} (31,1,1) = {" @@ -3632,14 +3614,14 @@ Tf Cw Cw YS -ab -ab -ab -ab -ab -ab -ab -ab +aU +aU +Hj +bH +bH +gV +bH +uV ab "} (32,1,1) = {" @@ -3662,7 +3644,7 @@ dO aD XF XF -bm +Cb Cw Cw Cw @@ -3670,14 +3652,14 @@ Cw Cw jH Zl -ab -ab -ab -ab -ab -ab -ab -ab +aU +Hj +LJ +uV +uV +gV +uV +uV ab "} (33,1,1) = {" @@ -3708,14 +3690,14 @@ YS YS YS YS -ab -ab -ab -ab -ab -ab -ab -ab +Pa +uV +uV +uV +uV +uV +uV +uV ab "} (34,1,1) = {" @@ -3741,19 +3723,19 @@ ng ng eD Ws -Zl -YS +Ws +Ws YS YS YS -ab -ab -ab -ab -ab -ab -ab -ab +Pa +rX +uV +bH +uV +gV +gV +gV ab "} (35,1,1) = {" @@ -3772,26 +3754,26 @@ ab ab ab ng -ug +an +ng ng ng ng ng +an ng Ws -Zl -YS YS YS YS -ab -ab -ab -ab -ab -ab -ab -ab +Pa +LJ +uV +uV +uV +gV +bH +bH ab "} (36,1,1) = {" @@ -3817,19 +3799,19 @@ ng ng ng Ws -Zl -YS +ng +Ws YS YS YS -ab -ab -ab -ab -ab -ab -ab -ab +aU +Hj +cV +gV +uV +gV +bH +ly ab "} (37,1,1) = {" @@ -3851,22 +3833,22 @@ Ws Ws Ws Ws -fm Ws Ws Ws Ws -lr +an Ws Ws Ws -ab -ab -ab -ab -ab -ab -ab -ab +Ws +aU +Jh +Jh +Jh +Kq +Jh +Jh +Jh ab "} diff --git a/_maps/RandomRuins/StationRuins/bridge_default.dmm b/_maps/r_ruins/station/bridge/bridge_default.dmm similarity index 82% rename from _maps/RandomRuins/StationRuins/bridge_default.dmm rename to _maps/r_ruins/station/bridge/bridge_default.dmm index 9b605ca31bca..662ff14238c4 100644 --- a/_maps/RandomRuins/StationRuins/bridge_default.dmm +++ b/_maps/r_ruins/station/bridge/bridge_default.dmm @@ -2,8 +2,9 @@ "aa" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ab" = ( /turf/template_noop, /area/template_noop) @@ -24,7 +25,7 @@ /turf/open/floor/wood, /area/command/heads_quarters/captain) "ad" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/engineering/storage/tech) "an" = ( /obj/machinery/door/airlock/public/glass{ @@ -33,40 +34,28 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ao" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ap" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aD" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "aE" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -78,7 +67,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aF" = ( /obj/machinery/light{ dir = 1 @@ -93,16 +82,19 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aG" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "aH" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "aI" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -123,7 +115,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aJ" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -132,7 +124,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aK" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -142,14 +134,15 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aL" = ( /turf/closed/wall, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aM" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, +/obj/tacmap/directional/west, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aN" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -158,7 +151,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -173,7 +166,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aU" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -182,18 +175,18 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aV" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aW" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aX" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -202,86 +195,71 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aY" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = 30 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ba" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-West" }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 24 +/obj/machinery/airalarm{ + pixel_y = 23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bd" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "be" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L1" + icon_state = "W1" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bf" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L3" + icon_state = "W2" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bg" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L5" + icon_state = "W3" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bh" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L7" + icon_state = "W4" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bi" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L9" + icon_state = "W5" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bj" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L11" + icon_state = "W6" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bk" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L13" + icon_state = "W7" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bl" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ dir = 4; id = "aquaprivacy"; @@ -294,13 +272,13 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bn" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bo" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -308,7 +286,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bp" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -317,32 +295,29 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bq" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-East" }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "br" = ( /obj/machinery/light{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bs" = ( /obj/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bt" = ( -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/open/openspace, +/area/hallway/primary/central/north) "bv" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -353,14 +328,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bw" = ( /turf/closed/wall/r_wall, /area/commons/fitness/recreation) @@ -370,85 +340,85 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"by" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bz" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 + icon_state = "W8" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bA" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 + icon_state = "W9" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bB" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Lockers"; location = "EVA" }, /obj/effect/turf_decal/plaque{ - icon_state = "L6" + icon_state = "W10" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bC" = ( /obj/effect/landmark/observer_start, -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/effect/turf_decal/plaque{ + icon_state = "W11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bD" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Security"; location = "EVA2" }, -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"bE" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L12" + icon_state = "W12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"bE" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"bF" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L14" + icon_state = "W13" }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"bF" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/effect/turf_decal/plaque{ + icon_state = "W14" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bG" = ( /obj/effect/landmark/event_spawn, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -457,8 +427,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bH" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=EVA2"; @@ -470,8 +441,15 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bI" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -494,23 +472,29 @@ pixel_x = -31; pixel_y = -24 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bK" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=QM"; location = "CHW" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bM" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bN" = ( /obj/machinery/light, /obj/structure/sign/warning/electricshock{ @@ -519,14 +503,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bO" = ( /obj/structure/sign/warning/electricshock{ pixel_y = -32 @@ -535,26 +514,24 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bQ" = ( /obj/machinery/light{ dir = 8 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bR" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bS" = ( /turf/closed/wall/r_wall, /area/command) @@ -704,9 +681,10 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "cj" = ( /obj/structure/table/reinforced, +/obj/item/aicard, /obj/item/assembly/flash/handheld, /obj/item/assembly/flash/handheld, /turf/open/floor/plasteel/monofloor/dark, @@ -734,14 +712,13 @@ /area/command) "cn" = ( /obj/structure/table/reinforced, -/obj/item/aicard, -/obj/item/multitool, /obj/effect/turf_decal/tile/blue{ dir = 1 }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/fax, /turf/open/floor/plasteel/dark, /area/command) "co" = ( @@ -769,6 +746,9 @@ dir = 4 }, /obj/structure/cable, +/obj/item/multitool{ + pixel_x = 9 + }, /turf/open/floor/plasteel/dark, /area/command) "cq" = ( @@ -893,6 +873,7 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, +/obj/tacmap/directional/north, /turf/open/floor/plasteel/dark, /area/command) "cJ" = ( @@ -1062,7 +1043,7 @@ "dd" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "de" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -1073,7 +1054,7 @@ /area/command) "df" = ( /obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /obj/effect/turf_decal/tile/blue{ dir = 8 }, @@ -1096,17 +1077,12 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, +/obj/structure/cable, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/command/glass{ name = "Bridge"; req_access_txt = "19" }, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "di" = ( @@ -1136,10 +1112,6 @@ pixel_y = -32 }, /obj/machinery/light, -/obj/machinery/light_switch{ - pixel_x = -6; - pixel_y = -22 - }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -1228,7 +1200,7 @@ /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/command"; name = "Bridge APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/machinery/light, /obj/effect/turf_decal/tile/blue, @@ -1277,10 +1249,6 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1291,11 +1259,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" }, /turf/open/floor/plasteel/monofloor/dark, /area/command) @@ -1371,14 +1338,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "dE" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -1391,11 +1353,11 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "dF" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dH" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -1404,14 +1366,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, @@ -1503,23 +1460,21 @@ /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "dS" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access_txt = "16" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "dT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "dU" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 @@ -1535,8 +1490,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "dX" = ( /obj/machinery/firealarm{ dir = 1; @@ -1586,8 +1542,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ee" = ( /obj/machinery/door/airlock/command{ name = "Conference Room"; @@ -1595,10 +1552,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/meeting_room) "ef" = ( @@ -1617,6 +1571,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination/aiupload, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "ej" = ( @@ -1637,10 +1592,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/heads_quarters/captain) "em" = ( @@ -1652,16 +1604,13 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "eo" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ep" = ( /obj/machinery/photocopier, /turf/open/floor/wood, @@ -1722,13 +1671,20 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ey" = ( -/obj/structure/table, -/obj/item/ai_module/reset, /obj/machinery/light{ dir = 8 }, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 4; + pixel_x = 3; + req_access_txt = "20" + }, +/obj/machinery/smartfridge/ai_laws/core_main{ + pixel_y = 1 + }, +/obj/structure/table/reinforced, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "ez" = ( @@ -1748,10 +1704,15 @@ /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "eB" = ( -/obj/structure/table, +/obj/structure/table/reinforced, /obj/machinery/light{ dir = 4 }, +/obj/machinery/door/window/brigdoor/westright{ + pixel_x = -3; + req_access_txt = "20" + }, +/obj/machinery/smartfridge/ai_laws/danger, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "eC" = ( @@ -1759,7 +1720,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "eD" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ @@ -1820,7 +1781,7 @@ areastring = "/area/command/heads_quarters/captain"; dir = 1; name = "Captain's Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -1840,7 +1801,7 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "eN" = ( /obj/machinery/door/poddoor/preopen{ id = "heads_meeting"; @@ -1885,17 +1846,23 @@ /turf/open/floor/wood, /area/command/meeting_room) "eT" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/wood, /area/command/meeting_room) "eU" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/quarantine, /obj/machinery/camera/motion{ c_tag = "AI Upload West"; dir = 4; network = list("aiupload") }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + pixel_x = 3; + req_access_txt = "20" + }, +/obj/structure/table/reinforced, +/obj/machinery/smartfridge/ai_laws/bot_main, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "eV" = ( @@ -1904,8 +1871,7 @@ /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "eW" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/freeform, +/obj/structure/table/reinforced, /obj/structure/sign/plaques/kiddie{ pixel_x = 32 }, @@ -1914,6 +1880,12 @@ dir = 8; network = list("aiupload") }, +/obj/machinery/door/window/brigdoor/westleft{ + pixel_x = -3; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/machinery/smartfridge/ai_laws/service, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "eX" = ( @@ -1960,7 +1932,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ff" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -1972,8 +1944,11 @@ pixel_x = 32; pixel_y = 28 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ @@ -2006,6 +1981,7 @@ "fk" = ( /obj/item/book/manual/wiki/security_space_law, /obj/structure/table/wood, +/obj/item/storage/ashtray/bronze, /turf/open/floor/carpet, /area/command/meeting_room) "fl" = ( @@ -2022,7 +1998,7 @@ /turf/open/floor/wood, /area/command/meeting_room) "fn" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/command/meeting_room) "fo" = ( @@ -2054,9 +2030,7 @@ /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "fr" = ( -/obj/effect/spawner/randomarcade{ - dir = 4 - }, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/wood, /area/command/heads_quarters/captain) "fs" = ( @@ -2081,7 +2055,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fv" = ( /obj/item/storage/fancy/donut_box, /obj/structure/table, @@ -2102,26 +2076,21 @@ /turf/open/floor/carpet, /area/command/meeting_room) "fy" = ( -/obj/structure/table, -/obj/item/ai_module/core/full/asimov, -/obj/item/ai_module/core/freeformcore, +/obj/structure/table/reinforced, /obj/machinery/door/window{ base_state = "right"; dir = 4; icon_state = "right"; - name = "Core Modules"; req_access_txt = "20" }, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/spawner/lootdrop/aimodule_neutral, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced{ dir = 8 }, -/obj/item/ai_module/core/full/custom, +/obj/item/aicard, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "fz" = ( @@ -2145,7 +2114,7 @@ /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/ai_monitored/turret_protected/ai_upload"; name = "Upload APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/circuit, @@ -2171,24 +2140,18 @@ /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "fE" = ( -/obj/structure/table, -/obj/item/ai_module/supplied/oxygen, -/obj/item/ai_module/zeroth/onehuman, +/obj/structure/table/reinforced, /obj/machinery/door/window{ dir = 8; - name = "High-Risk Modules"; req_access_txt = "20" }, -/obj/item/ai_module/reset/purge, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmful, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced{ dir = 4 }, -/obj/item/ai_module/supplied/protect_station, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "fF" = ( @@ -2255,8 +2218,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/firealarm/directional/west, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fN" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Stbd"; @@ -2266,7 +2230,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fO" = ( /obj/structure/sign/directions/medical{ dir = 4; @@ -2282,26 +2246,23 @@ pixel_x = 32; pixel_y = -40 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "fQ" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fR" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "fS" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -2352,7 +2313,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ga" = ( /obj/machinery/status_display/ai, /turf/closed/wall/r_wall, @@ -2365,12 +2326,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"gd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "ge" = ( /obj/machinery/status_display/ai, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -2378,20 +2333,29 @@ /area/ai_monitored/turret_protected/ai_upload) "gf" = ( /obj/structure/table/wood, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, +/obj/machinery/fax, /turf/open/floor/wood, /area/command/heads_quarters/captain) "gg" = ( /obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"gh" = ( +/obj/item/folder/blue{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/captain{ + pixel_x = 3 + }, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"gh" = ( /obj/structure/table/wood, /obj/item/hand_tele, /turf/open/floor/wood, @@ -2438,12 +2402,12 @@ pixel_x = -24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gp" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gq" = ( /obj/machinery/camera{ c_tag = "Central Hallway West"; @@ -2451,7 +2415,7 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gr" = ( /obj/machinery/door/window/eastright{ dir = 1; @@ -2484,14 +2448,9 @@ dir = 4 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gw" = ( /obj/machinery/vending/coffee, /obj/machinery/light{ @@ -2513,14 +2472,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gz" = ( /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) @@ -2580,18 +2534,16 @@ dir = 8; pixel_x = 24 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gK" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gL" = ( /obj/machinery/navbeacon{ codes_txt = "delivery;dir=1"; @@ -2677,13 +2629,13 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gV" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "gW" = ( /turf/closed/wall/r_wall, /area/maintenance/central) @@ -2692,7 +2644,7 @@ /turf/open/floor/plating, /area/maintenance/central) "gY" = ( -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/central) "gZ" = ( @@ -2700,7 +2652,7 @@ areastring = "/area/maintenance/central"; dir = 1; name = "Central Maintenance APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -2717,7 +2669,7 @@ /turf/open/floor/wood, /area/command/meeting_room) "hc" = ( -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_x = -32 }, /obj/machinery/keycard_auth{ @@ -2745,12 +2697,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "hg" = ( /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hh" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -2760,6 +2713,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/central) "hi" = ( @@ -2773,7 +2727,7 @@ /obj/machinery/power/apc{ areastring = "/area/command/heads_quarters/hop"; name = "Head of Personnel APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -2788,7 +2742,7 @@ areastring = "/area/command/meeting_room"; dir = 4; name = "Conference Room APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -2799,14 +2753,9 @@ }, /obj/effect/turf_decal/tile/blue, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -2814,7 +2763,7 @@ /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "ho" = ( -/obj/machinery/gravity_generator/main/station, +/obj/machinery/gravity_generator/main, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -2839,14 +2788,14 @@ /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "hq" = ( -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, /obj/structure/cable, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "hr" = ( @@ -2860,24 +2809,18 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "ht" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Captain's Office Maintenance"; - req_access_txt = "20" - }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" }, /turf/open/floor/plating, /area/maintenance/central/secondary) @@ -2888,7 +2831,7 @@ pixel_y = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "hv" = ( /obj/machinery/light{ dir = 8 @@ -2900,10 +2843,10 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hw" = ( /obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plating, /area/maintenance/central) "hx" = ( @@ -2914,10 +2857,6 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge"; - req_access_txt = "19" - }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, @@ -2927,6 +2866,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, /turf/open/floor/plasteel/dark, /area/command) "hz" = ( @@ -2938,10 +2881,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/wood, /area/command/heads_quarters/hop) "hA" = ( @@ -2966,9 +2906,6 @@ dir = 1 }, /obj/structure/dresser, -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = -23 - }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "hF" = ( @@ -2991,12 +2928,7 @@ /obj/machinery/door/airlock{ name = "Private Restroom" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/freezer, /area/command/heads_quarters/captain) "hI" = ( @@ -3019,15 +2951,15 @@ /turf/open/floor/plating, /area/maintenance/central/secondary) "hL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "hN" = ( /obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "hO" = ( /obj/machinery/button/flasher{ id = "hopflash"; @@ -3065,7 +2997,7 @@ /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "hP" = ( -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_y = 32 }, /obj/structure/filingcabinet/chestdrawer, @@ -3109,10 +3041,7 @@ req_access_txt = "11" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "hW" = ( @@ -3170,7 +3099,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ie" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3180,7 +3109,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "if" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -3192,21 +3121,17 @@ /obj/effect/turf_decal/loading_area{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ig" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ih" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/northleft{ @@ -3231,12 +3156,7 @@ id = "hop"; name = "Privacy Shutters" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "ii" = ( @@ -3311,6 +3231,9 @@ /area/engineering/gravity_generator) "ip" = ( /obj/structure/closet/secure_closet/captains, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = -23 + }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "iq" = ( @@ -3331,6 +3254,7 @@ pixel_y = 2 }, /obj/item/clothing/mask/cigarette/cigar, +/obj/item/storage/ashtray/bronze, /obj/item/reagent_containers/food/drinks/flask/gold, /turf/open/floor/carpet, /area/command/heads_quarters/captain) @@ -3349,21 +3273,22 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "iv" = ( /obj/effect/turf_decal/tile/red{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "iw" = ( /obj/effect/spawner/structure/window, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ix" = ( /obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "iy" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hop"; @@ -3410,8 +3335,7 @@ areastring = "/area/engineering/gravity_generator"; dir = 8; name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 + pixel_x = -25 }, /obj/structure/table, /obj/item/paper/guides/jobs/engi/gravity_gen, @@ -3451,12 +3375,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "iL" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Teleporter Maintenance"; - req_access_txt = "17" - }, /obj/structure/sign/warning/securearea{ pixel_x = -32 }, @@ -3466,20 +3386,13 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Captain's Office Maintenance"; + req_access_txt = "20" }, /turf/open/floor/plating, /area/maintenance/central/secondary) -"iM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "iN" = ( /obj/machinery/light, /obj/effect/turf_decal/tile/blue{ @@ -3491,8 +3404,9 @@ "iO" = ( /obj/effect/landmark/event_spawn, /obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "iP" = ( /obj/structure/sign/warning/electricshock{ pixel_y = -32 @@ -3544,14 +3458,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "iW" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 @@ -3647,8 +3556,11 @@ dir = 8 }, /obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "jk" = ( /obj/effect/turf_decal/bot_white/right, /obj/effect/turf_decal/tile/neutral{ @@ -3671,8 +3583,11 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "jn" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -3683,6 +3598,8 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/fax, +/obj/structure/table, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "jo" = ( @@ -3696,6 +3613,10 @@ }, /obj/item/pen, /obj/item/stamp/hop, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = 9; + pixel_y = 4 + }, /turf/open/floor/plasteel/monofloor, /area/command/heads_quarters/hop) "jq" = ( @@ -3727,10 +3648,7 @@ /obj/effect/turf_decal/delivery, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "ju" = ( @@ -3780,19 +3698,14 @@ req_access_txt = "17" }, /obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/teleporter, /turf/open/floor/plasteel, /area/command/teleporter) "jA" = ( @@ -3811,23 +3724,18 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "jB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "jD" = ( /obj/machinery/light{ dir = 4 }, /obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "jE" = ( /obj/machinery/keycard_auth{ pixel_x = -24 @@ -3874,6 +3782,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/closet/crate/graviton_beacon, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "jL" = ( @@ -3886,6 +3795,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, +/obj/structure/closet/crate/jetpack, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "jN" = ( @@ -3941,7 +3851,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "jX" = ( /obj/machinery/camera{ c_tag = "Cargo Bay Entrance"; @@ -3952,7 +3862,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "jY" = ( /obj/machinery/door/poddoor/shutters/preopen{ id = "hopqueue"; @@ -3964,14 +3874,9 @@ /obj/machinery/ticket_machine{ pixel_y = 32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "jZ" = ( /obj/item/radio/intercom{ dir = 8; @@ -4057,22 +3962,16 @@ /obj/effect/turf_decal/tile/brown{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "kr" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ks" = ( /obj/machinery/door/airlock/command{ name = "Head of Personnel"; @@ -4080,13 +3979,10 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/navbeacon/wayfinding, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/hop, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "ku" = ( @@ -4103,10 +3999,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "kx" = ( @@ -4118,13 +4011,13 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "kA" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kB" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -4135,8 +4028,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kC" = ( /obj/structure/disposalpipe/segment{ dir = 5 @@ -4151,7 +4045,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kD" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4162,8 +4056,9 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/tacmap/directional/north, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kE" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4171,8 +4066,9 @@ /obj/effect/turf_decal/stripes/corner{ dir = 4 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kF" = ( /obj/structure/disposalpipe/segment{ dir = 10 @@ -4182,14 +4078,14 @@ }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kG" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kH" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -4199,13 +4095,14 @@ }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kI" = ( /obj/effect/turf_decal/stripes/corner{ dir = 1 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kJ" = ( /obj/machinery/airalarm{ dir = 8; @@ -4214,8 +4111,11 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kL" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AIW"; @@ -4229,7 +4129,7 @@ dir = 5 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kM" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -4239,14 +4139,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kN" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AftH"; @@ -4259,7 +4153,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kO" = ( /obj/machinery/holopad, /obj/structure/cable, @@ -4270,7 +4164,7 @@ dir = 1 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kP" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CHE"; @@ -4282,7 +4176,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kQ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=HOP"; @@ -4295,38 +4189,29 @@ dir = 9 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kR" = ( /obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"kS" = ( /obj/machinery/airalarm{ dir = 1; pixel_y = -23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kT" = ( /obj/machinery/camera{ c_tag = "Central Primary Hallway South-West"; dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kU" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = -32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kV" = ( /obj/structure/disposalpipe/junction/flip{ dir = 2 @@ -4346,7 +4231,7 @@ pixel_y = -32 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4355,7 +4240,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "kY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4363,15 +4248,16 @@ /obj/machinery/status_display/evac{ pixel_y = -32 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/light, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "la" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4381,26 +4267,14 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "lb" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; sortType = 22 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"lc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ld" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -4410,27 +4284,27 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "le" = ( /obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "lf" = ( /obj/structure/disposalpipe/junction/flip{ dir = 8 }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "lg" = ( /obj/structure/disposalpipe/junction/yjunction{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "lk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/public/glass{ @@ -4439,12 +4313,9 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ll" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -4456,32 +4327,24 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "lm" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "lr" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "mj" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 @@ -4502,26 +4365,38 @@ }, /turf/closed/wall/r_wall, /area/engineering/gravity_generator) +"np" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "nr" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"nE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "nF" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"nR" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "nX" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "of" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4541,12 +4416,24 @@ dir = 1 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"oZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"oT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"oZ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "pH" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -4558,13 +4445,28 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"qq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"qv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "qz" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -4572,7 +4474,16 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"qX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"rt" = ( +/turf/template_noop, +/area/commons/fitness/recreation) "rw" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4581,14 +4492,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "rD" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, @@ -4598,8 +4503,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"rJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "rN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -4609,11 +4525,51 @@ }, /turf/open/floor/plasteel/monofloor, /area/command/heads_quarters/hop) +"rS" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"tu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "tN" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"un" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"uu" = ( +/turf/closed/wall, +/area/hallway/primary/central/west) +"uG" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/turf/open/floor/plasteel/dark, +/area/command) "uJ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -4624,7 +4580,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "vd" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -4632,12 +4588,30 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"vh" = ( +/obj/structure/railing{ + dir = 4 + }, /obj/machinery/door/firedoor/border_only{ - dir = 1 + dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "xa" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4645,53 +4619,99 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "xf" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"xF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "xR" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"yA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"yG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "zg" = ( /obj/machinery/computer/price_controller{ dir = 8 }, /turf/open/floor/wood, /area/command/meeting_room) -"zl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) "zL" = ( /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"zQ" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"zX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Af" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Au" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) "Aw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 6 }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"CI" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +"Ax" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"AW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"BO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"CI" = ( /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "CT" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4701,37 +4721,107 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "DH" = ( /obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"DU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"DY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"EE" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) +"FM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"GT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"GV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "Hw" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 6 }, /turf/open/floor/wood, /area/command/meeting_room) +"HF" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) "HG" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/brown{ dir = 8 }, /obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"HH" = ( +/area/hallway/primary/central/south) +"HU" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"Iz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"IA" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"Jd" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 + dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"JY" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Kb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "Kh" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -4739,6 +4829,15 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) +"Ki" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "LH" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, @@ -4746,80 +4845,183 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor, /area/command/heads_quarters/hop) +"LP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ML" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "Oe" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ id = "aquaprivacy"; name = "Privacy Shutters" }, /turf/open/floor/plating, /area/commons/fitness/recreation) +"Ol" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ou" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"OA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ON" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "OY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "PX" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"Qt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/north) "QR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Uz" = ( +/area/hallway/primary/central/south) +"RH" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"UH" = ( -/obj/machinery/door/firedoor/border_only{ +/area/hallway/primary/central/west) +"St" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"SJ" = ( +/obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"VB" = ( +/area/hallway/primary/central/north) +"SK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"SW" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Ti" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"Uz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"UH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"UW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Vb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"VB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "Wc" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Wd" = ( /obj/structure/cable, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) +"We" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "Ws" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/central"; - dir = 8; - name = "Central Hall APC"; - pixel_x = -25 - }, /obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "WS" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -4828,10 +5030,17 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"WY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) "XI" = ( /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Ye" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -4839,26 +5048,28 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Yf" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Yh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"YJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "YS" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -4868,14 +5079,18 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Zl" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"ZG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/west) (1,1,1) = {" ab @@ -4894,7 +5109,7 @@ dF dF eo eM -aM +HU ab ab ab @@ -4920,20 +5135,20 @@ ab ab ab aY -jB +Ou bJ bQ -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH -aH +zQ +zQ +zQ +qX +zQ +zQ +zQ +zQ +zQ +zQ +zQ fQ go gU @@ -4942,15 +5157,15 @@ gU hv gU id -PX +nR YS jm -jm +DY jX kp -jm -HG +FM HG +vX ab "} (3,1,1) = {" @@ -4961,10 +5176,10 @@ fZ bx bK bR -XI -XI -XI -XI +Iz +Iz +Iz +Iz Uz Uz Uz @@ -4974,35 +5189,35 @@ tN Uz nX gp -iJ -gV -hf -qp -qp +iJ +gV +Vb +Au +Au kW -qp -CT -qp -qp -qp -VB -qp +Au +Jd +Au +Au +Au +RH +UW kL -aH -ab +EE +IA "} (4,1,1) = {" ab ab ab -ba +hL xf -aH -gd -gd -gd -gd -gd +hL +kr +qv +qv +qv +We hg zL zL @@ -5013,33 +5228,33 @@ zL fR gq gK -zL +AW Zl -aH +zQ hN ie iv -aH -aH +YJ +zQ zL -aV +xF kr -aH -CT -aH -aL +CI +rw +CI +IA "} (5,1,1) = {" ab ab ab -bb +br XI eC -aD -aD -aD -aD +ZG +ZG +ZG +ZG gv hm dH @@ -5061,20 +5276,20 @@ iw iw iw jY -aL -aH +uu +CI oj DH -aL +IA "} (6,1,1) = {" ab ab ab -gd +bs XI eC -aD +Qt ab ab bS @@ -5099,20 +5314,20 @@ iO ix jD ix -aL -dT +uu +CI xa -aH -aL +CI +IA "} (7,1,1) = {" ab ab ab -aJ +hL XI eC -aD +Qt ab ab bS @@ -5139,18 +5354,18 @@ hA hA hA kA -CT -kS -aL +rw +CI +IA "} (8,1,1) = {" ab ab ab -aJ +hL XI bM -aD +Qt ab ab bS @@ -5176,19 +5391,19 @@ jn jE jZ hA -bs -CT -aH +SW +rw +CI ad "} (9,1,1) = {" ab ab ab -aJ +hL XI eC -aD +Qt ab ab bS @@ -5214,19 +5429,19 @@ jo jF ka hA -br -CT -aH +LP +rw +CI ad "} (10,1,1) = {" ab ab ab -aG +hL XI eC -aD +Qt ab bS bS @@ -5261,10 +5476,10 @@ ad ab ab ab -aH +hL XI eC -aD +Qt ab bS cv @@ -5291,18 +5506,18 @@ jH jo hA kB -CT -aH +rw +CI ad "} (12,1,1) = {" ab ab ab -aH +hL XI eC -aD +Qt ab bS cw @@ -5329,13 +5544,13 @@ LH LH ks kC -qp -aH +UW +nE ad "} (13,1,1) = {" ab -ab +rt Oe bd xR @@ -5367,15 +5582,15 @@ hA hA hA kD -CT -aH +rw +CI ad "} (14,1,1) = {" ab -ab +rt Oe -aH +hL XI eC bT @@ -5403,9 +5618,9 @@ gx ab ab ab -aD +zX OY -CT +rw kU ad "} @@ -5413,8 +5628,8 @@ ad ab bl bw -aH -zl +bb +XI eC bU bY @@ -5441,9 +5656,9 @@ gx ab ab ab -aD +zX OY -CT +rw kR ad "} @@ -5479,10 +5694,10 @@ js gx gx gx -aD +zX OY -CT -aH +rw +Ax ad "} (17,1,1) = {" @@ -5519,17 +5734,17 @@ kx kx kx kE -CT -aH +yA +np ad "} (18,1,1) = {" an -aG +SJ XI bg bB -eC +un bU cb cn @@ -5596,7 +5811,7 @@ Wd kv kG kO -kW +qq vd "} (20,1,1) = {" @@ -5605,7 +5820,7 @@ aI XI bi bD -eC +GV bU cd cp @@ -5671,7 +5886,7 @@ kx kx kx kI -CT +yA kY ab "} @@ -5707,18 +5922,18 @@ js gx gx gx -aD -aH -CT +zX +CI +rw kZ ab "} (23,1,1) = {" ab -aD -aD -aH -HH +Qt +Qt +hL +WS eC bU cg @@ -5745,17 +5960,17 @@ gx ab ab ab -aD -aH -CT +zX +CI +rw la ab "} (24,1,1) = {" ab ab -aD -aH +Qt +hL WS eC bU @@ -5783,16 +5998,16 @@ gx ab ab ab -aD -aH -CT +zX +CI +rw OY ab "} (25,1,1) = {" ab ab -aD +Qt bd Ye bO @@ -5802,7 +6017,7 @@ bS cH cX dk -dN +ds ek eD eX @@ -5822,8 +6037,8 @@ iI iI iI iI -aH -CT +CI +rw OY ab "} @@ -5834,7 +6049,7 @@ aL dT dW eC -aD +Qt ab bS cI @@ -5860,8 +6075,8 @@ ju jN ki iI -bs -CT +SW +rw lb ab "} @@ -5872,13 +6087,13 @@ aW bm bG eC -aD +Qt ab bS cJ cZ dx -dL +uG ek eF eK @@ -5898,9 +6113,9 @@ jv jO kj iI -aH -CT -OY +CI +rw +ML ab "} (28,1,1) = {" @@ -5910,7 +6125,7 @@ aN bn ed eC -aD +Qt ab bS bS @@ -5936,9 +6151,9 @@ jw jP kk iI -CI +wh rw -lc +OY ab "} (29,1,1) = {" @@ -5948,7 +6163,7 @@ aX bo aa eC -aD +Qt ab ab bS @@ -5974,8 +6189,8 @@ jx jQ kl iI -aH -CT +CI +rw ld ab "} @@ -5984,9 +6199,9 @@ ab ab ab bp -jB +rJ eC -aD +Qt ab ab bS @@ -6012,8 +6227,8 @@ jy jR jR iI -aH -CT +rS +rw OY ab "} @@ -6022,9 +6237,9 @@ ab ab ab bq -bx +ON eC -aD +Qt ab ab bS @@ -6050,8 +6265,8 @@ jy jS jS iI -aH -CT +CI +rw le ab "} @@ -6060,9 +6275,9 @@ ab ab ab br -jB +rJ eC -aD +Qt ab ab bS @@ -6089,7 +6304,7 @@ jT jT iI kA -CT +rw lf ab "} @@ -6098,9 +6313,9 @@ ab ab ab bs -jB +rJ eC -aD +Qt aD aD aD @@ -6126,45 +6341,45 @@ jz iI iI iI -aH +np rD -OY +OA ab "} (34,1,1) = {" ab ab ab -aH -jB -aH -aG -aG +vh +oT +SK +Ol aG aG +Ki aG dE nr en Ws -nr +St fu fM nr +en nr -nr -nr +BO hu PX PX it -iM +PX jj jA jU nF -nF -nF +sm +Kb uJ lg lr @@ -6175,12 +6390,12 @@ ab ab bt bH -oZ -oZ -oZ -oZ -oZ -oZ +tu +WY +aH +aH +aH +aH CT qp VB @@ -6196,54 +6411,54 @@ qp qz qp qp -VB qp -jB +qp +UH qn -oZ -oZ -oZ +Yh +GT +Af kQ -aH -aW +nE +HF "} (36,1,1) = {" ab ab ab -aH -aH -aH -aH +bt +JY +hL +bd ci -aH -aH -aH -aH -aH -UH -aH +DU +gH +jB +jB +jB +oZ +jB ff CT fO -aH +jB +oZ gH -aH -aH -aH -hL -aH -aH -UH -aH -aH -by -aH +yG +jB +jB +jB +jB +jB +jB +DU +jB +oZ ky kJ -aH -aH -dd +CI +CI +Ti "} (37,1,1) = {" ab diff --git a/_maps/r_ruins/station/bridge/bridge_default_bottom.dmm b/_maps/r_ruins/station/bridge/bridge_default_bottom.dmm new file mode 100644 index 000000000000..37fd300bb3ec --- /dev/null +++ b/_maps/r_ruins/station/bridge/bridge_default_bottom.dmm @@ -0,0 +1,1584 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/template_noop, +/area/template_noop) +"ap" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bad Doggies Room"; + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"bo" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bw" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"gf" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"gu" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"jH" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"kA" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"lr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"lH" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"nT" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"oH" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"oW" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"qx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"rg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"sR" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"tZ" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"wm" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xZ" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"zC" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"BO" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"BR" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"DF" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"HY" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"IV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) +"LP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Bad Doggies Room"; + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"Pc" = ( +/turf/closed/wall/r_wall, +/area/cargo/meeting_room) +"Rw" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_eva) +"TL" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage{ + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"UY" = ( +/turf/open/floor/plating, +/area/cargo/meeting_room) +"Ws" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/north) +"WP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Xh" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"YS" = ( +/turf/open/space/basic, +/area/space) +"Zl" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"Zt" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +jH +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +Pc +UY +Pc +Zl +YS +YS +ab +ab +ab +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +jH +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +Pc +UY +Pc +Zl +YS +YS +ab +ab +ab +"} +(3,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +jH +YS +YS +YS +YS +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +lH +UY +lH +Zl +Zl +Zl +ab +ab +ab +"} +(4,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +Pc +gj +Pc +LP +Pc +gj +Pc +YS +ab +ab +ab +"} +(5,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +Pc +Pc +UY +UY +UY +UY +UY +Pc +YS +ab +ab +ab +"} +(6,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +Pc +UY +UY +UY +UY +UY +UY +Pc +YS +ab +ab +ab +"} +(7,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +Pc +gj +gj +gj +Pc +gj +gj +Pc +YS +ab +ab +ab +"} +(8,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +Zl +jH +Zl +Zl +Zl +Zl +Zl +Zl +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +Zl +Zl +Zl +Zl +Zl +ab +ab +ab +"} +(9,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +Zl +YS +Zl +YS +YS +ab +ab +ab +"} +(10,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +ab +ab +ab +"} +(11,1,1) = {" +ab +ab +ab +ab +ab +rg +IV +YS +YS +YS +YS +YS +YS +YS +YS +jH +HY +Zl +YS +HY +jH +jH +jH +jH +jH +jH +jH +jH +jH +jH +Zl +YS +YS +ab +ab +ab +"} +(12,1,1) = {" +ab +ab +ab +ab +ab +zC +IV +YS +YS +YS +YS +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +ab +ab +ab +"} +(13,1,1) = {" +ab +ab +ab +ab +ab +Zt +IV +YS +YS +YS +Zl +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +ab +ab +ab +"} +(14,1,1) = {" +ab +ab +ab +ab +ab +ab +Rw +YS +YS +YS +Zl +YS +YS +YS +YS +jH +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +Zl +Zl +ab +ab +ab +"} +(15,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +YS +Zl +YS +YS +ab +"} +(16,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +Zl +YS +YS +ab +"} +(17,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +DF +qx +qx +ab +"} +(18,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +YS +YS +Zl +Zl +Zl +Zl +DF +DF +Xh +Xh +ab +"} +(19,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +qx +BR +BR +BR +ab +"} +(20,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +qx +oW +BR +BR +ab +"} +(21,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +qx +TL +BR +BR +ab +"} +(22,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +Zl +Zl +Zl +YS +YS +Zl +Zl +Zl +Zl +Zl +Zl +YS +Zl +Zl +Zl +DF +DF +Xh +Xh +ab +"} +(23,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +DF +qx +qx +ab +"} +(24,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +YS +YS +YS +Zl +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +Zl +bw +bw +ab +"} +(25,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Ws +Ws +Ws +Ws +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +bw +bw +ab +"} +(26,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +gu +gu +gu +Ws +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +Zl +DF +xZ +ab +"} +(27,1,1) = {" +ab +ab +ab +ab +ab +ab +ap +gu +gu +gu +Ws +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +DF +DF +BR +ab +"} +(28,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Ws +Ws +Ws +Ws +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +DF +gf +BR +ab +"} +(29,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +DF +oH +BR +ab +"} +(30,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +DF +DF +qx +qx +DF +DF +WP +ab +"} +(31,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +DF +DF +Xh +tZ +tZ +wm +tZ +BR +ab +"} +(32,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +jH +jH +jH +jH +jH +jH +jH +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +Zl +DF +Xh +sR +BR +BR +wm +BR +BR +ab +"} +(33,1,1) = {" +ab +ab +ab +ab +ab +ab +Ws +lr +lr +lr +lr +lr +lr +lr +Ws +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +qx +BR +BR +BR +BR +BR +BR +BR +ab +"} +(34,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +qx +kA +BR +tZ +BR +wm +wm +wm +ab +"} +(35,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +qx +sR +BR +BR +BR +wm +tZ +tZ +ab +"} +(36,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Ws +Zl +YS +YS +YS +YS +YS +YS +Zl +YS +YS +YS +YS +DF +Xh +nT +wm +BR +wm +tZ +bo +ab +"} +(37,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +Ws +Ws +Ws +Ws +Ws +lr +lr +lr +Ws +lr +lr +lr +Ws +DF +BO +BO +BO +WP +BO +BO +BO +ab +"} diff --git a/_maps/r_ruins/station/bridge/bridge_hall.dmm b/_maps/r_ruins/station/bridge/bridge_hall.dmm new file mode 100644 index 000000000000..8ef970656fdb --- /dev/null +++ b/_maps/r_ruins/station/bridge/bridge_hall.dmm @@ -0,0 +1,6268 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"al" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/reagent_containers/food/drinks/flask/gold{ + layer = 3.02; + pixel_x = 8 + }, +/obj/item/storage/box/matches{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/blue, +/obj/item/storage/ashtray/bronze, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"an" = ( +/obj/effect/turf_decal/tile/dark_green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command) +"ar" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"ax" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"az" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"aA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"aH" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"aM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"aP" = ( +/obj/effect/landmark/observer_start, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"aQ" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"aT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"bk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"bq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"bt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bx" = ( +/turf/open/openspace, +/area/hallway/primary/central/east) +"bC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"bD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bM" = ( +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/pen, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"bP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"bQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"bT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"bW" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"ch" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"cv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"cw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/table, +/obj/effect/spawner/random/trash/janitor_supplies{ + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"cD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"cP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"cX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"dh" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"dj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"dm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"du" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"dv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + layer = 3.02; + pixel_x = -4; + pixel_y = -2 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"dU" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"dW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ei" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/east, +/obj/structure/rack, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18"; + pixel_x = 1; + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"el" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"eo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"er" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"eu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"eA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"eC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W9" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"eI" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"eJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"eM" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"eP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/east) +"eR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"fc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"ff" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"fh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"fi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"fl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"fn" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"fx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/teleporter) +"fy" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/motion{ + c_tag = null; + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"fB" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"fD" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W5" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"fI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"fK" = ( +/turf/open/openspace, +/area/hallway/primary/central/west) +"fN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush, +/obj/machinery/light/floor/directional/west, +/turf/open/floor/grass, +/area/hallway/primary/central/north) +"fU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ga" = ( +/obj/structure/sign/directions/supply{ + pixel_x = 32; + pixel_y = -38 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_x = 32; + pixel_y = -26 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"gc" = ( +/obj/effect/mapping_helpers/ianbirthday, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"gd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"gh" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"gl" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"gA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"gE" = ( +/obj/structure/lattice, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"gL" = ( +/obj/structure/sign/departments/aiupload, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ai_monitored/turret_protected/ai_upload) +"gU" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/east) +"gX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ha" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/east) +"hd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"hi" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink/directional/west, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"hm" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault{ + faction = list("neutral","silicon") + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_x = 32 + }, +/obj/machinery/requests_console/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"hn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"ho" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"hq" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = -5; + pixel_y = 24; + req_access_txt = "57" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 5; + pixel_y = 36 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"hy" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"hH" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"hO" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"hS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ic" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"ie" = ( +/turf/open/openspace, +/area/command/teleporter) +"if" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command/teleporter) +"il" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"im" = ( +/obj/structure/displaycase/captain, +/obj/machinery/requests_console/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ip" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iq" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"iu" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"iw" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/turret_protected/ai_upload"; + name = "Upload APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"iA" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + layer = 3.01; + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"iC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iS" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/east) +"iU" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 26 + }, +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"ja" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W3" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"jo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/item/kirbyplants{ + icon_state = "plant-10"; + pixel_y = 7 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"jp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"jq" = ( +/obj/structure/table, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"jr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/hallway/primary/central/south) +"ju" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/hallway/primary/central/east) +"jB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"jC" = ( +/obj/effect/turf_decal/bot/right, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"jI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8; + layer = 1; + pixel_x = -7 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"jK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/command/teleporter) +"kf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"km" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"kt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"ky" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/airlock/command{ + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"kG" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"kH" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"kO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"kT" = ( +/turf/open/openspace, +/area/command) +"kZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"lf" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/command) +"lk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"ln" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/accounting{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"lo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/east) +"lF" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/north) +"lM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"lT" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"mf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"ml" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"mo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"ms" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"mw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"my" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"mA" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"mE" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/smartfridge/ai_laws/service, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"mF" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"mK" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"mZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"nc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"ni" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"nj" = ( +/obj/machinery/status_display/evac, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/command) +"nn" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"no" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"nr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/wirecutters{ + pixel_y = -10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"nu" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"nB" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"nS" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"nT" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/east) +"nV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 9; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"on" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"os" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase{ + pixel_y = 6 + }, +/obj/item/assembly/flash/handheld{ + layer = 3.02; + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/assembly/signaler{ + layer = 3.01; + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/plasteel/dark, +/area/command) +"oC" = ( +/obj/machinery/door/airlock{ + name = "Private Restroom" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"oJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"oM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"oQ" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 4; + pixel_y = -2 + }, +/turf/open/openspace, +/area/hallway/primary/central/south) +"oW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oX" = ( +/obj/structure/table, +/obj/item/electronics/apc, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"pa" = ( +/obj/machinery/ticket_machine{ + pixel_y = 32 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"pd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"pe" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"pf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"pi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"pk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/rock/jungle, +/obj/structure/flora/ausbushes/ywflowers{ + pixel_x = 14 + }, +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = -14 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/north) +"pn" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + layer = 3.01; + pixel_x = 7; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + layer = 3.02; + pixel_y = -7 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"ps" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/multitool{ + pixel_x = 9 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/plasteel/dark, +/area/command) +"pG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"pM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/bed/dogbed/ian, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"pO" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ai_monitored/turret_protected/ai_upload) +"pU" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"pV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/south) +"pW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"pZ" = ( +/obj/machinery/pdapainter, +/obj/machinery/button/ticket_machine{ + pixel_x = 7; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"qk" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"qn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"qo" = ( +/obj/structure/lattice, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"qt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"qu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"qw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"qx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"qA" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"qD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"qI" = ( +/turf/open/openspace, +/area/command/heads_quarters/hop) +"qL" = ( +/obj/structure/cable, +/obj/item/beacon, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"qQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qV" = ( +/obj/structure/lattice, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + name = "AI Upload turret control"; + pixel_x = 25; + req_access = null; + req_access_txt = "16" + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"rh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/bush, +/turf/open/floor/grass, +/area/hallway/primary/central/north) +"rl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rp" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"rq" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"rv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rF" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"rH" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"se" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/central/upload"; + dir = 1; + name = "АПЦ: Мостик - Турели"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"sk" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"sm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/teleporter) +"sz" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sH" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"sJ" = ( +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"sL" = ( +/turf/open/openspace, +/area/hallway/primary/central/upload) +"sV" = ( +/turf/template_noop, +/area/template_noop) +"sX" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"th" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"tN" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tP" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Основные модули"; + pixel_x = -3; + req_access_txt = "20" + }, +/obj/machinery/smartfridge/ai_laws/core_main{ + pixel_y = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"ub" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"uh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"uk" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"ut" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"uv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"uN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"uP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"vg" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"vu" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vE" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"vI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"vP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"vU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 8; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Reception Window" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "hop" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"vX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"wk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"wl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"wo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"wu" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/arrows/red{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"ww" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"wJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"wN" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"wR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/brflowers{ + pixel_x = -17 + }, +/obj/machinery/light/floor/directional/east, +/turf/open/floor/grass, +/area/hallway/primary/central/north) +"wT" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = -12 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/sign/poster/official/build{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"wZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"xc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"xg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"xh" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/turf/open/openspace, +/area/hallway/primary/central/west) +"xj" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 1; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 1; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"xl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"xm" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/aicard, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"xo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"xv" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/lighter{ + layer = 3.01; + pixel_x = 6; + pixel_y = -15 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"xy" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"xC" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"xD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"xG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"xQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"xR" = ( +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/ai_upload) +"xU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"ya" = ( +/obj/structure/chair/sofa/right{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"yb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"yg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bed/double, +/obj/item/bedsheet/captain/double, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"yq" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16"; + security_level = 6 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"yu" = ( +/obj/machinery/fax, +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"yx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"yD" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"yK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = -40 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"yM" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"yR" = ( +/obj/effect/turf_decal/tile/dark_green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/turretid{ + control_area = "/area/hallway/primary/central/upload"; + name = "Контролер турелей мостика"; + pixel_x = 26; + req_access = null; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command) +"yU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"zB" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"zF" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"zO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/turf/open/floor/plasteel/dark, +/area/command) +"zP" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"zQ" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Al" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/siding/brown{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"As" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"At" = ( +/turf/template_noop, +/area/commons/fitness/recreation) +"AD" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/east) +"AE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"AG" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"AJ" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/east) +"AL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W6" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"AQ" = ( +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/obj/structure/curtain, +/obj/machinery/shower/directional/north, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"Bf" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/brown/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Bh" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = -35; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = -35; + pixel_y = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Bk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"Bp" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Bq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Bs" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/radio{ + layer = 3.01; + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Bt" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"BA" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/south) +"BG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"BJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"BR" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"BU" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Cf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Cg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Cm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/teleporter) +"Cz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"CC" = ( +/obj/structure/cable, +/obj/structure/chair/sofa/corner{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"CD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/command/teleporter) +"CO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"CV" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"CZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"Dg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = 5; + pixel_y = 29 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"Dj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Dl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Dm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W7" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Du" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/hand_tele, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Dy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"DB" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"DE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"DG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"DL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W2" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"DN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W8" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"DU" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"Ea" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ee" = ( +/obj/structure/table, +/obj/item/tank/internals/oxygen{ + pixel_y = 2 + }, +/obj/item/tank/internals/oxygen{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/clothing/mask/gas{ + layer = 3.01; + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"EA" = ( +/turf/open/openspace, +/area/command/heads_quarters/captain/private) +"EB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/canvas/twentythree_twentythree{ + pixel_y = 7 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/canvas/twentythree_nineteen{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"EH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"EQ" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"ES" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"EW" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"EX" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W1" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Fe" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"Fk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Fm" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Fr" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Fs" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/button/door{ + id = "capblast"; + name = "Captains Blast Door Control"; + pixel_x = -35; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Ft" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Fy" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"FF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light_switch/directional/east{ + pixel_x = 37 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"FJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"FL" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"FO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = -11 + }, +/obj/item/pen{ + pixel_x = 7; + pixel_y = -10 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"FQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"FX" = ( +/obj/effect/turf_decal/bot/left, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Gb" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"Gf" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Gg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Gk" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/computer/upload/ai{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"Go" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"Gp" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Gr" = ( +/turf/closed/wall/r_wall, +/area/command) +"GD" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Модули дополнений"; + pixel_x = -3; + req_access_txt = "20" + }, +/obj/machinery/smartfridge/ai_laws/bot_main, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"GY" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"Hb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"He" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"Hf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"Hk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/dresser, +/obj/machinery/newscaster/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"Hl" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Hq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Hs" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16"; + security_level = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"HI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W13" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"HL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"HM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"HO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Ib" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/ai_module/toy_ai, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"Ih" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/navigate_destination/aiupload, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/ai_upload) +"Ii" = ( +/obj/machinery/computer/shuttle_flight/labor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/siding/brown{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"Ir" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"It" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"Iv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"IC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"IJ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"IL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"IM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"IO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"IQ" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"IY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Jc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/command) +"Je" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Jp" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"Js" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue/fourcorners, +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"Ju" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"JJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/command) +"JK" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"JL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"JT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"JV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Kf" = ( +/mob/living/simple_animal/pet/dog/corgi/ian{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Kg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"Kp" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/east) +"Kq" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/command) +"Ks" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/fourcorners, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"Kt" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"KD" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"KJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/obj/structure/table/wood/fancy/blue, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"KN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"KS" = ( +/obj/machinery/door/poddoor{ + id = "capblast"; + name = "captains blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private) +"KU" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Lp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Lu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"LD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"LP" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"LQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"LV" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"LY" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"LZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ma" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Mf" = ( +/obj/structure/easel, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"Ml" = ( +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = -38 + }, +/obj/structure/sign/directions/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_x = -32; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"MG" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/north) +"MO" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"MT" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"MU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"MV" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/beacon, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"MX" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_x = 32; + pixel_y = -38 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Na" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/item/kirbyplants{ + icon_state = "plant-10"; + pixel_y = 7 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"Nd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Nh" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"No" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Nt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Nx" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"Ny" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Nz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"NA" = ( +/turf/closed/wall, +/area/hallway/primary/central/north) +"NB" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/tacmap/directional/north, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"NC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"NE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Oc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"Oe" = ( +/obj/structure/table/wood/poker, +/obj/item/plate{ + pixel_y = 7 + }, +/obj/item/food/cheesewedge{ + layer = 3.01; + pixel_y = 13 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"Ol" = ( +/obj/effect/turf_decal/siding/white/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"Om" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"OB" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ai_monitored/turret_protected/ai_upload) +"OM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"OP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W14" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"OW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/upload) +"Pe" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Pg" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 26 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 38 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ph" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Pi" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W4" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Pq" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/trimline/white, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Pr" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"PC" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"PF" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/north) +"PR" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Qb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"Qm" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Qs" = ( +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"Qu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Qx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"QD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/vending/cart, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"QE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/upload) +"QF" = ( +/obj/effect/turf_decal/arrows{ + pixel_y = 7 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"QL" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"Ra" = ( +/obj/structure/table/wood, +/obj/machinery/firealarm/directional/south, +/obj/machinery/newscaster/directional/east, +/obj/item/camera{ + pixel_y = 12 + }, +/obj/item/storage/photo_album{ + layer = 3.01; + pixel_y = -1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Ri" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/south) +"Rk" = ( +/turf/open/openspace, +/area/hallway/primary/central/north) +"Rn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Rs" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Rz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/teleporter) +"RK" = ( +/obj/effect/turf_decal/arrows{ + dir = 8; + pixel_x = -10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"RV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Sa" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"Sf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Sg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"Sh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/upload) +"Sp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Sr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Ss" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Sv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"SF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"SG" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"SV" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"SZ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"Tc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Tg" = ( +/turf/open/openspace, +/area/hallway/primary/central/south) +"Tk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"Tq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Ts" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"TD" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/box, +/obj/machinery/porta_turret/armory/low_power{ + has_cover = 1; + mode = 0 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"TJ" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"TK" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/hallway/primary/central/west) +"TU" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"Ub" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"Ui" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"UL" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"UV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 8; + pixel_y = -2 + }, +/turf/open/openspace, +/area/hallway/primary/central/south) +"Vs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/closet/secure_closet/captains, +/obj/item/storage/secure/safe/directional/east, +/obj/machinery/light, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"Vx" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"VA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/arrows/red{ + dir = 1; + pixel_y = -6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"VF" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"VM" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"VP" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 5; + network = list("aiupload") + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"VQ" = ( +/obj/structure/table/wood, +/obj/item/camera{ + layer = 3.01; + pixel_y = 3 + }, +/obj/item/camera_film{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/primary/central/north) +"VU" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"VW" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"WA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"WF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"WH" = ( +/obj/machinery/door/poddoor{ + id = "capblast"; + name = "captains blast door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private) +"WK" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"WO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/smartfridge/ai_laws/danger, +/obj/machinery/door/window/brigdoor/westright{ + dir = 2; + name = "Опасные модули"; + req_access_txt = "20" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"WT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"WW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"Xa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Xq" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/computer/upload/borg, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"Xr" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8; + network = list("aiupload") + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai_upload) +"Xy" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"XE" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"XN" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"Yk" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/south) +"Ym" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 22 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Yw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box/caramel{ + pixel_y = 10 + }, +/obj/item/storage/fancy/donut_box/choco{ + layer = 3.01 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"YD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/upload) +"YE" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/upload) +"YG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"YR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"YS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"YX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Zj" = ( +/obj/item/flashlight/lamp/green{ + layer = 3.05; + pixel_x = 16; + pixel_y = 22 + }, +/obj/structure/table/wood/poker, +/obj/item/toy/figure/captain{ + layer = 3.06; + pixel_x = 15; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"Zk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"ZC" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 36 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) + +(1,1,1) = {" +sV +sV +sV +FQ +NE +FQ +sV +sV +sV +sV +sV +Cf +WW +ww +xQ +Qu +Fm +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +"} +(2,1,1) = {" +sV +sV +sV +Dl +HO +dm +Ph +Ph +Ph +Ph +Om +ax +ut +jp +jp +jp +jp +rH +kH +Rs +Je +Je +Je +Je +Je +Je +HM +jp +WK +NC +It +lk +LD +lk +lk +sV +"} +(3,1,1) = {" +sV +sV +sV +tc +LQ +ga +oW +MO +MO +MO +aA +IM +Pe +Gg +iu +iu +iu +iu +jB +iu +iu +iu +iu +iu +du +iu +nB +YG +nS +mF +mF +mF +mF +mF +mF +mF +"} +(4,1,1) = {" +sV +sV +sV +Dl +Rn +eu +hy +Nh +Nh +Nh +hy +hy +hy +fK +zB +aH +fK +fK +QL +fK +fK +aH +fK +fK +aH +DU +JT +BU +fK +mF +ie +jK +CD +Cm +BR +mF +"} +(5,1,1) = {" +sV +sV +sV +ES +SF +ip +hy +qI +pG +ln +Oc +pM +hy +vE +xh +Gr +Gr +mw +lf +mw +mw +nj +mw +Gr +Gr +VW +ms +BU +TK +mF +ie +ie +Bt +fx +TJ +mF +"} +(6,1,1) = {" +sV +sV +sV +qQ +WF +pi +hy +qI +Sr +pW +Kf +kO +Nh +fK +fK +mw +zP +SV +JJ +kT +kT +JJ +Bf +Ii +mw +fK +fI +BU +fK +Rz +Du +MV +Fe +hS +BR +mF +"} +(7,1,1) = {" +sV +sV +sV +Dl +WF +Gp +hy +Hb +iq +gc +FL +QD +Nh +fK +fK +mw +fB +KD +kT +kT +kT +kT +wN +Al +mw +fK +JT +th +fK +Rz +bQ +bQ +vN +hS +BR +mF +"} +(8,1,1) = {" +sV +sV +sV +hn +pd +nc +hy +pZ +aT +Ss +FL +Gb +Nh +fK +fK +mw +nn +Fr +oA +Js +zO +ps +eM +Nt +mw +fK +fi +th +fK +Rz +vX +if +sm +hd +nu +mF +"} +(9,1,1) = {" +sV +sV +sV +Dl +WF +MO +hy +hq +Jp +FO +uh +yu +hy +vE +xh +Gr +AG +qt +Ft +Ft +qL +Bh +xl +Kq +Gr +VW +xo +zQ +TK +mF +VU +Gf +Pq +Bs +Ee +mF +"} +(10,1,1) = {" +sV +sV +sV +Ma +WF +tN +hy +WA +vU +Vx +hy +hy +hy +fK +fK +Gr +se +rq +yR +AE +ic +an +Ol +Ks +Jc +CZ +ar +UL +fl +mF +mF +mF +mF +Iv +mF +mF +"} +(11,1,1) = {" +sV +sV +sV +Dl +WF +Sv +Tk +jC +Dj +FX +PF +OW +Sh +YD +QE +Gr +mw +mw +Gr +ky +km +Gr +mw +mw +Gr +Ir +fK +fK +qo +Qb +zF +Ri +dU +wT +oX +bW +"} +(12,1,1) = {" +sV +sV +sV +Dl +WF +MO +Tk +pa +fN +Sp +eR +Ir +sL +sL +vg +wZ +sL +sL +Go +EW +Kg +lT +sL +sL +wZ +Dy +sL +sL +yM +kZ +zF +Tg +mZ +Tq +iA +bW +"} +(13,1,1) = {" +sV +At +uP +Dl +Nd +ho +VA +yD +pk +RK +xG +yM +sL +sL +xU +sL +sL +sL +uk +EW +Kg +mA +sL +sL +sL +Ir +sL +sL +yM +kZ +zF +Tg +Ju +EH +CV +bW +"} +(14,1,1) = {" +sV +At +uP +ES +gd +No +wu +No +rh +No +xG +yM +sL +sL +xU +sL +sL +sL +qV +EW +Kg +Pr +sL +sL +sL +Ir +sL +sL +yM +kZ +zF +Tg +Sa +EH +lM +bW +"} +(15,1,1) = {" +sV +CO +As +eI +gd +iC +Tk +dh +wR +RK +xG +yM +sL +sL +xU +sL +TD +yM +OB +yq +Hs +gL +yM +TD +sL +Ir +sL +sL +yM +kZ +zF +Tg +xy +EH +Bk +bW +"} +(16,1,1) = {" +sV +KU +Fy +EX +DN +FJ +Tk +Xy +QF +aQ +xG +yM +sL +sL +xU +sL +yM +pO +OB +Ub +iw +OB +pO +yM +sL +Ir +sL +sL +yM +kZ +zF +Tg +BJ +gX +xj +bW +"} +(17,1,1) = {" +sV +Ea +No +DL +eC +PR +MG +ml +ml +ml +PF +no +yM +ch +xU +TU +OB +OB +VP +xR +xR +jq +OB +OB +YE +Ir +bq +yM +TU +il +qx +qx +dU +fh +dU +bW +"} +(18,1,1) = {" +Sf +iU +No +ja +Cg +No +qA +Rk +Rk +lF +Hf +yM +sL +sL +fc +sL +hO +Ib +xR +xR +xR +xR +xm +hO +sL +my +sL +sL +yM +kZ +zF +Tg +pV +ag +sz +yb +"} +(19,1,1) = {" +BG +ni +MU +Pi +aP +ni +RV +Rk +Rk +lF +Hf +yM +sL +sL +fc +sL +hO +Xq +xR +xR +Ih +xR +Gk +hO +sL +my +sL +sL +yM +kZ +zF +Tg +Tg +oJ +Xa +qw +"} +(20,1,1) = {" +Ny +Pg +No +fD +Zk +No +PC +Rk +Rk +lF +Hf +yM +sL +sL +fc +sL +hO +WO +xR +xR +xR +xR +mE +hO +sL +my +sL +sL +yM +kZ +zF +Tg +Yk +dW +yK +sX +"} +(21,1,1) = {" +sV +ub +No +AL +HI +os +MG +EB +nr +nV +PF +YE +yM +eJ +fc +TU +OB +OB +bM +xR +xR +Xr +OB +OB +YE +my +bT +yM +gE +il +qx +qx +dU +fU +kf +sV +"} +(22,1,1) = {" +sV +LZ +No +Dm +OP +bt +Tk +Mf +Nx +Qs +jo +yM +sL +sL +yM +sL +yM +pO +OB +tP +GD +OB +pO +yM +sL +yM +sL +sL +yM +kZ +zF +Tg +JL +Qm +rv +sV +"} +(23,1,1) = {" +sV +Ui +Ui +rl +gd +MO +Tk +Mf +Qs +Qs +mf +yM +sL +sL +yM +sL +TD +yM +OB +hO +hO +OB +yM +TD +sL +yM +sL +sL +yM +kZ +zF +Tg +Sa +Qm +kf +sV +"} +(24,1,1) = {" +sV +sV +Ui +IO +gd +No +Hq +Qs +Qs +Qs +mf +yM +sL +sL +yM +sL +sL +sL +pe +sL +sL +pe +sL +sL +sL +yM +sL +sL +yM +kZ +zF +Tg +Sa +Qm +DG +sV +"} +(25,1,1) = {" +sV +sV +Ui +rl +gd +No +MO +Qs +Qs +Qs +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +kZ +zF +Tg +Sa +Qm +Cz +sV +"} +(26,1,1) = {" +sV +NA +NA +vu +gd +Hq +Tk +ya +dv +VQ +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +kZ +zF +Tg +ei +Fk +Ym +sV +"} +(27,1,1) = {" +sV +SZ +EQ +rl +gd +Qx +Tk +CC +He +SG +Na +yM +sL +sL +MT +sL +sL +sL +MT +sL +gl +MT +sL +sL +sL +MT +sL +sL +yM +Sg +zF +Ri +dU +LV +cw +sV +"} +(28,1,1) = {" +sV +Nz +rl +No +gd +Kt +gU +lo +lo +lo +AD +cD +cD +cD +AD +vP +cD +cD +AD +cD +bP +er +WH +WH +WH +er +WH +WH +WH +er +er +er +er +mo +dU +sV +"} +(29,1,1) = {" +sV +wJ +vI +Lu +gd +Hq +lo +nT +nT +nT +nT +nT +nT +nT +IC +VM +VM +VM +IC +ju +ju +KS +DB +rF +uN +Fs +EA +EA +jI +KJ +yg +Hk +er +KN +BA +sV +"} +(30,1,1) = {" +sV +sV +sV +bD +wl +qU +lo +nT +bx +bx +nT +bx +bx +nT +IC +bx +bx +bx +IC +ju +bx +WH +xv +Zj +uv +Bp +EA +EA +fy +dj +sJ +al +er +on +BA +sV +"} +(31,1,1) = {" +sV +sV +sV +az +bC +cX +lo +nT +bx +bx +nT +bx +bx +nT +IC +bx +bx +bx +IC +ju +bx +WH +pn +Oe +LP +pU +Ts +wo +er +Dg +el +xc +er +on +UV +sV +"} +(32,1,1) = {" +sV +sV +sV +az +bC +eo +lo +nT +nT +nT +AJ +nT +nT +nT +IC +bx +bx +bx +IC +ju +nT +er +NB +LY +LP +wk +wk +wk +Hl +FF +bk +Vs +er +Bq +jr +sV +"} +(33,1,1) = {" +sV +sV +sV +HL +bC +gh +gU +lo +lo +lo +gU +lo +lo +lo +gU +hH +VF +qk +gU +eP +lo +er +er +sk +im +hm +xC +kG +er +er +oC +er +er +qu +oQ +sV +"} +(34,1,1) = {" +sV +sV +sV +cP +yx +Ml +YX +eo +cX +YS +WT +eo +cX +eo +IY +fn +IQ +fn +wL +rp +JK +ha +bx +er +er +er +Yw +Ra +er +XN +hi +AQ +er +qu +BA +pf +"} +(35,1,1) = {" +sV +sV +sV +bx +xD +bC +bC +bC +bC +bC +OM +qn +qD +bC +bC +YR +bC +gA +aM +aM +XE +Kp +bx +nT +bx +er +er +er +er +er +er +er +er +qu +BA +cv +"} +(36,1,1) = {" +sV +sV +sV +bx +IJ +sH +ff +yU +ff +ff +oM +ff +ff +ff +ff +ZC +bC +MX +xg +qB +kt +iS +bx +nT +bx +IL +eA +eA +mK +Lp +eA +eA +eA +Tc +BA +JV +"} +(37,1,1) = {" +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +DE +GY +DE +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +"} diff --git a/_maps/r_ruins/station/bridge/bridge_hall_bottom.dmm b/_maps/r_ruins/station/bridge/bridge_hall_bottom.dmm new file mode 100644 index 000000000000..7f2d23c73d67 --- /dev/null +++ b/_maps/r_ruins/station/bridge/bridge_hall_bottom.dmm @@ -0,0 +1,6034 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"av" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) +"aw" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"ax" = ( +/obj/machinery/light, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"aA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"aG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor{ + id = "capevacuatblast"; + name = "Аварийный выход" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aM" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"aZ" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_eva) +"bd" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"bn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"bu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"bx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"bN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"bU" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/fourcorners, +/obj/effect/turf_decal/siding/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ca" = ( +/obj/structure/closet/secure_closet/hop, +/obj/structure/sign/poster/official/love_ian{ + pixel_x = -32 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/hop) +"cj" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/corporate_showroom) +"cz" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"cF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"cJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/corporate_showroom) +"cL" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cT" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"cX" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/tacmap/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"df" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"dn" = ( +/obj/structure/showcase/machinery/cloning_pod, +/obj/effect/turf_decal/trimline/blue/filled, +/obj/effect/turf_decal/trimline/white, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"ds" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"dE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"dF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"dH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"dJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"dV" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 4; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ed" = ( +/obj/structure/table/wood/poker, +/obj/item/newspaper{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood, +/obj/item/coin/silver{ + layer = 3.01; + pixel_x = 2; + pixel_y = 14; + random_position = 0 + }, +/obj/item/coin/gold{ + layer = 3.02; + pixel_x = -2; + pixel_y = 9; + random_position = 0 + }, +/obj/item/coin/silver{ + pixel_x = -4; + pixel_y = 14; + random_position = 0 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"ee" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"ef" = ( +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ex" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"eH" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 15; + pixel_y = 3 + }, +/obj/item/storage/ashtray/bronze, +/obj/item/taperecorder{ + pixel_y = 13 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"eJ" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"eL" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"eP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"eX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"fm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/white/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"fo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"fp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"fz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"fE" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"fI" = ( +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"fR" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"gd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"gj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"gl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"go" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"gA" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"gL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"gO" = ( +/obj/structure/showcase/mecha/ripley, +/turf/open/floor/mech_bay_recharge_floor, +/area/command/corporate_showroom) +"gY" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"hi" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/engineering/gravity_generator"; + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"hq" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"hs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"hF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"hG" = ( +/obj/structure/table/wood, +/obj/item/folder/red{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/folder/red{ + layer = 3.01; + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/pen/red{ + layer = 3.02; + pixel_x = 3 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"hH" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command) +"hL" = ( +/obj/item/flashlight/lamp/green{ + layer = 3.01; + pixel_y = 8 + }, +/obj/structure/table/wood/poker, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"hN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"hO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/command/corporate_showroom) +"hW" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"hZ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"ie" = ( +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ij" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command/corporate_showroom) +"ik" = ( +/turf/open/floor/plasteel/dark/side, +/area/command) +"im" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"ix" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"iD" = ( +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"iH" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"iM" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"iQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"iR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"iS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"jb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"jd" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"jk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"jm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"jo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"jr" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"jw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/teleporter) +"jx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"jO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"jW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"kc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"kg" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"km" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"kp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/toy/plush/asfumoplushie{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/toy/plush/cirfumoplushie{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/command/corporate_showroom) +"kq" = ( +/obj/structure/fluff/hedge, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"ks" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"kv" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"kz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"kB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"kX" = ( +/obj/item/kirbyplants, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"lb" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"lg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ll" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"lu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"lJ" = ( +/obj/structure/stairs/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"lL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"lN" = ( +/obj/structure/stairs/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"lP" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"lS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + layer = 3.01; + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/newspaper{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/food/donut/berry{ + layer = 3.01; + pixel_y = -1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"ma" = ( +/obj/machinery/vending/snack/green, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"mb" = ( +/obj/structure/showcase/perfect_employee, +/obj/effect/turf_decal/trimline/blue/filled, +/obj/effect/turf_decal/trimline/white, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"mm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/white/corner, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"mB" = ( +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"mH" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"mK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mN" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"mT" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/landmark/stationroom/bridge_garden/random, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"mW" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/command/corporate_showroom) +"mX" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"nd" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ne" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"nk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"np" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"nq" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"nw" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command/corporate_showroom) +"ny" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"nD" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_eva) +"nF" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"nI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"nX" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ob" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"oc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"oi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"oj" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"ol" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"oo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"ox" = ( +/obj/machinery/light, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + color = "red" + }, +/obj/item/toy/plush/carpplushie{ + layer = 3.01; + pixel_x = 4; + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/command/corporate_showroom) +"oJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"oP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"oU" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"pb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"pg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/fax, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ph" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"pt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"pv" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command) +"pL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"pX" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 1; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 1; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"qb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/command/corporate_showroom) +"qf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"qg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"qh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"qj" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = -1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"ql" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/grappa{ + pixel_x = 6; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/bottle/grenadine{ + layer = 3.01; + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + layer = 3.02; + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/hop) +"qp" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/tacmap/directional/east, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qB" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"qE" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"qL" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_eva) +"qO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"rh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"rn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"rt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"rz" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"rG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/command) +"rL" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"rV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command) +"se" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/command) +"sj" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_x = -12; + pixel_y = 5 + }, +/obj/item/folder/yellow{ + pixel_x = -16 + }, +/obj/item/stamp/captain{ + pixel_x = -10 + }, +/obj/item/pen/fountain/captain{ + pixel_x = 15; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"sw" = ( +/turf/open/floor/plasteel/dark/corner, +/area/command) +"sz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"sS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"sZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/item/storage/box/ids{ + pixel_y = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"te" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"tw" = ( +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing/right{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"tD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"tE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"tK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/cafeteria) +"tP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"tU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"tV" = ( +/obj/item/radio/intercom/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"tX" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"ub" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"uh" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/coffeemaker, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"uj" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"uq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"uz" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"uD" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"uE" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"uF" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"uH" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_eva) +"uI" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"uK" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"uN" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"uO" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"uX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "capevacuatblast"; + name = "capitan evacuation blast door"; + pixel_x = -32; + req_access_txt = "19" + }, +/obj/machinery/camera/motion{ + c_tag = null; + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"vl" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vo" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"vq" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"vw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/teleporter) +"vA" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"vH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"vK" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/folder{ + layer = 3.01; + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"vL" = ( +/obj/structure/table/reinforced, +/obj/machinery/fax, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"vR" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_eva) +"vS" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"vV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command/corporate_showroom) +"vW" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"vX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"vY" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"we" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_centre) +"wm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"wr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"wv" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"ww" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"wy" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"wG" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"wJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"wN" = ( +/obj/structure/table/wood, +/obj/item/hand_labeler{ + pixel_y = 12 + }, +/obj/item/storage/fancy/donut_box{ + layer = 3.03; + pixel_x = -3; + pixel_y = -12 + }, +/obj/item/flashlight/lamp/green{ + layer = 3.02; + pixel_x = -16; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + layer = 3.02; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"wW" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"wX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"xd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"xn" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/wood, +/obj/item/toy/talking/griffin{ + pixel_x = 4; + pixel_y = 21 + }, +/obj/item/toy/talking/owl{ + layer = 3.02; + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + layer = 3.01; + pixel_x = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/command/corporate_showroom) +"xG" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xK" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/autoname{ + dir = 8; + view_range = 12 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"xT" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"ya" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"yz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"yJ" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"yK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"yY" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"za" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"zb" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"zd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/structure/fireaxecabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"zf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"zm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"zu" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"zH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"zJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cola/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"zL" = ( +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/tacmap/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"zS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"zW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"Ab" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"Ac" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Ao" = ( +/turf/closed/wall/r_wall, +/area/service/cafeteria) +"Ar" = ( +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/hop) +"AB" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"AE" = ( +/obj/structure/table/wood, +/obj/item/coin/plasma{ + pixel_x = -16 + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Captain's Desk"; + pixel_y = 3; + req_access_txt = "20" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"AU" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"AV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"AY" = ( +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"AZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Bh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"Bs" = ( +/obj/structure/table/reinforced, +/obj/item/aicard{ + pixel_y = -12 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Bu" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command/corporate_showroom) +"Bv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"BD" = ( +/obj/structure/sign/poster/official/safety_eye_protection, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"BN" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"BX" = ( +/obj/structure/sign/poster/official/nanotrasen_logo, +/turf/closed/wall/r_wall, +/area/command) +"Ck" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"Cy" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"CG" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"CM" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"CN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"CS" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"CT" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination/hop, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"CV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"De" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/noticeboard/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"Dg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"Dj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"Ds" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/filingcabinet{ + pixel_x = -5 + }, +/obj/structure/filingcabinet/employment{ + pixel_x = 5 + }, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"DI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command) +"DR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/departments/mait/alt{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"DY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/command/corporate_showroom) +"Ek" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"El" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/vending/coffee, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Er" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Ez" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"EB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"EM" = ( +/obj/item/flashlight/lamp/green{ + pixel_y = 8 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"EN" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"ES" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"ET" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"EX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_eva) +"EZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"Fm" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/teleporter) +"Fn" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp/green{ + layer = 3.03; + pixel_x = -16; + pixel_y = -9 + }, +/obj/item/toy/cards/deck{ + layer = 3.02; + pixel_x = 2 + }, +/obj/item/coin/gold{ + layer = 3.01; + pixel_x = -10; + pixel_y = 4; + random_position = 0 + }, +/obj/item/coin/silver{ + pixel_x = -4; + pixel_y = 1; + random_position = 0 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"Fr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/command/corporate_showroom) +"Fv" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"FG" = ( +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"FI" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"FJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"FT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/suit_storage_unit/captain, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Gc" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Gk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Gn" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command/corporate_showroom) +"Gr" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp/hop{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/hand_labeler{ + pixel_y = -13 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Gu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"Gz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"GF" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"GH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/table/wood/fancy, +/obj/item/food/grown/coffee{ + dry_grind = 0; + grind_results = list(/datum/reagent/toxin/coffeepowder=30); + pixel_x = -7 + }, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"GS" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = 13; + pixel_y = 6 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/milk{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"GT" = ( +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"GX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/teleporter) +"GY" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/regular{ + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/requests_console/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"Hh" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"HF" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"HH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"HO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"HV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"Ib" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Il" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"Im" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"IF" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_eva) +"IG" = ( +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"IX" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Jb" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 38 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"Jc" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/wood/fancy, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"Jj" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Js" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"Ju" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"Jx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"JD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"JH" = ( +/obj/machinery/door/airlock/external{ + req_one_access_txt = "19" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"JI" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"JK" = ( +/obj/structure/table/wood, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/item/food/chips{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/item/food/donut/caramel, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"JO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"JR" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/entertainment/money_small{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"JW" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Kd" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"Kn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Kp" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_eva) +"Kq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"KA" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"KK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"La" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Ld" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"Lg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"Lw" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Lx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"Ly" = ( +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"LC" = ( +/obj/machinery/camera/autoname{ + dir = 4; + view_range = 12 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"LF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"LG" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"LJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"LL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"LO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"LP" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"LU" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command) +"LV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Mg" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Mv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Mx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"MA" = ( +/obj/structure/showcase/mecha/marauder, +/turf/open/floor/mech_bay_recharge_floor, +/area/command/corporate_showroom) +"MD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"MK" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 3 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = -1 + }, +/obj/machinery/keycard_auth/directional/east{ + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"MN" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"MP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"MQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"Nd" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"Nh" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"Nl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"Nr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Nv" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 6 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/hop) +"Ny" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup{ + layer = 3.01; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/pipe{ + layer = 3.02; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/pen{ + layer = 3.01; + pixel_x = -8; + pixel_y = -1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"NC" = ( +/obj/structure/table/wood, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"NF" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"NG" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"NH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/toy/plush/goatplushie{ + layer = 3.01; + pixel_x = 6 + }, +/obj/item/toy/plush/marfumoplushie{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/command/corporate_showroom) +"NW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command/corporate_showroom) +"Od" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"Os" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_eva) +"Oy" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/corporate_showroom) +"OC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"OF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"OI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"OK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"OM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/cafeteria) +"OY" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/corporate_showroom) +"Pb" = ( +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"Pd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"Pf" = ( +/obj/machinery/door/airlock/external{ + req_one_access_txt = "19" + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"Pg" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"Ph" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"Pl" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/corporate_showroom) +"Pr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"Pu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_eva) +"PT" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"Qa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"Qc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Qj" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal{ + pixel_y = 12 + }, +/obj/item/hand_tele{ + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Qk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/pdapainter, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Qx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"QC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"QN" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 38 + }, +/obj/structure/sign/directions/vault{ + dir = 1; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"QY" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Rk" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"Rz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/command/corporate_showroom) +"RG" = ( +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing/left, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"RQ" = ( +/turf/open/floor/carpet, +/area/service/cafeteria) +"Sa" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Sh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"Si" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 5; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Sm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Sq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/corporate_showroom) +"SD" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/closet/crate/graviton_beacon, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"SF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"SG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + layer = 3.01; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"SH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"SI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"SO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"SR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"SX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"SZ" = ( +/obj/effect/spawner/random/trash/food_packaging, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Tm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/cafeteria) +"Tn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"Ts" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"Tv" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"Tw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Ty" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"TJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"TL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"TN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/corporate_showroom) +"TS" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"TV" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/closet/crate/jetpack, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"TY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + view_range = 12 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Uj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + layer = 3.01; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"Up" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Ur" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"Us" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/corporate_showroom) +"Uu" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"UC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"UD" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"UJ" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"UL" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_centre) +"UO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/button/door/directional/south{ + id = "councilblast"; + name = "Council Blast Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"UP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"UU" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"Vc" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"Vf" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"Vh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"Vj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"Vm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"Vv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"Vw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/item/melee/chainofcommand{ + pixel_y = -14 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"VB" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"VH" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"VN" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = -13; + pixel_y = 3 + }, +/obj/item/folder/blue{ + layer = 3.02; + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/folder/yellow{ + layer = 3.03; + pixel_y = -1 + }, +/obj/item/pen{ + layer = 3.05; + pixel_x = -3; + pixel_y = -8 + }, +/obj/item/pen/blue{ + layer = 3.04; + pixel_y = -5 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"VW" = ( +/obj/structure/sign/departments/mait, +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"VX" = ( +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 26 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 38 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"VY" = ( +/turf/template_noop, +/area/template_noop) +"Wb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/white/warning, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"Wf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"Wj" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Wo" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"WI" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"WL" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"WW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"WZ" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1; + view_range = 12 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Xg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/command/corporate_showroom) +"Xh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"Xn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_centre) +"Xo" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/white/warning, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/corporate_showroom) +"Xt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Xw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"XB" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"XD" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"XE" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow/fourcorners, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"XG" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Yf" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"Yq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/north) +"YC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"YE" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"YL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"YZ" = ( +/obj/machinery/holopad, +/obj/structure/chair/wood{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"Za" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Zb" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Ze" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Zf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"Zg" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"Zh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central/low_level_centre) +"Zv" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ZA" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/secure/briefcase{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ZC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_centre) +"ZF" = ( +/obj/machinery/computer/price_controller{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/effect/turf_decal/siding/green{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ZW" = ( +/turf/closed/wall/r_wall, +/area/command) +"ZX" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) + +(1,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +Xw +Xw +Ly +Xw +Xw +Xw +Ly +Xw +Xw +Xw +Xw +Ly +Xw +Xw +Xw +Ly +Ly +Mx +Ly +Ly +Ly +Ly +VY +VY +VY +"} +(2,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +Xw +La +Oy +Gu +Bh +hZ +ny +MP +hZ +hZ +Gu +ny +hZ +Bh +MP +Us +iQ +qO +IG +Pf +Tn +JH +VY +VY +VY +"} +(3,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +LP +OF +OF +LP +LP +Pl +mw +ET +zm +Bv +pb +Bv +Bv +Bv +Bv +dH +yK +fm +ET +qb +hO +ij +mN +mN +mN +mN +VY +VY +VY +"} +(4,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +ca +Ar +ql +Nv +LP +jb +Wb +dn +Kn +cj +kq +EM +oj +uF +hL +kq +nw +Xo +mb +TN +DY +hZ +vw +Fm +Er +mN +VY +VY +VY +"} +(5,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +Ar +cF +UC +oJ +LP +JD +HH +Tw +cJ +ox +ZW +ZW +ZW +ZW +ZW +ZW +kp +vV +Tw +AB +Fr +OY +GX +jw +Cy +mN +VY +VY +VY +"} +(6,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +Jj +Mv +cT +Xt +CT +Pd +dJ +cj +xn +gO +ZW +ub +pv +pv +vq +ZW +MA +NH +nw +LG +Dj +Ib +mN +mN +mN +mN +VY +VY +VY +"} +(7,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +LP +Gr +oU +LV +LP +pt +dJ +MN +ZW +ZW +ZW +lb +se +sw +qE +ZW +ZW +ZW +MN +LG +Dj +MN +aw +Sa +iR +Ly +VY +VY +VY +"} +(8,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +iH +Mv +CM +vA +LP +LG +dJ +Nr +ZW +ZF +Uu +bU +hH +ik +XE +zL +AY +ZW +zJ +ix +Rz +bn +bn +bn +NW +zW +VY +VY +VY +"} +(9,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +fI +Mv +Sm +kz +LP +LG +dJ +gA +ZW +PT +GF +vX +rV +rG +SF +iD +uj +ZW +lu +Gn +Nd +OY +Ab +mW +Dj +zW +VY +VY +VY +"} +(10,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +LP +XG +LP +LP +LP +LJ +fR +Ly +ZW +vL +sZ +kX +LU +DI +kX +Bs +zd +ZW +UL +UL +UL +UL +UL +zu +jm +Ly +VY +VY +VY +"} +(11,1,1) = {" +VY +VY +VY +VY +VY +zf +HV +HV +wy +Os +aZ +Wj +df +gN +zb +ZW +ZW +UJ +BX +vk +eX +BX +UJ +ZW +ZW +Wj +tw +RG +mT +UL +KA +Dj +zW +VY +VY +VY +"} +(12,1,1) = {" +VY +VY +VY +VY +VY +jx +jx +xd +gl +IF +av +IX +uO +wm +cL +cL +TJ +IX +cL +uq +Sh +LC +IX +TJ +cL +ie +uO +uI +IX +we +pt +Dj +zW +VY +VY +VY +"} +(13,1,1) = {" +VY +VY +VY +VY +VY +uE +uE +wy +Ju +Kp +av +Gc +uO +Gz +iS +tP +iS +HO +EB +SR +Lg +Sh +tP +iS +HO +iS +KK +WI +CS +we +LG +Dj +zW +VY +VY +VY +"} +(14,1,1) = {" +VY +VY +VY +VY +VY +VY +aZ +vR +Ju +Kp +av +ex +uO +Gz +lg +FJ +Gk +ll +ww +vW +vW +Zg +UP +jO +ef +fo +KK +uI +wv +we +LG +Xg +Ly +VY +VY +VY +"} +(15,1,1) = {" +VY +VY +VY +VY +VY +VY +aZ +uH +Ju +EX +av +IX +uO +Gz +cL +lg +VY +VY +VY +VY +VY +VY +VY +VY +fo +cL +KK +uI +cL +we +ix +Dj +Ly +XD +XD +VY +"} +(16,1,1) = {" +VY +VY +VY +VY +VY +VY +aZ +nD +Ju +qL +aZ +IX +uO +Gz +cL +cL +VY +VY +VY +VY +VY +VY +VY +VY +cL +cL +KK +uI +IX +UL +Bu +Sq +ZX +MD +pX +VY +"} +(17,1,1) = {" +VY +VY +VY +VY +VY +VY +aZ +aZ +Pu +aZ +aZ +TY +uO +Gz +ES +cL +VY +VY +VY +VY +VY +VY +VY +VY +cL +rt +KK +uI +ax +UL +Ly +WW +Ly +Kd +TS +VY +"} +(18,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +Ek +JO +rL +YC +QN +Ur +EZ +vW +Ur +VY +VY +VY +VY +VY +VY +VY +VY +Vf +vW +SO +Vf +mB +YC +iM +JO +Mg +UL +HF +VY +"} +(19,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +mH +Zf +wX +Vj +ya +ya +CV +wJ +hF +VY +VY +VY +VY +VY +VY +VY +VY +Vm +tE +Ty +Pr +Pr +AV +VH +ZC +lN +UL +SZ +VY +"} +(20,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +nX +Qx +YL +rz +Jb +kv +oi +Nh +kv +VY +VY +VY +VY +VY +VY +VY +VY +XB +Nh +oi +XB +Nh +rz +Ts +vH +Lw +UL +JW +VY +"} +(21,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +UL +hN +UL +UL +sS +uO +oi +ll +cL +VY +VY +VY +VY +VY +VY +VY +VY +cL +UP +oi +uI +WZ +Ao +Ao +gj +Ao +Ao +CG +VY +"} +(22,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +tV +Kq +Ph +UL +IX +uO +oi +Zg +IX +VY +VY +VY +VY +VY +VY +VY +VY +IX +ww +oi +uI +IX +Ao +Hh +yz +Tm +uz +uz +VY +"} +(23,1,1) = {" +VY +VY +VY +VY +VY +VY +hs +Ez +Wf +qB +we +IX +UD +oi +Rk +Zg +VY +VY +VY +VY +VY +VY +VY +VY +ww +Rk +oi +qB +cL +OM +GS +zH +Uj +pL +Ny +VY +"} +(24,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +NC +bu +cL +we +Gc +cL +go +Rk +Rk +Im +ES +UD +Nh +Nh +qB +rt +jo +Rk +Rk +rh +cL +CS +OM +uh +zH +YZ +RQ +Fv +VY +"} +(25,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +JK +bu +SX +we +ex +cL +za +UD +Rk +tE +Zg +vW +vW +vW +vW +ww +wJ +Rk +qB +za +cL +wv +OM +GH +Js +oP +tK +ks +VY +"} +(26,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +ma +Qa +Zg +we +cL +cL +bx +dE +qh +Pr +aA +Il +ol +te +Il +qh +oo +aA +dE +LF +cL +IX +OM +Ji +SH +SG +RQ +lS +VY +"} +(27,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +Jc +eP +UU +UL +IX +uK +bd +lL +VX +tU +xT +jW +Ld +xK +jW +FG +qg +xT +lL +uK +bd +IX +Ao +zS +rn +kB +uz +MQ +VY +"} +(28,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +Ck +QC +Ck +Ck +tX +tX +tX +Ck +TL +uD +Zh +UL +UL +UL +UL +TL +Pg +Zh +Vv +Vv +Vv +Vv +Vv +Vv +aG +Vv +Vv +gL +VY +"} +(29,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +Pb +np +hq +UO +gY +mK +kg +Ck +uO +tU +uI +UL +hW +nI +Nl +uO +qg +uI +Vv +cz +km +ne +Vw +uX +Wo +NG +Vv +DR +VY +"} +(30,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +uN +ob +BN +vK +eH +Od +ph +yY +Lx +tU +fz +UL +VB +Vc +ed +OI +qg +Tv +Vv +xG +FI +FI +EN +OC +AZ +nk +Vv +OK +VY +"} +(31,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +GY +ob +VN +wN +hG +Od +wG +Ck +uO +Rk +jr +UL +VB +Fn +JR +uO +qg +Vf +Vv +pg +ZA +dV +Si +Up +Up +Ds +Vv +OK +VY +"} +(32,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +Xh +De +Yf +mm +Yf +qp +yJ +Ck +eJ +lJ +vo +UL +lP +Xn +GT +uO +kc +dF +LL +Zv +tD +Jx +qj +Qj +CN +nd +Vv +OK +VY +"} +(33,1,1) = {" +VY +VY +VY +VY +VY +VY +Ck +Ck +Ck +Ck +wW +Ck +Ck +Ck +ee +ee +ee +ee +ee +ee +ee +BD +uO +SI +ds +Vv +jk +LO +WL +AE +Za +oc +Qk +Vv +vY +VY +"} +(34,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +JI +jd +NF +wr +hi +TV +ee +uO +SI +nF +Vv +bN +gd +sz +sj +EN +eL +vl +Vv +TS +VY +"} +(35,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +Zb +fp +QY +aM +qf +Vh +Dg +SI +SI +uI +Vv +Qc +Ac +El +MK +cX +fE +FT +Vv +nq +VY +"} +(36,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +NF +Ze +JI +wr +mX +SD +ee +im +Rk +vS +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +Vv +nq +VY +"} +(37,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +ee +ee +ee +ee +ee +ee +ee +XD +YE +VW +XD +TS +TS +TS +TS +TS +TS +TS +AU +AU +VY +"} diff --git a/_maps/r_ruins/station/bridge/bridge_hall_bottom_old.dmm b/_maps/r_ruins/station/bridge/bridge_hall_bottom_old.dmm new file mode 100644 index 000000000000..a809371ffcac --- /dev/null +++ b/_maps/r_ruins/station/bridge/bridge_hall_bottom_old.dmm @@ -0,0 +1,4643 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"at" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"av" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ax" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"aG" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"aH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"aM" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"aV" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"bu" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/item/storage/secure/safe{ + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"bG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"bL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"bU" = ( +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ca" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cx" = ( +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/structure/ladder, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"cz" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"cB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"cL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"df" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"dC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"dL" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"dO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"dU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"dV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ea" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ed" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ee" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"eu" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"ex" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"eD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"eH" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"eK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"fp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"fx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"fz" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/melee/chainofcommand, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"fE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"fI" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"gb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"gc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"gj" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/south{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"gv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"gA" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"gF" = ( +/obj/machinery/camera/motion{ + c_tag = null; + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"gG" = ( +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"gL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"gO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"gY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"hi" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/engineering/gravity_generator"; + dir = 8; + name = "Gravity Generator APC"; + pixel_x = -25 + }, +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"hj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"hs" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"hG" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"hH" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/captain"; + dir = 1; + name = "Captain's Office APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/machinery/fax, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"hN" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"hO" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"hW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"hZ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"im" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"iD" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"iH" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"iM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"jc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"jd" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"ji" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"jo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"kg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"km" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ks" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"kv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"kw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"kz" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"kN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"kX" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"lg" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"lC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"lF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"lJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"lL" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/meeting_room) +"lN" = ( +/obj/structure/stairs/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"lP" = ( +/obj/effect/decal/cleanable/vomit/old{ + icon_state = "vomit_4-old" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ma" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"md" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"mm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"mq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"mH" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"mJ" = ( +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"mK" = ( +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"mN" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"mX" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"ne" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"nk" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/folder/blue, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"no" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"ny" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"nD" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"nX" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"ob" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"oe" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"oq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ot" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/south{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"oS" = ( +/obj/machinery/ticket_machine{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"oU" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"pa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"pb" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/blazaam{ + pixel_x = -12; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/bottle/gin{ + pixel_y = 17 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"pg" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"ph" = ( +/obj/machinery/fax, +/obj/structure/table, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"pl" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"pv" = ( +/obj/structure/table/wood, +/obj/item/hand_tele, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pN" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"qh" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"qj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ql" = ( +/obj/effect/decal/cleanable/vomit/old{ + icon_state = "vomit_2-old" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"qm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"qp" = ( +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/ian{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"qx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"qB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qU" = ( +/obj/machinery/camera/autoname, +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"rc" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"rn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"rt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"rz" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"rL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"se" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"si" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"sj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"sr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"ss" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"sw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"sx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"sA" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"sF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/effect/turf_decal/loading_area, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"sZ" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"tf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"tw" = ( +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"tK" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"tL" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"tR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"tV" = ( +/obj/structure/closet/firecloset, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"tX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_centre) +"ub" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"uq" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_centre) +"uy" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"uz" = ( +/obj/machinery/pdapainter, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"uD" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"uE" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"uI" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"uK" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"uN" = ( +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 36 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"uO" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"uX" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"vk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"vo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"vq" = ( +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vH" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vK" = ( +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"vS" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"vV" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/item/storage/photo_album{ + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"vY" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"vZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"we" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"wr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"ww" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"wy" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"wJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_eva) +"wN" = ( +/obj/machinery/holopad, +/obj/effect/mapping_helpers/ianbirthday, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"wW" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"xT" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"xX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIW"; + location = "QM" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"yp" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"yq" = ( +/obj/effect/spawner/random/trash/food_packaging, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"ys" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"yz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"yC" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"yJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"yQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"yU" = ( +/obj/machinery/camera/autoname, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"yV" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"zb" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"zH" = ( +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"zS" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"zT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"zW" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "CHE" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"zY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"An" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Ao" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Ar" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"AE" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"AI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"AU" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"AV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Bh" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Bs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"BD" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"BN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"BX" = ( +/obj/machinery/holopad, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ck" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"Cl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"Cm" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Cr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"Cv" = ( +/obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Cx" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"CK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"CM" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"CS" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Dg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"Dh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Dj" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Ds" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"DI" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"DJ" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Eg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Ek" = ( +/obj/structure/stairs/south{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"El" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"Er" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"EN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Ft" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Fv" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"FG" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_centre) +"FI" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"FJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"FT" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"FZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Gg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Gr" = ( +/obj/structure/ladder, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Gw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"GR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"GV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"GY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/computer/security/telescreen/vault{ + pixel_y = 30 + }, +/obj/machinery/accounting{ + pixel_y = 11 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Hh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"HD" = ( +/obj/machinery/camera{ + c_tag = "Captain's Office"; + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"HV" = ( +/obj/structure/closet/emcloset, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"HW" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ix" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints/north) +"IG" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"IS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"IX" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"IY" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Jb" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"Jf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Js" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"JH" = ( +/obj/machinery/door/airlock/external{ + req_one_access_txt = "19" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"JI" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"JK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"JO" = ( +/obj/machinery/computer/communications, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"JW" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Kd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Kj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Kn" = ( +/obj/effect/decal/cleanable/vomit/old{ + icon_state = "vomit_1-old" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Kp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Kq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Kw" = ( +/obj/effect/spawner/random/trash/mess, +/obj/effect/spawner/random/trash/garbage, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"KA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Lw" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Lx" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/computer/price_controller{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"LD" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "HoP Queue Shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"LG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"LJ" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/grappa{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/reagent_containers/food/drinks/bottle/grenadine{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/storage/ashtray/bronze, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -16; + pixel_y = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"LK" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_eva) +"LL" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit/old{ + icon_state = "vomit_4-old" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"LP" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room) +"LQ" = ( +/obj/machinery/vending/cart, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"LU" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Mf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/flasher{ + id = "hopflash"; + pixel_x = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Mx" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"MK" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"MN" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Nh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Nv" = ( +/obj/machinery/light, +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Ny" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Nz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"ND" = ( +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"NF" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"NH" = ( +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Od" = ( +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/hop, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Oi" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_eva) +"Os" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"Oy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"OF" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"OK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"OP" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"OY" = ( +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Pb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Pd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Pf" = ( +/obj/machinery/door/airlock/external{ + req_one_access_txt = "19" + }, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"Ph" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hop"; + name = "Head of Personnel APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Pq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Pu" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"PP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"PQ" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/coin/plasma, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"PV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Qc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Qj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"Qk" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"QC" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"QH" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"QP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"QY" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Ri" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Rk" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ro" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"RG" = ( +/obj/structure/stairs/south{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"RQ" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"RR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Si" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Sm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Sp" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Sq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"SD" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"SF" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"SH" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"SI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Tm" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Tn" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"Ts" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Tv" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"TL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"TV" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"TY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ue" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Uj" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ur" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"UD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"UJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"UL" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_centre) +"UP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Vc" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/bottle/hcider{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/ashtray/bronze, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Vf" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Vh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"Vj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Vo" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Vv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"VB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"VH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"VN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"VS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"VV" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"VW" = ( +/turf/open/floor/plating, +/area/command/meeting_room/council) +"VX" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"VY" = ( +/turf/template_noop, +/area/template_noop) +"Wb" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/candycornliquor{ + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_x = -14; + pixel_y = 20 + }, +/obj/item/reagent_containers/food/drinks/bottle/fernet{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -13; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Wd" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Wf" = ( +/obj/machinery/door/airlock/command{ + name = "Conference Room"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room) +"Wo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"Wv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"WL" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"WM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"WW" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Xh" = ( +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Xn" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Xt" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Xw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"XB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"XD" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"XG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"XU" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"XW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Yb" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Yf" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_x = 30 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Yk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Yq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/north) +"YC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"YE" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"YH" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/command/teleporter"; + dir = 8; + name = "Teleporter APC"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"YL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"YV" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hop) +"Za" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Zb" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Ze" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Zf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Zg" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"Zs" = ( +/obj/structure/chair/office, +/obj/machinery/button/ticket_machine{ + pixel_x = 32; + pixel_y = 38 + }, +/obj/machinery/button/door{ + id = "hopqueue"; + name = "Queue Shutters Control"; + pixel_x = 32; + pixel_y = 25; + req_access_txt = "57" + }, +/obj/machinery/button/door{ + id = "hop"; + name = "Privacy Shutters Control"; + pixel_x = 32; + pixel_y = 12; + req_access_txt = "57" + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"Zv" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Zw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ZA" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/meeting_room/council) +"ZC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"ZW" = ( +/turf/closed/wall/r_wall, +/area/command) +"ZX" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) + +(1,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +Ck +Xw +Xw +Xw +Ck +Xw +Xw +Xw +Xw +Ck +Ck +Xw +Xw +Xw +Xw +Ck +Xw +Ck +Mx +Ck +Ck +Ck +Ck +VY +VY +VY +"} +(2,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +Xw +MN +MN +Oy +Za +MN +MN +av +MN +hZ +MN +Qc +MN +MN +ny +vS +MN +Qc +Pd +Pf +Tn +VW +JH +VY +VY +VY +"} +(3,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +mN +mN +mN +Tv +Cv +qj +qj +qj +qj +Xn +OY +Sm +qj +qj +qj +OY +qj +FJ +qj +qj +qj +bU +lL +LP +LP +LP +VY +VY +VY +"} +(4,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +Vo +YH +CS +mN +Zg +LG +lP +CM +OF +Vv +Vv +Vv +Vv +Eg +Vv +Vv +Vv +OF +Si +MN +MN +qj +LP +Os +lg +LP +VY +VY +VY +"} +(5,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +yU +Nh +kv +uO +qj +xT +Vc +oU +Vv +UD +Wd +uD +gF +XG +vq +bu +vV +Vv +HV +av +FT +qj +Qk +fE +AE +LP +VY +VY +VY +"} +(6,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +Ar +XB +zS +mN +qj +Kn +pb +kz +Vv +JO +Ue +ub +iD +XG +iD +iD +iD +Vv +WL +ed +Er +qj +Wf +Qj +AE +LP +VY +VY +VY +"} +(7,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +IY +Gr +iH +mN +LL +ql +Wb +Nv +Vv +fz +pv +Xt +iD +SF +ww +Zw +cx +Vv +sZ +Gg +MN +qj +LP +hO +Lx +LP +VY +VY +VY +"} +(8,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +mN +mN +mN +Tv +qj +MN +LJ +nD +Vv +hH +qB +vH +vI +UJ +iD +iD +Vf +Vv +LU +ne +MN +uE +LP +LP +LP +LP +VY +VY +VY +"} +(9,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +fI +qj +qj +FJ +qj +wy +hs +Bh +Vv +PQ +Bs +kX +se +iD +HD +Zv +eK +Vv +km +ZA +df +cX +gO +Kp +Za +Ck +VY +VY +VY +"} +(10,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +MN +qj +gG +UL +UL +UL +UL +UL +OF +Vv +Vv +Vv +Vv +vk +Vv +Vv +Vv +OF +UL +UL +UL +UL +UL +dV +Kp +Ck +VY +VY +VY +"} +(11,1,1) = {" +VY +VY +VY +VY +VY +wJ +Oi +we +qj +MN +UL +kN +hW +ca +QH +IX +yp +jc +VS +Hh +Hh +An +jo +IG +IX +zb +tw +RG +Yk +UL +KA +Sq +Ck +VY +VY +VY +"} +(12,1,1) = {" +VY +VY +VY +VY +VY +LK +Oi +Er +qj +MN +UL +ys +gv +gv +gb +IX +Cm +zY +Hh +Hh +Hh +Hh +Hh +cL +QP +IX +Cm +Gw +bL +UL +MN +oq +Ck +VY +VY +VY +"} +(13,1,1) = {" +VY +VY +VY +VY +VY +wJ +Oi +ND +md +av +UL +bG +gv +gv +gv +cL +TL +vZ +IX +IX +mq +Hh +Hh +Hh +Hh +Hh +Hh +xX +bL +UL +Er +Dj +Ck +VY +VY +VY +"} +(14,1,1) = {" +VY +VY +VY +VY +VY +VY +Oi +MN +qj +eD +UL +XW +gv +gv +gv +gv +gb +VV +IX +IX +IX +IX +PP +Hh +Hh +Hh +Hh +Hh +vo +UL +av +Sq +Ck +VY +VY +VY +"} +(15,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +VB +qj +MN +UL +IX +pa +gv +gv +gv +gv +gb +IX +IX +IX +IX +IX +PP +Hh +Hh +Hh +Hh +TL +UL +MN +NH +Ck +XD +XD +XD +"} +(16,1,1) = {" +VY +VY +VY +VY +VY +VY +Yq +MN +qj +MN +UL +IX +IX +pa +gv +gv +gv +zT +gb +IX +IX +IX +Yb +IX +PP +Hh +Hh +TL +IX +UL +MN +Sq +ZX +JW +JW +VY +"} +(17,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +Ck +Pu +Ck +FG +TY +IX +IX +pa +si +gv +gv +gv +gb +IX +IX +IX +IX +no +mq +mq +IX +ax +FG +Ck +WW +VX +Ck +JW +VY +"} +(18,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +Ek +rn +rL +YC +WM +WM +WM +WM +Pq +ss +ss +ss +ss +gc +WM +WM +WM +WM +WM +WM +WM +WM +YC +iM +yz +Lw +UL +JW +VY +"} +(19,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +mH +Zf +SI +Vj +tL +tL +tL +tL +tL +vW +qm +qm +dC +Wv +tf +uK +uK +uK +uK +uK +uK +uK +AV +VH +ZC +lN +UL +JW +VY +"} +(20,1,1) = {" +VY +VY +VY +VY +VY +VY +UL +nX +rn +YL +rz +FZ +FZ +FZ +FZ +FZ +FZ +Kj +PV +PV +yQ +PV +GV +FZ +FZ +FZ +FZ +FZ +FZ +rz +Ts +yz +Lw +UL +QC +VY +"} +(21,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +Jb +Ao +Jb +FG +RR +QP +QP +IX +fx +IX +IX +pa +gv +Ro +gv +gv +gb +fx +IX +IX +IX +ax +UL +uq +gj +UL +UL +JW +VY +"} +(22,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +tV +Kq +Ny +UL +gv +gv +gv +gv +AI +IX +DJ +Cm +TL +Ro +gv +ji +gv +gb +IX +IX +IX +IX +UL +IX +yz +Tm +XD +JW +VY +"} +(23,1,1) = {" +VY +VY +VY +VY +VY +VY +cz +Ny +Kq +Ft +UL +qx +gv +gv +gv +gv +AI +Cm +TL +IX +aH +gv +gv +gv +gv +cL +AI +IX +IX +UL +BX +yz +Uj +XD +JW +VY +"} +(24,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +qU +kw +Ri +UL +IX +pa +gv +gv +gv +gv +TL +IX +IX +dU +pa +gv +gv +gv +gv +CK +cL +QP +UL +rt +zH +XD +XD +JW +VY +"} +(25,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +YV +Kq +Ph +UL +IX +IX +pa +gv +gv +gv +gv +AI +IX +dU +IX +pa +gv +gv +gv +CK +Dh +vZ +UL +zW +Js +tK +Kd +ks +VY +"} +(26,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +ma +Kq +Ny +UL +IX +IX +IX +pa +gv +gv +gv +gv +IX +dU +IX +IX +pa +IS +bL +Dh +IX +IX +UL +UP +SH +XD +RQ +OK +VY +"} +(27,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +eu +Kq +Ny +UL +MK +IX +IX +IX +IX +vl +CK +ea +IX +dU +dL +IX +Rk +pa +lF +IX +IX +IX +UL +IX +rn +XD +RQ +OK +VY +"} +(28,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +Jb +hN +Jb +UL +UL +tX +tX +tX +UL +UL +FG +UL +UL +sx +UL +UL +FG +UL +UL +UL +UL +UL +UL +pg +aG +XD +JW +OK +VY +"} +(29,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +Pb +Kq +gY +mK +Kq +Kq +kg +tR +uy +yV +GR +LD +gA +yz +rn +gL +aG +Wo +Wo +Wo +Wo +Wo +Wo +Wo +Wo +JW +JW +OK +VY +"} +(30,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +uN +EN +BN +vK +eH +Od +JK +LQ +aV +sA +rc +yC +oS +at +IX +ot +ZW +ZW +ZW +ZW +XD +hj +hj +hj +hj +XD +XD +sr +VY +"} +(31,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +GY +ob +VN +wN +hG +nk +ph +uz +pN +sA +rc +yC +IX +HW +UP +rn +Nz +ex +Ur +ZW +pl +oe +oe +RQ +mJ +pl +mJ +OK +VY +"} +(32,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +Xh +qp +Yf +mm +im +AU +yJ +Jf +Zs +Mf +lJ +sF +cB +XU +dO +rn +sj +uX +Ur +ZW +FI +JW +yq +JW +JW +pl +JW +Fv +VY +"} +(33,1,1) = {" +VY +VY +VY +VY +VY +VY +Jb +Jb +Jb +Jb +wW +Jb +Jb +Jb +ee +ee +ee +ee +ee +ee +ee +BD +qh +ZW +ZW +ZW +ZW +XD +JW +JW +JW +JW +JW +JW +JW +VY +"} +(34,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +JI +jd +NF +wr +hi +TV +ee +sw +El +Ix +Ds +OP +hj +Sp +JW +mJ +JW +pl +pl +pl +VY +"} +(35,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +Zb +fp +QY +aM +fp +Vh +Dg +sw +Cr +DI +uI +uI +hj +yq +JW +JW +JW +pl +mJ +mJ +VY +"} +(36,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +NF +Ze +JI +wr +mX +SD +ee +Cl +DI +uI +uI +uI +hj +oe +Kw +pl +JW +pl +mJ +Cx +VY +"} +(37,1,1) = {" +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +VY +ee +ee +ee +ee +ee +ee +ee +ee +Yq +Yq +YE +Yq +Yq +XD +vY +vY +vY +lC +vY +vY +vY +VY +"} diff --git a/_maps/r_ruins/station/bridge/bridge_hall_old.dmm b/_maps/r_ruins/station/bridge/bridge_hall_old.dmm new file mode 100644 index 000000000000..fdaadd60fac9 --- /dev/null +++ b/_maps/r_ruins/station/bridge/bridge_hall_old.dmm @@ -0,0 +1,5228 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "AIW" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"al" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/command"; + name = "Bridge APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ar" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"ax" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/turf/open/openspace, +/area/hallway/primary/central/west) +"az" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"aH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "capblast"; + name = "captains blast door" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"aM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"aP" = ( +/obj/effect/landmark/observer_start, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"bk" = ( +/obj/structure/chair/office{ + dir = 1; + name = "Security Station" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"bp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"bt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bx" = ( +/turf/open/openspace, +/area/hallway/primary/central/east) +"bC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"bD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bG" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"bT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"bW" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"ch" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"cv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"cw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"cD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"cP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"cX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"db" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"dk" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"dm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_x = -31; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -31; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -31; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"dx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"dK" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command) +"dU" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"dW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHE"; + location = "AIE" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"el" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command) +"eo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"er" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/east) +"eu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"eC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W9" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"eI" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"eJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"fc" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"fi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"fl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"fn" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"fy" = ( +/obj/structure/lattice, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"fD" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W5" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"fI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"fK" = ( +/turf/open/openspace, +/area/hallway/primary/central/west) +"fL" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"ga" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"gc" = ( +/obj/structure/table, +/obj/item/ai_module/supplied/freeform, +/obj/structure/sign/plaques/kiddie{ + pixel_x = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload East"; + dir = 8; + network = list("aiupload") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"gd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"gh" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"gA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Stbd"; + location = "HOP" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"gB" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/hallway/primary/central/west) +"gE" = ( +/obj/structure/lattice, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"gL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"gP" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"gU" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/east) +"gX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"ha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"hd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"hi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"hn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"hq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"hy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"hO" = ( +/obj/machinery/computer/upload/ai, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"ie" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"il" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) +"im" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"ip" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iq" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"iu" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"iw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"iA" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -15 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"iC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iF" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"iS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"iU" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"ja" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W3" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"jp" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"jr" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"jD" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/command) +"jG" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"kf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"ky" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -21 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"kH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"kO" = ( +/obj/machinery/door/firedoor, +/turf/open/openspace, +/area/hallway/primary/central/west) +"kR" = ( +/obj/structure/ladder, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"kT" = ( +/turf/open/openspace, +/area/command) +"kZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"lf" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"lk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"ln" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plating, +/area/command/teleporter) +"lo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/east) +"lF" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/north) +"lM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"lR" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"lT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"me" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/turf/open/floor/wood, +/area/command/meeting_room) +"mf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"ml" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"mo" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mp" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ms" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"mw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"my" = ( +/obj/structure/lattice, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"mF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"mK" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"nc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"ng" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"ni" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"nl" = ( +/obj/structure/closet/crate, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"nn" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"no" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"nr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"nu" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room) +"nB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"nQ" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"nS" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"nT" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/east) +"oe" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)" + }, +/obj/effect/landmark/event_spawn, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 12; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"os" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oA" = ( +/obj/machinery/light, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/west) +"oC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"oJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"oM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"oQ" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"oW" = ( +/obj/structure/table, +/obj/item/beacon, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"oX" = ( +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"pa" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/north) +"pd" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"pn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"pq" = ( +/obj/machinery/button/door{ + id = "heads_meeting"; + name = "Security Shutters"; + pixel_y = 24 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"pG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"pM" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"pO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/porta_turret/ai{ + dir = 8; + scan_range = 6 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"pV" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/openspace, +/area/hallway/primary/central/south) +"pW" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pZ" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qk" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/east) +"qn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"qu" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"qw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"qx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) +"qA" = ( +/obj/machinery/door/firedoor, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"qD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"qI" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"qQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"rl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"rv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rE" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"rF" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/command) +"rH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"rJ" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room) +"rS" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"se" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"sz" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"sH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"sJ" = ( +/obj/structure/chair/office{ + dir = 8; + name = "Crew Station" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"sL" = ( +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"sV" = ( +/turf/template_noop, +/area/template_noop) +"sX" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"th" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"tN" = ( +/obj/machinery/light, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tP" = ( +/obj/machinery/camera{ + c_tag = "Captain's Quarters"; + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ub" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"uh" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ut" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"uM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"uP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"va" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/openspace, +/area/hallway/primary/central/north) +"vk" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"vu" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vJ" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command) +"vU" = ( +/obj/structure/table, +/obj/item/ai_module/supplied/oxygen, +/obj/item/ai_module/zeroth/onehuman, +/obj/machinery/door/window{ + dir = 1; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/reset/purge, +/obj/structure/window/reinforced, +/obj/effect/spawner/random/aimodule/harmful, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ai_module/supplied/protect_station, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"vX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/meeting_room) +"wl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"ww" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"wJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"wN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"wT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"wZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"xj" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"xo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"xu" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/door/firedoor, +/turf/open/openspace, +/area/hallway/primary/central/north) +"xv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/command) +"xD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA2"; + location = "Dorm" + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"xG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/east) +"xH" = ( +/obj/structure/chair/office{ + dir = 8; + name = "Command Station" + }, +/obj/machinery/keycard_auth{ + pixel_x = -25; + pixel_y = -25 + }, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = -39; + pixel_y = -25; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"xI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"xL" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xP" = ( +/obj/structure/closet/secure_closet/captains, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"xR" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"xU" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"yb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"yg" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command) +"yq" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"yu" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"yx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"yD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"yK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"yM" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"yU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"yY" = ( +/obj/structure/lattice, +/obj/structure/cable, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"zj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"zF" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"zO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"zQ" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"Ao" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor{ + id = "capblast"; + name = "captains blast door" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"As" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"At" = ( +/turf/template_noop, +/area/commons/fitness/recreation) +"AD" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/east) +"AG" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"AJ" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/primary/central/east) +"AL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W6" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"AQ" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/command) +"Bf" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/hallway/primary/central/west) +"Bk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Bq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"Bt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/meeting_room) +"BA" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"BG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"BR" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/meeting_room) +"BU" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"BY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/obj/machinery/fax, +/turf/open/floor/plasteel/dark, +/area/command) +"Cf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Cg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "EVA" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Cl" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Cz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"CO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"CV" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"CZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"Dg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Dl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Dm" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W7" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Du" = ( +/turf/open/openspace, +/area/command/meeting_room) +"DE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"DG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"DL" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W2" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"DN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W8" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Ea" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ee" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Ew" = ( +/obj/structure/displaycase/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"EQ" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"ES" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"EW" = ( +/obj/structure/railing/corner, +/turf/template_noop, +/area/template_noop) +"EX" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W1" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Fe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Fk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Fm" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Ft" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Fy" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"FK" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"FL" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/command/teleporter) +"FO" = ( +/obj/structure/lattice, +/obj/machinery/porta_turret/ai{ + dir = 8; + scan_range = 6 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"FQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Gb" = ( +/obj/structure/table, +/obj/item/ai_module/core/full/asimov, +/obj/item/ai_module/core/freeformcore, +/obj/machinery/door/window{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/effect/spawner/random/aimodule/harmless, +/obj/effect/spawner/random/aimodule/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/ai_module/core/full/custom, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ai_module/supplied/quarantine, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"Gf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "heads_meeting"; + name = "privacy shutters" + }, +/turf/open/floor/plating, +/area/command/meeting_room) +"Gk" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"Gn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"Gp" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Gr" = ( +/turf/closed/wall/r_wall, +/area/command) +"Gy" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"GD" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"GN" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + name = "AI Upload turret control"; + pixel_y = -25 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"GY" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"Hb" = ( +/obj/machinery/computer/upload/borg{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"Hf" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"Hk" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command) +"Hl" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches, +/obj/item/razor{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = -23 + }, +/obj/item/storage/ashtray/bronze, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Hq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"HI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W13" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Id" = ( +/obj/machinery/computer/shuttle_flight/labor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"In" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Ir" = ( +/obj/machinery/door/poddoor{ + id = "capblast"; + name = "captains blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"It" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"Iv" = ( +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"IC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"IE" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"IJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"IO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"IY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Je" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"Jp" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai_upload) +"Js" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"Ju" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"Jv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"JJ" = ( +/obj/machinery/light, +/turf/open/openspace, +/area/hallway/primary/central/west) +"JK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"JL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"JT" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"JV" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Kf" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/open/floor/plating, +/area/command/teleporter) +"Kt" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"KD" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"KG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command) +"KJ" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"KN" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"KU" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Lp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"Lu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"LP" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"LQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=QM"; + location = "CHW" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"LR" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/command/teleporter) +"LV" = ( +/obj/structure/cable, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"LZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ma" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"MG" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/north) +"MO" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"MT" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"MU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"MV" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor, +/turf/open/openspace, +/area/hallway/primary/central/south) +"MX" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = -24 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"MZ" = ( +/obj/machinery/light, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"Nh" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"No" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ny" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Nz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"NA" = ( +/turf/closed/wall, +/area/hallway/primary/central/north) +"NB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"NC" = ( +/obj/structure/dresser, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"NE" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Oc" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"Os" = ( +/obj/structure/table/reinforced, +/obj/item/aicard{ + pixel_x = 4 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/storage/firstaid/regular{ + pixel_x = -15 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"OB" = ( +/obj/structure/chair/office{ + name = "Engineering Station" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"OM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"OP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W14" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"OW" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/command) +"Pa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/ladder, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Pe" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"Pg" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Ph" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Pi" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "W4" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Pq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"PC" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"PF" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/hallway/primary/central/north) +"PR" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"PU" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Qb" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"Qm" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Qn" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/command) +"Qs" = ( +/obj/machinery/light, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"Qu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Qw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/tacmap/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"QD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/west) +"QE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"QF" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"QL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"QX" = ( +/obj/structure/closet/crate, +/obj/item/crowbar, +/obj/machinery/camera/autoname, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"Ra" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"Rh" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"Ri" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/south) +"Rk" = ( +/turf/open/openspace, +/area/hallway/primary/central/north) +"Rn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Rs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) +"RV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"RW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Sa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Sd" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room) +"Sf" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"Sh" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/meeting_room) +"Sp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Sr" = ( +/obj/item/beacon, +/obj/effect/landmark/navigate_destination, +/obj/effect/landmark/blobstart, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"Ss" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"SF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"SV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"SZ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/bot, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/north) +"Tc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"Tg" = ( +/turf/open/openspace, +/area/hallway/primary/central/south) +"Tk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"Tq" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"TD" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command) +"TU" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"Ue" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/hallway/primary/central/west) +"Ui" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"Un" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/multitool{ + pixel_x = -14 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"UL" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"UV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/south) +"Vx" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/west) +"VM" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/east) +"VQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"VU" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/meeting_room) +"VW" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/central/west) +"Wo" = ( +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"WA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"WH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command) +"WK" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/button/door{ + id = "capblast"; + name = "Captains Blast Door Control"; + pixel_x = -39; + pixel_y = -25; + req_access_txt = "19" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"WO" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"WT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"WV" = ( +/obj/machinery/light, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/primary/central/north) +"WW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/west) +"Xa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Xr" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"Yh" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"Ym" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 22 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Yq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/power/apc{ + areastring = "/area/command/meeting_room"; + dir = 4; + name = "Conference Room APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/meeting_room) +"Yw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/east) +"YD" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"YE" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/primary/central/low_level_centre) +"YR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Dorm"; + location = "HOP2" + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) +"YS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"YX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Zj" = ( +/obj/structure/railing/corner, +/obj/structure/chair/office{ + dir = 8; + name = "Logistics Station" + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command) +"Zk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "EVA2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "W12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"Zl" = ( +/obj/machinery/light, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/command/meeting_room) +"Zn" = ( +/obj/machinery/camera/motion{ + c_tag = "AI Upload West"; + dir = 4; + network = list("aiupload") + }, +/obj/structure/table, +/obj/item/ai_module/reset, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"ZC" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 36 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = 32; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) + +(1,1,1) = {" +sV +sV +sV +FQ +NE +FQ +sV +sV +sV +sV +sV +Cf +WW +ww +xQ +Qu +Fm +sV +sV +sV +sV +sV +sV +sV +sV +sV +It +EW +sV +sV +sV +sV +sV +sV +sV +sV +"} +(2,1,1) = {" +sV +sV +sV +Dl +gd +dm +Tk +Rk +Rk +Rk +zj +VW +Nh +iu +Bq +Bq +Bq +rH +kH +Rs +rh +rh +Je +VW +ax +VW +JT +BU +VW +VW +VW +Qb +Ju +lk +lk +sV +"} +(3,1,1) = {" +sV +sV +sV +tc +LQ +ga +Oc +Oc +Oc +Oc +yu +fK +Nh +rE +fK +yq +fK +fK +VW +fK +fK +yq +fK +fK +kO +fK +nB +BU +nS +BR +nu +nu +Bt +VU +nu +nu +"} +(4,1,1) = {" +sV +sV +sV +Dl +Rn +eu +Oc +oW +hy +Kf +Oc +fK +Nh +rE +gB +WO +lf +lf +lf +lf +lf +lf +lf +lf +WO +Ue +JT +BU +oA +nu +pq +Js +Sd +Sh +MZ +nu +"} +(5,1,1) = {" +sV +sV +sV +ES +SF +ip +Oc +qI +pG +ln +Oc +fK +Rh +rE +fK +lf +NC +Hl +lf +Qw +bG +WK +xL +Wo +lf +fK +ms +BU +fK +Gf +Du +Du +rJ +oe +nQ +nu +"} +(6,1,1) = {" +sV +sV +sV +qQ +gd +pi +yD +nl +dx +FL +Oc +Vx +Nh +rE +fK +lf +mp +tP +lf +In +Ma +Ma +PU +xP +Ir +fK +fI +BU +fK +Gf +Du +Du +rJ +me +iU +nu +"} +(7,1,1) = {" +sV +sV +sV +Dl +gd +Gp +Oc +QX +Pa +LR +Oc +fK +Nh +rE +fK +lf +pZ +jG +lf +db +Yh +IE +RW +kR +Ir +fK +JT +th +JJ +nu +Yq +bp +cD +ie +Zl +nu +"} +(8,1,1) = {" +sV +sV +sV +hn +wl +nc +Oc +Oc +Oc +Oc +yu +fK +Nh +rE +gB +lf +uh +lf +lf +fL +Cl +Cl +xI +Ew +Ao +Bf +fi +th +VW +BR +nu +nu +vX +VU +nu +nu +"} +(9,1,1) = {" +sV +sV +sV +Dl +gd +wZ +Tk +pa +va +lF +xu +VW +pM +rE +fK +Ir +sC +sC +sC +sC +sC +vz +Pe +GN +lf +fK +xo +zQ +VW +MV +zF +zF +Pq +Iv +Ee +bW +"} +(10,1,1) = {" +sV +sV +sV +Dl +gd +tN +MG +pa +Rk +WV +PF +fl +Hf +QF +QD +WO +Ir +Ir +WO +aH +aH +lf +Ir +Ir +lf +CZ +ar +UL +fl +il +mF +Ri +Fe +Iv +qu +bW +"} +(11,1,1) = {" +sV +sV +sV +Dl +gd +MO +Tk +pa +Rk +lF +mf +yM +sL +sL +YD +sL +sL +sL +se +sL +sL +Xr +sL +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Fe +wT +oX +bW +"} +(12,1,1) = {" +sV +sV +sV +Dl +gd +wZ +Tk +pa +Rk +lF +mf +yM +sL +sL +YD +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Fe +Tq +iA +bW +"} +(13,1,1) = {" +sV +At +uP +Dl +gd +MO +Tk +pa +Rk +lF +mf +yM +sL +sL +YD +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Fe +hd +CV +bW +"} +(14,1,1) = {" +sV +At +uP +ES +gd +MO +Tk +pa +Rk +lF +mf +yM +sL +sL +YD +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +VQ +sL +sL +yM +kZ +zF +Ri +Fe +Tc +lM +bW +"} +(15,1,1) = {" +sV +CO +As +eI +gd +iC +Tk +pa +Rk +lF +mf +yM +sL +sL +YD +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Fe +Iv +Bk +bW +"} +(16,1,1) = {" +sV +KU +Fy +EX +DN +MO +Tk +pa +pa +lF +mf +yM +sL +sL +YD +sL +sL +FO +iq +iq +iq +iq +FO +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Sa +gX +xj +bW +"} +(17,1,1) = {" +sV +Ea +No +DL +eC +PR +MG +ml +ml +ml +MG +no +yM +yM +YD +YD +YD +Gk +hq +hq +ky +hq +jp +yM +eJ +VQ +yM +yM +TU +il +qx +qx +dU +fh +dU +bW +"} +(18,1,1) = {" +Sf +No +No +ja +Cg +No +qA +Rk +Rk +lF +mf +yM +sL +sL +iw +sL +sL +Gk +Zn +xR +WA +Gb +jp +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +pV +ag +sz +yb +"} +(19,1,1) = {" +BG +ni +MU +Pi +aP +ni +RV +Rk +Rk +lF +mf +yM +sL +sL +yM +sL +sL +Gk +hO +Sr +GD +Hb +Jp +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Tg +oJ +Xa +qw +"} +(20,1,1) = {" +Ny +Pg +No +fD +Zk +No +PC +Rk +Rk +lF +mf +yM +sL +sL +yM +sL +sL +Gk +gc +gP +Jv +vU +Jp +sL +sL +VQ +sL +sL +yM +kZ +zF +Tg +Tg +dW +DG +sX +"} +(21,1,1) = {" +sV +ub +No +AL +HI +os +MG +nr +nr +nr +PF +YE +yM +yM +yM +yM +gL +Gk +hq +hq +hq +hq +yY +fy +fy +my +bT +yM +gE +dU +qx +qx +dU +dU +Ph +sV +"} +(22,1,1) = {" +sV +LZ +No +Dm +OP +bt +Tk +pa +pa +lF +mf +yM +sL +sL +yM +sL +sL +pO +vk +vk +lR +vk +pO +sL +sL +my +sL +sL +yM +kZ +zF +Tg +JL +ut +rv +sV +"} +(23,1,1) = {" +sV +Ui +Ui +rl +gd +Hq +Tk +pa +Rk +lF +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +my +sL +sL +yM +kZ +zF +Tg +JL +pd +kf +sV +"} +(24,1,1) = {" +sV +sV +Ui +IO +gd +Hq +Tk +pa +Rk +lF +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +my +sL +sL +yM +kZ +zF +Tg +dU +pW +Sp +sV +"} +(25,1,1) = {" +sV +sV +Ui +rl +gd +Dg +Tk +pa +Rk +lF +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +my +sL +sL +yM +kZ +zF +Tg +JL +Qm +Cz +sV +"} +(26,1,1) = {" +sV +NA +NA +vu +gd +Hq +Tk +pa +Rk +lF +mf +yM +sL +sL +yM +sL +sL +sL +yM +sL +sL +yM +sL +sL +sL +my +sL +sL +yM +kZ +zF +Tg +dU +Fk +Ym +sV +"} +(27,1,1) = {" +sV +SZ +EQ +rl +gd +Hq +Tk +pa +Rk +lF +mf +yM +sL +sL +MT +sL +sL +sL +MT +sL +sL +MT +sL +sL +sL +my +sL +sL +yM +kZ +zF +zF +LP +LV +cw +sV +"} +(28,1,1) = {" +sV +Nz +Nz +No +gd +Kt +gU +lT +lT +lT +gU +Yw +Yw +Yw +AD +Yw +Ra +Yw +gU +Yw +Yw +TD +mw +mw +mw +WH +uM +mw +mw +Gr +mw +mw +Gr +mo +UV +sV +"} +(29,1,1) = {" +sV +wJ +vI +Lu +gd +Hq +lo +nT +nT +VM +Lp +VM +VM +VM +Lp +VM +IC +VM +Lp +VM +VM +mw +rF +ch +FK +xC +BY +vJ +KG +dK +yg +Hk +im +KN +BA +sV +"} +(30,1,1) = {" +sV +sV +sV +bD +wl +qU +lo +nT +bx +bx +nT +bx +bx +bx +nT +bx +IC +bx +nT +bx +VM +mw +xv +Zj +Gn +iF +AG +xH +QL +zO +sJ +al +Gr +Gr +UV +sV +"} +(31,1,1) = {" +sV +sV +sV +az +bC +cX +lo +nT +bx +bx +nT +bx +bx +bx +nT +bx +IC +bx +nT +bx +VM +Gr +pn +Gr +kT +kT +SV +nn +wN +Id +el +xc +fc +Gr +UV +sV +"} +(32,1,1) = {" +sV +sV +sV +az +bC +eo +lo +nT +nT +nT +AJ +nT +nT +nT +nT +nT +IC +nT +qk +nT +VM +VM +NB +Gr +OW +kT +yK +ng +Un +Ss +bk +Ft +xU +Gr +jr +sV +"} +(33,1,1) = {" +sV +sV +sV +az +bC +gh +gU +lo +lo +lo +gU +lo +lo +lo +gU +lo +lo +lo +gU +lo +xG +gU +er +Gr +Gr +Gr +Gr +Gy +Os +dk +oC +OB +Qn +Gr +oQ +sV +"} +(34,1,1) = {" +sV +sV +sV +cP +yx +fn +YX +eo +cX +YS +WT +eo +cX +eo +IY +eo +cX +eo +wL +rp +JK +ha +NB +VM +VM +VM +Gr +KD +rS +jD +hi +AQ +KJ +Gr +zF +JV +"} +(35,1,1) = {" +sV +sV +sV +bx +xD +bC +bC +bC +bC +bC +OM +qn +qD +bC +bC +YR +bC +gA +aM +aM +aM +ha +nT +bx +bx +Qs +Gr +Gr +Gr +Gr +Gr +Gr +Gr +Gr +zF +cv +"} +(36,1,1) = {" +sV +sV +sV +bx +IJ +sH +az +xg +az +az +oM +az +az +az +az +ZC +bC +MX +yU +qB +kt +iS +nT +nT +nT +VM +VM +VM +mK +Lp +VM +VM +VM +VM +zF +QE +"} +(37,1,1) = {" +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +DE +GY +DE +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +sV +"} diff --git a/_maps/RandomRuins/StationRuins/bridge_interesting.dmm b/_maps/r_ruins/station/bridge/bridge_interesting.dmm similarity index 75% rename from _maps/RandomRuins/StationRuins/bridge_interesting.dmm rename to _maps/r_ruins/station/bridge/bridge_interesting.dmm index 29ff247c88fc..3e1ed8bd80e7 100644 --- a/_maps/RandomRuins/StationRuins/bridge_interesting.dmm +++ b/_maps/r_ruins/station/bridge/bridge_interesting.dmm @@ -9,39 +9,28 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ad" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ae" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "af" = ( /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ag" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -53,7 +42,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ah" = ( /obj/machinery/light{ dir = 1 @@ -68,16 +57,17 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ai" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "aj" = ( /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ak" = ( /obj/structure/sign/directions/security{ dir = 1; @@ -98,7 +88,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "al" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -107,7 +97,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "am" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -117,14 +107,14 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "an" = ( /turf/closed/wall, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ao" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ap" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -133,7 +123,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aq" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -148,7 +138,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ar" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -157,18 +147,18 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "as" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "at" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "au" = ( /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -179,23 +169,27 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "av" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; pixel_y = 30 }, +/obj/machinery/camera{ + c_tag = "Central Hallway North-West" + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aw" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ax" = ( /turf/closed/wall/r_wall, /area/engineering/storage/tech) @@ -204,80 +198,72 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "aA" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aB" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L1" + icon_state = "W1" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aC" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L3" + icon_state = "W2" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aD" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L5" + icon_state = "W3" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aE" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L7" + icon_state = "W4" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aF" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L9" + icon_state = "W5" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aG" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L11" + icon_state = "W6" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aH" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L13" + icon_state = "W7" }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aI" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "aJ" = ( /obj/effect/turf_decal/tile/neutral{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aK" = ( /obj/effect/turf_decal/tile/neutral{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 9 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aL" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -286,7 +272,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aM" = ( /obj/structure/sign/directions/evac{ dir = 4; @@ -303,35 +289,32 @@ pixel_y = -24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aN" = ( /obj/machinery/camera{ c_tag = "Central Hallway North-East" }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aO" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, /area/command) "aP" = ( /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "aQ" = ( /obj/machinery/power/apc{ areastring = "/area/engineering/gravity_generator"; dir = 8; name = "Gravity Generator APC"; - pixel_x = -25; - pixel_y = 1 + pixel_x = -25 }, -/obj/structure/table, -/obj/item/paper/guides/jobs/engi/gravity_gen, -/obj/item/pen/blue, /obj/structure/cable, /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/closet/crate/graviton_beacon, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "aR" = ( @@ -343,7 +326,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aS" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -352,86 +335,119 @@ dir = 4; pixel_x = -24 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "aT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aU" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aV" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L2" + icon_state = "W8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aW" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L4" + icon_state = "W9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aX" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Lockers"; location = "EVA" }, /obj/effect/turf_decal/plaque{ - icon_state = "L6" + icon_state = "W10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aY" = ( /obj/effect/landmark/observer_start, /obj/effect/turf_decal/plaque{ - icon_state = "L8" + icon_state = "W11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "aZ" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Security"; location = "EVA2" }, /obj/effect/turf_decal/plaque{ - icon_state = "L10" + icon_state = "W12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ba" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L12" + icon_state = "W13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bb" = ( /obj/effect/turf_decal/plaque{ - icon_state = "L14" + icon_state = "W14" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bc" = ( /obj/effect/landmark/event_spawn, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "bd" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=EVA2"; location = "Dorm" }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "be" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, @@ -443,12 +459,11 @@ "bg" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/command/heads_quarters/captain) "bh" = ( /turf/closed/wall/r_wall, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bi" = ( /obj/structure/lattice, /turf/template_noop, @@ -459,6 +474,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bk" = ( @@ -472,21 +491,21 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bl" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/structure/closet/radiation, /obj/machinery/airalarm{ dir = 4; pixel_x = -23 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, +/obj/structure/closet/crate/jetpack, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bm" = ( @@ -494,13 +513,17 @@ /obj/item/radio/intercom{ pixel_y = -35 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bn" = ( /obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bo" = ( @@ -509,9 +532,6 @@ }, /obj/structure/closet/radiation, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) "bp" = ( @@ -523,9 +543,10 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) @@ -536,23 +557,27 @@ }, /obj/machinery/light, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "br" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "bs" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "bt" = ( /obj/machinery/camera/autoname{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) @@ -561,9 +586,10 @@ name = "Conference Room"; req_access_txt = "19" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/wood, /area/command/meeting_room) @@ -590,6 +616,10 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/wood, /area/command/meeting_room) "by" = ( @@ -645,8 +675,6 @@ /area/command/heads_quarters/captain) "bB" = ( /obj/structure/table/wood, -/obj/item/folder/blue, -/obj/item/stamp/captain, /obj/machinery/light{ dir = 1 }, @@ -654,41 +682,33 @@ areastring = "/area/command/heads_quarters/captain"; dir = 1; name = "Captain's Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, +/obj/machinery/fax, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"bC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plating, -/area/command) "bD" = ( /obj/structure/cable, /obj/machinery/door/airlock/command/glass{ name = "Bridge"; - req_access_txt = "19" + req_access_txt = "19"; + security_level = 6 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/dark, /area/command) "bE" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) "bF" = ( @@ -705,20 +725,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"bH" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/command) +/area/hallway/primary/central/north) "bI" = ( /obj/machinery/light{ dir = 1 @@ -728,7 +735,7 @@ areastring = "/area/command"; dir = 1; name = "Bridge APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -736,9 +743,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/dark, /area/command) "bJ" = ( @@ -753,9 +757,6 @@ dir = 1 }, /obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/dark, /area/command) "bK" = ( @@ -773,16 +774,12 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, /turf/open/floor/plasteel/dark, /area/command) "bL" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "bM" = ( @@ -793,6 +790,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/dark, /area/command) "bN" = ( @@ -806,22 +807,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/command) -"bO" = ( -/obj/structure/cable, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/dark, /area/command) "bP" = ( @@ -839,9 +824,6 @@ dir = 1 }, /obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/dark, /area/command) "bQ" = ( @@ -851,9 +833,6 @@ }, /obj/structure/table, /obj/item/beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 6 - }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "bR" = ( @@ -866,6 +845,12 @@ /obj/structure/table/wood, /obj/item/hand_tele, /obj/machinery/camera/autoname, +/obj/item/folder/blue{ + pixel_x = -16 + }, +/obj/item/stamp/captain{ + pixel_x = -15 + }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "bT" = ( @@ -887,7 +872,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "bW" = ( /obj/machinery/light{ dir = 8 @@ -895,17 +880,13 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "bX" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, /obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "bY" = ( @@ -916,9 +897,6 @@ pixel_x = 29; pixel_y = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "bZ" = ( @@ -929,7 +907,6 @@ dir = 8; pixel_x = 23 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/heads_quarters/captain) "ca" = ( @@ -967,6 +944,10 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain) "cc" = ( @@ -977,7 +958,6 @@ /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/door/firedoor/border_only{ dir = 1 }, @@ -988,7 +968,6 @@ dir = 1; layer = 2.9 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/machinery/door/firedoor/border_only{ dir = 1 }, @@ -1003,43 +982,39 @@ "cf" = ( /obj/structure/chair/comfy/black, /obj/structure/disposalpipe/segment, -/turf/open/floor/carpet, -/area/command/meeting_room) -"cg" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/structure/cable, /turf/open/floor/carpet, -/area/command/heads_quarters/captain) +/area/command/meeting_room) "ch" = ( /obj/structure/table/wood, /obj/item/storage/fancy/donut_box, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "ci" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cj" = ( /obj/structure/table/wood, /obj/structure/disposalpipe/segment, /obj/item/dice/d10, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "ck" = ( /obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, /turf/open/floor/carpet, /area/command/meeting_room) "cl" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/command/heads_quarters/captain) "cm" = ( @@ -1054,9 +1029,6 @@ dir = 8 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "cn" = ( @@ -1068,9 +1040,6 @@ /area/command/heads_quarters/captain) "co" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "cp" = ( @@ -1094,6 +1063,10 @@ /obj/machinery/newscaster{ pixel_y = 32 }, +/obj/item/storage/ashtray/bronze, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = 36 + }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cr" = ( @@ -1106,34 +1079,23 @@ /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"ct" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/command/heads_quarters/captain) +/area/hallway/primary/central/north) "cu" = ( /obj/machinery/door/airlock/command{ name = "Captain's Quarters"; req_access_txt = "20" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cv" = ( @@ -1145,24 +1107,12 @@ "cw" = ( /obj/machinery/vending/cigarette, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cx" = ( /obj/machinery/vending/coffee, /obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"cy" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "cz" = ( @@ -1173,16 +1123,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, /turf/open/floor/plasteel/dark, /area/command) "cA" = ( /obj/structure/dresser, -/obj/item/storage/secure/safe/caps_spare{ - pixel_x = -23 - }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cB" = ( @@ -1197,26 +1141,23 @@ /turf/open/floor/carpet, /area/command/heads_quarters/captain) "cC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/door/airlock/command{ name = "Captain's Office"; req_access_txt = "20" }, -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "cD" = ( /obj/structure/table, /obj/item/hand_tele, /obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "cE" = ( @@ -1225,9 +1166,6 @@ }, /obj/structure/closet/crate, /obj/item/crowbar, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "cF" = ( @@ -1237,20 +1175,18 @@ /obj/structure/rack, /obj/item/tank/internals/oxygen, /obj/item/clothing/mask/gas, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "cG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "cH" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/plasteel/monofloor, @@ -1264,9 +1200,10 @@ /area/command/teleporter) "cJ" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "cK" = ( @@ -1277,15 +1214,11 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "cL" = ( @@ -1295,8 +1228,8 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/newscaster{ + pixel_x = -30 }, /turf/open/floor/carpet, /area/command/meeting_room) @@ -1307,18 +1240,16 @@ freerange = 1; name = "Station Intercom (Command)" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/carpet, /area/command/meeting_room) "cN" = ( -/obj/item/book/manual/wiki/security_space_law, /obj/structure/table/wood, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/fax, /turf/open/floor/carpet, /area/command/meeting_room) "cO" = ( @@ -1344,7 +1275,6 @@ dir = 4; pixel_x = -24 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, /turf/open/floor/carpet, /area/command/meeting_room) "cR" = ( @@ -1352,7 +1282,10 @@ /obj/structure/table/wood, /obj/structure/disposalpipe/segment, /obj/item/dice/d12, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/carpet, /area/command/meeting_room) "cS" = ( @@ -1368,7 +1301,7 @@ areastring = "/area/command/meeting_room"; dir = 4; name = "Conference Room APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/wood, @@ -1387,6 +1320,8 @@ dir = 8; pixel_x = -28 }, +/obj/machinery/fax, +/obj/structure/table, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "cV" = ( @@ -1399,24 +1334,24 @@ "cW" = ( /obj/structure/weightmachine/stacklifter, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cX" = ( /obj/machinery/camera/autoname{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/carpet, /area/command/meeting_room) "cY" = ( /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "cZ" = ( /obj/machinery/holopad, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/carpet, /area/command/meeting_room) @@ -1438,10 +1373,19 @@ /obj/machinery/light{ dir = 1 }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "dc" = ( /obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/carpet, /area/command/meeting_room) "dd" = ( @@ -1455,12 +1399,11 @@ /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "de" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /obj/item/radio/intercom{ dir = 8; pixel_x = -28 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/meeting_room) "df" = ( @@ -1480,7 +1423,10 @@ }, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/wood, /area/command/meeting_room) "dh" = ( @@ -1550,20 +1496,18 @@ /obj/machinery/power/apc{ areastring = "/area/command/heads_quarters/hop"; name = "Head of Personnel APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dq" = ( -/obj/machinery/door/poddoor/preopen{ - id = "heads_meeting"; - name = "privacy shutters" +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plating, -/area/command/meeting_room) +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "dr" = ( /obj/machinery/door/airlock/command{ name = "Conference Room"; @@ -1571,10 +1515,10 @@ }, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/wood, /area/command/meeting_room) @@ -1602,8 +1546,8 @@ name = "HoP Queue Shutters" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) @@ -1618,10 +1562,7 @@ id = "hopqueue"; name = "HoP Queue Shutters" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dw" = ( @@ -1631,6 +1572,10 @@ }, /obj/effect/turf_decal/bot, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dx" = ( @@ -1638,47 +1583,47 @@ dir = 8 }, /obj/effect/turf_decal/delivery/red, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dy" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "dz" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 8 }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "dA" = ( /obj/structure/window/reinforced{ dir = 8 }, /obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dB" = ( /obj/effect/turf_decal/bot, /obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "dC" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/command/heads_quarters/hop) "dD" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, /turf/open/floor/plasteel/monofloor, /area/engineering/gravity_generator) @@ -1713,27 +1658,20 @@ "dH" = ( /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dI" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/structure/closet/firecloset, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "dJ" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/central"; - name = "Central Hall APC"; - pixel_y = -23 - }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dK" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/blue{ @@ -1747,7 +1685,7 @@ "dL" = ( /obj/structure/closet/firecloset, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "dM" = ( /obj/machinery/light, /obj/effect/turf_decal/tile/blue, @@ -1755,12 +1693,17 @@ dir = 8 }, /obj/structure/closet/firecloset, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "dN" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain) "dO" = ( @@ -1770,7 +1713,7 @@ }, /obj/structure/table, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "dP" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -1779,26 +1722,28 @@ /obj/machinery/light, /obj/structure/closet/firecloset, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "dQ" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/structure/closet/firecloset, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "dU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) "dY" = ( /obj/machinery/firealarm{ pixel_y = 24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ea" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -1809,14 +1754,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ec" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -1824,14 +1764,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 10 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ee" = ( /obj/structure/noticeboard{ pixel_x = -32 @@ -1844,19 +1779,27 @@ dir = 8 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "eg" = ( /obj/effect/turf_decal/tile/blue{ - dir = 8 + dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"ei" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "ek" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "em" = ( /turf/closed/wall/r_wall, /area/command) @@ -1880,29 +1823,26 @@ pixel_x = 32; pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "eD" = ( /obj/machinery/light{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"eL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "eP" = ( /turf/closed/wall, /area/command) "eR" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "eV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "fg" = ( @@ -1920,53 +1860,50 @@ pixel_x = 32; pixel_y = -40 }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ft" = ( /obj/machinery/light{ dir = 4 }, /obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "fC" = ( -/obj/machinery/camera/autoname{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) "fE" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) "ga" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "gb" = ( /obj/structure/disposalpipe/segment{ dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "gc" = ( /obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "gg" = ( /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ @@ -1976,25 +1913,43 @@ /obj/effect/turf_decal/delivery, /turf/open/floor/plasteel, /area/command) -"gk" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) "gy" = ( /turf/closed/wall/r_wall, /area/command/meeting_room) +"gz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "gB" = ( /turf/closed/wall, /area/command/meeting_room) +"gC" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/command) "gD" = ( /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) "gE" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) "gF" = ( @@ -2007,9 +1962,6 @@ /turf/closed/wall/r_wall, /area/command/heads_quarters/captain) "gM" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, /turf/open/floor/wood, /area/command/meeting_room) "gT" = ( @@ -2024,7 +1976,9 @@ /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "hf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "hg" = ( @@ -2043,11 +1997,11 @@ /turf/open/floor/wood, /area/command/meeting_room) "hi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/open/floor/carpet, -/area/command/meeting_room) +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) "hn" = ( /obj/structure/table, /obj/item/ai_module/supplied/quarantine, @@ -2069,24 +2023,26 @@ }, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) +"hq" = ( +/obj/tacmap/directional/north, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "ht" = ( /obj/structure/chair/comfy/brown{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"hu" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) "hw" = ( /obj/structure/displaycase/captain, /obj/machinery/firealarm{ dir = 4; pixel_x = -24 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "hy" = ( @@ -2096,11 +2052,11 @@ /turf/open/floor/wood, /area/command/meeting_room) "hE" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/command/meeting_room) "hI" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/wood, /area/command/heads_quarters/captain) "hK" = ( @@ -2108,7 +2064,6 @@ /mob/living/simple_animal/pet/fox/renault{ faction = list("neutral","silicon") }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/heads_quarters/captain) "hM" = ( @@ -2123,8 +2078,18 @@ }, /obj/item/pen, /obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 12; + pixel_y = 3 + }, /turf/open/floor/carpet, /area/command/meeting_room) +"hO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "hP" = ( /obj/structure/table, /obj/item/ai_module/core/full/asimov, @@ -2137,8 +2102,8 @@ req_access_txt = "20" }, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmless, -/obj/effect/spawner/lootdrop/aimodule_neutral, +/obj/effect/spawner/random/aimodule/harmless, +/obj/effect/spawner/random/aimodule/neutral, /obj/structure/window/reinforced{ dir = 1 }, @@ -2162,7 +2127,7 @@ /obj/machinery/power/apc/highcap/five_k{ areastring = "/area/ai_monitored/turret_protected/ai_upload"; name = "Upload APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/circuit, @@ -2191,7 +2156,7 @@ }, /obj/item/ai_module/reset/purge, /obj/structure/window/reinforced, -/obj/effect/spawner/lootdrop/aimodule_harmful, +/obj/effect/spawner/random/aimodule/harmful, /obj/structure/window/reinforced{ dir = 1 }, @@ -2208,7 +2173,6 @@ dir = 8 }, /obj/item/storage/lockbox/medal, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/heads_quarters/captain) "if" = ( @@ -2222,7 +2186,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ih" = ( /turf/open/floor/carpet, /area/command/meeting_room) @@ -2233,10 +2197,6 @@ "ip" = ( /turf/closed/wall/r_wall, /area/ai_monitored/turret_protected/ai_upload) -"iy" = ( -/obj/structure/cable, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) "iz" = ( /obj/structure/table/wood, /obj/item/pinpointer/nuke, @@ -2248,7 +2208,6 @@ /obj/machinery/light{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/heads_quarters/captain) "iE" = ( @@ -2259,16 +2218,29 @@ /turf/open/floor/wood, /area/command/meeting_room) "iJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "iK" = ( /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "iL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command) "iM" = ( /obj/machinery/requests_console{ announcementConsole = 1; @@ -2296,9 +2268,6 @@ /obj/item/storage/photo_album{ pixel_y = -10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/wood, /area/command/heads_quarters/captain) "iW" = ( @@ -2350,38 +2319,37 @@ /turf/open/floor/wood, /area/command/heads_quarters/captain) "jd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 10 - }, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "jo" = ( /obj/structure/cable, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ju" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command) "jv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, /turf/open/floor/plasteel/monofloor/dark, /area/engineering/gravity_generator) "jw" = ( -/obj/machinery/gravity_generator/main/station, +/obj/machinery/gravity_generator/main, /obj/effect/turf_decal/bot_white, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -2414,28 +2382,20 @@ /obj/machinery/door/airlock{ name = "Private Restroom" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/freezer, /area/command/heads_quarters/captain) "jQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = 11 - }, /obj/structure/mirror{ pixel_x = 28 }, +/obj/structure/sink/directional/west, /turf/open/floor/plasteel/freezer, /area/command/heads_quarters/captain) "jS" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "jV" = ( /obj/machinery/button/flasher{ id = "hopflash"; @@ -2473,7 +2433,7 @@ /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "jW" = ( -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_y = 32 }, /obj/structure/filingcabinet/chestdrawer, @@ -2511,9 +2471,6 @@ /area/engineering/gravity_generator) "kg" = ( /obj/structure/closet/secure_closet/captains, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "kh" = ( @@ -2522,30 +2479,24 @@ }, /turf/open/floor/plasteel/freezer, /area/command/heads_quarters/captain) -"kj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) "ko" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk{ dir = 1 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "kB" = ( -/obj/machinery/shower{ - dir = 1 - }, /obj/item/soap/deluxe, /obj/item/bikehorn/rubberducky, /obj/structure/curtain, +/obj/machinery/shower/directional/north, /turf/open/floor/plasteel/freezer, /area/command/heads_quarters/captain) "kF" = ( @@ -2555,20 +2506,19 @@ }, /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plating, /area/command/heads_quarters/hop) "kH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "kI" = ( /obj/machinery/holopad, /obj/effect/mapping_helpers/ianbirthday, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "kL" = ( @@ -2591,8 +2541,17 @@ "kP" = ( /turf/closed/wall/r_wall, /area/command/teleporter) +"kQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "kY" = ( /obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, /turf/open/floor/carpet, /area/command/heads_quarters/hop) "kZ" = ( @@ -2601,23 +2560,24 @@ /turf/open/floor/carpet, /area/command/heads_quarters/hop) "lb" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"lh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 +/obj/effect/turf_decal/tile/blue{ + dir = 1 }, -/turf/closed/wall/r_wall, -/area/engineering/gravity_generator) -"lr" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"lh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "lu" = ( /turf/open/floor/plasteel, /area/command/heads_quarters/hop) @@ -2629,14 +2589,9 @@ }, /obj/item/pen, /obj/item/stamp/hop, +/obj/item/trapdoor_remote/preloaded, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) -"lx" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) "ly" = ( /turf/closed/wall/r_wall, /area/engineering/gravity_generator) @@ -2648,10 +2603,11 @@ /obj/effect/turf_decal/delivery, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, /area/engineering/gravity_generator) "lD" = ( @@ -2659,17 +2615,18 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/captain) "lE" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "lF" = ( @@ -2678,14 +2635,10 @@ req_access_txt = "17" }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, /area/command/teleporter) @@ -2725,55 +2678,54 @@ /obj/structure/closet/crate, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) +"mc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "mn" = ( /obj/machinery/teleport/hub, /turf/open/floor/plating, /area/command/teleporter) +"mp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ms" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "mA" = ( /obj/machinery/newscaster{ pixel_y = 32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "mB" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, -/area/hallway/primary/central) -"mF" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) -"mI" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"mN" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/west) "nb" = ( /obj/structure/disposalpipe/sorting/mail/flip{ dir = 8; sortType = 22 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ne" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ni" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -2783,19 +2735,18 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "nj" = ( /obj/structure/table, /obj/item/checkers_kit, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "nk" = ( /obj/machinery/airalarm{ dir = 1; @@ -2805,18 +2756,15 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "nl" = ( /obj/machinery/door/airlock/highsecurity{ name = "AI Upload Access"; req_access_txt = "16" }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, /area/ai_monitored/turret_protected/ai_upload) "nm" = ( @@ -2824,11 +2772,10 @@ name = "AI Upload Access"; req_access_txt = "16" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, /area/ai_monitored/turret_protected/ai_upload) "nn" = ( @@ -2841,17 +2788,17 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "no" = ( /obj/structure/table, /obj/item/coin/antagtoken, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "np" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "nq" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -2866,7 +2813,7 @@ /obj/item/dice/d6/space, /obj/machinery/light, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ns" = ( /obj/structure/table, /obj/machinery/light{ @@ -2887,9 +2834,6 @@ /area/ai_monitored/turret_protected/ai_upload) "nu" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) "nw" = ( @@ -2909,19 +2853,15 @@ pixel_x = -25 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, /turf/open/floor/plating, /area/command/teleporter) "ny" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" }, -/obj/machinery/door/firedoor/window, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) "nz" = ( @@ -2963,10 +2903,10 @@ "nD" = ( /obj/item/ectoplasm/angelic, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "nE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, /area/command) @@ -2974,7 +2914,7 @@ /obj/structure/cable, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "nG" = ( /obj/structure/rack, /obj/item/flashlight/seclite, @@ -2983,37 +2923,36 @@ pixel_x = 23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "nH" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, /obj/structure/table/reinforced, -/obj/item/storage/fancy/donut_box, -/obj/item/gps, +/obj/machinery/fax, /turf/open/floor/plasteel/dark, /area/command) "nI" = ( /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/dark, /area/command) "nJ" = ( /obj/structure/cable, /obj/item/beacon, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "nK" = ( /obj/structure/closet/emcloset, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "nL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "nM" = ( @@ -3025,7 +2964,6 @@ }, /obj/structure/disposalpipe/trunk, /obj/machinery/disposal/bin, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, /area/command) "nN" = ( @@ -3065,32 +3003,32 @@ /obj/structure/closet/wardrobe/black, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "nR" = ( /obj/structure/cable, /obj/structure/disposalpipe/junction{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "nS" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, /turf/open/floor/plasteel, /area/command) "nT" = ( /obj/structure/cable, /obj/machinery/light, +/obj/tacmap/directional/south, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "nU" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /turf/open/floor/plating, /area/command) "nV" = ( @@ -3103,11 +3041,6 @@ /obj/effect/turf_decal/tile/brown, /turf/open/floor/plasteel/dark, /area/command) -"nW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/template_noop, -/area/template_noop) "nX" = ( /obj/structure/chair{ dir = 8; @@ -3121,14 +3054,14 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, /area/command) "nZ" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/template_noop, /area/template_noop) "oa" = ( @@ -3136,40 +3069,35 @@ dir = 4; pixel_x = -23 }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "ob" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "oc" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "od" = ( /obj/structure/closet/boxinggloves, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oe" = ( /obj/structure/cable, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AIW"; location = "QM" }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"of" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "og" = ( /obj/machinery/light{ dir = 1 @@ -3177,25 +3105,24 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 1 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "oh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "oi" = ( /obj/structure/closet/athletic_mixed, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oj" = ( /obj/effect/turf_decal/tile/brown{ dir = 8 @@ -3203,40 +3130,26 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"ok" = ( +/area/hallway/primary/central/west) +"ol" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"ol" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/area/hallway/primary/central/west) +"om" = ( +/obj/machinery/bluespace_beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"om" = ( -/obj/machinery/bluespace_beacon, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/monofloor, /area/command/teleporter) "on" = ( @@ -3261,14 +3174,9 @@ /obj/structure/sign/warning/securearea{ pixel_y = 32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "or" = ( /obj/structure/sign/warning/securearea{ pixel_y = 32 @@ -3276,11 +3184,11 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "os" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -3296,11 +3204,14 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "ot" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/monofloor/dark, /area/command) "ou" = ( @@ -3314,6 +3225,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "ox" = ( @@ -3328,9 +3243,6 @@ pixel_y = -2; req_access_txt = "19" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel/monofloor/dark, /area/command) "oy" = ( @@ -3338,6 +3250,9 @@ dir = 10 }, /obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box{ + pixel_x = 13 + }, /turf/open/floor/plasteel/dark, /area/command) "oz" = ( @@ -3383,6 +3298,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "oD" = ( @@ -3391,17 +3310,7 @@ pixel_x = -24 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"oE" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/command) +/area/hallway/primary/central/west) "oF" = ( /obj/machinery/modular_computer/console/preset/engineering{ dir = 4 @@ -3422,7 +3331,7 @@ pixel_y = 5 }, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oI" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -3431,7 +3340,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "oJ" = ( @@ -3448,7 +3360,7 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "oK" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -3460,13 +3372,15 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "oN" = ( /obj/structure/weightmachine/weightlifter, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oO" = ( /obj/structure/cable, /obj/machinery/airalarm{ @@ -3478,6 +3392,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "oQ" = ( @@ -3492,7 +3410,7 @@ /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/sunnybush, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oR" = ( /obj/structure/window/reinforced{ dir = 4 @@ -3506,7 +3424,7 @@ /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oS" = ( /obj/structure/window/reinforced{ dir = 8 @@ -3515,7 +3433,7 @@ /obj/structure/flora/ausbushes/stalkybush, /mob/living/carbon/human/species/monkey, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oT" = ( /obj/structure/window/reinforced{ dir = 4 @@ -3524,7 +3442,7 @@ /obj/structure/flora/ausbushes/ppflowers, /obj/structure/flora/ausbushes/reedbush, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oU" = ( /obj/structure/window/reinforced{ dir = 8 @@ -3533,7 +3451,7 @@ /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/ywflowers, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oV" = ( /obj/structure/window/reinforced{ dir = 4 @@ -3542,7 +3460,7 @@ /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/ausbushes/ppflowers, /turf/open/floor/grass, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "oW" = ( /obj/structure/chair{ name = "Engineering Station" @@ -3557,7 +3475,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/command) "oZ" = ( @@ -3568,10 +3485,13 @@ /turf/open/floor/plasteel/monofloor/dark, /area/command) "pa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel, -/area/command) +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) "pb" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -3655,7 +3575,6 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/dark, /area/command) "pj" = ( @@ -3669,6 +3588,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "pl" = ( @@ -3676,6 +3599,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, /area/command) "pm" = ( @@ -3687,8 +3614,12 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pn" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -3697,21 +3628,23 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "po" = ( /obj/effect/landmark/event_spawn, /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, /area/command) "pp" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, /area/command) @@ -3739,7 +3672,6 @@ dir = 1 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/command) "ps" = ( @@ -3747,27 +3679,24 @@ dir = 1 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pt" = ( /obj/machinery/camera/autoname, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pu" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Dorm"; location = "HOP2" }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "pv" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=Stbd"; @@ -3775,51 +3704,58 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "pw" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"px" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "py" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "pz" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) "pA" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pB" = ( /obj/structure/cable, /obj/structure/disposalpipe/junction/flip{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pC" = ( /obj/structure/cable, /obj/machinery/navbeacon{ @@ -3829,23 +3765,19 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pD" = ( /obj/structure/cable, /obj/structure/disposalpipe/junction/yjunction{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"pE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pF" = ( /obj/machinery/airalarm{ dir = 1; @@ -3854,21 +3786,15 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pG" = ( /obj/effect/landmark/event_spawn, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pH" = ( /obj/effect/turf_decal/tile/green{ dir = 8 @@ -3910,51 +3836,40 @@ /turf/open/floor/plasteel/dark, /area/command) "pK" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, /obj/machinery/door/poddoor/preopen{ id = "bridge blast"; name = "bridge blast door" }, /obj/machinery/status_display/evac, -/obj/machinery/door/firedoor/window, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/command) "pL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command) +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "pM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/command) +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) "pN" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pO" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 10 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pP" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -3969,7 +3884,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pR" = ( /obj/effect/turf_decal/delivery, /obj/machinery/door/firedoor, @@ -3988,77 +3903,32 @@ dir = 1 }, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 9 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "pT" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 }, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "pU" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 9 }, /turf/open/floor/plating, -/area/hallway/primary/central) -"pV" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"pW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"pY" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"pZ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qa" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qb" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qc" = ( /obj/machinery/camera/autoname{ dir = 8 @@ -4073,21 +3943,18 @@ pixel_x = 27 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qd" = ( /obj/effect/landmark/blobstart, /turf/open/floor/plasteel/dark, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qe" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/maintenance, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qf" = ( /obj/machinery/newscaster{ pixel_y = 32 @@ -4099,7 +3966,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qg" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -4108,7 +3975,7 @@ dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qh" = ( /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/blue{ @@ -4119,7 +3986,7 @@ }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qi" = ( /obj/machinery/airalarm{ dir = 1; @@ -4134,15 +4001,16 @@ }, /obj/machinery/vending/chetverochka, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qj" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/tacmap/directional/south, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qk" = ( /obj/machinery/camera/autoname{ dir = 5 @@ -4151,7 +4019,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "ql" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -4162,46 +4030,38 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qn" = ( /obj/machinery/camera/autoname{ dir = 8 }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qo" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qp" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qq" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 @@ -4213,6 +4073,10 @@ /obj/structure/sign/warning/securearea{ pixel_y = 32 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, /area/command) "qr" = ( @@ -4229,17 +4093,10 @@ /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, /area/command) -"qu" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/command) "qv" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, /turf/open/floor/plasteel, /area/command) @@ -4247,14 +4104,18 @@ /obj/structure/closet/emcloset, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "qx" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "qy" = ( /obj/machinery/airalarm{ dir = 4; @@ -4264,7 +4125,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qz" = ( /obj/machinery/firealarm{ dir = 4; @@ -4273,20 +4134,11 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qA" = ( -/obj/machinery/camera{ - c_tag = "Central Hallway North-West" - }, -/obj/machinery/airalarm{ - pixel_y = 23 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qB" = ( /obj/machinery/light{ dir = 4 @@ -4295,23 +4147,23 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qC" = ( /obj/machinery/light{ dir = 4 }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qD" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qE" = ( /obj/machinery/turretid{ control_area = "/area/ai_monitored/turret_protected/ai_upload"; @@ -4323,7 +4175,7 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qF" = ( /obj/machinery/vending/cigarette, /obj/effect/turf_decal/tile/blue, @@ -4334,14 +4186,14 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qG" = ( /obj/machinery/newscaster{ pixel_y = -32 }, /obj/effect/turf_decal/tile/blue, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qI" = ( /obj/machinery/firealarm{ dir = 4; @@ -4351,44 +4203,24 @@ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "qJ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "qK" = ( /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=AftH"; location = "AIW" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"qL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qM" = ( /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qO" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/public/glass{ @@ -4400,12 +4232,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qP" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -4414,319 +4243,159 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 9 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qS" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 8 - }, /obj/structure/extinguisher_cabinet{ pixel_x = -25 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"qT" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"qU" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"qV" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"qW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qX" = ( /obj/structure/cable, /obj/machinery/navbeacon{ codes_txt = "patrol;next_patrol=CHE"; location = "AIE" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "qY" = ( /obj/machinery/light, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, /area/command) "qZ" = ( /obj/structure/cable, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/command) "ra" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 9 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, /turf/open/floor/plasteel, /area/command) "rb" = ( -/obj/machinery/newscaster{ - pixel_y = -32 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/command) +/turf/closed/wall, +/area/hallway/primary/central/west) "rd" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "re" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"rf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"rg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"rn" = ( +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "rv" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"rw" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ry" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "rA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "rB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rD" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"rE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/area/hallway/primary/central/west) +"rD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "rF" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rG" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "rH" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rI" = ( -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "rJ" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 9 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rK" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rL" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"rM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) "rN" = ( /obj/machinery/light{ dir = 1 }, -/obj/machinery/firealarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"rP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"rQ" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "rR" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/command/heads_quarters/captain) "rT" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"sO" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "sS" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -4737,56 +4406,36 @@ pixel_y = -28 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "ta" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"th" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"tk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"tr" = ( +/area/hallway/primary/central/east) +"tz" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"tH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "ut" = ( /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "uv" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"uy" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/west) +"uy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "uJ" = ( /obj/machinery/light{ dir = 4 @@ -4794,31 +4443,20 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"uY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"vw" = ( +/area/hallway/primary/central/west) +"vr" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"vy" = ( +/area/hallway/primary/central/east) +"vw" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "vF" = ( /obj/machinery/airalarm{ dir = 1; @@ -4826,35 +4464,46 @@ }, /turf/open/floor/circuit, /area/ai_monitored/turret_protected/ai_upload) -"wj" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/command/heads_quarters/captain) "wA" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/captain) -"wF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ +"xh" = ( +/obj/structure/railing/corner{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"xq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"xw" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) "xz" = ( /obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"xO" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 9 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"xE" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) "xP" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 @@ -4863,42 +4512,38 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "xQ" = ( /obj/machinery/status_display/evac, /turf/closed/wall, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "yg" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"yh" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "yi" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"yX" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"ym" = ( +/turf/closed/wall, +/area/hallway/primary/central/south) +"yo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"yQ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "zp" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ dir = 4; id = "aquaprivacy"; @@ -4906,118 +4551,142 @@ }, /turf/open/floor/plating, /area/commons/fitness/recreation) -"zC" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"AP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +"zs" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"AM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"AP" = ( /turf/open/floor/carpet, /area/command/heads_quarters/captain) "AV" = ( /obj/effect/turf_decal/bot, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 5 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) "Be" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) +"Bj" = ( +/obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/airalarm{ + pixel_y = 23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"Bx" = ( +/turf/open/openspace, +/area/hallway/primary/central/north) "BK" = ( /turf/closed/wall/r_wall, /area/commons/fitness/recreation) "CL" = ( /obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"CQ" = ( /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/command/heads_quarters/captain) +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "CY" = ( /obj/effect/turf_decal/tile/blue{ - dir = 4 + dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"DE" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Ex" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"DI" = ( +/area/hallway/primary/central/south) +"EA" = ( /obj/structure/cable, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "EE" = ( /obj/machinery/camera/autoname{ dir = 8 }, /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"Fr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/area/hallway/primary/central/west) +"EK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"FL" = ( -/obj/machinery/firealarm{ - pixel_y = 24 +/area/hallway/primary/central/south) +"EM" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) +"Fo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"FI" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/south) "Gl" = ( /turf/closed/wall, /area/command/heads_quarters/captain) "Gr" = ( /obj/structure/cable, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"GP" = ( +"Hp" = ( /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Hy" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, /area/command/teleporter) +"HA" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/south) "HB" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 }, /turf/open/floor/carpet, /area/command/heads_quarters/captain) @@ -5026,79 +4695,80 @@ pixel_x = -25 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"HK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "If" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"Ii" = ( +/turf/template_noop, +/area/commons/fitness/recreation) +"Jt" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/south) "JP" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain) "Kr" = ( /obj/structure/disposalpipe/segment{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/carpet, /area/command/heads_quarters/hop) -"KE" = ( -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) "KF" = ( /obj/structure/chair/comfy/brown{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/open/floor/carpet, -/area/command/heads_quarters/captain) -"Lt" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"LD" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ +/area/command/heads_quarters/captain) +"KZ" = ( +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"LM" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"Ms" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/area/hallway/primary/central/east) +"LD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/turf/closed/wall/r_wall, -/area/command/teleporter) +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/north) +"LG" = ( +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"Mt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/south) "MF" = ( /obj/structure/cable, /obj/effect/turf_decal/stripes/line, @@ -5108,7 +4778,20 @@ pixel_y = -28 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) +"ML" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"MN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central/east) "Nv" = ( /obj/structure/window/reinforced{ dir = 4; @@ -5119,66 +4802,78 @@ /obj/machinery/light{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/plasteel, /area/command/heads_quarters/hop) +"NG" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "NK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"Ov" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "Pc" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) +"Pr" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) "PA" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 9 - }, /turf/open/floor/plasteel/monofloor/dark, /area/ai_monitored/turret_protected/ai_upload) -"Qm" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ +"PC" = ( +/obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"PP" = ( +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"Qq" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Qs" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/wood, /area/command/heads_quarters/captain) -"QH" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, -/obj/machinery/door/firedoor/border_only{ +"Qy" = ( +/obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) "QJ" = ( /obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/firedoor/window, /obj/machinery/door/poddoor/shutters{ id = "aquaprivacy"; name = "Privacy Shutters" @@ -5187,21 +4882,34 @@ /area/commons/fitness/recreation) "QT" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 1 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"RL" = ( +/area/hallway/primary/central/north) +"Rc" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"RJ" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/west) +"RL" = ( +/obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "RW" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -5211,16 +4919,16 @@ dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "RX" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "Se" = ( /obj/machinery/light{ dir = 4 @@ -5230,14 +4938,13 @@ pixel_x = 23 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) -"Su" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/area/hallway/primary/central/south) +"Si" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 }, -/obj/machinery/door/firedoor/border_only, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/east) "Sw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -5247,14 +4954,12 @@ dir = 4 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "Tg" = ( /obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/command) "Tu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, /turf/open/floor/wood, /area/command/heads_quarters/captain) "Tx" = ( @@ -5265,43 +4970,47 @@ /turf/open/floor/carpet, /area/command/heads_quarters/hop) "TI" = ( -/obj/machinery/light, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ - dir = 9 +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"TK" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/command) +"Uw" = ( +/obj/machinery/newscaster{ + pixel_y = 32 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "UY" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) -"Vl" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/monofloor/dark, -/area/ai_monitored/turret_protected/ai_upload) -"Vn" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 +/area/hallway/primary/central/north) +"VF" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "WR" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "WY" = ( /obj/machinery/door/airlock/public/glass{ name = "Central Access" @@ -5313,12 +5022,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 10 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) "Xi" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -5328,26 +5034,38 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor, -/area/hallway/primary/central) +/area/hallway/primary/central/west) "XI" = ( /obj/machinery/status_display/evac, /turf/closed/wall/r_wall, -/area/hallway/primary/central) +/area/hallway/primary/central/east) +"Ym" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/east) "Zg" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, /turf/open/floor/plasteel/dark, /area/ai_monitored/turret_protected/ai_upload) -"Zl" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 9 +"Zh" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 }, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/north) "Zo" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/west) +"ZG" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel, -/area/hallway/primary/central) +/area/hallway/primary/central/south) (1,1,1) = {" ab @@ -5366,7 +5084,7 @@ cY cY dH ee -ao +mN ab ab ab @@ -5399,26 +5117,26 @@ cW aP oN qb -aj -aj -aj -aj -aj -aj +xE +xE +xE +xE +xE +xE nr -an +rb aS oj +jS +jS Zo -Zo -Zo -Zo -tk +jS +jS jS Sw jS pN -an +rb nD aI oc @@ -5437,22 +5155,22 @@ oi qd aP qb -aj +xE nQ oQ oS oU bc -aj +xE af -fE -ok -yX -pY -DI -DI -QT -zC +xE +uv +xq +xq +xq +xq +xq +xq Xi oe pO @@ -5461,39 +5179,39 @@ pQ pQ pQ pU -ab +RJ "} (4,1,1) = {" ab ab ab -qA -hu -aj +ob +WR +ob af cW oH oN qb -dU +xE od oR oT oV -aj -aj +xE +xE af -aj -ok -tH -Fr +xE +uv +xE +qC EE qo -CY +az uJ -Zl -DI -aj +xE +xq +xE ip ip ip @@ -5506,32 +5224,32 @@ ab ab ab rN -ut -aj +WR +rD xQ -an -an -an +rb +rb +rb qc -pz -kj -kj -lr -rD -rM +eD +xE +yo +rB +kQ +xE nG -an -mI +rb +qJ ol -Qm +qJ Hy kP lF -Ms +kP kP oq -KE -aA +VF +rn ip gT hP @@ -5543,32 +5261,32 @@ ip ab ab ab -qQ -ut -aj -an +Bj +WR +ob +rb dL nK -an -an -an +rb +rb +rb af -aA +qJ rA -rw +qJ af -an -an +rb +rb mA -ok +uv dJ kP bQ lE nx kP -az -DI +PC +ei nk ip gU @@ -5581,33 +5299,33 @@ ip ab ab ab -rO -ut -aj -Su -aj -aj +Rc +WR +ob +qJ +xE +xE oa oD -aj -pX -eR +xE +xE +xE rB -rE -eR -eR -pE -eR -rI -rK +xE +xE +xE +qJ +lh +uv +gz kP cD om dG kP -az -DI -eg +PC +ei +PP io ip gD @@ -5619,33 +5337,33 @@ ip ab ab ab -rO -ut -DI +al +WR +QT If -DI -DI -DI -DI -rL -Qq -Qq -rC -Qq +xq +xq +xq +xq +xq +xq +xq +xq +xq rF -rG +Pc rH -rG +Pc rJ -rx +zs kP cE cH mn kP -az -DI -ut +PC +ei +DE nn ip nt @@ -5657,37 +5375,37 @@ ax ab ab ab -rO +al xz jo -Su +qJ az az az az -qB +uJ az az qB qn pm -as +ms qp qC ry -gc +zs kP cF cG lY -kP -az -DI -ut +kP +PC +ei +DE dP ip -gD -gk +pL +PA hS ax "} @@ -5695,32 +5413,32 @@ ax ab ab ab -rP -ut +CY +WR nT -an -an -mB -mB -an -an -mB -mB -an +rb +rb +af +af +rb +rb +af +af +rb eP os pP -eP -an -mB -mB +em +rb +af +af kP kP cI kP kP -dY -yX +hO +ei vw qD nl @@ -5733,10 +5451,10 @@ ax ab ab ab -rE -ut +ob +WR jo -mB +af ab bi bi @@ -5756,9 +5474,9 @@ ab ab ab ab -an -cs -qV +ym +PC +ei kr oL nm @@ -5771,10 +5489,10 @@ ax ab ab ab -rE -ut +ob +WR jo -mB +af ab bi bi @@ -5794,31 +5512,31 @@ ab ab bi bi -an +ym og -xO -th +ei +yQ qE ip -gD -Vl +pM +gU gD ax "} (13,1,1) = {" ab -ab +Ii BK jd -QH -rQ -iJ -iJ -ju -iJ -iJ -iJ -lb +LD +dy +ly +ly +ly +ly +ly +ly +ly ly ly ly @@ -5832,35 +5550,35 @@ ny ny bi bi -mB -qQ -DI -Vn +Mt +PC +ei +DE qF ip -gD +hq gF dF ax "} (14,1,1) = {" ab -ab +Ii QJ -aj -ut +ob +WR nF ly aQ bl ka br -iK +fE jv iK jJ ly -oE +oI qs aO dE @@ -5870,10 +5588,10 @@ oF ny ny ab -mB -qQ -of -tr +Mt +PC +ei +tz io ip gD @@ -5885,8 +5603,8 @@ ax ab zp BK -aj -ut +uy +WR MF ly kL @@ -5899,18 +5617,18 @@ iY iK ly oI -qu -bC -bH +qs +bE +cz nA nX oK pf ny ab -mB -qQ -QT +Mt +PC +ei ps ip gU @@ -5925,19 +5643,19 @@ ag ar aB aV -np +bs lz bj bn bp -br +dU iX iK jw iK ly oO -qv +qs em bI nB @@ -5946,9 +5664,9 @@ oW pg pK ab -an -qQ -rC +ym +PC +ei qG ip ns @@ -5968,7 +5686,7 @@ ly bk dD ly -br +fC iY iX iW @@ -5984,10 +5702,10 @@ oX ph ny ab -an -qQ -rC -aj +ym +PC +ei +NG ip ip ip @@ -5997,7 +5715,7 @@ ax "} (18,1,1) = {" ac -ai +CY ut aD aX @@ -6006,13 +5724,13 @@ ly kO bo kd -br -iK +fC +hi bt iK jK ly -oE +oI qv em bK @@ -6020,14 +5738,14 @@ nE ot oY pi -pL -nW -re -qQ -qT -eR -eR -LM +ny +nZ +Mt +PC +ei +Ex +NG +rn qS qK qM @@ -6042,15 +5760,15 @@ aY bV ly ly -bs -iL -dz -iL -lh ly ly ly -oE +ly +ly +ly +ly +ly +gC qZ bD bM @@ -6060,14 +5778,14 @@ oZ pq ny ab -mB -az -rC -DI -DI -If -qV -DI +Mt +PC +ei +ei +ei +VF +ei +ei pA WY "} @@ -6086,7 +5804,7 @@ cL cQ cX de -dq +hg nM nR ra @@ -6096,17 +5814,17 @@ nL ox Tg pr -pM +ny nZ -rf -rg -qU -kj -kj -yh -qW +Mt +PC +NG +EA +NG +rn +NG qX -qN +ga qP "} (21,1,1) = {" @@ -6122,29 +5840,29 @@ bw bT cM hN -hi +ih df gy on pl -rb +TK em -bO +cz nH oy pb pH ny ab -bh +HA no dO ft nj -bh -rE -rC -ga +HA +NG +ei +mp ab "} (22,1,1) = {" @@ -6153,7 +5871,7 @@ am as aH bb -jo +cs qx bu bx @@ -6180,19 +5898,19 @@ gG gG gG gG -tH -vy -ne +rn +mc +TI ab "} (23,1,1) = {" ab mB mB -aj -ut +aU +WR jo -eg +Hp gy gM ck @@ -6203,7 +5921,7 @@ dh gy nS pp -pa +qs bE cz nO @@ -6218,17 +5936,17 @@ kh cv kB gG -aU -rC -uY +LG +ei +ga ab "} (24,1,1) = {" ab ab mB -aj -ut +ob +WR jo dI hg @@ -6256,9 +5974,9 @@ Gl jP Gl gG -mA -rC -uY +Uw +ei +ga ab "} (25,1,1) = {" @@ -6278,7 +5996,7 @@ gB dk gy em -pP +iL pP em bF @@ -6294,8 +6012,8 @@ cr AP cA gG -uy -Qq +EK +ei pF ab "} @@ -6304,8 +6022,8 @@ ab an an bG -ut -jo +WR +dq du Nv dw @@ -6316,7 +6034,7 @@ ab di ab nU -pR +ju pR nU ab @@ -6328,12 +6046,12 @@ bi bi cn ht -ct +wA HB cB gG -FL -qL +hO +ei nb ab "} @@ -6342,7 +6060,7 @@ ab ao at aJ -qa +xz eR dv dx @@ -6354,7 +6072,7 @@ ab di ab nU -pR +ju pR nU ab @@ -6371,17 +6089,17 @@ kg gG gG pt -DI -uY +ei +ga ab "} (28,1,1) = {" ab ap -pW +ap aK -Lt -aj +WR +ob bf jI by @@ -6394,7 +6112,7 @@ jI eP qq qr -eP +em gG bg bg @@ -6405,11 +6123,11 @@ bg gG gG cu -lx gG -nK -qU -DI +gG +ML +NG +ei pG ab "} @@ -6418,8 +6136,8 @@ ab aq au aw -eL -eg +WR +Qy jI jV bz @@ -6430,7 +6148,7 @@ lJ dm jI oJ -qg +lb qg qh gG @@ -6446,9 +6164,9 @@ JP cx gG dQ -qU -DI -uY +NG +ei +ga ab "} (30,1,1) = {" @@ -6456,8 +6174,8 @@ ab ab ab aL -Lt -eg +WR +Qy jI jW kH @@ -6468,25 +6186,25 @@ lK dn ds pn -ut -ut +ai +vr dM gG bB Gr -iy +Qs cb -cg lD -CQ -mF +lD Qs -mF +Qs +Qs +pz gG gG or -yX -TI +ei +Pr ab "} (31,1,1) = {" @@ -6495,7 +6213,7 @@ ab ab aN WR -eg +Qy jI jX bL @@ -6506,7 +6224,7 @@ lL do jI qf -ut +ai ta qi gG @@ -6518,12 +6236,12 @@ ch cj co rR -co -cy +pa +dN dN cC pS -Pc +EM yg ab "} @@ -6531,8 +6249,8 @@ ab ab ab ab -aj -ut +aU +WR sS jI bv @@ -6544,8 +6262,8 @@ dd dp jI if -ut -Lt +ai +vr qj gG bS @@ -6559,9 +6277,9 @@ iz ic iR hK -wj -qm -pV +gG +AM +re pD ab "} @@ -6570,8 +6288,8 @@ ab ab ab dY -ut -eg +WR +Qy jI jI jI @@ -6581,8 +6299,8 @@ jI jI jI dt +iJ ai -ut CL XI gG @@ -6598,9 +6316,9 @@ gG gG gG be -aj -uv -aj +NG +FI +NG ab "} (34,1,1) = {" @@ -6608,49 +6326,49 @@ ab ab ab db -ut -aj +xh +ob rd qy qk ql -ai +eg qz -ai -ai +eg +eg RL -dU -sO -Lt -pE -GP -GP +aj +ai +vr +Ym +Si +KZ bW -GP -fC +Si +qk qI aj HH aj ek +Fo aj -aj -Su -aj +Ym +NG pB -jS +ZG ko "} (35,1,1) = {" ab ab ab -aj +Bx bd -ut +WR yi -ut -ut +ai +ai gb rT rT @@ -6658,7 +6376,7 @@ rT rT RX pu -wF +NK pv oh NK @@ -6672,50 +6390,50 @@ NK NK NK NK -px +MN py -px +EM pC -aj -at +NG +Jt "} (36,1,1) = {" ab ab ab +Bx +Zh +ob +Ym aj aj +dz aj -Su -aj -aj -aj -aj -eD +HK aj aj -Su +Ym ex RW fg -qJ -kj -kj -kj -ob -kj -pZ +Ym +Ov aj aj aj aj aj aj -Su -Se aj aj -cw +Ov +aj +aj +Ym +Se +NG +NG +xw "} (37,1,1) = {" ab diff --git a/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_1.dmm b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_1.dmm new file mode 100644 index 000000000000..401ef861475b --- /dev/null +++ b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_1.dmm @@ -0,0 +1,896 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aT" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"bl" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile{ + pixel_y = -9; + pixel_x = -8 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"cd" = ( +/obj/structure/flora/junglebush/large, +/obj/structure/flora/rock/pile/largejungle, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"cx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"dg" = ( +/obj/structure/flora/grass/jungle{ + pixel_y = 17; + pixel_x = 10 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"dP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"ea" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 8 + }, +/obj/effect/overlay/palmtree_l{ + pixel_x = 12; + pixel_y = -2 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"fk" = ( +/turf/template_noop, +/area/template_noop) +"fl" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"hf" = ( +/obj/structure/flora/junglebush/b{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/structure/flora/rock/jungle{ + pixel_y = -16; + pixel_x = -10 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"io" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/template_noop, +/area/template_noop) +"jD" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"kY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"lm" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/palebush{ + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"nA" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/junglebush/c{ + pixel_y = 10; + pixel_x = 5 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"of" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"ou" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ywflowers{ + pixel_y = -9; + pixel_x = 7 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"oO" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"ql" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"rZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue, +/turf/template_noop, +/area/template_noop) +"sn" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"sB" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"td" = ( +/mob/living/simple_animal/crab{ + name = "Eddie" + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"up" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle{ + pixel_y = -8; + pixel_x = -5 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"xp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"xD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"Aw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"AK" = ( +/obj/structure/flora/tree/palm{ + pixel_y = 3; + pixel_x = -21 + }, +/obj/effect/overlay/coconut{ + pixel_x = -22 + }, +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Bl" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass{ + pixel_y = 19; + pixel_x = 13 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Bx" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"Cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"Cs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"CA" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"DQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"DX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/flora/grass/jungle{ + pixel_y = -21; + pixel_x = 28 + }, +/mob/living/simple_animal/crab{ + name = "Eddie" + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"Hm" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/rock{ + pixel_x = 4; + pixel_y = 22 + }, +/obj/structure/flora/ausbushes/sunnybush{ + pixel_y = 6; + pixel_x = 9 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"HQ" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"IP" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/structure/flora/rock/pile{ + pixel_y = 12; + pixel_x = -10 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"Kg" = ( +/obj/structure/flora/rock/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Km" = ( +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Kp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"LW" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/structure/flora/ausbushes/pointybush{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Nu" = ( +/obj/structure/flora/junglebush{ + pixel_y = -9; + pixel_x = 13 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"Ny" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"PL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"PY" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/structure/flora/rock/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"QD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/flora/rock/jungle{ + pixel_y = -16; + pixel_x = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"QP" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"QU" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/flora/ausbushes/brflowers{ + pixel_y = -11; + pixel_x = -17 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Rw" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"RO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/flora/rock/pile{ + pixel_y = -27; + pixel_x = -16 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Tp" = ( +/obj/structure/fluff/hedge, +/turf/template_noop, +/area/template_noop) +"UB" = ( +/obj/structure/flora/tree/jungle, +/obj/effect/landmark/observer_start, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Vh" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/item/toy/seashell{ + pixel_y = -7; + pixel_x = 12 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central/low_level_centre) +"VF" = ( +/obj/structure/flora/junglebush/b{ + pixel_x = 15 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"VI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Wt" = ( +/obj/structure/flora/grass/jungle{ + pixel_y = 1; + pixel_x = 5 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 6; + pixel_x = -14 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"Ww" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"WA" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/hallway/primary/central/low_level_centre) +"YS" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) + +(1,1,1) = {" +Tp +fk +fk +Tp +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Tp +fk +fk +Tp +"} +(2,1,1) = {" +Tp +fk +fk +io +Tp +Tp +Tp +rZ +fk +fk +xD +Tp +Tp +Tp +io +fk +fk +Tp +"} +(3,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(4,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(5,1,1) = {" +Tp +fk +fk +fk +fk +PL +dP +YS +Aw +Hm +HQ +jD +cx +fk +fk +fk +fk +Tp +"} +(6,1,1) = {" +Tp +fk +fk +fk +fk +dP +Vh +Kp +bl +Bl +ou +sB +jD +fk +fk +fk +fk +Tp +"} +(7,1,1) = {" +Tp +fk +fk +fk +fk +YS +DX +Nu +AK +Km +Km +fl +HQ +fk +fk +fk +fk +Tp +"} +(8,1,1) = {" +fk +fk +fk +fk +fk +Cd +aT +QP +WA +VF +of +oO +nS +fk +fk +fk +fk +fk +"} +(9,1,1) = {" +fk +fk +fk +fk +fk +QD +QP +Km +Km +UB +dg +Wt +ql +fk +fk +fk +fk +fk +"} +(10,1,1) = {" +fk +fk +fk +fk +fk +up +PY +Km +lm +sn +hf +Bx +Cs +fk +fk +fk +fk +fk +"} +(11,1,1) = {" +Tp +fk +fk +fk +fk +CA +VI +cd +Kg +ea +td +kY +nA +fk +fk +fk +fk +Tp +"} +(12,1,1) = {" +Tp +fk +fk +fk +fk +Rw +QU +xp +LW +Bx +DQ +IP +Ww +fk +fk +fk +fk +Tp +"} +(13,1,1) = {" +Tp +fk +fk +fk +fk +Ny +Rw +CA +RO +Cs +nA +Ww +Ny +fk +fk +fk +fk +Tp +"} +(14,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(15,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(16,1,1) = {" +Tp +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Tp +"} +(17,1,1) = {" +Tp +fk +fk +Tp +fk +fk +fk +Tp +fk +fk +Tp +fk +fk +fk +Tp +fk +fk +Tp +"} diff --git a/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_2.dmm b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_2.dmm new file mode 100644 index 000000000000..c8de4d5ab415 --- /dev/null +++ b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_2.dmm @@ -0,0 +1,923 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aT" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/structure/flora/bush{ + pixel_y = -7; + pixel_x = 10 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 10; + pixel_y = 20 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"bl" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/structure/flora/rock/pile/icy{ + pixel_y = 4; + pixel_x = 11 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"co" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 10 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"cx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cI" = ( +/obj/structure/flora/bush{ + pixel_x = 15; + pixel_y = 10 + }, +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"cP" = ( +/obj/structure/statue/snow/snowlegion{ + desc = "An off-putting snowman, something about it gives you a sense of dread instead of holiday cheer."; + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"dz" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"dP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"ea" = ( +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"fk" = ( +/turf/template_noop, +/area/template_noop) +"fl" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"fU" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"hf" = ( +/obj/structure/statue/snow/snowman{ + pixel_x = -10; + pixel_y = 15; + anchored = 1 + }, +/obj/structure/flora/rock/pile/icy{ + pixel_y = 1; + pixel_x = 15 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"hF" = ( +/obj/structure/flora/rock/pile/icy{ + pixel_y = -17 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 10 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"io" = ( +/obj/structure/statue/snow/snowman{ + anchored = 1 + }, +/obj/structure/flora/rock/pile/icy{ + pixel_x = -5; + pixel_y = 7 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"iN" = ( +/obj/structure/flora/grass/green{ + pixel_x = -7 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"jD" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"kY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"nA" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"of" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"oj" = ( +/obj/structure/flora/rock/pile/icy{ + pixel_y = 4; + pixel_x = 11 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"ou" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/structure/flora/bush{ + pixel_x = 20 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"oO" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/structure/flora/grass/brown, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"pf" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"ql" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/flora/grass/green{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"qU" = ( +/obj/structure/flora/tree/pine{ + pixel_y = -4; + pixel_x = 0 + }, +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"sB" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"sV" = ( +/obj/structure/flora/grass/green{ + pixel_y = 14 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"up" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"xp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 13; + pixel_x = -13 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"zq" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"Aw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"AB" = ( +/obj/structure/flora/grass/both{ + pixel_y = 12; + pixel_x = 20 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"AK" = ( +/obj/structure/statue/snow/snowlegion{ + desc = "An off-putting snowman, something about it gives you a sense of dread instead of holiday cheer."; + anchored = 1 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Bl" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Bx" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = -16; + pixel_y = -6 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Cs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"CA" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"CF" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 7 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"CW" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/obj/structure/flora/grass/both{ + pixel_y = -5; + pixel_x = 20 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"DQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 9 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"DX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"GC" = ( +/obj/structure/snowflakes, +/turf/template_noop, +/area/template_noop) +"Hm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/flora/rock/icy{ + pixel_y = 15; + pixel_x = 7 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"HQ" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"IP" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"Kd" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 28 + }, +/mob/living/simple_animal/pet/penguin/baby, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Kg" = ( +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Km" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Kp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/obj/effect/turf_decal/weather/snow/corner{ + dir = 6 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"LW" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Nu" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Ny" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"NB" = ( +/mob/living/simple_animal/pet/penguin/emperor, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"PF" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"PL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"PZ" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"QD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/flora/grass/both{ + pixel_y = -13; + pixel_x = 11 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"QR" = ( +/mob/living/simple_animal/deer, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"QU" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Rj" = ( +/obj/effect/turf_decal/weather/snow/corner, +/turf/template_noop, +/area/template_noop) +"Rw" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"RO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Tp" = ( +/obj/structure/flora/tree/dead, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"TQ" = ( +/obj/structure/flora/rock/icy{ + pixel_y = 6 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"Us" = ( +/obj/effect/turf_decal/weather/snow/corner{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"UB" = ( +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Vh" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/ice/icemoon/safe, +/area/hallway/primary/central/low_level_centre) +"Vr" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) +"VI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Wt" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/hallway/primary/central/low_level_centre) +"Ww" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"YS" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"ZU" = ( +/obj/structure/flora/tree/pine{ + pixel_x = 0 + }, +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow/normal_temp, +/area/template_noop) + +(1,1,1) = {" +TQ +Us +Rj +TQ +fk +fk +GC +fk +fk +fk +fk +GC +fk +fk +TQ +fk +fk +TQ +"} +(2,1,1) = {" +Vr +Us +Rj +io +co +Tp +PF +cP +Us +Rj +cP +co +Tp +hF +dz +Us +Rj +PF +"} +(3,1,1) = {" +pf +fk +fk +pf +pf +pf +pf +pf +fk +fk +pf +pf +pf +pf +pf +fk +fk +pf +"} +(4,1,1) = {" +PZ +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +PZ +"} +(5,1,1) = {" +PF +Us +fk +fk +fk +PL +dP +YS +Aw +Hm +HQ +jD +cx +fk +fk +fk +Rj +fU +"} +(6,1,1) = {" +Tp +Us +fk +fk +fk +dP +Vh +Kp +bl +Bl +ou +sB +jD +fk +fk +fk +Rj +Tp +"} +(7,1,1) = {" +fU +Us +fk +fk +fk +YS +DX +Nu +AK +ea +Km +fl +HQ +fk +fk +fk +Rj +zq +"} +(8,1,1) = {" +pf +fk +fk +fk +fk +Cd +aT +QR +ea +ea +of +oO +nS +fk +fk +fk +fk +pf +"} +(9,1,1) = {" +fk +fk +fk +fk +fk +QD +ea +ea +ea +UB +Kd +AB +ql +fk +fk +fk +fk +fk +"} +(10,1,1) = {" +PZ +fk +fk +fk +fk +up +LW +oj +ea +sV +hf +Wt +Cs +fk +fk +fk +fk +PZ +"} +(11,1,1) = {" +CF +Us +fk +fk +fk +CA +VI +ea +Kg +cI +NB +kY +nA +fk +fk +fk +Rj +Vr +"} +(12,1,1) = {" +Tp +Us +fk +fk +fk +Rw +QU +xp +CW +Bx +DQ +IP +Ww +fk +fk +fk +Rj +Tp +"} +(13,1,1) = {" +iN +Us +fk +fk +fk +Ny +Rw +CA +RO +Cs +nA +Ww +Ny +fk +fk +fk +Rj +PF +"} +(14,1,1) = {" +pf +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +pf +"} +(15,1,1) = {" +PZ +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +PZ +"} +(16,1,1) = {" +qU +Us +fk +PZ +fk +fk +fk +PZ +fk +fk +PZ +fk +fk +fk +PZ +fk +Rj +ZU +"} +(17,1,1) = {" +fU +Us +Rj +Tp +Us +fk +Rj +Tp +Us +Rj +Tp +Us +fk +Rj +Tp +Us +Rj +fU +"} diff --git a/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_3.dmm b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_3.dmm new file mode 100644 index 000000000000..12c713352879 --- /dev/null +++ b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_3.dmm @@ -0,0 +1,953 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"aT" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"bl" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/obj/structure/flora/ash/tall_shroom, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"cx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cI" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile/cracked{ + pixel_x = 16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"dP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"ea" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/block/cracked{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"fk" = ( +/turf/template_noop, +/area/template_noop) +"fl" = ( +/obj/effect/turf_decal/siding/thinplating_new, +/obj/structure/window/reinforced, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"hf" = ( +/obj/structure/stone_tile, +/obj/structure/stone_tile/surrounding_tile{ + pixel_y = -16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"if" = ( +/mob/living/simple_animal/hostile/retaliate/bat/icewing, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"io" = ( +/obj/structure/statue{ + desc = "A lifelike statue of a horrifying monster."; + dir = 4; + icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; + icon_state = "goliath"; + name = "goliath"; + pixel_y = 6; + anchored = 1 + }, +/obj/structure/stone_tile/slab, +/turf/template_noop, +/area/template_noop) +"jD" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"kY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"nA" = ( +/obj/structure/statue/bone/rib{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"nS" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"of" = ( +/obj/structure/stone_tile{ + dir = 8 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 8; + pixel_y = -16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"oj" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/surrounding_tile{ + dir = 1; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"ou" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"oO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"pQ" = ( +/obj/structure/statue{ + desc = "A lifelike statue of a horrifying monster."; + dir = 8; + icon = 'icons/mob/lavaland/lavaland_monsters.dmi'; + icon_state = "goliath"; + name = "goliath"; + pixel_y = 6; + anchored = 1 + }, +/obj/structure/stone_tile/slab, +/turf/template_noop, +/area/template_noop) +"ql" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/structure/window/reinforced, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"sB" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"sV" = ( +/obj/structure/stone_tile{ + dir = 1 + }, +/obj/structure/stone_tile/block/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"up" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"va" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"vc" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"xp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"Aw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"AB" = ( +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"AK" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4; + pixel_x = -16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Bl" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/obj/structure/flora/rock/pile{ + pixel_x = -12; + pixel_y = 13 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Bx" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/obj/structure/flora/ash/cap_shroom, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"BW" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/structure/flora/rock/pile{ + pixel_y = 11; + pixel_x = 10 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/structure/flora/rock/pile{ + pixel_y = -11; + pixel_x = 10 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Cs" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"CA" = ( +/obj/structure/statue/bone/rib{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"CW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"DQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"DX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"Eh" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"Hm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"HQ" = ( +/obj/structure/statue/bone/rib, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"It" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 1 + }, +/obj/structure/stone_tile{ + dir = 8 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"IP" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"Kd" = ( +/obj/structure/stone_tile/surrounding/cracked{ + dir = 6 + }, +/obj/structure/stone_tile/center, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"Kg" = ( +/obj/structure/stone_tile/surrounding_tile{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Km" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/obj/structure/flora/ash/leaf_shroom, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Kp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"LW" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"No" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"Nu" = ( +/mob/living/simple_animal/hostile/retaliate/bat/magmawing, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Ny" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"PL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"Qc" = ( +/obj/structure/stone_tile/center, +/obj/structure/stone_tile/surrounding/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"QD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"QR" = ( +/obj/structure/stone_tile{ + dir = 4 + }, +/obj/structure/stone_tile/surrounding_tile/cracked{ + dir = 4; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"QU" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"Rw" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"RO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"SC" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"Tc" = ( +/obj/structure/flora/rock{ + pixel_y = -6; + pixel_x = 18 + }, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Tp" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"Ua" = ( +/obj/structure/stone_tile/block/cracked{ + dir = 4 + }, +/obj/structure/stone_tile{ + dir = 4 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"Uf" = ( +/obj/structure/stone_tile/slab/burnt, +/obj/structure/fluff/tendril{ + pixel_y = -7 + }, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"UB" = ( +/obj/structure/stone_tile/slab/cracked, +/turf/open/lava/smooth/lava_land_surface, +/area/hallway/primary/central/low_level_centre) +"Vh" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/turf/open/floor/fakepit, +/area/hallway/primary/central/low_level_centre) +"VI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/dirty, +/area/hallway/primary/central/low_level_centre) +"Wt" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/plating/asteroid/basalt, +/area/hallway/primary/central/low_level_centre) +"Ww" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"XW" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/asteroid/dirty/fake_lava_v2, +/area/template_noop) +"YS" = ( +/obj/structure/statue/bone/rib{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) + +(1,1,1) = {" +CW +fk +fk +Eh +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +vc +fk +fk +SC +"} +(2,1,1) = {" +vc +fk +fk +io +Eh +No +vc +io +fk +fk +io +Eh +No +vc +io +fk +fk +Eh +"} +(3,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(4,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(5,1,1) = {" +XW +fk +fk +fk +fk +PL +dP +YS +Aw +Hm +HQ +jD +cx +fk +fk +fk +fk +Tp +"} +(6,1,1) = {" +CW +fk +fk +fk +fk +dP +Vh +Kp +bl +Bl +ou +sB +jD +fk +fk +fk +fk +SC +"} +(7,1,1) = {" +vc +fk +fk +fk +fk +YS +DX +Nu +AK +ai +Km +fl +HQ +fk +fk +fk +fk +Eh +"} +(8,1,1) = {" +fk +fk +fk +fk +fk +Cd +aT +QR +It +ea +of +oO +nS +fk +fk +fk +fk +fk +"} +(9,1,1) = {" +fk +fk +fk +fk +fk +QD +AB +Qc +Uf +UB +Kd +Tc +ql +fk +fk +fk +fk +fk +"} +(10,1,1) = {" +fk +fk +fk +fk +fk +up +LW +oj +Ua +sV +hf +Wt +va +fk +fk +fk +fk +fk +"} +(11,1,1) = {" +XW +fk +fk +fk +fk +CA +VI +BW +Kg +cI +if +kY +nA +fk +fk +fk +fk +Tp +"} +(12,1,1) = {" +CW +fk +fk +fk +fk +Rw +QU +xp +LW +Bx +DQ +IP +Ww +fk +fk +fk +fk +SC +"} +(13,1,1) = {" +vc +fk +fk +fk +fk +Ny +Rw +CA +RO +Cs +nA +Ww +Ny +fk +fk +fk +fk +Eh +"} +(14,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(15,1,1) = {" +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +"} +(16,1,1) = {" +XW +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +Tp +"} +(17,1,1) = {" +CW +fk +fk +pQ +fk +fk +fk +pQ +fk +fk +pQ +fk +fk +fk +pQ +fk +fk +SC +"} diff --git a/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_4.dmm b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_4.dmm new file mode 100644 index 000000000000..f25863e49d55 --- /dev/null +++ b/_maps/r_ruins/station/bridge_garden/bridge_hall_garden_4.dmm @@ -0,0 +1,923 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"as" = ( +/obj/structure/flora/rock{ + pixel_x = -13; + pixel_y = 3; + layer = 2.91 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 15; + pixel_x = 6 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"aA" = ( +/obj/structure/flora/biolumi/mine, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"aO" = ( +/obj/structure/flora/ausbushes/pointybush{ + layer = 2.91 + }, +/obj/structure/flora/ausbushes/reedbush{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"aT" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 1 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"bl" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"cx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"cI" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt" + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/hallway/primary/central/low_level_centre) +"da" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/decoration/meteor{ + pixel_y = 6 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"dP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central/low_level_centre) +"ea" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/hallway/primary/central/low_level_centre) +"eb" = ( +/mob/living/simple_animal/hostile/carp/cayenne/ekaterina/belka, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"eq" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/biolumi/flower{ + pixel_y = 7; + pixel_x = -1; + layer = 2.91 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"fc" = ( +/obj/structure/flora/ausbushes/sunnybush{ + pixel_y = 3; + pixel_x = 9 + }, +/obj/structure/flora/rock/pile{ + pixel_x = -13 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"fk" = ( +/turf/template_noop, +/area/template_noop) +"fr" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_x = 2 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/template_noop, +/area/template_noop) +"fs" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"ga" = ( +/obj/structure/flora/biolumi/mine{ + layer = 2.91 + }, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"io" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/item/kirbyplants/photosynthetic{ + pixel_x = 2 + }, +/turf/template_noop, +/area/template_noop) +"jD" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central/low_level_centre) +"kY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"nA" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central/low_level_centre) +"nX" = ( +/obj/structure/flora/rock/pile{ + pixel_x = -2 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"of" = ( +/turf/open/floor/plating/asteroid/normal_pressure, +/area/hallway/primary/central/low_level_centre) +"oO" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"pk" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"ql" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"rF" = ( +/mob/living/simple_animal/hostile/carp/cayenne/ekaterina/strelka, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"sB" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"up" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"uF" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) +"vi" = ( +/obj/structure/flora/bush{ + pixel_y = 4 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"xx" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 8 + }, +/mob/living/simple_animal/hostile/carp/cayenne/ekaterina, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"xO" = ( +/obj/structure/flora/biolumi/flower{ + pixel_y = 6; + pixel_x = -3; + layer = 2.91 + }, +/obj/structure/flora/junglebush/c{ + pixel_y = -1 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"yu" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/template_noop, +/area/template_noop) +"yR" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"zk" = ( +/obj/structure/flora/ausbushes/fernybush{ + pixel_y = 9 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Aw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"AB" = ( +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"AO" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"Bx" = ( +/obj/structure/flora/biolumi/flower{ + pixel_y = 7; + pixel_x = -1; + layer = 2.91 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"Cs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"CA" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central/low_level_centre) +"CW" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner{ + dir = 4 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"DQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 4 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"ES" = ( +/obj/effect/spawner/random/decoration/meteor{ + pixel_y = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"EX" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"FB" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Hm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"HQ" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central/low_level_centre) +"IP" = ( +/obj/machinery/light/floor, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"IS" = ( +/obj/structure/flora/rock/pile{ + pixel_y = -4; + pixel_x = -2 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Kg" = ( +/turf/closed/mineral/random/high_chance, +/area/hallway/primary/central/low_level_centre) +"Kp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 8 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"LA" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"LW" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Nj" = ( +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"Ny" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/primary/central/low_level_centre) +"Ov" = ( +/obj/structure/water_source/puddle{ + pixel_x = 14; + pixel_y = 2 + }, +/obj/structure/flora/ausbushes/genericbush{ + pixel_y = 11; + pixel_x = -4 + }, +/obj/structure/flora/ausbushes/sunnybush{ + pixel_x = 6 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"OF" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/template_noop, +/area/template_noop) +"PL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_centre) +"QD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"QR" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/hallway/primary/central/low_level_centre) +"QU" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/east, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"Rw" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central/low_level_centre) +"RO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"Tp" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt"; + pixel_y = 5; + pixel_x = 8 + }, +/obj/structure/flora/ausbushes/rospilovo{ + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Ty" = ( +/obj/effect/spawner/random/decoration/meteor, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"TS" = ( +/obj/structure/flora/rock/jungle, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"TY" = ( +/obj/structure/flora/ausbushes/fernybush{ + layer = 2.91 + }, +/obj/structure/flora/ausbushes{ + pixel_y = 14; + pixel_x = -5 + }, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"Vh" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/light/floor/directional/west, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"VI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating_new{ + dir = 1 + }, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"Wk" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 6; + pixel_x = 2 + }, +/turf/template_noop, +/area/template_noop) +"Wt" = ( +/obj/effect/turf_decal/siding/thinplating_new/corner, +/turf/open/floor/fakespace, +/area/hallway/primary/central/low_level_centre) +"Ww" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central/low_level_centre) +"YS" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central/low_level_centre) +"Zl" = ( +/obj/structure/flora/biolumi/lamp{ + pixel_y = 6; + layer = 2.91 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/plating/asteroid/normal_pressure, +/area/template_noop) +"ZL" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +vi +AO +yu +IS +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +nX +AO +yu +Tp +"} +(2,1,1) = {" +fc +AO +ZL +Wk +LW +Ty +xO +fr +EX +ZL +Nj +eq +Ty +TS +io +EX +yu +yR +"} +(3,1,1) = {" +uF +EX +fk +ZL +uF +uF +uF +EX +fk +fk +ZL +uF +uF +uF +EX +fk +ZL +uF +"} +(4,1,1) = {" +fs +LA +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +OF +fs +"} +(5,1,1) = {" +pk +AO +fk +fk +fk +PL +dP +YS +Aw +Hm +HQ +jD +cx +fk +fk +fk +yu +TY +"} +(6,1,1) = {" +Ty +AO +fk +fk +fk +dP +Vh +Kp +aT +xx +Kp +sB +jD +fk +fk +fk +yu +Ty +"} +(7,1,1) = {" +Zl +AO +fk +fk +fk +YS +VI +AB +QR +AB +AB +kY +HQ +fk +fk +fk +yu +aA +"} +(8,1,1) = {" +uF +EX +fk +fk +fk +Cd +aT +AB +Kg +ea +AB +oO +Hm +fk +fk +fk +ZL +uF +"} +(9,1,1) = {" +fk +fk +fk +fk +fk +QD +rF +of +Kg +Kg +of +AB +ql +fk +fk +fk +fk +fk +"} +(10,1,1) = {" +fs +LA +fk +fk +fk +up +CW +QR +Kg +Kg +QR +Wt +Cs +fk +fk +fk +OF +fs +"} +(11,1,1) = {" +ga +AO +fk +fk +fk +CA +VI +AB +cI +of +eb +kY +nA +fk +fk +fk +yu +Bx +"} +(12,1,1) = {" +Ty +AO +fk +fk +fk +Rw +QU +DQ +CW +Wt +DQ +IP +Ww +fk +fk +fk +yu +Ty +"} +(13,1,1) = {" +FB +AO +fk +fk +fk +Ny +Rw +CA +RO +Cs +nA +Ww +Ny +fk +fk +fk +yu +bl +"} +(14,1,1) = {" +uF +EX +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +ZL +uF +"} +(15,1,1) = {" +fs +LA +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +OF +fs +"} +(16,1,1) = {" +Ov +AO +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +fk +yu +zk +"} +(17,1,1) = {" +aO +AO +fk +da +fk +fk +fk +da +fk +fk +da +fk +fk +fk +ES +fk +yu +as +"} diff --git a/_maps/r_ruins/station/brig/brig_armored.dmm b/_maps/r_ruins/station/brig/brig_armored.dmm new file mode 100644 index 000000000000..666222e8457a --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_armored.dmm @@ -0,0 +1,9286 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"ak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/security/brig/upper) +"au" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_1" + }, +/turf/open/floor/engine, +/area/security/brig) +"aF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"aP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/main) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/turf/template_noop, +/area/template_noop) +"aU" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"aX" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"aY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/evidence) +"ba" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bb" = ( +/turf/closed/wall, +/area/maintenance/department/security/brig) +"bc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"be" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/machinery/pdapainter/security, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bj" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"bl" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/storage/pill_bottle/sens{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/iron{ + pixel_x = -5 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"bp" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/lockers) +"bq" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"br" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main/lockers) +"bs" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -29; + pixel_y = 23 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bt" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"bC" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"bD" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main/lockers) +"bF" = ( +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/structure/table/wood/fancy/black, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bG" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bH" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/flashlight/lamp/green{ + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/storage/ashtray/bronze, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -2; + pixel_y = -6 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bJ" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = -7; + pixel_x = -4 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 7; + pixel_y = -4; + layer = 3.01 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"bK" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"bV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"bY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"bZ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"cb" = ( +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cd" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/evidence) +"cf" = ( +/obj/machinery/recharger, +/obj/structure/cable, +/obj/structure/table/wood/fancy/black, +/obj/item/firing_pin/implant/mindshield{ + pixel_y = -12 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cg" = ( +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"ch" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/structure/table/wood/fancy/black, +/obj/item/food/donut/choco{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/item/toy/figure/hos{ + pixel_x = -5; + pixel_y = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"ci" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/wood/fancy/black, +/obj/item/folder/red{ + pixel_x = 21; + pixel_y = 5 + }, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = 16; + layer = 3.01 + }, +/obj/item/stamp/hos{ + pixel_x = 14; + pixel_y = 4; + layer = 3.02 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"cj" = ( +/obj/structure/cable, +/obj/structure/table/wood/fancy/black, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/pen/fountain{ + pixel_y = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"cp" = ( +/obj/effect/landmark/carpspawn, +/turf/template_noop, +/area/template_noop) +"cr" = ( +/turf/closed/wall/r_wall, +/area/security/main/lockers) +"cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"ct" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cw" = ( +/obj/machinery/vending/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/lockers) +"cx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cz" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/arrow_ccw{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = -24; + pixel_y = 23 + }, +/turf/open/floor/engine, +/area/security/brig) +"cD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"cG" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cH" = ( +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cI" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + layer = 3.01 + }, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cJ" = ( +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun{ + layer = 3.01 + }, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cK" = ( +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + layer = 3.01 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cL" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler{ + layer = 3.01 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = 2 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = -4; + layer = 3.01 + }, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = 4; + layer = 3.02 + }, +/obj/item/gun/ballistic/automatic/wt550{ + layer = 3.03 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cO" = ( +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "armory_warden"; + layer = 3.31 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cT" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/security/main/angar) +"cV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main/mechanic) +"da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"dd" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"dg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"dh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dj" = ( +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dk" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/brig) +"dl" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/warden) +"dm" = ( +/turf/open/floor/engine, +/area/security/brig/upper) +"dn" = ( +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"do" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig/upper) +"du" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"dw" = ( +/obj/machinery/microwave{ + pixel_y = 5; + pixel_x = -1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"dA" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"dE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/firingpins{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/storage/box/firingpins{ + pixel_y = 2; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/teargas{ + pixel_x = -15; + pixel_y = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/item/storage/box/stingbangs{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -7; + pixel_y = 2; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dH" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dI" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet{ + layer = 3.01 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "armory_warden"; + name = "Жалюзи внутренние"; + pixel_x = 26; + req_access_txt = "1"; + pixel_y = 17 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dJ" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"dK" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/engine, +/area/security/main/sb_med) +"dL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"dN" = ( +/obj/effect/landmark/start/head_of_security, +/obj/structure/chair/office, +/turf/open/floor/engine, +/area/security/main) +"dQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"dR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"dS" = ( +/obj/structure/bed/dogbed/lia{ + name = "кровать Сержанта Арни" + }, +/mob/living/simple_animal/hostile/giant_spider/sgt_araneus, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"dU" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 7 + }, +/turf/open/floor/engine, +/area/security/main) +"dV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"dY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"ea" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/brig) +"eg" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"ei" = ( +/obj/structure/railing, +/turf/open/floor/glass/reinforced, +/area/security/brig/upper) +"ej" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id = "armory_weapon"; + max_integrity = 1200 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"ek" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "armory_warden" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"el" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"em" = ( +/obj/structure/table/reinforced, +/obj/item/recharger_item{ + pixel_y = 9 + }, +/obj/item/recharger_item{ + layer = 3.01 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"en" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"eo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig) +"er" = ( +/turf/closed/wall/r_wall, +/area/security/main/angar) +"es" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/folder/red{ + layer = 3.01 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = -5; + layer = 3.02 + }, +/obj/item/pen{ + pixel_y = -6; + layer = 3.03 + }, +/turf/open/floor/engine, +/area/security/main) +"et" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"eu" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"ev" = ( +/obj/item/paper_bin, +/obj/item/pen/blue{ + layer = 3.01 + }, +/obj/structure/table/reinforced, +/obj/item/pen/red{ + pixel_x = 3; + pixel_y = 3; + layer = 3.01 + }, +/turf/open/floor/engine, +/area/security/main) +"ew" = ( +/obj/item/storage/box/flashes{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 4; + layer = 3.01 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"ex" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"ez" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 2 + }, +/turf/open/floor/engine, +/area/security/brig) +"eC" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"eD" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"eE" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"eF" = ( +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -4; + pixel_y = -2; + layer = 3.01 + }, +/turf/open/floor/engine, +/area/security/warden) +"eG" = ( +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"eH" = ( +/turf/open/floor/engine, +/area/security/warden) +"eJ" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"eK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"eL" = ( +/obj/machinery/mecha_part_fabricator/sb, +/turf/open/floor/engine, +/area/security/main/mechanic) +"eN" = ( +/turf/open/floor/engine, +/area/security/main/mechanic) +"eO" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/arrow_ccw{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"eP" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main) +"eQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/security/brig/upper) +"eR" = ( +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + layer = 3.02 + }, +/obj/item/clothing/mask/gas/sechailer/swat{ + pixel_y = -6; + layer = 3.03; + pixel_x = 3 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar{ + pixel_y = 16; + layer = 3.01 + }, +/obj/item/stack/package_wrap{ + pixel_y = 12 + }, +/turf/open/floor/engine, +/area/security/main) +"eS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"eT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/engine, +/area/security/main) +"eU" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"eV" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/engine, +/area/security/brig/upper) +"eW" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"eX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/engine, +/area/security/brig/upper) +"eY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"fb" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/bed/dogbed/mcgriff, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"fd" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"fe" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"ff" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh" + }, +/turf/open/floor/engine, +/area/security/warden) +"fg" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"fh" = ( +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/warden) +"fi" = ( +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = 6; + pixel_y = 1; + layer = 3.01 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fj" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fl" = ( +/obj/effect/landmark/start/specialist, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fm" = ( +/obj/structure/cable, +/obj/machinery/photocopier, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"fn" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"fo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/secbot/ed209{ + arrest_type = 1; + idcheck = 1; + name = "Castratus"; + weaponscheck = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fr" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/security/main) +"fs" = ( +/obj/item/flashlight/seclite{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/flashlight/seclite{ + pixel_x = 1; + pixel_y = 2; + layer = 3.01 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"ft" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fv" = ( +/obj/item/restraints/legcuffs/bola/energy{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/restraints/legcuffs/bola/energy{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"fw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"fx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/engine, +/area/security/brig/upper) +"fA" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"fB" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig/upper) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/warden) +"fD" = ( +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"fE" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"fF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"fG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/warden) +"fH" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/lockers) +"fJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/brig) +"fL" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"fM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fN" = ( +/obj/machinery/stasis{ + handbeltsmod = 1; + ivlmod = 1; + painkillermod = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/defibrillator_mount{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/stasis{ + handbeltsmod = 1; + ivlmod = 1; + painkillermod = 1 + }, +/obj/machinery/stasis{ + handbeltsmod = 1; + ivlmod = 1; + painkillermod = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"fO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"fR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"fT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fU" = ( +/obj/structure/window/reinforced, +/obj/structure/sign/warning/bodysposal{ + pixel_x = -32 + }, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"fY" = ( +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4; + color = "#00CCFF" + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"ga" = ( +/obj/effect/turf_decal/siding/red, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Блокировка ПермаБрига"; + pixel_y = 8; + req_access_txt = "2"; + pixel_x = 7 + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Изоляция камер"; + pixel_x = 7; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "warden_sh"; + name = "Бронешторы надзирателя"; + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"gb" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"gc" = ( +/obj/effect/turf_decal/siding/red, +/obj/structure/tank_holder/extinguisher/advanced, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"gd" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"ge" = ( +/obj/structure/table/reinforced, +/obj/item/full_armor_upgrade{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/full_armor_upgrade{ + pixel_y = 3; + layer = 3.01 + }, +/obj/item/full_armor_upgrade{ + pixel_x = 6; + layer = 3.02 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"gf" = ( +/obj/structure/table/reinforced, +/obj/item/door_seal/sb{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/door_seal/sb{ + pixel_y = -1; + pixel_x = 3 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"gg" = ( +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main/lockers) +"gh" = ( +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main/mechanic) +"gi" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"gj" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery/red, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"gk" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/recharge_floor, +/area/security/main/mechanic) +"gl" = ( +/obj/machinery/recharge_station, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main/mechanic) +"gm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"go" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/key/security, +/turf/open/floor/engine, +/area/security/main/mechanic) +"gp" = ( +/turf/open/openspace, +/area/security/brig/upper) +"gq" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"gr" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"gs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"gu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/engine, +/area/security/main/sb_med) +"gw" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"gB" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig/upper) +"gC" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/security/brig/upper) +"gE" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 1; + pixel_y = 1; + layer = 3.01 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"gF" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"gG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/pill_bottle/potassiodide{ + pixel_x = 8; + pixel_y = 21 + }, +/obj/item/storage/pill_bottle/epinephrine{ + pixel_x = 9 + }, +/obj/item/storage/pill_bottle/mining{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/storage/pill_bottle/penacid{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/storage/pill_bottle/neurine, +/obj/item/storage/pill_bottle/psicodine{ + pixel_x = -8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"gH" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/engine, +/area/security/warden) +"gI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3"; + pixel_y = -2 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh"; + layer = 3.31 + }, +/turf/open/floor/engine, +/area/security/warden) +"gJ" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"gK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"gN" = ( +/turf/closed/wall/r_wall, +/area/security/main/mechanic) +"gO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"gQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main) +"gT" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "rangespace" + }, +/turf/open/floor/plating, +/area/security/brig/upper) +"gV" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hd" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"hm" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/lockers) +"ho" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"hp" = ( +/turf/closed/wall/r_wall, +/area/security/main/evidence) +"hr" = ( +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2; + pixel_y = -5; + layer = 3.01 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3; + pixel_y = -5; + layer = 3.02 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8; + pixel_y = -5; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = -5; + pixel_y = 9; + layer = 3.01 + }, +/obj/item/grenade/barrier{ + pixel_x = -1; + pixel_y = 9; + layer = 3.02 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 9; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = 7; + pixel_y = 9; + layer = 3.04 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main/mechanic) +"hu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"hw" = ( +/obj/machinery/button/door{ + id = "armory_mech"; + name = "Жалюзи мастерской"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = -1 + }, +/obj/machinery/button/door{ + id = "armory_weapon"; + name = "Жалюзи оружейной"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = 10 + }, +/obj/machinery/button/door{ + id = "armory_warden"; + name = "Жалюзи внутренние"; + pixel_x = 39; + req_access_txt = "1"; + pixel_y = 21 + }, +/turf/open/floor/engine, +/area/security/warden) +"hx" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = -4 + }, +/obj/item/clothing/suit/armor/laserproof{ + layer = 3.01 + }, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = 4; + layer = 3.02 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"hJ" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"hK" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training{ + pixel_y = 20 + }, +/obj/item/binoculars, +/turf/open/floor/engine, +/area/security/brig/upper) +"hL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/button/door{ + id = "brigspace_left"; + name = "Выход в космос"; + pixel_x = 27; + pixel_y = 27 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"hQ" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Камера 3"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_3"; + name = "Изоляция камеры 3"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"hR" = ( +/turf/open/floor/engine, +/area/security/brig) +"hS" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Камера 2"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_2"; + name = "Изоляция камеры 2"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"hT" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/machinery/button/door{ + id = "brig_isolation_1"; + name = "Изоляция камеры 1"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Камера 1"; + pixel_y = -39 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"hX" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"ia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig) +"ib" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/brig) +"ij" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"ik" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Камера 4" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"im" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Камера 3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"io" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Камера 2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"ip" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Камера 1" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"iq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"ir" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"is" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigenter" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner, +/turf/open/floor/engine, +/area/security/brig) +"it" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"iu" = ( +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"iy" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 4"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 4" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"iC" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/evidence) +"iD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"iE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iH" = ( +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -34; + pixel_y = -10 + }, +/obj/machinery/button/door{ + id = "brigenter"; + name = "Блокировка входа"; + pixel_x = -26; + pixel_y = -5 + }, +/obj/machinery/button/door{ + id = "briggate"; + name = "Бронешторы"; + pixel_x = -26; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/security/brig) +"iI" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"iJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/engine, +/area/security/brig) +"iK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"iL" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"iP" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig/upper) +"iR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigspace_right" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iV" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iX" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/engine, +/area/security/brig) +"ja" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Шкафчик камеры 4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"jb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"jc" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Шкафчик камеры 3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/engine, +/area/security/brig) +"je" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Шкафчик камеры 2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"jf" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"jg" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Шкафчик камеры 1" + }, +/turf/open/floor/engine, +/area/security/brig) +"jh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "outerbrig"; + name = "Контроль внешних дверей"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -6; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "innerbrig"; + name = "Контроль внутренних дверей"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"ji" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"jj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off{ + layer = 3.01 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/engine, +/area/security/brig) +"jk" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/trimline/dark_red/filled/arrow_ccw{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"jl" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"jm" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"jn" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/specialist, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"jv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_4" + }, +/turf/open/floor/engine, +/area/security/brig) +"jw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_2" + }, +/turf/open/floor/engine, +/area/security/brig) +"jx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/engine, +/area/security/brig) +"jy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/engine, +/area/security/brig) +"jz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigenter" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"jC" = ( +/obj/tacmap/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"jI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"jJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"jL" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/spacepod_key/sec{ + pixel_x = -2; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"kv" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"kH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 2" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"kU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/closet/secure_closet/medical1{ + req_one_access_txt = "5;63"; + req_access = null; + req_access_txt = null + }, +/obj/item/reagent_containers/glass/bottle/toxin, +/obj/item/reagent_containers/glass/bottle/toxin, +/obj/item/reagent_containers/glass/bottle/cyanide, +/obj/item/reagent_containers/glass/bottle/cyanide, +/turf/open/floor/engine, +/area/security/main/sb_med) +"le" = ( +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"lh" = ( +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + layer = 3.01 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"li" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/sb_med) +"lk" = ( +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + dir = 2 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"lq" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/engine, +/area/security/brig/upper) +"mt" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"mu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"mK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"mO" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/department/security/brig) +"mX" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 4; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"mY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"mZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main) +"ni" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"nH" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/evidence) +"nI" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"nJ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "АПЦ: Охрана: Бриг"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"od" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"og" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"oi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigenter" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"oq" = ( +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4; + color = "#00CCFF" + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"ow" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/evidence) +"oA" = ( +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"oK" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/warden) +"oV" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/security/main/sb_med) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"pa" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"pj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"pz" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"pO" = ( +/obj/structure/cable, +/obj/item/shield/riot/kevlar, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/engine, +/area/security/warden) +"pP" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -10; + pixel_y = 1; + layer = 3.01 + }, +/obj/item/gps/mining/off{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/gps/mining/off{ + pixel_x = 7; + layer = 3.01 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"pS" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"qe" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"qu" = ( +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"qw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/external/glass{ + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"qF" = ( +/obj/tacmap/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/turf/open/floor/engine, +/area/security/brig/upper) +"qH" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"qL" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/item/storage/secure/safe/hos{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/obj/structure/table/wood/fancy/black, +/obj/item/computer_disk/security{ + pixel_y = 4; + layer = 3.01 + }, +/obj/item/computer_disk/security{ + pixel_x = 4 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"qU" = ( +/obj/structure/table/reinforced, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/security/armory"; + name = "Контролер турели брига"; + req_access = null; + req_access_txt = "1"; + pixel_x = -26; + pixel_y = 20 + }, +/obj/structure/window/reinforced, +/obj/item/tactical_recharger, +/obj/machinery/door/window/eastright{ + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"qV" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "angarspace"; + name = "Стрелковая галерея"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"qX" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"re" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/engine, +/area/security/brig/upper) +"rf" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"rn" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main/lockers) +"rq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "brigspace_right"; + name = "Выход в космос"; + pixel_x = 27; + pixel_y = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"rs" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id = "spbrig" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "spbrig"; + name = "Blast Door Control"; + pixel_x = -28; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/main/angar) +"rw" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table/wood/fancy/black, +/obj/item/gun/energy/e_gun/mini{ + layer = 3.01; + pixel_y = -7 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"rU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"sb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"sn" = ( +/obj/structure/table/reinforced, +/obj/item/radio/off{ + pixel_x = -21; + pixel_y = 7 + }, +/obj/item/radio/off{ + pixel_x = -16; + pixel_y = 3; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"sy" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"sI" = ( +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"sK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/item/toy/figure/warden{ + pixel_y = 8; + pixel_x = -1 + }, +/turf/open/floor/engine, +/area/security/warden) +"sP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"sS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"sT" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"sY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"ti" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"tn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/engine, +/area/security/brig/upper) +"tp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"tq" = ( +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"ts" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"tt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"tv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/engine, +/area/security/main/sb_med) +"tI" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/engine, +/area/security/main/sb_med) +"tM" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"tO" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/turf/open/floor/engine, +/area/security/main/mechanic) +"tR" = ( +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"tV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"ub" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig/upper) +"ug" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/lockers) +"ur" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 29 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"uZ" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/folder/blue{ + pixel_y = 4; + pixel_x = -1 + }, +/obj/item/folder/blue{ + pixel_x = 3; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"vl" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Space Pods"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main/angar) +"vm" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/engine, +/area/security/brig/upper) +"vs" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"vz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/engine, +/area/security/main/sb_med) +"vM" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"vR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"wb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"wc" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"wg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access_txt = "1" + }, +/obj/machinery/door/poddoor/shutters{ + id = "armory_warden"; + layer = 3.31 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"wk" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/turf/open/floor/engine, +/area/security/brig) +"wC" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"xq" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 1; + pixel_y = 3; + layer = 3.01 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point"; + layer = 3.02 + }, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/penacid{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10; + layer = 3.01 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"xt" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/stock_parts/cell/hyper{ + pixel_x = 3; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"xH" = ( +/obj/effect/landmark/start/field_medic, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/engine, +/area/security/main/sb_med) +"xP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"xU" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 4; + name = "Head of Security's Office APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"xX" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/evidence) +"yd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"yC" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"yW" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/structure/cable, +/obj/tacmap/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"zc" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/security/brig/upper) +"zj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"zl" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"zo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"zy" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -12; + layer = 3.01 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 15; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 7; + layer = 3.01 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"zz" = ( +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"zA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"zL" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/storage/box/deputy{ + pixel_x = -4; + pixel_y = 6; + layer = 3.01 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"zN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"zY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"zZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/x10, +/obj/item/stack/sheet/plasteel/x10, +/obj/item/clothing/gloves/combat{ + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"Ax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"AH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/security/main/mechanic) +"Bg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "rangespace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Bi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/sb_med) +"BZ" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/lockers) +"Ce" = ( +/obj/machinery/computer/prisoner/management{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Ci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Cp" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall, +/area/security/brig) +"Cv" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Cx" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light, +/turf/open/floor/engine, +/area/security/main/lockers) +"Cz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"CH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"CX" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5 + }, +/obj/machinery/camera/motion/directional/south, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Dj" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"Dq" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"DE" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -1 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"DW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main/mechanic) +"DZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/turf/open/floor/engine, +/area/security/brig/upper) +"Ei" = ( +/obj/effect/turf_decal/trimline/blue/end{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"Fh" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/engine, +/area/security/main/lockers) +"Fi" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"Fo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"Fy" = ( +/turf/open/floor/engine, +/area/security/main/angar) +"FC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access_txt = "1" + }, +/obj/machinery/door/poddoor/shutters{ + id = "armory_warden"; + layer = 3.31 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"FD" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/shield/riot/military{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/shield/riot/military{ + pixel_x = 5; + pixel_y = 1; + layer = 3.01 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"FP" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"Gc" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/security/main/lockers) +"Gs" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Gu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Gy" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/turf/open/floor/engine, +/area/security/brig) +"GE" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex/nitrile/polymer, +/obj/item/healthanalyzer{ + pixel_x = -9; + layer = 3.01 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 14; + layer = 3.01 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/security/main/sb_med) +"GL" = ( +/obj/effect/turf_decal/tile/hex/red, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/structure/closet/crate/freezer/blood, +/obj/item/iv_drip_item, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"GO" = ( +/turf/open/floor/engine, +/area/security/main/lockers) +"GT" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"Hm" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Hn" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/lockers) +"HB" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"HC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/field_med, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/lockers) +"HL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"HR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"Ic" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"If" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"IF" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main/evidence) +"IG" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"IX" = ( +/obj/structure/cable, +/obj/vehicle/ridden/forklift/security, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/department/security/brig) +"Jd" = ( +/obj/structure/table, +/obj/item/gun/energy/laser/practice{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 1; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Ji" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/obj/machinery/door/airlock/public/glass{ + name = "Тюремное крыло" + }, +/turf/open/floor/engine, +/area/security/brig) +"Jl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_3" + }, +/turf/open/floor/engine, +/area/security/brig) +"Jw" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/hooded/ablative, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/gun/energy/temperature/security{ + pixel_y = 2; + layer = 3.01 + }, +/obj/item/gun/energy/ionrifle{ + pixel_y = -4; + layer = 3.02 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"JF" = ( +/obj/structure/cable, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 2; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/binary/valve/layer2{ + dir = 4; + color = "#FFAAAA"; + hide = 1 + }, +/obj/machinery/atmospherics/components/binary/valve/layer4{ + dir = 4; + color = "#AAAAFF"; + hide = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Kc" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"Kp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"Lb" = ( +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box/caramel{ + pixel_y = 4 + }, +/obj/item/storage/fancy/donut_box/choco{ + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/security/main) +"Lc" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Lf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/security/main) +"Lt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/engine, +/area/security/brig/upper) +"Lw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"LV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"LZ" = ( +/turf/closed/wall/r_wall, +/area/security/main/sb_med) +"Md" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Mk" = ( +/obj/structure/closet{ + name = "janitorial supplies" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/lightreplacer, +/turf/open/floor/engine, +/area/security/brig/upper) +"Mm" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"Nd" = ( +/obj/effect/turf_decal/trimline/dark_red/filled/arrow_ccw{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"Ne" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/item/storage/belt/holster/thermal, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/obj/item/storage/belt/holster/thermal, +/obj/structure/rack{ + color = "#999999" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"NB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"NL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"NR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/security/main/lockers) +"NV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1; + layer = 3.01 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"Oi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"Ok" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"Om" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Oo" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor{ + id = "angarspace" + }, +/turf/open/floor/plating, +/area/security/main/angar) +"Oq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Pb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/defibrillator_mount{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/stasis{ + handbeltsmod = 1; + ivlmod = 1; + painkillermod = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Pw" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"PC" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"PE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig/upper) +"PI" = ( +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"PO" = ( +/obj/structure/sign/warning/firingrange, +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"PS" = ( +/obj/effect/landmark/start/field_medic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"PU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"Qs" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Qw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4; + color = "#00CCFF" + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"QF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/lockbox/loyalty{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"QG" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig/upper) +"QH" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"QV" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/main) +"QW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Rc" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/firstaid/medical{ + pixel_x = -6; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Ro" = ( +/obj/effect/turf_decal/trimline/blue, +/turf/open/floor/engine, +/area/security/main/sb_med) +"RC" = ( +/obj/machinery/camera/autoname, +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"RG" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"RK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"RN" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south{ + pixel_y = -23 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/security/main/sb_med) +"RV" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/engine, +/area/security/main/angar) +"RZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/storage/box/barbed_wire{ + pixel_y = 10; + pixel_x = -9 + }, +/obj/item/grenade/empgrenade{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/grenade/empgrenade{ + pixel_y = 2; + pixel_x = 9; + layer = 3.01 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -17; + pixel_y = 2; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Sa" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"Sd" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"Sg" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Лазарет"; + security_level = 6; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/main/sb_med) +"SC" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"SY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/security/brig/upper) +"Te" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"Tf" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig/upper"; + dir = 1; + name = "АПЦ: Охрана: Верхний бриг"; + pixel_y = 25 + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"Tg" = ( +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/engine, +/area/security/main) +"Tj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigenter" + }, +/obj/effect/turf_decal/trimline/dark_red/filled/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"Ts" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/evidence) +"Tv" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"TE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"TM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4; + color = "#00CCFF" + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"TY" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"Ug" = ( +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Камера 4"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_4"; + name = "Изоляция камеры 4"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"UA" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig/upper) +"UL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"UT" = ( +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"UV" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"UX" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/evidence) +"UY" = ( +/obj/spacepod/prebuilt/sec, +/turf/open/floor/engine, +/area/security/main/angar) +"Va" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Vb" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Vh" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"Vm" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "brigspace_left" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"Vx" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"Vz" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/shield/riot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/obj/item/shield/riot{ + layer = 3.01 + }, +/obj/item/shield/riot{ + layer = 3.01 + }, +/obj/item/shield/riot{ + pixel_x = 4; + pixel_y = -3; + layer = 3.02 + }, +/obj/item/shield/riot{ + pixel_x = 4; + pixel_y = -3; + layer = 3.02 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"VV" = ( +/obj/effect/turf_decal/trimline/blue/end, +/turf/open/floor/engine, +/area/security/main/sb_med) +"We" = ( +/obj/structure/cable, +/obj/effect/landmark/start/warden, +/turf/open/floor/engine, +/area/security/warden) +"Wt" = ( +/obj/structure/rack{ + color = "#999999" + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"WF" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/hex/bar, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"WN" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"WP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/bar, +/turf/open/floor/engine, +/area/security/brig) +"Xe" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/table/reinforced, +/obj/item/tactical_recharger, +/obj/machinery/door/window/eastleft{ + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"Xf" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Xo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xq" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xv" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor/multi_tile/two_tile_hor{ + id = "armory_mech"; + max_integrity = 1200 + }, +/turf/open/floor/engine, +/area/security/main/mechanic) +"Xx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"XG" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"XV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/command/heads_quarters/hos) +"XW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/security/main) +"Yf" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/east, +/obj/structure/window/reinforced, +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"Yx" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/engine, +/area/security/warden) +"YJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/reagent_containers/medigel/libital{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/item/reagent_containers/medigel/aiuri{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/reagent_containers/medigel/sal_acid_oxandrolone{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/storage/belt/medipenal/paramed{ + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"YQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"YS" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/evidence{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/toy/crayon/white{ + pixel_y = 10; + pixel_x = -5 + }, +/obj/item/toy/crayon/white{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/item/toy/figure/secofficer{ + pixel_x = 7; + pixel_y = -4 + }, +/turf/open/floor/engine, +/area/security/main) +"YV" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/evidence) +"Zd" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/engine, +/area/security/main/mechanic) +"Zk" = ( +/obj/machinery/fax, +/obj/structure/table/wood/fancy/black, +/obj/item/paper/monitorkey{ + pixel_y = -13 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"Zn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Zy" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig/upper) +"ZF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/hex/bar{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"ZL" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main/sb_med) +"ZS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"ZV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) + +(1,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(2,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(3,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(4,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(5,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(6,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(7,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(8,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(9,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(10,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(11,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(12,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +UL +er +er +Oo +Oo +Oo +er +er +er +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(13,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +rs +rU +RK +RK +da +dY +Kp +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(14,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +UY +PU +aY +SC +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(15,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +Fy +PU +dd +xt +er +le +gT +gT +gT +gT +PO +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(16,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +dA +cD +cD +cD +sY +Fo +dd +RV +Jd +Bg +Zy +dm +fA +lq +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(17,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +cT +qV +aY +wb +hu +hu +hu +vl +PE +PE +PE +PE +PE +DZ +le +le +le +le +le +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(18,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +er +jL +uZ +NV +wC +Pw +bB +RV +ub +vm +gw +vm +gw +ak +le +mu +dm +dm +Gu +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(19,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +er +Oo +Oo +er +er +er +er +er +qF +Qs +gp +gp +SY +Lt +le +zj +eU +eU +eY +le +ij +hJ +ij +ij +ij +ij +ij +aS +"} +(20,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +aS +bK +ft +Sa +ft +og +dm +ub +ei +gp +gp +eQ +PE +le +Cv +eV +re +fz +le +ez +eo +Ic +ir +iB +iY +jv +aS +"} +(21,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +bZ +ag +ae +Vm +NB +qw +hL +ub +ub +ei +gp +gp +gC +DZ +le +Sd +fe +fe +eY +le +Te +eo +eS +ik +fK +iE +jv +aS +"} +(22,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +ag +fF +fq +bY +ft +ho +hK +Mk +Lc +zc +zc +jI +PE +QG +iQ +eX +fB +ds +gB +ia +eo +Kc +ir +iF +ja +jv +aS +"} +(23,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +bZ +ag +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +UA +tn +le +le +le +le +le +le +gO +eo +Ug +ij +ij +ij +ea +aS +"} +(24,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +bZ +ag +LZ +RC +fU +kv +fN +xq +Pb +XG +dK +TM +PE +Ji +bV +qu +bV +bV +bV +TY +eo +Kc +ir +EV +jf +Jl +aS +"} +(25,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +eG +lk +QH +Ei +Ro +VV +gu +dK +Qw +oq +Ji +fY +fY +fY +fY +fY +hR +eo +eo +im +fK +iE +Jl +aS +"} +(26,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +qe +zo +vz +iK +PS +CH +mY +dK +Sg +dK +eC +eC +Yx +eC +Yx +eC +IG +eo +Kc +ir +iF +jc +Jl +aS +"} +(27,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +wc +Bi +tv +oV +YJ +dg +Gs +gs +Bi +vM +eC +yW +fb +fE +pO +gH +iL +eo +hQ +ij +ij +ij +ea +aS +"} +(28,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +UV +ag +LZ +GL +Bi +xH +GE +zy +Va +fw +od +Vb +RN +eC +Tf +eH +fg +ga +ff +iL +eo +Kc +ir +kJ +jd +jw +aS +"} +(29,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +ZL +li +tI +Yf +Rc +bl +gG +kU +hX +Ce +eC +nI +eH +fg +fd +gI +iL +eo +eo +io +fK +iE +jw +aS +"} +(30,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +hp +iC +hp +aR +aR +aR +aR +aR +aR +aR +eC +nJ +mK +We +aU +ff +iL +eo +Kc +ir +iF +je +jw +aS +"} +(31,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aX +hp +Ts +aZ +ow +aR +Ci +Xe +qU +cG +tq +Wt +ek +sK +fC +Cz +sT +Yx +PC +eo +hS +ij +ij +ij +ea +aS +"} +(32,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +fL +sP +nH +aR +QF +ct +dG +dG +dh +Om +FC +eD +fG +fG +gb +tp +TY +eo +Kc +ir +iD +wk +au +aS +"} +(33,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +fL +jJ +cd +aR +CX +cu +ts +Ne +Oq +cH +wg +eE +hw +fG +gc +Yx +sb +eo +ia +ip +fK +iE +au +aS +"} +(34,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +ag +bZ +ag +ae +ag +hp +IF +aZ +xX +aR +DE +cu +oA +cI +Oq +dE +ek +eF +fh +dl +gd +eC +FP +eo +WP +ir +iF +jg +au +aS +"} +(35,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +hp +YV +hp +aR +ZS +cu +eW +cJ +Oq +dF +aR +ff +ff +oK +Yx +eC +qX +eo +hT +ij +ij +ij +Cp +aS +"} +(36,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +el +aZ +sy +aR +hx +cu +Vz +cK +Oq +RZ +aR +hr +fi +fM +gf +gN +PC +eo +hR +iq +iH +jh +jx +aS +"} +(37,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +gE +sP +mX +aR +qH +cu +FD +cL +Oq +dH +ej +rf +fj +fJ +fj +Xv +hR +eo +Kc +ir +iI +ji +jy +aS +"} +(38,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +pP +jJ +sn +aR +ge +cu +Jw +cM +dn +cH +gr +eJ +gh +aF +gh +tO +hR +eo +Tv +ij +iJ +jj +jz +aS +"} +(39,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +ag +hp +yC +aZ +gF +aR +cb +sS +dj +cN +do +dI +aR +eK +AH +fM +gi +gN +gV +eo +hR +is +cz +eO +oi +aS +"} +(40,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +fH +fH +hp +UX +NL +UX +aR +aR +aR +cO +dp +aR +aR +aR +Zd +fl +fM +gj +gN +iL +eo +kH +Gy +ir +ir +Gy +aS +"} +(41,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +fH +Cx +cr +pS +br +GO +HC +bC +jp +GO +GO +mt +ug +em +eL +eN +fM +gk +gN +Vx +eo +hR +Tj +Nd +jk +jB +aS +"} +(42,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +GO +GO +fH +sI +rn +ti +Fh +BZ +Fh +GO +GO +gg +ug +eJ +eN +DW +fM +gl +gN +ni +eo +tR +ij +ij +ij +ij +aS +"} +(43,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +fH +BZ +BZ +NR +BZ +br +bD +bD +bD +bD +bD +br +dq +dL +en +gm +fo +fO +gm +gK +eo +eo +fS +ir +iN +ZV +ij +aS +"} +(44,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +GO +GO +fH +GO +Fh +GO +Fh +GO +Fh +zA +GO +bq +ug +rf +eN +zY +eN +HL +gN +ZF +eo +Xx +iu +iO +jl +ij +aS +"} +(45,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +fH +Gc +cr +GT +hm +bp +bp +bp +bp +cw +Hn +zZ +ug +bj +gh +cV +eJ +go +gN +vs +hR +ib +ir +iP +jm +ij +aS +"} +(46,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +fH +fH +dv +dv +dv +du +du +du +du +dv +dv +ba +ba +ba +eP +zN +eP +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(47,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +ag +dv +dv +bs +rw +cf +bF +zL +cx +dv +Lb +jC +YQ +UT +mZ +hd +gq +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(48,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +be +bt +fD +cg +fD +fD +HR +du +Ax +aP +XW +XW +fr +gQ +dJ +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(49,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +ur +bu +bH +ch +bG +fD +HR +du +UT +dQ +es +eR +fs +fR +HB +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(50,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +cp +aS +aS +aS +ae +ag +bZ +gJ +fn +WN +bv +bI +ci +XV +oW +tt +cR +Lf +dR +dN +et +ew +fR +zl +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(51,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +RG +bw +bJ +cj +bG +fD +fD +du +it +fT +dN +eu +lh +fR +dJ +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(52,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +UL +dv +qL +Fi +fD +cg +fD +If +dS +du +TE +fT +ev +YS +fv +fR +tV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(53,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +dv +uS +Zk +fm +xU +Ok +Vh +dv +Tg +fT +eT +eT +eT +fR +QV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(54,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +aS +dv +dv +Oi +Oi +dv +dv +dv +dv +dw +dU +Dj +WF +fx +cs +eg +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(55,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +aS +ag +aS +aS +aS +bZ +bZ +bZ +ba +ba +dV +ba +ba +ba +PI +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(56,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +bZ +bZ +bZ +bZ +bZ +gJ +pa +dk +dk +dk +iU +vR +iX +dk +mO +pj +xP +Dq +aS +aS +aS +aS +aS +aS +aS +aS +"} +(57,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +aS +aS +aS +aS +ae +iR +iS +iT +rq +Xo +Zn +QW +jb +Lw +JF +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(58,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +dk +dk +dk +bb +iW +Mm +dk +IX +yd +Md +Xf +Hm +aS +aS +aS +aS +aS +aS +aS +"} +(59,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ae +ae +ae +ae +ag +ag +ag +ag +bc +iV +jn +iV +bc +pz +Xq +iy +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(60,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +dk +iV +iV +iV +dk +pz +tM +zz +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(61,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +dk +iV +iV +iV +dk +dk +dk +dk +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(62,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +dk +iV +iV +iV +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(63,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +LV +dk +bc +jo +bc +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} diff --git a/_maps/r_ruins/station/brig/brig_armored_old.dmm b/_maps/r_ruins/station/brig/brig_armored_old.dmm new file mode 100644 index 000000000000..c50d40dfe0cb --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_armored_old.dmm @@ -0,0 +1,6402 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/floor/plating, +/area/security/main) +"ab" = ( +/turf/template_noop, +/area/template_noop) +"ac" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"ah" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"ar" = ( +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"aM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"aN" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/recharger_item{ + pixel_y = 5 + }, +/obj/item/recharger_item{ + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"aW" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"be" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/engine, +/area/security/main) +"bh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bi" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/engine, +/area/security/main) +"bn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"bo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/engine, +/area/security/brig) +"bu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"bw" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/security/main) +"bx" = ( +/turf/open/floor/engine, +/area/security/main) +"by" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/security/main) +"bA" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = -31 + }, +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bB" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bC" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bD" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bE" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/storage/ashtray/bronze, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bI" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bL" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"bM" = ( +/obj/structure/closet/bombcloset/security, +/turf/open/floor/engine, +/area/security/main) +"bN" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/security/main) +"bO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/security/main) +"bQ" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -6; + pixel_y = -6 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bR" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "3" + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bS" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bT" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bU" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 10 + }, +/obj/structure/table/wood, +/obj/item/radio/off, +/obj/item/taperecorder, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"bV" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"cd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"ce" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"ch" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ci" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 25 + }, +/obj/item/storage/toolbox/drone{ + pixel_y = 10 + }, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cj" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/item/shield/riot/military, +/obj/item/shield/riot/military, +/obj/item/stack/sheet/armor_plate/ablative, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"ck" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cl" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cm" = ( +/obj/structure/rack, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/item/gun/energy/temperature/security, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cn" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"co" = ( +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cp" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/camera{ + c_tag = "Brig Equipment Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"cq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"cr" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/engine, +/area/security/main) +"cs" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"ct" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cu" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 7 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cv" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cw" = ( +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cA" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"cJ" = ( +/obj/item/grenade/barrier{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/firingpins{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/storage/box/firingpins{ + pixel_x = 9 + }, +/obj/item/key/security, +/obj/item/grenade/barrier{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/machinery/vending/security, +/turf/open/floor/engine, +/area/security/main) +"cO" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/security/main) +"cP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cS" = ( +/mob/living/simple_animal/pet/dog/shepherd, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"cY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"db" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/gun/ballistic/shotgun/sniper, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dd" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = 2 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = -4 + }, +/obj/item/gun/ballistic/automatic/wt550{ + pixel_y = 4 + }, +/obj/item/gun/ballistic/automatic/wt550, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"de" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"df" = ( +/obj/effect/turf_decal/bot, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dg" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dh" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Armory Rack"; + req_access_txt = "3" + }, +/obj/item/storage/belt/holster/thermal, +/obj/item/storage/belt/holster/thermal, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"di" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "armory"; + name = "Armoury Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dk" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"dm" = ( +/obj/item/storage/secure/safe/hos{ + pixel_x = 35 + }, +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dn" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/pdapainter/security, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"do" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dp" = ( +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"dI" = ( +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/flasher_portable_item{ + pixel_x = -7 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dO" = ( +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dP" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dQ" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"dR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/main) +"dS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/engine, +/area/security/main) +"dT" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/pen, +/obj/item/storage/toolbox/drone{ + pixel_y = 9 + }, +/turf/open/floor/engine, +/area/security/main) +"dU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main) +"dV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"dW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"dY" = ( +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"ea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/brig) +"el" = ( +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"em" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"en" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/hex/neutral, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"eo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"ep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"eq" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"er" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/engine, +/area/security/main) +"es" = ( +/obj/machinery/recharger, +/obj/structure/table, +/turf/open/floor/engine, +/area/security/main) +"et" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"eu" = ( +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/engine, +/area/security/main) +"ev" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"ex" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"ey" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main) +"ez" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"eA" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"eB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"eC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"eD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"eE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"eH" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/security/main) +"eI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod3_lavaland"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/security/main) +"eW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"eX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"eY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/main) +"fb" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fc" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/assembly/timer, +/turf/open/floor/engine, +/area/security/main) +"fd" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"fe" = ( +/obj/structure/reagent_dispensers/peppertank, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"ff" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/security/main) +"fg" = ( +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"fi" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/security/main) +"fj" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/engine, +/area/security/main) +"fk" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"fm" = ( +/obj/structure/sign/warning/pods{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/vehicle/ridden/forklift/security{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fn" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"fo" = ( +/obj/effect/landmark/start/field_medic, +/turf/open/floor/engine, +/area/security/brig) +"fs" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Prison Wing" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"ft" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Prison Wing" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"fu" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/security/warden) +"fv" = ( +/obj/machinery/computer/prisoner/management, +/turf/open/floor/engine, +/area/security/warden) +"fw" = ( +/obj/machinery/computer/security, +/turf/open/floor/engine, +/area/security/warden) +"fx" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/engine, +/area/security/warden) +"fy" = ( +/turf/open/floor/engine, +/area/security/warden) +"fz" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"fB" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/turf/open/floor/engine, +/area/security/warden) +"fC" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/warden) +"fD" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/gun/energy/laser/practice, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"fE" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"fF" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"fG" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/security/main) +"fH" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"fI" = ( +/obj/structure/table, +/obj/item/assembly/flash/handheld, +/turf/open/floor/engine, +/area/security/main) +"fJ" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/simple_animal/bot/secbot/ed209{ + arrest_type = 1; + idcheck = 1; + name = "Castratus"; + weaponscheck = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"fK" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/engine, +/area/security/main) +"fL" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/security/main) +"fO" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"fP" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"fQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"fS" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"fT" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"fU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"fV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"fW" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/healthanalyzer, +/turf/open/floor/engine, +/area/security/brig) +"fX" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = -13; + pixel_y = 11 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 7 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/security/brig) +"fY" = ( +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/engine, +/area/security/brig) +"fZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/structure/closet/crate/freezer/blood, +/obj/item/iv_drip_item, +/turf/open/floor/engine, +/area/security/brig) +"ga" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"gb" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/engine, +/area/security/warden) +"gc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/engine, +/area/security/warden) +"gd" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"ge" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/engine, +/area/security/main) +"gf" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/engine, +/area/security/main) +"gg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/main) +"gi" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"gj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/engine, +/area/security/main) +"gk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"gl" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/main) +"gm" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/turf/open/floor/engine, +/area/security/main) +"gn" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/security/main) +"go" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"gp" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/engine, +/area/security/brig) +"gr" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"gt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"gu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/warden) +"gw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/warden) +"gx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main) +"gy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/main) +"gz" = ( +/obj/item/storage/box/bodybags{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -1 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/turf/open/floor/engine, +/area/security/brig) +"gA" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"gB" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"gC" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"gD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"gE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"gF" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"gG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"gH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/engine, +/area/security/main) +"gI" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main) +"gJ" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/main"; + dir = 4; + name = "Security Office APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 39; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/security/main) +"gK" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/engine, +/area/security/brig) +"gL" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"gM" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/item/shield/riot/kevlar, +/turf/open/floor/engine, +/area/security/warden) +"gN" = ( +/obj/structure/table, +/turf/open/floor/engine, +/area/security/warden) +"gO" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/warden, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -27; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2 + }, +/turf/open/floor/engine, +/area/security/warden) +"gP" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/warden) +"gQ" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/engine, +/area/security/warden) +"gR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/warden) +"gS" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/engine, +/area/security/warden) +"gT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"gU" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"gV" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"gW" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/engine, +/area/security/brig) +"gX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/engine, +/area/security/warden) +"gY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"gZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/main) +"ha" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hb" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hc" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hd" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"he" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hf" = ( +/obj/machinery/camera{ + c_tag = "Security Office"; + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hg" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hh" = ( +/obj/structure/filingcabinet, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/main) +"hi" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/vehicle/ridden/forklift/security{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main) +"hj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"hk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main) +"hn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"ho" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/warden) +"hp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/security/warden) +"hq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/warden) +"hr" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/main) +"hs" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"ht" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"hu" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hw" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/security/brig) +"hx" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"hy" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/turf/open/floor/engine, +/area/security/brig) +"hz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/security/brig) +"hA" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"hB" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/security/brig) +"hC" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"hD" = ( +/obj/machinery/camera{ + c_tag = "Brig East" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"hE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"hI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hJ" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "Brig APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/engine, +/area/security/brig) +"hK" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"hM" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"hT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"hW" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"hY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/engine, +/area/security/brig) +"hZ" = ( +/obj/machinery/camera{ + c_tag = "Brig West"; + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"ia" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/security/brig) +"id" = ( +/obj/machinery/light, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"ie" = ( +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"if" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"ig" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Security"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"ih" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"ii" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"ij" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig) +"il" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"im" = ( +/obj/machinery/light, +/turf/open/floor/engine, +/area/security/brig) +"io" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"ip" = ( +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/security/brig) +"iq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"is" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iu" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iv" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"ix" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"iy" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iz" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"iA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iB" = ( +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iC" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iD" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/security/brig) +"iF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iH" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/brig) +"iI" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/turf/open/floor/engine, +/area/security/brig) +"iJ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/engine, +/area/security/brig) +"iK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"iL" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/security/brig) +"iM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iN" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"iQ" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/engine, +/area/security/brig) +"iR" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"iS" = ( +/turf/open/floor/engine, +/area/security/brig) +"iT" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"iU" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"iV" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"iW" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"iX" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"iY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"iZ" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/security/brig) +"ja" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/turf/open/floor/engine, +/area/security/brig) +"jb" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"jc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"jd" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/security/brig) +"je" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/brig) +"jf" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"jg" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"jh" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine, +/area/security/brig) +"ji" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"jj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"jk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"jl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"jm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/brig) +"jn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"jo" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/turf/open/floor/engine, +/area/security/brig) +"jp" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/security/brig) +"jD" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/brig) +"kL" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"lf" = ( +/obj/structure/table/wood, +/turf/open/floor/engine, +/area/command/heads_quarters/hos) +"lY" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/turf/open/floor/engine, +/area/security/main) +"mp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/brig) +"qI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/specialist, +/turf/open/floor/engine, +/area/security/main) +"tR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"tZ" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/security/main) +"wE" = ( +/obj/structure/closet/secure_closet/security/specialist, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/security/main) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/security/brig) +"Gg" = ( +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/security/brig) +"If" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 2" + }, +/obj/machinery/treadmill_monitor{ + id = "Cell 2"; + pixel_x = -32 + }, +/turf/open/floor/engine, +/area/security/brig) +"Qd" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"Rq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/engine, +/area/security/main) +"TC" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/ai_monitored/security/armory) +"VV" = ( +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/engine, +/area/security/main) +"ZX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/secequipment, +/turf/open/floor/engine, +/area/security/main) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(3,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(4,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(5,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(6,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(7,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(8,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(9,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(10,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(11,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(12,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(13,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(14,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(15,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(16,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(17,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(18,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +iz +iz +iz +iz +iz +ab +ab +ab +ab +ab +ab +ab +"} +(19,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +mp +iS +iS +ce +iz +iz +hA +iz +iz +iz +iz +ab +"} +(20,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +bn +go +go +dv +iz +hI +hX +iz +iC +iR +jg +iz +"} +(21,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fO +gp +gK +dv +iz +hJ +hY +iq +bL +iS +jh +iz +"} +(22,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fP +jD +jD +dv +iz +hK +hZ +iz +iD +iT +ji +iz +"} +(23,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ah +bo +aM +gL +hn +hs +hL +ia +iz +iz +iz +iz +iz +"} +(24,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +iz +iz +iz +iz +iz +hM +gA +ix +iE +iU +jj +ab +"} +(25,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fW +gz +gC +gW +iz +hN +io +is +ea +iF +jj +ab +"} +(26,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fX +gA +gU +hx +iz +hT +ie +ix +iG +iV +jj +ab +"} +(27,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fY +iS +fo +hy +iz +hT +id +iz +iz +iz +iz +ab +"} +(28,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +fZ +gB +gV +hz +iz +hT +gA +ix +If +iW +jj +ab +"} +(29,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fs +fQ +fQ +fQ +fQ +ht +io +io +iu +ea +iF +jj +ab +"} +(30,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ft +iN +iN +iN +iN +hu +hT +ie +ix +iG +iX +jj +ab +"} +(31,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +aR +aR +aR +aR +aR +aR +fz +fS +fz +fS +fz +hC +hT +if +iz +iz +iz +iz +ab +"} +(32,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +ch +cJ +db +aS +dI +aR +fu +fT +gr +gM +ho +hw +hU +gA +ix +EV +iY +jj +ab +"} +(33,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +ci +cK +dc +dJ +el +aR +fv +fy +fT +gN +fS +hC +cY +io +iv +iH +iF +jj +ab +"} +(34,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ag +ag +ab +ab +kL +ab +ab +aR +cj +cL +dd +dK +em +fd +fw +fU +fT +gO +hp +hC +hT +ie +ix +iG +iZ +jj +ab +"} +(35,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ab +ag +ab +ab +kL +ab +ab +aR +ck +cL +de +dL +en +fd +fx +fV +fT +gP +fS +hC +hT +ih +iz +iz +iz +iz +ab +"} +(36,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ag +ab +ab +kL +ab +ab +aR +cl +cL +df +dM +eo +eW +fy +fV +gt +gQ +fS +hC +hT +ar +iw +iI +ja +jk +ab +"} +(37,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ag +ab +ab +kL +ab +ab +aR +cm +cL +dg +dN +ep +eX +gR +ga +gu +gR +hq +cA +io +ii +ix +iJ +jb +jl +ab +"} +(38,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ag +ab +ab +kL +ab +ab +aR +cn +cL +dh +dO +eq +fd +fB +fy +fT +gS +fS +hC +hT +ar +iz +iK +jc +jm +ab +"} +(39,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ag +ag +kL +kL +ab +ab +aR +co +cM +di +dP +TC +fe +fC +gb +fT +gT +fz +hB +hV +ij +iy +iL +iL +jn +ab +"} +(40,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ag +ag +kL +Qd +be +lY +lY +aR +aR +aR +dj +dQ +aR +aR +fz +gc +gw +gX +fz +Gg +hT +iM +ix +iM +iM +jo +ab +"} +(41,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ag +kL +ab +be +Rq +wE +bM +cp +cN +bx +bx +er +ff +fD +gd +gx +gY +be +hD +dV +il +iA +il +jd +jp +ab +"} +(42,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +kL +ab +lY +VV +bx +bx +bx +bx +bx +bx +es +bg +ex +ge +gy +gZ +hr +hE +io +im +iz +iz +iz +iz +ab +"} +(43,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +kL +ab +be +tZ +ZX +bN +bN +bN +bN +dR +et +eY +fE +et +gD +ha +be +hC +hT +iS +ix +iO +iO +iz +ab +"} +(44,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ag +ag +kL +ag +lY +bx +bx +bO +cq +cq +cq +dS +eu +bg +fF +bx +gE +hb +be +hC +cY +io +iB +iP +je +iz +ab +"} +(45,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +ab +kL +be +by +bw +bw +bw +bw +bw +be +be +be +fG +qI +bu +hc +be +iN +hW +ip +ix +iQ +jf +iz +ab +"} +(46,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ag +ag +ag +kL +aW +aW +aW +aW +cs +cs +aW +aW +ev +fb +fH +ge +gE +hd +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(47,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +kL +ag +aW +bA +lf +bQ +ct +cP +dn +cs +ex +fc +fI +gf +gE +he +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(48,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ag +ag +kL +ag +bI +bB +cw +bR +cu +cQ +bh +aW +ex +bx +bx +gg +gF +hf +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(49,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +kL +ag +bI +bC +bS +bS +cv +cR +do +ig +ey +fg +fJ +gD +gG +hg +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(50,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +kL +ab +ab +kL +ag +bI +bD +cw +bT +cw +cS +dp +aW +ez +fi +fi +gi +gE +hh +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(51,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ab +ab +kL +ag +aW +bE +lf +bU +cx +dm +dW +dX +eA +fj +fK +gj +gH +hi +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(52,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +ag +ag +ag +aN +aW +aW +aW +aW +aW +aW +aW +aW +ex +fk +fk +gk +gI +hj +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(53,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +kL +ag +ab +ab +ag +ab +ab +ab +ab +ag +bi +dT +eB +fl +fL +gl +gJ +hk +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(54,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +kL +kL +kL +kL +kL +kL +kL +kL +kL +ag +bi +dU +eC +fm +be +gm +be +cd +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(55,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bV +be +be +be +be +eD +be +be +gn +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(56,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cr +cO +dk +dY +bx +fn +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(57,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +be +be +be +be +eE +be +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(58,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +tR +aa +eH +aa +tR +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(59,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +aa +aa +aa +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(60,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +aa +aa +aa +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(61,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +aa +aa +aa +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(62,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +tR +eI +tR +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} diff --git a/_maps/r_ruins/station/brig/brig_default.dmm b/_maps/r_ruins/station/brig/brig_default.dmm new file mode 100644 index 000000000000..094d5599b719 --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_default.dmm @@ -0,0 +1,8519 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"ak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"au" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_1" + }, +/turf/open/floor/plating, +/area/security/brig) +"aF" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/mechanic) +"aP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/turf/template_noop, +/area/template_noop) +"aU" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aX" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"aY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"ba" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bb" = ( +/turf/closed/wall, +/area/maintenance/department/security/brig) +"bc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"be" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/machinery/pdapainter/security, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bj" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"bl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main/sb_med) +"bp" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bq" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"br" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bs" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -29; + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bt" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/command/heads_quarters/hos) +"bu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/hos) +"bv" = ( +/obj/structure/chair/comfy/black, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/hos) +"bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/hos) +"bB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"bC" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bD" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bF" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off{ + pixel_y = 3; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bG" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/heads_quarters/hos) +"bH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bI" = ( +/obj/structure/table/wood, +/obj/item/stamp/hos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bJ" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -18; + pixel_y = 7 + }, +/obj/item/storage/ashtray/bronze, +/obj/item/pen{ + layer = 3.02; + pixel_y = 6; + pixel_x = -17 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bK" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"bU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"bV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"bW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"bY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"bZ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"cb" = ( +/obj/vehicle/ridden/secway, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"cf" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cg" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/heads_quarters/hos) +"ch" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ci" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cj" = ( +/obj/structure/cable, +/mob/living/simple_animal/hostile/giant_spider/sgt_araneus, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cp" = ( +/obj/effect/landmark/carpspawn, +/turf/template_noop, +/area/template_noop) +"cr" = ( +/turf/closed/wall/r_wall, +/area/security/main/lockers) +"cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ct" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/brig) +"cw" = ( +/obj/machinery/vending/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"cx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/heads_quarters/hos) +"cz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"cG" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cH" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/security/armory) +"cI" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot{ + layer = 3.01 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cJ" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun{ + layer = 3.01 + }, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cL" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler{ + layer = 3.01 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/structure/table/reinforced, +/obj/item/full_armor_upgrade{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/full_armor_upgrade{ + pixel_y = 3 + }, +/obj/item/full_armor_upgrade{ + pixel_x = 6 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cO" = ( +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"cS" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cT" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/security/main/angar) +"cV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"dd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"dh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dj" = ( +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dk" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/brig) +"dl" = ( +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dm" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + layer = 3.01 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dn" = ( +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"do" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/brig/upper) +"du" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"dw" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main) +"dA" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"dE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/firingpins{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dF" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/directional/south, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/storage/box/stingbangs{ + pixel_x = 3; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"dI" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/gun/energy/e_gun/dragnet{ + layer = 3.01 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dJ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main) +"dK" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/sb_med) +"dL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main/lockers) +"dN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Тюремное крыло" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"dO" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/mechanic) +"dQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dR" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dS" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dU" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 7 + }, +/turf/open/floor/plasteel, +/area/security/main) +"dV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"ea" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/brig) +"eg" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main) +"eh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/brig) +"ei" = ( +/obj/structure/railing, +/turf/open/floor/glass/reinforced, +/area/security/brig/upper) +"ej" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor{ + id = "armory_weapon" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ek" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"el" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"em" = ( +/obj/structure/table/reinforced, +/obj/item/recharger_item{ + pixel_y = 9 + }, +/obj/item/recharger_item, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"en" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"eo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"ep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/brig/upper) +"er" = ( +/turf/closed/wall/r_wall, +/area/security/main/angar) +"es" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -3; + layer = 3.01 + }, +/obj/item/pen{ + layer = 3.02 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"et" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main) +"eu" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main) +"ev" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen/blue, +/obj/item/food/donut/berry{ + pixel_y = -14; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ew" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"ex" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"ez" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig) +"eC" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"eD" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eE" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -1; + pixel_y = -7; + layer = 3.01 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eG" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"eH" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eJ" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/mechanic) +"eK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"eL" = ( +/obj/machinery/mecha_part_fabricator/sb, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"eM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"eN" = ( +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"eO" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main) +"eP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"eR" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + layer = 3.02 + }, +/obj/item/clothing/mask/gas/sechailer/swat{ + pixel_y = -7; + layer = 3.03; + pixel_x = 3 + }, +/obj/item/folder/yellow{ + pixel_x = 9; + pixel_y = 8; + layer = 3.01 + }, +/obj/item/folder/blue{ + pixel_y = 11; + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eS" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/assembly/timer, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"eV" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"eW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"eX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"eY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"fb" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/bed/dogbed/mcgriff, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fd" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"fg" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fi" = ( +/obj/structure/table, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = 6; + pixel_y = 1; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"fj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/mechanic) +"fk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"fl" = ( +/obj/effect/landmark/start/specialist, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"fm" = ( +/obj/structure/cable, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"fn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"fo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/secbot/beepsky{ + auto_patrol = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"fq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fr" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fs" = ( +/obj/structure/table, +/obj/item/flashlight/seclite{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/flashlight/seclite{ + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ft" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fv" = ( +/obj/structure/table, +/obj/item/restraints/legcuffs/bola/energy{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/restraints/legcuffs/bola/energy{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/screwdriver{ + pixel_x = 1; + pixel_y = 19 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"fw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"fx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"fA" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"fB" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"fE" = ( +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"fG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/lockers) +"fJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/mechanic) +"fK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"fM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"fN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"fO" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"fP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"fR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fS" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"fT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fU" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced, +/obj/structure/sign/warning/bodysposal{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/sb_med) +"fY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/filled/arrow_cw{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/arrow_cw{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ga" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Блокировка ПермаБрига"; + pixel_y = 8; + req_access_txt = "2"; + pixel_x = 7 + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Изоляция камер"; + pixel_x = 7; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "warden_sh"; + name = "Бронешторы надзирателя"; + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gb" = ( +/obj/effect/turf_decal/siding/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red/corner, +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gc" = ( +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/tank_holder/extinguisher/advanced, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gd" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/red{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ge" = ( +/obj/structure/rack, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/delivery, +/obj/item/gun/energy/temperature/security{ + pixel_y = 2 + }, +/obj/item/gun/energy/ionrifle{ + pixel_y = -4; + layer = 3.01 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"gf" = ( +/obj/structure/table, +/obj/item/door_seal/sb{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"gg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/mechanic) +"gh" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main/mechanic) +"gi" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"gj" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery/red, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"gk" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/recharge_floor, +/area/security/main/mechanic) +"gl" = ( +/obj/machinery/recharge_station, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/mechanic) +"gm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"gn" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main) +"go" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"gp" = ( +/turf/open/openspace, +/area/security/brig/upper) +"gq" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main) +"gr" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"gs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/sb_med) +"gt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/brig/upper) +"gu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark/side, +/area/security/main/sb_med) +"gw" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"gz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"gB" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"gC" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/security/brig/upper) +"gE" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 1; + pixel_y = 1; + layer = 3.01 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"gF" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"gG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/sb_med) +"gH" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"gI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3"; + pixel_y = -2 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh"; + layer = 3.31 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gJ" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"gK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"gN" = ( +/turf/closed/wall/r_wall, +/area/security/main/mechanic) +"gO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/brig) +"gP" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"gQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"gS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"gT" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rangespace" + }, +/turf/open/floor/plating, +/area/security/brig/upper) +"gU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"gY" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/brig) +"hm" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"ho" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/brig/upper) +"hp" = ( +/turf/closed/wall/r_wall, +/area/security/main/evidence) +"hr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2; + pixel_y = -5; + layer = 3.01 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3; + pixel_y = -5; + layer = 3.02 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8; + pixel_y = -5; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = -5; + pixel_y = 9; + layer = 3.01 + }, +/obj/item/grenade/barrier{ + pixel_x = -1; + pixel_y = 9; + layer = 3.02 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 9; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = 7; + pixel_y = 9; + layer = 3.04 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"hu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"hv" = ( +/turf/open/floor/plasteel, +/area/security/brig/upper) +"hw" = ( +/obj/machinery/button/door{ + id = "armory_mech"; + name = "Жалюзи мастерской"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = -1 + }, +/obj/machinery/button/door{ + id = "armory_weapon"; + name = "Жалюзи оружейной"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"hx" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = -4 + }, +/obj/item/clothing/suit/armor/laserproof{ + pixel_x = 4; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"hy" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"hJ" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"hK" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training{ + pixel_y = 20 + }, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"hL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"hM" = ( +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"hO" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/brig) +"hQ" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Камера 3"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_3"; + name = "Изоляция камеры 3"; + pixel_x = -10; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"hR" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/security/brig) +"hS" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Камера 2"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_2"; + name = "Изоляция камеры 2"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"hT" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "brig_isolation_1"; + name = "Изоляция камеры 1"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Камера 1"; + pixel_y = -39 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/brig) +"hU" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/corner, +/area/security/brig) +"hX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/sb_med) +"hY" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"ia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"ib" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/brig) +"ij" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"ik" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Камера 4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"im" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Камера 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"io" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Камера 2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"ip" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Камера 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ir" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"is" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"it" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iy" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 4"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 4" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iC" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"iD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iH" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iI" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"iN" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iP" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/brig/upper) +"iR" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iT" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iV" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iX" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iZ" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"ja" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Шкафчик камеры 4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"jc" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Шкафчик камеры 3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"je" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Шкафчик камеры 2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jf" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jg" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Шкафчик камеры 1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ji" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off{ + layer = 3.01 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jk" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jl" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"jm" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jn" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"jv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_4" + }, +/turf/open/floor/plating, +/area/security/brig) +"jw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_2" + }, +/turf/open/floor/plating, +/area/security/brig) +"jx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jC" = ( +/obj/tacmap/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"jI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"jJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"jL" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/spacepod_key/sec{ + pixel_x = -2; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"kv" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/sb_med) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"kU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/reagent_containers/glass/bottle/cyanide, +/obj/structure/closet/secure_closet/medical1{ + req_one_access_txt = "5;63"; + req_access = null; + req_access_txt = null + }, +/obj/item/reagent_containers/glass/bottle/cyanide, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/sb_med) +"le" = ( +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"li" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"lk" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/sb_med) +"lq" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/brig/upper) +"mt" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"mu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig/upper) +"mH" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/heads_quarters/hos) +"mK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"mO" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/department/security/brig) +"mX" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 4; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"mY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main/sb_med) +"mZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"ni" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/brig) +"nH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"nI" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"nJ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "АПЦ: Охрана: Бриг"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"og" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig/upper) +"oi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"oq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ow" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"oA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"oK" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/warden) +"oV" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/medigel/libital, +/obj/item/reagent_containers/medigel/aiuri{ + pixel_x = 6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"pa" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"pj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"pz" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"pO" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/item/shield/riot/kevlar, +/obj/effect/turf_decal/siding/red{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"pP" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -14; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -10; + pixel_y = 1; + layer = 3.01 + }, +/obj/item/gps/mining/off{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/gps/mining/off{ + pixel_x = 7 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"pS" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"qu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/arrow_ccw{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/arrow_ccw{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"qw" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"qF" = ( +/obj/tacmap/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig/upper) +"qH" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"qL" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/item/storage/secure/safe/hos{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/obj/structure/table/wood, +/obj/item/computer_disk/security{ + pixel_y = 4; + layer = 3.01 + }, +/obj/item/computer_disk/security{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"qU" = ( +/obj/structure/table/reinforced, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/security/armory"; + name = "Контролер турели брига"; + req_access = null; + req_access_txt = "1"; + pixel_x = -26; + pixel_y = 20 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"qV" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "angarspace"; + name = "Стрелковая галерея"; + pixel_x = 26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"qX" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"re" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"rf" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/mechanic) +"ri" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig/upper) +"rn" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"rq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"rs" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id = "spbrig" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "spbrig"; + name = "Blast Door Control"; + pixel_x = -28; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/main/angar) +"rw" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 4; + pixel_y = -14; + layer = 3.02 + }, +/obj/item/folder/red{ + pixel_x = -8; + pixel_y = -10 + }, +/obj/item/folder/yellow{ + pixel_x = -4; + pixel_y = -15; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"rU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"sb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/brig) +"sn" = ( +/obj/structure/table/reinforced, +/obj/item/radio/off{ + pixel_x = -21; + pixel_y = 7 + }, +/obj/item/radio/off{ + pixel_x = -16; + pixel_y = 3; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"sy" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"sI" = ( +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"sK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"sS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"sT" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/siding/red, +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"ti" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"tn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"tp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/warden) +"tq" = ( +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"ts" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"tt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"tI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/sb_med) +"tM" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"tO" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"tR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"ub" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig/upper) +"ur" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 29 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uZ" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/folder/blue{ + pixel_y = 4; + pixel_x = -1 + }, +/obj/item/folder/blue{ + pixel_x = 3; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"vl" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Space Pods"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main/angar) +"vm" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"vM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/sb_med) +"vR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"wb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"wc" = ( +/obj/structure/table, +/obj/item/storage/box/flashes{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 4; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"wg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"wk" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"wC" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"xq" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10; + layer = 3.01 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 1; + pixel_y = 3; + layer = 3.01 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point"; + layer = 3.02 + }, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/sb_med) +"xt" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"xH" = ( +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"xP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"xU" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 4; + name = "Head of Security's Office APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/brig) +"xX" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"yd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"yC" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"yW" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"zc" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/security/brig/upper) +"zj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig/upper) +"zl" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"zo" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/sb_med) +"zy" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/healthanalyzer{ + pixel_x = -9; + layer = 3.01 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 14 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"zz" = ( +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"zA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"zL" = ( +/obj/structure/table/wood, +/obj/item/restraints/handcuffs{ + pixel_y = -3 + }, +/obj/item/storage/box/deputy{ + pixel_y = 13; + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"zN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"zY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"zZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/x10, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = -4; + layer = 3.01 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Ax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main) +"AH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"AK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/mechanic) +"Bg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "rangespace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Bi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"BZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Ce" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/prisoner/management{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/sb_med) +"Ci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Cp" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall, +/area/security/brig) +"Cv" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig/upper) +"Cx" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/lockers) +"Cz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"CX" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/storage/belt/holster/thermal, +/obj/machinery/camera/motion/directional/south, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Db" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/heads_quarters/hos) +"Dj" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"Dq" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"DE" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"DW" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"DZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"Fh" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Fi" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/command/heads_quarters/hos) +"Fo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"Fy" = ( +/turf/open/floor/engine, +/area/security/main/angar) +"FC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access_txt = "1" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"FD" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/shield/riot/military{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/shield/riot/military{ + pixel_x = 5; + pixel_y = 1; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"FP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"Gc" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/lockers) +"Gs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/main/sb_med) +"Gu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/brig/upper) +"Gy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"GE" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -12; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/storage/firstaid/o2{ + pixel_x = 15; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 7; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"GL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"GO" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/lockers) +"GT" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Hm" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Hn" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"HB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"HC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/field_med, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"HL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main/mechanic) +"Ic" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/brig) +"If" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/heads_quarters/hos) +"IF" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"IG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"IX" = ( +/obj/structure/cable, +/obj/vehicle/ridden/forklift/security, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/department/security/brig) +"Jd" = ( +/obj/structure/table, +/obj/item/gun/energy/laser/practice{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 1; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig/upper) +"Ji" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Тюремное крыло" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"Jl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_3" + }, +/turf/open/floor/plating, +/area/security/brig) +"Jw" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/hooded/ablative, +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1"; + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"JF" = ( +/obj/structure/cable, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 2; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/binary/valve/layer2{ + dir = 4; + color = "#FFAAAA"; + hide = 1 + }, +/obj/machinery/atmospherics/components/binary/valve/layer4{ + dir = 4; + color = "#AAAAFF"; + hide = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Kc" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/main/sb_med) +"Kp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"Lb" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_y = 4 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = -4 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main) +"Lc" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/brig/upper) +"Lf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"Lt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"Lw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"LV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"LZ" = ( +/turf/closed/wall/r_wall, +/area/security/main/sb_med) +"Md" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Mm" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"Ne" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"NB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"NL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"NR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/lockers) +"NV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1; + layer = 3.01 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"Oi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"Ok" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Om" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"Oo" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "angarspace" + }, +/turf/open/floor/plating, +/area/security/main/angar) +"Oq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"Pb" = ( +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/defibrillator_mount{ + pixel_x = -32 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/sb_med) +"Pw" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"PE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"PI" = ( +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"PO" = ( +/obj/structure/sign/warning/firingrange, +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"PS" = ( +/obj/effect/landmark/start/field_medic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"PU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/security/main/angar) +"Qs" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Qw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"QF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/lockbox/loyalty{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/item/key/security, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"QG" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"QH" = ( +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"QV" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"QW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Rc" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"Rs" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/lockers) +"RC" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"RG" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"RK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"RN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south{ + pixel_y = -23 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/main/sb_med) +"RV" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/angar) +"RZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Sa" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"Sd" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig/upper) +"Sg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Лазарет"; + security_level = 6; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"SC" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/angar) +"SY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Te" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"Tf" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig/upper"; + dir = 1; + name = "АПЦ: Охрана: Верхний бриг"; + pixel_y = 25 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"Tg" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main) +"Ts" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"Tv" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"TE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main) +"TM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"TR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/security/brig/upper) +"TY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"Ug" = ( +/obj/effect/turf_decal/tile/red/half, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Камера 4"; + pixel_y = -39 + }, +/obj/machinery/button/door{ + id = "brig_isolation_4"; + name = "Изоляция камеры 4"; + pixel_x = -10; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"UA" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"UL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"UV" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"UX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/evidence) +"UY" = ( +/obj/spacepod/prebuilt/sec, +/turf/open/floor/engine, +/area/security/main/angar) +"Va" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Vb" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Vh" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Vm" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"Vz" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/item/shield/riot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/shield/riot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/shield/riot{ + layer = 3.01 + }, +/obj/item/shield/riot{ + layer = 3.01 + }, +/obj/item/shield/riot{ + pixel_x = 4; + pixel_y = -3; + layer = 3.02 + }, +/obj/item/shield/riot{ + pixel_x = 4; + pixel_y = -3; + layer = 3.02 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"VT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"We" = ( +/obj/structure/cable, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"Wt" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Wy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/lockers) +"WF" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"WN" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"WP" = ( +/obj/effect/turf_decal/tile/red/half{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/security/brig) +"Xe" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Xf" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Xo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xq" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xv" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor{ + id = "armory_mech" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/mechanic) +"Xx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"XG" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/sb_med) +"XV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"XW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"XX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"Yf" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"Yx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"YD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"YJ" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"YQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"YS" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/item/radio/off{ + pixel_x = -4; + pixel_y = 3; + layer = 3.01 + }, +/obj/item/toy/crayon/white{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/toy/crayon/white{ + pixel_y = 1; + pixel_x = 7 + }, +/obj/item/toy/crayon/red{ + pixel_y = 9; + pixel_x = 7 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"YV" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/evidence) +"Zd" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"Zk" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/item/paper/monitorkey{ + pixel_y = -13 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Zn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Zy" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ZF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/brig) +"ZL" = ( +/obj/structure/closet{ + name = "janitorial supplies" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"ZS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) + +(1,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(2,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(3,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(4,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(5,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(6,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(7,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(8,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(9,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(10,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(11,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(12,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +UL +er +er +Oo +Oo +Oo +er +er +er +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(13,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +rs +rU +RK +RK +da +dY +Kp +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(14,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +UY +PU +aY +SC +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(15,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +Fy +PU +hM +xt +er +le +gT +gT +gT +gT +PO +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(16,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +dA +cD +cD +cD +sY +Fo +hM +RV +Jd +Bg +Zy +hv +iM +lq +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(17,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +cT +qV +aY +wb +hu +hu +hu +vl +bW +bW +PE +PE +bW +DZ +le +le +le +le +le +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(18,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +er +jL +uZ +NV +wC +Pw +bB +RV +ub +vm +gw +vm +gw +ak +le +mu +ri +ri +Gu +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(19,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +er +Oo +Oo +er +er +er +er +er +qF +Qs +gp +gp +SY +Lt +le +zj +eU +eU +eY +le +ij +hJ +ij +ij +ij +ij +ij +aS +"} +(20,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +aS +bK +ft +Sa +ft +og +ri +gt +ei +gp +gp +gC +TR +le +Cv +eV +re +fz +le +ez +hL +Ic +ir +iB +iY +jv +aS +"} +(21,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +bZ +ag +ae +Vm +NB +qw +fk +fk +fk +ei +gp +gp +gC +ep +le +Sd +fA +fA +eY +le +cv +eo +hL +ik +fK +iE +jv +aS +"} +(22,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +ag +fF +fq +bY +ft +ho +hK +gz +Lc +zc +zc +jI +bW +QG +iQ +eX +fB +ds +gB +tO +eo +hR +ir +iF +ja +jv +aS +"} +(23,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +bZ +ag +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +UA +tn +le +le +le +le +le +le +gO +eo +Ug +ij +ij +ij +ea +aS +"} +(24,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +bZ +ag +LZ +RC +fU +kv +Pb +xq +Pb +XG +dK +TM +bW +dN +bV +qu +bV +bV +ew +fD +eo +hO +ir +EV +jf +Jl +aS +"} +(25,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +eG +lk +QH +QH +QH +QH +gu +dK +Qw +oq +Ji +fY +fY +fY +fY +fY +tR +eo +hL +im +fK +iE +Jl +aS +"} +(26,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +eG +zo +Bi +Bi +PS +Bi +mY +dK +Sg +dK +eC +eC +Yx +eC +Yx +eC +IG +eo +hR +ir +iF +jc +Jl +aS +"} +(27,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +eG +zo +QH +oV +YJ +Bi +Gs +gs +Bi +vM +eC +yW +fb +fE +pO +gH +gP +eo +hQ +ij +ij +ij +ea +aS +"} +(28,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +UV +ag +LZ +GL +Kc +xH +GE +zy +Va +fw +QH +Vb +RN +eC +Tf +eH +fg +ga +ff +fN +eo +hO +ir +kJ +jd +jw +aS +"} +(29,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +ZL +li +tI +Yf +Rc +bl +gG +kU +hX +Ce +eC +nI +eH +fg +fd +gI +gP +eo +hL +io +fK +iE +jw +aS +"} +(30,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +hp +iC +hp +aR +aR +aR +aR +aR +aR +aR +eC +nJ +mK +We +aU +ff +fN +eo +hR +ir +iF +je +jw +aS +"} +(31,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aX +hp +Ts +dd +ow +aR +Ci +Xe +qU +cG +tq +Wt +ek +sK +fC +Cz +sT +Yx +eh +eo +hS +ij +ij +ij +ea +aS +"} +(32,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +fL +XX +nH +aR +QF +ct +dG +dG +dh +Om +FC +eD +fG +fG +gb +tp +gS +eo +hO +ir +iD +wk +au +aS +"} +(33,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +fL +jJ +cd +aR +CX +cu +ts +Ne +Oq +cH +wg +eE +hw +fG +gc +Yx +sb +eo +ia +ip +fK +iE +au +aS +"} +(34,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +ag +bZ +ag +ae +ag +hp +IF +YD +xX +aR +cI +cu +oA +DE +Oq +dE +ek +eF +fh +dl +gd +eC +FP +eo +WP +ir +iF +jg +au +aS +"} +(35,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +hp +YV +hp +aR +cJ +cu +eW +ZS +Oq +dF +aR +ff +ff +oK +Yx +eC +qX +eo +hT +ij +ij +ij +Cp +aS +"} +(36,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +el +aZ +sy +aR +dm +cu +Vz +hx +Oq +RZ +aR +hr +fi +fM +gf +gN +fN +eo +gU +iq +iH +jh +jx +aS +"} +(37,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +gE +sP +mX +aR +cL +cu +FD +qH +Oq +dH +ej +gg +fj +fJ +fj +Xv +eh +eo +hU +ir +iI +ji +jy +aS +"} +(38,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +pP +VT +sn +aR +ge +cu +Jw +cM +dn +cH +ej +eJ +gh +aF +gh +Xv +xW +eo +Tv +ij +iJ +jj +jz +aS +"} +(39,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +ag +hp +yC +aZ +gF +aR +cb +sS +dj +cN +do +dI +aR +eK +AH +fM +gi +gN +gV +eo +iZ +is +iK +iK +oi +aS +"} +(40,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +fH +fH +hp +UX +NL +UX +aR +aR +aR +cO +dp +aR +aR +aR +Zd +fl +fM +gj +gN +gP +eo +TY +Gy +iL +iL +Gy +aS +"} +(41,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +fH +Cx +cr +pS +br +bq +HC +bC +jp +bq +bq +mt +Wy +em +eL +eN +fM +gk +gN +Te +eo +iZ +it +fe +jk +jB +aS +"} +(42,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +GO +GO +fH +sI +rn +ti +Fh +BZ +Fh +bq +bq +bq +Wy +dO +eN +DW +fM +gl +gN +ni +eo +hY +ij +ij +ij +ij +aS +"} +(43,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +fH +Rs +Rs +NR +BZ +br +bD +bD +bD +bD +bD +br +dq +dL +en +eM +fo +fO +gm +gK +bU +eo +fS +ir +iN +iN +ij +aS +"} +(44,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +GO +GO +fH +bq +Fh +bq +Fh +bq +Fh +zA +bq +bq +Wy +rf +eN +zY +eN +HL +gN +ZF +eo +Xx +iu +iO +jl +ij +aS +"} +(45,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +fH +fH +Gc +cr +GT +hm +bp +bp +bp +bp +cw +Hn +zZ +Wy +bj +AK +cV +dO +go +gN +gY +hy +ib +ir +iP +jm +ij +aS +"} +(46,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +fH +fH +dv +dv +dv +du +du +du +du +dv +dv +ba +ba +ba +eP +zN +eP +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(47,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +gJ +ag +dv +dv +bs +rw +cf +bF +zL +cx +dv +Lb +jC +YQ +fP +mZ +fP +gq +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(48,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +be +bt +mH +cg +mH +mH +cy +du +Ax +aP +XW +XW +fr +gQ +gr +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(49,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +ur +bu +bH +ch +cS +cS +cz +du +dJ +dQ +es +eR +fs +fR +HB +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(50,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +cp +aS +aS +aS +ae +ag +bZ +gJ +fn +WN +bv +bI +ci +XV +oW +tt +cR +Lf +dR +et +wc +eO +fR +zl +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(51,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +RG +bw +bJ +cj +cS +cS +cS +du +dJ +dS +eu +eS +gn +fR +gr +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(52,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +UL +dv +qL +Fi +bG +Db +bG +If +bG +du +TE +fT +ev +YS +fv +fR +tV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(53,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +dv +uS +Zk +fm +xU +Ok +Vh +dv +Tg +fT +eT +eT +eT +fR +QV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(54,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +aS +dv +dv +Oi +Oi +dv +dv +dv +dv +dw +dU +Dj +WF +fx +cs +eg +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(55,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +aS +ag +aS +aS +aS +bZ +bZ +bZ +ba +ba +dV +ba +ba +ba +PI +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(56,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +bZ +bZ +bZ +bZ +bZ +gJ +pa +dk +dk +dk +iU +vR +iX +dk +mO +pj +xP +Dq +aS +aS +aS +aS +aS +aS +aS +aS +"} +(57,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +aS +aS +aS +aS +ae +iR +iS +iT +rq +Xo +Zn +QW +jb +Lw +JF +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(58,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +dk +dk +dk +bb +iW +Mm +dk +IX +yd +Md +Xf +Hm +aS +aS +aS +aS +aS +aS +aS +"} +(59,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ae +ae +ae +ae +ag +ag +ag +ag +bc +iV +jn +iV +bc +pz +Xq +iy +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(60,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +dk +iV +iV +iV +dk +pz +tM +zz +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(61,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +dk +iV +iV +iV +dk +dk +dk +dk +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(62,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +dk +iV +iV +iV +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(63,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +LV +dk +bc +jo +bc +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} diff --git a/_maps/r_ruins/station/brig/brig_default_old.dmm b/_maps/r_ruins/station/brig/brig_default_old.dmm new file mode 100644 index 000000000000..a4211bdf04a7 --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_default_old.dmm @@ -0,0 +1,6391 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/turf/template_noop, +/area/template_noop) +"aZ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"ba" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bb" = ( +/turf/closed/wall, +/area/security/main) +"bc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"be" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/machinery/pdapainter/security, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bp" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bq" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"br" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bs" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/radio/intercom{ + pixel_x = -29; + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bt" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"bu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"bv" = ( +/obj/structure/chair/comfy/black, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"bC" = ( +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bD" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bF" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = -2 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bG" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"bH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bI" = ( +/obj/structure/table/wood, +/obj/item/stamp/hos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bJ" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/table/wood, +/obj/item/storage/ashtray/bronze, +/obj/item/paper_bin{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bK" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"bU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bV" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bW" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/shield/riot/military{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/shield/riot/military, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bX" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bZ" = ( +/obj/structure/rack, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/gun/energy/temperature/security, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ca" = ( +/obj/structure/closet/secure_closet/contraband/armory{ + name = "шкаф с картечью" + }, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/obj/item/storage/box/lethalshot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cb" = ( +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cc" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/camera{ + c_tag = "Brig Equipment Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cf" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cg" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"ch" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ci" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cj" = ( +/obj/structure/cable, +/mob/living/simple_animal/hostile/retaliate/bat/sgt_araneus, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cp" = ( +/obj/effect/landmark/carpspawn, +/turf/template_noop, +/area/template_noop) +"cs" = ( +/obj/item/grenade/barrier{ + pixel_x = 16; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 11; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/firingpins{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/storage/box/firingpins{ + pixel_x = 9 + }, +/obj/item/key/security, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ct" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cv" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cw" = ( +/obj/machinery/vending/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cx" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = -20 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"cz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cG" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cH" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cI" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cJ" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cK" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cL" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cO" = ( +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cS" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"cV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/recharger_item{ + pixel_y = 5 + }, +/obj/item/recharger_item{ + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"di" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"do" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"du" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"dw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main) +"dE" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dF" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dI" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dJ" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dK" = ( +/obj/machinery/recharger, +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dM" = ( +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/vehicle/ridden/forklift/security, +/turf/open/floor/plasteel, +/area/security/main) +"dO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"dR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"dS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/main) +"dT" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/security/main) +"dU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"dV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"eg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"eh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"ei" = ( +/obj/machinery/door/window/southleft{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"ej" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"ek" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"el" = ( +/obj/structure/reagent_dispensers/peppertank, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"em" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/security/main) +"en" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"eo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"ep" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"er" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"es" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/item/storage/toolbox/drone, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"et" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eu" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ev" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ew" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ex" = ( +/obj/structure/sign/warning/pods{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ez" = ( +/turf/closed/wall, +/area/security/brig) +"eC" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"eD" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eE" = ( +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eF" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eG" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eH" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eJ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/storage/toolbox/drone{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eK" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eL" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/gun/energy/laser/practice, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"eN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eO" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eQ" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eS" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eT" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"eV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"eW" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"eX" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"eY" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"eZ" = ( +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fa" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fb" = ( +/obj/item/radio/intercom{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/structure/closet/crate/freezer/blood, +/obj/item/iv_drip_item, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"fe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"fg" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fj" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fk" = ( +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"fm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 4 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"fo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ft" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fw" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"fx" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/turf/open/floor/plasteel, +/area/security/main) +"fy" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main) +"fz" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fA" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fB" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fC" = ( +/obj/item/storage/box/bodybags, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -1 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fE" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fF" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"fG" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"fI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"fN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fQ" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fS" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fU" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/main"; + dir = 4; + name = "Security Office APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 39; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fW" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fX" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fY" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera{ + c_tag = "Brig Infirmary"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"ga" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"gb" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/item/shield/riot/kevlar, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gc" = ( +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gd" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/warden, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -27; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ge" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gf" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gh" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"gk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gl" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"gm" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"go" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = -32 + }, +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gq" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gr" = ( +/obj/machinery/camera{ + c_tag = "Security Office"; + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gs" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/main) +"gv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gD" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"gF" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"gG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"gH" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"gI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/main) +"gO" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gP" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"gQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"gT" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"gU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gV" = ( +/obj/machinery/camera{ + c_tag = "Brig East" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"hl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hm" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "Brig APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hn" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ho" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"hp" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hq" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"hw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"hx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"hy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hJ" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"hK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"hM" = ( +/obj/machinery/camera{ + c_tag = "Brig West"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"hN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hQ" = ( +/obj/machinery/light, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hR" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"hS" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hT" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/brig) +"hU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"hX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"hY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/brig) +"ia" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"ib" = ( +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ij" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"ik" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"im" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"io" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"ip" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ir" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"is" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"it" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iB" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iC" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iG" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iH" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iI" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"iL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"iN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iP" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/security/brig) +"iR" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/security/main) +"iS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/security/main) +"iT" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"iU" = ( +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/turf/open/floor/plating, +/area/security/main) +"iV" = ( +/turf/open/floor/plating, +/area/security/main) +"iW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"iX" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/main) +"iY" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iZ" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"ja" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jb" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jc" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"je" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jf" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jg" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ji" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jk" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"jl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jm" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jn" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/security/main) +"jo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod3_lavaland"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/security/main) +"jp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"jt" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ju" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jv" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"le" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"nI" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Prison Wing" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"nJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Wing" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"oi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"pO" = ( +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/brig) +"qL" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/machinery/computer/med_data/laptop, +/obj/item/storage/secure/safe/hos{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"tt" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ur" = ( +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uQ" = ( +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 29 + }, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"wc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"xU" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/machinery/fax, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"yW" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"Fh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/security/main) +"Fi" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/hos) +"GE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"Hn" = ( +/obj/structure/closet/secure_closet/security/sec, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"HC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"Lf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"Lw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"Oi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"Ok" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/item/storage/box/deputy, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Om" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/flasher_portable_item{ + pixel_x = -7 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Po" = ( +/obj/structure/table, +/obj/item/assembly/timer, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Pt" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"RG" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Ug" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/security/brig) +"UX" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"Vh" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 4; + name = "Head of Security's Office APC"; + pixel_x = 25 + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"WN" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"XW" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Yy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"YS" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/monofloor, +/area/security/main) + +(1,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(2,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(3,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(4,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(5,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(6,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(7,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(8,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(9,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(10,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(11,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(12,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(13,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(14,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(15,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(16,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(17,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(18,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +ij +ij +ij +ij +ij +aS +aS +aS +aS +aS +aS +aS +"} +(19,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +eU +eY +eY +gz +ij +ij +hJ +ij +ij +ij +ij +aS +"} +(20,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +eV +fz +fz +gB +ez +hl +hK +ij +iB +iY +jt +ij +"} +(21,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +eW +fA +fW +sT +ez +hm +hL +ik +gU +iZ +ju +ij +"} +(22,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +eX +fB +fB +gB +ez +hn +hM +ij +iC +ja +jv +ij +"} +(23,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +le +cT +ds +fX +gC +gO +ho +Ug +ij +ij +ij +ij +ij +"} +(24,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +ez +ez +ez +ez +ez +hp +hO +ir +iD +jb +jw +aS +"} +(25,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +eZ +fC +fY +gD +ez +hq +ia +im +fK +iE +jw +aS +"} +(26,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +fa +fD +fZ +gE +ez +hr +hR +ir +iF +jc +jw +aS +"} +(27,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +fb +fE +pO +gF +ez +hv +hQ +ij +ij +ij +ij +aS +"} +(28,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ij +fc +fF +ga +gG +ez +hv +hO +ir +kJ +jd +jw +aS +"} +(29,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +nI +fd +fd +fd +fd +gP +ia +ia +io +fK +iE +jw +aS +"} +(30,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +nJ +fe +fe +fe +fe +gQ +hv +hR +ir +iF +je +jw +aS +"} +(31,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aR +aR +aR +aR +aR +aR +aR +eC +ff +eC +ff +eC +GE +hv +hS +ij +ij +ij +ij +aS +"} +(32,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aR +bU +cs +cG +dh +Om +aR +eD +fg +fG +gb +gH +gS +hw +hO +ir +EV +jf +jw +aS +"} +(33,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aR +bV +ct +dG +di +cH +aR +eE +eH +fg +gc +ff +gU +eo +ia +ip +iG +iE +jw +aS +"} +(34,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ag +ag +ag +ag +ag +ag +ag +ag +aZ +aS +aS +aR +bW +cu +cI +dj +dE +ek +eF +fh +fg +gd +gI +gU +hv +hR +ir +iF +jg +jw +aS +"} +(35,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +aZ +aS +aS +aR +bX +cu +cJ +dk +dF +ek +eG +fi +fg +ge +ff +gU +hv +hT +ij +ij +ij +ij +aS +"} +(36,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +aZ +aS +aS +aR +bY +cu +cK +dl +dG +ei +eH +fi +fI +gf +ff +gU +hv +hN +iq +iH +jh +jx +aS +"} +(37,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +aZ +aS +aS +aR +bZ +cu +cL +dm +dH +ej +gg +fj +fJ +gg +gJ +eh +ia +hU +ir +iI +ji +jy +aS +"} +(38,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +aZ +aS +aS +aR +ca +cu +cM +dn +dI +ek +eJ +eH +fg +gh +ff +gU +hv +hN +ij +iJ +jj +jz +aS +"} +(39,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +aZ +aZ +aS +aS +aR +cb +cv +cN +do +dI +el +eK +fk +fg +gi +eC +gT +hx +iK +is +iK +iK +oi +aS +"} +(40,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +aZ +UX +ba +Fh +Fh +aR +aR +aR +cO +dp +aR +aR +eC +fl +fL +gj +eC +Lw +hv +iL +ir +iL +iL +ir +aS +"} +(41,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +aS +ba +HC +jp +bC +cc +cw +bq +bq +dJ +em +eL +fm +fM +gk +ba +gV +fH +hX +it +iM +jk +jB +aS +"} +(42,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +aS +Fh +uQ +bq +bq +bq +bq +bq +bq +dK +bc +eN +er +fN +gl +gK +ho +ia +hY +ij +ij +ij +ij +aS +"} +(43,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +aS +ba +Pt +bD +bD +bD +bD +bD +dq +dL +en +eM +fo +fO +gm +ba +gU +hv +iZ +ir +iN +iN +ij +aS +"} +(44,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aZ +ag +Fh +bq +bq +bE +cd +cd +cd +dr +dM +bc +eN +er +fP +gn +ba +gU +eo +ia +iu +iO +jl +ij +aS +"} +(45,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +ba +bp +br +bp +bp +bp +Hn +bb +bb +bb +eO +cV +dO +go +ba +gY +hy +ib +ir +iP +jm +ij +aS +"} +(46,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ag +ag +dv +dv +dv +du +du +dv +dv +ba +dN +ep +eP +er +fP +gp +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(47,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +dv +dv +bs +bF +cf +cx +dv +dv +eN +eQ +eQ +er +fP +gq +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(48,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +aZ +ag +dv +be +bt +bG +cg +cy +cD +du +dS +XW +Po +fr +fQ +gr +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(49,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +aS +fn +ur +bu +bH +ch +cz +cS +du +dQ +es +eR +fs +fR +gs +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(50,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +cp +aS +aS +aS +ae +ag +ag +ag +aZ +ag +fn +WN +bv +bI +ci +tt +cR +Lf +dR +et +wc +ft +fP +gt +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(51,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +ag +fn +RG +bw +bJ +cj +cS +cS +du +dS +eu +eS +fv +fS +gu +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(52,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aZ +ag +dv +qL +Fi +bG +cg +bG +Yy +du +dS +ev +YS +fv +fT +gv +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(53,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +yW +dv +dv +uS +xU +Ok +Vh +dv +dv +dT +ew +eT +fw +fU +gw +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(54,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +dv +dv +Oi +dv +dv +dv +dw +dU +ex +ba +fx +ba +eg +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(55,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bK +bb +bb +ba +ba +dV +ba +ba +fy +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(56,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ae +iR +iS +iT +iU +iV +iX +bb +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(57,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +bb +bb +ba +bb +iW +bb +ba +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(58,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ae +ae +ae +ae +ag +ag +ag +ag +bc +iV +jn +iV +bc +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(59,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +ba +iV +iV +iV +ba +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(60,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ba +iV +iV +iV +ba +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(61,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ba +iV +iV +iV +ba +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(62,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +UX +ba +bc +jo +bc +ba +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} diff --git a/_maps/r_ruins/station/brig/brig_loose.dmm b/_maps/r_ruins/station/brig/brig_loose.dmm new file mode 100644 index 000000000000..7ed3d4028eda --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_loose.dmm @@ -0,0 +1,8528 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/holopad/secure, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ae" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"ak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"aF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"aP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/turf/template_noop, +/area/template_noop) +"aU" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aX" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"aY" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"ba" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bb" = ( +/turf/closed/wall, +/area/maintenance/department/security/brig) +"bc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"be" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -26; + pixel_y = 23 + }, +/obj/machinery/pdapainter/security, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"bj" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"bl" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bp" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bq" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"br" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bs" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -29; + pixel_y = 23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"bt" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"bC" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bD" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"bF" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off{ + pixel_y = 3; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"bH" = ( +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"bK" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"bV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"bW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"bY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"bZ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"cb" = ( +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"cf" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/item/photo/webpic{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"cg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ch" = ( +/obj/structure/cable, +/obj/effect/landmark/start/head_of_security, +/obj/structure/chair/comfy/black, +/obj/item/stamp/hos, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ci" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/storage/ashtray/bronze, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cp" = ( +/obj/effect/landmark/carpspawn, +/turf/template_noop, +/area/template_noop) +"cr" = ( +/turf/closed/wall/r_wall, +/area/security/main/lockers) +"cs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ct" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cv" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cw" = ( +/obj/machinery/vending/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"cx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/item/paperplane{ + dir = 8; + pixel_y = 17; + pixel_x = -11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"cy" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"cz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/paper/crumpled{ + pixel_x = -15; + pixel_y = -10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/main/angar) +"cG" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cH" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cI" = ( +/obj/structure/rack, +/obj/item/shield/riot{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/shield/riot{ + layer = 3.01 + }, +/obj/item/shield/riot{ + pixel_x = 4; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cK" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + pixel_x = -16 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"cL" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler{ + layer = 3.01 + }, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/structure/rack, +/obj/item/gun/energy/temperature/security{ + pixel_y = 2 + }, +/obj/item/gun/energy/ionrifle{ + pixel_y = -4; + layer = 3.01 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"cO" = ( +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"cS" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cT" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/security/main/angar) +"da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/angar) +"dd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"dg" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"dh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dk" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/brig) +"dl" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"dn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/bot/secbot/beepsky/jr{ + arrest_type = 1; + idcheck = 1; + weaponscheck = 1; + auto_patrol = 0 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"do" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "1" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"du" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"dw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dA" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"dD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dE" = ( +/obj/item/storage/box/firingpins{ + pixel_y = 10 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dF" = ( +/obj/item/storage/box/teargas{ + pixel_y = 10 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dI" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun/mini{ + layer = 3.01 + }, +/obj/item/gun/energy/e_gun/mini{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"dJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"dK" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/sb_med) +"dL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main/lockers) +"dN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Тюремное крыло" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"dO" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"dQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dR" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dS" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dU" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 7 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"dY" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"ea" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/brig) +"eg" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/mob_spawn/human/corpse/assistant, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"ei" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ej" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor/shutters{ + id = "armory_weapon" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"ek" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"el" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"em" = ( +/obj/item/recharger_item{ + pixel_y = 9 + }, +/obj/item/recharger_item, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"eo" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"ep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"er" = ( +/turf/closed/wall/r_wall, +/area/security/main/angar) +"es" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = -3; + layer = 3.01 + }, +/obj/item/pen{ + layer = 3.02 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"et" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eu" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ev" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/radio/off{ + pixel_x = 2; + pixel_y = 3; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ew" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"ex" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/security/main/angar) +"ez" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"eC" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"eD" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eE" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = -1; + pixel_y = -7; + layer = 3.01 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eG" = ( +/obj/structure/table/glass, +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"eH" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"eJ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"eK" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"eL" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"eM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"eO" = ( +/turf/open/floor/plasteel, +/area/security/main) +"eP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"eR" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eS" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/taperecorder{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"eT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"eU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"eV" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"eX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"eY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"fb" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/bed/dogbed/mcgriff, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fd" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"fg" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fi" = ( +/obj/structure/table, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = 6; + pixel_y = 1; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fj" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"fl" = ( +/obj/effect/landmark/start/specialist, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fm" = ( +/obj/structure/cable, +/obj/machinery/photocopier, +/obj/item/paper/crumpled{ + pixel_y = 7 + }, +/obj/item/paperplane{ + dir = 4; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"fn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"fo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"fq" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fs" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ft" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"fw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"fx" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"fA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"fB" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"fE" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"fG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/lockers) +"fJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4; + pixel_x = -16 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"fL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"fM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fO" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"fR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"fT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fU" = ( +/obj/structure/window/reinforced, +/obj/structure/sign/warning/bodysposal{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"fY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ga" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Блокировка ПермаБрига"; + pixel_y = 8; + req_access_txt = "2"; + pixel_x = 7 + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Изоляция камер"; + pixel_x = 7; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "warden_sh"; + name = "Бронешторы надзирателя"; + pixel_x = -4; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gb" = ( +/obj/effect/turf_decal/trimline/red/filled/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gc" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/tank_holder/extinguisher, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gd" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ge" = ( +/obj/structure/table/reinforced, +/obj/item/full_armor_upgrade{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/full_armor_upgrade{ + pixel_y = 3; + layer = 3.01 + }, +/obj/item/full_armor_upgrade{ + pixel_x = 6; + layer = 3.02 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"gf" = ( +/obj/structure/table, +/obj/item/door_seal{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/door_seal{ + pixel_x = 2; + layer = 3.01 + }, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"gg" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"gh" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8; + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"gi" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/spawner/random/maintenance/four, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"gj" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/flashlight/seclite{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/flashlight/seclite{ + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"gk" = ( +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/item/stack/package_wrap{ + pixel_y = 1 + }, +/obj/item/crowbar{ + pixel_y = 3; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"gl" = ( +/obj/machinery/recharge_station, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"go" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"gp" = ( +/turf/open/openspace, +/area/security/brig/upper) +"gq" = ( +/obj/structure/filingcabinet/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"gr" = ( +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_y = 5; + pixel_x = 10 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"gs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gw" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"gB" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"gE" = ( +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 1; + pixel_y = 1; + layer = 3.01 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"gF" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"gG" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gH" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"gI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3"; + pixel_y = -2 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "warden_sh"; + layer = 3.31 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gJ" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/template_noop, +/area/space/nearstation) +"gK" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"gN" = ( +/turf/closed/wall/r_wall, +/area/security/main/mechanic) +"gO" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"gQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"gS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"gT" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rangespace" + }, +/turf/open/floor/plating, +/area/security/brig/upper) +"gU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gV" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"gY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"hm" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"ho" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"hp" = ( +/turf/closed/wall/r_wall, +/area/security/main/evidence) +"hr" = ( +/obj/structure/table, +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2; + pixel_y = -5; + layer = 3.01 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3; + pixel_y = -5; + layer = 3.02 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8; + pixel_y = -5; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = -1; + pixel_y = 9; + layer = 3.01 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 9; + layer = 3.02 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"hu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"hv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"hw" = ( +/obj/machinery/button/door{ + id = "armory_mech"; + name = "Жалюзи мастерской"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = -1 + }, +/obj/machinery/button/door{ + id = "armory_weapon"; + name = "Жалюзи оружейной"; + pixel_x = 39; + req_access_txt = "3"; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"hx" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/hooded/ablative, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"hy" = ( +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"hJ" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"hK" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training{ + pixel_y = 20 + }, +/obj/item/binoculars, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"hL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"hM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"hO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hQ" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Камера 3"; + pixel_y = -39 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"hR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"hS" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Камера 2"; + pixel_y = -39 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"hT" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Камера 1"; + pixel_y = -39 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"hX" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"ia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ib" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ij" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"ik" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Камера 4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/barricade/wooden, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel, +/area/security/brig) +"im" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Камера 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"io" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Камера 2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"ip" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Камера 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ir" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"is" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"it" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"iy" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 4"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 4" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"iC" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"iD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"iF" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"iH" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"iI" = ( +/obj/machinery/computer/secure_data, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"iJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"iM" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"iN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"iO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"iP" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"iQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"iR" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iS" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iT" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iV" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"iX" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"iY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 4"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"iZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ja" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Шкафчик камеры 4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"jb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"jc" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Шкафчик камеры 3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/security/brig) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"je" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Шкафчик камеры 2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jf" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jg" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Шкафчик камеры 1" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jh" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ji" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jk" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jl" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"jm" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig) +"jn" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland3"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/maintenance/department/security/brig) +"jp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/specialist, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"jx" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jC" = ( +/obj/tacmap/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"jI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"jJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"jL" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/spacepod_key/sec{ + pixel_x = -2; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"kv" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"kU" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical1{ + req_one_access_txt = "5;63"; + req_access = null; + req_access_txt = null + }, +/obj/item/reagent_containers/glass/bottle/cyanide, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"le" = ( +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"li" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"lq" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"mh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"mt" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"mu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"mH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"mK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"mO" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"mX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"mY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"mZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"nb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"ni" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"nu" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"nH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"nI" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"nJ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "АПЦ: Охрана: Бриг"; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"og" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"oi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"oq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ow" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"oA" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"oK" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/warden) +"oV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"pa" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/camera/motion/directional/north, +/turf/template_noop, +/area/space/nearstation) +"pf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"pj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"pz" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"pO" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/item/shield/riot/kevlar, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"pP" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"pS" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"pX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"qu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"qw" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"qF" = ( +/obj/tacmap/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"qH" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"qL" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/item/storage/secure/safe/hos{ + pixel_x = 36; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/computer_disk/security{ + pixel_x = 4 + }, +/obj/item/computer_disk/security{ + pixel_y = 4; + layer = 3.01 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"qU" = ( +/obj/structure/rack, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/security/armory"; + name = "Контролер турели брига"; + req_access = null; + req_access_txt = "1"; + pixel_x = -26; + pixel_y = 20 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"qV" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "angarspace"; + name = "Стрелковая галерея"; + pixel_x = 26; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"qX" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"re" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"rf" = ( +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"rn" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"rq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"rs" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id = "spbrig" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "spbrig"; + name = "Blast Door Control"; + pixel_x = -28; + req_access_txt = "2" + }, +/turf/open/floor/engine, +/area/security/main/angar) +"rw" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/book/manual/wiki/security_space_law{ + layer = 3.01; + pixel_y = -6; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"ry" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"rU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/main/angar) +"sb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"sn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/south, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"sy" = ( +/obj/item/assembly/signaler{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 4; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/machinery/light, +/obj/item/gps/mining/off{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/gps/mining/off{ + pixel_x = 7; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"sI" = ( +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"sK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"sS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"sT" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/angar) +"ti" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"tn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"tp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plasteel/monofloor, +/area/security/warden) +"tq" = ( +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"ts" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"tt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"tv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tI" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tM" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"tO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"tQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"tR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"ug" = ( +/turf/open/floor/plasteel, +/area/security/brig/upper) +"uh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"ur" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"uz" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"uK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"uS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27; + pixel_y = 29 + }, +/obj/machinery/suit_storage_unit/hos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"uY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"uZ" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/folder/blue{ + pixel_y = 4; + pixel_x = -1 + }, +/obj/item/folder/blue{ + pixel_x = 3; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"vf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"vl" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Space Pods"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"vm" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/trimline/yellow/corner, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"vz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"vM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"vR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"wb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/main/angar) +"wc" = ( +/obj/structure/table, +/obj/item/storage/box/zipties{ + pixel_x = -11; + pixel_y = 12 + }, +/obj/item/storage/box/handcuffs{ + pixel_y = 4; + pixel_x = -2; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"wg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/southright{ + req_one_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"wh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"wk" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/brig) +"wC" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/main/angar) +"xc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"xq" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10; + layer = 3.02 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = 1; + pixel_y = 3; + layer = 3.01 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point"; + layer = 3.03 + }, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"xt" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/stock_parts/cell/super, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"xH" = ( +/obj/effect/landmark/start/field_medic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"xP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"xU" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 4; + name = "Head of Security's Office APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"xX" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"yd" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"yx" = ( +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"yC" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"yW" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/tacmap/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"zc" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/security/brig/upper) +"zj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"zl" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/table, +/obj/item/folder/blue{ + pixel_x = -13; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = -7; + layer = 3.01 + }, +/obj/item/folder/yellow{ + pixel_y = 4; + layer = 3.02 + }, +/obj/item/pen{ + layer = 3.03 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"zy" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/clothing/gloves/color/latex, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"zz" = ( +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"zA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"zL" = ( +/obj/structure/table/wood, +/obj/item/storage/box/deputy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"zM" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 8; + pixel_x = -3 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"zN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"zY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"zZ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/item/stack/sheet/plasteel/x10, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Ax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"AH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"Bg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "rangespace"; + name = "Стрелковая галерея"; + pixel_x = -26; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Bi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"BZ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Ce" = ( +/obj/machinery/computer/prisoner/management{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Ci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Cp" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall, +/area/security/brig) +"Cv" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"Cz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"CX" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_y = 4; + layer = 3.01 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 2; + layer = 3.02 + }, +/obj/machinery/camera/motion/directional/south, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Db" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"Dj" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Dq" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"DE" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -1; + pixel_y = 4; + layer = 3.01 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5; + pixel_y = 2; + layer = 3.02 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"DW" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"EH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"EV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"Fa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"Fh" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Fi" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/bed/dogbed/lia, +/mob/living/simple_animal/pet/dog/dhund, +/obj/item/pen/fountain, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"Fo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"Fy" = ( +/turf/open/floor/plating, +/area/security/main/angar) +"FC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/brigdoor/southleft{ + req_one_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"FD" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot{ + layer = 3.01 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"FO" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"FP" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"FT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"Gs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Gu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"Gy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/turf/open/floor/plating, +/area/security/brig) +"GE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"GL" = ( +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"GT" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"GZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"Hm" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Hn" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"HB" = ( +/obj/machinery/light, +/obj/structure/table, +/obj/item/paper{ + pixel_y = 1 + }, +/obj/item/paper{ + pixel_y = 5; + pixel_x = 4; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"HC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/field_med, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"HL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"Ia" = ( +/obj/structure/table/wood, +/obj/item/stamp/hos, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"Ic" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"If" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"IF" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"IG" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"IX" = ( +/obj/structure/cable, +/obj/vehicle/ridden/forklift/security, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/autoname, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Jd" = ( +/obj/structure/table, +/obj/item/gun/energy/laser/practice{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice{ + pixel_x = 1; + pixel_y = 2; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Ji" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Тюремное крыло" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"Jl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"Jw" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser{ + layer = 3.01 + }, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"JF" = ( +/obj/structure/cable, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 2; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/binary/valve/layer2{ + dir = 4; + color = "#FFAAAA"; + hide = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve/layer4{ + dir = 4; + color = "#AAAAFF"; + hide = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"JU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main/angar) +"Kp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"Kz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Lb" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Lc" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Lf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Lt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Lw" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"LV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"LZ" = ( +/turf/closed/wall/r_wall, +/area/security/main/sb_med) +"Md" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Mm" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/maintenance/department/security/brig) +"Nd" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Ne" = ( +/obj/structure/rack, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"Nk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"NB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"NL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"NV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8; + pixel_x = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1; + layer = 3.01 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"Oi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"Ok" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"Om" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"Oo" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor{ + id = "angarspace" + }, +/turf/open/floor/plating, +/area/security/main/angar) +"Oq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"OQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Pb" = ( +/obj/machinery/defibrillator_mount{ + pixel_x = -32 + }, +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Pw" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"PE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/brig/upper) +"PI" = ( +/obj/machinery/door/airlock/security/glass{ + security_level = 6; + req_one_access_txt = "1;4"; + req_access_txt = null + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"PO" = ( +/obj/structure/sign/warning/firingrange, +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"PS" = ( +/obj/effect/landmark/start/field_medic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"PU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/angar) +"Qs" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/effect/turf_decal/trimline/yellow/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Qw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"QF" = ( +/obj/item/storage/lockbox/loyalty{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/item/key/security, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"QG" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"QN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/security/main/angar) +"QV" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"QW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Rc" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"RC" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/pill/patch/lenturi{ + pixel_x = 8 + }, +/obj/item/reagent_containers/pill/patch/lenturi{ + pixel_y = 4; + pixel_x = 14; + layer = 3.01 + }, +/obj/item/reagent_containers/pill/patch/libital{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/reagent_containers/pill/patch/libital{ + pixel_y = 1; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"RG" = ( +/obj/machinery/computer/secure_data, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"RK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/main/angar) +"RN" = ( +/obj/machinery/firealarm/directional/south{ + pixel_y = -23 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"RV" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/angar) +"RY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"RZ" = ( +/obj/item/storage/box/flashbangs{ + pixel_y = 10 + }, +/obj/machinery/light, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/security/armory) +"Sa" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"Sd" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig/upper) +"Sg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/public/glass{ + name = "Лазарет"; + security_level = 6; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"SB" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"SC" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/angar) +"SM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"SY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"Tf" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/brig/upper"; + dir = 1; + name = "АПЦ: Охрана: Верхний бриг"; + pixel_y = 25 + }, +/obj/machinery/camera/autoname, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"Tg" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"Ts" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"Tv" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"TE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"TM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"TR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"TY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"Ug" = ( +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Камера 4"; + pixel_y = -39 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"UA" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"UL" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/template_noop) +"UV" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/template_noop, +/area/space/nearstation) +"UX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/evidence) +"UY" = ( +/obj/spacepod/prebuilt/sec, +/turf/open/floor/plating, +/area/security/main/angar) +"Va" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Vb" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/field_medic, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Vh" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"Vm" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"VT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"We" = ( +/obj/structure/cable, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"Wt" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Wy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/lockers) +"WF" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"WN" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"WP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"Xe" = ( +/obj/item/shield/riot/military{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/shield/riot/military{ + pixel_x = 5; + pixel_y = 1; + layer = 3.01 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"Xf" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/security/brig) +"Xo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xq" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Xv" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/door/poddoor/shutters{ + id = "armory_mech" + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"Xx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"XG" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"XV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -18; + pixel_y = 7 + }, +/obj/item/folder/blue{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 5; + layer = 3.01 + }, +/obj/item/pen{ + layer = 3.02 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"XW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"XX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main/lockers) +"Yf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"Yx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "warden_sh" + }, +/turf/open/floor/plating, +/area/security/warden) +"YD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main/evidence) +"YJ" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"YQ" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"YS" = ( +/obj/structure/table, +/obj/item/assembly/flash{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/assembly/flash{ + pixel_y = 2; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main) +"YV" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/security/main/evidence) +"Zd" = ( +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/security/main/mechanic) +"Zk" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/monitorkey{ + pixel_y = -13 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/heads_quarters/hos) +"Zn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/department/security/brig) +"Zy" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ZF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ZL" = ( +/obj/structure/closet{ + name = "janitorial supplies" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/pushbroom, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"ZS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2; + layer = 3.01 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + layer = 3.02 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) + +(1,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(2,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(3,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(4,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(5,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(6,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(7,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(8,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(9,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(10,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(11,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(12,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +UL +er +er +Oo +Oo +Oo +er +er +er +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(13,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +rs +rU +RK +RK +da +dY +Kp +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(14,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +UY +PU +aY +SC +Oo +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(15,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +ex +Fy +Fy +Fy +PU +QN +xt +er +le +gT +gT +gT +gT +PO +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(16,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +dA +cD +cD +cD +sY +Fo +hM +RV +Jd +Bg +Zy +dg +iM +lq +le +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(17,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +cT +qV +JU +wb +hu +hu +hu +vl +bW +bW +pX +PE +bW +ep +le +le +le +le +le +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(18,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +er +jL +uZ +NV +wC +Pw +bB +RV +fk +vm +gw +vm +uY +ak +le +mu +dm +dm +Gu +le +aS +aS +aS +aS +aS +aS +aS +aS +"} +(19,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +er +Oo +Oo +er +er +er +er +er +qF +Qs +gp +gp +SY +Lt +le +zj +Db +eU +eY +le +ij +hJ +ij +ij +ij +ij +ij +aS +"} +(20,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +aS +bK +ft +Sa +ft +og +ug +OQ +ei +gp +gp +jI +pf +le +Cv +eV +re +fz +le +ez +FT +Ic +ir +iB +iY +Jl +aS +"} +(21,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +bZ +ag +ae +Vm +NB +qw +fk +fk +fk +uz +gp +gp +jI +ep +le +Sd +eo +fA +eY +le +cv +hL +cg +ik +eh +vz +Jl +aS +"} +(22,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +ag +fF +fq +bY +ft +ho +hK +hv +Lc +zc +zc +vf +bW +QG +iQ +eX +fB +ds +gB +tO +FT +VT +ir +dJ +ja +Jl +aS +"} +(23,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +bZ +ag +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +LZ +UA +tn +le +le +le +le +le +le +gO +FT +Ug +ij +ij +ij +ea +aS +"} +(24,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +bZ +ag +LZ +RC +fU +kv +cy +xq +Pb +XG +dK +TM +bW +dN +tQ +qu +tQ +bV +ew +fD +FT +gU +ir +EV +jf +Jl +aS +"} +(25,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +zM +tv +SM +SM +SM +SM +gu +dK +Qw +oq +Ji +ry +ry +fY +ry +fY +tR +FT +cg +im +iE +xc +Jl +aS +"} +(26,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +eG +Bi +Bi +Bi +PS +Bi +mY +dK +Sg +dK +eC +eC +Yx +eC +Yx +eC +IG +FT +gU +ir +mh +jc +Jl +aS +"} +(27,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +hR +Bi +SM +oV +YJ +Bi +Gs +gs +gs +vM +eC +yW +fb +fE +pO +gH +GE +hL +hQ +ij +ij +ij +ea +aS +"} +(28,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +UV +ag +LZ +GL +Bi +xH +oV +zy +Va +fw +SM +Vb +RN +eC +Tf +bq +fg +ga +ff +fN +hL +VT +ir +kJ +jd +Jl +aS +"} +(29,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +LZ +ZL +li +tI +Yf +Rc +bl +gG +kU +hX +Ce +eC +nI +bq +fg +fd +gI +GE +FT +cg +io +fK +xc +Jl +aS +"} +(30,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +hp +iC +hp +aR +aR +aR +aR +aR +aR +aR +eC +nJ +mK +We +aU +ff +GE +FT +VT +ir +iF +je +Jl +aS +"} +(31,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aX +hp +Ts +dd +ow +aR +Ci +Xe +qU +cG +tq +Wt +ek +sK +fC +Cz +sT +Yx +fN +FT +hS +ij +ij +ij +ea +aS +"} +(32,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +fL +sP +nH +aR +QF +ct +Fa +dG +dh +Om +FC +eD +GZ +fG +gb +tp +gS +FT +hO +ir +iD +wk +Jl +aS +"} +(33,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +fL +jJ +cd +aR +CX +cu +ts +Ne +Oq +cH +wg +eE +hw +fG +gc +Yx +sb +hL +ia +ip +iE +xc +Jl +aS +"} +(34,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +ag +bZ +ag +ae +ag +hp +IF +YD +xX +aR +DE +cu +oA +cI +Oq +dE +ek +eF +fh +dl +gd +eC +FP +FT +WP +ir +mh +jg +Jl +aS +"} +(35,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +ag +ag +hp +hp +YV +hp +aR +ZS +cu +dj +dj +Oq +dF +aR +ff +ff +oK +Yx +eC +qX +FT +hT +ij +ij +ij +Cp +aS +"} +(36,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +bZ +ag +hp +el +aZ +sy +aR +hx +cu +dD +dj +Oq +RZ +aR +hr +fi +fM +gf +gN +GE +FT +VT +iq +iH +jh +jx +aS +"} +(37,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +gE +sP +mX +aR +qH +cu +FD +cL +Oq +dH +ej +gg +cK +fJ +fj +Xv +GE +hL +VT +ir +iI +ji +jy +aS +"} +(38,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +hp +pP +jJ +sn +aR +ge +cu +Jw +cM +dn +cH +ej +eJ +gh +aF +dO +Xv +fN +FT +Tv +ij +iJ +jj +jz +aS +"} +(39,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +hp +yC +aZ +gF +aR +cb +sS +yx +cN +do +dI +aR +eK +AH +fM +gi +gN +gV +FT +iK +is +iK +iK +oi +aS +"} +(40,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +ag +ag +hp +UX +NL +UX +aR +aR +aR +cO +dp +aR +aR +aR +Zd +fl +fM +gj +gN +GE +FT +TY +Gy +iL +iL +Gy +aS +"} +(41,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +cr +pS +br +eH +HC +bC +jp +XX +XX +mt +Wy +em +eL +rf +fM +gk +gN +cv +FT +gY +it +fe +jk +jB +aS +"} +(42,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +gJ +fH +sI +rn +ti +Nd +nu +Nd +eH +eH +XX +Wy +uh +rf +DW +fM +gl +gN +ni +FT +gU +ij +ij +ij +ij +aS +"} +(43,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ae +ag +ag +cr +BZ +br +bD +bD +bD +bD +bD +br +dq +dL +fM +eM +fo +fO +fM +gK +FT +FT +fS +ir +iN +iN +ij +aS +"} +(44,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +gJ +fH +XX +Fh +eH +Fh +eH +Fh +zA +XX +XX +Wy +rf +SB +zY +rf +HL +gN +ZF +FT +Xx +iu +iO +jl +ij +aS +"} +(45,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +cr +GT +hm +bp +bp +bp +bp +cw +Hn +zZ +Wy +bj +eJ +fM +FO +go +gN +gY +iZ +ib +ir +iP +jm +ij +aS +"} +(46,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +ag +ag +ag +ag +dv +dv +dv +du +du +du +du +dv +dv +ba +ba +ba +eP +zN +eP +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(47,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +dv +dv +bs +rw +cf +bF +zL +cx +dv +Lb +jC +YQ +fs +mZ +Kz +gq +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(48,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +be +bt +cS +cj +RY +Nk +cz +du +Ax +aP +XW +XW +bJ +gQ +hy +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(49,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +ur +bu +bH +ch +Ia +Nk +wh +du +fs +dQ +es +eR +eO +TR +HB +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(50,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +cp +aS +aS +aS +ae +ag +bZ +gJ +fn +WN +bv +bI +ci +XV +oW +tt +cR +Lf +dR +et +wc +EH +fR +zl +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(51,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +fn +RG +bw +cS +cj +cS +cS +nb +du +Kz +dS +eu +eS +EH +fR +gr +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(52,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +UL +dv +qL +Fi +cS +cj +ab +If +cS +du +TE +fT +ev +YS +eO +mH +tV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(53,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +ag +dv +dv +uS +Zk +fm +xU +Ok +Vh +dv +Tg +fT +eT +eT +eO +uK +QV +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(54,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +aS +aS +dv +dv +Oi +Oi +dv +dv +dv +dv +dw +dU +Dj +WF +fx +cs +eg +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(55,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +bZ +bZ +aS +ag +aS +aS +aS +bZ +bZ +bZ +ba +ba +dV +ba +ba +ba +PI +ba +ba +aS +aS +aS +aS +aS +aS +aS +aS +"} +(56,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +ag +bZ +bZ +bZ +bZ +bZ +gJ +pa +dk +dk +dk +iU +vR +iX +dk +mO +pj +xP +Dq +aS +aS +aS +aS +aS +aS +aS +aS +"} +(57,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +aS +aS +aS +aS +aS +aS +ae +iR +iS +iT +rq +Xo +Zn +QW +jb +Lw +JF +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(58,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ae +dk +dk +dk +bb +iW +Mm +dk +IX +yd +Md +Xf +Hm +aS +aS +aS +aS +aS +aS +aS +"} +(59,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +ag +ae +ae +ae +ae +ag +ag +ag +ag +bc +iV +jn +iV +bc +pz +Xq +iy +dk +dk +aS +aS +aS +aS +aS +aS +aS +"} +(60,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +aS +aS +dk +iV +iV +iV +dk +pz +tM +zz +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(61,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +dk +iV +iV +iV +dk +dk +dk +dk +dk +aS +aS +aS +aS +aS +aS +aS +aS +"} +(62,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +ag +dk +iV +iV +iV +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} +(63,1,1) = {" +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +LV +dk +bc +jo +bc +dk +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +aS +"} diff --git a/_maps/r_ruins/station/brig/brig_loose_old.dmm b/_maps/r_ruins/station/brig/brig_loose_old.dmm new file mode 100644 index 000000000000..631343169a7a --- /dev/null +++ b/_maps/r_ruins/station/brig/brig_loose_old.dmm @@ -0,0 +1,6259 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/turf/template_noop, +/area/template_noop) +"ac" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"ad" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/space/nearstation) +"ag" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/template_noop, +/area/space/nearstation) +"am" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"an" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/security/brig) +"aB" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aC" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/medical, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aD" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aF" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aG" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = 30 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = -31 + }, +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/deputy, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 34 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aJ" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -1 + }, +/obj/item/reagent_containers/syringe{ + name = "steel point" + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aL" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aM" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/main) +"aN" = ( +/obj/structure/table, +/obj/item/switchblade, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aO" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aP" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/white, +/area/security/brig) +"aQ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"aR" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"aT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"aU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"aV" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"aW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"aY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"aZ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ba" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"bb" = ( +/obj/machinery/camera{ + c_tag = "Brig East" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"be" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"bf" = ( +/turf/closed/wall, +/area/security/main) +"bg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"bi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"bk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"bm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"bn" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/brig"; + dir = 1; + name = "Brig APC"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bo" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"bq" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"br" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bw" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bx" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"by" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bA" = ( +/obj/machinery/computer/secure_data, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bB" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bC" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bD" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/storage/ashtray/bronze, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bE" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Head of Security's Office"; + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + on = 0; + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bF" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bG" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"bH" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bK" = ( +/obj/machinery/door/airlock/security{ + name = "Labor Shuttle"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"bL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bN" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/camera{ + c_tag = "Brig Equipment Room"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bO" = ( +/obj/machinery/camera{ + c_tag = "Brig West"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"bP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"bQ" = ( +/obj/structure/chair/comfy/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bR" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bS" = ( +/obj/machinery/holopad/secure, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bT" = ( +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = 10 + }, +/obj/structure/table/wood, +/obj/item/radio/off, +/obj/item/taperecorder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"bU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/drone{ + pixel_y = 9 + }, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bV" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) +"bX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"bY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ca" = ( +/obj/machinery/light, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cg" = ( +/obj/machinery/camera{ + c_tag = "Brig Central"; + dir = 1 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/brig) +"ch" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ci" = ( +/obj/structure/table, +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/ammo/wt550{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cj" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/hooded/ablative, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ck" = ( +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/guncase/ecase{ + anchored = 1; + can_be_unanchored = 1 + }, +/obj/item/gun/energy/e_gun/mini, +/obj/item/gun/energy/e_gun/mini, +/obj/item/gun/energy/e_gun/mini, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cl" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/guncase/shotgun{ + anchored = 1; + can_be_unanchored = 1 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cm" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/energy/ionrifle, +/obj/structure/guncase/ecase{ + anchored = 1; + can_be_unanchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cn" = ( +/obj/structure/closet/secure_closet, +/obj/effect/decal/cleanable/dirt, +/obj/item/shield/riot/military, +/obj/item/shield/riot/military, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"co" = ( +/obj/vehicle/ridden/secway, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cp" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cq" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"cs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"ct" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cu" = ( +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/table/wood, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cw" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/hos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cx" = ( +/obj/item/grenade/barrier{ + pixel_x = 4 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cy" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/security/main) +"cA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"cI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cM" = ( +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/ai_monitored/security/armory"; + dir = 4; + name = "Armory APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/pdapainter/security, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"cP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cQ" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cR" = ( +/obj/item/storage/secure/safe/hos{ + pixel_x = 35 + }, +/obj/structure/closet/secure_closet/hos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"cS" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cT" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/security/main) +"cU" = ( +/obj/machinery/button/flasher{ + id = "cell4"; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"cV" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"cW" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Cell 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"cX" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"dc" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"dd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/security/main) +"de" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"df" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"dg" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"dh" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"di" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"dj" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Sergeant-at-Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dk" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dl" = ( +/obj/machinery/door/window/eastleft{ + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/door/window/westleft{ + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dm" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hos"; + dir = 8; + name = "Head of Security's Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/structure/bed/dogbed/lia, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"dn" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"do" = ( +/obj/machinery/light_switch{ + pixel_y = -23 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"dp" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"dq" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"dr" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ds" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/flasher_portable_item{ + pixel_x = -7 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"du" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dx" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dy" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dz" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dD" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/drone{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"dE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dF" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/security/brig) +"dG" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dH" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dL" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dM" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dN" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dP" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"dR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"dT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dU" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"dV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"dW" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Head of Security"; + req_access_txt = "58"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"dX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"dZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ea" = ( +/obj/machinery/camera{ + c_tag = "Security Escape Pod"; + dir = 4 + }, +/turf/open/floor/plating, +/area/security/main) +"eb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ec" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ed" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/assembly/timer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ee" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ef" = ( +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"eg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"eh" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ei" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ej" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ek" = ( +/obj/structure/sign/warning/pods{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/ridden/forklift/security{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"en" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Brig Control Room"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eo" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ep" = ( +/obj/machinery/computer/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eq" = ( +/obj/machinery/computer/secure_data, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"er" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"es" = ( +/obj/machinery/recharger, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"et" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"eu" = ( +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"ew" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ex" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ey" = ( +/obj/structure/table, +/obj/machinery/syndicatebomb/training, +/obj/item/gun/energy/laser/practice, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ez" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"eA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"eB" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eC" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"eD" = ( +/obj/structure/table, +/obj/item/assembly/flash/handheld, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"eE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"eF" = ( +/turf/open/floor/plating, +/area/security/main) +"eG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod Four"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/security/main) +"eH" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #4 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/security/main) +"eI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod3_lavaland"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/security/main) +"eJ" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"eK" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"eL" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"eM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eP" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eR" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"eZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel, +/area/security/main) +"fa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fb" = ( +/obj/machinery/door/window/southleft{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"fc" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"fd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"fe" = ( +/obj/structure/reagent_dispensers/peppertank, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"ff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/security/main) +"fg" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"fh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"fi" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fj" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"fl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/template_noop, +/area/template_noop) +"fm" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fp" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fr" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/main) +"fs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ft" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"fu" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/warden"; + dir = 8; + name = "Brig Control APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"fw" = ( +/turf/closed/wall, +/area/security/brig) +"fx" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fy" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fz" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"fA" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"fE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fF" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"fH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fJ" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/main"; + dir = 4; + name = "Security Office APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_x = 39; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fK" = ( +/obj/structure/closet/secure_closet/warden, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/item/shield/riot/kevlar, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fL" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fM" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/warden, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = -27; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/machinery/button/door{ + id = "Secure Gate"; + name = "Cell Shutters"; + pixel_x = -27; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fN" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fO" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fP" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fQ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fT" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fU" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fV" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"fW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"fY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"fZ" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"ga" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"gb" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"gc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"gd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/department_orders/security{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ge" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gf" = ( +/obj/machinery/camera{ + c_tag = "Security Office"; + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"gg" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/main) +"gh" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"gj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/filingcabinet, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"gm" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"go" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"gp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"gq" = ( +/obj/machinery/flasher{ + id = "brigentry"; + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"gr" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gs" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"gu" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Security Delivery"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/turf/open/floor/plasteel, +/area/security/main) +"gv" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main) +"gw" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gx" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gI" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gS" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"gT" = ( +/obj/machinery/camera{ + c_tag = "Brig Interrogation"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"hf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"ht" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"hv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"hw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"hB" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"hC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"hD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"hF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iz" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"iF" = ( +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Cell 3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"iG" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"iN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 1" + }, +/obj/machinery/treadmill_monitor{ + id = "Cell 1"; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iQ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iR" = ( +/obj/machinery/button/door{ + id = "briggate"; + name = "Desk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/flasher{ + id = "brigentry"; + pixel_x = -28; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iS" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iZ" = ( +/obj/machinery/flasher{ + id = "cell4"; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel, +/area/security/brig) +"jd" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 1"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"je" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jh" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/flasher{ + id = "Cell 3"; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"ji" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/brig) +"jj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "outerbrig"; + name = "Brig Exterior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -5; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "innerbrig"; + name = "Brig Interior Doors Control"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = 5; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jk" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/eastright{ + name = "Brig Desk"; + req_access_txt = "2" + }, +/obj/item/restraints/handcuffs, +/obj/item/radio/off, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jo" = ( +/obj/item/radio/intercom{ + desc = "Talk through this. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = 25; + pixel_y = -2; + prison_radio = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"js" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Secure Gate"; + name = "brig shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ju" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "briggate"; + name = "security shutters" + }, +/obj/machinery/door/window/southleft{ + base_state = "right"; + icon_state = "right"; + name = "Brig Desk"; + req_access_txt = "1" + }, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "briggate"; + name = "security blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"jX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"kc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/brig) +"la" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/treadmill{ + dir = 8; + id = "Cell 3" + }, +/obj/machinery/treadmill_monitor{ + id = "Cell 3"; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"lY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"lZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Space Shutters Control"; + pixel_x = -26; + pixel_y = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"mK" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/brig) +"nW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"pH" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Cell 2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"tI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"ys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/security/brig) +"yY" = ( +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"zg" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"zr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/security/brig) +"BQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/field_medic, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/security/brig) +"Cp" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"IV" = ( +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/security/main) +"KB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/recharger_item{ + pixel_y = 5 + }, +/obj/item/recharger_item{ + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Lp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"MB" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/hos) +"Nj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/optable, +/turf/open/floor/plasteel/white, +/area/security/brig) +"QP" = ( +/obj/structure/lattice, +/obj/structure/grille, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"Ta" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/main) +"TR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"VP" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) +"Zw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/security/brig) + +(1,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(2,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(3,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(4,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(5,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(6,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(7,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(8,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(9,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(10,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(11,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(12,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(13,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(14,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(15,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(16,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(17,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(18,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iz +iz +iz +iz +iz +iz +ab +ab +ab +ab +ab +ab +ab +"} +(19,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +fR +fV +fV +ht +iz +iz +bK +iz +iz +iz +iz +ab +"} +(20,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +fS +gw +gw +hv +fw +bm +bL +iz +cX +df +dh +iz +"} +(21,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +fT +gx +gS +lY +fw +bn +bM +cV +ba +am +di +iz +"} +(22,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +fU +gy +gy +hv +fw +bo +bO +iz +dc +dg +dr +iz +"} +(23,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +mK +dV +fa +gT +hw +mK +bp +zr +iz +iz +iz +iz +iz +"} +(24,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +fw +fw +fw +fw +fw +bq +bX +iH +iN +jd +js +ab +"} +(25,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +aC +aJ +aN +aP +fw +br +cO +cW +hF +iO +js +ab +"} +(26,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +aH +aH +aH +aF +fw +bs +bY +iH +iP +je +js +ab +"} +(27,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +ys +BQ +aH +Nj +fw +bw +ca +iz +iz +iz +iz +ab +"} +(28,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fw +aI +aL +aO +kc +fw +bw +cc +iz +dF +dF +iz +ab +"} +(29,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aB +aT +aT +aT +aT +aV +cO +cd +pH +dF +an +iz +ab +"} +(30,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aQ +aU +jX +aU +aU +aW +bw +cf +iz +Zw +dF +iz +ab +"} +(31,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +aR +aR +aR +aR +aR +aR +fz +gc +fz +gc +fz +ba +bw +nW +iz +iz +iz +iz +ab +"} +(32,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +bU +cx +cS +KB +ds +aR +en +eM +fu +fK +hB +aY +bF +bX +iH +la +jh +js +ab +"} +(33,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aR +ci +cK +dK +dt +yY +aR +eo +er +eM +fL +gc +ba +bH +cO +iF +iQ +iO +js +ab +"} +(34,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ag +ab +ab +aR +cj +cL +de +du +dG +fd +ep +eN +eM +fM +hC +ba +bw +bY +iH +iP +ji +js +ab +"} +(35,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ag +ab +ab +aR +ck +cL +de +dv +dH +fd +eq +eO +eM +fN +gc +ba +bw +cg +iz +iz +iz +iz +ab +"} +(36,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ag +ab +ab +aR +cl +cL +TR +dw +dK +fb +er +eO +fx +fO +gc +ba +bw +cf +iG +iR +jj +jt +ab +"} +(37,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ag +ab +ab +aR +cm +cL +de +dx +dL +fc +fP +eP +fy +fP +hD +fv +cO +ch +iH +iS +jk +ju +ab +"} +(38,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ab +ab +ag +ab +ab +aR +cn +cL +dj +dy +dM +fd +ew +er +eM +fQ +gc +ba +bw +cf +iz +iT +jl +jv +ab +"} +(39,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ad +ag +ag +ab +ab +aR +co +cM +dk +dz +dM +fe +ex +eR +eM +fW +fz +aZ +bG +go +eS +go +go +gr +ab +"} +(40,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ad +ag +VP +be +dd +dd +aR +aR +aR +dl +dS +aR +aR +fz +gi +gI +hf +fz +tI +bw +cA +iH +iH +iH +iH +ab +"} +(41,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ag +ab +be +Lp +ss +by +bN +cq +aE +aE +dU +ff +ey +fi +fB +fX +be +bb +fA +cB +gm +gp +gq +gs +ab +"} +(42,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ab +dd +lZ +aE +aE +aE +aE +aE +aE +es +bg +dP +fj +fC +fY +aM +bp +cO +cI +iz +iz +iz +iz +ab +"} +(43,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ab +be +Ta +aE +aE +aE +aE +aE +cr +et +fg +ez +fk +fD +fZ +be +ba +bw +am +iH +iX +iX +iz +ab +"} +(44,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ag +ad +dd +aE +aE +bz +bP +bP +bP +dT +eu +bg +eA +ee +fE +ga +be +ba +bH +cO +gn +iY +jn +iz +ab +"} +(45,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +be +bx +aS +aD +aD +aD +aD +be +be +be +eB +eZ +fh +gb +be +bl +bJ +cU +iH +iZ +jo +iz +ab +"} +(46,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ad +ad +ag +Cp +Cp +Cp +Cp +cs +cs +Cp +Cp +dN +ec +eC +fj +fE +gd +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(47,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ad +Cp +aG +zg +bE +cp +cN +dm +cs +dP +ed +eD +fm +fE +ge +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(48,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +ad +ag +ad +bi +bA +MB +bQ +ct +cP +bk +Cp +dP +ee +ee +fn +fF +gf +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(49,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ad +bi +bB +MB +bR +cu +cQ +dn +dW +dQ +ef +eJ +fD +fG +gg +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(50,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ag +ad +bi +bC +MB +bS +cv +cv +do +Cp +dR +eg +eg +fp +fE +gh +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(51,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ad +Cp +bD +zg +bT +cw +cR +dp +dX +dY +eh +eK +fq +fH +gj +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(52,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +QP +Cp +Cp +Cp +Cp +Cp +Cp +Cp +Cp +IV +ei +ei +fs +fI +gk +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(53,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ad +ab +ab +ab +ad +bg +dD +dZ +ej +eL +ft +fJ +gl +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(54,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ag +ag +ag +ag +ad +bg +dE +eb +ek +be +gu +be +fl +be +ab +ab +ab +ab +ab +ab +ab +ab +"} +(55,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bV +be +be +be +be +eE +be +be +gv +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(56,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +cy +cT +dq +ea +eF +fr +bf +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(57,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +be +be +be +be +eG +be +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(58,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bg +eF +eH +eF +bg +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(59,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +eF +eF +eF +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(60,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +be +eF +eF +eF +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(61,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ad +be +eF +eF +eF +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} +(62,1,1) = {" +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +VP +be +bg +eI +bg +be +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +"} diff --git a/_maps/RandomRuins/StationRuins/engine_antimatter.dmm b/_maps/r_ruins/station/engine_box/engine_antimatter.dmm similarity index 94% rename from _maps/RandomRuins/StationRuins/engine_antimatter.dmm rename to _maps/r_ruins/station/engine_box/engine_antimatter.dmm index 79c6ced0509e..b7d5fe09280e 100644 --- a/_maps/RandomRuins/StationRuins/engine_antimatter.dmm +++ b/_maps/r_ruins/station/engine_box/engine_antimatter.dmm @@ -49,6 +49,9 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engineering/main) "dN" = ( @@ -74,12 +77,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/main) -"dV" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engineering/main) "eA" = ( /obj/structure/closet/radiation, /turf/open/floor/plasteel, @@ -229,10 +226,10 @@ /turf/open/floor/engine, /area/engineering/main) "nf" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Northwest"; - network = list("ss13","engine") +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, +/obj/machinery/camera/autoname, /turf/open/floor/engine, /area/engineering/main) "nQ" = ( @@ -266,11 +263,8 @@ /turf/closed/wall/r_wall, /area/space/nearstation) "qO" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Northeast"; - network = list("ss13","engine") - }, -/turf/open/floor/engine, +/obj/machinery/camera/autoname, +/turf/open/floor/plating, /area/engineering/main) "qP" = ( /obj/machinery/door/firedoor, @@ -302,8 +296,8 @@ /turf/open/floor/plating, /area/engineering/main) "rW" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "sH" = ( @@ -346,6 +340,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/engine, /area/engineering/main) "wA" = ( @@ -381,10 +378,6 @@ }, /turf/open/floor/plating, /area/engineering/main) -"zu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) "AF" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -479,12 +472,10 @@ /turf/open/floor/plasteel, /area/engineering/main) "GQ" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Southwest"; - dir = 1; - network = list("ss13","engine") +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/structure/cable, +/obj/machinery/camera/autoname, /turf/open/floor/engine, /area/engineering/main) "Hi" = ( @@ -494,10 +485,7 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "HQ" = ( @@ -529,10 +517,7 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/engineering/main) "Js" = ( @@ -558,6 +543,13 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/main) +"KC" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/space/nearstation) "KZ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, @@ -606,15 +598,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 9 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/engine, /area/engineering/main) "Mu" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Southeast"; - dir = 1; - network = list("ss13","engine") +/obj/machinery/light{ + pixel_y = 0 }, /obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/engine, /area/engineering/main) "MD" = ( @@ -680,7 +676,7 @@ /area/engineering/main) "Qt" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "QB" = ( @@ -720,13 +716,6 @@ /obj/structure/cable, /turf/open/floor/engine, /area/engineering/main) -"Si" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - icon_state = "connector_map-1"; - piping_layer = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) "Sy" = ( /obj/structure/cable, /obj/machinery/power/am_control_unit, @@ -792,10 +781,7 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "Yt" = ( @@ -1193,7 +1179,7 @@ ZY ZY kK ZF -nf +HQ HQ HQ HQ @@ -1221,7 +1207,7 @@ ZY ZY sQ ZF -nQ +nf nQ nQ nQ @@ -1234,7 +1220,7 @@ gp gp gp lC -GQ +No ZF gF fB @@ -1430,7 +1416,7 @@ Qk Qk Qk Em -Xa +Mu ZF fB oR @@ -1445,7 +1431,7 @@ HQ bo YM ZF -Qk +qO Qk Qk cT @@ -1613,7 +1599,7 @@ ZY ZY BG ZF -vy +GQ vy vy vy @@ -1626,7 +1612,7 @@ AF AF AF Bl -Mu +No ZF fB oR @@ -1637,11 +1623,11 @@ Um ZY ZY ZY -Si -zu +ZY +ZY kK ZF -qO +HQ HQ HQ HQ @@ -1666,7 +1652,7 @@ Um Eu Lr DB -dV +DB KZ Hi QB @@ -1685,7 +1671,7 @@ HQ lA ZT DM -gF +KC gF Um "} diff --git a/_maps/RandomRuins/StationRuins/engine_budget.dmm b/_maps/r_ruins/station/engine_box/engine_budget.dmm similarity index 92% rename from _maps/RandomRuins/StationRuins/engine_budget.dmm rename to _maps/r_ruins/station/engine_box/engine_budget.dmm index 88e3e702f1f3..2a4914be345d 100644 --- a/_maps/RandomRuins/StationRuins/engine_budget.dmm +++ b/_maps/r_ruins/station/engine_box/engine_budget.dmm @@ -1,11 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"as" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Supermatter Engine Room"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ +"ac" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/autoname{ dir = 1 }, /turf/open/floor/plasteel, @@ -20,10 +17,7 @@ req_access_txt = "10" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) "cn" = ( @@ -95,6 +89,17 @@ /obj/structure/cable, /turf/open/floor/plasteel, /area/engineering/main) +"gP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel, +/area/engineering/main) "hq" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 @@ -122,12 +127,7 @@ dir = 8 }, /obj/structure/cable/layer1, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) "kH" = ( @@ -144,14 +144,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) +"oz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/space/nearstation) "pN" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -257,10 +259,7 @@ name = "Supermatter Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) "Be" = ( @@ -307,6 +306,19 @@ /obj/structure/cable, /turf/open/floor/plasteel, /area/engineering/main) +"Fo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) "FQ" = ( /obj/machinery/light/small{ dir = 8 @@ -314,18 +326,13 @@ /obj/structure/closet/emcloset/anchored, /turf/open/floor/engine, /area/engineering/main) -"GS" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - icon_state = "connector_map-1"; - piping_layer = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) "Hu" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, /turf/open/floor/plasteel, /area/engineering/main) "Ie" = ( @@ -380,7 +387,6 @@ /turf/template_noop, /area/space/nearstation) "LC" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/effect/turf_decal/tile/yellow{ dir = 8 }, @@ -396,6 +402,21 @@ }, /turf/open/floor/plasteel, /area/engineering/main) +"MD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("durka_domofon","ss13") + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Na" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/space/nearstation) "Qi" = ( /obj/machinery/light, /obj/effect/turf_decal/tile/yellow, @@ -461,10 +482,6 @@ "Tz" = ( /turf/closed/wall, /area/engineering/main) -"TL" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) "Un" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -849,7 +866,7 @@ Qr Rr Le Le -Le +oz Le Le Le @@ -928,7 +945,7 @@ at Ka Ka Ka -Ka +Fo RY RY RY @@ -1048,7 +1065,7 @@ Vf Bw Vf rA -Qi +ac to Le Rh @@ -1149,7 +1166,7 @@ ZT "} (23,1,1) = {" to -Ka +gP Vf Bw Vf @@ -1272,7 +1289,7 @@ RY RY RY RY -Qi +ac to Le ZT @@ -1293,7 +1310,7 @@ Sn tg sn Jz -sn +MD sA ZF em @@ -1347,7 +1364,7 @@ ZT ZT xD tY -GS +sA LC Sn sA @@ -1376,8 +1393,8 @@ ZT sA CA sA -TL -as +sA +zS UM Ss Ch @@ -1386,7 +1403,7 @@ dX dX dX to -Le +Na Rh Rh Rh diff --git a/_maps/RandomRuins/StationRuins/engine_default_bottom.dmm b/_maps/r_ruins/station/engine_box/engine_default_bottom.dmm similarity index 100% rename from _maps/RandomRuins/StationRuins/engine_default_bottom.dmm rename to _maps/r_ruins/station/engine_box/engine_default_bottom.dmm diff --git a/_maps/RandomRuins/StationRuins/engine_particle_accelerator.dmm b/_maps/r_ruins/station/engine_box/engine_particle_accelerator.dmm similarity index 96% rename from _maps/RandomRuins/StationRuins/engine_particle_accelerator.dmm rename to _maps/r_ruins/station/engine_box/engine_particle_accelerator.dmm index 84acef6c20f7..6ec0927b3ac4 100644 --- a/_maps/RandomRuins/StationRuins/engine_particle_accelerator.dmm +++ b/_maps/r_ruins/station/engine_box/engine_particle_accelerator.dmm @@ -116,9 +116,9 @@ /turf/open/floor/engine, /area/engineering/main) "at" = ( +/obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ - icon_state = "connector_map-1"; - piping_layer = 1 + dir = 4 }, /turf/open/floor/plasteel, /area/engineering/main) @@ -144,12 +144,10 @@ /obj/effect/turf_decal/stripes/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /turf/open/floor/plasteel, /area/engineering/main) "az" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /turf/open/floor/plasteel, /area/engineering/main) "aA" = ( @@ -417,14 +415,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/engineering/main) -"bq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, -/turf/open/floor/plasteel, -/area/engineering/main) "br" = ( /obj/machinery/light/small{ dir = 8 @@ -453,13 +443,9 @@ /turf/open/floor/plating/airless, /area/space/nearstation) "bv" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Southwest"; - dir = 1; - network = list("ss13","engine") - }, /obj/structure/cable, -/turf/open/floor/engine, +/obj/machinery/camera/autoname, +/turf/open/floor/plating, /area/engineering/main) "bw" = ( /obj/machinery/light{ @@ -473,14 +459,12 @@ /turf/open/floor/plasteel, /area/engineering/main) "by" = ( -/obj/machinery/camera/emp_proof{ - c_tag = "Engineering Singularity Southeast"; - dir = 1; - network = list("ss13","engine") +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engineering/main) +/turf/template_noop, +/area/space/nearstation) "bz" = ( /obj/effect/spawner/structure/window/plasma/reinforced, /obj/structure/cable, @@ -580,6 +564,9 @@ /obj/machinery/light{ pixel_y = 0 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engineering/main) "bN" = ( @@ -707,6 +694,10 @@ /obj/effect/turf_decal/stripes/box, /turf/open/floor/plasteel, /area/engineering/main) +"dh" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) "du" = ( /obj/structure/sign/warning/radiation/rad_area, /turf/closed/wall/r_wall, @@ -854,6 +845,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/engine, /area/engineering/main) "wA" = ( @@ -863,6 +857,13 @@ }, /turf/open/floor/engine, /area/engineering/main) +"xg" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/template_noop) "xC" = ( /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -907,6 +908,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 9 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/engine, /area/engineering/main) "Bp" = ( @@ -943,15 +947,6 @@ }, /turf/open/floor/plasteel, /area/engineering/main) -"Dp" = ( -/obj/machinery/door/airlock/external{ - name = "Engineering External Access"; - req_access_txt = "10;13" - }, -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/engineering/main) "GV" = ( /obj/effect/turf_decal/box, /obj/machinery/the_singularitygen/tesla, @@ -1228,7 +1223,7 @@ ab fe ab ab -ab +dh ab ab IS @@ -1256,7 +1251,7 @@ ab fe ab ab -ab +dh ab ab IS @@ -1283,9 +1278,9 @@ ab ab fe ab -ab -ab -ab +dh +dh +xg ab IS mO @@ -1304,7 +1299,7 @@ fe ab fe ab -fe +by ab fe ab @@ -1397,10 +1392,10 @@ bR Ia zz BT -Dp +Bp YT xH -fe +by fe ab "} @@ -1453,7 +1448,7 @@ aG aG aG bj -bv +bZ ad bu IS @@ -1553,7 +1548,7 @@ ad WL WL OM -bE +bv dz YT YT @@ -1845,7 +1840,7 @@ bd bd bd rI -by +bZ ad bu mO @@ -1856,8 +1851,8 @@ ab cb cb co -at -bq +cb +bL cf ad ad @@ -1904,7 +1899,7 @@ bZ Bp yi hm -fe +by fe ab "} @@ -1941,7 +1936,7 @@ ab cb ck cb -az +at bb ad ad diff --git a/_maps/RandomRuins/StationRuins/engine_particle_accelerator_bottom.dmm b/_maps/r_ruins/station/engine_box/engine_particle_accelerator_bottom.dmm similarity index 94% rename from _maps/RandomRuins/StationRuins/engine_particle_accelerator_bottom.dmm rename to _maps/r_ruins/station/engine_box/engine_particle_accelerator_bottom.dmm index 5c0b65694e7a..8005dd736bdd 100644 --- a/_maps/RandomRuins/StationRuins/engine_particle_accelerator_bottom.dmm +++ b/_maps/r_ruins/station/engine_box/engine_particle_accelerator_bottom.dmm @@ -7,13 +7,16 @@ /turf/closed/wall/r_wall, /area/engineering/main) "aq" = ( -/obj/machinery/door/firedoor, /obj/structure/fans/tiny, -/obj/machinery/door/airlock/engineering{ - name = "Engine Room"; - req_access_txt = "10" - }, /obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engi_reactor_shutters" + }, +/obj/machinery/door/airlock/highsecurity{ + req_access = null; + req_access_txt = "10"; + security_level = 6 + }, /turf/open/floor/plasteel/dark, /area/engineering/main) "bd" = ( @@ -122,6 +125,11 @@ }, /turf/open/floor/plasteel, /area/engineering/main) +"ir" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) "ix" = ( /obj/structure/cable/multilayer/multiz, /obj/effect/turf_decal/stripes/box, @@ -183,14 +191,19 @@ "oq" = ( /turf/open/floor/plasteel, /area/engineering/main) -"pw" = ( +"ov" = ( /obj/structure/cable, -/obj/effect/turf_decal/stripes/box, /obj/machinery/power/emitter/welded{ dir = 8 }, +/obj/effect/turf_decal/stripes/box, /turf/open/floor/plating/airless, /area/space/nearstation) +"pw" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/space/nearstation) "qL" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -288,6 +301,16 @@ /obj/structure/particle_accelerator/power_box, /turf/open/floor/plasteel/dark, /area/engineering/main) +"Mc" = ( +/obj/structure/cable, +/obj/machinery/button/door{ + id = "engi_reactor_shutters"; + name = "бронеставни выхода в теха"; + pixel_y = 32; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/main) "Ne" = ( /obj/machinery/power/rad_collector/anchored, /obj/structure/cable, @@ -926,7 +949,7 @@ ab "} (21,1,1) = {" cA -TP +Mc oq mb wn @@ -1052,8 +1075,8 @@ tB xc yB yB -Rz -yB +pw +ir yB yB yB @@ -1221,7 +1244,7 @@ nq yB yB pw -yB +ov yB yB yB diff --git a/_maps/RandomRuins/StationRuins/engine_supermatter.dmm b/_maps/r_ruins/station/engine_box/engine_supermatter.dmm similarity index 95% rename from _maps/RandomRuins/StationRuins/engine_supermatter.dmm rename to _maps/r_ruins/station/engine_box/engine_supermatter.dmm index 0786737242a9..5537fa974510 100644 --- a/_maps/RandomRuins/StationRuins/engine_supermatter.dmm +++ b/_maps/r_ruins/station/engine_box/engine_supermatter.dmm @@ -4,6 +4,9 @@ /area/template_noop) "ac" = ( /obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/plating, /area/maintenance/aft/upper) "ad" = ( @@ -53,10 +56,7 @@ req_access_txt = "10" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "aw" = ( @@ -65,10 +65,7 @@ req_access_txt = "10" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "ax" = ( @@ -103,12 +100,7 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "aI" = ( @@ -149,7 +141,7 @@ /area/engineering/main) "aX" = ( /obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plating, /area/engineering/main) "aZ" = ( @@ -157,7 +149,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "ba" = ( @@ -231,7 +223,7 @@ /turf/open/floor/engine, /area/engineering/main) "bB" = ( -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plating, /area/maintenance/aft/upper) @@ -400,7 +392,7 @@ /obj/structure/railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/openspace, /area/engineering/main) "cu" = ( @@ -409,10 +401,7 @@ req_access_txt = "10" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/aft/upper) "cw" = ( @@ -443,19 +432,22 @@ /obj/structure/railing{ dir = 8 }, -/obj/machinery/atmospherics/pipe/multiz/orange/visible/layer1{ - dir = 1 - }, /obj/machinery/door/firedoor/border_only{ dir = 8 }, /obj/machinery/door/firedoor/border_only{ dir = 1 }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ + dir = 1 + }, /turf/open/floor/plating, /area/engineering/main) "cE" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "cL" = ( @@ -474,10 +466,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) "cQ" = ( @@ -611,6 +600,9 @@ /area/engineering/main) "dX" = ( /obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/plating, /area/engineering/main) "eb" = ( @@ -628,12 +620,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "ec" = ( @@ -688,6 +675,7 @@ /obj/structure/chair/plastic{ dir = 8 }, +/obj/machinery/camera/autoname, /turf/open/floor/engine/airless, /area/space/nearstation) "eA" = ( @@ -765,8 +753,18 @@ /obj/machinery/door/firedoor/border_only{ dir = 4 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/plasteel, /area/engineering/main) +"eJ" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/space/nearstation) "eO" = ( /obj/structure/railing{ dir = 1 @@ -856,6 +854,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/camera/autoname, /turf/open/floor/engine/airless, /area/space/nearstation) "fn" = ( @@ -872,6 +871,13 @@ /obj/structure/lattice, /turf/open/openspace, /area/engineering/main) +"fX" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/template_noop, +/area/space/nearstation) "gj" = ( /obj/structure/railing{ dir = 10 @@ -912,14 +918,26 @@ name = "Engineering Maintenance"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jd" = ( +/obj/structure/railing{ + dir = 8 }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, /obj/machinery/door/firedoor/border_only{ dir = 8 }, -/turf/open/floor/plating, -/area/maintenance/aft/upper) +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) "jZ" = ( /obj/item/rollingpaper, /obj/effect/turf_decal/box, @@ -949,6 +967,7 @@ /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/machinery/camera/autoname, /turf/open/floor/engine, /area/engineering/main) "nU" = ( @@ -967,13 +986,6 @@ }, /turf/open/floor/plasteel/dark, /area/engineering/main) -"oi" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engineering/main) "pE" = ( /obj/structure/railing, /obj/machinery/door/firedoor/border_only, @@ -985,19 +997,14 @@ "pS" = ( /turf/closed/wall/r_wall, /area/space/nearstation) -"qP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +"qE" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 }, -/turf/open/floor/plating, -/area/maintenance/aft/upper) +/turf/template_noop, +/area/space/nearstation) "re" = ( /obj/structure/ladder, /obj/effect/turf_decal/stripes/box, @@ -1012,6 +1019,11 @@ }, /turf/open/floor/engine/airless, /area/space/nearstation) +"tf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/space/nearstation) "tk" = ( /obj/structure/lattice, /obj/structure/grille, @@ -1131,10 +1143,22 @@ /turf/open/floor/plasteel/dark, /area/engineering/main) "Cn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, /obj/machinery/camera/autoname{ - dir = 1 + dir = 5 }, -/turf/open/floor/plating, +/turf/open/floor/plasteel, /area/engineering/main) "CL" = ( /obj/effect/turf_decal/stripes/line{ @@ -1199,12 +1223,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/engineering/main) "GN" = ( @@ -1500,7 +1519,7 @@ ab ab ab ab -LF +qE ab ab ab @@ -1668,7 +1687,7 @@ ab bb bb ad -LF +tf ab ab ab @@ -1676,7 +1695,7 @@ ab wC ab ab -wC +eJ ab ab ab @@ -1777,7 +1796,7 @@ tB tB bA OF -OF +Cn ed OF OF @@ -1928,7 +1947,7 @@ Am if vb Jt -Cn +vb ad hu zX @@ -2176,13 +2195,13 @@ Ik Ik Ik Ik -Ik +jd eP ad ad ad ad -qP +iq zX fm AD @@ -2236,7 +2255,7 @@ au dA tB wC -wC +fX zX zX zX @@ -2253,7 +2272,7 @@ ab au aI aZ -oi +aZ cO bd ck @@ -2280,7 +2299,7 @@ ab ab au as -cE +au cE ad ad diff --git a/_maps/RandomRuins/StationRuins/engine_supermatter_bottom.dmm b/_maps/r_ruins/station/engine_box/engine_supermatter_bottom.dmm similarity index 96% rename from _maps/RandomRuins/StationRuins/engine_supermatter_bottom.dmm rename to _maps/r_ruins/station/engine_box/engine_supermatter_bottom.dmm index e09f609feea7..7874613e44ca 100644 --- a/_maps/RandomRuins/StationRuins/engine_supermatter_bottom.dmm +++ b/_maps/r_ruins/station/engine_box/engine_supermatter_bottom.dmm @@ -10,16 +10,18 @@ /turf/template_noop, /area/space/nearstation) "ao" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" - }, /obj/structure/sign/warning/radiation/rad_area{ pixel_x = -32 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/highsecurity{ + req_access = null; + req_access_txt = "10"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engi_reactor_shutters" }, /turf/open/floor/plating, /area/engineering/main) @@ -226,6 +228,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 4 }, +/obj/machinery/camera/autoname, /turf/open/floor/engine, /area/engineering/main) "bN" = ( @@ -407,10 +410,8 @@ /turf/open/floor/engine, /area/engineering/main) "cL" = ( -/obj/machinery/airalarm/engine{ - dir = 4; - pixel_x = -23 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/engine_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/components/binary/pump{ dir = 1; @@ -429,6 +430,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, /turf/open/floor/engine, /area/engineering/main) "cP" = ( @@ -441,13 +446,10 @@ /area/engineering/supermatter) "cT" = ( /obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Port"; - dir = 4; - network = list("ss13","engine") + dir = 5 }, +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/engine, /area/engineering/main) "cV" = ( @@ -592,7 +594,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/atmospherics/pipe/layer_manifold/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/engine, /area/engineering/main) "dx" = ( @@ -727,17 +729,9 @@ /turf/open/floor/plasteel/dark, /area/engineering/main) "dX" = ( -/obj/machinery/camera{ - c_tag = "Engineering Supermatter Starboard"; - dir = 8; - network = list("ss13","engine") - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable, +/obj/machinery/camera/autoname, /turf/open/floor/engine, -/area/engineering/main) +/area/engineering/supermatter) "dY" = ( /turf/open/floor/engine, /area/engineering/supermatter) @@ -752,7 +746,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/main) "eb" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/engine_waste{ +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ dir = 1 }, /turf/open/floor/plating/airless, @@ -771,7 +765,7 @@ pixel_x = 24 }, /obj/effect/turf_decal/stripes/box, -/obj/machinery/atmospherics/pipe/multiz/orange/visible/layer1{ +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ dir = 1 }, /turf/open/floor/plating, @@ -824,6 +818,9 @@ /obj/machinery/atmospherics/components/binary/pump{ name = "Gas to Chamber" }, +/obj/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/engine, /area/engineering/supermatter) "eq" = ( @@ -1184,6 +1181,17 @@ }, /turf/open/floor/engine, /area/engineering/main) +"jA" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/button/door{ + id = "engi_reactor_shutters"; + name = "бронеставни выхода в теха"; + pixel_y = 32; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/main) "kf" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 @@ -1202,12 +1210,7 @@ name = "Engineering Maintenance"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/engineering/main) "lR" = ( @@ -1237,8 +1240,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 10 }, +/obj/machinery/camera/autoname, /turf/open/floor/plasteel/dark, /area/engineering/main) +"nq" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/template_noop) "nF" = ( /obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ color = "#ff0000"; @@ -1306,10 +1315,7 @@ req_access_txt = "10" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/engine, /area/engineering/main) "rI" = ( @@ -1405,6 +1411,13 @@ }, /turf/open/floor/engine, /area/engineering/main) +"DW" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) "Fw" = ( /turf/closed/wall/r_wall, /area/maintenance/aft/upper) @@ -1569,6 +1582,13 @@ }, /turf/open/floor/engine, /area/engineering/main) +"WX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/space/nearstation) "Zc" = ( /obj/structure/reflector/single/anchored{ dir = 9 @@ -1919,7 +1939,7 @@ oi eD oi eD -at +WX ab ab ab @@ -1964,7 +1984,7 @@ bD dB dB dB -cT +dB dB dB wC @@ -2089,7 +2109,7 @@ fj fj fr fr -fj +DW ad ab ab @@ -2155,7 +2175,7 @@ ab "} (21,1,1) = {" ad -aM +jA cg cy dO @@ -2245,7 +2265,7 @@ cD dU by bk -dY +dX dF dY bk @@ -2257,7 +2277,7 @@ fj fj nZ fj -fj +DW ad ab ab @@ -2352,11 +2372,11 @@ ab (28,1,1) = {" ad ad -eW +cT dt ed aM -dX +eA aw eA eA @@ -2420,7 +2440,7 @@ cV bi sL ad -dk +nq dk Fw Fw diff --git a/_maps/RandomRuins/StationRuins/engine_teg.dmm b/_maps/r_ruins/station/engine_box/engine_teg.dmm similarity index 97% rename from _maps/RandomRuins/StationRuins/engine_teg.dmm rename to _maps/r_ruins/station/engine_box/engine_teg.dmm index 2952e848c2f6..aa2d44a46051 100644 --- a/_maps/RandomRuins/StationRuins/engine_teg.dmm +++ b/_maps/r_ruins/station/engine_box/engine_teg.dmm @@ -20,8 +20,8 @@ /turf/open/floor/plasteel/dark, /area/engineering/main) "aN" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "bb" = ( @@ -78,7 +78,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "ct" = ( @@ -91,17 +91,12 @@ /obj/effect/turf_decal/stripes/end{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/door/airlock/engineering/glass{ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "cC" = ( @@ -157,11 +152,11 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "dy" = ( @@ -192,8 +187,11 @@ dir = 4; pixel_x = -24 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box, +/obj/machinery/camera/autoname{ + dir = 5 + }, /turf/open/floor/plasteel/dark, /area/engineering/main) "et" = ( @@ -267,13 +265,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, /obj/structure/railing/corner, /obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "gZ" = ( @@ -284,7 +282,7 @@ /area/engineering/main) "hj" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/effect/turf_decal/stripes/box, /turf/template_noop, /area/space/nearstation) @@ -324,8 +322,8 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "ja" = ( @@ -342,13 +340,13 @@ /turf/open/floor/plating, /area/engineering/main) "kb" = ( -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/engineering/main) "kg" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/structure/cable, /turf/template_noop, /area/space/nearstation) @@ -384,11 +382,11 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "lz" = ( @@ -552,7 +550,7 @@ /turf/open/floor/plasteel/dark, /area/engineering/main) "sj" = ( -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box, /obj/machinery/atmospherics/components/unary/portables_connector/visible{ dir = 4 @@ -599,12 +597,7 @@ /turf/closed/wall/r_wall, /area/engineering/main) "uT" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ id_tag = "teg_incinerator_airlock_exterior"; name = "TEG Turbine Interior Airlock" @@ -626,7 +619,7 @@ /turf/open/floor/plasteel, /area/engineering/main) "vk" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engineering/supermatter) @@ -689,8 +682,8 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = 32 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plating, /area/engineering/main) "xX" = ( @@ -706,11 +699,11 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "yi" = ( @@ -756,17 +749,12 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "zm" = ( @@ -782,8 +770,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "zI" = ( @@ -826,11 +814,11 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "Ab" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "Ac" = ( @@ -879,10 +867,7 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/engineering/main) "AK" = ( @@ -921,11 +906,11 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "CU" = ( @@ -944,7 +929,7 @@ /area/space/nearstation) "Dd" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/door/airlock/external{ name = "Engineering External Access"; req_access_txt = "10;13" @@ -960,7 +945,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "Dx" = ( @@ -1023,8 +1008,8 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "Fo" = ( @@ -1041,7 +1026,7 @@ /turf/open/floor/engine/airless, /area/engineering/supermatter) "Gi" = ( -/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/meter, /turf/closed/wall/r_wall, /area/engineering/main) @@ -1115,7 +1100,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, /obj/structure/railing/corner{ dir = 8 @@ -1123,6 +1107,7 @@ /obj/effect/turf_decal/stripes/corner{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "Ho" = ( @@ -1147,7 +1132,7 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/portable_atmospherics/canister/plasma, /obj/effect/turf_decal/box, /turf/open/floor/plasteel/dark, /area/engineering/main) @@ -1212,7 +1197,7 @@ /area/engineering/supermatter) "Kn" = ( /obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/template_noop, /area/space/nearstation) "Kr" = ( @@ -1310,13 +1295,18 @@ /obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ dir = 9 }, -/obj/machinery/air_sensor/atmos/incinerator_tank{ +/obj/machinery/air_sensor/incinerator_tank{ id_tag = "tag_incinerator_sensor"; name = "TEG chamber gas sensor"; network_id = "tag_incinerator_sensor" }, /turf/open/floor/engine/airless, /area/engineering/supermatter) +"MX" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/space/nearstation) "Ns" = ( /obj/structure/lattice/catwalk, /obj/structure/cable, @@ -1327,12 +1317,6 @@ /obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/obj/machinery/computer/atmos_control/incinerator{ - dir = 1; - id_tag = "tag_incinerator_sensor"; - name = "TEG Air Control"; - network_id = "tag_incinerator_sensor" - }, /turf/open/floor/plasteel, /area/engineering/main) "NI" = ( @@ -1376,6 +1360,12 @@ /obj/structure/lattice/catwalk, /turf/template_noop, /area/space/nearstation) +"Ot" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/space/nearstation) "ON" = ( /obj/structure/table, /obj/item/stack/sheet/iron/fifty{ @@ -1398,11 +1388,14 @@ /obj/machinery/light{ pixel_y = 0 }, +/obj/machinery/camera/autoname{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/engineering/main) "Px" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "PF" = ( @@ -1426,8 +1419,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "PL" = ( @@ -1555,10 +1548,10 @@ name = "Engineering External Access"; req_access_txt = "10;13" }, -/obj/machinery/airalarm/engine{ - pixel_x = 0; - pixel_y = 23 +/obj/machinery/airalarm/directional/south{ + pixel_x = 0 }, +/obj/effect/mapping_helpers/airalarm/engine_access, /turf/open/floor/engine/airless, /area/engineering/supermatter) "UK" = ( @@ -1606,8 +1599,8 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel/dark, /area/engineering/main) "VD" = ( @@ -1633,10 +1626,7 @@ name = "Engine Room"; req_access_txt = "10" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/engineering/main) @@ -1644,7 +1634,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "Wn" = ( @@ -1689,11 +1679,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /turf/open/floor/plasteel, /area/engineering/main) "Xt" = ( @@ -1766,6 +1756,9 @@ /obj/machinery/light{ dir = 4 }, +/obj/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/engineering/main) "YU" = ( @@ -1773,7 +1766,7 @@ dir = 1 }, /obj/structure/fans/tiny, -/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, /obj/machinery/door/airlock/external{ name = "Engineering External Access"; req_access_txt = "10;13" @@ -1792,6 +1785,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/machinery/camera/autoname, /turf/open/floor/plasteel/dark, /area/engineering/main) "Zl" = ( @@ -2013,7 +2007,7 @@ Kr SY Hb OY -Ns +Ot NI ny ny @@ -2601,7 +2595,7 @@ gi Jg kY lS -nR +MX Ix Lc Lc diff --git a/_maps/RandomRuins/StationRuins/engine_teg_bottom.dmm b/_maps/r_ruins/station/engine_box/engine_teg_bottom.dmm similarity index 97% rename from _maps/RandomRuins/StationRuins/engine_teg_bottom.dmm rename to _maps/r_ruins/station/engine_box/engine_teg_bottom.dmm index c15ffb3e6b89..3d293037c67a 100644 --- a/_maps/RandomRuins/StationRuins/engine_teg_bottom.dmm +++ b/_maps/r_ruins/station/engine_box/engine_teg_bottom.dmm @@ -10,15 +10,16 @@ /turf/closed/wall/r_wall, /area/engineering/main) "ao" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Engineering Maintenance"; - req_access_txt = "10" +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engi_reactor_shutters" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/airlock/highsecurity{ + req_access = null; + req_access_txt = "10"; + security_level = 6 }, -/obj/structure/cable, /turf/open/floor/plating, /area/engineering/main) "ar" = ( @@ -108,6 +109,12 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, +/obj/machinery/button/door{ + id = "engi_reactor_shutters"; + name = "бронеставни выхода в теха"; + pixel_y = 32; + req_access_txt = "10" + }, /turf/open/floor/plating, /area/engineering/main) "aP" = ( @@ -517,6 +524,11 @@ /obj/machinery/atmospherics/pipe/layer_manifold/general/visible, /turf/template_noop, /area/space/nearstation) +"jV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/template_noop, +/area/space/nearstation) "lW" = ( /obj/machinery/atmospherics/pipe/heat_exchanging/simple{ dir = 10 @@ -698,6 +710,16 @@ /obj/machinery/atmospherics/components/binary/pump, /turf/closed/wall/r_wall, /area/engineering/main) +"Ej" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/template_noop, +/area/space/nearstation) "Ep" = ( /obj/effect/turf_decal/tile/yellow, /obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, @@ -1232,7 +1254,7 @@ ab LF LD bt -LD +Ej bt LD bt @@ -1270,7 +1292,7 @@ ad ad ad ad -bb +jV LD GN GN @@ -1396,7 +1418,7 @@ ab ab "} (18,1,1) = {" -ad +ar aK bN cY @@ -1480,7 +1502,7 @@ ab ab "} (21,1,1) = {" -ar +ad aO Ap do @@ -1718,7 +1740,7 @@ cY bN Uv ad -bb +jV LF zJ zJ diff --git a/_maps/r_ruins/station/engine_meta/meta_engine_supermatter.dmm b/_maps/r_ruins/station/engine_meta/meta_engine_supermatter.dmm new file mode 100644 index 000000000000..fff55e19d280 --- /dev/null +++ b/_maps/r_ruins/station/engine_meta/meta_engine_supermatter.dmm @@ -0,0 +1,1474 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ad" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"ae" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"af" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ag" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ah" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ai" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aj" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ak" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"al" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"am" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"an" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/color_adapter, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ao" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ap" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"ar" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"as" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"at" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("ss13","engine") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"au" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ax" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ay" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"az" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aC" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"aD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/engineering/main) +"aE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"aF" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"aH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"aI" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/engineering/main) +"aK" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plating, +/area/engineering/main) +"aL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Gas" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Mix" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Starboard"; + dir = 4; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"aW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aY" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ba" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"bc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"be" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix Bypass" + }, +/turf/open/floor/engine, +/area/engineering/main) +"bg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/meter, +/obj/machinery/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bm" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plating, +/area/engineering/main) +"bp" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"bq" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"br" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"bs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"bt" = ( +/obj/machinery/power/emitter/welded, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"bu" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"bv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"bw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"by" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bz" = ( +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"bA" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"bF" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"bI" = ( +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_x = 24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bK" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"bL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bN" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"bO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bP" = ( +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/main) +"bQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"bW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Engine Coolant Bypass" + }, +/turf/open/floor/engine, +/area/engineering/main) +"bX" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"ca" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engineering/supermatter) +"cb" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/supermatter) +"cc" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cf" = ( +/obj/structure/reflector/box/anchored{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Port"; + dir = 8; + network = list("ss13","engine") + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"ch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"ck" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Gas to Filter" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"co" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"cM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine, +/area/engineering/supermatter) +"dh" = ( +/turf/open/floor/engine, +/area/engineering/supermatter) +"du" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"dz" = ( +/turf/open/space/basic, +/area/space) +"fe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"hM" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engineering/main) +"io" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"lt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"lz" = ( +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"md" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"mC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical, +/turf/open/floor/engine, +/area/engineering/main) +"mO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"mY" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/engineering/main) +"nR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"pc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"py" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"qU" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Chamber"; + dir = 4; + network = list("engine") + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + filter_type = "n2" + }, +/turf/open/floor/engine, +/area/engineering/main) +"sF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"th" = ( +/obj/item/crowbar, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"vO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wg" = ( +/obj/structure/reflector/double/anchored{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"xg" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"xC" = ( +/obj/machinery/power/emitter/welded{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"yi" = ( +/obj/machinery/power/emitter/welded{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"yz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"AH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"Bp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"Bx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Cd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"Dp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"GV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/turf/open/floor/engine, +/area/engineering/main) +"Ia" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"Is" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"IS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"Jm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"JG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"JX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"NJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Atmos to Loop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"OM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"PY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Cold Loop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Qx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Cold Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"SD" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/plating, +/area/engineering/main) +"Ui" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"WL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"WN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"WX" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"YP" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"YT" = ( +/turf/open/floor/plating, +/area/engineering/main) +"Zf" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/main) + +(1,1,1) = {" +ab +ai +ap +az +aE +aL +bb +bi +bw +bw +bw +bQ +bw +bw +bw +IS +mO +Jm +ad +"} +(2,1,1) = {" +ae +aj +aq +aA +aF +aM +bc +bk +bx +bk +bI +bW +cg +io +nR +sF +yz +JG +ad +"} +(3,1,1) = {" +mY +ak +ar +aB +Ia +aM +bd +bl +bl +bz +bC +bX +ch +bz +pc +cd +AH +JG +ad +"} +(4,1,1) = {" +ad +al +ad +Ia +ad +aN +bd +bm +bm +bz +bJ +dh +ck +bz +py +py +AH +JX +ad +"} +(5,1,1) = {" +fe +am +at +au +aH +aO +be +bp +bz +bC +bK +bY +co +lt +bz +bp +Bp +JG +ad +"} +(6,1,1) = {" +af +an +au +aC +Ia +aM +bd +bq +dh +bF +bL +dh +cM +xg +qU +bq +AH +JG +ad +"} +(7,1,1) = {" +ag +an +ax +aC +Ia +aM +bd +br +bA +bF +bL +ca +cM +xg +bA +th +Bx +NJ +vO +"} +(8,1,1) = {" +af +an +au +aC +Ia +aM +bf +bq +dh +bF +bL +dh +cM +xg +dh +bq +Cd +OM +ad +"} +(9,1,1) = {" +ah +ao +ay +ay +by +aP +bg +bp +bz +bz +bN +cb +md +bz +bz +bp +Dp +PY +SD +"} +(10,1,1) = {" +ad +ad +ad +Ia +ad +aW +du +WN +WN +WN +aU +cc +hm +WN +WN +bQ +GV +JG +Ia +"} +(11,1,1) = {" +dz +as +ad +aD +aK +aX +bh +bs +bB +bH +bO +cd +mC +nI +rI +wA +Is +Qx +SD +"} +(12,1,1) = {" +dz +as +ad +aI +ad +aY +bn +Ia +ad +ad +Ia +Ia +Ia +ad +ad +Ia +bn +Ui +ad +"} +(13,1,1) = {" +dz +as +as +as +ad +aZ +bu +YT +Zf +Zf +Zf +cf +wg +Zf +Zf +YT +bu +WL +ad +"} +(14,1,1) = {" +dz +dz +dz +dz +ad +ba +bu +bu +Zf +Zf +Zf +Zf +Zf +Zf +Zf +bu +bu +WX +ad +"} +(15,1,1) = {" +dz +dz +dz +dz +ad +lz +YT +bt +Zf +Zf +Zf +cf +Zf +Zf +Zf +xC +YT +YP +ad +"} +(16,1,1) = {" +dz +dz +dz +dz +ad +YT +YT +bv +YT +YT +bP +ad +hM +YT +YT +yi +YT +Zf +ad +"} +(17,1,1) = {" +as +dz +dz +dz +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} diff --git a/_maps/r_ruins/station/engine_meta/meta_engine_tesla.dmm b/_maps/r_ruins/station/engine_meta/meta_engine_tesla.dmm new file mode 100644 index 000000000000..e811dfe24d9b --- /dev/null +++ b/_maps/r_ruins/station/engine_meta/meta_engine_tesla.dmm @@ -0,0 +1,1152 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ad" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"ae" = ( +/obj/structure/particle_accelerator/end_cap, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff"; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"af" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ag" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"ah" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ai" = ( +/obj/structure/particle_accelerator/fuel_chamber, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ak" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"al" = ( +/obj/structure/particle_accelerator/power_box, +/turf/open/floor/engine, +/area/engineering/main) +"am" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"an" = ( +/obj/structure/particle_accelerator/particle_emitter/center, +/turf/open/floor/engine, +/area/engineering/main) +"ao" = ( +/obj/structure/particle_accelerator/particle_emitter/right, +/turf/open/floor/engine, +/area/engineering/main) +"ap" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ar" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"as" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"at" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/grounding_rod, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"au" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/grounding_rod, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ax" = ( +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"ay" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"az" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"aA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"aB" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"aC" = ( +/obj/effect/turf_decal/box, +/obj/machinery/the_singularitygen/tesla, +/turf/open/floor/plating, +/area/engineering/main) +"aD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"aE" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engineering/main) +"aF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"aG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"aI" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aJ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bR" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ce" = ( +/turf/open/space/basic, +/area/space) +"cq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"dS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/engine, +/area/engineering/main) +"fO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/hidden, +/turf/open/floor/plating, +/area/engineering/main) +"gT" = ( +/obj/item/screwdriver, +/turf/open/floor/engine, +/area/engineering/main) +"kj" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"kr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"lz" = ( +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/engine, +/area/engineering/main) +"md" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"mY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"rp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/engine, +/area/engineering/main) +"rR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"rX" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"sk" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"su" = ( +/obj/structure/particle_accelerator/particle_emitter/left, +/turf/open/floor/engine, +/area/engineering/main) +"tp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"tJ" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ua" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"vb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/engine, +/area/engineering/main) +"xH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"yd" = ( +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Fore"; + dir = 4; + network = list("ss13","engine") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"yz" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/main) +"yN" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"zz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"zP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Bb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"BT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Dp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/engine, +/area/engineering/main) +"DD" = ( +/turf/open/floor/engine, +/area/engineering/main) +"EN" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"FA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/floodlight, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"FI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"FO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"GO" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/floor/plating, +/area/engineering/main) +"Hq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Hu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"HV" = ( +/obj/item/crowbar, +/turf/open/floor/engine, +/area/engineering/main) +"Ia" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/open/space/basic, +/area/space/nearstation) +"KV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ld" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"Lk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/floodlight, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Lt" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"LI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"LQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/tesla_coil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Mj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/engine, +/area/engineering/main) +"MD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/engineering/main) +"NJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"OM" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"Pl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/power/tesla_coil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"QE" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/engineering/main) +"Sn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"SC" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"SQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"Tc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/main) +"Tf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Engineering Supermatter Aft"; + dir = 1; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Ua" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/floodlight, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Wl" = ( +/turf/open/floor/plating, +/area/engineering/main) +"XO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"Yr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"YT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Zz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"ZB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"ZU" = ( +/obj/machinery/firealarm{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/tesla_coil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) + +(1,1,1) = {" +bR +NJ +Hq +nZ +Tc +dS +bd +yN +at +ay +bd +pd +bd +bd +at +yN +bd +Pl +ad +"} +(2,1,1) = {" +xH +tJ +FO +vS +ua +rp +Bb +EN +DD +DD +yN +EN +yN +DD +DD +EN +tp +LQ +ad +"} +(3,1,1) = {" +mY +cq +sk +KV +OM +rp +kj +Zz +Zz +Zz +Zz +Zz +Zz +Zz +Zz +Zz +SQ +LQ +ad +"} +(4,1,1) = {" +ab +zP +ak +am +OM +FA +as +SC +QE +QE +QE +aB +QE +QE +QE +SC +Ld +Lk +ad +"} +(5,1,1) = {" +yz +vb +ad +OM +OM +MD +LI +QE +Wl +Wl +Wl +Wl +Wl +Wl +Wl +QE +Ld +aG +ad +"} +(6,1,1) = {" +zz +Yr +yd +bd +ap +ZB +LI +QE +Wl +Wl +Wl +Wl +Wl +Wl +Wl +QE +Ld +aH +ad +"} +(7,1,1) = {" +BT +ah +HV +su +Lt +ZB +LI +QE +Wl +Wl +az +dF +aD +Wl +Wl +QE +Ld +tT +fO +"} +(8,1,1) = {" +ae +ai +al +an +Lt +ZB +LI +QE +Wl +Wl +aA +aC +aE +Wl +Wl +QE +Ld +tT +ad +"} +(9,1,1) = {" +Dp +FI +gT +ao +Lt +ZB +LI +QE +Wl +Wl +Hu +XO +md +Wl +Wl +QE +Ld +Tf +GO +"} +(10,1,1) = {" +af +aj +YT +YT +aq +ZB +LI +QE +Wl +Wl +Wl +Wl +Wl +Wl +Wl +QE +Ld +tT +OM +"} +(11,1,1) = {" +yz +ad +ad +OM +OM +MD +rR +QE +Wl +Wl +Wl +Wl +Wl +Wl +Wl +QE +kr +tT +GO +"} +(12,1,1) = {" +ag +aI +aI +aI +OM +Ua +bn +SC +QE +QE +QE +aB +QE +QE +QE +SC +kr +Lk +ad +"} +(13,1,1) = {" +ag +ag +ag +aI +OM +Mj +bE +pd +pd +pd +pd +pd +pd +pd +pd +pd +aF +LQ +ad +"} +(14,1,1) = {" +ce +ce +ag +aI +ad +ZU +Bb +EN +DD +DD +rX +DD +rX +DD +DD +EN +tp +LQ +ad +"} +(15,1,1) = {" +ce +ce +ag +ag +ad +lz +YT +rX +au +YT +YT +Sn +YT +YT +au +rX +YT +wp +ad +"} +(16,1,1) = {" +ce +ce +ce +ce +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +"} +(17,1,1) = {" +Ia +ce +ce +ce +ce +ar +ce +ar +ax +ce +ar +ce +ar +ce +ar +ce +ar +ar +aJ +"} diff --git a/_maps/r_ruins/station/maint/maint_sw_arena.dmm b/_maps/r_ruins/station/maint/maint_sw_arena.dmm new file mode 100644 index 000000000000..ee0a5753453f --- /dev/null +++ b/_maps/r_ruins/station/maint/maint_sw_arena.dmm @@ -0,0 +1,412 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"c" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"e" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/clothing/under/victorian/reddress, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"h" = ( +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 8; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"i" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"k" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"m" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"n" = ( +/obj/item/clothing/under/victorian/vest, +/obj/item/melee/baseball_bat/ablative, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"p" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"q" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"s" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"t" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"w" = ( +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"x" = ( +/turf/template_noop, +/area/template_noop) +"y" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"z" = ( +/turf/open/floor/resin, +/area/maintenance/port/aft) +"A" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"B" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"C" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 9; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"D" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"E" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 5; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"F" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"G" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"H" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 10; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"I" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"J" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 6; + icon_state = "trimline" + }, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"K" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/clothing/under/victorian/vest, +/obj/item/melee/baseball_bat/ablative, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"L" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/clothing/under/victorian/blackdress, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"M" = ( +/obj/item/clothing/under/victorian/blred, +/obj/item/melee/baseball_bat/ablative, +/turf/open/floor/resin, +/area/maintenance/port/aft) +"N" = ( +/obj/structure/chair/sofa, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"O" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"P" = ( +/obj/structure/chair/sofa/left{ + dir = 1; + icon_state = "sofaend_left" + }, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"T" = ( +/obj/structure/chair/sofa{ + dir = 1; + icon_state = "sofamiddle" + }, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"U" = ( +/obj/structure/chair/sofa/right{ + dir = 1; + icon_state = "sofaend_right" + }, +/turf/open/floor/partyhard/wood/long, +/area/maintenance/port/aft) +"V" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"W" = ( +/turf/closed/wall, +/area/maintenance/port/aft) + +(1,1,1) = {" +W +W +W +W +W +k +W +W +c +W +W +W +W +W +"} +(2,1,1) = {" +W +y +V +y +y +y +W +x +x +x +x +x +x +c +"} +(3,1,1) = {" +W +y +W +W +W +W +W +i +i +i +i +s +x +c +"} +(4,1,1) = {" +b +y +W +m +z +z +p +z +z +z +P +t +x +c +"} +(5,1,1) = {" +W +y +W +N +z +C +F +F +H +z +T +t +x +c +"} +(6,1,1) = {" +W +y +W +N +z +D +n +M +I +z +T +t +x +c +"} +(7,1,1) = {" +W +y +W +N +z +D +K +M +I +z +T +t +x +c +"} +(8,1,1) = {" +c +y +W +N +z +E +G +G +J +z +T +t +x +c +"} +(9,1,1) = {" +c +y +W +O +z +z +z +z +z +z +U +t +x +W +"} +(10,1,1) = {" +c +y +W +e +A +B +A +A +A +A +L +q +x +W +"} +(11,1,1) = {" +W +y +W +W +W +W +w +h +W +W +W +W +W +W +"} diff --git a/_maps/RandomRuins/StationRuins/maint_sw_chess.dmm b/_maps/r_ruins/station/maint/maint_sw_chess.dmm similarity index 100% rename from _maps/RandomRuins/StationRuins/maint_sw_chess.dmm rename to _maps/r_ruins/station/maint/maint_sw_chess.dmm diff --git a/_maps/r_ruins/station/maint/maint_sw_default.dmm b/_maps/r_ruins/station/maint/maint_sw_default.dmm new file mode 100644 index 000000000000..07371c76f819 --- /dev/null +++ b/_maps/r_ruins/station/maint/maint_sw_default.dmm @@ -0,0 +1,242 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"b" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"c" = ( +/turf/open/openspace, +/area/maintenance/port/aft) +"f" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"g" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"k" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"l" = ( +/obj/item/stack/tile/plasteel, +/turf/open/floor/plating/airless, +/area/maintenance/port/aft) +"o" = ( +/obj/item/weldingtool, +/turf/open/floor/plating/airless, +/area/maintenance/port/aft) +"p" = ( +/obj/item/stack/sheet/iron, +/turf/open/floor/plating/airless, +/area/maintenance/port/aft) +"q" = ( +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/open/floor/plating/airless, +/area/maintenance/port/aft) +"r" = ( +/obj/item/clothing/head/hardhat, +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/port/aft) +"F" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/port/aft) +"O" = ( +/turf/open/floor/plating/airless, +/area/maintenance/port/aft) + +(1,1,1) = {" +a +a +a +a +a +k +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +f +g +f +f +f +f +O +O +O +O +F +F +a +"} +(3,1,1) = {" +a +f +f +f +f +f +f +O +O +O +F +F +O +a +"} +(4,1,1) = {" +b +f +f +O +O +O +O +O +O +c +F +c +F +a +"} +(5,1,1) = {" +a +f +f +O +O +O +l +O +O +r +F +F +O +a +"} +(6,1,1) = {" +a +f +f +O +O +O +O +O +p +c +F +c +O +a +"} +(7,1,1) = {" +a +f +f +O +O +O +O +o +q +F +F +F +O +a +"} +(8,1,1) = {" +a +f +f +O +O +O +O +O +O +c +F +c +F +a +"} +(9,1,1) = {" +a +f +f +O +O +O +O +O +O +F +F +F +O +a +"} +(10,1,1) = {" +a +f +f +O +O +O +O +O +O +c +O +O +O +a +"} +(11,1,1) = {" +a +b +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/_maps/RandomRuins/StationRuins/medbay_default.dmm b/_maps/r_ruins/station/med/medbay_default.dmm similarity index 96% rename from _maps/RandomRuins/StationRuins/medbay_default.dmm rename to _maps/r_ruins/station/med/medbay_default.dmm index 457b3552169b..dc39a1fb5509 100644 --- a/_maps/RandomRuins/StationRuins/medbay_default.dmm +++ b/_maps/r_ruins/station/med/medbay_default.dmm @@ -13,7 +13,6 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/white, /area/medical/virology) "ag" = ( @@ -34,6 +33,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/yellow, +/obj/machinery/light_switch/directional/south, /turf/open/floor/plasteel/white, /area/medical/chemistry) "as" = ( @@ -68,10 +68,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/cryo) "ay" = ( @@ -147,10 +144,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "aY" = ( @@ -278,7 +272,6 @@ dir = 1 }, /obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/epinephrine, /obj/machinery/requests_console{ department = "Chemistry"; departmentType = 2; @@ -288,7 +281,11 @@ /obj/machinery/light{ dir = 8 }, -/obj/item/stack/sheet/mineral/plasma, +/obj/item/hand_labeler{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/stack/sheet/mineral/plasma/five, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "bF" = ( @@ -364,14 +361,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/camera/autoname{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /turf/open/floor/circuit, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "bY" = ( /obj/machinery/door/airlock/maintenance{ dir = 4; @@ -392,19 +386,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/morgue) "bZ" = ( /obj/machinery/power/apc{ areastring = "/area/medical/psychology"; name = "Psychology APC"; - pixel_y = -24 + pixel_y = -25 }, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -462,6 +451,7 @@ dir = 8 }, /obj/structure/table, +/obj/item/stack/sheet/plastic/fifty, /obj/item/book/manual/wiki/medicine, /obj/item/storage/belt/medical{ pixel_y = 2 @@ -476,7 +466,7 @@ areastring = "/area/medical/storage"; dir = 4; name = "Medbay Storage APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/structure/cable, /obj/item/clothing/glasses/hud/health, @@ -534,9 +524,7 @@ /area/medical/chemistry) "cF" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "cH" = ( @@ -548,12 +536,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/morgue) "cY" = ( @@ -592,13 +575,16 @@ /obj/structure/table/glass, /obj/structure/window/reinforced, /obj/item/storage/firstaid/toxin{ - pixel_x = 3; + pixel_x = -7; pixel_y = 3 }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/regular{ +/obj/item/storage/firstaid/toxin{ pixel_x = -3; - pixel_y = -3 + pixel_y = 1 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 1; + pixel_y = -1 }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -613,6 +599,10 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -3 + }, /turf/open/floor/plasteel/dark, /area/medical/storage) "dy" = ( @@ -643,12 +633,17 @@ req_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/aft) +"dJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/iv_drip, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) "dQ" = ( /obj/structure/closet/l3closet/virology, /obj/effect/turf_decal/stripes/line{ @@ -682,12 +677,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/aft) "ed" = ( @@ -709,9 +699,6 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 - }, /turf/open/floor/plasteel/white, /area/medical/virology) "en" = ( @@ -780,6 +767,7 @@ dir = 1 }, /obj/structure/cable, +/obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "ey" = ( @@ -885,17 +873,20 @@ req_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) +"eY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) "fe" = ( /obj/structure/bodycontainer/morgue, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) +"fi" = ( +/turf/closed/wall/r_wall, +/area/medical/cryo) "fp" = ( /obj/machinery/chem_heater, /obj/effect/turf_decal/tile/yellow{ @@ -1017,6 +1008,12 @@ dir = 8; pixel_x = -28 }, +/obj/item/reagent_containers/dropper{ + pixel_y = -15 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -15 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "fV" = ( @@ -1107,10 +1104,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/security/checkpoint/medical) "gp" = ( @@ -1205,12 +1199,7 @@ name = "Medbay Maintenance"; req_access_txt = "5" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/break_room) "hu" = ( @@ -1272,8 +1261,10 @@ /area/medical/virology) "hI" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 4; + hide = 1; + target_pressure = 4500 }, /turf/open/floor/plating, /area/maintenance/aft) @@ -1320,16 +1311,10 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clipboard, -/obj/item/pen, /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/machinery/computer/department_orders/medical, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "ip" = ( @@ -1352,7 +1337,6 @@ /turf/open/floor/plasteel/white, /area/medical/medbay) "it" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -1368,6 +1352,8 @@ dir = 1; network = list("ss13","medbay") }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/vending/drugs, /turf/open/floor/plasteel/dark, /area/medical/storage) "iw" = ( @@ -1378,7 +1364,7 @@ /obj/machinery/power/apc{ areastring = "/area/medical/chemistry"; name = "Chemistry APC"; - pixel_y = -24 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plasteel/white, @@ -1459,11 +1445,11 @@ /area/medical/pharmacy) "ji" = ( /obj/effect/turf_decal/bot, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, /obj/structure/plasticflaps/opaque, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters2"; + name = "Chemistry Shutter" + }, /turf/open/floor/plasteel/dark, /area/medical/medbay) "jz" = ( @@ -1493,7 +1479,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/medical/medbay/aft) "jJ" = ( /turf/open/floor/plasteel/monofloor/dark, @@ -1505,7 +1491,6 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "jX" = ( @@ -1555,7 +1540,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 }, /turf/open/floor/plating, @@ -1611,7 +1596,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 8 }, /turf/open/floor/plating, @@ -1679,17 +1664,17 @@ dir = 1; pixel_y = -24 }, -/obj/machinery/camera{ - c_tag = "Stasis Center"; - dir = 1; - network = list("ss13","medbay") - }, /obj/machinery/computer/operating{ dir = 1 }, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel/white, /area/medical/medbay/central) +"lC" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) "lJ" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -1705,7 +1690,7 @@ name = "Medbay Lobby APC"; pixel_x = 25 }, -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/paper_bin{ pixel_y = 6 }, @@ -1740,12 +1725,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "lV" = ( @@ -1786,7 +1766,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/rnd/production/techfab/department/medical, +/obj/machinery/mecha_part_fabricator/med, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -1840,15 +1820,10 @@ /obj/machinery/door/airlock/maintenance{ dir = 4; name = "Chemistry Maintenance"; - req_access_txt = "33" + req_access_txt = "5" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/aft) "mT" = ( @@ -1929,6 +1904,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "nC" = ( @@ -1948,6 +1924,13 @@ }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) +"nG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/chemfactory, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) "nI" = ( /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -1966,12 +1949,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "nT" = ( @@ -2049,17 +2027,20 @@ pixel_x = 25 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "oo" = ( /obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen, /turf/open/floor/plating, /area/medical/pharmacy) +"op" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) "oG" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/vending/drugs, +/obj/machinery/modular_computer/console/preset/cargochat/medical, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "oN" = ( @@ -2167,10 +2148,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/psychology) "pX" = ( @@ -2178,14 +2156,21 @@ /obj/item/radio/intercom{ pixel_x = -25 }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 8 }, -/obj/item/storage/box/syringes, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 8; + pixel_y = 3 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "pZ" = ( @@ -2232,12 +2217,6 @@ dir = 8 }, /obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, @@ -2248,6 +2227,14 @@ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -8; + pixel_y = -6 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "qe" = ( @@ -2267,12 +2254,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay) "qg" = ( @@ -2286,7 +2268,7 @@ /obj/machinery/power/apc{ areastring = "/area/medical/medbay"; name = "Medbay APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -2324,16 +2306,13 @@ /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "33" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Ward"; + req_access_txt = "5" }, /turf/open/floor/plasteel, /area/medical/chemistry) @@ -2354,10 +2333,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/storage) "qx" = ( @@ -2383,7 +2359,7 @@ }, /obj/structure/cable, /turf/open/floor/plasteel/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "qE" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -2398,6 +2374,13 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clipboard, +/obj/item/pen, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "qI" = ( @@ -2406,7 +2389,7 @@ }, /obj/machinery/recharge_station, /turf/open/floor/circuit, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "qK" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -2449,7 +2432,7 @@ areastring = "/area/security/checkpoint/medical"; dir = 1; name = "Medbay Security APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel, @@ -2465,6 +2448,9 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "rf" = ( @@ -2518,6 +2504,7 @@ /obj/machinery/newscaster{ pixel_x = 30 }, +/obj/item/kirbyplants/random, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "ru" = ( @@ -2683,10 +2670,12 @@ /area/medical/medbay) "sN" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/holopad, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/computer/department_orders/medical{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "sU" = ( @@ -2857,7 +2846,7 @@ name = "mech bay" }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "tO" = ( /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -2872,11 +2861,12 @@ dir = 4 }, /obj/structure/table/glass, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ dir = 1 }, +/obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/plasteel/white, /area/medical/break_room) "tS" = ( @@ -2971,6 +2961,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "vo" = ( @@ -3152,6 +3143,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/tacmap/directional/south, /turf/open/floor/plasteel/white, /area/medical/medbay) "xd" = ( @@ -3170,6 +3162,9 @@ /area/medical/pharmacy) "xm" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, /turf/closed/wall/r_wall, /area/medical/virology) "xo" = ( @@ -3309,7 +3304,7 @@ "yv" = ( /obj/structure/cable, /turf/open/floor/circuit, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "yx" = ( /obj/effect/turf_decal/tile/yellow{ dir = 4 @@ -3341,7 +3336,7 @@ areastring = "/area/medical/pharmacy"; dir = 1; name = "Pharmacy APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/white, @@ -3350,10 +3345,10 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 }, -/obj/item/kirbyplants/random, /obj/machinery/light{ dir = 4 }, +/obj/machinery/vending/wardrobe/medi_wardrobe, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "yC" = ( @@ -3373,12 +3368,6 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, /obj/structure/window/reinforced, /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -3391,6 +3380,18 @@ dir = 8; network = list("ss13","medbay") }, +/obj/item/reagent_containers/dropper{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, /turf/open/floor/plasteel/white, /area/medical/chemistry) "yF" = ( @@ -3410,12 +3411,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/aft) "yJ" = ( @@ -3598,6 +3594,9 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) +"zM" = ( +/turf/closed/wall, +/area/medical/medbay/zone2) "zN" = ( /obj/effect/turf_decal/trimline/blue/corner{ dir = 8 @@ -3625,6 +3624,9 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, +/obj/machinery/light{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "zX" = ( @@ -3649,10 +3651,7 @@ }, /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/virology) "Ac" = ( @@ -3759,7 +3758,7 @@ areastring = "/area/command/heads_quarters/cmo"; dir = 1; name = "CMO Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -3779,20 +3778,27 @@ req_access_txt = "5" }, /obj/item/storage/firstaid/o2{ - pixel_x = 3; + pixel_x = -7; pixel_y = 3 }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ +/obj/item/storage/firstaid/o2{ pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; pixel_y = -3 }, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ - dir = 8 + dir = 4 }, /obj/effect/turf_decal/tile/blue{ - dir = 4 + dir = 8 }, /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -3841,7 +3847,7 @@ name = "mech bay" }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "BZ" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ @@ -3877,6 +3883,10 @@ /area/medical/virology) "Cj" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters2"; + name = "Chemistry Shutter" + }, /turf/open/floor/plating, /area/medical/medbay) "Co" = ( @@ -3938,10 +3948,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "CH" = ( @@ -4004,7 +4011,7 @@ /obj/machinery/power/apc{ areastring = "/area/medical/cryo"; name = "Cryo APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/machinery/limbgrower, /turf/open/floor/plasteel/white, @@ -4027,6 +4034,14 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/white, /area/medical/medbay) +"Db" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/medical/virology) "Dc" = ( /obj/effect/turf_decal/trimline/blue/filled/warning{ dir = 8 @@ -4077,6 +4092,7 @@ pixel_y = 10 }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plasteel/white, /area/medical/cryo) "Do" = ( @@ -4170,13 +4186,9 @@ }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/medical/virology) "DG" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/turf_decal/tile/green{ dir = 1 }, @@ -4210,11 +4222,11 @@ /turf/open/floor/plasteel/white, /area/medical/medbay) "DK" = ( -/obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 }, /turf/open/floor/plating, @@ -4235,10 +4247,7 @@ }, /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/virology) "Ea" = ( @@ -4353,7 +4362,7 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "EB" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 @@ -4366,7 +4375,7 @@ dir = 8 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "ED" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -4458,6 +4467,7 @@ /obj/structure/cable, /obj/machinery/computer/operating, /obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "Fn" = ( @@ -4575,14 +4585,11 @@ name = "Medbay Maintenance"; req_access_txt = "5" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/cryo) "Gn" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/command/heads_quarters/cmo) "Go" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -4626,15 +4633,15 @@ dir = 4 }, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/mob/living/simple_animal/bot/cleanbot/medbay, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "GN" = ( /obj/effect/turf_decal/trimline/green/filled/corner, /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 8 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "GP" = ( @@ -4651,6 +4658,9 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) +"GQ" = ( +/turf/closed/wall/r_wall, +/area/medical/break_room) "GR" = ( /obj/machinery/smartfridge/chemistry, /turf/closed/wall, @@ -4663,10 +4673,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/aft) "Ha" = ( @@ -4696,6 +4703,9 @@ /obj/machinery/pdapainter/medbay, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) +"Hg" = ( +/turf/closed/wall/r_wall, +/area/medical/pharmacy) "Hm" = ( /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -4716,7 +4726,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/storage/firstaid/regular, /obj/item/storage/firstaid/regular{ pixel_x = -3; @@ -4793,7 +4803,7 @@ }, /obj/structure/cable, /turf/open/floor/plating, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "If" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -4882,10 +4892,14 @@ dir = 4 }, /obj/structure/table, -/obj/item/storage/toolbox/mechanical, /obj/item/crowbar/large, +/obj/machinery/camera/autoname, +/obj/item/stack/cable_coil{ + pixel_y = 7 + }, +/obj/item/multitool, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "IM" = ( /obj/structure/disposalpipe/segment, /obj/effect/turf_decal/trimline/blue/filled/corner{ @@ -4917,10 +4931,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/pharmacy) "IW" = ( @@ -4979,10 +4990,7 @@ }, /obj/structure/disposalpipe/segment, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/storage) "JB" = ( @@ -5072,12 +5080,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay) "Kt" = ( @@ -5102,7 +5105,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "KD" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -5122,12 +5125,19 @@ /obj/structure/table/glass, /obj/structure/window/reinforced, /obj/item/storage/firstaid/fire{ - pixel_x = 3; + pixel_x = 7; pixel_y = 3 }, -/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -1; + pixel_y = -1 + }, /obj/item/storage/firstaid/regular{ - pixel_x = -3; + pixel_x = -5; pixel_y = -3 }, /obj/effect/turf_decal/tile/blue, @@ -5152,12 +5162,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay) "KV" = ( @@ -5199,10 +5204,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/aft) "Ll" = ( @@ -5334,7 +5336,7 @@ }, /obj/machinery/recharge_station, /turf/open/floor/circuit, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "Mt" = ( /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ @@ -5384,10 +5386,7 @@ dir = 1 }, /obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "MQ" = ( @@ -5452,7 +5451,7 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "ND" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -5475,8 +5474,10 @@ dir = 1; pixel_y = -23 }, -/obj/structure/table, -/obj/machinery/cell_charger, +/obj/structure/table/greyscale, +/obj/structure/desk_bell{ + pixel_y = 5 + }, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "NJ" = ( @@ -5519,18 +5520,6 @@ pixel_y = 2 }, /obj/item/storage/box/syringes, -/obj/item/reagent_containers/glass/bottle/epinephrine{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/reagent_containers/glass/bottle/morphine{ - pixel_x = 8; - pixel_y = -3 - }, -/obj/item/reagent_containers/syringe{ - pixel_x = 6; - pixel_y = -3 - }, /obj/item/radio/intercom{ frequency = 1485; name = "Station Intercom (Medbay)"; @@ -5542,6 +5531,22 @@ /obj/machinery/light{ dir = 4 }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 6; + pixel_y = -3 + }, /turf/open/floor/plasteel/dark, /area/medical/storage) "Oj" = ( @@ -5587,12 +5592,6 @@ dir = 4 }, /obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, @@ -5600,7 +5599,14 @@ dir = 8 }, /obj/structure/window/reinforced, -/obj/item/hand_labeler, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "OI" = ( @@ -5626,7 +5632,7 @@ dir = 8 }, /obj/effect/turf_decal/tile/brown, -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /obj/effect/turf_decal/tile/brown{ dir = 4 }, @@ -5674,12 +5680,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay) "Pr" = ( @@ -5692,12 +5693,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "Ps" = ( @@ -5717,12 +5713,12 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/virology) +"Pu" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/zone2) "Pv" = ( /obj/structure/disposalpipe/segment{ dir = 6 @@ -5769,6 +5765,10 @@ "PM" = ( /obj/structure/table/glass, /obj/item/folder/white, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 11 + }, /obj/item/stamp/cmo, /obj/item/clothing/neck/stethoscope, /obj/effect/turf_decal/tile/blue, @@ -5781,6 +5781,10 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/item/pen{ + pixel_x = -8; + pixel_y = 9 + }, /turf/open/floor/plasteel/monofloor/dark, /area/command/heads_quarters/cmo) "PP" = ( @@ -5832,7 +5836,7 @@ /area/medical/virology) "Qi" = ( /turf/open/floor/mech_bay_recharge_floor, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "Ql" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -5867,7 +5871,7 @@ areastring = "/area/medical/medbay/aft"; dir = 1; name = "Medbay Aft APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, @@ -6010,10 +6014,10 @@ dir = 4 }, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "RC" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/medical/psychology) "RD" = ( /obj/structure/disposalpipe/segment{ @@ -6039,6 +6043,7 @@ }, /obj/machinery/computer/operating, /obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "RK" = ( @@ -6116,8 +6121,9 @@ name = "Chemistry Shutter Control"; pixel_x = -24; pixel_y = -6; - req_one_access_txt = "69" + req_one_access_txt = "5" }, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plasteel/white, /area/medical/chemistry) "Sk" = ( @@ -6125,7 +6131,7 @@ dir = 4 }, /turf/open/floor/circuit, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "Sm" = ( /obj/effect/turf_decal/tile/yellow{ dir = 8 @@ -6176,6 +6182,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, /turf/open/floor/plating, /area/maintenance/aft) "Sz" = ( @@ -6234,10 +6243,7 @@ /obj/machinery/door/airlock{ name = "Private Restroom" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/freezer, /area/medical/break_room) "SO" = ( @@ -6251,14 +6257,10 @@ /turf/open/floor/plasteel/white, /area/medical/chemistry) "SP" = ( -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/chem_seller, +/obj/structure/closet/secure_closet/medical2, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "SR" = ( @@ -6372,10 +6374,7 @@ /obj/effect/mapping_helpers/airlock/unres, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/medbay/lobby) "TH" = ( @@ -6427,12 +6426,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/virology) "Ue" = ( @@ -6504,6 +6498,9 @@ /obj/effect/turf_decal/box, /turf/open/floor/plasteel, /area/medical/medbay/central) +"UF" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/medical) "UI" = ( /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 4 @@ -6569,12 +6566,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/break_room) "Vi" = ( @@ -6616,11 +6608,6 @@ /area/medical/medbay/central) "Vl" = ( /obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -6634,6 +6621,7 @@ /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/machinery/fax, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "Vu" = ( @@ -6676,6 +6664,7 @@ c_tag = "Chemistry Lab North"; network = list("ss13","medbay") }, +/obj/vehicle/ridden/forklift/medical, /turf/open/floor/plasteel/white, /area/medical/chemistry) "VL" = ( @@ -6688,12 +6677,7 @@ /obj/structure/sign/departments/chemistry{ pixel_y = -32 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay) "VQ" = ( @@ -6713,23 +6697,17 @@ req_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/medbay/lobby) "VR" = ( -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /obj/machinery/door/airlock/hatch{ name = "Morgue"; req_access = null; req_access_txt = "6" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/morgue) "VU" = ( @@ -6745,7 +6723,7 @@ areastring = "/area/medical/morgue"; dir = 1; name = "Morgue APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -6773,8 +6751,11 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "Wq" = ( /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 1 @@ -6829,14 +6810,11 @@ }, /obj/structure/cable, /turf/open/floor/plasteel, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "WD" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -6869,8 +6847,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/cell_charger, +/obj/structure/table, /turf/open/floor/plasteel/monofloor/dark, -/area/medical/medbay/aft) +/area/medical/medbay/zone2) "WW" = ( /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ @@ -6890,7 +6870,7 @@ areastring = "/area/medical/medbay/central"; dir = 1; name = "Stasis Room APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /obj/item/reagent_containers/glass/bottle/epinephrine, @@ -6961,7 +6941,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Virology APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/machinery/camera{ c_tag = "Virology Module"; @@ -6971,6 +6951,9 @@ dir = 1 }, /obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "XI" = ( @@ -6984,6 +6967,7 @@ "XO" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, /obj/structure/cable, +/obj/machinery/light_switch/directional/north, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "XQ" = ( @@ -7016,7 +7000,6 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 10 }, -/obj/structure/closet/secure_closet/medical2, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "Yd" = ( @@ -7052,12 +7035,19 @@ req_access_txt = "5" }, /obj/item/storage/firstaid/brute{ - pixel_x = 3; + pixel_x = 7; pixel_y = 3 }, -/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -1; + pixel_y = -1 + }, /obj/item/storage/firstaid/regular{ - pixel_x = -3; + pixel_x = -5; pixel_y = -3 }, /obj/effect/turf_decal/tile/blue, @@ -7159,11 +7149,8 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, +/obj/item/storage/ashtray/glass, /obj/item/reagent_containers/spray/cleaner, -/obj/item/ashtray{ - pixel_x = -9; - pixel_y = 3 - }, /turf/open/floor/plasteel/white, /area/medical/break_room) "Zc" = ( @@ -7225,14 +7212,14 @@ /area/medical/morgue) (1,1,1) = {" -nM -nM -nM -nM -nM -nM -nM -nM +Hg +Hg +Hg +Hg +Hg +Hg +Hg +Hg Cj ji BJ @@ -7267,7 +7254,7 @@ Bu Bu "} (2,1,1) = {" -nM +Hg jd bA Ql @@ -7309,7 +7296,7 @@ Bu Bu "} (3,1,1) = {" -nM +Hg yA ND lm @@ -7321,7 +7308,7 @@ cf CS qu au -Xf +nG Xf Xf gu @@ -7351,7 +7338,7 @@ Bu Bu "} (4,1,1) = {" -nM +Hg Ke bT HV @@ -7393,7 +7380,7 @@ Bu Bu "} (5,1,1) = {" -nM +Hg yx IC fp @@ -7435,7 +7422,7 @@ Bu Bu "} (6,1,1) = {" -nM +Hg pZ vr OC @@ -7477,7 +7464,7 @@ Bu Bu "} (7,1,1) = {" -nM +Hg PR uD GR @@ -7813,7 +7800,7 @@ Bu Bu "} (15,1,1) = {" -Eq +UF Eq wI wI @@ -7835,7 +7822,7 @@ YI fR NP rL -Vi +fi Bu Bu Bu @@ -7855,7 +7842,7 @@ Bu Bu "} (16,1,1) = {" -Eq +UF yO wa QB @@ -7870,7 +7857,7 @@ cp jc ED hJ -Fb +dJ Gw Lb cb @@ -7897,7 +7884,7 @@ Bu Bu "} (17,1,1) = {" -Eq +UF YK zf Cz @@ -7919,11 +7906,11 @@ jz rQ vL CQ -Fp +AW RC -Fp -Fp -Fp +AW +AW +AW Bu Bu Bu @@ -7939,7 +7926,7 @@ Bu Bu "} (18,1,1) = {" -Eq +UF qY ga HH @@ -7981,7 +7968,7 @@ Bu Bu "} (19,1,1) = {" -Eq +UF Eq Eq Eq @@ -8191,18 +8178,18 @@ Bu Bu "} (24,1,1) = {" -RV +op RV RV RV RV RV cH -tS -tS -tS -tS -tS +zM +zM +zM +zM +zM yF dX kl @@ -8233,18 +8220,18 @@ Bu Bu "} (25,1,1) = {" -RV +op dj jJ fe YH -YH +lC Zf -tS +zM HY Qi qC -tS +zM ts ru Rf @@ -8275,14 +8262,14 @@ qS qS "} (26,1,1) = {" -RV +op hA HT Gy Uj uu pK -tS +zM WN RB NB @@ -8308,23 +8295,23 @@ wF eO lo qs -hD -hD -hD +Db +Db +Db xm Sy ko qS "} (27,1,1) = {" -RV -RV +op +op XI ZE zS jJ kB -tS +zM qI yv bX @@ -8360,13 +8347,13 @@ gf "} (28,1,1) = {" Bu -RV +op VV vg vg vg HK -tS +zM II GI Kw @@ -8408,7 +8395,7 @@ YH YH YH Em -tS +zM Ml yv Sk @@ -8444,13 +8431,13 @@ qS "} (30,1,1) = {" Bu -RV +op XO Sc hb Xw FE -tS +zM Wo Ez EB @@ -8486,17 +8473,17 @@ Bu "} (31,1,1) = {" Bu -RV -RV -RV -RV -RV +op +op +op +op +op bY -tS +Pu HY Qi WC -tS +zM hP YJ kl @@ -8504,7 +8491,7 @@ va va va va -kl +va rm Zb bL @@ -8534,26 +8521,26 @@ Bu Bu Bu Bu -tS -tS -tS -tS -tS +Pu +Pu +Pu +Pu +Pu lO jH -qS +eY Bu Bu Bu Bu -qS -Su -Su -Su +eY +GQ +GQ +GQ ho -Su -Su -Su +GQ +GQ +GQ Qf Qf Qf diff --git a/_maps/RandomRuins/StationRuins/medbay_old.dmm b/_maps/r_ruins/station/med/medbay_old.dmm similarity index 88% rename from _maps/RandomRuins/StationRuins/medbay_old.dmm rename to _maps/r_ruins/station/med/medbay_old.dmm index e8bbc4084312..0de22e7710cd 100644 --- a/_maps/RandomRuins/StationRuins/medbay_old.dmm +++ b/_maps/r_ruins/station/med/medbay_old.dmm @@ -16,9 +16,12 @@ /turf/open/floor/plasteel/monofloor, /area/security/checkpoint/medical) "ak" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall, -/area/medical/cryo) +/obj/machinery/computer/operating, +/obj/machinery/defibrillator_mount{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/medical/medbay) "am" = ( /obj/machinery/door_buttons/airlock_controller{ pixel_x = -5; @@ -33,10 +36,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "ao" = ( -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) @@ -131,7 +135,7 @@ /obj/machinery/power/apc/highcap/five_k{ dir = 1; name = "Virology APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/machinery/camera{ c_tag = "Virology Module"; @@ -141,6 +145,9 @@ dir = 1 }, /obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "bm" = ( @@ -155,12 +162,7 @@ req_access_txt = "70" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/psychology) "bp" = ( @@ -175,6 +177,9 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/open/floor/plasteel, /area/medical/virology) "bx" = ( @@ -202,12 +207,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/chemistry) "bF" = ( @@ -225,11 +225,22 @@ /turf/open/floor/plasteel, /area/medical/virology) "bG" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ dir = 8 }, -/turf/open/floor/plasteel/monofloor/white, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "bL" = ( /obj/structure/cable, @@ -271,17 +282,11 @@ pixel_x = 3; pixel_y = -3 }, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "bO" = ( /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 4 - }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "bR" = ( @@ -306,15 +311,25 @@ }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) +"cf" = ( +/obj/structure/disposalpipe/segment, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/aft) "cj" = ( /obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "cl" = ( /turf/closed/wall, /area/medical/cryo) "cm" = ( -/obj/structure/chair, +/obj/structure/chair/sofa/bench/right, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) "cz" = ( @@ -335,19 +350,19 @@ areastring = "/area/medical/pharmacy"; dir = 1; name = "Pharmacy APC"; - pixel_y = 23 + pixel_y = 25 }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) +"cH" = ( +/turf/open/floor/carpet/purple, +/area/medical/break_room) "cI" = ( /obj/machinery/door/airlock/medical{ name = "Medbay Reception"; req_access_txt = "5" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "cL" = ( @@ -373,12 +388,7 @@ req_access_txt = "45" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/maintenance/aft) "cY" = ( @@ -395,6 +405,9 @@ /obj/machinery/computer/med_data{ dir = 4 }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, /turf/open/floor/plasteel/white, /area/medical/medbay) "dh" = ( @@ -411,8 +424,34 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor/white, /area/medical/surgery) +"ds" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) "dy" = ( -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/medical/medbay/lobby) "dA" = ( /obj/structure/table, @@ -456,9 +495,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/machinery/bounty_board{ - pixel_y = 32 - }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "dW" = ( @@ -524,6 +560,7 @@ "fb" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "fh" = ( @@ -611,12 +648,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "gf" = ( @@ -650,6 +682,9 @@ "gt" = ( /turf/template_noop, /area/template_noop) +"gx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) "gz" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/monofloor/white, @@ -707,12 +742,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/surgery) "ht" = ( @@ -749,6 +779,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "hH" = ( @@ -763,7 +794,7 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/chemistry) "hJ" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/hemostat, /turf/open/floor/plasteel/white/side, /area/medical/surgery) @@ -781,10 +812,7 @@ /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/storage) "ii" = ( @@ -810,8 +838,15 @@ /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "iz" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/monofloor/white, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "iA" = ( /obj/structure/disposalpipe/segment{ @@ -894,6 +929,13 @@ dir = 8 }, /obj/structure/disposalpipe/segment, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "CMO Shutter Control"; + pixel_x = 25; + pixel_y = 22; + req_access_txt = "40" + }, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "jt" = ( @@ -982,7 +1024,6 @@ }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel, /area/medical/virology) "jT" = ( @@ -1015,6 +1056,10 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) +"kl" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) "kn" = ( /obj/structure/bed/roller, /obj/effect/turf_decal/tile/blue, @@ -1041,6 +1086,9 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/surgery) "kA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "kD" = ( @@ -1085,6 +1133,9 @@ dir = 8 }, /mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/virology) "kX" = ( @@ -1094,18 +1145,16 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) +"lb" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/medical/virology) "lk" = ( -/obj/structure/table, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 - }, -/obj/item/storage/belt/medical{ - pixel_y = 2 +/obj/machinery/computer/crew{ + dir = 4 }, -/obj/item/clothing/neck/stethoscope, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "ll" = ( @@ -1150,6 +1199,10 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/structure/desk_bell{ + pixel_x = -6; + pixel_y = 8 + }, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "lQ" = ( @@ -1172,10 +1225,8 @@ /area/medical/medbay) "mc" = ( /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/white, /area/medical/medbay) "ml" = ( @@ -1220,16 +1271,9 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/psychology) "mN" = ( -/obj/effect/turf_decal/delivery, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/medical/cryo) +/area/medical/medbay) "mS" = ( /obj/structure/chair/stool, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, @@ -1239,6 +1283,10 @@ /obj/structure/sign/departments/medbay/alt, /turf/closed/wall, /area/medical/medbay/lobby) +"nd" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "nn" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/dark, @@ -1288,20 +1336,22 @@ /area/medical/medbay/lobby) "nK" = ( /obj/structure/table, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, /obj/machinery/door/window/northright{ name = "First-Aid Supplies"; red_alert_access = 1; req_access_txt = "5" }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = -3 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "nM" = ( @@ -1327,9 +1377,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "nY" = ( -/obj/machinery/vending/medical{ - pixel_x = -2 - }, +/obj/machinery/modular_computer/console/preset/cargochat/medical, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "oa" = ( @@ -1340,6 +1388,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "oe" = ( @@ -1357,6 +1406,9 @@ dir = 4; pixel_x = -24 }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -38 + }, /turf/open/floor/plasteel/white, /area/medical/medbay) "oy" = ( @@ -1368,6 +1420,10 @@ }, /obj/structure/plasticflaps/opaque, /obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters2"; + name = "Chemistry Shutter" + }, /turf/open/floor/plasteel, /area/medical/medbay) "oD" = ( @@ -1387,11 +1443,11 @@ /turf/open/floor/plating, /area/medical/virology) "oH" = ( -/obj/effect/spawner/structure/window, /obj/machinery/door/poddoor/preopen{ id = "surgeryb"; name = "privacy shutters" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/medbay/aft) "oT" = ( @@ -1472,6 +1528,9 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/cryo) "pp" = ( @@ -1494,12 +1553,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "ps" = ( @@ -1517,8 +1571,12 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination/chemfactory, /turf/open/floor/plasteel/white, /area/medical/chemistry) +"pA" = ( +/turf/closed/wall/r_wall, +/area/medical/surgery) "pB" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, @@ -1541,9 +1599,25 @@ /turf/open/floor/plasteel/white, /area/medical/medbay) "qm" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/monofloor/white, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "pharmacy_shutters2"; + name = "Pharmacy Shutter Control"; + pixel_x = 24; + pixel_y = -6; + req_one_access_txt = "69" + }, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "qv" = ( /obj/structure/chair/office/light{ @@ -1572,7 +1646,7 @@ areastring = "/area/command/heads_quarters/cmo"; dir = 1; name = "CM Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ @@ -1581,17 +1655,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/medical/break_room) +"rb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/medical/virology) "re" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/chemistry) "rh" = ( -/obj/item/circular_saw, -/obj/item/scalpel{ - pixel_y = 12 - }, /obj/structure/table/glass, /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -1599,7 +1675,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 8 }, -/obj/item/surgical_drapes, +/obj/item/storage/backpack/duffelbag/med/surgery, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "ri" = ( @@ -1655,7 +1731,8 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "rw" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/cryo) "rz" = ( @@ -1667,6 +1744,9 @@ }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) +"rB" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) "rD" = ( /obj/structure/chair, /obj/machinery/airalarm{ @@ -1703,7 +1783,7 @@ /turf/open/floor/plasteel, /area/medical/cryo) "sf" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/storage/box/masks, /obj/item/storage/box/gloves{ pixel_x = 3; @@ -1794,9 +1874,17 @@ network = list("ss13","medbay") }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) +"tn" = ( +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/ashtray/glass, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "tp" = ( /obj/machinery/computer/crew, /obj/machinery/requests_console{ @@ -1832,6 +1920,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "tZ" = ( @@ -1855,13 +1944,14 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "uo" = ( /obj/machinery/power/apc{ areastring = "/area/medical/psychology"; name = "Psychology APC"; - pixel_y = -24 + pixel_y = -25 }, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -1914,9 +2004,20 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "uU" = ( -/obj/structure/table, /obj/item/hand_labeler, /obj/item/gun/syringe, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/gun/syringe, +/obj/structure/table/greyscale, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "uV" = ( @@ -1965,15 +2066,16 @@ /area/medical/medbay) "vo" = ( /obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "CMO Office" + }, /turf/open/floor/plating, /area/command/heads_quarters/cmo) "vt" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) "vy" = ( @@ -1990,17 +2092,10 @@ "vA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/bounty_board{ - dir = 8; - pixel_x = -32 - }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "vB" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) "vD" = ( @@ -2019,18 +2114,16 @@ /area/medical/medbay) "vI" = ( /obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/cryo) "vK" = ( /obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/cryo) "vP" = ( @@ -2044,7 +2137,7 @@ /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "vR" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/crowbar, /obj/item/clothing/neck/stethoscope, /obj/item/reagent_containers/spray/cleaner, @@ -2071,16 +2164,13 @@ /area/medical/medbay) "wb" = ( /obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/fax, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "wi" = ( @@ -2129,6 +2219,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 1 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel, /area/medical/virology) "wn" = ( @@ -2159,6 +2250,9 @@ dir = 4 }, /obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "wD" = ( @@ -2179,15 +2273,14 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "xj" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters"; + name = "Chemistry shutters" + }, +/turf/open/floor/plating, /area/medical/pharmacy) "xu" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - req_access_txt = "12" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 9 @@ -2195,17 +2288,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Medbay Maintenance"; + req_access_txt = "5" }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/effect/turf_decal/siding/wood{ + dir = 6 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/open/floor/wood, +/area/medical/break_room) "xx" = ( /obj/effect/turf_decal/trimline/green/filled/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "xz" = ( @@ -2279,8 +2376,8 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 6 +/obj/machinery/light_switch{ + pixel_x = -23 }, /turf/open/floor/plasteel/white, /area/medical/virology) @@ -2292,7 +2389,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 8 }, /turf/open/floor/plating, @@ -2331,6 +2428,7 @@ dir = 8 }, /obj/machinery/chem_dispenser, +/obj/machinery/light_switch/directional/west, /turf/open/floor/plasteel/white, /area/medical/chemistry) "yI" = ( @@ -2341,10 +2439,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "yK" = ( @@ -2369,11 +2464,15 @@ /area/medical/virology) "yM" = ( /obj/machinery/light, -/obj/machinery/rnd/production/techfab/department/medical, +/obj/machinery/mecha_part_fabricator/med, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) +"yN" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) "yR" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/scalpel{ pixel_y = 12 }, @@ -2390,6 +2489,9 @@ pixel_x = 7; pixel_y = 1 }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/cryo) "za" = ( @@ -2423,11 +2525,12 @@ }, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) -"zd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/aft) +"zf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "zk" = ( /obj/structure/table/reinforced, /obj/item/paper_bin{ @@ -2443,11 +2546,6 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "zw" = ( -/obj/machinery/door/airlock/maintenance{ - dir = 4; - name = "Medbay Maintenance"; - req_access_txt = "5" - }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 9 @@ -2455,16 +2553,19 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Break Room"; + req_access_txt = "5" }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/siding/wood{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/turf/open/floor/plasteel/monofloor/white, +/area/medical/break_room) "zy" = ( /obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "zB" = ( @@ -2485,6 +2586,8 @@ /obj/item/storage/toolbox/mechanical, /obj/item/clothing/head/welding, /obj/effect/turf_decal/tile/yellow, +/obj/item/multitool, +/obj/item/stack/cable_coil, /turf/open/floor/plasteel/white, /area/medical/chemistry) "zC" = ( @@ -2503,16 +2606,17 @@ }, /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/virology) "zJ" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) +"zN" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "zO" = ( /obj/structure/table/reinforced, /obj/item/reagent_containers/food/drinks/britcup{ @@ -2541,12 +2645,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/medical/virology) "zU" = ( @@ -2584,22 +2684,24 @@ /area/medical/chemistry) "Ab" = ( /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "Ak" = ( /obj/machinery/door/airlock{ name = "Starboard Emergency Storage" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/morgue) +"An" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "Ao" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -2632,6 +2734,9 @@ /obj/structure/disposalpipe/segment{ dir = 9 }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "Ax" = ( @@ -2639,7 +2744,7 @@ /turf/open/floor/plating, /area/medical/storage) "AJ" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/vending/drugs, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "AQ" = ( @@ -2659,13 +2764,13 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "AS" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/structure/chair/office/light{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "AY" = ( @@ -2704,8 +2809,10 @@ /area/medical/morgue) "BP" = ( /obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 4; + hide = 1; + target_pressure = 4500 }, /turf/open/floor/plating, /area/maintenance/aft) @@ -2717,30 +2824,26 @@ /obj/item/radio/headset/headset_med, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) -"BS" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/pharmacy) "BT" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "BZ" = ( -/obj/machinery/camera{ - c_tag = "Chemistry" +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 }, /obj/machinery/firealarm{ pixel_y = 24 }, -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/monofloor/white, +/obj/machinery/camera{ + c_tag = "Pharmacy"; + network = list("ss13","medbay") + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "Cd" = ( /obj/structure/table, @@ -2776,6 +2879,12 @@ dir = 8; pixel_x = -28 }, +/obj/item/reagent_containers/dropper{ + pixel_y = -15 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -15 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "Ci" = ( @@ -2847,8 +2956,20 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/chemistry) "CU" = ( -/turf/closed/wall, -/area/command/heads_quarters/cmo) +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 24 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/medical/break_room) "CY" = ( /obj/structure/cable, /obj/structure/disposalpipe/segment{ @@ -2898,6 +3019,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, +/obj/structure/chair/office/light{ + dir = 1 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "Dm" = ( @@ -2917,6 +3041,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/medical/virology) "Dq" = ( @@ -2927,12 +3052,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/cryo) "Du" = ( @@ -2966,16 +3086,49 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "DJ" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 + dir = 6 }, -/turf/open/floor/plasteel/monofloor/white, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "DX" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) +"Ea" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/medical/break_room) "Ec" = ( /obj/machinery/door/airlock/medical/glass{ name = "Ward"; @@ -2985,10 +3138,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/chemistry) "Ed" = ( @@ -2996,9 +3146,16 @@ department = "Medbay"; departmentType = 1; name = "Medbay RC"; - pixel_x = -30 + pixel_x = -30; + pixel_y = 3 + }, +/obj/machinery/button/door{ + id = "chemistry_shutters2"; + name = "Chemistry Shutter Control"; + pixel_x = -24; + pixel_y = -6; + req_one_access_txt = "5" }, -/obj/machinery/chem_seller, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "Ek" = ( @@ -3030,17 +3187,18 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "Eu" = ( -/obj/structure/table, /obj/machinery/light, +/obj/item/stack/sheet/plastic/fifty, /obj/item/book/manual/wiki/medicine, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/item/clothing/glasses/hud/health, /obj/item/reagent_containers/spray/cleaner, +/obj/structure/table/greyscale, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "Ex" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/retractor, /turf/open/floor/plasteel/white/side, /area/medical/surgery) @@ -3049,14 +3207,21 @@ /obj/item/radio/intercom{ pixel_x = -25 }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 8 }, -/obj/item/storage/box/syringes, /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 8; + pixel_y = 3 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "EX" = ( @@ -3091,7 +3256,7 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "Fh" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/structure/bedsheetbin{ pixel_x = 2 }, @@ -3138,10 +3303,6 @@ dir = 8 }, /obj/effect/turf_decal/tile/yellow, -/obj/machinery/bounty_board{ - dir = 1; - pixel_y = -32 - }, /turf/open/floor/plasteel/white, /area/medical/chemistry) "Fw" = ( @@ -3162,21 +3323,21 @@ /obj/effect/turf_decal/tile/yellow, /obj/item/plunger, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel/white, /area/medical/chemistry) "FA" = ( -/obj/machinery/portable_atmospherics/canister/air, /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ dir = 8 }, +/obj/machinery/portable_atmospherics/canister, /turf/open/floor/plating, /area/maintenance/aft) "FC" = ( -/obj/structure/closet/wardrobe/pjs, +/obj/structure/closet/l3closet, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "FD" = ( @@ -3218,6 +3379,9 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 5 }, +/obj/machinery/light{ + dir = 4 + }, /turf/open/floor/plasteel/white, /area/medical/virology) "Gj" = ( @@ -3233,6 +3397,15 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) +"Gk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/medical/break_room) +"Gl" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/medical) "Gp" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -3245,6 +3418,9 @@ /obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/medbay) +"GI" = ( +/turf/closed/wall/r_wall, +/area/medical/break_room) "GL" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -3267,10 +3443,12 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "GT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/yellow/end{ + dir = 8 }, -/turf/open/floor/plasteel/monofloor/white, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "GU" = ( /obj/effect/turf_decal/tile/green, @@ -3304,12 +3482,22 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) "Hm" = ( -/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, +/obj/machinery/chem_dispenser, +/obj/structure/window/reinforced{ + dir = 8 + }, /obj/effect/turf_decal/tile/yellow{ - dir = 4 + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 1 }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) @@ -3330,6 +3518,9 @@ /obj/effect/turf_decal/tile/green{ dir = 1 }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, /turf/open/floor/plasteel, /area/medical/virology) "HF" = ( @@ -3363,6 +3554,18 @@ /obj/effect/mapping_helpers/dead_body_placer, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) +"If" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/mirror/directional/north, +/turf/open/floor/wood, +/area/medical/break_room) "Ig" = ( /obj/effect/turf_decal/trimline/green/filled/corner{ dir = 4 @@ -3377,10 +3580,6 @@ dir = 4 }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 - }, /turf/open/floor/plasteel/white, /area/medical/virology) "Ij" = ( @@ -3391,6 +3590,23 @@ }, /turf/open/floor/plasteel/monofloor/white, /area/medical/surgery) +"Io" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/medical/break_room) +"Ip" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters2"; + name = "Pharmacy Shutter" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) "ID" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ @@ -3492,37 +3708,42 @@ areastring = "/area/medical/morgue"; dir = 1; name = "Morgue APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "Jd" = ( /obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/medical/virology) "Jh" = ( -/obj/structure/table, -/obj/item/cartridge/medical{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/cartridge/medical{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/cartridge/medical, -/obj/item/cartridge/chemistry{ - pixel_y = 2 - }, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/machinery/computer/department_orders/medical{ + dir = 1 + }, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) +"Ji" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters2"; + name = "Chemistry Shutter" + }, +/turf/open/floor/plating, +/area/medical/medbay) +"Jl" = ( +/obj/machinery/microwave, +/obj/structure/table, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "Js" = ( /obj/machinery/firealarm{ dir = 1; @@ -3535,7 +3756,7 @@ /turf/open/floor/plasteel/white, /area/medical/chemistry) "Jv" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/storage/firstaid/regular, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) @@ -3545,7 +3766,7 @@ /area/medical/pharmacy) "JA" = ( /obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/medical/pharmacy) "JI" = ( /obj/machinery/door/airlock/medical/glass{ @@ -3553,10 +3774,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/surgery) "JK" = ( @@ -3568,6 +3786,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "JT" = ( @@ -3575,6 +3794,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 5 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "JX" = ( @@ -3618,6 +3838,10 @@ }, /turf/open/floor/plasteel/white, /area/medical/chemistry) +"Km" = ( +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay) "Kq" = ( /obj/machinery/light{ dir = 4 @@ -3649,7 +3873,7 @@ /turf/open/floor/plasteel/white, /area/medical/virology) "KQ" = ( -/obj/machinery/vending/drugs, +/obj/machinery/vending/wardrobe/medi_wardrobe, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "KS" = ( @@ -3662,6 +3886,10 @@ /obj/item/reagent_containers/glass/beaker/cryoxadone, /turf/open/floor/plasteel, /area/medical/cryo) +"KW" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) "KX" = ( /obj/structure/sign/warning/biohazard, /turf/closed/wall/r_wall, @@ -3674,8 +3902,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 4 }, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/medical/break_room) "KZ" = ( /obj/effect/landmark/start/chemist, /turf/open/floor/plasteel/monofloor/white, @@ -3720,6 +3949,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/medical/virology) "LA" = ( @@ -3745,12 +3975,7 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "LU" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "LZ" = ( /obj/structure/disposalpipe/segment, @@ -3770,8 +3995,7 @@ /turf/open/floor/plasteel/white, /area/medical/surgery) "Me" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/chem_heater, +/obj/machinery/holopad, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "Mg" = ( @@ -3793,20 +4017,28 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "Mm" = ( -/obj/structure/table, -/obj/item/folder/white, -/obj/item/gun/syringe, -/obj/item/reagent_containers/dropper, -/obj/item/soap/nanotrasen, +/obj/structure/table/greyscale, +/obj/item/soap/nanotrasen{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/item/iv_drip_item{ + pixel_x = -5; + pixel_y = -8 + }, +/obj/item/iv_drip_item{ + pixel_x = 2; + pixel_y = -8 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "Mp" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "Mu" = ( @@ -3819,21 +4051,19 @@ }, /area/medical/surgery) "Mv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, /turf/open/floor/plasteel, -/area/medical/cryo) +/area/medical/medbay) "MH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/monofloor/white, /area/medical/virology) "MS" = ( /obj/structure/table/reinforced, /obj/item/wrench/medical, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -7; + pixel_y = 10 + }, /turf/open/floor/plasteel, /area/medical/cryo) "MT" = ( @@ -3861,6 +4091,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel, /area/medical/virology) "Ne" = ( @@ -3879,32 +4110,29 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/navbeacon/wayfinding, +/obj/effect/landmark/navigate_destination, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) "Nm" = ( /obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, /obj/item/storage/firstaid/o2{ pixel_x = 3; pixel_y = 3 }, /obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/regular{ +/obj/item/storage/firstaid/o2{ pixel_x = -3; pixel_y = -3 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "Nz" = ( @@ -3915,20 +4143,26 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/lobby) "ND" = ( -/obj/structure/closet/l3closet, +/obj/machinery/vending/medical{ + pixel_x = -2 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "NP" = ( /obj/structure/table/glass, /obj/item/folder/white, +/obj/item/paper_bin{ + pixel_x = -9; + pixel_y = 5 + }, /obj/item/stamp/cmo, -/obj/item/clothing/glasses/hud/health, /obj/effect/turf_decal/tile/blue{ dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/item/clothing/glasses/hud/health, /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "Oa" = ( @@ -3950,14 +4184,32 @@ /turf/open/floor/plasteel, /area/security/checkpoint/medical) "Og" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, /obj/structure/table/reinforced, -/obj/machinery/door/window/southleft{ +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + base_state = "left"; dir = 1; - name = "Chemistry Desk"; - req_access_txt = "5" + icon_state = "left"; + name = "Pharmacy Desk"; + req_access_txt = "69" }, -/obj/machinery/door/firedoor, -/turf/open/floor/plating, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters2"; + name = "Pharmacy Shutter" + }, +/turf/open/floor/plasteel, /area/medical/pharmacy) "Ok" = ( /obj/structure/table/reinforced, @@ -3968,7 +4220,7 @@ }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ - id = "chemistry_shutters"; + id = "pharmacy_shutters"; name = "Chemistry shutters" }, /turf/open/floor/plating, @@ -4036,19 +4288,12 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "OF" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "5" - }, /obj/machinery/door/firedoor, /obj/machinery/door/poddoor/preopen{ - id = "chemistry_shutters"; + id = "pharmacy_shutters"; name = "Chemistry shutters" }, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/pharmacy) "OQ" = ( @@ -4097,7 +4342,7 @@ dir = 8; network = list("ss13","medbay") }, -/obj/machinery/iv_drip, +/obj/structure/closet/wardrobe/pjs, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "Pi" = ( @@ -4119,25 +4364,29 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "Po" = ( -/obj/machinery/chem_master, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - name = "Chemistry shutters"; - pixel_x = 24; - pixel_y = -6; - req_one_access_txt = "5; 69" +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 }, /obj/effect/turf_decal/tile/yellow{ dir = 1 }, -/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_master, /obj/effect/turf_decal/tile/yellow{ - dir = 4 + dir = 8 + }, +/obj/machinery/button/door{ + id = "pharmacy_shutters"; + name = "Pharmacy Shutter Control"; + pixel_x = 6; + pixel_y = 24; + req_one_access_txt = "69" }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "Ps" = ( -/obj/effect/spawner/structure/window, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/medbay) "PB" = ( @@ -4150,6 +4399,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/aft) "PG" = ( @@ -4161,12 +4411,18 @@ }, /obj/effect/turf_decal/tile/yellow, /obj/structure/table/glass, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -8; + pixel_y = -6 + }, /obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -5; + pixel_y = -4 }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, /turf/open/floor/plasteel/white, /area/medical/chemistry) "PN" = ( @@ -4177,6 +4433,7 @@ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "PP" = ( @@ -4193,20 +4450,18 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay) "PV" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "chemistry_shutters"; - name = "Chemistry shutters"; - pixel_x = 24; - pixel_y = -28; - req_one_access_txt = "5; 69" - }, /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 8 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 5 + }, +/obj/structure/table, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "PW" = ( @@ -4267,7 +4522,7 @@ /area/security/checkpoint/medical) "Qr" = ( /obj/machinery/status_display/evac, -/turf/closed/wall, +/turf/closed/wall/r_wall, /area/medical/medbay/lobby) "QL" = ( /obj/structure/disposalpipe/segment{ @@ -4291,6 +4546,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 5 }, +/obj/structure/cable, /turf/open/floor/plating, /area/maintenance/department/medical/morgue) "QO" = ( @@ -4315,9 +4571,6 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 8 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 5 - }, /turf/open/floor/plasteel/white, /area/medical/virology) "QU" = ( @@ -4359,9 +4612,10 @@ /turf/open/floor/plasteel/cafeteria, /area/command/heads_quarters/cmo) "Rk" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/surgical_drapes, /obj/item/razor, +/obj/machinery/light_switch/directional/east, /turf/open/floor/plasteel/white/side{ dir = 8 }, @@ -4380,7 +4634,7 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "RD" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/surgicaldrill, /turf/open/floor/plasteel, /area/medical/surgery) @@ -4391,6 +4645,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/white, /area/medical/virology) "RJ" = ( @@ -4412,11 +4667,8 @@ name = "Morgue"; req_access_txt = "6" }, -/obj/machinery/navbeacon/wayfinding, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/morgue) "Sl" = ( @@ -4454,20 +4706,29 @@ /turf/open/floor/plasteel/white, /area/medical/medbay) "So" = ( -/obj/effect/spawner/lootdrop/maintenance/two, -/obj/structure/rack, -/turf/open/floor/plating, -/area/maintenance/aft) +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "Sr" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/grenades, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = -4; - pixel_y = 4 +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 }, -/obj/item/folder/white, -/obj/item/pen, -/turf/open/floor/plasteel/monofloor/white, +/obj/machinery/chem_dispenser, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) "Ss" = ( /obj/structure/disposalpipe/segment{ @@ -4488,17 +4749,32 @@ /obj/effect/turf_decal/tile/blue{ dir = 4 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) +"Sz" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"SK" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Medbay Treatment Center"; + dir = 10; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel, +/area/medical/medbay) "SL" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/clothing/gloves/color/latex, /obj/item/clothing/mask/surgical, /obj/item/clothing/suit/apron/surgical, +/obj/machinery/light_switch/directional/west, /turf/open/floor/plasteel/white/side{ dir = 4 }, @@ -4523,26 +4799,30 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/turf/open/floor/plasteel, -/area/medical/virology) -"ST" = ( -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/medical/virology) +"ST" = ( /obj/effect/turf_decal/tile/yellow, /obj/effect/turf_decal/tile/yellow{ dir = 4 }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "SY" = ( @@ -4563,10 +4843,7 @@ req_access_txt = "6;5" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/medical/morgue) "Tq" = ( @@ -4607,12 +4884,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "TJ" = ( @@ -4670,11 +4942,22 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, +/obj/tacmap/directional/west, /turf/open/floor/plasteel/white, /area/medical/virology) "Ub" = ( /turf/closed/wall, /area/medical/medbay/aft) +"Ue" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/cmo) "Ur" = ( /obj/machinery/camera{ c_tag = "Ward Starboard"; @@ -4685,6 +4968,9 @@ dir = 4 }, /obj/effect/turf_decal/tile/yellow, +/obj/vehicle/ridden/forklift/medical{ + dir = 8 + }, /turf/open/floor/plasteel/white, /area/medical/chemistry) "Ut" = ( @@ -4725,25 +5011,11 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/lobby) -"Va" = ( -/obj/machinery/camera{ - c_tag = "Medbay Treatment Center"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/stasis, -/obj/machinery/bounty_board{ - dir = 4; - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/medical/medbay) "Vd" = ( /obj/machinery/airalarm{ dir = 8; pixel_x = 24 }, -/obj/machinery/iv_drip, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -4761,6 +5033,10 @@ }, /turf/open/floor/plasteel/white, /area/medical/virology) +"Vf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "Vg" = ( /turf/closed/wall, /area/medical/virology) @@ -4781,6 +5057,11 @@ }, /turf/open/floor/plasteel/white, /area/medical/chemistry) +"Vu" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) "Vv" = ( /obj/machinery/disposal/bin, /obj/structure/disposalpipe/trunk, @@ -4800,7 +5081,8 @@ /turf/open/floor/plating, /area/medical/morgue) "VE" = ( -/obj/effect/spawner/structure/window, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, /turf/open/floor/plating, /area/medical/medbay/lobby) "VF" = ( @@ -4834,15 +5116,12 @@ req_access_txt = "63" }, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay) "VK" = ( -/obj/structure/disposalpipe/segment, /obj/machinery/smartfridge/chemistry, +/obj/structure/disposalpipe/segment, /turf/closed/wall, /area/medical/pharmacy) "VX" = ( @@ -4875,6 +5154,12 @@ /obj/item/storage/box/lights/mixed, /turf/open/floor/plating, /area/medical/morgue) +"Wg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/medical/break_room) "Wm" = ( /turf/closed/wall/r_wall, /area/medical/psychology) @@ -4900,12 +5185,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/morgue) "Wz" = ( @@ -4931,7 +5211,7 @@ /turf/open/floor/plating, /area/medical/surgery) "WP" = ( -/obj/structure/table, +/obj/structure/table/greyscale, /obj/item/book/manual/wiki/surgery, /obj/item/cautery{ pixel_x = 4 @@ -4958,12 +5238,10 @@ dir = 9 }, /obj/effect/turf_decal/tile/blue, +/obj/machinery/holopad, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) "WU" = ( -/obj/machinery/light/small{ - dir = 1 - }, /obj/effect/turf_decal/tile/green{ dir = 1 }, @@ -4980,6 +5258,9 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, /turf/open/floor/plasteel, /area/medical/cryo) "WX" = ( @@ -5021,6 +5302,9 @@ "Xh" = ( /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "Xs" = ( @@ -5039,10 +5323,7 @@ }, /obj/effect/turf_decal/tile/green, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel, /area/medical/virology) "Xy" = ( @@ -5053,10 +5334,8 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/surgery) "XI" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, /turf/open/floor/plasteel/white, /area/medical/medbay) "XK" = ( @@ -5066,17 +5345,23 @@ /obj/structure/disposalpipe/segment{ dir = 5 }, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "XN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/item/reagent_containers/blood/random, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, +/obj/structure/closet/crate/freezer/blood, +/obj/item/reagent_containers/blood/o_plus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, /turf/open/floor/plasteel, /area/medical/surgery) "XV" = ( @@ -5089,14 +5374,13 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/surgery) "Yd" = ( -/obj/structure/table, -/obj/item/pen, /obj/machinery/requests_console{ department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = 30 }, +/obj/machinery/computer/department_orders/medical, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "Yg" = ( @@ -5164,21 +5448,21 @@ /area/command/heads_quarters/cmo) "YC" = ( /obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, /obj/item/storage/firstaid/brute{ pixel_x = 3; pixel_y = 3 }, /obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ +/obj/item/storage/firstaid/brute{ pixel_x = -3; pixel_y = -3 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "YT" = ( @@ -5192,6 +5476,7 @@ }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/white, /area/medical/virology) "YX" = ( @@ -5214,26 +5499,48 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /turf/open/floor/plating, /area/maintenance/aft) "Zh" = ( /obj/structure/table, +/obj/machinery/door/window/northleft{ + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, /obj/item/storage/firstaid/toxin{ - pixel_x = 3; + pixel_x = -4; pixel_y = 3 }, -/obj/item/storage/firstaid/toxin, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; +/obj/item/storage/firstaid/toxin{ + pixel_x = -7 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -10; pixel_y = -3 }, -/obj/machinery/door/window/northleft{ - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" +/obj/item/storage/firstaid/regular{ + pixel_x = 19; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 13 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 10; + pixel_y = -3 }, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) +"Zz" = ( +/turf/closed/wall/r_wall, +/area/medical/pharmacy) "ZD" = ( /obj/machinery/door/airlock/medical{ name = "Surgery B"; @@ -5241,10 +5548,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "ZZ" = ( @@ -5258,29 +5562,29 @@ /area/medical/medbay/lobby) (1,1,1) = {" -Ci -Ci -Ci -Ci -Ci -Ci -Ci -Ci -Ci -Gt -Gt -CB +Zz +Zz +Zz +Zz +Zz +Zz +Zz +Zz +Zz +Ji +Ji +Sz oy -jf -jf -jf -jf -jf -jf +pA +pA +pA +pA +pA +pA cO -jf -jf -jf +pA +pA +pA gt gt gt @@ -5300,7 +5604,7 @@ gt gt "} (2,1,1) = {" -Ci +Zz BQ ar KC @@ -5322,7 +5626,7 @@ SL dm xz Cl -jf +pA gt gt gt @@ -5342,12 +5646,12 @@ gt gt "} (3,1,1) = {" -Ci +Zz cC cj cj Xh -xj +jx jx bL yI @@ -5362,9 +5666,9 @@ WI hJ Cn Wv -Cn +KW pg -jf +pA gt gt gt @@ -5384,14 +5688,14 @@ gt gt "} (4,1,1) = {" -Ci +Zz BZ kA GT Lo -Me -DJ Lo +DJ +ds VK gn nv @@ -5406,7 +5710,7 @@ Rf Ij eA Mc -jf +pA gt gt gt @@ -5426,11 +5730,11 @@ gt gt "} (5,1,1) = {" -Ci +Zz Hm -kA +Xf bG -kA +Me LU Xf iz @@ -5448,7 +5752,7 @@ Cn Sa Cn Mu -jf +pA gt gt gt @@ -5468,15 +5772,15 @@ gt gt "} (6,1,1) = {" -Ci +Zz Po AS ST PV -BS +LU Sr qm -Ci +Ip aW WB KQ @@ -5490,7 +5794,7 @@ Rk HT aI XN -jf +pA gt gt gt @@ -5510,13 +5814,13 @@ gt gt "} (7,1,1) = {" -Ci -Ci +Zz +xj Ok JA OF -Ci -Ci +Zz +Zz Ci Ci Fs @@ -5532,7 +5836,7 @@ jf hf jf jf -jf +pA gt gt gt @@ -5574,7 +5878,7 @@ Fh wi SY rE -UB +rJ gt gt gt @@ -5616,7 +5920,7 @@ qR fD WX GN -UB +rJ gt gt gt @@ -5637,7 +5941,7 @@ gt "} (10,1,1) = {" VE -cm +yN ZZ DD AR @@ -5658,7 +5962,7 @@ be Vd Pc FC -UB +rJ gt gt gt @@ -5679,7 +5983,7 @@ gt "} (11,1,1) = {" VE -cm +kl ZZ UI zk @@ -5693,7 +5997,7 @@ Ps yg wn jK -Va +yg UB Ax TH @@ -5731,11 +6035,11 @@ Qr oT vg wv -cl +CB ak Mv mN -cl +SK UB ND tD @@ -5846,12 +6150,12 @@ gt gt "} (15,1,1) = {" -vh +Gl Ib Ib Ib -vh -vh +Gl +Gl dy dy ao @@ -5888,7 +6192,7 @@ gt gt "} (16,1,1) = {" -vh +Gl Yv SN Cu @@ -5930,7 +6234,7 @@ gt gt "} (17,1,1) = {" -vh +Gl Ld ai ai @@ -5972,7 +6276,7 @@ gt gt "} (18,1,1) = {" -vh +Gl Qe Et Pi @@ -5982,7 +6286,7 @@ Gt WB oT vg -oT +Km cl cl Dq @@ -6014,7 +6318,7 @@ gt gt "} (19,1,1) = {" -vh +Gl vh vh vh @@ -6056,7 +6360,7 @@ gt gt "} (20,1,1) = {" -Bp +rB dA BE BE @@ -6098,7 +6402,7 @@ gt gt "} (21,1,1) = {" -Bp +rB yo yo yo @@ -6140,7 +6444,7 @@ gt gt "} (22,1,1) = {" -Bp +rB yo yo Ie @@ -6202,7 +6506,7 @@ Yd Dj iA pk -LZ +cf XK Ne bm @@ -6224,7 +6528,7 @@ gt gt "} (24,1,1) = {" -Bp +rB yo BE BE @@ -6266,7 +6570,7 @@ gt gt "} (25,1,1) = {" -Bp +rB Jc Pn Pn @@ -6288,7 +6592,7 @@ LT LT cz kd -zd +vA hd jL Ig @@ -6308,7 +6612,7 @@ HZ HZ "} (26,1,1) = {" -Bp +rB IL BT kD @@ -6324,7 +6628,7 @@ Mg zV xV iZ -CU +iZ vo vo vo @@ -6341,20 +6645,20 @@ KN tT uk JT -oF -oF -oF -qO +lb +lb +lb +rb Zb PB HZ "} (27,1,1) = {" -Bp -Bp -Bp -Bp -Bp +rB +rB +rB +rB +rB Ww Bc Fw @@ -6373,7 +6677,7 @@ vP Ri Jh iZ -KY +CU qO qO qO @@ -6415,9 +6719,9 @@ rW tZ pc iZ -KY -vD -vD +If +Vf +zN So qO oZ @@ -6425,7 +6729,7 @@ GU yL xP hF -oF +Vu Hv vy qO @@ -6451,16 +6755,16 @@ zV xV iZ bR -IM +Ue Dv Yy TJ Ha iZ qY -vD -vD -So +Wg +cH +An qO WU SR @@ -6499,17 +6803,17 @@ VH Ar Kq iZ -KY -vD -vD -vD +Ea +Gk +zf +Io qO rk kQ yL xP hF -oF +Vu bp IZ qO @@ -6542,9 +6846,9 @@ iZ iZ iZ KY -vD -vD -vD +Jl +tn +nd qO kb ei @@ -6582,11 +6886,11 @@ gt HZ vD vD -HZ +gx xu -HZ -HZ -HZ +GI +GI +GI qO qO qO diff --git a/_maps/r_ruins/station/med/medbay_panopticon.dmm b/_maps/r_ruins/station/med/medbay_panopticon.dmm new file mode 100644 index 000000000000..dc94f34428f3 --- /dev/null +++ b/_maps/r_ruins/station/med/medbay_panopticon.dmm @@ -0,0 +1,8470 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"ai" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"ak" = ( +/obj/machinery/medical_kiosk, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"al" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"am" = ( +/obj/machinery/door_buttons/airlock_controller{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"an" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ao" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"ap" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/medical/medbay) +"au" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"aI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/cryo) +"aM" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"bb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"be" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay) +"bg" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/item/radio/headset/headset_med, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"bh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"bk" = ( +/obj/machinery/power/apc/highcap/five_k{ + dir = 1; + name = "Virology APC"; + pixel_y = 25 + }, +/obj/machinery/camera{ + c_tag = "Virology Module"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bm" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/item/storage/ashtray/glass, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"bp" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"bx" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Ward"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"bG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"bL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/railing/left, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"bM" = ( +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/medical/morgue, +/obj/item/pen, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"bO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"bR" = ( +/turf/closed/wall/r_wall{ + light_color = "#FFFF00" + }, +/area/security/checkpoint/medical) +"bZ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cf" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"ck" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"cm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Medical Delivery"; + req_access_txt = "5" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"cz" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cH" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychology"; + req_access_txt = "70" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/psychology) +"cI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/medical/medbay) +"cL" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"cO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"cX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"df" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"dh" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"dl" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dm" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"ds" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"dA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "med_sb_def" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/medical) +"dC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dF" = ( +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"dM" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"dP" = ( +/obj/structure/sign/warning/securearea, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"dS" = ( +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/medical/medbay) +"ei" = ( +/obj/structure/bookcase/random/reference, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"ep" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"eA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"eB" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/stack/medical/mesh{ + pixel_x = -4; + pixel_y = -10 + }, +/obj/item/stack/medical/mesh{ + pixel_y = -13 + }, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/suture{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"eL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"eU" = ( +/obj/structure/table/glass, +/obj/item/stack/cable_coil{ + pixel_y = -4 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/stack/cable_coil{ + pixel_y = -4 + }, +/obj/item/assembly/igniter{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 4; + pixel_y = -15 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 4; + pixel_y = -15 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"eY" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"fa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"fb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"fh" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"fj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/medical) +"fk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + pixel_x = -3; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/heads_quarters/cmo) +"fo" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/storage) +"fw" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"fD" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/cryo) +"fG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"fO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"fQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"gd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command/heads_quarters/cmo) +"gm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/shrink_ccw{ + pixel_y = 22 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"gp" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"gt" = ( +/turf/template_noop, +/area/template_noop) +"gz" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"gE" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chief_medical_officer, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/heads_quarters/cmo) +"gF" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"gG" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"gI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"gJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gP" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"gQ" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"gR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay) +"gY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"hb" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/medical/medbay/lobby) +"hd" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"he" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/medical/storage) +"ht" = ( +/obj/machinery/disposal/bin, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"hC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"hF" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"hI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Защита кабинета"; + pixel_x = -7; + pixel_y = -25; + req_access_txt = "5" + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 4; + pixel_x = -35; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "MedbayFoyer"; + name = "Блокировка входа"; + normaldoorcontrol = 1; + pixel_x = -24; + pixel_y = -3; + req_access_txt = "5"; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "med_enter_def"; + name = "Защитные шторы"; + pixel_x = -24; + pixel_y = 8; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"hR" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"hS" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"hY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"ia" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"ic" = ( +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/medical/medbay) +"ie" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"ii" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"im" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"in" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"ip" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"ir" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"iz" = ( +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/small, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"iA" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"iL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"iT" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"iV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"iW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay) +"jp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"jt" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"jw" = ( +/obj/effect/turf_decal/siding/blue, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/landmark/start/psychologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"jz" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -32 + }, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"jD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"jH" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"jI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "33" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"jK" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/item/toy/figure/md{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"jL" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/virology) +"jW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/chemistry/pharmacy, +/obj/machinery/door/poddoor/preopen{ + id = "chem_window" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/pharmacy) +"jY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"kb" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"kd" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kl" = ( +/obj/machinery/modular_computer/console/preset/cargochat/medical, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"kn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"ko" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"kt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/railing/right, +/obj/structure/desk_bell{ + pixel_y = 5 + }, +/obj/structure/table/greyscale, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"kw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay) +"kz" = ( +/obj/structure/table/optable{ + desc = "A cold, hard place for your final rest."; + name = "Morgue Slab" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"kF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"kM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"kN" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"kO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"kQ" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"lb" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/medical/virology) +"ll" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"lm" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"lo" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"lz" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"lD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"lU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"lW" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"mg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay) +"ml" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay) +"mo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"mp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"mq" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -7; + pixel_y = -18 + }, +/obj/item/book/manual/wiki/medicine{ + pixel_y = 14 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"ms" = ( +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"mt" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/storage) +"mK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"mN" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"mP" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"mS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera{ + c_tag = "Virology Break Room"; + network = list("ss13","medbay") + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_x = 5; + pixel_y = 29 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/virology) +"mV" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/lobby) +"nd" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"ne" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"nh" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay) +"nn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/stool, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/virology) +"np" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"nv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname, +/obj/machinery/requests_console/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"nH" = ( +/obj/structure/table/glass, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/reagent_containers/pill/multiver{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/reagent_containers/pill/multiver{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/psicodine{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/reagent_containers/pill/psicodine{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/probital{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/reagent_containers/pill/probital{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/reagent_containers/pill/sens{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"nK" = ( +/obj/structure/table/greyscale, +/obj/machinery/door/window/northright{ + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 7 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"nT" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/storage) +"oa" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"oc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"oe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"oh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"on" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"oy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"oA" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oD" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"oF" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) +"oH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"oT" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"oV" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"oY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"oZ" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28 + }, +/obj/effect/landmark/start/psychologist, +/obj/machinery/button/door{ + id = "med_psih"; + name = "Приватность"; + pixel_x = -26; + pixel_y = -10; + req_one_access_txt = "5" + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"pa" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"pc" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pe" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pf" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"pg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Connector Port (Air Supply)" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"pk" = ( +/obj/structure/closet/wardrobe/pjs{ + anchored = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"pp" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"ps" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/vending/wallmed{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"pB" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"pE" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pQ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/medical) +"pS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"qq" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"qE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command/heads_quarters/cmo) +"qG" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"qO" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"qR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/cryo) +"qX" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/cryo) +"qY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/floor{ + dir = 1 + }, +/obj/machinery/fax, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"rb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/medical/virology) +"rh" = ( +/obj/machinery/light, +/obj/machinery/vending/drugs, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"ri" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"rj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/medical/virology) +"rk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"rn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"rp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"rt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 5 + }, +/obj/machinery/button/door{ + id = "med_post"; + name = "Почтовый шлюз"; + pixel_x = -8; + pixel_y = 28; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"rE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"rJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"rR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"rW" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/computer_disk/chemistry{ + pixel_x = 2; + pixel_y = -13 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/computer_disk/chemistry{ + pixel_x = -3; + pixel_y = -9 + }, +/obj/item/computer_disk/medical{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/computer_disk/medical{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"sf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel, +/area/medical/surgery) +"sl" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/machinery/light, +/obj/effect/turf_decal/siding/blue/corner, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"ss" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"sK" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"sL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/end, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "med_enter_def" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"sT" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/aft) +"sU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"ti" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"tl" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"tm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"tn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "med_psih" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/psychology) +"tp" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"tu" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"tz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"tQ" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"tT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"tZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"uk" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"um" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"uo" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"uz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"uI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"uK" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/medical/virology) +"uO" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"uQ" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"uU" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/storage) +"uV" = ( +/obj/machinery/door/airlock/hatch{ + name = "Morgue"; + req_access = null; + req_access_txt = "6;5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"vg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"vh" = ( +/obj/structure/table/greyscale, +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"vj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"vk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/syringe{ + pixel_y = 14 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"vn" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"vo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"vr" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"vt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"vy" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"vA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"vC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"vD" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"vP" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/light, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"vR" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"wb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"wm" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"wn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"wu" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "med_post_def" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"wx" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"wy" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay) +"wD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"wI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"wZ" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"xb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"xj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"xu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/aft) +"xv" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5; + pixel_x = 7; + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"xx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/virology) +"xA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"xF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/railing/right{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay) +"xH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy"; + req_access_txt = "69" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/pharmacy) +"xJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"xK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"xL" = ( +/obj/effect/mapping_helpers/dead_body_placer, +/obj/effect/turf_decal/trimline/blue/warning, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"xP" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"xV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "med_post" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"xY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 25; + req_access_txt = "39" + }, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ye" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "MedbayFoyer"; + name = "Открытие дверей"; + normaldoorcontrol = 1; + pixel_x = 5; + pixel_y = -25; + req_access_txt = "5" + }, +/obj/machinery/button/door{ + id = "med_post_def"; + name = "Защитные шторы"; + pixel_x = -6; + pixel_y = -25; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"yg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"yk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ym" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"yo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/radio/off, +/obj/item/screwdriver{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"yq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel, +/area/medical/virology) +"ys" = ( +/obj/effect/turf_decal/siding/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"yz" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/obj/item/toy/plush/moth{ + pixel_x = 6 + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"yA" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"yK" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"yL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"yN" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay) +"yP" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"yU" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"za" = ( +/turf/closed/wall/r_wall, +/area/medical/surgery) +"zc" = ( +/turf/closed/wall/r_wall, +/area/medical/storage) +"zf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "med_psih" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/psychology) +"zl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "med_psih" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/psychology) +"zq" = ( +/turf/closed/wall/r_wall, +/area/medical/pharmacy) +"zw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"zy" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"zC" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/virology) +"zI" = ( +/obj/structure/sign/departments/psychology, +/turf/closed/wall/r_wall, +/area/medical/virology) +"zJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"zN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"zR" = ( +/obj/machinery/door/airlock/virology{ + name = "Break Room"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"zS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"zU" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"zV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/airlock/medical{ + name = "Ward"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"zY" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28 + }, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"Ab" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"Ak" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"An" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"Ap" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"Ar" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Aw" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Ax" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"AG" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"AJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/storage) +"AS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"AX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay/aft) +"AY" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/medical) +"Bo" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Bp" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Bu" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"By" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Bz" = ( +/turf/closed/wall, +/area/medical/surgery) +"BA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"BE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/med, +/obj/item/radio/headset/headset_med, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"BH" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/medical/medbay/lobby) +"BP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 4; + hide = 1; + target_pressure = 4500 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"BQ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"BR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"BZ" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = 4 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Cd" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"Ch" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Cl" = ( +/obj/structure/table/reinforced, +/obj/item/wrench/medical{ + pixel_y = 5 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/light, +/obj/item/wrench/medical{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"Cs" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"Ct" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"Cu" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Cv" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/item/toy/figure/virologist{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"CB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"CE" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay) +"CF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/chemfactory, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"CK" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"CU" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime, +/obj/item/toy/cattoy, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"CY" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 10 + }, +/obj/item/toy/figure/chemist{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Db" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"Dd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"De" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"Dj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"Dm" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Dn" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Do" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"Du" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Dv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"DA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"DB" = ( +/obj/machinery/vending/chetverochka/pharma, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"DD" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"DH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"DK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"DX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"Ea" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"Ec" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/vending/wallmed{ + pixel_x = 28 + }, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Ed" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"Ek" = ( +/turf/closed/wall, +/area/medical/chemistry) +"Eq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"Es" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/mob/living/simple_animal/bot/cleanbot/medbay, +/turf/open/floor/plasteel, +/area/medical/medbay) +"Et" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "chem_window" + }, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Pharmacy Desk"; + req_access_txt = "69" + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Eu" = ( +/obj/machinery/light, +/obj/machinery/vending/medical{ + pixel_x = -2 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/storage) +"Ex" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"Ey" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "chem_window"; + name = "Окно фармацевтики"; + pixel_x = -24; + pixel_y = 7; + req_one_access_txt = "5" + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"ED" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"EL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/requests_console/directional/north{ + pixel_y = 24 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/storage) +"EP" = ( +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"EY" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"Fa" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"Ff" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/yellow/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Fh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/medical/surgery) +"Fj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/chemistry) +"Fm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/valve/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"Fo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Fw" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"FA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/aft) +"FC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"FD" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"FP" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"FW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"Ga" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"Gf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/medical/virology) +"Gg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Gj" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"Gk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"Gp" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"Gt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"GI" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/aft) +"GK" = ( +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"GL" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall/r_wall, +/area/medical/pharmacy) +"GN" = ( +/turf/closed/wall, +/area/medical/cryo) +"GQ" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"GU" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel, +/area/medical/virology) +"GX" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"Ha" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/plunger{ + pixel_x = -16 + }, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/item/stack/cable_coil{ + pixel_x = 15; + pixel_y = -4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Hq" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"Hv" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"Hy" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"HA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"HC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay/aft) +"HF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"HT" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"HZ" = ( +/turf/closed/wall, +/area/maintenance/aft) +"Ia" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Ib" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"Id" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 4 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/gun/syringe{ + pixel_y = 8 + }, +/obj/item/gun/syringe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"Ie" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"Ig" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Io" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"Iv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"ID" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/obj/machinery/button/door{ + id = "MedbayFoyer"; + name = "Открытие дверей"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -5; + req_access_txt = "5" + }, +/obj/machinery/button/door{ + id = "med_sb_def"; + name = "Защитные шторы"; + pixel_x = 6; + pixel_y = 6; + req_one_access_txt = "5" + }, +/obj/machinery/button/door{ + id = "MedbayFoyer"; + name = "Блокировка входа"; + normaldoorcontrol = 1; + pixel_x = -5; + pixel_y = -5; + req_access_txt = "5"; + specialfunctions = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"IF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"II" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"IK" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"IL" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall/r_wall{ + light_color = "#FFFF00" + }, +/area/medical/pharmacy) +"IM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"IX" = ( +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark/corner, +/area/medical/medbay) +"IZ" = ( +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/plasteel/monofloor, +/area/medical/medbay) +"Jc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"Jd" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"Je" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay) +"Jh" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Jl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay/aft) +"Jo" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Jw" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"JA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/warning, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"JE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"JI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/cryo) +"JK" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"JO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/pharmacy) +"JT" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"JX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"JY" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Ka" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Kd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Kg" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"Kn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Kq" = ( +/obj/effect/turf_decal/siding/yellow, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Kr" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay) +"Kw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"KC" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"KD" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/medical/break_room) +"KN" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"KP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command/heads_quarters/cmo) +"KQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"KS" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"KW" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/cryo) +"KX" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/medical/virology) +"KY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/structure/closet/secure_closet/medical3, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"KZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"Ld" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Lo" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Lq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"Ls" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command/heads_quarters/cmo) +"Ly" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"LI" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/medical/break_room) +"LS" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"LT" = ( +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/obj/machinery/medipen_refiller, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"LY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"LZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"Mb" = ( +/obj/structure/table/glass, +/obj/item/hand_labeler{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/item/hand_labeler, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = -10 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Mc" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"Me" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Mh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Mp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/bio{ + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/south{ + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Mu" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"Mx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/folder/white{ + pixel_x = -8 + }, +/obj/item/pen{ + pixel_x = -12 + }, +/obj/item/stamp/cmo{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/structure/table/reinforced, +/obj/item/toy/figure/cmo{ + pixel_x = -23; + pixel_y = -1 + }, +/obj/item/folder/blue{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"MH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"MT" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/virology) +"Ne" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"Nk" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"Nm" = ( +/obj/structure/table/greyscale, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"Ns" = ( +/obj/effect/turf_decal/trimline/blue/warning, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Nu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"Nw" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Nz" = ( +/obj/machinery/computer/department_orders/medical, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"ND" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + pixel_y = 2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"NK" = ( +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"NP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"NZ" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Oa" = ( +/obj/machinery/door/airlock/hatch{ + name = "Morgue"; + req_access = null; + req_access_txt = "6" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Od" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"Oj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"On" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/medical/break_room) +"Oq" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Ot" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer"; + req_access = null; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"Ov" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/vehicle/ridden/forklift/medical, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ow" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"OB" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/medical/surgery) +"ON" = ( +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/plasteel/monofloor, +/area/medical/medbay) +"OQ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"OR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay) +"OW" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/unres, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"OZ" = ( +/turf/closed/wall/r_wall, +/area/medical/break_room) +"Pb" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/pen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "med_post_def" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"Pc" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay) +"Pu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"Pw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"PB" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"PL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"PN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/virology) +"PV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel, +/area/medical/surgery) +"PW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Qb" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"Qd" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = 8; + pixel_y = -28; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Qe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"Qq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Qt" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"QJ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay) +"QM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"QO" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"QP" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"QS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"Rf" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Ri" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Rk" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay Cryogenics"; + network = list("ss13","medbay") + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Rl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"RA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"RD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/obj/effect/turf_decal/box, +/obj/structure/table/optable, +/turf/open/floor/plasteel, +/area/medical/surgery) +"RI" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = 8; + pixel_y = 22; + req_access_txt = "39" + }, +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"RJ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/medical/medbay) +"Sa" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/cryo) +"Sg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/storage) +"Si" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/cryo) +"Sl" = ( +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -30 + }, +/obj/item/book/manual/wiki/infections{ + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Sm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"Sn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"So" = ( +/obj/structure/closet/secure_closet/psychology, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"Sq" = ( +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"Sr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel, +/area/medical/surgery) +"Ss" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay/aft) +"St" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay) +"Sv" = ( +/obj/effect/turf_decal/trimline/yellow/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing/left{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay) +"Sx" = ( +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/full, +/turf/open/floor/plasteel/monofloor, +/area/medical/medbay/aft) +"SN" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"SR" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) +"SY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"Tk" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/obj/item/stack/sheet/plastic/fifty{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"Tl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Tt" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"Tx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay) +"TH" = ( +/obj/machinery/limbgrower, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"TJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"TK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"TP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"TQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing/left{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay) +"TR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ua" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Ub" = ( +/turf/closed/wall/r_wall, +/area/medical/cryo) +"Ud" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ue" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Uf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"Ur" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ut" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay) +"Uw" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"UA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/medical) +"UI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/table/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/reagent_containers/pill/patch/aiuri{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/reagent_containers/pill/patch/libital{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "med_post_def" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"UJ" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/radio/intercom/directional/north{ + pixel_y = 18 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/storage) +"UV" = ( +/obj/structure/sign/departments/examroom, +/turf/closed/wall/r_wall, +/area/medical/surgery) +"Vd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"Ve" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Vf" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/aft) +"Vg" = ( +/turf/closed/wall, +/area/medical/virology) +"Vi" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Vn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Vu" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/medical/virology) +"Vv" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"VA" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/storage) +"VD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"VE" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/preopen{ + id = "med_post" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/lobby) +"VF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"VH" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"VU" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/lobby) +"VV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) +"VX" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"VY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"VZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/med_data, +/obj/machinery/light/floor{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"We" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) +"Wg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) +"Wm" = ( +/turf/closed/wall/r_wall, +/area/medical/psychology) +"Wo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Wv" = ( +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Wx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/chemistry) +"Wz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay) +"WB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north{ + pixel_x = 9; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"WN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command/heads_quarters/cmo) +"WP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/aft) +"WR" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"WU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"WV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/chemistry) +"WX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/cryo) +"Xh" = ( +/obj/structure/closet{ + name = "janitorial supplies" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/crowbar, +/obj/item/screwdriver, +/obj/item/pushbroom, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Xn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table, +/obj/machinery/light, +/obj/item/clipboard, +/obj/item/healthanalyzer{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/holosign_creator/medical{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/toy/figure/paramedic{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Xs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/medical/virology) +"Xy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/surgery) +"XB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"XI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay) +"XJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"XK" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay/aft) +"XL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"XN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/cryo) +"Yf" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"Yg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/aft) +"Yo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Yv" = ( +/obj/effect/turf_decal/trimline/blue/corner, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/lobby) +"Yw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"Yy" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/lobby) +"YC" = ( +/obj/structure/table/greyscale, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"YG" = ( +/obj/effect/turf_decal/siding/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"YT" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"YV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/pdapainter/medbay, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command/heads_quarters/cmo) +"YY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/bed/roller, +/obj/machinery/firealarm/directional/east{ + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay) +"Zb" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"Zh" = ( +/obj/structure/table/greyscale, +/obj/machinery/door/window/northleft{ + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -7 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -10; + pixel_y = -3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 19; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 16; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 13 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 10; + pixel_y = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"Zk" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer"; + req_access = null; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/cmo) +"Zm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/medical) +"Zp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/surgery) +"Zq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/turf/open/floor/plasteel, +/area/medical/medbay) +"Zv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/morgue) + +(1,1,1) = {" +oF +oF +oF +oF +oF +oF +oF +oF +oF +za +za +za +za +za +za +za +za +za +GN +cO +Ub +Ub +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(2,1,1) = {" +oF +BQ +hd +KC +zw +bM +mq +vk +dl +za +sf +Fh +Uw +Gp +LS +Xy +lD +Bz +on +yA +mK +xb +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(3,1,1) = {" +oF +cC +hd +Pu +VV +ko +ko +Zv +kz +za +OB +Ed +dh +pf +lW +KZ +RD +Bz +yU +Wv +KW +Cl +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(4,1,1) = {" +oF +BZ +NZ +Ns +Lo +Me +hd +DA +gP +za +nv +Ak +DD +im +Fw +GQ +xA +Zp +Rf +Si +eA +pg +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(5,1,1) = {" +Oa +Qt +Qt +xL +Lo +Me +hd +DA +Mp +za +pa +vn +sU +rR +bh +jt +vr +Ga +qX +Sa +eA +Mc +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(6,1,1) = {" +oF +AG +hd +Ns +Lo +Me +hd +LY +iz +za +WB +KQ +hR +BR +OQ +lo +Ex +tz +Rf +JI +TK +pg +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(7,1,1) = {" +oF +VD +hd +JA +Lo +Me +hY +LY +Xh +za +OB +oe +We +Ie +Kg +oy +RD +Bz +Rk +HT +aI +XN +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(8,1,1) = {" +oF +oF +oF +oF +oF +oF +oF +uV +oF +za +Sr +PV +DK +jD +WU +oh +Lq +Bz +TH +wi +um +IK +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(9,1,1) = {" +VE +cm +QO +eB +nH +zJ +Nk +yN +IX +UV +za +tm +Sm +pB +uI +XL +Bz +Bz +qR +fD +WX +GN +Ub +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(10,1,1) = {" +Yy +Yy +rt +RA +Yw +VU +St +ic +dm +vg +ps +aM +nh +ir +mg +lz +jY +Vn +be +ir +Pc +FC +vR +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(11,1,1) = {" +xV +kl +FW +fG +JE +zJ +RJ +in +gU +kM +kM +kM +rn +ON +kM +rn +OW +kM +kM +ON +Es +Xn +vR +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(12,1,1) = {" +xV +Nz +FW +yP +ye +Yy +ri +Je +df +CE +yg +yg +QJ +Zq +TQ +lm +xj +YY +wy +rJ +Kr +fQ +vR +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(13,1,1) = {" +Yy +Yy +Pb +UI +wu +Yy +kn +fO +CE +jK +kF +kF +pS +Zk +kF +JK +zc +zc +gY +tu +cy +zc +zc +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(14,1,1) = {" +mV +DB +Jw +Ax +fh +hb +kO +XJ +ao +kF +kF +ia +zN +lU +sl +JK +EL +ND +oT +JX +uU +Eu +zc +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(15,1,1) = {" +rE +Ib +Yv +Oq +bL +sL +XI +fO +ao +kF +qY +hI +fk +KP +CU +kF +KY +AJ +ep +VA +ip +Nm +zc +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(16,1,1) = {" +Ab +Yv +SN +Cu +uQ +Od +mN +fO +ao +kF +KS +gE +Mx +KN +YV +kF +Fa +xK +dF +vC +ck +Zh +zc +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(17,1,1) = {" +Ab +Ld +ai +Ch +Vi +mP +iL +fO +Ff +kF +ne +qE +Wo +gF +WN +kF +Id +xK +Tk +vC +ck +nK +OZ +OZ +OZ +OZ +OZ +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +gt +"} +(18,1,1) = {" +rE +Qe +Ld +Jo +kt +sL +Gt +fO +Ff +kF +VZ +oY +Ls +gd +kN +kF +KY +fo +Uf +mt +Sg +YC +OZ +Bu +zY +Qb +OZ +qO +qO +qO +qO +qO +gt +gt +gt +gt +gt +gt +gt +gt +"} +(19,1,1) = {" +BH +ak +cL +cL +vh +Yy +CB +fO +Ff +kF +kF +rW +hS +yL +vP +JK +UJ +mp +eY +gI +nT +rh +OZ +dM +Sq +uo +wm +qO +fw +Db +Ow +qO +gt +gt +gt +gt +gt +gt +gt +gt +"} +(20,1,1) = {" +AY +dA +dA +dA +dA +bR +VY +fO +Ut +CY +kF +kF +kF +Ot +kF +JK +he +zc +gY +CK +cy +zc +OZ +On +wD +oD +bm +qO +mS +nn +EY +qO +gt +gt +gt +gt +gt +gt +gt +gt +"} +(21,1,1) = {" +AY +QM +rp +yo +ID +bR +Tl +Tx +df +Ut +ds +ds +Sv +Jc +xF +JY +XB +VF +Ss +Eq +Gj +Ct +Yg +hC +mL +HF +LI +qO +Jd +Do +Ly +qO +qO +qO +qO +qO +qO +gt +gt +gt +"} +(22,1,1) = {" +AY +AS +pQ +UA +DX +FD +aq +Ia +ml +kM +kM +kM +XJ +IZ +Vd +Vd +gQ +HC +HC +Sx +HC +HC +HC +HC +FP +vj +KD +qO +jH +Vg +zR +Vg +Ua +jz +ED +Sl +qO +qO +gt +gt +"} +(23,1,1) = {" +AY +Rl +Zm +fj +aa +Ap +Wz +dS +Yo +Sn +Ec +Fo +kw +Vd +OR +Iv +cX +Dj +iA +pk +cf +XK +Ne +Ea +FP +qO +qO +qO +qO +qO +am +yK +Hq +bb +bb +au +Bo +qO +gt +gt +"} +(24,1,1) = {" +AY +SY +wn +np +BE +FD +Bp +iW +cI +Tt +vD +HA +II +zV +LZ +WV +Fj +Ek +Ek +LZ +LZ +LZ +vD +uz +ie +qO +xY +QP +Qd +qO +RI +MH +zy +MH +wx +ti +iV +uK +gt +gt +"} +(25,1,1) = {" +bR +AY +AY +AY +AY +AY +JO +xH +GL +vD +Dv +gR +ap +CF +oV +TR +PW +Du +LT +Hy +cz +kd +vA +Ea +ll +jL +Ig +bO +YT +MT +fb +gz +wZ +Ve +Cv +ht +qO +qO +HZ +HZ +"} +(26,1,1) = {" +bG +IL +Ey +Mb +eU +xv +Dn +gm +bg +vD +al +Ue +eL +Ue +Ue +Ue +Kn +Ue +vo +Kd +pp +Ka +vA +Ea +Cs +KX +zU +iT +VX +qO +tT +uk +JT +lb +lb +lb +rb +Zb +PB +HZ +"} +(27,1,1) = {" +ii +Et +gp +gG +Wg +zS +IF +rk +oH +Nu +Gg +Ue +Ud +IM +IM +IM +an +IM +wb +Ue +Ri +Jh +LZ +Ea +wI +zI +qO +qO +qO +qO +qO +bk +oa +zC +sK +bF +qO +Fm +BP +sT +"} +(28,1,1) = {" +gt +jW +Nw +Kw +tQ +Nw +vt +tQ +uO +jI +Oj +TP +oc +tp +tp +tp +By +tp +NP +Ue +Ri +pc +LZ +Ea +Vf +zl +So +ys +oZ +yz +qO +xP +hF +Vu +Hv +vy +qO +yk +FA +HZ +"} +(29,1,1) = {" +gt +zq +tl +qq +oA +tl +qG +pE +PL +tZ +Gg +ss +gJ +Wx +Wx +Wx +DH +BA +Ue +Ue +TJ +Ha +LZ +Ea +fa +cH +An +EP +ms +SR +qO +PN +xx +PN +PN +PN +qO +HZ +HZ +HZ +"} +(30,1,1) = {" +gt +zq +WR +QS +Yf +Aw +QS +Yf +GX +vD +Gg +Ue +Qq +Dm +bZ +Mh +pe +Vv +jp +VH +Ar +Kq +De +WP +Gk +zf +Io +YG +ms +kQ +qO +NK +mo +GK +bp +GU +qO +gt +gt +gt +"} +(31,1,1) = {" +gt +zq +zq +zq +zq +zq +zq +zq +xJ +vD +Ur +Dd +Pw +Ov +vD +vD +vD +vD +vD +vD +dC +ym +vD +AX +Jl +tn +nd +jw +kb +ei +qO +Gf +rj +Xs +yq +Cd +qO +gt +gt +gt +"} +(32,1,1) = {" +gt +gt +gt +gt +gt +gt +gt +zq +zq +vD +vD +vD +bx +dP +Mu +gt +gt +gt +gt +Mu +vD +vD +vD +xu +GI +Wm +Wm +Wm +Wm +Wm +qO +qO +qO +qO +qO +qO +qO +gt +gt +gt +"} diff --git a/_maps/RandomRuins/StationRuins/medbay_psych_v2.dmm b/_maps/r_ruins/station/med/medbay_psych_v2.dmm similarity index 93% rename from _maps/RandomRuins/StationRuins/medbay_psych_v2.dmm rename to _maps/r_ruins/station/med/medbay_psych_v2.dmm index ca7561efc736..d0f155a7e79a 100644 --- a/_maps/RandomRuins/StationRuins/medbay_psych_v2.dmm +++ b/_maps/r_ruins/station/med/medbay_psych_v2.dmm @@ -24,6 +24,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, +/obj/tacmap/directional/west, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "ax" = ( @@ -63,9 +64,9 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) "bn" = ( -/obj/effect/decal/cleanable/cobweb/cobweb2, -/turf/closed/wall, -/area/medical/medbay/central) +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/surgery) "bp" = ( /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -84,10 +85,7 @@ /obj/structure/railing/corner{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "bs" = ( @@ -133,36 +131,45 @@ /area/medical/sleeper) "cq" = ( /obj/structure/table/glass, -/obj/item/storage/firstaid/toxin{ - pixel_x = 3; +/obj/structure/window/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; pixel_y = 3 }, -/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = -1; + pixel_y = -1 + }, /obj/item/storage/firstaid/regular{ - pixel_x = -3; + pixel_x = -5; pixel_y = -3 }, -/obj/machinery/door/window/northleft{ - dir = 8; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" - }, -/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ - dir = 4 + dir = 8 }, /obj/effect/turf_decal/tile/blue{ - dir = 8 + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, /area/medical/storage) "cs" = ( -/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/extinguisher_cabinet/directional/east{ + pixel_x = 38 + }, /obj/machinery/reagentgrinder{ pixel_y = 2 }, @@ -173,9 +180,8 @@ }, /obj/machinery/button/door{ id = "durka_quarantine"; - name = "Quarantine"; - pixel_x = 32; - pixel_y = 32 + name = "Карантин"; + pixel_x = 25 }, /turf/open/floor/plasteel/dark, /area/medical/virology) @@ -210,7 +216,6 @@ dir = 1 }, /obj/machinery/disposal/bin, -/obj/machinery/light_switch/directional/south, /turf/open/floor/plasteel/white, /area/medical/sleeper) "di" = ( @@ -218,6 +223,7 @@ /area/medical/medbay/central) "dw" = ( /obj/machinery/holopad, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "dy" = ( @@ -237,6 +243,10 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 9 }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = -8 + }, /turf/open/floor/plasteel/dark, /area/medical/virology) "dH" = ( @@ -248,8 +258,12 @@ /area/medical/storage) "dI" = ( /obj/structure/closet/crate/bin, -/obj/effect/spawner/lootdrop/armory_contraband, /obj/item/reagent_containers/glass/bowl/mushroom_bowl, +/obj/item/scalpel, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/trash/food_packaging, +/obj/effect/spawner/random/maintenance, /turf/open/floor/mineral/titanium, /area/medical/medbay/aft) "dT" = ( @@ -262,8 +276,15 @@ name = "Medbay Desk"; req_access_txt = "69" }, -/obj/machinery/door/firedoor, /obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "durka_hub"; + name = "Panic Bunker" + }, +/obj/structure/desk_bell{ + pixel_x = 6; + pixel_y = 10 + }, /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "dU" = ( @@ -283,46 +304,44 @@ /area/medical/medbay/central) "eh" = ( /obj/structure/table/glass, -/obj/item/storage/firstaid/fire{ - pixel_x = 3; +/obj/structure/window/reinforced, +/obj/item/storage/firstaid/toxin{ + pixel_x = -7; pixel_y = 3 }, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ +/obj/item/storage/firstaid/toxin{ pixel_x = -3; - pixel_y = -3 + pixel_y = 1 }, -/obj/machinery/door/window/northleft{ - dir = 4; - icon_state = "right"; - name = "First-Aid Supplies"; - red_alert_access = 1; - req_access_txt = "5" +/obj/item/storage/firstaid/toxin{ + pixel_x = 1; + pixel_y = -1 }, -/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ - dir = 4 + dir = 8 }, /obj/effect/turf_decal/tile/blue{ - dir = 8 + dir = 4 }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/storage) -"ei" = ( -/obj/structure/table/glass, -/obj/item/storage/firstaid/o2{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/o2, /obj/item/storage/firstaid/regular{ - pixel_x = -3; + pixel_x = 5; pixel_y = -3 }, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "right"; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"ei" = ( +/obj/structure/table/glass, /obj/machinery/door/window/northleft{ dir = 8; icon_state = "right"; @@ -330,17 +349,33 @@ red_alert_access = 1; req_access_txt = "5" }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 +/obj/item/storage/firstaid/brute{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = -3 }, +/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel/dark, /area/medical/storage) "en" = ( /obj/structure/table/reinforced, @@ -372,10 +407,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "eC" = ( @@ -388,6 +420,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "eH" = ( @@ -454,10 +487,7 @@ }, /obj/effect/turf_decal/stripes/line, /obj/structure/railing/corner, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/dark, /area/medical/medbay/central) "fA" = ( @@ -506,10 +536,7 @@ /obj/effect/turf_decal/trimline/red/filled/line{ dir = 6 }, -/obj/machinery/door/window/brigdoor/eastleft{ - name = "Medbay Desk"; - req_access_txt = "69" - }, +/obj/machinery/light, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "gm" = ( @@ -558,17 +585,16 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/light_switch/directional/north, +/obj/machinery/modular_computer/console/preset/cargochat/medical, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "gQ" = ( /obj/machinery/chem_master, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 5 - }, -/obj/machinery/power/apc/auto_name/east, /obj/structure/cable, /obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "gS" = ( @@ -595,11 +621,11 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "hB" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 +/obj/structure/disposalpipe/junction/flip{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) @@ -621,14 +647,11 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "id" = ( -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 @@ -702,32 +725,17 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "iZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - dir = 8; - name = "Pharmacy Desk"; - req_access_txt = "69" - }, -/obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter" - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -2; - pixel_y = 8 - }, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only{ +/obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 4 }, -/turf/open/floor/plasteel/monofloor/white, +/turf/open/floor/plasteel/white, /area/medical/pharmacy) +"jj" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/openspace, +/area/medical/medbay/central) "jm" = ( /obj/machinery/airalarm{ pixel_y = 23 @@ -749,10 +757,6 @@ dir = 4 }, /obj/structure/disposalpipe/segment, -/obj/machinery/medical_kiosk{ - density = 0; - pixel_x = 32 - }, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "jw" = ( @@ -774,6 +778,7 @@ /obj/structure/disposalpipe/segment{ dir = 6 }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "jK" = ( @@ -795,6 +800,7 @@ /obj/machinery/camera/autoname{ dir = 1 }, +/obj/tacmap/directional/south, /turf/open/floor/plasteel/white, /area/medical/surgery) "jL" = ( @@ -802,7 +808,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /turf/open/floor/plasteel/white, /area/medical/storage) @@ -816,6 +822,14 @@ dir = 1 }, /obj/structure/cable, +/obj/machinery/button/door{ + id = "durka_windows"; + name = "Бронеставни"; + pixel_x = 6; + pixel_y = 24; + req_one_access_txt = "5" + }, +/obj/machinery/computer/department_orders/medical, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "kd" = ( @@ -855,10 +869,7 @@ /turf/open/floor/plasteel/white, /area/medical/storage) "kf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/chair/office/light{ +/obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, /turf/open/floor/plasteel/monofloor/white, @@ -890,12 +901,7 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "kk" = ( -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) "kl" = ( @@ -908,10 +914,13 @@ /area/medical/medbay/lobby) "kK" = ( /obj/structure/cable, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/computer/crew{ dir = 1 }, -/turf/open/floor/engine, +/turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "kP" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ @@ -923,16 +932,16 @@ /obj/structure/bed, /obj/item/bedsheet/blue, /obj/machinery/iv_drip, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "kR" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/light_switch/directional/west, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "ld" = ( @@ -964,6 +973,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 1 }, +/obj/effect/landmark/start/paramedic, /turf/open/floor/plasteel/monofloor/white, /area/medical/surgery) "mh" = ( @@ -1014,6 +1024,7 @@ dir = 1; pixel_y = 0 }, +/obj/structure/closet/l3closet, /turf/open/floor/plasteel/dark, /area/medical/virology) "mA" = ( @@ -1046,54 +1057,10 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) "nh" = ( /obj/structure/table/glass, -/obj/item/storage/box/syringes{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/screwdriver{ - pixel_x = 8; - pixel_y = 1 - }, -/obj/item/stack/cable_coil{ - pixel_y = -4 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/assembly/timer{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = -10 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = -10 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = -10 - }, -/obj/item/grenade/chem_grenade{ - pixel_x = -10 - }, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 8 }, @@ -1139,13 +1106,13 @@ /obj/structure/table/reinforced, /obj/machinery/button/door{ id = "durka_gate_outer"; - name = "Outer Gates"; + name = "Внешний шлюз"; pixel_x = 8; pixel_y = 8 }, /obj/machinery/button/door{ id = "durka_gate_inner"; - name = "Inner Gates"; + name = "Внутренний шлюз"; pixel_x = 8; pixel_y = -3 }, @@ -1153,9 +1120,20 @@ dir = 5 }, /obj/structure/cable, +/obj/machinery/button/door{ + id = "durka_hub"; + name = "Внутренние бронеставни"; + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/trapdoor_remote/preloaded{ + pixel_x = -4; + pixel_y = 10 + }, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "nZ" = ( +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "oa" = ( @@ -1174,14 +1152,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/medical/virology) +"oc" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) "od" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, @@ -1198,6 +1178,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, +/mob/living/simple_animal/bot/cleanbot/medbay, /turf/open/floor/plasteel/white, /area/medical/storage) "oF" = ( @@ -1253,7 +1234,7 @@ pixel_y = -4 }, /obj/item/reagent_containers/spray/cleaner{ - pixel_x = 7; + pixel_x = -10; pixel_y = 12 }, /obj/item/clothing/gloves/color/latex{ @@ -1268,6 +1249,13 @@ }, /turf/open/floor/plasteel/dark, /area/medical/virology) +"pr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/medical/medbay/central) "ps" = ( /obj/structure/closet/crate/freezer/blood, /obj/effect/turf_decal/stripes/line{ @@ -1289,7 +1277,7 @@ /obj/structure/table/glass, /obj/machinery/reagentgrinder{ pixel_x = -7; - pixel_y = 9 + pixel_y = 12 }, /obj/item/clothing/glasses/science{ pixel_x = 10; @@ -1297,13 +1285,18 @@ }, /obj/item/clothing/glasses/science{ pixel_x = 10; - pixel_y = 3 + pixel_y = 5 }, /obj/effect/turf_decal/trimline/yellow/filled/line{ dir = 10 }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -1313,6 +1306,10 @@ "pI" = ( /obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "cmoprivacy"; + name = "CMO Office" + }, /turf/open/floor/plating/airless, /area/command/heads_quarters/cmo) "qt" = ( @@ -1332,12 +1329,16 @@ /obj/machinery/door/poddoor/multi_tile/two_tile_hor{ id = "durka_cell" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) +"rl" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/medical/medbay/central) "ry" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -1357,6 +1358,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, +/obj/machinery/computer/department_orders/medical{ + dir = 1 + }, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "sa" = ( @@ -1403,12 +1407,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "sX" = ( @@ -1426,6 +1425,8 @@ dir = 1 }, /obj/structure/cable, +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "tc" = ( @@ -1497,6 +1498,9 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 }, +/obj/machinery/light{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "uV" = ( @@ -1590,12 +1594,16 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/command/heads_quarters/cmo) +"wt" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/openspace, +/area/medical/medbay/central) "wy" = ( /obj/structure/lattice/catwalk, /obj/structure/railing/corner{ @@ -1666,7 +1674,7 @@ /obj/effect/landmark/start/chief_medical_officer, /obj/machinery/button/door{ id = "cmoprivacy"; - name = "CMO Shutter Control"; + name = "Приватность"; pixel_x = 25; pixel_y = 22; req_access_txt = "40" @@ -1675,11 +1683,6 @@ /area/command/heads_quarters/cmo) "xa" = ( /obj/structure/table/glass, -/obj/item/paper_bin{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/pen, /obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 8 @@ -1693,25 +1696,30 @@ /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/machinery/fax, /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "xd" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) +/obj/structure/cable, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) "xm" = ( /obj/structure/disposalpipe/segment, /obj/structure/lattice, /turf/open/openspace, /area/medical/medbay/central) "xq" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "durka_hub"; + name = "Panic Bunker" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating/airless, /area/medical/medbay/lobby) "xt" = ( @@ -1723,7 +1731,7 @@ areastring = "/area/command/heads_quarters/cmo"; dir = 1; name = "CMO Office APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/dark, @@ -1744,7 +1752,11 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = -7 + }, /turf/open/floor/plasteel/white, /area/medical/sleeper) "xF" = ( @@ -1767,9 +1779,6 @@ /turf/open/floor/plasteel/dark, /area/command/heads_quarters/cmo) "xO" = ( -/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ - id = "durka_gate_outer" - }, /obj/structure/fans/tiny, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -1777,6 +1786,9 @@ /obj/structure/railing/corner{ dir = 1 }, +/obj/machinery/door/poddoor/multi_tile/three_tile_hor/preopen{ + id = "durka_gate_outer" + }, /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "yb" = ( @@ -1787,10 +1799,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /obj/structure/cable, /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) @@ -1838,6 +1847,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, +/obj/tacmap/directional/west, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "yT" = ( @@ -1875,6 +1885,7 @@ dir = 8; network = list("durka_domofon","ss13") }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "zT" = ( @@ -1882,24 +1893,10 @@ dir = 4 }, /obj/effect/turf_decal/trimline/red/filled/line{ - dir = 6 + dir = 4 }, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) -"Ag" = ( -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Storage"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/storage) "Ar" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 @@ -1988,14 +1985,58 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "BG" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stack/cable_coil{ + pixel_y = -4 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, /obj/structure/disposalpipe/segment{ - dir = 9 + dir = 4 }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) "BM" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 1 @@ -2067,10 +2108,7 @@ /obj/structure/cable, /obj/structure/disposalpipe/segment, /obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/sleeper) "Cn" = ( @@ -2097,6 +2135,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 4 }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "Cr" = ( @@ -2121,6 +2160,9 @@ /area/medical/medbay/lobby) "Cv" = ( /obj/structure/cable, +/obj/structure/chair/office/light{ + dir = 1 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) "Cy" = ( @@ -2157,6 +2199,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/structure/cable, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "Db" = ( @@ -2350,10 +2393,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/pharmacy) "FR" = ( @@ -2396,6 +2436,15 @@ }, /turf/open/floor/plasteel/white, /area/medical/medbay/aft) +"FZ" = ( +/obj/machinery/button/door{ + id = "durka_quarantine"; + name = "Карантин"; + pixel_x = 6; + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/medical/storage) "Gh" = ( /obj/machinery/holopad, /turf/open/floor/plasteel/monofloor/dark, @@ -2439,9 +2488,6 @@ /turf/closed/wall, /area/medical/medbay/central) "GN" = ( -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 4 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, @@ -2456,29 +2502,21 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "GT" = ( /obj/structure/sign/departments/chemistry/pharmacy{ pixel_x = -32 }, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/computer/crew{ - dir = 4 +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters"; + name = "Pharmacy Shutter" }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/turf/open/floor/plating/airless, +/area/medical/pharmacy) "GU" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 @@ -2496,10 +2534,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, /obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "Hd" = ( @@ -2529,27 +2564,28 @@ }, /turf/open/floor/plasteel/dark, /area/medical/virology) +"HQ" = ( +/obj/machinery/camera/autoname{ + dir = 8; + network = list("durka_domofon","ss13") + }, +/turf/open/openspace, +/area/medical/medbay/central) "Ip" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/airlock/virology{ - frequency = null; - id_tag = null; +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ name = "Virology"; req_access_txt = "39" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, /turf/open/floor/plasteel/monofloor/dark, /area/medical/virology) "IR" = ( /turf/open/openspace, /area/medical/sleeper) "IS" = ( -/obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, /obj/effect/landmark/start/depsec/medical, /obj/structure/cable, @@ -2570,8 +2606,8 @@ id = "durka_outer"; name = "Gate Shutters" }, -/obj/effect/spawner/structure/window/reinforced, /obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating/airless, /area/medical/medbay/lobby) "Jk" = ( @@ -2582,6 +2618,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, +/obj/effect/mapping_helpers/trapdoor_placer, /turf/open/floor/engine, /area/medical/medbay/lobby) "Jr" = ( @@ -2592,12 +2629,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "JF" = ( @@ -2623,14 +2655,29 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "JR" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 - }, /obj/structure/disposalpipe/segment{ - dir = 5 + dir = 6 }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Pharmacy Desk"; + req_access_txt = "69" + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters"; + name = "Pharmacy Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/pharmacy) "Kc" = ( /obj/machinery/camera/autoname, /obj/structure/table/reinforced, @@ -2643,6 +2690,7 @@ /area/medical/medbay/aft) "Kj" = ( /obj/structure/table/reinforced, +/obj/item/stack/sheet/plastic/fifty, /obj/item/book/manual/wiki/medicine, /obj/item/reagent_containers/spray/cleaner, /obj/item/blood_filter, @@ -2664,13 +2712,13 @@ "KC" = ( /obj/machinery/button/door{ id = "durka_outer"; - name = "Gate Shutters"; + name = "Внешний обзор"; pixel_x = -6; pixel_y = 32 }, /obj/machinery/button/door{ id = "durka_quarantine"; - name = "Quarantine"; + name = "Карантин"; pixel_x = 6; pixel_y = 32 }, @@ -2688,11 +2736,10 @@ /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "KR" = ( -/obj/machinery/firealarm/directional/north, -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 1 - }, /obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "KV" = ( @@ -2761,7 +2808,7 @@ /obj/effect/turf_decal/trimline/green/filled/line{ dir = 10 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ dir = 1 @@ -2785,34 +2832,32 @@ req_access_txt = "5" }, /obj/effect/mapping_helpers/airlock/unres, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/sleeper) "Ma" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 9 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/closet/secure_closet/security/med, /obj/item/radio/intercom/directional/north, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "Mb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 }, -/turf/open/floor/engine, +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "Mm" = ( -/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/multi_tile/three_tile_hor/preopen{ id = "durka_gate_inner" }, -/obj/structure/fans/tiny, /turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "Mn" = ( @@ -2844,17 +2889,17 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "MN" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 1 +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 6 +/obj/machinery/light{ + dir = 8 }, /turf/open/floor/plasteel/white, /area/medical/medbay/central) "MU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) @@ -2884,13 +2929,11 @@ /turf/open/floor/plasteel/white, /area/medical/medbay/central) "NC" = ( -/obj/machinery/chem_mass_spec, -/obj/effect/turf_decal/trimline/yellow/filled/line{ - dir = 6 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, /turf/open/floor/plasteel/white, /area/medical/pharmacy) "NL" = ( @@ -2909,17 +2952,6 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) -"Of" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 9 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/bin, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) "Op" = ( /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 8 @@ -2945,9 +2977,12 @@ /turf/open/floor/plasteel/monofloor/dark, /area/medical/virology) "OD" = ( -/obj/structure/disposalpipe/junction/flip{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) "OH" = ( @@ -2962,12 +2997,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /obj/effect/mapping_helpers/airlock/unres{ dir = 8 }, @@ -2975,27 +3005,35 @@ /area/medical/surgery) "OL" = ( /obj/effect/turf_decal/trimline/blue/filled/line, -/obj/machinery/chem_seller, /obj/machinery/firealarm/directional/south, +/obj/machinery/limbgrower, /turf/open/floor/plasteel/white, /area/medical/sleeper) "OO" = ( /obj/structure/table/glass, -/obj/item/storage/firstaid/brute{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/regular{ - pixel_x = -3; - pixel_y = -3 - }, /obj/machinery/door/window/northleft{ dir = 4; name = "First-Aid Supplies"; red_alert_access = 1; req_access_txt = "5" }, +/obj/item/storage/firstaid/o2{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/tile/blue{ dir = 4 }, @@ -3005,8 +3043,7 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, +/turf/open/floor/plasteel/dark, /area/medical/storage) "OP" = ( /obj/structure/disposalpipe/segment{ @@ -3060,9 +3097,13 @@ /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "Pw" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/smoke_machine, -/turf/open/floor/engine, +/obj/machinery/medical_kiosk{ + pixel_x = -5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, /area/medical/medbay/lobby) "PE" = ( /obj/effect/turf_decal/trimline/green/filled/line{ @@ -3107,7 +3148,7 @@ /turf/open/floor/plasteel/white, /area/medical/storage) "QF" = ( -/obj/machinery/rnd/production/techfab/department/medical, +/obj/machinery/mecha_part_fabricator/med, /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, @@ -3165,37 +3206,21 @@ }, /turf/open/floor/plasteel/white, /area/medical/sleeper) -"RA" = ( -/obj/structure/cable, -/obj/effect/turf_decal/trimline/red/filled/line{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/medical/medbay/lobby) -"RF" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/monofloor/white, -/area/medical/medbay/central) "RJ" = ( -/obj/effect/spawner/structure/window/reinforced, /obj/machinery/door/poddoor/preopen{ - id = "pharmacy_shutters"; - name = "Pharmacy Shutter" + id = "durka_windows" }, /obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, /turf/open/floor/plating/airless, /area/medical/medbay/central) "RN" = ( /obj/structure/table/glass, /obj/item/folder/white, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 11 + }, /obj/item/stamp/cmo, /obj/item/clothing/neck/stethoscope, /obj/effect/turf_decal/tile/blue, @@ -3208,30 +3233,31 @@ /obj/effect/turf_decal/tile/blue{ dir = 1 }, +/obj/item/pen{ + pixel_y = 9; + pixel_x = -8 + }, /turf/open/floor/plasteel/monofloor/dark, /area/command/heads_quarters/cmo) "So" = ( /turf/closed/wall/r_wall, /area/medical/medbay/aft) "Su" = ( -/obj/effect/turf_decal/trimline/blue/filled/line{ - dir = 8 +/obj/structure/disposalpipe/junction/flip{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 10 +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "pharmacy_shutters"; + name = "Pharmacy Shutter" }, -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) +/turf/open/floor/plating/airless, +/area/medical/pharmacy) "Sw" = ( /obj/machinery/door/firedoor, /turf/open/openspace, /area/medical/medbay/central) "SC" = ( -/obj/effect/turf_decal/trimline/blue/filled/corner{ - dir = 4 - }, /obj/machinery/holopad, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) @@ -3324,11 +3350,6 @@ }, /turf/open/floor/plasteel/monofloor/white, /area/medical/surgery) -"TE" = ( -/obj/structure/bed/dogbed/runtime, -/mob/living/simple_animal/pet/cat/runtime, -/turf/open/floor/plasteel/monofloor/dark, -/area/command/heads_quarters/cmo) "TS" = ( /obj/machinery/requests_console{ department = "Medbay"; @@ -3364,10 +3385,7 @@ /obj/machinery/door/airlock/medical/glass{ name = "Durka" }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/aft) "UO" = ( @@ -3414,7 +3432,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 5 }, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /obj/structure/bed, /obj/item/bedsheet/blue, @@ -3427,6 +3445,10 @@ /obj/structure/cable, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) +"Vh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/medical/medbay/central) "Vy" = ( /obj/structure/table/glass, /obj/item/reagent_containers/glass/bottle/epinephrine{ @@ -3514,12 +3536,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/storage) "VU" = ( @@ -3536,6 +3553,7 @@ /obj/machinery/door/firedoor/border_only{ dir = 8 }, +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/plasteel/white, /area/medical/sleeper) "VX" = ( @@ -3562,12 +3580,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/sleeper) "Wi" = ( @@ -3659,10 +3672,7 @@ /area/medical/medbay/central) "XL" = ( /obj/structure/cable, -/obj/structure/barricade/security{ - max_integrity = 520 - }, -/turf/open/floor/plating/airless, +/turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "XN" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -3703,7 +3713,7 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 4 }, -/obj/machinery/power/apc/auto_name/east, +/obj/machinery/power/apc/auto_name/directional/east, /obj/structure/cable, /obj/machinery/camera/autoname{ dir = 8 @@ -3714,21 +3724,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, -/obj/structure/disposalpipe/segment, /obj/effect/landmark/start/medical_doctor, /turf/open/floor/plasteel/monofloor/white, /area/medical/medbay/central) -"YK" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/structure/cable, -/obj/effect/turf_decal/trimline/blue/filled/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch/directional/south, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) "YT" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /obj/structure/disposalpipe/segment, @@ -3756,7 +3754,6 @@ /obj/effect/turf_decal/trimline/blue/filled/line{ dir = 10 }, -/obj/machinery/light_switch/directional/west, /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "ZD" = ( @@ -3765,7 +3762,11 @@ /turf/open/floor/plasteel/dark, /area/medical/medbay/lobby) "ZX" = ( -/obj/machinery/limbgrower, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light, /turf/open/floor/plasteel/white, /area/medical/medbay/central) @@ -3815,7 +3816,7 @@ ba GH di di -di +Jk di di di @@ -3857,10 +3858,10 @@ ba GH di di +Jk di di -di -di +HQ eH Jk di @@ -3938,7 +3939,7 @@ ba ba "} (5,1,1) = {" -GH +Vh di di Kr @@ -3980,7 +3981,7 @@ ba ba "} (6,1,1) = {" -GH +Vh di bs Kr @@ -4022,7 +4023,7 @@ ba ba "} (7,1,1) = {" -GH +Vh di di Jb @@ -4031,7 +4032,7 @@ IS sa VC Kr -AS +oc SC Cr fd @@ -4039,7 +4040,7 @@ gd Vy YT VG -er +bn jK Tn di @@ -4064,24 +4065,24 @@ ba ba "} (8,1,1) = {" -GH +Vh di di Jb nT +XL ZD -RA gh Kr -Kr +Mb KR Cr XG Tn Cy -er +jw Ax -er +bn hH Tn di @@ -4106,15 +4107,15 @@ ba ba "} (9,1,1) = {" -GH +Vh di di Jb nY zT kK -Mb -Pw +Kr +Kr Kr AS od @@ -4154,9 +4155,9 @@ Bd Lk xq dT -XL -Kr +xq Kr +Pw Kr Kx GS @@ -4337,7 +4338,7 @@ Qe xE oa Jk -Jk +rl GH ba ba @@ -4417,7 +4418,7 @@ nK wV FE Fp -bN +Qe uj oa di @@ -4465,7 +4466,7 @@ oa di di GH -bn +GH GH GH GH @@ -4496,9 +4497,9 @@ Ow ry Oy wh -wh +xd iZ -yn +BG wh oF We @@ -4535,10 +4536,10 @@ xF Cn ax SU -JF -JF -JF -Of +Ow +Ow +wh +wh JR Su GT @@ -4553,7 +4554,7 @@ Sw di di di -Jk +wt di di di @@ -4582,10 +4583,10 @@ wR zb MN OD -EQ +kf kf MU -YK +NL So So So @@ -4622,11 +4623,11 @@ wo gg Vf Vf -RF +Vf mX Yz -xd -BG +Vf +Vf mA So PZ @@ -4658,7 +4659,7 @@ Sw SU xa RN -TE +QQ rJ pI fA @@ -4687,7 +4688,7 @@ di Sw di di -di +jj GH GH ba @@ -4828,7 +4829,7 @@ GF jm NU uV -Ag +VT Zm uV uV @@ -4854,7 +4855,7 @@ sJ JO tW So -qt +di di di Jk @@ -4876,7 +4877,7 @@ GC jL QF kd -GF +FZ UU uX kP @@ -4906,7 +4907,7 @@ GH (28,1,1) = {" ba GH -di +qt di GF GF @@ -4981,7 +4982,7 @@ So So So Jk -Jk +rl GH GH GH @@ -5007,7 +5008,7 @@ di di Sw di -Sw +pr di di di diff --git a/_maps/RandomRuins/StationRuins/medbay_psych_v2_bottom.dmm b/_maps/r_ruins/station/med/medbay_psych_v2_bottom.dmm similarity index 92% rename from _maps/RandomRuins/StationRuins/medbay_psych_v2_bottom.dmm rename to _maps/r_ruins/station/med/medbay_psych_v2_bottom.dmm index e2835271e842..6a5553fbb6d0 100644 --- a/_maps/RandomRuins/StationRuins/medbay_psych_v2_bottom.dmm +++ b/_maps/r_ruins/station/med/medbay_psych_v2_bottom.dmm @@ -40,6 +40,12 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door{ + id = "durka_bot_right"; + name = "Бронежалюзи нижние правые"; + pixel_y = -32; + req_one_access_txt = "5" + }, /turf/open/floor/plating, /area/medical/psychology) "fE" = ( @@ -121,9 +127,14 @@ /obj/machinery/door/airlock/maintenance{ dir = 4; name = "Medbay Maintenance"; - req_access_txt = "5" + req_access_txt = "5"; + security_level = 6 + }, +/obj/machinery/door/poddoor/shutters{ + id = "durka_bot_left"; + name = "Бронежалюзи нижние левые" }, -/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/chemistry) "lX" = ( @@ -192,15 +203,18 @@ dir = 1 }, /obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, /obj/machinery/airalarm{ pixel_y = 23 }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/reagent_containers/dropper, /turf/open/floor/plasteel/white, /area/medical/chemistry) "sl" = ( @@ -257,6 +271,8 @@ /obj/item/construction/plumbing{ pixel_y = -10 }, +/obj/item/stack/cable_coil, +/obj/item/multitool, /turf/open/floor/plasteel/white, /area/medical/chemistry) "vY" = ( @@ -291,7 +307,8 @@ dir = 1 }, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/vehicle/ridden/forklift/medical, /turf/open/floor/plasteel/white, /area/medical/chemistry) "xM" = ( @@ -407,7 +424,7 @@ /area/medical/medbay/zone2) "EH" = ( /obj/machinery/light, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 @@ -442,6 +459,13 @@ /obj/structure/cable, /turf/open/floor/plasteel/white, /area/medical/chemistry) +"FC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/carpet/blue, +/area/medical/psychology) "FW" = ( /obj/machinery/airalarm{ dir = 8; @@ -458,7 +482,7 @@ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /obj/structure/cable, /turf/open/floor/plasteel/white, /area/medical/medbay/zone2) @@ -486,6 +510,12 @@ /obj/effect/turf_decal/trimline/blue/filled/line, /obj/machinery/light, /obj/structure/cable, +/obj/machinery/button/door{ + id = "durka_bot_left"; + name = "Бронежалюзи нижние левые"; + pixel_y = -32; + req_one_access_txt = "5" + }, /turf/open/floor/plasteel/white, /area/medical/chemistry) "No" = ( @@ -563,21 +593,28 @@ name = "Chemistry Storage"; req_access_txt = "33" }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, /obj/structure/cable, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/white, /area/medical/chemistry) "RU" = ( /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, /turf/open/floor/carpet/blue, /area/medical/psychology) +"Sj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/chemfactory, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) "Sl" = ( /obj/machinery/light{ dir = 1; @@ -627,12 +664,7 @@ name = "Psychology"; req_access_txt = "70" }, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 - }, +/obj/machinery/door/firedoor, /turf/open/floor/plasteel/monofloor/white, /area/medical/psychology) "VX" = ( @@ -647,20 +679,19 @@ /obj/machinery/door/airlock/maintenance{ dir = 4; name = "Medbay Maintenance"; - req_access_txt = "5" + req_access_txt = "5"; + security_level = 6 }, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, -/obj/effect/mapping_helpers/airlock/locked, -/obj/machinery/door/firedoor/border_only{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/obj/machinery/door/poddoor/shutters{ + id = "durka_bot_right"; + name = "Бронежалюзи нижние правые" }, +/obj/machinery/door/firedoor, /turf/open/floor/plating, /area/medical/psychology) "Xd" = ( @@ -1286,7 +1317,7 @@ tI tI Cb JJ -CT +Sj Cb oe oH @@ -1456,7 +1487,7 @@ tG Pk fa gL -gL +FC VX Qg fc diff --git a/_maps/robust.json b/_maps/robust.json deleted file mode 100644 index a25b202105f5..000000000000 --- a/_maps/robust.json +++ /dev/null @@ -1,162 +0,0 @@ -{ - "version": 1, - "map_name": "Robust Tournament: Cyberspess", - "map_path": "map_files/RT", - "map_file": "RT1.dmm", - "shuttles": { - "cargo": "cargo_box", - "ferry": "ferry_fancy", - "whiteship": "whiteship_box", - "emergency": "emergency_box" - }, - "space_ruin_levels": 0, - "space_empty_levels": 0, - "minetype": "none", - "traits": [ - { - "Linkage": "Self" - } - ], - "job_changes": { - "engineer": { - "total_positions": -1, - "spawn_positions": -1 - }, - "officer": { - "total_positions": 2, - "spawn_positions": 2 - }, - "hos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hop": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chief_engineer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "rd": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cmo": { - "total_positions": 0, - "spawn_positions": 0 - }, - "atmos": { - "total_positions": 0, - "spawn_positions": 0 - }, - "scientist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "roboticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "geneticist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "doctor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "virologist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chemist": { - "total_positions": 0, - "spawn_positions": 0 - }, - "qm": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cargo_tech": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mining": { - "total_positions": 0, - "spawn_positions": 0 - }, - "bartender": { - "total_positions": 0, - "spawn_positions": 0 - }, - "hydro": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cook": { - "total_positions": 0, - "spawn_positions": 0 - }, - "janitor": { - "total_positions": 0, - "spawn_positions": 0 - }, - "curator": { - "total_positions": 0, - "spawn_positions": 0 - }, - "lawyer": { - "total_positions": 0, - "spawn_positions": 0 - }, - "chaplain": { - "total_positions": 0, - "spawn_positions": 0 - }, - "clown": { - "total_positions": 0, - "spawn_positions": 0 - }, - "mime": { - "total_positions": 0, - "spawn_positions": 0 - }, - "assistant": { - "total_positions": 0, - "spawn_positions": 0 - }, - "detective": { - "total_positions": 0, - "spawn_positions": 0 - }, - "warden": { - "total_positions": 0, - "spawn_positions": 0 - }, - "ai": { - "total_positions": 0, - "spawn_positions": 0 - }, - "cyborg": { - "total_positions": 0, - "spawn_positions": 0 - }, - "veteran": { - "total_positions": 0, - "spawn_positions": 0 - }, - "trader": { - "total_positions": 0, - "spawn_positions": 0 - }, - "paramedic": { - "total_positions": 0, - "spawn_positions": 0 - }, - "psychologist": { - "total_positions": 0, - "spawn_positions": 0 - } - } -} diff --git a/_maps/rusty/forest.dmm b/_maps/rusty/forest.dmm new file mode 100644 index 000000000000..0750320208e2 --- /dev/null +++ b/_maps/rusty/forest.dmm @@ -0,0 +1,67681 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ac" = ( +/turf/open/floor/wood, +/area/service/bar) +"ah" = ( +/obj/effect/spawner/random/entertainment/money_small, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"al" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"ay" = ( +/obj/item/stack/spacecash/c10000, +/obj/structure/closet/crate/secure/owned{ + locked = 0 + }, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"aC" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"aD" = ( +/obj/structure/resource_spawner, +/obj/machinery/light, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"aF" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"aN" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"aV" = ( +/obj/effect/spawner/random/entertainment/coin, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"aY" = ( +/turf/closed/wall/mineral/wood, +/area/service/bar) +"bh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"bk" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"bl" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/trot, +/area/mine/production) +"bq" = ( +/obj/structure/table/rospilovo, +/obj/item/circuitboard/machine/mechfab/engi, +/turf/open/floor/trot, +/area/engineering/main) +"bA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"bH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"bM" = ( +/obj/structure/table/rospilovo, +/obj/item/clothing/glasses/welding, +/turf/open/floor/trot, +/area/engineering/main) +"bT" = ( +/obj/structure/chair/sofa/corp/corner{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"bU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/trot, +/area/mine/production) +"bV" = ( +/turf/open/floor/plating/rust, +/area/engineering/storage) +"ca" = ( +/obj/structure/resource_spawner/rich, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"ck" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"cm" = ( +/obj/effect/mob_spawn/human/corpse/assistant, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"cx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"cD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/mine/storage) +"cF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"cL" = ( +/turf/open/floor/plating/grass, +/area/rust_zone) +"cQ" = ( +/obj/machinery/light, +/turf/open/floor/trot, +/area/engineering/main) +"dp" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ds" = ( +/obj/structure/resource_spawner, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"du" = ( +/obj/structure/resource_spawner/crate/rich, +/turf/open/floor/beton, +/area/rust_zone) +"dD" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dR" = ( +/turf/open/genturf, +/area/rust_zone) +"dS" = ( +/obj/structure/resource_spawner/rich, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"dV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/trot, +/area/engineering/storage) +"dW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/rust_zone) +"dX" = ( +/obj/structure/table/rospilovo, +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"ed" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"er" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"eI" = ( +/obj/structure/resource_spawner/rich, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"eZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table, +/turf/open/floor/trot, +/area/mine/production) +"fo" = ( +/obj/effect/baseturf_helper/beach, +/turf/closed/wall/rust, +/area/mine/storage) +"fL" = ( +/obj/structure/resource_spawner, +/turf/open/floor/beton, +/area/rust_zone) +"fU" = ( +/obj/structure/resource_spawner/rich, +/turf/open/floor/beton, +/area/rust_zone) +"fW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"fZ" = ( +/obj/structure/table/rospilovo, +/obj/item/multitool{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/multitool{ + pixel_x = -6; + pixel_y = -3 + }, +/turf/open/floor/trot, +/area/engineering/main) +"gc" = ( +/obj/structure/table/wood/poker, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ge" = ( +/obj/structure/table/rospilovo, +/obj/item/clothing/glasses/welding{ + pixel_y = 15 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/trot, +/area/engineering/main) +"gm" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/service/bar) +"gn" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/blue, +/area/service/bar) +"gE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/trot, +/area/mine/production) +"gH" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"gJ" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/rospilovo, +/area/rust_zone) +"gN" = ( +/obj/structure/rospilovo/okno{ + icon_state = "okno4" + }, +/turf/closed/wall/rospilovo/bricks, +/area/engineering/storage) +"hb" = ( +/obj/machinery/vending/snack/green, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"hh" = ( +/obj/structure/table/wood/poker, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -18; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"hx" = ( +/obj/structure/resource_spawner, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"hy" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"hH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/service/bar) +"hS" = ( +/turf/open/floor/trot, +/area/engineering/main) +"iq" = ( +/turf/open/floor/plasteel/dark/side, +/area/service/bar) +"ix" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"iy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/service/bar) +"iR" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"iS" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iX" = ( +/obj/machinery/light, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 1; + pixel_x = 6 + }, +/turf/open/floor/carpet/purple, +/area/service/bar) +"iZ" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"jf" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/belt/utility, +/turf/open/floor/trot, +/area/engineering/main) +"jg" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"jt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plating/rust, +/area/rust_zone) +"jE" = ( +/obj/structure/resource_spawner/rich, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"jO" = ( +/obj/structure/resource_spawner, +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"jP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"kf" = ( +/obj/effect/random_mob_placer/combat_ai, +/turf/open/floor/plating/rust, +/area/mine/storage) +"kg" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ki" = ( +/turf/closed/wall, +/area/mine/production) +"kl" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"kp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"ks" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"kX" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/trot, +/area/mine/production) +"lE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"lG" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/wood/tile, +/area/service/bar) +"lH" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/rospilovo, +/area/rust_zone) +"lK" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/beton, +/area/rust_zone) +"lQ" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/service/bar) +"lU" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/trot, +/area/mine/production) +"lV" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"lW" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/genturf, +/area/rust_zone) +"ma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/rust_zone) +"mn" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/genturf, +/area/rust_zone) +"mq" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"mw" = ( +/obj/item/card/id/departmental_budget/sci, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"my" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"ne" = ( +/obj/effect/random_mob_placer/combat_ai, +/turf/open/floor/trot, +/area/mine/production) +"ns" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/trot, +/area/rust_zone) +"nH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"nQ" = ( +/obj/machinery/autolathe, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"nX" = ( +/obj/machinery/door/airlock/glass, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"ok" = ( +/obj/structure/table, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"on" = ( +/turf/open/floor/plasteel/dark, +/area/service/bar) +"op" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/rust_zone) +"ot" = ( +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"oG" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"oR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"oY" = ( +/obj/structure/chair/sofa/corp{ + pixel_y = 4; + pixel_x = 6; + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"pd" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"pw" = ( +/obj/machinery/mineral/unloading_machine{ + dir = 1; + icon_state = "unloader-corner"; + input_dir = 1; + output_dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/trot, +/area/mine/production) +"pF" = ( +/obj/machinery/chem_dispenser/drinks{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pJ" = ( +/obj/effect/turf_decal/trimline/white/line{ + dir = 4; + icon_state = "trimline" + }, +/obj/effect/turf_decal/trimline/white/line{ + dir = 8; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"pS" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/plating/rust, +/area/mine/storage) +"pX" = ( +/obj/machinery/vending/boozeomat, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qa" = ( +/obj/item/card/id/departmental_budget/sec, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"qi" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/trot, +/area/engineering/storage) +"qj" = ( +/obj/effect/turf_decal/siding/wideplating_new/corner, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"qy" = ( +/obj/structure/resource_spawner, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"qK" = ( +/obj/effect/turf_decal/siding/white/corner, +/turf/open/floor/rospilovo, +/area/engineering/main) +"ra" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"re" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"rz" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/plating/grass, +/area/rust_zone) +"rA" = ( +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"rK" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"rS" = ( +/obj/structure/rospilovo/okno{ + icon_state = "okno4" + }, +/turf/closed/wall/rospilovo/bricks, +/area/engineering/main) +"rW" = ( +/obj/item/card/id/departmental_budget/sta, +/turf/open/floor/trot, +/area/rust_zone) +"sh" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/trot, +/area/mine/production) +"sp" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"sr" = ( +/obj/structure/water_source/puddle, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"su" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sI" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"sK" = ( +/obj/effect/spawner/random/entertainment/coin, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"sT" = ( +/turf/open/floor/stone, +/area/rust_zone) +"tg" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"tj" = ( +/turf/open/floor/carpet/purple, +/area/service/bar) +"tL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/trot, +/area/mine/production) +"tO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating/rust, +/area/mine/storage) +"tV" = ( +/obj/structure/table/wood/fancy/black, +/turf/open/floor/wood, +/area/service/bar) +"tW" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + dir = 8; + pixel_x = 6 + }, +/turf/open/floor/carpet/purple, +/area/service/bar) +"tY" = ( +/obj/structure/resource_spawner, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"tZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"uc" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/engineering/storage) +"ue" = ( +/obj/machinery/button/door{ + id = "garage"; + name = "Гараж"; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/trot, +/area/engineering/main) +"ui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ur" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/trot, +/area/mine/production) +"uy" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/mine/production) +"uJ" = ( +/obj/structure/table/rospilovo, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"uK" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"uQ" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"uT" = ( +/obj/structure/table, +/obj/item/pinpointer/deepcore{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/pinpointer/deepcore/advanced{ + pixel_y = 4 + }, +/obj/item/pinpointer/deepcore{ + pixel_x = -7 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"uU" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wideplating_new, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"uY" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"uZ" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"vw" = ( +/turf/open/floor/rospilovo, +/area/engineering/main) +"vz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/service/bar) +"vC" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/electrical, +/obj/item/cable_coil_box{ + pixel_y = -16; + pixel_x = -4 + }, +/obj/item/cable_coil_box{ + pixel_y = -16; + pixel_x = 6 + }, +/turf/open/floor/trot, +/area/engineering/main) +"vG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"vT" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/trot, +/area/rust_zone) +"vU" = ( +/obj/structure/table/wood/fancy/purple, +/turf/open/floor/wood, +/area/service/bar) +"wi" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"wz" = ( +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"wA" = ( +/turf/open/floor/plating/asteroid/dirty, +/area/rust_zone) +"wB" = ( +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"xd" = ( +/obj/structure/cable, +/obj/effect/random_mob_placer/combat_ai, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"xf" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/bar) +"xm" = ( +/obj/structure/cable, +/turf/open/floor/trot, +/area/mine/production) +"xv" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/purple, +/area/service/bar) +"xB" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"xD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/trot, +/area/mine/production) +"xE" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/blue, +/area/service/bar) +"xM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/storage) +"xW" = ( +/obj/item/card/id/departmental_budget/tra, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"xY" = ( +/obj/structure/resource_spawner/crate/rich, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 4 + }, +/obj/machinery/light, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"xZ" = ( +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"yb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/storage) +"yh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"yv" = ( +/obj/machinery/light, +/obj/structure/chair/sofa/corp/left{ + dir = 1; + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"yK" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"yQ" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"yT" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"yY" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_internal"; + name = "mining conveyor" + }, +/turf/open/floor/trot, +/area/mine/production) +"zl" = ( +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"zn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating/rust, +/area/rust_zone) +"zr" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"zu" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/genturf, +/area/rust_zone) +"zx" = ( +/obj/structure/resource_spawner/crate/rich, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"zH" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/turf/open/genturf, +/area/rust_zone) +"zL" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"zM" = ( +/obj/item/stack/spacecash/c10000, +/obj/structure/closet/crate/secure/owned{ + locked = 0 + }, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Ad" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/chair/sofa/corp/right{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"Af" = ( +/obj/structure/resource_spawner/crate/rich, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"Aj" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 8; + pixel_x = 6 + }, +/turf/open/floor/carpet/purple, +/area/service/bar) +"Al" = ( +/obj/structure/table/rospilovo, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/wrench, +/obj/item/wirecutters{ + pixel_x = 2; + pixel_y = -17 + }, +/obj/item/screwdriver{ + pixel_y = 9 + }, +/turf/open/floor/trot, +/area/engineering/main) +"Aq" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Ar" = ( +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"Ax" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/trot, +/area/mine/production) +"Ay" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"AA" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "mining_internal" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/trot, +/area/mine/production) +"AD" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/red, +/area/service/bar) +"AE" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"AH" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/engineering/storage) +"AO" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/turf/open/genturf, +/area/rust_zone) +"AW" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"AX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"Bf" = ( +/obj/machinery/turntable, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar) +"Bh" = ( +/obj/structure/resource_spawner/crate, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Bq" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"BE" = ( +/obj/structure/table/rospilovo, +/obj/item/weldingtool{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/weldingtool{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/trot, +/area/engineering/main) +"BJ" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"BY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/trot, +/area/mine/production) +"Ci" = ( +/obj/structure/table/wood/poker, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"CI" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"CJ" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/obj/item/stack/cable_coil/fifteen, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"CM" = ( +/turf/closed/wall/rust, +/area/mine/storage) +"CT" = ( +/obj/effect/turf_decal/weather/dirt, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Dc" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/trot, +/area/mine/production) +"Ds" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/genturf, +/area/rust_zone) +"Dv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"DR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Ea" = ( +/obj/effect/mob_spawn/human/corpse/cargo_tech, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Eb" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_y = 12; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Ec" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"Ed" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Ee" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/trot, +/area/mine/production) +"Ey" = ( +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"ED" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"EL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"ER" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"EU" = ( +/obj/item/card/id/departmental_budget/med, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Fd" = ( +/obj/structure/table/wood/poker, +/obj/item/kitchen/rollingpin{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"FC" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/grass/fairy, +/area/service/bar) +"FJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"FX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar) +"Gc" = ( +/turf/open/floor/plating/rust, +/area/mine/storage) +"Gj" = ( +/obj/structure/table/wood/poker, +/obj/item/card/id/departmental_budget/srv{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Gm" = ( +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"Gn" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/turf/open/genturf, +/area/rust_zone) +"Gq" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"Gr" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"Gz" = ( +/obj/effect/random_mob_placer/combat_ai, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"GA" = ( +/obj/structure/mineral_door/wood{ + color = "#aaaaaa"; + name = "деревянная дверь" + }, +/obj/structure/cable, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"GB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"GH" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/trot, +/area/mine/production) +"GM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"GT" = ( +/obj/structure/table/wood/fancy/blue, +/turf/open/floor/wood, +/area/service/bar) +"Hn" = ( +/obj/item/card/id/departmental_budget/civ, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"Ho" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/trot, +/area/mine/production) +"Hq" = ( +/obj/structure/resource_spawner, +/turf/open/floor/plating/grass, +/area/rust_zone) +"Hu" = ( +/obj/structure/cable, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"Hz" = ( +/turf/open/floor/grass/snow/actually_safe, +/area/rust_zone) +"Ih" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Ij" = ( +/turf/open/floor/rospilovo, +/area/rust_zone) +"Ik" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"IC" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/trot, +/area/mine/production) +"IJ" = ( +/obj/effect/mob_spawn/human/corpse/assistant, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"IN" = ( +/obj/effect/turf_decal/siding/wideplating_new/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"IQ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/grass/fairy, +/area/service/bar) +"Jb" = ( +/obj/structure/mineral_door/wood{ + color = "#aaaaaa"; + name = "деревянная дверь" + }, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"Jq" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) +"JB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/trot, +/area/mine/production) +"JE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/trot, +/area/engineering/main) +"JN" = ( +/turf/open/floor/carpet/royalblack, +/area/service/bar) +"JQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/trot, +/area/rust_zone) +"JU" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 10 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"JV" = ( +/turf/open/floor/trot, +/area/mine/production) +"Kv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/mine/storage) +"KA" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/trot, +/area/mine/production) +"KF" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"La" = ( +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Lh" = ( +/turf/open/floor/trot, +/area/rust_zone) +"Lm" = ( +/obj/structure/resource_spawner/crate/rich, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Lt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"LC" = ( +/obj/machinery/vending/cigarette/beach, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar) +"LE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"LX" = ( +/turf/closed/wall/rospilovo/bricks, +/area/engineering/storage) +"Mb" = ( +/obj/structure/table/rospilovo, +/obj/item/circuitboard/machine/ore_redemption, +/turf/open/floor/trot, +/area/engineering/main) +"Mn" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"Ms" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/trot, +/area/mine/production) +"Mw" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"MT" = ( +/obj/structure/table/rospilovo, +/obj/item/crowbar{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/trot, +/area/engineering/main) +"MW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/rust_zone) +"Nh" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Nr" = ( +/obj/structure/table/wood/fancy/red, +/turf/open/floor/wood, +/area/service/bar) +"Ns" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/trot, +/area/engineering/main) +"NE" = ( +/obj/structure/table/wood/poker, +/obj/item/book/manual/wiki/cooking_to_serve_man{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"NP" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 8; + pixel_x = 6 + }, +/turf/open/floor/carpet/purple, +/area/service/bar) +"Oj" = ( +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/turf/open/floor/rospilovo, +/area/engineering/main) +"Ow" = ( +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/service/bar) +"OG" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"ON" = ( +/obj/item/card/id/departmental_budget/car, +/turf/open/floor/plating/rust, +/area/mine/storage) +"OQ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/mine/production) +"OV" = ( +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/service/bar) +"PC" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"PM" = ( +/obj/structure/table/wood/poker, +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"PY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/resource_spawner, +/turf/open/floor/plating/rust, +/area/rust_zone) +"Qe" = ( +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Ql" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"Qr" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"QK" = ( +/obj/structure/table, +/obj/item/circuitboard/computer/cargo/express{ + pixel_x = 9; + pixel_y = 9 + }, +/obj/item/supplypod_beacon{ + pixel_x = -16 + }, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/obj/item/slime_extract/grey, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"QN" = ( +/obj/structure/resource_spawner/crate, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Re" = ( +/obj/structure/table/rospilovo, +/obj/item/stack/cable_coil/fifteen, +/turf/open/floor/trot, +/area/engineering/main) +"Rs" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"RC" = ( +/obj/structure/water_source/puddle, +/turf/open/floor/grass/gensgrass/dirty, +/area/rust_zone) +"Sa" = ( +/obj/structure/resource_spawner/crate/rich, +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Sv" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"SB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/trot, +/area/mine/production) +"SN" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/blue, +/area/service/bar) +"Tn" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Tp" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 5 + }, +/turf/open/genturf, +/area/rust_zone) +"Tq" = ( +/obj/item/pickaxe, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/trot, +/area/mine/production) +"TM" = ( +/obj/machinery/ore_silo, +/turf/open/floor/trot, +/area/mine/production) +"TQ" = ( +/obj/structure/table/rospilovo, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/circuitboard/machine/ore_silo, +/turf/open/floor/trot, +/area/engineering/main) +"TW" = ( +/obj/machinery/grill, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"TX" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Uf" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/stack/conveyor/thirty, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/conveyor_switch_construct, +/obj/item/paper/guides/conveyor, +/turf/open/floor/trot, +/area/mine/production) +"Uh" = ( +/obj/structure/resource_spawner/crate/rich, +/turf/open/floor/trot, +/area/mine/production) +"Uo" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1; + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"Uu" = ( +/obj/machinery/door/poddoor/shutters{ + id = "garage" + }, +/turf/open/floor/trot, +/area/engineering/main) +"Uv" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 4 + }, +/turf/open/floor/trot, +/area/mine/production) +"Uw" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"UL" = ( +/obj/effect/turf_decal/weather/dirt{ + dir = 4 + }, +/obj/effect/turf_decal/weather/dirt{ + dir = 8 + }, +/turf/open/genturf, +/area/rust_zone) +"UM" = ( +/obj/structure/table/rospilovo, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"UV" = ( +/obj/structure/cable, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"Vf" = ( +/turf/open/floor/carpet/red, +/area/service/bar) +"VQ" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/blue, +/area/service/bar) +"VY" = ( +/obj/machinery/camera{ + c_tag = "Processing Area Room"; + dir = 8; + network = list("mine") + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = 28 + }, +/turf/open/floor/trot, +/area/mine/production) +"Wf" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/closed/wall/rust, +/area/mine/production) +"WD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"WO" = ( +/obj/structure/table/rospilovo, +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"WS" = ( +/turf/open/floor/rospilovo/wood, +/area/engineering/storage) +"WZ" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/mine/storage) +"Xa" = ( +/obj/effect/turf_decal/weather/dirt, +/turf/open/floor/stone, +/area/rust_zone) +"Xc" = ( +/obj/effect/baseturf_helper/beach/raw_stone, +/turf/open/genturf, +/area/rust_zone) +"Xn" = ( +/turf/closed/wall/rospilovo/bricks, +/area/engineering/main) +"Xt" = ( +/obj/effect/turf_decal/trimline/white/line, +/obj/effect/turf_decal/trimline/white/line{ + dir = 1; + icon_state = "trimline" + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Xw" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Xz" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/blue, +/area/service/bar) +"XD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"XM" = ( +/turf/closed/wall/rust, +/area/mine/production) +"XT" = ( +/obj/structure/table/rospilovo, +/obj/item/card/id/departmental_budget/eng, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"XU" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"XX" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"Yr" = ( +/obj/structure/table/rospilovo, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 12 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"Yv" = ( +/obj/structure/chair/sofa/corp{ + dir = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"YS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/resource_spawner/rich, +/turf/open/floor/plating/rust, +/area/rust_zone) +"YZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/rospilovo/wood, +/area/engineering/main) +"Ze" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/service/bar) +"Zh" = ( +/obj/structure/resource_spawner/rich, +/turf/open/floor/grass/gensgrass, +/area/rust_zone) +"Zi" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/rospilovo, +/area/rust_zone) +"Zs" = ( +/turf/open/floor/plasteel/dark, +/area/mine/storage) +"ZJ" = ( +/obj/effect/turf_decal/siding/wideplating_new{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plating/grass/jungle, +/area/rust_zone) + +(1,1,1) = {" +Xc +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(2,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(3,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(4,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(5,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(6,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(7,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(8,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(9,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(10,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(11,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(12,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(13,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(14,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(15,1,1) = {" +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(16,1,1) = {" +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(17,1,1) = {" +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(18,1,1) = {" +dR +dR +dR +dR +hx +ot +ot +ot +ot +zl +ot +ot +ot +ot +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(19,1,1) = {" +dR +dR +dR +dR +hx +ot +ot +ot +ot +xW +zl +zl +zl +zl +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +ah +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(20,1,1) = {" +dR +dR +dR +dR +jE +ot +ot +ot +ot +ot +zl +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +zl +ay +ah +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(21,1,1) = {" +dR +dR +dR +dR +Af +ot +ot +ot +ot +zl +zl +RC +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +AO +AO +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +ah +cm +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(22,1,1) = {" +dR +dR +dR +dR +Jq +ot +ot +ot +ot +zl +zl +zl +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +zH +wA +wA +Tp +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(23,1,1) = {" +dR +dR +dR +dR +dR +ot +ot +ot +ot +zl +ot +zl +zl +ot +ot +ot +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +lW +wA +wA +wA +wA +Tp +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(24,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +ot +ot +zl +ot +ot +zl +zl +ot +ot +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +sT +Xa +wA +wA +wA +wA +wA +Gn +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +KF +xZ +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(25,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +ot +zl +ot +ot +ot +zl +zl +ot +ot +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +sT +dX +uJ +er +sI +sT +Zi +er +sI +sT +Zi +er +er +er +er +er +er +Ik +wA +wA +wA +wA +Tp +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(26,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +zl +ot +ot +ot +ot +zl +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +sT +WO +Ij +Ij +op +sT +uY +Ij +op +sT +uY +Ij +Ij +Ij +Ij +Ij +Ij +Ij +Ik +wA +wA +wA +wA +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(27,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +zl +zl +zl +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +sT +WO +Ij +Ij +op +sT +dV +Lh +dV +sT +uQ +sp +sp +sp +sp +sp +sp +Ey +Ij +Ik +wA +wA +zu +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(28,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +ot +ot +zl +zl +zl +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +sT +uY +Ij +Ij +op +Xn +Xn +Jb +Xn +Xn +rS +Xn +Xn +rS +Xn +Xn +sT +uY +Ij +lH +wA +Gq +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(29,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +ot +ot +zl +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +sT +uY +Ij +Ij +op +Xn +YZ +Gm +Gm +Ns +vC +Re +TQ +BE +jf +Xn +sT +uY +Ij +Ij +kl +zl +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(30,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +ot +ot +zl +zl +zl +ot +ot +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +sT +uY +Ij +Ij +Bh +rS +pd +Gm +Gm +hS +hS +hS +hS +hS +bM +rS +sT +uY +Ij +Ij +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(31,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +ot +ot +zl +ot +zl +ot +ot +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +sT +tY +dS +sp +Sa +Xn +UM +Gm +Gm +hS +zL +rA +rA +Oj +cQ +Xn +sT +uY +Ij +Ij +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +uY +Xt +op +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(32,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +ot +ot +ot +ot +ot +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +dR +dR +sT +LX +LX +LX +LX +Xn +Yr +Gm +Gm +hS +bA +vw +vw +aN +rA +Uu +er +al +Ij +Ij +er +er +er +er +er +er +er +er +er +er +er +er +er +er +er +al +Ij +Ij +yK +yK +yK +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(33,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +ot +zl +ot +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +sT +LX +ca +gH +xY +Xn +nQ +Gm +Gm +hS +Gz +vw +vw +vw +vw +Uu +Ij +Ij +Ij +Ij +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +pJ +Ij +Ij +lH +wA +wA +wA +xB +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(34,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +ot +zl +ot +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +dR +sT +gN +WS +WS +WS +Xn +aF +Gm +Gm +hS +bA +vw +vw +qK +jg +Uu +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +sp +Ey +Ij +uZ +wA +wA +wA +yQ +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(35,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +zl +ot +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +sT +LX +Qr +xd +Hu +GA +UV +Gm +Gm +hS +wB +jg +jg +Mn +ue +Xn +sT +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +gJ +wA +wA +wA +wA +wA +wA +wA +xB +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(36,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +sT +gN +uc +bV +WS +Xn +Uw +Gm +Gm +hS +hS +hS +hS +hS +MT +rS +sT +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +gJ +wA +wA +wA +wA +wA +wA +wA +yQ +zl +zl +zl +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(37,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +ot +zl +ot +ot +ot +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +sT +LX +AH +bV +aD +Xn +XT +Gm +Gm +JE +bq +fZ +Al +Mb +ge +Xn +sT +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +gJ +wA +wA +zu +mn +wA +wA +wA +wA +xB +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(38,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +sT +LX +LX +gN +LX +Xn +Xn +Jb +Xn +Xn +rS +Xn +Xn +rS +Xn +Xn +sT +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +Ik +wA +Gn +dR +dR +mn +wA +wA +xB +zl +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(39,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +sT +sT +sT +sT +sT +sT +qi +Lh +qi +sT +sT +sT +sT +sT +sT +sT +sT +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +Ij +Ds +dR +dR +dR +dR +Ds +Ds +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(40,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +ds +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(41,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +ot +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(42,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +ot +ot +ot +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +xZ +KF +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +xZ +xZ +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +zl +zl +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(43,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +zl +zl +zl +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +uY +Xt +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(44,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +AO +bk +Xt +op +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(45,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +lW +wA +wA +yT +op +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(46,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zH +wA +wA +wA +TX +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +KF +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(47,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +lW +wA +wA +wA +wA +TX +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +zl +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(48,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zH +wA +wA +wA +Mw +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +dR +dR +xZ +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(49,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +lW +wA +wA +wA +wA +iR +op +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(50,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +BJ +wA +wA +wA +AW +Xt +bk +AO +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +dR +dR +dR +dR +dR +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(51,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +ix +ix +UL +Ij +CT +wA +wA +Tn +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(52,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +qy +Zh +jO +wA +zr +PC +wA +wA +wA +Gn +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(53,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +wi +wA +wA +wA +wA +wA +wA +wA +my +xZ +xZ +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(54,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +BJ +wA +wA +wA +wA +wA +wA +wA +zu +xZ +xZ +xZ +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(55,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +JU +wA +wA +wA +wA +wA +Aq +dR +dR +dR +dR +xZ +xZ +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(56,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +JU +wA +wA +wA +Aq +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(57,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +EU +ix +ix +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +mw +xZ +xZ +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(58,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +eI +ds +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(59,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +zl +zl +zl +zl +zl +zl +zl +RC +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +Lm +QN +ds +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(60,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +xZ +xZ +dR +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(61,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +zl +zl +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(62,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(63,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +QN +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +zl +zl +zl +zl +zl +dR +zl +zl +zl +dR +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(64,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +QN +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +xZ +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(65,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +Lm +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(66,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(67,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(68,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(69,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(70,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(71,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +xZ +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(72,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(73,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(74,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(75,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(76,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(77,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +ay +zl +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(78,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(79,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +QN +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(80,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(81,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(82,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +Zh +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +zl +xZ +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(83,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(84,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(85,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(86,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(87,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(88,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(89,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(90,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(91,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(92,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(93,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(94,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(95,1,1) = {" +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(96,1,1) = {" +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(97,1,1) = {" +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +ot +ot +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(98,1,1) = {" +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(99,1,1) = {" +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(100,1,1) = {" +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(101,1,1) = {" +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(102,1,1) = {" +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(103,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(104,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +ot +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(105,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +ot +ot +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(106,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(107,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +hx +ds +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(108,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +ot +ot +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(109,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +ot +ot +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(110,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +ot +zl +zl +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(111,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(112,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(113,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(114,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(115,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(116,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(117,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +ds +zl +zl +zl +zl +zl +zl +zl +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +lE +lE +lE +lE +ot +ot +ot +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(118,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dW +ma +ma +FJ +DR +oR +cx +bH +MW +ot +ot +ot +ot +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(119,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dW +dW +zp +aY +aY +aY +Ow +lG +aY +aY +aY +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(120,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +ot +ot +ot +dW +dW +jt +aY +aY +OG +XD +hu +Lt +XD +iZ +aY +aY +ot +ot +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(121,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +ot +ot +ot +ot +PY +aY +aY +aY +XU +hH +yh +kp +yh +yh +XX +uK +aY +aY +aY +ot +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(122,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +ot +ot +ot +ot +YS +aY +Xz +SN +xE +tZ +on +Ih +on +on +FX +Bq +Yv +Uo +aY +ot +ot +ot +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(123,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +qj +aY +aY +VQ +gn +gn +Ih +Ih +Ih +on +on +on +AD +AD +yv +aY +aY +Ar +ot +dR +dR +dR +zl +zl +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(124,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +uU +aY +tg +OV +OV +Ih +Ih +WD +Lt +Lt +GB +on +on +Vf +Vf +on +aY +ZJ +ot +dR +dR +dR +zl +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(125,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +uU +re +on +gc +CI +on +WD +AX +ac +ac +lV +GB +on +dD +Gj +on +pX +ZJ +ot +ot +dR +dR +dR +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +KF +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(126,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +uU +dp +Ze +iy +Eb +WD +AX +GT +vG +rg +Nr +lV +GB +hh +Ze +iy +kg +ZJ +ot +ot +ot +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +qy +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(127,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +uU +TW +xf +iq +Xw +fW +ac +vG +IQ +sr +rg +ac +Gr +Xw +xf +iq +pF +ZJ +ot +ot +ot +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +qa +xZ +dR +xZ +xZ +xZ +Lm +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(128,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +zl +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +uU +su +xf +iq +Xw +fW +ac +ra +bh +FC +GM +ac +Gr +Xw +xf +iq +Qe +ZJ +ot +ot +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +Lm +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(129,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +uU +Rs +vz +gm +Fd +FX +LE +tV +ra +GM +vU +lQ +tZ +Xw +vz +gm +oG +ZJ +ot +ot +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +zl +dR +dR +ot +ot +ot +ot +ot +dR +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +Zh +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(130,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +uU +ED +on +Ci +NE +on +FX +LE +ac +ac +lQ +tZ +on +CI +PM +on +iS +ZJ +ot +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +dR +ot +ot +zl +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +QN +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(131,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +uU +aY +on +JN +JN +on +on +FX +yh +yh +tZ +on +on +tj +tj +on +aY +ZJ +ot +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(132,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +IN +aY +aY +Ad +Ec +Ec +on +on +on +on +on +on +xv +xv +iX +aY +aY +wz +ot +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +ot +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(133,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +aY +bT +oY +ER +GB +on +on +on +on +WD +NP +tW +Aj +aY +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +ds +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +ot +ot +ot +ot +ot +ot +ot +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(134,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +aY +aY +aY +LC +cF +Lt +Lt +Lt +Lt +hH +hb +aY +aY +aY +ot +ot +xZ +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +ot +ot +ot +ot +ot +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(135,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +aY +aY +Bf +aC +yh +yh +aC +AE +aY +aY +ot +ot +ot +ot +xZ +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(136,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +aY +aY +aY +lG +lG +aY +aY +aY +ot +ot +ot +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +ot +zl +zl +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(137,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +nH +ui +Dv +Dv +ui +jP +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(138,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +ot +ot +ot +lE +lE +lE +lE +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(139,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +ot +ot +ot +ot +ot +ot +ot +ot +ot +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +"} +(140,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +"} +(141,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +"} +(142,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +ot +ot +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +"} +(143,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +"} +(144,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +"} +(145,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +"} +(146,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +aV +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(147,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +aV +xZ +dR +dR +dR +dR +dR +dR +dR +"} +(148,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +zM +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +"} +(149,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +aV +xZ +IJ +xZ +dR +dR +dR +dR +dR +dR +dR +"} +(150,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +aV +dR +dR +dR +dR +dR +dR +dR +"} +(151,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(152,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(153,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(154,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(155,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ot +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +cL +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(156,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(157,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +rz +dR +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(158,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(159,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(160,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(161,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(162,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +Hq +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(163,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(164,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +cL +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(165,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(166,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(167,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(168,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(169,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(170,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +sK +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(171,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +ay +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(172,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +dR +dR +dR +dR +sK +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(173,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(174,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(175,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(176,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +ds +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(177,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(178,1,1) = {" +Hz +Lh +Lh +Lh +rW +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(179,1,1) = {" +Hz +Lh +fL +fU +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(180,1,1) = {" +Hz +Lh +fL +fU +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +xZ +dR +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(181,1,1) = {" +Hz +Lh +fL +fL +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(182,1,1) = {" +Hz +Lh +du +du +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(183,1,1) = {" +Hz +Lh +lK +lK +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(184,1,1) = {" +Hz +Lh +Lh +Lh +Lh +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(185,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(186,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(187,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +xZ +xZ +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +dR +dR +zl +zl +zl +zl +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(188,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(189,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(190,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(191,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(192,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(193,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(194,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(195,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(196,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(197,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(198,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zx +xZ +rK +zl +zl +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(199,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +RC +zl +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(200,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +ay +zl +zl +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(201,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +ds +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(202,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(203,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +Zh +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(204,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(205,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(206,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(207,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(208,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(209,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(210,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(211,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(212,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(213,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(214,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +zl +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(215,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +zl +zl +KF +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(216,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +rK +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(217,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +Zh +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(218,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +QN +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(219,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +zl +zl +zl +zl +zl +xZ +zl +zl +zl +zl +xZ +xZ +zl +zl +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(220,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +RC +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(221,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(222,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(223,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +Hn +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +zl +zl +xZ +xZ +xZ +xZ +qy +qy +Zh +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(224,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +zl +zl +dR +dR +xZ +xZ +dR +zl +zl +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +CM +CM +xM +CM +CM +CM +xM +CM +CM +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(225,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +xZ +xZ +xZ +dR +zl +zl +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +CM +fo +Zs +Gc +mq +EL +Sv +Zs +Ql +CM +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(226,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +RC +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +xZ +xZ +dR +dR +zl +zl +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +CM +Nh +Gc +kf +Gc +Gc +Gc +Gc +hy +CM +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(227,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +zl +zl +zl +zl +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +zl +zl +zl +dR +dR +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xM +Ed +Gc +tO +cD +Gc +Ea +Zs +ok +CM +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(228,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +zl +zl +xZ +zl +xZ +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +xZ +qy +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +zl +zl +zl +zl +dR +dR +dR +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +CM +ck +Ed +Ay +zn +Ed +ON +Zs +CJ +xM +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(229,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +zl +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xM +Zs +Zs +Gc +yb +Kv +Zs +Gc +uT +CM +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(230,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +dR +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +CM +pS +La +ed +ks +Ed +Zs +Zs +QK +CM +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(231,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +CM +CM +CM +CM +WZ +nX +CM +CM +CM +CM +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(232,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +zl +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +zl +zl +vT +XM +GH +JB +JV +gE +xm +tL +Uh +TM +XM +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(233,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +zl +xZ +xZ +zl +zl +Uv +XM +Tq +BY +BY +gE +JV +JV +JV +JV +XM +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(234,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +zl +zl +zl +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +zl +JQ +kX +bU +JV +Ee +gE +xD +JV +JV +IC +OQ +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(235,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zx +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +zl +ur +XM +Uf +JV +JV +JV +JV +JV +XM +lU +XM +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(236,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +dR +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +zl +zl +zl +zl +xZ +ns +XM +eZ +JV +VY +ne +Dc +yY +OQ +Ms +XM +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(237,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +dR +dR +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +zl +zl +xZ +xZ +xZ +zl +zl +zl +xZ +QN +XM +sh +SB +ki +OQ +uy +OQ +OQ +Ms +XM +dR +dR +xZ +dR +dR +dR +dR +dR +dR +zl +zl +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +xZ +xZ +xZ +KF +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(238,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +Lm +XM +Ax +Ho +pw +bl +KA +bl +bl +AA +XM +xZ +dR +dR +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(239,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +Wf +OQ +XM +XM +XM +XM +XM +OQ +XM +XM +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +zl +zl +zl +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +"} +(240,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +"} +(241,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +"} +(242,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +"} +(243,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +xZ +xZ +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +"} +(244,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +xZ +xZ +zl +zl +zl +rK +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(245,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +xZ +dR +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(246,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +zl +zl +zl +xZ +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(247,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +dR +"} +(248,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +"} +(249,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +xZ +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +"} +(250,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +"} +(251,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +zl +zl +zl +zl +zl +zl +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(252,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(253,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +dR +"} +(254,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +qy +dR +dR +dR +dR +"} +(255,1,1) = {" +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +Hz +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +xZ +dR +dR +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +xZ +dR +dR +xZ +xZ +xZ +xZ +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +zl +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +xZ +xZ +dR +dR +dR +dR +"} diff --git "a/_maps/rusty/\320\235\320\276\320\262\321\213\320\271 \321\202\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271 \320\264\320\276\320\272\321\203\320\274\320\265\320\275\321\202.txt" "b/_maps/rusty/\320\235\320\276\320\262\321\213\320\271 \321\202\320\265\320\272\321\201\321\202\320\276\320\262\321\213\320\271 \320\264\320\276\320\272\321\203\320\274\320\265\320\275\321\202.txt" new file mode 100644 index 000000000000..e69de29bb2d1 diff --git a/_maps/shuttles/arrival_box.dmm b/_maps/shuttles/arrival_box.dmm index 3765d622ef15..2498647bd033 100644 --- a/_maps/shuttles/arrival_box.dmm +++ b/_maps/shuttles/arrival_box.dmm @@ -6,228 +6,350 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/arrival) "c" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" - }, /obj/structure/fans/tiny, -/turf/open/floor/plating, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock" + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "d" = ( -/obj/effect/spawner/structure/window/shuttle, +/obj/structure/window/shuttle, +/obj/structure/grille, /turf/open/floor/plating, /area/shuttle/arrival) "e" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" }, -/obj/item/crowbar, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27; - pixel_y = 1 +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 }, -/turf/open/floor/mineral/titanium/blue, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "f" = ( -/turf/open/floor/mineral/titanium/blue, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "g" = ( -/obj/effect/spawner/randomarcade, -/obj/machinery/light{ - dir = 1 +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "h" = ( -/obj/structure/closet/wardrobe/green{ - anchored = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "i" = ( -/obj/structure/closet/wardrobe/black{ - anchored = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "j" = ( -/obj/structure/closet/wardrobe/mixed{ - anchored = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "k" = ( -/obj/structure/closet/wardrobe/grey{ - anchored = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/arrival) "l" = ( -/obj/machinery/requests_console{ - department = "Arrival shuttle"; - name = "Arrivals Shuttle console"; - pixel_y = 30 - }, /obj/machinery/light{ - dir = 1 + dir = 1; + use_power = 0 }, -/obj/structure/closet/firecloset, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/chair/comfy/shuttle, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "m" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, /obj/structure/shuttle/engine/heater{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/plating/airless, +/obj/structure/sign/warning/fire, +/turf/open/floor/plating, /area/shuttle/arrival) "n" = ( /obj/structure/shuttle/engine/propulsion/burst/right{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/arrival) "o" = ( -/obj/machinery/computer/shuttle_flight{ - dir = 4 +/obj/effect/turf_decal/stripes/end{ + dir = 8 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "p" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/item/radio/intercom{ - pixel_x = 29 - }, /obj/machinery/light{ dir = 4; - icon_state = "tube" + icon_state = "tube"; + use_power = 0 }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "q" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - use_power = 0 - }, -/turf/closed/wall/mineral/titanium, +/turf/closed/wall/mineral/plastitanium, /area/shuttle/arrival) "r" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "s" = ( /obj/structure/shuttle/engine/propulsion{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/arrival) "t" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock" }, -/obj/structure/cable, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "u" = ( /obj/structure/shuttle/engine/propulsion{ dir = 4 }, /obj/docking_port/mobile/arrivals, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/arrival) "v" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "w" = ( -/obj/machinery/computer/monitor{ - dir = 4 +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "x" = ( -/obj/structure/closet/emcloset{ - anchored = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, /area/shuttle/arrival) "y" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /obj/machinery/light{ dir = 4; - icon_state = "tube" + icon_state = "tube"; + use_power = 0 + }, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 }, -/obj/structure/cable, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "z" = ( /obj/item/radio/intercom{ name = "Station Intercom (General)"; pixel_y = -29 }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, +/obj/machinery/light{ + use_power = 0 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "A" = ( /obj/structure/shuttle/engine/propulsion/burst/left{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/arrival) "B" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium/blue, +/obj/machinery/light{ + use_power = 0 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "C" = ( -/obj/machinery/light_switch{ - pixel_x = 6 - }, -/turf/closed/wall/mineral/titanium, +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/arrival) "D" = ( -/obj/structure/cable, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"E" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/arrival) +"H" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"I" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"L" = ( +/obj/machinery/vending/wallmed{ + use_power = 0 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/arrival) +"M" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/arrival) +"N" = ( +/obj/machinery/requests_console{ + department = "Arrival shuttle"; + name = "Arrivals Shuttle console" + }, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/arrival) "O" = ( -/obj/structure/cable, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "Q" = ( -/obj/structure/chair/comfy/shuttle{ +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/structure/cable, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"R" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = 8 + }, +/obj/item/flashlight, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "S" = ( -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "U" = ( -/obj/machinery/door/airlock/titanium{ - name = "Arrivals Shuttle Airlock" +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/arrival) +"Y" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 }, -/obj/structure/fans/tiny, -/obj/structure/cable, -/turf/open/floor/plating, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/arrival) +"Z" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) (1,1,1) = {" @@ -249,83 +371,83 @@ b a "} (3,1,1) = {" -a b +U p O y +U b -a "} (4,1,1) = {" -b +k b b t -C b b +k "} (5,1,1) = {" -b +U e -S -O -S -x -b +R +o +E +e +U "} (6,1,1) = {" c -f -r -Q +D +H +Z Q D -U +c "} (7,1,1) = {" b -g -f -f -f +l +r +Y +i B -q +b "} (8,1,1) = {" d h r -r -r +N +i f d "} (9,1,1) = {" d +h +r +x i f -f -f -f d "} (10,1,1) = {" d -j -r -r +h r +x +i f d "} (11,1,1) = {" d -k -f -f -f +h +r +L +i f d "} @@ -333,35 +455,35 @@ d b l r -r -r +Y +i z b "} (13,1,1) = {" c -f -S -S +j +I S -f +g +j c "} (14,1,1) = {" -b -m -m -m +C m +M +M +M m -b +C "} (15,1,1) = {" -a +q n s u s A -a +q "} diff --git a/_maps/shuttles/arrival_delta.dmm b/_maps/shuttles/arrival_delta.dmm index 7d52faaf6503..d4e82f800ff6 100644 --- a/_maps/shuttles/arrival_delta.dmm +++ b/_maps/shuttles/arrival_delta.dmm @@ -14,10 +14,7 @@ "c" = ( /obj/docking_port/mobile/arrivals{ dir = 2; - dwidth = 4; - height = 17; - name = "delta arrivals shuttle"; - width = 9 + name = "delta arrivals shuttle" }, /turf/closed/wall/mineral/plastitanium, /area/shuttle/arrival) diff --git a/_maps/shuttles/arrival_donut.dmm b/_maps/shuttles/arrival_donut.dmm index 8c7001c6f386..a74ee63e8247 100644 --- a/_maps/shuttles/arrival_donut.dmm +++ b/_maps/shuttles/arrival_donut.dmm @@ -23,7 +23,7 @@ /turf/open/floor/mineral/titanium, /area/shuttle/arrival) "f" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/mineral/titanium/blue, /area/shuttle/arrival) "g" = ( @@ -69,7 +69,6 @@ }, /obj/docking_port/mobile/arrivals{ dir = 2; - height = 13; name = "donut arrivals shuttle" }, /turf/open/floor/plating/airless, diff --git a/_maps/shuttles/arrival_kilo.dmm b/_maps/shuttles/arrival_kilo.dmm index 3020dadd3bc0..30351d2acdee 100644 --- a/_maps/shuttles/arrival_kilo.dmm +++ b/_maps/shuttles/arrival_kilo.dmm @@ -16,6 +16,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "e" = ( @@ -94,10 +95,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "m" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -131,21 +128,7 @@ /obj/item/flashlight, /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) -"q" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/white, -/area/shuttle/arrival) "r" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -154,13 +137,6 @@ }, /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) -"s" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/mineral/titanium/white, -/area/shuttle/arrival) "t" = ( /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/corner{ @@ -208,10 +184,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "w" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -259,10 +231,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "C" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/item/radio/intercom{ pixel_x = 28 }, @@ -284,20 +252,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "E" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line{ dir = 4 }, /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "F" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "G" = ( @@ -316,20 +276,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "I" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "J" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -337,10 +289,6 @@ /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) "K" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/titanium/white, /area/shuttle/arrival) @@ -369,10 +317,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/arrival) "O" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, /obj/effect/turf_decal/stripes/corner{ dir = 4 }, @@ -413,7 +357,7 @@ c d m r -q +I J m f @@ -422,7 +366,7 @@ f e j w -s +F K x e @@ -458,18 +402,18 @@ f c l w -s +F K B c "} (10,1,1) = {" d -q +I C E O -q +I f "} (11,1,1) = {" diff --git a/_maps/shuttles/arrival_omega.dmm b/_maps/shuttles/arrival_omega.dmm index b51caf3517dc..798a681187e7 100644 --- a/_maps/shuttles/arrival_omega.dmm +++ b/_maps/shuttles/arrival_omega.dmm @@ -14,10 +14,7 @@ "c" = ( /obj/docking_port/mobile/arrivals{ dir = 2; - dwidth = 2; - height = 16; - name = "omega arrivals shuttle"; - width = 5 + name = "omega arrivals shuttle" }, /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/arrival) diff --git a/_maps/shuttles/arrival_pubby.dmm b/_maps/shuttles/arrival_pubby.dmm index c8e6427adde2..1441c13534ed 100644 --- a/_maps/shuttles/arrival_pubby.dmm +++ b/_maps/shuttles/arrival_pubby.dmm @@ -95,9 +95,7 @@ dir = 4 }, /obj/docking_port/mobile/arrivals{ - height = 13; - name = "pubby arrivals shuttle"; - width = 6 + name = "pubby arrivals shuttle" }, /turf/open/floor/plating/airless, /area/shuttle/arrival) diff --git a/_maps/shuttles/arrival_unit.dmm b/_maps/shuttles/arrival_unit.dmm index 20a2e40109cb..6d808bc4a886 100644 --- a/_maps/shuttles/arrival_unit.dmm +++ b/_maps/shuttles/arrival_unit.dmm @@ -98,7 +98,7 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/arrival) "v" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/machinery/light{ dir = 1 }, diff --git a/_maps/shuttles/assault_pod_default.dmm b/_maps/shuttles/assault_pod_default.dmm index 2de286d793fc..be8b29ef8ba3 100644 --- a/_maps/shuttles/assault_pod_default.dmm +++ b/_maps/shuttles/assault_pod_default.dmm @@ -1,4 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) "b" = ( /obj/machinery/porta_turret/syndicate/pod, /turf/closed/wall/mineral/plastitanium, @@ -7,6 +11,9 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/assault_pod) "d" = ( @@ -21,15 +28,39 @@ /obj/docking_port/mobile/assault_pod{ name = "steel rain"; port_direction = 4; - preferred_direction = 4 + preferred_direction = 4; + shuttle_object_type = /datum/orbital_object/shuttle/stealth/steel_rain }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/assault_pod) +"f" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) "h" = ( /obj/machinery/computer/shuttle_flight/syndicate/drop_pod, /turf/closed/wall/mineral/plastitanium, /area/shuttle/assault_pod) +"i" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"j" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) "p" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/assault_pod) "t" = ( @@ -38,26 +69,85 @@ name = "Assault Pod"; req_access_txt = "150" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/assault_pod) +"w" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"z" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"A" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"B" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) "D" = ( /obj/structure/chair/comfy/shuttle, /obj/machinery/light{ dir = 1 }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"E" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"F" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/assault_pod) "H" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/assault_pod) +"I" = ( +/obj/machinery/shuttle/engine/void{ + dir = 8 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/assault_pod) "L" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, /obj/machinery/light, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/assault_pod) +"O" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/assault_pod) "R" = ( @@ -65,18 +155,35 @@ name = "Assault Pod"; req_access_txt = "150" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/assault_pod) +"U" = ( +/obj/machinery/shuttle/engine/void{ + dir = 1 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/assault_pod) "V" = ( /turf/template_noop, /area/template_noop) +"X" = ( +/obj/machinery/shuttle/engine/void, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/assault_pod) +"Z" = ( +/obj/machinery/shuttle/engine/void{ + dir = 4 + }, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/assault_pod) (1,1,1) = {" V b -d +Z t -d +Z b V "} @@ -84,19 +191,19 @@ V b d c -p -c +i +F d b "} (3,1,1) = {" -d +X c -p -H -p -c -d +j +f +w +F +U "} (4,1,1) = {" R @@ -104,33 +211,33 @@ p L h D -p +a e "} (5,1,1) = {" -d -H -p -c -p +X H -d +O +A +E +z +U "} (6,1,1) = {" b d H -p -H +B +z d b "} (7,1,1) = {" V b -d +I t -d +I b V "} diff --git a/_maps/shuttles/capsule_traitor.dmm b/_maps/shuttles/capsule_traitor.dmm new file mode 100644 index 000000000000..10c4f84af139 --- /dev/null +++ b/_maps/shuttles/capsule_traitor.dmm @@ -0,0 +1,309 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/three, +/obj/item/pickaxe/emergency, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"c" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/centcom{ + name = "Shuttle Airlock"; + req_access_txt = "" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"f" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"h" = ( +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"i" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/apc/ten_k/directional/west, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"j" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"k" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/toy/nuke, +/obj/item/toy/cards/deck/syndicate, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"m" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/pod_shuttle) +"n" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance/two, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"o" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/autolathe/hacked, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"q" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/mapping_helpers/auto_wrench, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"s" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"t" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"x" = ( +/obj/machinery/atmospherics/components/unary/shuttle/engine_heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"z" = ( +/obj/machinery/computer/shuttle_flight/custom_shuttle/bluespace_pod/traitor, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"A" = ( +/obj/machinery/shuttle/engine/plasma{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"B" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/stack/sheet/mineral/plasma/five, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"C" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"D" = ( +/obj/machinery/computer/crew/syndie, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"K" = ( +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"M" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) +"N" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/centcom{ + name = "Shuttle Airlock"; + req_access_txt = "" + }, +/obj/docking_port/mobile{ + dir = 8; + shuttle_object_type = /datum/orbital_object/shuttle/custom_shuttle + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"P" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/plasma_refiner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"Q" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/mob/living/simple_animal/hostile/carp/cayenne, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"S" = ( +/turf/template_noop, +/area/template_noop) +"T" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"V" = ( +/obj/machinery/computer/camera_advanced/syndie, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"W" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/shuttle/pod_shuttle) +"X" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/pod_shuttle) +"Y" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/pod_shuttle) + +(1,1,1) = {" +S +j +T +j +j +T +c +j +j +j +S +"} +(2,1,1) = {" +T +T +k +s +i +f +f +f +P +m +m +"} +(3,1,1) = {" +T +V +M +h +h +h +h +K +Q +x +A +"} +(4,1,1) = {" +T +z +t +h +n +B +b +K +W +x +A +"} +(5,1,1) = {" +T +D +M +h +h +h +h +K +C +x +A +"} +(6,1,1) = {" +T +T +Y +o +X +f +f +f +q +m +m +"} +(7,1,1) = {" +S +j +T +j +j +T +N +j +j +j +S +"} diff --git a/_maps/shuttles/cargo_birdboat.dmm b/_maps/shuttles/cargo_birdboat.dmm index 6b935c4a3d60..d59104a46f42 100644 --- a/_maps/shuttles/cargo_birdboat.dmm +++ b/_maps/shuttles/cargo_birdboat.dmm @@ -67,6 +67,7 @@ id = "cargoshuttle"; name = "cargo shuttle conveyor belt" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "n" = ( @@ -77,6 +78,7 @@ name = "Supply Shuttle Airlock"; req_access_txt = "31" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "p" = ( @@ -105,10 +107,8 @@ name = "Supply Shuttle Airlock"; req_access_txt = "31" }, -/obj/docking_port/mobile/supply{ - dwidth = 3; - width = 10 - }, +/obj/docking_port/mobile/supply, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "r" = ( @@ -121,6 +121,7 @@ id = "cargoshuttle"; name = "cargo shuttle conveyor belt" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "u" = ( diff --git a/_maps/shuttles/cargo_box.dmm b/_maps/shuttles/cargo_box.dmm index 90db53cadf5b..584d8f074330 100644 --- a/_maps/shuttles/cargo_box.dmm +++ b/_maps/shuttles/cargo_box.dmm @@ -14,6 +14,7 @@ id = "QMLoaddoor2"; name = "supply dock loading door" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "g" = ( @@ -21,6 +22,7 @@ name = "Supply Shuttle Airlock"; req_access_txt = "31" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "h" = ( @@ -47,6 +49,7 @@ req_access_txt = "31" }, /obj/docking_port/mobile/supply, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "j" = ( @@ -58,6 +61,7 @@ id = "QMLoaddoor"; name = "supply dock loading door" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "l" = ( diff --git a/_maps/shuttles/cargo_delta.dmm b/_maps/shuttles/cargo_delta.dmm index 2b651a60e08f..c3d8d3c675bc 100644 --- a/_maps/shuttles/cargo_delta.dmm +++ b/_maps/shuttles/cargo_delta.dmm @@ -91,8 +91,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/docking_port/mobile/supply{ - dir = 4; - dwidth = 4 + dir = 4 }, /obj/structure/fans/tiny, /turf/open/floor/plating, diff --git a/_maps/shuttles/cargo_kilo.dmm b/_maps/shuttles/cargo_kilo.dmm index 928d3d7b3264..03ff32994bee 100644 --- a/_maps/shuttles/cargo_kilo.dmm +++ b/_maps/shuttles/cargo_kilo.dmm @@ -3,67 +3,39 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/supply) "b" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "c" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "d" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "e" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 10 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "f" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/corner{ dir = 8 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "g" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "h" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -79,6 +51,7 @@ id = "QMLoad"; name = "off ramp" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "j" = ( @@ -88,10 +61,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/supply) "k" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, @@ -101,10 +70,6 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "l" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -120,16 +85,12 @@ }, /obj/effect/decal/cleanable/dirt, /obj/docking_port/mobile/supply{ - dir = 4; - dwidth = 4 + dir = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/supply) "n" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -139,20 +100,12 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "o" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/corner{ dir = 1 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "p" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -175,10 +128,6 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "q" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -193,13 +142,10 @@ req_access_txt = "31" }, /obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/supply) "s" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -216,6 +162,7 @@ id = "QMLoad2"; name = "on ramp" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/supply) "u" = ( @@ -225,28 +172,16 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/supply) "v" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/end{ dir = 8 }, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "w" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/corner, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) "x" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -257,10 +192,6 @@ /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/supply) "z" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/supply) diff --git a/_maps/shuttles/cargo_partyhard.dmm b/_maps/shuttles/cargo_partyhard.dmm index 21faa1b483d1..02d691085ce9 100644 --- a/_maps/shuttles/cargo_partyhard.dmm +++ b/_maps/shuttles/cargo_partyhard.dmm @@ -3,33 +3,31 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/supply) "b" = ( -/turf/open/floor/partyhard/steel, +/turf/open/floor/partyhard/steel/reinforced, /area/shuttle/supply) "c" = ( /obj/docking_port/mobile/supply{ - dir = 4; - dwidth = 7; - height = 5; - width = 15 + dir = 4 }, /obj/machinery/door/airlock/titanium{ name = "Supply Shuttle Airlock"; req_access_txt = "31" }, -/turf/open/floor/partyhard/steel, +/obj/structure/fans/tiny, +/turf/open/floor/partyhard/steel/reinforced, /area/shuttle/supply) "d" = ( /obj/machinery/light{ - icon_state = "tube"; - dir = 8 + dir = 8; + icon_state = "tube" }, -/turf/open/floor/partyhard/steel, +/turf/open/floor/partyhard/steel/reinforced, /area/shuttle/supply) "e" = ( /obj/machinery/light{ dir = 4 }, -/turf/open/floor/partyhard/steel, +/turf/open/floor/partyhard/steel/reinforced, /area/shuttle/supply) (1,1,1) = {" diff --git a/_maps/shuttles/emergency_asteroid.dmm b/_maps/shuttles/emergency_asteroid.dmm index c399f6eb2998..b8ad7aaef9c6 100644 --- a/_maps/shuttles/emergency_asteroid.dmm +++ b/_maps/shuttles/emergency_asteroid.dmm @@ -34,10 +34,7 @@ }, /obj/docking_port/mobile/emergency{ dir = 2; - dwidth = 10; - height = 13; - name = "Asteroid emergency shuttle"; - width = 28 + name = "Asteroid emergency shuttle" }, /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium, diff --git a/_maps/shuttles/emergency_bar.dmm b/_maps/shuttles/emergency_bar.dmm index 505c37c92bfb..c68a2feb7e71 100644 --- a/_maps/shuttles/emergency_bar.dmm +++ b/_maps/shuttles/emergency_bar.dmm @@ -340,7 +340,7 @@ /area/shuttle/escape) "ba" = ( /obj/structure/table/wood/bar, -/obj/effect/spawner/lootdrop/gambling, +/obj/effect/spawner/random/entertainment/gambling, /turf/open/floor/plasteel/grimy, /area/shuttle/escape) "bc" = ( @@ -543,6 +543,7 @@ /obj/item/reagent_containers/food/drinks/shaker, /obj/item/storage/fancy/cigarettes/cigars/havana, /obj/effect/turf_decal/tile/bar, +/obj/item/storage/ashtray/bronze, /obj/effect/turf_decal/tile/bar{ dir = 1 }, diff --git a/_maps/shuttles/emergency_birdboat.dmm b/_maps/shuttles/emergency_birdboat.dmm index eda6e03b9f49..543fd8525c59 100644 --- a/_maps/shuttles/emergency_birdboat.dmm +++ b/_maps/shuttles/emergency_birdboat.dmm @@ -1,125 +1,160 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/turf/closed/wall/mineral/titanium, +"dy" = ( +/obj/machinery/light, +/turf/open/floor/mineral/titanium, /area/shuttle/escape) -"c" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, +"eN" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"fu" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"d" = ( -/obj/structure/table, -/obj/item/scalpel, -/obj/item/retractor{ - pixel_y = 5 +"fx" = ( +/obj/machinery/computer/communications{ + dir = 4 }, -/obj/item/hemostat, -/turf/open/floor/mineral/titanium/white, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"e" = ( +"hl" = ( /obj/structure/table, -/obj/item/cautery, -/obj/item/surgicaldrill, -/obj/item/circular_saw{ - pixel_y = 9 +/obj/machinery/light{ + dir = 1 }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"hC" = ( /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"f" = ( +"iC" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"iO" = ( +/obj/machinery/door/airlock/public/glass, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"g" = ( +"iR" = ( /obj/structure/shuttle/engine/propulsion/right{ dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/escape) -"h" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/escape) -"i" = ( -/obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium/blue, +"iY" = ( +/obj/structure/table/glass, +/obj/item/defibrillator/loaded, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"j" = ( -/turf/open/floor/mineral/titanium/blue, +"jk" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"k" = ( -/obj/item/kirbyplants{ - icon_state = "plant-22" +"kE" = ( +/obj/structure/table, +/obj/item/cautery, +/obj/item/surgicaldrill, +/obj/item/circular_saw{ + pixel_y = 9 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"l" = ( +"kF" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) -"m" = ( -/obj/structure/chair/comfy/shuttle, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/plastitanium/red/brig, -/area/shuttle/escape/brig) -"n" = ( -/obj/structure/table/optable, -/obj/item/surgical_drapes, -/turf/open/floor/mineral/titanium/white, +"ls" = ( +/turf/template_noop, +/area/template_noop) +"lH" = ( +/obj/machinery/door/airlock/titanium, +/turf/open/floor/mineral/titanium, /area/shuttle/escape) -"o" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/white, +"lI" = ( +/turf/closed/wall/mineral/titanium, /area/shuttle/escape) -"p" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 +"mv" = ( +/obj/machinery/door/airlock/command/glass{ + name = "bridge door"; + req_access_txt = "19" }, -/turf/open/floor/plating/airless, +/turf/open/floor/mineral/titanium, /area/shuttle/escape) -"q" = ( -/obj/machinery/computer/communications{ - dir = 4 +"mE" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/window/reinforced, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"r" = ( +"oV" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"qm" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"tL" = ( +/obj/structure/table, +/obj/item/food/chocolatebar, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"tW" = ( +/obj/structure/table/optable, +/obj/item/surgical_drapes, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"vd" = ( +/obj/machinery/door/airlock/titanium, +/obj/docking_port/mobile/emergency{ + dir = 8; + name = "Birdboat emergency escape shuttle"; + port_direction = 4 + }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium, /area/shuttle/escape) -"s" = ( +"vJ" = ( +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"wl" = ( +/obj/structure/table, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"xM" = ( /obj/machinery/door/airlock/command/glass{ name = "bridge door"; req_access_txt = "19" }, /turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"t" = ( -/turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) -"u" = ( -/obj/structure/shuttle/engine/propulsion/left{ +"zG" = ( +/obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/open/floor/plating/airless, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"v" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium, +"AP" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, /area/shuttle/escape) -"w" = ( -/obj/machinery/vending/wallmed{ - name = "Emergency NanoMed"; - use_power = 0 +"BJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/turf/closed/wall/mineral/titanium/nodiagonal, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"x" = ( +"EH" = ( /obj/structure/table, /obj/machinery/recharger{ active_power_usage = 0; @@ -129,58 +164,26 @@ }, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) -"y" = ( -/obj/structure/table, -/obj/item/storage/box/handcuffs, -/turf/open/floor/mineral/plastitanium/red/brig, -/area/shuttle/escape/brig) -"z" = ( +"EY" = ( /obj/machinery/door/airlock/security/glass{ name = "security airlock"; req_access_txt = "63" }, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) -"A" = ( -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/mineral/titanium/white, -/area/shuttle/escape) -"B" = ( -/obj/item/kirbyplants{ - icon_state = "plant-21" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"C" = ( -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"D" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"E" = ( +"FD" = ( /obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"F" = ( -/obj/structure/table, -/obj/machinery/light{ dir = 1 }, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"G" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"H" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 +"Gq" = ( +/obj/structure/shuttle/engine/propulsion/left{ + dir = 4 }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/plating/airless, /area/shuttle/escape) -"I" = ( +"GX" = ( /obj/structure/table, /obj/item/food/spaghetti/boiledspaghetti{ name = "pasghetti"; @@ -189,50 +192,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"J" = ( -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"K" = ( -/obj/machinery/door/airlock/titanium, -/obj/docking_port/mobile/emergency{ - dir = 8; - dwidth = 6; - height = 18; - name = "Birdboat emergency escape shuttle"; - port_direction = 4; - width = 14 - }, -/obj/structure/fans/tiny, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) -"L" = ( -/obj/structure/table, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"M" = ( -/obj/structure/table, -/obj/item/food/chocolatebar, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"N" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/structure/window/reinforced, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"O" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/escape) -"P" = ( +"Hl" = ( /obj/structure/chair/comfy/shuttle, /obj/structure/window/reinforced{ dir = 1; @@ -240,13 +200,7 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"Q" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/mineral/titanium/white, -/area/shuttle/escape) -"R" = ( +"II" = ( /obj/structure/table/glass, /obj/item/storage/firstaid/fire{ pixel_x = 5; @@ -255,20 +209,68 @@ /obj/item/storage/firstaid/toxin, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"S" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 +"JY" = ( +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"Kq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 }, +/turf/open/floor/plating/airless, +/area/shuttle/escape) +"Lu" = ( +/obj/machinery/stasis, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"LX" = ( /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"T" = ( +"MJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"Qk" = ( +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/escape) +"Rz" = ( +/obj/machinery/door/airlock/titanium, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"SB" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"TH" = ( +/obj/machinery/light/small, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"UC" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"Wn" = ( /obj/structure/chair/comfy/shuttle{ - dir = 1 + dir = 8 }, -/obj/machinery/light, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/mineral/titanium, +/area/shuttle/escape) +"WE" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"Xa" = ( +/obj/machinery/computer/emergency_shuttle, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"U" = ( +"Xt" = ( /obj/structure/table/glass, /obj/item/storage/firstaid/brute{ pixel_x = 5; @@ -280,318 +282,318 @@ }, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"V" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 +"YY" = ( +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + use_power = 0 }, -/turf/open/floor/mineral/titanium, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/escape) -"W" = ( -/obj/structure/chair/comfy/shuttle, +"ZF" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/light{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium, /area/shuttle/escape) -"X" = ( -/obj/machinery/stasis, -/turf/open/floor/mineral/titanium/white, -/area/shuttle/escape) -"Y" = ( -/obj/structure/table/glass, -/obj/item/defibrillator/loaded, +"ZQ" = ( +/obj/structure/table, +/obj/item/scalpel, +/obj/item/retractor{ + pixel_y = 5 + }, +/obj/item/hemostat, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"Z" = ( -/obj/machinery/door/airlock/command/glass{ - name = "bridge door"; - req_access_txt = "19" - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape/brig) (1,1,1) = {" -a -a -b -b -c -b -c -c -c -c -c -b -a -a +ls +ls +lI +lI +AP +lI +AP +AP +AP +AP +AP +lI +ls +ls "} (2,1,1) = {" -a -b -h -q -k -c -B -H -H -H -B -h -b -a +ls +lI +qm +fx +fu +AP +UC +oV +oV +oV +UC +qm +lI +ls "} (3,1,1) = {" -a -b -i -r -C -s -C -C -C -C -C -S -b -a +ls +lI +Xa +Wn +vJ +mv +vJ +vJ +vJ +vJ +vJ +FD +lI +ls "} (4,1,1) = {" -a -c -j -C -v -b -D -D -L -C -C -S -b -a +ls +AP +Qk +vJ +dy +lI +LX +LX +wl +vJ +vJ +FD +lI +ls "} (5,1,1) = {" -a -c -j -C -V -b -E -E -M -C -C -S -b -a +ls +AP +Qk +vJ +SB +lI +zG +zG +tL +vJ +vJ +FD +lI +ls "} (6,1,1) = {" -a -b -k -C -k -b -F -I -L -C -C -T -h -b +ls +lI +fu +vJ +fu +lI +hl +GX +wl +vJ +vJ +jk +qm +lI "} (7,1,1) = {" -a -b -b -Z -c -b -C -C -C -C -C -C -B -b +ls +lI +lI +xM +AP +lI +vJ +vJ +vJ +vJ +vJ +vJ +UC +lI "} (8,1,1) = {" -a -b -l -t -t -c -B -C -C -C -C -C -V -b +ls +lI +kF +JY +JY +AP +UC +vJ +vJ +vJ +vJ +vJ +SB +lI "} (9,1,1) = {" -a -b -l -t -t -z -C -C -N -P -C -C -W -c +ls +lI +kF +JY +JY +EY +vJ +vJ +mE +Hl +vJ +vJ +iC +AP "} (10,1,1) = {" -a -b -m -t -t -c -C -C -N -P -C -C -W -c +ls +lI +eN +JY +JY +AP +vJ +vJ +mE +Hl +vJ +vJ +iC +AP "} (11,1,1) = {" -a -b -l -t -x -b -C -C -N -P -C -C -W -c +ls +lI +kF +JY +EH +lI +vJ +vJ +mE +Hl +vJ +vJ +iC +AP "} (12,1,1) = {" -a -b -l -t -y -b -C -C -O -P -C -C -B -b +ls +lI +kF +JY +WE +lI +vJ +vJ +ZF +Hl +vJ +vJ +UC +lI "} (13,1,1) = {" -b -b -b -b -b -h -C -C -w -b -A -c -b -b +lI +lI +lI +lI +lI +qm +vJ +vJ +YY +lI +iO +AP +lI +lI "} (14,1,1) = {" -b -d -n -f -f -A -C -C -A -Q -f -f -X -b +lI +ZQ +tW +hC +hC +iO +vJ +vJ +iO +BJ +hC +hC +Lu +lI "} (15,1,1) = {" -b -e -f -f -f -A -C -C -A -f -f -f -f -b +lI +kE +hC +hC +hC +iO +vJ +vJ +iO +hC +hC +hC +hC +lI "} (16,1,1) = {" -b -f -o -f -b -b -G -G -b -b -R -U -Y -b +lI +hC +MJ +hC +lI +lI +lH +lH +lI +lI +II +Xt +iY +lI "} (17,1,1) = {" -b -b -b -b -b -b -C -J -b -b -b -b -b -b +lI +lI +lI +lI +lI +lI +vJ +TH +lI +lI +lI +lI +lI +lI "} (18,1,1) = {" -b -g -p -u -b -b -Z -K -b -b -g -p -u -b +lI +iR +Kq +Gq +lI +lI +Rz +vd +lI +lI +iR +Kq +Gq +lI "} diff --git a/_maps/shuttles/emergency_box.dmm b/_maps/shuttles/emergency_box.dmm index 8c0445bfb1ae..f918cb22ca95 100644 --- a/_maps/shuttles/emergency_box.dmm +++ b/_maps/shuttles/emergency_box.dmm @@ -3,68 +3,68 @@ /turf/template_noop, /area/template_noop) "ab" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/crowbar, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/machinery/light/small{ - dir = 4 +/obj/structure/chair/office/light, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 }, -/obj/item/sensor_device, -/obj/item/storage/firstaid/advanced, -/obj/item/storage/firstaid/brute, -/obj/item/defibrillator/loaded, -/obj/item/healthanalyzer/advanced, -/turf/open/floor/mineral/titanium/white, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "ac" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "ad" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/escape) "ae" = ( +/obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium/interior, /area/shuttle/escape) "af" = ( -/obj/structure/table, -/obj/machinery/recharger, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ag" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/communications, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ah" = ( +/obj/effect/turf_decal/bot, /obj/machinery/computer/emergency_shuttle, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ai" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 4 }, +/obj/item/storage/firstaid/regular, /obj/item/crowbar, -/obj/item/storage/firstaid/fire, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "al" = ( -/obj/machinery/computer/atmos_alert{ +/obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/open/floor/mineral/titanium/blue, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "am" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/mineral/titanium, /area/shuttle/escape) "an" = ( /turf/open/floor/mineral/titanium/blue, @@ -73,107 +73,110 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ap" = ( -/obj/machinery/computer/security{ +/obj/structure/chair/comfy/shuttle{ dir = 8 }, -/turf/open/floor/mineral/titanium/blue, +/obj/machinery/keycard_auth{ + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aq" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ar" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 +/obj/effect/turf_decal/stripes/line{ + dir = 10 }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/item/kirbyplants{ + icon_state = "plant-22" }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "as" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -29 +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/item/kirbyplants{ + icon_state = "applebush" }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "at" = ( -/obj/machinery/button/flasher{ - id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "au" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/restraints/handcuffs, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/assembly/flash/handheld, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "ay" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Cockpit"; - req_access_txt = "19" +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "az" = ( /obj/machinery/status_display/evac, /turf/closed/wall/mineral/titanium, /area/shuttle/escape) "aA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /obj/structure/chair/comfy/shuttle, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "aB" = ( -/obj/machinery/flasher{ - id = "cockpit_flasher"; - pixel_x = 6; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, /area/shuttle/escape) "aC" = ( -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aD" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/mineral/titanium/blue, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aE" = ( -/obj/structure/table, -/obj/item/storage/firstaid/fire, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 3 +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 }, -/obj/item/crowbar, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aF" = ( -/obj/machinery/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = 6 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/machinery/button/flasher{ - id = "shuttle_flasher"; - pixel_x = -24; - pixel_y = -6 +/obj/structure/chair/comfy/shuttle{ + dir = 4 }, -/obj/machinery/light/small{ - brightness = 3; +/obj/machinery/light{ dir = 8 }, /turf/open/floor/mineral/plastitanium/red/brig, @@ -182,130 +185,210 @@ /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "aH" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Brig"; - req_access_txt = "2" +/obj/effect/turf_decal/stripes/corner{ + dir = 4 }, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "aI" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock"; - req_access_txt = "2" +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" }, /obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "aJ" = ( +/obj/effect/turf_decal/stripes/line, /obj/structure/chair/comfy/shuttle{ dir = 1 }, /turf/open/floor/mineral/plastitanium/red/brig, /area/shuttle/escape/brig) "aK" = ( -/obj/structure/chair/comfy/shuttle, -/turf/open/floor/mineral/titanium/blue, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aM" = ( -/obj/structure/table, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aP" = ( -/obj/machinery/door/airlock/titanium{ +/obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ name = "Box emergency shuttle" }, /obj/structure/fans/tiny, -/turf/open/floor/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aQ" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = -5; - pixel_y = 30 +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "aR" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/mineral/titanium, +/obj/machinery/stasis, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aS" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aT" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 4 +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/obj/structure/window/reinforced{ +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "aV" = ( -/obj/machinery/door/airlock/titanium{ +/obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Airlock" }, /obj/structure/fans/tiny, -/turf/open/floor/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aW" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "aX" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Cargo" +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" }, -/turf/open/floor/mineral/titanium/blue, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "aZ" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Shuttle Infirmary" +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/turf/open/floor/mineral/titanium/white, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "bb" = ( /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bc" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 +/obj/structure/closet/crate{ + name = "emergency supplies crate" }, -/turf/open/floor/mineral/titanium/yellow, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bd" = ( -/obj/machinery/stasis, -/turf/open/floor/mineral/titanium/white, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "bf" = ( -/obj/structure/closet, -/turf/open/floor/mineral/titanium/yellow, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bg" = ( -/obj/structure/closet/crate, -/turf/open/floor/mineral/titanium/yellow, +/obj/effect/turf_decal/delivery, +/obj/machinery/recharge_station, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bi" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, +/obj/structure/window/shuttle, +/obj/structure/grille, /obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/shuttle/escape) "bj" = ( /obj/machinery/vending/wallmed{ @@ -319,78 +402,586 @@ /turf/open/floor/plating/airless, /area/shuttle/escape) "bl" = ( -/obj/machinery/light/small{ - dir = 4 +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/mineral/titanium/blue, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "bm" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 +/obj/machinery/vending/wallmed{ + name = "Emergency NanoMed"; + use_power = 0 }, -/turf/open/floor/mineral/titanium/blue, +/turf/closed/wall/mineral/titanium, /area/shuttle/escape) "bn" = ( -/obj/machinery/light/small{ +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "bo" = ( -/obj/machinery/light/small, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "bp" = ( -/obj/machinery/light, -/turf/open/floor/mineral/titanium, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/shuttle{ + name = "External Shuttle Airlock" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bq" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, +/obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "br" = ( -/obj/machinery/light/small{ +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/healthanalyzer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lazarus_injector, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/medbot{ + name = "\improper emergency medibot"; + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/light{ dir = 4 }, -/turf/open/floor/mineral/titanium/yellow, +/turf/open/floor/mineral/plastitanium, /area/shuttle/escape) "bs" = ( -/obj/machinery/light/small{ - brightness = 3; +/obj/structure/table, +/obj/item/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"bP" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"cJ" = ( +/obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"cT" = ( +/obj/structure/sign/departments/engineering{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) +"dn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "2" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape/brig) +"dw" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/escape) +"dz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) "ga" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/hemostat, +/turf/open/floor/plasteel/dark, +/area/shuttle/escape) +"gk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) -"XC" = ( -/obj/structure/closet/emcloset, +"js" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"kh" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"kH" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"lY" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"lZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) - -(1,1,1) = {" -aa -aa -aa -aa -ad -ad -ad -aI -ad -aP -ad -ac -ac -ac +"nV" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"oF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"pm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"py" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"qK" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"qY" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"qZ" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/surgical_drapes, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"rm" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"tP" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"tS" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/shuttle, +/turf/open/floor/grass, +/area/shuttle/escape) +"tV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"uB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube" + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"vI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/escape) +"wb" = ( +/obj/structure/table, +/obj/item/defibrillator/compact/loaded, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ws" = ( +/obj/machinery/door/airlock/command{ + name = "Shuttle Control"; + req_one_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"wV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"xa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"xN" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"AX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Ce" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Emergency Shuttle Airlock" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Cj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/storage/box/zipties{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"Cn" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/stasis, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"CK" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"CL" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Dx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"ES" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"GM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "19" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape/brig) +"HT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"IE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/crew, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"JX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"MP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"Nf" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/escape) +"Oe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"Pp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Qq" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/escape) +"Qy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"SH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"SY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"Tk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/escape) +"Vd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"VN" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2, +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"XC" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 6 + }, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = -6 + }, +/obj/item/reagent_containers/glass/bottle/multiver, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Ye" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/medical/glass{ + name = "Shuttle Infirmary" + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) +"Yi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red/brig, +/area/shuttle/escape/brig) +"Yq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/escape) +"YK" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/escape) +"YM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/escape) +"Zl" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/escape) + +(1,1,1) = {" +aa +aa +aa +aa ad -aV ad +ad +aI +rm +aP +az +aB +aB +aB +az +aV +rm aV ad ad @@ -403,23 +994,23 @@ ad ad ad ad -aA +dz aF -aG -ad +Yi +aB bn +Zl ao ao ao -ao -ao +Zl bo ad bb bq -bf -ad +pm ad +Qq "} (3,1,1) = {" ad @@ -429,138 +1020,138 @@ aq ad aA aG -aJ -ad +nV +dn aQ -aC -aC -aC -aC -aC +MP +MP +MP +wV +ay aW -ad -bb +aB bb +bq bf bi bk "} (4,1,1) = {" -ac +aB af -am +AX ar ad -aA +JX aG aJ -ad -aC -aS -aS -aS -aS +aB +bn +Vd +bj aS -aC +py +lZ +Yq aX -bb -bb +YM +SY bg bi bk "} (5,1,1) = {" -ac +aB ag -aC +CL as ad -ac +SH aH -ac -bj -aC -aT -aT -aT -aT -aT -aC +Cj +ad +tP +Vd +tS +aS +bo +xN +VN ad bc br -bg +kH bi bk "} (6,1,1) = {" -ac +aB ah -aC +CL at -ad +az +aB +GM aB -aC -aK bm -aC -aC -aC -aC -aC -aC -bp +gk +Vd +qY +aS +tV +dw az ad ad ad -bi -bk +qK +Nf +Qq "} (7,1,1) = {" -ac -ag -aC -aC -ay -aC -aC -ao -aM +aB +IE +CL +Pp +ad +CK aC +bf +ad +cT +Vd +tS aS -aS -aS -aS -aS -aC -ac -XC +bo +am +Cn +ES +wb bs XC bi bk "} (8,1,1) = {" -ac +aB ai -ao -ao -az -an -aC -aM +Qy +Dx +ws +kh +oF aM -aC -aT -aT -aT -aT +Ce +xa +Vd +dw +aS aT -aC +Ye aZ -ga -ga +aZ +aZ +vI ga bi bk @@ -570,22 +1161,22 @@ ad ae ap au -ad +js aD -aC -aC -aC -aC -aC -aC -aC -aC -aC -aC +bl +aK +ad +Oe +cJ +cJ +cJ +HT +Ye +bd ac -ga -ga -ga +an +YK +bP bi bk "} @@ -597,21 +1188,21 @@ ad ad aE bl -an -an -aR -am -am -am -am +aK +az +uB +lY +lY +lY +uB am aR -ac +Tk bd ab -bd -ad +qZ ad +Qq "} (11,1,1) = {" aa @@ -619,21 +1210,21 @@ aa aa aa ad -ac -ad -ac -ad ad +bp ad -ac -ac -ac +rm +az +aB +aB +aB +az +rm ad ad +aB ad -ac ad -ac ad aa "} diff --git a/_maps/shuttles/emergency_cere.dmm b/_maps/shuttles/emergency_cere.dmm index 4d9b008e12d9..8958542c6bec 100644 --- a/_maps/shuttles/emergency_cere.dmm +++ b/_maps/shuttles/emergency_cere.dmm @@ -702,10 +702,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - dwidth = 15; - height = 20; - name = "Cere emergency shuttle"; - width = 42 + name = "Cere emergency shuttle" }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -1179,7 +1176,7 @@ /turf/open/floor/plasteel/white, /area/shuttle/escape) "cz" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, diff --git a/_maps/shuttles/emergency_construction.dmm b/_maps/shuttles/emergency_construction.dmm index 1d7c289ac2a3..4656d73b67d5 100644 --- a/_maps/shuttles/emergency_construction.dmm +++ b/_maps/shuttles/emergency_construction.dmm @@ -46,11 +46,9 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency/shuttle_build{ - height = 15; name = "Shuttle Under Construction"; port_direction = 4; - preferred_direction = 2; - width = 26 + preferred_direction = 2 }, /obj/structure/fans/tiny, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_cramped.dmm b/_maps/shuttles/emergency_cramped.dmm index 08ac96bf6911..119f718dc49d 100644 --- a/_maps/shuttles/emergency_cramped.dmm +++ b/_maps/shuttles/emergency_cramped.dmm @@ -60,10 +60,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - dwidth = 3; - height = 5; - name = "Secure Transport Vessel 5"; - width = 14 + name = "Secure Transport Vessel 5" }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -83,10 +80,7 @@ /area/shuttle/escape) "o" = ( /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 8; - name = "8maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/escape) @@ -104,7 +98,7 @@ /area/shuttle/escape) "r" = ( /obj/structure/closet/crate/secure/weapon, -/obj/effect/spawner/lootdrop/armory_contraband, +/obj/effect/spawner/random/contraband/armory, /obj/effect/turf_decal/bot, /obj/machinery/light{ dir = 4 @@ -140,7 +134,7 @@ /area/shuttle/escape) "w" = ( /obj/structure/closet/crate/secure/weapon, -/obj/effect/spawner/lootdrop/armory_contraband, +/obj/effect/spawner/random/contraband/armory, /obj/effect/turf_decal/bot, /turf/open/floor/plasteel, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_cruise.dmm b/_maps/shuttles/emergency_cruise.dmm index 0407fc7bc56b..6401dca58c12 100644 --- a/_maps/shuttles/emergency_cruise.dmm +++ b/_maps/shuttles/emergency_cruise.dmm @@ -610,11 +610,6 @@ }, /turf/open/floor/wood, /area/shuttle/escape) -"qG" = ( -/turf/open/floor/plasteel/stairs/old/chilly/left{ - dir = 1 - }, -/area/shuttle/escape) "qI" = ( /obj/structure/table/wood, /obj/machinery/chem_dispenser/drinks/beer{ @@ -1436,9 +1431,7 @@ dir = 8 }, /obj/docking_port/mobile/emergency{ - height = 22; - name = "The NTSS Independence"; - width = 44 + name = "The NTSS Independence" }, /turf/open/floor/plasteel/dark, /area/shuttle/escape) @@ -1638,11 +1631,6 @@ }, /turf/open/floor/plasteel, /area/shuttle/escape) -"Nh" = ( -/turf/open/floor/plasteel/stairs/old/chilly/right{ - dir = 1 - }, -/area/shuttle/escape) "NH" = ( /obj/structure/chair/comfy/brown{ dir = 1 @@ -2664,7 +2652,7 @@ ut PN pE YA -qG +AI AI YJ IX @@ -2710,7 +2698,7 @@ VQ PN pE YA -Nh +AI AI Ee rt diff --git a/_maps/shuttles/emergency_delta.dmm b/_maps/shuttles/emergency_delta.dmm index ea1f6ddae5c5..d3be0297574a 100644 --- a/_maps/shuttles/emergency_delta.dmm +++ b/_maps/shuttles/emergency_delta.dmm @@ -539,12 +539,9 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - dwidth = 11; - height = 18; name = "Delta emergency shuttle"; port_direction = 4; - preferred_direction = 2; - width = 30 + preferred_direction = 2 }, /obj/structure/fans/tiny, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_donut.dmm b/_maps/shuttles/emergency_donut.dmm index 168cb5be1c6a..64da0ad1f0f9 100644 --- a/_maps/shuttles/emergency_donut.dmm +++ b/_maps/shuttles/emergency_donut.dmm @@ -261,8 +261,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - name = "Donut emergency shuttle"; - width = 34 + name = "Donut emergency shuttle" }, /obj/structure/fans/tiny, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_goon.dmm b/_maps/shuttles/emergency_goon.dmm index a894ab170afd..7d6f5f1f654c 100644 --- a/_maps/shuttles/emergency_goon.dmm +++ b/_maps/shuttles/emergency_goon.dmm @@ -37,8 +37,7 @@ }, /obj/docking_port/mobile/emergency{ dir = 2; - name = "NES Port"; - width = 19 + name = "NES Port" }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -93,7 +92,7 @@ /area/shuttle/escape) "v" = ( /obj/structure/table, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "w" = ( diff --git a/_maps/shuttles/emergency_imfedupwiththisworld.dmm b/_maps/shuttles/emergency_imfedupwiththisworld.dmm index f999aa38c9a6..a249056d4ab6 100644 --- a/_maps/shuttles/emergency_imfedupwiththisworld.dmm +++ b/_maps/shuttles/emergency_imfedupwiththisworld.dmm @@ -8,10 +8,7 @@ /area/shuttle/escape) "c" = ( /obj/docking_port/mobile/emergency{ - dwidth = 1; - height = 10; - name = "Oh Hi Mark"; - width = 12 + name = "Oh Hi Mark" }, /obj/machinery/door/airlock/wood, /obj/structure/fans/tiny, diff --git a/_maps/shuttles/emergency_luxury.dmm b/_maps/shuttles/emergency_luxury.dmm index 905e64830bd2..178b2b5ff8b7 100644 --- a/_maps/shuttles/emergency_luxury.dmm +++ b/_maps/shuttles/emergency_luxury.dmm @@ -25,10 +25,7 @@ "ae" = ( /obj/docking_port/mobile/emergency{ dir = 2; - dwidth = 5; - height = 14; - name = "Luxurious Emergency Shuttle"; - width = 25 + name = "Luxurious Emergency Shuttle" }, /obj/machinery/scanner_gate/luxury_shuttle{ layer = 2.6 @@ -64,7 +61,7 @@ "aj" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/large, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "ak" = ( @@ -326,13 +323,13 @@ "bf" = ( /obj/structure/closet/crate/trashcart, /obj/effect/turf_decal/loading_area, -/obj/effect/spawner/lootdrop/maintenance/six, +/obj/effect/spawner/random/maintenance/six, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bg" = ( /obj/structure/closet/crate/trashcart, /obj/effect/turf_decal/loading_area, -/obj/effect/spawner/lootdrop/maintenance/three, +/obj/effect/spawner/random/maintenance/three, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bi" = ( @@ -398,13 +395,13 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/engineering/electrical, /obj/effect/decal/cleanable/robot_debris, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bo" = ( /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/engineering, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bp" = ( @@ -480,7 +477,7 @@ /obj/structure/closet/crate/large, /obj/effect/turf_decal/delivery, /obj/effect/decal/cleanable/robot_debris, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bz" = ( @@ -499,7 +496,7 @@ icon_state = "crateopen" }, /obj/effect/decal/cleanable/oil, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "bB" = ( @@ -671,7 +668,7 @@ /obj/effect/turf_decal/delivery, /obj/structure/closet/crate/large, /obj/effect/decal/cleanable/robot_debris, -/obj/effect/spawner/lootdrop/maintenance/eight, +/obj/effect/spawner/random/maintenance/eight, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "cd" = ( @@ -862,7 +859,7 @@ /area/shuttle/escape/luxury) "cC" = ( /obj/structure/grille/broken, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /turf/open/floor/plasteel, /area/shuttle/escape/luxury) "cD" = ( @@ -922,18 +919,6 @@ /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, /area/shuttle/escape/luxury) -"dc" = ( -/obj/structure/chair/comfy/shuttle, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window{ - dir = 1 - }, -/obj/item/food/poo/cooked, -/obj/effect/turf_decal/dust, -/turf/open/floor/plasteel, -/area/shuttle/escape/luxury) "hl" = ( /obj/structure/table/wood/fancy/blue, /obj/item/storage/fancy/cigarettes/cigars/havana{ @@ -1186,7 +1171,7 @@ bO bJ Mx bO -dc +SU cx bC ab diff --git a/_maps/shuttles/emergency_medisim.dmm b/_maps/shuttles/emergency_medisim.dmm index bd4a5e69f35e..56dc5f9b67fa 100644 --- a/_maps/shuttles/emergency_medisim.dmm +++ b/_maps/shuttles/emergency_medisim.dmm @@ -3,6 +3,7 @@ /obj/machinery/door/airlock/titanium{ name = "Emergency Shuttle Airlock" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "aG" = ( @@ -57,6 +58,7 @@ /obj/machinery/door/airlock/external{ name = "Engine Maintenance Access" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "ft" = ( @@ -595,6 +597,7 @@ name = "Engine Maintenance Access"; req_access_txt = "19" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) "Be" = ( @@ -632,8 +635,8 @@ dispense_type = /obj/item/binoculars; end_create_message = "dispenses a pair of binoculars."; glass_cost = 0; - maximum_idle = 1; iron_cost = 0; + maximum_idle = 1; name = "binoculars fabricator"; power_used = 0; starting_amount = 25000 @@ -1032,11 +1035,9 @@ }, /obj/docking_port/mobile/emergency{ dir = 1; - dwidth = 6; - height = 26; - name = "Medisim emergency shuttle"; - width = 25 + name = "Medisim emergency shuttle" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "Rj" = ( diff --git a/_maps/shuttles/emergency_meta.dmm b/_maps/shuttles/emergency_meta.dmm index 91a9919b77eb..fe1dc6a23973 100644 --- a/_maps/shuttles/emergency_meta.dmm +++ b/_maps/shuttles/emergency_meta.dmm @@ -13,6 +13,7 @@ /obj/machinery/door/airlock/titanium{ name = "Emergency Shuttle Airlock" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "ag" = ( @@ -25,11 +26,9 @@ }, /obj/docking_port/mobile/emergency{ dir = 2; - dwidth = 5; - height = 14; - name = "Meta emergency shuttle"; - width = 25 + name = "Meta emergency shuttle" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "al" = ( @@ -848,6 +847,14 @@ "LY" = ( /turf/open/floor/mineral/titanium, /area/shuttle/escape) +"Po" = ( +/obj/machinery/door/airlock/external{ + name = "Emergency Recovery Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/shuttle/escape) "Vs" = ( /turf/open/floor/mineral/titanium/white, /area/shuttle/escape) @@ -930,7 +937,7 @@ be cc be be -bf +Po "} (6,1,1) = {" ac @@ -946,7 +953,7 @@ bf bT be be -bf +Po "} (7,1,1) = {" ac diff --git a/_maps/shuttles/emergency_meteor.dmm b/_maps/shuttles/emergency_meteor.dmm index 001e8c7ae3cd..8f3409a332e0 100644 --- a/_maps/shuttles/emergency_meteor.dmm +++ b/_maps/shuttles/emergency_meteor.dmm @@ -65,11 +65,8 @@ /area/shuttle/escape/meteor) "L" = ( /obj/docking_port/mobile/emergency{ - dwidth = 20; - height = 40; movement_force = list("KNOCKDOWN" = 3, "THROW" = 6); - name = "\proper a meteor with engines strapped to it"; - width = 40 + name = "a meteor with engines strapped to it" }, /turf/open/floor/plating/asteroid, /area/shuttle/escape/meteor) diff --git a/_maps/shuttles/emergency_mini.dmm b/_maps/shuttles/emergency_mini.dmm index 7e0d05998fe8..bd6607beac29 100644 --- a/_maps/shuttles/emergency_mini.dmm +++ b/_maps/shuttles/emergency_mini.dmm @@ -150,10 +150,7 @@ }, /obj/docking_port/mobile/emergency{ dir = 8; - dwidth = 8; - height = 9; - name = "Mini emergency shuttle"; - width = 21 + name = "Mini emergency shuttle" }, /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, diff --git a/_maps/shuttles/emergency_nature.dmm b/_maps/shuttles/emergency_nature.dmm index a43981603c0e..d91a606f7fd0 100644 --- a/_maps/shuttles/emergency_nature.dmm +++ b/_maps/shuttles/emergency_nature.dmm @@ -108,17 +108,15 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/shuttle/escape) "eq" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, /area/shuttle/escape) "ev" = ( /obj/effect/turf_decal/trimline/green/filled/corner, @@ -380,9 +378,8 @@ dir = 8 }, /obj/structure/grille/broken, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/shuttle/escape) "lS" = ( /obj/effect/turf_decal/trimline/red/filled/line{ @@ -891,7 +888,7 @@ /obj/item/food/monkeycube{ pixel_x = 5 }, -/obj/item/paicard{ +/obj/item/pai_card{ pixel_x = -6; pixel_y = 1 }, @@ -905,18 +902,7 @@ /obj/effect/turf_decal/trimline/blue/filled/corner{ dir = 1 }, -/turf/open/floor/plasteel{ - icon_state = "floorscorched1" - }, -/area/shuttle/escape) -"Hi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, +/turf/open/floor/plasteel, /area/shuttle/escape) "Hq" = ( /obj/structure/flora/rock/pile, @@ -1112,9 +1098,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, /area/shuttle/escape) "QO" = ( /obj/effect/turf_decal/weather/dirt{ @@ -1773,7 +1758,7 @@ HV Zd Yu Um -Hi +dT Jw gx gx diff --git a/_maps/shuttles/emergency_omega.dmm b/_maps/shuttles/emergency_omega.dmm index ed8fe80024d6..589aca3ee7a9 100644 --- a/_maps/shuttles/emergency_omega.dmm +++ b/_maps/shuttles/emergency_omega.dmm @@ -15,7 +15,7 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/machinery/newscaster/security_unit{ +/obj/machinery/newscaster{ pixel_y = 32 }, /obj/structure/reagent_dispensers/peppertank{ @@ -274,9 +274,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - dwidth = 5; - name = "Omega emergency shuttle"; - width = 19 + name = "Omega emergency shuttle" }, /obj/effect/turf_decal/stripes/line{ dir = 4 diff --git a/_maps/shuttles/emergency_partyhard.dmm b/_maps/shuttles/emergency_partyhard.dmm index 62604143a93a..044cffbe2054 100644 --- a/_maps/shuttles/emergency_partyhard.dmm +++ b/_maps/shuttles/emergency_partyhard.dmm @@ -1,20 +1,16 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "a" = ( -/turf/open/space/basic, -/area/shuttle/escape) +/turf/template_noop, +/area/template_noop) "b" = ( /turf/closed/wall/r_wall/syndicate, /area/shuttle/escape) "c" = ( /obj/machinery/computer/secure_data, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "d" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "e" = ( /obj/effect/spawner/structure/window/reinforced/partyhard, @@ -26,83 +22,61 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "g" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "h" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "i" = ( /obj/machinery/computer/emergency_shuttle, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "j" = ( /obj/machinery/computer/communications, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "k" = ( /obj/machinery/computer/crew, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "l" = ( /obj/machinery/computer/med_data{ dir = 4 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "m" = ( /obj/machinery/computer/security{ dir = 8 }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-5" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "n" = ( /obj/machinery/door/airlock/command/glass{ name = "Cockpit"; req_access_txt = "19" }, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "o" = ( /obj/machinery/door/airlock/shuttle{ name = "Emergency Shuttle Airlock" }, /obj/structure/fans/tiny, -/turf/open/floor/partyhard/steel{ - icon_state = "mm-4" - }, +/turf/open/floor/partyhard/stone/tiled, /area/shuttle/escape) "p" = ( /obj/docking_port/mobile/emergency{ - dwidth = 5; - name = "Party emergency shuttle"; - width = 19 + name = "Party emergency shuttle" }, /turf/closed/wall/r_wall/syndicate, /area/shuttle/escape) diff --git a/_maps/shuttles/emergency_pubby.dmm b/_maps/shuttles/emergency_pubby.dmm index 91349e8decd8..49d028360fdd 100644 --- a/_maps/shuttles/emergency_pubby.dmm +++ b/_maps/shuttles/emergency_pubby.dmm @@ -261,6 +261,7 @@ /obj/machinery/door/airlock/public/glass{ name = "First Class" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/escape) "aJ" = ( @@ -677,6 +678,7 @@ /obj/machinery/door/airlock/public/glass{ name = "Economy Class" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/escape) "bL" = ( @@ -685,11 +687,8 @@ }, /obj/docking_port/mobile/emergency{ dir = 8; - dwidth = 27; - height = 8; name = "PubbyStation emergency shuttle"; - port_direction = 4; - width = 46 + port_direction = 4 }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -699,12 +698,14 @@ name = "Cockpit"; req_access_txt = "19" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/escape) "bQ" = ( /obj/machinery/door/airlock/public/glass{ name = "Service" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/escape) "bT" = ( @@ -712,24 +713,12 @@ name = "Brig"; req_access_txt = "2" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/escape/brig) -"xt" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/turf/open/floor/plating, -/area/shuttle/escape) "Lu" = ( /turf/closed/wall/mineral/plastitanium, /area/shuttle/escape/brig) -"Uu" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/plating, -/area/shuttle/escape) (1,1,1) = {" aa @@ -833,7 +822,7 @@ ad al br ab -aa +ac ab aE aV @@ -843,7 +832,7 @@ aA au aK ab -aa +ac ab aT au @@ -853,7 +842,7 @@ aP au aY ab -aa +ac ab aZ bb @@ -863,7 +852,7 @@ bl bg bn ab -aa +ac bs bH ax @@ -881,7 +870,7 @@ ae ah aH bO -xt +bj aI ar ar @@ -891,7 +880,7 @@ ar ar ar aI -xt +bj bK ar ar @@ -901,7 +890,7 @@ ar ar ar bK -xt +bj bQ au au @@ -911,7 +900,7 @@ au au au bQ -xt +bj bT ax ax @@ -929,7 +918,7 @@ af ah aH bO -Uu +bj aI ar ar @@ -939,7 +928,7 @@ ar ar ar aI -Uu +bj bK ar ar @@ -949,7 +938,7 @@ ar ar ar bK -Uu +bj bQ au au @@ -959,7 +948,7 @@ au au au bQ -Uu +bj bT ax ax @@ -977,7 +966,7 @@ ad aq bt ab -aa +ac ab aE av @@ -987,7 +976,7 @@ aA au aK ab -aa +ac ab aT au @@ -997,7 +986,7 @@ aP au aY ab -aa +ac ab aG ba @@ -1007,7 +996,7 @@ bj bo bG ab -aa +ac bs bH ax diff --git a/_maps/shuttles/emergency_raven.dmm b/_maps/shuttles/emergency_raven.dmm index feaaaf309aae..2eceaaf88dd8 100644 --- a/_maps/shuttles/emergency_raven.dmm +++ b/_maps/shuttles/emergency_raven.dmm @@ -28,8 +28,8 @@ /turf/open/floor/plasteel/dark, /area/shuttle/escape) "af" = ( -/obj/machinery/computer/shuttle_flight, /obj/effect/turf_decal/bot_white, +/obj/machinery/computer/emergency_shuttle, /turf/open/floor/plasteel/dark, /area/shuttle/escape) "ag" = ( @@ -2122,10 +2122,7 @@ name = "Emegency Shuttle External Airlock" }, /obj/docking_port/mobile/emergency{ - dwidth = 14; - height = 21; - name = "CentCom Raven Cruiser"; - width = 32 + name = "CentCom Raven Cruiser" }, /obj/structure/fans/tiny, /turf/open/floor/plating, diff --git a/_maps/shuttles/emergency_rollerdome.dmm b/_maps/shuttles/emergency_rollerdome.dmm index 51b4082766c5..48f4f557c2c8 100644 --- a/_maps/shuttles/emergency_rollerdome.dmm +++ b/_maps/shuttles/emergency_rollerdome.dmm @@ -15,7 +15,7 @@ /turf/open/floor/wood, /area/shuttle/escape) "cP" = ( -/obj/effect/spawner/randomarcade, +/obj/effect/spawner/random/entertainment/arcade, /turf/open/floor/eighties, /area/shuttle/escape) "dJ" = ( @@ -183,7 +183,7 @@ /turf/open/floor/eighties, /area/shuttle/escape) "Dh" = ( -/obj/effect/spawner/randomsnackvend, +/obj/effect/spawner/random/vending/snackvend, /turf/open/floor/wood, /area/shuttle/escape) "DR" = ( @@ -201,7 +201,7 @@ /turf/open/floor/wood, /area/shuttle/escape) "HA" = ( -/obj/effect/spawner/randomcolavend, +/obj/effect/spawner/random/vending/colavend, /turf/open/floor/wood, /area/shuttle/escape) "HS" = ( diff --git a/_maps/shuttles/emergency_russiafightpit.dmm b/_maps/shuttles/emergency_russiafightpit.dmm index 71fe5c385182..614ee38b70fb 100644 --- a/_maps/shuttles/emergency_russiafightpit.dmm +++ b/_maps/shuttles/emergency_russiafightpit.dmm @@ -277,7 +277,6 @@ /area/shuttle/escape) "aW" = ( /obj/docking_port/mobile/emergency{ - height = 15; name = "Mother Russia Bleeds" }, /obj/machinery/door/airlock/security/glass{ diff --git a/_maps/shuttles/emergency_scrapheap.dmm b/_maps/shuttles/emergency_scrapheap.dmm index d4772435d866..99c0a205257b 100644 --- a/_maps/shuttles/emergency_scrapheap.dmm +++ b/_maps/shuttles/emergency_scrapheap.dmm @@ -26,13 +26,6 @@ /obj/machinery/computer/emergency_shuttle, /turf/open/floor/carpet, /area/shuttle/escape) -"ah" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/shuttle/escape) "ai" = ( /obj/machinery/computer/atmos_alert{ dir = 4 @@ -52,10 +45,6 @@ /obj/structure/chair/comfy/brown{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, /turf/open/floor/carpet, /area/shuttle/escape) "am" = ( @@ -82,10 +71,12 @@ /turf/open/floor/carpet, /area/shuttle/escape) "ap" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 }, -/turf/open/floor/carpet, +/obj/machinery/light, +/turf/open/floor/plasteel, /area/shuttle/escape) "aq" = ( /obj/machinery/door/airlock/titanium{ @@ -106,6 +97,7 @@ name = "Emergency Shuttle Airlock"; req_access_txt = "2" }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/titanium, /area/shuttle/escape) "at" = ( @@ -203,24 +195,12 @@ "aH" = ( /obj/structure/table, /obj/item/storage/firstaid/regular, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) -"aI" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, /obj/item/radio/intercom{ name = "Station Intercom (General)"; pixel_y = 23 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"aJ" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/escape) "aK" = ( /obj/machinery/door/airlock/titanium{ name = "Emergency Shuttle Airlock" @@ -237,15 +217,6 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"aM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/chair/comfy/shuttle{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aN" = ( /obj/structure/table/wood, /obj/item/toy/cards/deck/cas/black, @@ -292,12 +263,6 @@ /obj/machinery/recharger, /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) -"aW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/escape) "aX" = ( /turf/open/floor/plasteel/grimy, /area/shuttle/escape) @@ -324,18 +289,6 @@ }, /turf/open/floor/plasteel, /area/shuttle/escape) -"bb" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/barricade/wooden, -/obj/machinery/light, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/shuttle/escape) "bc" = ( /obj/machinery/status_display/evac, /turf/closed/wall/mineral/titanium, @@ -542,7 +495,7 @@ aG aw aL ac -av +ap bc be ab @@ -578,7 +531,7 @@ bn ac af ak -ap +ak ar av ac @@ -589,8 +542,8 @@ ac aG aw aL +ab ac -bb ad ab ab @@ -600,9 +553,9 @@ bn "} (8,1,1) = {" ac -ah +ae al -aa +ac ac ac aB @@ -623,9 +576,9 @@ aa aa "} (9,1,1) = {" -aa -aa -aa +ab +ac +ac aa as aw @@ -678,13 +631,13 @@ aa aa aa ab -aI -aJ -aM -aM -aM -aJ -aW +ac +ac +ac +ac +ac +ac +ac ab aa aa diff --git a/_maps/shuttles/emergency_tram.dmm b/_maps/shuttles/emergency_tram.dmm index acea353e60b4..c289852d6320 100644 --- a/_maps/shuttles/emergency_tram.dmm +++ b/_maps/shuttles/emergency_tram.dmm @@ -125,9 +125,7 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "ax" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, +/obj/structure/closet/emcloset, /obj/machinery/light/small{ dir = 1 }, @@ -139,16 +137,15 @@ pixel_x = 6; pixel_y = -24 }, +/obj/machinery/light/small{ + dir = 1 + }, /turf/open/floor/glass/reinforced, /area/shuttle/escape) "az" = ( /turf/open/floor/glass/reinforced, /area/shuttle/escape) "aA" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/closet/emcloset, /obj/machinery/light/small{ dir = 1 }, @@ -262,9 +259,7 @@ name = "Emergency Shuttle Airlock" }, /obj/docking_port/mobile/emergency{ - height = 9; - name = "Tram emergency shuttle"; - width = 32 + name = "Tram emergency shuttle" }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -289,7 +284,7 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/escape) "aU" = ( -/turf/open/openspace/airless, +/turf/open/space/openspace, /area/template_noop) "aV" = ( /obj/machinery/light{ @@ -408,10 +403,11 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/escape) "bg" = ( -/obj/machinery/door/airlock/titanium{ - name = "Emergency Shuttle Airlock" +/obj/machinery/light/small{ + dir = 1 }, -/turf/open/floor/mineral/titanium/white, +/obj/structure/closet/emcloset, +/turf/open/floor/glass/reinforced, /area/shuttle/escape) "bh" = ( /obj/structure/window/reinforced{ @@ -424,30 +420,6 @@ /obj/structure/shuttle/engine/propulsion, /turf/open/floor/plating/airless, /area/shuttle/escape) -"bj" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/shuttle/escape) -"bk" = ( -/obj/structure/window/reinforced, -/turf/open/floor/glass/reinforced, -/area/shuttle/escape) -"bl" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/glass/reinforced, -/area/shuttle/escape) (1,1,1) = {" aa @@ -525,7 +497,7 @@ al aq aq av -ax +ab ak aC aI @@ -534,7 +506,7 @@ aO aR aS av -ax +ab ak aF aK @@ -543,13 +515,13 @@ aK aK aE av -ax +ab ak aY aZ aZ ak -bj +aU "} (4,1,1) = {" ab @@ -568,7 +540,7 @@ ak aE aS ab -az +aA ab aE aL @@ -577,13 +549,13 @@ aL aL aE ab -az +aA ab aZ aZ aZ ab -bk +aU "} (5,1,1) = {" ab @@ -616,8 +588,8 @@ aT aZ aZ aZ -bg -bk +ab +aU "} (6,1,1) = {" ab @@ -627,7 +599,7 @@ am an am ab -az +ax ab aE aK @@ -636,7 +608,7 @@ aK aK aE ab -az +bg ab aE aK @@ -645,13 +617,13 @@ aK aK aE ab -az +bg ab aZ aZ aZ ab -bk +aU "} (7,1,1) = {" ab @@ -661,7 +633,7 @@ ao ar ar av -aA +ab ak aF aL @@ -670,7 +642,7 @@ aL aL aE av -aA +ab ak aR aL @@ -679,13 +651,13 @@ aL aL aE av -aA +ab ak ba aZ aZ ak -bl +aU "} (8,1,1) = {" aa diff --git a/_maps/shuttles/escape_pod_default.dmm b/_maps/shuttles/escape_pod_default.dmm index 0d3434bdc412..a46fd94e4a00 100644 --- a/_maps/shuttles/escape_pod_default.dmm +++ b/_maps/shuttles/escape_pod_default.dmm @@ -1,4 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"f" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) "B" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) @@ -45,14 +51,16 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) (1,1,1) = {" B B -B +f Z "} (2,1,1) = {" @@ -64,6 +72,6 @@ N (3,1,1) = {" B B -B +f Z "} diff --git a/_maps/shuttles/escape_pod_default_four.dmm b/_maps/shuttles/escape_pod_default_four.dmm index a0c596bec087..348b0db25ca9 100644 --- a/_maps/shuttles/escape_pod_default_four.dmm +++ b/_maps/shuttles/escape_pod_default_four.dmm @@ -1,4 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"o" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_4) "B" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_4) @@ -45,14 +51,16 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_4) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_4) (1,1,1) = {" B B -B +o Z "} (2,1,1) = {" @@ -64,6 +72,6 @@ N (3,1,1) = {" B B -B +o Z "} diff --git a/_maps/shuttles/escape_pod_default_one.dmm b/_maps/shuttles/escape_pod_default_one.dmm index 32948b820aee..1d2357390e97 100644 --- a/_maps/shuttles/escape_pod_default_one.dmm +++ b/_maps/shuttles/escape_pod_default_one.dmm @@ -1,4 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"y" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) "B" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) @@ -45,14 +51,16 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) (1,1,1) = {" B B -B +y Z "} (2,1,1) = {" @@ -64,6 +72,6 @@ N (3,1,1) = {" B B -B +y Z "} diff --git a/_maps/shuttles/escape_pod_default_three.dmm b/_maps/shuttles/escape_pod_default_three.dmm index 76ad1d3d97a0..ed2396bbf304 100644 --- a/_maps/shuttles/escape_pod_default_three.dmm +++ b/_maps/shuttles/escape_pod_default_three.dmm @@ -2,6 +2,12 @@ "B" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) +"C" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_3) "G" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 @@ -45,14 +51,16 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_3) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_3) (1,1,1) = {" B B -B +C Z "} (2,1,1) = {" @@ -64,6 +72,6 @@ N (3,1,1) = {" B B -B +C Z "} diff --git a/_maps/shuttles/escape_pod_default_two.dmm b/_maps/shuttles/escape_pod_default_two.dmm index eb8ed3bc6efd..99b5b6219573 100644 --- a/_maps/shuttles/escape_pod_default_two.dmm +++ b/_maps/shuttles/escape_pod_default_two.dmm @@ -1,4 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"g" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) "B" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) @@ -24,7 +30,7 @@ }, /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, -/area/shuttle/pod_1) +/area/shuttle/pod_2) "Q" = ( /obj/effect/spawner/structure/window/shuttle, /turf/open/floor/plating, @@ -45,14 +51,16 @@ /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) (1,1,1) = {" B B -B +g Z "} (2,1,1) = {" @@ -64,6 +72,6 @@ N (3,1,1) = {" B B -B +g Z "} diff --git a/_maps/shuttles/escape_pod_large.dmm b/_maps/shuttles/escape_pod_large.dmm index 5a523b2cbbc7..0bed760dc0f5 100644 --- a/_maps/shuttles/escape_pod_large.dmm +++ b/_maps/shuttles/escape_pod_large.dmm @@ -70,20 +70,25 @@ name = "Shuttle Airlock" }, /obj/docking_port/mobile/pod{ - dwidth = 2; - height = 6; name = "Cпасательная капсула (большая)"; - port_direction = 2; - width = 5 + port_direction = 2 }, /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, /area/shuttle/pod_1) +"R" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) "W" = ( /turf/template_noop, /area/template_noop) "Z" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) @@ -92,7 +97,7 @@ W B B u -B +R Z "} (2,1,1) = {" @@ -101,7 +106,7 @@ B J L h -Z +B "} (3,1,1) = {" u @@ -117,13 +122,13 @@ B M H A -Z +B "} (5,1,1) = {" W B B u -B +R Z "} diff --git a/_maps/shuttles/escape_pod_unit.dmm b/_maps/shuttles/escape_pod_unit.dmm index 720105c92ad9..93e17564c8e3 100644 --- a/_maps/shuttles/escape_pod_unit.dmm +++ b/_maps/shuttles/escape_pod_unit.dmm @@ -11,11 +11,9 @@ name = "Shuttle Airlock" }, /obj/docking_port/mobile/pod{ - height = 6; id = "podunit"; name = "Cпасательная капсула (юнит)"; - port_direction = 2; - width = 4 + port_direction = 2 }, /obj/structure/fans/tiny, /turf/open/floor/mineral/titanium/blue, @@ -37,8 +35,16 @@ "y" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) +"z" = ( +/obj/machinery/power/engine_capacitor_bank/escape_pod{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pod_1) "B" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/pod_1) "D" = ( @@ -92,7 +98,7 @@ y y y r -y +z B "} (2,1,1) = {" @@ -116,6 +122,6 @@ y y y r -y +z B "} diff --git a/_maps/shuttles/exploration_shuttle.dmm b/_maps/shuttles/exploration_shuttle.dmm index e54eec6a3734..a246ed4367c7 100644 --- a/_maps/shuttles/exploration_shuttle.dmm +++ b/_maps/shuttles/exploration_shuttle.dmm @@ -1,20 +1,28 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/obj/machinery/light/directional/west, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/mineral/titanium, +"ao" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/exploration) -"b" = ( +"bd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/structure/cable, -/turf/open/floor/mineral/plastitanium, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/shuttle{ + id_tag = "ex_cab"; + req_access_txt = "49" + }, +/turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"c" = ( +"bt" = ( /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 @@ -23,160 +31,299 @@ dir = 8 }, /obj/effect/turf_decal/bot, +/obj/machinery/power/terminal{ + dir = 4 + }, /turf/open/floor/plating, /area/shuttle/exploration) -"d" = ( -/obj/machinery/computer/shuttle_flight/exploration, -/turf/open/floor/mineral/titanium/white, +"dk" = ( +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/exploration) -"e" = ( +"dq" = ( /obj/effect/turf_decal/stripes/line{ - dir = 4 + dir = 1 }, -/obj/structure/fans/tiny, +/obj/structure/closet/crate/science, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/computer/exploration_shuttle, +/obj/item/wrench, +/obj/item/radio/headset/headset_exploration, +/obj/item/radio/headset/headset_exploration, +/obj/item/tank/internals/tactical, +/obj/item/tank/internals/tactical, +/obj/item/tank/internals/tactical, +/obj/item/tank/jetpack/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/shuttle/exploration) +"gf" = ( +/turf/template_noop, +/area/template_noop) +"hl" = ( /obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/exploration) +"jP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/poddoor/shutters{ - dir = 8; - id = "ex_cargo1"; - name = "Cargo Shutters" +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"kX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus; + locked = 0 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 }, /turf/open/floor/plating, /area/shuttle/exploration) -"f" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 4 +"ln" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + locked = 0; + pixel_y = 23; + req_access = null }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/shuttle/exploration) +"lT" = ( +/obj/structure/cable, /obj/machinery/button/door{ id = "ex_cab"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; - pixel_y = -32; + pixel_y = -25; req_access_txt = "49"; specialfunctions = 4 }, +/obj/machinery/light/small, /obj/machinery/camera/autoname{ dir = 1 }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"g" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"h" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 8 +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 }, /turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"j" = ( +"mN" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/power/port_gen/pacman, /obj/effect/turf_decal/bot, -/obj/structure/cable, -/obj/machinery/firealarm{ +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/machinery/atmospherics/components/tank/air{ dir = 1; - pixel_y = -24 + piping_layer = 4 }, /turf/open/floor/plating, /area/shuttle/exploration) -"k" = ( -/obj/structure/window/reinforced, +"ny" = ( +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/exploration) +"oo" = ( /obj/structure/table, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/recharger{ + pixel_x = -7; + pixel_y = 5 }, -/obj/item/dice/d6{ - pixel_x = -1; - pixel_y = 7 +/obj/machinery/button/door{ + id = "ex_cargo3"; + name = "Фронтовые бронежалюзи"; + pixel_x = 5; + pixel_y = 6; + req_access_txt = "49" }, -/obj/item/gps/mining{ - pixel_x = 12; - pixel_y = 2 +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"or" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 }, -/turf/open/floor/mineral/titanium/purple, +/turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"l" = ( -/turf/template_noop, -/area/template_noop) -"m" = ( -/obj/machinery/modular_computer/console/preset/civilian, -/turf/open/floor/mineral/titanium/white, +"oB" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/item/storage/secure/safe/rangers{ + pixel_y = -29 + }, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/exploration) -"n" = ( -/obj/structure/window/reinforced/survival_pod{ - dir = 1 +"pp" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ex_cargo3" }, -/obj/structure/shuttle/engine/heater, /turf/open/floor/plating, /area/shuttle/exploration) -"o" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/circuitboard/computer/exploration_shuttle, -/obj/structure/closet/crate, -/obj/item/wrench, -/obj/item/radio/headset/headset_exploration, -/obj/item/radio/headset/headset_exploration, +"pZ" = ( +/obj/machinery/computer/shuttle_flight/exploration, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/exploration) +"qd" = ( /obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname, +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 5e+006 + }, /turf/open/floor/plating, /area/shuttle/exploration) -"p" = ( +"qA" = ( +/obj/docking_port/mobile{ + dir = 4; + id = "exploration"; + name = "Шаттл Рейнджеров"; + port_direction = 8 + }, /obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/shuttle{ + req_access_txt = "49" }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ dir = 8 }, -/obj/machinery/door/firedoor/border_only{ +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ dir = 4 }, -/obj/machinery/door/firedoor/border_only{ - dir = 8 +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"rZ" = ( +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22; + req_access = null }, -/obj/effect/turf_decal/stripes/line{ +/obj/machinery/light{ dir = 8 }, +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"uO" = ( /obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/exploration) +"vV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 4 }, -/obj/machinery/door/airlock/shuttle{ - id_tag = "ex_cab"; - req_access_txt = "49" +/obj/machinery/button/door{ + id = "ex_cab"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -32; + req_access_txt = "49"; + specialfunctions = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"wY" = ( +/obj/machinery/light{ + dir = 4 }, /turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"q" = ( +"yb" = ( +/obj/machinery/computer/weapons, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/exploration) +"zH" = ( +/obj/structure/table, +/obj/item/navigation_map, +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"Az" = ( +/obj/machinery/computer/objective, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/exploration) +"BP" = ( /obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/exploration) +"Ct" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/titanium, +/area/shuttle/exploration) +"DL" = ( +/obj/machinery/shuttle/engine/plasma{ + dir = 1 + }, +/turf/open/floor/plating, +/area/shuttle/exploration) +"DZ" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/fans/tiny, -/obj/effect/turf_decal/stripes/line{ - dir = 4 +/obj/item/gps/mining/exploration{ + gpstag = "Шаттл рейнджеров"; + pixel_x = 16; + pixel_y = -1 }, -/obj/machinery/door/poddoor/shutters{ - dir = 4; - id = "ex_cargo2"; - name = "Cargo Shutters" +/obj/item/dice/d6, +/turf/open/floor/mineral/titanium/purple, +/area/shuttle/exploration) +"Eg" = ( +/obj/effect/landmark/exploration_weapon_spawner/right{ + dir = 1 }, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/exploration) +"Eo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/engineering, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, /turf/open/floor/plating, /area/shuttle/exploration) -"r" = ( +"FY" = ( /obj/effect/turf_decal/stripes/line{ dir = 4 }, @@ -197,42 +344,30 @@ }, /turf/open/floor/plating, /area/shuttle/exploration) -"t" = ( -/obj/docking_port/mobile{ - dir = 4; - dwidth = 5; - height = 7; - id = "exploration"; - name = "Шаттл Рейнджеров"; - port_direction = 8; - width = 13 - }, -/obj/structure/cable, -/obj/structure/fans/tiny, +"Gc" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/door/airlock/shuttle{ - req_access_txt = "49" +/turf/open/floor/mineral/plastitanium, +/area/shuttle/exploration) +"Go" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 }, -/turf/open/floor/mineral/titanium, +/obj/machinery/telecomms/allinone/exploration, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, /area/shuttle/exploration) -"u" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 24 +"Hk" = ( +/obj/structure/window/reinforced/survival_pod{ + dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/machinery/cell_charger{ - pixel_y = 5 +/obj/machinery/atmospherics/components/unary/shuttle/engine_heater{ + dir = 1 }, -/turf/open/floor/mineral/titanium/purple, +/turf/open/floor/plating, /area/shuttle/exploration) -"v" = ( +"IA" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -253,165 +388,82 @@ }, /turf/open/floor/plating, /area/shuttle/exploration) -"w" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/telecomms/allinone/exploration, -/obj/effect/turf_decal/delivery, -/obj/machinery/bounty_board/directional/south, -/turf/open/floor/plating, +"IS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/mineral/plastitanium, /area/shuttle/exploration) -"x" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ +"Jz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ dir = 8 }, -/turf/open/floor/mineral/titanium, +/turf/open/floor/mineral/plastitanium, /area/shuttle/exploration) -"y" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ - dir = 8 - }, -/obj/machinery/power/apc/auto_name/north{ - cell_type = /obj/item/stock_parts/cell/high/plus - }, +"KP" = ( +/obj/effect/turf_decal/bot, /obj/machinery/button/door{ id = "ex_cab"; name = "Cabin Bolt Control"; normaldoorcontrol = 1; - pixel_y = -25; + pixel_y = 24; req_access_txt = "49"; specialfunctions = 4 }, -/obj/machinery/light/small, -/obj/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, +/obj/machinery/atmospherics/components/unary/plasma_refiner, +/turf/open/floor/plating, /area/shuttle/exploration) -"z" = ( -/turf/closed/wall/mineral/titanium/nodiagonal, +"Mu" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/titanium/blue, /area/shuttle/exploration) -"A" = ( -/obj/structure/cable, +"PI" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/obj/machinery/door/airlock/shuttle{ - id_tag = "ex_cab"; - req_access_txt = "49" - }, -/obj/machinery/door/firedoor/border_only{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"D" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 5 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"E" = ( -/turf/closed/wall/mineral/plastitanium/nodiagonal, -/area/shuttle/exploration) -"F" = ( +"PM" = ( +/obj/structure/window/reinforced, /obj/structure/table, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/multitool{ - pixel_x = -3; - pixel_y = 4 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"G" = ( -/obj/structure/shuttle/engine/propulsion/burst, -/turf/open/floor/plating, -/area/shuttle/exploration) -"H" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 +/obj/machinery/cell_charger{ + pixel_x = 2; + pixel_y = -3 }, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/exploration) -"I" = ( -/turf/closed/wall/mineral/plastitanium, +/turf/open/floor/mineral/titanium/purple, /area/shuttle/exploration) -"J" = ( -/obj/structure/cable, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1; - piping_layer = 4 - }, +"Qa" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/effect/turf_decal/bot, +/obj/machinery/telecomms/relay/preset/exploration, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, /turf/open/floor/plating, /area/shuttle/exploration) -"K" = ( +"Qo" = ( /obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ - dir = 4 + dir = 8 }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/exploration) -"L" = ( +/obj/structure/fans/tiny, /obj/effect/turf_decal/stripes/line{ - dir = 1 + dir = 4 }, -/obj/structure/cable, -/obj/structure/closet/crate/science, -/obj/item/stack/sheet/mineral/plasma/five, -/obj/item/tank/internals/tactical, -/obj/item/tank/internals/tactical, -/obj/item/tank/internals/tactical, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/shuttle/exploration) -"M" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/button/door{ - id = "ex_cab"; - name = "Cabin Bolt Control"; - normaldoorcontrol = 1; - pixel_y = 32; - req_access_txt = "49"; - specialfunctions = 4 +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "ex_cargo2"; + name = "Cargo Shutters" }, -/obj/machinery/camera/autoname, /turf/open/floor/plating, /area/shuttle/exploration) -"N" = ( +"Rd" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, @@ -420,174 +472,157 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/exploration) -"O" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ - dir = 8 - }, +"RA" = ( /turf/open/floor/mineral/plastitanium, /area/shuttle/exploration) -"P" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"Q" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/shuttle/exploration) -"R" = ( -/obj/effect/spawner/structure/window/shuttle, -/turf/open/floor/plating, +"Tg" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/exploration) -"S" = ( +"Tp" = ( +/obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ dir = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ dir = 8 }, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"T" = ( -/obj/machinery/light/directional/east, -/turf/open/floor/mineral/titanium, -/area/shuttle/exploration) -"U" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/exploration) -"V" = ( +/obj/machinery/door/airlock/shuttle{ + id_tag = "ex_cab"; + req_access_txt = "49" + }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/exploration) -"W" = ( -/obj/machinery/computer/objective, -/turf/open/floor/mineral/titanium/white, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium, /area/shuttle/exploration) -"X" = ( -/obj/machinery/light_switch/directional/south, -/obj/machinery/sleeper{ +"Xj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/exploration) -"Z" = ( -/obj/machinery/light/directional/north, -/obj/machinery/airalarm{ - pixel_y = 23 +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "ex_cargo1"; + name = "Cargo Shutters" }, -/obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/shuttle/exploration) +"YA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/exploration) (1,1,1) = {" -l -R -R -z -z -t -z -z -r -e -E -I -l +gf +pp +pp +Tg +dk +qA +Tg +Tg +FY +Xj +ao +ny +gf "} (2,1,1) = {" -R -R -D -a -z -y -z -Q -V -U -w -E -I +pp +pp +oo +rZ +Tg +lT +Tg +ln +hl +IS +Go +ao +ny "} (3,1,1) = {" -R -W -P -f -z -p -z -Z -K -U -o -n -G +pp +Az +Ct +vV +Tg +bd +Tg +KP +BP +IS +Qa +Hk +DL "} (4,1,1) = {" -R -d -P -S -g -x -A -c -N -b -J -n -G +pp +pZ +Ct +PI +PI +jP +Tp +bt +Rd +Gc +mN +Hk +DL "} (5,1,1) = {" -R -m -P -h -k -H -z -M -O -U -L -n -G +pp +yb +Ct +or +DZ +oB +Tg +qd +YA +Jz +dq +Hk +DL "} (6,1,1) = {" -R -R -F -T -u -X -z -Q -V -U -j -E -I +pp +pp +zH +wY +PM +Mu +Tg +kX +uO +RA +Eo +ao +ny "} (7,1,1) = {" -l -R -R -z -z -z -z -z -v -q -E -I -l +gf +pp +pp +Tg +Eg +Tg +Tg +Tg +IA +Qo +ao +ny +gf "} diff --git a/_maps/shuttles/ferry_base.dmm b/_maps/shuttles/ferry_base.dmm index 7dbcbf63359e..8d3836c94878 100644 --- a/_maps/shuttles/ferry_base.dmm +++ b/_maps/shuttles/ferry_base.dmm @@ -3,7 +3,7 @@ /turf/template_noop, /area/template_noop) "b" = ( -/obj/structure/shuttle/engine/propulsion{ +/obj/machinery/shuttle/engine/void{ dir = 4 }, /turf/closed/wall/mineral/titanium, @@ -50,12 +50,9 @@ /obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 12; id = "ferry"; name = "ferry shuttle"; - port_direction = 2; - width = 5 + port_direction = 2 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/transport) diff --git a/_maps/shuttles/ferry_fancy.dmm b/_maps/shuttles/ferry_fancy.dmm index 63e49f567b8e..6300894cd495 100644 --- a/_maps/shuttles/ferry_fancy.dmm +++ b/_maps/shuttles/ferry_fancy.dmm @@ -10,13 +10,13 @@ /turf/open/floor/plating, /area/shuttle/transport) "d" = ( -/obj/machinery/door/airlock/external, /obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, /turf/open/floor/pod/dark, /area/shuttle/transport) "e" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 +/obj/machinery/shuttle/engine/void{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/transport) @@ -29,16 +29,22 @@ /area/shuttle/transport) "g" = ( /obj/structure/chair/comfy/shuttle, -/turf/open/floor/pod/dark, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "h" = ( /obj/machinery/light{ dir = 1 }, -/turf/open/floor/pod/light, +/obj/machinery/computer/shuttle_flight/ferry/request, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "i" = ( -/turf/open/floor/pod/light, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "j" = ( /obj/structure/shuttle/engine/heater{ @@ -51,31 +57,35 @@ /area/shuttle/transport) "k" = ( /obj/machinery/light/small, -/turf/open/floor/pod/light, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/transport) "l" = ( -/obj/machinery/door/airlock/titanium, -/turf/open/floor/pod/light, +/obj/machinery/door/airlock/titanium/glass, +/turf/open/floor/mineral/titanium/yellow, /area/shuttle/transport) "m" = ( -/obj/machinery/computer/shuttle_flight/ferry/request{ +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ dir = 8 }, -/turf/open/floor/pod/dark, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "n" = ( -/obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 13; id = "ferry"; name = "ferry shuttle"; - preferred_direction = 4; - width = 5 + preferred_direction = 4 }, /obj/structure/fans/tiny, -/turf/open/floor/pod/light, +/obj/machinery/door/airlock/titanium/glass, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "o" = ( /obj/structure/shuttle/engine/heater{ @@ -91,17 +101,77 @@ /obj/structure/chair/comfy/shuttle{ dir = 1 }, -/turf/open/floor/pod/dark, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "q" = ( /obj/machinery/light, -/turf/open/floor/pod/light, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "r" = ( -/obj/machinery/door/airlock/external, /obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, /turf/open/floor/pod/light, /area/shuttle/transport) +"t" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"v" = ( +/obj/structure/rack, +/obj/item/radio, +/obj/item/radio{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/radio{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"C" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"D" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/crowbar/red{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"E" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) +"L" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/transport) +"Q" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/transport) (1,1,1) = {" a @@ -120,7 +190,7 @@ a (3,1,1) = {" a f -i +L o a "} @@ -139,51 +209,51 @@ b b "} (6,1,1) = {" -c +b g -i +C p -c +b "} (7,1,1) = {" -b +c g -i +t p -b +c "} (8,1,1) = {" b h -i -i +t +v b "} (9,1,1) = {" +b +D +t +q +b +"} +(10,1,1) = {" d i m -i +E r "} -(10,1,1) = {" -b -i -i -q -b -"} (11,1,1) = {" b g -i +t p b "} (12,1,1) = {" c g -i +Q p c "} diff --git a/_maps/shuttles/ferry_kilo.dmm b/_maps/shuttles/ferry_kilo.dmm index eae8375b5a93..d5871830a9c7 100644 --- a/_maps/shuttles/ferry_kilo.dmm +++ b/_maps/shuttles/ferry_kilo.dmm @@ -30,15 +30,6 @@ /obj/structure/sign/nanotrasen, /turf/closed/wall/mineral/titanium, /area/shuttle/transport) -"h" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "i" = ( /obj/structure/window/shuttle, /obj/structure/grille, @@ -70,10 +61,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "m" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -95,15 +82,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) -"p" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/transport) "q" = ( /obj/machinery/computer/shuttle_flight/ferry/request{ dir = 4 @@ -115,10 +93,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "r" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -126,10 +100,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "s" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/corner, /obj/effect/turf_decal/stripes/corner{ dir = 1 @@ -155,22 +125,19 @@ /obj/structure/fans/tiny, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 11; id = "ferry"; name = "ferry shuttle"; - preferred_direction = 4; - width = 5 + preferred_direction = 4 }, /turf/open/floor/mineral/plastitanium, /area/shuttle/transport) "u" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/machinery/shuttle/engine/void{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/transport) "v" = ( @@ -216,8 +183,8 @@ (1,1,1) = {" a -h -p +u +u u a "} diff --git a/_maps/shuttles/ferry_lighthouse.dmm b/_maps/shuttles/ferry_lighthouse.dmm index cc8039c6ef8f..428c4937d4eb 100644 --- a/_maps/shuttles/ferry_lighthouse.dmm +++ b/_maps/shuttles/ferry_lighthouse.dmm @@ -3,7 +3,7 @@ /turf/template_noop, /area/template_noop) "ab" = ( -/obj/structure/shuttle/engine/propulsion/left{ +/obj/machinery/shuttle/engine/void{ dir = 4 }, /turf/open/floor/plating/airless, @@ -156,12 +156,9 @@ /obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ dir = 8; - dwidth = 8; - height = 27; id = "ferry"; name = "The Lighthouse"; - port_direction = 2; - width = 16 + port_direction = 2 }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/transport) @@ -273,7 +270,9 @@ /turf/open/floor/plating/airless, /area/shuttle/transport) "bj" = ( -/obj/structure/shuttle/engine/propulsion/right, +/obj/machinery/shuttle/engine/void{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/transport) diff --git a/_maps/shuttles/ferry_meat.dmm b/_maps/shuttles/ferry_meat.dmm index f8f43b136ca3..a80c61f82852 100644 --- a/_maps/shuttles/ferry_meat.dmm +++ b/_maps/shuttles/ferry_meat.dmm @@ -3,7 +3,7 @@ /turf/template_noop, /area/template_noop) "b" = ( -/obj/structure/shuttle/engine/propulsion{ +/obj/machinery/shuttle/engine/void{ dir = 4 }, /turf/closed/wall/mineral/titanium, @@ -106,12 +106,9 @@ /obj/machinery/door/airlock/titanium, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 12; id = "ferry"; name = "ferry shuttle"; - port_direction = 2; - width = 5 + port_direction = 2 }, /turf/open/floor/plasteel/freezer, /area/shuttle/transport) diff --git a/_maps/shuttles/freelancer_medium.dmm b/_maps/shuttles/freelancer_medium.dmm new file mode 100644 index 000000000000..9440e2761ad4 --- /dev/null +++ b/_maps/shuttles/freelancer_medium.dmm @@ -0,0 +1,1248 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"al" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) +"aw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"bA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/freelancer/cargo) +"ci" = ( +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"cs" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/stack/solid_electricity{ + amount = 30; + pixel_x = -9; + pixel_y = 11 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/freelancer/med) +"cH" = ( +/obj/machinery/shuttle_weapon/point_defense, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/cargo) +"cJ" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/shuttle, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"dd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"ec" = ( +/mob/living/simple_animal/bot/medbot, +/obj/machinery/power/apc/auto_name/directional/west{ + locked = 0 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"ef" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"eB" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"eH" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/freelancer/rnd) +"eJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"gH" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"gM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/passengers) +"ig" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer/cargo) +"iB" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"iK" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"iW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/shuttle, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"jy" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"jZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/shuttle/freelancer/rnd) +"kb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"kc" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + locked = 0 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/mineral/titanium/purple, +/area/shuttle/freelancer/rnd) +"kf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"kh" = ( +/obj/machinery/door/airlock/shuttle, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"kt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"kX" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer/cabine) +"lw" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/freelancer/passengers) +"mB" = ( +/obj/machinery/atmospherics/components/tank/air{ + piping_layer = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"mN" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/freelancer/cargo) +"ng" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"nC" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/freelancer/cargo) +"nF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/purple, +/area/shuttle/freelancer/rnd) +"nN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"nO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/mineral/titanium/purple, +/area/shuttle/freelancer/rnd) +"oN" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/shuttle, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"oU" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/freelancer/rnd) +"pj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/freelancer/med) +"pp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/tactical, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"pV" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer/passengers) +"pW" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + locked = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"pX" = ( +/obj/machinery/shuttle_weapon/point_defense{ + dir = 1 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/cabine) +"qc" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/obj/item/multitool, +/obj/item/gun/energy/e_gun/old, +/obj/machinery/newscaster/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"qw" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/cabine) +"qN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"sT" = ( +/obj/machinery/airalarm/directional/south{ + locked = 0 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"to" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + locked = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"tw" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/passengers) +"tz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/shuttle, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"tR" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/freelancer/med) +"uo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west{ + locked = 0 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/passengers) +"uT" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/shuttle, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/passengers) +"wy" = ( +/obj/structure/cable, +/obj/machinery/power/solar/t4_plastitaniumglass, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) +"xn" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/window/shuttle, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/shuttle/freelancer/cargo) +"yr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/pickaxe, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/airalarm/directional/west{ + locked = 0 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"yN" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/freelancer/cargo) +"Aa" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/stasis, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"Ac" = ( +/obj/structure/cable, +/obj/machinery/power/solar/t4_plastitaniumglass, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) +"Ag" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"Be" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"Bm" = ( +/obj/structure/table, +/obj/item/storage/box/rndboards, +/obj/item/mod/module/jetpack/advanced, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"Bs" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"Bt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/template_noop, +/area/shuttle/freelancer) +"BK" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/med) +"Cn" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer/cargo) +"Cy" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + locked = 0 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/port_gen/pacman/ecrys, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"CP" = ( +/turf/template_noop, +/area/template_noop) +"CS" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/freelancer/cabine) +"CV" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/cargo) +"DB" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/shuttle, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"Ee" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"Ew" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer/rnd) +"EE" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/med) +"Hc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/freelancer/med) +"HE" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south{ + locked = 0 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"HT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/freelancer/med) +"HY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"JJ" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"KR" = ( +/obj/machinery/shuttle/engine/advanced/large, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer/rnd) +"La" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"Lr" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"LT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"MK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"MZ" = ( +/obj/machinery/computer/shuttle_flight/freelancer, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"Ne" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/shuttle/freelancer/cargo) +"Ns" = ( +/obj/structure/lattice/catwalk, +/turf/template_noop, +/area/shuttle/freelancer) +"NR" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/freelancer/med) +"Op" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"Ou" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer) +"OH" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/rnd) +"OZ" = ( +/obj/machinery/shuttle_weapon/point_defense, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/rnd) +"Pi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west{ + locked = 0 + }, +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/chem_dispenser, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"Ps" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer/rnd) +"Pw" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer/med) +"PZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"Ql" = ( +/obj/machinery/suit_storage_unit/industrial/prototype, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/passengers) +"QA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"RA" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer) +"RU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer/cargo) +"Tl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/start/freelancer, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"TE" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"TW" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer/cargo) +"TZ" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/med) +"Uf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/cabine) +"Ui" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/machine, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"UI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/mineral/titanium/purple, +/area/shuttle/freelancer/rnd) +"Wm" = ( +/obj/machinery/shuttle/engine/advanced/large, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer/cargo) +"Wz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/weapons, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"WV" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/docking_port/mobile/freelancer{ + dir = 4; + port_direction = 8; + preferred_direction = 2 + }, +/turf/open/floor/plating, +/area/shuttle/freelancer/passengers) +"WX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) +"Xi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer/cargo) +"XG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cargo) +"XH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/rnd) +"YM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer/cabine) +"Za" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/white, +/area/shuttle/freelancer/passengers) + +(1,1,1) = {" +CP +pX +qw +qw +qw +qw +CS +oN +lw +tw +WV +pV +tw +tw +TW +Cn +Cn +TW +cH +CP +"} +(2,1,1) = {" +qw +qw +CS +iK +ec +La +qw +qN +tw +uo +gM +gM +gM +tw +yr +pp +XG +xn +Ne +Wm +"} +(3,1,1) = {" +kX +MZ +Tl +TE +ng +Uf +iW +kt +uT +ef +kb +kb +WX +DB +nN +nN +eJ +xn +bA +ig +"} +(4,1,1) = {" +kX +Wz +eB +QA +PZ +iB +qw +Ou +tw +jy +Bs +Za +Ag +tw +to +Be +HY +yN +nC +Xi +"} +(5,1,1) = {" +qw +qw +CS +qc +kf +sT +qw +JJ +EE +EE +EE +NR +Ql +tw +mB +ci +MK +RU +nC +Xi +"} +(6,1,1) = {" +CP +pX +qw +qw +aw +YM +qw +pW +EE +Cy +LT +NR +EE +TW +TW +mN +Ee +Op +nC +Xi +"} +(7,1,1) = {" +CP +Ns +qw +CS +cJ +CS +qw +dd +kh +HT +Hc +cs +EE +Lr +Pi +TW +tz +CV +nC +Xi +"} +(8,1,1) = {" +CP +Ns +Ns +Ns +Bt +qw +qw +RA +BK +Aa +pj +TZ +EE +kc +nF +UI +nO +eH +oU +KR +"} +(9,1,1) = {" +CP +al +wy +wy +wy +wy +wy +Ac +EE +NR +tR +HE +EE +Bm +XH +Ui +gH +eH +jZ +Ps +"} +(10,1,1) = {" +CP +CP +CP +CP +CP +CP +CP +CP +EE +EE +Pw +Pw +EE +OH +Ew +Ew +Ew +OH +OZ +CP +"} diff --git a/_maps/shuttles/freelancer_small.dmm b/_maps/shuttles/freelancer_small.dmm new file mode 100644 index 000000000000..fbfc6f708dc1 --- /dev/null +++ b/_maps/shuttles/freelancer_small.dmm @@ -0,0 +1,211 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer) +"c" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = -1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"i" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer) +"l" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/freelancer) +"m" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/mob/living/simple_animal/bot/medbot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer) +"n" = ( +/obj/structure/cable, +/obj/machinery/power/solar/t4_plastitaniumglass, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) +"w" = ( +/obj/structure/closet/crate{ + name = "emergency supplies crate" + }, +/obj/item/flashlight/flare{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/flashlight/flare{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/obj/item/multitool, +/obj/item/gun/energy/e_gun/old, +/obj/machinery/newscaster/directional/east, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"x" = ( +/obj/structure/cable, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer) +"A" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/shuttle, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"E" = ( +/obj/docking_port/mobile/freelancer, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/freelancer) +"H" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west{ + locked = 0 + }, +/obj/structure/cable, +/obj/effect/landmark/start/freelancer, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"J" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/shuttle/freelancer) +"K" = ( +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/freelancer) +"O" = ( +/obj/machinery/power/solar/t4_plastitaniumglass, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) +"P" = ( +/obj/machinery/power/solar_control{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"T" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/shuttle/freelancer) +"U" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/titanium, +/area/shuttle/freelancer) +"W" = ( +/obj/machinery/computer/shuttle_flight/freelancer, +/obj/effect/turf_decal/delivery, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/freelancer) +"X" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/shuttle/freelancer) + +(1,1,1) = {" +a +T +a +A +a +a +a +"} +(2,1,1) = {" +T +W +H +J +m +l +K +"} +(3,1,1) = {" +a +a +P +c +i +U +E +"} +(4,1,1) = {" +O +x +x +a +w +l +K +"} +(5,1,1) = {" +X +n +a +a +a +a +a +"} diff --git a/_maps/shuttles/hunter_bounty.dmm b/_maps/shuttles/hunter_bounty.dmm index 28a8629849ca..986c27a4a856 100644 --- a/_maps/shuttles/hunter_bounty.dmm +++ b/_maps/shuttles/hunter_bounty.dmm @@ -17,8 +17,8 @@ /turf/open/floor/plating, /area/shuttle/hunter) "e" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/hunter) @@ -33,6 +33,7 @@ /turf/closed/wall/mineral/plastitanium, /area/shuttle/hunter) "h" = ( +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) "i" = ( @@ -63,6 +64,7 @@ /area/shuttle/hunter) "n" = ( /obj/structure/table, +/obj/machinery/light/directional/north, /turf/open/floor/pod/light, /area/shuttle/hunter) "o" = ( @@ -76,21 +78,24 @@ /turf/open/floor/pod/light, /area/shuttle/hunter) "q" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/hunter) "r" = ( /obj/machinery/computer/launchpad{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/hunter) "s" = ( +/obj/machinery/light/directional/north, /turf/open/floor/pod/dark, /area/shuttle/hunter) "t" = ( @@ -138,6 +143,7 @@ /area/shuttle/hunter) "B" = ( /obj/machinery/launchpad, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/hunter) "C" = ( @@ -157,6 +163,7 @@ /area/shuttle/hunter) "F" = ( /obj/machinery/power/smes, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/hunter) "G" = ( @@ -167,6 +174,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/hunter) "I" = ( @@ -196,14 +204,10 @@ width = 17 }, /obj/docking_port/mobile{ - dheight = 3; - dwidth = 3; - height = 13; id = "huntership"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "hunter shuttle"; - rechargeTime = 1800; - width = 15 + rechargeTime = 1800 }, /obj/structure/fans/tiny, /turf/open/floor/plating, @@ -214,12 +218,51 @@ }, /turf/open/floor/pod/light, /area/shuttle/hunter) +"N" = ( +/obj/structure/cable, +/turf/closed/wall/mineral/plastitanium, +/area/shuttle/hunter) "P" = ( /obj/structure/fluff/empty_sleeper{ dir = 1 }, /turf/open/floor/pod/light, /area/shuttle/hunter) +"Q" = ( +/obj/structure/curtain/bounty, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/shuttle/hunter) +"R" = ( +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/shuttle/hunter) +"U" = ( +/obj/machinery/suit_storage_unit/standard_unit{ + storage_type = /obj/item/tank/internals/oxygen/yellow + }, +/obj/machinery/light/directional/south, +/turf/open/floor/pod/light, +/area/shuttle/hunter) +"V" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/shuttle/hunter) +"W" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/pod/dark, +/area/shuttle/hunter) +"Y" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/turf/open/floor/pod/light, +/area/shuttle/hunter) "Z" = ( /obj/effect/mob_spawn/human/fugitive/bounty/synth, /turf/open/floor/pod/light, @@ -289,13 +332,13 @@ b b b q -b -b +N +N r B F -b -b +N +N q b b @@ -308,7 +351,7 @@ b b s C -G +W b b g @@ -338,7 +381,7 @@ b b u u -u +Q b b i @@ -352,8 +395,8 @@ i b m v -s -s +I +R K b i @@ -367,9 +410,9 @@ i k n w -x -s -K +G +R +U b i a @@ -383,7 +426,7 @@ b J x E -s +R K b a @@ -397,8 +440,8 @@ a b o y -s -s +I +R K b a @@ -413,7 +456,7 @@ i b u u -u +Q b i a @@ -426,9 +469,9 @@ a a i p -s -s -s +I +I +R P i a @@ -442,8 +485,8 @@ a i Z z -s -z +I +V M i a @@ -457,8 +500,8 @@ a b i A -n -I +Y +R i b a diff --git a/_maps/shuttles/hunter_russian.dmm b/_maps/shuttles/hunter_russian.dmm index 5b64e4f0f93f..0f1ee26438ba 100644 --- a/_maps/shuttles/hunter_russian.dmm +++ b/_maps/shuttles/hunter_russian.dmm @@ -1,59 +1,90 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/turf/closed/wall, +"ap" = ( +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) -"c" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, -/turf/open/floor/plating/airless, +"aL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/mecha_wreckage/ripley, +/turf/open/floor/plating, /area/shuttle/hunter) -"d" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 +"eG" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 }, -/turf/open/floor/plating/airless, +/turf/open/floor/plating, /area/shuttle/hunter) -"e" = ( +"fj" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/hunter) +"gx" = ( +/obj/machinery/door/airlock/security/glass, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"if" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/weldingtool/largetank, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"ii" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/shuttle/hunter) +"kt" = ( /obj/machinery/portable_atmospherics/scrubber/huge, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/hunter) -"f" = ( +"ku" = ( /obj/machinery/power/smes, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/hunter) -"g" = ( +"kx" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 6 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"kP" = ( /turf/open/floor/plating, /area/shuttle/hunter) -"h" = ( -/obj/machinery/door/airlock/security/glass, -/turf/open/floor/mineral/plastitanium/red, +"kY" = ( +/turf/template_noop, /area/shuttle/hunter) -"i" = ( -/obj/machinery/door/airlock/security/glass, -/obj/structure/fans/tiny, -/turf/open/floor/mineral/plastitanium/red, +"lb" = ( +/obj/effect/mob_spawn/human/fugitive/russian{ + dir = 1 + }, +/turf/open/floor/plating, /area/shuttle/hunter) -"j" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, +"nx" = ( +/obj/effect/mob_spawn/human/fugitive/russian{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/hunter) -"k" = ( +"qP" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/hunter) -"m" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/item/weldingtool/largetank, +"wk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) -"n" = ( +"xi" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/reagent_dispensers/watertank, /obj/item/reagent_containers/glass/bucket, @@ -63,125 +94,92 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) -"o" = ( -/obj/effect/mob_spawn/human/fugitive/russian{ - dir = 4 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/hunter) -"p" = ( +"AU" = ( /obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate{ icon_state = "crateopen" }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) -"q" = ( +"Bh" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/bottle/vodka, /turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) -"r" = ( -/obj/effect/turf_decal/arrows{ +"Br" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"BX" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"CA" = ( +/obj/structure/chair{ dir = 4 }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/hunter) -"s" = ( -/obj/structure/table, -/obj/item/storage/fancy/cigarettes/cigars/cohiba{ - pixel_y = 6 +"Dm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/coffin{ + icon_state = "coffinopen" }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/plating, /area/shuttle/hunter) -"t" = ( +"ET" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate/large{ icon_state = "crittercrate" }, +/obj/machinery/light/small/directional/west, /turf/open/floor/plating, /area/shuttle/hunter) -"u" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/hunter) -"v" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/shuttle/hunter) -"w" = ( -/obj/machinery/fugitive_capture, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/hunter) -"x" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plating, -/area/shuttle/hunter) -"y" = ( -/turf/template_noop, +"HM" = ( +/obj/item/book/manual/ripley_build_and_repair, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/hunter) -"z" = ( -/obj/structure/chair{ +"Io" = ( +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/hunter) -"A" = ( -/obj/machinery/computer/shuttle_flight/hunter{ - dir = 8 +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/plating/airless, /area/shuttle/hunter) -"B" = ( +"Iv" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/shuttle/hunter) +"JA" = ( /obj/effect/turf_decal/bot, -/obj/structure/closet/crate{ - icon_state = "crateopen" - }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/hunter) -"C" = ( -/obj/machinery/computer/camera_advanced{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/hunter) -"D" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/plastitanium/red, -/area/shuttle/hunter) -"E" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle/hunter) -"F" = ( +"JE" = ( /obj/effect/turf_decal/bot, /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate/engineering{ - icon_state = "engi_crateopen" +/obj/structure/closet/crate{ + icon_state = "crateopen" }, /turf/open/floor/plating, /area/shuttle/hunter) -"G" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/mineral/plastitanium, +"JI" = ( +/turf/closed/wall, /area/shuttle/hunter) -"H" = ( +"Kd" = ( /obj/effect/turf_decal/bot, -/obj/structure/closet/crate/coffin{ - icon_state = "coffinopen" +/obj/structure/closet/crate{ + icon_state = "crateopen" }, /turf/open/floor/plating, /area/shuttle/hunter) -"I" = ( -/obj/effect/turf_decal/bot, -/obj/structure/mecha_wreckage/ripley, -/turf/open/floor/plating, -/area/shuttle/hunter) -"J" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/hunter) -"K" = ( +"Kl" = ( /obj/machinery/door/airlock/security/glass, /obj/structure/fans/tiny, /obj/docking_port/stationary{ @@ -192,304 +190,378 @@ width = 17 }, /obj/docking_port/mobile{ - dheight = 3; - dwidth = 3; - height = 13; id = "huntership"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "hunter shuttle"; - rechargeTime = 1800; - width = 15 + rechargeTime = 1800 }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/hunter) -"L" = ( -/obj/effect/mob_spawn/human/fugitive/russian{ - dir = 1 - }, +"Mq" = ( +/obj/machinery/light/small/directional/east, /turf/open/floor/plating, /area/shuttle/hunter) -"N" = ( +"MJ" = ( /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) -"Q" = ( -/obj/item/book/manual/ripley_build_and_repair, +"MM" = ( +/obj/effect/mob_spawn/human/fugitive/russian{ + dir = 4 + }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/hunter) -"Y" = ( -/obj/machinery/suit_storage_unit/standard_unit, +"Ov" = ( +/obj/machinery/shuttle/engine/ion{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/shuttle/hunter) +"OP" = ( +/obj/machinery/computer/camera_advanced{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Pz" = ( +/turf/template_noop, +/area/template_noop) +"QI" = ( +/obj/machinery/door/airlock/security/glass, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Rl" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"RJ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, /area/shuttle/hunter) +"TV" = ( +/obj/machinery/computer/shuttle_flight/hunter{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Ur" = ( +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"Uu" = ( +/obj/machinery/door/airlock/security/glass, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Ux" = ( +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"UA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/hunter) +"US" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/engineering{ + icon_state = "engi_crateopen" + }, +/turf/open/floor/plating, +/area/shuttle/hunter) +"Vd" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Vk" = ( +/obj/machinery/light/small/directional, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"VH" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) +"Wm" = ( +/obj/machinery/fugitive_capture, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"WF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/hunter) +"WV" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/hunter) (1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz +Pz "} (2,1,1) = {" -a -a -a -a -a -a -b -c -c -b -a -a -a -a -a -a +Pz +Pz +Pz +Pz +Pz +Pz +JI +Ov +Ov +JI +Pz +Pz +Pz +Pz +Pz +Pz "} (3,1,1) = {" -a -c -c -a -b -b -b -d -d -b -b -b -a -c -c -a +Pz +Ov +Ov +Pz +JI +JI +JI +Io +Io +JI +JI +JI +Pz +Ov +Ov +Pz "} (4,1,1) = {" -b -d -d -b -b -p -t -x -B -B -F -b -b -d -d -b +JI +Io +Io +JI +JI +JE +ET +JA +Kd +AU +US +JI +JI +Io +Io +JI "} (5,1,1) = {" -b -e -g -b -j -q -u -q -q -u -u -H -b -g -L -b +JI +kt +UA +Iv +fj +ap +wk +ap +Ur +RJ +RJ +Dm +JI +UA +nx +JI "} (6,1,1) = {" -b -e -g -h -k -k -k -k -k -D -k -k -h -g -L -b +JI +kt +kP +Uu +WV +WV +WV +Ux +Ux +Br +Ux +Ux +gx +UA +lb +JI "} (7,1,1) = {" -b -f -g -b -x -k -Y -Y -Y -Y -Q -I -b -g -L -b +JI +ku +eG +Iv +JA +WV +BX +BX +BX +BX +HM +aL +JI +Mq +lb +JI "} (8,1,1) = {" -b -b -b -b -b -h -b -b -b -b -h -b -b -b -b -b +JI +JI +JI +JI +JI +Uu +JI +JI +JI +JI +Uu +JI +JI +JI +JI +JI "} (9,1,1) = {" -a -b -b -b -m -k -b -y -y -b -k -N -b -b -b -a +Pz +JI +JI +JI +if +Vk +JI +kY +kY +JI +VH +MJ +JI +JI +JI +Pz "} (10,1,1) = {" -a -a -a -i -k -k -v -y -y -v -k -k -K -a -a -a +Pz +Pz +Pz +QI +WV +WV +ii +kY +kY +ii +WV +WV +Kl +Pz +Pz +Pz "} (11,1,1) = {" -a -a -a -b -n -r -b -y -y -b -r -J -b -a -a -a +Pz +Pz +Pz +JI +xi +Rl +JI +kY +kY +JI +Rl +WF +JI +Pz +Pz +Pz "} (12,1,1) = {" -a -a -a -b -b -h -b -b -b -b -h -b -b -a -a -a +Pz +Pz +Pz +JI +JI +Uu +JI +JI +JI +JI +Uu +JI +JI +Pz +Pz +Pz "} (13,1,1) = {" -a -a -a -b -o -k -r -z -z -k -k -o -b -a -a -a +Pz +Pz +Pz +JI +MM +WV +qP +CA +CA +Vd +WV +MM +JI +Pz +Pz +Pz "} (14,1,1) = {" -a -a -a -b -b -s -w -A -C -E -G -b -b -a -a -a +Pz +Pz +Pz +JI +JI +kx +Wm +TV +OP +Ur +Bh +JI +JI +Pz +Pz +Pz "} (15,1,1) = {" -a -a -a -a -b -b -v -v -v -v -b -b -a -a -a -a +Pz +Pz +Pz +Pz +JI +JI +ii +ii +ii +ii +JI +JI +Pz +Pz +Pz +Pz "} diff --git a/_maps/shuttles/hunter_space_cop.dmm b/_maps/shuttles/hunter_space_cop.dmm index b6e9ef484e8c..07ccaf566ff7 100644 --- a/_maps/shuttles/hunter_space_cop.dmm +++ b/_maps/shuttles/hunter_space_cop.dmm @@ -1,5 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/directional/north, /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) "ab" = ( @@ -20,12 +22,9 @@ }, /obj/docking_port/mobile{ dir = 4; - dwidth = 3; - height = 12; id = "huntership"; name = "hunter shuttle"; - rechargeTime = 1800; - width = 7 + rechargeTime = 1800 }, /obj/machinery/door/poddoor/shutters{ id = "Interpolship" @@ -81,20 +80,27 @@ }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) +"av" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/mob_spawn/human/fugitive/spacepol{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/hunter) "bY" = ( /obj/structure/chair/comfy/shuttle, /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) "gi" = ( /obj/structure/table, -/obj/effect/mob_spawn/human/fugitive/spacepol{ - dir = 8 - }, /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) "hB" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/closed/wall/mineral/titanium, /area/shuttle/hunter) @@ -110,6 +116,18 @@ /obj/machinery/fugitive_capture, /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) +"ol" = ( +/obj/effect/mob_spawn/human/fugitive/spacepol{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/hunter) +"om" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/hunter) "rR" = ( /obj/machinery/door/airlock/titanium, /turf/open/floor/mineral/titanium/blue, @@ -137,6 +155,10 @@ "RO" = ( /turf/open/floor/mineral/titanium/blue, /area/shuttle/hunter) +"Tn" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/hunter) (1,1,1) = {" Pq @@ -175,13 +197,13 @@ ku hB "} (5,1,1) = {" +om ku -ku -bY +aa RO -ak -ku +av ku +om "} (6,1,1) = {" Pq @@ -220,18 +242,18 @@ ku hB "} (10,1,1) = {" -ku +om ku RO Rz -RO -ku +Tn ku +om "} (11,1,1) = {" Pq An -aa +ol gi ab An diff --git a/_maps/shuttles/infiltrator_advanced.dmm b/_maps/shuttles/infiltrator_advanced.dmm index 2a40a5faf819..262344acb417 100644 --- a/_maps/shuttles/infiltrator_advanced.dmm +++ b/_maps/shuttles/infiltrator_advanced.dmm @@ -93,10 +93,10 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "am" = ( +/obj/effect/turf_decal/bot, /obj/machinery/computer/crew/syndie{ dir = 4 }, -/obj/effect/turf_decal/bot, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "an" = ( @@ -199,7 +199,7 @@ aidisabled = 1; area = "/area/shuttle/syndicate/bridge"; name = "Infiltrator E.V.A APC"; - pixel_y = -26 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, @@ -245,10 +245,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, @@ -356,7 +354,7 @@ area = "/area/shuttle/syndicate/airlock"; dir = 4; name = "Infiltrator Airlock APC"; - pixel_x = 28 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/mineral/plastitanium, @@ -432,12 +430,10 @@ area = "/area/shuttle/syndicate/hallway"; dir = 1; name = "Infiltrator APC"; - pixel_y = 26 - }, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 + pixel_y = 25 }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) @@ -908,7 +904,7 @@ area = "/area/shuttle/syndicate/eva"; dir = 1; name = "Infiltrator E.V.A APC"; - pixel_y = 26 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/pod/dark, @@ -950,6 +946,7 @@ req_access_txt = "150" }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bW" = ( @@ -1063,10 +1060,8 @@ "cg" = ( /obj/machinery/suit_storage_unit/syndicate, /obj/effect/turf_decal/box, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/pod/dark, /area/shuttle/syndicate/eva) "ch" = ( @@ -1108,6 +1103,7 @@ pixel_y = 4 }, /obj/item/storage/firstaid/fire, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "ck" = ( @@ -1222,10 +1218,8 @@ pixel_x = -4; pixel_y = -4 }, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/syndicate/medical) @@ -1236,11 +1230,13 @@ /turf/open/floor/plating, /area/shuttle/syndicate/medical) "cy" = ( -/obj/structure/shuttle/engine/propulsion, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating, /area/shuttle/syndicate/medical) "cz" = ( @@ -1272,10 +1268,10 @@ /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/medical) "cD" = ( -/obj/structure/shuttle/engine/large, /obj/effect/turf_decal/stripes/line{ dir = 10 }, +/obj/machinery/shuttle/engine/advanced/large, /turf/open/floor/plating, /area/shuttle/syndicate/hallway) "cE" = ( @@ -1296,8 +1292,8 @@ /turf/open/floor/plating, /area/shuttle/syndicate/armory) "cI" = ( -/obj/structure/shuttle/engine/large, /obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/advanced/large, /turf/open/floor/plating, /area/shuttle/syndicate/hallway) "cJ" = ( @@ -1313,7 +1309,7 @@ /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/armory) "cL" = ( -/obj/structure/shuttle/engine/large, +/obj/machinery/shuttle/engine/advanced/large, /turf/open/floor/plating, /area/shuttle/syndicate/medical) "cM" = ( @@ -1327,11 +1323,13 @@ /turf/open/floor/plating, /area/shuttle/syndicate/hallway) "cO" = ( -/obj/structure/shuttle/engine/propulsion, /obj/effect/turf_decal/stripes/line, /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating, /area/shuttle/syndicate/armory) "cP" = ( @@ -1351,7 +1349,7 @@ /turf/open/floor/plating, /area/shuttle/syndicate/armory) "cS" = ( -/obj/structure/shuttle/engine/large, +/obj/machinery/shuttle/engine/advanced/large, /turf/open/floor/plating, /area/shuttle/syndicate/armory) "cT" = ( @@ -1385,16 +1383,12 @@ name = "Infiltrator Starboard Hatch" }, /obj/docking_port/mobile{ - dheight = 1; dir = 8; - dwidth = 12; - height = 17; hidden = 1; id = "syndicate"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "syndicate infiltrator"; - port_direction = 4; - width = 23 + port_direction = 4 }, /obj/structure/fans/tiny, /obj/effect/turf_decal/box, @@ -1517,10 +1511,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/turf_decal/stripes/line{ dir = 6 }, @@ -1548,10 +1540,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, -/obj/machinery/airalarm/syndicate{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/line{ dir = 10 @@ -1563,10 +1553,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/syndicate{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dm" = ( @@ -1605,10 +1593,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/airlock) "dq" = ( @@ -1627,6 +1613,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/medical) "ds" = ( @@ -1765,6 +1752,7 @@ }, /obj/effect/turf_decal/box, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/syndicate/medical) "dE" = ( @@ -1772,6 +1760,7 @@ dir = 1 }, /obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "dF" = ( @@ -1813,7 +1802,7 @@ area = "/area/shuttle/syndicate/medical"; dir = 8; name = "Infiltrator Medical APC"; - pixel_x = -28 + pixel_x = -25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -1884,7 +1873,7 @@ area = "/area/shuttle/syndicate/armory"; dir = 4; name = "Infiltrator Armory APC"; - pixel_x = 28 + pixel_x = 25 }, /obj/structure/cable, /turf/open/floor/pod/dark, @@ -1901,6 +1890,7 @@ "dO" = ( /obj/structure/closet/syndicate/personal, /obj/effect/turf_decal/bot, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "dP" = ( @@ -1947,11 +1937,10 @@ dir = 1 }, /obj/effect/turf_decal/bot, -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/syndicate/medical) "dU" = ( @@ -2015,6 +2004,7 @@ /obj/machinery/status_display/evac{ pixel_x = 32 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) "ea" = ( @@ -2030,7 +2020,7 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "eb" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 8 }, /obj/effect/turf_decal/bot, @@ -2038,6 +2028,7 @@ /obj/structure/sign/warning/nosmoking{ pixel_x = 28 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) "ec" = ( @@ -2207,9 +2198,8 @@ /obj/structure/extinguisher_cabinet{ pixel_x = 26 }, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) "ep" = ( @@ -2277,11 +2267,26 @@ dir = 8; pixel_x = 26 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/syndicate/armory) "ev" = ( /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/syndicate/hallway) +"NA" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/closed/wall/r_wall/syndicate, +/area/shuttle/syndicate/medical) +"Vk" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/closed/wall/r_wall/syndicate, +/area/shuttle/syndicate/armory) (1,1,1) = {" ad @@ -2371,7 +2376,7 @@ bL dz dD dT -bn +NA cy ad "} @@ -2462,7 +2467,7 @@ ce bP dA cj -bn +NA cy ad ad @@ -2600,7 +2605,7 @@ ce ed el dO -cG +Vk cO ad ad @@ -2693,7 +2698,7 @@ eh dZ eb eu -cG +Vk cO ad "} diff --git a/_maps/shuttles/infiltrator_basic.dmm b/_maps/shuttles/infiltrator_basic.dmm index 28a5c8297a68..6623f28b74c2 100644 --- a/_maps/shuttles/infiltrator_basic.dmm +++ b/_maps/shuttles/infiltrator_basic.dmm @@ -35,13 +35,13 @@ /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/bridge) "ah" = ( -/obj/machinery/computer/crew/syndie, /obj/effect/turf_decal/bot_white, +/obj/machinery/computer/crew/syndie, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/bridge) "ai" = ( /obj/effect/turf_decal/bot_white, -/obj/machinery/modular_computer/console/preset/civilian, +/obj/machinery/computer/weapons, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/bridge) "aj" = ( @@ -91,10 +91,17 @@ dir = 8; name = "tactical swivel chair" }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "ap" = ( -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "aq" = ( /obj/structure/chair/office{ @@ -108,14 +115,24 @@ pixel_y = 32; req_access_txt = "150" }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "ar" = ( /obj/structure/chair/office{ dir = 4; name = "tactical swivel chair" }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "as" = ( /obj/structure/table/reinforced, @@ -154,17 +171,13 @@ name = "Cockpit"; req_access_txt = "150" }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/bridge) "aw" = ( /obj/machinery/porta_turret/syndicate/shuttle{ @@ -176,10 +189,6 @@ /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/eva) "ay" = ( -/obj/structure/table/reinforced, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/obj/item/crowbar/red, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -190,6 +199,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/turntable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/hallway) "az" = ( @@ -206,12 +216,6 @@ /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/hallway) "aA" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/handcuffs{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/zipties, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -222,6 +226,9 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/effect/spawner/random/entertainment/arcade{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/hallway) "aB" = ( @@ -245,7 +252,13 @@ /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/hallway) "aD" = ( -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) "aE" = ( /obj/structure/chair/comfy/shuttle{ @@ -323,11 +336,10 @@ /turf/closed/wall/r_wall/syndicate/nodiagonal, /area/shuttle/syndicate/medical) "aL" = ( -/obj/machinery/suit_storage_unit/syndicate, -/obj/effect/turf_decal/stripes/line{ - dir = 5 +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 1 }, -/turf/open/floor/mineral/plastitanium, +/turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/eva) "aM" = ( /obj/effect/turf_decal/tile/neutral{ @@ -382,7 +394,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/eva) "aS" = ( /obj/structure/tank_dispenser/oxygen, @@ -418,17 +430,13 @@ name = "Ready Room"; req_access_txt = "150" }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 +/obj/effect/turf_decal/stripes/line{ + dir = 8 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/line{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) "aX" = ( /obj/structure/chair/comfy/shuttle{ @@ -453,16 +461,12 @@ req_access_txt = "150" }, /obj/docking_port/mobile{ - dheight = 1; dir = 8; - dwidth = 12; - height = 17; hidden = 1; id = "syndicate"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "syndicate infiltrator"; - port_direction = 4; - width = 23 + port_direction = 4 }, /obj/structure/fans/tiny, /obj/effect/turf_decal/stripes/line{ @@ -471,43 +475,37 @@ /turf/open/floor/plating, /area/shuttle/syndicate/airlock) "aZ" = ( -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/eva) "ba" = ( /obj/machinery/door/airlock/external{ name = "E.V.A. Gear Storage"; req_access_txt = "150" }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/eva) "bb" = ( /obj/machinery/door/airlock/external{ req_access_txt = "150" }, -/obj/effect/turf_decal/tile/neutral{ +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "bc" = ( -/turf/open/floor/plasteel/dark, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/airlock) "bd" = ( /obj/structure/sign/warning/vacuum/external, @@ -518,7 +516,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/open/floor/mineral/plastitanium, +/turf/open/floor/mineral/plastitanium/red, /area/shuttle/syndicate/eva) "bg" = ( /obj/structure/grille, @@ -561,6 +559,7 @@ /obj/machinery/door/window{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/circuit/red, /area/shuttle/syndicate/hallway) "bq" = ( @@ -658,6 +657,7 @@ /obj/machinery/light{ dir = 1 }, +/obj/item/crowbar/red, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "bA" = ( @@ -672,6 +672,8 @@ pixel_y = 4 }, /obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "bB" = ( @@ -745,19 +747,22 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/medical) "bI" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bJ" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bK" = ( /obj/machinery/door/airlock/hatch{ @@ -766,13 +771,18 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bL" = ( -/obj/effect/turf_decal/stripes/line{ +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ dir = 1 }, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) "bM" = ( /obj/machinery/door/airlock/hatch{ @@ -781,19 +791,22 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "bN" = ( /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "bO" = ( /obj/effect/turf_decal/stripes/line{ dir = 5 }, -/turf/open/floor/mineral/plastitanium/red, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "bP" = ( /obj/effect/turf_decal/tile/neutral{ @@ -811,6 +824,8 @@ "bQ" = ( /obj/structure/closet/syndicate/personal, /obj/effect/turf_decal/bot_white, +/obj/item/storage/box/zipties, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "bR" = ( @@ -828,29 +843,34 @@ /obj/effect/turf_decal/stripes/line{ dir = 10 }, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bT" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/medical) "bU" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/hallway) "bV" = ( /obj/effect/turf_decal/stripes/line, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "bW" = ( /obj/effect/turf_decal/stripes/line{ dir = 6 }, -/turf/open/floor/mineral/plastitanium/red, +/turf/open/floor/mineral/plastitanium, /area/shuttle/syndicate/armory) "bX" = ( /obj/structure/closet/syndicate/nuclear, /obj/effect/turf_decal/bot_white, +/obj/item/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "bY" = ( @@ -877,6 +897,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/medical) "ca" = ( @@ -969,6 +990,11 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable, +/obj/item/wrench, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "ch" = ( @@ -993,6 +1019,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "cj" = ( @@ -1052,6 +1079,10 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/armory) "co" = ( @@ -1074,6 +1105,7 @@ /obj/structure/table/optable, /obj/item/surgical_drapes, /obj/effect/turf_decal/bot_white, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/medical) "cq" = ( @@ -1093,11 +1125,14 @@ /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/medical) "cr" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/turf_decal/stripes/line, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/syndicate/hallway) "cs" = ( @@ -1111,83 +1146,158 @@ /turf/open/floor/circuit/red, /area/shuttle/syndicate/armory) "cu" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/turf_decal/stripes/line, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/syndicate/medical) "cv" = ( -/obj/structure/shuttle/engine/propulsion/left, /obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/syndicate/hallway) "cw" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/syndicate/armory) "cx" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/hallway) +/obj/machinery/recharge_station, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/shuttle/syndicate/armory) "cy" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /obj/effect/turf_decal/stripes/line, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/syndicate/armory) "cz" = ( -/obj/structure/shuttle/engine/propulsion/left, /obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/syndicate/medical) "cA" = ( -/obj/structure/shuttle/engine/propulsion, /obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) "cB" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/medical) +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/shuttle/syndicate/armory) "cE" = ( -/obj/structure/shuttle/engine/propulsion/left, /obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/syndicate/armory) "cF" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) -"cG" = ( -/obj/structure/shuttle/engine/propulsion/right, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/syndicate/armory) +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/shuttle/syndicate/hallway) "dp" = ( /obj/machinery/porta_turret/syndicate/shuttle{ dir = 10 }, /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/armory) +"hC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"lr" = ( +/obj/effect/landmark/exploration_weapon_spawner/right{ + dir = 1 + }, +/turf/closed/wall/r_wall/syndicate, +/area/shuttle/syndicate/airlock) "pd" = ( /obj/machinery/porta_turret/syndicate/shuttle{ dir = 5 }, /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/bridge) +"px" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/bridge) "vv" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/bot_white, /turf/open/floor/plasteel/dark, /area/shuttle/syndicate/eva) +"AR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"AW" = ( +/obj/machinery/suit_storage_unit/syndicate, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/shuttle/syndicate/eva) "In" = ( /obj/machinery/porta_turret/syndicate/shuttle{ dir = 6 @@ -1200,6 +1310,39 @@ }, /turf/closed/wall/r_wall/syndicate, /area/shuttle/syndicate/medical) +"QC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"Sj" = ( +/obj/machinery/porta_turret/syndicate/shuttle{ + dir = 5 + }, +/turf/closed/wall/r_wall/syndicate, +/area/shuttle/syndicate/airlock) +"YL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) +"Zx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/syndicate/hallway) (1,1,1) = {" aa @@ -1234,12 +1377,12 @@ aa aa aa aa +aa aw ax ax ax ax -ax aJ bq bC @@ -1259,9 +1402,9 @@ aa aa aa aa -ax aL -aR +ax +AW aR aR be @@ -1274,7 +1417,7 @@ bZ bH cp cu -cA +cz "} (4,1,1) = {" aa @@ -1299,7 +1442,7 @@ ca ck cq cu -cB +cz "} (5,1,1) = {" ab @@ -1388,12 +1531,12 @@ aH aC aC aV -az +YL az az az bE -bL +AR bU az cl @@ -1405,25 +1548,25 @@ aa ae aj aq -at +px av -az -aD -aD -aD -az +hC +hC +hC +hC +hC aW -az +Zx aD aD aD aD bL -bU -az +cA +cF bo cr -cw +cv aa "} (10,1,1) = {" @@ -1438,17 +1581,17 @@ aI aE aE aV -az +QC az az az bF -bL +AR bU az cl cr -cx +cv aa "} (11,1,1) = {" @@ -1546,7 +1689,7 @@ bG bO bW cg -bP +cB cs cy cE @@ -1559,22 +1702,22 @@ aa aa aa aa +lr aB aQ aT aT -aT bi bm bA bG -bP +cB bP ch -bP +cw ct cy -cF +cE "} (16,1,1) = {" aa @@ -1584,8 +1727,8 @@ aa aa aa aa -aF -aB +aa +Sj aB aY bd @@ -1597,9 +1740,9 @@ bQ bX ci cn -cs +cx cy -cG +cE "} (17,1,1) = {" aa diff --git a/_maps/shuttles/kakol_bass.dmm b/_maps/shuttles/kakol_bass.dmm index 0b8fdd9c88be..173a95493793 100644 --- a/_maps/shuttles/kakol_bass.dmm +++ b/_maps/shuttles/kakol_bass.dmm @@ -82,9 +82,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle) -"G" = ( -/turf/open/floor/mineral/plastitanium, -/area/shuttle) "H" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -168,7 +165,7 @@ A A h A -G +A p D D diff --git a/_maps/shuttles/labour_box.dmm b/_maps/shuttles/labour_box.dmm index 3b5b92810c50..6880190e8791 100644 --- a/_maps/shuttles/labour_box.dmm +++ b/_maps/shuttles/labour_box.dmm @@ -46,6 +46,7 @@ pixel_x = 30; pixel_y = 30 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "i" = ( @@ -53,6 +54,8 @@ name = "Labor Shuttle Airlock"; req_access_txt = "2" }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/labor) "j" = ( @@ -67,6 +70,7 @@ input_dir = 2; output_dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/labor) "l" = ( @@ -83,6 +87,7 @@ machinedir = 1; pixel_x = 30 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium, /area/shuttle/labor) "o" = ( @@ -93,6 +98,7 @@ id = "gulagshuttleflasher"; pixel_x = 25 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium, /area/shuttle/labor) "p" = ( @@ -106,27 +112,35 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 5; id = "laborcamp"; name = "labor camp shuttle"; - port_direction = 4; - width = 9 + port_direction = 4 }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/labor) "r" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/labor) "s" = ( -/obj/structure/shuttle/engine/propulsion, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/labor) +"Y" = ( +/obj/structure/cable, +/turf/open/floor/mineral/titanium, +/area/shuttle/labor) (1,1,1) = {" a @@ -168,7 +182,7 @@ h k n o -l +Y r s "} diff --git a/_maps/shuttles/labour_delta.dmm b/_maps/shuttles/labour_delta.dmm index 7b01cad0ceeb..2c476e9c8562 100644 --- a/_maps/shuttles/labour_delta.dmm +++ b/_maps/shuttles/labour_delta.dmm @@ -52,6 +52,7 @@ pixel_x = 30; pixel_y = 30 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "j" = ( @@ -66,6 +67,8 @@ dir = 4 }, /obj/structure/fans/tiny, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/labor) "k" = ( @@ -85,6 +88,7 @@ output_dir = 1 }, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable, /turf/open/floor/plasteel/white, /area/shuttle/labor) "n" = ( @@ -112,6 +116,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 5 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/labor) "q" = ( @@ -138,6 +143,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/labor) "t" = ( @@ -228,6 +234,7 @@ /area/shuttle/labor) "v" = ( /obj/effect/turf_decal/bot, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/labor) "w" = ( @@ -237,12 +244,9 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 5; id = "laborcamp"; name = "labor camp shuttle"; - port_direction = 4; - width = 9 + port_direction = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -251,20 +255,25 @@ dir = 4 }, /obj/structure/fans/tiny, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/labor) "x" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, -/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/labor) "y" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/labor) @@ -287,7 +296,7 @@ k n q t -a +x y "} (3,1,1) = {" @@ -309,7 +318,7 @@ m p s v -a +x y "} (5,1,1) = {" diff --git a/_maps/shuttles/labour_kilo.dmm b/_maps/shuttles/labour_kilo.dmm index b95c4c197398..89f726d77002 100644 --- a/_maps/shuttles/labour_kilo.dmm +++ b/_maps/shuttles/labour_kilo.dmm @@ -29,10 +29,6 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/labor) "f" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 9 }, @@ -47,10 +43,6 @@ req_access_txt = "1" }, /obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -63,14 +55,11 @@ pixel_x = 30; pixel_y = 30 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "i" = ( @@ -84,6 +73,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/labor) "j" = ( @@ -108,13 +99,10 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/labor) "l" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 8 }, @@ -127,10 +115,6 @@ /obj/machinery/light{ dir = 1 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 1 }, @@ -141,20 +125,13 @@ machinedir = 1; pixel_x = 30 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line{ dir = 5 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "o" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/structure/chair/comfy/shuttle{ dir = 4 }, @@ -164,10 +141,6 @@ /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "p" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) @@ -176,33 +149,22 @@ id = "gulagshuttleflasher"; pixel_x = 25 }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, /obj/structure/chair/comfy/shuttle{ dir = 8 }, /obj/effect/turf_decal/stripes/line{ dir = 6 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/labor) "r" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/structure/closet/crate, /obj/effect/turf_decal/delivery, /obj/effect/turf_decal/stripes/line, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/labor) "s" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/loading_area{ dir = 4 }, @@ -210,11 +172,8 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/labor) "t" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, /obj/effect/turf_decal/stripes/line, +/obj/structure/cable, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/labor) "u" = ( @@ -224,12 +183,9 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 5; id = "laborcamp"; name = "labor camp shuttle"; - port_direction = 4; - width = 9 + port_direction = 4 }, /obj/effect/turf_decal/stripes/line{ dir = 4 @@ -237,21 +193,28 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/labor) "v" = ( /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/labor) "w" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /obj/effect/spawner/structure/window/shuttle, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, +/turf/open/floor/plating/airless, /area/shuttle/labor) "x" = ( /turf/closed/wall/mineral/plastitanium, /area/shuttle/labor) "y" = ( -/obj/structure/shuttle/engine/propulsion, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/labor) diff --git a/_maps/shuttles/mining_box.dmm b/_maps/shuttles/mining_box.dmm index 2408a0efda20..613eeb89ce6f 100644 --- a/_maps/shuttles/mining_box.dmm +++ b/_maps/shuttles/mining_box.dmm @@ -27,6 +27,12 @@ /obj/machinery/light{ dir = 8 }, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, /turf/open/floor/mineral/titanium, /area/shuttle/mining) "h" = ( @@ -35,47 +41,76 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 3; - height = 5; id = "mining"; name = "mining shuttle"; - port_direction = 4; - width = 7 + port_direction = 4 }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining) "i" = ( -/obj/structure/closet/crate, +/obj/structure/ore_box, +/obj/structure/cable, /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) "j" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 }, +/obj/structure/cable, /obj/structure/window/reinforced{ dir = 4 }, -/turf/open/floor/plating, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating/airless, /area/shuttle/mining) "k" = ( -/obj/structure/ore_box, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) "l" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/mining) +"A" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/mining) +"O" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/mining) "Q" = ( /obj/structure/chair/comfy/shuttle{ dir = 1 }, /turf/open/floor/mineral/titanium, /area/shuttle/mining) +"V" = ( +/obj/structure/cable, +/turf/open/floor/mineral/titanium, +/area/shuttle/mining) +"X" = ( +/obj/structure/closet/crate, +/turf/open/floor/mineral/titanium, +/area/shuttle/mining) (1,1,1) = {" a @@ -89,9 +124,9 @@ a (2,1,1) = {" a c -e +X g -f +A i a "} @@ -108,8 +143,8 @@ l a c e -e -f +V +O k a "} diff --git a/_maps/shuttles/mining_common_kilo.dmm b/_maps/shuttles/mining_common_kilo.dmm index e1ccbcfdc5fc..f413a9610334 100644 --- a/_maps/shuttles/mining_common_kilo.dmm +++ b/_maps/shuttles/mining_common_kilo.dmm @@ -9,7 +9,7 @@ "c" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) @@ -31,6 +31,7 @@ dir = 8 }, /obj/structure/cable, +/obj/structure/closet/crate, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "g" = ( @@ -92,12 +93,9 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 3; - height = 5; id = "mining_common"; name = "lavaland shuttle"; - port_direction = 4; - width = 7 + port_direction = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 4 @@ -114,22 +112,27 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "o" = ( -/obj/structure/closet/crate, /obj/effect/turf_decal/delivery, /obj/machinery/airalarm{ dir = 4; pixel_x = -22 }, +/obj/structure/ore_box, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "p" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /obj/effect/spawner/structure/window/shuttle, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating, +/turf/open/floor/plating/airless, /area/shuttle/mining) "q" = ( -/obj/structure/ore_box, /obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "r" = ( @@ -137,9 +140,28 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/mining) "s" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/mining) +"S" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"V" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) (1,1,1) = {" a @@ -155,7 +177,7 @@ a c f j -n +V o r "} @@ -173,7 +195,7 @@ a e h l -n +S q r "} diff --git a/_maps/shuttles/mining_common_meta.dmm b/_maps/shuttles/mining_common_meta.dmm index 22641cce7cc6..d4bec8ae0146 100644 --- a/_maps/shuttles/mining_common_meta.dmm +++ b/_maps/shuttles/mining_common_meta.dmm @@ -31,8 +31,12 @@ /obj/machinery/light{ dir = 8 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, /turf/open/floor/mineral/titanium, /area/shuttle/mining) "h" = ( @@ -41,24 +45,21 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 3; - height = 5; id = "mining_common"; name = "lavaland shuttle"; - port_direction = 4; - width = 7 + port_direction = 4 }, /obj/structure/fans/tiny, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining) "i" = ( -/obj/structure/closet/crate, /obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/obj/structure/cable, /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) "j" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 @@ -69,17 +70,39 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining) "k" = ( -/obj/structure/ore_box, /obj/effect/turf_decal/bot, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, /turf/open/floor/mineral/titanium/blue, /area/shuttle/mining) "l" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/mining) +"m" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/terminal, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/mining) +"t" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/blue, +/area/shuttle/mining) "O" = ( /obj/structure/cable, /turf/open/floor/mineral/titanium, @@ -105,7 +128,7 @@ a c e g -f +t i a "} @@ -113,7 +136,7 @@ a b d Q -O +e f j l @@ -123,7 +146,7 @@ a c e O -f +m k a "} diff --git a/_maps/shuttles/mining_delta.dmm b/_maps/shuttles/mining_delta.dmm index 2019c9d805df..10b3b544db0b 100644 --- a/_maps/shuttles/mining_delta.dmm +++ b/_maps/shuttles/mining_delta.dmm @@ -38,6 +38,8 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/plasteel, /area/shuttle/mining) "f" = ( @@ -68,6 +70,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/mining) "i" = ( @@ -82,12 +85,9 @@ }, /obj/docking_port/mobile{ dir = 4; - dwidth = 3; - height = 5; id = "mining"; name = "mining shuttle"; - port_direction = 8; - width = 7 + port_direction = 8 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 @@ -100,6 +100,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/mining) "k" = ( @@ -119,6 +120,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/mining) "m" = ( @@ -138,13 +140,15 @@ /turf/open/floor/plasteel/white, /area/shuttle/mining) "n" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/end{ dir = 8 }, +/obj/structure/cable, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/power/terminal, /turf/open/floor/plasteel, /area/shuttle/mining) "o" = ( @@ -159,16 +163,48 @@ /turf/open/floor/plasteel, /area/shuttle/mining) "p" = ( -/obj/structure/chair/comfy/shuttle{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/stripes/end{ dir = 4 }, +/obj/structure/cable, +/obj/structure/ore_box, /turf/open/floor/plasteel, /area/shuttle/mining) "q" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plasteel, +/area/shuttle/mining) +"r" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/shuttle/mining) +"s" = ( /obj/item/clothing/suit/hazardvest{ desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; name = "emergency lifejacket" @@ -249,41 +285,21 @@ /obj/item/pickaxe/emergency, /obj/item/pickaxe/emergency, /obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/shuttle/mining) -"r" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/shuttle/mining) -"s" = ( -/obj/structure/ore_box, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, /obj/machinery/light/small{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/mining) "t" = ( -/obj/structure/shuttle/engine/propulsion/burst, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, /obj/effect/turf_decal/stripes/line, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/mining) diff --git a/_maps/shuttles/mining_freight.dmm b/_maps/shuttles/mining_freight.dmm index 4300e1214e0e..6c5be9440366 100644 --- a/_maps/shuttles/mining_freight.dmm +++ b/_maps/shuttles/mining_freight.dmm @@ -9,6 +9,8 @@ "c" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "d" = ( @@ -28,6 +30,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 9 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "g" = ( @@ -59,6 +62,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "k" = ( @@ -76,6 +80,7 @@ /obj/machinery/atmospherics/components/binary/valve{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium/yellow, /area/shuttle/mining) "m" = ( @@ -84,16 +89,14 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 3; - height = 5; id = "mining_common"; name = "lavaland shuttle"; - port_direction = 4; - width = 7 + port_direction = 4 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining) "n" = ( @@ -104,22 +107,27 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "o" = ( -/obj/structure/closet/crate, /obj/effect/turf_decal/delivery, /obj/machinery/airalarm{ dir = 4; pixel_x = -22 }, +/obj/structure/cable, +/obj/structure/ore_box, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "p" = ( /obj/effect/spawner/structure/window/shuttle, -/obj/structure/shuttle/engine/heater, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /turf/open/floor/plating, -/area/template_noop) +/area/shuttle/mining) "q" = ( -/obj/structure/ore_box, /obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "r" = ( @@ -127,9 +135,26 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/mining) "s" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/mining) +"t" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/closet/crate, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"C" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) (1,1,1) = {" a @@ -145,7 +170,7 @@ a c f j -n +t o r "} @@ -163,7 +188,7 @@ a e h l -n +C q r "} diff --git a/_maps/shuttles/mining_kilo.dmm b/_maps/shuttles/mining_kilo.dmm index 06c5ff2689fa..826f07142239 100644 --- a/_maps/shuttles/mining_kilo.dmm +++ b/_maps/shuttles/mining_kilo.dmm @@ -209,12 +209,6 @@ }, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining/large) -"x" = ( -/obj/effect/turf_decal/box/corners{ - dir = 8 - }, -/turf/open/floor/mineral/plastitanium, -/area/shuttle/mining/large) "y" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/ore_box, @@ -231,6 +225,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining/large) "A" = ( @@ -257,8 +252,11 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/mining/large) "D" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, /obj/effect/spawner/structure/window/shuttle, -/obj/structure/shuttle/engine/heater, /turf/open/floor/plating, /area/shuttle/mining/large) "E" = ( @@ -267,8 +265,10 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/mining/large) "F" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, +/turf/open/floor/plating, /area/shuttle/mining/large) "G" = ( /obj/structure/rack, @@ -279,6 +279,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining/large) "H" = ( @@ -303,7 +304,7 @@ dir = 4; locked = 0; name = "Mining Shuttle APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -340,12 +341,9 @@ dir = 1 }, /obj/docking_port/mobile{ - dwidth = 3; - height = 10; id = "mining"; name = "mining shuttle"; - port_direction = 2; - width = 7 + port_direction = 2 }, /obj/structure/cable, /obj/effect/turf_decal/stripes/line, @@ -353,6 +351,7 @@ dir = 1 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/mining/large) @@ -375,7 +374,7 @@ f l r t -x +B G D F diff --git a/_maps/shuttles/mining_large.dmm b/_maps/shuttles/mining_large.dmm index a1ca6bbe43b1..d130a17354e7 100644 --- a/_maps/shuttles/mining_large.dmm +++ b/_maps/shuttles/mining_large.dmm @@ -190,6 +190,10 @@ }, /obj/effect/turf_decal/tile/brown, /obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 1; + start_active = 1 + }, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "p" = ( @@ -310,12 +314,15 @@ /obj/effect/turf_decal/box/white/corners{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "t" = ( /obj/effect/turf_decal/box/white/corners{ dir = 4 }, +/obj/structure/ore_box, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "u" = ( @@ -332,12 +339,17 @@ /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "v" = ( /obj/effect/turf_decal/box/white/corners{ dir = 1 }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "w" = ( @@ -345,7 +357,13 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/ore_box, +/obj/machinery/power/apc/highcap{ + dir = 4; + locked = 0; + name = "Mining Shuttle APC"; + pixel_x = 25 + }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "x" = ( @@ -353,6 +371,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "y" = ( @@ -361,26 +380,17 @@ /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "z" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ +/obj/machinery/power/terminal{ dir = 4 }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/line, /obj/structure/cable, -/turf/open/floor/plasteel/dark, +/turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/mining/large) "A" = ( /obj/machinery/light/small, /obj/effect/turf_decal/box/white/corners{ dir = 8 }, -/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/mining/large) "B" = ( @@ -396,6 +406,7 @@ /obj/item/crowbar/red, /obj/item/wrench, /obj/item/flashlight, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/mining/large) "D" = ( @@ -407,29 +418,26 @@ /turf/open/floor/plating, /area/shuttle/mining/large) "E" = ( -/obj/machinery/power/apc/highcap{ - dir = 4; - locked = 0; - name = "Mining Shuttle APC"; - pixel_x = 24 - }, /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, +/obj/machinery/power/smes/engineering, /turf/open/floor/plating, /area/shuttle/mining/large) "F" = ( /turf/closed/wall/mineral/titanium, /area/shuttle/mining/large) "G" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 +/obj/structure/window/reinforced/survival_pod{ + dir = 1 }, -/turf/open/floor/plating/airless, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, /area/shuttle/mining/large) "H" = ( /obj/structure/sign/warning/vacuum/external{ @@ -439,8 +447,10 @@ /turf/open/floor/plating, /area/shuttle/mining/large) "I" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, +/turf/open/floor/plating, /area/shuttle/mining/large) "J" = ( /obj/machinery/door/airlock/external{ @@ -450,12 +460,9 @@ dir = 1 }, /obj/docking_port/mobile{ - dwidth = 3; - height = 10; id = "mining"; name = "mining shuttle"; - port_direction = 2; - width = 7 + port_direction = 2 }, /obj/structure/cable, /turf/open/floor/plating, @@ -504,7 +511,7 @@ h n r u -z +n D H J @@ -517,7 +524,7 @@ o k v A -k +z k k "} diff --git a/_maps/shuttles/mining_unit.dmm b/_maps/shuttles/mining_unit.dmm index 5614cc083d6e..7e20fe7e4fec 100644 --- a/_maps/shuttles/mining_unit.dmm +++ b/_maps/shuttles/mining_unit.dmm @@ -1,7 +1,22 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"b" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/ore_box, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) "d" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) +"g" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/mining) "h" = ( /obj/effect/turf_decal/bot, /obj/structure/chair/comfy/shuttle{ @@ -26,23 +41,26 @@ "r" = ( /obj/docking_port/mobile{ dir = 8; - dwidth = 2; - height = 6; id = "mining"; name = "mining shuttle"; port_direction = 4; - preferred_direction = 4; - width = 5 + preferred_direction = 4 }, /obj/machinery/door/airlock/shuttle{ name = "Mining Shuttle Airlock" }, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "u" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) +"w" = ( +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "A" = ( @@ -52,15 +70,31 @@ /obj/effect/turf_decal/bot, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) +"C" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 8 + }, +/obj/structure/cable, +/turf/closed/wall/mineral/titanium, +/area/shuttle/mining) +"E" = ( +/obj/machinery/door/airlock/shuttle{ + name = "Mining Shuttle Airlock" + }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/shuttle/mining) "O" = ( /obj/structure/table, /obj/item/storage/toolbox/emergency, /obj/machinery/light/small, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "Q" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 +/obj/machinery/shuttle/engine/ion/burst{ + dir = 8 }, /turf/closed/wall/mineral/titanium, /area/shuttle/mining) @@ -114,11 +148,12 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) "Y" = ( -/obj/structure/ore_box, /obj/structure/sign/warning/fire{ pixel_x = 32 }, /obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/power/smes/engineering, /turf/open/floor/mineral/plastitanium, /area/shuttle/mining) @@ -138,24 +173,24 @@ p "} (3,1,1) = {" U -d +w u -d -U +w +E "} (4,1,1) = {" V +b h h -h -V +g "} (5,1,1) = {" -p +C Y d W -p +C "} (6,1,1) = {" Q diff --git a/_maps/shuttles/partyhard_elevator.dmm b/_maps/shuttles/partyhard_elevator.dmm deleted file mode 100644 index fed9c196fb17..000000000000 --- a/_maps/shuttles/partyhard_elevator.dmm +++ /dev/null @@ -1,64 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "f-1" - }, -/area/shuttle/partyhard) -"b" = ( -/obj/machinery/light{ - icon_state = "tube"; - dir = 1 - }, -/turf/open/floor/partyhard/steel, -/area/shuttle/partyhard) -"c" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "f-2" - }, -/area/shuttle/partyhard) -"d" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "g-1" - }, -/area/shuttle/partyhard) -"e" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "x-1" - }, -/area/shuttle/partyhard) -"f" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "f-3" - }, -/area/shuttle/partyhard) -"g" = ( -/turf/open/floor/partyhard/steel{ - icon_state = "f-4" - }, -/area/shuttle/partyhard) -"h" = ( -/obj/docking_port/mobile/elevator{ - height = 3; - id = "partyhard_elevator"; - name = "partyhard elevator"; - dwidth = 1; - width = 3 - }, -/turf/open/floor/partyhard/steel, -/area/shuttle/partyhard) - -(1,1,1) = {" -a -d -f -"} -(2,1,1) = {" -b -e -h -"} -(3,1,1) = {" -c -d -g -"} diff --git a/_maps/shuttles/pirate_default.dmm b/_maps/shuttles/pirate_default.dmm index a4378c985234..26d48c8f2914 100644 --- a/_maps/shuttles/pirate_default.dmm +++ b/_maps/shuttles/pirate_default.dmm @@ -6,10 +6,8 @@ /obj/machinery/light/small{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, @@ -91,10 +89,8 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/pirate) "ak" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ dir = 8 @@ -173,10 +169,8 @@ /obj/machinery/light/small{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, @@ -322,10 +316,8 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/red{ dir = 1 }, @@ -362,6 +354,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/pirate) "aG" = ( @@ -376,8 +369,9 @@ /turf/open/floor/plating, /area/shuttle/pirate) "aH" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating/airless, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/pod/dark, /area/shuttle/pirate) "aI" = ( /obj/machinery/light/small{ @@ -398,17 +392,21 @@ dir = 1 }, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/pirate) "aK" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/open/floor/plating/airless, +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, +/turf/open/floor/plating, /area/shuttle/pirate) "aL" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/pirate) "aM" = ( @@ -516,6 +514,9 @@ /obj/effect/turf_decal/tile/red{ dir = 8 }, +/obj/machinery/computer/weapons{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "be" = ( @@ -564,7 +565,7 @@ dir = 1 }, /obj/machinery/power/smes/engineering{ - charge = 1e+006 + charge = 5e+006 }, /obj/effect/decal/cleanable/dirt, /obj/structure/cable, @@ -577,9 +578,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/table, /obj/item/gun/energy/laser{ @@ -610,6 +610,7 @@ /obj/structure/chair/wood{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/wood, /area/shuttle/pirate) "bt" = ( @@ -664,30 +665,32 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "by" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, /obj/machinery/piratepad, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bA" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "bB" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "bC" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 4 }, @@ -696,6 +699,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "bF" = ( @@ -743,6 +747,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "bK" = ( @@ -776,6 +781,7 @@ dir = 8 }, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "bO" = ( @@ -783,7 +789,7 @@ aidisabled = 1; dir = 1; name = "Pirate Corvette APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/reagent_dispensers/watertank, /obj/effect/turf_decal/bot, @@ -819,7 +825,7 @@ }, /obj/item/storage/box/lights/bulbs, /obj/item/stack/sheet/mineral/plasma{ - amount = 10 + amount = 25 }, /obj/item/multitool, /obj/effect/turf_decal/stripes/line{ @@ -836,6 +842,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/pirate) "ce" = ( @@ -847,13 +854,10 @@ dir = 1 }, /obj/docking_port/mobile/pirate{ - dwidth = 11; - height = 16; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Pirate Ship"; - port_direction = 2; - width = 17 + port_direction = 2 }, /obj/docking_port/stationary{ dwidth = 11; @@ -863,6 +867,7 @@ width = 17 }, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/pirate) "df" = ( @@ -883,6 +888,7 @@ /obj/effect/mob_spawn/human/pirate/captain{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood, /area/shuttle/pirate) "dU" = ( @@ -902,6 +908,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "ek" = ( @@ -926,16 +933,32 @@ /turf/open/floor/pod/light, /area/shuttle/pirate) "ep" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 +/obj/structure/window/reinforced/survival_pod{ + dir = 1 }, -/obj/structure/shuttle/engine/heater, -/turf/open/floor/plating/airless, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, /area/shuttle/pirate) "er" = ( -/obj/structure/shuttle/engine/propulsion/right, -/turf/open/floor/plating/airless, +/obj/effect/mob_spawn/human/pirate{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, /area/shuttle/pirate) "et" = ( /obj/structure/grille, @@ -1000,6 +1023,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "gY" = ( @@ -1007,10 +1031,11 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "km" = ( -/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/atmospherics/components/tank/air, /obj/effect/turf_decal/bot, /obj/machinery/firealarm{ pixel_y = 24 @@ -1031,17 +1056,23 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "np" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/turf_decal/bot, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/pirate) +"ob" = ( +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 1 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/pirate) "vB" = ( /obj/effect/turf_decal/stripes/line{ dir = 9 @@ -1058,6 +1089,12 @@ }, /turf/open/floor/pod/light, /area/shuttle/pirate) +"vD" = ( +/obj/effect/landmark/exploration_weapon_spawner/right{ + dir = 1 + }, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/pirate) "wf" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" @@ -1085,6 +1122,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/cable, /turf/open/floor/pod/dark, /area/shuttle/pirate) "zw" = ( @@ -1094,6 +1132,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/structure/cable, /turf/open/floor/wood, /area/shuttle/pirate) "ED" = ( @@ -1150,12 +1189,12 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "OD" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/sign/poster/contraband/random{ pixel_x = 32 }, @@ -1178,12 +1217,12 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/pirate) "RY" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/structure/sign/poster/contraband/random{ pixel_x = -32 @@ -1206,7 +1245,7 @@ af af af fW -aj +ob aj aj aj @@ -1252,7 +1291,7 @@ aj RY aM ep -aH +aK af "} (4,1,1) = {" @@ -1270,7 +1309,7 @@ zw dy br ep -er +aK af "} (5,1,1) = {" @@ -1343,7 +1382,7 @@ be aD aG ep -aH +aK "} (9,1,1) = {" af @@ -1355,7 +1394,7 @@ am au bm by -bm +aH mU aL bP @@ -1379,7 +1418,7 @@ bO bQ bk ep -er +aK "} (11,1,1) = {" af @@ -1448,9 +1487,9 @@ bC bJ bM dU -aV +er ep -aH +aK af "} (15,1,1) = {" @@ -1468,7 +1507,7 @@ aj OD aV ep -er +aK af "} (16,1,1) = {" @@ -1494,7 +1533,7 @@ af af af fW -aj +vD aj aj aj diff --git a/_maps/shuttles/pirate_dutchman.dmm b/_maps/shuttles/pirate_dutchman.dmm index 8bed442fea03..b539651643c9 100644 --- a/_maps/shuttles/pirate_dutchman.dmm +++ b/_maps/shuttles/pirate_dutchman.dmm @@ -109,9 +109,10 @@ /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "aw" = ( -/obj/machinery/computer/monitor/secret{ +/obj/machinery/power/solar_control{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/carpet/royalblack/airless, /area/shuttle/pirate/flying_dutchman) "aB" = ( @@ -207,6 +208,13 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"bE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "bO" = ( /turf/open/floor/carpet/royalblack/airless, /area/shuttle/pirate/flying_dutchman) @@ -233,6 +241,11 @@ /obj/item/gun/ballistic/shotgun/automatic/combat, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"dA" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "dM" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -346,6 +359,7 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "hV" = ( @@ -364,6 +378,12 @@ }, /turf/open/floor/carpet/blue/airless, /area/shuttle/pirate/flying_dutchman) +"jh" = ( +/obj/effect/landmark/exploration_weapon_spawner/right{ + dir = 1 + }, +/turf/closed/wall/mineral/wood/nonmetal, +/area/shuttle/pirate/flying_dutchman) "km" = ( /obj/effect/turf_decal/siding/wood{ dir = 5 @@ -391,15 +411,39 @@ /obj/machinery/light/floor, /turf/open/space/basic, /area/shuttle/pirate/flying_dutchman) +"po" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "pG" = ( /obj/structure/window/shuttle/survival_pod, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"pP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/table/wood, +/obj/item/stack/cannonball/fourteen, +/obj/item/flashlight/flare/torch, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) +"pT" = ( +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 1 + }, +/turf/closed/wall/mineral/wood/nonmetal, +/area/shuttle/pirate/flying_dutchman) "rd" = ( /obj/effect/turf_decal/siding/wood/corner, /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "rN" = ( @@ -501,6 +545,13 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"vl" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "vt" = ( /obj/structure/chair/comfy/shuttle{ dir = 8 @@ -512,6 +563,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "vT" = ( @@ -527,9 +579,6 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) -"xA" = ( -/turf/open/floor/carpet/royalblack/airless, -/area/shuttle/pirate/flying_dutchman) "yy" = ( /obj/effect/turf_decal/siding/wood/corner{ dir = 4 @@ -629,6 +678,12 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"CR" = ( +/obj/machinery/shuttle/engine/ion/burst{ + dir = 1 + }, +/turf/closed/wall/mineral/wood/nonmetal, +/area/shuttle/pirate/flying_dutchman) "Da" = ( /obj/structure/festivus{ anchored = 1; @@ -660,6 +715,17 @@ }, /turf/open/floor/carpet/royalblack/airless, /area/shuttle/pirate/flying_dutchman) +"EK" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) +"ER" = ( +/obj/machinery/computer/weapons{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack/airless, +/area/shuttle/pirate/flying_dutchman) "EU" = ( /obj/machinery/shuttle_scrambler, /turf/open/floor/carpet/royalblack/airless, @@ -696,6 +762,7 @@ /obj/machinery/light/small{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "Gr" = ( @@ -725,6 +792,10 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"Kh" = ( +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "Ki" = ( /obj/effect/turf_decal/siding/wood{ dir = 4 @@ -734,6 +805,13 @@ }, /turf/open/floor/carpet/blue/airless, /area/shuttle/pirate/flying_dutchman) +"Kx" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/closed/wall/mineral/wood/nonmetal, +/area/shuttle/pirate/flying_dutchman) "KZ" = ( /obj/structure/table/wood, /obj/item/gun/energy/laser{ @@ -779,16 +857,12 @@ width = 17 }, /obj/docking_port/mobile/pirate{ - dheight = 7; dir = 8; - dwidth = 18; - height = 6; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Pirate Ship"; port_direction = 4; - preferred_direction = 8; - width = 13 + preferred_direction = 8 }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) @@ -819,6 +893,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "Pm" = ( @@ -826,6 +901,7 @@ /obj/effect/turf_decal/siding/wood/corner{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) "PS" = ( @@ -950,6 +1026,16 @@ }, /turf/open/floor/wood/airless, /area/shuttle/pirate/flying_dutchman) +"Xs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/stack/cannonball/fourteen, +/obj/item/flashlight/flare/torch, +/obj/structure/cable, +/turf/open/floor/wood/airless, +/area/shuttle/pirate/flying_dutchman) "Yr" = ( /obj/structure/closet/cabinet{ anchored = 1; @@ -1170,11 +1256,11 @@ SV WR Fz vw -WR -WR Gt -WR -WR +Gt +Gt +Kx +CR af "} (8,1,1) = {" @@ -1187,16 +1273,16 @@ ZL ZZ rN WR +pT WR WR WR -WR -WR -Fz +Gt +pP OL hz -fY -Gr +vl +EK WR VF tt @@ -1223,7 +1309,7 @@ fY WB WB WB -Gr +EK WR WR Ms @@ -1250,7 +1336,7 @@ RO Sp dM KZ -Le +po Ac WR Fv @@ -1277,7 +1363,7 @@ Gr Da dc Ys -WB +Kh Gr sf WS @@ -1304,7 +1390,7 @@ Le Lt PS hV -RO +dA gS WR tH @@ -1331,12 +1417,12 @@ yy WB WB WB -Gr +EK WR WR Ms WQ -xA +ER WR "} (14,1,1) = {" @@ -1350,15 +1436,15 @@ LD WR vi WR +jh WR WR -WR -WR -fH +Gt +Xs rd FK -yy -Gr +bE +EK WR EU bO @@ -1386,11 +1472,11 @@ uw WR fH Pm -WR -WR Gt -WR -WR +Gt +Gt +Kx +CR af "} (16,1,1) = {" diff --git a/_maps/shuttles/pirate_silverscale.dmm b/_maps/shuttles/pirate_silverscale.dmm index 5bf7bb72b584..bbdc7a94d90e 100644 --- a/_maps/shuttles/pirate_silverscale.dmm +++ b/_maps/shuttles/pirate_silverscale.dmm @@ -8,6 +8,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "aA" = ( @@ -32,10 +33,6 @@ /obj/machinery/suit_storage_unit/pirate, /turf/open/floor/pod/dark, /area/shuttle/pirate) -"bZ" = ( -/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) "cE" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 @@ -58,6 +55,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/pod/dark, /area/shuttle/pirate) "dI" = ( @@ -83,7 +81,9 @@ /turf/open/floor/plating, /area/shuttle/pirate) "eK" = ( -/obj/structure/shuttle/engine/router, +/obj/machinery/atmospherics/components/unary/shuttle/engine_heater{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/pirate) "eU" = ( @@ -129,6 +129,9 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "iY" = ( @@ -152,14 +155,12 @@ }, /obj/docking_port/mobile/pirate{ dir = 4; - dwidth = 13; - height = 3; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Silverscale Cruiser"; - preferred_direction = 4; - width = 26 + preferred_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/pod/dark, /area/shuttle/pirate) "jo" = ( @@ -211,7 +212,9 @@ /turf/open/floor/plating/airless, /area/shuttle/pirate) "kU" = ( -/obj/machinery/light/floor, +/obj/machinery/light/floor{ + dir = 4 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "lk" = ( @@ -268,6 +271,7 @@ /obj/machinery/door/airlock/external/glass{ id_tag = "pirateportexternal" }, +/obj/structure/fans/tiny, /turf/open/floor/pod/dark, /area/shuttle/pirate) "pk" = ( @@ -312,12 +316,12 @@ /turf/open/floor/carpet/royalblack, /area/shuttle/pirate) "vw" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, /obj/effect/turf_decal/trimline/yellow/warning{ dir = 10 }, +/obj/machinery/shuttle/engine/plasma{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/pirate) "vz" = ( @@ -412,15 +416,13 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/pod/dark, /area/shuttle/pirate) "Ae" = ( /obj/machinery/shuttle_scrambler, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) -"Ai" = ( -/turf/open/floor/plasteel/dark, -/area/shuttle/pirate) "Aj" = ( /obj/structure/chair/sofa/corp/right{ dir = 1 @@ -430,10 +432,10 @@ /area/shuttle/pirate) "AE" = ( /obj/effect/spawner/structure/window/shuttle, -/obj/structure/shuttle/engine/heater{ - dir = 8 +/obj/machinery/atmospherics/components/unary/shuttle/engine_heater{ + dir = 4 }, -/turf/open/space/basic, +/turf/open/floor/plating/airless, /area/shuttle/pirate) "AR" = ( /obj/structure/toilet{ @@ -458,18 +460,24 @@ /turf/open/floor/carpet/royalblack, /area/shuttle/pirate) "BO" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, /obj/effect/turf_decal/trimline/yellow/warning{ dir = 9 }, +/obj/machinery/shuttle/engine/plasma{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/pirate) "Ch" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) +"CG" = ( +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pirate) "CH" = ( /obj/structure/chair/sofa/corp/left{ dir = 1 @@ -493,7 +501,9 @@ /obj/structure/chair/comfy/shuttle{ dir = 4 }, -/obj/machinery/light/floor, +/obj/machinery/light/floor{ + dir = 8 + }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "DX" = ( @@ -558,6 +568,7 @@ /obj/machinery/computer/piratepad_control{ dir = 4 }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, /turf/open/floor/pod/dark, /area/shuttle/pirate) "Jc" = ( @@ -588,12 +599,30 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /turf/open/floor/carpet/royalblack, /area/shuttle/pirate) +"Kn" = ( +/obj/machinery/computer/weapons{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/shuttle/pirate) "Kq" = ( /obj/machinery/light{ dir = 8 }, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) +"KR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/mapping_helpers/auto_wrench, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) +"KS" = ( +/obj/effect/landmark/exploration_weapon_spawner/right{ + dir = 4 + }, +/turf/closed/wall/mineral/titanium, +/area/shuttle/pirate) "Lk" = ( /obj/machinery/power/terminal{ dir = 1 @@ -612,8 +641,8 @@ /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "Mu" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 +/obj/machinery/shuttle/engine/plasma{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/pirate) @@ -674,6 +703,7 @@ "OT" = ( /obj/machinery/door/airlock/silver, /obj/effect/mapping_helpers/airlock/cutaiwire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, /turf/open/floor/pod/dark, /area/shuttle/pirate) "Pg" = ( @@ -683,10 +713,13 @@ /turf/open/floor/pod/dark, /area/shuttle/pirate) "Qm" = ( +/obj/machinery/atmospherics/components/unary/plasma_refiner{ + dir = 1 + }, /turf/open/floor/pod/dark, /area/shuttle/pirate) "QI" = ( -/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/atmospherics/components/tank/air, /turf/open/floor/pod/dark, /area/shuttle/pirate) "QO" = ( @@ -703,7 +736,7 @@ aidisabled = 1; dir = 1; name = "Pirate Corvette APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/rack, /obj/item/storage/toolbox/mechanical{ @@ -807,29 +840,39 @@ /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "UJ" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8 - }, /obj/effect/turf_decal/trimline/yellow/warning{ dir = 8 }, +/obj/machinery/shuttle/engine/plasma{ + dir = 4 + }, /turf/open/floor/plating/airless, /area/shuttle/pirate) +"Vd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/pod/dark, +/area/shuttle/pirate) "Vw" = ( /obj/structure/table, /obj/machinery/recharger, /turf/open/floor/plasteel/dark, /area/shuttle/pirate) "Ww" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, -/turf/open/floor/plating/airless, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/closed/wall/mineral/titanium, /area/shuttle/pirate) "Wy" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/pod/dark, /area/shuttle/pirate) +"WX" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "silverbridge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/shuttle/pirate) "Xw" = ( /obj/structure/table/glass, /obj/item/reagent_containers/food/drinks/drinkingglass{ @@ -939,13 +982,13 @@ AE rB jQ rB -Ww -Ww -Ww eK -Ww -Ww -Ww +eK +eK +eK +eK +eK +eK rB zN rB @@ -954,26 +997,26 @@ je "} (4,1,1) = {" pk -rB +Ww rB de rB -HD -HD -HD -rB -HD -HD -HD +WX +WX +WX +Ww +WX +WX +WX rB zQ rB -rB +Ww TV "} (5,1,1) = {" -rB -rB +Ww +Ww Su Si rB @@ -987,11 +1030,11 @@ xR rB Si QI -rB -rB +Ww +Ww "} (6,1,1) = {" -rB +Ww CP Lk Si @@ -1007,45 +1050,45 @@ cH Si wa ko -rB +Ww "} (7,1,1) = {" -rB +Ww QU Pg qA rB RY -Qm -Qm Ox +KR +Vd Qm -Qm +Ox RY rB xe wa Wy -rB +Ww "} (8,1,1) = {" -rB -rB +Ww +Ww au -rB -rB -rB +Ww +Ww +Ww OT -rB -rB -rB +Ww +Ww +Ww OT -rB -rB -rB +Ww +Ww +Ww au -rB -rB +Ww +Ww "} (9,1,1) = {" HD @@ -1080,7 +1123,7 @@ DX am dT xs -Ai +Mo fT Oo HD @@ -1091,13 +1134,13 @@ RH ue lk ZD -Ai +Mo am eU xj DX am -Ai +Mo ZD ei Ch @@ -1106,7 +1149,7 @@ rB "} (12,1,1) = {" HD -Ai +Mo ue Aj jo @@ -1137,7 +1180,7 @@ vz YD Ae xs -Ai +Mo fT Ig HD @@ -1150,7 +1193,7 @@ rB rB HD HD -Mo +Kn fj nh HD @@ -1356,7 +1399,7 @@ je je je je -rB +CG je je je @@ -1364,7 +1407,7 @@ je je je je -rB +KS je je je diff --git a/_maps/shuttles/ruin_caravan_victim.dmm b/_maps/shuttles/ruin_caravan_victim.dmm index 31b5b033d925..bc7db33e732e 100644 --- a/_maps/shuttles/ruin_caravan_victim.dmm +++ b/_maps/shuttles/ruin_caravan_victim.dmm @@ -15,6 +15,7 @@ /obj/item/stack/sheet/mineral/silver{ amount = 25 }, +/obj/structure/cable, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter1) "aP" = ( @@ -28,9 +29,8 @@ /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "bg" = ( -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, @@ -81,6 +81,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "cx" = ( @@ -121,6 +122,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/machinery/meter, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "fD" = ( @@ -216,9 +218,8 @@ /obj/effect/turf_decal/box/white/corners{ dir = 1 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged4" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "lC" = ( /obj/machinery/power/port_gen/pacman{ @@ -243,12 +244,13 @@ /turf/open/floor/plating, /area/shuttle/caravan/freighter1) "mo" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "mw" = ( @@ -305,6 +307,7 @@ /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter1) "oS" = ( +/obj/structure/cable, /turf/open/floor/plasteel/airless/dark, /area/shuttle/caravan/freighter1) "pR" = ( @@ -335,10 +338,8 @@ }, /area/shuttle/caravan/freighter1) "qM" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/machinery/atmospherics/components/unary/vent_pump/on, @@ -362,9 +363,8 @@ pixel_x = 1; pixel_y = 5 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) @@ -397,19 +397,16 @@ /area/shuttle/caravan/freighter1) "ur" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "uA" = ( /obj/machinery/light/small, /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/button/door{ id = "caravantrade1_cabin1"; name = "Cabin Bolt Control"; @@ -445,11 +442,12 @@ dir = 8 }, /mob/living/simple_animal/hostile/syndicate/ranged/smg/space, +/obj/structure/cable, /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter1) "vt" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) @@ -457,9 +455,8 @@ /obj/effect/turf_decal/box/white/corners{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "yn" = ( /obj/structure/closet/crate, @@ -498,7 +495,7 @@ /area/shuttle/caravan/freighter1) "zd" = ( /obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 4 }, /obj/effect/decal/cleanable/dirt, @@ -506,15 +503,12 @@ /area/shuttle/caravan/freighter1) "zy" = ( /obj/structure/girder, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "Ax" = ( /obj/item/stack/sheet/iron/fifty, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched2" - }, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "AM" = ( /obj/machinery/door/firedoor, @@ -539,9 +533,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged1" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "Bx" = ( /obj/structure/table, @@ -598,9 +591,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/airless{ - icon_state = "floorscorched1" - }, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "Dt" = ( /obj/effect/decal/cleanable/dirt, @@ -726,9 +717,8 @@ /obj/machinery/light/small{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, @@ -767,16 +757,15 @@ initial_gas_mix = "TEMP=2.7" }, /area/shuttle/caravan/freighter1) -"KC" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/freighter1) "KX" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room" }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "LK" = ( @@ -833,9 +822,8 @@ name = "Cargo Blast Door" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "Od" = ( /obj/effect/decal/cleanable/dirt, @@ -864,9 +852,8 @@ /area/shuttle/caravan/freighter1) "Ov" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged2" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "Ow" = ( /obj/effect/decal/cleanable/dirt, @@ -903,10 +890,8 @@ /obj/structure/bed, /obj/item/bedsheet, /obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/button/door{ id = "caravantrade1_cabin2"; name = "Cabin Bolt Control"; @@ -935,6 +920,7 @@ dir = 10 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "Qs" = ( @@ -942,9 +928,9 @@ dir = 4 }, /obj/machinery/power/apc{ - dir = 4; + dir = 8; name = "Small Freighter APC"; - pixel_x = 24; + pixel_x = 25; start_charge = 0 }, /obj/effect/decal/cleanable/dirt, @@ -995,15 +981,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg3" - }, -/area/shuttle/caravan/freighter1) -"Su" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "Td" = ( /obj/structure/lattice, @@ -1021,14 +1000,12 @@ /turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "UW" = ( -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/turf/open/floor/plating/airless{ - icon_state = "platingdmg1" - }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/cable, +/turf/open/floor/plating/airless, /area/shuttle/caravan/freighter1) "VD" = ( /obj/effect/mapping_helpers/airlock/cyclelink_helper, @@ -1039,14 +1016,11 @@ /obj/docking_port/mobile{ callTime = 250; dir = 2; - dwidth = 5; - height = 11; id = "caravantrade1"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Small Freighter"; port_direction = 8; - preferred_direction = 4; - width = 21 + preferred_direction = 4 }, /turf/open/floor/plating, /area/shuttle/caravan/freighter1) @@ -1085,10 +1059,8 @@ /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter1) "WU" = ( -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/mob_spawn/human/corpse/cargo_tech, @@ -1103,9 +1075,8 @@ /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/twenty, /obj/item/stack/sheet/plasteel/twenty, -/turf/open/floor/plasteel/airless{ - icon_state = "damaged5" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, /area/shuttle/caravan/freighter1) "WZ" = ( /obj/machinery/power/smes, @@ -1158,6 +1129,7 @@ /obj/effect/turf_decal/tile/neutral{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel/dark/airless, /area/shuttle/caravan/freighter1) "ZZ" = ( @@ -1176,11 +1148,11 @@ (1,1,1) = {" Jv -KX vt vt vt -KC +vt +vt Fv Jv Jv @@ -1195,9 +1167,9 @@ mo mo mo El -KX vt -KC +vt +vt Jv "} (3,1,1) = {" @@ -1232,7 +1204,7 @@ BN El El El -BN +KX El DQ oS @@ -1288,7 +1260,7 @@ QY if Ax yn -Su +Ov eP "} (10,1,1) = {" diff --git a/_maps/shuttles/ruin_explorer_mini.dmm b/_maps/shuttles/ruin_explorer_mini.dmm index 2d9d4c138917..f0a6c741cb68 100644 --- a/_maps/shuttles/ruin_explorer_mini.dmm +++ b/_maps/shuttles/ruin_explorer_mini.dmm @@ -3,8 +3,8 @@ /turf/template_noop, /area/template_noop) "b" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/closed/wall/mineral/titanium, /area/shuttle/explorer_mini) @@ -22,7 +22,7 @@ /turf/open/floor/mineral/titanium/white, /area/shuttle/explorer_mini) "f" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 1; name = "Auto-Explorer Mini APC"; pixel_x = 0; @@ -36,9 +36,6 @@ /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/shuttle/explorer_mini) -"g" = ( -/turf/open/floor/mineral/titanium/white, -/area/shuttle/explorer_mini) "h" = ( /turf/open/floor/mineral/titanium/white, /area/shuttle/explorer_mini) @@ -46,14 +43,11 @@ /obj/docking_port/mobile{ callTime = 50; dir = 4; - dwidth = 4; - height = 9; id = "explorer_mini"; ignitionTime = 25; name = "Auto-Explorer Mini"; port_direction = 2; - preferred_direction = 4; - width = 5 + preferred_direction = 4 }, /turf/closed/wall/mineral/titanium, /area/shuttle/explorer_mini) @@ -89,6 +83,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/mineral/titanium/white, /area/shuttle/explorer_mini) "o" = ( @@ -108,6 +103,18 @@ /obj/item/storage/toolbox/mechanical, /turf/open/floor/mineral/titanium/white, /area/shuttle/explorer_mini) +"s" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, +/turf/closed/wall/mineral/titanium, +/area/shuttle/explorer_mini) +"J" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/explorer_mini) (1,1,1) = {" b @@ -117,24 +124,24 @@ c b "} (2,1,1) = {" -c +s f m o -c +s "} (3,1,1) = {" d l n n -d +J "} (4,1,1) = {" e k -g -g +h +h d "} (5,1,1) = {" diff --git a/_maps/shuttles/ruin_pirate_cutter.dmm b/_maps/shuttles/ruin_pirate_cutter.dmm index 782b7f5d9407..186ad72c7a67 100644 --- a/_maps/shuttles/ruin_pirate_cutter.dmm +++ b/_maps/shuttles/ruin_pirate_cutter.dmm @@ -75,6 +75,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "fL" = ( @@ -92,10 +93,8 @@ "fS" = ( /obj/structure/bed, /obj/item/bedsheet/brown, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/red{ dir = 8 }, @@ -191,9 +190,8 @@ /area/shuttle/caravan/pirate) "jo" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/item/ammo_box/a40mm, /obj/effect/turf_decal/tile/neutral{ dir = 1 @@ -207,12 +205,6 @@ }, /turf/open/floor/plasteel/dark, /area/shuttle/caravan/pirate) -"jU" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/pirate) "kl" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -605,6 +597,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "yu" = ( @@ -664,6 +657,7 @@ /obj/machinery/door/airlock/external{ id_tag = "caravanpirate_bolt_starboard" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "Av" = ( @@ -713,18 +707,15 @@ pixel_x = -25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/cable, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "DY" = ( /obj/structure/closet/crate/secure/loot, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/dark, /area/shuttle/caravan/pirate) "EB" = ( @@ -783,7 +774,7 @@ /turf/open/floor/plating, /area/shuttle/caravan/pirate) "Gh" = ( -/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/atmospherics/components/tank/air, /obj/effect/turf_decal/bot, /turf/open/floor/plating, /area/shuttle/caravan/pirate) @@ -808,12 +799,13 @@ /turf/open/floor/plasteel/dark, /area/shuttle/caravan/pirate) "HD" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/caravan/pirate) "HO" = ( @@ -841,15 +833,13 @@ /obj/docking_port/mobile{ callTime = 150; dir = 2; - dwidth = 14; - height = 13; id = "caravanpirate"; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Pirate Cutter"; port_direction = 8; - preferred_direction = 4; - width = 22 + preferred_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "Jv" = ( @@ -860,10 +850,8 @@ dir = 1 }, /obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/shuttle/caravan/pirate) "Ku" = ( @@ -872,6 +860,7 @@ /obj/machinery/door/airlock/external{ id_tag = "caravanpirate_bolt_starboard" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "Ld" = ( @@ -889,8 +878,8 @@ /turf/open/floor/plasteel/dark, /area/shuttle/caravan/pirate) "Nx" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/caravan/pirate) @@ -912,10 +901,12 @@ /turf/closed/wall/mineral/plastitanium/nodiagonal, /area/shuttle/caravan/pirate) "Pn" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, -/turf/open/floor/plating/airless, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, +/turf/open/floor/plating, /area/shuttle/caravan/pirate) "Rq" = ( /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ @@ -933,6 +924,7 @@ /obj/machinery/door/airlock/external{ id_tag = "caravanpirate_bolt_port" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/pirate) "RC" = ( @@ -1071,12 +1063,12 @@ Jv Jv Jv -Pn -jU +Nx +Nx Nx Jv -Pn -jU +Nx +Nx Nx Jv Jv @@ -1117,7 +1109,7 @@ Jv af Gh kY -vW +Pn fh Cb hI diff --git a/_maps/shuttles/ruin_syndicate_dropship.dmm b/_maps/shuttles/ruin_syndicate_dropship.dmm index ea035d6b6dc4..3007ed7610d5 100644 --- a/_maps/shuttles/ruin_syndicate_dropship.dmm +++ b/_maps/shuttles/ruin_syndicate_dropship.dmm @@ -1,9 +1,7 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "al" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel/dark, /area/shuttle/caravan/syndicate3) @@ -54,12 +52,6 @@ }, /turf/open/floor/plasteel/dark, /area/shuttle/caravan/syndicate3) -"dZ" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/syndicate3) "gl" = ( /obj/machinery/door/airlock/hatch{ id_tag = "caravansyndicate3_bolt_port"; @@ -69,15 +61,13 @@ }, /obj/docking_port/mobile{ dir = 2; - dwidth = 6; - height = 7; id = "caravansyndicate3"; name = "Syndicate Drop Ship"; port_direction = 8; - preferred_direction = 4; - width = 15 + preferred_direction = 4 }, /obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/syndicate3) "ha" = ( @@ -116,12 +106,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/caravan/syndicate3) -"mJ" = ( -/obj/structure/shuttle/engine/propulsion/burst/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/caravan/syndicate3) "ns" = ( /obj/structure/table/reinforced, /obj/machinery/button/door{ @@ -244,18 +228,19 @@ /turf/open/floor/plasteel/dark, /area/shuttle/caravan/syndicate3) "vQ" = ( -/obj/structure/shuttle/engine/propulsion/burst/right{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/caravan/syndicate3) "wH" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 - }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/caravan/syndicate3) "xC" = ( @@ -323,9 +308,8 @@ /area/shuttle/caravan/syndicate3) "EO" = ( /obj/structure/chair/comfy/shuttle, -/obj/machinery/airalarm/syndicate{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/pod/dark, /area/shuttle/caravan/syndicate3) @@ -344,10 +328,8 @@ /turf/open/floor/mineral/plastitanium, /area/shuttle/caravan/syndicate3) "Gx" = ( -/obj/machinery/airalarm/syndicate{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/syndicate_access, /turf/open/floor/plasteel/dark, /area/shuttle/caravan/syndicate3) "HJ" = ( @@ -428,6 +410,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/syndicate3) "Lq" = ( @@ -615,10 +598,10 @@ (1,1,1) = {" Jv -mJ -dZ -dZ -dZ +vQ +vQ +vQ +vQ vQ Jv "} diff --git a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm index da6b8805ec61..e48ed446a53b 100644 --- a/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm +++ b/_maps/shuttles/ruin_syndicate_fighter_shiv.dmm @@ -40,6 +40,13 @@ }, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/caravan/syndicate1) +"qU" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 + }, +/obj/structure/cable, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/caravan/syndicate1) "uW" = ( /obj/machinery/button/door{ id = "caravansyndicate1_bolt"; @@ -50,6 +57,7 @@ specialfunctions = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium/red, /area/shuttle/caravan/syndicate1) "vD" = ( @@ -59,7 +67,7 @@ /turf/closed/wall/mineral/plastitanium, /area/shuttle/caravan/syndicate1) "vK" = ( -/obj/machinery/power/apc/highcap/fifteen_k{ +/obj/machinery/power/apc/highcap/ten_k{ dir = 8; name = "Syndicate Fighter APC"; pixel_x = -25; @@ -84,24 +92,26 @@ /obj/docking_port/mobile{ callTime = 50; dir = 4; - dwidth = 4; - height = 5; id = "caravansyndicate1"; ignitionTime = 25; name = "Syndicate Fighter"; port_direction = 2; - preferred_direction = 4; - width = 9 + preferred_direction = 4 }, /obj/structure/cable, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/caravan/syndicate1) "Jv" = ( /turf/template_noop, /area/template_noop) +"Ut" = ( +/obj/structure/cable, +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/shuttle/caravan/syndicate1) "YP" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/closed/wall/mineral/plastitanium, /area/shuttle/caravan/syndicate1) @@ -123,23 +133,23 @@ Jv (2,1,1) = {" Jv YP -fp +qU uW aA vK -fp +qU YP Jv "} (3,1,1) = {" YX -fp -fp +qU +Ut fp qx fp -fp -fp +Ut +qU YX "} (4,1,1) = {" diff --git a/_maps/shuttles/snowdin_excavation.dmm b/_maps/shuttles/snowdin_excavation.dmm index d6e505d37002..d302437bb06d 100644 --- a/_maps/shuttles/snowdin_excavation.dmm +++ b/_maps/shuttles/snowdin_excavation.dmm @@ -5,10 +5,8 @@ }, /obj/docking_port/mobile/elevator{ dir = 4; - height = 6; id = "snowdin_excavation"; - name = "excavation elevator"; - width = 6 + name = "excavation elevator" }, /turf/open/floor/plating, /area/shuttle/snowdin/elevator1) diff --git a/_maps/shuttles/snowdin_mining.dmm b/_maps/shuttles/snowdin_mining.dmm index a861bef6f6ac..a3dd2ef54fe5 100644 --- a/_maps/shuttles/snowdin_mining.dmm +++ b/_maps/shuttles/snowdin_mining.dmm @@ -5,11 +5,8 @@ }, /obj/docking_port/mobile/elevator{ dir = 4; - dwidth = 2; - height = 5; id = "snowdin_mining"; - name = "mining elevator"; - width = 5 + name = "mining elevator" }, /turf/open/floor/plating, /area/shuttle/snowdin/elevator2) diff --git a/_maps/shuttles/trader_transport.dmm b/_maps/shuttles/trader_transport.dmm index 6fcb8d25d0b5..aa9b846551b9 100644 --- a/_maps/shuttles/trader_transport.dmm +++ b/_maps/shuttles/trader_transport.dmm @@ -16,12 +16,9 @@ /area/shuttle/transport) "d" = ( /obj/docking_port/mobile{ - dwidth = 2; - height = 5; id = "trader_transport"; name = "trader transport shuttle"; - port_direction = 2; - width = 5 + port_direction = 2 }, /obj/machinery/door/airlock/centcom{ name = "Trading Shuttle"; @@ -34,10 +31,13 @@ dir = 8 }, /obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/transport) "e" = ( -/obj/structure/shuttle/engine/propulsion, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/transport) "g" = ( @@ -65,6 +65,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plasteel, /area/shuttle/transport) "S" = ( @@ -79,19 +80,31 @@ }, /turf/open/floor/plasteel, /area/shuttle/transport) +"V" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/shuttle/transport) +"X" = ( +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, +/obj/structure/cable, +/turf/closed/wall/mineral/titanium, +/area/shuttle/transport) (1,1,1) = {" a a a -a +X e "} (2,1,1) = {" a i b -i +V a "} (3,1,1) = {" @@ -105,13 +118,13 @@ d a i h -i +V a "} (5,1,1) = {" a a a -a +X e "} diff --git a/_maps/shuttles/whiteship_box.dmm b/_maps/shuttles/whiteship_box.dmm index 329bbaf8d054..94c8bb62e47f 100644 --- a/_maps/shuttles/whiteship_box.dmm +++ b/_maps/shuttles/whiteship_box.dmm @@ -18,16 +18,14 @@ /obj/docking_port/mobile{ callTime = 250; dir = 2; - dwidth = 11; - height = 17; id = "whiteship"; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Hospital Ship"; port_direction = 8; - preferred_direction = 4; - width = 34 + preferred_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ag" = ( @@ -47,9 +45,8 @@ dir = 1 }, /obj/structure/bed, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/item/bedsheet, /obj/machinery/atmospherics/components/unary/vent_pump/on, /obj/effect/turf_decal/tile/neutral{ @@ -149,9 +146,10 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned/engine) "as" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8 +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 }, +/obj/structure/cable, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/engine) "at" = ( @@ -169,9 +167,8 @@ pixel_x = -6; pixel_y = 6 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/item/storage/backpack/duffelbag/med/surgery{ pixel_y = 4 }, @@ -230,9 +227,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -355,7 +351,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Hospital Ship Crew Quarters APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/neutral, /obj/effect/turf_decal/tile/neutral{ @@ -371,6 +367,7 @@ /obj/machinery/atmospherics/components/unary/portables_connector/visible, /obj/machinery/portable_atmospherics/canister/oxygen, /obj/effect/turf_decal/bot, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aG" = ( @@ -581,6 +578,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 6 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aU" = ( @@ -599,17 +597,17 @@ /area/shuttle/abandoned/engine) "aV" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small/built, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aW" = ( /obj/machinery/meter, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aX" = ( @@ -620,6 +618,7 @@ /obj/machinery/door/airlock/engineering{ name = "Engineering" }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aY" = ( @@ -688,10 +687,8 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/crate/bin, /obj/item/trash/pistachios, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/item/trash/can, /obj/item/light/bulb/broken, /obj/effect/turf_decal/tile/neutral, @@ -716,12 +713,14 @@ "bg" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/emcloset/anchored, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bh" = ( /obj/machinery/light/small/built{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bi" = ( @@ -729,10 +728,12 @@ pixel_y = -32 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bj" = ( /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bk" = ( @@ -740,6 +741,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bl" = ( @@ -755,6 +757,8 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 }, +/obj/structure/fans/tiny, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bn" = ( @@ -762,6 +766,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 9 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bo" = ( @@ -773,6 +778,7 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bp" = ( @@ -780,9 +786,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small/built{ dir = 1 }, @@ -791,10 +796,11 @@ /area/shuttle/abandoned/engine) "bq" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /obj/effect/turf_decal/bot, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "br" = ( @@ -831,9 +837,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plasteel, /area/shuttle/abandoned/medbay) @@ -880,6 +885,7 @@ "by" = ( /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bz" = ( @@ -898,10 +904,8 @@ /obj/structure/closet/secure_closet/medical2{ anchored = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white/side{ dir = 5 }, @@ -963,10 +967,8 @@ /obj/structure/closet/firecloset{ anchored = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, @@ -994,7 +996,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Hospital Ship Medbay APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/structure/cable, /turf/open/floor/plasteel/white, @@ -1188,6 +1190,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "cd" = ( @@ -1346,6 +1349,7 @@ /area/shuttle/abandoned/bridge) "cp" = ( /obj/machinery/light/small, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "cq" = ( @@ -1353,6 +1357,7 @@ pixel_y = 32 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "cr" = ( @@ -1517,9 +1522,8 @@ /obj/item/pen{ pixel_x = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/item/flashlight/pen{ pixel_x = -6; pixel_y = -2 @@ -1587,9 +1591,8 @@ /obj/machinery/vending/medical{ req_access = null }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/shuttle/abandoned/medbay) "cM" = ( @@ -1970,6 +1973,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 1 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dv" = ( @@ -1981,14 +1985,12 @@ /obj/machinery/light/small/built{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/power/apc{ dir = 1; name = "Hospital Ship Bridge APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/blue{ dir = 1 @@ -1997,29 +1999,17 @@ /turf/open/floor/plasteel, /area/shuttle/abandoned/bridge) "hV" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/closed/wall/mineral/titanium/nodiagonal, /area/shuttle/abandoned/engine) "vk" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium, -/area/shuttle/abandoned/engine) -"JU" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned/engine) -"Tw" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/closed/wall/mineral/titanium/nodiagonal, -/area/shuttle/abandoned/engine) (1,1,1) = {" aa @@ -2031,8 +2021,8 @@ aa vk hV aa -Tw -JU +hV +vk aa aa aa @@ -2161,11 +2151,11 @@ aa aa aa at -bl +cB at aa at -bl +cB at aa aa @@ -2178,7 +2168,7 @@ aa aa aa aa -ar +vk at bm at @@ -2186,7 +2176,7 @@ aa at bm at -ar +vk aa aa aa @@ -2234,7 +2224,7 @@ aa aa aa aa -ar +vk at bl aV diff --git a/_maps/shuttles/whiteship_cere.dmm b/_maps/shuttles/whiteship_cere.dmm index afd895a1c139..78986ad56953 100644 --- a/_maps/shuttles/whiteship_cere.dmm +++ b/_maps/shuttles/whiteship_cere.dmm @@ -12,20 +12,16 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/docking_port/mobile{ dir = 2; - dwidth = 8; - height = 16; id = "whiteship"; launch_status = 0; name = "NT Recovery White-Ship"; - port_direction = 8; - width = 16 + port_direction = 8 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned) "ad" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 1 - }, +/obj/machinery/shuttle/engine/ion, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "ae" = ( @@ -58,10 +54,8 @@ /turf/open/floor/mineral/titanium/yellow, /area/shuttle/abandoned) "aj" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, /obj/structure/window/reinforced, +/obj/machinery/power/engine_capacitor_bank, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "ak" = ( @@ -81,7 +75,7 @@ /turf/open/floor/mineral/titanium, /area/shuttle/abandoned) "an" = ( -/obj/effect/spawner/lootdrop/whiteship_cere_ripley, +/obj/effect/spawner/random/exotic/ripley, /turf/open/floor/mech_bay_recharge_floor, /area/shuttle/abandoned) "ao" = ( @@ -249,6 +243,7 @@ /obj/machinery/door/poddoor{ id = "cerewhiteleft" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned) "aG" = ( @@ -260,6 +255,7 @@ /obj/machinery/door/poddoor{ id = "cerewhiteright" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned) "aI" = ( @@ -344,10 +340,6 @@ /obj/effect/decal/cleanable/dirt/dust, /turf/open/floor/mineral/titanium/blue, /area/shuttle/abandoned) -"aS" = ( -/obj/effect/decal/cleanable/dirt/dust, -/turf/open/floor/mineral/titanium/blue, -/area/shuttle/abandoned) "aT" = ( /obj/structure/table, /obj/effect/decal/cleanable/cobweb/cobweb2, @@ -493,7 +485,7 @@ aJ ab aP aU -aS +bb ab ab "} @@ -545,8 +537,8 @@ aG aG aG aN -aS -aS +bb +bb We bb ar diff --git a/_maps/shuttles/whiteship_delta.dmm b/_maps/shuttles/whiteship_delta.dmm index 1af28ba7942b..522e284a177f 100644 --- a/_maps/shuttles/whiteship_delta.dmm +++ b/_maps/shuttles/whiteship_delta.dmm @@ -20,17 +20,15 @@ /obj/docking_port/mobile{ callTime = 250; dir = 2; - dwidth = 11; - height = 17; id = "whiteship"; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "NT Frigate"; port_direction = 8; - preferred_direction = 4; - width = 27 + preferred_direction = 4 }, /obj/structure/fans/tiny, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ae" = ( @@ -88,10 +86,8 @@ /obj/structure/bed, /obj/item/bedsheet/centcom, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/wood, /area/shuttle/abandoned/crew) "am" = ( @@ -102,10 +98,8 @@ dir = 1 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/wood, /area/shuttle/abandoned/crew) "an" = ( @@ -137,7 +131,6 @@ pixel_y = 12 }, /obj/item/toy/cards/cardhand{ - currenthand = list("2 of Diamonds","3 of Clubs"); pixel_x = -5 }, /obj/item/reagent_containers/food/drinks/beer{ @@ -252,8 +245,8 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned/bar) "ay" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/abandoned/engine) @@ -261,9 +254,10 @@ /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/shuttle/engine/heater{ - dir = 8 +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/abandoned/engine) "aA" = ( @@ -318,6 +312,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "aH" = ( @@ -376,12 +371,6 @@ }, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/bar) -"aM" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned/engine) "aN" = ( /obj/effect/turf_decal/stripes/line{ dir = 8 @@ -418,9 +407,8 @@ "aT" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light/small, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/firealarm{ dir = 1; pixel_y = -24 @@ -440,7 +428,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Frigate Crew Quarters APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/neutral{ dir = 4 @@ -550,7 +538,7 @@ /obj/effect/turf_decal/tile/bar{ dir = 1 }, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ +/mob/living/simple_animal/hostile/giant_spider/hunter{ desc = "Furry and black, it makes you shudder to look at it. This one has sparkling purple eyes, and looks abnormally thin and frail."; environment_smash = 0; health = 60; @@ -647,10 +635,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, @@ -749,10 +735,8 @@ pixel_x = -3; pixel_y = 5 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -906,10 +890,8 @@ /turf/open/floor/plasteel, /area/shuttle/abandoned/bar) "bL" = ( -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/secure_closet/freezer{ locked = 0; @@ -962,6 +944,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bQ" = ( @@ -1017,10 +1000,8 @@ "bU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small/built{ dir = 4 }, @@ -1035,7 +1016,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /turf/open/floor/plating, @@ -1164,7 +1145,7 @@ dir = 8 }, /obj/structure/cable, -/mob/living/simple_animal/hostile/poison/giant_spider/tarantula{ +/mob/living/simple_animal/hostile/giant_spider/tarantula{ desc = "Furry and black, it makes you shudder to look at it. This one has abyssal red eyes, and looks abnormally thin and frail."; environment_smash = 0; health = 150; @@ -1227,7 +1208,7 @@ /obj/machinery/power/apc{ dir = 4; name = "Frigate Engineering APC"; - pixel_x = 24 + pixel_x = 25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/structure/cable, @@ -1242,10 +1223,8 @@ /obj/item/megaphone, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/blue{ dir = 1 }, @@ -1404,6 +1383,7 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/space_heater, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "cC" = ( @@ -1459,10 +1439,7 @@ /obj/item/grenade/chem_grenade/metalfoam, /obj/item/relic, /obj/item/t_scanner, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1505,13 +1482,12 @@ }, /obj/item/crowbar, /obj/item/wrench, -/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/random/maintenance, /obj/item/extinguisher, /obj/item/extinguisher, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/box/white/corners{ dir = 4 }, @@ -1555,10 +1531,8 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/spider/stickyweb, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 8 @@ -1651,9 +1625,8 @@ pixel_y = 3 }, /obj/item/radio/off, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/medbay) @@ -1707,10 +1680,7 @@ /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -1927,7 +1897,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/hostile/poison/giant_spider/nurse{ +/mob/living/simple_animal/hostile/giant_spider/nurse{ desc = "Furry and black, it makes you shudder to look at it. This one has brilliant green eyes, and looks abnormally thin and frail."; environment_smash = 0; health = 30; @@ -2043,10 +2013,8 @@ /obj/machinery/light/small/built{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/spider/stickyweb, /turf/open/floor/plasteel/white/side, /area/shuttle/abandoned/medbay) @@ -2063,7 +2031,7 @@ "dG" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/structure/cable, -/mob/living/simple_animal/hostile/poison/giant_spider/hunter{ +/mob/living/simple_animal/hostile/giant_spider/hunter{ desc = "Furry and black, it makes you shudder to look at it. This one has sparkling purple eyes, and looks abnormally thin and frail."; environment_smash = 0; health = 60; @@ -2086,6 +2054,7 @@ /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "dJ" = ( @@ -2165,10 +2134,8 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/white, /area/shuttle/abandoned/medbay) "dP" = ( @@ -2186,7 +2153,7 @@ /obj/effect/turf_decal/bot, /obj/machinery/power/apc{ name = "Frigate Medbay APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/spider/stickyweb, /obj/structure/cable, @@ -2272,10 +2239,7 @@ /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /obj/effect/turf_decal/tile/neutral{ dir = 1 }, @@ -2335,6 +2299,7 @@ dir = 1 }, /obj/structure/fans/tiny, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/medbay) "iM" = ( @@ -2373,12 +2338,12 @@ aa aa ah ay -aM +ay ah aa ah ay -aM +ay ah aa aa @@ -2389,7 +2354,7 @@ aa aa ah ay -aM +ay ai az az @@ -2400,7 +2365,7 @@ az az ai ay -aM +ay ah aa "} diff --git a/_maps/shuttles/whiteship_donut.dmm b/_maps/shuttles/whiteship_donut.dmm index 21d6dc922c2e..5996ca8f2c4b 100644 --- a/_maps/shuttles/whiteship_donut.dmm +++ b/_maps/shuttles/whiteship_donut.dmm @@ -13,14 +13,12 @@ /obj/machinery/door/airlock/external/glass, /obj/docking_port/mobile{ dir = 2; - dwidth = 8; - height = 17; id = "whiteship"; launch_status = 0; name = "White Ship"; - port_direction = 2; - width = 9 + port_direction = 2 }, +/obj/structure/fans/tiny, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "ae" = ( @@ -68,15 +66,7 @@ /turf/template_noop, /area/shuttle/abandoned) "am" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) -"an" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 1 - }, +/obj/machinery/shuttle/engine/ion, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "ao" = ( @@ -94,10 +84,8 @@ /turf/template_noop, /area/shuttle/abandoned) "ar" = ( -/obj/structure/shuttle/engine/heater{ - dir = 1 - }, /obj/structure/window/reinforced, +/obj/machinery/power/engine_capacitor_bank, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "as" = ( @@ -279,7 +267,7 @@ "aU" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/light, -/obj/effect/spawner/lootdrop/whiteship_cere_ripley, +/obj/effect/spawner/random/exotic/ripley, /turf/open/floor/mech_bay_recharge_floor, /area/shuttle/abandoned) "aV" = ( @@ -299,11 +287,13 @@ /turf/open/floor/plating/airless, /area/shuttle/abandoned) "aX" = ( -/obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1; layer = 2.9 }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "aY" = ( @@ -358,12 +348,10 @@ }, /turf/open/floor/plasteel/airless, /area/shuttle/abandoned) -"be" = ( -/obj/structure/shuttle/engine/propulsion/left, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned) "bf" = ( -/obj/structure/shuttle/engine/propulsion/right, +/obj/machinery/shuttle/engine/ion{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/abandoned) "bg" = ( @@ -598,7 +586,7 @@ aL aR ab aX -be +bf aa aa "} @@ -607,7 +595,7 @@ aa aa aa aa -an +am ar ac ak @@ -818,7 +806,7 @@ aN aT ab aX -be +bf aa aa "} diff --git a/_maps/shuttles/whiteship_kilo.dmm b/_maps/shuttles/whiteship_kilo.dmm index 10cc2e3074cb..8a4d80803cae 100644 --- a/_maps/shuttles/whiteship_kilo.dmm +++ b/_maps/shuttles/whiteship_kilo.dmm @@ -32,16 +32,14 @@ callTime = 250; can_move_docking_ports = 1; dir = 8; - dwidth = 11; - height = 17; id = "whiteship"; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Salvage Ship"; port_direction = 8; - preferred_direction = 4; - width = 33 + preferred_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "af" = ( @@ -93,10 +91,8 @@ /obj/effect/turf_decal/stripes/line{ dir = 8 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) @@ -240,6 +236,7 @@ /obj/effect/turf_decal/stripes/line{ dir = 1 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "at" = ( @@ -270,6 +267,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "ay" = ( @@ -294,6 +292,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 8 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "aA" = ( @@ -351,10 +350,8 @@ dir = 8 }, /obj/effect/decal/cleanable/cobweb, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "aF" = ( @@ -451,7 +448,7 @@ "aN" = ( /obj/machinery/light/small/built, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/atmospherics/components/tank/air, /obj/effect/turf_decal/bot, /obj/effect/turf_decal/stripes/line{ dir = 1 @@ -473,10 +470,8 @@ /obj/structure/sign/warning/electricshock{ pixel_y = 32 }, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aP" = ( @@ -492,12 +487,12 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aQ" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/shuttle/engine/ion{ + dir = 8 + }, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aR" = ( @@ -510,6 +505,7 @@ /obj/effect/mapping_helpers/airlock/cyclelink_helper{ dir = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "aS" = ( @@ -531,6 +527,7 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "aU" = ( @@ -723,10 +720,8 @@ /obj/structure/sign/warning/vacuum/external{ pixel_x = -32 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /turf/open/floor/mineral/plastitanium, @@ -768,10 +763,8 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/suit_storage_unit/standard_unit, /obj/effect/turf_decal/delivery, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/cargo) "br" = ( @@ -905,7 +898,7 @@ }, /obj/machinery/power/apc{ name = "Salvage Ship Engineering APC"; - pixel_y = -24 + pixel_y = -25 }, /obj/structure/cable, /turf/open/floor/plating, @@ -934,7 +927,7 @@ /turf/open/floor/plating, /area/shuttle/abandoned/engine) "bC" = ( -/obj/structure/shuttle/engine/large{ +/obj/machinery/shuttle/engine/advanced/large{ dir = 4 }, /turf/open/floor/plating, @@ -964,7 +957,7 @@ dir = 1; pixel_y = -24 }, -/obj/effect/spawner/lootdrop/maintenance/two, +/obj/effect/spawner/random/maintenance/two, /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, @@ -1057,7 +1050,7 @@ /obj/machinery/power/apc{ dir = 1; name = "NTMS-037 Bridge APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/stripes/line{ dir = 5 @@ -1093,10 +1086,8 @@ "bX" = ( /obj/structure/bed, /obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 1 }, @@ -1111,10 +1102,8 @@ "bZ" = ( /obj/structure/bed, /obj/effect/turf_decal/stripes/line, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small{ dir = 1 }, @@ -1133,9 +1122,8 @@ pixel_x = -8; pixel_y = 8 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 22 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/carpet, /area/shuttle/abandoned/crew) "cb" = ( @@ -1178,10 +1166,8 @@ dir = 8 }, /obj/effect/turf_decal/bot, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/bridge) "cg" = ( @@ -1238,9 +1224,8 @@ /obj/structure/sign/poster/contraband/random{ pixel_x = -32 }, -/turf/open/floor/wood{ - icon_state = "wood-broken" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/shuttle/abandoned/bar) "cl" = ( /obj/structure/chair/sofa/left{ @@ -1250,9 +1235,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/shuttle/abandoned/bar) "cm" = ( /obj/effect/turf_decal/tile/bar, @@ -1337,10 +1321,10 @@ /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ct" = ( -/obj/structure/shuttle/engine/large{ +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/shuttle/engine/advanced/large{ dir = 4 }, -/obj/effect/turf_decal/stripes/corner, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "cu" = ( @@ -1419,18 +1403,16 @@ dir = 8 }, /obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/wood{ - icon_state = "wood-broken6" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/shuttle/abandoned/bar) "cB" = ( /obj/structure/table/wood, /obj/effect/decal/cleanable/dirt, /obj/item/storage/bag/tray, /obj/item/food/burger/bearger, -/turf/open/floor/wood{ - icon_state = "wood-broken3" - }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, /area/shuttle/abandoned/bar) "cC" = ( /obj/effect/turf_decal/tile/bar, @@ -1491,7 +1473,7 @@ /obj/machinery/power/apc{ dir = 1; name = "NTMS-037 Crew Quarters APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 @@ -1509,6 +1491,7 @@ }, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, /obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, /turf/open/floor/plasteel/showroomfloor, /area/shuttle/abandoned/crew) "cI" = ( @@ -1520,26 +1503,29 @@ dir = 4 }, /obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/crew) "cJ" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 }, +/obj/structure/cable, /turf/open/floor/wood, /area/shuttle/abandoned/crew) "cK" = ( /obj/structure/bed, /obj/item/bedsheet/captain, +/obj/structure/cable, /turf/open/floor/wood, /area/shuttle/abandoned/crew) "cL" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 4 - }, /obj/effect/turf_decal/stripes/line{ dir = 4 }, +/obj/machinery/shuttle/engine/ion{ + dir = 8 + }, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "cM" = ( @@ -1684,10 +1670,8 @@ /obj/effect/turf_decal/trimline/white/filled/line{ dir = 1 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 1 }, @@ -1780,10 +1764,8 @@ pixel_x = 12; pixel_y = 6 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/mineral/plastitanium, /area/shuttle/abandoned/bar) "dd" = ( @@ -1839,6 +1821,45 @@ }, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) +"gh" = ( +/obj/effect/spawner/structure/window/shuttle, +/obj/machinery/door/poddoor{ + id = "whiteship_windows"; + name = "Exterior Window Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/abandoned/crew) +"hl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/abandoned/engine) +"ty" = ( +/obj/structure/cable, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/shuttle/abandoned/engine) +"Ov" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/engine_capacitor_bank{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/shuttle/abandoned/crew) (1,1,1) = {" aa @@ -2189,13 +2210,13 @@ aa aa aa at -at +ty au au bM bK cs -cs +gh bK aa aa @@ -2207,13 +2228,13 @@ aa aa aa av -aP +hl aP aP bN cc cc -cc +Ov bN aa aa diff --git a/_maps/shuttles/whiteship_meta.dmm b/_maps/shuttles/whiteship_meta.dmm index e6a5fa6ecf8c..8067dcdc5651 100644 --- a/_maps/shuttles/whiteship_meta.dmm +++ b/_maps/shuttles/whiteship_meta.dmm @@ -17,6 +17,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_port" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "af" = ( @@ -24,6 +25,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_port" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "ag" = ( @@ -36,16 +38,14 @@ callTime = 250; can_move_docking_ports = 1; dir = 2; - dwidth = 11; - height = 17; id = "whiteship"; launch_status = 0; - movement_force = list("KNOCKDOWN" = 0, "THROW" = 0); + movement_force = list("KNOCKDOWN"=0,"THROW"=0); name = "Salvage Ship"; port_direction = 8; - preferred_direction = 4; - width = 33 + preferred_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "ai" = ( @@ -174,9 +174,8 @@ /area/shuttle/abandoned/crew) "au" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/closet/secure_closet/personal, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/tile/neutral{ @@ -231,19 +230,14 @@ }, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/crew) -"ax" = ( -/obj/structure/shuttle/engine/propulsion/left{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/shuttle/abandoned/engine) "ay" = ( /obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/shuttle/engine/heater{ - dir = 8 +/obj/machinery/power/engine_capacitor_bank{ + dir = 4 }, +/obj/structure/cable, /turf/open/floor/plating/airless, /area/shuttle/abandoned/engine) "az" = ( @@ -359,6 +353,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/crew) "aJ" = ( @@ -398,8 +393,8 @@ /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/crew) "aL" = ( -/obj/structure/shuttle/engine/propulsion/right{ - dir = 8 +/obj/machinery/shuttle/engine/ion{ + dir = 4 }, /turf/open/floor/plating/airless, /area/shuttle/abandoned/engine) @@ -413,6 +408,7 @@ dir = 8 }, /obj/machinery/meter, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aN" = ( @@ -423,6 +419,7 @@ /obj/effect/decal/cleanable/oil, /obj/effect/decal/cleanable/blood, /obj/effect/decal/remains/human, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aO" = ( @@ -435,6 +432,7 @@ environment_smash = 0; name = "Syndicate Salvage Worker" }, +/obj/structure/cable, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "aP" = ( @@ -560,9 +558,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/stripes/white/line{ dir = 1 }, @@ -654,9 +651,8 @@ /area/shuttle/abandoned/crew) "bc" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 4 @@ -697,7 +693,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/atmospherics/components/unary/tank/air{ +/obj/machinery/atmospherics/components/tank/air{ dir = 1 }, /obj/effect/turf_decal/bot, @@ -725,10 +721,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small/built, /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, @@ -873,7 +867,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/power/apc{ name = "Salvage Ship Crew Quarters APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/effect/turf_decal/tile/blue{ dir = 4 @@ -960,10 +954,8 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "bD" = ( @@ -1058,10 +1050,7 @@ /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "bL" = ( @@ -1135,7 +1124,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Salvage Ship Bar APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/effect/turf_decal/tile/bar, /obj/effect/turf_decal/tile/bar{ @@ -1253,10 +1242,7 @@ /obj/effect/turf_decal/box/white/corners, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "bY" = ( @@ -1297,10 +1283,8 @@ /area/shuttle/abandoned/bar) "cc" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -1322,7 +1306,7 @@ /obj/machinery/power/apc{ dir = 1; name = "Salvage Ship Bridge APC"; - pixel_y = 23 + pixel_y = 25 }, /obj/item/camera{ pixel_x = 12; @@ -1336,9 +1320,8 @@ /area/shuttle/abandoned/bridge) "ce" = ( /obj/structure/table, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/item/folder/blue{ pixel_x = 6; @@ -1606,10 +1589,8 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/stripes/white/corner{ dir = 1 }, @@ -1644,10 +1625,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "cz" = ( @@ -1789,10 +1767,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, /obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "cL" = ( @@ -1885,10 +1860,8 @@ }, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/structure/cable, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) @@ -1950,10 +1923,8 @@ /area/shuttle/abandoned/bar) "cU" = ( /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 4; - pixel_x = -24 - }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/processor, /obj/effect/decal/cleanable/dirt, @@ -1998,9 +1969,8 @@ /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/airalarm/all_access{ - pixel_y = 24 - }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/machinery/light/small/built{ dir = 1 }, @@ -2180,15 +2150,13 @@ "dn" = ( /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/hydroponics/constructable, -/obj/machinery/airalarm/all_access{ - dir = 8; - pixel_x = 24 - }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/turf_decal/tile/green, /obj/effect/turf_decal/tile/green{ dir = 8 }, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/shuttle/abandoned/bar) "do" = ( @@ -2300,10 +2268,8 @@ "dy" = ( /obj/machinery/light/small/built, /obj/effect/decal/cleanable/dirt/dust, -/obj/machinery/airalarm/all_access{ - dir = 1; - pixel_y = -24 - }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/all_access, /obj/effect/decal/cleanable/dirt/dust, /obj/effect/turf_decal/stripes/white/line, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -2435,7 +2401,7 @@ /obj/effect/decal/cleanable/dirt/dust, /obj/machinery/power/apc{ name = "Salvage Ship Engineering APC"; - pixel_y = -23 + pixel_y = -25 }, /obj/structure/closet/crate, /obj/item/stack/sheet/iron/twenty, @@ -2484,10 +2450,7 @@ /obj/structure/closet/crate{ icon_state = "crateopen" }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, +/obj/effect/spawner/random/maintenance, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned/cargo) "dN" = ( @@ -2517,6 +2480,7 @@ /obj/machinery/door/airlock/external, /obj/effect/mapping_helpers/airlock/cyclelink_helper, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/bar) "dQ" = ( @@ -2721,7 +2685,7 @@ /obj/effect/turf_decal/tile/green{ dir = 4 }, -/obj/effect/spawner/lootdrop/space/rareseed, +/obj/effect/spawner/random/food_or_drink/seed_rare, /turf/open/floor/plasteel, /area/shuttle/abandoned/bar) "eh" = ( @@ -2729,6 +2693,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_starboard" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "ei" = ( @@ -2737,6 +2702,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_starboard" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "ej" = ( @@ -2745,6 +2711,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt/dust, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/bar) "el" = ( @@ -2831,7 +2798,7 @@ (1,1,1) = {" aa ab -ax +aL aL ab aa @@ -2842,7 +2809,7 @@ aa aa aa ab -ax +aL aL ab aa diff --git a/_maps/shuttles/whiteship_pubby.dmm b/_maps/shuttles/whiteship_pubby.dmm index 9a92631d2812..cc2c9021bba4 100644 --- a/_maps/shuttles/whiteship_pubby.dmm +++ b/_maps/shuttles/whiteship_pubby.dmm @@ -6,15 +6,14 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) "c" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 1 - }, +/obj/machinery/shuttle/engine/void, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) "d" = ( /obj/machinery/door/airlock/public/glass{ name = "Shuttle Airlock" }, +/obj/structure/fans/tiny, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned) "e" = ( @@ -24,8 +23,8 @@ /turf/open/floor/plasteel, /area/shuttle/abandoned) "g" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 8 +/obj/machinery/shuttle/engine/void{ + dir = 4 }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) @@ -41,9 +40,6 @@ /obj/item/gun/medbeam, /turf/open/floor/plating/abductor, /area/shuttle/abandoned) -"i" = ( -/turf/open/floor/plating/abductor, -/area/shuttle/abandoned) "j" = ( /obj/structure/window/reinforced{ dir = 1; @@ -58,8 +54,8 @@ /turf/open/floor/plating/abductor, /area/shuttle/abandoned) "k" = ( -/obj/structure/shuttle/engine/propulsion/burst{ - dir = 4 +/obj/machinery/shuttle/engine/void{ + dir = 8 }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) @@ -84,14 +80,12 @@ }, /obj/docking_port/mobile{ dir = 8; - dwidth = 4; - height = 9; id = "whiteship"; launch_status = 0; name = "White Ship"; - port_direction = 4; - width = 9 + port_direction = 4 }, +/obj/structure/fans/tiny, /turf/open/floor/plasteel/dark, /area/shuttle/abandoned) "p" = ( @@ -122,7 +116,9 @@ /turf/open/floor/plating/abductor, /area/shuttle/abandoned) "s" = ( -/obj/structure/shuttle/engine/propulsion/burst, +/obj/machinery/shuttle/engine/void{ + dir = 1 + }, /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned) @@ -174,7 +170,7 @@ s d f f -i +m m q f diff --git a/_maps/shuttles/whiteship_tram.dmm b/_maps/shuttles/whiteship_tram.dmm index 3380617bef20..2018120a11c1 100644 --- a/_maps/shuttles/whiteship_tram.dmm +++ b/_maps/shuttles/whiteship_tram.dmm @@ -3,7 +3,9 @@ /turf/closed/wall/mineral/titanium, /area/shuttle/abandoned/engine) "ab" = ( -/obj/structure/shuttle/engine/large, +/obj/machinery/shuttle/engine/advanced/large{ + dir = 1 + }, /turf/open/floor/plating/airless, /area/shuttle/abandoned/engine) "ac" = ( @@ -14,15 +16,13 @@ /obj/machinery/door/airlock/external/glass, /obj/docking_port/mobile{ dir = 2; - dwidth = 6; - height = 41; id = "whiteship"; launch_status = 0; name = "White Ship"; - port_direction = 2; - width = 13 + port_direction = 2 }, /obj/structure/fans/tiny, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "ae" = ( @@ -47,7 +47,7 @@ /area/shuttle/abandoned/engine) "ai" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/tank/air, +/obj/machinery/atmospherics/components/tank/air, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/abandoned/engine) "aj" = ( @@ -72,9 +72,9 @@ /obj/item/stack/sheet/mineral/plasma{ amount = 10 }, -/obj/effect/spawner/lootdrop/glowstick, -/obj/effect/spawner/lootdrop/glowstick, -/obj/effect/spawner/lootdrop/glowstick, +/obj/effect/spawner/random/decoration/glowstick, +/obj/effect/spawner/random/decoration/glowstick, +/obj/effect/spawner/random/decoration/glowstick, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/abandoned/engine) "am" = ( @@ -88,6 +88,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external/glass, /obj/structure/cable, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/engine) "ao" = ( @@ -158,7 +159,7 @@ "az" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable, -/obj/machinery/power/apc/auto_name/south, +/obj/machinery/power/apc/auto_name/directional/south, /turf/open/floor/mineral/titanium/tiled/yellow, /area/shuttle/abandoned/engine) "aA" = ( @@ -201,7 +202,7 @@ /obj/effect/decal/cleanable/dirt, /obj/machinery/airalarm/directional/north, /obj/structure/cable, -/obj/effect/spawner/lootdrop/garbage_spawner, +/obj/effect/spawner/random/trash/garbage, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/abandoned/cargo) "aG" = ( @@ -219,7 +220,7 @@ /area/shuttle/abandoned/cargo) "aI" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/north, +/obj/machinery/power/apc/auto_name/directional/north, /obj/structure/cable, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/abandoned/cargo) @@ -245,6 +246,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_blastdoor_topleft" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "aM" = ( @@ -267,7 +269,7 @@ /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ dir = 1 }, -/obj/effect/spawner/lootdrop/cigbutt, +/obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/mineral/titanium/tiled, /area/shuttle/abandoned/cargo) "aP" = ( @@ -312,6 +314,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_blastdoor_topright" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "aV" = ( @@ -383,7 +386,7 @@ "be" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, -/obj/effect/loot_site_spawner, +/obj/effect/spawner/random/structure/crate, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "bf" = ( @@ -443,8 +446,8 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, /obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/costume, -/obj/effect/spawner/lootdrop/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "bn" = ( @@ -583,7 +586,7 @@ /obj/item/shard, /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "bI" = ( @@ -600,7 +603,7 @@ "bK" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/turf_decal/bot, -/obj/effect/spawner/lootdrop/crate_spawner, +/obj/effect/spawner/random/structure/crate_abandoned, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "bL" = ( @@ -669,7 +672,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/spawner/lootdrop/cigbutt, +/obj/effect/spawner/random/trash/cigbutt, /turf/open/floor/mineral/titanium/tiled, /area/shuttle/abandoned/cargo) "bV" = ( @@ -789,6 +792,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_blastdoor_bottomleft" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "cg" = ( @@ -802,7 +806,7 @@ dir = 1 }, /obj/structure/cable, -/obj/effect/spawner/lootdrop/garbage_spawner, +/obj/effect/spawner/random/trash/garbage, /turf/open/floor/mineral/titanium/tiled, /area/shuttle/abandoned/cargo) "ci" = ( @@ -812,6 +816,7 @@ /obj/machinery/door/poddoor{ id = "whiteship_blastdoor_bottomright" }, +/obj/structure/fans/tiny, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "cj" = ( @@ -856,7 +861,7 @@ /area/shuttle/abandoned/cargo) "cm" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/garbage_spawner, +/obj/effect/spawner/random/trash/garbage, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "cn" = ( @@ -880,7 +885,7 @@ /obj/item/circuitboard/machine/microwave, /obj/item/stock_parts/micro_laser, /obj/item/stock_parts/manipulator, -/obj/effect/spawner/lootdrop/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, /turf/open/floor/plating, /area/shuttle/abandoned/cargo) "cp" = ( @@ -910,7 +915,7 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/cable, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, -/obj/effect/spawner/lootdrop/garbage_spawner, +/obj/effect/spawner/random/trash/garbage, /turf/open/floor/mineral/titanium/tiled, /area/shuttle/abandoned/cargo) "ct" = ( @@ -1063,7 +1068,7 @@ /obj/machinery/light/red{ dir = 1 }, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /obj/structure/table, /obj/item/storage/box/gloves{ @@ -1097,7 +1102,7 @@ /area/shuttle/abandoned/medbay) "cR" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc/auto_name/west, +/obj/machinery/power/apc/auto_name/directional/west, /obj/structure/cable, /turf/open/floor/mineral/titanium/tiled/blue, /area/shuttle/abandoned/bridge) @@ -1170,10 +1175,6 @@ }, /turf/open/floor/mineral/titanium/tiled/white, /area/shuttle/abandoned/medbay) -"cZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/mineral/titanium/tiled/blue, -/area/shuttle/abandoned/bridge) "da" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, @@ -1724,10 +1725,10 @@ cy cF cK cR -cZ +dw de dk -cZ +dw du cV cM @@ -1810,10 +1811,10 @@ cz aJ cL cT -cZ +dw df -cZ -cZ +dw +dw dw cV cM diff --git a/_maps/shuttles/yohei_harvester.dmm b/_maps/shuttles/yohei_harvester.dmm new file mode 100644 index 000000000000..242d63821cdc --- /dev/null +++ b/_maps/shuttles/yohei_harvester.dmm @@ -0,0 +1,989 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ak" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"at" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"bi" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"bK" = ( +/obj/structure/table/abductor, +/obj/item/modular_computer/tablet{ + pixel_y = 19 + }, +/obj/item/integrated_circuit_printer/upgraded{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"cS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"cU" = ( +/obj/structure/table/abductor, +/obj/item/assembly/signaler{ + pixel_x = 7 + }, +/obj/item/melee/baseball_bat, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"dt" = ( +/obj/structure/table/abductor, +/obj/item/storage/backpack/duffelbag/syndie/surgery, +/obj/item/stack/medical/gauze/twelve{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/robot_suit/prebuilt, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"dP" = ( +/obj/item/storage/photo_album/syndicate, +/obj/structure/table/abductor, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"eA" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"eN" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"fu" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/obj/machinery/armament_station/yohei, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"fG" = ( +/obj/machinery/turntable, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"fZ" = ( +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"hm" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"ic" = ( +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"iI" = ( +/obj/effect/turf_decal/siding/wideplating/dark/end, +/turf/open/floor/plasteel/tg/kitchen/diagonal, +/area/shuttle/yohei) +"iT" = ( +/obj/structure/railing, +/obj/structure/fans/tiny/invisible, +/obj/docking_port/mobile/yohei, +/obj/structure/cable, +/obj/effect/mob_spawn/human/donate/yohei, +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"iW" = ( +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/shuttle/yohei) +"jH" = ( +/obj/structure/railing, +/obj/structure/fans/tiny/invisible, +/obj/effect/landmark/yohei_beacon, +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"kp" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/table/abductor, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plastic/fifty{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"ks" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"lu" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"lS" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_y = 3 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/item/tank/internals/emergency_oxygen/double{ + pixel_y = -8 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"mQ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"nA" = ( +/obj/effect/turf_decal/stripes/full, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/door/airlock/yohei{ + req_access_txt = "220" + }, +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"nM" = ( +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_corner{ + dir = 1 + }, +/area/shuttle/yohei) +"om" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/shuttle/engine/advanced/large, +/turf/open/floor/engine, +/area/shuttle/yohei) +"on" = ( +/turf/template_noop, +/area/template_noop) +"rB" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "yoheifuckery" + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"rR" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 6 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"sg" = ( +/turf/closed/indestructible/iridium, +/area/shuttle/yohei) +"sx" = ( +/obj/structure/table/abductor, +/obj/item/camera{ + pixel_y = 16 + }, +/obj/item/storage/box/stingbangs, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"sK" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/table/optable, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 4 + }, +/area/shuttle/yohei) +"tg" = ( +/obj/structure/table/abductor, +/obj/item/paper/monitorkey{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/multitool/tricorder{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"tr" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"tG" = ( +/obj/structure/table/abductor, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 8; + resistance_flags = 64 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"tS" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/table/abductor, +/obj/item/storage/box/plumbing, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"uh" = ( +/obj/machinery/computer/telecomms/monitor, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"ux" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/book/yohei_codex{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"uW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge, +/area/shuttle/yohei) +"vk" = ( +/obj/structure/table/abductor, +/obj/item/restraints/handcuffs/cable{ + pixel_y = 6 + }, +/obj/item/storage/box/zipties{ + pixel_x = -5 + }, +/obj/item/storage/box/zipties{ + pixel_y = -6; + pixel_x = 3 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"vR" = ( +/obj/effect/turf_decal/siding/wideplating/dark/end{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/kitchen/diagonal, +/area/shuttle/yohei) +"wH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"wW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/obj/machinery/sleeper/syndie{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"wX" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 4 + }, +/area/shuttle/yohei) +"xk" = ( +/obj/structure/table/abductor, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"xm" = ( +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/dark/textured_corner{ + dir = 8 + }, +/area/shuttle/yohei) +"xq" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"zL" = ( +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"zO" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Bq" = ( +/obj/structure/mirror/directional/north, +/obj/structure/chair/stool/bar/directional/east, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"Br" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"BO" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"BR" = ( +/obj/structure/table/abductor, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"Cb" = ( +/obj/effect/landmark/exploration_weapon_spawner/left{ + dir = 1 + }, +/turf/closed/indestructible/iridium, +/area/shuttle/yohei) +"Cu" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"Fb" = ( +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"Fc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"Fv" = ( +/obj/structure/table/abductor, +/obj/item/radio/intercom{ + freerange = 1 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"GI" = ( +/obj/machinery/computer/weapons, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"GY" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/table/abductor, +/obj/item/construction/plumbing{ + pixel_x = 2 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"HJ" = ( +/obj/structure/table/abductor, +/obj/item/multitool, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"HK" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Ig" = ( +/obj/lab_monitor/yohei{ + anchored = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Ij" = ( +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/shuttle/yohei) +"IG" = ( +/obj/structure/table/abductor, +/obj/item/stack/medical/gauze, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"II" = ( +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"IX" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 9 + }, +/obj/structure/chair/noose, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Jx" = ( +/obj/machinery/door/airlock/yohei{ + req_access_txt = "220" + }, +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"JB" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 3; + pixel_y = -9 + }, +/obj/item/lighter{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"JD" = ( +/obj/structure/table/abductor, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/kitchen/knife/combat/survival, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -9 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"JG" = ( +/obj/structure/table/abductor, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/item/storage/fancy/cigarettes/cigpack_syndicate{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Kb" = ( +/obj/structure/chair/e_chair, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"KE" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 4 + }, +/area/shuttle/yohei) +"LB" = ( +/turf/open/floor/plasteel/tg/dark/textured_corner, +/area/shuttle/yohei) +"Nr" = ( +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"ND" = ( +/obj/machinery/computer/shuttle_flight/yohei, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"NF" = ( +/obj/machinery/vending/boozeomat/all_access{ + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"NV" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"Qg" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"RT" = ( +/obj/effect/turf_decal/siding/wideplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/tg/dark/textured_corner{ + dir = 4 + }, +/area/shuttle/yohei) +"RW" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/kitchen/diagonal, +/area/shuttle/yohei) +"SD" = ( +/obj/machinery/button/crematorium/indestructible{ + id = "yoheifuckery"; + pixel_x = -32 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 10 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Te" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 1 + }, +/turf/open/floor/plasteel/tg/dark/diagonal, +/area/shuttle/yohei) +"Tg" = ( +/obj/machinery/light/directional/west, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"Tl" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/structure/table/abductor, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/tg/dark/textured_edge{ + dir = 8 + }, +/area/shuttle/yohei) +"Uk" = ( +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"UK" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"Wf" = ( +/turf/closed/indestructible/opsglass, +/area/shuttle/yohei) +"Wu" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/tg/dark/herringbone, +/area/shuttle/yohei) +"Xc" = ( +/obj/machinery/forge/main, +/turf/open/floor/plasteel/tg/dark/textured_large, +/area/shuttle/yohei) +"XL" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 5 + }, +/turf/open/floor/plasteel/tg/dark/textured, +/area/shuttle/yohei) +"YD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) +"YO" = ( +/obj/structure/table/abductor, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8; + resistance_flags = 64 + }, +/turf/open/floor/plasteel/tg/smooth_large, +/area/shuttle/yohei) +"YQ" = ( +/obj/structure/table/abductor, +/obj/item/stack/sheet/mineral/plasma/five, +/turf/open/floor/plasteel/tg/dark/smooth_large, +/area/shuttle/yohei) + +(1,1,1) = {" +on +Cb +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +"} +(2,1,1) = {" +sg +sg +Ig +zO +at +xq +ks +sg +tr +Tg +Fc +YD +YD +Fb +xk +sg +sx +IX +SD +rB +sg +iW +om +"} +(3,1,1) = {" +Wf +GI +Te +JB +JG +bK +HK +sg +Fb +Fb +Fb +Fb +wH +Fb +HJ +sg +Kb +Te +HK +fZ +sg +iW +iW +"} +(4,1,1) = {" +Wf +ND +cS +Nr +Nr +Nr +HK +Jx +zL +zL +zL +zL +Wu +Fb +YQ +sg +cU +lu +rR +dP +sg +sg +sg +"} +(5,1,1) = {" +Wf +uh +lu +BO +BO +BO +hm +sg +sg +sg +sg +Fb +Wu +Fb +fG +sg +sg +sg +Jx +sg +sg +zL +jH +"} +(6,1,1) = {" +sg +sg +tg +Fv +JD +vk +Uk +sg +lS +Br +sg +eN +Wu +Fb +Fb +Fb +UK +Fb +zL +tr +sg +zL +jH +"} +(7,1,1) = {" +on +Cb +sg +sg +sg +sg +sg +sg +fu +rR +Jx +Fb +Wu +Wu +Wu +Wu +Wu +Wu +Wu +Wu +nA +Wu +iT +"} +(8,1,1) = {" +sg +sg +eA +KE +wX +sK +dt +sg +sg +sg +sg +Fb +zL +Fb +Fb +Fb +LB +II +II +II +sg +zL +jH +"} +(9,1,1) = {" +sg +eA +nM +Ij +Ij +Ij +xm +KE +KE +wW +sg +Fb +zL +Fb +Fb +Fb +sg +Bq +ic +ic +sg +zL +jH +"} +(10,1,1) = {" +sg +uW +Xc +Ij +Ij +Ij +Ij +Ij +Ij +ak +Jx +zL +zL +Fb +Fb +Fb +sg +BR +ux +IG +sg +sg +sg +"} +(11,1,1) = {" +sg +NV +RT +Ij +Ij +Ij +Ij +Ij +Ij +ak +sg +Fb +zL +zL +zL +zL +Jx +vR +RW +iI +sg +iW +om +"} +(12,1,1) = {" +sg +sg +XL +Qg +bi +tS +GY +Tl +kp +mQ +sg +tr +Fb +Cu +Fb +tr +sg +YO +tG +NF +sg +iW +iW +"} +(13,1,1) = {" +on +Cb +sg +sg +sg +Wf +Wf +Wf +Wf +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +sg +"} diff --git a/_maps/stations/blueshift.dmm b/_maps/stations/blueshift.dmm new file mode 100644 index 000000000000..72c5c330b175 --- /dev/null +++ b/_maps/stations/blueshift.dmm @@ -0,0 +1,355592 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"aad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"aae" = ( +/turf/closed/wall, +/area/security/prison/workout) +"aal" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"aav" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"aaC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"aaH" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/construction/engineering) +"aaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"aaK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"aaP" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aaS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "Sbay4" + }, +/turf/open/floor/plating, +/area/security/processing) +"aaT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aaU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aaW" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"aaX" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aaZ" = ( +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"abe" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"abf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"abv" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"abx" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/flash/handheld{ + pixel_x = 6; + pixel_y = 13 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"abB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"abC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"abH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"abR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"abV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/camera{ + c_tag = "Engineering - Starboard Engineering Hub Deck 2"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"abX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"abY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/central) +"abZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"acb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acd" = ( +/obj/structure/shuttle/engine/large, +/turf/open/space/openspace, +/area/maintenance/department/engine) +"acg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aci" = ( +/turf/open/floor/plasteel, +/area/security/prison/visit) +"acm" = ( +/turf/closed/wall, +/area/medical/abandoned) +"act" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/courtroom) +"acv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase{ + pixel_y = 8 + }, +/obj/item/flashlight/seclite, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"acw" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"acM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"acP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"acY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"acZ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"add" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"adk" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"adl" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"adm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"adn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"adp" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm/directional/north, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"adr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"adt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"adC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/fuel_pellet, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"adH" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/warden) +"adI" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/primary/upper) +"adJ" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/central/secondary) +"adR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"adW" = ( +/turf/open/floor/plasteel/stairs/right, +/area/security/brig) +"adY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"aec" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aee" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"aeg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ael" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aer" = ( +/obj/structure/shuttle/engine/huge{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"aev" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/hallway/primary/port) +"aeB" = ( +/obj/item/clothing/accessory/medal/silver/bureaucracy, +/obj/item/clothing/accessory/medal/gold/ordom, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"aeE" = ( +/turf/closed/wall/r_wall, +/area/security/prison/upper) +"aeP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"aeU" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"afa" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"afb" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/pink/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"afc" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"afe" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/central) +"aff" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"afj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"afk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"afl" = ( +/obj/item/storage/toolbox/emergency/old, +/turf/open/floor/oldshuttle, +/area/maintenance/fore) +"afn" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"afq" = ( +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"afv" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"afw" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/flora/tree/palm, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = -6 + }, +/obj/effect/overlay/coconut{ + pixel_x = -16 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"afB" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs, +/area/security/processing) +"afE" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"afG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/stairs, +/area/security/processing) +"afK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"afO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"afT" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"agb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"age" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"agg" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"agl" = ( +/obj/structure/ladder, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"agp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"agq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/central) +"agt" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/frame/machine, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"agy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"agD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"agJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/storage) +"agK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"agM" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"agP" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"agQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"agS" = ( +/turf/closed/wall/r_wall, +/area/security/prison/mess) +"agV" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"agW" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/machinery/power/smes{ + input_level = 0; + output_level = 10000 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"ahb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ahd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ahl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/indestructible, +/area/science/test_area) +"ahm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/mess) +"aht" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"ahy" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ahB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"ahE" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahH" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ahK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ahM" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"ahP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ahQ" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ahR" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ahS" = ( +/obj/machinery/door/firedoor/border_only/closed{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore) +"ahU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 3 + }, +/obj/item/wirecutters, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"ahW" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aib" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"aic" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aid" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aif" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aig" = ( +/obj/item/chair/stool/bar{ + pixel_y = -8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"aij" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aik" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ail" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ain" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"aio" = ( +/obj/machinery/porta_turret/lasertag/blue, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"aip" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/secofficer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/main) +"aiw" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aiy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Quarters"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/gateway) +"aiA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aiC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"aiD" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aiE" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"aiF" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/storage/bag/tray, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aiH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/maintenance/fore) +"aiI" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/maintenance/fore) +"aiJ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/maintenance/fore) +"aiM" = ( +/obj/structure/table, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aiP" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"aiU" = ( +/obj/structure/table, +/obj/item/kitchen/fork{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aiV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aiX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ajc" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/light/small, +/turf/open/floor/grass, +/area/maintenance/fore) +"ajd" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"ajh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ajk" = ( +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 21 + }, +/obj/structure/curtain/cloth, +/obj/item/soap/deluxe, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"ajo" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"ajr" = ( +/turf/closed/wall, +/area/security/prison/mess) +"ajs" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/american, +/obj/item/reagent_containers/food/condiment/flour{ + list_reagents = list(/datum/reagent/consumable/flour=600); + name = "Premium All-Purpose Flour (16KG)"; + volume = 600 + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/enzyme{ + list_reagents = list(/datum/reagent/consumable/enzyme=500); + name = "universe-sized universal enyzyme"; + volume = 500 + }, +/obj/item/reagent_containers/food/condiment/rice{ + list_reagents = list(/datum/reagent/consumable/rice=150); + name = "Basmati Rice Sack (4KG)"; + volume = 150 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/security/prison/mess) +"ajt" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aju" = ( +/obj/structure/table, +/obj/item/surgicaldrill{ + pixel_y = 7 + }, +/obj/item/scalpel{ + pixel_y = 8 + }, +/obj/item/circular_saw, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ajy" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ajA" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ajB" = ( +/obj/machinery/photocopier, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ajD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"ajH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"ajJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"ajK" = ( +/obj/structure/table, +/obj/item/plate, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"ajM" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/restraints/handcuffs, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint) +"ajN" = ( +/obj/structure/table, +/obj/item/toy/figure/wizard, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ajO" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_y = 7 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/reagent_containers/syringe{ + pixel_x = 16 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 16 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"ajS" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ajW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"ajX" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"akg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"akm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"akn" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore) +"ako" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"akq" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + req_access = null + }, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/structure/extinguisher_cabinet{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/security/prison/mess) +"akt" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"aku" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/security/prison/safe) +"akv" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/mousetraps, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) +"akw" = ( +/turf/closed/wall, +/area/command/heads_quarters/captain/private) +"akx" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Virology Storage Closet"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/virology) +"aky" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"akA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"akC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"akH" = ( +/obj/item/reagent_containers/glass/bucket/wooden{ + name = "waste bucket" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"akI" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"akJ" = ( +/obj/structure/table, +/obj/item/melee/baseball_bat, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"akK" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"akM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"akO" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/security/prison/safe) +"akP" = ( +/obj/structure/window/reinforced, +/obj/structure/bed{ + pixel_y = 8 + }, +/obj/item/bedsheet{ + pixel_y = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"akR" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating, +/area/security/prison/safe) +"akU" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ale" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Capoffice"; + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"alj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/department/engine) +"alk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"all" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"aln" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"alp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "BotanyTest"; + name = "Test Blast Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics/upper) +"alq" = ( +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain's Requests Console" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"als" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"alv" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"alw" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"alA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"alB" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/price_tagger{ + pixel_x = 4 + }, +/obj/item/sales_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"alI" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"alM" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/misc_lab/range) +"alR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"ama" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/closet/secure_closet/tac, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/dark, +/area/command) +"amb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"amc" = ( +/obj/structure/railing, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/security/processing) +"amg" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"amj" = ( +/obj/docking_port/stationary{ + dheight = 4; + dir = 8; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"amk" = ( +/obj/machinery/seed_extractor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"amm" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"amn" = ( +/obj/structure/table, +/obj/item/reagent_containers/syringe/contraband/morphine{ + pixel_x = -3; + pixel_y = -7 + }, +/obj/item/reagent_containers/glass/bottle/fentanyl{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"amp" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"ams" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/paper/pamphlet/centcom, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/entry) +"amv" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"amw" = ( +/turf/closed/wall/rust, +/area/security/prison/safe) +"amz" = ( +/obj/effect/landmark/start/hunter, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"amB" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"amF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"amM" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"amN" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/computer/arcade/battle, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"amQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"amT" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"amU" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"amV" = ( +/obj/structure/table, +/obj/item/storage/fancy/rollingpapers{ + pixel_x = -3 + }, +/obj/item/storage/fancy/rollingpapers{ + pixel_x = -3 + }, +/obj/item/storage/fancy/rollingpapers{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"anc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"anh" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"anl" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Engineering - Fore Port"; + name = "engineering camera" + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"anr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine/airless, +/area/science/mixing/chamber) +"ans" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"ant" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/storage/fancy/egg_box, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/turf/open/floor/plating, +/area/maintenance/fore) +"anv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/arcade/orion_trail, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"anz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"anD" = ( +/obj/machinery/smartfridge/food, +/turf/closed/wall, +/area/security/prison/mess) +"anE" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"anF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"anG" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"anJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"anL" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"anM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"anP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/electronic_marketing_den) +"anT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"anU" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/lily, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/chapel) +"anY" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"aob" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aoc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "QMdoor"; + name = "Quartermaster's Office"; + req_access_txt = "41" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"aof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"aoh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"aoi" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"aom" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"aoo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"aoq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aor" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 3 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"aos" = ( +/obj/structure/table/reinforced, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"aot" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 4 + }, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/turf/open/floor/plasteel, +/area/medical/psychology) +"aox" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aoy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"aoz" = ( +/obj/structure/frame/machine, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"aoC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"aoF" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aoG" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aoJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"aoL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"aoN" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"aoP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aoT" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"aoU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"aoY" = ( +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aoZ" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"apa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"apb" = ( +/obj/machinery/oven, +/turf/open/floor/plating, +/area/maintenance/fore) +"apg" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aph" = ( +/obj/machinery/door/window/northleft{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"apk" = ( +/obj/machinery/door/airlock/freezer, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"apl" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apm" = ( +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/security/prison/mess) +"apq" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/fore) +"apr" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"aps" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"apt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"apw" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/camera{ + c_tag = " Prison - Coldroom"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/security/prison/mess) +"apx" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/wrench, +/obj/item/analyzer, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/security/prison/safe) +"apy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible/layer4, +/turf/open/floor/plating, +/area/security/prison/safe) +"apB" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"apE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"apH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"apL" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"apR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/maintenance/solars/starboard/fore) +"apS" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"apX" = ( +/obj/item/ph_meter, +/obj/item/reagent_containers/dropper{ + pixel_y = -11 + }, +/obj/structure/table{ + name = "Drugs Dealer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"apY" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm8"; + name = "Cabin 8" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"apZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aqe" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/research) +"aqn" = ( +/obj/structure/table{ + name = "Smuggler's den" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"aqp" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/security/prison/safe) +"aqr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"aqs" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/breakroom) +"aqv" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"aqx" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/retaliate/goose/vomit, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"aqy" = ( +/obj/structure/table/wood, +/obj/structure/musician/piano{ + pixel_y = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"aqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"aqA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aqC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"aqF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"aqG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aqH" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/science) +"aqI" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aqJ" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aqL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aqQ" = ( +/obj/structure/table_frame, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aqR" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"aqU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aqW" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"aqY" = ( +/obj/machinery/door/airlock{ + name = "Head Of Personel's Quarters"; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"arg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/science/explab) +"aro" = ( +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"arr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"ars" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"arv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"arw" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"arz" = ( +/turf/open/floor/glass/reinforced{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"arB" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/structure/railing/corner, +/obj/effect/turf_decal/bot, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"arJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"arM" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet, +/area/medical/psychology) +"arN" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"arP" = ( +/turf/closed/wall, +/area/maintenance/fore) +"arV" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"arZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"asg" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"asl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/execution/transfer) +"asq" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_y = 2 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/sign/departments/chemistry/pharmacy{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"ast" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"asv" = ( +/turf/open/floor/plasteel/dark, +/area/space) +"asw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"asx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"asB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"asD" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"asF" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"asG" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"asI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"asJ" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"asK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"asM" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/radio/intercom, +/turf/open/floor/wood, +/area/security/courtroom) +"asS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"asT" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"atc" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"atd" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Heat Exchangers"; + dir = 4; + name = "engineering camera" + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"atl" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters) +"atn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"atp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"aty" = ( +/obj/structure/railing/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"atA" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"atB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"atD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"atE" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/command/bridge) +"atR" = ( +/obj/machinery/smartfridge/chemistry/preloaded{ + name = "Factory chemical storage" + }, +/turf/closed/wall, +/area/medical/storage) +"atT" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/central) +"atU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/filingcabinet/security, +/obj/item/radio/intercom/directional/south, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain3"; + pixel_x = -6; + pixel_y = -37 + }, +/obj/machinery/button/door/directional/south{ + id = "Repdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 4; + pixel_y = -36; + req_access_txt = "101"; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"atY" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"aud" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"aue" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/medical, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"auq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/service/hydroponics) +"aur" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/atmospherics, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"auv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"auw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"auy" = ( +/obj/structure/chair/comfy, +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"auB" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/aft) +"auD" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"auE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"auG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"auH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"auT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"auV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"auW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/grass, +/area/science/genetics) +"avh" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"avk" = ( +/obj/machinery/light/directional/west, +/turf/open/openspace, +/area/cargo/qm) +"avt" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"avu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"avv" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"avA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"avB" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"avC" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"avD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"avF" = ( +/turf/closed/wall/r_wall, +/area/service/abandoned_gambling_den) +"avG" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater) +"avO" = ( +/obj/machinery/light/small/broken/directional/south, +/turf/open/openspace, +/area/maintenance/fore/upper) +"avP" = ( +/turf/open/floor/plasteel, +/area/science/misc_lab) +"avQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"avT" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"avZ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"awd" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"awp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/deepfryer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"awr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"awt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"awA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"awB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/card/emagfake, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"awG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"awH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"awJ" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"awM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"awQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"awS" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/bot, +/obj/item/cultivator, +/obj/item/shovel/spade, +/obj/item/secateurs, +/obj/item/storage/bag/plants, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"awW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"axd" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/courtroom) +"axk" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"axn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"axx" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"axA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/broken, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"axQ" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"axU" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"ayc" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"ayf" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Right Controll Deck"; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/lobby) +"aym" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ayn" = ( +/obj/structure/shuttle/engine/huge{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"ayo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ayw" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"ayE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"ayG" = ( +/turf/closed/wall, +/area/service/hydroponics/upper) +"ayI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ayK" = ( +/obj/item/bedsheet/qm, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"ayO" = ( +/obj/machinery/button/door{ + id = "xeno11"; + name = "Secure Pen Containment Breach Shutters"; + pixel_x = -30; + pixel_y = 7; + req_access_txt = "55" + }, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Lockdown"; + pixel_x = -30; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ayU" = ( +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"ayV" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/command/gateway) +"ayY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet, +/area/service/library/printer) +"azk" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet, +/area/security/detectives_office) +"azm" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"azo" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"azq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"azv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"azx" = ( +/turf/open/openspace, +/area/maintenance/department/engine) +"azC" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"azG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/customs/auxiliary) +"azI" = ( +/turf/open/floor/plasteel, +/area/security/prison/mess) +"azP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"azS" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"azV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"azX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Testing Room"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"azZ" = ( +/obj/structure/closet/crate/wooden, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"aAo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aAp" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"aAs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"aAy" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"aAA" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + dir = 1; + pixel_x = 3; + pixel_y = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aAI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aAK" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"aAN" = ( +/obj/structure/table, +/obj/item/soap, +/obj/item/storage/bag/tray, +/obj/item/storage/box/condimentbottles{ + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aAQ" = ( +/obj/machinery/scanner_gate, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"aAV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"aAW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"aAX" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"aBc" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aBd" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"aBi" = ( +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"aBo" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"aBp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aBx" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aBA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/dorms) +"aBE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aBG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/server) +"aBJ" = ( +/obj/structure/sign/departments/court, +/turf/closed/wall, +/area/security/courtroom) +"aBK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aBT" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel, +/area/medical/virology) +"aCh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"aCl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aCo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"aCp" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aCr" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"aCu" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/misc_lab) +"aCx" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aCC" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"aCD" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"aCI" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/frame/computer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"aCP" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aCS" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"aCX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/psychology) +"aDa" = ( +/obj/structure/window/reinforced, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"aDd" = ( +/turf/open/floor/plasteel/white, +/area/command/gateway) +"aDe" = ( +/obj/structure/curtain/bounty, +/obj/structure/table{ + name = "Arms dealer" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/price_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"aDh" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/engineering/atmos) +"aDp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aDr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aDx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivacy"; + name = "Chief's Privacy Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"aDz" = ( +/obj/structure/disposaloutlet{ + dir = 1; + name = "Cargo Deliveries" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"aDE" = ( +/obj/machinery/camera{ + c_tag = "Detective's Private Interrogation Room"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aDG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"aDH" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/reagent_containers/syringe/multiver, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"aDI" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"aDL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aDM" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aDO" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "CytologyShutters"; + name = "Cytology Shutters"; + pixel_x = 30 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CytologyShutters"; + name = "Cytology shutters" + }, +/turf/open/floor/plasteel, +/area/science/cytology) +"aDS" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/service/cafeteria) +"aDU" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aDW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aEj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aEq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution/education) +"aEr" = ( +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"aEv" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aEw" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"aEx" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"aEy" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aEz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"aEH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aEI" = ( +/turf/closed/wall, +/area/security/execution) +"aEN" = ( +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"aEP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/green, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/locker) +"aES" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "RDdoor"; + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"aEV" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aEY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva) +"aEZ" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"aFa" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/cargo/miningdock) +"aFf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"aFg" = ( +/obj/machinery/light/small, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"aFh" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aFi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"aFj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"aFl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"aFn" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/ladder, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"aFr" = ( +/obj/structure/reagent_dispensers/foamtank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"aFs" = ( +/obj/structure/sign/warning/explosives/alt, +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"aFv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"aFw" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/aft) +"aFy" = ( +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aFB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"aFC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"aFE" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + name = "Airmix Reserve to Distribution" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aFF" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/fore) +"aFK" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/wrench, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aFO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"aFV" = ( +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"aFY" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aFZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"aGe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"aGg" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/security/prison/safe) +"aGh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aGi" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"aGs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aGt" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aGx" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -6 + }, +/turf/closed/wall, +/area/service/hydroponics) +"aGA" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"aGB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"aGD" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"aGG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Thermomachine waste output valve Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aGH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"aGJ" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aGO" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"aGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"aGU" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"aGV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"aGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"aHa" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/screwdriver, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/recharge_floor, +/area/science/research/abandoned) +"aHr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"aHs" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aHv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aHx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"aHA" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aHE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"aHI" = ( +/obj/machinery/sparker/directional/north{ + id = "Xenobio" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"aHK" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/theater) +"aHM" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/cargo/storage) +"aHO" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "5;6" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/morgue) +"aHR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"aHU" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Gear Room"; + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"aHX" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"aIa" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"aIc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"aId" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aIe" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/hallway/secondary/entry) +"aIj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"aIm" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"aIw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/crate/secure, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse/upper) +"aIC" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aIH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/secondary/command) +"aIO" = ( +/obj/structure/table, +/obj/item/food/jellysandwich/cherry{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/coffee, +/turf/open/floor/plating, +/area/maintenance/port) +"aIU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"aIX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/range) +"aJb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aJe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/security/prison/mess) +"aJn" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aJp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Council of practical gags"; + req_access_txt = "46" + }, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"aJq" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"aJu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/security/prison/mess) +"aJw" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"aJC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aJD" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"aJE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"aJG" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"aJI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"aJK" = ( +/turf/closed/wall/mineral/wood, +/area/security/prison/workout) +"aJL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aJQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"aJS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"aKf" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aKk" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"aKl" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aKm" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"aKt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aKy" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aKD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"aKE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aKF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aKT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aKU" = ( +/obj/structure/sign/poster/contraband/have_a_puff, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aLe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/aft/upper) +"aLf" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aLi" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"aLl" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aLn" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box/donkpockets/donkpocketberry, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aLo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/science) +"aLs" = ( +/obj/machinery/camera{ + c_tag = " Prison - Kitchen"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aLv" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"aLx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aLD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"aLE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aLH" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aLL" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"aLN" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/backup) +"aLQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"aLS" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/taperecorder, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aLY" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"aLZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aMa" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"aMd" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aMe" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aMf" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aMn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway - Info Kiosk"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aMq" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"aMt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard Fore Central"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aMu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "dormscurtain2"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/commons/dorms) +"aMA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"aMD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aMF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aMI" = ( +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"aML" = ( +/obj/structure/cable, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"aMM" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"aMV" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aMY" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aMZ" = ( +/obj/structure/rack, +/obj/item/storage/box/firingpins{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/firingpins, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"aNb" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/geiger_counter{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"aNe" = ( +/turf/closed/wall, +/area/cargo/qm/perch) +"aNj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"aNn" = ( +/obj/structure/table/reinforced, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"aNq" = ( +/obj/machinery/light/directional/west, +/turf/open/openspace, +/area/hallway/primary/upper) +"aNr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/locker) +"aNw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"aNF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Starboard"; + dir = 5 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aNI" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aNR" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"aNT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"aNU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"aNV" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"aOi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"aOm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"aOp" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aOs" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/engineering/lobby) +"aOv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"aOw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"aOF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"aOK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aOM" = ( +/obj/structure/window/reinforced, +/obj/machinery/conveyor_switch/oneway{ + id = "Luggagebelt"; + name = "Luggage conveyor switch"; + pixel_y = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint) +"aOO" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"aOR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theater"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"aOT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Cabin 2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"aOU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aOV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"aPa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/cell/potato, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aPp" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aPv" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/solars/starboard/aft) +"aPx" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/landmark/start/assistant, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/cargo/office) +"aPz" = ( +/turf/closed/wall, +/area/maintenance/port) +"aPC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"aPD" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"aPG" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aPH" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"aPI" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"aPK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"aPL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aPR" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/cargo/qm, +/obj/item/clothing/under/rank/cargo/qm/skirt, +/obj/item/clothing/head/soft, +/obj/item/clothing/neck/cloak/qm, +/obj/item/clothing/head/crown{ + name = "crown of Cargonia" + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"aPW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aQj" = ( +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -6 + }, +/turf/closed/wall, +/area/hallway/primary/central) +"aQn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"aQp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aQr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/displaycase/trophy, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters) +"aQv" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"aQw" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aQA" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"aQC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/security/warden) +"aQD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"aQO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aQV" = ( +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"aQW" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/department/science) +"aRe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 7 + }, +/obj/item/assembly/signaler{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/item/assembly/signaler{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"aRf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"aRu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"aRA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"aRB" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"aRD" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"aRH" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"aRI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/medical/psychology) +"aRJ" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/construction/engineering) +"aRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"aRN" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"aSb" = ( +/obj/structure/cable, +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"aSf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aSg" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"aSk" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/maintenance/fore/secondary) +"aSp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aSr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/telecomms/server/presets/medical, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"aSt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"aSv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"aSw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aSD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"aSE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"aSI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"aSP" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aTe" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"aTh" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"aTp" = ( +/turf/open/floor/plating/beach/sand, +/area/maintenance/department/crew_quarters/dorms) +"aTq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aTA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"aTF" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"aTR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aTV" = ( +/obj/structure/rack, +/obj/item/storage/box/gloves, +/obj/item/storage/box/bodybags, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"aTX" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aTY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aUa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"aUb" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14; + pixel_y = 7 + }, +/obj/structure/window, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"aUh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"aUm" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"aUp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aUG" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aUI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aUJ" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/machinery/camera{ + c_tag = " Prison - Entrance"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"aUQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Science - Telescience Teleporter"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"aUR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"aUS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"aUT" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"aUZ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/button/door/directional/east{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_y = -6; + req_access_txt = "58" + }, +/obj/machinery/button/door/directional/east{ + id = "hosprivacy"; + name = "Privacy Control"; + pixel_y = 6; + req_access_txt = "58" + }, +/obj/machinery/button/door/directional/east{ + id = "HoSdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 36; + req_access_txt = "58"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"aVa" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plating, +/area/security/prison/safe) +"aVb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aVe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"aVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aVj" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aVm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"aVn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"aVp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"aVu" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/maintenance/port) +"aVA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"aVB" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/item/holosign_creator/atmos{ + pixel_y = 7 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aVG" = ( +/turf/closed/wall/r_wall, +/area/security/prison/workout) +"aVU" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"aVW" = ( +/obj/structure/window, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"aWa" = ( +/obj/structure/cable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"aWi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"aWq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/workout) +"aWr" = ( +/turf/open/floor/glass/reinforced, +/area/security/prison/upper) +"aWu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"aWx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/space/basic, +/area/space/nearstation) +"aWz" = ( +/obj/machinery/smoke_machine, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"aWF" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Research Lab Desk"; + req_one_access_txt = "7" + }, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aWH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aWK" = ( +/obj/structure/table/wood, +/obj/item/instrument/guitar{ + pixel_x = -7 + }, +/obj/item/instrument/eguitar{ + pixel_x = 5 + }, +/obj/item/instrument/violin, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aWL" = ( +/turf/closed/wall, +/area/medical/coldroom) +"aWM" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"aWP" = ( +/obj/machinery/disposal/delivery_chute, +/obj/effect/turf_decal/stripes, +/obj/structure/railing/corner, +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"aWQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aWR" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/item/camera, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/lawoffice) +"aWY" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/chefhat, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white/side, +/area/maintenance/aft/upper) +"aWZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"aXe" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"aXg" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"aXk" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east{ + layer = 3.5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"aXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter3"; + name = "CMO Quarters Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"aXp" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/science/research) +"aXq" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"aXt" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"aXv" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"aXw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aXy" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aXA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aXC" = ( +/obj/structure/table, +/obj/item/storage/box/beakers/variety{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/storage/box/syringes{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -9 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"aXD" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Launch"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"aXL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/multitool{ + pixel_x = -5 + }, +/obj/item/multitool{ + pixel_x = -5 + }, +/obj/item/t_scanner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/t_scanner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/analyzer, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"aXM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"aXP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"aXR" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"aXS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aXT" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aXU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aXW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aXX" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/hemostat, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"aXY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"aYe" = ( +/turf/open/floor/wood, +/area/medical/exam_room) +"aYf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"aYi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/lawoffice) +"aYj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"aYm" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/fore) +"aYn" = ( +/obj/structure/musician/piano, +/obj/machinery/camera{ + c_tag = " Prison - Cafeteria"; + dir = 4; + network = list("ss13","prison") + }, +/turf/open/floor/wood, +/area/security/prison/mess) +"aYp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"aYs" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aYt" = ( +/obj/structure/chair/wood, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"aYv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aYw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/security/prison/mess) +"aYD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/closed/wall, +/area/engineering/atmos/upper) +"aYF" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"aYH" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"aYI" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"aYJ" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aYM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Recovery Ward" + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"aYN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"aYV" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aYW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"aYX" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"aYY" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"aYZ" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"aZa" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"aZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engineering/supermatter) +"aZj" = ( +/turf/closed/wall/r_wall, +/area/space) +"aZm" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"aZC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZE" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"aZI" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/stone, +/area/hallway/primary/central) +"aZJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"aZK" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aZM" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aZO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"aZP" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/medical/surgery) +"aZS" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aZU" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"aZW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"aZX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"baa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"bad" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"bai" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"bak" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bar" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"bas" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bat" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bay" = ( +/obj/machinery/door/airlock/research{ + name = "Bomb Assembly"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"baA" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"baD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_y = 5 + }, +/obj/item/analyzer, +/obj/machinery/requests_console/directional/north{ + department = "Tool Storage"; + name = "Tool Storage Requests Console"; + pixel_y = -30 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"baE" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"baF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"baH" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"baK" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"baO" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"baT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"baV" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"bbf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"bbn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbp" = ( +/obj/structure/table, +/obj/item/circuitboard/machine/autolathe, +/obj/item/storage/box/beakers/variety{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bbq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness) +"bbr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/trashcart/filled, +/turf/open/floor/plating, +/area/maintenance/fore) +"bbt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"bbu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgeryb"; + name = "Surgery Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"bbF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bbH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"bbJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"bbN" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/security/brig/upper) +"bbR" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"bbS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"bbX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"bca" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"bcc" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"bcd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/sparker{ + id = "executionburn"; + pixel_x = -25 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bcf" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/processor, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"bck" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"bcv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"bcx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/airlock{ + name = "Service Laundry Room"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/service) +"bcz" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"bcA" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"bcK" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bcO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/science/research) +"bcQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bcY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"bdg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"bdh" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"bdm" = ( +/obj/machinery/roulette, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"bdq" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main) +"bdr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bdu" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bdy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison/safe) +"bdA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"bdC" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup15"; + location = "hallup14" + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"bdE" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bdL" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"bdR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bdS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bdT" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"bdW" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/safe) +"bdY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bed" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/safe) +"bei" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/flashlight/pen, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"bej" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"ben" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ber" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bes" = ( +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/stairs/old, +/area/security/brig/upper) +"bez" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"beA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"beE" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/department/science) +"beI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"beL" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"beQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bfa" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"bfh" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"bfp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bfr" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bfw" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"bfG" = ( +/turf/closed/wall, +/area/medical/pharmacy) +"bfH" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/science/research/abandoned) +"bfK" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bfO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bfP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"bfR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bfT" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bfV" = ( +/turf/open/floor/engine, +/area/science/explab) +"bfX" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bgn" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"bgy" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bgz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"bgA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"bgB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "RD's Junction"; + sortType = 13 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bgD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"bgE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"bgG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/spirit_board, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"bgI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Council Chambers"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"bgJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bgN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/black{ + name = "Quartermaster's throne" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"bgP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bgQ" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"bgV" = ( +/mob/living/simple_animal/hostile/russian, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bgZ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bhe" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Service Deliveries"; + req_one_access_txt = "25;26;35;28;22;37;46;38;70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bhf" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bhi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bhk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"bhm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bhp" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bhr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bhs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bhu" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/cargo/storage) +"bhv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bhy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"bhz" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Cargo Shuttle Dock"; + dir = 1; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bhJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bhY" = ( +/obj/machinery/door/airlock/security{ + name = "Court Cell"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bhZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bic" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bid" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"big" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"bii" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"bim" = ( +/obj/structure/table/wood, +/obj/item/folder/white, +/obj/item/pen/blue, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"biq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bir" = ( +/turf/open/floor/plating, +/area/maintenance/central) +"bit" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"biu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"biv" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"biz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"biA" = ( +/obj/structure/table, +/obj/item/food/meat/slab{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/food/meat/slab, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"biB" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"biE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"biN" = ( +/obj/structure/fence/door/opened, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"biQ" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/lockers) +"biS" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"biV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock{ + name = "Jury Courtroom Acces"; + req_access_txt = "42" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/wood, +/area/security/courtroom) +"biW" = ( +/obj/structure/shuttle/engine/huge{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"bjc" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bjf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bjj" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bjk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"bjl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bjo" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bjq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/displaycase/labcage, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"bjs" = ( +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"bjt" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/trash/can/food/peaches/maint, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"bjv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"bjz" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/toy/talking/codex_gigas, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"bjC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/chapel/office) +"bjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"bjG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"bjJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 25 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"bjM" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/port) +"bjN" = ( +/obj/structure/sign/poster/contraband/revolver, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"bjO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bjP" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"bjR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bjS" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bjV" = ( +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi/ian, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"bjX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bkd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bke" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"bkk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"bkl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bkm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"bkq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/breakroom) +"bkv" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/cargo/qm) +"bkE" = ( +/obj/structure/table, +/obj/item/pneumatic_cannon/pie, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bkF" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/aft) +"bkH" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bkI" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/upper) +"bkR" = ( +/obj/structure/table_frame, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bkS" = ( +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"bkY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/warden) +"bkZ" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/keycard/library{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"bld" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/starboard) +"ble" = ( +/turf/closed/wall/r_wall, +/area/science) +"blf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bli" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"blj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bln" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"blr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"bls" = ( +/turf/closed/wall/r_wall, +/area/command) +"blu" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"blw" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"bly" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"blz" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"blB" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"blC" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/storage) +"blD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - Port Engineering Hub Deck 2"; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"blM" = ( +/obj/structure/closet/crate/large, +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"blN" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"blR" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"blT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bmg" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"bmi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bmm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/lawoffice) +"bmp" = ( +/obj/machinery/door/airlock/external{ + name = "Observatory"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"bmt" = ( +/obj/structure/sign/poster/contraband/free_drone, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"bmv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bmy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bmD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"bmJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bmL" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bmM" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"bmO" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera{ + c_tag = "Genetics Lab North"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"bmS" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"bmT" = ( +/obj/structure/table{ + name = "Ripperdoc" + }, +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/dirt, +/obj/item/price_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"bmW" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"bmY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnf" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"bni" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bnn" = ( +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bnr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bnt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bnw" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/commons/dorms) +"bnx" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science) +"bnE" = ( +/obj/machinery/rnd/server, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Science - Server Room"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/circuit/telecomms, +/area/science/server) +"bnS" = ( +/obj/structure/dresser, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"bnX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/north, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bnY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"bnZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "justiceflash"; + name = "mounted justice flash"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"boh" = ( +/turf/closed/wall, +/area/service/bar/atrium) +"boj" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bom" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"boq" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain3"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/command/heads_quarters) +"bot" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/library) +"bou" = ( +/obj/structure/curtain/bounty, +/obj/structure/table{ + name = "General Merchant" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"bow" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"boy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"boD" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"boH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"boJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom/three{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"boN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"boR" = ( +/obj/machinery/door/window{ + name = "Library Desk"; + req_access_txt = "37" + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library) +"boS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"boY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"boZ" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"bpd" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/maintenance/department/crew_quarters/dorms) +"bph" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bpk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpm" = ( +/obj/structure/chair/pew/left{ + dir = 1; + name = "Jury" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"bpq" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bps" = ( +/obj/structure/closet/toolcloset, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"bpu" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"bpy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"bpz" = ( +/obj/machinery/computer/chef_order, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bpF" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bpG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bpI" = ( +/obj/machinery/light/directional/north, +/obj/structure/stairs/west, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bpL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bpN" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bpZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"bqf" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bql" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"bqn" = ( +/obj/structure/table, +/obj/item/kitchen/knife, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"bqo" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"bqr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"bqw" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/landmark/event_spawn, +/obj/machinery/light, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"bqx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"bqC" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bqE" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bqG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/commons/fitness) +"bqR" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/surgery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bqU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"brd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bri" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"brk" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"brm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"brp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/fermenting_barrel, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"brr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/security/courtroom) +"brC" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel, +/area/maintenance/port) +"brF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"brH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"brM" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/service/theater) +"brQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"brS" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar/atrium) +"brV" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"brY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"brZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"bsb" = ( +/obj/item/cigbutt, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bsk" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "Luggagebelt" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"bsn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bsp" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bsq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve/digital, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/engine_access, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Airlock"; + name = "engineering camera" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"bsr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bst" = ( +/obj/structure/table/wood, +/obj/item/instrument/piano_synth, +/obj/item/instrument/banjo, +/obj/item/instrument/harmonica, +/obj/item/instrument/guitar, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/prison/mess) +"bsu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"bsv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bsw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"bsA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bsB" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"bsD" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"bsE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningdock) +"bsH" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"bsK" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bsM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/computer/shuttle_flight/mining, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningdock) +"bsN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bsO" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"bsP" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"bta" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"btb" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"btc" = ( +/obj/structure/table, +/obj/item/clothing/suit/chickensuit, +/obj/item/clothing/head/chicken{ + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btf" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"btq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"bts" = ( +/obj/machinery/photocopier, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"btt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"btu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"bty" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"btz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"btD" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area"; + req_access_txt = "19; 61" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"btH" = ( +/obj/structure/curtain/cloth/fancy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/theater) +"btI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/security/prison/mess) +"btJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"btQ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"btW" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/medical{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -6 + }, +/turf/closed/wall, +/area/hallway/primary/central) +"btY" = ( +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"buc" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bug" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"buh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"buj" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bul" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"buo" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"buy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"buD" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"buG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/wheelchair, +/obj/item/wheelchair{ + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"buJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"buK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"buW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"bvi" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bvk" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bvl" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"bvr" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/cargo/miningdock) +"bvt" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock{ + name = "Defense Attorney Office"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bvu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bvw" = ( +/obj/item/camera, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"bvy" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bvA" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bvC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Drone Launchsite" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bvF" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bvH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bvL" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bvM" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bvR" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bvX" = ( +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"bvY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/aft/upper) +"bwb" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bwf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"bwo" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/southright{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/visit) +"bwp" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bwA" = ( +/obj/item/trash/cheesie, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bwE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"bwF" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue/full, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/medicine, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"bwK" = ( +/turf/open/floor/plating/beach/sand, +/area/command/heads_quarters/captain) +"bwL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"bwM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"bwP" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"bwR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"bwT" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bwV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bxa" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"bxb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/courtroom) +"bxe" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"bxf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/sb_med) +"bxh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bxm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bxo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"bxq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/psychology) +"bxr" = ( +/obj/machinery/door/airlock/security{ + name = "Kitchen" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"bxs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bxu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bxv" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bxA" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"bxB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"bxD" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"bxI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bxK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bxL" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"bxP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"bxZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"byg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"byl" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/camera{ + c_tag = "Science - Waiting Room"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"byp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"byw" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"byy" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/port/aft) +"byC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/space) +"byF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"byG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"byH" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/execution/education) +"byI" = ( +/obj/item/trash/energybar, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"byM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_y = -32 + }, +/obj/machinery/modular_computer/console/preset/command{ + dir = 1; + pixel_y = -3 + }, +/obj/machinery/camera{ + c_tag = "Command - Representative's Office"; + dir = 1; + name = "command camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"byR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/wooden, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"byW" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"byX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Far Port" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bzf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science) +"bzk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bzl" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/service/chapel) +"bzm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bzr" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"bzt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bzw" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/medical/medbay/lobby) +"bzz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"bzL" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"bzN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/module_duplicator, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bzS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"bzV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"bzW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/science/mixing) +"bzX" = ( +/obj/machinery/door/poddoor/atmos_test_room_mainvent_2, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"bAd" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bAj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Toxin Junction"; + sortType = 25 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bAk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bAl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/cafeteria) +"bAA" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bAI" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bAJ" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bAN" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison/safe) +"bAO" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"bAQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Telecomms - Deck 1 Relay"; + dir = 8; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"bAR" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"bAS" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"bAT" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bAY" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/command/gateway) +"bBb" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bBg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"bBh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"bBi" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"bBj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bBm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"bBp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bBs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bBw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bBz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bBB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/noticeboard/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Tcomms Controll"; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bBE" = ( +/obj/effect/turf_decal/tile/brown, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bBG" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bBJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"bBL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"bBN" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -6 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -6 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -6 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bBT" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bBV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"bBW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bCe" = ( +/turf/open/floor/plasteel, +/area/science/robotics) +"bCf" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"bCh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"bCl" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bCp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"bCq" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bCr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"bCs" = ( +/obj/structure/table/glass, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/window, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"bCy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bCC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"bCE" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bCF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bCG" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/obj/machinery/power/shieldwallgen/anchored{ + shield_range = 14 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"bCM" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bCV" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bCY" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"bDa" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/cargo/miningdock) +"bDb" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bDd" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bDf" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bDn" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bDo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bDp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"bDs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bDv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/trashcart/laundry, +/obj/machinery/camera{ + c_tag = " Prison - Custodial Closet"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"bDz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"bDB" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/service/chapel) +"bDF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"bDG" = ( +/turf/open/floor/plasteel, +/area/security/main) +"bDR" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bDU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"bDX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"bDY" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"bEa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"bEd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bEh" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"bEl" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bEn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"bEp" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"bEy" = ( +/obj/structure/dresser, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/carpet/red, +/area/security/warden) +"bEz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/execution) +"bEE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"bEJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"bEM" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bEQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"bES" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"bEX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"bFh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"bFk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bFq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port Foremost Central"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFy" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/maintenance/fore/upper) +"bFA" = ( +/obj/structure/closet/secure_closet/brig{ + id = "cargocell"; + name = "Cargo Cell Locker" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"bFB" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bFD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bFP" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"bFV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bFW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"bFZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bGa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/prison) +"bGb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"bGe" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bGh" = ( +/obj/machinery/conveyor{ + id = "cargoload" + }, +/obj/structure/disposaloutlet{ + dir = 1; + name = "Cargo Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"bGp" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"bGE" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bGH" = ( +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bGL" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"bGM" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"bGP" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/chef, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bGQ" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"bGV" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/cargo/storage) +"bGW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"bHd" = ( +/obj/structure/table, +/obj/structure/closet/mini_fridge{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/commons/dorms) +"bHe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"bHf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/science) +"bHq" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "AI - Upload"; + name = "motion-sensitive ai camera"; + network = list("aiupload") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/ai_module/remove, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"bHr" = ( +/obj/machinery/door/airlock{ + name = "Abandoned Diner" + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bHz" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/telecomms/server/presets/engineering, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"bHB" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bHE" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/port) +"bHG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bHH" = ( +/obj/structure/janitorialcart{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/prison) +"bHJ" = ( +/obj/structure/chair, +/turf/open/floor/wood, +/area/hallway/primary/central) +"bHN" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"bHP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bHT" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"bHV" = ( +/turf/open/openspace, +/area/engineering/transit_tube) +"bHX" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Crew Area - Pool Starboard"; + dir = 8; + name = "dormitories camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"bIb" = ( +/turf/open/floor/plating, +/area/security/prison/safe) +"bId" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"bIe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bIf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bIj" = ( +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"bIl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Chemistry - Center"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bIm" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bIp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bIq" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - West Entrance"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"bIs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"bIu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"bIw" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/cargo/miningdock) +"bIz" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bID" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/simple_animal/chicken{ + name = "Kentucky"; + real_name = "Kentucky" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"bIG" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"bIJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bIT" = ( +/obj/structure/closet, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"bIV" = ( +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bIY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"bIZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos/upper) +"bJc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bJk" = ( +/obj/structure/cable, +/obj/structure/reflector/single/anchored{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"bJr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bJt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/command/bridge) +"bJu" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_x = 6; + pixel_y = 25 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/item/reagent_containers/food/drinks/bottle/absinthe/premium{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"bJy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"bJA" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel/main) +"bJJ" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/cargo/qm) +"bJM" = ( +/turf/open/floor/plasteel, +/area/commons/fitness) +"bJQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"bJS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bJU" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/science/explab) +"bJV" = ( +/obj/structure/rack, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/machinery/camera{ + c_tag = "Science - Robotics Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"bJW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/violet/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"bJX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"bJY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bKb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/reagent_dispensers/foamtank, +/obj/machinery/camera{ + c_tag = "Atmospherics - Upper Fore"; + dir = 10; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bKg" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/machinery/camera{ + c_tag = "AI Chamber - Fore"; + name = "motion-sensitive ai camera"; + network = list("aichamber") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bKk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"bKn" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"bKA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"bKC" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bKE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/command/gateway) +"bKI" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robust{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/toy/cards/deck, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"bKN" = ( +/obj/structure/lattice, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"bKO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/modular_computer/console/preset/cargochat/cargo{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"bKR" = ( +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"bLa" = ( +/turf/closed/wall/rust, +/area/commons/vacant_room/commissary/second) +"bLb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bLe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bLh" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bLl" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/porta_turret/ai, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bLm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"bLw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"bLy" = ( +/obj/structure/table, +/obj/item/training_toolbox, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bLE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "NarcoticsV"; + name = "Maintenance Vendor" + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"bLI" = ( +/obj/machinery/door/airlock/mining{ + name = "Deliveries"; + req_one_access_txt = "50" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"bLJ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/security/courtroom) +"bLO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"bLU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bLV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"bLX" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"bLY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bMb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bMd" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bMi" = ( +/obj/machinery/computer/cargo{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"bMm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"bMo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/hidden{ + dir = 1 + }, +/turf/closed/wall, +/area/engineering/atmos/upper) +"bMr" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bMv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"bMA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bMC" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bMF" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bMH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bMI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bMJ" = ( +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"bMN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"bMT" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 8 + }, +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"bMW" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/explab) +"bMX" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bMY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/chapel) +"bNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"bNf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/commons/fitness) +"bNj" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"bNk" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bNm" = ( +/turf/closed/wall, +/area/hallway/primary/port) +"bNo" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Labor shuttle landing pad" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/office) +"bNs" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bNt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bNu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Laundromat" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"bNv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"bNz" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bNB" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bNF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bNJ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"bNQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bNW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"bNX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"bNY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bOl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bOq" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Engine SMES Room"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"bOr" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bOt" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bOu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bOw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_y = -10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOx" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/science) +"bOz" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"bOJ" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"bOO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"bOR" = ( +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"bOS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bOU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"bPd" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"bPg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"bPj" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"bPo" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/storage/firstaid/brute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/medical/storage) +"bPq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bPs" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/security/prison/workout) +"bPu" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bPv" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"bPF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bPI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"bPO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bPP" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"bPS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"bPT" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"bPW" = ( +/obj/machinery/camera{ + c_tag = " Prison - Gym Upper"; + dir = 8; + network = list("ss13","prison") + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"bPZ" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"bQa" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine/airless, +/area/science/mixing/chamber) +"bQc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bQd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"bQe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"bQf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bQi" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"bQj" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/command/heads_quarters/captain) +"bQs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bQt" = ( +/obj/structure/table/glass, +/obj/structure/microscope, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"bQz" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/command) +"bQH" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/chapel) +"bQK" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bQL" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Hangar - Lower 2"; + dir = 1; + name = "arrivals camera" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"bQR" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Shuttle Bay East"; + dir = 10 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8; + initial_gas_mix = "TEMP=2.7" + }, +/area/security/processing) +"bQS" = ( +/turf/open/floor/stone, +/area/hallway/primary/central) +"bQT" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bQV" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bQW" = ( +/obj/structure/table/wood, +/obj/item/crowbar/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/detective, +/obj/item/camera/detective, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"bQZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"bRe" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"bRj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"bRl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"bRn" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"bRq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album/library, +/turf/open/floor/carpet, +/area/service/library) +"bRv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"bRF" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Surgery"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/robotics) +"bRG" = ( +/obj/structure/table, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/light/small/directional/north, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/wood, +/area/hallway/secondary/entry) +"bRV" = ( +/obj/structure/window, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"bRX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bSa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bSf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/engineering/atmos/upper) +"bSg" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/main) +"bSk" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"bSp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bSq" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bSs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bSt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bSA" = ( +/obj/effect/turf_decal/bot, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bSC" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/service/hydroponics) +"bSE" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"bSG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"bTe" = ( +/turf/open/floor/engine/airless, +/area/science/mixing/chamber) +"bTj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"bTk" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"bTl" = ( +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"bTn" = ( +/obj/structure/window/reinforced, +/obj/structure/bed{ + pixel_y = 8 + }, +/obj/item/bedsheet{ + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bTp" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"bTH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"bTI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bTJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock{ + name = "Kitchen" + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"bTL" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/department/engine) +"bTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"bTS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain{ + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"bTZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"bUa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bUb" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/medical/psychology) +"bUd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bUh" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"bUj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bUk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"bUo" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"bUs" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"bUx" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bUF" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"bUI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bUL" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/hidden, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bUT" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bUX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/bin, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"bUY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/science/research) +"bVa" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters) +"bVf" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bVk" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"bVn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"bVr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVu" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library/artgallery) +"bVv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bVE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bVG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"bVM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"bVN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"bVQ" = ( +/turf/closed/wall/rust, +/area/service/abandoned_gambling_den/secondary) +"bVS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"bVT" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bWa" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs, +/area/maintenance/department/medical/central) +"bWc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"bWd" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 12; + height = 18; + id = "emergency_home"; + name = "Blueshift emergency evac bay"; + width = 32 + }, +/turf/open/space/openspace, +/area/space) +"bWj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bWp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bWs" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white/side, +/area/maintenance/aft/upper) +"bWt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 16 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bWw" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Heat Exchangers"; + dir = 1; + name = "engineering camera" + }, +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"bWx" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Lounge"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/science/research) +"bWB" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bWD" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bWE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"bWG" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bWI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bWL" = ( +/obj/structure/window, +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"bWO" = ( +/obj/machinery/atmospherics/components/trinary/mixer, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"bWT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"bWU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bWV" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/fore) +"bWX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/dogbed, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"bWY" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXc" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge 2"; + dir = 4; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bXh" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -3 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"bXn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"bXo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXq" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"bXr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"bXw" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"bXx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bXA" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/prison/mess) +"bXB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bXC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"bXD" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"bXG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"bXK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"bXO" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/cargo/sorting) +"bXY" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"bYf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"bYh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/window/eastleft, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/item/folder, +/obj/item/folder, +/obj/item/folder, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"bYk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"bYl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bYo" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bYp" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/service/library) +"bYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"bYB" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"bYF" = ( +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"bYP" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/hallway/primary/port) +"bYV" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"bYX" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bYY" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Arrivals - Lounge 1"; + dir = 8; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"bYZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/lockers) +"bZe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"bZh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"bZj" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"bZl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"bZn" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/hfr_box/body/fuel_input, +/obj/item/hfr_box/body/interface, +/obj/item/hfr_box/body/moderator_input, +/obj/item/hfr_box/body/waste_output, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"bZo" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"bZr" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/maintenance/port) +"bZs" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"bZv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bZD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bZN" = ( +/obj/machinery/light_switch/directional/north, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/clothing/under/plasmaman{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/plasmaman{ + pixel_y = -7 + }, +/obj/item/clothing/under/plasmaman{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"bZP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"bZU" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"bZV" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"bZX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/department/engine) +"bZZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"cab" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cac" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"caf" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cah" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"cai" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/airlock/security{ + glass = 1; + name = "Cafeteria" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"cak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cal" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port) +"cam" = ( +/obj/structure/closet{ + name = "suit closet" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"can" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port) +"cao" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cap" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"cax" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cay" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"caI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"caJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"caK" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"caL" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet/executive, +/area/command) +"caO" = ( +/obj/item/pipe_dispenser, +/turf/open/floor/engine, +/area/engineering/engine_room) +"caR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"caV" = ( +/turf/open/floor/oldshuttle, +/area/maintenance/fore) +"caZ" = ( +/turf/open/floor/plating, +/area/engineering/break_room) +"cbf" = ( +/obj/structure/shuttle/engine/router, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cbg" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"cbl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/prison) +"cbn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cbp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain3"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/command/heads_quarters) +"cbs" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/science/research) +"cbt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port) +"cbz" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cbK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"cbL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"cbS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Starboard Hallway Lower"; + dir = 8; + name = "engineering camera" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"cbU" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"cbY" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/table/wood/fancy/royalblue, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 6; + pixel_y = 19 + }, +/obj/item/stack/spacecash/c500, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -1; + pixel_y = 12 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"cbZ" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"ccc" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"ccg" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = " Prison - Upper"; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"cch" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/prison) +"ccj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cco" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ccr" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ccx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/medical/medbay/lobby) +"ccz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ccF" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ccK" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"ccM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ccP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"ccR" = ( +/obj/machinery/door/airlock/security{ + name = "Janitorial" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ccS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ccV" = ( +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"ccX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Atmos Hallway"; + name = "hallway camera" + }, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"ccY" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ccZ" = ( +/obj/machinery/door/airlock{ + name = "Snack Bar" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"cdd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port) +"cde" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"cdf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/mob/living/simple_animal/mouse/brown/tom, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"cdg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cdi" = ( +/obj/structure/closet/crate, +/obj/item/tank/jetpack/improvised, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cdj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cdk" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Departures Port" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"cdm" = ( +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"cdo" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"cdq" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"cdr" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"cds" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"cdt" = ( +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"cdv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cdE" = ( +/mob/living/simple_animal/hostile/russian, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cdI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cdK" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/lawoffice) +"cdN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"cdR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"ceb" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"cec" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ced" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/security/prison/safe) +"cee" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"cer" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"ces" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"cex" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ceE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/lawoffice) +"ceF" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/processor, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"ceI" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ceP" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ceQ" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/service/hydroponics) +"ceS" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ceU" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/secondary) +"ceY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cfc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"cfj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cfp" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Toilet Unit" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"cfr" = ( +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cfs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"cfw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"cfz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"cfC" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cfD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cfF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"cfH" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"cfM" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"cfS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cfV" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"cfX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cfY" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cgb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cgd" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_y = 20 + }, +/obj/machinery/button/door/directional/west{ + id = "Captainprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 5; + pixel_y = 37; + req_access_txt = "20" + }, +/obj/machinery/button/door/directional/north{ + id = "Capoffice"; + name = "Office Lock Controll"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 37; + specialfunctions = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"cgg" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"cgs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"cgu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/obj/machinery/door/window/brigdoor/westright{ + dir = 2; + name = "Cargo Deliveries"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cgx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"cgB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"cgE" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cgF" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cgM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"cgR" = ( +/obj/item/trash/semki, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cgT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"cgV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"chj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"chv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"chw" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"chy" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"chC" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"chG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"chM" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/cargo/storage) +"chT" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"chX" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 12 + }, +/obj/item/storage/box/syringes, +/obj/machinery/airalarm/directional/west, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"cib" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cic" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small/directional/north, +/obj/item/clothing/gloves/color/rainbow{ + pixel_y = 6 + }, +/obj/item/clothing/under/color/jumpskirt/rainbow{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/under/color/rainbow{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/head/soft/rainbow{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/shoes/sneakers/rainbow{ + pixel_x = 3; + pixel_y = -10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"cip" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cis" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel, +/area/security/warden) +"ciy" = ( +/obj/machinery/vending/medical, +/turf/open/floor/plasteel, +/area/medical/storage) +"ciz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8; + name = "Waste connector port" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ciG" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ciH" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ciN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ciP" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/medical/exam_room) +"ciT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/obj/effect/turf_decal/trimline/neutral/filled/corner, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"ciY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cje" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"cjf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sink/kitchen{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/sign/poster/contraband/eat{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"cjh" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"cjk" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/science/mixing) +"cjn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cjo" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"cjr" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"cju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"cjx" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/structure/plaque/static_plaque/golden{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Command - Blueshield's Office"; + name = "command camera" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/executive, +/area/command) +"cjA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"cjD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"cjF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_cannabis, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"cjI" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Break Room"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"cjO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"cjT" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"cjW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/janitor) +"ckc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ckj" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ckm" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/security/checkpoint/engineering) +"ckn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ckq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/library) +"ckt" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"ckx" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Ward Cell 3"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"cky" = ( +/obj/item/trash/syndi_cakes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ckA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ckD" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ckN" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"ckU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"ckV" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ckX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"cla" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"cle" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"clf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/central) +"clh" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/storage/fancy/egg_box, +/obj/item/food/spidereggs, +/obj/item/food/scotchegg, +/obj/item/food/grown/eggplant, +/obj/item/food/egg/red, +/obj/item/food/egg/yellow, +/obj/item/food/egg/purple, +/obj/item/food/egg/orange, +/obj/item/food/egg/mime, +/obj/item/food/egg/green, +/obj/item/food/egg/blue, +/obj/item/food/egg, +/obj/item/food/chocolateegg, +/obj/item/food/boiledegg, +/turf/open/floor/plating, +/area/maintenance/starboard) +"clj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"clk" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"cln" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"clp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"clq" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/disposal) +"clu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"clE" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Locker Room"; + req_access_txt = "32" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"clK" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"clM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"clN" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"clW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cma" = ( +/obj/machinery/power/floodlight, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cmc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cmd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cme" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmh" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/science/explab) +"cmi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"cml" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"cmm" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"cms" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cmw" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"cmy" = ( +/obj/machinery/button/door{ + id = "cargounload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "cargoload"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"cmB" = ( +/turf/open/floor/plasteel, +/area/security/main/lockers) +"cmC" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cmD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/aft/upper) +"cmF" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cmM" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/tongue/tied, +/obj/item/organ/heart, +/obj/item/organ/eyes/fly, +/obj/item/organ/liver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cmY" = ( +/obj/structure/plaque/static_plaque/golden, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cna" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cnb" = ( +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"cng" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cno" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"cnq" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/commons/dorms) +"cnt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cnw" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"cnA" = ( +/turf/closed/wall, +/area/service/bar) +"cnE" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cnK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"cnS" = ( +/obj/machinery/button/door/directional/north{ + id = "evashutters"; + name = "E.V.A. Shutters"; + pixel_x = 24; + pixel_y = 0; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera{ + c_tag = "Command - E.V.A."; + dir = 8; + name = "command camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"coh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"col" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"cot" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"cou" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/mineral/sandstone/thirty, +/obj/item/chisel, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"coE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"coF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/theater) +"coH" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"coP" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"coS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/library) +"coV" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"cpd" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"cpf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"cpl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"cpq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"cpt" = ( +/obj/structure/guncase, +/obj/effect/turf_decal/delivery, +/obj/item/storage/box/lethalshot, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"cpw" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"cpE" = ( +/obj/machinery/door/window/northright, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"cpH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cpI" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"cpN" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cpO" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/construction/engineering) +"cpV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cpW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"cpX" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"cpZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"cqj" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/stairs/right, +/area/engineering/atmos) +"cqk" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmospherics_engine) +"cql" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"cqm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line, +/obj/effect/turf_decal/trimline/neutral/line, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"cqo" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cqr" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cqs" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cqt" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cqy" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/ore_silo, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"cqD" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cqF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"cqG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"cqI" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"cqJ" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/central) +"cqO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"cqY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"crf" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/workout) +"crm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cro" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"crp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/storage) +"crq" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"crv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"crz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"crF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"crI" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"crJ" = ( +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"crL" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"crM" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"crO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"crZ" = ( +/obj/machinery/newscaster, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice) +"csm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"cso" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"csq" = ( +/turf/closed/wall/rust, +/area/service/hydroponics/garden/abandoned) +"css" = ( +/obj/item/trash/can, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"csu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central) +"csB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"csC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"csF" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"csI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"csO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"csP" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"csQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/cargo/miningdock) +"csR" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"csU" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"csV" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"csY" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"ctd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"ctf" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ctg" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft) +"cth" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"cti" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating, +/area/maintenance/aft) +"ctj" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ctk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/rods/ten, +/turf/open/space/basic, +/area/space/nearstation) +"cto" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Service hallway"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/service/kitchen) +"ctp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"ctt" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite - Hall"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"ctu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"ctx" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/science) +"cty" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ctB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ctD" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"ctJ" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/cargo/qm) +"ctM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ctO" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"ctQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ctS" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"cui" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuj" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"cul" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"cum" = ( +/obj/machinery/ai_slipper, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"cut" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"cuv" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/lobby) +"cuz" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cuF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cuO" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/aft) +"cuR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"cuW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/service/chapel) +"cuY" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cva" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"cvc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"cvj" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvn" = ( +/obj/machinery/light/small/broken, +/turf/open/floor/plasteel/stairs, +/area/maintenance/port) +"cvs" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/starboard) +"cvt" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"cvv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cvw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"cvz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/brig) +"cvC" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/off, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"cvJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/command/bridge) +"cvL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"cvM" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/service/library/abandoned) +"cvO" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/airlock_painter/decal, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cvP" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/aft) +"cvQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cwc" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Evidence Storage"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"cwi" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"cwo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cwp" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/department/science) +"cwr" = ( +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"cwE" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup12"; + location = "hallup11" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"cwF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cwG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cwI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cwJ" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Apiary"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"cwL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "surgery"; + name = "Surgery Shutter" + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"cwP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cwQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"cwV" = ( +/obj/structure/cable, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Medical Delivery"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"cwZ" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/toggle/suspenders, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"cxc" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/science/mixing) +"cxd" = ( +/obj/structure/table, +/obj/item/organ/stomach/cybernetic/tier2, +/obj/item/organ/eyes/robotic/flashlight, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cxp" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/security, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"cxr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"cxs" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"cxt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"cxu" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"cxA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/security/processing) +"cxF" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cxM" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/window/reinforced, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"cxN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Far Starboard"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cxP" = ( +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"cxV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/library/abandoned) +"cyd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyf" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"cyh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cyr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"cyv" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"cyA" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cyE" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"cyI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"cyK" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"cyN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/mob/living/simple_animal/bot/secbot/beepsky, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cyO" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"cyW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cza" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Starboard"; + dir = 1; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"czh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"czn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"czo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"czq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czr" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"czv" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"czz" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"czB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"czG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"czK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"czU" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/wrench, +/turf/open/floor/circuit, +/area/tcommsat/computer) +"czW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cAd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"cAm" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cAn" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"cAr" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"cAs" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"cAz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/construction/engineering) +"cAA" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/commons/dorms) +"cAE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/grass, +/area/science/research) +"cAG" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cAH" = ( +/mob/living/simple_animal/hostile/lizard/wags_his_tail, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"cAR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse/upper) +"cAV" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cAX" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/teleporter_station{ + pixel_y = 7 + }, +/obj/item/circuitboard/machine/teleporter_hub{ + pixel_y = 2 + }, +/obj/item/circuitboard/computer/gulag_teleporter_console{ + pixel_y = -3 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"cAY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cBa" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"cBc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"cBn" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"cBq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cBr" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cBt" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Bottom Port"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cBv" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"cBx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cBC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"cBE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/maintenance/fore/upper) +"cBG" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"cBH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"cBU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"cBW" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/science/research) +"cBX" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"cCb" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"cCf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cCg" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cCh" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cCl" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"cCn" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/openspace, +/area/maintenance/port/aft) +"cCq" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cCv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"cCy" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"cCC" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Lasertag Prep Room" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"cCF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"cCG" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"cCI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"cCM" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cCQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"cCR" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"cCZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"cDd" = ( +/obj/structure/table/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"cDe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"cDf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cDg" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"cDk" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"cDr" = ( +/obj/machinery/effector{ + workdir = "down" + }, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/captain/private) +"cDA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/service/chapel/office) +"cDI" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/mecha_part_fabricator/cargo, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"cDL" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 4; + name = "blue line" + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cDV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"cEe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"cEh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cEo" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cEt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/machinery/light/small, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cEz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cEB" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"cED" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"cEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"cEM" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/structure/sign/departments/science{ + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/science) +"cES" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"cEX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"cFa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"cFh" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"cFl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/server) +"cFn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/main) +"cFq" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"cFz" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/reagent_containers/glass/rag{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"cFE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"cFH" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/secondary/entry) +"cFP" = ( +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"cFQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cFX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cFZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"cGb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"cGf" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"cGi" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"cGk" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"cGr" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cGz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/xenobiology) +"cGA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cGC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"cGL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cGM" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"cGR" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"cGZ" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"cHc" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"cHd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"cHh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cHm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cHn" = ( +/obj/structure/railing, +/obj/structure/stairs/west, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/secondary/entry) +"cHq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cHs" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cHz" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 5" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"cHD" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"cHL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/stack/arcadeticket/thirty{ + pixel_y = 4 + }, +/obj/item/stack/arcadeticket/thirty, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"cHO" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"cHR" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/cargo/storage) +"cHX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"cIk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cIq" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"cIt" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/library) +"cIx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cIA" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/medical/psychology) +"cIB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"cID" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"cIL" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/exit) +"cIQ" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"cIW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/miningdock) +"cJd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/aft/upper) +"cJg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"cJh" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"cJk" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"cJn" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"cJu" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"cJx" = ( +/turf/closed/wall, +/area/command/heads_quarters) +"cJA" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"cJC" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"cJI" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = 7 + }, +/obj/item/pen{ + pixel_x = 7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"cJK" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Clothingstore"; + name = "Clothing store shutters" + }, +/turf/open/floor/plating, +/area/hallway/primary/port) +"cJL" = ( +/obj/vehicle/ridden/scooter, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cJM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Research Lab"; + departmentType = 5; + name = "Research Requests Console"; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Research and Development"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cJO" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"cJP" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cJW" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/service/library) +"cJX" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"cKc" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"cKd" = ( +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -20; + pixel_y = 9 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plastic{ + pixel_x = 4 + }, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/iron{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cKm" = ( +/obj/machinery/announcement_system, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west{ + pixel_x = -34; + pixel_y = 5 + }, +/obj/machinery/newscaster/directional/west{ + pixel_x = -34; + pixel_y = -7 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cKp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"cKr" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cKv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/bridge) +"cKx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"cKB" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"cKG" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cKM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"cKN" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKT" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cKU" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cKY" = ( +/obj/structure/closet/cardboard, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cLb" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"cLg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward4"; + name = "Controll Room Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/psychology) +"cLk" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"cLl" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cLq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"cLr" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cLx" = ( +/obj/machinery/door/airlock/freezer{ + name = "Medical Freezer"; + req_access = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/surgery) +"cLy" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cLA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cLG" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"cLI" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cLM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"cLQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cMh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Cryogenics"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"cMm" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"cMn" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"cMq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"cMr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"cMt" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/science) +"cMu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"cME" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window, +/turf/open/floor/grass, +/area/commons/lounge) +"cMJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cMK" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cMM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cMO" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cMU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"cMV" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"cMY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cNa" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"cNb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Office"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"cNm" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space) +"cNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/research/abandoned) +"cNv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"cNy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Ward Maintenance"; + req_access_txt = "70" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"cNM" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/bot, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/entry) +"cNR" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"cNS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"cNW" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/central) +"cNY" = ( +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"cNZ" = ( +/turf/open/floor/plasteel/stairs, +/area/service/abandoned_gambling_den) +"cOg" = ( +/turf/closed/wall, +/area/maintenance/department/science) +"cOn" = ( +/obj/structure/railing, +/obj/structure/table_frame, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"cOp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/detectives_office) +"cOw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cOD" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"cOI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"cON" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Storage Upper"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"cOO" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"cOP" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/starboard/aft) +"cOR" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/camera{ + c_tag = "Medbay - Break Room"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"cOV" = ( +/obj/machinery/door/airlock/command{ + name = "Teleporter Room"; + req_access_txt = "17" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cOZ" = ( +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"cPf" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"cPp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cPq" = ( +/turf/closed/wall, +/area/commons/dorms) +"cPr" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"cPs" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cPx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"cPy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"cPz" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/robotics) +"cPB" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"cPD" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"cPG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"cPK" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5"; + name = "Cell 5 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cPL" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"cPU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"cPW" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"cQe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"cQf" = ( +/obj/structure/fence/door, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cQk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno6"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQl" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"cQs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cQu" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningoffice) +"cQw" = ( +/obj/machinery/door/window/brigdoor{ + id = "cargocell"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cQy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/fore) +"cQz" = ( +/turf/open/floor/plasteel/stairs, +/area/service/kitchen) +"cQB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"cQH" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cQJ" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cQM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"cQN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"cQO" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cQZ" = ( +/obj/structure/table/wood, +/obj/item/toner/large, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/wood, +/area/lawoffice) +"cRa" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"cRc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 6 + }, +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms, +/area/science/server) +"cRe" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"cRh" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"cRl" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"cRm" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"cRB" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cRC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) +"cRF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"cRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"cRQ" = ( +/obj/structure/table/reinforced, +/obj/item/inspector, +/obj/item/inspector{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cRT" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/hydroponics) +"cRY" = ( +/turf/closed/wall/r_wall, +/area/engineering/transit_tube) +"cRZ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/office) +"cSa" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/folder/red, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"cSi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"cSq" = ( +/turf/open/floor/stone, +/area/maintenance/fore) +"cSy" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"cSA" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"cSE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/mess) +"cSH" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"cSK" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cSL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"cSN" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"cSW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Medbay - Pharmacy"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/requests_console/directional/south{ + department = "Pharmacy"; + name = "Pharmacy Requests Console"; + pixel_x = -32; + pixel_y = 0; + receive_ore_updates = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"cSX" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"cTj" = ( +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"cTk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cTq" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"cTw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cTy" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"cTD" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/command/gateway) +"cTO" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cTP" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/command/heads_quarters/captain) +"cTS" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"cTW" = ( +/turf/closed/wall/rust, +/area/maintenance/department/medical/central) +"cUb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"cUe" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/commons/dorms) +"cUf" = ( +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_y = -8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/security/warden) +"cUu" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"cUv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cUw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"cUC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"cUE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight, +/obj/item/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/radio, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/misc_lab) +"cUJ" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cUO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cUU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos) +"cUX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cVb" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cVc" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Dock"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"cVd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"cVt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/hallway/secondary/command) +"cVx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cVy" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/airlock/security{ + glass = 1; + name = "Cafeteria" + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/prison/mess) +"cVz" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"cVB" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/department/medical/morgue) +"cVL" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"cVM" = ( +/obj/structure/chair/sofa/left, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"cVR" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/lobby) +"cVT" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"cVY" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"cWa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/department/medical) +"cWb" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"cWf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cWj" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"cWm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"cWs" = ( +/obj/machinery/door/window/brigdoor/northright{ + dir = 8; + id = "Cell 3"; + name = "Cell 3"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"cWt" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm6"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"cWv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cWz" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Port Bow"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cWA" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"cWC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/item/airlock_painter, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cWF" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"cWK" = ( +/turf/closed/wall/rust, +/area/maintenance/disposal) +"cWM" = ( +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/cargo/sorting) +"cWS" = ( +/obj/structure/table/wood, +/obj/structure/window{ + dir = 1 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 7 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"cWT" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cWV" = ( +/obj/machinery/door/airlock/hatch{ + name = "EVA Shed" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cWX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cWZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cXa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"cXc" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cXi" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"cXk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/range) +"cXm" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison) +"cXn" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"cXp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cXv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/maintenance/solars/port/fore) +"cXy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cXG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"cXH" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cXI" = ( +/obj/structure/table, +/obj/item/kitchen/knife{ + pixel_x = 6 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Kitchen"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"cXJ" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cXM" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/lighter, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"cXN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/cargo/qm) +"cXQ" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/service/cafeteria) +"cXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"cXZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cYd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"cYh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"cYj" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cYl" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/executive, +/area/command) +"cYn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"cYq" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/maintenance/department/science) +"cYt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cYw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wood/fancy/green, +/obj/structure/statue/bronze/marx{ + pixel_y = 10 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"cYy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"cYB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cYI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"cYK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/hydroponics, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"cYL" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"cYP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east{ + layer = 3.5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cYX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"cYY" = ( +/turf/closed/wall, +/area/service/chapel) +"cYZ" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prisoner Education Chamber"; + req_access_txt = "3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/execution/education) +"cZb" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/mixing) +"cZl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/stairs, +/area/space) +"cZm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"cZt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cZv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison) +"cZy" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/exoscanner_control, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/storage) +"cZA" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/command/gateway) +"cZC" = ( +/turf/closed/wall/rust, +/area/maintenance/aft/upper) +"cZE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"cZG" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"cZI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Research Director's Study"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"cZJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"cZK" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"cZO" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"cZQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cZR" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cZS" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/execution) +"cZY" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cZZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/prison) +"daa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"dal" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dan" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"dar" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"das" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"dat" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"daw" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"daz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"daA" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"daB" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"daC" = ( +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"daD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"daF" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"daG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"daM" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"daR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"daT" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"daX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"daY" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/door/airlock{ + name = "Casino Bar" + }, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"dbd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dbi" = ( +/obj/structure/table, +/obj/structure/railing, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dbj" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dbk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/break_room) +"dbl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/open/floor/plasteel/dark, +/area/space) +"dbm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"dbq" = ( +/obj/item/trash/popcorn, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dbx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"dbB" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"dbC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dbG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"dbO" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dbR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"dbW" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"dbX" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"dce" = ( +/obj/machinery/atmospherics/miner/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"dcf" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dch" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/medical/virology) +"dct" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"dcu" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"dcJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmospherics Requests Console"; + pixel_x = 0; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Desk"; + dir = 6; + name = "atmospherics camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"dcK" = ( +/obj/item/food/spaghetti/lasagna, +/obj/item/paper/fluff/stations/centcom/disk_memo{ + info = "hey hun, i brought you lasagna <3 keep working hard, i love you!" + }, +/turf/open/floor/plating, +/area/hallway/primary/starboard) +"dcO" = ( +/obj/structure/cable, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"dcP" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel, +/area/science/explab) +"dcS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"dcW" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"ddb" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"ddg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ddi" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ddn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"dds" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"ddw" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ddJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ddN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"ddT" = ( +/obj/structure/bookcase, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"ddW" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ddX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"dea" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"dec" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + name = "engineering camera" + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"def" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/photocopier, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"deh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"del" = ( +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/port) +"deq" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/wood, +/area/service/chapel/office) +"dev" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"deI" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Cabin 4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"deR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/lighter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"deV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/security/prison) +"deZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"dfb" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dfe" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/tape, +/turf/open/floor/wood, +/area/security/courtroom) +"dfh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"dfj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dfl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"dfn" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"dfp" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"dfq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"dfr" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/button/door{ + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_y = -24; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"dft" = ( +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"dfu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"dfw" = ( +/turf/closed/wall, +/area/commons/fitness) +"dfB" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"dfH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dfL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dfN" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"dfQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dfT" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"dfZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"dgc" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dgd" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"dgh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dgm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/education) +"dgn" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"dgo" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/toy/crayon/spraycan, +/obj/item/toy/crayon/spraycan{ + pixel_x = -4 + }, +/obj/machinery/camera{ + c_tag = "Art Studio"; + dir = 4; + name = "library camera" + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"dgs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"dgt" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"dgC" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"dgD" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dgE" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dgH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"dgL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dgO" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dgQ" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/obj/item/pizzabox/mushroom{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"dgX" = ( +/obj/machinery/button/door/atmos_test_room_mainvent_1{ + pixel_y = -25 + }, +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"dgZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"dhf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dhi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/medical, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"dhj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/loom, +/obj/machinery/camera{ + c_tag = "Chapel Apiary"; + name = "chapel camera" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/chapel) +"dhl" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/structure/window, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Bar - Aft"; + dir = 5; + name = "service camera" + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/wood, +/area/service/bar/atrium) +"dhm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dhp" = ( +/turf/closed/wall, +/area/hallway/secondary/construction) +"dhs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dhv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/kitchen) +"dhx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/mop, +/obj/item/mop, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/storage/bag/trash, +/turf/open/floor/plasteel, +/area/security/prison) +"dhA" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dhB" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/cafeteria) +"dhD" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"dhF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dhJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dhK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dhM" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/muffin/berry{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/food/muffin/berry{ + pixel_y = 11 + }, +/obj/item/food/muffin/berry{ + pixel_x = 8; + pixel_y = 11 + }, +/obj/item/food/cake/bscc, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"dhU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dhY" = ( +/obj/structure/chair/old{ + dir = 4 + }, +/turf/open/floor/oldshuttle, +/area/maintenance/fore) +"dhZ" = ( +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "xeno_airlock_exterior"; + idInterior = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Console"; + pixel_y = 28; + req_access_txt = "55" + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dia" = ( +/turf/closed/wall, +/area/science/misc_lab/range) +"did" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/cmo) +"dif" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"dig" = ( +/obj/structure/chair, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dij" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"dim" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/stairs, +/area/maintenance/radshelter) +"din" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dio" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"diq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"dit" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"div" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"diw" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"dix" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/bot, +/obj/item/storage/bag/trash, +/turf/open/floor/plasteel, +/area/security/prison) +"diB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"diC" = ( +/turf/closed/wall, +/area/security/prison) +"diD" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"diF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"diG" = ( +/obj/structure/lattice/catwalk, +/obj/item/shard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"diH" = ( +/obj/structure/sign/directions/engineering{ + desc = "A handy sign praising the engineering department."; + icon_state = "safety"; + name = "engineering plaque" + }, +/turf/closed/wall, +/area/engineering/storage) +"diK" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/wood, +/area/security/courtroom) +"diL" = ( +/obj/machinery/camera{ + c_tag = "Command Hallway - Lower Port"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"diO" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"diS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"djb" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/virology) +"djt" = ( +/obj/structure/chair/wood{ + dir = 4; + name = "Judge's Associate" + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/wood, +/area/security/courtroom) +"djy" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/beebox, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/turf/open/floor/grass, +/area/service/chapel) +"djE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/holohoop{ + dir = 4; + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"djH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"djK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"djP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"djQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"djU" = ( +/turf/closed/wall/rust, +/area/maintenance/fore/upper) +"dkf" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bunker Airlock"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"dki" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/security/prison/safe) +"dkr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos/upper) +"dkx" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/security/brig) +"dkI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"dkL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/office) +"dkQ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"dkS" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/hallway/primary/central) +"dkX" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 4 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"dlb" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/medical/psychology) +"dlu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dlx" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"dlC" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dlH" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"dlO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"dlP" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"dlQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dlS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"dlW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"dlY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dlZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"dma" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dmc" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/science/research) +"dmg" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + id = "medcell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/security/checkpoint/medical) +"dmn" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"dmo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"dmr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dmK" = ( +/obj/structure/table/glass, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/chemistry, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"dmL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dmR" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"dmS" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"dmV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dnb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"dne" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"dnm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"dnx" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/port/fore) +"dnB" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -4; + pixel_y = -5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dnF" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/science/breakroom) +"dnI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/foamtank, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"dnM" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/newscaster/directional/west, +/obj/item/grenade/barrier{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/grenade/barrier{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dnP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"dnR" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"dnW" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dnZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dob" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = 32 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"dog" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/central) +"doh" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"doj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dom" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"dos" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/central) +"dot" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dow" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"doA" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"doE" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"doH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"doI" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east{ + pixel_y = 12 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"doK" = ( +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"doO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"doT" = ( +/obj/structure/bed/dogbed{ + name = "Walter's Dogbed" + }, +/mob/living/simple_animal/pet/dog/bullterrier{ + desc = "It's Walter, he bites criminals just as well as he bites toddlers"; + name = "Walter"; + real_name = "Walter" + }, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command) +"doV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"dpo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"dpq" = ( +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"dpC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"dpD" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_access_txt = "32;19"; + req_one_access_txt = null + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/science/xenobiology) +"dpE" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"dpF" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hos) +"dpH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"dpX" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dqa" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"dqh" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"dqj" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/rd{ + dir = 1; + pixel_y = -27 + }, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Office"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"dqo" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"dqv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"dqw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dqx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"dqy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/medical/medbay/lobby) +"dqz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"dqK" = ( +/turf/closed/wall/rust, +/area/maintenance/port/central) +"dqL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"dqP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dqW" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet/executive, +/area/command) +"dqY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dra" = ( +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drc" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"dre" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_y = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"drg" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/crate/goldcrate, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"drk" = ( +/obj/machinery/door/airlock/public/glass{ + name = "No O2 stop shop" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"drn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/closed/wall/r_wall, +/area/science/cytology) +"drp" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"drs" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dru" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"drC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"drF" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"drJ" = ( +/obj/effect/landmark/carpspawn, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"drR" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/department/medical/central) +"drU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"drW" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"drY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"drZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dsc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dsd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dsf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dsg" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"dsl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel) +"dss" = ( +/obj/structure/railing, +/turf/open/floor/glass, +/area/commons/dorms) +"dsu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup38"; + location = "hallup21" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dsx" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/telecomms/server/presets/security, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"dsB" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/cytology) +"dsJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dsN" = ( +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"dsR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dsT" = ( +/obj/effect/turf_decal/stripes/white/end{ + dir = 1 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"dsW" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"dsX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"dta" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/newscaster/directional/south, +/obj/machinery/camera{ + c_tag = "Crew Area - Cryopods"; + dir = 1; + name = "dormitories camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/commons/lounge) +"dtd" = ( +/obj/structure/ladder, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dti" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 5"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dtk" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"dtl" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"dtp" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"dts" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dtx" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dtA" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dtF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dtH" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Soothing Nature Exhibit"; + req_access_txt = "70" + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/medical/psychology) +"dtI" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"dtJ" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"dtP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"dtR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dtZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"dub" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/science/explab) +"due" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"duh" = ( +/obj/structure/rack, +/obj/item/card/id/advanced/prisoner, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"dui" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dum" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"duo" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"dup" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"dur" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"duu" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"duw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"dux" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"duz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"duD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"duE" = ( +/obj/item/rack_parts, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"duF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"duJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"duK" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"duM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"duX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dvd" = ( +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/server) +"dvg" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"dvh" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dvk" = ( +/obj/structure/table{ + name = "Blacksmith" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron/twenty, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"dvo" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/storage/box/emps{ + pixel_y = 11 + }, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/ionrifle, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dvt" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"dvw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den/secondary) +"dvy" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/item/shard, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dvz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright, +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/item/folder/yellow, +/obj/item/analyzer{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"dvD" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/item/circuitboard/computer/secure_data, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dvE" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/service/theater) +"dvP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"dvQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/service/chapel) +"dvU" = ( +/obj/item/clothing/suit/jacket/leather{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/suit/jacket/puffer{ + pixel_y = 8 + }, +/obj/item/clothing/suit/jacket/letterman_nanotrasen{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/clothing/suit/jacket/miljacket{ + pixel_y = -8 + }, +/obj/item/clothing/suit/jacket/letterman_red{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"dvX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"dvY" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"dwa" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dwe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dwo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"dwq" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dws" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dww" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Upper Starboard"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dwz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dwC" = ( +/obj/structure/table, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dwG" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwH" = ( +/obj/structure/table/reinforced, +/obj/item/food/meat/slab/human{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/meat/slab/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"dwI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"dwK" = ( +/obj/machinery/requests_console/directional/south{ + department = "Law Office"; + name = "Law Office Requests Console" + }, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"dwV" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dwW" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dwZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"dxf" = ( +/obj/structure/table/optable, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"dxi" = ( +/obj/machinery/door/airlock/security{ + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/security/checkpoint/science/research) +"dxo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"dxt" = ( +/turf/open/space/openspace, +/area/maintenance/department/engine) +"dxz" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/toy/figure/hos{ + pixel_x = 14; + pixel_y = 15 + }, +/obj/item/toy/figure/secofficer{ + pixel_x = 5; + pixel_y = 15 + }, +/obj/item/toy/figure/wizard{ + pixel_x = 14; + pixel_y = 1 + }, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"dxA" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/palebush, +/obj/structure/window, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/grass, +/area/service/chapel) +"dxB" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dxG" = ( +/obj/structure/sign/directions/supply{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"dxH" = ( +/obj/structure/table, +/obj/item/spear, +/obj/item/hatchet/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dxO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dxS" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dxT" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dxZ" = ( +/obj/item/stock_parts/scanning_module{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/item/stock_parts/micro_laser{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dyb" = ( +/obj/structure/table/wood/fancy/purple, +/obj/item/pai_card, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"dyd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dye" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dyf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dyg" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"dyh" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"dys" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"dyv" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dyx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Aft CEntral"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dyA" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"dyE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"dyG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"dyO" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dyX" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dzb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dzf" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"dzj" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"dzm" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical) +"dzo" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"dzs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + name = "Ports to Distro" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"dzw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dzy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"dzz" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light_switch/directional/west, +/obj/machinery/newscaster/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"dzC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Xenobiology Junction"; + sortType = 28 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dzF" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"dzG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"dzN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"dzP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science) +"dzQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"dzR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"dzS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dzW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dAg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"dAh" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Cytology Office"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"dAv" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"dAB" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dAG" = ( +/obj/structure/falsewall/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva/upper) +"dAJ" = ( +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/port) +"dAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/dead, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"dAN" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/workout) +"dAO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dAT" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/binoculars, +/obj/item/megaphone, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"dAU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"dAV" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"dAW" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"dBb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dBf" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"dBg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"dBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"dBq" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"dBr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dBs" = ( +/obj/machinery/camera{ + c_tag = "Security - Shuttle Bay West"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"dBu" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"dBw" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes, +/obj/item/rpd_upgrade/unwrench, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"dBz" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"dBA" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/window, +/obj/structure/rack, +/obj/item/clothing/shoes/sneakers/black{ + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/clothing/shoes/sneakers/white{ + pixel_x = 4; + pixel_y = -7 + }, +/obj/item/clothing/shoes/sneakers/brown{ + pixel_x = -6; + pixel_y = -1 + }, +/obj/item/clothing/shoes/sneakers/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/clothing/shoes/sneakers/blue{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/clothing/shoes/sneakers/green{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"dBB" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"dBJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dBK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Kitchen Junction"; + sortType = 20 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dBN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"dBR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"dBW" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"dBX" = ( +/obj/structure/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"dCa" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dCf" = ( +/obj/item/crowbar, +/turf/open/floor/engine, +/area/engineering/supermatter) +"dCg" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"dCi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dCq" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"dCr" = ( +/obj/machinery/gibber, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"dCy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Casino" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"dCz" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"dCB" = ( +/turf/open/floor/plasteel/stairs/left, +/area/commons/dorms) +"dCE" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"dCI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dCW" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dDd" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dDe" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"dDg" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Lavaland Shuttle Dock" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dDk" = ( +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"dDn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dDp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"dDr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dDt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"dDx" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"dDy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"dDz" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dDI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dDJ" = ( +/obj/structure/sign/departments/science/alt, +/turf/closed/wall, +/area/science/explab) +"dDL" = ( +/obj/structure/table, +/obj/item/food/grown/nettle{ + pixel_y = 11 + }, +/obj/item/food/grown/nettle{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/seeds/amanita, +/obj/item/seeds/nettle, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dDM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dDQ" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation - Lower"; + dir = 4; + name = "recreation camera" + }, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/assistant, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"dDS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/engineering/atmos) +"dDT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/dorms) +"dDW" = ( +/obj/effect/turf_decal/trimline/yellow/filled/end{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dDX" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dDY" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"dEd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"dEe" = ( +/obj/item/toy/plush/snakeplushie{ + name = "Quetzie" + }, +/obj/item/kirbyplants/random, +/obj/structure/noticeboard/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"dEh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/medical{ + name = "Ward controll room"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/psychology) +"dEi" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"dEo" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"dEs" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"dEv" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"dEC" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dED" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dEE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Port Engineering Hub Deck 3"; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dEF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dEH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dEN" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/upper) +"dEP" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dEQ" = ( +/obj/machinery/door/airlock/freezer, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"dEV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"dFa" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dFe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dFh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/tank/internals{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/tank/internals{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/tank/internals, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"dFl" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dFs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/cargo/qm) +"dFt" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Center"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dFw" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dFz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dFH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science) +"dFI" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/airalarm/directional/north, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"dFK" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"dFQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"dFS" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"dFW" = ( +/obj/structure/plasticflaps, +/obj/effect/turf_decal/delivery, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Atmospherics" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"dFX" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 4 + }, +/area/engineering/atmospherics_engine) +"dGd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"dGj" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to Mix" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dGm" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"dGo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"dGp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/central) +"dGr" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"dGu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"dGv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Hydroponics Lower"; + dir = 8; + name = "service camera" + }, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dGx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dGC" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dGD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"dGK" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"dGL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"dGN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"dGS" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"dGT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore) +"dGV" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"dGZ" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/electronics/apc, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"dHa" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dHb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dHc" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"dHi" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dHk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"dHv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"dHw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"dHz" = ( +/turf/open/floor/plasteel, +/area/security/execution) +"dHC" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"dHH" = ( +/obj/structure/sign/poster/party_game{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"dHL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"dHN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dHP" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/security/armory) +"dHW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dHZ" = ( +/turf/closed/wall, +/area/maintenance/department/science/xenobiology) +"dIe" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dIg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil/streak, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"dIh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dIo" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/engineering/atmospherics_engine) +"dIp" = ( +/obj/effect/turf_decal/trimline/blue/filled/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dIs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"dIC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/secure/weapon{ + req_one_access_txt = "58;20" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"dII" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dIJ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/grass, +/area/security/checkpoint/escape) +"dIN" = ( +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dIV" = ( +/obj/structure/industrial_lift, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/openspace, +/area/cargo/sorting) +"dJf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dJi" = ( +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"dJx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Theatre" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood/parquet, +/area/service/theater) +"dJz" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/rock/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central) +"dJA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"dJE" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"dJF" = ( +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dJO" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Chapel - Starboard"; + dir = 8; + name = "chapel camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"dJT" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dJY" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/engineering/engine_smes) +"dKc" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/starboard) +"dKh" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dKk" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"dKl" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dKq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs/medium, +/area/science/research) +"dKt" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/medbay/lobby) +"dKx" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dKE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"dKJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"dKN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dKP" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"dKR" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/secondary/command) +"dKU" = ( +/obj/structure/chair, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/chapel) +"dKW" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/box; + width = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"dKY" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/mug/coco{ + desc = "Still hot!"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"dKZ" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dLa" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/fore) +"dLc" = ( +/turf/closed/wall/r_wall, +/area/security) +"dLd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"dLh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dLm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"dLr" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dLt" = ( +/obj/structure/table, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet, +/area/security/courtroom) +"dLv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"dLB" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"dLD" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"dLK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dLO" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Command - Blueshield's Gear Room"; + dir = 1; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"dLS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security) +"dLU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dLW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"dLX" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"dLY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/upper) +"dLZ" = ( +/turf/closed/wall/r_wall, +/area/security/prison/garden) +"dMe" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dMk" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/computer/rdconsole{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/noticeboard/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"dMn" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/structure/flora/bush, +/turf/open/floor/grass, +/area/service/chapel) +"dMs" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"dMw" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar/atrium) +"dMz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Science - Center Fore Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dMB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dMD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"dMG" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - Reactor Pit Port"; + dir = 9; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"dMH" = ( +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/commons/fitness/recreation) +"dMJ" = ( +/turf/open/floor/plasteel/white, +/area/science/explab) +"dMM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/exploration_mission) +"dMP" = ( +/obj/structure/flora/tree/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central) +"dMS" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dMY" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/office) +"dNb" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/command/gateway) +"dNg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dNj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno9"; + name = "Xenobio Penns Containment" + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno9"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dNk" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"dNo" = ( +/obj/structure/rack, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tank/internals/plasmaman/belt{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"dNq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dNr" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"dNt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"dNu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dNy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dND" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"dNH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/maintenance/solars/starboard/fore) +"dNJ" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"dNK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dNP" = ( +/turf/closed/wall, +/area/security/prison/garden) +"dNQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dNU" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"dNV" = ( +/obj/machinery/vending/autodrobe/all_access, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dNX" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dNY" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"dOc" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dOd" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"dOe" = ( +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dOh" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dOm" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/chapel) +"dOo" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"dOp" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dOq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"dOy" = ( +/obj/structure/sign/directions/vault{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/upload{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters) +"dOB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"dOC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dOK" = ( +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dOM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_y = 5 + }, +/obj/item/stamp, +/obj/item/reagent_containers/spray/pepper{ + pixel_x = 14 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"dON" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dOO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"dOP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell4"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"dOZ" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dPb" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port) +"dPq" = ( +/obj/effect/decal/cleanable/garbage, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dPw" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"dPz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"dPB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"dPH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/starboard/aft) +"dPI" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dPV" = ( +/obj/machinery/computer/teleporter, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"dQa" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/food/mint, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"dQf" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dQk" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"dQm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dQn" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/paper/fluff/gateway{ + pixel_x = 9 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 5 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Captain)"; + pixel_y = 20 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"dQp" = ( +/obj/machinery/door/airlock/research{ + name = "Telescience Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"dQt" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"dQv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dQI" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dQK" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"dQL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dQM" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dQN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"dQO" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"dQP" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"dQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"dQY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"dRb" = ( +/obj/machinery/door/airlock/security{ + glass = 1; + name = "Garden" + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"dRd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"dRe" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dRf" = ( +/turf/open/floor/glass/reinforced, +/area/security/prison) +"dRm" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dRo" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"dRs" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"dRt" = ( +/turf/open/floor/engine, +/area/engineering/supermatter) +"dRD" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"dRL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit/departure_lounge) +"dRM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dRN" = ( +/turf/closed/wall, +/area/security/prison/rec) +"dRR" = ( +/obj/machinery/door/airlock/silver{ + name = "Locker Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"dRS" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"dRT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"dSb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dSc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"dSd" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dSi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Port Aft"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dSr" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + freq = 1400; + location = "Disposals" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dSx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"dSD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"dSE" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dSJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"dSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dSQ" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dSS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science) +"dSU" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"dSW" = ( +/obj/structure/chair, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"dTc" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"dTd" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"dTf" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/chem_heater, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"dTi" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dTl" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"dTp" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dTq" = ( +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"dTt" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"dTx" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/blue{ + desc = "An old pair of nitrile gloves, with no sterile properties."; + name = "old nitrile gloves" + }, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dTy" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dTA" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"dTB" = ( +/turf/open/floor/wood, +/area/security/courtroom) +"dTD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Chemistry Junction"; + sortType = 11 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dTE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"dTJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dTL" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"dTO" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space) +"dTQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dTR" = ( +/obj/machinery/smartfridge/petri/preloaded, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"dTT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/execution) +"dUb" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/engineering/main) +"dUc" = ( +/turf/open/floor/plating, +/area/maintenance/department/eva) +"dUi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/lockers) +"dUk" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/fore) +"dUm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"dUo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"dUI" = ( +/obj/structure/closet/crate/large, +/obj/item/shield/riot/buckler, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"dUJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"dUK" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "Storefront"; + name = "Store Counter" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"dUL" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dUO" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"dVc" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dVf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dVj" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/central) +"dVk" = ( +/obj/structure/table, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/kitchen/knife/butcher, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/kitchen/knife{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dVo" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "cargounload" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dVp" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"dVq" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"dVt" = ( +/obj/structure/table, +/obj/item/pai_card{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = -7 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"dVw" = ( +/obj/machinery/button/door{ + id = "Sbay1"; + name = "Shuttle Bay 1"; + pixel_y = -24 + }, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"dVA" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"dVB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dVF" = ( +/turf/closed/wall/r_wall, +/area/engineering/lobby) +"dVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"dVR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dVT" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dVY" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"dVZ" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dWh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dWk" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_y = 5 + }, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"dWl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Interrogation Monitoring"; + dir = 5 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/execution) +"dWp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"dWq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"dWr" = ( +/obj/structure/chair/wood{ + dir = 8; + name = "Prosecution" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"dWC" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/mineral/wood, +/area/service/library/artgallery) +"dWK" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"dXd" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"dXo" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"dXp" = ( +/obj/structure/table, +/obj/item/pipe_dispenser, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"dXq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dXs" = ( +/obj/machinery/camera{ + c_tag = "Science - Telescience Test Chamber"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"dXy" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"dXz" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"dXE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"dXF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/button/door{ + id = "Sbay1"; + name = "Shuttle Bay 1"; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig/upper) +"dXG" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"dXH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "HoPdoor"; + name = "Head Of Personel's Quarters"; + req_access_txt = "57" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"dXR" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dXY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dXZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup18"; + location = "hallup17" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"dYa" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/central) +"dYe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"dYm" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/space/openspace, +/area/engineering/engine_room/external) +"dYu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/structure/window, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"dYx" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"dYy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"dYz" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Captain's Suite"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"dYC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dYE" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/assembly/igniter{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dYF" = ( +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"dYH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "armoury desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "armoury desk"; + req_access_txt = "1" + }, +/obj/machinery/recharger{ + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dYI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dYM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"dYO" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/science) +"dYR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"dYX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"dYY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"dZc" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/surgery) +"dZd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dZe" = ( +/obj/machinery/button/door/directional/south{ + id = "gatewayshutters"; + name = "Gateway Shutters" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"dZh" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dZi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/seeds/lime{ + pixel_x = 6 + }, +/obj/item/seeds/grape{ + pixel_x = -6 + }, +/obj/item/seeds/watermelon, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/banana, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"dZl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"dZo" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/cafeteria) +"dZt" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"dZv" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"dZw" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"dZy" = ( +/turf/open/floor/plasteel, +/area/cargo/office) +"dZz" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/dorms) +"dZB" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/service/library) +"dZD" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = 6 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"dZH" = ( +/turf/open/space/basic, +/area/maintenance/aft) +"dZJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"dZK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hop) +"dZM" = ( +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"dZQ" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera{ + c_tag = "Security - Prisoner Labor Transfer Dock"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"dZR" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/hud/security/sunglasses/gars, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dZT" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"dZU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dZX" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"eaa" = ( +/obj/structure/window/reinforced, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"eab" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ead" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Port Bow"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"eaj" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "Toilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"eam" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/lobby) +"eaA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eaP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall, +/area/security/checkpoint) +"eaR" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/rock/pile{ + pixel_x = 7; + pixel_y = -16 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"eaX" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/restraints/handcuffs, +/obj/item/clothing/mask/muzzle, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"ebb" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/toy/cattoy, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ebo" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"ebv" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"eby" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"ebz" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ebA" = ( +/obj/structure/table, +/obj/item/food/grilled_cheese_sandwich, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ebC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ebD" = ( +/obj/structure/shuttle/engine/large, +/turf/open/space/openspace, +/area/maintenance/department/science) +"ebE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ebF" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ebI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/orange/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"ebP" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) +"ebS" = ( +/obj/item/trash/can/food/peaches/maint, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ebT" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"eca" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"ecd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/engineering/gravity_generator; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"ecg" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eci" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ecn" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/wood, +/area/cargo/qm) +"eco" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/shuttle_flight/labor{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ecr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ecu" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Atmospherics Tank"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Shutters" + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/xenobiology) +"ecv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison/upper) +"ecB" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/railing, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ecE" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ecF" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ecJ" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"ecT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"edb" = ( +/obj/machinery/door/window, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore) +"edc" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/tcommsat/computer) +"edf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/stack/spacecash/c10, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"edl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"edt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"edu" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"edO" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"edQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"edT" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eeb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eeh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eej" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"eep" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port) +"ees" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"eey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"eez" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"eeB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"eeG" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/md, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -16 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"eeJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eeO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eeP" = ( +/obj/structure/table/glass, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"eeQ" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eeR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"eeT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eeX" = ( +/turf/open/floor/plating, +/area/security/range) +"efc" = ( +/obj/machinery/door/airlock/external{ + name = "Structural Support Section"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science) +"efg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"efl" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"efs" = ( +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Chapel - Entrance"; + name = "chapel camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"efA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"efC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"efJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"efK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"efN" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/maintenance/port) +"efW" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"egf" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"egk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ego" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"egr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"egt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/fore/upper) +"egx" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"egy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/smes{ + input_level = 0; + output_level = 10000 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"egA" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"egB" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"egF" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"egH" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar/atrium) +"egI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"egJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"egN" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security) +"egO" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"egQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"egU" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Outpost Entrance"; + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"egZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ehg" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security) +"ehi" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/quantumpad, +/obj/item/circuitboard/machine/quantumpad, +/obj/item/circuitboard/computer/teleporter, +/obj/item/circuitboard/machine/teleporter_hub, +/obj/item/circuitboard/machine/teleporter_station, +/turf/open/floor/plasteel/dark/side, +/area/science/misc_lab) +"ehm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"ehn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ehq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"ehy" = ( +/obj/structure/shuttle/engine/large, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"ehA" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"ehD" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"ehL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"ehR" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/plumbing, +/obj/item/construction/plumbing, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"ehT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"ehW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ehY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eic" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/hallway/secondary/exit) +"eid" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"eie" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"eif" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"eim" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/science/cytology) +"eiu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"eiA" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"eiC" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/construction/engineering) +"eiE" = ( +/obj/structure/table/glass, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"eiH" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "Luggagebelt" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"eiI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eiK" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"eiO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"eiU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"eiV" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ejb" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"ejc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Laudry Room"; + dir = 1; + name = "service camera" + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/service) +"ejd" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eje" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster/directional/south, +/obj/machinery/camera{ + c_tag = "Vacant Commissary"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"ejl" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = -3 + }, +/obj/item/lighter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"ejr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"ejs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "25" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"ejz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/ce) +"ejE" = ( +/obj/structure/table, +/obj/item/storage/photo_album, +/turf/open/floor/glass, +/area/commons/dorms) +"ejG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"ejP" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"ejQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ejT" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ejW" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/captain/skirt, +/obj/item/clothing/under/rank/captain, +/obj/item/clothing/under/rank/captain/suit, +/obj/item/clothing/under/rank/captain/suit/skirt, +/obj/item/clothing/under/rank/captain/parade, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/obj/item/clothing/neck/cloak/cap, +/obj/item/clothing/head/caphat/beret, +/obj/item/clothing/head/caphat/parade, +/obj/item/clothing/head/caphat, +/obj/item/clothing/gloves/color/captain, +/obj/item/clothing/suit/captunic, +/obj/structure/window{ + dir = 8 + }, +/obj/item/clothing/under/rank/captain/skirt, +/obj/item/clothing/under/rank/captain, +/obj/item/clothing/under/rank/captain/suit, +/obj/item/clothing/under/rank/captain/suit/skirt, +/obj/item/clothing/under/rank/captain/parade, +/obj/item/clothing/suit/hooded/wintercoat/captain, +/obj/item/clothing/neck/cloak/cap, +/obj/item/clothing/head/caphat/beret, +/obj/item/clothing/head/caphat/parade, +/obj/item/clothing/head/caphat, +/obj/item/clothing/gloves/color/captain, +/obj/item/clothing/suit/captunic, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"ejZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Library Junction"; + sortType = 16 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eka" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/recharger{ + pixel_x = -16 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ekc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"ekf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"eki" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ekl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/bar/atrium) +"eko" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/cargo/sorting) +"ekr" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"ekt" = ( +/obj/structure/table, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security) +"eku" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science) +"ekw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ekC" = ( +/obj/machinery/door/window/westleft{ + name = "Security Mech Recharge Dock"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"ekL" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"ekM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ekN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"ekP" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/service/hydroponics) +"ekR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eld" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"eli" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"ell" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command/gateway) +"elq" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"elr" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/service/chapel/office) +"els" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/fore) +"elt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"elu" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"elw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"elA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"elB" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"elD" = ( +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"elG" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness) +"elI" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"elZ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"emd" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library) +"emg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"emh" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"emj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/syringes, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"emn" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engineering/lobby) +"emu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"emw" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/command/gateway) +"emx" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"emC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"emH" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"emI" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/hallway/primary/port) +"emL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Drone Launchsite" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/cargo/storage) +"emM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"emT" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security) +"emX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"ene" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/petridish{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/petridish, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/construction/plumbing/research, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"eng" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"enj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/medical/virology) +"enq" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ent" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet, +/area/service/chapel/main) +"enx" = ( +/turf/closed/wall/rust, +/area/maintenance/department/science) +"eny" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"enJ" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/science/mixing) +"enM" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"enW" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eod" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/storage/box/evidence{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/storage/box/prisoner{ + pixel_x = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"eog" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"eom" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/white/end, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"eov" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"eoC" = ( +/obj/structure/table, +/obj/item/surgical_drapes{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/circular_saw{ + pixel_y = 12 + }, +/obj/item/healthanalyzer{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/scalpel{ + pixel_y = 19 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"eoN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"eoP" = ( +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"eoR" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"eoU" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/service/cafeteria) +"eoV" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Relay"; + req_access_txt = "61" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"eoX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/bridge) +"eoY" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/crowbar/red, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/item/gps/engineering, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/main) +"epd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"eph" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"epi" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"epj" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/science) +"epk" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"epn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"epo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/aft/upper) +"epr" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"epu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"epv" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"epx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/storage) +"epz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"epN" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security) +"epS" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"epV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"epW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/wirecutters, +/turf/open/space/basic, +/area/space/nearstation) +"eqb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eqe" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"eqg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"eqq" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"eqs" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eqw" = ( +/obj/structure/window, +/obj/machinery/modular_computer/console/preset/cargochat/service{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"eqz" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"eqD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"eqP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eqT" = ( +/obj/effect/decal/cleanable/oil/slippery, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"era" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"erh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"erj" = ( +/obj/machinery/telecomms/receiver/preset_right, +/obj/machinery/camera{ + c_tag = "Engineering - Tcomms Upper"; + name = "engineering camera" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"erq" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"ers" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 12 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/obj/structure/cable, +/obj/machinery/button/curtain{ + id = "HoPcurtains"; + pixel_x = 9; + pixel_y = -24 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"erv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/dorms) +"erI" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"erK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A" + }, +/obj/structure/table/reinforced, +/obj/item/taperecorder, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"erM" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"erN" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/dark/visible, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"erO" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"erW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/science/research) +"erX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"esd" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ese" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"esm" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eso" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"esq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"esx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"esy" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"esF" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"esJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"esL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"esP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"esU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eta" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/range) +"ety" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"etA" = ( +/turf/open/openspace, +/area/service/abandoned_gambling_den/secondary) +"etC" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"etF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"etL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"etN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"etP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"etR" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"etU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"etY" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"eua" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"eud" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eug" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"euh" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"eui" = ( +/obj/structure/mineral_door/wood{ + name = "Forgotten Bookstore" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"eum" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"eup" = ( +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"eut" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock{ + name = "Wrestling Ring entrance" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"euv" = ( +/turf/closed/wall, +/area/medical/break_room) +"euy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"euA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"euB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"euF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"euO" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"euV" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/reagent_containers/food/drinks/trophy/bronze_cup{ + name = "3rd place prize for captain ''measure up'' contest"; + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"evh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/plastic, +/obj/effect/landmark/start/quartermaster, +/turf/open/openspace, +/area/cargo/qm) +"evr" = ( +/obj/structure/closet/crate/large, +/obj/item/mecha_parts/part/ripley_right_leg, +/obj/item/mecha_parts/part/ripley_left_leg, +/turf/open/floor/plating, +/area/maintenance/port) +"evs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"evx" = ( +/obj/machinery/button/door/directional/south{ + id = "Storefront"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"evH" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"evJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Port" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"evQ" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"evR" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ewm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ews" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"ewu" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"ewx" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"ewz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"ewA" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecoms cooling"; + req_access_txt = "61" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"ewC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ewE" = ( +/obj/machinery/biogenerator, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"ewL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"ewM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"ewR" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/hallway/primary/central) +"ewS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"ewU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"ewX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"exb" = ( +/turf/open/floor/engine, +/area/science/mixing/chamber) +"exv" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 10; + name = "blue line" + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"exB" = ( +/obj/item/candle, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"exE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen/red, +/obj/item/stamp/hos, +/obj/machinery/keycard_auth{ + pixel_x = 15 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"exF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"exG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"exJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"exM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"exN" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/stock_parts/cell{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"exR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"exU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"exW" = ( +/obj/structure/cable, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"exZ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"eyb" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"eyg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"eyi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"eym" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"eyp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"eyx" = ( +/obj/structure/table, +/obj/item/kitchen/knife/combat/survival, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eyB" = ( +/obj/structure/bookcase/random/religion{ + layer = 3.3 + }, +/turf/closed/indestructible/wood, +/area/maintenance/starboard/fore) +"eyH" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/computer/secure_data, +/obj/item/circuitboard/computer/operating, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eyO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"eyQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"eyV" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ezd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ezk" = ( +/obj/structure/fluff/tram_rail/anchor, +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ezm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"ezo" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"ezu" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ezv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ezA" = ( +/obj/machinery/photocopier, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"ezC" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"ezK" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/mineral/sandstone/thirty, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"ezM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/storage/bag/plants/portaseeder, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"ezN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/cryo) +"ezO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"ezQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ezR" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"eAf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eAh" = ( +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"eAm" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"eAr" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eAs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "BarBlastDoor"; + name = "bar blast door" + }, +/turf/open/floor/plating, +/area/service/bar) +"eAA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eAI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eAJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/lobby) +"eAK" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/circuit, +/area/command/gateway) +"eAM" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"eAP" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"eAY" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"eBg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eBj" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eBq" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"eBr" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eBy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"eBB" = ( +/obj/structure/chair/sofa/right{ + pixel_y = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"eBE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/green/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"eBG" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/granter/action/spell/smoke/lesser, +/obj/item/nullrod, +/obj/item/organ/heart, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/soulstone/anybody/chaplain, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"eCb" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/item/hfr_box/core, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"eCe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"eCi" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/bot, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"eCm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eCo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/cargo/storage) +"eCs" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Bar - Fore 2"; + dir = 8; + name = "service camera" + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/service/bar/atrium) +"eCu" = ( +/obj/structure/closet/crate/large, +/obj/item/mecha_parts/part/ripley_right_arm, +/obj/item/mecha_parts/part/ripley_left_arm, +/turf/open/floor/plating, +/area/maintenance/port) +"eCz" = ( +/obj/structure/mopbucket, +/turf/open/floor/plating, +/area/maintenance/department/science) +"eCD" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eCG" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eCJ" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/cmo) +"eCK" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eCL" = ( +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eCT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eCW" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"eCX" = ( +/turf/closed/wall, +/area/service/cafeteria) +"eDa" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/white, +/area/science) +"eDc" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eDf" = ( +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eDg" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eDq" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = -4 + }, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wirecutters, +/obj/item/shovel/spade, +/obj/item/shovel/spade, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/item/storage/bag/plants, +/obj/item/storage/bag/plants, +/obj/item/secateurs, +/obj/item/secateurs, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"eDu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eDB" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"eDH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"eDJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eDK" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"eDL" = ( +/obj/structure/rack, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"eDM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eDN" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eDO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"eDP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"eDQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eDU" = ( +/turf/closed/wall/r_wall, +/area/science/robotics) +"eDX" = ( +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"eDZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eEd" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eEf" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"eEh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall16"; + location = "hall15" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eEs" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/banana, +/obj/item/seeds/carrot, +/obj/item/seeds/carrot/parsnip, +/obj/item/seeds/chili, +/obj/item/seeds/lemon, +/obj/item/seeds/lime, +/obj/item/seeds/orange, +/obj/item/seeds/pineapple, +/obj/item/seeds/watermelon, +/obj/item/seeds/wheat/oat, +/obj/item/seeds/wheat/rice, +/obj/item/seeds/eggplant, +/obj/item/seeds/berry, +/obj/item/seeds/cherry/blue, +/obj/item/seeds/cherry, +/obj/item/seeds/grape, +/obj/item/seeds/grape/green, +/obj/item/seeds/grass, +/obj/item/seeds/pumpkin, +/obj/item/seeds/tomato, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"eEz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"eEB" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eED" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"eEL" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway - Central"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/starboard) +"eER" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"eET" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"eEV" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eEX" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/south, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eFc" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lamp/green{ + pixel_y = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/commons/dorms) +"eFe" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Port"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eFg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/assembly/signaler{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/assembly/signaler{ + pixel_y = 9 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/assembly/signaler{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"eFl" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"eFp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"eFx" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"eFy" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eFC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"eFD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"eFM" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eFN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"eFQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"eGn" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eGo" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/central) +"eGw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eGG" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"eGI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eGL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eGQ" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"eGT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/main) +"eGV" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"eHe" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"eHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"eHi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"eHk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eHl" = ( +/obj/machinery/gibber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"eHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"eHo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"eHu" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"eHE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eHJ" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"eHM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/machinery/button/door{ + id = "custodialshutters"; + name = "Custodial Shutters"; + pixel_x = 26; + req_access_txt = "26" + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"eHT" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eHU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eHV" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"eHX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"eIb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry2"; + name = "Secure Acces Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"eId" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"eIe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"eIf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eIs" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/general, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eIt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eIw" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eIx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eIB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/aft/upper) +"eID" = ( +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"eIG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Public Pool" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eIH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eIK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eIL" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/science/research) +"eIQ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"eIS" = ( +/obj/structure/fluff/divine/convertaltar, +/obj/item/organ/heart, +/turf/open/floor/plating, +/area/maintenance/port) +"eIV" = ( +/obj/machinery/button/door/directional/east{ + id = "hosroom"; + name = "Privacy Control"; + req_access_txt = "58" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"eIZ" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"eJb" = ( +/obj/structure/table, +/obj/item/grown/bananapeel, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"eJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eJj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eJk" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"eJC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes, +/obj/item/storage/box/lights/mixed, +/obj/item/construction/rld, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"eJD" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"eJG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eJH" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"eJK" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"eJO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"eJP" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eJT" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"eJW" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/keycard_auth/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"eJZ" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"eKf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"eKg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Port Central Right"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eKm" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eKp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eKq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/upper) +"eKw" = ( +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"eKA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"eKC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"eKE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"eKI" = ( +/obj/structure/chair/comfy/brown{ + dir = 4; + name = "Judge" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/item/clothing/suit/judgerobe, +/obj/item/clothing/head/powdered_wig{ + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"eKU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve/digital, +/turf/open/floor/engine, +/area/engineering/supermatter) +"eKV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eKW" = ( +/turf/open/space/openspace, +/area/space/nearstation) +"eLa" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/dark/visible{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eLf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/west, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eLm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/hot_potato/harmless/toy, +/turf/open/floor/plating, +/area/maintenance/port) +"eLn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"eLo" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"eLy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"eLB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"eLC" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"eLF" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eLJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"eLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cheesie, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"eLN" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eLO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eLP" = ( +/obj/item/chair/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"eLS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eLV" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eMa" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/brig{ + id = "engcell"; + name = "Engineering Cell Locker" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"eMb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "O2 to Pure" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"eMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"eMj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"eMk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/manipulator/nano, +/obj/item/stock_parts/manipulator/nano, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eMp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eMA" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"eMB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"eMJ" = ( +/turf/closed/wall, +/area/command/heads_quarters/rd) +"eMK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"eMU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/bluespace_beacon, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"eMV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eNc" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eNi" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet, +/area/service/chapel) +"eNs" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"eNy" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eND" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"eNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"eNL" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"eNQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"eNV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/chair/wood, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"eOa" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/medical/virology) +"eOb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/item/coin/antagtoken, +/turf/open/floor/carpet/executive, +/area/command) +"eOg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/centcom/officer, +/obj/item/clothing/under/rank/centcom/officer_skirt, +/obj/item/clothing/under/rank/centcom/intern, +/obj/item/clothing/under/rank/centcom/commander, +/obj/item/clothing/under/rank/centcom/centcom_skirt, +/obj/item/clothing/head/centhat, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/beret/centcom_formal, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"eOi" = ( +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/lobby) +"eOm" = ( +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet, +/area/service/chapel) +"eOn" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/medical/virology) +"eOo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness) +"eOq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"eOz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore) +"eOD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eOH" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eOJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"eOT" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/lobby) +"eOV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ePb" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/library) +"ePk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ePn" = ( +/turf/open/floor/carpet, +/area/security/courtroom) +"ePo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white, +/obj/machinery/button/elevator/directional/west{ + id = "publicElevator2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ePs" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/aicard, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ePB" = ( +/obj/structure/fence/door/opened, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ePF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"ePG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ePI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"ePJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"ePL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"ePP" = ( +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ePR" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"ePW" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/central) +"ePX" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"eQh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"eQk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eQl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"eQo" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"eQs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"eQy" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"eQB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"eQD" = ( +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"eQG" = ( +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eQH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eQL" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"eQV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"eRb" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"eRe" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/green, +/area/medical/virology) +"eRf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eRg" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/security/brig/upper) +"eRh" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eRk" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 1" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"eRo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"eRq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eRs" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Test Chambers"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"eRt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"eRv" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/art) +"eRx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eRA" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"eRE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/vending/boozeomat, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/service/bar) +"eRG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"eRP" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"eRQ" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eRT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"eRV" = ( +/obj/structure/table/rolling, +/obj/item/wrench{ + pixel_y = 3 + }, +/obj/item/crowbar, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"eSg" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eSi" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Quartermaster's Desk"; + departmentType = 2; + name = "Quartermaster's Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"eSk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"eSn" = ( +/obj/structure/table, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eSp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/cargo/qm) +"eSx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eSA" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/key/security, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"eSB" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eSC" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"eSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison) +"eSQ" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/service/hydroponics) +"eSV" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"eTc" = ( +/obj/structure/table, +/obj/machinery/computer/bookmanagement{ + pixel_y = 8 + }, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain"; + pixel_x = -24 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/security/prison/rec) +"eTe" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eTr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"eTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eTH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"eTL" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"eTQ" = ( +/obj/structure/moisture_trap, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"eTS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eTU" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library) +"eUa" = ( +/obj/structure/bookcase/random/fiction, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Upper Office"; + name = "command camera" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"eUb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"eUd" = ( +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"eUe" = ( +/obj/machinery/door/airlock/silver{ + name = "Kitchen" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"eUf" = ( +/obj/structure/sign/poster/contraband/ambrosia_vulgaris, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"eUh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Overgrown Gardain" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"eUi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire{ + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/brute{ + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_y = -6 + }, +/obj/item/storage/firstaid/medical{ + pixel_y = -9 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"eUj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eUk" = ( +/obj/item/chair/stool/bar, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eUp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eUt" = ( +/obj/machinery/door/window/brigdoor/northright{ + name = "Shuttle controll consoles"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"eUx" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"eUz" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"eUB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"eUC" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"eUF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"eUI" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/upper) +"eUL" = ( +/obj/structure/table, +/obj/item/storage/crayons{ + pixel_y = 9 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/chisel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = " Prison - Library"; + network = list("ss13","prison") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/security/prison/rec) +"eUM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eUN" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"eUP" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"eUV" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"eUW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"eUZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"eVd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"eVg" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"eVj" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/security/prison/rec) +"eVk" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eVl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"eVo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"eVq" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/table/reinforced, +/obj/item/shears{ + pixel_x = -12 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"eVs" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"eVt" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"eVv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eVA" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Tcomms Controll 2"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms Requests Console"; + pixel_y = -7 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"eVB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"eVD" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"eVE" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"eVK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eVM" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/service/abandoned_gambling_den) +"eVN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/maintenance/aft/upper) +"eVW" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/reagent_containers/food/drinks/trophy{ + desc = "You did good in the worst way possible."; + name = "Redshield 1st prize"; + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/trophy/bronze_cup{ + name = "Foam force security team competition 3rd place"; + pixel_x = -9; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/trophy/silver_cup{ + name = "Head of shitcurity competition 2nd place"; + pixel_y = 8 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command) +"eWd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"eWi" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"eWo" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eWw" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/security/prison/rec) +"eWy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"eWA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eWK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"eWM" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/port) +"eWO" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eWT" = ( +/turf/open/floor/glass/reinforced, +/area/security/checkpoint/customs/auxiliary) +"eWU" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eWZ" = ( +/obj/machinery/camera{ + c_tag = "Command Hallway - Upper Port"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"eXe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"eXf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"eXg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eXk" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"eXm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"eXn" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/mob/living/carbon/human/species/monkey/punpun, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/service/bar) +"eXo" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"eXp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"eXt" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/service/library) +"eXu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"eXH" = ( +/obj/structure/window/reinforced, +/obj/structure/table/glass, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"eXK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"eXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"eXP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eXY" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"eYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"eYe" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eYf" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"eYg" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"eYh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"eYi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"eYj" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eYk" = ( +/obj/structure/rack, +/obj/item/fuel_pellet, +/obj/item/fuel_pellet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"eYl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"eYm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"eYq" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/fore) +"eYr" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"eYv" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"eYz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"eYE" = ( +/obj/structure/table/reinforced, +/obj/item/implanter{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/storage/box/evidence{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/toy/crayon/white{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/toy/crayon/white{ + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eYI" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet, +/area/security/prison/rec) +"eYL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eYP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/science/cytology) +"eYW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"eYX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eYZ" = ( +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Labor Shuttle Dock"; + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"eZb" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/porta_turret/ai, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber - Aft"; + name = "motion-sensitive ai camera"; + network = list("aichamber") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"eZc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eZg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Airmix to Pure" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Lower Bottom"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"eZj" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/security/prison/rec) +"eZk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eZl" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/obj/structure/noticeboard/directional/west, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"eZp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/radio/intercom/directional/north{ + pixel_y = 34 + }, +/obj/machinery/button/door/directional/west{ + id = "hopblast"; + name = "Lockdown Blast Doors"; + pixel_x = -6; + pixel_y = 25; + req_access_txt = "57" + }, +/obj/machinery/button/door/directional/west{ + id = "hopline"; + name = "Queue Shutters Control"; + pixel_x = 5; + pixel_y = 25; + req_access_txt = "57" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"eZs" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eZt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"eZy" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"eZz" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Lounge"; + dir = 4; + name = "command camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"eZJ" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"eZR" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"eZU" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"eZX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eZY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fah" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/security/prison/rec) +"fai" = ( +/obj/machinery/mineral/processing_unit_console, +/turf/closed/wall, +/area/cargo/miningoffice) +"fan" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fao" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"faA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"faG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"faI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"faR" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"faS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"faT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"faY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"fba" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"fbc" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fbd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fbe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/cargo/qm) +"fbk" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fbl" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"fbn" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fbo" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"fbp" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"fbq" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fbt" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"fby" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/chem_heater/withbuffer, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"fbA" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"fbB" = ( +/obj/structure/window/reinforced, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"fbD" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fbG" = ( +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fbJ" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/door/poddoor/shutters{ + id = "Sbay2"; + name = "Shuttle Bay 2" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"fbU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/displaycase/trophy, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/service/library/abandoned) +"fbV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fbY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fca" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"fcf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fcl" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"fcn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"fco" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/maintenance/port) +"fcr" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fcs" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera{ + c_tag = "Bar Backroom"; + name = "service camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fcy" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/b_plus, +/obj/item/reagent_containers/blood/b_minus, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/lizard, +/obj/item/reagent_containers/blood/ethereal, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fcH" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"fcK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"fcL" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fcO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"fcP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fcR" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/item/storage/box/beakers/variety{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/turf/open/floor/plasteel/white{ + dir = 8 + }, +/area/science/explab) +"fcS" = ( +/obj/machinery/computer/upload/borg{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"fcT" = ( +/obj/item/trash/peanuts, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fcV" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fcZ" = ( +/obj/structure/sign/poster/contraband/cc64k_ad, +/turf/closed/wall, +/area/service/abandoned_gambling_den/secondary) +"fdb" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"fde" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"fdg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"fdn" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"fdo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"fdx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fdz" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fdA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"fdC" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"fdE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"fdG" = ( +/obj/machinery/door/window/northright{ + dir = 2 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"fdH" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"fdK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"fdM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"fdN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/xenobiology) +"fdQ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/hallway/secondary/entry) +"fdY" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fei" = ( +/obj/item/bouquet/poppy, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"fek" = ( +/obj/structure/table, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fen" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/hallway/primary/aft) +"fep" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fes" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"fex" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"feB" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"feC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"feG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"feI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"feM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/deputy{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"feN" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"feT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"feU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/cargo/office) +"feX" = ( +/obj/machinery/door/window/southleft{ + name = "Court Cell"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"feY" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"feZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"ffa" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Cargo Junction"; + sortType = 2 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"fff" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ffl" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"ffm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"fft" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ffz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ffB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ffH" = ( +/obj/machinery/door/window{ + name = "Lawoffice front desk" + }, +/obj/machinery/camera{ + c_tag = "Law Lobby"; + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"ffI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/library) +"ffK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"ffL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ffR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ffT" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ffV" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/service/chapel) +"fgb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/security{ + name = "Private Interrogation"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"fgd" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"fgf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fgh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fgu" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fgz" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_y = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore) +"fgE" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"fgG" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"fgJ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"fgL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"fgO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fgT" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"fgV" = ( +/obj/machinery/door/airlock/command{ + name = "Public Teleport Access"; + req_access_txt = "17" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/command/teleporter) +"fgW" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fgX" = ( +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"fhc" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fhd" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"fhl" = ( +/obj/machinery/atmospherics/pipe/multiz/general, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fhq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fhu" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room) +"fhv" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -30 + }, +/turf/open/floor/grass, +/area/medical/psychology) +"fhx" = ( +/obj/machinery/holopad, +/turf/open/floor/glass/reinforced, +/area/security/checkpoint/customs/auxiliary) +"fhA" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fhB" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"fhH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fhO" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fhT" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + name = "Atmospherics Junction"; + sortType = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fid" = ( +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"fie" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fii" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fik" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fim" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"fip" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"fiy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"fiA" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"fiD" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fiE" = ( +/obj/structure/railing, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"fiM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"fiO" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"fiR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"fiS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/warehouse) +"fjb" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"fjf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/tcommsat/computer) +"fjg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter2"; + name = "CMO Study Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"fjh" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"fji" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"fjl" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"fjn" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"fjo" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fjr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/department/engine) +"fju" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/hallway/secondary/entry) +"fjx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/weightmachine/weightlifter, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"fjD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fjF" = ( +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/security/execution) +"fjH" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"fjI" = ( +/obj/structure/ladder, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fjM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"fjP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"fjQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"fjT" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"fjW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fjX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/landmark/start/assistant, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fjZ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"fka" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"fkh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fki" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/restraints/handcuffs, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fkq" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/workout) +"fkx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"fky" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore/secondary) +"fkz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Kitchen Desk"; + req_access_txt = "28" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"fkI" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fkK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"fkL" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fkQ" = ( +/obj/item/trash/boritos, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"fkW" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fkX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"fkY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/port) +"fla" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"flv" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"flz" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"flA" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"flF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"flH" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"flO" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"flR" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"flS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"flW" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"flY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"fma" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"fmb" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/psychology) +"fmc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"fme" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fmf" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 6 + }, +/obj/item/clothing/gloves/color/fyellow/old, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"fmh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"fmm" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fmo" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/library) +"fmv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"fmw" = ( +/obj/machinery/requests_console/directional/north{ + department = "Kitchen"; + name = "Kitchen Requests Console" + }, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"fmA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"fmE" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"fmL" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/cargo/office) +"fmM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fmQ" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/structure/fluff/big_chain{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"fmZ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"fnt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/executive, +/area/command) +"fnx" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"fnB" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/carpet/executive, +/area/command) +"fnD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"fnH" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science) +"fnK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"fnL" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fnO" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Study"; + req_access_txt = "4" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"fnR" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"fnT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fnY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"foh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"fok" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"fom" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"for" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/cargo/qm) +"fow" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"foz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"foB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"foG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/rack_parts, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"foH" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"foJ" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/machinery/requests_console/directional/west{ + department = "Theater"; + name = "Theater Requests Console" + }, +/turf/open/floor/wood, +/area/service/theater) +"foK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"foL" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/explab) +"foN" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"foQ" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"foT" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"foW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;31;48" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"foX" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/door/airlock{ + name = "Bar"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"foZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"fpa" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fpb" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"fpp" = ( +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fpq" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + pixel_y = -1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fps" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fpt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fpC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenosecure"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fpD" = ( +/obj/structure/window/reinforced, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/security/courtroom) +"fpF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"fpJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/fore) +"fpL" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/central) +"fpQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fpR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"fpW" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/lockers) +"fqk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"fqm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"fqn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"fqw" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Bunker Entrance"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"fqA" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"fqE" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"fqF" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/cargo/storage) +"fqG" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fqJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"fqK" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"fqL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/lobby) +"fqT" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward1"; + name = "Containment Chamber 1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"fqV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"fra" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"frb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"frd" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"frf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"fry" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"frB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/soap{ + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay - Viro Airlock"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"frH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset{ + name = "plasmaperson emergency closet" + }, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"frO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"frQ" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"frS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"frT" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"frV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"fsb" = ( +/obj/structure/table, +/obj/item/petri_dish{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/petri_dish, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fsd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fse" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs/left, +/area/maintenance/fore/upper) +"fsf" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"fso" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fsr" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel, +/area/science/lab) +"fsv" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"fsz" = ( +/turf/closed/wall, +/area/security/prison/visit) +"fsE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig/upper) +"fsR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"fsY" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"fta" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ftc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Customs Desk"; + req_access_txt = "1" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"ftg" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"fti" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ftp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ftq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"ftt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ftv" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"ftx" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/button/curtain{ + id = "prisonlibrarycurtain4"; + pixel_x = -6; + pixel_y = 22 + }, +/obj/machinery/button/door/directional/north{ + id = "BSdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 5; + pixel_y = 25; + req_access_txt = "20"; + specialfunctions = 4 + }, +/turf/open/floor/carpet/executive, +/area/command) +"ftz" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"ftP" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"ftR" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ftV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4; + name = "carbon dioxide scrubber loop injection" + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ftW" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fua" = ( +/obj/structure/bonfire, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; + name = "Carton of Estus" + }, +/obj/item/melee/moonlight_greatsword, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"fuc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"fud" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fuh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ful" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fum" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"fuq" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/red, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fur" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"fut" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness) +"fuy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"fuF" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"fuI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"fuV" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"fuW" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"fuZ" = ( +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"fva" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fvc" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/turf/open/floor/wood, +/area/service/theater) +"fve" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "HoPdoor"; + name = "Head Of Personel's Office"; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"fvh" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Chemistry Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"fvj" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Input Valve" + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fvn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"fvr" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fvs" = ( +/obj/structure/filingcabinet/security, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"fvt" = ( +/obj/structure/fermenting_barrel, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"fvx" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/lobby) +"fvB" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/science/breakroom) +"fvD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fvJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"fvQ" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"fvR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fvZ" = ( +/obj/structure/chair/comfy, +/obj/effect/landmark/start/scientist, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"fwb" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fwc" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"fwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"fwp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fws" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fww" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"fwA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"fwE" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"fwF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"fwH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"fwJ" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"fwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"fwL" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/medical) +"fwM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"fwO" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"fwP" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"fwU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fwX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fwY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"fxa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"fxh" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"fxl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fxo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fxr" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fxs" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/range) +"fxu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fxz" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "'Monkey Pen"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/science/genetics) +"fxC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/service/library) +"fxD" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"fxJ" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fxL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fxQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Deliveries"; + req_access_txt = "50" + }, +/turf/open/floor/engine, +/area/cargo/office) +"fyc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fyi" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/storage/box/disks{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"fym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fyn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"fyo" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"fys" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"fyu" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"fyv" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fyw" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"fyx" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"fyH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fyI" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"fyJ" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"fyL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"fyY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"fyZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fzc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"fzh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"fzj" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fzo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fzE" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fzG" = ( +/obj/structure/table, +/turf/open/floor/wood, +/area/service/bar/atrium) +"fzI" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/science/research/abandoned) +"fzM" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"fAa" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4; + pixel_x = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"fAd" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fAg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fAj" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "Waste Release" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fAp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"fAu" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"fAA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"fAB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"fAD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"fAF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"fAJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/button/door/directional/west{ + id = "Capoffice2"; + name = "Door lock"; + normaldoorcontrol = 1; + req_access_txt = "20"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"fAK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/explab) +"fAL" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/folder/white{ + pixel_x = -18 + }, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel, +/area/medical/virology) +"fAS" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"fAU" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fBb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"fBd" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Ward Cell 2"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"fBh" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"fBm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fBn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"fBo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/main) +"fBq" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fBr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"fBw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"fBz" = ( +/obj/machinery/button/door{ + id = "surgery"; + name = "Shared Surgery Shutter Control"; + pixel_x = -4; + pixel_y = 26 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/button/door/directional/south{ + id = "surgerya"; + name = "Privacy Shutters Control"; + pixel_x = 7; + pixel_y = 26 + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"fBA" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"fBL" = ( +/obj/machinery/light/small/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"fCb" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"fCd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fCe" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"fCg" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fCi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "prison release"; + name = "prisoner processing blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/execution/transfer) +"fCl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"fCv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"fCx" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"fCF" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/box/syringes, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/requests_console/directional/south{ + department = "Chemistry"; + departmentType = 1; + name = "Chemistry Requests Console" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"fCM" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/executive, +/area/command) +"fCN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"fCQ" = ( +/obj/effect/turf_decal/bot, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"fCR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/central) +"fCS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fDf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"fDl" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/cargo/office) +"fDm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fDo" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"fDt" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"fDD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Mixing Lab Starboard"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fDH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/plant_analyzer, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"fDN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"fDQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"fDT" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fDW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"fEc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/gps/science, +/obj/item/gps/science, +/obj/item/gps/science, +/obj/item/gps/science, +/obj/item/gps/science, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/misc_lab) +"fEd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "dormscurtain1"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/commons/dorms) +"fEg" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fEo" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"fEr" = ( +/obj/machinery/button/door{ + id = "surgery"; + name = "Shared Surgery Shutter Control"; + pixel_x = -4; + pixel_y = -26 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/button/door/directional/south{ + id = "surgeryb"; + name = "Privacy Shutters Control"; + pixel_x = 7; + pixel_y = -26 + }, +/obj/effect/turf_decal/trimline/blue/filled/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"fEw" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_construction, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fEA" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/cytology) +"fEC" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"fEP" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fFa" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fFh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"fFr" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fFt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/plasma_tank, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"fFz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/maintenance/department/medical) +"fFI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Office Maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"fFN" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fFO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"fFU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fFZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fGd" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"fGk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"fGq" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/light_switch/directional/south, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"fGv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/bookcase/random/reference, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"fGx" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch/directional/east, +/obj/machinery/camera{ + c_tag = "Theater Stage"; + dir = 1; + name = "service camera" + }, +/turf/open/floor/wood, +/area/service/theater) +"fGC" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/plasteel, +/area/science/lab) +"fGF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/gps, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"fGR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"fHa" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"fHc" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fHk" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/aft) +"fHt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"fHv" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fHx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"fHy" = ( +/turf/open/floor/plating, +/area/security/courtroom) +"fHz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"fHA" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Upper Central"; + dir = 8; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fHC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/command/bridge) +"fHF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"fHG" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fHI" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"fHK" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"fHM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_x = 8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_x = 8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_x = 8 + }, +/obj/item/lightreplacer{ + pixel_x = -6 + }, +/obj/item/lightreplacer{ + pixel_x = -6 + }, +/obj/item/lightreplacer{ + pixel_x = -6 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"fHS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fHX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"fIb" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fId" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/medical/psychology) +"fIk" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"fIl" = ( +/obj/structure/table/wood/fancy/red, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup{ + pixel_y = 11 + }, +/obj/effect/landmark/event_spawn, +/obj/item/storage/belt/champion{ + name = "Wrestling belt" + }, +/turf/open/floor/mineral/gold, +/area/commons/fitness/recreation) +"fIp" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"fIt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/security/armory) +"fIx" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"fIy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/roulette, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"fIz" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fIB" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/commons/dorms) +"fIE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"fIF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fIM" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"fIN" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fIO" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos/upper) +"fIP" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/security/prison/visit) +"fIS" = ( +/obj/effect/turf_decal/siding/thinplating/light, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"fJb" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fJc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/miningdock) +"fJe" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"fJf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"fJh" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fJj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/department/engine) +"fJm" = ( +/obj/machinery/camera{ + c_tag = "Security - Perma Airlock" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/prison/upper) +"fJq" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fJt" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/door/window/eastright, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"fJE" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/table, +/obj/item/clothing/suit/radiation, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fJF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fJG" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"fJH" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"fJL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/obj/structure/window, +/turf/open/floor/plasteel, +/area/medical/virology) +"fJN" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"fJT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"fJV" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"fJW" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/test_area) +"fKb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/cytology) +"fKc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"fKd" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"fKi" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fKl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fKt" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fKD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"fKG" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fKH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"fKM" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fLb" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"fLc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"fLe" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"fLf" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fLo" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white{ + dir = 8 + }, +/area/science/explab) +"fLt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/maintenance/aft) +"fLu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fLE" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"fLK" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/commons/dorms) +"fLM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fLR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"fMb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fMg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fMi" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fMk" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"fMs" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"fMu" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fMv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"fMw" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"fMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/chair, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"fMy" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/security/prison/visit) +"fME" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"fMF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/assembly/voice{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/assembly/voice{ + pixel_y = 5 + }, +/obj/item/assembly/voice{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"fMI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"fMK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"fML" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"fMU" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"fMX" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/stone, +/area/hallway/primary/central) +"fMY" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"fNj" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"fNm" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) +"fNv" = ( +/obj/machinery/button/door{ + id = "visitation"; + name = "Visitation Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "PrisonerReward"; + name = "Good prisoner point reward button"; + pixel_x = -26; + pixel_y = -4 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security - Prison Outpost"; + dir = 4; + network = list("ss13","Security","prison") + }, +/obj/machinery/light_switch{ + pixel_x = -36 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security) +"fNz" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"fNA" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/item/seeds/liberty, +/obj/item/seeds/cannabis{ + pixel_x = -5 + }, +/obj/item/seeds/ambrosia, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fNO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fNP" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fNU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/starboard/central) +"fNY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security) +"fNZ" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/port) +"fOa" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"fOd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fOe" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fOk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/hallway/primary/port) +"fOo" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"fOs" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fOv" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"fOx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"fOz" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/trunk/multiz/down, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fOC" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/machinery/computer/med_data/laptop{ + pixel_y = 1; + req_one_access = null; + req_one_access_txt = "4;5;9" + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"fOD" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"fOE" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fOK" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/primary/central) +"fOO" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fOZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"fPb" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/cargo/qm) +"fPo" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/service/janitor) +"fPq" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fPw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/central) +"fPB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/explab) +"fPI" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"fPJ" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"fPY" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"fPZ" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fQb" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fQj" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fQk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"fQm" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"fQn" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"fQp" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 1; + name = "isolation room monitor"; + network = list("isolation"); + pixel_y = -31 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security) +"fQq" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"fQu" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"fQv" = ( +/obj/item/beacon, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/science/test_area) +"fQC" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Hangar"; + name = "cargo camera" + }, +/obj/machinery/vendor/exploration, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fQH" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Medbay - Pharmacy Entrance"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"fQJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "Auxiliary Engine Acces Hatch" + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fQL" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + color = "#DE3A3A" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"fQO" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"fQZ" = ( +/obj/item/trash/can/food/beans, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fRc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"fRe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"fRf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fRj" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"fRn" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fRr" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/newscaster/directional/north, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"fRu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"fRw" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/lobby) +"fRy" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"fRz" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"fRC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fRG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Arrivals - Upper"; + dir = 1; + name = "arrivals camera" + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/hallway/secondary/entry; + pixel_y = -25 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"fRJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"fRR" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/maintenance/department/crew_quarters/dorms) +"fRW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/aft/upper) +"fRX" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"fRY" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"fSb" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"fSd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"fSk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain4"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/command) +"fSr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fSw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fSK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/landmark/carpspawn, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"fSL" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"fSQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/cafeteria) +"fSZ" = ( +/turf/open/floor/plasteel/white, +/area/science/research) +"fTb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"fTh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"fTk" = ( +/obj/machinery/camera{ + c_tag = "Security - Departures Holding" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"fTn" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage) +"fTq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fTs" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"fTv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"fTx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"fTy" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"fTB" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fTC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fTE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"fTL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"fTQ" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"fTY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/silver{ + name = "Catering Area" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"fUb" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fUf" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/cytology) +"fUh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fUj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"fUl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"fUo" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/cable_coil, +/obj/item/wirecutters{ + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fUq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fUu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fUv" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "RnD Junction"; + sortType = 12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"fUz" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fUB" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"fUC" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet, +/area/service/library/printer) +"fUE" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm5"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"fUF" = ( +/obj/structure/closet/crate{ + name = "Stations and Syndicate Starter Bundle" + }, +/obj/item/toy/figure/assistant, +/obj/item/toy/figure/assistant, +/obj/item/toy/figure/syndie, +/obj/item/toy/figure/syndie, +/obj/item/toy/figure/wizard, +/obj/item/toy/figure/borg, +/obj/item/toy/figure/botanist, +/obj/item/toy/figure/chef, +/obj/item/toy/figure/curator, +/obj/item/folder/blue, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/folder/blue, +/obj/item/clothing/head/wizard/fake, +/obj/item/clothing/suit/wizrobe/fake, +/obj/item/staff, +/obj/item/toy/plush/ratplush, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"fUI" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"fUN" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"fUP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"fUS" = ( +/obj/machinery/light/directional/south, +/obj/effect/landmark/start/chaplain, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"fUW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security) +"fUX" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/courtroom) +"fUY" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/science) +"fVk" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"fVu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"fVv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"fVx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fVy" = ( +/obj/item/banner/security/mundane, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fVB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Port "; + dir = 1; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fVO" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fVX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"fVY" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fWc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"fWe" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"fWh" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/candle, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"fWj" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fWl" = ( +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"fWm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"fWo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"fWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"fWx" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/maintenance/port) +"fWA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fWB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fWH" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"fWQ" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"fWS" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/vending/boozeomat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"fWT" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"fWU" = ( +/obj/effect/landmark/start/clown, +/turf/open/floor/wood, +/area/service/theater) +"fWW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"fXa" = ( +/obj/structure/chair/stool, +/turf/open/floor/glass, +/area/commons/dorms) +"fXb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/service/chapel) +"fXe" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"fXf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fXi" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/cafeteria) +"fXm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fXn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/hallway/primary/port) +"fXo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fXp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/psychology) +"fXt" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"fXy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fXA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fXE" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fXH" = ( +/obj/structure/sign/poster/contraband/power{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"fXI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fXJ" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fXK" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"fXM" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fXN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"fXV" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/cargo/sorting) +"fXW" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Psychward4"; + name = "Controll Room Shutters"; + pixel_x = 6; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "Psychward3"; + name = "Cell Door 3"; + pixel_x = 6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Psychward2"; + name = "Cell Door 2"; + pixel_x = -6; + pixel_y = -3 + }, +/obj/machinery/button/door{ + id = "Psychward1"; + name = "Cell Door 1"; + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"fXZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"fYd" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"fYe" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/port) +"fYf" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"fYi" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/maintenance/port) +"fYj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"fYs" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"fYz" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"fYB" = ( +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"fYC" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"fYG" = ( +/obj/item/chair/plastic, +/turf/open/floor/plating, +/area/maintenance/port) +"fYK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fYM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fYV" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"fYX" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Test Range"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/explab) +"fYY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"fZf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"fZi" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"fZk" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"fZn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"fZo" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/chief_medical_officer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"fZz" = ( +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fZA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"fZH" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 1; + name = "plasma mixer" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"fZL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"fZP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup21"; + location = "hallup20" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fZR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"fZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"fZV" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"fZZ" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gaa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"gad" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"gam" = ( +/obj/effect/turf_decal/siding/purple/end, +/turf/open/floor/glass/reinforced, +/area/science/cytology) +"gaA" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Robotics" + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/science/robotics/lab) +"gaB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"gaE" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"gaF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"gaG" = ( +/obj/item/trash/chips, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gaI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/starboard/fore) +"gaJ" = ( +/obj/structure/reagent_dispensers/fueltank{ + pixel_y = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gaT" = ( +/obj/effect/turf_decal/siding/blue, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"gaU" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"gaV" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"gba" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gbc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gbe" = ( +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"gbi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"gbs" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gbA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"gbC" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"gbL" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"gbN" = ( +/obj/structure/closet/crate/decorations, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"gbR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"gbS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/folder/blue, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"gbT" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"gbU" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/service/library) +"gbX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gce" = ( +/obj/machinery/door/window{ + dir = 4; + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"gck" = ( +/obj/machinery/biogenerator, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"gcm" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"gcs" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/toilet/auxiliary) +"gcu" = ( +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/obj/structure/cable, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"gcA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"gcD" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Luggagebelt" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"gcF" = ( +/obj/effect/turf_decal/box/white/corners, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"gcJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gcK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gcN" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Xenobiology Deliveries"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gcO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/security/warden) +"gcX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"gcZ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Space Bridge" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/visit) +"gda" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Balcony acces" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"gdi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Port Central Left"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gdj" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"gdk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"gdo" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"gdp" = ( +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"gdq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"gds" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"gdu" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"gdv" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"gdw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"gdz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"gdC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"gdF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/modular_computer/laptop, +/obj/structure/noticeboard/qm{ + pixel_y = 31 + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"gdO" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gdR" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/maintenance/port) +"gdS" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gdU" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/port) +"gea" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"geb" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary/second) +"gec" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"gee" = ( +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"geh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgeryb"; + name = "Surgery Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"gei" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gej" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gek" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"gel" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gen" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"geq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ges" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"gey" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"geC" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"geD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/defibrillator, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"geE" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"geI" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8; + pixel_x = 7 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/lawoffice) +"geO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"geP" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Vacant space" + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"geW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gfl" = ( +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"gfq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gfy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/aquarium, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gfO" = ( +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/dark, +/area/security/prison/garden) +"gfP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"gfX" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/service/cafeteria) +"gfY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"ggb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"ggc" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library) +"gge" = ( +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ggf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"ggi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ggq" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"ggu" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ggz" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Assembly"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ggD" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"ggF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ggI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ggM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/service/kitchen) +"ggN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ggS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"ggU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"ggW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"ggX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"ggY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/donksofttoyvendor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"ghd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"ghh" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/item/clothing/suit/nerdshirt, +/obj/item/clothing/head/fedora, +/turf/open/floor/wood, +/area/maintenance/fore/upper) +"ghl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall17"; + location = "hall16" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ghq" = ( +/turf/closed/wall, +/area/service/kitchen) +"ghs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/structure/closet/crate/wooden/toy, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/service/theater) +"ght" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "O2 to Airmix" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"ghu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"ghx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Far Starboard"; + name = "hallway camera" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ghy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"ghz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"ghE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"ghG" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"ghJ" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/secondary/construction/engineering) +"ghL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"ghO" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"ghQ" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/command/heads_quarters/hos) +"ghT" = ( +/obj/machinery/door/airlock{ + name = "Representative's Office"; + req_access_txt = "101" + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"gid" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 32 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -29 + }, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -26 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"gin" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"git" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"giw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gix" = ( +/obj/machinery/door/airlock/security{ + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"giy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"giB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"giE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"giF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"giR" = ( +/obj/structure/dresser, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/blue, +/area/maintenance/starboard/aft) +"giT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"giU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"giV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"giY" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"giZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"gja" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/security/courtroom) +"gjc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"gje" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"gjf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gjp" = ( +/turf/closed/wall, +/area/maintenance/department/crew_quarters/bar) +"gjt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gjA" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"gjD" = ( +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gjL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gjM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gjR" = ( +/turf/closed/wall, +/area/service/library/abandoned) +"gjT" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"gkb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/explab) +"gkc" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gke" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"gkm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gko" = ( +/obj/structure/flora/rock/pile/largejungle, +/obj/structure/flora/junglebush/large, +/obj/effect/landmark/observer_start, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central) +"gkq" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gkx" = ( +/obj/machinery/door/airlock/grunge{ + name = "Funeral Hall" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel) +"gkC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"gkD" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"gkG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"gkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gkM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gkR" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/rec) +"gkU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"gkV" = ( +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"gkZ" = ( +/turf/closed/wall, +/area/command/gateway) +"gla" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gld" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"gli" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gll" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"glo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"glr" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gly" = ( +/obj/structure/table, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/folder, +/turf/open/floor/wood, +/area/security/prison/rec) +"glA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/open/floor/plating, +/area/maintenance/port) +"glB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"glF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/glasses/meson, +/obj/machinery/camera{ + c_tag = "Engineering - Engine Foyer"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"glH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/command/gateway) +"glL" = ( +/obj/effect/mapping_helpers/ianbirthday, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel's Requests Console"; + pixel_y = 37 + }, +/obj/machinery/keycard_auth/directional/north, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"glR" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"glV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"gme" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"gmg" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"gmh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"gmj" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gmw" = ( +/obj/structure/closet/secure_closet, +/obj/item/clothing/under/rank/medical/doctor/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"gmx" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"gmA" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/printer) +"gmF" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"gmJ" = ( +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"gmL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"gmM" = ( +/obj/structure/chair/sofa/left{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gmP" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/security/prison/rec) +"gmT" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/exit) +"gmX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Break Room"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gnb" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/medical/virology) +"gng" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/engine) +"gni" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gnr" = ( +/turf/open/floor/wood, +/area/security/prison/rec) +"gnt" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"gnw" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/indestructible, +/area/science/test_area) +"gnz" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/computer/bountypad, +/obj/item/circuitboard/computer/warrant, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"gnA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gnC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler{ + pixel_y = -9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"gnD" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"gnN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gnP" = ( +/obj/structure/chair/e_chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"gnS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"gnT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"gnX" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"god" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"gog" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gok" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"gom" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Security - Foyer" + }, +/obj/machinery/light/directional/north, +/obj/effect/landmark/secequipment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"gon" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"got" = ( +/obj/machinery/skill_station, +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"gov" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/surgery/room_b) +"goy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"goA" = ( +/obj/structure/table/glass, +/obj/item/clothing/neck/stethoscope, +/obj/item/flashlight/pen, +/obj/item/clothing/glasses/hud/health{ + pixel_y = -3 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"goE" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space) +"goG" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/security/prison/rec) +"goI" = ( +/obj/structure/chair, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"goV" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/security/prison/rec) +"goY" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gpe" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"gpf" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"gph" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"gpk" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/statue/silver/sec, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"gpq" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window, +/turf/open/floor/grass, +/area/commons/lounge) +"gps" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"gpw" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"gpx" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;5" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"gpy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"gpC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gpE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gpI" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/research) +"gpK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/radshelter) +"gpO" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"gpU" = ( +/obj/machinery/door/airlock{ + name = "Janitorial closet" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"gpX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gpZ" = ( +/obj/machinery/door/poddoor/preopen{ + name = "Retrograde Thruster blast door" + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gqc" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gqg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"gqj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gqp" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/plasteel, +/area/ai_monitored/command/nuke_storage) +"gqr" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/small/directional/east, +/obj/machinery/camera/motion{ + c_tag = "AI - Upload Foyer"; + name = "motion-sensitive ai camera"; + network = list("aiupload") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"gqs" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/button/curtain{ + id = "dormscurtain1"; + pixel_x = 25 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"gqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gqy" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/central) +"gqG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"gqJ" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gqM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"gqN" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/secondary/entry) +"gqO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/lobby) +"gqV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"gqX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"grg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"gri" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/security/prison/rec) +"grj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"grk" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"grl" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"grq" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"grr" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters) +"grv" = ( +/obj/machinery/door/airlock{ + name = "Russian organ gambling den" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"grw" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"grC" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator Foyer"; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"grD" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"grE" = ( +/obj/structure/table/wood/fancy/red, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"grG" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"grJ" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"grL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"grM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"grT" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"grW" = ( +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"gsa" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gsd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"gsf" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"gsj" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gsm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"gsn" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"gsq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"gst" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gsu" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"gsy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/genetics) +"gsz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gsA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gsC" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"gsF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gsH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"gsM" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering" + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"gsS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/start/chemist, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"gsU" = ( +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"gsW" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"gsX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gsY" = ( +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/security/detectives_office) +"gtf" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"gth" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gti" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/banhammer, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gtj" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"gtm" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/command) +"gtt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"gtv" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/flashlight/lamp{ + pixel_y = 5 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"gtw" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"gty" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"gtB" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/cyborgrecharger, +/turf/open/floor/plating, +/area/science/research/abandoned) +"gtJ" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gtM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gtQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gtX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gtZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"gua" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"gub" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"guc" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"gud" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"guf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/closet/crate, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/gps/engineering, +/obj/item/gps/engineering, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/main) +"guh" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Luggagebelt" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"guj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"guk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"guv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gux" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"guA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Starboard Hallway upper"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"guE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"guG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Dining Room"; + dir = 1; + name = "command camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"guL" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Escape Pod"; + req_access_txt = "32" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"guY" = ( +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"gve" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gvf" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"gvl" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"gvo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gvp" = ( +/obj/machinery/processor, +/turf/open/floor/plating, +/area/maintenance/fore) +"gvq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gvs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"gvy" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"gvA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"gvD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gvE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/reagent_dispensers/beerkeg, +/obj/machinery/requests_console/directional/north{ + department = "Bar"; + name = "Bar Requests Console"; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Bar - Counter"; + name = "service camera" + }, +/turf/open/floor/plasteel, +/area/service/bar) +"gvJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gvQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gvS" = ( +/obj/structure/barricade/wooden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gvX" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"gwc" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"gwd" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"gwm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gwz" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hallway/primary/aft) +"gwO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/kitchen) +"gwT" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gwV" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/hallway/primary/aft) +"gwW" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"gwX" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"gwZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gxa" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"gxb" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/junglebush/large{ + pixel_y = -10 + }, +/turf/open/floor/grass, +/area/science/research) +"gxf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"gxi" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gxk" = ( +/obj/vehicle/sealed/mecha/working/ripley/cargo, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/recharge_floor, +/area/cargo/storage) +"gxo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"gxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/fuel_pellet/advanced, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"gxt" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/aicard, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_y = -36; + req_access_txt = "65" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"gxG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"gxJ" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gxP" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/lockbox/loyalty{ + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"gxT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"gxU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"gxW" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore/upper) +"gyn" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gyq" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gyu" = ( +/obj/structure/closet/cardboard, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"gyz" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/cargo/miningdock) +"gyA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gyF" = ( +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_x = -10; + pixel_y = -24 + }, +/obj/machinery/button/flasher{ + id = "IsolationFlash2"; + pixel_x = 10; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"gyJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"gyK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Theater Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"gyN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"gyO" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gyQ" = ( +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"gyR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gyU" = ( +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/commons/dorms) +"gza" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/circuit, +/area/command/gateway) +"gzc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/miningdock) +"gze" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/security/prison/rec) +"gzn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"gzp" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"gzx" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"gzA" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/explab) +"gzC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gzD" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"gzE" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gzM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock{ + name = "Jury Break Room"; + req_access_txt = "42" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/courtroom) +"gzR" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/north, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"gzT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gzU" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gAe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"gAg" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gAi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gAq" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"gAy" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/openspace, +/area/maintenance/department/science) +"gAz" = ( +/turf/open/floor/circuit/green, +/area/engineering/gravity_generator) +"gAD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"gAH" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gAN" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"gAQ" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"gAR" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Starboard"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gAU" = ( +/obj/machinery/medical_kiosk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"gAZ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"gBb" = ( +/obj/structure/fence/door, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gBf" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gBg" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"gBk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gBm" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"gBr" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"gBu" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"gBC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gBE" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"gBJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"gBQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gBY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gCb" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/tome{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/stone, +/area/maintenance/starboard/fore) +"gCj" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"gCn" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"gCp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/emergency{ + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"gCG" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"gCJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gCM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"gCN" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + pixel_y = 5; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + id = "Secure Tool"; + name = "Secure Tool storage blast doors"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "11" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "CEdoor"; + name = "Door lock"; + normaldoorcontrol = 1; + pixel_x = -35; + pixel_y = -1; + req_access_txt = "56"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"gCP" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gCQ" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gCS" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"gCT" = ( +/obj/structure/fireaxecabinet{ + pixel_y = -38 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/command/bridge) +"gCU" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"gCW" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"gCX" = ( +/obj/structure/aquarium, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"gCY" = ( +/obj/item/beacon, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"gDb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 16 + }, +/obj/item/toy/crayon/spraycan/lubecan{ + charges = 5; + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/service/theater) +"gDe" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gDg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Outpost"; + req_access_txt = "11" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gDj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"gDk" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/main) +"gDl" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Warehouse"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gDw" = ( +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/security/armory) +"gDE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/kirbyplants/random, +/obj/machinery/button/door{ + id = "BarBlastDoor"; + name = "Bar Blast Doors"; + pixel_x = 8; + pixel_y = -24; + req_access_txt = "25" + }, +/obj/machinery/button/door{ + id = "Barshutters"; + name = "Bar Shutters"; + pixel_x = -7; + pixel_y = -24; + req_access_txt = "25" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/service/bar) +"gDG" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"gDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"gDM" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gDO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gDP" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/explab) +"gDR" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"gDT" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/hallway/primary/central) +"gDU" = ( +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gDV" = ( +/obj/machinery/atmospherics/components/binary/pump/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"gDW" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/button/curtain{ + id = "dormscurtain2"; + pixel_x = 25 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"gDX" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"gDZ" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"gEb" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"gEi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gEl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gEp" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gEu" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"gEw" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"gEA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"gEB" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gEC" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"gEF" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"gEH" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"gEO" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gEP" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"gEW" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"gEX" = ( +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gFa" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"gFb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side, +/area/science) +"gFf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"gFl" = ( +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"gFn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gFo" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"gFq" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gFy" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/fore) +"gFC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gFH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"gFK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gFS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gFT" = ( +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"gGc" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"gGd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gGf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"gGj" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"gGq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gGt" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gGx" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/carpet, +/area/medical/psychology) +"gGy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/warehouse) +"gGC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"gGD" = ( +/obj/structure/chair/office, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"gGI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gGJ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"gGP" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"gGW" = ( +/mob/living/simple_animal/hostile/russian, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gHa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"gHc" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"gHe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gHl" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"gHm" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gHu" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/command/heads_quarters) +"gHw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gHx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos/upper) +"gHy" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"gHF" = ( +/obj/structure/sign/departments/evac{ + pixel_y = -32 + }, +/turf/open/openspace, +/area/hallway/primary/port) +"gHI" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/open/floor/wood, +/area/security/prison/workout) +"gHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gHN" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gHO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gHQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/security/courtroom) +"gHX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + external_pressure_bound = 120; + name = "server vent" + }, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/turf/open/floor/circuit/telecomms{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/science/xenobiology) +"gHY" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"gHZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/maintenance/aft) +"gIa" = ( +/obj/machinery/door/airlock/freezer, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/fore) +"gIb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"gIc" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/maintenance/port) +"gIk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gIl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"gIm" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"gIp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gIs" = ( +/obj/machinery/camera{ + c_tag = "Departures Hallway - Escape Pods"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gIv" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"gIy" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"gIK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"gIN" = ( +/obj/structure/chair/wood{ + dir = 8; + name = "Defense" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/security/courtroom) +"gIR" = ( +/obj/structure/chair/sofa/corp/right, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"gIT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gIU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gIW" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gJe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 16 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = -5 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"gJm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gJo" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/general/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"gJp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/rack, +/obj/item/gps, +/obj/item/gps, +/obj/item/gps, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"gJs" = ( +/obj/structure/closet{ + name = "security locker" + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/shoes/jackboots, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"gJC" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"gJD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"gJH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gJI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"gJK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"gJL" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gJM" = ( +/turf/open/floor/plasteel/stairs, +/area/security/prison/workout) +"gJO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gJP" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gJY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gKf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup6"; + location = "hallup5" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"gKi" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"gKj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"gKk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"gKl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Starboard Engineering Hub Deck 3"; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gKn" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gKq" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gKt" = ( +/obj/item/trash/waffles, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"gKE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Unfiltered to Mix" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gKK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"gKM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gKY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"gLa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gLc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"gLf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/grass, +/area/security/brig/upper) +"gLg" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/item/tank/internals/plasma, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/supermatter) +"gLi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"gLj" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gLn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"gLq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"gLs" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"gLz" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/hallway/secondary/service) +"gLH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"gLL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"gLM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/medical/medbay/lobby) +"gLO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gLS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"gLV" = ( +/turf/closed/wall/rust, +/area/medical/abandoned) +"gLW" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"gLZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gMi" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/security/courtroom) +"gMl" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/structure/bed/dogbed/lia, +/mob/living/simple_animal/hostile/carp/lia, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"gMn" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Main Room"; + dir = 8; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"gMo" = ( +/obj/structure/mecha_wreckage/ripley, +/turf/open/floor/plating, +/area/maintenance/port) +"gMu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port Central"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gMz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"gMB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gMC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gMG" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"gMK" = ( +/obj/item/radio/intercom/chapel{ + pixel_y = 22 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gML" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"gMP" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 3" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gMR" = ( +/turf/open/floor/plasteel/dark, +/area/security/processing) +"gMV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"gMZ" = ( +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gNc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"gNj" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gNp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/science/research) +"gNs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"gNu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gNx" = ( +/obj/machinery/atmospherics/miner/n2o, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"gNz" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gND" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/port) +"gNL" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/department/medical) +"gNN" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/pai_card, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"gNP" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"gNQ" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"gNR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gNS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"gNW" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"gOc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"gOf" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"gOh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"gOl" = ( +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"gOp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gOr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/service/chapel) +"gOt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"gOB" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"gOC" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/xenobiology) +"gOI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"gOK" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gOL" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"gOM" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/incendiary{ + pixel_y = 9 + }, +/obj/item/trash/candle, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gOQ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/turf/open/floor/wood, +/area/service/chapel/office) +"gOT" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gOU" = ( +/turf/closed/wall, +/area/commons/fitness/locker_room) +"gOX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"gPd" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"gPe" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gPm" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison/upper) +"gPs" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"gPx" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/security/courtroom) +"gPz" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Quartermaster's Quarters"; + req_access_txt = "41" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"gPI" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"gPL" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gPP" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"gPT" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gPW" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"gQm" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"gQp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"gQu" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gQy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"gQE" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/central) +"gQR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/prison/upper) +"gQT" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation A"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"gQW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/machine, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gQZ" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"gRa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"gRc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gRd" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno1"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gRe" = ( +/obj/structure/table{ + name = "Smuggler's den" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/price_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"gRk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"gRo" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar) +"gRq" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"gRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gRx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"gRz" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gRD" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/primary/upper) +"gRQ" = ( +/obj/structure/table, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + layer = 3.01; + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"gRR" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"gRX" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/item/toner/large{ + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"gRY" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"gSh" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/visit) +"gSi" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"gSj" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"gSm" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"gSn" = ( +/obj/machinery/door/airlock{ + id_tag = "BSdoor"; + name = "Blueshield's Office"; + req_access_txt = "20" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command) +"gSo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"gSt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Study Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"gSv" = ( +/obj/structure/window, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"gSA" = ( +/turf/closed/wall, +/area/hallway/secondary/construction/engineering) +"gSD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"gSF" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gSI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gSJ" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gSL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Lower Aft"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"gST" = ( +/obj/structure/mirror/directional/west, +/obj/effect/landmark/start/mime, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"gSY" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/waterflower/lube, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"gTd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"gTg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"gTl" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gTm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"gTp" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"gTq" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"gTr" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gTA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "toxinsaccess"; + name = "Toxins Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"gTB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned clown Chamber"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"gTE" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/multitool, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gTG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Warden's Quarters"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"gTO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"gTV" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"gTX" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gUa" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"gUc" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"gUe" = ( +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gUi" = ( +/obj/structure/sign/poster/contraband/syndicate_recruitment{ + pixel_x = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"gUp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gUq" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gUs" = ( +/obj/structure/bed, +/obj/item/bedsheet/nanotrasen, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/executive, +/area/command) +"gUx" = ( +/obj/structure/closet/crate/bin, +/obj/item/camera_film, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"gUD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/displaycase/captain{ + req_access = null; + req_access_txt = "20" + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gUG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gUH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"gUN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Lower Center"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"gUQ" = ( +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"gUR" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"gUS" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"gUV" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"gUX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"gUY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gVe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/sorting) +"gVq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"gVu" = ( +/turf/closed/wall, +/area/command/heads_quarters/cmo) +"gVv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"gVy" = ( +/obj/structure/bed/maint, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"gVA" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"gVE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"gVG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"gVI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"gVQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"gVR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"gVZ" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/surgical_drapes, +/obj/structure/table/reinforced, +/obj/item/blood_filter, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_y = -8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/medical/surgery) +"gWa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"gWb" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"gWf" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"gWi" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"gWj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gWl" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"gWo" = ( +/turf/open/openspace, +/area/hallway/primary/upper) +"gWq" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"gWt" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"gWy" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"gWC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gWE" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/science/xenobiology) +"gWI" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"gWJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gWM" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"gWO" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/engineering/break_room) +"gWS" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"gWY" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"gXg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Project Room Upper"; + name = "atmospherics camera" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"gXs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/storage) +"gXy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gXJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gXK" = ( +/obj/structure/closet/cardboard, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"gXM" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/cargo/qm/perch) +"gXO" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"gXS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/obj/item/radio/intercom/directional/south, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"gXT" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"gXU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/dorms) +"gXV" = ( +/obj/structure/moisture_trap, +/turf/open/floor/plating, +/area/maintenance/department/science) +"gXX" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gYa" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gYd" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/rack, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"gYg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"gYo" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Research" + }, +/turf/open/floor/plating, +/area/science/research) +"gYB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"gYK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gYO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"gYV" = ( +/obj/structure/bookcase/random, +/turf/closed/wall/mineral/wood, +/area/maintenance/starboard/fore) +"gYW" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"gZe" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gZj" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gZl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gZm" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gZn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"gZo" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gZq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"gZt" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gulag Processing"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"gZD" = ( +/turf/open/openspace, +/area/maintenance/radshelter) +"gZQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/restraints/handcuffs, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"gZX" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gZZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engineering/supermatter) +"hab" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"hae" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"hag" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"hah" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/turf/open/floor/wood, +/area/commons/dorms) +"hai" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"hal" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/fullupgrade{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"han" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"hao" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hap" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"hax" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"hay" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"haB" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"haH" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"haJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/landmark/start/chief_medical_officer, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"haO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/hallway/secondary/command) +"haR" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"haV" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/fore/upper) +"haX" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Observation"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"haZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hbi" = ( +/obj/structure/chair/stool/bar, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/cafeteria) +"hbk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hbp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"hbr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/science) +"hbw" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"hbA" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hbB" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"hbD" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Distro" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hbF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hbL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"hbM" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hbT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hbW" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/lightreplacer, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"hbX" = ( +/obj/machinery/button/door{ + id = "permaouter"; + name = "Outer Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = -25; + req_access_txt = "2"; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permainner"; + name = "Inner Bolt Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = -25; + req_access_txt = "2"; + specialfunctions = 4 + }, +/obj/machinery/button/flasher{ + id = "transferflash"; + pixel_x = 6; + pixel_y = -34 + }, +/obj/machinery/camera{ + c_tag = "Security - Prisoner Processing"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/upper) +"hbY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"hca" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hcb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"hcc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"hcd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"hci" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"hck" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/openspace, +/area/maintenance/department/engine) +"hcp" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark{ + dir = 1 + }, +/area/security) +"hcr" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"hct" = ( +/obj/effect/landmark/start/librarian, +/turf/open/floor/wood, +/area/service/library) +"hcu" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"hcx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hcz" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"hcB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hcG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Lower Port Central"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"hcP" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"hcT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hcU" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"hda" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security) +"hdc" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/primary/central) +"hdm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Minivault"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"hdt" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hdG" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/primary/starboard) +"hdH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/lab) +"hdL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"hdO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"hdV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/janitor, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/storage/belt/janitor, +/obj/item/storage/belt/janitor, +/obj/item/clothing/shoes/galoshes/dry, +/obj/item/clothing/shoes/galoshes, +/obj/item/holosign_creator/janibarrier, +/obj/item/holosign_creator/janibarrier, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/janitor) +"hdY" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/machinery/defibrillator_mount/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"heg" = ( +/turf/closed/wall, +/area/maintenance/department/medical/central) +"hel" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"hen" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"heo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hep" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/service/bar) +"hes" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/janitor) +"het" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/secure_closet, +/turf/open/floor/plasteel/dark{ + dir = 9 + }, +/area/security) +"hez" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"heA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"heI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/openspace, +/area/maintenance/department/medical) +"heK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"heL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"heN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"heQ" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"heR" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/light/directional/north, +/turf/open/floor/circuit, +/area/command/gateway) +"heU" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"heV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Port Center"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"heW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"heX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"heZ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = null; + req_one_access_txt = "1;4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hfk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"hfr" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"hft" = ( +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"hfu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hfv" = ( +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"hfB" = ( +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"hfE" = ( +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"hfF" = ( +/obj/structure/lattice/catwalk, +/obj/item/trash/raisins, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"hfG" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted, +/obj/item/organ/tail/cat{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/organ/tail/lizard, +/obj/item/organ/ears/cat, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hfL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"hfN" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit/departure_lounge) +"hfQ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hfS" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"hfU" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central) +"hfZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"hgc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"hgd" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"hgl" = ( +/obj/structure/table/glass, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"hgn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/maintenance/starboard/central) +"hgq" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"hgr" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"hgx" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"hgJ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hgL" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain3"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/command/heads_quarters) +"hgM" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern{ + pixel_y = 7 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"hgO" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"hgS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hgY" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"hhc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/security) +"hhe" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hhg" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"hhh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"hhw" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"hhJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"hhM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hhO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hhQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/pillbottles, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/lobby) +"hhU" = ( +/obj/structure/fence/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"hhW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hia" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hic" = ( +/obj/structure/cable, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hif" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hii" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hij" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"hik" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hil" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hin" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Supermatter Engine Maintenance"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"hiq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"hiv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"hiB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hiL" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"hiO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"hiT" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/general, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hjb" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hjc" = ( +/obj/structure/sign/plaques/kiddie/perfect_man{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/command/heads_quarters) +"hjf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hjh" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hjl" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/science/research) +"hjn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"hjv" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"hjA" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"hjG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hjH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/openspace, +/area/maintenance/fore/secondary) +"hjM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hjO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"hjT" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/supermatter) +"hjW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hkb" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"hke" = ( +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"hki" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/command/bridge) +"hkn" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hkr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/service/hydroponics) +"hkt" = ( +/obj/effect/turf_decal/siding/thinplating/light, +/obj/structure/window/reinforced, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay - Port Psych Ward"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"hku" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/obj/item/screwdriver, +/obj/item/wrench, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"hky" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"hkE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"hkF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical) +"hkM" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hkP" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/geiger_counter, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"hkX" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hlb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hlc" = ( +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"hle" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hlk" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel, +/area/science/breakroom) +"hln" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"hlr" = ( +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"hlv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/fermenting_barrel, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/chapel) +"hlw" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"hly" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"hlB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/storage) +"hlC" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"hlE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hlM" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"hlO" = ( +/turf/closed/wall, +/area/security/detectives_office/private_investigators_office) +"hlY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/requests_console/directional/north{ + department = "Construction"; + name = "Construction Requests Console" + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Lower Port"; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hme" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"hmh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/science/research) +"hmk" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/button/door/directional/west{ + id = "Dorm3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"hmr" = ( +/obj/machinery/light/directional/east, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"hmt" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hmx" = ( +/obj/structure/grille/broken, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hmy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hmz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "BotanyTest"; + name = "Test Blast Shutters" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Botany test chamber"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"hmA" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"hmC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"hmG" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/primary/upper) +"hmH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"hmM" = ( +/obj/structure/railing/corner{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/railing{ + pixel_x = -9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/service/chapel) +"hmR" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"hmY" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"hna" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"hnc" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"hnh" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"hno" = ( +/obj/machinery/chem_dispenser, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white{ + dir = 8 + }, +/area/science/explab) +"hnp" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"hns" = ( +/obj/machinery/door/window/northright{ + dir = 8; + req_access_txt = "18" + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Bridge - E.V.A. Fore"; + name = "command camera" + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ai_monitored/command/storage/eva/upper) +"hnu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hnx" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/drone, +/obj/effect/turf_decal/bot, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark{ + dir = 5 + }, +/area/security) +"hnE" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/commons/dorms) +"hnG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/chief_engineer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/ce) +"hnJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hnL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/science) +"hnR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hnT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"hoc" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"hod" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"hoh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hoj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"how" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 6" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"hox" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/exam_room) +"hoA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"hoC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hoE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hoH" = ( +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"hoI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hoR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"hoV" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"hoW" = ( +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hoX" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Perma Office"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security) +"hpa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"hpc" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/computer/secure_data{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/circuitboard/computer/med_data, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"hpd" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"hpf" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/space) +"hpg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene2"; + name = "Genetics Lab Shutters" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Genetics Desk"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"hpp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"hps" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/storage/pill_bottle/lsdpsych{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/pill_bottle/neurine{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/lsd{ + pixel_x = -5 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"hpt" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hpu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"hpw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/restaurant_portal/bar, +/turf/open/floor/wood, +/area/service/bar/atrium) +"hpy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"hpL" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hpT" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hqf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hqi" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hqn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hqr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hqy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hqC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"hqE" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/engineer, +/obj/machinery/camera{ + c_tag = "Engineering - Bottom Central"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hqN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"hqX" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/table, +/obj/item/ph_booklet, +/obj/item/ph_meter, +/turf/open/floor/plasteel/white{ + dir = 4 + }, +/area/science/explab) +"hre" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"hrf" = ( +/obj/item/vending_refill/cola, +/turf/open/floor/plating, +/area/maintenance/central) +"hrg" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/bar) +"hrj" = ( +/turf/open/floor/carpet, +/area/service/library) +"hrp" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/indestructible, +/area/science/test_area) +"hrq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ai_module/core/freeformcore{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/core/full/custom, +/obj/item/ai_module/core/full/asimov{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"hrr" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"hrz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/service/chapel) +"hrE" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/science/mixing) +"hrF" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/security/prison/garden) +"hrN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"hrQ" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/effect/turf_decal/bot, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"hrR" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"hrV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/maintenance/central/secondary) +"hrX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hrZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hsa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"hsb" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hsc" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Morgue"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel) +"hse" = ( +/obj/structure/light_construct{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"hsj" = ( +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Arrivals"; + dir = 5 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"hsn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hso" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hsq" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"hst" = ( +/obj/machinery/button/door{ + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -25; + pixel_y = 24; + req_access_txt = "47" + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"hsv" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "ArrivalsKitchen"; + name = "snack bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"hsA" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hsH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"hsJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/cafeteria) +"hsQ" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"hsV" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"hsX" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hta" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/primary/starboard) +"htd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"hte" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/engineering/atmos) +"htf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"htn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"htq" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"htr" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"htu" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"htA" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/machinery/camera{ + c_tag = "Atmospherics - Staircase"; + name = "atmospherics camera" + }, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"htI" = ( +/obj/structure/table/glass, +/obj/item/petri_dish, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"htL" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"htM" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/blue, +/area/maintenance/starboard/aft) +"htY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"huf" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/central) +"huo" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"hup" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"hur" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"hut" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"huu" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"huA" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port) +"huF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"huI" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/security/prison/garden) +"huK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"huM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"huO" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command) +"huS" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/grass, +/area/medical/medbay/lobby) +"huT" = ( +/obj/structure/window, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"huV" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"huY" = ( +/turf/closed/wall/rust, +/area/maintenance/central) +"hvb" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"hvi" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/science/misc_lab) +"hvj" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/bartender, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"hvn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup1"; + location = "hallup40" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hvu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hvz" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"hvI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/maintenance/fore) +"hvJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"hvL" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"hvM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/space/basic, +/area/space/nearstation) +"hvS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/security/armory) +"hvV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Captainprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"hvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"hvY" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hvZ" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"hwe" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hwf" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hwi" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Core"; + network = list("aicore") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console" + }, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Primary AI Core Acces Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"hwk" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"hwv" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/dresser, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"hww" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/medipen_refiller, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"hwC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/detectives_office) +"hwH" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"hwI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hwM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"hwQ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"hwR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"hwX" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"hwZ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/grassybush{ + pixel_x = 4 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"hxb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"hxc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/cargotech, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"hxg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"hxh" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/library) +"hxt" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner, +/area/security/main) +"hxA" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hxK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"hxP" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hxQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/hydronutrients, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"hxV" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/security/range) +"hxX" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/glasses/meson, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"hxZ" = ( +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hye" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/locker) +"hyh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"hym" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hyn" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hyo" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"hyp" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"hyq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"hyt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"hyv" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/security/prison/garden) +"hyw" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"hyz" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"hyA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"hyC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/port) +"hyH" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hyI" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness) +"hyL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Science - Firing Range"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"hyP" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"hyR" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/medical/exam_room) +"hyV" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"hyW" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/toy/plush/narplush{ + pixel_x = -17; + pixel_y = 8 + }, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"hyY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"hyZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"hzd" = ( +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"hzj" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hzl" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"hzr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hzt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"hzv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hzx" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hzJ" = ( +/obj/structure/table, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/commons/dorms) +"hzL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hzQ" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hzR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hAi" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"hAk" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/command/gateway) +"hAq" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos) +"hAw" = ( +/obj/structure/window, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/service/cafeteria) +"hAx" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hAB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hAP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/power/shieldwallgen, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"hAW" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"hAZ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/electronics/firelock, +/obj/item/electronics/airalarm, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engineering/main) +"hBd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hBe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hBf" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"hBh" = ( +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access_txt = "19" + }, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north{ + pixel_x = -10 + }, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/command/teleporter) +"hBm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hBp" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"hBq" = ( +/obj/machinery/smartfridge/organ, +/turf/closed/wall, +/area/security/main/sb_med) +"hBt" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/commons/fitness/recreation) +"hBx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"hBF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hBG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hBP" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"hBQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hBV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hBX" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"hBZ" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hCa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"hCf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"hCl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"hCq" = ( +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"hCr" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/science/breakroom) +"hCs" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hCt" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/medical/storage) +"hCv" = ( +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"hCw" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel, +/area/service/bar) +"hCC" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"hCF" = ( +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"hCK" = ( +/obj/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"hCO" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/fore/secondary) +"hCP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"hCX" = ( +/obj/machinery/telecomms/receiver/preset_left, +/obj/machinery/camera{ + c_tag = "Engineering - Tcomms Lower"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"hCY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"hCZ" = ( +/obj/item/clothing/under/pants/blackjeans{ + pixel_y = -7 + }, +/obj/item/clothing/under/pants/camo{ + pixel_x = -8; + pixel_y = -7 + }, +/obj/item/clothing/under/pants/classicjeans{ + pixel_x = 8; + pixel_y = -6 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"hDb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/ianshirt, +/obj/item/tail_pin, +/obj/item/clothing/under/rank/civilian/head_of_personnel/suit, +/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt, +/obj/item/clothing/head/hopcap, +/obj/item/bedsheet/ian, +/obj/item/bedsheet/ian, +/obj/item/clothing/neck/cloak/hop, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"hDe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hDj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hDk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"hDo" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hDq" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/lounge) +"hDr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"hDx" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"hDA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"hDF" = ( +/obj/structure/table, +/obj/item/clothing/gloves/botanic_leather{ + pixel_y = -3 + }, +/obj/item/clothing/mask/bandana{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/clothing/suit/apron/overalls{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hDL" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"hDO" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"hDU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"hEa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hEc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"hEe" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"hEh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"hEq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hEr" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Recreation - Gym Lockers"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"hEs" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Psychology Office"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"hEu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hEw" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"hEx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"hEz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"hEB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/bz, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"hEG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/service/hydroponics) +"hEO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/circuitboard/machine/vendatray, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"hEP" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio/off, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"hFc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/athletic_mixed, +/obj/item/clothing/mask/animal/frog, +/obj/item/clothing/head/helmet/skull, +/obj/item/clothing/head/jester/alt, +/obj/item/clothing/head/ushanka, +/obj/item/clothing/mask/luchador/rudos, +/obj/item/clothing/mask/luchador, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hFi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hFk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hFl" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"hFo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"hFv" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"hFx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hFB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hFD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"hFE" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Surgery"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"hFL" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/folder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"hFQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hFS" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"hFT" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hFX" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/turf_decal/bot, +/obj/item/storage/bag/trash, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Custodial Closet"; + name = "hallway camera" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"hFZ" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"hGf" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"hGk" = ( +/obj/structure/table/wood, +/obj/item/statuebust, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"hGu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"hGy" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"hGA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/hallway/primary/port) +"hGH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hGW" = ( +/obj/structure/chair/stool, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"hGX" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"hHb" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hHc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/displaycase/forsale, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"hHh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/theater) +"hHi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"hHk" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/port) +"hHn" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hHo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engineering/main) +"hHx" = ( +/obj/structure/table, +/obj/item/shield/riot/buckler, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"hHB" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/box/evidence, +/obj/item/taperecorder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"hHL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"hHN" = ( +/obj/structure/table_frame/wood, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"hHS" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"hIa" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"hIc" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hIj" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/hallway/primary/starboard) +"hIk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"hIn" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hIp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"hIq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Starboard Hallway - Lower"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hIw" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"hIy" = ( +/obj/item/trash/pistachios, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hIz" = ( +/obj/machinery/light/directional/north, +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/carpet/green, +/area/medical/virology) +"hIB" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"hIG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"hIM" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hIU" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"hIX" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"hIY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hIZ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hJe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/execution/education) +"hJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"hJo" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hJz" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"hJA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/deepfryer, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"hJC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/science/server) +"hJF" = ( +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/turf/open/floor/grass, +/area/security/prison/garden) +"hJL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/mixing) +"hJQ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"hKh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hKo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hKt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"hKu" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hKw" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hKy" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/junglebush/large{ + pixel_y = -10 + }, +/turf/open/floor/grass, +/area/science/research) +"hKz" = ( +/obj/machinery/conveyor{ + id = "robo2" + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"hKA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"hKB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Chapel Junction"; + sortType = 17 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hKC" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/commons/fitness/recreation) +"hKL" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engineering/supermatter) +"hKS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/virology) +"hKU" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"hKV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/medical/central) +"hKW" = ( +/obj/effect/turf_decal/bot, +/obj/vehicle/ridden/wheelchair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"hLb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hLs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/semki, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hLO" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Turret Chamber"; + req_one_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"hLS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"hLU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hLW" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light_switch/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/grass, +/area/security/prison/garden) +"hMb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"hMc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/starboard) +"hMi" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hMm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"hMn" = ( +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/airlock{ + id_tag = "Dorm9"; + name = "BDSM Club" + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"hMo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"hMr" = ( +/obj/item/skub, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hMA" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Security Customs"; + req_access_txt = "63" + }, +/obj/structure/chair/stool{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint) +"hMC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hMD" = ( +/obj/structure/table/glass, +/obj/item/electropack, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"hME" = ( +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"hMF" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"hMM" = ( +/obj/machinery/door/airlock/research{ + name = "Bomb Assembly"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"hMS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/white/end{ + dir = 1 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"hMV" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"hMY" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hMZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Surgery Room" + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"hNa" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/window/plasma/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"hNk" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hNs" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/security/prison/rec) +"hNu" = ( +/obj/machinery/pdapainter/medbay, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Office"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/noticeboard/cmo{ + pixel_y = 31 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"hNw" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"hNC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"hNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hNI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/freezer{ + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"hNP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"hNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/peaches/maint, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hOa" = ( +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hOh" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hOp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"hOr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"hOv" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"hOB" = ( +/turf/closed/wall, +/area/security/brig/upper) +"hOG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/window, +/obj/item/price_tagger{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/item/sales_tagger{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"hOH" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/science/research) +"hOI" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/brig) +"hOJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hOK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/machinery/computer/mechpad{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"hOQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"hOU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central/secondary) +"hOV" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"hOY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"hPg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hPi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hPm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hPu" = ( +/turf/open/floor/plasteel, +/area/medical/virology) +"hPx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/holohoop{ + dir = 8; + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness) +"hPz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"hPE" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"hPH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hPI" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"hPJ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"hPK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/command/heads_quarters/hos) +"hPP" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"hPS" = ( +/obj/structure/table, +/obj/item/pai_card, +/turf/open/floor/glass, +/area/commons/dorms) +"hPV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/main) +"hQd" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hQg" = ( +/obj/structure/table{ + name = "Arms dealer" + }, +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"hQl" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"hQr" = ( +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"hQv" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hQw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Lower deck acces staircase" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hQD" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/cargo/office) +"hQI" = ( +/obj/structure/curtain/cloth, +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"hQL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hQN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"hQV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/warden, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"hQW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hQX" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hRf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"hRj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"hRk" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"hRv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"hRy" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"hRz" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"hRA" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"hRB" = ( +/obj/machinery/bookbinder, +/obj/structure/cable, +/turf/open/floor/wood, +/area/security/prison/rec) +"hRE" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"hRG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"hRH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Aft Port"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hRK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"hRM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Office"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"hRO" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"hRP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/execution/education) +"hRU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/science/research) +"hRV" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/kotahi, +/turf/open/floor/wood, +/area/service/bar/atrium) +"hRX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"hRY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Project Room Lower"; + dir = 1; + name = "atmospherics camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"hSb" = ( +/obj/machinery/button/door{ + id = "kitchenside"; + name = "Kitchen Side Shutters"; + pixel_x = -7; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/machinery/button/door{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters"; + pixel_x = 8; + pixel_y = -24; + req_access_txt = "28" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"hSc" = ( +/obj/machinery/vending/sustenance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hSd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"hSf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"hSi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hSw" = ( +/obj/structure/table/wood, +/obj/item/stack/sheet/mineral/sandstone/thirty, +/obj/item/chisel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"hSx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell8"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"hSP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hSR" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"hSZ" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"hTj" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"hTn" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Holding Cell"; + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hTq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"hTH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"hTI" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"hTM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"hTN" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Warehouse"; + dir = 4; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hTT" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"hTU" = ( +/obj/structure/window/plasma/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"hTZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"hUc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"hUk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hUl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/security/prison/rec) +"hUp" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"hUr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"hUu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"hUx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Mixing Lab Center"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"hUF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hUG" = ( +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/port/fore) +"hUH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"hUW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/plasticflaps/opaque{ + name = "Service Deliveries" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Service" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"hUZ" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"hVa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Overgrown Gardain" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"hVc" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"hVd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hVg" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Bridge - Command Bar"; + name = "command camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"hVl" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"hVm" = ( +/obj/structure/flora/tree/jungle/small, +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/grass, +/area/hallway/primary/central) +"hVv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"hVx" = ( +/obj/structure/rack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/coffee, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"hVB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"hVD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/processing) +"hVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hVQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"hVR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hWh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"hWk" = ( +/obj/machinery/recharge_station, +/obj/effect/landmark/start/cyborg, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"hWs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"hWx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hWz" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness/locker_room) +"hWG" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hWK" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"hWL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood, +/area/security/prison/rec) +"hWM" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"hWN" = ( +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"hWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hWQ" = ( +/obj/structure/table, +/obj/item/plate, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"hWS" = ( +/turf/closed/wall/r_wall, +/area/cargo/office) +"hWV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"hXb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hXc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hXd" = ( +/obj/machinery/suit_storage_unit/open, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"hXg" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"hXh" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"hXj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hXk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"hXr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hXw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hXB" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hXC" = ( +/obj/structure/table/glass, +/obj/item/spear, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"hXG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"hXI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hXN" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"hXP" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"hXY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"hYl" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/service/bar/atrium) +"hYm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"hYn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"hYs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/ten_k/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hYv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"hYw" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/service/chapel/main) +"hYB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/chair/plastic, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"hYC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hYD" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hYE" = ( +/turf/closed/wall, +/area/command) +"hYH" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/rnd/research_director, +/obj/item/clothing/under/rank/rnd/research_director/skirt, +/obj/item/clothing/under/rank/rnd/research_director/alt, +/obj/item/clothing/under/rank/rnd/research_director/alt/skirt, +/obj/item/clothing/under/rank/rnd/research_director/turtleneck, +/obj/item/clothing/under/rank/rnd/research_director/turtleneck/skirt, +/obj/item/clothing/under/rank/rnd/research_director/doctor_hilbert, +/obj/item/clothing/neck/cloak/rd, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"hYJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 9 + }, +/obj/machinery/recharger, +/obj/machinery/recharger{ + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"hYK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room) +"hYO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hYR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hYT" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"hYV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"hZg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hZh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/brown/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hZk" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/bot_red, +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"hZs" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"hZE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Recreation - Gym Lower"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"hZR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"hZX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"iad" = ( +/obj/item/clothing/under/color/black{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/black{ + pixel_y = 7 + }, +/obj/item/clothing/under/color/black{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/jumpskirt/black{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/black{ + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/black{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"iae" = ( +/obj/machinery/restaurant_portal/restaurant, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/service/kitchen) +"iaf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iap" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"iaq" = ( +/turf/open/floor/plasteel, +/area/security/warden) +"ias" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"iat" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"iaz" = ( +/obj/machinery/light/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"iaD" = ( +/obj/item/trash/syndi_cakes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"iaE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"iaH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"iaJ" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/wrench, +/obj/item/flashlight/seclite, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iaM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"iaO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"iaP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iaU" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"iaW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"iaY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"ibc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/bridge) +"ibd" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ibj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"ibk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"ibl" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"ibm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ibn" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ibq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"ibt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"ibT" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"ibW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/grass, +/area/science/genetics) +"ice" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/obj/effect/landmark/secequipment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"icf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ici" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/miningdock) +"ico" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"icy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"icA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"icG" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"icH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"icK" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"icM" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/dogbed, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"icU" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"icV" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"icX" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"icZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/implantchair/genepurge, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"ida" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"idd" = ( +/obj/machinery/power/shieldwallgen/anchored{ + shield_range = 14 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"idk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"idl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"idp" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"idr" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/mecha_part_fabricator/sci, +/turf/open/floor/plasteel, +/area/science/lab) +"idv" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"idw" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"idA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet, +/area/security/courtroom) +"idB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"idG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"idI" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"idK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"idT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard Foremost Central"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"idW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"idX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"idY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"idZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination{ + location = "Escape" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"iea" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno10"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ieg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iel" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"ieq" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ieu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashbangs{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/storage/box/teargas{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/gun/grenadelauncher, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"iev" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Virology Ward 2"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"iez" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/storage) +"ieB" = ( +/obj/structure/table, +/obj/item/clothing/gloves/botanic_leather, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ieD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ieL" = ( +/obj/machinery/mecha_part_fabricator/med, +/turf/open/floor/plasteel, +/area/medical/storage) +"ieO" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"ieS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ieV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ifh" = ( +/turf/open/floor/engine/air, +/area/engineering/atmos) +"ifi" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"ifl" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Control"; + name = "holodeck camera" + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ifo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"ifs" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/cargo/office) +"ifu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/qm/perch) +"ifw" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"ifx" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"ifB" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/maintenance/aft) +"ifG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned clown Chamber"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"ifK" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness) +"ifN" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"ifP" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ifT" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ifU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ifV" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/upper) +"ifX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iga" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"igb" = ( +/obj/structure/noticeboard/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ige" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"igk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"igx" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central) +"igL" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/grown/coffee, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"igN" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"igO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"igV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/aft) +"igY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10; + layer = 3.1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/dorms) +"iha" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ihf" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"ihj" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/department/medical) +"ihk" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ihn" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/mime{ + pixel_x = 4 + }, +/obj/item/toy/figure/clown{ + pixel_x = -4 + }, +/obj/machinery/camera{ + c_tag = "Theater Backstage"; + dir = 1; + name = "service camera" + }, +/turf/open/floor/wood, +/area/service/theater) +"iht" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Morgue"; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"ihv" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"ihx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ihH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ihI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"ihQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ihS" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ihX" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"iia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"iid" = ( +/turf/open/floor/plasteel/stairs/right, +/area/cargo/storage) +"iif" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hop) +"iio" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"iis" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"iix" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"iiz" = ( +/obj/structure/table/glass, +/obj/item/food/jellysandwich/slime, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"iiA" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"iiC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"iiD" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"iiJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/department/engine) +"iiM" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"iiS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/cargo/warehouse/upper) +"iiW" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"ijf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"iji" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"ijj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"ijm" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"ijo" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"ijr" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ijt" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ijw" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/clothing/under/rank/security/detective, +/obj/item/clothing/suit/det_suit{ + icon_state = "curator" + }, +/obj/item/clothing/head/fedora/det_hat{ + icon_state = "curator" + }, +/obj/machinery/camera{ + c_tag = "Detective's Study" + }, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"ijx" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Kitchen" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen/coldroom) +"ijB" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"ijD" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science) +"ijG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"ijH" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/breakroom) +"ijM" = ( +/obj/structure/stairs/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ijV" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"ijX" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ikg" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"iko" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"ikr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ikv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ikx" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Secure Gear Storage"; + req_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"ikA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ikI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Detective's Office Maintenance"; + req_access_txt = "4" + }, +/turf/open/floor/plating, +/area/security/courtroom) +"ikL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ikM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port) +"ikQ" = ( +/obj/machinery/door/window/northright{ + dir = 8; + name = "Research Delivery"; + req_access_txt = "7" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/science/research) +"ikU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ikV" = ( +/turf/open/floor/plasteel/white, +/area/science) +"ila" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"ilb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"ilh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"ili" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ilz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ilB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ilD" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ilG" = ( +/obj/structure/stairs/south, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"ilK" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Barbershop Lower"; + dir = 1; + name = "hallway camera" + }, +/obj/structure/chair/comfy{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"ilM" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"ilN" = ( +/obj/structure/sign/poster/contraband/c20r, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"ilU" = ( +/obj/structure/table/wood, +/obj/item/storage/toolbox/artistic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ilX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"ima" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"iml" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"imn" = ( +/obj/item/price_tagger, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"imo" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"imx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"imA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark/side, +/area/science/misc_lab) +"imG" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"imQ" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"imR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/hallway/primary/port) +"imT" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"imW" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"inb" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/library/printer) +"ind" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/assembly/timer{ + pixel_x = -3; + pixel_y = -9 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -9 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"ing" = ( +/obj/structure/bed/pod, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ini" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"inl" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/medical/psychology) +"inr" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"iny" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"inD" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"inO" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/atmos/upper) +"inS" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"inU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ioa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/fitness) +"ioc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Common Mining Shuttle Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"iof" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"iog" = ( +/obj/structure/fence/door, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ioh" = ( +/turf/closed/wall/rust, +/area/maintenance/department/science/xenobiology) +"iom" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"iov" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/hallway/primary/upper) +"iow" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"ioz" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/airlock_painter, +/obj/machinery/airalarm/directional/east, +/obj/item/rcl/pre_loaded, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"ioC" = ( +/obj/machinery/camera{ + c_tag = "Courtroom - Entrance"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ioD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"ioF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ioG" = ( +/obj/structure/grille/broken, +/obj/item/chair, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ioJ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"ioK" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"ioP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/maintenance/fore/upper) +"ioS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ioW" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"ioY" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"ioZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main) +"ipa" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/item/storage/firstaid/fire, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"ipf" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/aft) +"iph" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Central Hallway - Lower Starboard Aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ipi" = ( +/obj/item/cultivator/rake, +/turf/open/floor/stone, +/area/maintenance/fore) +"ipj" = ( +/obj/structure/chair/comfy/black{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_y = -23 + }, +/obj/machinery/requests_console/directional/south{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console"; + pixel_y = -37 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + name = "command camera" + }, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"ipk" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/service/hydroponics) +"ipn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ipo" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"ipq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"ipx" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"ipy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Fore Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ipz" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ipD" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 4; + pixel_x = -4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"ipG" = ( +/obj/structure/janitorialcart{ + dir = 4 + }, +/obj/item/pushbroom, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ipM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ipN" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/cargo/office) +"ipR" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ipZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/pdapainter/research, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"iqf" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iqi" = ( +/obj/structure/table/glass, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"iqm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"iqs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"iqF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"iqJ" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"iqL" = ( +/obj/structure/industrial_lift, +/obj/structure/railing, +/turf/open/openspace, +/area/cargo/sorting) +"iqN" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window, +/turf/open/floor/grass, +/area/commons/lounge) +"irb" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Perma Office"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security) +"irc" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"ird" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"irk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"irn" = ( +/obj/structure/table{ + name = "Blacksmith" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/price_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"iry" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"irF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"irL" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "8" + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"irS" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/plasteel{ + desc = "It's a pool for swimming in!"; + name = "pool" + }, +/area/command/heads_quarters/captain/private) +"irU" = ( +/obj/machinery/computer/security/labor{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"irX" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"irZ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/sosjerky, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"isb" = ( +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"isk" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"isn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"isq" = ( +/obj/item/kirbyplants/dead, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"isx" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard/directional/east, +/obj/item/wallframe/apc, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"isE" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"isH" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"isI" = ( +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"isJ" = ( +/obj/structure/table, +/obj/item/screwdriver, +/obj/item/hatchet/cutterblade, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"isN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"isO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"isR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/indestructible, +/area/science/test_area) +"isT" = ( +/obj/structure/chair/comfy/teal{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "cmoshutter3"; + name = "CMO Quarters Shutters"; + pixel_x = 25; + pixel_y = 0; + req_access_txt = "40" + }, +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"isU" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall, +/area/commons/toilet/restrooms) +"ita" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/south, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Experiment Lab"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"itf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"itm" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/door_buttons/access_button{ + dir = 1; + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"itp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"itq" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/obj/item/stamp/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"itr" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = -11; + pixel_y = 9 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"itu" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/cytology) +"itx" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"ity" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"itE" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"itG" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"itH" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"itI" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"itJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"itM" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"itO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"itQ" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"itU" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"itV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"iuc" = ( +/obj/machinery/button/door{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_x = 26; + pixel_y = 6; + specialfunctions = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"iue" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"iuf" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iuh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"iuj" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iul" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/flashlight/lamp/green, +/obj/machinery/button/door{ + id = "qmprivacy"; + name = "Privacy Control"; + pixel_x = -7; + pixel_y = 1; + req_access_txt = "41" + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"iun" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/office) +"iuq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ius" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range"; + req_one_access_txt = "1;4" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/security/range) +"iuu" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"iuv" = ( +/obj/effect/turf_decal/bot_red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"iuC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/instrument/saxophone, +/obj/item/instrument/harmonica, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"iuJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iuP" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"iuS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iuX" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/toxin{ + pixel_y = 7 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"iuY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/medical/virology) +"iva" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"ivb" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/folder/red, +/obj/item/taperecorder, +/obj/item/tape, +/obj/item/tape, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"ivc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ive" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/window, +/obj/machinery/camera{ + c_tag = "Security - Labor Shuttle Control"; + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ivv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ivz" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ivA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window, +/obj/machinery/door/window/westleft{ + pixel_x = -3 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ivC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ivE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"ivI" = ( +/obj/structure/rack, +/obj/item/vending_refill/hydroseeds, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/dinnerware, +/obj/item/vending_refill/wardrobe/hydro_wardrobe, +/obj/item/vending_refill/wardrobe/bar_wardrobe, +/obj/item/vending_refill/wardrobe/chef_wardrobe, +/obj/item/vending_refill/wardrobe/jani_wardrobe, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"ivJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ivO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"ivU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"ivV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"iwb" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"iwd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iwe" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iwg" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iww" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"iwC" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port) +"iwE" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"iwF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"iwG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"iwH" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/south{ + pixel_x = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"iwI" = ( +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"iwL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/north{ + layer = 3.5 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"iwU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"iwV" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"iwW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iwX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ixb" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"ixe" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"ixh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"ixi" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/hallway/primary/central) +"ixk" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ixq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"ixr" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ixA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/chapel) +"ixF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ixI" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Asylum Entrance"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/psychology) +"ixK" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"ixO" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security) +"ixS" = ( +/obj/structure/sign/poster/contraband/kudzu, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"ixV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"iyb" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"iyc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iyh" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"iyj" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"iyk" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Perma Office"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security) +"iyo" = ( +/obj/item/clothing/under/color/jumpskirt/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iyv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"iyx" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/mining_voucher, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"iyy" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"iyA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iyB" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/dogbed, +/mob/living/simple_animal/sloth/paperwork, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/cargo/qm) +"iyD" = ( +/obj/item/melee/baseball_bat, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"iyE" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"iyG" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_tele{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/hand_labeler, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/teleporter) +"iyN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/locker_room) +"iyQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/dorms) +"iyV" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/chair/sofa, +/turf/open/floor/wood, +/area/service/bar/atrium) +"iyW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"iyY" = ( +/obj/machinery/computer/arcade{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"izb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"ize" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"izk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"izn" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"izp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + dir = 8 + }, +/area/security) +"izt" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard) +"izB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"izO" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"izS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"izV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 1; + name = "Medbay Monitor"; + network = list("medbay"); + pixel_y = -28 + }, +/obj/effect/landmark/start/psychologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"izZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"iAd" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"iAg" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"iAk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"iAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"iAm" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/tape, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"iAn" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"iAq" = ( +/obj/machinery/power/floodlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"iAr" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"iAs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"iAt" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"iAu" = ( +/obj/structure/mirror/directional/north{ + pixel_y = 33 + }, +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/ce) +"iAD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iAE" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"iAK" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"iAM" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/main) +"iAN" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"iAO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"iAR" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"iAS" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/tail/cat, +/obj/item/organ/ears/cat, +/obj/item/organ/heart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"iBb" = ( +/obj/structure/rack, +/obj/item/storage/box/shipping, +/obj/item/pushbroom, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/storage) +"iBd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"iBg" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Side Room"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"iBh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"iBj" = ( +/obj/machinery/light/small, +/obj/structure/table, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"iBq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/paper/fluff{ + info = "Do NOT build a singularity in this thing, it is meant for teslas only and it is not safe to operate with the intense gravitational distortions and EMPs the singularity makes, if you get your ass sucked in by a T5 black hole don't blame the ship design team."; + name = "Note to Engineering" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/lobby) +"iBr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"iBy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iBB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iBF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iBH" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"iBO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/grass, +/area/command/heads_quarters/cmo) +"iBQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iBR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"iBU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"iBX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"iCb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/dest_tagger, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"iCc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"iCi" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/smes, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"iCl" = ( +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Starboard Aft"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iCv" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"iCx" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"iCz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"iCA" = ( +/turf/closed/wall, +/area/security/checkpoint/science/research) +"iCK" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/prison/upper) +"iCL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"iCN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/science/research) +"iCS" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/computer/teleporter, +/obj/machinery/newscaster/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"iCT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"iCX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/west, +/obj/machinery/button/elevator/directional/west{ + id = "CargoElevator" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"iDb" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"iDc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"iDe" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"iDm" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "cargoload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iDs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"iDw" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/telecomms/relay/preset/station, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iDA" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"iDB" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/plating, +/area/engineering/main) +"iDI" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iDJ" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"iDK" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iDV" = ( +/obj/structure/table/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"iEa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"iEb" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"iEc" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"iEf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/science/research) +"iEi" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Service Deliveries"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/sorting) +"iEj" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iEp" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"iEr" = ( +/obj/structure/railing/corner, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/xenobiology) +"iEt" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"iEv" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iEw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iEx" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/service/chapel) +"iEC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"iEQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"iER" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/temperature_gate{ + dir = 4; + on = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"iEU" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/upper) +"iEV" = ( +/obj/structure/shuttle/engine/huge{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/department/medical/central) +"iEZ" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters) +"iFh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"iFo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/crowbar, +/turf/open/openspace, +/area/maintenance/starboard/central) +"iFp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"iFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iFF" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet, +/area/security/courtroom) +"iFH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"iFI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"iFJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"iFK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iFR" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"iFY" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security) +"iGg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"iGj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iGk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/cargo/qm) +"iGs" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"iGx" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"iGA" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/clothing/shoes/galoshes, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"iGO" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iGP" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iGR" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/medical/exam_room) +"iGW" = ( +/obj/structure/table/glass, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/item/reagent_containers/dropper{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"iHf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"iHg" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/glass/reinforced, +/area/science) +"iHk" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/fore) +"iHs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"iHv" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"iHz" = ( +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"iHM" = ( +/obj/structure/table, +/obj/item/folder, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"iHS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"iHU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iHV" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"iIj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"iIv" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"iIz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"iIH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iIQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"iIT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"iIU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"iIV" = ( +/obj/machinery/button/door{ + id = "AuxToilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/white, +/area/commons/toilet/auxiliary) +"iIX" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark{ + dir = 4 + }, +/area/security) +"iJd" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"iJi" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/break_room) +"iJj" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Command Hallway - HoP Line" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"iJk" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"iJm" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"iJn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"iJp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"iJv" = ( +/obj/machinery/door/airlock/silver{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"iJy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"iJB" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"iJC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"iJE" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iJG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"iJM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/vending/security, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"iJR" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iJY" = ( +/turf/closed/wall, +/area/service/library) +"iKa" = ( +/obj/machinery/power/floodlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"iKd" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"iKf" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iKj" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"iKm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup17"; + location = "hallup16" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iKo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"iKw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"iKx" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Luggagebelt" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"iKz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Controll Room"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"iKA" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"iKB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iKI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup4"; + location = "hallup3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iKR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/science/research) +"iKS" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"iKT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"iKV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"iLa" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/interrogation{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"iLc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"iLd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"iLj" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"iLk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"iLn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"iLq" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iLy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iLE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iLK" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/entry) +"iLL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"iLN" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/science/cytology) +"iLT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"iLU" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"iMj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/item/screwdriver, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"iMl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"iMm" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"iMr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"iMu" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/port) +"iMw" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"iMz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iMB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"iMH" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iML" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"iMN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"iMU" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"iMY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"iMZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iNf" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"iNg" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iNk" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"iNr" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"iNu" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Console Room" + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"iNx" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/secondary/entry) +"iNA" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/structure/window, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"iNG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iNJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iNK" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"iNM" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 2"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"iNO" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/dorms) +"iNU" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iNV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"iNX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway - Port"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iNZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/command{ + name = "Council Chambers"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"iOb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"iOd" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iOi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iOj" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"iOn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"iOt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"iOw" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"iOA" = ( +/obj/structure/table/wood, +/obj/item/nullrod, +/turf/open/floor/wood, +/area/service/chapel/office) +"iOE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"iOF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"iOH" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"iOO" = ( +/obj/machinery/door/airlock{ + name = "THE RING" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iOR" = ( +/turf/closed/wall, +/area/service/library/private) +"iOU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"iOZ" = ( +/obj/item/kirbyplants/random, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"iPa" = ( +/obj/structure/chair/sofa/left{ + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"iPe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iPh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"iPk" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"iPo" = ( +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"iPq" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"iPs" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 16; + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"iPt" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"iPz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iPM" = ( +/obj/structure/bed, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"iPN" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/psychology) +"iPO" = ( +/obj/structure/window, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/computer/security/telescreen/vault{ + dir = 4; + pixel_x = -26 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"iPQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"iPW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"iPY" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Brig Infirmary"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"iQa" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"iQg" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"iQi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"iQj" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/maintenance/disposal) +"iQk" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/commons/dorms) +"iQr" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"iQv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"iQw" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"iQy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"iQz" = ( +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"iQA" = ( +/obj/item/trash/pistachios, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"iQF" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"iQG" = ( +/obj/structure/bed, +/obj/item/bedsheet/chaplain, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"iQJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"iQL" = ( +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iQO" = ( +/obj/machinery/button/door{ + id = "MainSurgeryTheatre"; + name = "Privacy Shutter Controll"; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"iQQ" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 14; + pixel_y = -1 + }, +/obj/machinery/camera{ + c_tag = "Science - Robotics Surgery"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"iQS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"iQT" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iQX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"iQY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastleft{ + dir = 2; + name = "Service Deliveries"; + req_one_access_txt = "25;26;35;28;22;37;46;38;70" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"iRa" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"iRc" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iRd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"iRj" = ( +/obj/structure/lattice, +/obj/item/stack/sheet/plasteel/twenty, +/turf/open/space/openspace, +/area/space/nearstation) +"iRm" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = 5; + pixel_y = -37 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"iRr" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"iRt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"iRv" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/cmo) +"iRy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"iRC" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"iRD" = ( +/obj/machinery/camera{ + c_tag = "Leisure Area - Lasertag Blue Fore"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"iRF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"iRI" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Mech Bay"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/recharge_floor, +/area/science/robotics/mechbay) +"iRJ" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"iRR" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iRS" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iRU" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"iSk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"iSl" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"iSm" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"iSr" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/security/courtroom) +"iSs" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/rd) +"iSu" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"iSz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"iSC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iSJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"iSV" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"iTc" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iTg" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iTh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/customs/auxiliary) +"iTj" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iTk" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"iTl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"iTs" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/command) +"iTw" = ( +/obj/structure/ladder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iTA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"iTR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/security/prison) +"iTS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"iUb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"iUe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"iUf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"iUg" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/hallway/primary/central) +"iUi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"iUp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iUr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"iUy" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"iUO" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iUP" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"iUS" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"iUT" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft) +"iUV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iUW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iVb" = ( +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"iVc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility/full, +/turf/open/floor/plating, +/area/maintenance/port) +"iVe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"iVg" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iVi" = ( +/obj/structure/falsewall/reinforced, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"iVl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northright{ + dir = 4; + id = "Cell 4"; + name = "Cell 4"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"iVo" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"iVp" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/security/prison/garden) +"iVr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/space) +"iVt" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iVu" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"iVy" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iVB" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/hallway/secondary/exit) +"iVI" = ( +/obj/structure/fluff/drake_statue/falling, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"iVK" = ( +/obj/machinery/light/floor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iVM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/obj/structure/curtain/cloth/fancy, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Captainprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"iVO" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"iVS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/item/gun/ballistic/revolver/russian, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"iVT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"iVV" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness) +"iVX" = ( +/obj/structure/table/glass, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"iVY" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"iWa" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"iWd" = ( +/turf/closed/wall, +/area/service/hydroponics/garden/abandoned) +"iWf" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/primary/central) +"iWg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"iWi" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/multitool, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iWj" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iWm" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iWo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"iWr" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry3"; + name = "Line Reroute Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"iWv" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"iWw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"iWy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/aft/upper) +"iWA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/carpet, +/area/service/chapel/main) +"iWH" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iWK" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"iWP" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iWV" = ( +/obj/machinery/door/airlock/grunge{ + name = "Forbidden Chapel"; + req_access_txt = "27" + }, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"iXd" = ( +/obj/item/banner/cargo/mundane, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"iXf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"iXg" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iXj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"iXu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"iXw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids{ + pixel_y = 6 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"iXB" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Atmos to Loop" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"iXH" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Office"; + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"iXL" = ( +/obj/machinery/computer/med_data, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet, +/area/security/detectives_office) +"iXO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"iXR" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"iXS" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/xenobiology) +"iYa" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"iYb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"iYc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"iYe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iYh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Engineering Desk"; + req_one_access_txt = "24;32" + }, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"iYj" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"iYn" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"iYr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"iYt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"iYx" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iYA" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 7; + pixel_y = 3 + }, +/turf/open/floor/grass, +/area/security/prison/garden) +"iYC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"iYJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iYK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/main) +"iYP" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"iYY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"iZc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"iZm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"iZq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"iZt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"iZu" = ( +/obj/machinery/door/airlock/wood{ + name = "Sauna" + }, +/obj/structure/fans/tiny, +/turf/open/floor/wood, +/area/commons/dorms) +"iZv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/brown/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iZA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"iZI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"iZM" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"iZN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iZQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry"; + name = "Free Acces Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"iZX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"jac" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"jaf" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/fore) +"jak" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Customs"; + dir = 4; + name = "customs camera" + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"jav" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/closet/radiation, +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Airlock"; + dir = 1; + name = "atmospherics camera" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"jaw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jaB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"jaD" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/security/prison/garden) +"jaJ" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/medical/virology) +"jaQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/stone, +/area/maintenance/starboard/fore) +"jaU" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jaV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/keycard/library, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"jbb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jbe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"jbl" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"jbo" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jbx" = ( +/obj/structure/table/glass, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/obj/item/plate, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"jby" = ( +/obj/structure/table/glass, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"jbz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"jbG" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"jbI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jbP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"jbS" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"jbT" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"jca" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"jce" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jcj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"jck" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Kitchen Diner Port"; + dir = 1; + name = "service camera" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jcr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/range) +"jcv" = ( +/obj/machinery/button/door/directional/south{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 25; + pixel_y = 25; + req_access_txt = "40" + }, +/obj/machinery/button/door/directional/north{ + id = "CMOdoor"; + name = "Door Lock"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 38; + req_access_txt = "40"; + specialfunctions = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"jcy" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Fore"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jcC" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"jcD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"jcG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"jcK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"jcW" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/simple_animal/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"jdf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"jdh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/cleanbot/medbay, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jdj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jdl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/pipe_dispenser, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"jdr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"jds" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jdu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint) +"jdv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"jdy" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"jdz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"jdB" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jdL" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"jdM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jdO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"jdU" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -3 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"jdW" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"jed" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"jej" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jep" = ( +/obj/machinery/button/door{ + id = "BotanyTest"; + name = "Test chamber shutters"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics/upper) +"jeA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "E.V.A. Storage Maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"jeC" = ( +/obj/machinery/airalarm/directional/west{ + pixel_x = -22 + }, +/obj/structure/rack, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/box/trackimp, +/obj/item/storage/lockbox/loyalty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"jeE" = ( +/obj/machinery/camera{ + c_tag = "Command Hallway - Central Port"; + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/command) +"jeL" = ( +/turf/closed/wall, +/area/security/checkpoint/escape) +"jeO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"jeP" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/primary/upper) +"jeU" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jeZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/component_printer, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"jfb" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/construction/engineering) +"jff" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/security/prison/garden) +"jfg" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jfi" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jfl" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white{ + dir = 1 + }, +/area/science/explab) +"jfp" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/caution{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jfv" = ( +/obj/machinery/vending/assist, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/science) +"jfG" = ( +/obj/structure/mirror/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/aft) +"jfL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jfN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"jfO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jgd" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"jgg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jgk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"jgl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jgo" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"jgu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jgw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jgE" = ( +/obj/item/kirbyplants/random, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jgF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"jgJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jgK" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/breakroom) +"jgL" = ( +/turf/open/floor/carpet, +/area/lawoffice) +"jgN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/medical/psychology) +"jgV" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"jhi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"jhk" = ( +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"jhr" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/central) +"jhv" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jhw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"jhx" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/upper) +"jhC" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jhG" = ( +/obj/item/trash/can/food/peaches/maint, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"jhO" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"jhP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_y = 3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"jhS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"jhY" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"jia" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"jig" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jij" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jik" = ( +/obj/structure/bed/maint, +/obj/machinery/flasher{ + id = "IsolationFlash2"; + pixel_x = -22; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = " Prison - Isolation 1"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light/small, +/turf/open/floor/vault, +/area/security/prison/safe) +"jin" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jio" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/service/hydroponics) +"jit" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"jiw" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"jix" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"jiy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"jiz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/dorms) +"jiF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"jiI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"jiK" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"jiL" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jiS" = ( +/obj/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/science/explab) +"jiT" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"jiV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"jjb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"jjc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/cargo/storage) +"jje" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"jjf" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"jjk" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jjm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"jjo" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"jju" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"jjz" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"jjA" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/lawoffice) +"jjB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"jjC" = ( +/obj/structure/filingcabinet, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"jjD" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"jjJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"jjP" = ( +/obj/item/kirbyplants/dead, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jjQ" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"jjW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"jjZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"jka" = ( +/obj/structure/bed, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"jkg" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"jkn" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"jkr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"jkv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"jkx" = ( +/turf/open/floor/plating, +/area/medical/abandoned) +"jkC" = ( +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating/airless, +/area/hallway/secondary/entry) +"jkD" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jkH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/central) +"jkI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"jkJ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jkT" = ( +/obj/structure/table, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jkV" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/sign/departments/drop{ + pixel_y = 31 + }, +/turf/open/floor/engine, +/area/cargo/office) +"jkX" = ( +/turf/open/floor/plasteel/stairs, +/area/command/heads_quarters/hos) +"jkY" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/primary/central) +"jlg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/xenobiology) +"jlk" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 9 + }, +/obj/item/lighter, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/cargo/qm) +"jlo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/table/wood/fancy/green, +/obj/item/statuebust/hippocratic{ + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"jlt" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jlw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jlB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison) +"jlF" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/medical/abandoned) +"jlK" = ( +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/green, +/area/medical/virology) +"jlQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jlY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"jmf" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jmg" = ( +/obj/structure/girder, +/obj/structure/barricade/wooden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jmh" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jmj" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jmv" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison/rec) +"jmx" = ( +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"jmz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jmG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/space) +"jmK" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Port" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jmM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"jmN" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"jmP" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 4 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"jmV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"jmY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/security/prison/rec) +"jmZ" = ( +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Robotics Surgery" + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"jnb" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"jne" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Genetics Junction"; + sortType = 23 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jns" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"jnt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"jny" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargounload" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jnD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"jnI" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 5 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"jnK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"jnM" = ( +/obj/structure/table, +/obj/item/inducer, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"jnN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/exodrone_control_console, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/storage) +"jnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"jnX" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/security/courtroom) +"jnY" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jom" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters) +"jor" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jov" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/cryo) +"joz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"joA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"joC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"joE" = ( +/obj/structure/barricade/security/ctf, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"joF" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"joJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"joK" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"joM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"joN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"joR" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"joZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Port" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jpd" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jpg" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"jph" = ( +/turf/open/openspace, +/area/hallway/secondary/service) +"jpl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jpp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"jpr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jps" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jpw" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"jpC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jpF" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jqa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/prison/rec) +"jqg" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/noticeboard/directional/south, +/obj/machinery/camera{ + c_tag = "Kitchen Lower"; + dir = 1; + name = "service camera" + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"jqi" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/primary/central) +"jqq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/main) +"jqr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jqu" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/prison/rec) +"jqx" = ( +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/turf/closed/wall, +/area/medical/morgue) +"jqy" = ( +/obj/structure/table/glass, +/obj/item/statuebust/hippocratic, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"jqA" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm7"; + name = "Cabin 7" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"jqC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jqD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jqE" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"jqG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jqJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"jqK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jqO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jqR" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"jrc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"jrf" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator"; + name = "engineering camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"jrn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jrp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"jrx" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology - Secure Cell"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"jrA" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"jrB" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/button/elevator/directional/west{ + id = "publicElevator2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"jrG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"jrL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"jrQ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 11 + }, +/turf/open/floor/carpet, +/area/security/prison/rec) +"jrT" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/grass, +/area/service/chapel) +"jrW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jrX" = ( +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"jrY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"jsa" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/cytology, +/obj/item/biopsy_tool, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"jsd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/office) +"jse" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"jst" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/holosign_creator/robot_seat/restaurant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"jsw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jsC" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/security/prison/rec) +"jsF" = ( +/obj/item/trash/tray, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jsI" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"jsJ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jsS" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"jsW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/science/storage) +"jsX" = ( +/turf/closed/wall, +/area/command/heads_quarters/ce) +"jta" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"jtb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"jtd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/starboard/central) +"jtj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"jtk" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"jtm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"jtn" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"jtr" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jts" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/locker) +"jtz" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jtE" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"jtH" = ( +/obj/machinery/bookbinder, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood, +/area/service/library/printer) +"jtK" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/machinery/door/window{ + name = "Secure Art Exhibition"; + req_access_txt = "37" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"jtP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jtS" = ( +/obj/structure/table/wood, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/toy/figure/lawyer, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"jtU" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jua" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"juh" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jul" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/secondary/exit) +"jun" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/commons/fitness/recreation) +"jux" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/arrows/white{ + color = "#0000FF"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"juJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"juK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/security/prison/rec) +"juW" = ( +/obj/structure/fence, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"juX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"juY" = ( +/obj/effect/turf_decal/stripes/red/line, +/turf/open/floor/engine, +/area/science/cytology) +"juZ" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/experimentor{ + pixel_x = -16 + }, +/obj/item/folder{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder, +/turf/open/floor/plasteel/dark/side, +/area/science/explab) +"jvc" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/hallway/primary/upper) +"jve" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jvh" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/upper) +"jvk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"jvr" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"jvs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jvu" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"jvy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/central) +"jvA" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"jvC" = ( +/obj/machinery/door/airlock{ + name = "Representative's Quarters"; + req_access_txt = "101" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"jvE" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"jvK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno10"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"jvO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"jvP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"jvW" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jvZ" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"jwg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jws" = ( +/obj/structure/table, +/obj/item/stack/spacecash/c20{ + pixel_y = 5 + }, +/obj/item/stack/spacecash/c50, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jwu" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Test Chamber"; + dir = 8; + name = "service camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"jwv" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jww" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/central) +"jwz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"jwC" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jwF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"jwG" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"jwJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jwM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"jwP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Upper Fore Port"; + name = "hallway camera" + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jwT" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "gatewayblastdoors"; + name = "Gateway/Teleporter seperation blast doors"; + pixel_x = 6; + pixel_y = -5; + req_access_txt = "17" + }, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/machinery/button/door{ + id = "WestLockdown1"; + name = "West Bridge Lockdown"; + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"jxb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/engineering/engine_room; + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"jxc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/wooden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jxe" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"jxg" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"jxq" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space/openspace, +/area/space/nearstation) +"jxw" = ( +/obj/structure/closet/secure_closet/freezer/fridge{ + req_access = null + }, +/obj/item/storage/box/ingredients/vegetarian, +/obj/item/storage/box/ingredients/italian, +/obj/item/storage/box/ingredients/fruity, +/obj/item/storage/box/ingredients/fiesta, +/obj/item/storage/box/ingredients/american, +/obj/item/reagent_containers/food/condiment/flour{ + list_reagents = list(/datum/reagent/consumable/flour=600); + name = "Premium All-Purpose Flour (16KG)"; + volume = 600 + }, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/condiment/enzyme{ + list_reagents = list(/datum/reagent/consumable/enzyme=500); + name = "universe-sized universal enyzyme"; + volume = 500 + }, +/obj/item/reagent_containers/food/condiment/rice{ + list_reagents = list(/datum/reagent/consumable/rice=150); + name = "Basmati Rice Sack (4KG)"; + volume = 150 + }, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/rawbacon, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"jxx" = ( +/obj/machinery/button/elevator{ + id = "CargoElevator"; + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Backroom"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"jxy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/item/shard, +/obj/item/wrench, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"jxI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jxK" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jxU" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard Bow"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jxV" = ( +/turf/open/floor/carpet, +/area/service/library/printer) +"jxW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"jyb" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"jyf" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jyg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/research) +"jyh" = ( +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"jyl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"jyp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "evablastdoor"; + name = "East Bridge Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva/upper) +"jyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"jyw" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"jyC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jyD" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"jyH" = ( +/obj/structure/table, +/obj/item/electropack, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jyN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"jyP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jyS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jza" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/pharmacy) +"jzf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"jzg" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/hypospray/medipen{ + pixel_y = 8 + }, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/medigel/libital, +/obj/item/reagent_containers/medigel/aiuri{ + pixel_x = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"jzr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"jzv" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/science/explab) +"jzx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup9"; + location = "hallup8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jzy" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"jzz" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"jzA" = ( +/obj/structure/closet/cardboard, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jzC" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"jzG" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"jzH" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/commons/dorms) +"jzK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jzM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/noticeboard/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/qm/perch) +"jzN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"jzO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jzX" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jAd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/security/courtroom) +"jAg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jAh" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"jAl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"jAo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"jAs" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Command - Representative's Quarters"; + dir = 1; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"jAt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"jAv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"jAw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness) +"jAz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"jAF" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/library) +"jAI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"jAL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"jAR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"jAV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"jBd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/athletic_mixed, +/obj/item/clothing/head/sombrero, +/obj/item/clothing/head/helmet/justice, +/obj/item/clothing/head/rice_hat, +/obj/item/clothing/mask/joy, +/obj/item/clothing/mask/luchador/tecnicos, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jBe" = ( +/obj/structure/table/wood, +/obj/structure/window{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"jBf" = ( +/obj/machinery/disposal/bin, +/obj/machinery/newscaster/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"jBt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"jBC" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/service) +"jBE" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Recreation - Fore"; + dir = 4; + name = "recreation camera" + }, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/assistant, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jBG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"jBL" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jBM" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"jBO" = ( +/obj/structure/mirror/directional/north{ + pixel_y = 33 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/cargo/qm) +"jBP" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"jBT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"jBY" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"jCj" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jCn" = ( +/obj/item/trash/boritos, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"jCo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"jCs" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"jCx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"jCy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"jCB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"jCC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"jCE" = ( +/obj/machinery/button/door/directional/north{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + req_access_txt = "19" + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"jCR" = ( +/obj/effect/turf_decal/bot_red, +/obj/machinery/computer/mech_bay_power_console, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"jCW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jCZ" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"jDa" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/science) +"jDk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jDn" = ( +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jDp" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"jDr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"jDs" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jDx" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"jDA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"jDE" = ( +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"jDH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/cargo/qm) +"jDK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jDR" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/pdapainter/security, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"jDS" = ( +/obj/machinery/griddle, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"jDT" = ( +/obj/structure/shuttle/engine/huge{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"jDX" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"jDY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"jDZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"jEa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"jEe" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 5; + name = "blue line" + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"jEg" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"jEj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"jEn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"jEr" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"jEu" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/machinery/airalarm/directional/south, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"jEy" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"jEF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/mob/living/simple_animal/bot/medbot, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jEG" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/service/abandoned_gambling_den) +"jEH" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"jES" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"jEW" = ( +/obj/structure/table/reinforced, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jFb" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jFd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"jFe" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"jFg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"jFi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/kitchen/fork{ + pixel_x = -2 + }, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork{ + pixel_x = 2 + }, +/obj/item/kitchen/fork{ + pixel_x = -2 + }, +/obj/item/kitchen/fork, +/obj/item/kitchen/fork{ + pixel_x = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"jFy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"jFH" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/structure/chair/wood{ + dir = 8; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"jFK" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"jFM" = ( +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"jFN" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"jFU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"jFW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"jFX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"jFZ" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"jGc" = ( +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"jGe" = ( +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"jGg" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jGh" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jGq" = ( +/obj/machinery/door/window/southright{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jGy" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Storage Lower"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jGD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"jGN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"jGP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"jGQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"jGR" = ( +/obj/structure/training_machine, +/obj/item/target, +/turf/open/floor/plasteel, +/area/commons/fitness) +"jGS" = ( +/obj/machinery/light/small/broken/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"jHf" = ( +/turf/closed/indestructible/opshuttle, +/area/science/test_area) +"jHi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/port/central) +"jHk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"jHn" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"jHr" = ( +/turf/open/floor/plating, +/area/commons/dorms) +"jHs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"jHv" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"jHD" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"jHE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"jHG" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"jHJ" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jHK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jHM" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"jHN" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"jHP" = ( +/obj/structure/table, +/obj/item/toy/plush/carpplushie, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jHW" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jIb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"jId" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"jIe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jIi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/cargo/sorting) +"jIk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"jIm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jIp" = ( +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"jIq" = ( +/obj/structure/table, +/obj/item/food/cubannachos, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jIw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jIA" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/command) +"jID" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"jIK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jIM" = ( +/obj/structure/window, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"jIP" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jIQ" = ( +/obj/structure/table/glass, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"jIR" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/teleport/station, +/turf/open/floor/circuit, +/area/command/gateway) +"jIV" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"jIW" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"jIY" = ( +/obj/machinery/door/airlock/medical{ + name = "Break Room"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"jJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"jJf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jJi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"jJj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"jJn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room) +"jJr" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"jJt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"jJw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"jJA" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Holding Cell"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"jJC" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"jJF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"jJH" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/kitchen/fork{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/kitchen/spoon{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"jJW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"jJX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/grass, +/area/security/brig/upper) +"jKa" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/arcadeticket, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"jKd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jKj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"jKl" = ( +/obj/structure/flora/tree/palm, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"jKo" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/item/crowbar, +/obj/machinery/firealarm/directional/south{ + pixel_x = 16; + pixel_y = -28 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"jKp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ai_monitored/command/storage/eva/upper) +"jKs" = ( +/obj/machinery/computer/arcade/orion_trail{ + desc = "For gamers only. Casuals need not apply."; + icon_screen = "library"; + icon_state = "oldcomp"; + name = "Gamer Computer" + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = -32 + }, +/obj/item/toy/katana{ + desc = "As seen in your favourite Japanese cartoon."; + name = "anime katana" + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy{ + pixel_x = 13 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/purple, +/area/maintenance/fore/upper) +"jKw" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"jKB" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/obj/item/holosign_creator/atmos, +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Controll Room"; + name = "atmospherics camera" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"jKF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"jKH" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/rock/jungle, +/turf/open/floor/grass, +/area/service/cafeteria) +"jKI" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/science/breakroom) +"jKK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"jKT" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"jKX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"jLb" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"jLd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"jLe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"jLj" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/brig) +"jLl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jLu" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"jLv" = ( +/obj/structure/table, +/obj/item/soap, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"jLD" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"jLF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"jLH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/upper) +"jLN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"jLP" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"jLT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"jLY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"jMb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + storage_capacity = 50 + }, +/obj/item/clothing/under/color/maroon, +/obj/item/clothing/under/color/lightpurple, +/obj/item/clothing/under/color/lightbrown, +/obj/item/clothing/under/color/brown, +/obj/item/clothing/under/color/darkblue, +/obj/item/clothing/under/color/darkgreen, +/obj/item/clothing/under/color/teal, +/obj/item/clothing/under/color/jumpskirt/maroon, +/obj/item/clothing/under/color/jumpskirt/lightpurple, +/obj/item/clothing/under/color/jumpskirt/lightbrown, +/obj/item/clothing/under/color/jumpskirt/brown, +/obj/item/clothing/under/color/jumpskirt/darkblue, +/obj/item/clothing/under/color/jumpskirt/darkgreen, +/obj/item/clothing/under/color/jumpskirt/teal, +/obj/item/clothing/shoes/swagshoes, +/obj/item/clothing/under/costume/swagoutfit, +/obj/item/clothing/neck/necklace/dope, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"jMe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"jMf" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Service Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"jMg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"jMi" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"jMn" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jMy" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"jMD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"jMF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/door/airlock{ + name = "Quartermaster's Office"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"jMG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jMM" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/item/multitool, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"jMP" = ( +/obj/structure/closet/crate/science, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jMV" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jMY" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"jMZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/carpet, +/area/service/chapel) +"jNf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jNq" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jNr" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jNs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"jNv" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jNE" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jNH" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"jNI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"jNM" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"jNN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jNO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Cabin 1" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"jOe" = ( +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel, +/area/medical/storage) +"jOh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"jOi" = ( +/turf/closed/wall, +/area/science/robotics) +"jOm" = ( +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Firing Range Gear Crate"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/range) +"jOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"jOq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"jOA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"jOC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"jOI" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"jOK" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"jOL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jOO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "External to Filter" + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"jOT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jOV" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/junglebush/c, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/commons/lounge) +"jOX" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"jPa" = ( +/obj/structure/table, +/obj/item/clothing/mask/bandana/blue, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jPj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/bookcase/random/reference, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"jPk" = ( +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet, +/area/service/chapel) +"jPl" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"jPo" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"jPv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/service/cafeteria) +"jPw" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/kitchen/rollingpin{ + pixel_x = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"jPJ" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"jPN" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"jPR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jPT" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/port) +"jPU" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/medbay/lobby) +"jPV" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jQd" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/camera/detective, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/detectives_office) +"jQe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jQg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"jQo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jQr" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"jQv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jQB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"jQC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/aft) +"jQP" = ( +/obj/effect/landmark/event_spawn, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jQR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"jQU" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"jQW" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"jQY" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"jRa" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jRb" = ( +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/security/armory) +"jRf" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"jRi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"jRy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jRH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"jRS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "Detective Junction"; + renamedByPlayer = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jRU" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"jRV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"jSd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jSr" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Security - Medbay"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"jSv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"jSA" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"jSB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jSG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jSH" = ( +/turf/open/floor/carpet, +/area/service/chapel) +"jSL" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jSM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"jSQ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"jSV" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"jTa" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"jTe" = ( +/obj/machinery/door/airlock/security{ + name = "Brig Physician's Quarters" + }, +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"jTf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"jTh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"jTj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"jTm" = ( +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"jTo" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs/cable/red, +/obj/item/weldingtool/mini, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"jTq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jTs" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"jTu" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"jTy" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/flora/rock/jungle, +/turf/open/floor/grass, +/area/service/cafeteria) +"jTD" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jTE" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"jTH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"jTI" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/recharge_floor, +/area/ai_monitored/security/armory) +"jTQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main) +"jUa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/prison/visit) +"jUb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"jUc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"jUf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"jUh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jUj" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jUk" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel, +/area/security/main) +"jUm" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"jUp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"jUt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jUu" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ai_monitored/command/storage/eva/upper) +"jUz" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"jUA" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"jUD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"jUG" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jUV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"jUZ" = ( +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"jVm" = ( +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = 24; + pixel_y = 9 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 25; + pixel_y = -7 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 39; + pixel_y = -7 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"jVo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jVr" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"jVx" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jVF" = ( +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/airlock/vault{ + req_access_txt = "19" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"jVH" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"jVI" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"jVL" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port) +"jVR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"jVS" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"jVT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"jVU" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/structure/sign/warning/radiation{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/engineering/lobby) +"jVW" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Chapel Office Hallway"; + dir = 1; + name = "chapel camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jVZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"jWb" = ( +/obj/effect/turf_decal/trimline/green, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"jWe" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Port" + }, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jWf" = ( +/turf/closed/wall, +/area/cargo/office) +"jWl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"jWo" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jWq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"jWr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"jWt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"jWx" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell, +/obj/structure/window, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"jWy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port Upper"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"jWA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"jWC" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jWH" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"jWI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"jWO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jXb" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"jXg" = ( +/obj/structure/window, +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Recreation - Barbershop backroom"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"jXl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"jXm" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"jXo" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/ausbushes, +/turf/open/floor/grass, +/area/hallway/primary/central) +"jXr" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4; + name = "Prison Distro Lockoff Valve" + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4; + name = "Prison Scrubber Lockoff Valve" + }, +/turf/open/floor/plasteel/dark, +/area/security) +"jXz" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_y = 2 + }, +/obj/item/folder, +/turf/open/floor/carpet, +/area/service/library/printer) +"jXC" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"jXE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"jXJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security) +"jXL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jXO" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/hallway/primary/upper) +"jXP" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"jXR" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/ce{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Chief Engineer's Office"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jXY" = ( +/obj/structure/chair/sofa{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security - Brig Center" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jYb" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/medical/psychology) +"jYh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/science/research) +"jYj" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"jYw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell5"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"jYz" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/prison{ + dir = 1; + pixel_y = -27 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark{ + dir = 10 + }, +/area/security) +"jYA" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"jYD" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/paramedic, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"jYK" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/grenades, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 5 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"jYO" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/recharger{ + pixel_x = 16; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security) +"jYT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/rack_parts, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"jYU" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"jYX" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;5" + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"jZk" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jZm" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"jZq" = ( +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"jZI" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/fore) +"jZK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central) +"jZP" = ( +/obj/structure/stairs/south, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jZT" = ( +/obj/machinery/camera{ + c_tag = "Library Lower"; + dir = 8; + name = "library camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east{ + pixel_x = 34 + }, +/turf/open/floor/wood, +/area/service/library) +"jZW" = ( +/obj/machinery/button/door{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + pixel_x = 28; + req_access_txt = "24" + }, +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/flashlight/lamp, +/obj/item/toy/figure/atmos{ + pixel_x = 10; + pixel_y = 16 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"kah" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"kak" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"kao" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kaq" = ( +/obj/structure/table/reinforced, +/obj/item/soap/nanotrasen{ + pixel_y = 7 + }, +/obj/item/soap/nanotrasen, +/obj/item/soap/nanotrasen{ + pixel_y = -6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"kau" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall, +/area/medical/chemistry) +"kay" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"kaz" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 1; + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"kaF" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kaH" = ( +/obj/structure/bookcase/random/reference, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"kaZ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Service Power Substation"; + req_access_txt = "11" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"kbc" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"kbj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"kbk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"kbm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kbo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kbq" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kbx" = ( +/turf/closed/wall, +/area/engineering/main) +"kbF" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kbJ" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark{ + dir = 6 + }, +/area/security) +"kbK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/floodlight, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kbM" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"kbN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics) +"kbO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"kbT" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"kbZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"kcf" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"kco" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"kct" = ( +/turf/closed/wall, +/area/commons/storage/primary) +"kcv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice) +"kcG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kcJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"kcM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/masks{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/gloves, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"kcN" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"kcQ" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"kcY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kcZ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"kdc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kdh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"kdq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"kdr" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/science/explab) +"kds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"kdt" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kdF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"kdK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"kdM" = ( +/obj/item/reagent_containers/glass/bottle/diethylamine{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/diethylamine{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"kdN" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery/red, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"kdO" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kdP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"kdQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kdR" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kdS" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"kdU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/lounge) +"kdV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"kdW" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"kdY" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/rd) +"kea" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"kec" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"ked" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/mob/living/simple_animal/bot/medbot{ + name = "Healy Stabby" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kep" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"keC" = ( +/obj/structure/curtain/cloth, +/obj/effect/turf_decal/siding/thinplating/light, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"keI" = ( +/obj/structure/dresser, +/obj/item/flashlight/lamp{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"keK" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/vending/clothing{ + extended_inventory = 1 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"keQ" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/head/rabbitears, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"kfa" = ( +/turf/closed/wall{ + opacity = 0 + }, +/area/commons/fitness/recreation) +"kfb" = ( +/obj/structure/table, +/obj/item/coin{ + pixel_y = 17 + }, +/obj/item/pizzabox/meat{ + pixel_y = 11 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kfe" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"kfi" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"kfj" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kfl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"kfo" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/cryo) +"kfy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"kfC" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/central) +"kfD" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"kfE" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kfF" = ( +/obj/structure/sign/directions/security{ + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/science) +"kfG" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kfJ" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"kfO" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"kfT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Mining"; + name = "Mining Requests Console" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice) +"kge" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"kgh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/poddoor/shutters{ + id = "SnacksKitchen"; + name = "snack bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"kgj" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"kgk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/kirbyplants{ + icon_state = "plant-17"; + pixel_y = 26 + }, +/obj/item/newspaper{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"kgn" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kgr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"kgs" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/security/prison/garden) +"kgy" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"kgK" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"kgO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"kgR" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"kgT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kgU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"kgW" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/upper) +"kha" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"khe" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"khh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"khi" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"khn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"khp" = ( +/obj/item/stack/sheet/mineral/sandstone/thirty, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/security/prison/garden) +"khq" = ( +/obj/item/bedsheet/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"khu" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/science/research) +"khw" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"khP" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"khR" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"khW" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"khY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/range) +"kid" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics/upper) +"kig" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"kii" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"kij" = ( +/obj/structure/closet/crate/maint, +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"kik" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/extinguisher_cabinet/directional/north, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"kin" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kio" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/aloe, +/obj/item/seeds/apple, +/obj/item/seeds/cabbage, +/obj/item/seeds/whitebeet, +/obj/item/seeds/redbeet, +/obj/item/seeds/sugarcane, +/obj/item/seeds/sunflower, +/obj/item/seeds/tea, +/obj/item/seeds/tea/astra, +/obj/item/seeds/tobacco, +/obj/item/seeds/tomato/blood, +/obj/item/seeds/cocoapod/vanillapod, +/obj/item/seeds/cocoapod, +/obj/item/seeds/coffee/robusta, +/obj/item/seeds/coffee, +/obj/item/seeds/corn, +/obj/item/seeds/cotton, +/obj/item/seeds/cotton/durathread, +/obj/item/seeds/potato/sweet, +/obj/item/grown/cotton, +/obj/item/food/grown/poppy, +/obj/item/food/grown/poppy/geranium, +/obj/item/food/grown/poppy/lily, +/obj/item/food/grown/harebell, +/obj/item/food/grown/garlic, +/obj/item/food/grown/onion, +/obj/item/food/grown/peas, +/obj/item/grown/log, +/obj/item/food/grown/mushroom/chanterelle, +/obj/item/food/grown/wheat, +/obj/machinery/camera{ + c_tag = " Prison - Gardain"; + dir = 10; + network = list("ss13","prison") + }, +/turf/open/floor/grass, +/area/security/prison/garden) +"kiq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/popcorn, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kix" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"kiA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk/multiz/down, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kiB" = ( +/turf/closed/wall, +/area/science/xenobiology) +"kiD" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"kiE" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"kiF" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"kiK" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kiL" = ( +/turf/closed/wall, +/area/science/research) +"kiP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"kiZ" = ( +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kja" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"kjb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kjc" = ( +/obj/structure/chair, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kjj" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kjl" = ( +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"kjp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"kjt" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"kjI" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"kjK" = ( +/obj/structure/tank_holder/oxygen/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/tcommsat/computer) +"kjW" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library/artgallery) +"kkj" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kkk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/science/test_area) +"kkl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kkm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"kko" = ( +/obj/machinery/camera{ + c_tag = "Service Hallway - Aft"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kkp" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"kkr" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"kkz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kkA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kkC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kkE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"kkL" = ( +/turf/closed/wall, +/area/maintenance/aft/upper) +"kkM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kkN" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"kkR" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"kkY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"klb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"kli" = ( +/obj/structure/closet/secure_closet{ + req_access_txt = "63" + }, +/obj/item/clothing/under/rank/security/officer/blueshirt, +/obj/item/clothing/suit/armor/vest/blueshirt, +/obj/item/clothing/head/helmet/blueshirt, +/obj/item/storage/belt/security, +/obj/item/melee/baton/loaded, +/obj/item/reagent_containers/spray/pepper, +/obj/item/assembly/flash, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"klk" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/petridish, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"kll" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library/artgallery) +"klm" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -4 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 2 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/maintenance/port/central) +"kln" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"klr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kls" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"klv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"klM" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"klN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"klP" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"klR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"klZ" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/science/explab) +"kmb" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"kmd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kmm" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Chemistry Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/item/folder/white, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"kmq" = ( +/obj/effect/landmark/start/geneticist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"kmt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/engineering/main) +"kmu" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"kmA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kmB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"kmG" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"kmU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"kmV" = ( +/obj/structure/cable, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kmW" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"kmY" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"kmZ" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kne" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/electronics/airlock, +/obj/item/assembly/signaler, +/obj/structure/window, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"kng" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"knj" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"knt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/machinery/firealarm/directional/south, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ai_monitored/security/armory) +"knu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"knx" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 6 + }, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/radio, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"knD" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/service/library) +"knG" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"knJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"knN" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"knQ" = ( +/turf/closed/wall, +/area/lawoffice) +"knR" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"knS" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"knT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/science/explab) +"knW" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"knX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics/garden) +"kod" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"koe" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/main) +"koi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kot" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kov" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kow" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/under/rank/security/head_of_security/skirt, +/obj/item/clothing/under/rank/security/head_of_security, +/obj/item/clothing/under/rank/security/head_of_security/alt/skirt, +/obj/item/clothing/under/rank/security/head_of_security/alt, +/obj/item/clothing/under/rank/security/head_of_security/formal, +/obj/item/clothing/under/rank/security/head_of_security/parade, +/obj/item/clothing/under/rank/security/head_of_security/parade/female, +/obj/item/clothing/suit/armor/hos/trenchcoat, +/obj/item/clothing/shoes/cowboy/black, +/obj/item/clothing/head/hos, +/obj/item/clothing/head/hos/beret, +/obj/item/clothing/head/hos/beret/navyhos, +/obj/item/clothing/neck/cloak/hos, +/obj/item/clothing/glasses/hud/security/sunglasses, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"koA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/central) +"koB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"koE" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"koN" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"koT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"koX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"koY" = ( +/obj/machinery/light/small/directional/north, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"kpg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central) +"kph" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"kpq" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"kps" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kpv" = ( +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"kpA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"kpD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kpE" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kpG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"kpL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kpQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"kpU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"kpX" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/prison) +"kqa" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/east, +/obj/machinery/newscaster/directional/east, +/obj/item/clothing/gloves/color/plasmaman, +/obj/item/clothing/gloves/color/plasmaman{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/plasmaman{ + pixel_y = 6 + }, +/obj/item/clothing/gloves/color/plasmaman, +/obj/item/clothing/gloves/color/plasmaman{ + pixel_y = 3 + }, +/obj/item/clothing/gloves/color/plasmaman{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"kqf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/gps, +/obj/item/gps, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/item/pickaxe/mini, +/obj/item/pickaxe/mini, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kqi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/mob/living/simple_animal/bot/secbot{ + name = "Officer Beats-The-Kobold" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"kqk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"kqo" = ( +/obj/structure/chair/wood, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/cafeteria) +"kqq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"kqF" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"kqP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/security/armory) +"kqR" = ( +/turf/open/floor/plasteel/stairs/left, +/area/security/brig) +"kqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"kqU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kqV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kqX" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/service/library) +"krb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"krd" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"krh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Ship capacitor banks"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"kri" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/service/kitchen) +"krk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"krl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"krp" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/range) +"krq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"krx" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/department/science) +"kry" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"krE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"krI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned holding cells"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"krL" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"krN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"krR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"krS" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Auxiliary Restroom"; + dir = 1; + name = "restroom camera" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"krW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"krY" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/medical/exam_room) +"ksg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"ksn" = ( +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"ksp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ksq" = ( +/obj/machinery/vending/coffee, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"ksv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"ksz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"ksG" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/bar) +"ksH" = ( +/obj/structure/table/wood, +/obj/item/paper/fluff/gateway, +/obj/item/coin/gold{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/phone{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/stamp/centcom{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_x = -5 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"ksI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ksP" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/item/storage/cans/sixbeer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"ksR" = ( +/obj/structure/shuttle/engine/large, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ksY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kta" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/hallway/primary/port) +"kte" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/lily, +/turf/open/floor/wood, +/area/service/chapel/office) +"ktj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ktl" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"ktr" = ( +/obj/structure/dresser, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"ktt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"ktx" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ktN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ktP" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"kua" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kub" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Shuttlebay"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"kuf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"kun" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"kup" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kux" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kuy" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"kuB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/cargo/qm) +"kuE" = ( +/obj/structure/chair, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"kuH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/central) +"kuL" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/central) +"kuR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"kuS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"kuT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"kuU" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kuW" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/range) +"kuY" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"kvh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kvi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"kvk" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kvw" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"kvA" = ( +/obj/structure/girder, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kvC" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"kvH" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"kvP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kvR" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science) +"kvS" = ( +/mob/living/simple_animal/bot/secbot/pingsky, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"kwc" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"kwf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"kwk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"kwq" = ( +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Art Studio"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"kwt" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/bot, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"kww" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "robo2"; + pixel_y = 21 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"kwy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kwD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"kwF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kwG" = ( +/turf/open/floor/plasteel/stairs/right, +/area/science/research) +"kwH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/chair, +/turf/open/floor/plasteel, +/area/cargo/office) +"kwL" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/tree/jungle/small{ + pixel_x = -46 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"kwM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"kwW" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"kwX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"kwZ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison) +"kxd" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"kxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"kxf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kxh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"kxi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"kxj" = ( +/obj/structure/mineral_door/wood{ + name = "Forbidden Study" + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"kxp" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Extraction" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"kxt" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kxv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"kxw" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"kxz" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/hallway/primary/aft) +"kxF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"kxG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"kxK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"kxP" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"kxT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kxW" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kye" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/science/xenobiology) +"kyi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kyk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"kyr" = ( +/obj/machinery/vending/games, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/security/prison/rec) +"kyt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "CE's Junction"; + sortType = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kyy" = ( +/obj/machinery/door/airlock{ + name = "Service Supply closet"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kyz" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kyH" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kyK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"kyN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"kyO" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"kzb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"kzf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"kzi" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"kzk" = ( +/obj/structure/reagent_dispensers/plumbed/storage, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kzl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"kzm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kzo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -7 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/storage) +"kzw" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kzA" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"kzC" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"kzS" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"kzU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kzW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/prison/rec) +"kzZ" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/stone, +/area/hallway/primary/central) +"kAc" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/range) +"kAd" = ( +/obj/machinery/computer/upload/ai{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"kAf" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"kAh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kAq" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kAu" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kAD" = ( +/obj/structure/table/glass, +/obj/item/folder{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"kAF" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"kAG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"kAH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"kAI" = ( +/obj/item/clothing/mask/breath, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"kAO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/upper) +"kBa" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/layer2{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/fore/upper) +"kBc" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"kBf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"kBg" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kBi" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kBn" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kBt" = ( +/obj/machinery/camera{ + c_tag = "Security - Shooting Range"; + dir = 8 + }, +/turf/open/floor/plating, +/area/security/range) +"kBu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"kBv" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"kBw" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kBB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"kBC" = ( +/obj/structure/sign/warning/chemdiamond{ + pixel_x = 33 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"kBD" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/white/side, +/area/maintenance/aft/upper) +"kBH" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"kBI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/fore/upper) +"kBJ" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"kBL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side, +/area/science) +"kBM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/security/prison/rec) +"kBQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kCc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"kCg" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"kCi" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood, +/area/lawoffice) +"kCj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"kCn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"kCo" = ( +/obj/machinery/light/directional/east, +/turf/open/openspace, +/area/hallway/primary/upper) +"kCu" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/prison/rec) +"kCv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kCw" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"kCA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/broken/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kCO" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/hatch{ + name = "EVA Shed"; + req_access_txt = "19" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"kCT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"kCY" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/central) +"kCZ" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/primary/port) +"kDa" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kDf" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"kDj" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"kDl" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"kDr" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kDt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kDu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kDx" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"kDC" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/department/science) +"kDD" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/main) +"kDE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kDJ" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"kDO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/plasmarglass{ + amount = 50 + }, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"kDT" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"kDU" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"kDV" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"kDY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"kEd" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"kEm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/openspace, +/area/maintenance/starboard/central) +"kEn" = ( +/obj/machinery/door/airlock/hatch{ + name = "EVA Shed"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"kEp" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"kEq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/openspace, +/area/maintenance/central) +"kEu" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kEv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"kEw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"kEx" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"kEz" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"kEI" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"kEM" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"kEN" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/engineering/lobby) +"kEQ" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/science/research) +"kER" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/sign/picture_frame/showroom/three{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"kES" = ( +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_y = -8 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -8 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/button/door/directional/south{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Entrance Shutters Control"; + pixel_x = -24; + req_access_txt = "16" + }, +/obj/machinery/button/door/directional/south{ + id = "AI Core shutters"; + name = "AI Core Shutters Control"; + pixel_x = 24; + req_access_txt = "16" + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"kEV" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/paystand{ + pixel_y = 6 + }, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"kEW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kFa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"kFb" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 5 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"kFc" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/aft/upper) +"kFd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"kFf" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"kFg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"kFh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"kFm" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"kFr" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kFy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/locker) +"kFA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kFB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"kFC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/grill, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"kFD" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"kFF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kFI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kFM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"kFN" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"kFQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Controll Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"kFS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"kFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kGd" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"kGe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"kGf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"kGg" = ( +/obj/machinery/door/airlock{ + name = "Theater Backstage"; + req_access_txt = "46" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/service/theater) +"kGh" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"kGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"kGn" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/openspace, +/area/cargo/qm) +"kGo" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kGs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"kGw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east{ + department = "Xenobiology"; + name = "Xenobiology Requests Console"; + receive_ore_updates = 1 + }, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kGx" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kGA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"kGL" = ( +/obj/machinery/door/airlock{ + name = "Commentator Studio" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kGN" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kGP" = ( +/obj/machinery/light_switch/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"kGQ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"kGY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kHa" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/service/cafeteria) +"kHb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kHc" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kHd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 7 + }, +/obj/item/storage/box/shipping{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"kHi" = ( +/obj/structure/table/reinforced, +/obj/item/poster/random_official{ + pixel_y = 5 + }, +/obj/item/poster/random_official, +/obj/item/poster/wanted/missing, +/turf/open/floor/plasteel/dark, +/area/security/main) +"kHk" = ( +/obj/structure/sign/poster/contraband/energy_swords, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"kHn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"kHo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"kHp" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"kHt" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kHz" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kHE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kHM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kHN" = ( +/obj/structure/table/wood, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/carpet, +/area/lawoffice) +"kHO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kHP" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/newspaper, +/turf/open/floor/carpet, +/area/security/prison/rec) +"kIc" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/beach/sand, +/area/maintenance/port) +"kIe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"kIh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"kIi" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Cooling Loop to Gas" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"kIj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Spa and Backroom" + }, +/obj/structure/curtain/bounty, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/service/electronic_marketing_den) +"kIl" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"kIn" = ( +/obj/machinery/door/airlock/grunge{ + name = "Spiritual care centre"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kIp" = ( +/turf/closed/wall, +/area/commons/lounge) +"kIq" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"kIr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kIs" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"kIx" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"kIB" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/cafeteria) +"kIH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"kII" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"kIJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"kIL" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kIR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Fore Starboard"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kIV" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"kIW" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/security/prison/rec) +"kJa" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"kJb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/assembly/prox_sensor{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -7; + pixel_y = -3 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"kJc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"kJd" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"kJh" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"kJi" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"kJo" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/port) +"kJx" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/circuit, +/area/tcommsat/computer) +"kJC" = ( +/obj/structure/holohoop{ + dir = 4; + pixel_x = -10 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kJE" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"kJP" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/storage) +"kJQ" = ( +/turf/open/openspace, +/area/commons/dorms) +"kJR" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Crate Security Door"; + req_access_txt = "50" + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Sorting"; + dir = 5; + name = "cargo camera" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kJS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"kJU" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"kJV" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Central Port"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kJX" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kKa" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"kKd" = ( +/turf/closed/wall/r_wall, +/area/security/execution) +"kKf" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"kKh" = ( +/obj/item/toy/beach_ball/holoball{ + pixel_x = 17 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kKi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kKl" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/toy/figure/captain{ + pixel_y = 3 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"kKp" = ( +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Recreation - Starboard Arcade"; + dir = 1; + name = "hallway camera" + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"kKq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"kKr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Fore Center"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"kKs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/service) +"kKz" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"kKD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"kKF" = ( +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"kKG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"kKI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kKN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"kKO" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"kKU" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/librarian, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"kKV" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 7 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"kKW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kKY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/kahlua{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/carpet/executive, +/area/command) +"kLa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kLd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kLp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kLs" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/lobby) +"kLt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"kLv" = ( +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"kLx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"kLD" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/cargo/miningdock) +"kLJ" = ( +/obj/structure/barricade/security, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"kLN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kLO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/transit_tube) +"kMc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"kMh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kMk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"kMl" = ( +/turf/closed/wall/r_wall, +/area/command/gateway) +"kMn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kMO" = ( +/obj/structure/curtain/bounty, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/primary/port) +"kMQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kMR" = ( +/obj/item/chair, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kMY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"kNe" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"kNi" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"kNm" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/fore) +"kNo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/cargo/qm) +"kNp" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kNs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kND" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kNH" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"kNJ" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/computer/med_data{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kNM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kNZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"kOd" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"kOe" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"kOo" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"kOq" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/newscaster/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/command/teleporter) +"kOu" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/upper) +"kOx" = ( +/obj/structure/rack, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/item/clothing/glasses/meson/engine/tray, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"kOz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"kOA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kOD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Storage Aft"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/science/storage) +"kOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"kOM" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/clothing/under/rank/rnd/scientist, +/obj/item/clothing/under/rank/centcom/intern, +/obj/item/clothing/under/rank/civilian/hydroponics/skirt, +/obj/item/clothing/under/rank/civilian/curator, +/obj/item/clothing/under/rank/civilian/cookjorts, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/service) +"kOO" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"kOS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"kPg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kPk" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kPl" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"kPm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"kPo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"kPq" = ( +/turf/open/floor/plasteel, +/area/security/prison/upper) +"kPs" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"kPu" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"kPE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"kPQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kPS" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"kPY" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"kPZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"kQd" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"kQq" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"kQs" = ( +/obj/machinery/door/airlock/wood, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"kQu" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kQA" = ( +/obj/machinery/door/window/eastleft{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/cafeteria) +"kQB" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/space/basic, +/area/space/nearstation) +"kQD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"kQG" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"kQI" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"kQL" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/cargo/sorting) +"kQM" = ( +/obj/structure/shuttle/engine/huge{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"kQQ" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"kQR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kQS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kQU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"kRi" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"kRk" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/service/library) +"kRl" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/eva/plasmaman, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"kRm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"kRo" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/stool{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"kRu" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kRv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kRy" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"kRz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"kRB" = ( +/obj/structure/table, +/obj/item/pizzabox/margherita{ + pixel_y = 11 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"kRC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"kRI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/explab) +"kRT" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"kRX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"kRY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"kSa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Port Engineering Hub Deck 1"; + dir = 6; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kSd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kSe" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kSh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"kSk" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"kSm" = ( +/obj/structure/chair/sofa/left, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"kSn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"kSq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"kSr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/target, +/turf/open/indestructible, +/area/science/test_area) +"kSs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"kSv" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"kSw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science) +"kSy" = ( +/obj/structure/holohoop{ + dir = 8; + pixel_x = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"kSz" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"kSE" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + id = "scicell"; + name = "RnD Cell"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"kSF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"kSQ" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/service/theater) +"kSR" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"kSY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kTa" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kTc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"kTj" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"kTm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1; + name = "Waste connector port" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"kTx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kTy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stamp{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/stamp/hop{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/accounting{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"kTz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"kTB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"kTE" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms) +"kTF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kTI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Starboard"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kTO" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"kTR" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kTT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/item/shard, +/turf/open/floor/plasteel, +/area/cargo/office) +"kUe" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kUf" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"kUi" = ( +/obj/structure/window/reinforced, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"kUk" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"kUn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kUo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Port"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kUt" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"kUC" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/secondary/command) +"kUG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"kUH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"kUI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"kUN" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/ce, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"kUO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"kUS" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 1 + }, +/turf/open/floor/wood, +/area/command) +"kUU" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"kUZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"kVh" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"kVj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kVn" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/item/screwdriver, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"kVr" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/carpet, +/area/service/library/printer) +"kVs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"kVu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"kVJ" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"kVM" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "gatewayblastdoors"; + name = "Seperating Blast Doors" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"kVN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"kVO" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"kVQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"kVV" = ( +/obj/structure/table/reinforced, +/obj/item/plate, +/obj/item/plate{ + pixel_y = 2 + }, +/obj/item/plate{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"kVW" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/stairs/left, +/area/engineering/atmos) +"kVY" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/construction/engineering) +"kWd" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kWf" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kWg" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"kWi" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Factory"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"kWj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"kWm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/bridge) +"kWn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kWo" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"kWs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kWA" = ( +/obj/structure/noticeboard/directional/east, +/turf/open/floor/carpet, +/area/service/chapel/main) +"kWD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/space) +"kWE" = ( +/obj/structure/cable, +/obj/item/screwdriver, +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"kWH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/computer/monitor{ + name = "Bridge Power Monitoring Console" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kWL" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"kWP" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"kWQ" = ( +/obj/structure/cable, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"kWR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kWZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"kXa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kXb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"kXc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kXg" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/service/chapel/main) +"kXl" = ( +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 8 + }, +/obj/item/training_toolbox, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"kXq" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"kXz" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"kXC" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/box, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/recharge_floor, +/area/science/robotics/mechbay) +"kXD" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"kXH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kXI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"kXL" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/clothing/under/rank/medical/chief_medical_officer, +/obj/item/clothing/under/rank/medical/chief_medical_officer/skirt, +/obj/item/clothing/suit/bio_suit/cmo, +/obj/item/clothing/head/bio_hood/cmo, +/obj/item/clothing/suit/toggle/labcoat/cmo, +/obj/item/clothing/neck/cloak/cmo, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"kXY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"kYi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"kYn" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kYo" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"kYq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kYG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"kYH" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"kYK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kYR" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/lawoffice) +"kZc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kZg" = ( +/obj/machinery/firealarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/east{ + pixel_x = 34 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs, +/area/ai_monitored/command/storage/eva) +"kZk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"kZl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"kZs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"kZx" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/port) +"kZG" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kZL" = ( +/obj/structure/cable, +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"kZP" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"kZU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kZV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"laa" = ( +/obj/item/rack_parts, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lae" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"laf" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lah" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm9"; + name = "Cabin 9" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"lai" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/curator, +/obj/structure/window, +/turf/open/floor/wood, +/area/service/library) +"lal" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"lam" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"las" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"lav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ladder, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lax" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"laA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"laB" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/science) +"laF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"laG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/commons/dorms) +"laM" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"laZ" = ( +/turf/open/openspace, +/area/maintenance/aft/upper) +"lba" = ( +/turf/open/floor/wood, +/area/hallway/primary/central) +"lbc" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"lbe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"lbf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"lbk" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"lbl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lbp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"lbq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 1; + name = "Medical Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"lbr" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"lbv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"lbw" = ( +/turf/open/floor/carpet, +/area/service/theater) +"lbz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lbF" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"lbJ" = ( +/obj/structure/railing, +/obj/structure/chair/plastic{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"lbM" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"lbN" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"lbR" = ( +/turf/open/floor/plasteel/stairs, +/area/commons/fitness/recreation) +"lbT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"lbW" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher/directional/west{ + id = "AI" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"lbX" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lcc" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/miasma{ + name = "Waste filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lce" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"lcy" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"lcA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lcC" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"lcH" = ( +/obj/machinery/power/turbine{ + dir = 4; + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"lcL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"lcM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"lcQ" = ( +/turf/closed/wall, +/area/service/hydroponics) +"lcU" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ldc" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno9"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ldi" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/port) +"ldq" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"ldt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ldE" = ( +/obj/structure/table/wood, +/obj/structure/cable, +/obj/item/folder{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/folder{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/folder/yellow{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/folder/yellow{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/folder/red{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/folder/blue, +/obj/item/folder/blue, +/obj/item/paper/fluff/ids_for_dummies, +/obj/item/hand_labeler_refill{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"ldF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/training_machine, +/obj/item/target/syndicate, +/turf/open/floor/plasteel, +/area/security/range) +"ldI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera{ + c_tag = "Crew Area - Locker Room"; + dir = 4; + name = "dormitories camera" + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/commons/locker) +"ldJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"ldL" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"ldM" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/machinery/newscaster/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"ldN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall21"; + location = "hall20" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ldQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lej" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"len" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/field/generator, +/turf/open/floor/plasteel, +/area/engineering/main) +"lep" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"leF" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"leK" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"leM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"leN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/warehouse) +"leU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"leV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"leZ" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Airlock"; + dir = 1; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"lfb" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"lfe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/cargo/office) +"lfh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/window/southright, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lfk" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lfm" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lfp" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"lfu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/maintenance/port/central) +"lfv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lfA" = ( +/obj/structure/flora/tree/jungle, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/hallway/primary/central) +"lfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"lfL" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lfN" = ( +/obj/structure/table/wood/fancy, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"lfV" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"lga" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"lgj" = ( +/obj/structure/table/rolling, +/obj/item/razor{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"lgo" = ( +/turf/closed/wall, +/area/engineering/lobby) +"lgr" = ( +/obj/machinery/rnd/bepis, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lgs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/port) +"lgy" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"lgH" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/detectives_office) +"lgI" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"lgQ" = ( +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Snackbar Coldroom"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"lhb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"lhm" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Quarters"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"lht" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/openspace, +/area/maintenance/starboard/aft) +"lhx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"lhy" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"lhH" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/cargo/storage) +"lhI" = ( +/obj/structure/table/reinforced, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/atmos, +/obj/item/computer_disk/atmos, +/obj/item/computer_disk/atmos, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"lhK" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"lhN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lhO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"lhP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"lhQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall20"; + location = "hall19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lhS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"lhT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"lhU" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"lhW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"lhX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva) +"lik" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"lir" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/commons/dorms) +"lix" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; + dir = 1; + name = "Research Monitor"; + network = list("rd","minisat"); + pixel_y = -29 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"liE" = ( +/turf/open/floor/plating, +/area/science/explab) +"liH" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"liN" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/commons/dorms) +"liT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"liY" = ( +/obj/structure/chair/wood, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/cafeteria) +"ljb" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"lje" = ( +/obj/machinery/button/door/directional/north{ + id = "evashutters"; + name = "E.V.A. Shutters"; + pixel_x = -24; + pixel_y = 0; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Port Bow 2"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup16"; + location = "hallup15" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ljf" = ( +/obj/machinery/door/airlock/wood{ + name = "Sauna" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ljg" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ljk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"ljl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"ljm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ljs" = ( +/obj/machinery/keycard_auth/directional/east{ + pixel_y = -8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"ljw" = ( +/obj/structure/window/reinforced, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"ljB" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/fore) +"ljD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ljE" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ljF" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"ljG" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"ljH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Docking Port" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"ljK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"ljR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"ljS" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"lkb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"lkc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"lke" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"lkl" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"lkn" = ( +/obj/machinery/camera{ + c_tag = " Prison - Showers"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"lko" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lkp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"lks" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/locker) +"lkC" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"lkL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/borg/sight/hud/sec{ + pixel_y = 17 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lkM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/port) +"lkO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"lkQ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"lkT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lkV" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics/upper) +"lkW" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/cafeteria) +"llh" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"lli" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lls" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/commons/dorms) +"llz" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"llB" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"llF" = ( +/turf/closed/wall, +/area/service/electronic_marketing_den) +"llI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"llL" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"llQ" = ( +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"lma" = ( +/obj/machinery/button/door{ + id = "xeno10"; + name = "Bottom Shutters Containment Control"; + pixel_y = 29; + req_access_txt = "55" + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Cytology Entrance"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lmc" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"lme" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"lmg" = ( +/obj/machinery/button/door/directional/south{ + id = "cmoshutter2"; + name = "CMO Study Shutters"; + pixel_x = -25; + pixel_y = 7; + req_access_txt = "40" + }, +/obj/structure/filingcabinet/medical, +/obj/item/radio/intercom/directional/west{ + pixel_y = -11 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"lmh" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"lml" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lmn" = ( +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"lmo" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"lmu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"lmv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"lmA" = ( +/obj/effect/turf_decal/bot_red, +/obj/item/robot_suit, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"lmD" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"lmE" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"lmF" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"lmG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"lmK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"lmU" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lmY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"lmZ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/britcup, +/turf/open/floor/wood, +/area/hallway/primary/central) +"lnd" = ( +/obj/structure/table_frame, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lni" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"lnk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"lnu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lnw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lnB" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"lnC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"lnJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"lnR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lnS" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft/upper) +"lnT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lnU" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/service/theater) +"lnV" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"loa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"lod" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"log" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"loi" = ( +/obj/structure/girder, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lon" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Cargo Shuttle Dock 2"; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"loo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lop" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"lou" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"loC" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/plating, +/area/engineering/main) +"loD" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"loE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"loG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Hydroponics Junction"; + sortType = 21 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"loI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/central) +"loK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/peanuts, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"loN" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/item/reagent_containers/blood/universal, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"loQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"loX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"loY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"loZ" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"lpf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lpt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"lpA" = ( +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lpB" = ( +/obj/structure/railing, +/obj/structure/table, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"lpC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"lpG" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/machinery/defibrillator_mount/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"lpJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left, +/area/maintenance/aft) +"lpK" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Virology"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"lpL" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"lpN" = ( +/obj/machinery/disposal/bin, +/obj/machinery/newscaster/directional/west, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet/executive, +/area/command) +"lpO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"lpP" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"lpQ" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"lpT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"lpW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"lpX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lqa" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lqd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"lqe" = ( +/obj/machinery/door/airlock{ + name = "Arrivals Snack Bar" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"lqg" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Kitchen Diner Starboard"; + dir = 9; + name = "service camera" + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lqj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"lqn" = ( +/obj/structure/closet/cardboard, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lqq" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"lqs" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lqw" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port) +"lqE" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lqF" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lqH" = ( +/obj/structure/bed/dogbed/mcgriff, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/red, +/area/security/warden) +"lqQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lqS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"lqV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"lqX" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"lrg" = ( +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"lrh" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lri" = ( +/obj/structure/rack, +/obj/item/tank/internals/plasmaman/full, +/obj/item/tank/internals/plasmaman/full{ + pixel_x = 3 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"lrl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"lrm" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lrn" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery/red, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"lro" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lrr" = ( +/obj/structure/cable, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup10"; + location = "hallup9" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"lry" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"lrz" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lrD" = ( +/obj/structure/cable, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lrE" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"lrF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"lrG" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/central) +"lrJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lrU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"lrX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lsb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"lsh" = ( +/obj/machinery/button/door{ + id = "Sbay2"; + name = "Shuttle Bay 2"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"lsi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"lsl" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"lsq" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security - Lower Hallway"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"lsu" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/radio/intercom, +/turf/open/floor/wood, +/area/security/courtroom) +"lsv" = ( +/obj/machinery/door/airlock{ + name = "Representative's Quarters"; + req_access_txt = "101" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"lsC" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/five, +/obj/item/circuitboard/machine/paystand, +/obj/item/stack/cable_coil/five, +/obj/machinery/light_switch/directional/south, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"lsD" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lsE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lsF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lsG" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"lsJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"lsX" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasma/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ltc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/rdservercontrol, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ltm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/sorting/mail{ + name = "Engineering Junction"; + sortType = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"ltp" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ltq" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel, +/area/science/explab) +"ltw" = ( +/obj/effect/turf_decal/trimline/blue/line, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"ltz" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 1; + network = list("xeno") + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ltA" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ltB" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/statue/silver/sec, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ltE" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ltM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ltP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"ltS" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Space Access Airlock"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/space) +"ltU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"ltV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/xenobiology) +"ltW" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lui" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"luj" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"luv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"luz" = ( +/obj/structure/table, +/obj/item/controller, +/obj/item/compact_remote, +/obj/item/compact_remote, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Research Division - Circuits Lab"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"luC" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"luE" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"luG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"luI" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/cafeteria) +"luM" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"luN" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"luP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/machinery/computer/security/telescreen/minisat{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"luQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/theater) +"luS" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"luU" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"luW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/mob/living/simple_animal/bot/mulebot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"luY" = ( +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"luZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lvc" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/item/storage/box/deputy, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"lvk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lvm" = ( +/obj/structure/table/glass, +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/wig/random{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/clothing/head/wig/natural, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"lvx" = ( +/obj/machinery/light/small/broken/directional/north, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lvy" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lvE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"lvF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lvJ" = ( +/obj/machinery/camera{ + c_tag = "Crew Area - Pool Entrance"; + dir = 1; + name = "dormitories camera" + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lvO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"lvP" = ( +/obj/structure/disposaloutlet, +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lvS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lvT" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"lvX" = ( +/turf/closed/wall, +/area/maintenance/starboard/secondary) +"lwa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"lwh" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"lwj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"lwk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"lwn" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"lwp" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"lwv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"lwx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lwC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lwH" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/wood, +/area/medical/psychology) +"lwJ" = ( +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"lwK" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"lwN" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"lwP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"lwQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lwR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lwS" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12;73" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"lxb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"lxc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"lxf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"lxj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lxl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lxm" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lxn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lxv" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard Upper"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lxz" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"lxG" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lxN" = ( +/obj/structure/closet/crate/large, +/obj/item/mecha_parts/chassis/ripley, +/obj/item/mecha_parts/part/ripley_torso, +/turf/open/floor/plating, +/area/maintenance/port) +"lxR" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lya" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"lyb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"lyc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"lyg" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"lyl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/indestructible, +/area/science/test_area) +"lyn" = ( +/obj/machinery/door/airlock/freezer, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"lyr" = ( +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"lyw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"lyB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lyD" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/department/medical/central) +"lyK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/ai_monitored/command/storage/eva) +"lyQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"lyU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay - Central"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lyV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Law Office Entrance"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"lzf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lzg" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/effect/turf_decal/trimline/purple/filled, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"lzi" = ( +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"lzk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Shared Storage"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"lzm" = ( +/obj/structure/fluff/tram_rail/anchor, +/turf/open/space/basic, +/area/space/nearstation) +"lzp" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Departures Customs"; + dir = 10; + name = "customs camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"lzx" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"lzG" = ( +/obj/structure/light_construct{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"lzH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"lzM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/item/clothing/head/beanie{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/clothing/head/beanie/black{ + pixel_y = 8 + }, +/obj/item/clothing/head/beanie/durathread{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/head/beanie/red{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/clothing/head/beanie/cyan{ + pixel_y = 2 + }, +/obj/item/clothing/head/beanie/green{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/clothing/head/beanie/orange{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/clothing/head/beanie/purple{ + pixel_y = -3 + }, +/obj/item/clothing/head/beanie/yellow{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"lzP" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/aft) +"lzW" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lzX" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"lzY" = ( +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lzZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"lAd" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"lAj" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/library) +"lAo" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"lAt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"lAu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lAG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lAI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_y = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"lAM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/visit) +"lAU" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"lAX" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 23; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"lBc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"lBf" = ( +/obj/structure/window, +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lBm" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"lBo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"lBu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lBy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet, +/area/service/cafeteria) +"lBB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"lBC" = ( +/obj/structure/toilet{ + dir = 4; + pixel_y = 7 + }, +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -28 + }, +/obj/machinery/light/small/directional/south{ + pixel_x = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"lBD" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"lBE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"lBH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"lBN" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"lBQ" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Recreation - Barbershop"; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"lBT" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall, +/area/hallway/secondary/entry) +"lBW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lBY" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/primary/upper) +"lCh" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/theater) +"lCp" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"lCr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"lCs" = ( +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"lCv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"lCA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lCG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"lCL" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"lCR" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"lCW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/chapel) +"lCZ" = ( +/obj/structure/railing/corner, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lDa" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lDb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/transit_tube) +"lDl" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"lDo" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"lDv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lDx" = ( +/turf/closed/wall, +/area/maintenance/central) +"lDy" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/range) +"lDC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"lDD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"lDE" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/science/genetics) +"lDG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"lDH" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lDJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lDL" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"lDM" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/medical/psychology) +"lDP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"lDS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva) +"lDU" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lEa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"lEi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/flora/tree/pine/xmas, +/turf/open/floor/wood, +/area/service/bar/atrium) +"lEp" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"lEB" = ( +/obj/structure/shuttle/engine/router, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lEC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/paper_bin{ + pixel_y = -4 + }, +/obj/item/pen{ + pixel_y = -2 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"lEG" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"lEK" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/hallway/primary/port) +"lEN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/upper) +"lEO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lEP" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen/blue, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"lEQ" = ( +/obj/machinery/photocopier, +/turf/open/floor/carpet, +/area/service/chapel/main) +"lES" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lEU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lEV" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/service/chapel) +"lEX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"lEY" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"lEZ" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"lFe" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/highsecurity{ + name = "Bunker Airlock"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"lFh" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv{ + pixel_y = 8 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"lFi" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Cabin 3" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"lFu" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lFw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lFB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/cryo) +"lFE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/locker) +"lFL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"lFU" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"lFV" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lFW" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plating, +/area/maintenance/fore) +"lFZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"lGg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/theater) +"lGj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"lGp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lGw" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lGz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/sb_med) +"lGL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lGM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "hall3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"lGW" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/noticeboard/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"lGZ" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/cargo/miningdock) +"lHd" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"lHg" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/stone, +/area/hallway/primary/central) +"lHi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"lHl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"lHo" = ( +/turf/closed/wall, +/area/engineering/engine_smes) +"lHp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"lHr" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/cafeteria) +"lHG" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"lHJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"lHQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots{ + pixel_y = -2 + }, +/obj/item/clothing/shoes/workboots{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"lHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"lHY" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/closet/secure_closet/engineering_chief, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"lIf" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lIg" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lIi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"lIj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"lIk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"lIl" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"lIp" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"lIq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"lIx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/field/generator, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"lID" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/recharger{ + pixel_x = 7; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig) +"lIE" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lIL" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"lIS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lJa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"lJc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison/garden) +"lJg" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lJi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lJm" = ( +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 7 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -3; + pixel_y = -6 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"lJn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"lJq" = ( +/obj/item/storage/secure/safe/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Head of Personnel's Quarters"; + dir = 8; + name = "command camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"lJs" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"lJy" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"lJA" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/junglebush/c, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"lJD" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/range) +"lJE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"lJF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"lJJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lJL" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science) +"lJO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/department/engine) +"lJQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"lJS" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lJW" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Science - Cytology Secure Pen"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/science/cytology) +"lJX" = ( +/turf/open/floor/plasteel/white, +/area/science/breakroom) +"lKb" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"lKi" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lKn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"lKp" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/wood, +/area/service/library) +"lKB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"lKE" = ( +/obj/structure/chair/sofa, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"lKN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"lKO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"lKR" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/internals, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"lKS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/library) +"lKW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"lLe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"lLf" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lLl" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"lLn" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal exit vent" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"lLp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lLq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"lLB" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"lLC" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Public Mining Shuttle"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/landmark/start/assistant, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lLD" = ( +/obj/structure/table, +/obj/item/storage/box/zipties{ + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -3 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"lLJ" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lLL" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"lLW" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lMb" = ( +/obj/structure/barricade/security/ctf, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"lMh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"lMj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"lMm" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"lMn" = ( +/obj/machinery/vending/games, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"lMs" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east{ + layer = 3.5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"lMG" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/surgery{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/medicine, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"lML" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lMQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"lMS" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lMT" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"lMW" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lNb" = ( +/mob/living/simple_animal/hostile/russian, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lNi" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"lNk" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"lNq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"lNr" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -7 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -1 + }, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"lNs" = ( +/obj/structure/table/greyscale, +/obj/item/toy/plush/moth{ + name = "Moffee" + }, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"lNw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"lNF" = ( +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"lNL" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig/upper) +"lNN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lNR" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"lOc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/science) +"lOe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"lOh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lOk" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"lOt" = ( +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/door_buttons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -24; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"lOx" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness) +"lOA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"lOB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"lOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lOJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lOK" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown3"; + name = "Lockdown" + }, +/obj/machinery/button/door{ + id = "prisonlockdown3"; + name = "Lockdown"; + pixel_x = 24; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lOL" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"lOM" = ( +/obj/effect/turf_decal/trimline/blue/filled/end{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"lON" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/inducer, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"lOO" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/primary/central) +"lOU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"lOW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lPe" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lPf" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"lPh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/security{ + name = "Prison Library" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/prison/rec) +"lPm" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/thinplating/light, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"lPs" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"lPv" = ( +/obj/structure/barricade/security, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"lPy" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lPz" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lPB" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Bunker Controll Room"; + name = "command camera" + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"lPF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness) +"lPI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"lPY" = ( +/obj/structure/table, +/obj/structure/window{ + dir = 8; + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/item/reagent_containers/pill/mutadone{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/mutagen, +/obj/item/reagent_containers/syringe, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"lPZ" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"lQe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"lQj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"lQo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/command) +"lQp" = ( +/obj/structure/table, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"lQv" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"lQx" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lQz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lQA" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"lQC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"lQD" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"lQO" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel, +/area/science/explab) +"lQP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"lQS" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lQV" = ( +/obj/structure/table/wood/fancy, +/obj/item/statuebust{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"lRb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engine SMES Room"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"lRf" = ( +/obj/structure/disposalpipe/sorting/mail{ + name = "Robotics Junction"; + renamedByPlayer = 14 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lRk" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/locker) +"lRz" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lRD" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/bar/atrium) +"lRG" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"lRK" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/electronics/airalarm, +/obj/item/electronics/apc, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"lRL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"lRM" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"lRV" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lRW" = ( +/turf/open/floor/plating, +/area/command/heads_quarters) +"lRX" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lRY" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"lSd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lSi" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/item/flashlight, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"lSk" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north{ + pixel_x = 9; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"lSo" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lSp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"lSr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"lSs" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/healthanalyzer{ + pixel_y = 9 + }, +/obj/item/plant_analyzer, +/obj/item/analyzer{ + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_y = 9 + }, +/obj/item/plant_analyzer, +/obj/item/analyzer{ + pixel_y = -4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Tech storage"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"lSx" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"lSy" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lSz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"lSO" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"lSR" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/commons/lounge) +"lSW" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"lSZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lTh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"lTi" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/main) +"lTj" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"lTm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lTo" = ( +/obj/item/trash/energybar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lTq" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"lTu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"lTy" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"lTD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lTE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lTF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"lTI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"lTJ" = ( +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"lTM" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"lTN" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lTP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"lTQ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningoffice) +"lTR" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"lTT" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lTW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"lTY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"lUb" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"lUl" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"lUm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lUo" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/lobby) +"lUp" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"lUq" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lUr" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"lUt" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Sanitarium"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"lUw" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"lUy" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lUB" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"lUG" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"lUM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"lUP" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"lUQ" = ( +/turf/open/floor/plating, +/area/engineering/lobby) +"lUU" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"lVe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"lVi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood/poker, +/obj/machinery/light/broken/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"lVp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"lVq" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"lVt" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"lVD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"lVE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/exam_room) +"lVH" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lVK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"lVL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lVN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lVS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"lWe" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/crate/goldcrate, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/storage/bag/money/vault, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"lWf" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"lWh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"lWi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"lWj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"lWr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"lWz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"lWF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"lWN" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/north{ + pixel_x = 22; + pixel_y = 21 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "HoPdoor"; + name = "HoP Door Lock"; + normaldoorcontrol = 1; + pixel_x = -25; + pixel_y = 25; + req_access_txt = "57"; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"lWP" = ( +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -24; + req_access_txt = "39" + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"lWQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lWV" = ( +/obj/structure/closet/crate{ + name = "disposal supplies" + }, +/obj/item/bodybag, +/obj/item/shovel, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/science) +"lWY" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lXc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"lXm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lXp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"lXt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"lXx" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lXP" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"lXQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/central) +"lXV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"lXW" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"lYa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"lYb" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/table/wood, +/obj/item/food/baguette, +/obj/item/toy/crayon/spraycan/mimecan{ + charges = 5 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"lYe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"lYo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"lYt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/engineering/atmos/upper) +"lYw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"lYz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"lYB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"lYC" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"lYE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"lYF" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/hallway/primary/central) +"lYN" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"lYR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"lYS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"lYT" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"lYW" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"lZk" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/cargo/qm) +"lZm" = ( +/obj/item/clothing/under/color/white{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/white{ + pixel_y = 7 + }, +/obj/item/clothing/under/color/white{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/jumpskirt/white{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/white{ + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/white{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"lZp" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/machinery/camera{ + c_tag = "Atmospherics - Staboard Center"; + dir = 8; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"lZu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"lZF" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Wrestling Ring Lower"; + name = "recreation camera" + }, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"lZG" = ( +/obj/structure/chair/wood, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"lZI" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"lZM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/requests_console/directional/west{ + department = "Toxins Lab"; + departmentType = 5; + name = "Toxins Requests Console" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"lZU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/hallway/primary/central; + cell_type = /obj/item/stock_parts/cell/bluespace; + dir = 4; + pixel_x = 25 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lZW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"mah" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/machinery/camera{ + c_tag = "Armory - Interior"; + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"maj" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"mal" = ( +/obj/structure/table/glass, +/obj/item/folder, +/obj/item/pen, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"maB" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"maC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/button/door/directional/west{ + id = "Dorm8"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"maF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"maG" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"maJ" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"maN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"maQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"maR" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/engineering/break_room) +"maS" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/cytology) +"maZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"mbc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"mbe" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"mbf" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "Filter Leftover Release" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"mbg" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"mbh" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mbo" = ( +/turf/closed/wall, +/area/security/main/lockers) +"mbv" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"mbC" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"mbE" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"mbF" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mbL" = ( +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"mbM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"mbP" = ( +/obj/structure/bed/maint, +/obj/item/kitchen/knife/shiv, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mbQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"mbS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mbV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"mcc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mcd" = ( +/obj/structure/fans/tiny, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"mce" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mco" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"mcp" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mcr" = ( +/obj/structure/lattice, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"mcu" = ( +/turf/open/openspace, +/area/hallway/primary/starboard) +"mcw" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mcF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/central) +"mcM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs/left, +/area/cargo/storage) +"mcN" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"mcO" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"mcP" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"mcS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mdd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mdf" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"mdh" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mdj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/construction/plumbing, +/turf/open/floor/plating, +/area/maintenance/port) +"mdn" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mdr" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore) +"mdw" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"mdx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"mdy" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"mdG" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mdL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"mdV" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/folder/blue, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"mdW" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"mdX" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sunnybush{ + pixel_y = -5 + }, +/turf/open/floor/grass, +/area/service/chapel) +"meb" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"meg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"men" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/boritos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"meo" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mes" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"mev" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mew" = ( +/obj/machinery/mecha_part_fabricator/maint{ + name = "forgotten exosuit fabricator" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mex" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"meB" = ( +/obj/machinery/biogenerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"meI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"meJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"meM" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"meN" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"meT" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"meU" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/port) +"meV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"meZ" = ( +/obj/structure/cable, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mfc" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"mfe" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mfq" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"mfs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"mfv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"mfC" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"mfI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mfK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mfL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"mfO" = ( +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"mfP" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"mfR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/vending/wallmed/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Waiting Room"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"mfY" = ( +/obj/machinery/computer/rdconsole{ + dir = 4; + pixel_x = -2 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/explab) +"mfZ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"mgb" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"mgf" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"mgg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"mgo" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"mgp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"mgs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"mgu" = ( +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central) +"mgA" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/science/explab) +"mgC" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"mgE" = ( +/obj/structure/fans/tiny{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/cargo/storage) +"mgG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"mgI" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"mgM" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"mgV" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"mgZ" = ( +/obj/item/tank/internals/emergency_oxygen, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"mhi" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"mhj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"mhm" = ( +/obj/machinery/door/airlock/security{ + name = "Court Cell"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"mhq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"mhs" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"mhy" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/surgery, +/obj/item/scalpel, +/obj/item/cautery, +/turf/open/floor/plasteel, +/area/medical/surgery) +"mhA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"mhB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command) +"mhD" = ( +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mhE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"mhL" = ( +/obj/machinery/medipen_refiller, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mhN" = ( +/obj/item/clothing/under/suit/blacktwopiece{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/clothing/under/suit/black_really{ + pixel_y = 9 + }, +/obj/item/clothing/under/suit/burgundy{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/clothing/under/suit/checkered{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/clothing/under/suit/charcoal{ + pixel_y = -3 + }, +/obj/item/clothing/under/suit/beige{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"mhP" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mhR" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"mhU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mhV" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/research) +"mhX" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room"; + req_access_txt = "19;23" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mia" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/indestructible, +/area/science/test_area) +"mik" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/stone, +/area/hallway/primary/central) +"miq" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mit" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"miD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/explab) +"miE" = ( +/obj/structure/table, +/obj/item/stack/package_wrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/stack/package_wrap{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stack/package_wrap{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"miF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"miG" = ( +/obj/machinery/door/airlock/research{ + name = "Secure Holding Cell Controll"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "Xeno11"; + name = "Containment Breach Shutters" + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/xenobiology) +"miI" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"miL" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"miS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"miU" = ( +/mob/living/simple_animal/crab/coffee, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/hallway/primary/central) +"miW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"miY" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/bar) +"mja" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/trimline/red/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"mjb" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"mje" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Mass Driver Door"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"mjf" = ( +/obj/machinery/button/door{ + id = "commissaryshutter"; + name = "Commissary Shutter Control"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"mji" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"mjo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock{ + id_tag = "Repdoor"; + name = "Representative's Office"; + req_access_txt = "101" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters) +"mjp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Self Care Salon" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"mju" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"mjy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/filingcabinet/employment, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"mjz" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"mjA" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mjC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"mjD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mjE" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"mjJ" = ( +/obj/structure/lattice, +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/cargo/qm) +"mjK" = ( +/obj/structure/rack, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/turf/open/floor/plasteel, +/area/medical/psychology) +"mjM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mjN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mjT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"mjZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mkb" = ( +/obj/effect/turf_decal/trimline{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"mkg" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"mkh" = ( +/obj/structure/girder, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"mkl" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"mkm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mkr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mkv" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mkI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mkJ" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"mkK" = ( +/turf/closed/wall/r_wall, +/area/security/range) +"mkN" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"mkV" = ( +/obj/structure/table/glass, +/obj/item/camera, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"mkW" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mkX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mkY" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mlc" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"mle" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/maintenance/fore) +"mlf" = ( +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"mli" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"mlj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"mln" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup40"; + location = "hallup39" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mlo" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/fluff/big_chain{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"mly" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mlz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/lockbox, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mlA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"mlJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"mlM" = ( +/obj/machinery/door/airlock/security{ + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"mlO" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mlW" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mma" = ( +/turf/closed/wall, +/area/science/misc_lab) +"mmj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mms" = ( +/obj/machinery/research/explosive_compressor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"mmu" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"mmw" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Wrestling Ring Upper"; + dir = 4; + name = "recreation camera" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"mmy" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"mmz" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"mmC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"mmD" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"mmG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mmN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"mmO" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mmX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mmY" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CytologyShutters"; + name = "Cytology shutters" + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/cytology) +"mnc" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/science/storage) +"mnd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mni" = ( +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"mnn" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mns" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall22"; + location = "hall21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mnt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mnw" = ( +/obj/machinery/smartfridge/organ, +/turf/closed/wall, +/area/medical/surgery/room_b) +"mnx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mnz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"mnB" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"mnD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mnF" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"mnH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"mnJ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mnL" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"mnN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mnT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/space) +"mnV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mnY" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"moa" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"mof" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_y = 4 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"mog" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"mok" = ( +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"mon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"moq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/commons/dorms) +"mot" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig/upper) +"mow" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"moz" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"moK" = ( +/obj/structure/shuttle/engine/router, +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"moP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/fore) +"moU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "QM Junction"; + sortType = 3 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"moV" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/main/lockers) +"moW" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mpe" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"mpf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"mpg" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mpj" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"mpl" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/central) +"mpm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mpn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "No O2 stop shop" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"mpq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mps" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mpt" = ( +/obj/structure/closet/bombcloset/security, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/suit/bomb_suit/security, +/obj/item/clothing/head/bomb_hood/security, +/obj/item/clothing/head/bomb_hood/security, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/lockers) +"mpz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"mpC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mpE" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mpJ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/tcommsat/computer) +"mpN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/button/elevator/directional/east{ + id = "publicElevator" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"mpO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mpS" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mqa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"mqc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"mqe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mqf" = ( +/turf/open/floor/carpet/green, +/area/medical/virology) +"mqh" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/cargo/sorting) +"mqj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mqw" = ( +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"mqC" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"mqF" = ( +/obj/structure/flora/ausbushes/sunnybush, +/mob/living/carbon/human/species/monkey, +/obj/machinery/light/small/directional/north, +/turf/open/floor/grass, +/area/medical/virology) +"mqG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"mqI" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/hallway/secondary/command) +"mqJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"mqS" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mra" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mrh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mri" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"mrm" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"mrs" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"mrv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Space Bridge"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mry" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "Infokiosk"; + name = "Information Kiosk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"mrD" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleporterhubshutters"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"mrK" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mrM" = ( +/obj/structure/cable, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mrN" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"mrO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"mrR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"mrZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"msa" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"msb" = ( +/turf/open/floor/plasteel, +/area/cargo/sorting) +"msd" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"mse" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"msf" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"mso" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"msr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"msz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port Fore Central"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"msF" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8; + name = "Waste Loop Temperature control unit" + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Incinerator Controlls"; + name = "atmospherics camera" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"msG" = ( +/turf/closed/wall, +/area/maintenance/department/engine) +"msK" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"msL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"msQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "72" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"msT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"msX" = ( +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"msY" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/lighter, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/security/detectives_office) +"msZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"mtd" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Secure Storage"; + req_access_txt = "71" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"mtf" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"mtn" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"mto" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mtr" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"mtA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"mtC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"mtG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"mtK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"mtL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"mtM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mtR" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hop) +"mtU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"mtW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"mtY" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/red/directional/east, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mua" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"mub" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"mud" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mue" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"mui" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/security/detectives_office) +"mum" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/flashlight, +/obj/item/radio{ + pixel_x = -12; + pixel_y = 3 + }, +/obj/item/flashlight, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"muv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"muw" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"mux" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 1; + name = "service camera" + }, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"muz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"muB" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"muF" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"muL" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"muM" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/visit) +"muR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"muX" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"mva" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"mvb" = ( +/obj/structure/table/wood/fancy, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/service/chapel) +"mvd" = ( +/obj/structure/rack, +/obj/item/vending_refill/clothing, +/obj/item/vending_refill/robotics, +/obj/item/vending_refill/modularpc, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/engivend, +/obj/item/vending_refill/engineering, +/obj/item/vending_refill/drugs, +/obj/item/vending_refill/games, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"mvk" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel) +"mvn" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort2" + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mvr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/structure/bed, +/obj/item/bedsheet/clown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"mvt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/central) +"mvz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"mvA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"mvJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mvM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mvP" = ( +/turf/closed/wall, +/area/medical/surgery/room_b) +"mvQ" = ( +/obj/structure/lattice, +/obj/item/pipe_dispenser, +/turf/open/space/openspace, +/area/space/nearstation) +"mvS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"mvT" = ( +/obj/machinery/door/airlock/external{ + name = "Structural Support Section"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mvV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos/upper) +"mwa" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"mwe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mwr" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"mwt" = ( +/turf/open/floor/plasteel/stairs/left, +/area/engineering/transit_tube) +"mww" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/wood, +/area/lawoffice) +"mwE" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security/glass{ + name = "Requisition"; + req_one_access_txt = "1;4" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"mwI" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"mwL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"mwS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mwT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mxb" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Medbay - Starboard Psych Ward"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"mxh" = ( +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/siding/thinplating/dark/end, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/checker, +/area/science/research) +"mxk" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mxl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mxm" = ( +/obj/structure/closet/crate/bin, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"mxp" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"mxq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mxu" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/hidden, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"mxv" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mxA" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/openspace, +/area/space) +"mxB" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"mxL" = ( +/obj/structure/table/wood, +/obj/item/instrument/violin, +/obj/item/instrument/guitar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"mxR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mxV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"mxW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"mxZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/atmos/upper) +"myd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/storage) +"myh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"mym" = ( +/obj/machinery/door/airlock/external{ + name = "Structural Support Section"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science) +"myn" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"myr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/northright{ + dir = 8; + id = "Cell 1"; + name = "Cell 1"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"myv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"myD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"myH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"myM" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"myN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"mzd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"mzm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mzp" = ( +/turf/open/floor/wood, +/area/service/library) +"mzq" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/roboticist, +/obj/machinery/camera{ + c_tag = "Science - Robotics Office"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/noticeboard/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"mzs" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mzu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Port"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"mzy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"mzE" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mzF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/central) +"mzK" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"mzO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"mAa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Lowest Aft"; + dir = 5; + name = "hallway camera" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"mAf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"mAh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Port Hallway - Central"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mAl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"mAo" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/detective, +/obj/machinery/requests_console/directional/east{ + department = "Detective's Office"; + name = "Detective's Requests Console" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"mAq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"mAr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/field/generator, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mAu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + name = "justice injector" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"mAB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mAD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "BarBlastDoor"; + name = "bar blast door" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"mAI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"mAJ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"mAK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mAW" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"mBe" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"mBh" = ( +/turf/open/floor/plating, +/area/engineering/atmos) +"mBj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"mBk" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"mBn" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mBr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"mBu" = ( +/turf/open/floor/carpet, +/area/commons/dorms) +"mBv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"mBx" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"mBB" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Council Chamber"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mBE" = ( +/obj/structure/chair/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"mBF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mBH" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"mBJ" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mBK" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/fore) +"mBM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"mBN" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/mob/living/simple_animal/bot/cleanbot{ + name = "Sweeps-The-Tiles" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"mBW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"mCd" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"mCf" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"mCh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mCj" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"mCp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"mCr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"mCE" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"mCI" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"mCJ" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mCK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = -6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mCM" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mCO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"mCQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"mCX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"mCY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"mCZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"mDc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"mDd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mDk" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mDm" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mDn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/service) +"mDo" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"mDr" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mDB" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"mDD" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mDG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mDH" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Virology Ward 1"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"mDI" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"mDO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/central) +"mDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/can/food/beans, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mDR" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"mDT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"mDY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mEb" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"mEe" = ( +/obj/structure/chair/office, +/turf/open/floor/carpet/executive, +/area/command) +"mEk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/chaplain, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 4; + name = "chapel camera" + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/carpet, +/area/service/chapel/main) +"mEs" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mEB" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/healthanalyzer{ + pixel_y = 3 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"mEC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/heads_quarters/ce) +"mED" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mEG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/ce) +"mEP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/engineering/gravity_generator) +"mEZ" = ( +/obj/structure/shuttle/engine/large, +/turf/open/space/openspace, +/area/maintenance/aft/upper) +"mFc" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/carpet, +/area/lawoffice) +"mFf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"mFh" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"mFo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/station/dispenser/flipped{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"mFp" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mFq" = ( +/obj/machinery/button/door{ + id = "xeno9"; + name = "Top Shutters Containment Control"; + pixel_x = 30; + pixel_y = 7; + req_access_txt = "55" + }, +/obj/machinery/button/door{ + id = "xeno10"; + name = "Bottom Shutters Containment Control"; + pixel_x = 30; + pixel_y = -6; + req_access_txt = "55" + }, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mFv" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/medical/medbay/lobby) +"mFI" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/service/janitor) +"mFX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mGb" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/explab) +"mGc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mGe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mGf" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"mGh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mGn" = ( +/obj/machinery/light/broken/directional/east, +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"mGr" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mGs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/hallway/secondary/service) +"mGw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mGy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mGz" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1;4" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/lockers) +"mGD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/disposal/delivery_chute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"mGE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/emergency_oxygen/empty, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mGG" = ( +/obj/item/crowbar/red, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mGH" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mGK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mGO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"mGP" = ( +/obj/structure/shuttle/engine/huge, +/obj/structure/lattice, +/turf/open/space/basic, +/area/maintenance/aft) +"mGR" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/folder, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"mHa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mHb" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"mHn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"mHo" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup14"; + location = "hallup13" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/command) +"mHw" = ( +/obj/machinery/computer/gateway_control{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mHD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mHE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"mHF" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"mHH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"mHI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"mHJ" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"mHK" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Whiteship Dock"; + dir = 1; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"mHP" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine, +/area/science/xenobiology) +"mHT" = ( +/obj/structure/table, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/maintenance/aft) +"mHV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mHZ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"mId" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"mIm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mIp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"mIq" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/trashcart, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mIv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Wrestling Table"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mIA" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"mIF" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"mIG" = ( +/obj/structure/table, +/obj/item/clothing/mask/russian_balaclava{ + pixel_y = 7 + }, +/obj/item/clothing/mask/russian_balaclava, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mIJ" = ( +/obj/item/stack/sheet/glass{ + amount = 12 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mIK" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Command Evac Lounge"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"mIU" = ( +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mIV" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"mJe" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engineering/supermatter) +"mJh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mJi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"mJw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/main) +"mJC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"mJG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mJJ" = ( +/obj/structure/fence/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mJS" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"mJX" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Ordnance Secure Storage"; + req_access_txt = "71" + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/storage) +"mKd" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"mKj" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mKl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mKJ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/openspace, +/area/cargo/qm) +"mKT" = ( +/obj/structure/table, +/obj/item/food/eggwrap{ + pixel_y = 4 + }, +/obj/item/food/salad/eggbowl, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mKW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"mLh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mLn" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ + id_tag = "atmos_incinerator_airlock_exterior"; + name = "Turbine Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"mLq" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"mLu" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mLy" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"mLC" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"mLD" = ( +/obj/item/chair{ + dir = 1 + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mLE" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"mLF" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/science/explab) +"mLI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"mLJ" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mLK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mLR" = ( +/turf/closed/wall, +/area/engineering/break_room) +"mLU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"mLY" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock/public/glass{ + name = "Formal Dining Room" + }, +/obj/structure/curtain/cloth/fancy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"mMb" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"mMi" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mMq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mMr" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/fore) +"mMs" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command) +"mMu" = ( +/turf/closed/wall/mineral/wood, +/area/commons/dorms) +"mMD" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"mMH" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mMK" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"mML" = ( +/obj/item/bouquet/sunflower, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"mMM" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"mMW" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mMZ" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/primary/upper) +"mNa" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/window{ + id = "BrigBigEntrance"; + name = "Brig shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"mNb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/explab) +"mNc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/filingcabinet/employment, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"mNe" = ( +/obj/structure/stairs/west, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/hallway/secondary/entry) +"mNg" = ( +/obj/machinery/porta_turret/lasertag/red, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"mNj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"mNm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mNn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"mNo" = ( +/obj/structure/table, +/obj/item/lightreplacer{ + pixel_y = 12 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mNp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"mNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"mNv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"mNA" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mNB" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mNF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"mNJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mNL" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness) +"mNQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"mNS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"mOf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"mOj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"mOk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"mOp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"mOq" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/kitchen) +"mOB" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/maintenance/aft) +"mOC" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet2"; + name = "Toilet Unit 2" + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/auxiliary) +"mOF" = ( +/obj/structure/bed, +/obj/item/bedsheet/random, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/gateway) +"mOL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"mOM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"mON" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"mOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mOS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"mOX" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mOZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved, +/turf/open/floor/plasteel/dark, +/area/space) +"mPa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"mPc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mPd" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mPe" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"mPk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"mPo" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mPv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"mPw" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port) +"mPz" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"mPA" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/radio/intercom/directional/east, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mPD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"mPG" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"mPH" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/explab) +"mPZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"mQc" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/storage/box/beakers/variety{ + pixel_x = -15; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"mQd" = ( +/obj/item/clothing/head/helmet/skull, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"mQf" = ( +/obj/structure/fans/tiny{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"mQh" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"mQi" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"mQr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mQw" = ( +/obj/structure/window/plasma/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"mQz" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"mQK" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 10 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"mQL" = ( +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"mQQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mQV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central/secondary) +"mRe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mRi" = ( +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"mRo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"mRp" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/ce) +"mRq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/east{ + layer = 3.5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mRr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"mRu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"mRv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mRC" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/cargo/office) +"mRF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"mRN" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"mRP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/security/prison) +"mRW" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/construction/engineering) +"mRX" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mRY" = ( +/obj/machinery/door/airlock/command{ + name = "Public E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mSb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mSf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"mSi" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft) +"mSj" = ( +/obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine/unlabeled, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mSk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/peanuts, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"mSt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"mSv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/science/research) +"mSB" = ( +/turf/closed/wall, +/area/hallway/primary/upper) +"mSE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/grown/coffee/robusta, +/obj/machinery/camera{ + c_tag = "Central Hallway - Cafe"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"mSF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"mSH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"mSL" = ( +/turf/open/floor/plasteel, +/area/service/chapel/office) +"mSN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mSS" = ( +/obj/effect/decal/cleanable/blood/old, +/mob/living/simple_animal/hostile/russian, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mST" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mSU" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"mTd" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningdock) +"mTg" = ( +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"mTk" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mTl" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port) +"mTm" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/medbay/zone2) +"mTn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"mTo" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"mTv" = ( +/obj/structure/window/reinforced, +/turf/open/space/openspace, +/area/space) +"mTx" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"mTA" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mTE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/holosign_creator/atmos, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mTK" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"mTR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"mTX" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mUw" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mUB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"mUD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"mUE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/education) +"mUG" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"mUM" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/detectives_office) +"mUN" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"mUR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"mUT" = ( +/obj/structure/chair/sofa, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"mVg" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"mVk" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"mVr" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"mVw" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"mVx" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/stamp/rd, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"mVz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"mVE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"mVG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"mVK" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "Luggagebelt" + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"mVP" = ( +/obj/structure/industrial_lift, +/obj/structure/railing, +/obj/structure/marker_beacon/burgundy, +/turf/open/openspace, +/area/cargo/sorting) +"mVQ" = ( +/obj/structure/table, +/obj/item/door_seal/sb{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/door_seal/sb{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"mVU" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Prison Infirmary"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/security/prison/upper) +"mWe" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mWl" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mWs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mWu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mWw" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"mWx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mWC" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"mWH" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mWJ" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mWM" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"mWT" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/prison/upper) +"mWV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"mWW" = ( +/obj/structure/window, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"mWY" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"mWZ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"mXa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"mXb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos/upper) +"mXi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/library/abandoned) +"mXm" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mXo" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"mXq" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/folder/white, +/obj/item/pen/fountain, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/medical/psychology) +"mXD" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"mXN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"mXQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"mXR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"mXW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mXX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mYa" = ( +/obj/structure/rack, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/sovietsoda, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"mYb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"mYh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mYk" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"mYl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"mYn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/maintenance/port/central) +"mYp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"mYq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"mYv" = ( +/obj/structure/fireplace, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/turf/open/floor/stone, +/area/maintenance/starboard/fore) +"mYw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "councilblast"; + name = "Council Blast Doors"; + pixel_x = 26; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"mYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"mYI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Capoffice2"; + name = "Captain's Suite"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"mYM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mYQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mZb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"mZc" = ( +/obj/structure/chair/sofa/left, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"mZd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"mZp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mZq" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/primary/central) +"mZw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mZB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"mZO" = ( +/obj/item/trash/semki, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mZQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"mZT" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mZV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mZW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/cargo/office) +"nae" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"nai" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nak" = ( +/obj/structure/bookcase/random, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"nan" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"naq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nay" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"naE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"naJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing/corner, +/turf/open/floor/wood, +/area/service/cafeteria) +"naL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"naM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"naV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"naZ" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/port) +"nba" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"nbi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"nbv" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"nbF" = ( +/obj/machinery/door/window/eastright{ + name = "Robotics Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"nbJ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"nbK" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"nbN" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"nbT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nca" = ( +/turf/open/floor/plasteel, +/area/commons/dorms) +"nci" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/fore/upper) +"nck" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"ncm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/engineering/gravity_generator) +"ncr" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/science{ + pixel_y = -9 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -3 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"ncs" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"ncu" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ncw" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"ncE" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ncG" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ncH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"ncI" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ncJ" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/service/chapel) +"ncK" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/checkpoint/medical) +"ncO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"ncQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"ncT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"ncV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"ncX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"ndc" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ndh" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ndi" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"ndn" = ( +/turf/open/floor/engine, +/area/maintenance/radshelter) +"ndD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ndH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Central"; + dir = 1; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ndL" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ndO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ndZ" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"neb" = ( +/turf/open/floor/carpet/green, +/area/maintenance/fore) +"nec" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"neh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"nem" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1; + network = "tcommsat" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"nen" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"neo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/indestructible, +/area/science/test_area) +"nes" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"net" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"new" = ( +/obj/structure/chair/sofa/right{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"neH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"neJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/cargo/warehouse) +"neM" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"nfb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"nfc" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/port) +"nfd" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nff" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science) +"nfi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/rnd/production/circuit_imprinter, +/obj/machinery/light_switch/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"nfk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nfp" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/hallway) +"nfC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup5"; + location = "hallup4" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"nfN" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"nfR" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"nfU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nfY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central) +"nfZ" = ( +/obj/effect/turf_decal/box, +/obj/machinery/exodrone_launcher, +/obj/item/exodrone, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plating, +/area/cargo/storage) +"nga" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ngb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"ngd" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"ngf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"ngk" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"ngp" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"ngq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/workout) +"ngy" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"ngz" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ngB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ngC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark/side, +/area/service/chapel/office) +"ngD" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ngG" = ( +/obj/machinery/mineral/processing_unit{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"ngH" = ( +/turf/open/floor/wood, +/area/service/theater) +"ngI" = ( +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ngK" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ngN" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ngO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"ngR" = ( +/obj/effect/landmark/carpspawn, +/turf/open/floor/glass/reinforced{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"ngX" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"nhl" = ( +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nhq" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"nhs" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"nht" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"nhu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nhz" = ( +/obj/structure/frame/machine, +/obj/machinery/light/small, +/obj/item/stack/sheet/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"nhC" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"nhI" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nhK" = ( +/obj/structure/table/reinforced, +/obj/item/relic, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"nhT" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/skill_station{ + desc = "It's bluespace circuitry and components have been stripped down, some clown put in a barely functional skillsoft circuit for some reason."; + name = "Broken Labor Camp Teleporter" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"nhU" = ( +/obj/item/hemostat, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"nhX" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nia" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"nib" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"nie" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = " Prison - Gym"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/prison/workout) +"nig" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = null; + name = "Lower Brig"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"nio" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"niq" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"nis" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"niw" = ( +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_y = 4 + }, +/obj/item/clipboard{ + pixel_y = 1 + }, +/obj/item/papercutter{ + pixel_y = 9 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"nix" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"niA" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"niE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"niF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/recreation) +"niH" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/fluff/big_chain{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"niN" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"niV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"niW" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/misc_lab/range) +"njc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"nje" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/pharmacy) +"njf" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"njj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"njk" = ( +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"njo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"njs" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"njB" = ( +/obj/structure/cable, +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"njD" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "Toilet4"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"njF" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"njM" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/service/cafeteria) +"njO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/aft) +"njQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"njT" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/glass, +/obj/item/slime_scanner{ + pixel_y = 13 + }, +/obj/item/slime_scanner{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 10; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"njY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"nka" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"nkd" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nkg" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Starboard Pens"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nki" = ( +/obj/structure/window/reinforced, +/obj/machinery/harvester{ + pixel_y = 6 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"nkk" = ( +/obj/machinery/photocopier, +/turf/open/floor/carpet/executive, +/area/command) +"nkl" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nku" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"nkx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"nky" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"nkz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"nkG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"nkI" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"nkJ" = ( +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"nkM" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nkN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nkO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"nkV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"nla" = ( +/obj/structure/altar_of_gods, +/obj/structure/railing{ + dir = 4 + }, +/obj/item/storage/book/bible, +/turf/open/floor/carpet, +/area/service/chapel) +"nlb" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"nlc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nld" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"nli" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nln" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/processor/slime, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nlr" = ( +/obj/structure/closet/crate/wooden, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Hangar 2"; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nlv" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit/departure_lounge) +"nlw" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nlB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"nlJ" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/service/chapel) +"nlK" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"nlN" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 1"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"nlQ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"nlR" = ( +/obj/structure/table/reinforced, +/obj/item/t_scanner, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"nlT" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva/upper) +"nlX" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"nmb" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/obj/item/food/meat/slab/bear, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"nmd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/explab) +"nmf" = ( +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Shutters"; + pixel_x = 6; + req_access_txt = "19" + }, +/obj/machinery/button/door/directional/south{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + pixel_x = -6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"nmg" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit/departure_lounge) +"nmi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"nmm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"nmo" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"nmq" = ( +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"nmu" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"nmx" = ( +/obj/structure/fence, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nmB" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"nmI" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nmJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"nmK" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nmM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"nmN" = ( +/obj/structure/cable, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"nmP" = ( +/obj/structure/falsewall/reinforced, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"nmS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nmT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"nmY" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"nmZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Center"; + name = "hallway camera" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nna" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old, +/area/service/electronic_marketing_den) +"nnb" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Gas to Cooling Loop" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"nng" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"nnh" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command/gateway) +"nni" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet4"; + name = "Toilet Unit" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"nnj" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"nno" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "N2 to Airmix" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"nnr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nns" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"nnt" = ( +/obj/effect/turf_decal/stripes/box, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/structure/rack, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"nnu" = ( +/obj/structure/table, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nnw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/visit) +"nny" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"nnC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_y = 14 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"nnF" = ( +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/item/screwdriver, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"nnH" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"nnI" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"nnN" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"nnP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"nnQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"nnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"nnT" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nnU" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"nnV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"nnX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/mecha_part_fabricator/sb, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"nnY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"nom" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Public Pool" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"non" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"noo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"nos" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"nou" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"nov" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"nox" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"noy" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"noD" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/central) +"noE" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva) +"noP" = ( +/obj/structure/cable, +/obj/effect/landmark/carpspawn, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"noV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"noX" = ( +/obj/effect/turf_decal/siding/yellow/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/hallway/secondary/construction/engineering) +"npb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/melee/flyswatter, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"nph" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/wood, +/area/command) +"npj" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"npl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"npm" = ( +/obj/machinery/door/airlock{ + name = "Harvest Chamber" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"npn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"npD" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/food/dough{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"npF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"npI" = ( +/turf/open/floor/plasteel, +/area/medical/chemistry) +"npK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"npN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"npP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"npX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"nqb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"nqg" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Secure Tools Storage"; + req_access_txt = "56" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Tool"; + name = "Secure Tool storage blast door" + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"nqj" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk/multiz/down, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"nql" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"nqq" = ( +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"nqx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/central) +"nqz" = ( +/obj/structure/shuttle/engine/huge{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"nqD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lethalshot{ + pixel_y = 11 + }, +/obj/item/storage/box/lethalshot{ + pixel_y = 11 + }, +/obj/item/storage/box/lethalshot{ + pixel_y = 11 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 2 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = -1 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"nqF" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nqH" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nqI" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nqO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"nqT" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"nre" = ( +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"nrg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nrh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"nrt" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"nrw" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nrB" = ( +/obj/structure/table_frame, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nrD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/server) +"nrJ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"nrO" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"nrR" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/aft) +"nrS" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"nrV" = ( +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nrX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"nrZ" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"nsa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/energybar, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nsf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nsg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"nsj" = ( +/obj/machinery/door/airlock{ + name = "Commisary Desk" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"nsm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nsr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nsE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/shamblers, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"nsK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/tcommsat/computer) +"nsP" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/central) +"nsW" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "HoP Junction"; + sortType = 15 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nsZ" = ( +/obj/machinery/door/airlock{ + name = "Store counter" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/upper) +"nth" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/visit) +"nti" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"ntj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ntk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ntl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ntp" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/lighter{ + pixel_x = -5 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"ntu" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ntx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"nty" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/structure/cable, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "HoPcurtains"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"ntD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"ntH" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ntN" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 9 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ntS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"ntV" = ( +/turf/open/openspace, +/area/maintenance/department/medical) +"ntW" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/storage/box/donkpockets/donkpocketteriyaki, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"nua" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"nub" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"nuh" = ( +/obj/machinery/door/window{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"nuj" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nuo" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for Entry Shutters"; + id = "ArrivalsEntry"; + name = "Arrivals Entry Shutter"; + pixel_x = -6; + pixel_y = -23; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for Entry Shutters"; + id = "ArrivalsEntry2"; + name = "Secure Entry Shutter"; + pixel_x = 5; + pixel_y = -23; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for Entry Shutters"; + id = "ArrivalsEntry3"; + name = "End Line Reroute Shutter"; + pixel_x = 5; + pixel_y = -34; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for Entry Shutters"; + id = "ArrivalsEntry4"; + name = "Line Acces Shutter"; + pixel_x = -6; + pixel_y = -34; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"nus" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"nux" = ( +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/lungs, +/obj/item/organ/tongue, +/obj/item/organ/liver, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"nuD" = ( +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"nuJ" = ( +/obj/machinery/computer/security/qm, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nuM" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/visit) +"nuQ" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Hall" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"nuT" = ( +/obj/machinery/door/window/northleft{ + name = "Engineering Delivery"; + req_access_txt = "32" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"nuU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"nuW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nvf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nvg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"nvn" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"nvr" = ( +/obj/structure/transit_tube/crossing, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"nvs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"nvv" = ( +/obj/machinery/button/door/directional/north{ + id = "chem_lockdown"; + name = "chemistry lockdown control"; + req_access_txt = "5;69" + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chemistry - Fore"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/firealarm/directional/north{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nvB" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xenobio Containment"; + name = "Xenobiology Containment Shutters" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nvD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"nvE" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/hallway/primary/central) +"nvG" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nvK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"nvQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"nvU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nwc" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"nwn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nwu" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nwy" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/cytology) +"nwz" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"nwA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"nwG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"nwM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"nwO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"nwP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nwU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"nwX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nxa" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/exit) +"nxc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/service/chapel) +"nxe" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nxg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nxi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"nxl" = ( +/obj/structure/shuttle/engine/large{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/department/medical/central) +"nxq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"nxx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"nxy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/security/brig/upper) +"nxB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nxD" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nxI" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"nxM" = ( +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness) +"nxN" = ( +/obj/item/trash/waffles, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nxT" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/medicine, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch/directional/west{ + pixel_x = -24 + }, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay - Treatment Center"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"nxV" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"nxW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"nya" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"nyb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nye" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"nyf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"nyi" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/science/research) +"nyk" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"nyz" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nyD" = ( +/obj/structure/lattice, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"nyH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"nyI" = ( +/turf/closed/wall, +/area/service/chapel/main) +"nyL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nyO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/wood, +/area/security/courtroom) +"nyS" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"nyY" = ( +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"nzd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nzg" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/storage/toolbox/artistic, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"nzh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"nzi" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"nzw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"nzy" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Lower Starboard Central"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"nzB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"nzG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"nzH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nzL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nzQ" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"nzR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"nzS" = ( +/turf/open/space/openspace, +/area/maintenance/aft/upper) +"nzU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nzY" = ( +/turf/open/floor/plasteel{ + desc = "It's a pool for swimming in!"; + name = "pool" + }, +/area/command/heads_quarters/captain/private) +"nAa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/door/airlock/freezer{ + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen/coldroom) +"nAb" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"nAc" = ( +/obj/machinery/camera{ + c_tag = "Courtroom - Holding Cell" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nAd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"nAg" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nAk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/bar) +"nAp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"nAv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"nAw" = ( +/obj/structure/fans/tiny, +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"nAA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nAH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nAK" = ( +/obj/structure/table/glass, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nAN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"nAP" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Bridge - Head of Personnel's Office"; + dir = 4; + name = "command camera" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"nAT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Starboard Lower Aft"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nAU" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"nAZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nBb" = ( +/obj/machinery/door/airlock/freezer{ + name = "Medical Freezer"; + req_access = "5" + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/cryo) +"nBm" = ( +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/door/poddoor/shutters{ + id = "Sbay1"; + name = "Shuttle Bay 1" + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"nBq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"nBr" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"nBs" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"nBt" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"nBu" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"nBv" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/science/research) +"nBw" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"nBy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"nBB" = ( +/turf/closed/wall/r_wall, +/area/security/main/sb_med) +"nBC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nBD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/flashes{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"nBF" = ( +/turf/closed/wall, +/area/service/abandoned_gambling_den/secondary) +"nBG" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nBJ" = ( +/obj/structure/closet/crate, +/obj/item/vending_refill/snack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/vending_refill/cola, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"nBT" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"nBV" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"nBW" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"nBY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nCa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nCc" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"nCi" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/service/library) +"nCp" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"nCq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"nCs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"nCx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"nCy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nCC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"nCG" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Airlock"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nCM" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nCP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/item/toy/plush/plasmamanplushie, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"nCS" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"nDd" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"nDf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"nDn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nDo" = ( +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nDp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"nDq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/space/basic, +/area/space/nearstation) +"nDx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"nDE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/lockers) +"nDG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nDH" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nDM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nDW" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Study"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"nEb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"nEg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nEt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"nEx" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/status_display/ai/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"nEy" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/engineering/atmos) +"nEA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nEF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nEG" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nEJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/security/courtroom) +"nEP" = ( +/obj/item/banner/medical/mundane, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"nEZ" = ( +/obj/structure/rack, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"nFd" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Area"; + req_access_txt = "19; 61" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"nFe" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"nFl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"nFm" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nFn" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nFp" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"nFu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Starboard"; + dir = 1; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nFv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nFx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel, +/area/security/main) +"nFN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"nFO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"nFT" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"nGb" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/circuit/telecomms{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/science/xenobiology) +"nGc" = ( +/obj/structure/chair/sofa/left, +/obj/item/toy/plush/moth{ + name = "Moffee" + }, +/turf/open/floor/wood, +/area/medical/psychology) +"nGd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nGe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nGi" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nGk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"nGn" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nGo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nGs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nGw" = ( +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"nGy" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"nGA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"nGB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nGF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"nGH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nGN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nGO" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/organ/eyes, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"nGS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"nHb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"nHj" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"nHk" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nHo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/lapvend, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/science) +"nHw" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"nHy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nHD" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nHE" = ( +/obj/structure/table/greyscale, +/obj/item/toy/plush/beeplushie, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"nHH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/explab) +"nHI" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"nHJ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods/fifty, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"nHM" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"nHO" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"nHP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/vending_refill/cola, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nHQ" = ( +/obj/item/kirbyplants/random, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"nHX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nIc" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"nId" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/chapel) +"nIg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nIo" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/warehouse) +"nIq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/maintenance/port) +"nIs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"nIt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nID" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/storage) +"nIG" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva) +"nII" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"nIM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nIP" = ( +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"nIR" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"nIS" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe/contraband/space_drugs{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nIU" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/service/chapel) +"nIW" = ( +/obj/structure/curtain/bounty, +/obj/structure/table{ + name = "Ripperdoc" + }, +/obj/item/organ/lungs/cybernetic/tier2, +/obj/item/organ/stomach/cybernetic/tier2, +/obj/item/organ/liver/cybernetic/tier2, +/obj/item/organ/heart/cybernetic/tier2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nJa" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"nJe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Abandoned Art Studio"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"nJg" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"nJj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"nJn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/hallway/primary/central) +"nJq" = ( +/obj/structure/table, +/obj/item/storage/fancy/cigarettes/cigpack_robustgold{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/paper/fluff{ + info = "Here you go Ney, left these here for you in case you ever got stuck or lost in any bum fucked quadrants.. Good luck, chitter thing. -Max"; + name = "From Max to Ney" + }, +/obj/item/lighter/greyscale{ + pixel_x = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nJt" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"nJu" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"nJw" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"nJA" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"nJF" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"nJG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"nJH" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nJI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/security/courtroom) +"nJN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nJY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"nJZ" = ( +/obj/structure/reagent_dispensers/plumbed/storage, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"nKd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"nKe" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nKf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nKk" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"nKn" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nKo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/explab) +"nKq" = ( +/obj/structure/table, +/obj/item/stack/spacecash/c100, +/turf/open/floor/plating, +/area/maintenance/port) +"nKt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wirerod, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nKx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/button/door{ + id = "ceblast"; + name = "Lockdown Control"; + pixel_y = 26; + req_access_txt = "56" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"nKz" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nKC" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nKH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Flight Control"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/stairs/old, +/area/security/brig/upper) +"nKJ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"nKO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"nKP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nKV" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Ward Cell 1"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"nKW" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nLj" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"nLk" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nLp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"nLH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"nLM" = ( +/obj/structure/lattice, +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space/nearstation) +"nLN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"nLT" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nLU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/xenobiology) +"nLY" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nMl" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/engineering/atmospherics_engine) +"nMs" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"nMy" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nMz" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"nMH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"nMN" = ( +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space/basic, +/area/space/nearstation) +"nMU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Captainprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private) +"nMY" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"nNd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nNe" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"nNf" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/port) +"nNi" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/science/genetics) +"nNl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"nNp" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva) +"nNr" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/west, +/turf/open/openspace, +/area/maintenance/central/secondary) +"nNt" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/lounge) +"nNy" = ( +/obj/machinery/nuclearbomb/beer, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nND" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nNE" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/fluff/big_chain{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"nNF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"nNJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"nNK" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/misc_lab/range) +"nNU" = ( +/obj/structure/table, +/obj/item/trash/peanuts, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/breadslice/moldy, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"nNX" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/cargo/storage) +"nNY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/security/hos, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nNZ" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nOe" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"nOf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nOi" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nOp" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"nOq" = ( +/obj/structure/curtain/cloth, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"nOx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"nOy" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"nOB" = ( +/obj/structure/closet/crate/hydroponics, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"nOC" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Observation Deck"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"nOK" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Security Desk" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"nON" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Private Detective Office" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"nOT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"nOU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nOY" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/overalls, +/obj/item/cultivator, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"nPf" = ( +/obj/structure/closet/crate/bin, +/obj/item/cautery, +/turf/open/floor/plating, +/area/medical/abandoned) +"nPh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"nPx" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"nPE" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"nPJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nPM" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"nPO" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"nPT" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/medicine, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"nPY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nQc" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon, +/obj/item/pen, +/turf/open/floor/carpet, +/area/security/detectives_office) +"nQe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"nQf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"nQi" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plating, +/area/maintenance/port) +"nQs" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"nQv" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/aft/upper) +"nQw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"nQx" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"nQz" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nQB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"nQQ" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"nQT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"nQU" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/stone, +/area/hallway/primary/central) +"nQZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"nRa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"nRi" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"nRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nRl" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/central) +"nRn" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Middle deck acces staircase" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"nRt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nRM" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"nRN" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nRQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"nRS" = ( +/obj/structure/table/glass, +/obj/item/stack/medical/mesh, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"nRT" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet, +/area/service/library/printer) +"nRW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"nSc" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"nSg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"nSk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/syndi_cakes, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nSl" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/commons/fitness/recreation) +"nSx" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nSE" = ( +/turf/open/floor/plasteel, +/area/command/bridge) +"nSK" = ( +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"nSM" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"nSP" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"nSU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nTb" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Service Power Substation"; + req_access_txt = "11" + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"nTc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"nTf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"nTk" = ( +/obj/structure/table/wood, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/carpet, +/area/service/library/printer) +"nTl" = ( +/turf/closed/wall/rust, +/area/maintenance/department/crew_quarters/dorms) +"nTn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/mineral/ore_redemption, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"nTr" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nTx" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"nTF" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"nTG" = ( +/turf/closed/wall, +/area/medical/chemistry) +"nTI" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/openspace, +/area/maintenance/aft/upper) +"nTW" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nUl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"nUm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nUo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nUv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"nUy" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/obj/item/food/meat/slab/chicken, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"nUA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"nUE" = ( +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/security/brig/upper) +"nUF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"nUQ" = ( +/obj/structure/bookcase/random, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"nUR" = ( +/obj/machinery/door/airlock{ + name = "Miscellaneous Storage" + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"nUY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nVb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/disposal) +"nVd" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel, +/area/security/prison) +"nVg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Cargo - Upper foyer"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"nVh" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"nVm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"nVu" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"nVz" = ( +/obj/machinery/camera{ + c_tag = "Science - Xenobio Bridge Aft"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nVN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nVR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"nVV" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nVY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"nWb" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Supply Storage"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"nWe" = ( +/obj/structure/industrial_lift, +/obj/effect/landmark/lift_id{ + specific_lift_id = "CargoElevator" + }, +/turf/open/openspace, +/area/cargo/sorting) +"nWg" = ( +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/closet/crate/hydroponics{ + storage_capacity = 70 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"nWo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/cafeteria) +"nWq" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nWr" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/button/door{ + id = "ChapelGardain"; + name = "Gardain Shutters"; + pixel_x = 30; + pixel_y = 30 + }, +/turf/open/floor/grass, +/area/service/chapel) +"nWv" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Gym" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"nWx" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/table, +/obj/item/restraints/legcuffs/bola, +/obj/item/restraints/legcuffs/bola, +/obj/item/restraints/legcuffs/bola, +/obj/item/restraints/handcuffs{ + pixel_y = 5 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 5 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 5 + }, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/item/restraints/legcuffs, +/obj/machinery/recharger{ + pixel_x = 16; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"nWy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/brown/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nWz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"nWA" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"nWF" = ( +/obj/structure/table, +/obj/item/multitool/circuit{ + pixel_x = 7 + }, +/obj/item/multitool/circuit, +/obj/item/multitool/circuit{ + pixel_x = -7 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/lab) +"nWG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nWJ" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/hallway/primary/central) +"nWM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"nWN" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"nWO" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"nWP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"nWQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nWY" = ( +/obj/structure/rack, +/obj/item/construction/rcd, +/obj/item/rcd_ammo, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/construction/engineering) +"nXb" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nXf" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"nXg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"nXm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"nXn" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Bunker Safehouse"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"nXq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"nXr" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater) +"nXu" = ( +/obj/structure/chair/sofa/corp/left, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"nXy" = ( +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"nXF" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"nXI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"nXJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"nXP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"nXR" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/scanning_module/adv, +/obj/item/stock_parts/scanning_module/adv, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"nXV" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nXX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"nYe" = ( +/turf/closed/wall/rust, +/area/security/detectives_office/private_investigators_office) +"nYg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"nYl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"nYm" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"nYo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"nYt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nYw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nYA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nYB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"nYH" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"nYK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"nYN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nYO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"nYR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/central) +"nYV" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"nZa" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"nZd" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/ethanol{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"nZf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nZh" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"nZj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nZn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"nZp" = ( +/obj/structure/closet/crate/large, +/obj/item/circuitboard/machine/recharger, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"nZt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/miasma_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"nZw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nZy" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Emitters"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"nZC" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/light/directional/north, +/turf/open/openspace, +/area/cargo/qm) +"nZE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nZI" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"nZJ" = ( +/obj/machinery/door/window/westright{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/service/theater) +"nZK" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall, +/area/cargo/storage) +"nZN" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"nZQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nZU" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"nZZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"oaa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/starboard) +"oah" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"oai" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"oak" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window, +/obj/machinery/door/window/westleft{ + pixel_x = -3 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"oal" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel/twenty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"oaq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"oar" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"oat" = ( +/obj/structure/closet/crate/coffin, +/turf/open/floor/plating, +/area/maintenance/port/central) +"oaC" = ( +/obj/structure/chair, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"oaK" = ( +/turf/open/space/openspace, +/area/maintenance/department/science) +"oaL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"oaM" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"oaQ" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"oaX" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"oba" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"obd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"obe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"obf" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"obh" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/secondary/exit) +"obi" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/escape) +"obk" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"obl" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"obo" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"obw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"oby" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"obG" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"obI" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"obJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"obK" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"obM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"obU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"obV" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/starboard) +"obY" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters) +"oco" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/science/misc_lab/range) +"ocp" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain3"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/command/heads_quarters) +"oct" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/science/misc_lab) +"ocw" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"ocz" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"ocF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ocJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/space) +"ocK" = ( +/obj/structure/cable, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ocR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/neutral/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"ocU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ocV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"ocX" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"odd" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ode" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"odl" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror/directional/north{ + pixel_y = 33 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/science/breakroom) +"odo" = ( +/obj/effect/landmark/start/detective, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"odq" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ods" = ( +/obj/machinery/telecomms/relay/preset/station, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"odt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"odx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stack/package_wrap, +/obj/item/storage/box/lights/mixed, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"odB" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/turf/open/floor/wood, +/area/service/chapel/office) +"odC" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"odP" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"odS" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"odZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"oef" = ( +/obj/machinery/flasher/directional/east{ + id = "AI"; + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Tertiary AI Core Acces Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"oek" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/science/research) +"oep" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oer" = ( +/obj/structure/table, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"oeu" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oey" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/explab) +"oeC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/punching_bag, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"oeH" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/circuit, +/area/maintenance/fore/upper) +"oeJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/filter/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"oeM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"oeP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"oeR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oeT" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/circuit, +/area/command/gateway) +"ofb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"ofc" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno8"; + name = "Creature Cell #8" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ofi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ofo" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"ofq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"ofu" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/space_heater, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ofw" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/crew_quarters/dorms) +"ofE" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/workout) +"ofG" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/starboard/aft) +"ofL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ofQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"ofS" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ofV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"ofW" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"ofX" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ogg" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"ogm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"ogo" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/trash/popcorn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ogs" = ( +/obj/machinery/door/airlock/medical{ + name = "Auxilliary Surgical Theatres"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"ogt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/research) +"ogw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Test Lab Junction"; + sortType = 24 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ogE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/item/wrench, +/obj/item/analyzer, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"ogF" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"ogJ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/displaycase/trophy, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"ogM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ogN" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"ogV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"ogW" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"ogX" = ( +/obj/machinery/chem_dispenser/drinks{ + pixel_y = 0 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters) +"ohd" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"ohf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"ohl" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 11; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningoffice) +"ohn" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"ohp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos/upper) +"ohr" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_interior"; + name = "Xenobiology Lab Internal Airlock"; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ohs" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"ohu" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/fore) +"ohy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ohB" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/explab) +"ohJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ohQ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"ohY" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"oib" = ( +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"oio" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"oir" = ( +/turf/closed/wall, +/area/medical/storage) +"ois" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"oiu" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"oix" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/lab) +"oiy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"oiA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"oiC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"oiT" = ( +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"oiU" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/radio/headset/headset_medsci{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"oiV" = ( +/turf/open/openspace, +/area/maintenance/fore/upper) +"oiX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oja" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"ojd" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/port) +"ojl" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ojn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/closet/secure_closet/freezer/fridge/open, +/turf/open/floor/wood, +/area/commons/dorms) +"ojo" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ojA" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ojE" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"ojN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ojO" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"ojR" = ( +/obj/item/trash/cnds, +/turf/open/floor/plating, +/area/maintenance/department/science) +"oka" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"oki" = ( +/obj/structure/table, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = -5 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 5 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"okj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"okk" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"okm" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/assembly/infra, +/obj/structure/window, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"oko" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oku" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"okv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"okw" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/turf/open/floor/plasteel/white, +/area/science/lab) +"okx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"okz" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Bottom Starboard"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"okB" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"okF" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"okI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/secondary/exit) +"okM" = ( +/obj/structure/table, +/obj/item/integrated_circuit/loaded/speech_relay, +/obj/item/integrated_circuit/loaded/hello_world, +/obj/item/mmi, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"okT" = ( +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's Requests Console"; + pixel_y = 4; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/button/door/directional/west{ + id = "RDdoor"; + name = "Door lock"; + normaldoorcontrol = 1; + pixel_x = -30; + pixel_y = -9; + req_access_txt = "30"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"okU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"olb" = ( +/turf/closed/wall/mineral/silver{ + name = "White padded wall" + }, +/area/medical/psychology) +"olg" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/aft/upper) +"oli" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"olt" = ( +/obj/structure/table, +/obj/item/reagent_containers/blood/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/blood/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"olu" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"olv" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway"; + req_one_access_txt = "65" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"olz" = ( +/obj/structure/table, +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.01; + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.02; + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.03; + pixel_x = 8; + pixel_y = -5 + }, +/obj/item/grenade/barrier{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.01; + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.02; + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.03; + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.04; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"olA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"olG" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"olH" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/engineering/engine_smes; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"olI" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/commons/dorms) +"olM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/effect/landmark/start/quartermaster, +/turf/open/openspace, +/area/cargo/qm) +"olO" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Security - Departures Starboard"; + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"olX" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Port Bow"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"olY" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/computer/arcade/battle{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"omi" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"omk" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Perma Staircase"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"omp" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"oms" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"omu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "WestLockdown1"; + name = "West Bridge Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"omC" = ( +/obj/structure/table_frame/wood, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"omG" = ( +/turf/closed/wall, +/area/maintenance/department/medical) +"omI" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"omL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"omR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"omY" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"omZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"onn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ono" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"onq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"onu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"onA" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"onI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"onN" = ( +/obj/item/trash/cheesie, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ooa" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/misc_lab) +"ooc" = ( +/obj/structure/chair/sofa, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"ood" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/cargo/miningdock) +"oom" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"oor" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"oos" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"oou" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"ooA" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/structure/reagent_dispensers/beerkeg, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ooI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ooK" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ooM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"ooQ" = ( +/obj/machinery/camera{ + c_tag = " Prison - Lower Cellblock"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"ooU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ooV" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"ooW" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/monkey_recycler, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ooX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"opa" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/port/fore) +"opd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"opf" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"opj" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/cafeteria) +"opk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"opn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"opx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"opC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"opD" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"opF" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"opG" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"opK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Security Junction"; + sortType = 7 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"opN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/warden) +"opR" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/science) +"opU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"oqc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/landmark/start/exploration, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oqe" = ( +/obj/structure/window/reinforced, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"oqf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/machinery/button/door/directional/north{ + id = "evashutters2"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"oqg" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"oqn" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"oqo" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"oqp" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"oqw" = ( +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"oqx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"oqB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"oqC" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oqD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"oqF" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"oqL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/central) +"oqP" = ( +/obj/structure/window/reinforced, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"oqQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup13"; + location = "hallup12" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"oqS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"oqZ" = ( +/obj/structure/shuttle/engine/large{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"orc" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"orj" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"orl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"orn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/starboard) +"orp" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"orq" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"orA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"orC" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"orE" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"orM" = ( +/obj/machinery/computer/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"orN" = ( +/turf/closed/wall, +/area/medical/exam_room) +"orR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"orS" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/visit) +"orY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"orZ" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"osc" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"osg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"osi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"osj" = ( +/obj/machinery/power/supermatter_crystal/engine, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/engine, +/area/engineering/supermatter) +"osm" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"oso" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"osp" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ost" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"osz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"osE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"osI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"osN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"osO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"osP" = ( +/obj/structure/shuttle/engine/huge{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore) +"osR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"osS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"osW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"osY" = ( +/turf/open/floor/wood, +/area/service/bar/atrium) +"ota" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/storage/box/rxglasses{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"oti" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"otq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "SnacksKitchen"; + name = "snack bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"otx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"otD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/machinery/door/window/westleft{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"otM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/aft) +"otO" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"otT" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ouc" = ( +/mob/living/simple_animal/hostile/russian, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"oud" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ouf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"oun" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ouo" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ous" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/library) +"out" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"ouw" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/service/hydroponics) +"oux" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ouI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ouK" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"ouR" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"ouS" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ouU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ouZ" = ( +/turf/open/floor/plasteel/stairs/old, +/area/commons/fitness/recreation) +"ovf" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 8 + }, +/area/hallway/primary/upper) +"ovn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ovo" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/open/floor/plating, +/area/maintenance/department/science) +"ovq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"ovw" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ovB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"ovD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ovF" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"ovM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ovN" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/cargo/qm) +"ovQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ovY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"ovZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"owb" = ( +/obj/structure/table, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"owk" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"owl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"ows" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"owt" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"owu" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"owz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"owD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"owP" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"owS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/stack/sheet/cloth/ten, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"owU" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"owV" = ( +/obj/structure/closet/crate/freezer{ + name = "limb storage" + }, +/obj/item/bodypart/l_arm, +/obj/item/bodypart/r_leg, +/obj/item/bodypart/l_leg/digitigrade, +/obj/item/bodypart/head, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oxb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"oxl" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"oxq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"oxr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/science/breakroom) +"oxD" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"oxE" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"oxH" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/maintenance/aft) +"oxI" = ( +/turf/open/floor/plasteel, +/area/science/mixing) +"oxN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"oxU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"oxY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"oya" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oyk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"oym" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"oyn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/commons/fitness/recreation) +"oyp" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"oyv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"oyB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"oyC" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/main) +"oyG" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/railing/corner, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"oyH" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"oyI" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"oyZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ozc" = ( +/obj/item/trash/syndi_cakes, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ozd" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargodeliver" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"oze" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"ozk" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ozm" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"ozp" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ozv" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"ozw" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"ozy" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet/purple, +/area/maintenance/fore/upper) +"ozD" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"ozG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ozH" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"ozO" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"ozW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"oAb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"oAg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"oAk" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Science Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;47" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"oAm" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oAn" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/camera{ + c_tag = "Art Gallery"; + name = "library camera" + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"oAo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oAq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"oAx" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"oAI" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"oAO" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"oAS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"oBb" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"oBc" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oBg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/service/library/printer) +"oBh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood, +/area/command) +"oBk" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"oBr" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/medical/virology) +"oBu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oBx" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"oBM" = ( +/obj/item/clothing/suit/chaplainsuit/clownpriest, +/obj/item/clothing/head/clownmitre, +/obj/item/clothing/shoes/clown_shoes, +/obj/item/clothing/mask/gas/clown_hat, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"oBU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"oBV" = ( +/obj/structure/table, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"oBX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"oBY" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"oCa" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/port) +"oCb" = ( +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"oCc" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"oCi" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"oCj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"oCo" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"oCs" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"oCt" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/glasses/meson, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"oCz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"oCB" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"oCF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/warehouse) +"oCH" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"oCM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oDb" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/item/organ/brain, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"oDd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Secure Tool"; + name = "Secure Tool storage blast door" + }, +/turf/open/floor/plating, +/area/engineering/storage/backup) +"oDj" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"oDk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"oDl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"oDo" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"oDB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oDQ" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"oDR" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/grass, +/area/service/chapel) +"oDU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"oDV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oDX" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"oEe" = ( +/obj/structure/table/glass, +/obj/item/radio/intercom/directional/north, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/analyzer{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oEj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"oEo" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"oEu" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"oEz" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"oEG" = ( +/obj/structure/table/wood/poker, +/obj/item/organ/eyes, +/obj/item/kitchen/knife/shiv, +/obj/item/stack/spacecash/c200, +/obj/effect/decal/cleanable/blood, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"oEM" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oEP" = ( +/obj/structure/frame/computer, +/obj/item/shard, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"oEW" = ( +/obj/structure/ladder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"oEX" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album/bar, +/obj/item/clothing/head/that{ + pixel_y = 17 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood, +/area/service/bar) +"oFd" = ( +/obj/structure/table, +/obj/item/clothing/suit/armor/vest/old, +/obj/item/clothing/head/helmet/old{ + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oFk" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"oFl" = ( +/obj/machinery/door/airlock/security{ + name = "Isolation Cell 2"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"oFq" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oFr" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oFu" = ( +/obj/machinery/camera{ + c_tag = " Prison - Port"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oFx" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/tree/palm, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/rock/pile, +/turf/open/floor/grass, +/area/hallway/primary/central) +"oFA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/research) +"oFD" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"oFF" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"oFK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"oFL" = ( +/obj/structure/table, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"oFM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/fore) +"oFY" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/item/skillchip/job/engineer, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"oGc" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"oGh" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oGi" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"oGj" = ( +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/medical/storage) +"oGm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oGr" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/stone, +/area/hallway/primary/central) +"oGv" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"oGx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/miningdock) +"oGD" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"oGE" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/transit_tube) +"oGJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oGL" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/lockers) +"oGM" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"oGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oGV" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/structure/cable, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/command/storage/eva/upper) +"oGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"oHc" = ( +/obj/structure/tank_holder/extinguisher{ + pixel_y = 8 + }, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/command/storage/eva) +"oHd" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oHg" = ( +/obj/structure/table_frame, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"oHi" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"oHj" = ( +/obj/machinery/button/door{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Control"; + pixel_x = -1; + pixel_y = 25 + }, +/obj/structure/filingcabinet/employment, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"oHm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"oHr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"oHs" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"oHA" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/lightreplacer, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oHG" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"oHH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"oHO" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"oHP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/atmos/upper) +"oHS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"oIa" = ( +/obj/structure/table, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/clothing/gloves/color/fyellow/old, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"oId" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"oIi" = ( +/obj/effect/turf_decal/siding/wideplating/dark, +/obj/machinery/door/airlock/grunge{ + name = "Game Room" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"oIj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"oIn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/brown/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"oIu" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"oIC" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port) +"oII" = ( +/obj/machinery/computer/arcade/battle{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"oIJ" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"oIW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oIY" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oJd" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"oJm" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"oJn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"oJo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"oJp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"oJv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"oJz" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "cargoload" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"oJB" = ( +/turf/closed/wall, +/area/medical/medbay/zone2) +"oJC" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oJF" = ( +/turf/closed/wall, +/area/science) +"oJI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"oJR" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"oJS" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/item/bouquet/rose, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"oKa" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/power/shieldwallgen, +/obj/machinery/button/door{ + id = "evablastdoor"; + name = "East Bridge Lockdown"; + pixel_x = -26; + req_access_txt = "18" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"oKe" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"oKf" = ( +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/science/research) +"oKn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Engineering Deliveries"; + req_one_access_txt = "24;32" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"oKo" = ( +/obj/structure/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oKs" = ( +/obj/machinery/door/airlock/grunge{ + name = "Burial Grounds" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"oKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"oKC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/psychology) +"oKE" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"oKF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"oKO" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oKP" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"oKS" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/hallway/primary/central) +"oKX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"oLd" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"oLj" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/bot/cleanbot{ + name = "Soapficcer Cleansky" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"oLm" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/item/folder/yellow, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"oLn" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/checkpoint/escape) +"oLo" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/twenty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft) +"oLs" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oLu" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"oLv" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oLB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"oLC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"oLD" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oLL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"oLO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/white, +/area/science/storage) +"oLQ" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"oLX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"oMb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"oMc" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/binoculars, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"oMe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"oMm" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"oMn" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"oMw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"oMy" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Lab"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"oMB" = ( +/turf/closed/wall, +/area/engineering/storage) +"oMG" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/command) +"oMH" = ( +/turf/open/floor/plasteel/stairs/left, +/area/cargo/storage) +"oMJ" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/turf/open/floor/wood, +/area/medical/exam_room) +"oMO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"oMS" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"oMT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/telecomms/server/presets/service, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"oMW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"oMY" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"oNa" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/science/mixing) +"oNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"oNc" = ( +/obj/effect/landmark/start/exploration, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/computer, +/obj/item/stack/cable_coil/cut, +/obj/item/shard, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"oNh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"oNm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plating, +/area/maintenance/port) +"oNo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"oNq" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oNv" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"oNw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Starboard"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"oND" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"oNK" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate, +/obj/item/reagent_containers/glass/bottle/toxin{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/glass/bottle/facid{ + name = "fluorosulfuric acid bottle"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/all_access, +/obj/item/assembly/signaler{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"oNL" = ( +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"oNN" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"oNO" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oNP" = ( +/turf/open/space/openspace, +/area/space) +"oNR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/commons/lounge) +"oNZ" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"oOe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"oOi" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"oOj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Central Aft"; + dir = 5; + name = "hallway camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"oOm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oOp" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/table/wood, +/obj/structure/displaycase/forsale/kitchen, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"oOx" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/basic, +/area/maintenance/port) +"oOy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"oOH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"oOI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"oOJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno3"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oOL" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oON" = ( +/obj/effect/turf_decal/siding/yellow/end{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/break_room) +"oOU" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"oOV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oOY" = ( +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_y = 8 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"oOZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/syringes, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"oPc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"oPd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oPe" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/service/chapel) +"oPg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oPv" = ( +/obj/machinery/camera{ + c_tag = "Leisure Area - Lasertag Blue Lower"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"oPw" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/security, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"oPy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"oPJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/coin/gold, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -4; + pixel_y = 16 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 6; + pixel_y = 16 + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"oPM" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"oPY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"oQg" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oQl" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oQm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Starboard Central"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"oQp" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/hallway/primary/aft) +"oQs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"oQv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"oQz" = ( +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"oQA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"oQI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oQN" = ( +/obj/effect/landmark/start/warden, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/security/warden) +"oQR" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"oQU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "Psychologistcurtains" + }, +/turf/open/floor/plating, +/area/medical/psychology) +"oQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"oRf" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/command/storage/eva) +"oRi" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"oRj" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"oRk" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"oRo" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"oRt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oRv" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"oRC" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"oRI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"oRJ" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oRM" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oRO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"oRR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"oRX" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/starboard) +"oSd" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"oSf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/toner/extreme{ + pixel_y = -5 + }, +/obj/item/toner/extreme, +/obj/item/toner/extreme{ + pixel_y = 5 + }, +/obj/item/airlock_painter/decal, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"oSi" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oSk" = ( +/turf/closed/wall, +/area/service/library/artgallery) +"oSl" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oSn" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"oSs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oSz" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"oSD" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"oSH" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oSO" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"oSR" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"oSZ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/chapel/main) +"oTa" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oTc" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"oTf" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/aft/upper) +"oTk" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"oTl" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/upper) +"oTn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"oTp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"oTq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/warehouse) +"oTv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"oTw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/chapel/office) +"oTx" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"oTF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oTH" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"oTM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera{ + c_tag = " Prison - Central"; + dir = 10; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oTN" = ( +/obj/structure/table, +/obj/item/exodrone{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oTP" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oUi" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"oUl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"oUp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/door/airlock{ + name = "Blueshield's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command) +"oUs" = ( +/obj/machinery/door/airlock/security{ + name = "Security Post - Cargo"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"oUz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"oUA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"oUB" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science) +"oUD" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"oUE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + id_tag = "Storefront"; + name = "Store Backroom" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"oUK" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_one_access_txt = "35;28" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oUL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/miner, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"oUN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"oUP" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research) +"oUV" = ( +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"oVb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"oVg" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"oVi" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"oVm" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"oVo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"oVp" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"oVw" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"oVx" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Waste to Filter" + }, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"oVG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"oVO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oVV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"oWa" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"oWb" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/stone, +/area/hallway/primary/central) +"oWd" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oWp" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"oWt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"oWu" = ( +/obj/structure/transit_tube/diagonal{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"oWv" = ( +/obj/item/statuebust/hippocratic{ + pixel_y = 14 + }, +/obj/structure/table/wood/fancy/red, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"oWB" = ( +/obj/structure/table/glass, +/turf/open/floor/plating, +/area/maintenance/fore) +"oWE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"oWG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"oWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"oWM" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oWN" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"oWQ" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oWX" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"oWZ" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"oXc" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner{ + pixel_y = 8 + }, +/obj/item/storage/box/prisoner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/prison/upper) +"oXd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"oXj" = ( +/obj/effect/turf_decal/bot, +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/explab) +"oXo" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"oXt" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"oXu" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oXx" = ( +/obj/structure/fence/door{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/fore) +"oXz" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"oXG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oXL" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oXM" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"oXP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oXS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"oXV" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"oXX" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"oYb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oYc" = ( +/obj/machinery/camera{ + c_tag = " Prison - Starboard"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"oYl" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"oYq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oYr" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"oYv" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"oYw" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"oYy" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/kitchen/spoon{ + pixel_x = -2 + }, +/obj/item/kitchen/spoon, +/obj/item/kitchen/spoon{ + pixel_x = 2 + }, +/obj/item/kitchen/spoon{ + pixel_x = -2 + }, +/obj/item/kitchen/spoon, +/obj/item/kitchen/spoon{ + pixel_x = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"oYC" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "AI Satellite - Teleporter"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"oYF" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oYH" = ( +/obj/machinery/door/airlock{ + id_tag = "commissarydoor"; + name = "Commissary" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"oYK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"oYL" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"oYN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/security/courtroom) +"oYP" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"oYS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oYU" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno8"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"oZf" = ( +/obj/structure/table/wood, +/obj/item/grenade/firecracker{ + pixel_x = -7; + pixel_y = 1 + }, +/obj/item/grenade/firecracker{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oZi" = ( +/obj/machinery/door/firedoor/border_only/closed{ + dir = 1 + }, +/obj/item/food/friedegg, +/turf/open/floor/grass, +/area/maintenance/starboard) +"oZj" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"oZk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east{ + pixel_y = -12 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"oZl" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"oZo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/games, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"oZq" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters) +"oZy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"oZz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"oZF" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"oZG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"oZI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"oZJ" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/fluff/big_chain{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"oZK" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Security Outpost" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig/upper) +"oZO" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/cargo/office) +"oZQ" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/lab) +"oZR" = ( +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/beakers, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"oZS" = ( +/obj/structure/window/reinforced, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"paa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"pab" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"pac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"pai" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"pal" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/button/elevator/directional/south{ + id = "publicElevator" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"pam" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pan" = ( +/obj/item/gun/ballistic/bow, +/obj/structure/table{ + name = "Blacksmith" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"pao" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Science - Research Division Access"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/research) +"pap" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"paq" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"pat" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"pay" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"paz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/theater) +"paB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"paC" = ( +/obj/structure/easel, +/turf/open/floor/plating, +/area/maintenance/disposal) +"paD" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/item/food/grown/banana, +/turf/open/floor/grass, +/area/medical/virology) +"paE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"paO" = ( +/obj/structure/rack, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"paV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"pba" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"pbc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"pbf" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pbh" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pbr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command) +"pbs" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pbt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pbx" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"pbA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"pbK" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"pbQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"pbS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pbT" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"pbX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"pbZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pcc" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"pcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"pcf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"pch" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"pcr" = ( +/obj/machinery/door/poddoor/massdriver_trash, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pcs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pct" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Robotics Deliveries"; + req_access_txt = "29" + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"pcv" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"pcx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs, +/area/command/gateway) +"pcy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"pcA" = ( +/obj/structure/curtain/cloth, +/obj/machinery/shower{ + pixel_y = 17 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"pcI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + pixel_x = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"pcK" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port) +"pcM" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"pcQ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"pcT" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"pda" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"pdh" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/hallway/primary/central) +"pdj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"pdk" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port) +"pdt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pdC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/commons/dorms) +"pdD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"pdF" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"pdM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"pdP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/security/brig/upper) +"pdU" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"peg" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"pel" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"per" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/science/explab) +"pet" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/courtroom) +"peu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Plasma injector" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"peD" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"peH" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"peN" = ( +/obj/structure/filingcabinet, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Office"; + name = "command camera" + }, +/obj/structure/noticeboard/captain{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"peR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"peU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pfh" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"pfk" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics/upper) +"pfr" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hos) +"pft" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"pfu" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = -32 + }, +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Cell 5"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"pfx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"pfF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pfG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"pfL" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"pfQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"pfR" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pfS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pfT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"pfZ" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/workout) +"pgk" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"pgp" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"pgy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Port Central"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pgH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pgI" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pgM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"pgP" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"pgW" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fore) +"pgX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pgZ" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison/workout) +"phc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"phd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"phe" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"phh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"phm" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + name = "engineering camera" + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"phn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"phq" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/primary/central) +"pht" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"phu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"phv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"phw" = ( +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"phB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"phC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"phI" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/item/screwdriver, +/turf/open/floor/engine, +/area/engineering/engine_room) +"phJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"phP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"phT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"pif" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/cytology) +"pio" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pip" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"pir" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/teleporter) +"piu" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"piB" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/fore) +"piD" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"piG" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"piN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"piS" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/thermomachine, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"piU" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pjd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"pjg" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/commons/locker) +"pji" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"pjk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pjo" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pjp" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"pjz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"pjC" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pjL" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"pjN" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pjP" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/service/chapel) +"pjV" = ( +/obj/structure/cable, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"pjW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"pjX" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"pka" = ( +/turf/open/floor/glass, +/area/hallway/primary/upper) +"pkf" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"pkk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"pko" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Turret Chamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"pkp" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"pku" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pkA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/lawoffice) +"pkE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"pkF" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup{ + name = "#1st prize for Nanotrasen's finest captain's office"; + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"pkG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 1; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"pkH" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"pkL" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"pkO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"pkQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pkV" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ple" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"pll" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"pln" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera{ + c_tag = "Science - Far Fore Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"plv" = ( +/turf/closed/wall, +/area/medical/psychology) +"plw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"ply" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"plA" = ( +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/cabbage, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/eggplant, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/structure/closet/crate/hydroponics{ + storage_capacity = 70 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"plK" = ( +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Outpost"; + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"plT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/crate/engineering{ + name = "Turbine Board Crate" + }, +/obj/item/circuitboard/computer/turbine_computer, +/obj/item/circuitboard/machine/power_turbine, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"plV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"plW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pmb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"pmg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pmh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"pmi" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"pmn" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"pmw" = ( +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"pmz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"pmD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"pmG" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pmJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"pmN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"pmR" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"pmS" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"pmW" = ( +/obj/structure/safe, +/obj/item/storage/secure/briefcase{ + contents = newlist(/obj/item/clothing/suit/armor/vest,/obj/item/gun/ballistic/automatic/pistol,/obj/item/suppressor,/obj/item/clothing/mask/balaclava,/obj/item/bodybag,/obj/item/soap/nanotrasen) + }, +/obj/item/storage/backpack/duffelbag/syndie/hitman, +/obj/item/card/id/advanced/silver/reaper, +/obj/item/lazarus_injector, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"pna" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table_frame, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"pne" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pnj" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/cafeteria) +"pno" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/science) +"pnq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"pnz" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"pnA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/brigdoor/westright{ + dir = 1; + name = "Shooting Range"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/range) +"pnC" = ( +/obj/machinery/camera{ + c_tag = "Courtroom - Center"; + dir = 5 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"pnD" = ( +/obj/structure/window/reinforced, +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"pnF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"pnH" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"pnK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"pnV" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "Xeno11"; + name = "Containment Breach Shutters" + }, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/science/xenobiology) +"pnX" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"poa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"poe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pof" = ( +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/hallway/primary/upper; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pog" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"poh" = ( +/turf/closed/wall/r_wall, +/area/cargo/storage) +"poj" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets{ + pixel_y = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "Virology"; + name = "Virology Requests Console"; + pixel_x = -30; + pixel_y = 0; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pox" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"poy" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"poA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"poD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"poE" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/port) +"poQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"poT" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"poU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"poW" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"poX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/open/space/basic, +/area/space/nearstation) +"poZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ppi" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/reagent_containers/hypospray/medipen, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"ppj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"ppl" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"ppn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"ppo" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ppv" = ( +/obj/structure/table, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"ppA" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science) +"ppH" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ppL" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy"; + req_access_txt = "69" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"ppU" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ppW" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningdock) +"pqk" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pqm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics Upper"; + dir = 8; + name = "service camera" + }, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pqs" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room"; + req_access_txt = "19;23" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pqx" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"pqB" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"pqW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"pqX" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"prl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"prm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"prp" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"prr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/printer) +"prz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/central) +"prA" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"prE" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "27" + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"prF" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"prL" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"prO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"prS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"prW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"prY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/camera{ + c_tag = "Bridge - Vanguard Quarters"; + dir = 1; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"psf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/gateway) +"psn" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"pso" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pss" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"psz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"psD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"psH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"psI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"ptd" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/machinery/camera{ + c_tag = "Service Hallway - Main Room"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"ptf" = ( +/obj/structure/closet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"pts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"ptt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ptv" = ( +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"ptB" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ptF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ptO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ptS" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"ptV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/theater) +"ptW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 8; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/zeroth/onehuman, +/obj/item/ai_module/supplied/oxygen{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"pul" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/prison/upper) +"pun" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"pup" = ( +/obj/machinery/atmospherics/pipe/color_adapter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"puq" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"pus" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"puu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"puz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/hand_labeler{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"puE" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"puL" = ( +/obj/structure/window, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"puO" = ( +/obj/effect/turf_decal/box/red, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/cytology) +"puP" = ( +/obj/structure/cable, +/obj/structure/reflector/single/anchored{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"puR" = ( +/obj/effect/turf_decal/trimline/purple/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"puS" = ( +/turf/open/floor/glass/reinforced{ + initial_gas_mix = "TEMP=2.7" + }, +/area/hallway/secondary/exit) +"puT" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"puU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"puW" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"puX" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"pva" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pvh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pvj" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"pvk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/science/explab) +"pvn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"pvo" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"pvt" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pvv" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pvw" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pvE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pvH" = ( +/turf/closed/wall, +/area/security/prison/work) +"pvM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"pvN" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pvX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "BarBlastDoor"; + name = "bar blast door" + }, +/turf/open/floor/plating, +/area/service/bar/atrium) +"pvZ" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/cargo/storage) +"pwb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro to Waste" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pwc" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"pwd" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"pwj" = ( +/obj/machinery/light/directional/north, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"pwk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"pwl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pwm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"pwn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science) +"pwr" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pwt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pwv" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/engineering/break_room) +"pwx" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"pwz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pwA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel) +"pwB" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"pwK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"pwQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/central) +"pwR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pwT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno9"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"pwY" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"pxe" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"pxk" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"pxn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"pxq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"pxr" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/engineering) +"pxs" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"pxt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"pxu" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"pxy" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"pxz" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"pxA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science) +"pxC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"pxF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"pxG" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pxI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"pxM" = ( +/obj/machinery/door/airlock/wood{ + name = "Sauna" + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"pxN" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"pxS" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/prison/work) +"pxU" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/circuit, +/area/command/gateway) +"pxX" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pxZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pya" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/bottle/lizardwine{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/sake{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/service/bar) +"pye" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/janitor, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/storage/belt/janitor, +/obj/item/storage/belt/janitor, +/obj/item/clothing/shoes/galoshes/dry, +/obj/item/clothing/shoes/galoshes, +/obj/item/holosign_creator/janibarrier, +/obj/item/holosign_creator/janibarrier, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/janitor) +"pyi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"pyj" = ( +/obj/machinery/door/airlock/research{ + name = "Ordnance Launch Site"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"pym" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/gps/engineering{ + gpstag = "CE0" + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"pyx" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"pyy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pyA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pyJ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction/layer4{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pyM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"pyO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"pyQ" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"pyR" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pyX" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"pyZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"pzb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Gateway Chamber"; + name = "command camera" + }, +/turf/open/floor/circuit, +/area/command/gateway) +"pzf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"pzm" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"pzr" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"pzv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pzC" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/science/explab) +"pzD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno2"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pzE" = ( +/obj/structure/table, +/obj/item/folder/blue, +/turf/open/floor/plasteel, +/area/security/courtroom) +"pzF" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"pzK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Engineering Deliveries"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/sorting) +"pzP" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pzQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pzS" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pzV" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"pzW" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/explab) +"pzX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"pAa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pAe" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"pAk" = ( +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"pAl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"pAr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pAs" = ( +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"pAy" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Toilet Unit 1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"pAC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"pAD" = ( +/turf/open/floor/plating, +/area/cargo/office) +"pAK" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pAM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pAN" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"pAO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/hallway/primary/central) +"pAS" = ( +/obj/structure/filingcabinet/chestdrawer, +/mob/living/simple_animal/parrot/poly, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"pAW" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"pAY" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"pBb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"pBc" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"pBd" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"pBe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"pBg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"pBn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"pBr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"pBs" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown1"; + name = "Lockdown" + }, +/obj/machinery/button/door{ + id = "prisonlockdown1"; + name = "Lockdown"; + pixel_x = 24; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pBv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs, +/area/commons/fitness/recreation) +"pBx" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"pBy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"pBE" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pBI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/security/courtroom) +"pBU" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"pBZ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pCi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"pCj" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"pCl" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"pCq" = ( +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"pCu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pCv" = ( +/obj/structure/reagent_dispensers/plumbed/storage, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pCw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/sorting) +"pCz" = ( +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/medical/exam_room) +"pCD" = ( +/obj/structure/girder, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pCF" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"pCG" = ( +/obj/structure/fans/tiny, +/turf/open/openspace, +/area/maintenance/starboard/central) +"pCJ" = ( +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/recreation) +"pCN" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 4"; + req_access_txt = "32" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"pCS" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pCT" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"pCV" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/space) +"pDc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port) +"pDk" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"pDu" = ( +/obj/structure/table/glass, +/obj/item/experi_scanner{ + pixel_x = 5 + }, +/obj/item/experi_scanner, +/obj/item/experi_scanner{ + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"pDx" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/power/floodlight, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pDz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/wood{ + layer = 2.8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"pDF" = ( +/obj/structure/dresser{ + pixel_y = -11 + }, +/obj/structure/mirror{ + layer = 3; + pixel_x = 1; + pixel_y = 4 + }, +/turf/closed/wall, +/area/maintenance/port/central) +"pDI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/main) +"pDL" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"pDO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"pDT" = ( +/obj/structure/table, +/obj/item/melee/baseball_bat, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"pDU" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"pDV" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pDZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness) +"pEb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"pEh" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"pEl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/science/research) +"pEm" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/explab) +"pEq" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pEF" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Incinerator"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pEI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pEK" = ( +/obj/structure/grille/broken, +/obj/item/trash/boritos, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"pEQ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/server) +"pEV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"pEY" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + name = "service camera" + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"pEZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "ChapelGardain"; + name = "Chapel Gardain Shutters" + }, +/turf/open/floor/plating, +/area/service/chapel) +"pFj" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"pFm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pFs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"pFx" = ( +/turf/closed/wall, +/area/science/mixing) +"pFz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/closed/wall, +/area/engineering/atmos) +"pFC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"pFH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"pFJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pFL" = ( +/turf/open/floor/plasteel/dark, +/area/security/execution) +"pFM" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft 1"; + dir = 1; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"pFO" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/obj/machinery/button/door{ + id = "prisonlockdown1"; + name = "Lockdown"; + pixel_x = -24; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pFQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/aft) +"pFW" = ( +/obj/structure/table/wood, +/obj/item/toy/talking/griffin{ + pixel_x = 7; + pixel_y = 17 + }, +/obj/item/toy/talking/owl{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/toy/cards/deck/tarot{ + pixel_x = -6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"pFY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pGi" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pGn" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/kitchen) +"pGq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/fore/upper) +"pGt" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"pGu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/maintenance/department/medical/central) +"pGv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"pGB" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/fore) +"pGJ" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/department/medical/morgue) +"pGL" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/security/prison/upper) +"pGP" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"pHb" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "prisonlockdown2"; + name = "Lockdown" + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pHc" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"pHf" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pHg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"pHk" = ( +/obj/structure/chair/sofa/right, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pHn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"pHp" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"pHv" = ( +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pHx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pHy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"pHA" = ( +/turf/closed/wall, +/area/security/prison/shower) +"pHC" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 8; + req_access_txt = "70" + }, +/obj/item/folder/white, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward4"; + name = "Controll Room Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/psychology) +"pHI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"pHK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"pHL" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"pHP" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet/executive, +/area/command) +"pHR" = ( +/turf/open/floor/plasteel/stairs/right, +/area/commons/dorms) +"pHS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pHT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/holopad/secure, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai_upload) +"pHX" = ( +/obj/structure/showcase/machinery/cloning_pod{ + desc = "An old prototype cloning pod, permanently decommissioned following the incident."; + name = "decommissioned cloner" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/medical/abandoned) +"pId" = ( +/obj/machinery/camera{ + c_tag = "Leisure Area - Lasertag Red Fore"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"pIi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"pIp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"pIs" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pIv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"pIx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pIH" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pIT" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"pIV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Break Room"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/breakroom) +"pIW" = ( +/obj/structure/chair/sofa{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/dorms) +"pIY" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"pIZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/janitor) +"pJj" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"pJn" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite - Staircase"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/transit_tube) +"pJo" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bowl, +/obj/item/food/dough, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"pJq" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pJv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"pJw" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 6"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pJA" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"pJC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"pJE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "XenoOffice"; + name = "Xenobiology Lockdown Blast Doors" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"pJF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"pJH" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/obj/item/clothing/suit/hawaiian{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/under/pants/khaki{ + pixel_x = 7; + pixel_y = -8 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"pJI" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/service/library/abandoned) +"pJJ" = ( +/turf/open/openspace, +/area/hallway/secondary/construction/engineering) +"pJM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno7"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pJN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"pJW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"pKe" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pKh" = ( +/obj/structure/shuttle/engine/large, +/turf/open/space/openspace, +/area/maintenance/starboard/aft) +"pKi" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"pKu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pKz" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"pKC" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"pKE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pKI" = ( +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"pKK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"pKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"pKO" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/prison/shower) +"pKS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pKX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"pLg" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/shieldgen, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"pLh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pLk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/inducer, +/obj/item/inducer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"pLl" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/heads_quarters/ce) +"pLo" = ( +/obj/machinery/door/airlock/silver{ + name = "Changing Room" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/shower) +"pLp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pLr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pLu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination{ + location = "Arrival Shuttle" + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"pLx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pLz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"pLC" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/range) +"pLG" = ( +/obj/machinery/button/door{ + id = "xeno9"; + name = "Top Shutters Containment Control"; + pixel_y = -30; + req_access_txt = "55" + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"pLI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"pLQ" = ( +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "Xeno11"; + name = "Containment Breach Shutters" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/science/xenobiology) +"pMf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"pMm" = ( +/obj/structure/closet/crate/large, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"pMu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"pMy" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"pMz" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"pMA" = ( +/obj/structure/table, +/obj/item/retractor, +/obj/item/scalpel, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"pMC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/machinery/button/door{ + id = "Sbay2"; + name = "Shuttle Bay 2"; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig/upper) +"pMI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"pMJ" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/medical/psychology) +"pMK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/command/gateway) +"pMM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"pMO" = ( +/obj/machinery/light/directional/north, +/obj/item/toy/seashell, +/turf/open/floor/plating/beach/sand, +/area/maintenance/department/crew_quarters/dorms) +"pNa" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/door/window{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/siding/thinplating/light, +/turf/open/floor/grass, +/area/medical/virology) +"pNc" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/cargo/sorting) +"pNd" = ( +/obj/effect/turf_decal/trimline/blue, +/obj/item/toy/beach_ball/holoball, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 10 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"pNg" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit, +/area/maintenance/fore/upper) +"pNj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"pNk" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/shovel, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"pNm" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"pNn" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"pNp" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/fitness/recreation) +"pNt" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"pNx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pNz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pNG" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pNK" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"pNM" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"pOb" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"pOc" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"pOf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"pOt" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"pOy" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"pOB" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/service/abandoned_gambling_den/secondary) +"pOC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Luggagebelt" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"pOE" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"pOG" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"pOH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"pOJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pOM" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Hydroponics" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"pOP" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet, +/area/medical/psychology) +"pOS" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"pOT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pOU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"pOY" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/holosign_creator/atmos, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"pPa" = ( +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"pPc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Library Desk"; + dir = 4; + name = "library camera" + }, +/turf/open/floor/carpet, +/area/service/library) +"pPd" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"pPe" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"pPi" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old{ + dir = 4 + }, +/area/commons/fitness/recreation) +"pPk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"pPn" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pPo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank{ + pixel_y = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"pPq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"pPD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/gun/ballistic/automatic/c20r/toy, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"pPS" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood, +/area/service/library) +"pPU" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/paper_bin, +/obj/item/pen/red, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"pPW" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"pQe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank{ + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"pQi" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pQk" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pQm" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/random{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/raw_anomaly_core/random, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"pQo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"pQw" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/storage) +"pQx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"pQB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/command/bridge) +"pQF" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Port Pens"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"pQJ" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/blobstart, +/turf/open/openspace, +/area/maintenance/starboard/aft) +"pQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"pQN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pQO" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"pQQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/cargo/sorting) +"pQV" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/lab) +"pQY" = ( +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/hallway/primary/central) +"pRm" = ( +/obj/item/reagent_containers/glass/bucket/wooden{ + name = "waste bucket" + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6; + reclaim_rate = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/vault, +/area/security/prison/safe) +"pRn" = ( +/obj/structure/table, +/obj/item/plate/oven_tray, +/obj/item/plate/oven_tray{ + pixel_y = 2 + }, +/obj/item/plate/oven_tray{ + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"pRu" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"pRA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"pRH" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pRR" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/carpet, +/area/service/chapel/main) +"pSf" = ( +/obj/machinery/flasher{ + id = "transferflash"; + pixel_x = -3; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"pSk" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"pSm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pSs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pSv" = ( +/turf/closed/wall/mineral/plastitanium, +/area/engineering/main) +"pSG" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pSK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/weightmachine/weightlifter, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"pSP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"pSX" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"pSZ" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pTb" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"pTg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"pTi" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/locker_room) +"pTl" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"pTm" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/ladder, +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"pTq" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"pTt" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pTw" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"pTy" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"pTA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pTI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"pTK" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"pTO" = ( +/obj/structure/sacrificealtar, +/obj/structure/railing, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"pTQ" = ( +/obj/machinery/camera{ + c_tag = "Prison - Visition (Visitor)"; + dir = 5; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"pTX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"pTY" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"pUg" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/hallway/secondary/command) +"pUj" = ( +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pUo" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pUp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/camera{ + c_tag = "Atmospherics - Lower Fore"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pUr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pUD" = ( +/obj/machinery/pdapainter, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/noticeboard/hop{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"pUE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"pUG" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"pUI" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pUL" = ( +/obj/structure/closet/crate/large, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pUM" = ( +/obj/machinery/door/airlock, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"pUN" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"pUO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pUY" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"pUZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/mining, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"pVe" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/gateway) +"pVf" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pVn" = ( +/obj/item/radio/intercom/chapel{ + pixel_y = 22 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/service/chapel) +"pVp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pVs" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pVB" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"pVD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pVG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"pVH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pVI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"pVJ" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"pVO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/directional/east, +/obj/item/storage/part_replacer, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"pVT" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/gun/energy/laser/practice, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/east{ + pixel_x = 34 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/range) +"pVU" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"pVZ" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"pWd" = ( +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"pWh" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"pWl" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"pWn" = ( +/obj/effect/turf_decal/delivery/white, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"pWp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"pWq" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"pWr" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"pWt" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"pWw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"pWx" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/chisel{ + pixel_y = 7 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"pWG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/upper) +"pWI" = ( +/turf/closed/wall/rust, +/area/maintenance/department/engine) +"pWK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pWM" = ( +/obj/structure/showcase/cyborg/old{ + pixel_y = 20 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pWP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pWQ" = ( +/obj/structure/lattice, +/obj/item/target, +/turf/open/space/openspace, +/area/space/nearstation) +"pWS" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/science/research) +"pXf" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"pXh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"pXl" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall, +/area/science/xenobiology) +"pXn" = ( +/obj/machinery/computer/mecha, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"pXv" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/security/courtroom) +"pXx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"pXB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pXE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"pXH" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"pXL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/command/heads_quarters/hos) +"pXP" = ( +/turf/closed/wall/r_wall, +/area/security/main/lockers) +"pXR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"pXV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/library) +"pYf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"pYj" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"pYk" = ( +/turf/closed/wall/rust, +/area/maintenance/fore/secondary) +"pYo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"pYw" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"pYx" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pYz" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/qm/perch) +"pYC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pYI" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pYL" = ( +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"pYO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery/white, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"pYQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"pYS" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"pYU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"pYV" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/carpet/red, +/area/security/warden) +"pZc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pZf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"pZh" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/railing, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pZi" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/sheet/glass{ + amount = 12 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"pZl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pZq" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pZs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"pZx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/storage/belt, +/obj/item/storage/belt, +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"pZF" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engineering/supermatter) +"pZK" = ( +/obj/structure/table, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/taperecorder{ + pixel_x = -3 + }, +/obj/item/storage/fancy/cigarettes, +/obj/item/assembly/flash/handheld, +/obj/item/reagent_containers/spray/pepper, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"pZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"pZU" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room) +"pZW" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"pZZ" = ( +/obj/item/kitchen/knife/shiv, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qae" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"qaj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/space_heater, +/turf/open/openspace, +/area/maintenance/aft/upper) +"qak" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qan" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/cargo/office) +"qaq" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/clothing/mask/cigarette/pipe{ + pixel_y = 13 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"qar" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"qaw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qaz" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/landmark/carpspawn, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"qaF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qaH" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/item/candle{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"qaW" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"qbd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"qbp" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qbr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qbv" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/southleft{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/visit) +"qbz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"qbB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"qbK" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"qbM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qbS" = ( +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qbU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qbX" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/service/abandoned_gambling_den/secondary) +"qcb" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"qce" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"qci" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qcl" = ( +/obj/structure/table/rolling, +/obj/item/restraints/handcuffs/cable{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"qcn" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"qcw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot_white, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/head/nun_hood, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"qcA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"qcD" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Arrivals - Shuttle Dock"; + name = "arrivals camera" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"qcG" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qcJ" = ( +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"qcN" = ( +/obj/effect/turf_decal/siding/thinplating/light{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/open/floor/plasteel/freezer, +/area/command) +"qcR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qcY" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"qcZ" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8; + pixel_x = 7 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/carpet, +/area/lawoffice) +"qda" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qdb" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qdk" = ( +/obj/structure/window/reinforced, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"qdp" = ( +/turf/open/space/openspace, +/area/maintenance/starboard/aft) +"qdx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/upper) +"qdD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/command/heads_quarters) +"qdH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qdL" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qdP" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/indestructible, +/area/science/test_area) +"qdS" = ( +/obj/machinery/camera{ + c_tag = "Prison - Visitation (Prisoner)"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/security/prison/visit) +"qdT" = ( +/obj/structure/table/wood/fancy/black, +/obj/item/storage/photo_album/chapel, +/obj/machinery/camera{ + c_tag = "Chapel Quarters"; + name = "chapel camera" + }, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"qdV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"qdZ" = ( +/obj/item/retractor, +/turf/open/floor/plating, +/area/medical/abandoned) +"qed" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/janitor, +/obj/machinery/requests_console/directional/north{ + department = "Janitorial"; + departmentType = 1; + name = "Janitorial Requests Console" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"qee" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"qeh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qes" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qet" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"qey" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qeA" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"qeB" = ( +/obj/structure/flora/rock/pile, +/obj/structure/beebox{ + name = "Bumble's hive" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"qeI" = ( +/obj/structure/table, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/work) +"qeK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qeP" = ( +/obj/structure/rack, +/obj/item/radio{ + pixel_x = -1; + pixel_y = 12 + }, +/obj/item/radio{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/flashlight{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"qeT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qfa" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qfb" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"qfe" = ( +/obj/machinery/smartfridge, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"qff" = ( +/obj/machinery/door/airlock/security{ + name = "Courtroom Tunnel"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"qfl" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"qfq" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/medical/storage) +"qfr" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"qfs" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"qfu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"qfB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qfG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"qfH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"qfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qfL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qfO" = ( +/obj/machinery/photocopier, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"qfW" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"qfY" = ( +/obj/machinery/modular_computer/console/preset/cargochat/engineering, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"qfZ" = ( +/turf/open/openspace, +/area/maintenance/department/crew_quarters/dorms) +"qgb" = ( +/obj/structure/table, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/maintenance/port) +"qgc" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"qge" = ( +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"qgh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Grave digger supply closet"; + req_one_access_txt = "22" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"qgj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"qgp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qgr" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"qgt" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"qgw" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"qgx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"qgy" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"qgF" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"qgH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"qgL" = ( +/obj/machinery/power/smes{ + input_level = 0; + output_level = 10000 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"qgM" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"qgP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"qgQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"qgS" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qgX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Cryogenics"; + req_access_txt = "5" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"qgZ" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"qhj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qhk" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qhm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qhp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"qhr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"qhs" = ( +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/hallway/primary/port) +"qhu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/maint, +/obj/item/food/pizzaslice/moldy, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"qhw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qhz" = ( +/obj/machinery/plate_press{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/work) +"qhD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/port) +"qhE" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"qhH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qhK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"qhM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qhR" = ( +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"qhS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Common Mining Shuttle Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qic" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qid" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"qie" = ( +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"qih" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"qik" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/science/cytology) +"qiq" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qiu" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qiw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qix" = ( +/obj/machinery/door/airlock/silver{ + name = "Locker Room" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qiE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"qiN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qiP" = ( +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"qiS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/reagent_containers/pill/happy, +/obj/item/reagent_containers/pill/happy, +/obj/item/reagent_containers/pill/lsd, +/obj/item/reagent_containers/pill/lsd, +/obj/item/reagent_containers/pill/morphine, +/obj/item/reagent_containers/pill/morphine, +/obj/item/reagent_containers/syringe/contraband/methamphetamine, +/obj/item/reagent_containers/syringe/contraband/methamphetamine, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/glass/bottle/fentanyl, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/reagent_containers/syringe/contraband/space_drugs, +/obj/item/food/drug/moon_rock, +/obj/item/food/drug/saturnx, +/obj/item/reagent_containers/syringe/contraband/bath_salts, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"qjb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qje" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + id = "Luggagebelt" + }, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Luggage loading door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint) +"qji" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"qjo" = ( +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"qjq" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"qjw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"qjy" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/reagent_containers/food/drinks/trophy/silver_cup{ + name = "#2nd prize for the Nanotrasen official comdom competition"; + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"qjz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"qjC" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/work) +"qjJ" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"qjK" = ( +/obj/structure/transit_tube/junction{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"qjM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"qjU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/bar) +"qjX" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/medical/morgue) +"qjZ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"qkb" = ( +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"qki" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/mopbucket, +/obj/item/mop, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"qkk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qko" = ( +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"qkt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qkv" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qkA" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qkJ" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Office"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"qkK" = ( +/obj/structure/table, +/obj/item/kitchen/knife/shiv{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/kitchen/knife/shiv, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qkN" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/openspace, +/area/maintenance/department/engine) +"qkS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"qkU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/engineering) +"qlf" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"qlg" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"qlh" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qlB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qlG" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"qlL" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"qlS" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"qlT" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qlY" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qma" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"qmh" = ( +/obj/structure/table, +/obj/item/gps/mining{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qmn" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"qmr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"qmt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"qmy" = ( +/obj/machinery/dna_scannernew, +/obj/structure/window{ + dir = 8; + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"qmC" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"qmM" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"qmO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qmP" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"qmS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qnd" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/sofa{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"qnk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qnq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"qnr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qns" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qnD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/cytology) +"qnE" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qnH" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qnJ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qnR" = ( +/obj/machinery/jukebox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"qnS" = ( +/obj/structure/table, +/obj/item/stack/license_plates/empty/fifty, +/obj/structure/cable, +/obj/machinery/firealarm/directional/east, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/work) +"qnT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qnY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"qoe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Security - Gulag shuttle Controll"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"qok" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"qou" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Morgue"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"qoC" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"qoE" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/fore) +"qoF" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/machinery/door/poddoor/shutters/window{ + id = "BrigBigEntrance"; + name = "Brig shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qoJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"qoN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"qoP" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"qoS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"qoT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"qoV" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"qoW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"qoX" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/rd, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"qpa" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qph" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"qpj" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/warden) +"qpl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "prison release"; + name = "Labor Camp Shuttle Lockdown"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Security Labor Transfer Dock"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"qpo" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"qpu" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qpE" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"qpH" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"qpK" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/turf/open/space/basic, +/area/space/nearstation) +"qpO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"qpS" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/execution/education) +"qpT" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"qpU" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"qpW" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Turbine Acces"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qpX" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/tcommsat/computer) +"qpZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qqa" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/service/chapel/main) +"qqi" = ( +/obj/structure/industrial_lift, +/obj/machinery/light/floor, +/obj/effect/landmark/lift_id{ + specific_lift_id = "publicElevator2" + }, +/turf/open/openspace, +/area/hallway/primary/starboard) +"qqn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/fore) +"qqp" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/medical/virology) +"qqr" = ( +/obj/structure/table/wood, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/pdas{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/storage/box/silver_ids, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"qqu" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"qqA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"qqB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"qqC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qqD" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/service/chapel) +"qqG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"qqH" = ( +/turf/open/openspace, +/area/security/brig) +"qqI" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"qqK" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"qqN" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qqQ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"qqZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qrc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"qrp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qrr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qru" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"qrw" = ( +/turf/open/floor/plasteel/stairs/right, +/area/security/prison/upper) +"qrx" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"qrz" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qrC" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"qrF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"qrI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"qrK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/office) +"qrP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"qrV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qsa" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"qsb" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"qsc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"qse" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qsh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"qsk" = ( +/obj/structure/sign/directions/vault{ + dir = 1 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/sign/directions/upload{ + dir = 1; + pixel_y = -6 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"qsm" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qsp" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"qsr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"qst" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"qsv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qsx" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/research) +"qsz" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"qsA" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qsE" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"qsF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"qsO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"qsR" = ( +/obj/machinery/conveyor{ + id = "cargounload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qta" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/department/science) +"qtd" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qtf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qtk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"qtl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"qto" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"qtp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qtv" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"qtx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qtC" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"qtD" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"qtI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qtJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"qtM" = ( +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"qtN" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/secondary/entry) +"qtO" = ( +/turf/open/indestructible, +/area/science/test_area) +"qtP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/security/courtroom) +"quk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qum" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"quv" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/warden) +"quz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"quC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"quF" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"quI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Port"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"quR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/courtroom) +"quX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qvc" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/closet/crate/freezer/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"qvf" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"qvj" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qvl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qvn" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"qvo" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/central) +"qvw" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"qvx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"qvy" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/warehouse) +"qvA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"qvD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"qvJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"qvL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qvN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"qvP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"qvV" = ( +/obj/structure/cable, +/obj/item/beacon, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"qvX" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/science/mixing) +"qvY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"qwj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qwn" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"qwo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"qwp" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qwq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"qwr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qwt" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qwC" = ( +/obj/effect/turf_decal/box, +/obj/machinery/exodrone_launcher, +/turf/open/floor/plating, +/area/cargo/storage) +"qwE" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qwF" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"qwG" = ( +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"qwN" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/office) +"qwP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Security - Medbay Waiting Room" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"qwQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"qwW" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"qwX" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/primary/starboard) +"qwY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"qxh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"qxo" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"qxp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qxu" = ( +/obj/machinery/computer/security, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/science/research) +"qxA" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet1"; + name = "Toilet Unit 1" + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/auxiliary) +"qxG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"qxI" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/hallway/primary/starboard) +"qxQ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qxT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"qyh" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"qym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"qyn" = ( +/obj/effect/turf_decal/trimline/green/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qyp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/box/smart_metal_foam{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/smart_metal_foam, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"qyt" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/explab) +"qyI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/clipboard, +/obj/item/toy/figure/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"qyK" = ( +/obj/machinery/camera{ + c_tag = "Science - Ordnance Storage Fore"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/science/storage) +"qyN" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/security/prison) +"qyP" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/central) +"qyU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qzc" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"qzd" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"qze" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/camera{ + c_tag = "Service Hallway - Port"; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/hallway/secondary/service) +"qzf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"qzi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qzk" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"qzl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"qzB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/cargo/storage; + dir = 8; + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qzE" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/button/door/directional/east{ + id = "rdgene2"; + name = "Secondary Genetics Shutters Control"; + pixel_x = -6; + pixel_y = 27; + req_access_txt = "7" + }, +/obj/machinery/button/door/directional/east{ + id = "rdgene"; + name = "Primary Genetics Shutters Control"; + pixel_x = 7; + pixel_y = 27; + req_access_txt = "7" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"qzH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Cargo - Mailroom"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qzJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qzN" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qzS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"qzV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qzY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"qAa" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qAb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qAd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/explab) +"qAh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qAn" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/warden) +"qAr" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qAv" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/badrecipe/moldy, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"qAy" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command/gateway) +"qAB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qAC" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/courtroom) +"qAN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"qAP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"qAQ" = ( +/obj/structure/weightmachine/stacklifter, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"qAY" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/shower) +"qBe" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/cafeteria) +"qBn" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qBo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"qBr" = ( +/obj/item/crowbar, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"qBB" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "Waste"; + name = "Waste Bay Blast Door" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qBC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qBE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/library) +"qBM" = ( +/obj/structure/table, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/camera{ + c_tag = "Medbay - Psych Ward Airlock"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/medical/psychology) +"qBN" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"qBO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main) +"qBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"qBY" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/starboard/central) +"qCd" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/starboard/central) +"qCm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"qCo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qCr" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Prisoner Transfer"; + req_access_txt = "63" + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"qCv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qCx" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/shower) +"qCy" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qCB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"qCD" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"qCE" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"qCG" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/ambrosia, +/turf/open/floor/grass, +/area/maintenance/fore) +"qCI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/command/bridge) +"qCK" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qCN" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qCW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/colocup{ + pixel_x = 5 + }, +/obj/item/cigbutt{ + pixel_x = -7 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qDb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"qDf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/lawoffice) +"qDn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qDo" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qDw" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qDB" = ( +/obj/structure/table_frame, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qDF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"qDG" = ( +/obj/effect/turf_decal/delivery/white, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"qDH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qDL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qDQ" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/smes, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/capacitor/adv, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"qDU" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + name = "Robotics Surgery"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/robotics) +"qDV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qDX" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"qEd" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/port/aft) +"qEn" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qEr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"qEt" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"qEw" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs, +/area/science/xenobiology) +"qEy" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"qEA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"qEJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"qEO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/service/janitor) +"qEX" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Intermediary glass airlock" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"qFe" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"qFf" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"qFk" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"qFC" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/xenobiology) +"qFE" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"qFL" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"qFO" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qFS" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qGa" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"qGb" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"qGf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Port"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"qGn" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"qGp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"qGv" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno9"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qGx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"qGy" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"qGz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"qGI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"qGL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qGS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qGV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qGY" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Hydroponics Desk"; + req_one_access_txt = "30;35" + }, +/obj/item/folder, +/obj/item/food/grown/apple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qGZ" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/shower) +"qHl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/wood{ + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"qHn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qHo" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"qHt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"qHv" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/shower) +"qHw" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"qHA" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/dice/d20, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"qHB" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Store"; + name = "hallway camera" + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/fingerless{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"qHC" = ( +/obj/structure/table, +/obj/item/spear, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qHD" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"qHE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qHI" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"qHK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"qHM" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"qHN" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qHU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qHV" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qHW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qHY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Captainprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qIg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qIk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qIp" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/engineering/main) +"qIs" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"qIH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"qIJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"qIL" = ( +/obj/machinery/button/curtain{ + id = "prisoncell5"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"qIN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qJb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"qJd" = ( +/obj/structure/table, +/obj/item/storage/firstaid/medical, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/science/robotics) +"qJj" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Reactor Pit SMES"; + name = "engineering camera" + }, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"qJo" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qJp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qJt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"qJu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"qJw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/fore/upper) +"qJy" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qJC" = ( +/obj/structure/table, +/obj/item/hand_labeler{ + pixel_y = 11 + }, +/obj/item/hand_labeler_refill{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/stack/package_wrap{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"qJH" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/bartender, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/service/bar) +"qJJ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qJK" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qJM" = ( +/obj/structure/dresser, +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"qJW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"qJY" = ( +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"qKa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/explab) +"qKf" = ( +/turf/open/floor/grass, +/area/service/chapel) +"qKh" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 4; + req_access_txt = "70" + }, +/obj/item/folder/white, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward4"; + name = "Controll Room Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/psychology) +"qKi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"qKk" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"qKp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"qKq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qKv" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore) +"qKw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qKC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qKL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"qLe" = ( +/obj/structure/table/wood, +/obj/item/coin/bananium, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qLk" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chief Engineer's Quarters"; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/ce) +"qLm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to External" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qLo" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore) +"qLq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/southright{ + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"qLs" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north{ + pixel_y = 20 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"qLw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"qLz" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"qLI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"qLS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"qLY" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/xenobiology) +"qMi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"qMk" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qMs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"qMu" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"qMB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"qMC" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"qME" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"qMN" = ( +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"qMR" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"qMS" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"qMU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/peanuts, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qMZ" = ( +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"qNc" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qNh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qNj" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/wood, +/area/security/courtroom) +"qNn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"qNp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"qNq" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"qNA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qNC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"qND" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qNI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qNK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"qNZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/theater) +"qOb" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"qOf" = ( +/obj/structure/sacrificealtar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"qOh" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qOj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"qOo" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Customs"; + req_access_txt = "63" + }, +/obj/machinery/door/window/eastright, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint) +"qOt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"qOv" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Material Storage"; + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"qOz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "MainSurgeryTheatre"; + name = "Surgery Theatre Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/surgery) +"qOF" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/science/explab) +"qOG" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qOJ" = ( +/obj/machinery/door/airlock/freezer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"qOR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"qOX" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"qPa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "Luggagebelt"; + name = "Luggage conveyor switch"; + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qPc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qPg" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"qPi" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qPk" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"qPq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/main) +"qPy" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qPE" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qPJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/eng, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qPL" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/hallway/secondary/command) +"qPM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Atmospherics - Bottom Starboard"; + dir = 4; + name = "atmospherics camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qPP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main) +"qPR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qPV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"qPW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"qPY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"qQa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/newscaster/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"qQb" = ( +/obj/machinery/camera{ + c_tag = "Crew Area - Pool Port"; + dir = 4; + name = "dormitories camera" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qQr" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"qQt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qQv" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"qQw" = ( +/obj/machinery/power/solar_control{ + id = "foreport"; + name = "Port Bow Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"qQy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qQE" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"qQF" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"qQK" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"qQO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"qQS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing, +/turf/open/floor/wood, +/area/hallway/primary/central) +"qQT" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"qQV" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/camera{ + c_tag = "Security - Gear Room" + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"qQW" = ( +/obj/machinery/computer/security/hos{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"qQX" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qRa" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/clothing/head/helmet/skull{ + desc = "The skull of a Syndicate nuclear operatives commander flayed and displayed as a trophy."; + name = "Skull trophy"; + pixel_y = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command) +"qRc" = ( +/obj/structure/table/wood, +/obj/item/coin/adamantine{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_tele, +/obj/item/melee/chainofcommand, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 8; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"qRf" = ( +/turf/open/floor/plating/airless, +/area/engineering/main) +"qRi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/range) +"qRn" = ( +/obj/item/kirbyplants/random, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qRr" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/maintenance/fore/upper) +"qRu" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"qRz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/research) +"qRD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"qRG" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/maintenance/central/secondary) +"qRL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"qRM" = ( +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/hallway/primary/upper) +"qRT" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"qRX" = ( +/turf/closed/wall/rust, +/area/maintenance/department/crew_quarters/bar) +"qRZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"qSc" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"qSd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"qSh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"qSl" = ( +/obj/machinery/status_display/evac/directional/east, +/turf/open/openspace, +/area/hallway/secondary/command) +"qSp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qSq" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qSr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qSu" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Lower foyer"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"qSv" = ( +/obj/structure/table/reinforced, +/obj/structure/closet/mini_fridge{ + pixel_y = 10 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/science/breakroom) +"qSD" = ( +/obj/effect/turf_decal/trimline/purple/line, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"qSG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"qSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/tools) +"qST" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"qTb" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"qTh" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"qTk" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"qTq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"qTw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/office) +"qTC" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"qTE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"qTI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"qTN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"qTO" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"qTP" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"qTT" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"qTV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"qTW" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"qTX" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"qTY" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qUe" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/button/door/directional/west{ + id = "QMdoor"; + name = "Door lock"; + normaldoorcontrol = 1; + pixel_x = -32; + req_access_txt = "41"; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"qUm" = ( +/turf/open/openspace, +/area/hallway/primary/central) +"qUp" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/clothing/gloves/color/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/clothing/gloves/color/orange, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/shoes/galoshes, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"qUq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qUt" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/science) +"qUw" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/department/medical) +"qUx" = ( +/obj/structure/shuttle/engine/large, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"qUG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"qUI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"qUW" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"qUX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qUZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "HoPdoor"; + name = "Head Of Personel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"qVd" = ( +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Control"; + pixel_y = -25; + req_access_txt = "56" + }, +/obj/structure/table/wood/fancy/orange, +/turf/open/floor/wood, +/area/command/heads_quarters/ce) +"qVf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"qVg" = ( +/obj/effect/landmark/start/cyborg, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"qVh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/openspace, +/area/maintenance/central) +"qVi" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"qVj" = ( +/obj/machinery/status_display/ai/directional/west, +/turf/open/openspace, +/area/hallway/secondary/command) +"qVn" = ( +/obj/effect/turf_decal/stripes/red/corner, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/science/cytology) +"qVt" = ( +/obj/structure/flora/tree/jungle/small, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"qVx" = ( +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"qVy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Genetics Maintenance"; + req_access_txt = "9" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"qVz" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qVB" = ( +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science) +"qVH" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qVW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"qVX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"qVY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qVZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"qWa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"qWc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qWd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/ce) +"qWe" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qWi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/office) +"qWj" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/service) +"qWl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"qWq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"qWv" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qWx" = ( +/obj/structure/shuttle/engine/huge{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/science) +"qWE" = ( +/obj/structure/table, +/obj/machinery/microwave, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"qWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qWG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"qWL" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"qWM" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/wood, +/area/security/prison/workout) +"qWT" = ( +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"qWW" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"qXc" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qXi" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/recreation) +"qXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"qXr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"qXt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"qXu" = ( +/obj/machinery/door/airlock/medical{ + name = "Abandoned Storage"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/abandoned) +"qXw" = ( +/obj/structure/safe/floor, +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/cargo/qm) +"qXx" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/airless, +/area/science/misc_lab/range) +"qXy" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qXz" = ( +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/toilet/auxiliary) +"qXB" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"qXC" = ( +/turf/closed/wall/r_wall, +/area/commons/fitness/recreation) +"qXD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qXF" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/cargo/storage) +"qXK" = ( +/obj/machinery/gibber, +/obj/effect/turf_decal/stripes/box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"qXL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"qXS" = ( +/obj/machinery/requests_console/directional/south{ + department = "Chapel"; + departmentType = 2; + name = "Chapel Requests Console" + }, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"qXT" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"qXU" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Fore Starboard"; + name = "engineering camera" + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"qXV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"qXX" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"qXY" = ( +/turf/open/floor/wood, +/area/command) +"qXZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"qYa" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qYb" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward2"; + name = "Containment Chamber 2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"qYh" = ( +/obj/item/hatchet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"qYl" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden, +/obj/machinery/camera{ + c_tag = "Atmospherics - Incinerator"; + dir = 4; + name = "atmospherics camera" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"qYn" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qYu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/openspace, +/area/maintenance/central) +"qYx" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"qYA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Shutters"; + pixel_x = -27; + req_access_txt = "3" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/security/armory) +"qYB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qYC" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qYE" = ( +/obj/machinery/atmospherics/components/trinary/filter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"qYG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"qYI" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/medical/psychology) +"qYU" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"qYY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qYZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Entrance"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qZf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"qZh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qZk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qZu" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/security/courtroom) +"qZy" = ( +/obj/structure/bed, +/obj/item/bedsheet/mime, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"qZG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"qZM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/highsecurity{ + name = "Bunker Airlock"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"qZN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"qZO" = ( +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/work) +"qZQ" = ( +/obj/machinery/igniter{ + id = "Incinerator" + }, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = 33; + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"qZR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"qZT" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/cargo/miningdock) +"qZU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"raa" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"rab" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/machinery/button/door/directional/north{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"rad" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"rag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"rah" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/port) +"rak" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/department/science) +"ral" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ran" = ( +/obj/item/clothing/suit/yakuza{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/structure/mirror/directional/south, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"rap" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasmarglass{ + amount = 50 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"rat" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/port) +"rau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ray" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"raB" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"raD" = ( +/turf/closed/wall/r_wall, +/area/cargo/warehouse/upper) +"raF" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"raI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"raK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"raQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"raS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"raT" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"rbb" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"rbc" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/north, +/obj/structure/reagent_dispensers/peppertank/directional/west{ + pixel_x = -36 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/science/research) +"rbd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rbg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"rbj" = ( +/mob/living/simple_animal/bot/floorbot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"rbl" = ( +/obj/structure/bed, +/turf/open/floor/wood, +/area/commons/dorms) +"rbn" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"rbo" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics Animal pen"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics/garden) +"rbp" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"rbA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"rbD" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rbI" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/carpet, +/area/service/chapel/main) +"rbL" = ( +/obj/machinery/camera{ + c_tag = "Leisure Area - Lasertag Red Lower"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rbT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rbU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rcd" = ( +/obj/item/trash/waffles, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"rce" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"rcf" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Chief Medical Officer's Study"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"rcj" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rco" = ( +/turf/closed/wall, +/area/security/processing) +"rcp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"rcq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/flasher{ + id = "secentranceflasher"; + pixel_x = 25 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"rcA" = ( +/obj/machinery/door/airlock{ + name = "Service Restroom" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"rcD" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/aft/upper) +"rcG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/security/courtroom) +"rcJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"rcK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rcP" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"rcU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"rdh" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/radio{ + pixel_y = 12 + }, +/obj/item/radio{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/flashlight{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side, +/area/ai_monitored/command/storage/eva/upper) +"rdj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"rdm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"rdo" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - Reactor Pit Starboard"; + dir = 9; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"rdq" = ( +/obj/structure/table, +/obj/item/healthanalyzer{ + pixel_y = 3 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"rdr" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/command) +"rdB" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rdE" = ( +/turf/open/floor/carpet, +/area/medical/psychology) +"rdG" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"rdM" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"rdQ" = ( +/obj/machinery/door/airlock/research{ + name = "Cytology Lab"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/cytology) +"rdR" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plating, +/area/maintenance/starboard) +"reg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -12 + }, +/obj/item/pen{ + pixel_x = -12 + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = 3; + pixel_y = 7; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "Prison Gate"; + name = "Prison Wing Lockdown"; + pixel_x = 3; + pixel_y = -4; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"rem" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"req" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"res" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ret" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"reu" = ( +/obj/machinery/door/airlock/research{ + name = "Telescience Test Chamber"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"reC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"reF" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"reG" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"reL" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"reM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"reN" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"reO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"reY" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/cargo/office) +"reZ" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/commons/fitness/recreation) +"rfa" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/grass, +/area/security/checkpoint/escape) +"rfb" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"rfc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness) +"rfe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"rfh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"rfl" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/circuit, +/area/command/gateway) +"rfp" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"rfs" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"rft" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"rfy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"rfA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"rfF" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rfK" = ( +/obj/structure/shuttle/engine/large, +/turf/open/floor/plating/airless, +/area/maintenance/department/science) +"rfL" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rfW" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"rfX" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"rfY" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"rgd" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/central) +"rgf" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison/work) +"rgi" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rgq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Emitters"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"rgt" = ( +/turf/closed/wall, +/area/engineering/atmospherics_engine) +"rgv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics/upper) +"rgw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/tray, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"rgA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rgC" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"rgE" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rgG" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/purple, +/area/command/heads_quarters/rd) +"rgO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"rgQ" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"rgS" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"rgZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/psychology) +"rha" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"rhb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rhj" = ( +/obj/effect/turf_decal/box/white/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"rhk" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/science/research) +"rhl" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old{ + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/server) +"rhu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rhv" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rhw" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science) +"rhy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rhF" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rhJ" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rhS" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/telescience, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"rhT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"rhX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ria" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"rir" = ( +/obj/structure/closet/lawcloset, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"riB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/work) +"riC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"riF" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/aft) +"riG" = ( +/obj/machinery/vending/games, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"riK" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"riN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters) +"riP" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"riR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"riV" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"riX" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"riY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rjb" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/computer/piratepad_control{ + dir = 8 + }, +/obj/machinery/keycard_auth/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"rjf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"rjg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rjh" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"rji" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"rjj" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rjv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"rjC" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"rjE" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"rjI" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"rjL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rjM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"rjN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rjW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"rjX" = ( +/obj/machinery/door/airlock{ + name = "Lasertag Arena" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rka" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"rkb" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/service/bar) +"rkh" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"rkn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"rku" = ( +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"rkz" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rkB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rkH" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"rkO" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Science - Port"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"rkQ" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 2"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"rkR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"rkT" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/disposal) +"rkU" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/psychology) +"rkW" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rlk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rln" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"rlq" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rlw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"rly" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"rlK" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/light_switch/directional/east{ + pixel_x = 23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"rlL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rlQ" = ( +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"rlR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"rlS" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"rlX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"rlY" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "cargodeliver" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"rmg" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"rmn" = ( +/obj/structure/etherealball, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"rmr" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/ladder, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"rms" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + broadcasting = 1; + dir = 8; + listening = 0; + name = "Station Intercom (Court)" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/courtroom) +"rmv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rmA" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rmB" = ( +/obj/machinery/door/airlock/atmos{ + name = "Gas Storage"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"rmC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Fore Port"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rmD" = ( +/obj/item/shovel, +/turf/open/floor/plating/beach/sand, +/area/maintenance/port) +"rmM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"rmT" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rmV" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/button/flasher{ + id = "secentranceflasher"; + name = "Brig Entrance Flasher"; + pixel_x = -24; + pixel_y = -22; + req_access_txt = "1" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/brig) +"rna" = ( +/obj/structure/window, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/service/cafeteria) +"rnj" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/wood, +/area/security/prison/workout) +"rnk" = ( +/obj/structure/chair/e_chair, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"rnr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rns" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"rnA" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"rnJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/cargo/miningdock) +"rnR" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"rnS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"rnV" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"rnZ" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xenobio Containment"; + name = "Xenobiology Containment Shutters" + }, +/obj/machinery/button/door{ + id = "Xenobio Containment"; + name = "Xenobiology Containment Shutters"; + pixel_x = -32; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"roa" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"rod" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"roe" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"roh" = ( +/turf/closed/wall/r_wall, +/area/command/bridge) +"rok" = ( +/obj/effect/turf_decal/bot, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"ror" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/starboard) +"roF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"roG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/hallway/primary/port) +"roL" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/port/central) +"roO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"roR" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"roY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"roZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rpb" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/clothing/mask/balaclava, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera{ + c_tag = "Security - Killcam"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"rpf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plasteel, +/area/medical/virology) +"rpi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/north{ + department = "Robotics"; + departmentType = 2; + name = "Robotics Requests Console"; + receive_ore_updates = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"rpk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rpn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"rpu" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -8 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = -8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"rpw" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/hallway/primary/upper) +"rpy" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rpD" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"rpF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "PrisonerReward"; + name = "Good prisoner instant gratification system" + }, +/turf/open/floor/plasteel/stairs/left, +/area/security/prison/workout) +"rpI" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"rpK" = ( +/obj/structure/dresser, +/obj/structure/noticeboard/directional/north, +/obj/machinery/camera{ + c_tag = "Library Backroom"; + name = "library camera" + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"rpN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rpW" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/lab) +"rpZ" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/turf/closed/wall, +/area/service/bar/atrium) +"rqb" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"rqg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"rqj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"rqn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"rqr" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"rqv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"rqA" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rqE" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"rqK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Distro Loop"; + name = "atmospherics camera" + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"rqR" = ( +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"rqS" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"rqU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"rqW" = ( +/obj/machinery/icecream_vat, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"rrd" = ( +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"rre" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rrg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison) +"rrh" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"rrl" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + name = "Warden's Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Warden's Desk" + }, +/obj/machinery/recharger{ + pixel_x = 8 + }, +/obj/item/folder/red{ + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = -5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"rrr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"rry" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"rrF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"rrM" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rrN" = ( +/obj/item/cultivator/rake, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rrO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"rrU" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rrW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"rrY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"rsm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/structure/mirror/directional/west, +/obj/effect/landmark/start/clown, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"rsr" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"rsG" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"rsJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"rsM" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"rsP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/computer/shuttle_flight/mining/common, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"rsT" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rsX" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/starboard/fore) +"rtc" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"rtd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rtf" = ( +/obj/item/dyespray{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/dyespray{ + pixel_x = 5; + pixel_y = 11 + }, +/turf/open/floor/wood/tile, +/area/service/electronic_marketing_den) +"rtl" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rts" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rtu" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/maintenance/department/crew_quarters/dorms) +"rtH" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"rtK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"rtQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"rtU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"rtW" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/warehouse) +"rtX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rtZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ruc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"rud" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/service/bar/atrium) +"ruf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"ruh" = ( +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"run" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port/central) +"rup" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"rut" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/cobweb, +/obj/item/organ/eyes/robotic/glow, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ruu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ruv" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ruy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ruz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"ruB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"ruC" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plating, +/area/engineering/atmos) +"ruE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/plasticflaps, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Atmospherics Delivery"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos/upper) +"ruG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ruI" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/security/prison) +"ruT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rva" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4, +/turf/open/space/basic, +/area/space/nearstation) +"rvc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/wrench, +/obj/item/wrench, +/obj/item/wrench, +/obj/item/crowbar/large, +/obj/item/crowbar/large, +/obj/item/crowbar/large, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"rvf" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rvh" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rvj" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/turf/open/floor/wood, +/area/hallway/primary/central) +"rvn" = ( +/obj/machinery/modular_computer/console/preset/cargochat/medical, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/break_room) +"rvq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rvu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"rvv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"rvC" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/department/science) +"rvI" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rvK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"rvM" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"rvP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rvQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/rack, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"rvR" = ( +/obj/structure/table, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/item/camera{ + pixel_y = -11 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rvT" = ( +/turf/closed/wall/r_wall, +/area/science/genetics) +"rvY" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"rvZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"rwh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Freezer Array"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"rwl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/incinerator_input{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"rwt" = ( +/obj/item/banner/science/mundane, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science) +"rwx" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"rwy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"rwB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/ai_module/supplied/quarantine{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/supplied/freeform, +/obj/item/ai_module/reset{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"rwC" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/machinery/camera{ + c_tag = "Detective's Autopsy Chamber" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"rwH" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"rwJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rwL" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/ai_monitored/command/storage/eva/upper) +"rwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"rwP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rwQ" = ( +/obj/structure/table, +/obj/item/lipstick/random, +/turf/open/floor/plating, +/area/maintenance/port) +"rwR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/slime_scanner, +/turf/open/floor/plating, +/area/maintenance/port) +"rwU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/chapel/main) +"rwX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdgene2"; + name = "Genetics Lab Shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"rxc" = ( +/obj/structure/fluff/tram_rail/anchor{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rxe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"rxi" = ( +/obj/structure/sign/departments/examroom, +/turf/closed/wall, +/area/medical/medbay/zone2) +"rxj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Barshutters"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rxn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rxo" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"rxp" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rxq" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/medium, +/area/security/prison) +"rxu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rxC" = ( +/obj/structure/table, +/obj/item/clothing/gloves{ + pixel_y = -3 + }, +/obj/item/clothing/gloves, +/obj/item/clothing/gloves{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rxG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/breakroom) +"rxQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"rxR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/closed/wall, +/area/engineering/atmos) +"rxW" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"rxX" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ryf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"ryj" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rym" = ( +/turf/open/floor/plasteel/dark/side, +/area/tcommsat/computer) +"ryp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ryt" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/lobby) +"ryB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ryD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ryF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ryL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"ryR" = ( +/obj/structure/chair/plastic, +/mob/living/simple_animal/hostile/russian, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ryW" = ( +/turf/open/floor/plasteel/stairs/right, +/area/cargo/miningdock) +"rza" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rzd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"rzf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"rzg" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"rzn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north{ + pixel_y = 20 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Hall"; + name = "command camera" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"rzo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"rzq" = ( +/obj/machinery/camera{ + c_tag = "Command Hallway - Central"; + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"rzt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rzz" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/service/bar) +"rzC" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"rzH" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rzK" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"rzL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rzR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"rzT" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Research Director Observation"; + req_access_txt = "30" + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"rzX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rAa" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"rAd" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"rAg" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/right, +/area/security/prison) +"rAm" = ( +/turf/open/openspace, +/area/hallway/secondary/command) +"rAs" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"rAv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/library) +"rAE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"rAK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rAM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"rAP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"rAT" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rAW" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"rAX" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rBn" = ( +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/masks, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"rBp" = ( +/obj/structure/chair/sofa/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood/parquet, +/area/service/theater) +"rBr" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light/directional/south, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"rBt" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rBv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"rBF" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"rBH" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/explab) +"rBK" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"rBT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rBV" = ( +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"rBW" = ( +/obj/machinery/door/airlock/silver{ + name = "Changing Room" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"rBZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"rCc" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"rCh" = ( +/obj/structure/reagent_dispensers/fueltank{ + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/security/brig/upper) +"rCj" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"rCn" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/chem_dispenser/mutagen{ + desc = "Creates and dispenses protein."; + dispensable_reagents = list(/datum/reagent/consumable/nutriment/protein); + name = "protein dispenser" + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"rCo" = ( +/obj/structure/railing, +/obj/structure/chair/plastic{ + dir = 4; + layer = 2.7 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"rCr" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"rCy" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rCB" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"rCI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rCJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/command/bridge) +"rCM" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/medical/psychology) +"rCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"rCP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"rCT" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rCY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix To Incinerator" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"rDi" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/storage/firstaid/fire{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"rDx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"rDC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"rDE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"rDF" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 11 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Quartermaster's office" + }, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"rDG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"rDV" = ( +/obj/machinery/button/door{ + id = "SnacksKitchen"; + name = "Shutters controll"; + pixel_x = -25 + }, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"rDY" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"rEe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"rEi" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rEu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"rEy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"rEA" = ( +/obj/machinery/door/keycard/library, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"rED" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"rEG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"rEN" = ( +/obj/structure/chair/sofa/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood/parquet, +/area/service/theater) +"rET" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/security/detectives_office) +"rEV" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/item/kitchen/knife/butcher, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"rFh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rFk" = ( +/turf/open/floor/plating, +/area/maintenance/port/central) +"rFm" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"rFo" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"rFq" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"rFt" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Security" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/range) +"rFu" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"rFx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"rFz" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"rFC" = ( +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rFD" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/lawoffice) +"rFH" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/space) +"rFN" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"rFT" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rGc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rGf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rGp" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Bar - Fore"; + dir = 5; + name = "service camera" + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/wood, +/area/service/bar/atrium) +"rGr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"rGt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"rGy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rGC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rGD" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"rGF" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/port) +"rGQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) +"rGS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/construction/rcd, +/obj/item/construction/rcd, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"rHc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rHd" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"rHe" = ( +/obj/machinery/door/airlock{ + name = "Broom Closet" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters) +"rHf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rHk" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rHm" = ( +/obj/machinery/atmospherics/pipe/multiz/orange/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rHn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"rHr" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Toilet Unit 2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"rHy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/chair/stool{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rHE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/openspace, +/area/maintenance/central) +"rHF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rHS" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/chapel/office) +"rHT" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"rIf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"rIi" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rIk" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"rIl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rIo" = ( +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"rIq" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/gateway) +"rIt" = ( +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = 24; + req_one_access_txt = "72" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rIu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"rIw" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"rIy" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/obj/machinery/light_switch/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"rIJ" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Match Broadcasting Station"; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness/recreation) +"rIK" = ( +/obj/item/robot_suit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"rIN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/maintenance/fore/upper) +"rIT" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"rIU" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Escape Pod"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"rIW" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"rJa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"rJq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/radio{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"rJs" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"rJx" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rJG" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"rJH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rJQ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/port) +"rJR" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rJV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/upper) +"rKe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"rKf" = ( +/obj/structure/rack, +/obj/item/wirecutters, +/obj/item/crowbar, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"rKg" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"rKh" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/hallway/primary/central) +"rKm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rKn" = ( +/obj/machinery/mecha_part_fabricator/service, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"rKo" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"rKr" = ( +/obj/structure/window, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"rKs" = ( +/obj/machinery/computer/cargo/express, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rKt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"rKv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"rKy" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"rKE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"rKJ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"rKM" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rKP" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rKV" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rKZ" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"rLa" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Psychward3"; + name = "Containment Chamber 3" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"rLc" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"rLf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rLl" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Security - Office Aft"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"rLs" = ( +/turf/open/openspace, +/area/maintenance/starboard/central) +"rLu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"rLw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rLA" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rLC" = ( +/obj/item/reagent_containers/glass/bucket/wooden, +/turf/open/floor/wood, +/area/commons/dorms) +"rLH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rLI" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"rLN" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"rLO" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"rLP" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rLU" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rLZ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rMb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/openspace, +/area/maintenance/fore/secondary) +"rMc" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"rMf" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"rMh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rMk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/box; + width = 7 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"rMl" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Fore" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"rMm" = ( +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"rMn" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"rMo" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"rMw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"rMx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"rMB" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"rMI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"rMJ" = ( +/obj/item/trash/can, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rML" = ( +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rMM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"rMN" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"rNb" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"rNe" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/maintenance/fore/upper) +"rNg" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/scanner_gate, +/obj/effect/turf_decal/loading_area/white{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"rNh" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"rNl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table, +/obj/item/retractor, +/obj/item/hemostat{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/cautery{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"rNo" = ( +/obj/machinery/vending/games, +/turf/open/floor/wood, +/area/service/library/printer) +"rNp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"rNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"rNA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rNC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"rNG" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/light/small/directional/east{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"rNJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Lasertag Prep Room" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rNL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"rNO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"rNT" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"rOc" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"rOk" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern, +/turf/open/floor/carpet, +/area/service/chapel) +"rOo" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"rOv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space) +"rOw" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/hallway/primary/central) +"rOy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rOz" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rON" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"rOQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"rOV" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"rPd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/manipulator/nano, +/obj/item/stock_parts/manipulator/nano, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/scanning_module/adv, +/obj/item/stock_parts/scanning_module/adv, +/obj/item/storage/part_replacer, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"rPg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"rPh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/workout) +"rPi" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"rPq" = ( +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/fore) +"rPs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/central) +"rPu" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"rPy" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rPz" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/window/northleft{ + name = "Chemistry Desk" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"rPA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"rPC" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"rPF" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -10 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"rPG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rPJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rPK" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"rPO" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"rPY" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rPZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"rQe" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"rQj" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/dark, +/area/security/prison/workout) +"rQr" = ( +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "prisonereducation"; + name = "Prisoner Education Chamber"; + req_access_txt = "3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"rQE" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"rQF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "roboticsurgery"; + name = "Robitics surgery privacy shutters"; + pixel_x = 26; + pixel_y = -26 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"rQG" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"rQH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"rQI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"rQK" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"rQM" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Pysch Ward Entrance"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rQX" = ( +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"rQY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/explab) +"rRc" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rRf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"rRl" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"rRm" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"rRo" = ( +/turf/open/floor/glass/reinforced, +/area/maintenance/aft/upper) +"rRs" = ( +/obj/machinery/effector, +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/captain/private) +"rRt" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"rRA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rRI" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"rRJ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/library/abandoned) +"rRK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 1; + layer = 2.8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rRM" = ( +/obj/structure/closet/crate/wooden, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"rRN" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"rRO" = ( +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rRV" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"rRW" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"rRX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rRY" = ( +/obj/machinery/food_cart, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"rSe" = ( +/obj/structure/rack, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"rSg" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"rSo" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering - Capacitor banks"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/plasteel/stairs/right, +/area/maintenance/aft) +"rSp" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rSv" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rSy" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"rSA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"rSG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/maintenance/department/science) +"rSH" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/fore/upper) +"rSI" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/toy/figure/virologist, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"rSM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"rSN" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rSQ" = ( +/turf/open/openspace, +/area/cargo/sorting) +"rSR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Security Post - Engineering"; + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/closet/secure_closet{ + req_access_txt = "63" + }, +/obj/item/clothing/under/rank/engineering/engineer, +/obj/item/clothing/under/rank/engineering/engineer/skirt, +/obj/item/clothing/shoes/workboots, +/obj/item/clothing/under/rank/security/officer/blueshirt, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest/blueshirt, +/obj/item/clothing/head/helmet/blueshirt, +/obj/item/storage/belt/security, +/obj/item/reagent_containers/spray/pepper, +/obj/item/assembly/flash, +/obj/item/restraints/handcuffs, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"rSU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rSY" = ( +/obj/structure/fence/door/opened{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"rSZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/teleport/hub, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"rTa" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/soap/nanotrasen, +/obj/item/storage/box/mousetraps, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"rTe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"rTg" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/toy/figure/cmo, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"rTj" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/cargo/office) +"rTn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/iv_drip, +/obj/structure/bed/roller, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"rTp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/brown/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rTv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rTM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"rTN" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13;19" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"rTQ" = ( +/turf/closed/wall, +/area/engineering/engine_room) +"rTW" = ( +/obj/effect/turf_decal/bot_red, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"rTY" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"rUa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"rUk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rUm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"rUn" = ( +/obj/machinery/door/airlock/engineering{ + name = "Ship capacitor banks"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rUo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"rUp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/brig) +"rUq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"rUu" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north{ + pixel_y = 33 + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Primary AI Core Acces Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"rUw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rUB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/entry) +"rUC" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"rUD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup8"; + location = "hallup7" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"rUG" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"rUK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/gateway) +"rUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rUS" = ( +/obj/structure/table, +/obj/structure/railing/corner, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"rUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"rUW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rUY" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"rVd" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"rVm" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"rVn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"rVw" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rVx" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore) +"rVA" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/command/gateway) +"rVD" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/explab) +"rVK" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rVN" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rVO" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"rVP" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = -2 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"rVQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rVV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"rVW" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"rWc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rWe" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"rWf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 10 + }, +/obj/machinery/conveyor{ + dir = 6; + id = "Luggagebelt" + }, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/security/checkpoint) +"rWl" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/bottle/goldschlager{ + pixel_x = -12; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka{ + pixel_x = 11; + pixel_y = 11 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"rWq" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"rWs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"rWv" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "BrigBigEntrance"; + name = "Brig shutters" + }, +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"rWw" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"rWx" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/wood, +/area/security/courtroom) +"rWz" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"rWA" = ( +/obj/machinery/teleport/station, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Command - Teleporter"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"rWC" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"rWF" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"rWN" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"rWQ" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"rWS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Tool Storage"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"rWT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rXf" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/department/medical/central) +"rXh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"rXl" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"rXp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/command/heads_quarters/hos) +"rXq" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/hallway/primary/upper) +"rXu" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rXy" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"rXA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/storage) +"rXG" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rXI" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ai_module/reset/purge, +/obj/machinery/door/window{ + dir = 8; + name = "Secure tech cabinet"; + req_access_txt = null; + req_one_access_txt = "19;23" + }, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Engineering - Secure tech storage"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"rXN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rXS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"rXT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east{ + department = "EVA"; + name = "EVA Requests Console" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"rXX" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/main) +"rXZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"rYd" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + desc = "A door remote control switch for the exterior brig doors."; + id = "outerbrig"; + name = "Brig Exterior Door Control"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 7; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + desc = "A door remote control switch for the interior brig doors."; + id = "innerbrig"; + name = "Brig Interior Door Control"; + normaldoorcontrol = 1; + pixel_x = -6; + pixel_y = 7; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "BrigBigEntrance"; + name = "Brig Acces Shutters controll"; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"rYh" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"rYi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"rYj" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/item/storage/bag/tray, +/obj/machinery/dish_drive{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"rYk" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rYp" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"rYr" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rYu" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"rYw" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rYy" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"rYE" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rYM" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rYP" = ( +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"rYU" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/department/electrical) +"rYX" = ( +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rYY" = ( +/obj/structure/table, +/obj/item/toy/katana, +/obj/item/toy/foamblade, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rZa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rZb" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/maintenance/port) +"rZg" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"rZi" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Primary Restroom"; + dir = 4; + name = "restroom camera" + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"rZo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"rZp" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/flashlight/lamp{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"rZD" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rZG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/service/chapel/office) +"rZH" = ( +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rZI" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/engineering/break_room) +"rZK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"rZL" = ( +/turf/closed/wall, +/area/commons/storage/art) +"rZM" = ( +/obj/machinery/door/airlock/grunge{ + name = "Spiritual Infirmary" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"rZR" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rZU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rZW" = ( +/turf/open/floor/plating, +/area/science/research) +"sad" = ( +/obj/structure/sign/departments/chemistry/pharmacy, +/turf/closed/wall, +/area/medical/pharmacy) +"sah" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"saj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/crate, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"sam" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"san" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"sar" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sas" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"saz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"saI" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"saJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"saM" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"saS" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"saT" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"saV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"saX" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science) +"saZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"sbb" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"sbd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"sbe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"sbj" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sbk" = ( +/turf/closed/wall, +/area/security/execution/transfer) +"sbn" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"sbp" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sbu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"sbz" = ( +/obj/structure/table/wood, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"sbA" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"sbB" = ( +/obj/structure/chair/sofa/corp/left, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"sbC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sbG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sbJ" = ( +/turf/open/floor/carpet, +/area/security/detectives_office) +"sbK" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"sbP" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"sbS" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/storage) +"sbT" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"sbV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sbW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"sch" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"scl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"scs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"scC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"scE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/misc_lab) +"scF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"scH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/starboard) +"scK" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"scL" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"scM" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/phone{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/flashlight/lamp{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/carpet/executive, +/area/command) +"scS" = ( +/obj/machinery/computer/slot_machine, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"scU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"scX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"sda" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/storage/belt/bandolier, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sdb" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore/secondary) +"sdc" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/lobby) +"sdf" = ( +/obj/structure/table/reinforced, +/obj/structure/closet/mini_fridge{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"sdi" = ( +/obj/machinery/door/airlock/atmos{ + name = "Turbine Controll Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"sdl" = ( +/obj/structure/cable, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sdm" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/service/hydroponics) +"sdn" = ( +/obj/item/beacon, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"sdw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science) +"sdy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Engine" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Atmospherics - Upper Aft"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sdA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"sdC" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"sdH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/library) +"sdJ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"sdQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/office) +"sdT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sdW" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"sdY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"seh" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"sej" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"sen" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "gas to thermo" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"seo" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"sey" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"seB" = ( +/obj/structure/table, +/obj/item/toy/crayon/spraycan/lubecan, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"seC" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"seD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"seF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"seL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"seN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"seS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/medical/exam_room) +"seW" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"seX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/aft) +"sfa" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"sfj" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"sfm" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"sfo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sfp" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sfq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"sfr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/dark/visible, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"sfu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"sfx" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"sfA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/security/courtroom) +"sfC" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/medical/virology) +"sfO" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"sfQ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"sfX" = ( +/obj/structure/table, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"sfY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"sgc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sge" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"sgh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"sgi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sgk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sgs" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"sgB" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"sgC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8; + name = "Bailiff" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"sgF" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"sgG" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"sgH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/indestructible, +/area/science/test_area) +"sgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sgV" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"sgX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"sgY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"sgZ" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"shc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"shd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"shh" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"shi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/break_room) +"shj" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/airlock{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"shn" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"shp" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"shr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/central) +"shs" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"shu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/detectives_office) +"shw" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"shJ" = ( +/turf/closed/wall, +/area/engineering/storage/tech) +"shK" = ( +/mob/living/simple_animal/hostile/cat_butcherer, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"shL" = ( +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"shM" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"shO" = ( +/obj/machinery/modular_computer/console/preset/cargochat/cargo{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/cargo/sorting) +"shU" = ( +/obj/machinery/modular_computer/console/preset/command, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sie" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/medical/virology) +"sii" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/service/chapel/office) +"siq" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sit" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"siu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Theatre Junction"; + sortType = 18 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"siw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + name = "Courtroom Lobby" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"six" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"siE" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/department/electrical) +"siF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"siG" = ( +/obj/machinery/camera{ + c_tag = "Engineering - East Entrance"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"siS" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "meddoor"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side, +/area/security/checkpoint/medical) +"siX" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"siZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"sja" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"sjb" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore) +"sjc" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"sjf" = ( +/obj/machinery/computer/operating, +/turf/open/floor/plating, +/area/maintenance/fore) +"sjg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sjl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sjn" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Controll Room"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Shutters" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"sjq" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"sjz" = ( +/obj/structure/table/wood, +/obj/item/tape, +/obj/item/tape, +/obj/item/taperecorder, +/turf/open/floor/wood, +/area/lawoffice) +"sjH" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravgen corridor"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"sjM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"sjR" = ( +/obj/structure/closet/secure_closet{ + req_access_txt = "63" + }, +/obj/item/clothing/under/rank/security/officer/blueshirt, +/obj/item/clothing/suit/armor/vest/blueshirt, +/obj/item/clothing/head/helmet/blueshirt, +/obj/item/storage/belt/security, +/obj/item/melee/baton/loaded, +/obj/item/reagent_containers/spray/pepper, +/obj/item/assembly/flash, +/obj/item/restraints/handcuffs, +/obj/item/clothing/under/rank/rnd/scientist, +/obj/item/clothing/under/rank/rnd/scientist/skirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"sjW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"sjX" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ska" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"skb" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"skd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"ski" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"skr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"sks" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"skv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay - Aux Surgery"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"skw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"skz" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"skK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"skM" = ( +/turf/open/floor/engine, +/area/science/cytology) +"skN" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"skO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/lawoffice) +"skX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"skZ" = ( +/obj/structure/fans/tiny{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"sld" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"slh" = ( +/obj/structure/table, +/obj/item/plate, +/turf/open/floor/plasteel, +/area/service/kitchen) +"slr" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/item/clothing/glasses/meson/engine/tray, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"slt" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/poddoor/preopen{ + id = "XenoOffice"; + name = "Xenobiology Lockdown Blast Doors" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Xenobiology" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"slw" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"slx" = ( +/turf/open/openspace, +/area/security/prison/upper) +"sly" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"slA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"slD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"slG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/mail/full, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"slK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"slL" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"slW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"smh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"sml" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"smm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"smE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"smI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"smJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/central) +"smM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"smP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"smR" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/organ/eyes, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"smX" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"smY" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"smZ" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"snb" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CytologyShutters"; + name = "Cytology shutters" + }, +/turf/open/floor/plasteel, +/area/science/cytology) +"sne" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"sno" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"snp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"snq" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"snr" = ( +/turf/open/floor/plasteel, +/area/service/chapel) +"snu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"snE" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"snH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"snI" = ( +/obj/machinery/light, +/obj/machinery/computer/security/labor{ + dir = 1 + }, +/obj/machinery/button{ + id = "Sbay2"; + name = "Hangar Door 2"; + pixel_x = 25; + pixel_y = -5 + }, +/obj/machinery/button{ + id = "Sbay1"; + name = "Hangar Door 1"; + pixel_x = 25; + pixel_y = 6 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Flight Control"; + dir = 8 + }, +/obj/machinery/button{ + id = "Sbay3"; + name = "Hangar 1 External Blast Door"; + pixel_x = 37; + pixel_y = 6 + }, +/obj/machinery/button{ + id = "Sbay4"; + name = "Hangar 2 External Blast Door"; + pixel_x = 37; + pixel_y = -5 + }, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"snP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"snS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"snV" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"soa" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space/nearstation) +"soe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"soh" = ( +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"soi" = ( +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/upper) +"soD" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/medbay/lobby) +"soE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/modular_computer/console/preset/curator{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/library) +"soJ" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"soL" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/head/welding, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"soN" = ( +/obj/item/cigbutt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"soX" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"spa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/aft) +"spb" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"spc" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/service/library) +"spe" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/science/research) +"spg" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"sph" = ( +/turf/closed/wall/r_wall, +/area/security/prison/work) +"spi" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"spk" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"spl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"spp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/science) +"spq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Lower Starboard"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"spw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"spy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"spC" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/box, +/obj/structure/mirror/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"spE" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"spH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"spI" = ( +/obj/structure/closet/crate/secure/gear, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"spM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 2 + }, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/kitchen/spoon{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/kitchen/fork{ + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/kitchen/spoon{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/kitchen/spoon{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/kitchen/spoon{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/plate, +/obj/item/plate{ + pixel_y = 2 + }, +/obj/item/plate{ + pixel_y = 4 + }, +/obj/item/plate{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters) +"spN" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"spO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"spP" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"spS" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"spT" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Head Of Personel's Office"; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"spZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/anesthetic, +/obj/item/tank/internals/anesthetic, +/turf/open/floor/plasteel, +/area/science/robotics) +"sqe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sqf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Controll Room"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/science) +"sqh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_access_txt = "32" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"sqi" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"sqo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"sqr" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"squ" = ( +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"sqB" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 5 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sqD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sqM" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Shuttle Dock"; + dir = 1; + name = "arrivals camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"sqN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"sqR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"sqT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/deepfryer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"sqW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sqX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/pew/right{ + dir = 1; + name = "Jury" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"srd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"srf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Hidden Library" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/abandoned) +"srl" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"srq" = ( +/obj/machinery/flasher/directional/south{ + id = "AI" + }, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"srs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"sry" = ( +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"srG" = ( +/obj/machinery/modular_computer/console/preset/research, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"srH" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/wood/parquet, +/area/service/theater) +"srI" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"srJ" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"srM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"srX" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"sse" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/work) +"ssg" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"ssm" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/lawoffice) +"sso" = ( +/obj/structure/window, +/obj/structure/rack, +/obj/item/clothing/neck/scarf{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/clothing/neck/scarf/black{ + pixel_y = 7 + }, +/obj/item/clothing/neck/scarf/darkblue{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/clothing/neck/scarf/green{ + pixel_x = -5 + }, +/obj/item/clothing/neck/scarf/yellow, +/obj/item/clothing/neck/scarf/red{ + pixel_x = 5 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"sss" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"sst" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ssv" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ssC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ssD" = ( +/obj/structure/table/wood, +/obj/structure/window{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"ssE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/wood, +/area/command) +"ssK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"ssT" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/engineering/atmospherics_engine) +"ssV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"std" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Escape Pods"; + dir = 8; + name = "hallway camera" + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"stg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/starboard) +"sth" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/security/courtroom) +"sti" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -3 + }, +/obj/structure/sign/directions/science{ + pixel_y = -9 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"stk" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"stm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"stp" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"stD" = ( +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"stJ" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/closet/emcloset, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"stO" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"stX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"stZ" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = -7; + pixel_y = 22 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"sua" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"suc" = ( +/turf/closed/wall/mineral/wood, +/area/command/heads_quarters/captain/private) +"suf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"sun" = ( +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"suo" = ( +/obj/structure/closet/secure_closet/exile, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east{ + pixel_x = 28 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"sus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"suu" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"suw" = ( +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"suF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central) +"suG" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"suL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"suP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper/pamphlet/radstorm{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/paper/pamphlet/violent_video_games{ + pixel_y = 5 + }, +/obj/item/paper/pamphlet/centcom/visitor_info{ + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"suV" = ( +/obj/item/trash/tray, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"suX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"suY" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/wood, +/area/service/chapel/office) +"sva" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/fore/upper) +"sve" = ( +/obj/machinery/door/airlock/engineering{ + name = "Science Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;47" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"svj" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility/full/engi, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"svk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"svm" = ( +/obj/machinery/light/small, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"svp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/circuitboard/machine/paystand, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"svq" = ( +/turf/open/openspace, +/area/hallway/primary/port) +"svt" = ( +/obj/structure/chair/sofa, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"svC" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/plasteel, +/area/science/mixing/chamber) +"svE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"svH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"svI" = ( +/obj/structure/closet/emcloset, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"svX" = ( +/turf/open/floor/plating, +/area/medical/pharmacy) +"svZ" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/circuitboard/computer/med_data, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"swd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"swe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"swh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"swk" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/twenty, +/obj/item/stack/cable_coil, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"swl" = ( +/obj/machinery/computer/warrant{ + dir = 4 + }, +/obj/structure/noticeboard/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"swp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sws" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"swH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/office) +"swK" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_y = 4 + }, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/folder/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"swQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"swR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/engine_room) +"swT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"swV" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"swY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"sxa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"sxc" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Bar Junction"; + sortType = 19 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"sxf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sxi" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/port) +"sxk" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"sxl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sxm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/noticeboard/directional/east, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters) +"sxo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"sxq" = ( +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"sxt" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/break_room) +"sxv" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"sxw" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"sxz" = ( +/obj/item/radio/intercom/directional/south, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"sxD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"sxF" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"sxI" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/service/library) +"sxJ" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"sxK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"sxO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"sxP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/light/floor, +/turf/open/openspace, +/area/maintenance/starboard/central) +"syj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"syk" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar/atrium) +"syp" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"syr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"syt" = ( +/obj/structure/sign/picture_frame/showroom/four{ + pixel_y = 32 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"syv" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"syw" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"syx" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/light/directional/north, +/obj/structure/noticeboard/directional/north, +/obj/machinery/button/curtain{ + id = "Psychologistcurtains"; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"syA" = ( +/obj/structure/window/reinforced, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science) +"syB" = ( +/turf/closed/wall, +/area/science/explab) +"syE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"syG" = ( +/turf/open/floor/plasteel/white, +/area/science/cytology) +"syH" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"syK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter2"; + name = "CMO Study Shutters" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"szh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"szi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"szj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"szo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/gimmick/russian, +/turf/open/floor/plating, +/area/maintenance/port) +"szq" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"szr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"szu" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Waste to Pure" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"szv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"szz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"szG" = ( +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"szJ" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/flask/det{ + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"szL" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"szN" = ( +/obj/machinery/computer/arcade/battle, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"szR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Engineering - Tcomms entrance"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark/side, +/area/tcommsat/computer) +"szT" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/commons/dorms) +"szX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"szZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"sAm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"sAo" = ( +/obj/structure/closet/crate/freezer{ + storage_capacity = 70 + }, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/raw_patty, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_meatball, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/raw_sausage, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/obj/item/food/meat/rawcutlet, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"sAp" = ( +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"sAq" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/engineering/break_room) +"sAt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sAy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"sAz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"sAE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"sAO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"sAP" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/circuit, +/area/command/gateway) +"sAX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sAZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/defibrillator_mount/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"sBd" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"sBt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/science/explab) +"sBz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/analyzer{ + pixel_y = 5 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"sBA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mining Office Maintenance"; + req_access_txt = "48" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sBG" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sBH" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"sBJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 8; + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sBM" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"sBP" = ( +/turf/open/floor/engine, +/area/science/misc_lab) +"sBS" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/maintenance/fore/secondary) +"sBV" = ( +/obj/structure/table/reinforced, +/obj/item/multitool, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay Requests Console" + }, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/qm/perch) +"sBX" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"sBY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sBZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"sCi" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"sCl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"sCq" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/fitness/recreation) +"sCE" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/loading_area/red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"sCF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sCG" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"sCH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/central) +"sCL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"sCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"sCT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Engineering - Locker Room"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/storage) +"sCZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/westleft{ + dir = 1; + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sDe" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sDf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno4"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"sDh" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sDl" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/item/stamp/denied{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/captain{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/stamp{ + pixel_x = -6 + }, +/obj/machinery/door/window/brigdoor/northright{ + dir = 8; + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"sDm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"sDo" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sDq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"sDv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"sDM" = ( +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sDV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"sEa" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"sEc" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sEd" = ( +/obj/effect/turf_decal/stripes/white/end, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sEh" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"sEv" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/lawoffice) +"sEE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "qmprivacy"; + name = "Quartermaster's Privacy Shutters" + }, +/turf/open/floor/plating, +/area/cargo/qm) +"sEJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"sEM" = ( +/obj/machinery/light, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"sEN" = ( +/obj/item/clothing/under/color/grey{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/grey{ + pixel_y = 7 + }, +/obj/item/clothing/under/color/grey{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/jumpskirt/grey{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/grey{ + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/grey{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"sEQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"sEV" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sEW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"sFb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"sFe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sFf" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"sFi" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sFk" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/newscaster/directional/west{ + pixel_x = -34 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/qm/perch) +"sFt" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"sFw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_holder/oxygen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"sFx" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Command Safehouse"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"sFC" = ( +/obj/structure/rack, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sFE" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/central) +"sFH" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/donkpockets, +/obj/item/stack/package_wrap, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/aft/upper) +"sFK" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"sFM" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sFU" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"sFV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"sFY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"sGe" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"sGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/light/small/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sGi" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"sGk" = ( +/obj/machinery/door/airlock/security{ + name = "Workshop" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"sGq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup2"; + location = "hallup1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sGt" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"sGu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"sGB" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"sGD" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"sGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"sGN" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"sGV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Public Gym" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/fitness) +"sGW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sHd" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sHj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/porta_turret/ai, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"sHn" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"sHr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port) +"sHs" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"sHu" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sHA" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sHE" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -6; + pixel_y = 7; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "rdoffice"; + name = "Privacy Control"; + pixel_x = 7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/obj/machinery/button/door{ + id = "rdtoxins"; + name = "Toxins Containment Control"; + pixel_x = -6; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdrnd"; + name = "Research and Development Containment Control"; + pixel_x = 7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/structure/noticeboard/rd{ + dir = 1; + pixel_x = 1; + pixel_y = -31 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"sHK" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"sHP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Viro Entrance"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sHW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"sHX" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/cargo/office) +"sHY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/engineering/atmos) +"sIa" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft) +"sIb" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sIe" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"sIf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"sIr" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sIs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"sIv" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sIx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"sIy" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 1; + name = "genetics lab camera" + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sIz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"sIG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"sIJ" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"sIK" = ( +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/medical/virology) +"sIL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sIO" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/fore) +"sIP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"sIT" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"sJa" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"sJc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sJd" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 5"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"sJF" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore) +"sJN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"sJQ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"sJX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sJY" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sKg" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"sKh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sKi" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sKk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sKw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sKD" = ( +/obj/item/trash/pistachios, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"sKE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"sKH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/soap/homemade, +/obj/item/melee/flyswatter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"sKO" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"sKP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/clipboard, +/obj/item/toy/figure/qm, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"sKS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"sKV" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sKW" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sLd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sLe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"sLm" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Luggagebelt" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint) +"sLn" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"sLp" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"sLr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"sLz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"sLA" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"sLD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"sLF" = ( +/obj/structure/bed, +/obj/item/bedsheet/centcom, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"sLL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"sLM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"sLR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"sLS" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sMc" = ( +/obj/machinery/computer/warrant{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"sMf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"sMg" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"sMi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sMq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"sMz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"sMD" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light_switch/directional/south{ + pixel_x = -5 + }, +/obj/machinery/button/door/directional/south{ + id = "HoPdoor"; + name = "HoP Door Lock"; + normaldoorcontrol = 1; + pixel_x = 4; + req_access_txt = "57"; + specialfunctions = 4 + }, +/obj/machinery/vending/cart, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"sMJ" = ( +/obj/item/beacon, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"sMM" = ( +/obj/structure/table/glass, +/obj/item/storage/box/donkpockets{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"sMZ" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Workshop"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"sNd" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"sNf" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/chair/sofa/left, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar/atrium) +"sNg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sNh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sNm" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"sNp" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sNs" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"sNt" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/shower) +"sNw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"sNx" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"sNz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"sNO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"sNP" = ( +/obj/structure/table/reinforced, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/storage/box/lasertagpins{ + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"sOa" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"sOh" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/chapel) +"sOo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/port/aft) +"sOt" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sOu" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"sOD" = ( +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"sOF" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sOH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"sOJ" = ( +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"sOK" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/effect/turf_decal/bot, +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"sOL" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sON" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"sOO" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/science/central) +"sOP" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"sOV" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sOY" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -10 + }, +/turf/closed/wall, +/area/hallway/primary/starboard) +"sPb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sPk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Gulag shuttle entrance" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"sPr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/supply/visible/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"sPu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"sPz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sPC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"sQf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sQi" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/window/northleft, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"sQj" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"sQl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"sQm" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"sQn" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/shower) +"sQo" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Desk" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/brig) +"sQp" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/cargo/storage) +"sQq" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/wirecutters, +/obj/item/paper/fluff{ + info = "Please keep in mind that the shiftstart powerdraw can be very high, the ship is provided with capacitor banks that will allow you some breathing room to set up, but generally you want about 6 to 8 emitters running at minimum after a few minutes, keep a close eye on overvoltage on the main powernet too as you don't want to shock the crewmembers."; + name = "Note to Electricians" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"sQr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sQD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"sQL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"sQN" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"sQQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sQR" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"sQS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"sRm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"sRn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"sRt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"sRx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"sRy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/library) +"sRA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sRE" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sRF" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sRL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"sRN" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/central) +"sRR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/clothing/mask/cigarette{ + pixel_x = 5; + pixel_y = 12 + }, +/obj/item/lighter/greyscale{ + pixel_x = 6; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sSc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 1; + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"sSh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sSi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"sSj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"sSn" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/medical/abandoned) +"sSo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sSp" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"sSq" = ( +/turf/closed/wall, +/area/medical/morgue) +"sSr" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"sSu" = ( +/obj/structure/table, +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"sSD" = ( +/obj/structure/shuttle/engine/huge, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"sSM" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/item/storage/photo_album/captain, +/obj/item/camera, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light_switch/directional/south{ + pixel_y = -37 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sSU" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"sTe" = ( +/obj/structure/rack, +/obj/item/reagent_containers/blood/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"sTj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sTk" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sTl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/effect/turf_decal/trimline/red/filled/warning{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "HoSdoor"; + name = "Head Of Security's Office"; + req_access_txt = "58" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"sTp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"sTr" = ( +/obj/structure/table, +/obj/item/folder, +/turf/open/floor/plating, +/area/maintenance/port) +"sTu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sTA" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/shower) +"sTC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"sTJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"sTM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"sTT" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"sTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"sTZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"sUa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/dorms) +"sUd" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/library/artgallery) +"sUg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"sUj" = ( +/obj/machinery/door/airlock{ + name = "Slaughterhouse" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"sUl" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/table/rolling, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"sUo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/openspace, +/area/cargo/qm) +"sUp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"sUt" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"sUv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/airalarm/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light_switch/directional/north{ + pixel_x = -16 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/qm/perch) +"sUz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sUA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sUG" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/secondary/command) +"sUI" = ( +/obj/structure/cable, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/goonplaque, +/area/hallway/primary/central) +"sUJ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/prison/workout) +"sUK" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/command) +"sUL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/security/range) +"sUP" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/paramedic, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"sUS" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"sUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset{ + name = "plasmaperson emergency closet" + }, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"sUW" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"sUX" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sUZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"sVd" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sVe" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"sVj" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/bar/atrium) +"sVk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sVm" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"sVp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"sVt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"sVu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sVG" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science) +"sVM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"sVO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"sVS" = ( +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"sVV" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/command) +"sWc" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/command/gateway) +"sWd" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "PrisonerReward"; + name = "Good prisoner instant gratification system" + }, +/turf/open/floor/plasteel/stairs/right, +/area/security/prison/workout) +"sWi" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"sWl" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"sWr" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sWD" = ( +/obj/structure/railing/corner, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sWH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sWL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sWQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/cargo/office) +"sWW" = ( +/obj/machinery/light/small/directional/south, +/turf/open/openspace, +/area/maintenance/fore/upper) +"sWZ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"sXa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sXe" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"sXf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_y = 26; + req_access_txt = "27" + }, +/turf/open/floor/plasteel, +/area/service/chapel) +"sXk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/door/airlock/silver{ + name = "Prison Pool" + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/prison/workout) +"sXv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/main) +"sXw" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/north, +/obj/effect/mapping_helpers/dead_body_placer, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"sXA" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"sXB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"sXE" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"sXH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/porta_turret/ai, +/obj/machinery/camera{ + c_tag = "AI Satellite - Antechamber"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"sXM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/gateway) +"sXQ" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"sXU" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Atmospherics Delivery"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"sXX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"sYf" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/port/central) +"sYh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sYj" = ( +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/cargo/qm) +"sYp" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"sYq" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sYB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"sYM" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sYN" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/science/explab) +"sYP" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"sYQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sYR" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"sYT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"sYY" = ( +/obj/machinery/air_sensor/miasma_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"sZa" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"sZe" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"sZk" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"sZr" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sZu" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/apron/surgical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"sZz" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"sZE" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/port) +"sZH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "NarcoticsV"; + name = "Maintenance Vendor" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"sZK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"sZP" = ( +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sZV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"sZW" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sZZ" = ( +/obj/machinery/door/airlock/security{ + name = "Courtroom Bailiff Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"taf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"tal" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tan" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"tar" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/loading_area/red, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"tav" = ( +/obj/item/trash/tray, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"taB" = ( +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"taE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/lounge) +"taJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/mob/living/simple_animal/bot/medbot{ + name = "Doctor Heals-The-Idiot" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"taN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"taQ" = ( +/obj/machinery/door/airlock{ + name = "Hydroponics Test Lab"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"taS" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"taY" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"taZ" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood, +/area/service/bar/atrium) +"tbd" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/chair{ + name = "Defendant" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"tbf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tbh" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tbi" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"tbs" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/command/storage/eva) +"tbx" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"tbI" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"tbJ" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste Cooler Thermo Regulation Gas Injection pump" + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"tbO" = ( +/turf/closed/wall/rust, +/area/maintenance/department/medical/morgue) +"tbQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/commons/fitness/recreation) +"tbU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tca" = ( +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tcd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"tcg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tch" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4; + name = "Output Release" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"tci" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tcm" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tco" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/crowbar/red, +/obj/item/crowbar/red, +/turf/open/floor/plasteel, +/area/maintenance/port) +"tcq" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"tct" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"tcv" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"tcD" = ( +/turf/closed/wall, +/area/maintenance/department/science/central) +"tcE" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"tcJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tcL" = ( +/turf/open/floor/plating/airless, +/area/maintenance/department/science) +"tcQ" = ( +/obj/structure/closet/crate/freezer{ + name = "limb storage" + }, +/obj/item/bodypart/l_arm/robot, +/obj/item/bodypart/l_leg/robot, +/obj/item/bodypart/r_arm/robot, +/obj/item/bodypart/r_leg/robot, +/obj/item/bodypart/chest/robot, +/obj/item/bodypart/head/robot, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/fore) +"tcR" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tcV" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tcZ" = ( +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/security/prison/work) +"tdd" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/space) +"tdg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"tdh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tdj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"tdk" = ( +/turf/open/floor/grass, +/area/hallway/primary/central) +"tdn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup19"; + location = "hallup18" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tdx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tdC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"tdE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"tdF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tdS" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"teg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"tel" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/camera{ + c_tag = "Chapel - Port"; + dir = 4; + name = "chapel camera" + }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/service/chapel) +"tem" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/commons/fitness/recreation) +"ter" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"teu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"tew" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"teB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Arcade" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"teJ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/ammo_box/magazine/toy/pistol/riot, +/obj/item/ammo_box/magazine/toy/pistol/riot, +/obj/item/gun/ballistic/automatic/pistol/toy/riot, +/obj/item/melee/baton, +/obj/item/clothing/head/helmet/riot, +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"teK" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"teN" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"teQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell7"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"teR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/lockers) +"teW" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tfb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"tfe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"tff" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/hydroponics/garden/abandoned) +"tfh" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tfk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/central) +"tfl" = ( +/obj/structure/table/wood, +/obj/item/storage/belt/grenade{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tfo" = ( +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"tfq" = ( +/obj/structure/window, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"tfr" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno10"; + name = "Xenobio Pens Containment" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tfz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"tfA" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"tfE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"tfJ" = ( +/obj/structure/railing/corner, +/turf/open/floor/glass, +/area/commons/dorms) +"tfO" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/burger/bigbite{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/item/food/burger/bigbite{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/food/burger/superbite, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"tfP" = ( +/turf/open/floor/plasteel, +/area/security/prison/work) +"tfS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"tfT" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"tfV" = ( +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = 2 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/wrench, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"tfX" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"tgb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"tgj" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tgm" = ( +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"tgv" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/service/bar/atrium) +"tgx" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/aft/upper) +"tgy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"tgA" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + piping_layer = 2 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tgF" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"tgI" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"tgM" = ( +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tgN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison/work) +"tgO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"tgT" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"the" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"thf" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xenobio Containment"; + name = "Xenobiology Containment Shutters" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"thg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/aft/upper) +"thh" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/starboard) +"thn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"thq" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/lobby) +"thv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"thD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"thF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness/recreation) +"thK" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = 8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"thL" = ( +/obj/structure/railing/corner{ + dir = 1; + pixel_x = 23 + }, +/obj/structure/railing{ + dir = 1; + pixel_x = -9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/service/chapel) +"thQ" = ( +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port) +"thV" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"thW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tid" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"tie" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"tim" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"tio" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tip" = ( +/obj/machinery/computer/arcade{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"tir" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/lawoffice) +"tiv" = ( +/obj/structure/barricade/security/ctf, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tiw" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"tiA" = ( +/obj/machinery/button/curtain{ + id = "prisoncell8"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"tiC" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/breakroom) +"tiE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tiO" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tiP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/printer) +"tiR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/grass, +/area/command/heads_quarters/cmo) +"tiS" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"tiT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/medical/psychology) +"tiV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/weather/sand, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = -6 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"tjb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"tjl" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tjm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tjt" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness/locker_room) +"tjA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tjD" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/reagentgrinder, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/science/explab) +"tjI" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tjK" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 9e+006; + input_level = 0; + output_level = 10000 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"tjN" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"tjS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tjU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"tjW" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"tjX" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"tkd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"tke" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/backup) +"tko" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tkp" = ( +/obj/structure/industrial_lift, +/obj/effect/landmark/lift_id{ + specific_lift_id = "publicElevator" + }, +/turf/open/openspace, +/area/hallway/primary/upper) +"tkq" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"tkr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tkt" = ( +/obj/structure/fence, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/fore) +"tkz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"tkA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tkB" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"tkE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"tkF" = ( +/obj/machinery/camera{ + c_tag = "Library Upper"; + dir = 8; + name = "library camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/wood, +/area/service/library) +"tkJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"tkL" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"tkU" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/analyzer, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"tlb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"tlh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"tli" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"tlm" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/storage) +"tlE" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = " Prison - Lower Staircase"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tlG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/commons/fitness) +"tlN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tlQ" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Space Bridge"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"tmd" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/primary/central) +"tml" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"tmm" = ( +/obj/structure/rack, +/obj/item/clothing/suit/apron/chef, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"tmn" = ( +/obj/structure/table/reinforced, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"tmp" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Engine Coolant Bypass" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"tmw" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"tmL" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tmO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"tnb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tnc" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/button/elevator/directional/north{ + id = "CargoElevator" + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"tng" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Medbay Deliveries"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/sorting) +"tnl" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Hall" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side, +/area/service/chapel) +"tnm" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"tnr" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"tns" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"tnA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"tnM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs, +/area/cargo/warehouse) +"tnN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/indestructible, +/area/science/test_area) +"tnO" = ( +/turf/open/floor/carpet, +/area/service/chapel/main) +"tnS" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/button/door/directional/west{ + id = "Dorm7"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"tnT" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"tnX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"tob" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"tof" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/indestructible, +/area/science/test_area) +"top" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tot" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tox" = ( +/obj/effect/turf_decal/bot_white, +/obj/item/banner/command/mundane, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"toz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"toC" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"toD" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"toE" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command) +"toF" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port) +"toJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"toN" = ( +/obj/structure/table, +/obj/item/clothing/shoes/russian, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"toX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"toZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"tpb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"tpd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"tph" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tpl" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"tpm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"tpq" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"tpx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"tpE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tpH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"tpN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tpO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"tpP" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"tpQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tqj" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tqq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/main) +"tqr" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/janitor) +"tqt" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"tqv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/chapel) +"tqy" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/xenobiology) +"tqA" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tqD" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/range) +"tqF" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Staircase"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"tqH" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/secondary/exit) +"tqI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tqK" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tqQ" = ( +/obj/machinery/medical_kiosk{ + pixel_x = -3 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"tqS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"tqV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"tqY" = ( +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"tra" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"trc" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"trd" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"trj" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"trn" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"trp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"trq" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"trr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"trs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"trx" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"trN" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"trR" = ( +/turf/open/openspace, +/area/maintenance/port/aft) +"trU" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/aft) +"trV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"trW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"trY" = ( +/obj/item/beacon, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"tso" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"tsp" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/keycard_auth/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"tst" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tsu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tsw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tsB" = ( +/obj/structure/curtain/bounty, +/obj/item/storage/organbox, +/obj/structure/table{ + name = "Ripperdoc" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"tsG" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"tsH" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"tsI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"tsK" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Front desk"; + req_one_access_txt = "32;19" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/construction/engineering) +"tsM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tsN" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tsW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"tsZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ttb" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/upper) +"ttj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"ttk" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ttn" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/ce) +"tto" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ttt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ttz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"ttA" = ( +/obj/structure/shuttle/engine/large, +/turf/open/space/openspace, +/area/maintenance/port/aft) +"ttM" = ( +/obj/machinery/holopad{ + name = "botany requests holopad" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ttN" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters) +"ttV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ttY" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"tua" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness) +"tud" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"tui" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"tuj" = ( +/obj/item/weldingtool, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/structure/rack, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"tuk" = ( +/obj/structure/sign/warning/coldtemp{ + name = "\improper CRYOGENICS" + }, +/turf/closed/wall, +/area/medical/cryo) +"tul" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/security/courtroom) +"tun" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"tuu" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"tux" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Science Deliveries"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/sorting) +"tuy" = ( +/obj/structure/closet{ + name = "Waiter Outfits" + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/accessory/maidapron, +/obj/item/clothing/accessory/maidapron, +/obj/item/clothing/under/suit/tuxedo, +/obj/item/clothing/under/suit/tuxedo, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/shoes/laceup, +/obj/item/clothing/accessory/waistcoat, +/obj/item/clothing/accessory/waistcoat, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"tuE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"tuH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"tuI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"tuP" = ( +/obj/effect/turf_decal/siding/thinplating/light, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"tuS" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/item/storage/bag/trash/filled, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"tvb" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"tvc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/command/gateway) +"tvk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tvo" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"tvq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 33 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"tvs" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tvy" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"tvA" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tvJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"tvK" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Staircase"; + dir = 1; + name = "hallway camera" + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tvR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tvU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tvW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/ce) +"tvY" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"twc" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"twg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"twm" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -14 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"twr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"twt" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"twu" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/curtain/cloth, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/commons/dorms) +"tww" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"twz" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"twE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"twL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/cafeteria) +"twM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/security/prison/shower) +"twN" = ( +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"twO" = ( +/obj/structure/closet/cardboard, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"twP" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"twQ" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"twR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"twT" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"txh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"txi" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"txk" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"txq" = ( +/obj/structure/chair/pew{ + dir = 1; + name = "Jury" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"txF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/security/brig/upper) +"txG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"txN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"txQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"txR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"txT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"txV" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tya" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"tyc" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"tyi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"tym" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space/nearstation) +"tys" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"tyu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"tyB" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plating, +/area/science/research/abandoned) +"tyE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/white, +/area/science/lab) +"tyF" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"tyI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/security/prison/shower) +"tyN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"tyY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"tzf" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tzj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"tzo" = ( +/obj/structure/chair/plastic, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"tzr" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/storage/toolbox/mechanical, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"tzt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"tzw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tzy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/wood, +/area/security/prison/workout) +"tzF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tzG" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/book/manual/wiki/medicine, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"tzN" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Waste"; + name = "Waste Release"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"tzW" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"tAf" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/librarian, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"tAh" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"tAp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tAr" = ( +/obj/structure/rack, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"tAx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"tAz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"tAA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"tAD" = ( +/obj/structure/table, +/obj/item/wirecutters{ + pixel_y = 1 + }, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tAF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"tAI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tAK" = ( +/turf/open/floor/plasteel, +/area/service/kitchen) +"tAM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Lower Port Aft"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tAR" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"tAX" = ( +/obj/item/storage/secure/safe{ + pixel_x = 32 + }, +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/detective, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"tBa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"tBl" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"tBp" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"tBy" = ( +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"tBC" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/security/courtroom) +"tBG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tBH" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/flasher/directional/east{ + id = "hopflash"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"tBK" = ( +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"tBN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"tBX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"tBY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"tCd" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"tCf" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Hangar 3"; + name = "cargo camera" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/cargo/storage) +"tCh" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/banner/engineering/mundane, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"tCo" = ( +/obj/structure/table, +/obj/item/watertank{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/watertank, +/turf/open/floor/plasteel, +/area/maintenance/port) +"tCu" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"tCF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"tCI" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"tCO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fore) +"tCQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tCW" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"tCZ" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter"; + name = "engineering camera" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tDd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"tDr" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/fore) +"tDC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/toy/plush/slimeplushie{ + name = "Lasertag Blue Flag" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tDE" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/security/prison/workout) +"tDI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"tDJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"tDM" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"tDQ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"tDR" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tDT" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tDW" = ( +/turf/open/floor/wood, +/area/command/meeting_room/council) +"tEc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/wood/parquet, +/area/science/breakroom) +"tEd" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"tEj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/zone2) +"tEk" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"tEl" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"tEn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/pipedispenser/disposal/transit_tube, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"tEo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"tEp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"tEv" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"tEy" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"tEN" = ( +/obj/structure/window, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/closet/secure_closet, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"tEO" = ( +/obj/structure/bed/maint, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tEP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/indestructible, +/area/science/test_area) +"tEQ" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"tES" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/medical/exam_room) +"tEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"tEZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tFc" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"tFd" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tFw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"tFA" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"tFF" = ( +/obj/structure/closet, +/obj/item/stack/sheet/iron{ + amount = 34 + }, +/obj/item/extinguisher/mini, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"tFH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tFQ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/chapel/office) +"tFU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"tGc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"tGf" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"tGh" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"tGi" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"tGk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"tGm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"tGp" = ( +/obj/effect/turf_decal/siding/purple, +/obj/structure/cable, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"tGq" = ( +/obj/machinery/camera{ + c_tag = "Service Hallway - Starboard"; + dir = 1; + name = "hallway camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"tGr" = ( +/turf/closed/wall, +/area/maintenance/department/medical/morgue) +"tGt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"tGz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"tGG" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/command) +"tGN" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"tGP" = ( +/turf/closed/wall, +/area/medical/cryo) +"tGR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"tGT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tGY" = ( +/turf/closed/wall, +/area/commons/storage/tools) +"tHe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"tHh" = ( +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Lower"; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tHl" = ( +/turf/closed/wall, +/area/ai_monitored/command/storage/eva) +"tHu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"tHz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos/upper) +"tHB" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"tHD" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"tHJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tHK" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tHN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tHP" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tHQ" = ( +/obj/machinery/computer/bank_machine{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"tHT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"tIe" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"tIk" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"tIm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"tIo" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tIr" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/cytology) +"tIs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore) +"tIt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tIE" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"tIO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science) +"tIY" = ( +/obj/structure/table, +/obj/item/storage/organbox, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tJp" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tJt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"tJw" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/maintenance/fore/upper) +"tJz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"tJC" = ( +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"tJD" = ( +/obj/structure/table, +/obj/item/wrench{ + pixel_y = 4 + }, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tJI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"tJK" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/medical/medbay/lobby) +"tJM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"tJN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/chair/plastic{ + dir = 8; + pixel_y = 6 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"tJS" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Study"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"tJV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/cafeteria) +"tJW" = ( +/turf/open/floor/wood, +/area/lawoffice) +"tJZ" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tKf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tKg" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"tKi" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"tKq" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/lockbox/medal, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"tKs" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"tKx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"tKD" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"tKF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"tKL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = -7 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"tKN" = ( +/obj/structure/chair/wood{ + dir = 4; + name = "Witness stand" + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/wood, +/area/security/courtroom) +"tKP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/maintenance/central) +"tKQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel) +"tKV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tKY" = ( +/obj/machinery/door/window/brigdoor{ + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"tKZ" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"tLb" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft) +"tLd" = ( +/obj/structure/table{ + name = "Drugs Dealer" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/storage/box/syringes, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"tLg" = ( +/obj/machinery/door/airlock{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"tLj" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tLl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tLn" = ( +/obj/machinery/door/airlock/research{ + name = "Containment Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"tLq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tLx" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/folder/yellow, +/obj/item/paper/guides/jobs/atmos/hypertorus, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/window/plasma/reinforced, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"tLD" = ( +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"tLU" = ( +/obj/structure/chair/comfy/brown{ + dir = 4; + name = "Judge" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/medical/psychology) +"tMi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tMk" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/execution/education) +"tMm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tMo" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"tMq" = ( +/obj/machinery/mass_driver/trash{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/disposal) +"tMv" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"tMA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"tMD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"tML" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/mixing) +"tMN" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tMP" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"tMQ" = ( +/obj/structure/closet/crate/wooden{ + name = "Instrument crate" + }, +/obj/item/instrument/piano_synth, +/obj/item/instrument/eguitar, +/obj/item/instrument/harmonica, +/obj/item/instrument/recorder, +/obj/item/instrument/trombone, +/obj/item/instrument/trumpet, +/obj/item/instrument/banjo, +/obj/item/instrument/guitar, +/obj/item/instrument/violin, +/obj/item/instrument/glockenspiel, +/obj/item/instrument/accordion, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/theater) +"tMZ" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Airlock"; + dir = 1; + name = "command camera" + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"tNc" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"tNe" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tNg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tNi" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/item/lipstick{ + pixel_x = -11; + pixel_y = 11 + }, +/obj/item/lipstick/black{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/lipstick/jade{ + pixel_x = -11; + pixel_y = 1 + }, +/obj/item/lipstick/purple{ + pixel_x = -11; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"tNk" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tNl" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"tNn" = ( +/turf/open/floor/glass, +/area/medical/medbay/lobby) +"tNs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tNu" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tNz" = ( +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"tNE" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/glass, +/area/commons/dorms) +"tNJ" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"tNK" = ( +/obj/machinery/light/small/directional/south, +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"tNL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/hallway/primary/port) +"tNM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"tNN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/assembly/igniter{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + pixel_x = -3; + pixel_y = -1 + }, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/assembly/igniter{ + pixel_x = -3; + pixel_y = -8 + }, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"tNQ" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "mining_internal" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"tNZ" = ( +/obj/effect/turf_decal/siding/purple/end{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/science) +"tOa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"tOc" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tOh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tOi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"tOn" = ( +/obj/structure/falsewall, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tOq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"tOw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"tOy" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tOz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tOA" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tOG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"tOH" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"tON" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tOR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "Infokiosk"; + name = "Information Kiosk Shutters"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"tOU" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tOX" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/target, +/turf/open/indestructible, +/area/science/test_area) +"tPc" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/maintenance/fore/upper) +"tPd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tPl" = ( +/turf/closed/wall, +/area/engineering/storage_shared) +"tPn" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"tPo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"tPt" = ( +/obj/structure/table/optable, +/obj/machinery/defibrillator_mount{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tPy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"tPz" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/machinery/shieldgen, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"tPD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/theater) +"tPF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tPN" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "CEdoor"; + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/command/heads_quarters/ce) +"tPO" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/light_switch/directional/west, +/obj/item/clothing/under/rank/engineering/chief_engineer/skirt, +/obj/item/clothing/under/rank/engineering/chief_engineer, +/obj/item/clothing/head/hardhat/weldhat/white, +/obj/item/clothing/neck/cloak/ce, +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"tPT" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engineering/main) +"tPU" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"tPW" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"tQh" = ( +/obj/effect/turf_decal/stripes/white/end{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"tQm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tQn" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tQo" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tQt" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"tQu" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tQD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"tQL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tQR" = ( +/obj/structure/chair/stool, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"tQT" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/science/research) +"tQW" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard Aft"; + dir = 4; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"tRb" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"tRd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"tRj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"tRl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"tRr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"tRt" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"tRu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"tRv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"tRx" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"tRy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"tRA" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"tRD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"tRE" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/storage) +"tRH" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"tRL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"tRM" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/recycler, +/turf/open/floor/plating, +/area/maintenance/disposal) +"tRX" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tSa" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"tSc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tSf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"tSg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tSj" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"tSn" = ( +/turf/closed/wall, +/area/service/theater) +"tSt" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plating, +/area/science/research/abandoned) +"tSC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/openspace, +/area/maintenance/starboard/central) +"tSE" = ( +/turf/open/floor/plasteel/stairs/old{ + dir = 1 + }, +/area/commons/fitness/recreation) +"tSF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tSJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tSL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison/upper) +"tSM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tSN" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"tSQ" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tSS" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tSW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command) +"tSX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"tSZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tTh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port) +"tTj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"tTk" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"tTl" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"tTs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"tTw" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"tTK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"tTL" = ( +/obj/item/roller, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"tTP" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 8; + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"tTQ" = ( +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/medical/surgery) +"tTS" = ( +/obj/effect/landmark/start/depsec/engineering, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"tTZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"tUc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tUm" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tUn" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"tUo" = ( +/obj/structure/lattice, +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"tUy" = ( +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tUL" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"tUQ" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tUW" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/command/gateway) +"tUY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"tVh" = ( +/obj/structure/shuttle/engine/router, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"tVk" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"tVm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"tVn" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/camera/motion{ + c_tag = "Armoury - Exterior" + }, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"tVq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/lobby) +"tVC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"tVF" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"tVG" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"tVI" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"tVM" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"tWa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/evidence, +/turf/open/floor/plating, +/area/maintenance/department/science) +"tWd" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"tWk" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"tWo" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tWt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/airlock_painter, +/obj/item/toner/large, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = -13 + }, +/obj/item/assembly/timer{ + pixel_x = 7; + pixel_y = -13 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"tWv" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"tWK" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"tWP" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/maintenance/port) +"tWQ" = ( +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/status_display/supply{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"tWZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"tXd" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/medical/psychology) +"tXe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"tXi" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"tXk" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"tXo" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/service/library) +"tXq" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tXs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/openspace, +/area/maintenance/department/engine) +"tXt" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tXv" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/item/clipboard, +/obj/item/toy/figure/geneticist, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"tXw" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tXx" = ( +/obj/structure/table/wood/fancy/cyan, +/obj/item/storage/photo_album{ + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command) +"tXz" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"tXF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"tXH" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"tXJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"tXN" = ( +/turf/closed/wall/rust, +/area/service/library/abandoned) +"tXS" = ( +/obj/structure/falsewall/wood, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"tXY" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tYg" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"tYj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"tYk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"tYl" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/medical/medbay/lobby) +"tYp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"tYx" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"tYB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"tYD" = ( +/obj/machinery/camera{ + c_tag = " Prison - Pool"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison/workout) +"tYN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tYO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"tYQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"tYS" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/service/abandoned_gambling_den/secondary) +"tYU" = ( +/turf/closed/wall, +/area/cargo/qm) +"tYX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/medical/psychology) +"tYY" = ( +/obj/machinery/mechpad, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"tZe" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"tZi" = ( +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"tZk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"tZp" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"tZq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"tZv" = ( +/obj/machinery/conveyor{ + id = "robo1" + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"tZB" = ( +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/cytology) +"tZC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/five, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"tZI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"tZJ" = ( +/obj/item/shard, +/obj/effect/decal/cleanable/glass, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"tZK" = ( +/obj/structure/girder, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"tZM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/bombcloset, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/science/explab) +"tZO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/engine) +"tZP" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/freezer, +/area/security/prison/workout) +"tZQ" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/security/range) +"tZV" = ( +/obj/structure/chair/wood/wings, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"tZY" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"uag" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uak" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"ual" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table{ + name = "Drugs Dealer" + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"uao" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uas" = ( +/obj/structure/closet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uau" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uaB" = ( +/obj/structure/table, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port) +"uaD" = ( +/obj/machinery/door/airlock{ + name = "Information Kiosk" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"uaG" = ( +/turf/closed/wall/r_wall, +/area/science/test_area) +"uaH" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"uaK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/extinguisher{ + pixel_y = 3 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"uaO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/central) +"uaR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"uaS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"uaU" = ( +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ubc" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 13; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/toy/figure/borg{ + pixel_x = 13; + pixel_y = 2 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"ubd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/commons/fitness/recreation) +"ubf" = ( +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"ubg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"ubl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"ubm" = ( +/obj/structure/table, +/obj/item/toy/gun{ + pixel_y = 5 + }, +/obj/item/toy/cards/deck, +/obj/effect/landmark/event_spawn, +/turf/open/floor/glass, +/area/commons/dorms) +"ubq" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"ubs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"ubt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Head Of Security's Quarters"; + req_access_txt = "58" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ubz" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ubE" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/item/wrench, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ubG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"ubS" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ubU" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"ubX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/stairs, +/area/maintenance/fore/upper) +"ubY" = ( +/obj/structure/chair/plastic, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Bridge Fore"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uca" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/miner, +/obj/item/storage/backpack/satchel/explorer, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"ucb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"ucd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ucf" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uci" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/central) +"ucj" = ( +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"ucn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ucs" = ( +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"ucA" = ( +/obj/structure/closet/secure_closet/brig, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ucG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ucH" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"ucI" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Medbay" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/medical/medbay/central) +"ucQ" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/sign/directions/science{ + pixel_y = -3 + }, +/turf/closed/wall, +/area/hallway/primary/upper) +"ucX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"udb" = ( +/obj/machinery/computer/launchpad{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"udc" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"udd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"udf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"udh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/secondary/command) +"udj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"udn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"udA" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"udE" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"udJ" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"udL" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"udM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Gamer Lair"; + req_one_access_txt = "12;27" + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/maintenance/fore/upper) +"udW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"udZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uec" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ued" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"uee" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"uef" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"uel" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uem" = ( +/turf/closed/wall, +/area/command/heads_quarters/captain) +"uen" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/storage) +"ues" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8; + pixel_x = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/commons/fitness) +"ueu" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uev" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"uex" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ueA" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"ueK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ueN" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ueP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ueQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ueT" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/maintenance/port) +"ueZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/command/bridge) +"ufa" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Luggagebelt" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint) +"ufe" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"ufm" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"ufo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"ufp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"ufu" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ufB" = ( +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ufD" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/sign/departments/lawyer{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/hallway/primary/central) +"ufF" = ( +/turf/open/floor/plasteel/freezer, +/area/security/prison/workout) +"ufG" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"ufJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"ufP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"ufQ" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"ufV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ugn" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/window, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"ugu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"ugw" = ( +/obj/machinery/button/curtain{ + id = "prisoncell7"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"ugx" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"ugy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ugA" = ( +/turf/closed/wall/r_wall, +/area/service/hydroponics/upper) +"ugF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/locker) +"ugG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ugK" = ( +/obj/machinery/vending/coffee, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ugM" = ( +/obj/structure/closet/crate/wooden, +/obj/effect/decal/cleanable/dirt, +/obj/item/book/codex_gigas, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"ugT" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/broken/directional/south, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ugX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uhb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uhc" = ( +/obj/structure/rack, +/obj/item/grenade/smokebomb{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/grenade/smokebomb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"uhd" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/firealarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"uhf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uhg" = ( +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"uhh" = ( +/obj/structure/chair, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera{ + c_tag = "Medbay - Surgery observation"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"uhl" = ( +/obj/effect/turf_decal/trimline/red/filled{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uhF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"uhH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"uhM" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"uhN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"uhP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"uhT" = ( +/obj/structure/table, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uic" = ( +/obj/machinery/conveyor{ + id = "mining_internal" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"uif" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/tcommsat/computer) +"uii" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"uik" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uis" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/machinery/camera{ + c_tag = "Engineering - Fore Central"; + name = "engineering camera" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uit" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/explab) +"uiu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uiw" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror/directional/north{ + pixel_y = 33 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/hos) +"uiz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"uiD" = ( +/obj/machinery/rnd/experimentor, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"uiE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"uiO" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"uiR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uiS" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ujc" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ujh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"ujr" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ujH" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"ujK" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"ujL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"ujM" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"ujN" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"ujP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"uke" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"uki" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"ukn" = ( +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"ukr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"uks" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side, +/area/science) +"ukx" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/cytology) +"uky" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/turf/open/floor/wood, +/area/service/library) +"ukP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ukR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ukS" = ( +/obj/structure/closet, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ukT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window{ + dir = 8; + name = "Law Desk"; + req_access_txt = "38" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/obj/item/folder{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"ukY" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ulh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Controll Room"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ulk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Blueshield's Equipment Room"; + req_access_txt = "20" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command) +"ulm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"uln" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"ulu" = ( +/obj/structure/closet/secure_closet/chemical{ + anchored = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"ulw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/starboard/central) +"uly" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ulD" = ( +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"ulG" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"ulK" = ( +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ulR" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"umb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/hallway/secondary/command) +"ume" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/exit) +"umf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"umg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"ump" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"umx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry) +"umB" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/paper/fluff{ + info = "Do NOT build a singularity in this thing, it is meant for teslas only and it is not safe to operate with the intense gravitational distortions and EMPs the singularity makes, if you get your ass sucked in by a T5 black hole don't blame the ship design team."; + name = "Note to Engineering" + }, +/obj/item/paper/fluff{ + info = "This place is linked up to the atmospherics EVA pit below.. could be a good way to set up experimental engines in a relatively safe enviroment."; + name = "Thoughts"; + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"umD" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"umH" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"umI" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"umJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"umO" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"umP" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/railing, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/space) +"umQ" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/stack/license_plates/empty/fifty, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/work) +"umT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"umV" = ( +/obj/structure/closet/cabinet, +/obj/item/storage/book/bible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/maintenance/starboard/fore) +"umW" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"unb" = ( +/obj/machinery/door/window/northleft{ + dir = 8; + req_access_txt = "18" + }, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/ai_monitored/command/storage/eva/upper) +"ung" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"uni" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"unj" = ( +/turf/open/floor/plating/beach/sand, +/area/maintenance/port) +"unk" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"unm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"unn" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"unw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"unx" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uny" = ( +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"unB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"unD" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/t_scanner, +/obj/item/t_scanner, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"unI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/item/wirecutters, +/obj/item/wirecutters, +/obj/item/wirecutters, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"unO" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Arcade Upper"; + dir = 6; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"unQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/service/theater) +"unT" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"unU" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"uoi" = ( +/obj/machinery/computer/secure_data, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet, +/area/security/detectives_office) +"uoq" = ( +/turf/closed/wall, +/area/science/breakroom) +"uor" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"uot" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uov" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"uox" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"uoC" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Office"; + dir = 1; + name = "command camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"uoF" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"uoM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"uoO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard Central"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uoT" = ( +/obj/structure/loom, +/obj/machinery/camera{ + c_tag = " Prison - Workshop"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/work) +"uoW" = ( +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"upb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"upi" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs, +/area/command/heads_quarters/hos) +"upj" = ( +/obj/structure/rack, +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/stack/package_wrap, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/work) +"upm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"upn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"ups" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"upu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"upv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west{ + pixel_x = -27; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/command) +"upy" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"upG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 8; + name = "High-Risk Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/supplied/protect_station, +/obj/item/ai_module/reset/purge{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"upW" = ( +/turf/closed/wall, +/area/security/courtroom) +"upX" = ( +/obj/structure/table/glass, +/turf/open/floor/wood, +/area/service/cafeteria) +"upY" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"uqa" = ( +/obj/machinery/camera{ + c_tag = "Security - Office Fore" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"uql" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uqo" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"uqr" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"uqv" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/clothing/mask/gas, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"uqy" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"uqB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"uqG" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"uqH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"uqL" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uqM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"uqN" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"uqQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uqR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uqS" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Factory"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"uqT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uqU" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"uqV" = ( +/obj/structure/table/greyscale, +/turf/open/floor/mineral/titanium/tiled/white{ + name = "Padded tile" + }, +/area/medical/psychology) +"uqX" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uqY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"ura" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"urd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"urf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"urj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"urk" = ( +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"urn" = ( +/obj/effect/turf_decal/delivery, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"urr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"urt" = ( +/obj/structure/bed/maint, +/obj/machinery/flasher{ + id = "IsolationFlash"; + pixel_x = 22; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = " Prison - Isolation 2"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/light/small, +/turf/open/floor/vault, +/area/security/prison/safe) +"urx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theater"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"ury" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/turf_decal/bot, +/obj/item/trash/can/food/peaches/maint, +/obj/item/trash/can, +/obj/item/trash/pistachios, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"urz" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"urE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"urG" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"urH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/maintenance/radshelter) +"urK" = ( +/obj/structure/loom, +/turf/open/floor/plasteel/dark/side, +/area/security/prison/work) +"urY" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"usb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"use" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"usi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/openspace, +/area/maintenance/port/aft) +"uss" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"usu" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Engineering - Left Controll Deck"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/lobby) +"usv" = ( +/turf/closed/wall, +/area/medical/surgery) +"usx" = ( +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"usy" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"usE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"usG" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) +"usJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/closet/secure_closet/hos, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"usK" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"usR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cnds, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"usS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"usT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"usV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"usY" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"utc" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"uth" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/grunge{ + name = "Spiritual care centre" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"utl" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"utq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"utw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"utJ" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/chapel) +"utR" = ( +/obj/vehicle/ridden/wheelchair, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"utT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"utV" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "crematoriumChapel" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"utW" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"utX" = ( +/obj/structure/table/reinforced, +/obj/item/rcl/pre_loaded, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"uub" = ( +/obj/structure/railing/corner, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"uuk" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/rd) +"uun" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"uuo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"uur" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/upper) +"uus" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/library) +"uuu" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"uuy" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/lobby) +"uuB" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"uuC" = ( +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/obj/item/reagent_containers/glass/beaker/jar{ + name = "Sticky jar" + }, +/obj/item/toy/toy_xeno{ + pixel_x = 3; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/maintenance/fore/upper) +"uuG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"uuK" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno7"; + name = "Creature Cell #7" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"uuN" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"uuS" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"uuU" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"uuY" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma/thirty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"uvf" = ( +/obj/machinery/light, +/mob/living/simple_animal/bot/secbot{ + name = "Officer Tunnel Rat" + }, +/obj/machinery/button/elevator/directional/south{ + id = "publicElevator" + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"uvi" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uvk" = ( +/obj/item/clothing/under/color/grey/ancient, +/turf/open/floor/oldshuttle, +/area/maintenance/fore) +"uvm" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"uvo" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"uvw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"uvx" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"uvH" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"uvM" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"uvN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"uvR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uvT" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/gateway) +"uvW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uwa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Law Junction"; + sortType = 29 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uwd" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"uwg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/engineering/main; + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uwr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/library) +"uws" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"uwz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"uwB" = ( +/obj/item/kirbyplants/random, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Central Hallway - Cafe"; + name = "hallway camera" + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"uwM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"uwR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/moisture_trap, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"uwY" = ( +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"uxb" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"uxc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"uxf" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"uxi" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Mining Office"; + dir = 5; + name = "cargo camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uxj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uxm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"uxo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"uxp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uxs" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat/hallway"; + name = "Chamber Hallway Turret Control"; + pixel_x = -2; + pixel_y = -28; + req_access = null; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"uxt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"uxy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"uxz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/medical1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/sb_med) +"uxA" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"uxB" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"uxE" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/filingcabinet/chestdrawer/wheeled, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"uxG" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"uxH" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"uxQ" = ( +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"uxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"uxT" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"uxV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uyc" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"uye" = ( +/obj/item/stack/sheet/iron/ten, +/obj/item/screwdriver, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"uyf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "42" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"uyv" = ( +/obj/machinery/camera{ + c_tag = " Prison - Locker Room"; + dir = 1; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"uyw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"uyx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"uyz" = ( +/obj/structure/table, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -19; + pixel_y = 5 + }, +/obj/item/paper_bin/bundlenatural{ + pixel_x = -19; + pixel_y = 9 + }, +/obj/item/paperslip{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/dest_tagger{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"uyA" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uyD" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"uyH" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/chair/office/light, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uyI" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/hallway/primary/central) +"uyM" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uyN" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uyQ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"uyR" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"uyT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/checker, +/area/service/kitchen) +"uyW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"uzg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargodeliver"; + name = "delivery conveyor"; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"uzi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"uzr" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"uzv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/cytology) +"uzy" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"uzC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"uzP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"uzV" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"uAa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"uAb" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"uAi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/science/research) +"uAm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"uAn" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"uAB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uAC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/raisins, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uAH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"uAQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uAT" = ( +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"uAU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"uAW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"uBd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"uBg" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uBl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"uBn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"uBr" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uBs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uBB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"uBC" = ( +/obj/structure/table/wood, +/obj/structure/window, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"uBF" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"uBH" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_y = 2 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"uBL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Blueshield's Equipment Room"; + req_access_txt = "20" + }, +/turf/open/floor/wood, +/area/command) +"uBQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uBS" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"uCb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uCc" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Controll Room"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "XenoOffice"; + name = "Xenobiology Controll Room Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"uCf" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uCi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"uCj" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/central) +"uCn" = ( +/turf/closed/wall, +/area/service/kitchen/coldroom) +"uCo" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "Luggagebelt" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"uCp" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"uCs" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uCv" = ( +/obj/machinery/door/poddoor{ + id = "SecJusticeChamber"; + name = "Justice Vent" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/execution/education) +"uCx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname, +/obj/machinery/requests_console/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"uCz" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"uCA" = ( +/obj/structure/flora/ausbushes/grassybush, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"uCB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/miasma_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"uCG" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"uCH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"uCI" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/burner{ + pixel_x = -11 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"uCK" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"uCP" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"uCT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"uCY" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chips, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uDf" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/lawoffice) +"uDg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"uDi" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"uDj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"uDk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/fore) +"uDo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"uDv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uDx" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"uDB" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"uDD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison/shower) +"uDK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uDM" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Research Test Chamber"; + req_access_txt = "7" + }, +/turf/open/floor/engine, +/area/science/explab) +"uDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + dir = 1 + }, +/turf/open/indestructible, +/area/science/test_area) +"uDV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uDW" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"uDY" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/airlock_painter, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"uEa" = ( +/turf/closed/wall, +/area/maintenance/aft) +"uEf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/mapping_helpers/iannewyear, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"uEl" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uEn" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"uEp" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uEv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uEC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"uEE" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main) +"uEI" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uEJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"uEM" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/carpet, +/area/service/library) +"uEQ" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uES" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/turf/open/space/openspace, +/area/engineering/engine_room/external) +"uET" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"uEU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"uEW" = ( +/turf/open/floor/plasteel/stairs/left, +/area/science/research) +"uFa" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"uFc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"uFh" = ( +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"uFm" = ( +/obj/structure/window/plasma/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"uFn" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"uFs" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science/research) +"uFx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/table, +/obj/structure/railing{ + dir = 6 + }, +/obj/item/binoculars, +/turf/open/openspace, +/area/cargo/qm) +"uFB" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uFI" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"uFL" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"uFN" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"uGf" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"uGg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uGi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uGj" = ( +/obj/structure/table/wood, +/obj/structure/window, +/obj/structure/window{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"uGk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uGl" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"uGu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uGv" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port) +"uGw" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uGD" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uGK" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"uGM" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6"; + name = "Cell 6 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uGN" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/hallway/primary/port) +"uGQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"uGV" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"uGX" = ( +/obj/machinery/computer/mecha, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/science/research) +"uGY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"uHg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"uHh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uHm" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"uHq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"uHz" = ( +/obj/structure/curtain/bounty, +/obj/structure/table{ + name = "Arms dealer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"uHA" = ( +/obj/structure/closet, +/obj/item/surgical_drapes, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"uHD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"uHE" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/stairs, +/area/ai_monitored/command/storage/eva) +"uHG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"uHI" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"uHO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uHT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"uHX" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"uIc" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics/upper) +"uIe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"uIh" = ( +/obj/machinery/ticket_machine/directional/north, +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"uIk" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"uIt" = ( +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "AI Satellite - Transit Tube"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"uIv" = ( +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/wood, +/area/service/bar/atrium) +"uIx" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Terrace"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"uIC" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"uIE" = ( +/obj/structure/lattice, +/obj/machinery/light/floor, +/turf/open/openspace, +/area/maintenance/starboard/central) +"uIS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/dinnerware, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"uIT" = ( +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/floor, +/turf/open/floor/mineral/gold, +/area/commons/fitness/recreation) +"uIU" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"uIW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"uJb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"uJd" = ( +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/server) +"uJh" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/department/medical/central) +"uJi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"uJj" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasma/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uJk" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"uJl" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"uJn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"uJq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"uJs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uJu" = ( +/obj/structure/table, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/secateurs, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"uJC" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/command/heads_quarters/hos) +"uJD" = ( +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"uJE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uJF" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"uJI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uJM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/primary) +"uJQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/item/supplypod_beacon, +/turf/open/floor/engine, +/area/cargo/office) +"uJS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"uJT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"uJV" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"uJW" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/command) +"uJZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/science/mixing) +"uKb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uKc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"uKk" = ( +/obj/structure/window/reinforced, +/obj/structure/bed{ + pixel_y = 8 + }, +/obj/item/bedsheet{ + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uKl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"uKm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"uKp" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/security/courtroom) +"uKt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"uKu" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/sign/departments/psychology{ + pixel_x = -31 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uKy" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"uKz" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uKC" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uKD" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/medical/exam_room) +"uKM" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uKP" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uKS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"uKU" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"uKZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uLc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/port/aft) +"uLh" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plating, +/area/maintenance/port) +"uLk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"uLl" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"uLu" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/item/pai_card, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"uLB" = ( +/turf/closed/wall, +/area/security/detectives_office) +"uLI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uLM" = ( +/obj/effect/landmark/start/librarian, +/turf/open/floor/wood, +/area/service/library/artgallery) +"uLP" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"uLU" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uMd" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"uMe" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uMg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uMh" = ( +/turf/closed/wall/r_wall, +/area/service/library/abandoned) +"uMi" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/maintenance/fore/secondary) +"uMq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uMt" = ( +/turf/closed/wall, +/area/maintenance/space_hut/observatory) +"uMv" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"uMx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 7 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"uMJ" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"uMO" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"uMU" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutter" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"uMV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"uMW" = ( +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"uMZ" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"uNa" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/miningdock) +"uNb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"uNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"uNe" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 8 + }, +/area/engineering/atmospherics_engine) +"uNg" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/gun/energy/laser/practice, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/range) +"uNi" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"uNo" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/cargo/miningdock) +"uNp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"uNt" = ( +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library/lounge) +"uNv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"uNB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"uNE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"uNH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"uNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"uNK" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/engineering/supermatter) +"uNO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"uNX" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"uOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uOh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uOj" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"uOt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"uOu" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/camera, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"uOy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/carpet, +/area/maintenance/starboard/fore) +"uOB" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"uOJ" = ( +/obj/effect/turf_decal/siding/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"uOP" = ( +/turf/open/floor/plasteel, +/area/security/prison/shower) +"uOR" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uOW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uOZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uPb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"uPc" = ( +/turf/closed/wall, +/area/maintenance/fore/secondary) +"uPf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uPl" = ( +/obj/machinery/light, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"uPo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"uPs" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"uPx" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = 2 + }, +/obj/structure/sign/directions/supply{ + pixel_y = -4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -10 + }, +/turf/closed/wall, +/area/hallway/primary/central) +"uPy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"uPz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"uPA" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"uPG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/silver{ + name = "Prison Pool" + }, +/turf/open/floor/wood, +/area/security/prison/shower) +"uPM" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uPY" = ( +/obj/structure/table, +/obj/effect/turf_decal/siding/wood, +/obj/item/food/spaghetti/beefnoodle{ + pixel_y = 11 + }, +/obj/item/food/spaghetti/beefnoodle{ + pixel_y = 7 + }, +/obj/item/food/spaghetti/pastatomato{ + pixel_y = 3 + }, +/obj/item/food/spaghetti/pastatomato, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"uQa" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/gateway) +"uQb" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"uQc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"uQd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"uQi" = ( +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"uQk" = ( +/obj/item/spear, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"uQl" = ( +/turf/open/floor/wood, +/area/medical/psychology) +"uQm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"uQo" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uQq" = ( +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup7"; + location = "hallup6" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"uQt" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"uQz" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uQA" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room) +"uQB" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"uQD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uQF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"uQH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uQJ" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"uQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"uQO" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"uQT" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"uQV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"uQZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/main/lockers) +"uRb" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain) +"uRd" = ( +/obj/structure/chair, +/obj/item/radio/intercom/directional/west, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"uRf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"uRh" = ( +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/launchpad, +/turf/open/floor/engine, +/area/science/misc_lab) +"uRt" = ( +/obj/structure/sign/warning/explosives, +/turf/closed/wall/r_wall, +/area/maintenance/department/science/xenobiology) +"uRz" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uRJ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/explab) +"uRM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uRR" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/package_wrap, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"uRS" = ( +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"uRV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/engine_room) +"uRY" = ( +/obj/machinery/door/airlock{ + name = "Bedroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms) +"uSc" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"uSf" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uSj" = ( +/turf/open/floor/plasteel/stairs/right, +/area/engineering/transit_tube) +"uSm" = ( +/obj/structure/table, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"uSn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"uSp" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_x = -32 + }, +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Cell 6"; + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"uSr" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/range) +"uSu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/commissary/second) +"uSz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/dorms) +"uSF" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"uSO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uSQ" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 4; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"uSU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uSZ" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"uTc" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Interior Door"; + req_access_txt = "38" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"uTh" = ( +/obj/structure/table/wood, +/obj/item/keycard/library, +/obj/item/photo/old{ + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet, +/area/maintenance/starboard/fore) +"uTq" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"uTr" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/folder/blue{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/folder/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"uTt" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Locker Room"; + req_access_txt = "32" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"uTy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/fitness) +"uTE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uTG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"uTI" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"uTN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/computer) +"uTU" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/command/heads_quarters/captain) +"uTV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"uTY" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/wood{ + layer = 2.8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"uTZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"uUb" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"uUc" = ( +/obj/structure/lattice/catwalk, +/obj/item/wrench, +/turf/open/openspace, +/area/maintenance/starboard/central) +"uUj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/chips, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uUn" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den/secondary) +"uUv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uUD" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"uUL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit/departure_lounge) +"uUP" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "Output Valve" + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"uUQ" = ( +/obj/machinery/button/door{ + id = "ArrivalsKitchen"; + name = "Shutters controll"; + pixel_x = -25 + }, +/obj/machinery/griddle, +/obj/machinery/camera{ + c_tag = "Arrivals - Snackbar"; + dir = 4; + name = "arrivals camera" + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"uVb" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"uVc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uVg" = ( +/turf/open/floor/wood, +/area/security/prison/workout) +"uVm" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"uVo" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/library/abandoned) +"uVv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uVA" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"uVC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"uVF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"uVO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uVV" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"uVW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"uVX" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uVZ" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/electronics/apc, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"uWc" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"uWh" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/closet/secure_closet/chief_medical, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"uWi" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"uWA" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/service/kitchen) +"uWC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"uWD" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uWL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uWQ" = ( +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/command) +"uWS" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/service/library/printer) +"uWV" = ( +/obj/structure/chair/comfy{ + color = "#596479"; + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"uXi" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"uXm" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"uXn" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood/parquet, +/area/service/theater) +"uXt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"uXu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"uXy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"uXA" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"uXE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Plasma to Pure" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"uXF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"uXG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"uXM" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/hallway/primary/port) +"uXO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"uXS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Atmospherics - Lower Central"; + dir = 8; + name = "atmospherics camera" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"uXT" = ( +/obj/structure/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 4 + }, +/obj/item/storage/box/donkpockets/donkpocketteriyaki{ + pixel_y = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"uXX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/cmo, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"uXY" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"uYd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"uYe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"uYi" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/central) +"uYt" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uYz" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"uYJ" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"uYN" = ( +/turf/open/floor/wood, +/area/service/library/printer) +"uYO" = ( +/obj/item/crowbar, +/obj/effect/turf_decal/trimline/red/filled/warning{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"uYW" = ( +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"uZb" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/science) +"uZd" = ( +/obj/machinery/computer/rdconsole, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uZm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uZn" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/psychology) +"uZw" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychologist's Office"; + req_access_txt = "70" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"uZF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"uZG" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"uZJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/cryo) +"uZK" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"uZN" = ( +/obj/machinery/door/airlock/grunge{ + name = "Funeral Hall" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/chapel) +"uZP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/indestructible, +/area/science/test_area) +"uZV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"uZW" = ( +/obj/machinery/camera{ + c_tag = "Chapel - Funeral Hall"; + dir = 1; + name = "chapel camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"vab" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vad" = ( +/obj/machinery/door/airlock/maintenance, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/fore) +"vae" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"val" = ( +/obj/structure/table/wood, +/obj/item/papercutter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"vaq" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"vas" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/aft) +"vaD" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/hop{ + pixel_y = 3 + }, +/obj/item/toy/figure/ian{ + pixel_x = -3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/assembly/flash/handheld{ + pixel_x = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vaH" = ( +/obj/structure/chair/sofa/corp, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"vaJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vaK" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/hallway/primary/central) +"vaL" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/kitchen/knife{ + pixel_x = -4 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Snackbar"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"vaM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vaP" = ( +/obj/structure/dresser, +/obj/structure/window, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"vaW" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"vbd" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/xenobiology) +"vbf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"vbh" = ( +/obj/effect/turf_decal/siding/purple/end, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"vbi" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"vbm" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vbp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vbq" = ( +/obj/structure/cable, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"vbs" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"vbB" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"vbE" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/machinery/camera{ + c_tag = "Interrogation room"; + dir = 8; + network = list("interrogation") + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"vbJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"vbM" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"vbP" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/junglebush/large{ + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/virology) +"vbR" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/ladder, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"vbZ" = ( +/obj/structure/closet/l3closet/security, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/suit/bio_suit/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/head/bio_hood/security, +/obj/item/clothing/head/bio_hood/security, +/obj/machinery/camera{ + c_tag = "Security - EVA Storage"; + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/lockers) +"vcf" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"vcl" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vcm" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/locker) +"vcr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science) +"vcv" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"vcz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"vcB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/energybar, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vcD" = ( +/obj/structure/falsewall/wood, +/turf/closed/wall/mineral/wood, +/area/maintenance/starboard/fore) +"vcJ" = ( +/turf/open/floor/plasteel, +/area/science/explab) +"vcL" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"vcM" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"vcN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"vcO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vcP" = ( +/turf/open/space/basic, +/area/maintenance/port) +"vcX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"vcZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engineering/supermatter) +"vdh" = ( +/turf/open/floor/plating, +/area/cargo/storage) +"vdv" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"vdB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vdF" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/storage/fancy/candle_box, +/obj/item/clothing/suit/hooded/techpriest, +/obj/item/clothing/head/hooded/techpriest, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"vdG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"vdH" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/aft) +"vdL" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"vdN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"vdO" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"vdS" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"vdW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/bodypart/chest/robot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"ved" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"veg" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/item/soap, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"veh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"vej" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"veu" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"vev" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs, +/area/science/xenobiology) +"vew" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"vex" = ( +/obj/structure/railing/corner, +/turf/open/floor/wood, +/area/security/prison/workout) +"vey" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/dorms) +"vez" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Power Monitoring"; + dir = 4; + name = "engineering camera" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"veG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"veS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"veT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"veZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vfe" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "Psychologistcurtains" + }, +/turf/open/floor/plating, +/area/medical/psychology) +"vfh" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/toolcloset, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vfm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vft" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vfw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vfB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/cargo/qm) +"vfH" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"vfJ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vfP" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"vfS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vfT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vfW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/engine, +/area/science/xenobiology) +"vfY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningdock) +"vge" = ( +/obj/effect/turf_decal/siding/thinplating/light, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Asylum"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/psychology) +"vgl" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vgm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vgn" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"vgr" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"vgv" = ( +/obj/effect/turf_decal/stripes/white/corner, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"vgF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vgJ" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"vgO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/command/heads_quarters/captain) +"vgT" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vhb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"vhe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"vhi" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vhj" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"vhk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"vhn" = ( +/turf/closed/wall, +/area/cargo/miningdock) +"vho" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/wood, +/area/security/courtroom) +"vhA" = ( +/obj/structure/closet/crate/trashcart/filled, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vhD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vhF" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"vhL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "WestLockdown1"; + name = "West Bridge Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"vhM" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vhO" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"vhT" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vhW" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vhZ" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"via" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"vid" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vii" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vij" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"vim" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Lab Maintenance"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"vin" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vio" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"vir" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/south, +/obj/effect/mapping_helpers/dead_body_placer, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"viu" = ( +/turf/open/floor/wood, +/area/service/cafeteria) +"viy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/prison/workout) +"viB" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"viI" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"viM" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port) +"viR" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"viT" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/service/chapel/office) +"viU" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_one_access_txt = "10;24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"viW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"viX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"vja" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vjd" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"vjg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"vjh" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vjs" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vjC" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vjH" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "gatewayblastdoors"; + name = "Seperating Blast Doors" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"vjO" = ( +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"vjP" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vjQ" = ( +/obj/structure/window, +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay - Virology Upper"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"vjS" = ( +/obj/structure/table/wood/fancy/royalblack, +/obj/item/toy/figure/secofficer{ + pixel_x = -9; + pixel_y = 15 + }, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"vjU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vjV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vjZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "toxinsaccess"; + name = "Toxins Storage" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"vka" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vkc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"vke" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/engineer, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vkg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vkr" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"vkt" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/retractor, +/obj/item/hemostat, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"vkw" = ( +/obj/machinery/door/window/brigdoor/security/holding/westright{ + dir = 2; + name = "Holding Cell" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vkz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison/workout) +"vkF" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/atmos_alert, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"vkJ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"vkN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"vkU" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"vkW" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"vla" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"vlb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vlm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vlq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"vls" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/surgicaldrill, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vlt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/lawoffice) +"vlv" = ( +/turf/open/openspace, +/area/maintenance/central) +"vlx" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vly" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"vlB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vlE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"vlF" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vlL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"vlR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"vlT" = ( +/obj/structure/stairs/south, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vlU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vma" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"vmc" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/plasma/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vmd" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side, +/area/science) +"vmi" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"vmk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"vml" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"vmx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"vmE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"vmG" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"vmL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vmP" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"vmS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"vmW" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vmZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"vnc" = ( +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_y = 11 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"vnd" = ( +/obj/structure/table, +/obj/item/circuitboard/machine/paystand, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vne" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"vnk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"vnt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"vnv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vnB" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"vnC" = ( +/obj/effect/landmark/carpspawn, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"vnE" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"vnH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"vnJ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/starboard/central) +"vnM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/noticeboard/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Office"; + name = "engineering camera" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"vnR" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"vnU" = ( +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"vnZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"voc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"vof" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"voh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"vol" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"von" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"voo" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/structure/cable, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"vov" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"vow" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"voy" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"voB" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Port Center"; + dir = 5; + name = "hallway camera" + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"voE" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"voH" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"voL" = ( +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -25; + pixel_y = 24; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"voO" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"voQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"voS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"voW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"voX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"vpc" = ( +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/item/clothing/head/ushanka, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"vpe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"vpj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/camera{ + c_tag = "Kitchen Upper"; + dir = 4; + name = "service camera" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"vpo" = ( +/obj/machinery/button/curtain{ + id = "prisoncell4"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vpr" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"vpx" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"vpz" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"vpC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vpD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"vpE" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vpJ" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"vpL" = ( +/obj/structure/table/wood, +/obj/item/toy/crayon/spraycan{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"vpP" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"vpR" = ( +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vpZ" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vqe" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/obj/item/food/meat/slab, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"vqj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vqk" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/camera{ + c_tag = "Courtroom - Holding area" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"vqn" = ( +/obj/structure/table, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vqo" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"vqp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"vqq" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vqs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"vqt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vqu" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"vqz" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vqD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/execution) +"vqG" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"vqH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "Luggagebelt" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"vqK" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"vqO" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/camera{ + c_tag = "Engineering - Gravgen Airlock"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"vqR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"vqS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vra" = ( +/obj/structure/fence/door{ + req_access_txt = "42" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"vri" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"vrn" = ( +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/port) +"vrt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vrw" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vrx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"vrz" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/morgue) +"vrA" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vrF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vrG" = ( +/obj/structure/sign/departments/court, +/turf/closed/wall, +/area/hallway/primary/central) +"vrI" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vrM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"vrP" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"vrR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/bounty, +/turf/open/floor/plating, +/area/cargo/qm) +"vrU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"vrV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"vrW" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"vrY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vsh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/maintenance/starboard/central) +"vsj" = ( +/obj/effect/turf_decal/delivery, +/obj/item/rack_parts, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vsl" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"vsp" = ( +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"vsy" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/maintenance/port) +"vsC" = ( +/obj/machinery/mineral/unloading_machine{ + input_dir = 4; + output_dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"vsJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"vsM" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Science - Cytology Break Room"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vsO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"vsQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vsS" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"vsX" = ( +/obj/machinery/light/small, +/turf/open/floor/wood, +/area/security/prison/workout) +"vsY" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vtc" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/frame/machine, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"vtj" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vtm" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"vtr" = ( +/obj/structure/chair/comfy/black{ + name = "Quartermaster's throne" + }, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"vtu" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/processor, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"vtw" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vtB" = ( +/obj/machinery/button/door/directional/west{ + id = "chemisttop"; + name = "Pharmacy Top Shutter Control"; + pixel_x = 24; + pixel_y = 6; + req_access_txt = "69" + }, +/obj/machinery/button/door/directional/west{ + id = "chemistbot"; + name = "Pharmacy Bottom Shutter Control"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "69" + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 34 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"vtF" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port) +"vtI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"vtK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"vtL" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/lobby) +"vtP" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"vtU" = ( +/obj/machinery/button/door/directional/west{ + id = "scidoor"; + name = "Science Cell Control"; + normaldoorcontrol = 1; + pixel_y = -7 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"vtX" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "robo1"; + pixel_y = 21 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"vtZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"vud" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vuh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"vuk" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port/central) +"vun" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/main) +"vuo" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Gulag shuttle"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"vur" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"vuz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"vuA" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"vuK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"vuN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"vuR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/medical/medbay/lobby) +"vuU" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vuW" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"vvc" = ( +/turf/open/space/openspace, +/area/maintenance/port/aft) +"vvd" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port to Filter" + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vvm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"vvw" = ( +/turf/closed/wall, +/area/security/prison/safe) +"vvz" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vvD" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"vvM" = ( +/obj/machinery/door/airlock/engineering{ + name = "Security Power Substation"; + req_access_txt = null; + req_one_access_txt = "11;63" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vvR" = ( +/obj/item/circuitboard/machine/chem_dispenser/mutagensaltpeter, +/obj/structure/closet/crate/engineering{ + name = "Prototype Botanical Plant Nutrient Dispenser" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vvS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"vvY" = ( +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_interior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = 29; + pixel_y = -25; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vwb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/cargo/qm) +"vwf" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"vwh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vwl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"vwo" = ( +/obj/structure/railing, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vws" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"vww" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"vwx" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/item/toy/plush/nukeplushie{ + name = "Lasertag Red Flag" + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vwL" = ( +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"vwO" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"vwP" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"vwS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"vwT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"vwU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"vwX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vxh" = ( +/obj/structure/rack, +/obj/item/fuel_pellet, +/obj/item/fuel_pellet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"vxk" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/cargo/warehouse) +"vxm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vxn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"vxo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Hallway Maintenance Hatch"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"vxp" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/supermatter) +"vxD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"vxI" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vxM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"vxS" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vxT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Maint Kicks" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Clothingstore"; + name = "Clothing store shutters" + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"vxX" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"vyb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vyh" = ( +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"vyj" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/commons/lounge) +"vyq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"vys" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vyt" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/central) +"vyu" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"vyy" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vyF" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"vyG" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"vyH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vyN" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"vyO" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vza" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"vze" = ( +/obj/machinery/door/poddoor/preopen{ + name = "Retrograde Thruster blast door" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vzg" = ( +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"vzj" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"vzn" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution) +"vzp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vzw" = ( +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/obj/item/gps, +/obj/item/gps, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"vzy" = ( +/obj/item/trash/can, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vzB" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"vzE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"vzG" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/miningdock) +"vzI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"vzM" = ( +/obj/structure/bed/maint, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vzV" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"vzZ" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"vAf" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"vAo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vAr" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"vAt" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"vAu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"vAz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"vAG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vAH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"vAV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/chair/sofa/left{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"vAY" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/wirecutters, +/obj/item/shovel/spade, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/crowbar/large, +/obj/item/screwdriver, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"vBc" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"vBd" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/trash/waffles, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"vBh" = ( +/obj/machinery/door/airlock/command{ + name = "Telescience Supply Storage"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vBi" = ( +/obj/machinery/atmospherics/pipe/multiz/general{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vBo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/door/poddoor/preopen{ + id = "XenoOffice"; + name = "Xenobiology Lockdown Blast Doors" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"vBr" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/maintenance/port) +"vBs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"vBt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vBF" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"vBG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vBM" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/holosign_creator/robot_seat/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"vBS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vBT" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/engineering/supermatter) +"vBW" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/dorms) +"vBY" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin/carbon, +/obj/item/pen/fountain, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"vCb" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/commons/dorms) +"vCc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"vCd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"vCm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"vCr" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"vCu" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table/wood/fancy/black, +/obj/item/reagent_containers/food/drinks/bottle/trappist{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/bottle/tequila{ + pixel_x = -12; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/grappa{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/service/bar) +"vCv" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vCA" = ( +/obj/structure/table, +/obj/item/clothing/head/helmet/gladiator, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"vCE" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_room) +"vCI" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"vCL" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vCO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/port) +"vCT" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"vCY" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Controll Room"; + req_one_access_txt = "10;24" + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"vDa" = ( +/obj/structure/rack, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"vDc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"vDg" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 8 + }, +/area/maintenance/radshelter) +"vDh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/command/bridge) +"vDj" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"vDl" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/tank_dispenser, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"vDm" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"vDp" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"vDt" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/lobby) +"vDw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup20"; + location = "hallup19" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vDz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"vDB" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"vDC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"vDD" = ( +/obj/structure/window, +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"vDJ" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel, +/area/medical/break_room) +"vDM" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/royalblack, +/area/service/chapel/main) +"vDN" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vDO" = ( +/turf/open/floor/plasteel, +/area/maintenance/port) +"vDR" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Medbay Junction"; + sortType = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vDS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vDX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vDZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/chapel) +"vEa" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"vEb" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/locker) +"vEc" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"vEe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"vEf" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"vEg" = ( +/obj/item/stack/sheet/cardboard, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"vEh" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"vEj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs/auxiliary) +"vEk" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vEl" = ( +/obj/structure/window, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/white, +/area/maintenance/fore) +"vEn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/medical{ + name = "Psychology"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"vEo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"vEs" = ( +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry"; + name = "Free Acces Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"vEv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"vEw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"vEx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"vEA" = ( +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"vEB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vEC" = ( +/obj/structure/fence{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"vEF" = ( +/obj/machinery/button/curtain{ + id = "prisoncell3"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vEL" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"vEN" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vEQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"vER" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/light_switch/directional/south{ + pixel_y = -37 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vEW" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vFd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Fore Port"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vFk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/library/abandoned) +"vFm" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vFp" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/hallway/primary/central) +"vFr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"vFt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"vFu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vFB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell3"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"vFF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vFI" = ( +/obj/effect/turf_decal/bot_red, +/obj/structure/cable, +/obj/machinery/light/floor, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"vFP" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"vFQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"vFS" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"vFX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vFY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vGc" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"vGf" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vGg" = ( +/turf/open/floor/plating, +/area/science/research/abandoned) +"vGj" = ( +/obj/structure/chair, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"vGm" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"vGr" = ( +/obj/structure/fluff/big_chain, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"vGs" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit/departure_lounge) +"vGt" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"vGv" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"vGw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics) +"vGy" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"vGA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"vGD" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vGH" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/bluespace, +/area/engineering/atmos) +"vGJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"vGS" = ( +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vGX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/command/gateway) +"vGY" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/clothing/mask/gas/explorer, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"vHa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/obj/machinery/conveyor{ + dir = 1; + id = "Luggagebelt" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"vHb" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"vHe" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vHk" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"vHl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/mixing) +"vHm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisoncell6"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"vHn" = ( +/obj/structure/sign/warning/coldtemp, +/turf/closed/wall, +/area/science/xenobiology) +"vHp" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000" + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vHs" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vHt" = ( +/obj/item/trash/syndi_cakes, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vHu" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder/blue, +/obj/item/stamp/denied, +/obj/item/stamp, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"vHC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"vHI" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/grass, +/area/service/cafeteria) +"vHL" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"vHM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vHQ" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vHV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/fore) +"vIa" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vIb" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"vIf" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vIg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vIn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain{ + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/lobby) +"vIq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"vIs" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vIv" = ( +/obj/effect/decal/cleanable/garbage, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"vIF" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vIG" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/trash/candy, +/turf/open/floor/plating, +/area/cargo/storage) +"vIN" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Telescience"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"vIO" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"vIU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/cargo/storage) +"vIW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vIZ" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/toilet{ + pixel_y = 16 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vJd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/toolcloset, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vJf" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vJh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vJi" = ( +/obj/structure/chair/plastic{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"vJo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vJt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vJx" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/newspaper, +/turf/open/floor/carpet, +/area/commons/fitness/recreation) +"vJy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/newscaster/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"vJJ" = ( +/obj/structure/dresser, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/commons/dorms) +"vJN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/main) +"vJP" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/captain/private) +"vJS" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"vJU" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "mining_internal" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"vKe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vKg" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"vKk" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Arcade Lower"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"vKq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"vKt" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -7 + }, +/obj/structure/mirror{ + pixel_x = -27 + }, +/obj/machinery/light/small/directional/west{ + pixel_y = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"vKz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"vKB" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"vKC" = ( +/obj/structure/table, +/obj/item/candle{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/item/clothing/mask/cigarette/syndicate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vKI" = ( +/obj/structure/table/glass, +/obj/item/plate, +/turf/open/floor/wood, +/area/hallway/primary/central) +"vKJ" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/east, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"vKM" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vKT" = ( +/obj/item/rack_parts, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vKV" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vKX" = ( +/obj/machinery/button/curtain{ + id = "prisoncell6"; + pixel_y = 21 + }, +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vKY" = ( +/obj/structure/fermenting_barrel, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vLd" = ( +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/lab) +"vLf" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"vLh" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vLr" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"vLt" = ( +/obj/machinery/disposal/delivery_chute, +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"vLv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vLw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/vehicle/ridden/wheelchair, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"vLA" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"vLG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vLH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"vLM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"vLP" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"vLT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/engineering/atmos/upper) +"vMd" = ( +/obj/structure/sign/poster/official/love_ian{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vMe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice) +"vMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"vMp" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vMw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"vMz" = ( +/obj/structure/sign/poster/official/ian{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vMB" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"vMF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"vMN" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vMP" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vMS" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"vMU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"vMX" = ( +/obj/structure/cable, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"vMZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/space_heater, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"vNe" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/hallway/secondary/construction/engineering) +"vNi" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/freezer, +/area/command/heads_quarters/cmo) +"vNl" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + pixel_x = 25; + pixel_y = -36; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = 25; + pixel_y = -23; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/brig) +"vNn" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/server) +"vNp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"vNw" = ( +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"vNz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vND" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"vNE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"vNF" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"vNG" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/sink/directional/west, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"vNH" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"vNK" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"vNL" = ( +/obj/machinery/door/airlock/research{ + name = "Bomb Assembly"; + req_access_txt = "8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/mixing) +"vNO" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"vNR" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/entry) +"vNS" = ( +/obj/structure/curtain/cloth, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"vNV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"vNW" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"vNX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"vNY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"vOe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"vOf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"vOl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"vOn" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/disposal) +"vOu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vOw" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vOy" = ( +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"vOG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/cargo/qm) +"vOM" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"vOP" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"vOW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 8 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"vOX" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"vPe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den/secondary) +"vPi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"vPp" = ( +/turf/closed/wall, +/area/security/brig) +"vPq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"vPt" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"vPv" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Recreation - Ring lobby"; + dir = 8; + name = "recreation camera" + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"vPz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms) +"vPA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/service/theater) +"vPC" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vPF" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"vPH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vPK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"vPN" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/commons/dorms) +"vPV" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "Luggagebelt" + }, +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint) +"vPY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"vQb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"vQg" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"vQk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Starboard"; + dir = 1; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vQp" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"vQt" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/turf/open/floor/carpet, +/area/service/library) +"vQw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vQx" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/cargo/miningdock) +"vQy" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/security/prison/workout) +"vQA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Chapel Morgue"; + name = "chapel camera" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vQF" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/secondary/command) +"vQH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"vQJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vQK" = ( +/obj/structure/table/reinforced, +/obj/item/folder{ + pixel_y = 3 + }, +/obj/item/paper/guides/quantumpad, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/misc_lab) +"vQN" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/visit) +"vQO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"vQQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"vQR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"vQX" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server/upper) +"vRa" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"vRc" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel/office) +"vRe" = ( +/obj/structure/table, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat, +/turf/open/floor/plating, +/area/maintenance/port) +"vRn" = ( +/obj/structure/table, +/obj/item/food/burger, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"vRo" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/security/prison/workout) +"vRq" = ( +/obj/machinery/gibber, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"vRs" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"vRv" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"vRy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"vRA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/main) +"vRD" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"vRG" = ( +/turf/open/floor/plasteel, +/area/commons/locker) +"vRO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plating, +/area/maintenance/fore) +"vRS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot_white, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/suit/chaplainsuit/nun, +/obj/item/clothing/head/nun_hood, +/obj/item/clothing/head/nun_hood, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"vSh" = ( +/obj/structure/filingcabinet, +/turf/open/floor/wood/parquet, +/area/commons/fitness/recreation) +"vSn" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/port) +"vSp" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"vSs" = ( +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/lab) +"vSu" = ( +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/green/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"vSx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"vSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vSK" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"vSO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"vSP" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vSQ" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall/r_wall, +/area/command/heads_quarters) +"vSW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "19" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vSX" = ( +/turf/open/floor/plasteel, +/area/science/storage) +"vSZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"vTc" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/effect/turf_decal/bot, +/obj/item/storage/box/ids, +/obj/item/storage/secure/briefcase, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/customs/auxiliary) +"vTd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain4"; + name = "curtain" + }, +/turf/open/floor/plating, +/area/command) +"vTf" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Aft"; + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"vTh" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vTi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"vTk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vTn" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grass, +/area/service/hydroponics/garden/abandoned) +"vTx" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"vTD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vTG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"vTJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 8; + name = "Access Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Access Queue" + }, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"vTL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"vTO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vTU" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#00ff00"; + name = "green" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"vUa" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/aft) +"vUc" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/grass, +/area/command/heads_quarters/cmo) +"vUd" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"vUg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vUy" = ( +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"vUG" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"vUP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"vUS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vUU" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"vUV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"vUX" = ( +/obj/structure/chair/sofa, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar/atrium) +"vVc" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Hangar - Lower 3"; + dir = 1; + name = "arrivals camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vVh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"vVj" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vVl" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"vVp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/cardboard, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vVt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"vVw" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"vVy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vVz" = ( +/obj/machinery/door/airlock/engineering{ + name = "Power Access Hatch"; + req_access_txt = "11" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"vVE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"vVJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"vVL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vVM" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"vVT" = ( +/obj/structure/toilet{ + pixel_y = 10 + }, +/obj/machinery/button/door/directional/south{ + id = "Toilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"vVU" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"vVV" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/delivery/white, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"vWg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vWk" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"vWl" = ( +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vWn" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vWo" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"vWu" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engineering/supermatter) +"vWz" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"vWC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/supply) +"vWD" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"vWH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vWJ" = ( +/turf/closed/wall, +/area/maintenance/department/electrical) +"vWM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch/directional/south, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"vWO" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vWQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vWS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"vWT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vWX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vXa" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"vXc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"vXj" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"vXl" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/structure/window{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/exam_room) +"vXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vXq" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/lockers) +"vXt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Janitorial Closet"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vXv" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"vYg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes, +/obj/item/gun/energy/laser/practice{ + pixel_y = 5 + }, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"vYk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"vYr" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"vYu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/main/lockers) +"vYy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"vYM" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vYQ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vZc" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"vZd" = ( +/obj/machinery/atmospherics/miner/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"vZh" = ( +/obj/machinery/light/floor, +/obj/structure/industrial_lift, +/turf/open/openspace, +/area/hallway/primary/upper) +"vZs" = ( +/obj/structure/sign/poster/official/bless_this_spess, +/turf/closed/wall, +/area/service/chapel/office) +"vZu" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vZA" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/lab) +"vZC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 6"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"vZD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"vZK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/storage) +"vZM" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/service/hydroponics) +"vZU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vZZ" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"wac" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/entry) +"waj" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"war" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/grass, +/area/command/heads_quarters/captain) +"wau" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wav" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/library/printer) +"way" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"waD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"waG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"waL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"waP" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"waS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"waU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"waV" = ( +/obj/structure/table, +/obj/item/clothing/glasses/blindfold, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"waX" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"wbb" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wbc" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/secondary) +"wbd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/cargo/sorting) +"wbe" = ( +/turf/open/openspace, +/area/hallway/secondary/exit) +"wbf" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wbl" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/stripes, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"wbp" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"wbq" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/noticeboard/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wbs" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"wbv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"wbA" = ( +/obj/machinery/mech_bay_recharge_port, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wbC" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wbI" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wbQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/cans/sixbeer, +/turf/open/openspace, +/area/maintenance/starboard/central) +"wbR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"wbS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"wbT" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wbU" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery A"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"wbW" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fountain/captain{ + pixel_y = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"wcb" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"wce" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"wcf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wcj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"wck" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"wcm" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/camera{ + c_tag = "Hangar - Lower"; + dir = 1; + name = "arrivals camera" + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wco" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"wcp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"wcq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wcr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wct" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/fore/secondary) +"wcu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/upper) +"wcA" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/item/gun/syringe, +/turf/open/floor/plasteel, +/area/medical/storage) +"wcB" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"wcH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"wcJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wcM" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wcQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"wcR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig/upper) +"wcS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wcW" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 7 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wda" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"wdc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wdi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to Distro" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wdj" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wdk" = ( +/obj/machinery/door/window/brigdoor/northright{ + dir = 4; + id = "Cell 6"; + name = "Cell 6"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"wdl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wds" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wdu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"wdy" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/botanist, +/obj/machinery/requests_console/directional/east{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console"; + pixel_x = 0; + pixel_y = -33 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wdz" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wdA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wdF" = ( +/obj/machinery/button/door/atmos_test_room_mainvent_2{ + pixel_y = -25 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wdH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"wdK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wdL" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/central) +"wdZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wed" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/camera, +/obj/item/camera_film, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"wef" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"wel" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"weo" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"wes" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wew" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Dorm Junction"; + sortType = 26 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wey" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wez" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"weA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"weE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"weJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"weL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/stairs/medium, +/area/commons/dorms) +"weO" = ( +/turf/open/floor/circuit, +/area/maintenance/fore/upper) +"weS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"weU" = ( +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/service/chapel) +"wfe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wfg" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"wfj" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"wfo" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/lounge) +"wfp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"wfw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wfy" = ( +/obj/structure/table, +/obj/item/food/pizzaslice/donkpocket{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"wfA" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree{ + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"wfC" = ( +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"wfE" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wfG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"wfJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"wfM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wfP" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"wfS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wfT" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/item/stack/sheet/plasmarglass{ + amount = 20 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wfX" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"wfZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"wgf" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/hallway) +"wgj" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"wgk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"wgm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"wgr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/main/lockers) +"wgs" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"wgw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"wgy" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"wgC" = ( +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"wgI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"wgL" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wgM" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"wgS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wgT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"wgV" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wgZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/open/space/openspace, +/area/space) +"whg" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"whi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"whq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/central) +"whu" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"whw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science) +"whx" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/lone, +/area/service/library/lounge) +"whA" = ( +/obj/effect/decal/cleanable/oil/streak, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"whE" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/scientist, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"whH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/service/bar) +"whI" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"whL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall2"; + location = "hall1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"whM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port) +"whQ" = ( +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/closet/secure_closet/cytology, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"whS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"whX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/mining, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"wic" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"wik" = ( +/turf/closed/wall/rust, +/area/maintenance/department/eva) +"wil" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/white/box, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/cytology) +"wio" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wis" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wit" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wiu" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"wiv" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/security/detectives_office) +"wix" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer"; + req_access_txt = "2" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/upper) +"wiA" = ( +/obj/structure/rack, +/obj/item/storage/cans/sixbeer, +/obj/item/storage/cans/sixbeer, +/obj/item/storage/cans/sixsoda, +/obj/item/storage/cans/sixsoda, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/entry) +"wiB" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wiI" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wiK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"wiL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wiP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + id = "engcell"; + name = "Engineering Cell"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"wiW" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wiZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Upper Port"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"wja" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wje" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/central) +"wjh" = ( +/turf/open/floor/plasteel/dark, +/area/security/main) +"wjy" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"wjz" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"wjL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"wjQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wjS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wjU" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wjV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"wjY" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup11"; + location = "hallup10" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/command) +"wkf" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wkl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/command/heads_quarters/ce) +"wku" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"wky" = ( +/obj/machinery/shower{ + pixel_y = 17 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"wkH" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/lab) +"wkM" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"wkT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/lawoffice) +"wkX" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"wld" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"wlf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"wlj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wlm" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"wlp" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wlr" = ( +/obj/structure/closet/crate/medical, +/obj/effect/turf_decal/bot, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wlu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"wlw" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"wlB" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"wlD" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"wlF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wlH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"wlJ" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wlM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"wlR" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "Luggagebelt" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"wlV" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/old{ + dir = 1; + initial_gas_mix = "n2=100;TEMP=80" + }, +/area/tcommsat/server) +"wlZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/upper) +"wmc" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wmh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wmk" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/statue/sandstone/venus{ + layer = 3.1 + }, +/turf/open/floor/grass, +/area/hallway/primary/aft) +"wmo" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"wmt" = ( +/obj/structure/shuttle/engine/huge, +/turf/open/space/basic, +/area/maintenance/starboard) +"wmu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wmw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/turf/open/floor/plating, +/area/medical/storage) +"wmF" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wmG" = ( +/obj/structure/table/wood/fancy, +/obj/item/reagent_containers/glass/bowl{ + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"wmH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wmM" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wmN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/port) +"wmP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wmS" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"wnf" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"wnj" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet, +/area/medical/psychology) +"wnm" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"wnw" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wny" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs/auxiliary) +"wnB" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"wnC" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"wnJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"wnK" = ( +/mob/living/simple_animal/hostile/retaliate/spaceman, +/turf/open/floor/oldshuttle, +/area/maintenance/fore) +"wnL" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wnO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"wnQ" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/secondary/construction/engineering) +"wnZ" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"woa" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"wob" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"woe" = ( +/obj/item/cigbutt, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"woj" = ( +/obj/structure/dresser, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"wol" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"won" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/fore) +"woq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"woz" = ( +/obj/machinery/light/directional/south, +/turf/open/openspace, +/area/hallway/primary/upper) +"woD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"woE" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"woF" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"woL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"woO" = ( +/obj/machinery/door/airlock/maintenance, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"woP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"woR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"woT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"woV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/medical/psychology) +"wpa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wpb" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"wpe" = ( +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"wpj" = ( +/turf/closed/wall, +/area/maintenance/fore/upper) +"wpk" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"wpn" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"wpo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"wpp" = ( +/obj/machinery/button/door{ + id = "NarcoticsV"; + name = "Shutter Controll"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wpq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wpy" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/commons/fitness/recreation) +"wpz" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/fore) +"wpC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "HoS Junction"; + sortType = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wpH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"wpI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"wpN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wpQ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"wpW" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab) +"wqa" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"wqb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port) +"wqc" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wqi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wqn" = ( +/obj/structure/rack, +/obj/item/chair/plastic{ + pixel_y = 10 + }, +/obj/item/chair/plastic{ + pixel_y = 12 + }, +/obj/item/chair/plastic{ + pixel_y = 14 + }, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"wqx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/break_room) +"wqF" = ( +/obj/structure/table/wood/fancy/green, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/security/courtroom) +"wqH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"wqI" = ( +/obj/structure/window/reinforced, +/obj/structure/bed{ + pixel_y = 8 + }, +/obj/item/bedsheet{ + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wqJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wqN" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"wqS" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/cargo/qm) +"wqU" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/pet/cat, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"wqW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wrh" = ( +/obj/structure/closet/crate, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"wrj" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/maintenance/port) +"wrt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wrw" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"wry" = ( +/obj/structure/spirit_board{ + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"wrz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"wrA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"wrD" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/smartfridge/disks, +/obj/machinery/requests_console/directional/south{ + department = "Genetics"; + name = "Genetics Requests console"; + pixel_x = -30; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"wrG" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wrK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"wrP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/storage/box/masks{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"wsh" = ( +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"wsj" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"wsm" = ( +/obj/structure/table/wood, +/obj/structure/closet/mini_fridge{ + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wsq" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"wss" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wsw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/central) +"wsz" = ( +/mob/living/simple_animal/drone/snowflake/bardrone{ + desc = "A barkeeping drone, this one is made to serve centrall command staff only."; + name = "Personal Bardrone" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"wsB" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"wsC" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/liberty, +/turf/open/floor/grass, +/area/maintenance/fore) +"wsE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"wsG" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/upper) +"wsH" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"wsO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/broken, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"wsR" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wsW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"wta" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/main) +"wtd" = ( +/obj/structure/closet/secure_closet{ + req_access_txt = "63" + }, +/obj/item/clothing/under/rank/security/officer/blueshirt, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest/blueshirt, +/obj/item/clothing/head/helmet/blueshirt, +/obj/item/storage/belt/security, +/obj/item/reagent_containers/spray/pepper, +/obj/item/assembly/flash, +/obj/item/restraints/handcuffs, +/obj/item/clothing/under/rank/cargo/tech, +/obj/item/clothing/under/rank/cargo/tech/skirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/supply) +"wtg" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wti" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Bar - Aft 2"; + dir = 8; + name = "service camera" + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"wtj" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "CMO's Junction"; + sortType = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wtk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"wtl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"wtm" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wtq" = ( +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"wtD" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"wtM" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fore) +"wtN" = ( +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/heart, +/obj/item/organ/heart, +/obj/item/organ/liver, +/obj/item/organ/liver, +/obj/item/organ/stomach, +/obj/item/organ/stomach, +/obj/item/organ/lungs, +/obj/item/organ/lungs, +/obj/item/organ/eyes, +/obj/item/organ/eyes, +/obj/item/organ/tongue, +/obj/item/organ/tongue, +/obj/item/organ/ears, +/obj/item/organ/ears, +/turf/open/floor/plasteel/freezer, +/area/maintenance/starboard/fore) +"wtT" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wtV" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wtY" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wub" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"wuc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"wud" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"wuf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"wum" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wus" = ( +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"wuu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"wuz" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Starboard Center"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/wood, +/area/hallway/primary/port) +"wuA" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/item/clothing/under/color/pink{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/blue{ + pixel_y = 7 + }, +/obj/item/clothing/under/color/green{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/jumpskirt/pink{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/blue{ + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/green{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"wuD" = ( +/obj/structure/table/glass, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"wuJ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"wuK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"wuN" = ( +/obj/structure/chair/wood{ + dir = 8; + name = "Defense" + }, +/turf/open/floor/wood, +/area/security/courtroom) +"wuP" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wuS" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"wuU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"wuV" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/cafeteria) +"wvd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"wvf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wvg" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"wvk" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness) +"wvl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"wvp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore/upper) +"wvq" = ( +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wvu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/dorms) +"wvw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/camera{ + c_tag = "Library Lower 2"; + dir = 1; + name = "library camera" + }, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/service/library) +"wvz" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/structure/window{ + dir = 8; + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"wvA" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"wvB" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wvC" = ( +/obj/structure/closet/crate/maint, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"wvP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer2, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple/layer4, +/turf/open/space/basic, +/area/space/nearstation) +"wvQ" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"wvS" = ( +/obj/structure/table, +/obj/item/circuitboard/computer/operating, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"wvX" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"wwb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"wwh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"wwl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"wwo" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"wwq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wws" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wwv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"www" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wwM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/maintenance/radshelter) +"wwN" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"wwP" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/entry) +"wxa" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"wxb" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wxf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 9; + id = "Luggagebelt" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"wxj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wxl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"wxo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"wxt" = ( +/turf/open/floor/plasteel/stairs/left, +/area/security/prison/upper) +"wxu" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"wxw" = ( +/obj/structure/table, +/obj/item/storage/cans/sixsoda, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"wxz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"wxA" = ( +/obj/machinery/photocopier, +/obj/item/storage/secure/safe/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"wxH" = ( +/obj/structure/chair/plastic, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"wxK" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/upper) +"wxP" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wxT" = ( +/turf/open/floor/plasteel/stairs/left, +/area/maintenance/fore/upper) +"wxV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wxY" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/chapel) +"wye" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Casino" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/service/abandoned_gambling_den) +"wyg" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wyq" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/starboard) +"wyr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/floor, +/turf/open/openspace, +/area/maintenance/starboard/central) +"wyu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"wyR" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/white, +/obj/item/stamp/cmo{ + pixel_y = 5 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"wyS" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"wzf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/soap/deluxe, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -5 + }, +/obj/item/mop, +/obj/item/pushbroom, +/obj/item/storage/bag/trash, +/turf/open/floor/plasteel, +/area/command/heads_quarters) +"wzi" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/chef, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/captain) +"wzk" = ( +/obj/structure/chair/plastic, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wzm" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wzo" = ( +/obj/structure/closet/crate, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice) +"wzr" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"wzv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/port) +"wzw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wzA" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wzB" = ( +/obj/structure/bookcase/random, +/turf/open/floor/carpet, +/area/command/heads_quarters/hop) +"wzD" = ( +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"wzF" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"wzI" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Test Chambers"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wzK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wzM" = ( +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"wzQ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = 8 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = 3 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = -3 + }, +/obj/machinery/newscaster/directional/north, +/obj/item/rcd_upgrade/silo_link, +/obj/item/construction/rcd, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"wzT" = ( +/obj/structure/cable, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"wzY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"wAe" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wAg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/command/bridge) +"wAh" = ( +/obj/structure/table, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/item/assembly/flash/handheld, +/obj/item/radio, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/lockers) +"wAp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wAq" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"wAs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"wAt" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"wAw" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/starboard) +"wAx" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/secondary/exit) +"wAB" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"wAE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"wAQ" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"wAR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wAT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"wAV" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"wAW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/weldingtool/largetank{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"wBe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"wBj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wBk" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wBo" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"wBv" = ( +/obj/structure/table, +/obj/item/stack/medical/suture, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wBw" = ( +/obj/structure/table/wood, +/obj/item/instrument/accordion, +/obj/item/instrument/trumpet, +/obj/item/instrument/trombone, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/lone, +/area/service/abandoned_gambling_den) +"wBy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"wBB" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"wBC" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/library) +"wBD" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wBJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wBL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"wBR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"wBS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"wBT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wBU" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology - Killroom Chamber"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"wBV" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravgen corridor"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/main) +"wBX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wBY" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wCa" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/turf/open/floor/plating, +/area/maintenance/fore) +"wCi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "surgerya"; + name = "Surgery Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"wCk" = ( +/obj/machinery/door/airlock{ + name = "Commentator Studio" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wCn" = ( +/turf/closed/wall, +/area/service/hydroponics/garden) +"wCx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wCA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wCJ" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"wCK" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/clothing/mask/gas/explorer, +/obj/item/clothing/mask/gas/explorer, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"wCL" = ( +/obj/structure/table, +/obj/item/pipe_dispenser, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"wCM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"wDa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"wDd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"wDf" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/wood, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"wDs" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wDF" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"wDG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"wDM" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/science/robotics/mechbay) +"wDN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wDZ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/science/breakroom) +"wEf" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos) +"wEk" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wEz" = ( +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"wEC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"wEQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wER" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/plate, +/obj/item/plate{ + pixel_y = 2 + }, +/obj/item/plate{ + pixel_y = 4 + }, +/obj/item/plate{ + pixel_y = 6 + }, +/obj/item/plate{ + pixel_y = 8 + }, +/obj/item/plate{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"wES" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wFe" = ( +/obj/structure/closet/cardboard, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"wFv" = ( +/obj/machinery/light/directional/west, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wFz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"wFA" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"wFC" = ( +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"wFG" = ( +/obj/structure/cable, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"wFK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wFN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"wFS" = ( +/obj/structure/table, +/obj/item/folder/red, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wFT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"wFU" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/hallway/primary/central) +"wFV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wFW" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/engineering/main) +"wFZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"wGc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wGk" = ( +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"wGm" = ( +/obj/structure/barricade/security, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"wGA" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wGB" = ( +/obj/structure/rack, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Hangar Backroom"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wGG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"wGI" = ( +/obj/structure/barricade/security, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"wGK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"wGR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/robotics, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"wGS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"wHb" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"wHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"wHl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/turf/open/floor/wood, +/area/cargo/qm) +"wHo" = ( +/turf/open/floor/plasteel/white, +/area/science/genetics) +"wHp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/janitorialcart, +/obj/structure/janitorialcart, +/obj/structure/janitorialcart, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/pushbroom, +/obj/item/mop, +/obj/item/mop, +/obj/item/mop, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"wHq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"wHv" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/restrooms) +"wHy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"wHz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wHB" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wHC" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"wHF" = ( +/obj/item/clothing/under/plasmaman{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/plasmaman{ + pixel_y = -7 + }, +/obj/item/clothing/under/plasmaman{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_y = 8 + }, +/obj/item/clothing/head/helmet/space/plasmaman{ + pixel_x = 7; + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/upper) +"wHL" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wHT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wHX" = ( +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"wIi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"wIp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wIq" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"wIs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wIu" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wIx" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = -8 + }, +/obj/item/razor{ + pixel_x = -7 + }, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Quarters"; + name = "command camera" + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"wIy" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"wIN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/cargo/storage) +"wIR" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/hallway/primary/port) +"wIX" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/service/abandoned_gambling_den/secondary) +"wJh" = ( +/turf/open/floor/plasteel/stairs/right{ + dir = 8 + }, +/area/engineering/atmospherics_engine) +"wJi" = ( +/obj/effect/turf_decal/delivery/red, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"wJm" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"wJo" = ( +/obj/machinery/computer/robotics, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"wJp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/folder/yellow, +/obj/item/stamp/denied, +/obj/item/stamp, +/obj/item/stamp/qm, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"wJt" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/ai_monitored/command/storage/eva) +"wJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"wJz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"wJE" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/cargo/office) +"wJL" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"wJM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wJU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"wKe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wKh" = ( +/obj/machinery/door/airlock/hatch{ + name = "Secure Pen"; + req_access_txt = "55" + }, +/turf/open/floor/engine, +/area/science/cytology) +"wKp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wKs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Janitor Junction"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wKw" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/upper) +"wKC" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/command/gateway) +"wKI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"wKL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/engineering/transit_tube) +"wKS" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "cargounload" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wKT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wKW" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library/private) +"wLa" = ( +/obj/machinery/door/poddoor/shutters{ + id = "armory"; + name = "Armoury Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"wLs" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"wLv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wLw" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/kitchen/knife{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/kitchen/rollingpin, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters) +"wLx" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wLy" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"wLB" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"wLC" = ( +/obj/structure/cable, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"wLE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/storage) +"wLN" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/execution) +"wLO" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/chair/stool, +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -8; + pixel_y = 27; + req_access_txt = "12" + }, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = 7; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"wLR" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wLS" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"wLX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wMe" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"wMg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/science) +"wMi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"wMk" = ( +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"wMp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"wMr" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"wMv" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/light/small/broken/directional/north, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wMC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wMD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"wMF" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xenosecure"; + name = "Containment Control"; + pixel_x = -5; + req_access_txt = "55" + }, +/obj/machinery/button/ignition{ + id = "Xenobio"; + pixel_x = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"wMJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wMM" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wMP" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"wMR" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"wMU" = ( +/obj/structure/cable, +/obj/structure/grille/broken, +/obj/structure/barricade/wooden, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/cargo/office) +"wMX" = ( +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wMY" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wNa" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"wNc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"wNd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"wNi" = ( +/obj/structure/transit_tube/curved, +/obj/structure/cable, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"wNj" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wNm" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wNt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/port) +"wNu" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"wNw" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/service/cafeteria) +"wNy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wNA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/maintenance/aft/upper) +"wNI" = ( +/turf/closed/wall/mineral/wood, +/area/maintenance/starboard/fore) +"wNJ" = ( +/obj/item/clothing/under/color/yellow{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/orange{ + pixel_y = 7 + }, +/obj/item/clothing/under/color/red{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/clothing/under/color/jumpskirt/yellow{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/orange{ + pixel_y = -7 + }, +/obj/item/clothing/under/color/jumpskirt/red{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"wNN" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"wNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wNW" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/morgue) +"wNX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wNY" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/stone, +/area/maintenance/fore) +"wNZ" = ( +/turf/closed/wall, +/area/engineering/atmos) +"wOb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wOe" = ( +/obj/structure/rack, +/obj/effect/turf_decal/delivery, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/alt{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/security/armory) +"wOh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"wOi" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 4"; + req_access_txt = "32" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"wOk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wOo" = ( +/obj/machinery/door/airlock{ + name = "Abandoned Arcade" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"wOt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wOw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wOA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"wOB" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"wOC" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 1"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"wOE" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"wOG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "CO2 to Pure" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wOJ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"wOK" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"wOL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"wOT" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Atmospherics - Gear Room"; + dir = 1; + name = "atmospherics camera" + }, +/obj/machinery/light/small, +/obj/machinery/light_switch/directional/south, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wOV" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"wOX" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/matter_bin/adv, +/obj/item/stock_parts/capacitor/adv, +/obj/item/stock_parts/capacitor/adv, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wOZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"wPc" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"wPf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wPv" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"wPy" = ( +/obj/structure/closet/crate, +/obj/item/stack/tile/carpet/fifty, +/obj/item/stack/tile/carpet/black/fifty, +/obj/item/stack/tile/carpet/blue/fifty, +/obj/item/stack/tile/carpet/green/fifty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wPL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"wPN" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"wPO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison/visit) +"wPP" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"wPR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wPS" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/structure/window/reinforced, +/turf/open/floor/wood, +/area/lawoffice) +"wPU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/ce) +"wPW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wQi" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wQk" = ( +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/commons/dorms) +"wQp" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/service/cafeteria) +"wQt" = ( +/turf/open/floor/plasteel, +/area/service/janitor) +"wQu" = ( +/obj/structure/chair{ + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"wQC" = ( +/turf/closed/wall/rust, +/area/science/research/abandoned) +"wQH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wQL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall22" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wQU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wQY" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"wRc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/obj/machinery/flasher/directional/west{ + id = "AI"; + pixel_y = -26 + }, +/obj/structure/cable, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Secondary AI Core Acces Door"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"wRh" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/grass, +/area/commons/lounge) +"wRi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft/upper) +"wRn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/entry) +"wRq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"wRr" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/engine, +/area/science/explab) +"wRt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"wRu" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"wRG" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"wRM" = ( +/obj/structure/showcase/machinery/cloning_pod{ + desc = "An old decommissioned scanner, permanently scuttled."; + icon_state = "scanner"; + name = "decommissioned cloning scanner" + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"wRR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"wRT" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/hourglass{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/stone, +/area/maintenance/starboard/fore) +"wRW" = ( +/obj/effect/landmark/start/exploration, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wRX" = ( +/obj/machinery/door/airlock{ + name = "Chief Medical Officer's Quarters"; + req_access_txt = "40" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters/cmo) +"wRZ" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wSd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/fermenting_barrel, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"wSl" = ( +/obj/structure/closet/wardrobe/pink, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"wSx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/cargo/qm) +"wSy" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 16 + }, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen/fountain{ + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"wSC" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"wSF" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/machinery/newscaster/directional/north{ + pixel_x = -7 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"wSM" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot_white, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"wSO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wSR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"wSU" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"wTf" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wTg" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wTj" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"wTn" = ( +/obj/structure/table/glass, +/obj/item/lazarus_injector, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"wTD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"wTK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wTL" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"wTO" = ( +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/cargo/qm) +"wTQ" = ( +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"wTV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wTW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"wUa" = ( +/turf/open/space/basic, +/area/maintenance/starboard) +"wUf" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"wUn" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/department/medical) +"wUo" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"wUv" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wUw" = ( +/obj/structure/railing, +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"wUx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wUA" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"wUD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/security/detectives_office) +"wUE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/central) +"wUK" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"wUN" = ( +/turf/open/floor/carpet/blue, +/area/maintenance/starboard/aft) +"wUT" = ( +/turf/open/floor/plasteel/stairs/left, +/area/cargo/miningdock) +"wUV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wUZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"wVa" = ( +/obj/structure/window, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/virology) +"wVe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"wVf" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/service/hydroponics/garden) +"wVi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/psychology) +"wVj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"wVs" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot_white, +/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit, +/obj/item/clothing/suit/hooded/chaplainsuit/monkhabit, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wVv" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/ai_monitored/command/storage/eva) +"wVw" = ( +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wVC" = ( +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar/atrium) +"wVF" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fitness Courtyard" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness) +"wVH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/communications, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wVM" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = list(/datum/gas/nitrogen) + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"wVY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wWa" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"wWj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wWl" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet, +/area/security/detectives_office) +"wWn" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/turf/closed/wall, +/area/command/heads_quarters/cmo) +"wWp" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wWq" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"wWu" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/customs/auxiliary) +"wWy" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"wWz" = ( +/obj/machinery/computer/telecomms/monitor{ + network = "tcommsat" + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"wWB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium/red, +/area/science/robotics/lab) +"wWE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel, +/area/engineering/main) +"wWG" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"wWL" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wWR" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"wWU" = ( +/obj/structure/sign/poster/contraband/tools, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"wXc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wXf" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + desc = "Remarkably soft, with plush cozy cushions, premium memory-foam and covered in stain-resistant fabric. Made by Kat-Kea???!"; + dir = 1; + name = "Premium Cozy Chair" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/command/heads_quarters) +"wXi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/range) +"wXk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"wXm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"wXn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"wXs" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"wXz" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/wood, +/area/security/detectives_office) +"wXB" = ( +/turf/closed/wall/rust, +/area/maintenance/department/electrical) +"wXD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wXE" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"wXF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"wXG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"wXI" = ( +/obj/structure/rack, +/obj/structure/window{ + dir = 4 + }, +/obj/item/storage/box/donkpockets{ + pixel_y = 1 + }, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 5 + }, +/obj/item/storage/box/donkpockets/donkpocketspicy{ + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"wXM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal{ + anchored = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"wXR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"wXS" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"wXX" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"wYa" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wYc" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"wYd" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Starboard Bow"; + dir = 5; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wYf" = ( +/obj/machinery/door/airlock/security{ + name = "Jail Cell" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/prison/safe) +"wYg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "Sbay3" + }, +/turf/open/floor/plating, +/area/security/processing) +"wYh" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"wYm" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"wYn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"wYq" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"wYB" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"wYE" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"wYI" = ( +/obj/structure/cable, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/service/chapel/main) +"wYK" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"wYL" = ( +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/machinery/light_switch/directional/south, +/obj/item/reagent_containers/food/drinks/flask, +/obj/structure/table/wood/fancy/royalblue, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/hop) +"wYT" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/rad_collector/anchored, +/turf/open/floor/engine, +/area/engineering/supermatter) +"wYU" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/taperecorder{ + pixel_y = 7 + }, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"wYV" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"wYW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"wZe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/trinary/filter/layer2, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"wZh" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"wZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"wZl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"wZm" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"wZo" = ( +/turf/open/floor/plating, +/area/cargo/miningdock) +"wZp" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"wZs" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"wZu" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = -24; + pixel_y = 24 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"wZv" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wZx" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/clothing/under/rank/security/warden/grey, +/obj/item/gun/energy/laser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/red, +/area/security/warden) +"wZy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/mecha_part_fabricator/engi, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"wZA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/light/floor, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wZH" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"wZJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wZN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wZO" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"wZS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"wZU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"wZW" = ( +/obj/machinery/computer/operating, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"wZX" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wZZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"xaa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"xae" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xai" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/cmo) +"xaj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/starboard/central) +"xak" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xao" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Gulag Processing"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"xap" = ( +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xar" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/chapel) +"xat" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 4; + name = "Chief Engineer's Requests Console"; + pixel_x = -29; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"xau" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"xaA" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"xaF" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"xaG" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"xaJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"xaO" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/command) +"xaQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms) +"xaS" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"xaX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"xaY" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/rock{ + pixel_x = 4; + pixel_y = 10 + }, +/turf/open/floor/grass, +/area/hallway/primary/central) +"xbb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms{ + initial_gas_mix = "o2=22;n2=82;TEMP=293.15" + }, +/area/science/xenobiology) +"xbj" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"xbp" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xbq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"xbr" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/white, +/area/commons/toilet/restrooms) +"xbv" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xbw" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"xbx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/eighties, +/area/maintenance/aft/upper) +"xbB" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"xbJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/science/mixing/chamber) +"xbK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"xbO" = ( +/obj/structure/shuttle/engine/huge, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating/airless, +/area/maintenance/fore/secondary) +"xbT" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/locker) +"xbU" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xbY" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/obj/item/weldingtool/largetank, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xck" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xcn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"xcv" = ( +/obj/machinery/door/airlock/security{ + name = "Jail Cell" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/prison/safe) +"xcx" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"xcy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"xcG" = ( +/obj/structure/table/glass, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"xcH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/pushbroom, +/obj/machinery/firealarm/directional/west{ + pixel_x = -28; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"xcM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"xcS" = ( +/obj/structure/table/glass, +/obj/item/watertank, +/obj/machinery/camera{ + c_tag = "Hydroponics Backroom"; + dir = 4; + name = "service camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xcV" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xdh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"xdi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/junction/yjunction, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xdk" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/maintenance/aft) +"xdm" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xdx" = ( +/turf/closed/wall, +/area/engineering/atmos/upper) +"xdB" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/rack, +/obj/item/bodybag{ + pixel_y = 5 + }, +/obj/item/bodybag{ + pixel_y = 10 + }, +/obj/item/storage/box/bodybags, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/main/sb_med) +"xdD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"xdF" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/wood/parquet, +/area/hallway/primary/port) +"xdI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"xdJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"xdL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"xdS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/turf/open/space/basic, +/area/space/nearstation) +"xdT" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"xdU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xdV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/tlv_cold_room, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/medical/coldroom) +"xdY" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xec" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 4; + name = "command camera" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xed" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"xef" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"xej" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xek" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"xen" = ( +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Brig Infirmary" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"xeo" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"xeq" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"xet" = ( +/obj/effect/turf_decal/delivery/white{ + color = "#52B4E9" + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"xew" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"xeB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + name = "Server Vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/server) +"xeF" = ( +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"xeI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"xeM" = ( +/obj/structure/cable, +/obj/structure/statue/sandstone/venus{ + layer = 3.1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xeN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"xeR" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xeT" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"xeV" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"xeW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/upper) +"xeY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/printer) +"xfe" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xfh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xfi" = ( +/turf/closed/wall, +/area/maintenance/port/central) +"xfj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"xfq" = ( +/obj/structure/rack, +/obj/item/stack/rods{ + amount = 23 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"xfr" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"xfs" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"xfy" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xfz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xfF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xfG" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"xfH" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"xfU" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"xfY" = ( +/turf/open/floor/plasteel/stairs{ + dir = 4 + }, +/area/maintenance/solars/port/fore) +"xfZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xgb" = ( +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"xge" = ( +/obj/structure/railing{ + pixel_y = -5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/space) +"xgi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xgr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel) +"xgs" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"xgt" = ( +/obj/structure/table, +/obj/item/clothing/mask/cigarette/shadyjims, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"xgy" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"xgz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"xgE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"xgL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/port) +"xgP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xgR" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 4"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"xgT" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"xgX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"xhc" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical/central) +"xhg" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"xhh" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"xhk" = ( +/turf/closed/wall, +/area/medical/medbay/lobby) +"xhp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"xhv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xhy" = ( +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 8 + }, +/obj/item/training_toolbox, +/turf/open/floor/plasteel, +/area/commons/fitness) +"xhB" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"xhE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xhI" = ( +/turf/closed/wall, +/area/service/chapel/office) +"xhN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"xhQ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xhR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"xhV" = ( +/obj/effect/turf_decal/siding/purple/end, +/turf/open/floor/glass/reinforced, +/area/science) +"xhX" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/glasses/meson/engine/tray, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"xhY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xhZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"xib" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xid" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"xif" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xig" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xii" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xik" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/machinery/button/door/directional/north{ + id = "roboticsprivacy"; + name = "Robotics Privacy Controls"; + pixel_x = 24; + req_access_txt = "29" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"xis" = ( +/obj/item/bouquet, +/obj/structure/closet/crate/grave, +/turf/open/floor/grass, +/area/maintenance/port) +"xit" = ( +/obj/machinery/camera{ + c_tag = "Recreation - Gym Upper"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness) +"xiu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xiw" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den) +"xix" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space) +"xiz" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"xiC" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"xiD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/storage) +"xiG" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/service/library) +"xiJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"xiK" = ( +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"xiQ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xiU" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/science/research) +"xiX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"xjh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"xjj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xjk" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"xjl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"xjm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xjp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"xjq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"xjs" = ( +/obj/structure/table/wood/fancy/green, +/obj/item/toy/plush/awakenedplushie{ + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/maintenance/starboard/fore) +"xjt" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/urinal{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/toilet/auxiliary) +"xjx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"xjz" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup39"; + location = "hallup38" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xjC" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Cargo Deliveries"; + req_access_txt = "63" + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/range) +"xjD" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/central) +"xjE" = ( +/turf/closed/wall, +/area/space/nearstation) +"xjG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"xjK" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xjL" = ( +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/commons/fitness/recreation) +"xjO" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/turf/open/floor/wood, +/area/service/chapel/office) +"xjT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"xjV" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xjW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xkb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/fore) +"xkc" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xkf" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"xki" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"xkq" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/stairs/old{ + dir = 8 + }, +/area/engineering/engine_smes) +"xkr" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/hallway/primary/port) +"xkt" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"xkw" = ( +/obj/structure/table, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"xky" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"xkC" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Medbay - Recovery Room"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/exam_room) +"xkD" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"xkG" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xkK" = ( +/obj/structure/closet/cardboard, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xkL" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/hallway/primary/central) +"xkO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"xkS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/prison/workout) +"xkU" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"xkV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering - Starboard Engineering Hub Deck 1"; + name = "engineering camera" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"xkW" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"xkZ" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xlb" = ( +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xlc" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/noslip, +/area/maintenance/fore/upper) +"xle" = ( +/turf/open/floor/eighties/red, +/area/commons/fitness/recreation) +"xlf" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server/upper) +"xlj" = ( +/turf/closed/wall/r_wall, +/area/science/cytology) +"xlk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Port Lower Aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xln" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"xlq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xlt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xlv" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"xlw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/seeds/wheat{ + pixel_x = 6 + }, +/obj/item/seeds/pumpkin{ + pixel_x = -6 + }, +/obj/item/seeds/potato, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/grapes, +/obj/item/food/grown/tomato, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"xly" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xlH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"xlJ" = ( +/turf/closed/wall, +/area/service/janitor) +"xlO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"xlT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"xlU" = ( +/obj/machinery/door/airlock/research{ + name = "Containment Chamber"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"xlV" = ( +/obj/structure/cable, +/obj/structure/door_assembly/door_assembly_sec, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xlY" = ( +/obj/item/stock_parts/cell/high, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/secondary) +"xmf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Hallway Maintenance Hatch"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xmh" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating/airless, +/area/engineering/main) +"xmm" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display/evac/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood, +/area/security/detectives_office) +"xmv" = ( +/obj/machinery/modular_computer/console/preset/cargochat{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"xmx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/library/abandoned) +"xmH" = ( +/obj/structure/railing/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"xmI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"xmJ" = ( +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"xmK" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xmR" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13;19" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"xmU" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xna" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/stone, +/area/maintenance/starboard/fore) +"xnd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/effect/turf_decal/trimline/neutral/filled/warning, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Security Deliveries"; + req_access_txt = "50" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/sorting) +"xnk" = ( +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Dock"; + dir = 1; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"xnm" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"xno" = ( +/obj/structure/window{ + dir = 1 + }, +/mob/living/simple_animal/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/turf/open/floor/grass, +/area/maintenance/starboard) +"xnq" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"xnu" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"xnC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xnD" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/break_room) +"xnE" = ( +/obj/structure/table/wood, +/obj/item/food/cake/holy_cake, +/turf/open/floor/carpet/red, +/area/service/chapel/office) +"xnG" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet/blue, +/area/lawoffice) +"xnH" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port Aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"xnU" = ( +/obj/machinery/door/airlock/mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xon" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port) +"xop" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "Sort and Deliver"; + pixel_x = -2; + pixel_y = 9 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "packageExternal"; + name = "Crate Returns"; + pixel_x = -5; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/storage) +"xor" = ( +/obj/structure/shuttle/engine/router, +/turf/open/floor/plating, +/area/maintenance/port) +"xov" = ( +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -29 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"xox" = ( +/obj/structure/table, +/obj/item/pipe_dispenser, +/turf/open/floor/plating, +/area/maintenance/port) +"xoC" = ( +/obj/machinery/button/ignition{ + id = "executionburn"; + name = "Justice Ignition Switch"; + pixel_x = -25; + pixel_y = 36 + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + name = "Justice Flash Control"; + pixel_x = -36; + pixel_y = 36; + req_access_txt = "1" + }, +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Justice Area Lockdown"; + pixel_x = -25; + pixel_y = 26; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "SecJusticeChamber"; + layer = 4; + name = "Justice Vent Control"; + pixel_x = -36; + pixel_y = 26; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"xoG" = ( +/obj/structure/table/wood/fancy/blue, +/obj/item/plate, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"xoH" = ( +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"xoI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/fore) +"xoL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"xoS" = ( +/obj/item/clothing/under/costume/gladiator, +/obj/item/clothing/head/helmet/gladiator, +/obj/structure/table{ + name = "Blacksmith" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"xoV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"xoY" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/cafeteria) +"xoZ" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/right{ + dir = 1 + }, +/area/engineering/atmos/upper) +"xpg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/crew_quarters/bar) +"xps" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xpv" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit) +"xpw" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"xpx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xpB" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xpD" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"xpG" = ( +/obj/machinery/libraryscanner, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library) +"xpI" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"xpR" = ( +/obj/machinery/door/window/westleft{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/service/theater) +"xpS" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"xpW" = ( +/turf/closed/wall/r_wall, +/area/security/prison/visit) +"xpY" = ( +/turf/open/floor/plasteel/stairs/left{ + dir = 1 + }, +/area/hallway/secondary/command) +"xqc" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"xqd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"xqe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xqf" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/construction/engineering) +"xqh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"xql" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xqm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"xqq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xqr" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xqu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xqM" = ( +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/effect/turf_decal/bot, +/obj/item/bodypart/l_arm, +/obj/item/organ/eyes, +/obj/effect/decal/cleanable/blood/old, +/obj/item/organ/tail/lizard, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xqN" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"xqO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xqT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xqU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/abandoned) +"xqZ" = ( +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/engineering/lobby) +"xra" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"xrc" = ( +/turf/closed/wall, +/area/cargo/miningoffice) +"xrd" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "Auxiliary Engine Acces Hatch" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xrg" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "justice gas pump" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "gas ports" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"xrh" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno5"; + name = "Containment Control"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xrl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xrm" = ( +/obj/machinery/door/airlock{ + name = "Service Restroom" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"xrp" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xrr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xrt" = ( +/turf/closed/wall/rust, +/area/maintenance/aft) +"xru" = ( +/obj/effect/turf_decal/siding/wood, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/carpet, +/area/service/chapel/main) +"xry" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xrA" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/bot_white, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"xrC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva/upper) +"xrE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xrF" = ( +/obj/structure/chair/sofa/right{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood/parquet, +/area/service/theater) +"xrI" = ( +/obj/structure/sign/warning/explosives, +/turf/closed/wall/r_wall, +/area/space) +"xrM" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"xrO" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"xrQ" = ( +/obj/effect/turf_decal/stripes/red/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/engine, +/area/science/cytology) +"xrV" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/prison/workout) +"xrX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Cargo Storage"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/warehouse/upper) +"xsb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"xsd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xse" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/hallway/secondary/entry) +"xsj" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Firing Range"; + req_one_access_txt = "1;4" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/range) +"xsl" = ( +/obj/structure/noticeboard/directional/east, +/obj/machinery/camera{ + c_tag = "Security - Warden's Office"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/security/warden) +"xsp" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xsv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"xsx" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/machinery/light/small/broken/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xsz" = ( +/obj/item/stack/sheet/cardboard, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xsA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank{ + pixel_y = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Ordnance Internal Airlock"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab/range) +"xsN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 1; + name = "command camera" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xsO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"xsW" = ( +/obj/structure/reagent_dispensers/watertank{ + pixel_y = -1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/central) +"xta" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"xtc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/primary/central) +"xtg" = ( +/obj/machinery/computer/telecomms/server{ + network = "tcommsat" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"xth" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"xtn" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xto" = ( +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/fore) +"xtp" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/glass, +/obj/structure/window, +/obj/item/organ/eyes/robotic/glow, +/obj/item/organ/eyes/robotic/glow, +/obj/item/organ/tail/lizard/fake, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"xtw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"xtx" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/red/corner, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east{ + pixel_y = 6 + }, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/mechbay) +"xty" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xtC" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Controll Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xtH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"xtO" = ( +/turf/open/floor/wood, +/area/commons/dorms) +"xtZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xua" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xue" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/camera{ + c_tag = "Courtroom - Jury Backroom" + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"xuf" = ( +/obj/structure/fans/tiny{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"xuh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/security/courtroom) +"xui" = ( +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/explab) +"xuj" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 1" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"xun" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Port"; + dir = 4; + network = list("aicore") + }, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"xup" = ( +/obj/effect/turf_decal/siding/wood, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command) +"xuu" = ( +/obj/machinery/button/door{ + id = "AuxToilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/structure/toilet{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/white, +/area/commons/toilet/auxiliary) +"xuH" = ( +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"xuK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"xuN" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xuP" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/misc_lab/range) +"xuT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xuV" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"xvb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xvj" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"xvo" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xvq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xvr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"xvu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xvx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/office) +"xvz" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"xvA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"xvF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Structural Support Section"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xvH" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/freezer, +/area/hallway/secondary/entry) +"xvK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"xvM" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xvS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/openspace, +/area/maintenance/central) +"xvT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"xvU" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Testing Room"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"xwb" = ( +/obj/effect/turf_decal/stripes, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/storage) +"xwd" = ( +/obj/machinery/status_display/evac/directional, +/turf/closed/wall, +/area/command/heads_quarters/captain/private) +"xwe" = ( +/obj/structure/bookcase/manuals/research_and_development, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"xwh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/chair/plastic{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Toxins Airlock"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"xwi" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"xwk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"xwn" = ( +/obj/effect/turf_decal/delivery/white, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"xwo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/rtg, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xwt" = ( +/obj/effect/turf_decal/trimline/purple/filled/line, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"xww" = ( +/obj/structure/filingcabinet/chestdrawer/wheeled, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xwy" = ( +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"xwz" = ( +/obj/machinery/door/airlock{ + name = "Storage room" + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"xwB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xwE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/service) +"xwJ" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/fitness) +"xwK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xwO" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/security/main/sb_med) +"xwR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xwT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xwX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Storage"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console"; + pixel_x = 27; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"xxc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xxf" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/psychology) +"xxg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"xxi" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"xxm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xxn" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xxo" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible, +/obj/machinery/atmospherics/pipe/smart/simple/pink/visible/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"xxx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"xxG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"xxI" = ( +/obj/machinery/computer/piratepad_control/civilian{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"xxL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Core Modules"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"xxQ" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/dorms) +"xxT" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xxW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xxY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"xxZ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/obj/machinery/conveyor{ + dir = 9; + id = "Luggagebelt" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"xyf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"xyg" = ( +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/structure/closet, +/obj/item/vending_refill/cigarette, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xyp" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons{ + pixel_y = 5 + }, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"xyq" = ( +/obj/item/trash/sosjerky, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xys" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/security/prison/safe) +"xyy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/grille/broken, +/obj/structure/closet, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xyA" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xyB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xyD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"xyK" = ( +/obj/machinery/pdapainter/engineering, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/noticeboard/ce{ + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"xyM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xyN" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xyT" = ( +/obj/structure/closet/secure_closet/psychology, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/storage/box/pillbottles, +/obj/item/cane, +/obj/item/storage/briefcase, +/turf/open/floor/carpet, +/area/medical/psychology) +"xzb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xzd" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"xzf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/turf/closed/wall, +/area/engineering/atmos/upper) +"xzg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"xzi" = ( +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xzm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xzn" = ( +/obj/structure/table, +/obj/item/fuel_pellet{ + pixel_x = 8 + }, +/obj/item/wrench{ + pixel_x = -4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Drone Bay"; + dir = 8; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xzp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xzw" = ( +/obj/structure/window, +/obj/structure/chair/sofa{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/bar/atrium) +"xzx" = ( +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"xzC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xzD" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xzI" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/maintenance/fore) +"xzK" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"xzL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Thruster Engine Room"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xzO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xzT" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/dresser, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"xzW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/upper) +"xAe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/medical/psychology) +"xAh" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse/upper) +"xAi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xAl" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/toy/toy_dagger, +/turf/open/floor/plating, +/area/maintenance/port) +"xAn" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"xAq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/fore/upper) +"xAt" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"xAG" = ( +/obj/machinery/smartfridge/organ, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"xAK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/command) +"xAQ" = ( +/turf/closed/wall, +/area/medical/virology) +"xAV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Janitorial Delivery"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"xAZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/explab) +"xBb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Leisure Hallway - Upper aft"; + dir = 8; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/port) +"xBc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"xBd" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xBf" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/poster/random_contraband{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xBp" = ( +/turf/open/openspace, +/area/engineering/lobby) +"xBq" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xBt" = ( +/obj/structure/barricade/wooden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xBv" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Aft Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"xBz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xBC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"xBG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xBK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"xBQ" = ( +/obj/effect/turf_decal/trimline/red/filled/corner{ + color = "#DE3A3A" + }, +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/folder/red{ + pixel_x = -7 + }, +/obj/structure/noticeboard/hos{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xBY" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat, +/obj/item/clothing/head/hardhat, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xCd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"xCf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xCl" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xCC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xCJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xCL" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xCN" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xCO" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xCP" = ( +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/under/rank/security/officer/formal, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/suit/security/officer, +/obj/item/clothing/under/rank/security/warden/formal, +/obj/item/clothing/suit/security/warden, +/obj/item/clothing/under/rank/security/head_of_security/formal, +/obj/item/clothing/suit/security/hos, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navyofficer, +/obj/item/clothing/head/beret/sec/navywarden, +/obj/machinery/camera{ + c_tag = "Security - Secure Gear Storage" + }, +/turf/open/floor/plasteel/dark, +/area/security/main/lockers) +"xCR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"xCW" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Xeno10"; + name = "Xenobio Pens Containment" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xCZ" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"xDd" = ( +/obj/structure/table_frame, +/obj/machinery/light/small/broken, +/turf/open/floor/plating, +/area/maintenance/port) +"xDg" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xDk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/fore) +"xDl" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xDn" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xDp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/tools) +"xDF" = ( +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"xDG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/maintenance/radshelter) +"xDH" = ( +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main/lockers) +"xDI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xDJ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xDL" = ( +/obj/machinery/door/window/brigdoor/northright{ + dir = 4; + id = "Cell 5"; + name = "Cell 5"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/brig) +"xDX" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"xDY" = ( +/mob/living/simple_animal/hostile/russian, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xEa" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/medical/exam_room) +"xEl" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"xEp" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"xEq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xEr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/command/heads_quarters/ce) +"xEs" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xEt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/radiation, +/obj/item/radio/intercom/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Test Chamber"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/explab) +"xEz" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Russian anaesthesia lounge" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"xEA" = ( +/turf/closed/wall, +/area/commons/locker) +"xEG" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"xEQ" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/break_room) +"xER" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/recreation) +"xES" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"xET" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"xEV" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/maintenance/port/aft) +"xEY" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"xEZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"xFc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xFf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "Luggagebelt" + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/security/checkpoint) +"xFm" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"xFq" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/service/chapel) +"xFr" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xFD" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xFE" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen/coldroom) +"xFG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"xFJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xFL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"xFO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xFP" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"xFS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"xFU" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xFY" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science) +"xFZ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xGa" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xGb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Barshutters"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xGd" = ( +/obj/structure/sign/poster/contraband/masked_men, +/turf/closed/wall, +/area/commons/fitness/recreation) +"xGe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Dorm Hallway - Lower Aft Port"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xGf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"xGk" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/item/toy/plush/beeplushie, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel{ + dir = 4 + }, +/area/maintenance/radshelter) +"xGl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/service/chapel/main) +"xGp" = ( +/obj/structure/grille, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"xGt" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"xGv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xGw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"xGx" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"xGG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/hos, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security's Requests Console"; + pixel_x = -31; + pixel_y = 0 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xGO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xGR" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xGT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/space/openspace, +/area/space) +"xGV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/closet/cardboard, +/turf/open/openspace, +/area/maintenance/aft/upper) +"xHc" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/medical/psychology) +"xHd" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"xHe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xHg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room) +"xHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xHj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xHk" = ( +/obj/structure/table/reinforced, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/psychology) +"xHl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/department/medical) +"xHo" = ( +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"xHr" = ( +/obj/machinery/door/window/brigdoor/northright{ + dir = 8; + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/brig) +"xHt" = ( +/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"xHw" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"xHz" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/theater) +"xHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"xHM" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xHN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xHT" = ( +/obj/structure/sign/poster/contraband/bountyhunters, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"xHV" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xHW" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain) +"xIc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/warehouse) +"xId" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"xIe" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xIh" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/machinery/newscaster/directional/east, +/obj/structure/cable, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"xIs" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/rust, +/area/maintenance/department/medical) +"xIt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics) +"xIz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xIA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"xIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xIG" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/south, +/turf/open/floor/carpet, +/area/commons/dorms) +"xIH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/science/research) +"xIJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Xeno11"; + name = "Containment Breach Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"xIR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/construction/engineering) +"xIS" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/main) +"xIV" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/miningdock) +"xIX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"xJa" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage_shared) +"xJb" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/cafeteria) +"xJf" = ( +/obj/machinery/light/small, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"xJg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"xJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xJj" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"xJq" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"xJs" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"xJt" = ( +/obj/structure/falsewall, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xJz" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xJH" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xKb" = ( +/obj/effect/landmark/start/roboticist, +/turf/open/floor/mineral/plastitanium, +/area/science/robotics/lab) +"xKf" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xKh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/recreation) +"xKl" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"xKm" = ( +/turf/open/space/basic, +/area/maintenance/fore) +"xKq" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"xKr" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/maintenance/aft/upper) +"xKs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Autopsy Room"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"xKx" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Labs"; + req_one_access_txt = "7" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side, +/area/science/explab) +"xKB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"xKD" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/chapel/office) +"xKG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"xKQ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Outlet Pump" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xKY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/command) +"xLd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xLe" = ( +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xLf" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/open/floor/eighties, +/area/commons/fitness/recreation) +"xLg" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"xLm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/conveyor{ + dir = 1; + id = "cargodeliver" + }, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"xLn" = ( +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"xLr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"xLy" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry"; + name = "Free Acces Shutters" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xLz" = ( +/turf/closed/wall, +/area/security/main/sb_med) +"xLA" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"xLC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xLM" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"xLO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xLU" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/surgery, +/obj/item/toy/cattoy, +/turf/open/floor/plating, +/area/medical/abandoned) +"xLV" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard) +"xLZ" = ( +/obj/structure/table, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xMg" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"xMh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"xMp" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/security/prison/shower) +"xMt" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/medical) +"xMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"xMA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/obj/effect/turf_decal/box, +/obj/structure/table/optable, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"xMB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/sorting) +"xMD" = ( +/turf/open/floor/wood, +/area/service/chapel/main) +"xME" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science) +"xMG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/maintenance/port/aft) +"xMN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"xMR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"xMS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"xNc" = ( +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xNg" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/window/preopen{ + id = "ArrivalsEntry4"; + name = "Line Acces Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xNl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xNm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"xNo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"xNq" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/grass, +/area/service/chapel) +"xNt" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"xNw" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xNz" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"xND" = ( +/obj/structure/cable, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"xNE" = ( +/obj/structure/table, +/obj/item/multitool{ + pixel_y = 3 + }, +/obj/item/wirecutters{ + pixel_y = -4 + }, +/obj/item/stack/cable_coil, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"xNO" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xNZ" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/lone, +/area/command/meeting_room/council) +"xOb" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/brig) +"xOd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"xOe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Port"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"xOi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"xOl" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xOm" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xOn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/cafeteria) +"xOr" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/white, +/area/science) +"xOu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"xOw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xOC" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"xOE" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xOQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xOS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xOT" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"xOV" = ( +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Lower Staircase"; + dir = 8; + name = "hallway camera" + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xPa" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating/airless, +/area/maintenance/aft/upper) +"xPb" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/fore) +"xPd" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"xPf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xPk" = ( +/turf/closed/wall, +/area/command/heads_quarters/hop) +"xPm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/private) +"xPo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/item/clothing/mask/breath, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"xPt" = ( +/obj/machinery/computer/atmos_control/miasma_tank{ + dir = 4; + name = "Waste Supply Control" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"xPu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"xPz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/indestructible, +/area/science/test_area) +"xPB" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"xPE" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"xPG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xPI" = ( +/turf/open/floor/plasteel, +/area/cargo/storage) +"xPN" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"xPV" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xPZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/indestructible, +/area/science/test_area) +"xQa" = ( +/turf/closed/wall/rust, +/area/maintenance/port) +"xQb" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xQe" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/ai_monitored/command/storage/eva) +"xQk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"xQl" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel/stairs/medium{ + dir = 1 + }, +/area/hallway/primary/central) +"xQm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xQq" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/button/ticket_machine{ + pixel_x = 25; + pixel_y = 25 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 25; + pixel_y = 35; + req_access_txt = "28" + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"xQB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/science/xenobiology) +"xQG" = ( +/turf/open/floor/plasteel, +/area/command/gateway) +"xQH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/lawoffice) +"xQJ" = ( +/obj/structure/table/wood/fancy, +/obj/item/toy/cards/deck/tarot, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"xQR" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/security/prison/workout) +"xQS" = ( +/turf/open/floor/plasteel/dark, +/area/space/nearstation) +"xQW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"xQZ" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xRc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/bar{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xRe" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"xRj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/chapel) +"xRl" = ( +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/timer{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/voice{ + pixel_x = -7 + }, +/obj/item/assembly/voice{ + pixel_x = -7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"xRw" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xRx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"xRy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xRA" = ( +/obj/effect/turf_decal/stripes{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/range) +"xRI" = ( +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/medbay/zone2) +"xRJ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm9"; + name = "BDSM Club" + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/commons/dorms) +"xRN" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xRP" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"xRQ" = ( +/obj/structure/shuttle/engine/heater, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/engine) +"xRU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"xRV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup31"; + location = "hallup30" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xRX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xSa" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"xSk" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"xSm" = ( +/obj/structure/flora/ausbushes/brflowers, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"xSq" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/fore) +"xSs" = ( +/obj/item/bedsheet/ce, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/carpet/orange, +/area/command/heads_quarters/ce) +"xSD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall19"; + location = "hall18" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xSG" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/indestructible, +/area/science/test_area) +"xSH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xSK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xSM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xSR" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"xSX" = ( +/turf/closed/wall, +/area/science/research/abandoned) +"xTc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"xTi" = ( +/turf/open/floor/wood, +/area/service/library/artgallery) +"xTj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"xTm" = ( +/obj/machinery/vending/sovietsoda, +/turf/open/floor/plating, +/area/maintenance/port) +"xTo" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/commons/vacant_room/commissary/second) +"xTq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"xTr" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/rd) +"xTs" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"xTt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hallup3"; + location = "hallup2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"xTz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/training_machine, +/obj/item/target/alien, +/turf/open/floor/engine, +/area/science/explab) +"xTA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard, +/obj/item/storage/box/lights, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xTD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"xTE" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xTF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing, +/turf/open/floor/wood, +/area/hallway/primary/central) +"xTO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/table/wood/fancy/green, +/obj/item/statuebust{ + pixel_y = 8 + }, +/turf/open/floor/wood/parquet, +/area/command/heads_quarters) +"xTP" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xTT" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xTU" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xTY" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xUf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xUk" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xUl" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Cooling Loop Bypass" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xUn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"xUr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/service/hydroponics) +"xUs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"xUw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/general/visible{ + dir = 10 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "gas ports" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"xUI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xUM" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/obj/structure/window{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/service/abandoned_gambling_den/secondary) +"xUN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/chapel) +"xUP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/detectives_office) +"xUQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"xUR" = ( +/turf/open/floor/plasteel, +/area/engineering/engine_room) +"xUU" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/crew_quarters/bar) +"xUW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"xUY" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage"; + req_one_access_txt = "32;19" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"xUZ" = ( +/obj/structure/industrial_lift, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/cargo/sorting) +"xVd" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"xVf" = ( +/obj/structure/table, +/obj/item/kitchen/knife/combat/survival, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xVg" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Thermo to gas" + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xVm" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"xVr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xVu" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"xVB" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/lobby) +"xVE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xVH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"xVK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"xVM" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xVN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/violet/visible{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/engineering/atmos) +"xVT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/aquarium, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"xVW" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/pwr_game, +/turf/open/floor/plating, +/area/maintenance/department/science) +"xVX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"xVY" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/item/skillchip/wine_taster, +/obj/item/skillchip/light_remover, +/obj/item/skillchip/bonsai, +/obj/item/skillchip/basketweaving, +/obj/structure/rack, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library/printer) +"xWa" = ( +/obj/structure/chair/office/light, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera{ + c_tag = "Science - Xenobio Controll Room"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xWg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"xWu" = ( +/obj/item/stack/sheet/cardboard, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/central) +"xWw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"xWA" = ( +/obj/structure/fluff/big_chain, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plasteel/cult, +/area/maintenance/port) +"xWD" = ( +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/neutral/filled/line{ + dir = 6 + }, +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"xWG" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"xWL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"xWN" = ( +/obj/machinery/button/door/directional/south{ + id = "bridgewindows"; + name = "Bridge View Blast Doors"; + pixel_x = -6; + req_access_txt = "19" + }, +/obj/machinery/button/door/directional/south{ + id = "bridgedoors"; + name = "Bridge Access Blast Doors"; + pixel_x = 6; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"xWS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"xWU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xWV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xXa" = ( +/obj/structure/cable, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/hallway/primary/port) +"xXb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xXd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar/atrium) +"xXe" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/window{ + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/stairs{ + dir = 1 + }, +/area/commons/fitness) +"xXf" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"xXk" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"xXn" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"xXp" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"xXq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"xXs" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"xXv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/junglebush/c, +/obj/structure/curtain/cloth/fancy/mechanical{ + icon_state = "bounty-open"; + icon_type = "bounty"; + id = "prisonlibrarycurtain4"; + name = "curtain" + }, +/turf/open/floor/grass, +/area/command) +"xXw" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"xXz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xXC" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xXQ" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/engine, +/area/command/heads_quarters/rd) +"xXS" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xXT" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Overseer office"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"xXV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"xXW" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "Luggagebelt" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/security/checkpoint) +"xXY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"xXZ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"xYl" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xYm" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"xYn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xYo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"xYp" = ( +/obj/machinery/processor, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xYv" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xYx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"xYA" = ( +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/science/lab) +"xYB" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/central) +"xYC" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"xYF" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/engine, +/area/science/xenobiology) +"xYJ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/stairs/medium{ + dir = 4 + }, +/area/science/research) +"xYK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"xYL" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/qm/perch) +"xYT" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xYU" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"xYV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Bottom Port"; + dir = 8; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xZa" = ( +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xZm" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xZp" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/chair/sofa/left, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"xZs" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"xZu" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/pill/lsd{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/lsd, +/obj/item/reagent_containers/pill/happy{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xZv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"xZA" = ( +/obj/structure/window, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/carpet/blue, +/area/medical/exam_room) +"xZB" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"xZF" = ( +/turf/closed/wall, +/area/cargo/storage) +"xZL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room) +"xZP" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/dark{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"xZS" = ( +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/storage/belt/utility, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xZW" = ( +/turf/closed/wall/rust, +/area/maintenance/fore) +"yad" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"yag" = ( +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + color = "#ff0000"; + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Recreation - Lasertag Lockers"; + name = "hallway camera" + }, +/turf/open/floor/plasteel/dark/side, +/area/commons/fitness/recreation) +"yal" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/clothing/glasses/regular{ + pixel_x = 6; + pixel_y = 18 + }, +/obj/item/clothing/glasses/regular/hipster{ + pixel_x = -4; + pixel_y = 13 + }, +/obj/item/clothing/mask/bandana/black{ + pixel_x = -6 + }, +/obj/item/clothing/mask/bandana/skull, +/obj/item/clothing/mask/bandana/durathread{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"yaw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"yay" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/maintenance/fore) +"yaD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/medical/central) +"yaE" = ( +/turf/open/space/basic, +/area/space/nearstation) +"yaG" = ( +/turf/closed/wall, +/area/service/abandoned_gambling_den) +"yaH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"yaM" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"yaN" = ( +/obj/structure/window/plasma/reinforced, +/obj/structure/shuttle/engine/heater, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"yaQ" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/stripes{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"yaR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/mineral/plastitanium, +/area/maintenance/port) +"yaV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"ybb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/camera{ + c_tag = "Upper Central Hallway - Upper Starboard Bow"; + dir = 4; + name = "hallway camera" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ybe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ybj" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"ybk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"ybn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ybt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/punching_bag, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"ybw" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/grass, +/area/commons/dorms) +"yby" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ybD" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ybF" = ( +/obj/machinery/door/airlock/security{ + name = "Isolation Cell 1"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"ybH" = ( +/obj/machinery/door/airlock/glass{ + name = "Cafe Barista enterance" + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"ybJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction/engineering) +"ybK" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ybL" = ( +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ybM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/construction/engineering) +"ybN" = ( +/turf/closed/wall, +/area/cargo/sorting) +"ybQ" = ( +/obj/machinery/light/small/directional/north, +/turf/open/openspace, +/area/maintenance/fore/upper) +"ybU" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ybV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/tcommsat/computer) +"ycc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ycd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"yce" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/green, +/area/hallway/secondary/entry) +"yci" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ycj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"yck" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"ycp" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"yct" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2) +"ycu" = ( +/obj/structure/table/wood, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/glitter{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ycz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ycD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"ycH" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ycI" = ( +/turf/closed/wall, +/area/service/library/printer) +"ycJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"ycM" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/ai_monitored/turret_protected/aisat_interior) +"ycO" = ( +/turf/closed/wall, +/area/security/checkpoint) +"ycW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/department/medical/central) +"yda" = ( +/obj/structure/table{ + name = "General Merchant" + }, +/obj/structure/curtain/bounty, +/obj/effect/decal/cleanable/dirt, +/obj/item/price_tagger, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ydd" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ydg" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = -3 + }, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/turf/open/floor/plasteel/dark, +/area/command) +"ydm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"ydu" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/command) +"ydB" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ydC" = ( +/obj/structure/railing/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"ydE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"ydF" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/wood, +/area/service/theater) +"ydI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposaloutlet{ + dir = 4; + name = "Cargo Deliveries" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ydK" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"ydP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ydV" = ( +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"ydW" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"yeb" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/maintenance/fore/secondary) +"yed" = ( +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/tomato, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/corn, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/carrot, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/wheat, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/soybeans, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/chili, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/item/food/grown/garlic, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/hydroponics{ + storage_capacity = 70 + }, +/turf/open/floor/plasteel/kitchen_coldroom/freezerfloor, +/area/hallway/primary/port) +"yee" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"yef" = ( +/turf/closed/wall, +/area/service/library/lounge) +"yei" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"yek" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"yel" = ( +/obj/item/trash/waffles, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"yem" = ( +/turf/closed/wall, +/area/commons/toilet/restrooms) +"yeq" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"yew" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/mixing) +"yez" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"yeC" = ( +/obj/machinery/light/small/broken{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"yeI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/entry) +"yeJ" = ( +/obj/structure/railing, +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/medical/medbay/lobby) +"yeK" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"yeN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"yeP" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"yeQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsurgery"; + name = "Robotics Surgery Privacy Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics) +"yeS" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"yeX" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/starboard/aft) +"yeZ" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/stairs{ + dir = 8 + }, +/area/maintenance/port) +"yfi" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"yfq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"yfu" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution) +"yfw" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"yfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"yfB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"yfE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/office) +"yfF" = ( +/obj/item/cigbutt, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"yfM" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"yfN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) +"yfO" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/pink/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"yfP" = ( +/obj/effect/turf_decal/trimline/red/filled{ + color = "#DE3A3A" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"yfS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/port/aft) +"yfU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"yfW" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/security/prison) +"yfY" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"yfZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"ygb" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"ygh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "gatewayblastdoors"; + name = "Seperating Blast Doors" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"ygj" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"ygk" = ( +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ygm" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/command/gateway) +"ygn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ygp" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"ygq" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"ygw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ygB" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/security/main/sb_med) +"ygC" = ( +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/breakroom) +"ygD" = ( +/obj/structure/cable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ygP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore) +"ygV" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/prison/upper) +"ygW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Cell 4"; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ygX" = ( +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ygZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall18"; + location = "hall17" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yhd" = ( +/obj/machinery/griddle, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/primary/port) +"yhe" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"yhg" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Engine Waste Connection" + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on/layer2{ + name = "Scrubber Network Connection" + }, +/turf/open/floor/plating, +/area/maintenance/department/engine) +"yhh" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/turf/open/floor/plasteel/white, +/area/service/electronic_marketing_den) +"yhk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 7 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/range) +"yhl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"yhp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"yhr" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/main) +"yhs" = ( +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/cargo/office) +"yhw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/wood/tile, +/area/service/abandoned_gambling_den) +"yhC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"yhF" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/mecha_part_fabricator/maint, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"yhK" = ( +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"yhS" = ( +/obj/item/stack/sheet/plasmarglass{ + amount = 10 + }, +/turf/open/floor/engine, +/area/engineering/engine_room) +"yhT" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/command) +"yhW" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/commons/vacant_room/commissary/second) +"yic" = ( +/turf/open/floor/engine, +/area/engineering/engine_room) +"yir" = ( +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"yit" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"yiA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Primary Treatment Centre"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2) +"yiC" = ( +/obj/effect/turf_decal/stripes, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva/upper) +"yiF" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/secondary) +"yiN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/chapel) +"yiO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"yiP" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"yiR" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/maintenance/aft/upper) +"yiT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"yiV" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/hallway/primary/central) +"yiW" = ( +/turf/open/floor/plating, +/area/maintenance/starboard) +"yiX" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"yiZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/starboard/central) +"yjb" = ( +/obj/item/soap/nanotrasen, +/obj/item/bikehorn/rubberducky, +/turf/open/floor/plasteel/freezer, +/area/medical/psychology) +"yji" = ( +/turf/open/floor/carpet/executive, +/area/command) +"yjq" = ( +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"yjw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"yjz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/bed{ + name = "Justice Bed" + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/mask/muzzle, +/obj/item/electropack, +/obj/item/toy/plush/moth, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"yjA" = ( +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/cargo/miningdock) +"yjF" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet/green, +/area/service/abandoned_gambling_den) +"yjI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yjJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"yjM" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/stone, +/area/commons/fitness/recreation) +"yjU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = " Prison - Cell 3"; + dir = 4; + network = list("ss13","prison") + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"yjV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/department/medical/central) +"yjY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ykc" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/lawoffice) +"ykg" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"ykh" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/maintenance/port) +"ykl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/upper) +"ykp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"yks" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"yku" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/aft/upper) +"ykw" = ( +/obj/structure/table_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/central) +"ykA" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/plumbing, +/turf/open/floor/plating, +/area/maintenance/port) +"ykM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ykP" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/psychologist, +/turf/open/floor/plasteel, +/area/medical/psychology) +"ykS" = ( +/obj/machinery/door/airlock/medical{ + name = "Surgery B"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"ykU" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"ykY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ylb" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"ylc" = ( +/obj/structure/closet/wardrobe/yellow, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"yle" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"ylg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/field/generator, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/main) +"ylj" = ( +/obj/structure/table/optable{ + name = "Autopsy table" + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/science/robotics) +"ylk" = ( +/obj/structure/chair/office, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"ylm" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"yln" = ( +/turf/open/floor/carpet/lone, +/area/service/bar/atrium) +"ylo" = ( +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/wood, +/area/service/theater) +"ylr" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/mapping_helpers/dead_body_placer, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ylt" = ( +/turf/open/floor/plating, +/area/maintenance/department/science) +"ylu" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/carpet/royalblack, +/area/cargo/qm) +"ylw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2O to Pure" + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + color = "#DE3A3A"; + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"ylB" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ylH" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"ylI" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ylQ" = ( +/turf/open/space/basic, +/area/space) +"ylS" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/research) +"ylU" = ( +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1449; + id_tag = "xeno_airlock_exterior"; + name = "Xenobiology Lab External Airlock"; + req_access_txt = "55" + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "xeno_airlock_exterior"; + idSelf = "xeno_airlock_control"; + name = "Access Button"; + pixel_x = 25; + req_access_txt = "55" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ylV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft/upper) +"ylW" = ( +/obj/effect/turf_decal/stripes, +/turf/open/floor/plasteel, +/area/security/brig/upper) +"ylX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/glass/reinforced, +/area/engineering/atmos) +"ylZ" = ( +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ymc" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ymg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ymi" = ( +/obj/machinery/camera{ + c_tag = " Prison - Upper Cellblock"; + dir = 4; + network = list("ss13","prison") + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) + +(1,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(2,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(3,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(4,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(5,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(6,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(7,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(8,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(9,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(10,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(11,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(12,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(13,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(14,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(15,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(16,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(17,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(18,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(19,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(20,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(21,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(22,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(23,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(24,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(25,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(26,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(27,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(28,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(29,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(30,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(31,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(32,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(33,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(34,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(35,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(36,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(37,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(38,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(39,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(40,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(41,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(42,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(43,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(44,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(45,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(46,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(47,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(48,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(49,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(50,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(51,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(52,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(53,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(54,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(55,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(56,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(57,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(58,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(59,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(60,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(61,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(62,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(63,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(64,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(65,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(66,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(67,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(68,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(69,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(70,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(71,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(72,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(73,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(74,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(75,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(76,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(77,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(78,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(79,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(80,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +nyD +ylQ +nMN +ylQ +nyD +ylQ +nMN +ylQ +nyD +ylQ +nMN +ylQ +nyD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(81,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +nxa +ylQ +ylQ +ylQ +nxa +ylQ +ylQ +ylQ +nxa +ylQ +ylQ +ylQ +nxa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(82,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylb +wjV +wjV +wjV +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylb +wjV +wjV +wjV +upy +ylQ +ylQ +ylQ +upy +ylQ +ylQ +ylQ +upy +ylQ +ylQ +ylQ +upy +wjV +wjV +wjV +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylb +wjV +wjV +wjV +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(83,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +eYq +wCM +mRo +mRo +mRo +mRo +mRo +tpm +mRo +ylH +tZK +ylH +ylH +aPI +ylH +ylH +aKF +aSg +aSg +aSg +aSg +aSg +aSg +ylb +ylb +wjV +wjV +ylb +wjV +wjV +ylb +ylb +vBr +aSg +huA +ylb +ylb +ylb +wjV +wjV +wjV +ylb +ylb +ylb +rwQ +aIO +iwC +upy +ylQ +ylQ +ylQ +upy +ylQ +ylQ +ylQ +upy +ylQ +ylQ +ylQ +upy +bgJ +iwC +bgJ +ylb +ylb +ylb +wjV +wjV +wjV +ylb +ylb +ylb +aSg +aSg +aSg +ylb +ylb +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(84,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +osP +mjb +ahE +xMh +arP +xPb +aqR +arP +arP +xZW +aqR +kGQ +vtF +kGQ +kGQ +aSg +aSg +xQa +jtP +aPz +aPz +aSg +aPz +osN +aSg +xQa +kUk +aSg +aSg +aSg +aSg +aSg +obf +aPz +cPW +gnP +aSg +aSg +uGv +aSg +bgJ +iwC +bgJ +aSg +sHr +aSg +aSg +jQv +sTr +upy +ylQ +als +ylQ +upy +ylQ +als +ylQ +upy +ylQ +als +ylQ +upy +kph +oOH +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +gND +ulh +vDO +vDO +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(85,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +mdr +cbf +qoE +xMh +arP +xZW +arP +arP +aqR +itJ +aqR +aSg +can +aSg +aSg +aSg +ldi +xQa +xsz +wVe +fmv +aSg +aPz +rmM +aSg +aPz +cwG +sTp +sTp +lQA +sTp +sTp +tqV +voy +tqV +tqV +mPc +aSg +aPz +aSg +aSg +jVL +aSg +aSg +aPz +aSg +can +aSg +mTl +upy +vAz +xuj +vAz +upy +vAz +pda +vAz +upy +vAz +iKS +vAz +upy +sbn +pDc +aSg +aSg +aSg +ldi +bgJ +bgJ +aSg +iwC +iwC +aSg +aPz +aSg +aPz +xQa +cLy +vDO +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(86,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +mdr +rYM +qOt +xMh +pgW +aqR +aqR +aqR +aqR +xZW +xZW +aPz +aPz +xQa +aSg +xQa +aPz +aPz +tra +ylH +ylH +ylH +tZK +ylH +ylH +ylH +bwf +aSg +aSg +xDd +aSg +aSg +xQa +aPz +aPz +xjK +rKZ +obJ +xQa +xQa +aPz +aPz +aPz +xQa +aPz +sHr +aPz +aSg +aSg +upy +stJ +fom +kkp +upy +stJ +fom +kkp +upy +stJ +fom +kkp +upy +aPz +xQa +xQa +aSg +aSg +aPz +xQa +xQa +aSg +can +aSg +aSg +xQa +aSg +xQa +nkM +gOK +dvy +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(87,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xOd +xOd +xOd +xOd +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +xOd +xOd +xOd +ayE +ayE +ylQ +ylQ +ayE +pJW +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +dGT +xMh +aqR +aqR +aqR +arP +arP +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aPz +aPz +obJ +xQa +aPz +xQa +obJ +aPz +aPz +obJ +aPz +aPz +xQa +aPz +aPz +aSg +uGv +aSg +ygw +aSg +aPz +aSg +oOH +pcK +aSg +aSg +aSg +nec +aPz +xQa +obJ +upy +vAz +eRk +vAz +upy +vAz +bPZ +vAz +upy +vAz +mnB +vAz +upy +rwR +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aPz +xQa +aPz +xQa +aPz +aSg +aPz +nkM +nkM +nkM +aPz +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(88,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +pOy +sIO +sIO +pOy +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +aLY +jYA +jYA +jYA +xap +ayE +ayE +xOd +ayE +aqR +ayE +xOd +ayE +ayE +xOd +xOd +xOd +ayE +ayE +ayE +ayE +ayE +aqR +hJQ +cUO +qZN +xZW +xZW +arP +arP +aSg +obJ +aSg +aPz +aPz +aPz +xQa +xQa +aSg +aSg +xQa +sbn +aSg +aSg +vtF +huA +aSg +pdk +xQa +aSg +xQa +aSg +wVe +aSg +aSg +aSg +aPz +xQa +hpT +aPz +aPz +aSg +oIC +aSg +xQa +xQa +aSg +aSg +aPz +cal +aSg +vov +vxX +qcA +vxX +xpv +vxX +qcA +vxX +xpv +vxX +qcA +vxX +vov +eLm +aSg +aSg +aSg +aSg +oIC +aSg +fYG +aSg +aJn +aSg +aSg +aSg +aSg +aPz +wjV +wjV +wjV +aPz +aSg +ylb +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(89,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xPb +aqR +aqR +aqR +aqR +aqR +flW +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +arP +ayI +xap +xap +dDX +meJ +plV +plV +plV +ovB +ayE +fQu +ayE +xap +xap +xap +xap +xBq +xzp +xzp +xzp +xzp +xzp +xzp +xzp +xzp +anF +xap +xap +bBV +xap +xap +aSg +aPz +xQa +aPz +aSg +aSg +aSg +aPz +aPz +aSg +xQa +sbn +aSg +aSg +aPz +aSg +aSg +cyf +xQa +aSg +nec +aSg +xQa +xQa +aPz +xQa +aPz +aSg +tra +tqV +tqV +ecr +cfV +ylH +ylH +ylH +ylH +ylH +cUu +mOf +ylH +eHi +tTw +lhP +pNn +vov +iQw +iQw +pNn +vov +iQw +iQw +pNn +vov +aSg +aPz +aSg +tRt +tRt +tRt +jVL +aSg +iwC +nKq +aSg +oOH +aSg +aSg +aPz +aSg +tgF +tgF +tgF +tgF +ukY +aSg +oOx +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(90,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xPb +aqR +aqR +aqR +aqR +aqR +arP +aqR +aqR +aqR +aqR +aqR +arP +ohu +xZW +arP +arP +xZW +xap +xap +xap +wcM +xap +xpx +xap +iRt +kUI +plV +kQU +aVm +aVm +aVm +aVm +ugX +cCl +rdM +qfb +uAQ +xap +xap +xap +xap +xap +xap +xap +bBV +xap +xap +aPz +aPz +iwC +aPz +aPz +xQa +aSg +aSg +aPz +aSg +aPz +aPz +iwC +aSg +aPz +aSg +xQa +mPw +aPz +aSg +aPz +dPb +aPz +exB +aSg +xAl +aPz +aSg +hQd +aPz +aPz +ygw +aSg +aSg +aPz +xQa +aPz +aPz +aPz +vov +vov +vov +twt +iuv +eAM +vAz +eAM +qtM +eAM +vAz +eAM +qtM +rjI +vov +aSg +xQa +aSg +aSg +aSg +aSg +aSg +aSg +mLu +can +aSg +aSg +aSg +aSg +xQa +aSg +xor +xor +xor +xor +ukY +aSg +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(91,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +sjb +aqR +aqR +aqR +aqR +xZs +arP +aqR +pgW +pgW +aqR +xZW +xZW +aFF +sIO +cVb +aqR +xZW +aqR +uiO +vpz +vxm +xap +xZW +xap +xap +bBV +xap +wlj +xap +xap +xZW +qHD +xap +aLY +uhT +gEb +wlj +arP +arP +xZW +fjn +arP +arP +vTL +arP +xap +xap +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +xQa +aSg +aSg +xQa +pmn +aSg +aSg +aSg +aSg +aSg +aSg +aSg +uGv +vtF +aPz +eIS +nRi +exB +xQa +aSg +aSg +rmM +aPz +ygw +cyf +aPz +aPz +lxN +can +aSg +bHE +vov +iYj +ume +qxh +nvD +eAM +oSd +eAM +eAM +eAM +oSd +eAM +eAM +eAM +vov +aSg +xQa +aSg +aPz +xQa +aPz +aSg +aPz +xQa +xQa +aPz +aPz +xTm +aSg +xQa +aSg +vGD +vGD +vGD +vGD +ukY +aSg +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(92,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +aqR +aqR +aqR +aqR +aqR +hMV +arP +aqR +aqR +aqR +aqR +xZW +xPb +aqR +piu +aqR +aqR +vad +xap +xap +meJ +wiW +xap +arP +arP +xZW +xZW +arP +oyp +arP +arP +xZW +arP +msd +xZW +xZW +arP +gBJ +arP +aqR +xZW +aqR +aqR +arP +arP +xZW +xap +xap +xQa +aSg +xQa +xQa +eWM +xQa +xQa +aSg +xQa +xQa +aSg +aPz +huA +aSg +aSg +aPz +xQa +kUk +rmM +aSg +aPz +aSg +xQa +mQd +nCS +aSg +xQa +aSg +aSg +pdk +xQa +qPy +sbn +aPz +iwC +eCu +aSg +aSg +bHE +vov +iYj +obh +qxh +joR +jgg +wub +jgg +uzV +jgg +wub +jgg +woa +tJI +mYp +cee +cee +orl +aPz +aSg +aSg +oOH +aPz +dfp +pmi +tYg +xQa +nQi +aSg +xzL +aSg +aPz +vid +vid +vid +ylb +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(93,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +aqR +aqR +aqR +aqR +aqR +aqR +xto +aqR +aqR +aqR +aqR +arP +xPb +aqR +piB +aqR +aqR +xZW +xap +xap +vxm +xap +xap +fjn +xap +ljB +lpP +pOc +apH +xZW +wpz +cxP +aqR +cxP +cxP +arP +cQy +xLr +aqR +aqR +bWV +aqR +aqR +xZW +xap +xap +xap +xap +xQa +aSg +aPz +vNw +vNw +vNw +xQa +aSg +wVe +aPz +aSg +aPz +xQa +whM +aSg +aSg +oIC +aPz +aPz +aSg +aPz +aSg +aPz +aPz +poE +xQa +xQa +obJ +aPz +aPz +aPz +ygw +aSg +xQa +xQa +evr +aSg +aSg +bHE +vov +iYj +cIL +eAM +kkE +eAM +vol +eAM +eAM +eAM +vol +eAM +gIs +pEV +vov +huA +cal +jQe +mnD +gkm +aSg +aSg +xQa +kSa +wGG +ioS +aPz +xQa +aSg +aPz +aSg +aSg +aSg +aSg +tgF +tgF +ukY +vcP +oOx +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(94,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +vRO +vHV +qqn +aqR +aqR +arP +arP +arP +aqR +arP +arP +arP +xOd +xOd +xOd +arP +arP +xZW +xZW +xap +vxm +xap +xap +arP +aLY +fgz +akI +xap +xap +xZW +ant +lhO +aos +hvZ +cxP +arP +arP +tHi +pOc +lTy +xZW +pOy +sfX +arP +xap +xap +xap +xap +aPz +aSg +aPz +wnm +bkZ +vNw +aPz +aSg +pDc +aPz +aSg +sbn +xQa +aSg +aSg +aSg +aPz +mTl +aSg +aSg +aSg +aSg +aSg +aSg +htL +aSg +kJo +aSg +aSg +aSg +aSg +ygw +aSg +aSg +aSg +aSg +aSg +aSg +oIC +vov +vov +vov +paV +std +lBN +vov +xEl +rAM +oJp +vov +vov +vov +vov +vov +xQa +aPz +xQa +xAi +jfO +mPw +aSg +aPz +vQS +sWH +cbt +aPz +aSg +aSg +aPz +tgF +tgF +tgF +tgF +xor +xor +ukY +vcP +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(95,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xHw +xHw +xHw +xHw +xHw +xHw +xHw +xHw +edt +xHw +arP +aqR +aqR +aqR +aqR +arP +yaE +yaE +yaE +yaE +yaE +arP +aqR +aqR +xap +vxm +arP +arP +arP +arP +xZW +arP +avB +avB +arP +ans +kVV +aor +apb +aqR +gvp +arP +xZW +xZW +xLr +arP +arP +arP +arP +xap +xap +xZW +aqR +obJ +aSg +xQa +vNw +vNw +vNw +aPz +aSg +aPz +xQa +aSg +whM +aPz +aSg +aSg +aPz +aPz +aPz +aPz +aPz +xQa +aPz +xQa +aPz +nga +aPz +xQa +xQa +aPz +aPz +xQa +ygw +huA +xQa +xQa +aPz +gMo +aSg +pDc +whM +whM +aPz +aPz +aPz +aPz +aPz +aPz +aPz +aPz +aPz +aSg +aSg +aSg +aSg +aSg +aSg +xQa +kiZ +sjl +xQa +aPz +aPz +xQa +lxG +xQa +xQa +aSg +aSg +bSs +xor +xor +xor +xor +xor +vGD +ukY +vcP +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(96,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hVD +tJz +abf +bBb +ige +gMR +bBb +kDJ +akC +xHw +aqR +aqR +aqR +aqR +aqR +arP +arP +xOd +xOd +xOd +arP +arP +aqR +aqR +xap +vxm +xZW +xqM +aiU +aju +isJ +arP +arP +arP +arP +arP +xZW +xZW +arP +arP +arP +arP +aqR +aqR +xLr +xZW +neb +neb +neb +xap +xap +xZW +aqR +xQa +aJq +xQa +aPz +aPz +aPz +xQa +aSg +aPz +aSg +aSg +aPz +aPz +aPz +aSg +vtF +aSg +xQa +aPz +vGr +vNw +uqG +cvn +iHz +wrj +iKj +iKj +iKj +aPz +btz +tqV +bwf +aPz +aPz +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aPz +jQe +xRU +xRU +xRU +xRU +mFf +orl +aSg +aSg +aSg +bSs +xor +xor +xor +xor +xor +tgF +ukY +vcP +oOx +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(97,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hVD +pQe +alA +gMR +aaZ +aoG +gMR +ige +cwP +xHw +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +xap +iDc +woO +xty +aiV +ajt +exN +xZW +khR +vzM +arP +qet +vzM +arP +khR +vzM +kQq +aqR +aqR +aqR +xLr +xZW +neb +neb +neb +xap +xap +xZW +aqR +aPz +aPz +aPz +aSg +aSg +aSg +aSg +aSg +aPz +aSg +aPz +aPz +aJq +aPz +aSg +aPz +aSg +xQa +xWA +ivV +vNw +ivV +iCx +yaR +aTh +raT +ozm +raT +aPz +jtP +oIC +xQa +aPz +nJZ +bZr +aPz +nfc +aPz +aPz +xQa +xQa +xQa +aPz +xQa +aSg +aSg +aPz +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +xQa +aPz +fmv +kBQ +kbT +pGi +aSg +jvs +vDN +nFn +aSg +aPz +vGD +vGD +vGD +vGD +xor +xor +ukY +vcP +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(98,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xHw +xHw +amc +kGf +kGf +kGf +kGf +kGf +cxA +xHw +xHw +xHw +xHw +xHw +edt +fid +fid +fid +wcR +wcR +wcR +fid +aqR +xZW +bBV +chd +arP +qcl +aiX +xae +akJ +xZW +umI +xap +arP +umI +xap +arP +dgE +xap +xZW +aqR +aqR +aqR +xLr +arP +arP +arP +xZW +xap +xap +arP +aqR +obJ +aSg +aPz +aSg +aPz +aSg +aPz +xQa +xQa +aSg +aSg +aSg +aSg +xQa +aSg +aPz +aPz +aPz +iVI +vNw +bgG +vNw +pTO +mni +oBx +iHz +iHz +bqw +xQa +tra +gTq +aKF +aPz +nJZ +aSg +gdR +vCO +vDO +vDO +aPz +jnM +xox +nIq +aPz +aSg +aSg +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aPz +cdd +xQa +aPz +aPz +jvs +mzE +aSg +can +xQa +nec +aSg +aSg +aSg +vGD +vGD +ukY +vcP +vcP +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(99,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aaS +ihv +gMR +gMR +gMR +gMR +gMR +gMR +dBs +eqT +gMR +rhj +fbJ +fTB +kSz +hOB +stD +fXy +xbY +faS +fid +sjb +aqR +xap +vAG +xZW +xOl +xRw +xry +arP +arP +gFy +iHk +arP +iHk +gFy +xZW +iHk +gFy +arP +arP +aqR +aqR +tHi +lTy +aqR +aqR +arP +bBV +bBV +xZW +aqR +aPz +aSg +aSg +aSg +aPz +aSg +aSg +aSg +aPz +aPz +aPz +aSg +aPz +aPz +aSg +aPz +aSg +xQa +vGr +aXt +vNw +ivV +bjz +qnY +cSi +iKj +iKj +iKj +xQa +xQa +aPz +ygw +sHr +aSg +aSg +aSg +gdU +brC +vDO +aPz +wVe +aSg +aSg +gDg +aSg +aSg +aSg +wXB +vWJ +wXB +vWJ +vWJ +wXB +wXB +vWJ +wXB +qYC +uHD +uHD +uHD +vWg +xQa +aSg +aSg +jvs +sGe +whM +aSg +aPz +xzL +xQa +vid +vid +vid +ylb +ylb +ylb +ylb +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(100,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aaS +gMR +aoY +gMR +gMR +eRV +gMR +gMR +gMR +gMR +gMR +gMR +fbJ +fTB +azP +aML +lNL +lNL +hqN +jEW +fid +aqR +arP +xap +vAG +xZW +rnk +xUf +eiu +arP +afK +eOz +aKT +aKT +aKT +qSG +ahy +xOl +mBK +bmM +arP +arP +xZW +aqR +tHi +vVt +vVt +jWO +uAQ +xap +arP +aqR +aPz +xQa +xQa +aPz +aPz +xQa +aPz +aSg +aPz +rmM +xQa +aSg +xQa +aSg +aSg +aPz +aSg +aPz +xQa +vGr +uqG +vNw +cvn +iHz +cED +raT +raT +raT +aPz +bXK +aSg +ygw +xQa +mdj +ykA +vSn +vCO +vDO +vDO +aPz +fmv +iVc +sxi +aPz +mPw +aSg +aSg +wXB +wcB +pTl +pWr +jrX +dDz +tIe +bXC +vWJ +xVE +aSg +aSg +aSg +aSg +aPz +hhW +xRU +fCd +xRU +xRU +xRU +xRU +xId +xId +xId +jGD +yhe +uEa +yhe +yhe +ykg +ykg +ykg +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(101,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aaS +gMR +gMR +gMR +dEv +gMR +gMR +gMR +dEv +gMR +gMR +gMR +fbJ +fTB +kWE +hOB +pBU +uYO +nZp +aNn +fid +aqR +arP +xap +vAG +arP +xOl +xVd +siZ +akg +saM +rQH +rQH +rQH +rQH +bbX +rQH +rQH +rQH +mNS +kFD +mMr +xZW +xZW +arP +arP +arP +xZW +wUo +xap +aqR +aqR +obJ +aSg +aSg +aPz +oOH +aSg +aSg +aSg +nec +aSg +xQa +aSg +xQa +aSg +aPz +aPz +aSg +aSg +aPz +xhI +xhI +xhI +xhI +vRc +iWV +vRc +xhI +xhI +xhI +xhI +aSg +ygw +aPz +xQa +aPz +aPz +xQa +xQa +xQa +aPz +aPz +aPz +aPz +xQa +bjM +aSg +aSg +wXB +uVZ +wvd +vwT +cdj +vwT +bWE +bXB +wXB +xVE +aSg +aSg +aSg +aSg +aPz +jvs +vCE +vCE +vCE +vCE +vCE +vCE +vCE +vCE +vCE +xgz +yhe +xrt +yhe +yhe +yhe +yhe +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(102,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aaS +gMR +gMR +aaZ +gMR +gMR +gMR +qlf +gMR +qGb +fmQ +gMR +fbJ +fTB +azP +wcR +rCh +fgO +qvw +npK +fid +aVj +aqR +xap +vAG +arP +waV +lLD +ajA +xZW +lnB +tIs +xhY +qce +xhY +pmD +xOl +xOl +mBK +xap +xZW +bbr +arP +xap +xap +xap +xap +bBV +wlj +xap +lmD +xZW +aPz +aPz +aSg +xQa +obJ +aPz +xQa +iwC +aPz +aSg +xQa +aSg +aPz +obJ +xQa +aSg +aSg +aSg +aSg +xhI +ndL +pdU +xhI +ngI +sDV +ngI +xhI +vRS +qcw +xhI +xQa +ygw +aSg +xQa +vqe +vcM +nUy +aPz +jDE +eZJ +ykh +akt +ykh +xQa +kuE +aSg +aSg +vWJ +eEd +ttj +pQo +oMw +eMc +bWG +bXD +wXB +wzv +xQa +aPz +aSg +aSg +aPz +jvs +vCE +rbp +hBx +sIs +heV +ncQ +buy +fhu +vCE +xgz +vUa +xrt +yhe +yhe +yhe +xeq +xeq +xeq +xeq +xeq +oxH +kun +doh +mOB +doh +doh +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(103,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aaS +idv +gMR +gMR +gMR +aoY +gMR +gMR +gMR +gMR +gMR +gcF +fbJ +fTB +azP +wcR +wcR +wcR +hOB +hOB +fid +arP +arP +xap +vAG +arP +xZW +xZW +arP +arP +arP +tkt +oXx +arP +oXx +tkt +arP +oXx +tkt +arP +xZW +jmg +arP +xap +xap +xap +xap +bBV +wlj +xap +arP +arP +whM +xQa +aSg +xQa +aSg +sbn +xQa +aPz +aPz +aSg +aPz +aSg +aPz +aSg +aPz +aPz +aPz +xQa +xQa +xhI +iAE +ngI +bjC +czh +ewL +bCC +cDA +rPZ +rPZ +kIn +vEw +eMK +huA +aPz +vqe +xaa +nmb +aPz +ykh +qBo +ykh +hfE +jDE +aPz +iwC +aSg +aSg +siE +pbT +cCf +qQK +gIp +qkS +bWB +nWM +wXB +bZv +cal +aPz +xQa +aPz +aPz +jvs +vCE +hXG +tkd +wSR +tRu +tXe +cBC +rry +vCE +xgz +bwL +uEa +uEa +yhe +yhe +xeq +uEa +pZc +aSI +pZc +uEa +hOV +hOV +hOV +hOV +hOV +kOx +rKf +xrt +mSi +yhe +bmL +cuY +cuY +cvj +yhe +dZH +mGP +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(104,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +ybD +xHw +xHw +jrY +vNp +vNp +uQm +vMU +afB +dVw +wcR +dXF +wcR +hOB +hOB +kFa +voc +oFF +azZ +qpE +hOB +epv +fid +xap +xap +xap +vAG +arP +aqR +aqR +vad +aqR +arP +umI +xap +arP +umI +xap +arP +ceI +xap +arP +dTc +xap +xap +xap +xap +ayE +dJT +ayE +wlj +xap +xap +xZW +aSg +aSg +aSg +xQa +aSg +aSg +aPz +whM +xQa +aSg +aPz +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aSg +vBt +hym +hYD +oTw +mSL +qJb +mSL +ngC +wVs +wVs +viT +rSg +wit +xWV +sUj +crO +xon +hup +kuy +hRG +vDc +ppl +xjq +xjq +lyn +ylH +xWV +vEw +bNJ +lGT +dqP +gAi +hNw +dgH +bWI +piD +rbg +xVE +aSg +qYC +fWQ +tdS +uHD +kYq +vCE +duD +xUR +pZU +caO +yhS +xUR +fQk +vCE +xgz +yhe +yhe +uEa +xrt +uEa +xeq +uEa +uEa +uEa +uEa +uEa +wck +wck +wck +wck +wck +mpz +mpz +uEa +ctg +yhe +evH +cuO +cuO +cvP +yhe +dZH +xdk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(105,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hVD +aaT +ddN +vkc +mLU +ahU +aHx +arZ +arZ +wcR +htr +ylW +bes +nKH +fTB +uhN +fTB +fTB +fTB +uYW +fTB +qDG +xap +xap +ipM +ahP +xZW +aqR +arP +arP +aqR +arP +khR +amg +arP +khR +vzM +arP +khR +vzM +arP +jYA +xap +xap +xap +xap +ayE +sjb +ayE +fnD +gVv +uAQ +xZW +aPz +aPz +aSg +aPz +aPz +aSg +aPz +aSg +aPz +aSg +aSg +aSg +xQa +aSg +aPz +aSg +xQa +xQa +aPz +xhI +xhI +xhI +xhI +sdQ +uth +sdQ +xhI +xhI +xhI +xhI +aSg +sbn +wOt +xQa +kEv +cth +mok +xQa +ykh +eZt +jDE +hfE +ykh +aPz +aSg +wOt +cal +wXB +kGP +tEp +upn +oMw +qkS +lwk +ehA +fFO +xVE +can +cbn +vEw +cdg +cee +pLh +vCE +jxb +xUR +phI +yic +uQA +xUR +rry +vCE +mtM +kry +lcM +pWP +sIa +uEa +xeq +uEa +mGy +flF +flF +oxH +tjK +tjK +tjK +tjK +ceS +jsS +kWQ +uEa +yhe +qBN +fgJ +oJd +oJd +wAe +yhe +dZH +xdk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(106,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hVD +aaU +hcd +wAW +acP +adC +bnt +skK +skK +wcR +luS +fok +snI +hOB +egU +uhN +fTB +fTB +fTB +uYW +fTB +qDG +xap +xap +xap +ahP +xZW +wFA +arP +akv +aqR +xZW +xZW +arP +arP +arP +arP +arP +xZW +arP +arP +buo +xap +xap +nrO +ayE +ayE +fQu +ayE +ayE +xap +wlj +xap +aPz +aSg +aSg +aSg +xQa +aSg +aSg +aSg +aPz +xQa +aPz +obJ +xQa +aSg +aPz +sbn +aPz +aSg +aSg +aSg +xhI +suY +lUG +lTY +ahB +tFQ +lQe +vio +vio +xhI +obJ +xQa +osE +aPz +biA +mex +lPs +aPz +jDE +hfE +ykh +hfE +jDE +xQa +aSg +wOt +szo +wXB +kjI +tEp +hLS +wZS +tgb +aGJ +vdS +wXB +cdd +xQa +kkC +aPz +aPz +aSg +qhp +ckU +fTL +xUR +xUR +xUR +xUR +xUR +swR +pFQ +iLd +afk +afk +lcL +iYc +uEa +xeq +uFn +yhe +xeq +yhe +uEa +tEd +tEd +tEd +tEd +lpJ +jsS +mpz +xrt +cui +uEa +idW +idW +ykg +ykg +ykg +ykg +ykg +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(107,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +ybD +xHw +xHw +pyM +jcj +jcj +ePI +nEt +afG +lsh +wcR +pMC +wcR +hOB +hOB +pAl +lnu +oFF +dtJ +qpE +hOB +epv +fid +xap +xap +xap +vAG +msd +aqR +xZW +dLa +akm +arP +afl +dhY +dhY +xZW +jYA +vnd +pZi +arP +arV +xap +ipM +pgP +ayE +ayE +xJs +xJs +xJs +xOd +xap +wlj +xap +xZW +arP +xQa +xQa +aPz +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aPz +aSg +xQa +aPz +aPz +aSg +xQa +aSg +xhI +suY +xnE +tzW +wXS +rZG +uvw +mSL +mSL +aht +aSg +xQa +wOt +aPz +xQa +xQa +aPz +aPz +jDE +tSa +ykh +hfE +ykh +aPz +aSg +wOt +bQc +vWJ +eDN +bSv +eKV +eKV +dhF +seL +gZe +vWJ +gxJ +vEw +bTI +aSg +vCE +vCE +vCE +vCE +grg +xUR +piS +nXF +eID +xUR +swR +vCE +vCE +vCE +vCE +xgz +lce +xrt +xeq +xeq +xeq +xeq +xeq +rUn +rCB +rCB +rCB +rCB +rSo +mpz +mpz +krh +yhe +yhe +yhe +yhe +xrt +yhe +yhe +yhe +ykg +ykg +ykg +ykg +wXm +wXm +wXm +ykg +ykg +ykg +ykg +ykg +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(108,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wYg +ihv +gMR +gMR +gMR +gMR +anJ +gMR +gMR +gMR +gMR +rhj +nBm +fTB +tGz +wcR +wcR +wcR +hOB +hOB +fid +arP +arP +xap +vAG +arP +arP +arP +xSR +arP +arP +caV +uvk +caV +xZW +oSD +xap +aqR +bLE +xap +xap +xap +jYA +xOd +ylQ +ylQ +ylQ +ylQ +xOd +vTL +wlj +xap +aFj +arP +aSg +aSg +aSg +aSg +aPz +obJ +aPz +aSg +xQa +aSg +xQa +aSg +aSg +whM +aPz +obJ +aPz +aSg +xhI +suY +rVm +fRX +hDA +sii +eeR +hIw +tAR +xhI +aSg +pDc +wOt +aPz +huA +aSg +vRe +aPz +aPz +aPz +aPz +aPz +aPz +aPz +xQa +wOt +aSg +vWJ +pXE +lXP +sfa +iBr +fZZ +cZY +pxs +wXB +kkC +vDN +xVE +aSg +vCE +eYz +oyB +buy +hrR +xUR +von +cJC +dwo +xUR +hoR +buy +oyB +hYK +vCE +xgz +yhe +xrt +wFG +xrt +xrt +uEa +xeq +oxH +tjK +tjK +ifB +tjK +uEa +uEa +xrt +uEa +ctg +cpI +yhe +yhe +xrt +yhe +yhe +yhe +yhe +yhe +yhe +uEa +auB +nrR +mHT +xrt +yhe +yhe +yhe +ykg +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(109,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wYg +gMR +aoY +gMR +gMR +gMR +anJ +aaZ +gMR +gMR +gMR +gMR +nBm +fTB +tGz +wcR +pMm +aoN +xiQ +faS +fid +aVj +xZW +bBV +chd +wtM +aqR +aqR +yeC +aqR +vad +caV +wnK +caV +xZW +hku +aqR +baV +bLE +xap +xap +xap +dDX +xOd +ylQ +ylQ +ylQ +ylQ +ayE +ayE +wlj +xap +axA +xZW +obJ +aPz +xQa +aPz +xQa +aSg +aPz +aSg +xQa +aSg +aPz +aSg +aPz +aPz +aPz +aSg +aPz +aSg +xhI +xhI +xhI +vZs +rZM +xhI +xhI +xhI +xhI +xhI +aPz +aSg +wOt +sHr +aSg +aSg +rJQ +rmM +xQa +lgs +nbT +nbT +nbT +fco +aPz +wOt +aSg +wXB +vWJ +wXB +fFO +dsd +vWJ +wXB +vWJ +vWJ +kkC +mzE +oko +iyA +vCE +uRV +xUR +xUR +xUR +xUR +mtA +xUR +aSv +xUR +xUR +xUR +xUR +rry +vCE +xgz +yhe +uEa +xeq +hZR +spa +uEa +uEa +xrt +xrt +xrt +uEa +uEa +xrt +yhe +yhe +rpI +yhe +cpI +yiP +yhe +uEa +uEa +xrt +yhe +yhe +yhe +yhe +xrt +hmy +yhe +yhe +xrt +yhe +yhe +yhe +ykg +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(110,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wYg +gMR +gMR +gMR +dEv +gMR +anJ +gMR +dEv +gMR +gMR +aaZ +nBm +fTB +kZL +hOB +pBU +dXz +rRM +jEW +fid +aYm +vad +xap +vAG +xZW +arP +arP +arP +ako +arP +xZW +arP +arP +arP +wpp +xap +xap +sZH +xap +xap +dhA +ayE +ayE +ybD +ybD +ybD +ybD +ybD +ayE +wlj +xap +xap +xap +vDO +aPz +sbn +aSg +xQa +aSg +xQa +aSg +aPz +aSg +aSg +aSg +aSg +aSg +aSg +oOH +xQa +aSg +aSg +aSg +xhI +odB +hDA +gOQ +xhI +mML +rZb +xis +aPz +yeZ +wOt +aPz +hyC +aSg +aSg +aSg +aPz +jyP +vDO +aSg +aSg +vDO +obJ +wOt +aSg +xQa +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +kkC +aPz +aPz +xVE +vCE +uRV +xUR +jAL +nXF +xUR +slK +mHH +dwo +xUR +nXF +jAL +xUR +rry +vCE +kFh +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +xId +uNp +ptf +xId +xId +jGD +uEa +uEa +xrt +xrt +uEa +uEa +uEa +yhe +xrt +uEa +uEa +yhe +yhe +ykg +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(111,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wYg +gMR +gMR +gMR +gMR +aaZ +anJ +gMR +aoY +gMR +gMR +gMR +nBm +fTB +lrD +xlV +dEs +lNL +njB +ylk +fid +rRN +arP +xap +vAG +ahQ +aiI +aiH +arP +mle +mle +qCG +wic +xOl +tDr +aqR +nvK +hEO +arP +dTc +xap +xap +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xOd +fnD +gVv +gVv +cnt +sKi +aPz +aPz +aSg +xQa +aSg +xQa +whM +aPz +aPz +aPz +aSg +aPz +aPz +xQa +aSg +xQa +aSg +xQa +aSg +xhI +xKD +kds +xjO +xhI +iwV +fYi +iwV +aPz +cSK +wOt +xQa +hyC +aSg +rmM +glA +aPz +tCo +sWD +mHI +mHI +ntH +aPz +wOt +aSg +mPw +aSg +rSg +rSg +xGa +xHd +xHd +xHd +vcX +vOu +aSg +aSg +xVE +vCE +gXg +xUR +nPO +gOh +rvu +uBS +iMw +xxo +jIb +hpu +xnu +xUR +hRY +vCE +yhe +yhe +yhe +yhe +yhe +uZV +rpI +auB +auB +yhe +yhe +yhe +yhe +yhe +yhe +yhe +yhe +yhe +uFn +yhe +yhe +yhe +xgz +uEa +qBN +nTc +yhe +yhe +yhe +yhe +yhe +yhe +aPH +uEa +xrt +uEa +ykg +ykg +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(112,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wYg +idv +gMR +rWq +gMR +gMR +anJ +gMR +dKW +rWq +gMR +gcF +nBm +fTB +tGz +hOB +bbN +nUE +aSb +nua +fid +arP +xZW +xap +agQ +ahS +xzI +ajc +xZW +wNY +cSq +ipi +dtP +xry +arP +xZW +xZW +arP +arP +uSm +xap +uGD +xOd +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xOd +xap +xap +qUW +vDO +rUL +hNk +xQa +aSg +aPz +aSg +aPz +xQa +aPz +hyC +xQa +aSg +aSg +whM +xQa +aSg +aPz +aSg +aPz +aSg +xhI +deq +fhd +iOA +xhI +kIc +rmD +unj +oKs +cSK +wOt +xQa +xQa +obJ +aPz +xQa +aPz +ghO +bIV +vDO +vDO +vDO +xQa +qDn +vEw +vEw +vEw +vEw +ylH +ekR +ylH +ylH +gyu +bwf +mzE +gMG +cal +xVE +vCE +uRV +xUR +xZL +iwI +ast +tjb +afb +dpC +xtH +nXF +xZL +xUR +rry +vCE +yhe +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +xgz +xrt +hxZ +cKN +cKN +lcM +raa +raa +lcM +lcM +lcM +lcM +mBJ +rLI +auB +wXm +ylQ +ylQ +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(113,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +xHw +sbk +clM +sbk +aXM +sbk +bQR +sbk +iBh +sbk +clM +sbk +rco +eRg +nxy +hOB +fid +wcR +wcR +wcR +fid +avB +xZW +xap +vAG +ahR +aiJ +yay +xZW +mle +mle +wsC +amk +xOl +lPZ +vbi +dTf +arP +tcv +dDX +xap +jYA +xOd +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +jYA +xap +sJF +vDO +rUL +hNk +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aPz +xQa +aPz +aPz +aSg +aPz +aSg +xQa +aSg +xhI +elr +hhJ +xjO +xhI +qaH +ueT +oJS +aPz +fiE +kNM +vEw +vEw +vEw +vEw +gkm +aPz +tco +bIV +vDO +vDO +vDO +xQa +xYn +xYn +aSg +aSg +rSg +rSg +xVE +aSg +aSg +aSg +aSg +aSg +aSg +aSg +xVE +vCE +uRV +xUR +xUR +eLy +pcT +fiR +xUR +ncT +cBC +xUR +xUR +xUR +rry +vCE +yhe +ykg +jDs +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +xNt +mKl +ykg +kFh +xId +bIe +lyQ +tuI +wqJ +auB +auB +yhe +yhe +uEa +rpI +oGW +rLI +auB +wXm +ybD +ybD +xJs +ylQ +ylQ +ylQ +ylQ +vHL +vHL +vHL +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(114,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +aqR +aqR +aqR +aqR +sbk +oud +qpl +aaC +clM +bSp +clM +ucj +dZQ +fwA +sbk +plK +dEs +aGT +rqb +fid +aqR +aqR +wSC +wSC +wSC +ftR +tNl +vAG +xZW +arP +arP +arP +arP +arP +awS +pbA +xOl +sOD +sOD +aoz +arP +xap +xap +xap +dDX +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xOd +xOd +ayE +vDO +rUL +vDO +aPz +xQa +xQa +aPz +xQa +aPz +aPz +aPz +aPz +aSg +aSg +aSg +aSg +aSg +aPz +aSg +xQa +aSg +xhI +rHS +hhJ +kte +xhI +fei +fWx +cNY +aPz +gIc +ygw +aSg +xQa +aSg +aPz +jfO +xQa +vDO +bIV +vDO +vDO +vDO +aPz +hyC +hyC +aPz +xQa +xQa +rSg +xVE +aSg +aPz +xQa +aPz +aPz +xQa +aPz +xVE +vCE +jJn +jhi +dlO +kTc +mtG +qZR +qZR +spw +mOM +dyG +dlO +amb +vCE +vCE +hjf +ykg +njj +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +njj +xDl +xDl +xDl +yhe +cZt +yhe +mWs +rVW +rVW +tuI +tuI +tuI +tuI +lUU +rLI +auB +wXm +ylQ +ylQ +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +iSu +ylQ +iSu +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(115,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +ayE +sgh +ayE +aqR +aqR +sIO +sIO +aqR +sbk +lfb +epz +eco +clM +jaB +clM +lJQ +sbk +fwY +sbk +xzd +jFb +laA +mfO +fid +aqR +lmE +xPb +arP +aqR +arP +tNl +vAG +xap +xap +xZW +gqM +iMY +akU +siZ +aDp +amT +kJU +aXC +trn +xZW +xap +xap +hIU +ayE +ayE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ylQ +ylb +vDO +pxC +aom +aMd +aSg +aSg +aSg +aSg +aSg +aSg +xQa +aSg +aSg +aPz +xQa +aPz +aSg +xQa +aSg +aPz +aSg +xhI +xjO +vwl +wvg +xhI +aPz +aPz +aPz +aPz +cwG +gDO +aSg +aSg +aSg +aSg +jfO +xQa +sHr +aPz +xQa +xQa +aPz +aPz +aPz +aPz +aPz +aSg +aSg +rSg +xVE +aSg +aSg +can +aSg +aPz +xgL +vsy +xVE +vCE +vCE +vCE +xHg +kWi +rTQ +wCL +lZp +hbW +rTQ +uqS +xHg +vCE +vCE +uWD +iWj +xDl +njj +xDl +doK +dqa +doK +xDl +taB +okj +taB +xDl +ifh +taS +ifh +xDl +gvX +gvX +gvX +xDl +rrW +sHY +adR +wrA +pFC +hoI +pFC +jAo +pFC +fLt +pFC +pFC +qGz +xrt +udL +uEa +xrt +ykg +ykg +ykg +xJs +ylQ +ylQ +goE +goE +ylQ +iSu +ylQ +iSu +ylQ +goE +goE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(116,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +aaa +aqR +acw +aqR +aqR +hJQ +aqR +aqR +sbk +sbk +asl +sbk +sbk +kub +sbk +clM +sbk +fCi +sbk +ygX +jGq +lfh +mjZ +fid +aqR +arP +kQq +arP +ebP +qKv +tNl +iRF +udZ +xap +xZW +tcV +xZW +arP +alB +amn +amV +arP +arP +xZW +xZW +dhA +xap +uGD +xOd +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ybD +ylQ +ylb +ylb +vDO +rUL +xQa +obJ +xQa +aPz +aPz +aSg +aSg +aSg +aSg +aSg +aSg +aPz +aSg +aSg +xQa +aSg +aPz +aPz +xhI +xhI +rfb +xhI +xhI +qgb +iwC +cwG +dsX +gDO +aSg +xQa +xQa +vrn +aPz +qDn +nwP +aSg +aPz +xTm +nQi +uLh +aPz +xQa +thQ +xGa +xHd +xHd +nky +vWg +gJL +aSg +aSg +oOH +aPz +qhD +vsy +xVE +aPz +aSg +vCE +nJj +hIB +rTQ +xHg +xHg +xHg +rTQ +nxI +nJj +vCE +oEe +rLU +cWT +xDl +njj +xDl +doK +sld +doK +xDl +taB +vZd +taB +xDl +ifh +aIm +ifh +xDl +gvX +hCq +gvX +xDl +ybD +xDl +xDl +xDl +seX +wdA +qxG +uEa +xrt +xrt +uEa +uEa +njO +uEa +udL +yhe +yhe +ipf +yhe +tLb +xJs +xJs +ylQ +ylQ +goE +goE +goE +goE +goE +goE +goE +ylQ +ylQ +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(117,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +ayE +aqR +ayE +aqR +aqR +sIO +sIO +aqR +sbk +adp +azv +irU +ive +bCy +sbk +jKj +eYZ +iyv +clM +dEs +dOM +lfk +mly +fid +aqR +uiS +sIO +jZI +aqR +arP +arP +arP +iRF +xBd +xzp +anF +nrO +arP +arP +arP +xZW +arP +ayI +xap +xap +xap +xap +jYA +xOd +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +wjV +qsA +rUL +vDO +vDO +vDO +vDO +aPz +aPz +aPz +aPz +aSg +aPz +aSg +xQa +aSg +aPz +aPz +aSg +aPz +whM +whM +aPz +jtP +aSg +aSg +aSg +cwG +gDO +xQa +sHr +aPz +aPz +tuS +vDO +xQa +aSg +wOt +aSg +xQa +gJL +gJL +xGa +xHd +xHd +xHd +vWg +ylb +ylb +okv +okv +okv +ylb +ylb +aSg +xQa +xgL +vsy +xVE +xDl +xDl +vCE +xHg +kWi +rTQ +twR +mfv +tEn +rTQ +uqS +xHg +vCE +fkK +jVZ +fkK +xDl +njj +xDl +sKE +jBY +oIj +xDl +ovq +cDg +wTD +xDl +qXV +pnH +oQv +xDl +nZt +sYY +uCB +xDl +ybD +xDl +iUT +iUT +yhe +cZt +vUa +uEa +yhe +yhe +aPH +xrt +rHm +yhe +nKJ +wqJ +bwL +ykg +tOH +ykg +ykg +xJs +xJs +ylQ +iSu +ylQ +ylQ +iSu +ylQ +ylQ +iSu +iSu +iSu +iSu +iSu +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(118,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +aqR +aqR +aqR +aqR +edt +lEX +aFV +kzb +kzb +bMb +xao +aHR +oJn +fIE +gZt +ihH +jIw +lkL +mot +edt +aqR +uiS +sIO +cVb +aqR +oSO +qqn +xZW +pHp +tNl +tNl +tNl +tNl +tNl +vMp +tNl +mMD +tNl +tNl +tNl +tNl +tNl +tNl +buo +xOd +ylQ +ybD +qvD +ylQ +ylQ +ylQ +qvD +ybD +ylQ +ylQ +ylQ +wjV +nkM +rUL +vDO +vDO +vDO +vDO +vDO +vDO +vDO +aPz +aSg +aPz +aSg +aPz +aSg +aSg +aSg +aSg +xQa +xHi +wQH +uHD +aqC +qLS +qLS +uzC +qdV +aPz +aPz +jps +fkY +xQa +ipG +aSg +aPz +aPz +wOt +aSg +xQa +iwC +iwC +xTP +ylb +ylb +ylb +ylb +ylb +xhE +yir +yir +yir +kNs +ylb +ylb +ylb +ylb +ylb +xVE +xDl +sfj +wuK +wuK +oAb +wuK +wuK +wuK +wuK +wuK +bRv +wuK +oHr +wuK +wuK +nRa +dJA +qNh +xDl +uJn +iJB +xZm +xDl +uJn +iJB +xZm +xDl +hEz +iJB +snp +xDl +uJn +iJB +xZm +xDl +ybD +xDl +siF +bXo +bXo +hci +lcM +igV +lcM +lcM +lcM +lcM +xmH +kSs +asS +kFd +xDl +xDl +xDl +xDl +xDl +xDl +xJs +iKo +mJG +iKo +mJG +ybD +ybD +goE +iSu +goE +goE +goE +iSu +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(119,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ayE +ayE +ayE +ayE +ayE +eEf +eEf +eEf +jCB +waD +eod +sbk +tTs +flY +eVo +clM +abC +kxh +lpt +tiw +fid +aqR +ayE +ayE +xOd +xOd +xOd +ayE +ayE +vTL +xap +jYA +jYA +xap +xap +bBV +dTc +dTc +dTc +xap +xap +xap +ayE +gAq +ayE +ayE +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +wjV +qwp +nLY +vDN +cnt +cnt +cnt +cnt +cnt +sKi +aPz +aSg +aSg +aSg +xQa +aSg +aSg +aPz +aSg +aPz +xVE +xQa +aPz +aPz +xQa +xQa +xVE +ygw +aPz +rzt +aSg +kZc +aPz +rdB +vDO +www +xQa +wOt +aSg +xQa +bgJ +bgJ +xTP +ylb +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +ylb +oko +nTf +tHe +gpE +fTC +rJH +vUg +nes +mkr +dgL +sLd +eJG +rLU +qPc +clu +gOc +iWg +xDl +dkX +ybD +ttz +ybD +oli +icH +ttz +ybD +oli +icH +qnJ +ybD +xtn +iMr +ttz +ybD +voS +ybD +ybD +xDl +hXb +xDl +xDl +xDl +xDl +xDl +sIa +gHZ +oLo +uEa +miL +uKm +otM +kFd +xDl +gvX +gvX +gvX +bzX +xJs +xJs +oOL +oOL +oOL +oOL +qKC +aUG +cEh +aUG +iSu +iSu +goE +ylQ +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(120,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +eEf +clM +clM +clM +eEf +clM +clM +clM +eEf +fid +fsE +oZK +fsE +fid +ayE +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +xOd +xOd +xOd +ayE +ayE +ayE +xOd +xOd +xOd +ayE +ayE +aqR +ayE +wSC +svI +ayE +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +ylb +ylb +ylb +ylb +nsm +hcx +wZv +oIC +vDO +rUL +aPz +aPz +aPz +aPz +xQa +xQa +obJ +aPz +xHi +fWQ +wNO +oCa +aSg +aSg +aSg +xQa +xVE +eRQ +wXB +wXB +vWJ +vWJ +vWJ +wXB +wXB +vWJ +wXB +wOt +aSg +aPz +aSg +aSg +xTP +ylb +xCl +xCl +xCl +xCl +xCl +xJs +xJs +xJs +xCl +xCl +xCl +xCl +xCl +ylb +aSg +xDl +uNH +xuT +pVD +pVD +hEu +pVD +dzS +pVD +iaf +dzS +pVD +dYy +vsp +the +aMA +xDl +ltP +lQz +xgy +fkK +pKX +lko +xgy +fkK +pKX +lko +dRd +fkK +lDP +bJX +xgy +fkK +pKX +xDl +xDl +xDl +jQC +xDl +mDm +fFa +qpu +xDl +xDl +xDl +xDl +xDl +xDl +kNe +xDl +piG +xDl +wbs +sSU +hCa +bzX +xJs +erN +qpK +dPI +vTO +vTO +vTO +vTO +vTO +oWX +ucd +iSu +goE +goE +iSu +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(121,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +mfe +rMM +moz +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +xhZ +ayE +ayE +ybD +ybD +uMt +xWL +xWL +xWL +uMt +ybD +ybD +ybD +ybD +ybD +ybD +ylQ +ylb +wjV +wjV +wjV +ylb +vDO +rUL +xDJ +vDO +vDO +vDO +hgS +cnt +sKi +xQa +rVQ +xQa +xQa +aPz +xQa +aSg +aSg +aPz +xVE +ygw +wXB +dpX +qTN +iwE +xrO +eDg +sxJ +aFl +vWJ +wOt +aSg +lfm +cxu +xHd +kQR +ylb +xCl +xCl +xzD +jmj +sEV +sEV +gEX +sEV +sEV +osc +vka +xCl +xzD +xDl +xDl +xDl +hXj +poD +rLU +bKC +wNZ +fHA +sas +roZ +wNZ +haZ +efg +dlZ +eED +gRk +mFX +fkK +fAj +ciz +kUH +asg +nno +mCO +lpW +wuS +ght +eMb +bgA +ftz +fXK +eZg +eWd +xPt +szu +gfP +xDl +nGd +lYB +cEz +bqx +ggN +ggN +ggN +ggN +etR +xDl +qxQ +vla +gKM +yjq +hqn +iJB +nmm +gvX +nmm +bzX +xJs +cab +vTO +dPI +dPI +dPI +dPI +vTO +vTO +oWX +ahb +iSu +iSu +goE +ylQ +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(122,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +jIP +rMM +cLk +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wpo +wpo +xJs +ylQ +ylQ +uMt +uMt +jbx +pNm +fWh +uMt +ylQ +ylQ +xdS +tmO +xJs +wce +ylQ +ybD +ylQ +ylQ +ylQ +ylb +vDO +pxC +sgk +cnt +cnt +cnt +alk +vDO +rUL +aPz +oko +sar +uHD +wpq +xQa +aSg +aPz +aPz +xVE +ygw +ggq +kyN +lNw +fwK +eLS +bhk +krq +dOp +wXB +qDn +ylH +fdx +aSg +rSg +ylb +ylb +vka +xCl +jmj +hXk +ybD +ybD +xJs +ybD +ybD +jRy +osc +xCl +vrw +hAq +aDh +hwH +iYP +poD +rLU +mTE +rxR +rxR +rxR +rxR +rxR +vMZ +dTJ +fDW +ylX +wDd +dAO +pUp +xzO +tPd +jvW +vin +dOZ +ufu +fmm +vin +dOZ +ccr +hXw +vin +hXw +ufu +lcc +vin +ccr +raQ +fkK +vur +ndO +mWe +lDJ +kBn +pwr +xYV +rLU +lMQ +xDl +ckD +lfp +gKM +yjq +wdF +xDl +xLC +eRs +xLC +xDl +lrh +gUq +vTO +oWX +vTO +vTO +dPI +dPI +dPI +oWX +eRo +ucd +ylQ +goE +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(123,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fid +jJX +rMM +pdP +fid +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +wpo +ybD +xJs +ylQ +ylQ +uMt +owb +rYP +ese +rYP +uMt +ybD +ylQ +poX +xCl +nFv +vhk +ylQ +ybD +ylQ +ylQ +ybD +ylb +ylb +ylb +ylb +aPz +tWP +eyV +vDO +aPz +rkR +aPz +xQa +xQa +aPz +tGc +xQa +aSg +aPz +aSg +xVE +ygw +aoT +dqw +bbS +msf +dzs +dEd +yfZ +qXp +xvj +rSg +rSg +jvs +rSg +rSg +ylb +fjI +mdn +xCl +pZh +ybD +yaE +yaE +xJs +yaE +yaE +ybD +xDg +xCl +aMD +xDl +xDl +xDl +kvi +vow +rLU +bKb +wNZ +mnN +mnN +mnN +wNZ +sdy +nGN +ohY +vsp +the +sUA +dsT +vGH +vGH +vGH +vGH +nns +hVQ +mqJ +mqJ +kIH +exG +sbu +mqJ +sbu +exG +mqJ +eom +gqX +pJF +kVW +vur +tHN +xDl +iJB +iJB +iJB +xDl +rLU +lMQ +xDl +tNe +rfL +gKM +wdZ +uVO +fkK +oSz +rLU +nQx +xDl +qKC +kUt +vTO +oWX +vTO +vTO +vTO +vTO +dPI +dPI +res +eez +ylQ +ylQ +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(124,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +jOT +fow +mpO +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wpo +wpo +xJs +ylQ +ybD +xWL +wUK +vUy +vUy +rYP +xWL +wce +ylQ +poX +gPe +xCl +xJs +xJs +xJs +xJs +xJs +ybD +xJs +ylb +can +lSx +lqw +lqw +via +efN +aPz +oko +uHD +iyA +whM +aPz +xVE +xQa +aSg +xQa +aSg +pVs +uly +vWJ +pVJ +rNr +ocV +pIi +lXt +xxg +tZI +rYU +aPz +aSg +jvs +ylb +ylb +ylb +yir +kNs +xJs +pZh +ybD +yaE +hJo +xCl +jgJ +yaE +ybD +xDg +xJs +pTt +ruC +ylI +apa +tHN +poD +rLU +wiL +vvd +mnx +kND +mnx +jWe +rLf +ifX +kJc +jDr +nQZ +bYk +wEf +wEf +wEf +wEf +lpQ +cHm +lBH +fMI +fMI +ydW +fMI +lga +nwG +tgy +gWJ +rLU +rLU +vWQ +pJF +cqj +vur +cQH +xDl +yaE +ybD +yaE +xDl +rLU +lMQ +fkK +nQz +scU +gKM +rLU +rLU +fkK +rhb +rwP +uJb +fkK +uEC +kUt +fie +uEC +eez +nqF +eez +nqF +eez +uEC +res +daX +aUG +iSu +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(125,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +iow +lrm +mrv +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +wpo +ybD +ybD +ybD +xWL +wUK +tfz +vUy +pnK +bmp +vhk +ybD +hvM +oGm +xJs +saj +ylQ +ybD +ybD +xJs +xJs +xJs +eep +aSg +aVu +oNm +oNm +gel +uvf +aPz +aPz +xQa +xVE +aPz +aPz +tGc +aPz +aSg +aPz +aSg +aMf +aSg +wXB +giE +lTR +aFg +wnC +svm +snq +kSR +wXB +dPb +aSg +jvs +toF +aSg +viM +xCl +xCl +xJs +fhl +xJs +xJs +xCl +xjE +xCl +xJs +xJs +vBi +xJs +vrw +iJB +twN +jqD +mWu +rJH +rLU +wiL +cpq +iZv +cIk +iZv +pkQ +nWy +pHS +eyg +gey +lKO +pJv +vsp +vsp +vsp +vsp +the +rLU +nmi +vsp +vsp +vsp +vsp +vsp +vsp +vsp +ryD +rLU +rLU +vWQ +pJF +fkK +vur +oEM +xDl +ybD +msa +ybD +xDl +gKM +ikU +iwg +vUP +qiw +pEq +kWs +kWs +wzI +kWs +ctQ +iNK +fkK +yaE +bQV +oYv +oYv +oYv +oYv +oYv +oYv +oYv +oYv +oYv +oYv +oOL +ylQ +goE +iSu +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(126,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +jRa +fXf +kYG +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wpo +wpo +xJs +ylQ +ybD +xWL +wUK +vUy +vUy +hme +xWL +vhk +ylQ +ylQ +ylQ +xJs +ylQ +ylQ +ybD +ylQ +ylQ +ybD +xJs +ylb +ikM +ylb +lqw +lqw +via +vDO +foB +xHi +wQH +pio +wQH +uHD +wNO +xQa +aSg +aPz +aSg +xVE +aSg +wXB +vWJ +xFL +wXB +xFL +vWJ +xFL +vWJ +vWJ +aPz +aSg +jvs +ylb +ylb +ylb +xCl +xCl +xJs +pZh +ybD +yaE +tjI +xCl +uQo +yaE +ybD +xDg +xJs +uHm +ruC +ylI +iWm +tHN +rLU +rLU +emg +oBc +rLf +hZh +rLf +joZ +rTp +kZU +xVN +ggf +qvA +nGk +oPY +oPY +oPY +oPY +thW +wDN +uTE +pOf +pOf +pOf +pOf +pOf +pOf +pOf +mrR +gKM +gKM +uec +ftV +nEy +sIz +aEH +xDl +yaE +ybD +yaE +xDl +gKM +jNs +dDS +gxa +vlm +ybe +xjW +iYx +fkK +vcO +mCh +vnk +fkK +iKo +kUt +mJG +iKo +ucd +qKC +ucd +qKC +ucd +iKo +res +daX +ahb +iSu +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(127,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fid +gLf +tGz +txF +fid +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +wpo +ybD +xJs +ylQ +ylQ +uMt +qru +rYP +rYP +rYP +uMt +xJs +xJs +xJs +xJs +xJs +ybD +ybD +ybD +ylQ +ylQ +ybD +xKG +xKG +xKG +xKG +aPz +tWP +oEj +aPz +aPz +rkR +aPz +bwp +xQa +aPz +aPz +xQa +vtF +aPz +xQa +lrX +uHD +uHD +uHD +uHD +uHD +uHD +uHD +uHD +qRZ +wFe +fhT +uHD +kYq +aPz +aSg +ylb +xCl +xCl +xCl +pZh +ybD +yaE +yaE +xJs +yaE +yaE +ybD +xDg +xCl +eYL +xDl +xDl +xDl +jiy +vwh +nmi +sAE +sAE +rjM +rjM +rjM +sAE +sAE +liT +kvP +gIk +emu +fXm +hMS +mqJ +mqJ +mqJ +mqJ +mqJ +mqJ +tGm +mqJ +mqJ +mqJ +fZH +mqJ +mqJ +mqJ +tGm +eom +pKu +pJF +cqj +vur +gwm +xDl +iJB +iJB +iJB +xDl +gKM +omZ +xDl +azX +mdG +eJG +riX +aur +fkK +nQs +rLU +lik +xDl +nqF +kUt +vTO +oWX +vTO +vTO +vTO +vTO +dPI +dPI +res +ucd +ylQ +ylQ +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(128,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +mfe +tGz +pzF +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wpo +wpo +xJs +ylQ +ylQ +uMt +uMt +fOa +crI +sBd +uMt +ybD +ylQ +ylQ +ylQ +xJs +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +xKG +yiW +yiW +yiW +xiu +utT +utT +utT +utT +xnC +ylm +wNy +yiW +yiW +yiW +yiW +yiW +yiW +xQa +aPz +bsp +uaB +wNj +pcK +aSg +aSg +aSg +aSg +aSg +aSg +xVE +xQa +jfO +aPz +aSg +ylb +ylb +xCl +xCl +jaU +wce +ybD +ybD +xJs +ybD +ybD +mSN +nND +xCl +vrw +xXV +aDh +hwH +rGD +vQb +qbd +sAE +nqb +qoC +fRc +qoC +cMr +sAE +rfy +jLN +iFJ +kZl +oJI +ipq +ddn +vin +vin +vin +vin +vin +xHN +vin +fUb +vin +xHN +vin +eeQ +vin +xHN +vin +xcV +dmo +fkK +vur +mHa +qPM +oXu +wmc +eEB +qGS +gKM +omZ +xDl +khi +lfp +eJG +ppH +dgX +xDl +xLC +eRs +xLC +xDl +lrh +cab +vTO +oWX +vTO +vTO +dPI +dPI +dPI +oWX +eRo +eez +ylQ +goE +goE +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(129,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +fsE +jIP +tGz +qpU +fsE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +gdz +ayE +ayE +ybD +ybD +uMt +xWL +xWL +xWL +uMt +ybD +ybD +ybD +ybD +ybD +ybD +ylQ +xKG +smm +smm +smm +xKG +yiW +wdj +dbO +wNy +xLV +xLV +ylm +ylm +fJb +xLV +wNy +yiW +yiW +yiW +yiW +yiW +yiW +yiW +aPz +aPz +xQa +aPz +aPz +sbn +whM +aPz +aPz +xQa +xQa +oko +xHd +lBE +qrP +wzY +pAr +ylb +xCl +xCl +xhE +jaU +hMi +hMi +iPo +hMi +hMi +nND +kNs +xCl +xhE +xDl +xDl +tjW +oKF +tQD +sAE +xdx +cmC +ozp +ozp +ozp +wOT +xdx +cYj +pFz +lbp +kWZ +lhb +fkK +mbf +afE +myM +smh +pOY +uXS +ylw +jMY +bjG +joC +uXE +fFt +qrF +oCj +wOG +dhD +mmG +eLB +xDl +iuh +wsW +gyN +tAF +uBl +mXN +mXN +mXN +chj +xDl +wdc +vla +eJG +cHc +kHt +iJB +nmm +gvX +nmm +xHt +xJs +gUq +vTO +dPI +dPI +dPI +dPI +vTO +vTO +oWX +aUG +iSu +iSu +goE +ylQ +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(130,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xOd +xOd +xOd +ayE +xpW +xpW +xpW +xpW +xpW +wPO +gcZ +wPO +xpW +xpW +xpW +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +xOd +xOd +xOd +ayE +ayE +ayE +xOd +xOd +xOd +ayE +ayE +qqn +ayE +wSC +svI +ayE +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +xKG +xKG +xKG +xKG +xiu +utT +utT +lES +utT +cKU +utT +xnC +ylm +yiW +yiW +mkh +dcf +yiW +wNy +mkh +pCD +yiW +yiW +mkh +pCD +yiW +hqi +yiW +yiW +yiW +ylm +xLV +xLV +ylm +yiW +yiW +aPp +yiW +xEs +ylm +yiW +xwT +nOf +xKG +xCl +xCl +xCl +xCl +xCl +xJs +xJs +xJs +xCl +xCl +xCl +xCl +xCl +xKG +xiu +uMe +xGO +eHE +nOx +uMO +wFZ +xhX +xhX +xhX +eeh +sAE +vnt +evJ +wdi +ewm +gKE +xDl +osW +xDl +fkK +fkK +fkK +xDl +pKX +fkK +xgy +xDl +pKX +fkK +xgy +xDl +pKX +fkK +xgy +xDl +xDl +xDl +xDl +xDl +dvP +sCi +qid +cqk +cqk +cqk +cqk +cqk +qid +xvU +qid +cqk +cqk +xEY +gvX +lVD +xHt +xJs +erN +qpK +dPI +vTO +vTO +vTO +vTO +vTO +oWX +eez +iSu +goE +goE +iSu +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(131,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +qvD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ayE +ayE +ayE +ayE +ayE +ayE +ayE +ayE +pOy +aqR +pOy +qLo +xpW +ebo +fIP +haB +ila +aci +lry +aci +nlb +omL +xpW +ayE +xOd +xOd +xOd +ayE +ayE +dhA +xap +dTc +dTc +oSO +akn +dTc +dTc +dTc +xap +nEZ +arP +aqR +ayE +gsn +ayE +ayE +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +smm +rEi +utT +utT +xnC +ylm +ylm +ylm +ylm +yiW +yiW +xLV +ylm +yiW +yiW +yiW +yiW +yiW +wNy +yiW +yiW +yiW +yiW +yiW +yiW +yiW +ylm +yiW +yiW +yiW +aPp +yiW +yiW +yiW +yiW +xLV +ylm +nvG +xEs +xLV +yiW +xwT +wNy +xKG +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xKG +wNy +tjW +dcJ +waG +nVN +uYt +beQ +nVN +uHO +nVN +mwT +ehY +nWG +vqj +cWf +obM +wWa +jTH +ria +ybD +xJs +ybD +xJs +ybD +voS +ybD +ttz +ybD +voS +ybD +ttz +ybD +voS +ybD +ttz +ybD +xJs +cUU +mBh +hwH +sqr +gcX +cRm +cqk +bZn +eCb +vmG +iBg +wXG +bzV +oVV +iiC +cqk +gvX +gvX +gvX +xHt +xJs +xJs +oOL +oOL +oOL +oOL +nqF +ahb +msr +ahb +iSu +iSu +goE +ylQ +ylQ +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(132,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +ybD +ybD +ayE +aqR +aqR +aqR +xZW +aqR +aqR +aqR +aqR +xpW +ebo +fMy +aci +iqF +lLe +lsq +lLe +nmJ +opd +pmz +wgw +wgw +wgw +lCp +sfX +arP +tGf +xBq +plV +plV +plV +plV +akA +akA +plV +ovB +xap +xZW +cUO +wgw +wgw +wud +xOd +ylQ +ybD +qvD +ylQ +ylQ +ylQ +qvD +ybD +ylQ +ylQ +ylQ +smm +wNy +ylm +xLV +xLV +ylm +siq +yiW +xLV +xiu +sbG +gvS +utT +utT +utT +utT +utT +utT +xnC +yiW +yiW +yiW +yiW +yiW +yiW +ylm +xLV +xLV +ylm +xLV +ylm +xLV +xLV +ylm +ylm +xLV +yiW +yiW +xEs +ylm +yiW +xwT +sYM +xKG +xKG +xKG +xKG +xKG +xzD +tMN +tMN +tMN +vka +tjW +tjW +tjW +tjW +tjW +uVv +tjW +eyi +pwx +daz +jZW +pdF +puq +sFb +vfP +kBv +sAE +ioF +kvP +dGj +pup +pJF +tAA +iMr +xDl +xDl +iJB +xDl +xDl +xZm +iJB +uJn +xDl +xZm +iJB +uJn +xDl +xZm +iJB +uJn +xDl +ybD +xDl +hte +xDl +leK +gcX +jav +cqk +uwY +uwY +uwY +uwY +uwY +uwY +uwY +sBZ +cqk +xDl +xDl +xDl +xDl +xDl +xJs +uEC +fie +uEC +fie +ybD +ybD +goE +iSu +goE +goE +goE +iSu +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(133,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +ayE +aqR +ayE +ael +ylQ +ylQ +xOd +sIO +aqR +aqR +xZW +arP +aqR +xZW +arP +xpW +xpW +xpW +wPO +irb +jUa +xpW +lAM +nnw +lAM +xpW +xpW +xpW +wSC +yiO +els +xZW +dtA +xMh +yfB +jJW +jJW +jJW +jJW +jJW +ffm +iRF +jHs +twT +exR +wSC +qKv +yiO +xOd +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ylQ +ylQ +ylQ +smm +wNy +ylm +yiW +yiW +ylm +kkj +yiW +ylm +wNy +fwX +ylm +ylm +ylm +ylm +aPp +ylm +xSX +wQC +wQC +xSX +xSX +wQC +wQC +wQC +xSX +mKT +yiW +xno +ylm +ylm +mRv +jNN +rbT +yiW +yiW +xEs +xEs +xEs +ylm +dTQ +mrZ +tGT +rHc +pCu +lAu +oyZ +xKG +xKG +sIv +sIv +sIv +xKG +tjW +oHP +iFH +udj +mxZ +lXm +tjW +dpH +dvz +qqG +tjW +qqG +qqG +mvV +nae +qqG +xdx +hYs +kvP +wHT +nZj +rjW +eBE +fbV +xtZ +dbm +gvX +gvX +xDl +txR +aGD +qzS +xDl +nRW +hft +rKe +xDl +frf +jdL +cZm +xDl +ybD +xDl +xDl +xDl +dvP +sCi +qid +cqk +uNe +wJh +flO +pOE +knj +uNe +wJh +cqk +cqk +hrr +pSX +cqk +cqk +xJs +xJs +ylQ +iSu +ylQ +ylQ +iSu +ylQ +ylQ +iSu +iSu +iSu +iSu +iSu +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(134,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +abe +aqR +adl +ael +ylQ +ylQ +xOd +sIO +cVb +aqR +aqR +aqR +hJQ +aqR +aqR +sIO +sIO +dLc +hcp +ixO +jXr +xpW +ajW +nnV +opU +pmJ +pTQ +xpW +rVx +sNw +mOp +vBF +vpC +anF +apq +xOl +xOl +xOl +xOl +xOl +fjT +xap +aqR +arP +aqR +aqR +uiS +yiO +xOd +ylQ +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ybD +ylQ +xKG +xKG +wNy +xLV +yiW +yiW +ylm +siq +yiW +ylm +wNy +ylm +ylm +jtr +tio +yiW +yiW +rrd +xSX +sEh +acZ +mWw +ved +gtB +fzI +mDo +xSX +btc +xRN +oZi +xLV +yiW +yiW +yiW +rbT +yiW +fJb +xEs +oAm +xEs +xLV +yiW +xEs +yiW +ylm +xLV +hfu +vFF +pFm +pFm +tOy +ciH +fjo +kPQ +xdx +kuR +dkr +mXb +inO +dNr +ruE +hvb +nsg +fIO +dFW +sXU +bIZ +ohp +gHx +oUi +xdx +rqK +fgh +sKw +rLU +aUm +fkK +kQB +iJB +mWC +qmn +gvX +xDl +xuH +gNx +xuH +xDl +hft +dce +hft +xDl +uQi +gdj +uQi +xDl +ybD +qid +pDU +pDU +wZH +gcX +dIo +obk +tWv +tWv +fsR +oSn +lhW +tWv +tWv +mtn +nUR +ogg +gzp +vQH +xJs +xJs +ylQ +ylQ +goE +goE +goE +goE +goE +goE +goE +ylQ +ylQ +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(135,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xJs +ayE +sgh +ayE +agl +ylQ +ylQ +xOd +sIO +aqR +aqR +pgW +aqR +aqR +aqR +aqR +aqR +aqR +dLc +hda +iyk +jXJ +xpW +vQN +vQN +gSh +vQN +vQN +xpW +xZW +xZW +arP +arP +dhJ +anc +ygn +xOl +xOl +xSq +iyD +xOl +fjT +xap +lFW +arP +arP +aqR +aqR +yiO +ayE +ayE +ybD +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ybD +ylQ +xKG +yiW +wNy +ylm +yiW +xLV +ylm +xLV +iBy +xLV +sYM +ylm +yiW +yiW +yiW +yiW +yiW +rrd +wQC +boj +rDE +owD +bjO +vGg +tCF +nbK +wQC +clh +yiW +xLV +ylm +yiW +xEs +xEs +xEs +xEs +xEs +xEs +oAm +xEs +xEs +xEs +xEs +yiW +kkj +xLV +ylm +yiW +yiW +xEs +yiW +tIo +yiW +fyc +wUx +gYK +lXm +dNr +dNr +dNr +rmB +eqg +dNr +jJj +tjW +gOX +ovM +bNQ +jnK +uqM +xdx +szi +dXR +kzm +xKQ +ico +bJW +qse +fZn +hVB +qgr +gvX +xDl +xuH +tyc +xuH +xDl +hft +lDL +hft +xDl +uQi +uBF +uQi +xDl +ybD +qid +uwY +qma +iLL +qLw +nMl +jzC +oSn +oSn +oSn +oSn +oSn +oSn +oSn +ghz +cqk +cqk +cqk +cqk +xJs +ylQ +ylQ +goE +goE +ylQ +iSu +ylQ +iSu +ylQ +goE +goE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(136,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +ybD +ybD +ayE +aqR +aqR +agS +agS +agS +agS +agS +aqR +dLc +edt +dLc +het +izp +jYz +xpW +bwo +nth +fsz +nth +qbv +xpW +rYh +tbx +ujH +vDD +aiA +xCC +ygn +xOl +nlK +xOl +xOl +xOl +fjT +xap +bmM +xZW +arP +arP +cQy +yiO +sIO +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +xOd +xOd +ayE +yiW +wNy +xLV +yiW +yiW +yiW +yiW +yiW +xLV +wNy +ylm +yiW +yiW +vwL +yiW +yiW +yiW +wQC +rFx +tdC +pmw +vGg +kGA +lTh +iML +wQC +ylm +iBy +xLV +xEs +xEs +xEs +ylm +ylm +smm +smm +smm +ylm +ylm +ylm +ylm +bCV +fwX +ylm +ylm +ylm +xLV +xLV +xEs +ylm +xLV +ylm +xqu +xdx +xdx +xdx +ccj +xdx +xdx +xdx +eqg +pBb +iKT +tjW +jIQ +sFb +vLT +eWO +xdx +xdx +oVx +kbF +hbD +rLU +rCY +jtb +pZl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +xDl +ybD +qid +qTT +nbi +dvP +dFX +qid +blN +oSn +uFL +uwY +xES +uwY +aGU +oSn +oSn +qid +ybD +ylQ +ylQ +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +iSu +ylQ +iSu +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(137,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +agS +agS +agS +aJe +aYn +bst +agS +agS +dLc +egN +fNv +hhc +iFY +jYO +lAM +muM +nuM +orS +nuM +muM +xpW +shw +sOD +piB +sOD +wwq +aqR +ygn +xae +hXC +oWB +aqR +xae +fjT +aqR +xap +xZW +aqR +arP +rGQ +yiO +aFF +xOd +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +aqR +aqR +aqR +xiu +xnC +xLV +yiW +eBj +iWi +yiW +yiW +ylm +wNy +xLV +yiW +yiW +yiW +rrd +yiW +yiW +xSX +mBk +tdC +vGg +iAl +kXY +lTh +dwG +xSX +lEO +yiW +yiW +xEs +yiW +yiW +ylm +yaE +ylQ +ylQ +ylQ +yaE +ybD +xJs +hDO +hDO +hDO +hDO +yiW +yiW +fJb +cUv +xEs +yiW +yiW +iMH +rTv +yiW +mpm +ylm +yiW +uqR +pFm +oiX +dcS +bYl +vND +tjW +htA +sFb +xoZ +lSy +aYD +tgA +sPr +pwb +qPi +lmc +tUY +oio +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +ybD +cqk +anY +fDN +xhg +tWv +tLx +vNY +oSn +uwY +dFS +dvt +aNV +uwY +oSn +oSn +qid +ybD +ybD +ybD +xJs +ylQ +ylQ +ylQ +ylQ +vHL +vHL +vHL +vHL +vHL +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(138,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +amm +atc +aJu +aYw +btI +bUx +cAm +dLS +ehg +fNY +hnx +iIX +kbJ +lAM +mzO +nxW +osi +pvj +qdS +xpW +sjf +sOD +ukn +vEl +wxV +xCJ +ygn +aqR +xOl +xOl +xOl +xOl +edb +aqR +xap +xZW +aqR +xZW +xoI +yiO +aFF +xOd +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xOd +sIO +mbC +gAQ +xnC +ylm +ylm +yiW +mRX +xZS +yiW +ylm +ylm +nGH +xLV +rrd +yiW +xLV +hqi +ylm +yiW +xSX +bfH +tzj +hWN +cul +hWN +bmJ +rFx +oku +yiW +uUv +ylm +kvA +xLV +yiW +ylm +rxc +ylQ +ylQ +ylQ +lzm +sZz +xJs +xTq +nhs +qLI +hDO +yiW +yiW +uUv +yiW +xEs +rbD +rbD +oAm +bzm +sAt +sAt +sAt +sAt +lTm +yiW +xdx +bEX +uvW +nkG +tjW +tjW +aBp +tjW +tjW +spy +xDl +piG +xDl +rKJ +xDl +sdi +bJX +poy +poy +xJs +xJs +xJs +poy +poy +poy +poy +poy +poy +poy +ykg +ykg +ykg +ykg +ykg +ykg +ykg +cqk +tzr +fDN +xra +vzB +pcc +oSn +oSn +dfB +rrh +pFj +jux +uwY +oSn +oSn +qid +ybD +ylQ +ylQ +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(139,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +amp +auT +awd +awd +awd +bWt +amp +dLS +ekt +fQp +dLc +dLS +dLS +xpW +lAM +nyY +lAM +fsz +fsz +xpW +sph +sph +sph +sph +wzK +xDk +ykY +mzd +mzd +mzd +mzd +mzd +mOL +xap +aqR +arP +aqR +arP +arP +yiO +pgW +ayE +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xOd +sIO +xLr +arP +xLV +ylm +yiW +yiW +oLD +gFq +yiW +ylm +tJZ +wNy +ylm +yiW +tIo +xLV +tIo +ylm +jwv +wQC +vof +tzj +bit +aHk +bli +qgQ +idw +wQC +yiW +yiW +yiW +xEs +fwX +yiW +ylm +rxc +ylQ +ylQ +ylQ +lzm +xTq +xTq +xTq +kfj +xbp +iBy +yiW +yiW +ylm +yiW +xEs +bCV +bCV +oAm +idX +yiW +yiW +xLV +lEO +yfY +xdx +xdx +ccX +nAA +hRK +nxB +dhf +cWZ +dhf +dhf +chv +gog +kKi +fIF +oux +pWd +duJ +mVE +csP +poy +vsQ +vsQ +vsQ +poy +muv +ePX +imT +ePX +aJC +pWd +yhe +yhe +yhe +yhe +yhe +yhe +yhe +rgt +jKB +gML +jHM +mMM +jiF +kbj +oSn +uwY +aNV +hCC +dFS +uwY +oSn +oSn +cqk +cqk +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(140,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +amM +avh +aKy +awd +awd +bWD +cBr +dLS +emT +fNY +dLS +iKA +iKA +lBf +mDR +nAZ +oFu +pvH +qeI +qZO +sse +tcZ +umQ +sph +wBv +xap +xap +xap +aqR +xap +xap +xap +aqR +xap +aqR +arP +aqR +aqR +xZW +yiO +aqR +ayE +ayE +ybD +ybD +ybD +ybD +ybD +ayE +qqn +xLr +arP +yiW +yiW +yiW +yiW +yiW +yiW +yiW +xLV +ddw +wNy +xLV +yiW +rrd +ylm +ylm +xLV +yiW +xSX +tyB +kFS +cNr +iUb +iIz +qgQ +vof +xSX +xLV +ylm +yiW +xEs +xRy +yiW +ylm +rxc +ylQ +ylQ +ylQ +ezk +ioc +riK +qhS +jpF +ktx +hDO +hDO +hDO +hDO +xLV +xEs +xEs +xEs +xEs +idX +xLV +ylm +ylm +fJb +qHE +xzf +kTm +cPr +aUI +qsh +xdx +xdx +tjW +nDq +ctk +xKG +rSN +weE +hqr +awQ +mxl +xvT +eGL +peu +qpW +qQt +uzi +mtC +pEF +nNF +jqK +jqK +jqK +ijt +pWd +uEa +rpI +yhe +yhe +xrt +nrR +yhe +rgt +kpA +qzl +dvP +ssT +qid +blN +oSn +eli +uwY +efl +uwY +vhF +oSn +oSn +cqk +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(141,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +amN +awd +aKE +aYJ +bvy +bXA +bXA +dLc +epN +fUW +hoX +iTR +iTR +iTR +mRP +nII +oGh +pxS +qhz +ayw +ssV +tfP +umQ +sph +wCa +aqR +aqR +dDX +dDX +tTl +pOy +dDX +xap +aqR +dhA +xZW +aqR +aqR +xZW +sNw +tSg +oSO +xOd +ylQ +ylQ +ylQ +ylQ +ayE +ayE +aqR +szq +xZW +mpm +yiW +fJb +yiW +scH +vqS +yiW +aPp +xiu +xnC +xLV +yiW +yiW +cAG +qCy +rrd +yiW +wQC +uuN +rFx +iML +utw +rIK +lTh +coH +wQC +yiW +ylm +xLV +xEs +fwX +yiW +ylm +rxc +ylQ +ylQ +ylQ +lzm +xTq +xTq +gJp +jpF +qfL +ohQ +ePo +jkC +hDO +ylm +ylm +xLV +xLV +ylm +rTv +xLV +cKY +yiW +yiW +tbf +xzf +kTm +jUA +aUI +nQw +sAE +pss +tjW +epW +aWx +xKG +xEs +wQU +xWU +cXa +nTF +fyH +eab +oZF +fBn +wnO +pUr +ges +dGu +dGu +fyH +xGx +ygk +dXp +pWd +spa +qBN +yhe +uZV +uEa +uEa +yhe +vas +uwY +uwY +tOa +uwY +dIo +jzC +oSn +oSn +oSn +oSn +oSn +oSn +oSn +fIk +cqk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(142,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +anv +awJ +aLl +aZa +bvL +bYo +cCh +dLZ +esy +fXZ +dLZ +ggW +kge +dNP +mSf +nOU +oIW +pxS +qjC +rgf +swV +tfP +uoT +sph +arP +bWV +xZW +arP +arP +arP +arP +xZW +xZW +arP +arP +arP +aqR +aqR +arP +sjb +cec +sIO +xOd +ylQ +ylQ +ylQ +ylQ +xOd +cVb +aqR +xLr +xZW +yiW +yiW +yiW +yiW +yiW +yiW +yiW +xLV +wNy +ylm +ylm +rrd +yiW +eUk +bez +yiW +bDd +wQC +bvk +biu +iIz +paa +bat +wMR +ivz +wQC +yiW +yiW +xLV +xEs +ylm +yiW +ylm +rxc +ylQ +ylQ +ylQ +lzm +sZz +xJs +rsP +gub +ixk +oXG +ktj +uxp +rGf +sAt +sAt +sAt +sAt +sAt +qmO +xEs +xEs +xEs +xEs +pQN +bSf +oUl +dNr +awA +hpa +nRn +iVe +lYt +sAy +sAy +wYa +nZw +xCL +cmd +nUl +jOO +fJF +eab +eFl +suu +ahK +coh +owU +kxp +vwU +dGL +gQZ +ygk +uPl +pWd +spa +yhe +auB +yhe +gXK +yhe +yhe +rgt +uwY +uwY +tOa +uwY +nMl +dGr +oSn +oSn +oSn +gMn +oSn +oSn +oSn +oSn +cqk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(143,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +agS +anD +axU +aLn +aZS +bvM +bYB +cEt +dNP +evQ +gaT +hrF +iVp +kgs +lFU +mDR +nPY +oGh +pxS +qhz +ayw +sxo +tgN +upj +sph +aqR +aqR +aqR +aqR +aqR +aqR +aqR +aqR +qLo +arP +aqR +pgW +aqR +aqR +arP +aqR +psz +pOy +ayE +ayE +xJs +xJs +xJs +xOd +cVb +aqR +xLr +arP +arP +fek +yiW +yiW +ojl +mNo +ylm +ylm +wNy +xLV +xNc +rrd +yiW +cAG +kZG +yiW +bqC +xSX +yhF +lyb +sdW +pbQ +idw +qgQ +nhz +xSX +yiW +yiW +ylm +xEs +yiW +yiW +ylm +yaE +ylQ +ylQ +ylQ +yaE +ybD +xJs +fdQ +kKF +bVv +rZg +hQL +fan +hDO +vCL +vCL +ylm +ylm +iBy +ylm +ylm +xLV +xLV +yiW +pQN +bMo +oUl +nen +dNr +nQw +sAE +xOV +cip +nAw +mcd +xdx +rts +sQQ +bFZ +xjh +qLm +fKt +hnR +tie +ooK +jGN +cWm +jVm +ePX +ePX +dGL +ygk +ygk +xCZ +pWd +spa +yhe +yhe +yhe +yhe +yhe +sIa +rgt +cCR +cCR +wTL +cqk +cqk +cqk +cqk +qid +qid +qid +qid +qid +cqk +cqk +cqk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(144,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +ahW +anG +azI +anM +aZU +bvM +bYB +cQJ +dNP +ewE +gbe +huI +iYA +khp +lHd +mDR +nPY +oGh +pvH +qnS +riB +sAm +tfP +urK +sph +aqR +aqR +aqR +arP +aqR +aqR +aqR +aqR +aqR +itJ +aqR +aqR +aqR +aqR +arP +arP +psz +aqR +oFM +ayE +ayE +pJW +ayE +ayE +aqR +aqR +xLr +oFM +arP +xLZ +yiW +yiW +yiW +yiW +ylm +yiW +wNy +xLV +dwV +yiW +yiW +rrd +bez +yiW +rrd +wQC +mDT +yiT +xta +rCP +bln +eMB +boj +wQC +yiW +xLV +ylm +xEs +yiW +xrc +xrc +xrc +xsv +xsv +xsv +xrc +xrc +xrc +hDO +lKE +uWL +nBT +hQL +aDr +hDO +rPJ +rzX +ylm +xJH +yiW +tIo +ylm +yiW +ylm +aeU +pQN +tHz +xdx +bYf +oJo +bxo +xlf +xlf +eoV +xlf +xlf +xdx +vLG +xLV +tSF +pWd +pWd +msF +qAa +nkI +poy +odt +stZ +odt +fip +dGu +fUl +iyE +ePX +ePX +pWd +uEa +xrt +yhe +uEa +uEa +idW +idW +rgt +cqk +cqk +cqk +cqk +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(145,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +aid +anM +aAA +anM +bbJ +bwb +caf +cSE +dRb +eCe +gdp +hyv +jaD +kio +dNP +mTo +nPY +oLv +pvH +pvH +pxS +sGk +pxS +pvH +sph +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aro +aqR +aqR +aqR +aqR +xZW +psz +aqR +aqR +aqR +ayE +sjb +ayE +avB +aqR +aqR +pxy +aqR +arP +fEw +yiW +yiW +wPy +mxk +xLV +yiW +sYM +ylm +ylm +ylm +iBy +ylm +ylm +xLV +xLV +xSX +bfK +gQy +bhi +sTC +eMB +tSt +nPE +xSX +yiW +xLV +xEs +xEs +yiW +xrc +vJU +hgd +uic +uic +uic +ngG +tNQ +xrc +hDO +tnr +lLC +ghG +hQL +ybK +hDO +ylm +ylm +ylm +hmt +xNw +qPa +ylm +thh +ylm +ylm +pQN +vLG +xdx +xdx +xdx +xdx +xlf +bzr +ocR +bCf +xlf +yiW +vLG +xLV +tSF +dZd +tbJ +dJE +oLm +nlR +hky +mxu +wZu +qYl +tKs +pWd +pWd +pWd +hjf +pWd +pWd +yhe +trU +yhe +uEa +spa +bmL +cuY +cuY +cvj +yhe +dZH +mGP +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(146,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +aiw +aob +aAN +aLs +ajr +ajr +cai +cVy +dNP +eDq +gee +hJF +hyv +klP +lHp +mDR +nPY +oNO +pAK +qoJ +rqn +sKh +thn +vvw +vEF +wOC +xFP +vvw +vpo +iNM +xFP +vvw +qIL +yjU +xFP +aro +aqR +arP +arP +aqR +bWV +psz +xZW +xZW +jZI +ayE +fQu +ayE +sgh +aqR +tNu +uMv +aqR +xZW +ylm +ylm +xLV +xLV +ylm +ylm +dbO +wNy +yiW +xLV +dtd +yiW +oAm +yiW +uUv +yiW +xSX +xSX +ugy +wQC +bjX +xSX +xSX +wQC +wQC +ylm +ylm +xEs +rbD +mMH +xrc +vsC +xrc +vMe +vMe +vMe +fai +iAr +xrc +hDO +hDO +hDO +xTq +dDg +yeK +yeK +bsk +iKx +iKx +iKx +iKx +sLm +sLm +sLm +sLm +vPV +wxf +bDo +kqV +vud +kqV +xPf +xlf +cjr +ods +jVH +xlf +yiW +vLG +xLV +tSF +hOa +poy +xZP +xZP +vEN +poy +oYr +mLn +qmM +csO +yhe +yhe +yhe +yhe +yhe +yhe +yhe +cpI +yhe +cui +yhe +evH +cuO +cuO +cvP +yhe +dZH +xdk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(147,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +aiD +aoq +aCP +aLx +bcf +ajr +cak +cXc +dNP +eEs +gfO +hLW +jff +iVp +lJc +mDR +nRt +oPd +pBs +qqA +rrg +sMi +tjm +vvw +vFm +xgb +xJf +vvw +vFm +xgb +xJf +vvw +vFm +xgb +xJf +aro +aqR +aqR +aqR +aqR +arP +psz +aqR +arP +arP +arP +aqR +arP +rVx +aqR +aqR +skr +wgw +wgw +sAt +sAt +sAt +sAt +kAh +sAt +sAt +tGT +rHc +rHc +rHc +kQS +eRh +utT +iVg +oyZ +xLV +yiW +yiW +xLV +bhs +wAR +wAR +wAR +wAR +wAR +wAR +wAR +wAR +wAR +fFI +kcv +crZ +wvq +amz +wvq +wzo +kfT +xrc +ijM +ijM +dZh +isO +egk +eiH +uCo +wlR +yeK +yeK +yeK +yeK +ycO +ycO +ycO +ycO +ycO +rWf +vHa +xxZ +eaP +wMC +gba +xlf +vQX +bAQ +bDX +xlf +cmd +wHz +rLw +bJS +tJZ +xKG +pyJ +pyJ +xJs +rRI +rwl +qZQ +kep +csO +vtw +poy +ctg +yhe +yhe +yhe +yhe +yhe +yhe +uEa +yhe +fgJ +oJd +oJd +wAe +yhe +dZH +xdk +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(148,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ahm +aiF +aox +aEj +aLZ +bdg +bxr +cao +cXc +dNP +eHo +ggW +dNP +jgF +knu +dNP +mDR +nPY +oGh +diC +diC +cZZ +rqn +tlE +vvw +vFB +wYf +vFB +vvw +dOP +wYf +dOP +vvw +jYw +wYf +jYw +aro +aro +aro +aro +aro +arP +psz +aqR +aqR +aqR +aqR +aqR +xZW +xZW +itJ +arP +koB +sIO +xZF +xZF +xZF +xZF +xZF +xCO +xZF +xZF +xZF +xZF +xZF +xZF +hfu +xyB +sAt +sAt +tGT +pCu +dVR +dYI +xLV +rCI +nvG +rbT +xrc +xrc +xrc +xrc +xrc +xrc +xrc +xrc +pva +wvq +wvq +mtL +wvq +wvq +wEQ +xrc +bpI +mNe +cHn +isO +hQL +gcD +yeK +klb +yeK +lEP +jak +dzz +ycO +pCl +hsj +qMC +ycO +ycO +ycO +xXW +ycO +dBJ +cwI +xlf +xlf +xlf +xlf +xlf +tSF +vLG +yiW +dbO +dbO +xKG +cqs +cqs +poy +poy +poy +tTP +poy +csO +vGS +poy +cti +auB +vIf +kgj +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +ykg +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(149,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +aiM +apg +aEV +aMe +bdh +ajr +cbl +cXm +cXm +cXm +cXm +cXm +cXm +kpX +lKi +mDR +nPY +oSH +diC +qyN +ruI +dRf +nPY +usG +ceb +nAZ +ceb +ymi +ceb +nAZ +ceb +ceP +ceb +nAZ +ceb +jkI +oFl +pRm +urt +aro +xPb +sNw +wgw +wgw +wgw +wud +aqR +aqR +aqR +aqR +arP +uCi +xZF +xZF +qwC +vdh +bvC +rYk +oep +xYT +xZF +gxk +nnT +hWG +xZF +xZF +xZF +xZF +xZF +xZF +xZF +gXJ +bfp +tqI +esU +yiW +xrc +xrc +nJF +iBj +nJF +xsv +rPi +xZB +rVn +nJN +uca +ohl +iVu +ojo +oiA +swT +jKX +bLU +umx +bLU +uel +bIJ +guh +vVJ +qIJ +sZV +pYo +bvF +iXw +jdu +rwy +exZ +ksz +fsf +axQ +aOM +vqH +ycO +dBJ +rHF +ukP +ukP +ukP +ukP +ukP +bFZ +cna +yiW +yiW +bHB +smm +cqt +trx +rva +pkV +poy +lcH +poy +csO +csV +poy +wXm +wXm +wXm +ykg +ykg +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(150,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +ajr +apk +vvw +vvw +vvw +vvw +ccg +ceb +dRf +dRf +dRf +dRf +jin +krk +lLJ +mYl +nVd +oTM +diC +qyN +rxq +dRf +tnb +rrg +vFS +wZs +xKl +rrg +bNY +lSd +bNY +pwz +ckN +yfW +uxG +gyF +vvw +vvw +vvw +aro +xPb +aqR +xZW +arP +arP +mse +xZW +arP +arP +aqR +xZW +koB +xZF +xiJ +vdh +nID +jnN +iPe +vHs +xUI +yjJ +fxo +vaJ +iLq +bGV +aoU +mjA +kJR +mjA +mvn +bGV +ibn +cyA +ylm +xEs +xLV +xrc +fVk +wvq +wvq +wvq +xnU +amz +wvq +ruy +qDH +dYu +cQu +bKI +qmh +efJ +gsa +nTn +gJH +hQX +mYM +giT +dlY +pOC +itV +xFS +hTH +cSA +fAB +bEp +jdu +xid +dfl +xxi +wAs +dij +hMA +xFf +ycO +rUw +rLw +rLw +rLw +rLw +rLw +vfT +cme +xEs +yiW +yiW +kkj +smm +fWB +wvP +rva +bCM +knG +pnz +knG +csU +xJs +xJs +xJs +xJs +xJs +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(151,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +ajs +apm +vvw +aPL +bdy +bAN +cch +cZv +cZv +eSD +cZv +cZv +jlB +kwZ +lOK +mDR +nPY +oXL +diC +qyN +rAg +dRf +top +uvo +ceb +nAZ +ceb +btb +ceb +nAZ +ceb +ooQ +ceb +nAZ +ceb +npX +ybF +pRm +jik +aro +xZW +arP +xZW +aqR +aqR +psz +hJQ +arP +aqR +wSC +rkB +wcp +flS +eeB +vdh +nID +cZy +kaF +dXY +pSG +jWo +cfj +kDt +ggF +yjJ +myd +xop +kJP +iBb +xZF +xZF +xZF +xLV +ylm +xEs +yiW +xrc +xrc +xrc +xrc +sBA +xrc +wLS +aib +vLr +qDH +oUL +lTQ +fBh +nxD +wvq +oND +xsv +yeI +dBu +kNZ +xeF +aSp +mVK +itV +cHd +rcJ +mtf +fmE +nuo +ycO +tNJ +liH +xXZ +jjz +pBn +ajM +vqH +ycO +xEs +rbT +izt +yiW +oAm +fwX +xEs +xKG +xKG +xKG +xKG +xKG +xKG +xKG +xKG +xKG +xJs +xJs +xJs +xJs +xJs +xJs +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(152,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +agS +akq +apw +vvw +aTq +vvw +vvw +ccR +cZZ +dRN +dRN +gkR +gkR +gkR +dRN +dRN +mDR +nPY +oGh +diC +diC +cZZ +rqn +top +vvw +vHm +xcv +vHm +vvw +teQ +xcv +teQ +vvw +hSx +xcv +hSx +aro +aro +aro +aro +aro +qqn +pgW +glo +wgw +wgw +vOf +wgw +ksg +wgw +wgw +kfl +baT +xZF +aCo +vdh +nID +kzo +fvD +ikv +oTN +yjJ +htn +nUo +xPI +xPI +xPI +mwS +xPI +ggF +eCo +jZP +xZF +yiW +yiW +xEs +xEs +xEs +xEs +xEs +xEs +xEs +xrc +xrc +xrc +xrc +igb +caI +wvq +uxi +wvq +wvq +bDF +xrc +vAV +mhs +xse +tRv +aSp +epk +yeK +dDp +yeK +itV +fJt +itV +ycO +jdu +qOo +jdu +ycO +ftc +ycO +xXW +ycO +xEs +rbT +iDI +rSN +oAm +fwX +xEs +sIv +ylQ +ylQ +ylQ +xKG +gEB +cng +wUa +wmt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(153,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +vvw +vvw +vvw +aTq +vvw +bBh +cde +dbR +dRN +eTc +gly +hNs +jmv +kyr +gkR +mDR +nPY +oGh +pFO +mDR +ceb +rqn +tsw +vvw +vIZ +xgb +xJf +vvw +vIZ +xgb +xJf +vvw +vIZ +xgb +xJf +aro +aqR +kQq +aqR +wSC +wSC +dup +psz +aqR +arP +vdO +vdO +xZW +xZW +arP +upb +wSC +xZF +xZF +nfZ +vdh +emL +yez +xzn +dxZ +xZF +hAx +gJO +vVL +vVL +vVL +ikv +xPI +ggF +jjc +vlT +xZF +xiu +utT +utT +utT +dxB +yiW +ylm +lEO +xEs +mpm +ylm +yiW +xrc +xsv +wdl +xsv +xrc +pUZ +jcG +whX +xrc +oHs +bAO +bRN +tRv +aSp +ubl +eIb +uuB +rNg +xck +baH +xck +bYX +xck +baH +xck +rNg +fMU +qje +ufa +vFX +xEs +xEs +xEs +vpR +xEs +xEs +xEs +sIv +ybD +ybD +ybD +xKG +gEB +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(154,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +apy +apx +vvw +aTq +vvw +bCr +cde +ddX +dRN +eUL +gmP +hRB +jmY +kzW +lPh +nan +nII +oNO +pHb +qoJ +rqn +rqn +tto +vvw +vKX +xgR +xFP +vvw +ugw +sJd +xFP +vvw +tiA +vZC +xFP +aro +aqR +sJF +glo +wgw +mRo +mRo +qZN +aqR +xZW +moP +tCO +arP +oFM +mbC +mdw +yad +yad +yad +yad +yad +yad +ueN +yad +yad +yad +uBg +nUo +wGB +yjJ +lgr +mJh +rxC +gKq +qhw +xZF +xZF +wIN +xZF +xZF +xZF +xZF +xZF +xZF +xZF +fYM +xZF +xZF +vhn +vhn +bsM +taf +xIV +vhn +vfY +vfY +vfY +vhn +cut +yce +ams +nsE +uOW +fRG +hDO +iWr +hDO +bWj +mAl +gph +hDO +lOe +jHk +bZP +hDO +xNg +hDO +hDO +hDO +eYf +hDO +hDO +hDO +hDO +hDO +xEs +sIv +ylQ +ylQ +ylQ +xKG +gEB +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(155,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +apy +apy +aFE +aVa +vvw +bDv +cdf +deV +dRN +eVj +gnr +gnr +jqa +kBM +gkR +mDR +nPY +oLv +pHA +pHA +rBW +pHA +pHA +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +vvw +aro +aro +aro +aro +aqR +fxh +psz +xZW +aqR +aqR +aqR +yaG +yaG +yaG +yaG +yaG +yaG +xLr +wSC +yad +kEd +kEd +kEd +kEd +oCF +oNL +gGy +kEd +yad +xZF +cfr +xZF +xZF +xZF +yjJ +yjJ +yjJ +xZF +xZF +iNU +bhp +bhm +biB +feN +mcM +wLv +qzB +dVc +mnd +bcQ +sVu +vIq +cVc +bsN +sfq +bmi +kAf +bBw +fvt +yjA +vfY +hGf +eSV +iNx +kKa +uOW +owl +vEs +uOW +jTq +xbp +xbp +xbp +bWY +xbp +xbp +xbp +nnr +aSp +voo +hDO +xvH +pKC +hDO +grq +wiA +tmm +hDO +ccF +xKG +xKG +xKG +xKG +xKG +xEq +cng +wUa +wmt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(156,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +aku +aqp +vvw +aVb +vvw +bGa +ceb +dhx +dRN +eWw +goG +gnr +gri +eZj +dRN +ncH +nOU +oIW +pHA +qAY +rCr +sNt +tyI +uwM +pHA +xgT +xgT +xgT +vvw +bIb +bIb +bIb +vvw +glo +wgw +wgw +wgw +wgw +baT +xZW +aqR +kNm +aqR +yaG +nYH +hwk +dzo +fWS +yaG +wNN +wSC +yad +oNL +oNL +oNL +oNL +oNL +oNL +gGy +kEd +yad +aFO +nUo +gjf +jWy +iCX +qvj +qvj +qvj +wPR +qhj +xPI +xLd +brd +vHs +iTj +chM +vHs +qqN +cYK +brd +qqN +qqN +bsv +xTs +xTs +xTs +xTs +xTs +twr +tsW +lIj +vfY +xwi +xwi +bRN +tRv +mDd +gkC +xLy +toz +nGs +uSc +sHs +bNk +bYY +lUw +sHs +pEh +eZc +dJf +diO +hDO +lPf +aQV +hDO +cKT +xbp +xbp +iBy +xEs +uJI +yiW +eWU +obV +obV +obV +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(157,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +vvw +vvw +vvw +aVb +vvw +bHH +ceb +dix +dRN +eYI +goV +hUl +jqu +kCu +gkR +mDR +nPY +oGh +pKO +qCx +rCr +sQn +twM +uyv +pHA +xiC +xiK +ftv +vvw +bIb +bIb +bIb +amw +psz +yaG +fRC +yaG +yaG +yaG +yaG +wye +sDq +wye +yaG +wvQ +vvD +ias +ias +xYm +upb +wSC +yad +rEG +kEd +kEd +kEd +oCF +sQl +gGy +kEd +yad +kiK +aBo +sej +qqN +tpO +qvj +eQG +qvj +mmj +xsO +xVr +bhr +rtX +vwX +iTj +iid +vHs +wHB +wHB +xPI +fXo +xvK +ijj +bvr +uNa +wZo +uNa +aFa +bEh +tsW +lmn +vfY +pSk +avC +cVL +umJ +ooI +xBc +iZQ +xbp +xbp +fju +dMs +rHd +lBT +nXf +fao +bIz +dQM +uOW +gmx +hDO +uOj +aQV +hDO +xbp +nWg +uXT +hDO +xEs +ylm +bOt +vyy +pxZ +pxZ +pxZ +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(158,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +akH +aqG +vvw +aVb +vvw +vvw +ced +diC +dRN +eZj +gri +gnr +jrQ +kHP +gkR +mDR +nRt +oPd +pLo +qEJ +rDC +sSi +sSi +uDD +vNS +xiK +xMp +lkn +vvw +bIb +xys +bIb +amw +psz +yaG +sUZ +qie +jEG +ilG +yaG +pap +rOe +pap +daY +xiw +xiw +xiw +ias +yaG +upb +yad +yad +kEd +oXS +kEd +kEd +oCF +gjM +vxk +yad +yad +pmG +sgi +fqF +tRE +jMG +oeR +jfp +oeR +hCl +nNX +bfO +kBg +jIe +bkd +jNf +nZK +ctj +wHB +wHB +xPI +brp +kbK +rnJ +ixK +wZo +wZo +wZo +bDa +sPC +tsW +xXp +vhn +xTq +xTq +hDO +bnX +nfR +dxG +hDO +eWi +xbp +bNs +gHl +bOr +bXc +mbg +mLq +rFm +xbp +uOW +hRy +hDO +lBD +aQV +hDO +xbp +xYp +hDO +hDO +xEs +ylm +ylm +eOD +eOD +eOD +xKG +xKG +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(159,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +akO +aqI +aGg +aVn +bdW +bIb +bIb +dki +dRN +eYI +goV +gnr +jsC +kIW +gkR +mDR +nPY +oGh +pKO +qGZ +rED +sTA +twM +uOP +pHA +xiC +xiK +ftv +vvw +bIb +bIb +bIb +vvw +psz +yaG +aof +pap +eVM +ilG +yaG +pap +pap +pap +yaG +wAq +iGs +iGs +dBf +yaG +upb +yad +pIv +atn +atn +atn +atn +gDl +dKE +vYk +cYh +bsr +jve +hBQ +qqN +wHB +iEC +wHB +twO +wHB +wHB +qqN +plW +bhr +rtX +biz +iTj +oMH +vHs +wHB +hcB +xPI +wHB +eAA +oGx +wZo +wZo +wZo +wZo +wZo +sPC +tsW +lmn +wUT +slW +xbp +meo +xbp +uOW +pUL +hDO +cNM +wwP +wwP +wwP +wwP +wwP +wwP +wwP +wwP +wwP +rxo +kjl +hDO +hDO +dEQ +hDO +xwz +hDO +hDO +yiW +xEs +yiW +iml +xEq +xEq +xEq +cng +wUa +wmt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(160,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +akR +aqU +vvw +bIb +bdW +aae +aae +aae +dRN +fah +gze +hWL +juK +juK +dRN +mDR +nPY +oYc +pHA +qHv +rFq +sQn +tyI +uOP +pHA +xkf +xkf +xkf +vvw +bIb +bIb +bIb +amw +psz +yaG +aoh +vMS +sDq +yaG +yaG +dCy +sDq +dCy +yaG +vLA +vLA +hyP +vLA +yaG +skr +ygP +hDe +iQX +iQX +iQX +iQX +yad +vGc +eJH +yad +pjC +lfv +lEU +qqN +wHB +wHB +wHB +wHB +wHB +vQw +qqN +qGV +xLd +biE +tdF +iTj +chM +vHs +qqN +vsj +xPI +qqN +mIq +bsE +rMk +wZo +lGZ +wZo +bDa +sPC +tsW +lmn +bIw +slW +xbp +xbp +xbp +uOW +oHd +hDO +hDO +yhK +kIs +yck +kIs +kIs +kIs +yck +kIs +wZm +wRn +yby +udJ +hsv +rfe +uUQ +cVd +jQr +hDO +bCV +xEs +nvG +eWU +obV +obV +obV +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(161,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aro +aro +aro +aro +aVG +bed +aae +chw +doE +aae +aae +aae +aae +aae +aae +aae +xrV +nWv +xrV +aae +aae +aae +aae +aae +uPG +aae +aae +aae +aae +vvw +oFk +vvw +vvw +vvw +psz +yaG +pap +gyJ +yhp +yhp +arr +yhp +yhw +rag +wsO +awG +rag +awG +rag +rWw +pvM +yad +gvo +oNL +oNL +oNL +oNL +hTN +iCL +diF +nmT +oJC +xPI +vqt +eCG +abX +wxP +tBG +wxP +cTk +eCG +cBx +hPg +bBE +wfM +gXX +fQb +iid +vHs +tzf +xPI +xPI +xPI +vWl +fJc +wZo +wZo +wZo +wZo +wZo +sPC +tsW +lmn +ryW +slW +xbp +fla +xbp +uOW +qtI +xTT +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +rjh +wRn +yby +udJ +hsv +jje +xgs +toZ +lWf +hDO +bCV +xEs +yiW +vyy +pxZ +pxZ +pxZ +cng +wUa +wUa +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(162,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aVG +bic +blT +blT +blT +blT +blT +gBg +iaU +jvu +kJC +lQS +ncO +nXI +oZS +pOt +dtp +rLc +aae +tzy +uVg +vQy +uVg +xQR +rpF +uVg +uVg +mkb +aVG +qqn +psz +yaG +aoi +gyJ +yhp +aqx +cgM +iZt +qnq +awH +awH +awH +iZt +aUh +rkn +yaG +koB +yad +yad +kEd +kEd +kEd +oXS +oTq +iCL +neJ +yad +yad +kHE +xLd +xPI +tvR +xPI +cXH +xPI +brd +xPI +xPI +xPI +aeg +xZF +yjJ +yjJ +xZF +vHs +tlm +fQC +xVr +qqN +aue +csQ +ixK +wZo +wZo +wZo +bDa +sPC +tsW +xnk +vzG +wuP +xbp +xbp +xbp +uOW +qtI +xTT +xTq +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wRn +yby +udJ +hsv +fiM +vgn +ajd +luC +hDO +jzA +xEs +yiW +ylm +iBB +iBB +eOD +xKG +xKG +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(163,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aWq +blT +bLy +ciT +dqv +dqv +faA +gEw +iaU +jAh +kJX +lRV +bJY +nXI +ifi +pOS +qJW +qJW +aae +tDE +vex +vRo +xkS +xkS +sWd +uVg +uVg +mkb +aVG +aVG +psz +yaG +lMn +gyJ +yhp +yhp +atB +gkD +cMn +vCr +erX +rBK +uLP +yjF +yhp +yaG +uCT +lTy +yad +rEG +kEd +kEd +kEd +oTq +bBL +leN +luW +yad +gjt +pQi +giB +avu +qqC +vTD +smE +fii +jny +qhm +xPI +hUF +yjJ +mlz +xPI +eAr +vHs +agM +dMM +hBG +slG +uTG +ijj +uNo +stk +wZo +stk +qZT +gIb +gbN +wpb +cIW +xbp +nNe +jxc +wSd +uOW +qtI +xTT +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wRn +kjl +hDO +hDO +lqe +hDO +mON +iPs +hDO +cJL +xEs +xEs +yiW +yiW +yiW +xKG +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(164,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aWq +bnn +bPs +cpE +dtk +dtp +fdb +gFH +icU +jBt +kKh +lRX +ngd +oai +bnn +bnn +qKp +rOo +sUJ +tIm +uVg +vRs +ufF +ufF +aJK +aJK +pxM +aJK +aJK +aVG +vcL +yaG +yaG +yaG +iuC +aqy +kPu +gkD +mAW +vCr +erX +rBK +vCr +kRo +fdo +yaG +psz +ffa +cBc +eFC +eFC +eFC +xGw +tnM +gMC +leN +vpP +yad +lcU +bPu +lxv +iDm +mmj +cmy +yfi +wKS +qsR +dVo +xPI +mWl +yjJ +sDm +jXL +orR +czo +oNc +wRW +oqc +gLO +gLO +mwL +pog +pog +pog +pog +pog +sAz +gLi +ezo +cIW +xbp +jwJ +nNe +jqG +uOW +qtI +hDO +hDO +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +pLu +vrU +hDO +lvx +rTv +hDO +hDO +hDO +hDO +dbO +dbO +xEs +rzX +yiW +xKG +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(165,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aWq +bnn +bPF +cqm +dtp +dSx +fdG +gJM +icV +jCx +kLd +lTT +ngk +obw +pdM +pdM +qMs +rPh +sXk +tYk +viy +wcj +ufF +ufF +aJK +rnj +gHI +fMw +aJK +aVG +myv +pac +uDk +yaG +wBw +hsa +vWo +eGG +nVh +fjh +pKM +auD +vCr +dYM +yhp +yaG +psz +xLr +yad +rtW +nIo +nIo +qvy +xIc +diF +fiS +luY +yad +oJz +bGh +yjJ +nBC +jWC +yjJ +jWC +fbc +yjJ +yjJ +bfT +yjJ +xZF +oFq +qGV +lhH +wLE +wLE +wLE +wLE +wLE +wLE +gzc +gzc +gzc +gzc +ood +vQx +gzc +gzc +gzc +ici +xbp +xbp +xbp +xbp +uOW +wcm +eYf +dqh +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +bxu +neH +ubG +rGf +sAt +qmO +xkK +xLV +rdR +yiW +yiW +yiW +xEs +fJb +yiW +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(166,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aWq +blT +bPF +cqG +dtZ +dtZ +ffl +bLy +ifi +jEH +kQu +lUq +ngq +oeC +pfZ +pQx +qWq +qWq +aae +tYD +ufF +ufF +ufF +ufF +aJK +qWM +vsX +bsP +aJK +aVG +xkV +vpe +gZn +yaG +mxL +aty +whu +kIh +apE +auG +auG +kIh +kIh +pBg +yhp +yaG +psz +aGW +yad +yad +yad +yad +yad +yad +hvI +yad +yad +yad +yjJ +yjJ +yjJ +txQ +rmv +tlm +rmv +cdq +yjJ +qqN +bhu +gSF +xZF +nlr +qGV +sbS +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +mTd +kLD +ykU +ykU +ykU +ykU +ykU +ykU +yhK +wZm +uOW +qtI +hDO +hDO +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wRn +bmS +hDO +kkj +xEs +xEs +dtF +vpR +xEs +xEs +xEs +xEs +yiW +yiW +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(167,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aVG +bic +bPW +blT +bnn +bnn +bnn +gPd +ifi +jvu +kSy +lUB +nie +ofE +pgZ +pSK +dtp +rQj +aae +tZP +ufF +ufF +ufF +ufF +aJK +aJK +aJK +aJK +aJK +aVG +mgI +ctD +ulG +yaG +qnR +izk +cNZ +yhp +eDO +yhp +bUX +fSL +pVB +vOM +cdm +yaG +iBU +dNK +mOp +wud +aqR +aqR +aqR +aqR +xLr +aqR +xZF +nqI +hBd +vKY +yjJ +nBC +jWC +yjJ +jWC +fbc +yjJ +qvj +qvj +qvj +gBb +xPI +qGV +kij +ykU +ykU +yck +yhK +ykU +ykU +wZm +yck +ykU +ykU +ppW +gyz +ykU +ykU +yck +ykU +ykU +yhK +ykU +ykU +uOW +qtI +xTT +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +rjh +wRn +sqM +xGt +xKG +xKG +xKG +xKG +xKG +wzk +vKC +mnY +xKG +xKG +xKG +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(168,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aVG +aVG +aVG +crf +dAN +dAN +fkq +aVG +aVG +aWq +aWq +aWq +aVG +aVG +aVG +aWq +aWq +aWq +aVG +ufF +ufF +ufF +ufF +ufF +aVG +aVG +aVG +aVG +aVG +aVG +ayE +ayE +ayE +avF +avF +avF +avF +sDq +sDq +sDq +avF +fSL +vOM +pVB +cdm +yaG +aqR +xLr +arP +tYN +aqR +pgW +xZW +xZW +xLr +aqR +xZF +jYT +nnj +kgy +vZK +mXQ +yhl +qsc +mXQ +mXQ +sbP +vdh +kgy +xNz +sks +xPI +aHM +iez +ykU +yhK +ykU +ykU +ykU +ykU +ykU +gEu +wZm +ykU +kIs +kIs +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +qSr +oYF +heL +xTq +qcD +ykU +yck +ykU +ykU +ykU +yck +ykU +rjh +wRn +sEM +xGt +ylQ +ylQ +ylQ +ylQ +xKG +smm +smm +smm +xKG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(169,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aVG +aWq +aWq +aWq +aWq +aVG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +aVG +aVG +vkz +vkz +vkz +aVG +aVG +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +avF +avF +yaG +yaG +yaG +yaG +xZW +xLr +sJF +qMi +vVt +vVt +vVt +vVt +kVN +aqR +xZF +hKw +sbd +vIU +vdh +vdh +vdh +pvZ +vdh +vdh +vdh +vdh +pvZ +sQp +ojE +uQH +bjP +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wZm +ykU +ykU +yhK +ykU +ykU +prp +uOW +gDR +xTT +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +rjh +wRn +wac +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(170,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +osP +mjb +won +aqR +aqR +bjS +xLr +kFm +wcH +dSr +cWK +cWK +kFm +xZW +aqR +xZF +nfk +hlB +vIG +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +sks +jix +cHO +ykU +yhK +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +qtN +uOW +bMi +hDO +hDO +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wRn +wac +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(171,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +mdr +cbf +pGB +aqR +aqR +cWK +pXx +cWK +wJz +clq +laM +pQk +wAT +oSO +aqR +xZF +vVp +sbd +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +sQp +sks +blz +cHO +yck +gTp +ykU +ykU +ykU +ykU +yck +ykU +ykU +ykU +ykU +bBW +ykU +ykU +ykU +ykU +ykU +ykU +yck +ykU +kCw +uOW +bQL +hDO +dqh +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +wef +viX +wac +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(172,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xKm +mdr +mdr +rLZ +ovw +aqR +aqR +cWK +ssv +ygD +usb +llL +tWd +nVb +wAT +sIO +aqR +xZF +qvj +hlB +hlB +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +vdh +sks +qJo +cHO +ykU +iIQ +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +iLK +uOW +ppv +hDO +hDO +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +rjh +nlQ +kVO +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(173,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +jaf +aqR +aqR +kFm +rkT +eSx +pXx +hYB +vbB +nVb +wAT +pOy +aqR +xZF +nfk +cQO +vIU +vdh +vdh +vdh +pvZ +vdh +vdh +vdh +vdh +pvZ +sQp +sks +sNg +blB +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +prp +ykU +ykU +iIQ +ykU +ykU +wZm +uOW +okk +bLe +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +dDe +rUB +vNR +xGt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(174,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ayE +ayE +ayE +ayE +hyo +apl +eSx +fBL +xUQ +bMF +tRM +cWK +uiO +aqR +xZF +nSk +hgc +dRT +vdh +bQT +bQT +vdh +bQT +bQT +vdh +vdh +bQT +hvJ +sks +tvA +qXF +cHR +ykU +iIQ +ykU +ykU +ykU +ykU +ykU +ykU +prp +ykU +cZR +cZR +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +mGc +mBF +xTT +xTq +ykU +ykU +ykU +ykU +ykU +sQR +ykU +ykU +ykU +aIe +xGt +xGt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(175,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hyo +iQj +vWS +vWS +gCj +cuF +nVb +kFm +xPb +hJQ +xZF +tav +nfk +nfk +gZl +qvj +qvj +qvj +dfq +bhy +bhy +wZA +bhy +bhy +biN +orR +bni +blM +ykU +ykU +yck +iIQ +ykU +ykU +prp +yck +ykU +ykU +cFH +gqN +ykU +ykU +yck +ykU +ykU +iIQ +ykU +ykU +uOW +oSi +pcf +xTq +gTp +ykU +ykU +ykU +ykU +ykU +ykU +ykU +rjh +fuq +xGt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(176,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hyo +ecF +vWS +pXx +wLO +jMy +bgZ +cWK +xkb +aqR +xZF +xZF +lon +wKp +wKp +wKp +wKp +wKp +mwe +wKp +wKp +wKp +wKp +bhz +xZF +tCf +blC +iez +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +ykU +fWH +wac +ykU +ykU +ykU +ykU +ykU +ykU +iIQ +prp +uOW +oSi +xGt +hDO +iIQ +cZR +yck +cZR +cZR +cZR +yck +cZR +prp +uOW +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(177,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hyo +vOn +xUQ +nzi +oPy +oqe +lLn +cWK +qqn +aqR +aqR +fpJ +tHJ +xPI +fwU +byR +fWj +xPI +qGV +ups +wHB +brp +xPI +xPI +oja +xbp +qJy +maG +xbp +xbp +jTq +xbp +xbp +xbp +nWP +wvC +jMP +ity +xbp +xbp +xbp +xTT +spI +wvC +jTq +xbp +xbp +xbp +uOW +vVc +xGt +iPk +qdH +oQI +oQI +oQI +oQI +oQI +oQI +oQI +ezQ +bRX +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(178,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +hyo +wAT +wAT +paC +hai +wAT +tMq +kFm +aqR +aqR +ljB +xZF +irZ +xPI +xPI +uQH +vVL +vVL +anT +gLO +ntk +xPI +xPI +xPI +oja +buj +buj +buj +buj +buj +fCg +sFi +sFi +sFi +sFi +sFi +sFi +xVM +vqz +vqz +dKh +vqz +vqz +vqz +gTX +vqz +vqz +vqz +bMr +rvf +xGt +gaJ +nAH +xbp +xbp +xbp +jQP +xbp +xbp +xbp +uWL +xbp +xTq +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(179,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +wAT +wAT +wAT +hyo +pcr +hyo +xOd +xOd +xOd +poh +tBp +nYA +nYA +nYA +nYA +nYA +nYA +nYA +nYA +nYA +nYA +gSF +poh +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +mQf +xuf +xuf +xGt +nSP +wgT +wgT +wgT +wgT +wgT +wgT +wgT +wgT +wgT +lKR +xGt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(180,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +poh +poh +skZ +skZ +mgE +skZ +skZ +skZ +skZ +mgE +skZ +skZ +poh +poh +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +xGt +xGt +xuf +xuf +mQf +xuf +xuf +xuf +mQf +xuf +xuf +xGt +xGt +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(181,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(182,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(183,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(184,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(185,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(186,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(187,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(188,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(189,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(190,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(191,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(192,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(193,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(194,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(195,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(196,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(197,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(198,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(199,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(200,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(201,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(202,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(203,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(204,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(205,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(206,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(207,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(208,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(209,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(210,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(211,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(212,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(213,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(214,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(215,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(216,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(217,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(218,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(219,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(220,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(221,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(222,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(223,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(224,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(225,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(226,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(227,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(228,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(229,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(230,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(231,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(232,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(233,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(234,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(235,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(236,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(237,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(238,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(239,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(240,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(241,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(242,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(243,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(244,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(245,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(246,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(247,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(248,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(249,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(250,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(251,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(252,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(253,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(254,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} +(255,1,1) = {" +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +ylQ +"} + +(1,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(2,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(3,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(4,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(5,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(6,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(7,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(8,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(9,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(10,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(11,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(12,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(13,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(14,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(15,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(16,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(17,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(18,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(19,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(20,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(21,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(22,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(23,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(24,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(25,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(26,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(27,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(28,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(29,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(30,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(31,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(32,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(33,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(34,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(35,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(36,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(37,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(38,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(39,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(40,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(41,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(42,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(43,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(44,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(45,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(46,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(47,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(48,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(49,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(50,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(51,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(52,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(53,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(54,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(55,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(56,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(57,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(58,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(59,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(60,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(61,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(62,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(63,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(64,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(65,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(66,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(67,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +bWd +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(68,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qwY +ogm +qwY +wOh +bJc +oNP +oNP +oNP +bJc +hpd +bJc +qAN +bJc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(69,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +qXC +qXC +qXC +qXC +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qwY +iHf +qwY +ska +bJc +oNP +oNP +oNP +bJc +heo +bJc +heo +bJc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oah +vys +vys +vys +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(70,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +qZU +qZU +qZU +qXC +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +qXC +qXC +qXC +qXC +qZU +qZU +qZU +qXC +xzx +xzx +xzx +qXC +qXC +oNP +oNP +oNP +oNP +oNP +oNP +qwY +iHf +qwY +ska +bJc +bJc +bJc +bJc +bJc +heo +bJc +heo +bJc +oNP +oNP +oNP +oNP +oNP +oNP +oah +oah +vpc +ksP +duu +oah +oah +oah +oah +oah +oah +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(71,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +qZU +qZU +qZU +qXC +qXC +qXC +qXC +oNP +oNP +oNP +oNP +qXC +qXC +qXC +qXC +qZU +qZU +qZU +qXC +qZU +qZU +qZU +qXC +qXC +qXC +djK +kDY +kDY +qXC +qXC +qXC +qXC +qXC +qXC +qXC +qXC +qXC +qXC +qXC +qXC +xzx +xzx +xzx +trd +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +qXC +dVj +dVj +dVj +obi +obi +qwY +qwY +kJS +jeL +jfN +bJc +nmg +nlv +dRL +bJc +idZ +lej +yee +bJc +bJc +wWu +iTh +iTh +iTh +wWu +oah +rad +cMU +cOK +oeP +pMu +qOX +xHo +jYj +dTx +bqR +owV +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(72,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +tRH +fDo +oGv +trd +rSA +wjL +qXC +qZU +qZU +qZU +qZU +qXC +oZo +ggY +trd +bdL +wfy +tya +trd +mPz +pFY +vEQ +trd +aio +iRD +iEt +tDC +iEt +oPv +hFQ +gOU +aCC +nia +mMK +pTi +gOU +icG +icG +icG +gOU +xzx +xzx +xzx +trd +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +wUE +wUE +rFk +jeL +cdk +oLn +rSy +hUu +qwY +qKL +kWf +oMY +lxz +wTg +mzu +qKL +kWf +qKL +kWf +otT +wWu +hEe +jES +uZG +wWu +rUm +fYB +bOz +lMA +cMU +iVS +dnR +xHo +aFi +cDV +cDV +nux +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(73,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +hBp +vJx +mbv +qZU +rRO +rRO +jBE +bVT +bEl +bEl +jkT +dDQ +rRO +rRO +dXy +dSW +vRn +slL +dXy +jZm +lJi +kWj +trd +luG +njo +njo +lzZ +jUG +tXt +tXt +gOU +mCY +ubg +kKD +tjt +hCv +baA +baA +baA +gOU +xzx +xzx +xzx +trd +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +idY +aDM +aDM +aDM +hZX +htq +han +iNr +ihX +qwY +sEJ +sEJ +npN +uHG +hAB +tOU +oGi +oGi +omI +sEJ +rPA +azG +gIR +eWT +uWi +wWu +qMN +ooA +mcO +gWa +cMU +jbG +xXf +xuN +fcO +vrI +qdb +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(74,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +qXC +qXC +jIV +ufJ +bsw +eut +hzr +wlJ +bom +xkZ +xmK +xmK +cyK +hMY +wlJ +hzr +dDY +uox +dyE +xle +cCC +mvS +aUa +tkz +rjX +qWc +lMb +trd +joE +trd +tiv +tXt +gOU +hcU +dbW +gon +hEr +gOU +urG +cIQ +dkQ +gOU +xzx +xzx +xzx +trd +xzx +trd +trd +trd +trd +trd +xzx +xzx +trd +aDM +rFk +rFk +jeL +vrx +cjo +lsl +dWq +qwY +pcQ +lxz +mTA +foH +bly +bUa +mTA +foH +ctf +lxz +lxz +azG +vaH +fhx +nHI +wWu +qQa +nnC +qqK +oba +xMG +tpE +crz +npm +aVi +qXB +cBn +uJj +ijX +ttA +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(75,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qZU +eZY +pYC +qgx +cwr +fYs +qZU +hzQ +rRO +lJi +rRO +rRO +rRO +rRO +ukR +rRO +hzQ +dXy +xle +lkb +xle +dXy +hgY +ucn +yag +trd +hDj +oRO +vTh +itO +tXt +tXt +tXt +gOU +ctO +gSD +mfs +iyN +hCv +baA +baA +baA +gOU +xzx +xzx +xzx +xzx +xzx +trd +xzx +xzx +xzx +trd +trd +trd +trd +aDM +jeL +jeL +jeL +fiA +bbf +umT +qCr +jeL +jeL +gSJ +fcP +lej +wlF +bUa +fcP +lej +daM +lxz +lxz +azG +nXu +eWT +tBN +wWu +eYh +oMn +cMU +aUS +cMU +vIs +aRN +xuN +smR +cDV +gRz +uJj +ijX +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(76,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qZU +jNv +svp +cwr +cwr +cap +trd +rvR +nnu +nxe +rRO +lqs +kfb +rRO +cfz +rYY +jHP +trd +oOi +lkb +kKp +trd +ifN +vHp +vPt +trd +eDK +pId +anz +vwx +anz +rbL +mNg +gOU +ppj +gdo +htu +hWz +gOU +ugx +ugx +ugx +gOU +xzx +xzx +xzx +trd +xzx +xzx +xzx +xzx +xzx +idY +rFk +rFk +nRl +aDM +jeL +cRe +ouR +vrx +hsH +bRm +lSp +wUf +qwY +lxz +mTA +baE +bly +bUa +mTA +baE +ctf +bph +soJ +wWu +lzp +mKW +heW +wWu +eYh +xEV +cMU +aUS +rad +xHo +iDe +iDe +iDe +iDe +xHo +oah +oah +oah +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(77,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qZU +rRO +aAQ +vPv +cwr +bUs +trd +qZU +qZU +qZU +xLO +qZU +qZU +xLO +qZU +qZU +qZU +trd +dXy +lkb +kOO +trd +trd +rNJ +trd +trd +trd +trd +uev +uev +uUD +dfw +dfw +gOU +dRR +gOU +gOU +gOU +gOU +gOU +gOU +gOU +gOU +trd +trd +trd +trd +xzx +trd +xzx +xzx +xzx +trd +trd +xfi +xfi +lwS +jeL +fTk +jJA +mCr +dIJ +rfa +tZk +vww +ojO +qeT +jcy +lej +fhO +kgT +eEX +lej +tHh +bph +ggu +wWu +azG +mIK +vEj +wWu +pUM +iDe +vys +xEz +vys +iDe +bdu +iDe +aMF +cDV +iuJ +gDM +ijX +moW +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(78,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qXC +iOO +bUh +bUh +unB +bUh +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +dSc +lkb +tKi +gZj +gZj +pfQ +nuh +vKk +vSh +trd +dfw +dfw +dfw +dfw +qAQ +qmC +pDZ +fjx +tZY +dfw +ioa +ost +fut +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +urz +nna +fAF +jeL +kmY +maj +ycJ +gux +dND +cKp +ubs +qwY +aNw +mTA +foH +bly +bUa +mTA +foH +ctf +sQN +fta +vHb +boN +nus +vTc +wWu +teu +kPs +sFt +aUS +lUb +hVl +bdu +iDe +iDe +eGw +iuJ +oah +oah +oah +fYV +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(79,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +qXC +qXC +qXC +qZU +qZU +qZU +qXC +rRO +bUh +ufB +wqW +kCA +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +kRB +vLP +mhA +lWr +uox +hyA +sNP +sGD +hWM +trd +brF +owS +vuK +dfw +xcy +kxd +sVO +mri +oDj +dfw +lOx +gWq +hyI +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +hgl +xtp +nCC +jeL +jeL +jeL +eDu +fwH +uSQ +fwH +jeL +jeL +fAU +fcP +lej +wlF +bUa +fcP +lej +daM +cTO +xfZ +azG +dXG +blr +hgx +wWu +oGc +sdC +sFt +jeO +hxb +bdm +bdu +iDe +gCG +cDV +cDV +uJj +ijX +ijX +cCn +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(80,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +eUd +oOm +hHn +cGr +bow +epV +tLj +sDe +iJR +iJR +trd +hBt +rMc +xKh +xKh +xKh +rYy +hBt +bUh +fXM +iJR +rxX +trd +nlN +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +sah +qsr +bMm +kIx +uub +kIx +cHL +edf +kEV +trd +lXx +bJM +bJM +xit +mNQ +bJM +sVO +bJM +tlG +tua +bNf +mNL +jAw +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +twm +fEo +osR +cyr +jeL +eYe +vAf +eNy +wXk +iPt +qwY +pcQ +aNw +mTA +baE +bly +bUa +mTA +baE +ctf +cTO +xfZ +qLq +gbS +nPx +mEb +wWu +lYo +isH +fxD +eXN +iRC +ulR +bdu +iDe +gCG +cDV +iuJ +uJj +ijX +ijX +vvc +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(81,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +soa +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +vkJ +vkJ +iJR +iJR +iJR +bUh +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +trd +hBt +rMc +xKh +cvw +xKh +rYy +hBt +bUh +epV +iJR +uSU +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +trd +iVO +iVO +jsJ +wpy +hKC +xed +uox +uXt +rMw +trd +uFN +aPC +aPC +aPC +cCv +aPC +vnH +fLc +snP +wVF +nxq +pjz +qWT +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +kHp +yhh +jXg +vSO +jeL +dCq +hgJ +qrc +trp +bnf +wYq +xOS +aNw +wXc +djQ +use +bOl +mXW +wmH +onI +vJf +xfZ +azG +wny +blr +qeA +wWu +dyA +xHo +iDe +grv +xHo +iDe +bdu +iDe +oKO +cDV +ijX +uJj +ijX +ijX +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(82,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +iJR +bUh +iJR +bUh +iJR +sam +eUd +qFO +trd +unB +trd +trd +hBt +rMc +xKh +xKh +xKh +rYy +hBt +bUh +bUh +bUh +kXa +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +pFM +trd +mub +jiT +bpu +qvN +squ +khe +xle +qjo +lkb +trd +rZH +iVV +bJM +elG +lPy +lPy +xhy +lPy +vWk +tua +ltw +djE +hZE +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +nht +nht +llF +kIj +jeL +hyn +hxP +uXm +olO +gtf +qwY +seW +qwr +nCy +kFA +mcw +lxz +foZ +hfN +nzd +vLw +utR +wWu +rbn +dKN +smM +wWu +iDe +xHo +cDV +eTF +oDQ +iDe +xHo +iDe +iDe +cDV +cDV +oah +oah +oah +oah +oNP +oNP +oNP +oah +oah +oah +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(83,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +iJR +eUd +iJR +iJR +ujc +hHn +trd +xpI +pBv +mmw +mhj +mhj +mhj +mhj +mhj +mhj +mhj +wco +oyn +wCk +eld +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +trd +unO +vrV +kEI +lFL +rHn +jKa +kRB +trd +teB +trd +sGV +dfw +bJM +xXe +otx +otx +otx +otx +otx +dfw +avT +uaH +krd +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +iuP +bOR +anP +iOt +jeL +jeL +jeL +jeL +jeL +jeL +jeL +lej +bJc +lUP +pUG +dBb +bJc +ktP +gcJ +lej +lej +lej +wWu +wWu +wWu +wWu +wWu +fWp +iuJ +cDV +eTF +aif +xMy +aif +aif +xMy +kzf +xMy +vhM +vhM +vhM +oah +vys +vys +vys +oah +ijX +ijX +ijX +oah +oah +oah +oah +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(84,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +ifw +oNP +oNP +cNm +ifw +oNP +oNP +oNP +oNP +vkJ +iJR +eUd +iJR +iJR +iJR +bak +xGd +gBQ +fka +xuK +wqn +sCq +oDX +oDX +oDX +niF +kfa +dBN +qZU +qZU +sXa +trd +rkQ +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +squ +xLf +olY +xLf +oAx +trd +trd +trd +aky +xXa +pFs +tua +tua +tua +wzF +xwJ +aqW +lPF +wzF +tua +bJM +bJM +bJM +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +lBQ +wCJ +uGj +qjz +llF +iGW +tNi +lvm +xfi +sFE +wfX +lej +mAI +uHG +aBE +sTU +vGs +lej +aif +xMy +xMy +vhM +iDb +xMy +aif +aif +iDb +xhN +xMy +iDb +vTF +oPg +crz +crz +wGb +iuJ +cDV +ijX +xHo +qEd +vhM +vwo +trR +trR +trR +erO +ijX +iDe +pam +ijX +ijX +ijX +vys +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(85,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +cNm +oNP +oNP +vkJ +iJR +bUh +iJR +iJR +iJR +trd +trd +pPi +pPW +xuK +tSE +rFu +rRO +rRO +rRO +bTl +ouZ +bjs +oqn +lWY +rSU +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +squ +isE +grG +isE +nVR +dXy +hGA +voB +nlB +fOk +orY +edl +cJk +tua +wzF +uTy +jGR +nxM +wzF +tua +mQK +pNd +ues +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +oOp +mHJ +uBC +vjg +tEN +gyQ +qiP +ilK +xfi +nYR +wje +lej +mue +lxz +xyM +fSw +leZ +lej +bTk +bKk +lav +rbA +esP +uLl +eLN +eLN +sDo +dNy +ijX +iDe +eTF +iDb +nYe +hlO +nON +hlO +jrp +jrp +hlO +hlO +xHo +qbM +uLc +uLc +uLc +lQx +ijX +iDe +eOV +gAH +kbq +ijX +vys +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(86,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +cNm +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +vkJ +iJR +iJR +iJR +tLj +iJR +trd +fIl +uIT +pPW +xuK +gLs +rFu +rRO +iVK +rRO +bTl +kfa +bjs +rIJ +jIq +nkd +trd +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +eyb +vmE +squ +jzy +hKU +jzy +nVR +dXy +qhs +bYP +rat +qhs +hHk +pFs +qhs +tua +wzF +bqN +rfc +ifK +wzF +tua +bJM +bJM +bJM +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +iKV +csI +sbe +tfb +tMD +crJ +cvt +gcu +hez +aDM +rFk +lej +ktP +skX +uUL +eXm +lej +lej +jgw +bNm +bNm +bNm +xHo +iDe +oqf +wnf +hap +xHo +iDe +iDe +eTF +kCD +nYe +fLe +jiI +uHI +rZp +cgB +bQW +hlO +ijX +vhM +iDe +iDe +iDe +ijX +pBE +kMQ +hkX +xHo +iDe +dfH +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(87,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +qFO +dur +iJR +fVO +iJR +trd +trd +reZ +pPW +xuK +tSE +rFu +rRO +oyH +rRO +bTl +ouZ +bjs +dAT +kxW +six +trd +trd +trd +trd +xlt +qZU +qZU +xlt +trd +trd +trd +trd +nQT +hke +isk +pWh +vcv +dXy +fYf +bYP +nNf +hnc +del +pFs +fYf +tua +mmz +wzF +wzF +wzF +mmz +dfw +wvk +wkM +aCD +dfw +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +xzx +trd +dYY +dfu +nXJ +qNC +mWW +rtf +lgj +qiP +xfi +huf +aDM +aDM +hez +jyS +kmd +iix +bNm +bmY +klR +kCZ +aPG +bNm +dGD +kBc +toC +fVY +mCd +gZm +gvs +iDe +qsv +xMy +jrp +hHB +hfk +hcz +uGl +jLb +dvD +hlO +byy +gkq +lam +lam +lam +pUO +sOo +trR +yfS +xHo +nix +eqs +nix +oah +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(88,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +eUd +iJR +iJR +iJR +mcp +iJR +iJR +xGd +gBQ +cCb +eYm +kXl +tem +gBE +gBE +gBE +thF +kfa +lZF +qZU +qZU +aJI +tbh +trd +iJR +trd +nSl +pNp +pCJ +jun +trd +gpf +hIa +trd +trd +dXy +kOO +dXy +trd +trd +aev +fXn +lkM +uXO +iMu +kGe +roG +dfw +dfw +tua +tua +tua +dfw +dfw +eOo +hPx +bbq +dfw +qQF +geP +qQF +bNm +bNm +bNm +bNm +kta +kta +qQF +trd +trd +doA +doA +doA +mjp +llF +doA +doA +doA +xfi +xfi +xfi +xfi +klm +tSJ +cWv +kpL +tTh +tUc +klR +wIR +aPG +bNm +hXd +uyN +cDV +gWY +cDV +gVQ +rzH +xHo +mra +xMy +jrp +sXE +wfp +coP +ejl +yeN +svZ +hlO +byy +wTf +trR +trR +trR +erO +sOo +trR +yfS +iDe +xlb +qVH +lJS +ijX +oah +oah +oah +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(89,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +bUh +iJR +eUd +iJR +mcp +iJR +iJR +trd +gBQ +lbR +yjM +bjs +bjs +bjs +bjs +bjs +bjs +bjs +yjM +xjL +kGL +aJI +bCF +trd +lfL +trd +xER +tbQ +ubd +oDX +trd +cVz +sZE +wqb +sno +jDZ +qDF +uor +ukr +tRL +uor +bxP +qEA +hEq +ida +lHi +uor +tEl +uor +uor +uor +uor +gUN +uor +uor +uor +uor +eUW +uor +jUc +eYW +kRm +wqb +wqb +agD +wqb +wqb +wqb +wqb +dlS +wqb +wqb +wqb +esq +ehT +wqb +wqb +wqb +wqb +gsH +wqb +mAa +oaM +tSJ +tst +jrn +tQL +uSO +klR +xkr +aPG +bNm +bDs +joF +wwl +wfj +bql +nBt +cFX +iDe +exM +ijX +jrp +btY +vlR +bkk +phv +lVS +hlO +hlO +byy +wTf +trR +trR +trR +erO +sOo +trR +yfS +xHo +xlb +qVH +lJS +ijX +vpZ +ijX +vvc +cCn +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(90,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +bUh +bUh +bUh +iJR +trd +trd +trd +trd +iJv +trd +trd +dMH +mBM +aIj +aIj +aIj +tqt +dMH +trd +trd +trd +lvk +trd +trd +iJR +trd +ifl +dKJ +lDU +pDx +trd +cVz +fYe +tSS +wOZ +qIk +cOI +ois +sbV +tiE +sbV +aTY +aTY +mBN +aTY +waL +aTY +ahd +aTY +aTY +aTY +gbA +bZD +aTY +aTY +aTY +aTY +aTY +aTY +eTS +uKb +tQm +mOk +mOk +nwu +mOk +mOk +mOk +mOk +qZG +dEH +dEH +dEH +kFF +dEH +dEH +eVk +tON +mOk +mOk +mOk +ked +uGg +mOk +lbl +pYQ +qaF +oqx +tvK +bNm +bNm +bNm +bNm +seC +cDV +nHJ +ijX +qFL +iDe +iDe +exM +cDV +hlO +fvs +phv +eej +vGv +tid +nYe +smY +xfy +vvz +cgE +cgE +cgE +lQx +sOo +trR +yfS +iDe +xlb +qVH +qVH +qVH +jZk +ijX +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(91,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +bUh +jHJ +iJR +iJR +trd +lGw +cQl +rre +sbC +hFc +trd +dMH +mBM +aIj +uzy +aIj +tqt +dMH +trd +tLj +bUh +mLh +oya +bUh +sDe +trd +trd +qNA +trd +trd +trd +cVz +kZx +rOQ +kKr +aVA +qwo +tdE +qwo +nOe +qwo +qwo +cUb +dDM +lkc +cLM +cLM +kPo +cLM +cLM +cLM +jTj +vlL +cLM +cLM +cLM +cLM +cLM +xBb +rBv +cLM +cLM +cLM +cLM +jvO +oOj +aNU +eIe +cLM +cLM +geO +cLM +cLM +gSL +cLM +cLM +cqY +vNE +cLM +nJY +fUP +vzE +inD +tSJ +fmM +wOZ +lMs +quk +txh +dAJ +svq +svq +bNm +qtl +hfv +baF +cDV +jJC +xHo +cDV +mra +xYU +xYU +xYU +xYU +xYU +xYU +xYU +xYU +xYU +xYU +xYU +xHo +xHo +iDe +iDe +sOo +trR +usi +iDe +xlb +qVH +lJS +ijX +pxG +ijX +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(92,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +cNm +oNP +ifw +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +iJR +vkJ +bow +iJR +iJR +iJR +unB +rRO +rRO +rRO +ukR +jBd +trd +dMH +mBM +aIj +aIj +aIj +tqt +dMH +trd +iJR +wBY +dyf +uGi +dwz +dwz +dwz +eZk +xqq +iJR +bNm +bNm +bNm +bNm +bNm +bNm +ojd +fmZ +fmZ +bNm +uGN +lEK +chy +ibt +dDM +wNt +mgo +lEK +bNm +cJK +cJK +cJK +bNm +vxT +bNm +cJK +cJK +cJK +bNm +bNm +gpU +bNm +bNm +tDI +hbY +bNm +bNm +bNm +hez +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +bNm +dHk +cpV +iix +tTh +nUY +txh +rGF +svq +gHF +bNm +vys +vys +aFy +vys +vys +xHo +sZD +vkg +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +xvM +jpd +tsN +iDe +sOo +trR +yfS +iDe +xlb +qVH +lJS +ijX +oKO +goY +ijX +vvc +cCn +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(93,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +qcR +iJR +dCa +iJR +iJR +fXM +eUd +trd +xUk +fPq +pUo +jIm +rRO +qix +tbU +tbU +tbU +tbU +tbU +tbU +tbU +wZX +wBY +wBY +tXY +iJR +bUh +iJR +bUh +dLU +iTw +oDl +bNm +sON +ung +lZu +qOJ +skw +jiV +nXy +mPa +rDV +otq +jPT +uXM +ibt +dDM +wNt +rzR +cJk +cJK +iad +vzg +wNJ +keK +hkE +dBA +hCZ +vzg +mhN +bNm +gUc +qtx +sxv +bNm +bNm +bNm +bNm +jhr +rFk +aDM +aDM +xWu +aDM +aDM +aDM +aDM +wvl +nqx +nqx +nqx +ePW +nqx +nqx +nqx +smJ +iXO +hKB +fVB +bNm +doj +xdU +naZ +svq +svq +bNm +bxK +cDV +adn +crz +tpE +iFK +nPJ +xMy +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +blD +iuJ +htY +iDe +sOo +trR +yfS +iDe +xlb +qVH +qVH +qVH +qVH +jZk +ijX +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(94,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +cNm +oNP +oNP +ifw +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +sgZ +vkJ +fKG +iJR +eUd +vMN +trd +trd +trd +trd +dTq +trd +trd +iZN +trd +trd +qZU +qZU +qZU +trd +trd +eUd +gLj +eUd +eUd +sam +iJR +bUh +dGC +sKW +oWQ +bNm +cAn +kCn +eBq +bNm +hJA +tOw +lAX +yhd +uii +kgh +jPT +uXM +ibt +dDM +wNt +rzR +qhs +cJK +sEN +aTe +vtI +wZl +dHc +kxK +ioD +aTe +ran +bNm +kod +mbV +iww +bNm +rFk +rFk +sYf +rFk +wsw +run +aDM +nyI +nyI +nyI +nyI +nyI +rMI +nyI +cYY +cYY +cYY +cYY +cYY +sRN +xfi +kLN +tst +ngB +bNm +bNm +gcJ +bNm +bNm +bNm +bNm +fma +cDV +iuJ +hfv +cDV +cDV +mra +xMy +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +iLE +kxf +iFA +xHo +sOo +trR +yfS +xHo +xlb +qVH +lJS +ijX +eqs +pxG +ijX +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(95,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +iJR +iJR +iJR +iJR +sDe +iJR +iJR +trd +qXi +erI +trd +wBY +bUh +eKW +eKW +eKW +eKW +eKW +bUh +iEw +iJR +luE +iJR +iJR +iJR +lnd +poZ +aXS +uSU +bNm +yed +lgQ +vRq +bNm +iXu +aFZ +vaL +kbM +xaX +kgh +fNZ +wuz +ibt +dDM +wNt +rzR +imR +cJK +lZm +vzg +wuA +xdF +vzg +sso +pJH +vzg +dvU +bNm +hFX +mow +rTa +bNm +oqL +rFk +xfi +dqK +rFk +xfi +aDM +nyI +lEQ +qqa +mEk +kXg +pOG +ijB +cYY +hlv +dhj +nnQ +cYY +cYY +cYY +tSJ +tst +iix +bNm +cpH +vhM +ijX +iuJ +iuJ +iuJ +hfv +iuJ +biv +juW +iDe +iDe +exM +iuJ +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +xHo +iJE +iDe +iDe +sOo +trR +yfS +iDe +xlb +qVH +lJS +ijX +ijX +ijX +jtU +vvc +ttA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(96,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +bUh +iJR +iJR +iJR +nBB +nBB +nBB +nBB +nBB +iJR +trd +qMS +qMS +trd +wBY +bUh +bUh +bxs +bxs +bxs +bUh +bUh +iJR +iJR +iJR +iJR +lfL +iJR +qFO +xPV +dui +uSU +bNm +bNm +bNm +bNm +bNm +bNm +kRX +bNm +bNm +ccZ +bNm +bNm +bNm +kyk +cYB +sLz +bNm +bNm +bNm +bNm +kMO +bNm +lzM +yal +hOG +bNm +oUE +yef +yef +yef +yef +yef +yef +wje +rFk +rFk +rFk +xjD +rFk +aDM +nyI +rbI +tnO +hYw +iWA +qQv +xMD +djy +qqD +xNq +cuW +oDR +iYn +pEZ +tSJ +tst +rzo +gcJ +vhM +vhM +vhM +aif +xHo +oKO +ijX +qiq +mmO +iuJ +ijX +cQf +exM +ijX +dDd +iQr +lbk +iQr +iQr +amj +iQr +iQr +lbk +iQr +dDd +ijX +xii +vhM +vhM +qbM +kSY +hKu +xHo +jxI +jxI +jxI +iDe +ijX +ijX +qYn +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(97,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +eUd +bUh +iJR +iJR +iJR +nBB +gmw +vnR +ygB +nBB +iJR +trd +trd +trd +trd +wBY +iJR +sam +tXY +tXY +tXY +eUd +iJR +iJR +qFO +fAd +sDe +iJR +iJR +iJR +tLj +dui +jlt +kyz +rKV +rKV +nMy +ybU +bUh +bUh +bUh +iJR +ddJ +iJR +tLj +bNm +wmN +kDE +lKN +bNm +vFP +clf +pDF +cva +bNm +aaW +xbw +qHB +jMb +qPk +yef +uNt +whx +whx +sja +ycI +ycI +idY +ycI +ycI +rFk +uCj +aDM +nyI +rbI +oSZ +pRR +mGR +xGl +rwU +dMn +dvQ +ncJ +qKf +jrT +xzg +pEZ +tSJ +hzv +gqg +rZL +rZL +rZL +rZL +vhM +iDe +hfv +iDe +iDe +xHo +iuJ +sGB +xHo +poQ +cDV +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +kiA +lqQ +ijX +nox +ijX +xHo +vhM +ijX +ijX +ijX +ijX +dfH +eOV +ijX +qYn +vvc +ttA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(98,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +eUd +xCN +iJR +fVO +lfL +nBB +oWv +vmx +qNq +nBB +iJR +iJR +sDe +iJR +iJR +wBY +iJR +bUh +iJR +wgS +iJR +bUh +iJR +bUh +bUh +wBY +heU +vHM +wBY +wBY +wBY +dHN +dwz +dwz +dwz +dwz +dwz +dwz +dwz +dwz +dwz +dwz +tlN +dwz +iuS +bNm +meU +qIs +rah +bNm +cqJ +rFk +xfi +xfi +bNm +lHQ +ndZ +bNm +cic +evx +yef +tZV +qHA +dxz +fyJ +ycI +got +vjO +wXX +ycI +sFE +atT +aDM +nyI +rbI +tnO +ent +sYB +pAe +lHl +mdX +nWr +ffV +wxY +dxA +cfc +pEZ +tSJ +fmM +iix +eRv +wed +pWx +rZL +aif +ijX +iuJ +iuJ +iuJ +mJJ +iuJ +sGB +xHo +wXn +iuJ +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +nix +beA +ijX +bdu +vhM +vhM +vhM +vFY +riP +jGg +ijX +iDe +ukS +eqs +qYn +vvc +vvc +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(99,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +fNm +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +bUh +iJR +iJR +iJR +iJR +nBB +xLz +jTe +xLz +nBB +nBB +nBB +nBB +nBB +nBB +wBY +wBY +wBY +wBY +wBY +wBY +wBY +wBY +rHk +eUd +wBY +rqS +rqS +rqS +rqS +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +upW +sam +mkm +bNm +emI +tSS +tNL +bNm +kfC +aDM +aDM +aDM +kmb +svk +svk +dUK +svk +svk +yef +tZV +hyW +vjS +fyJ +ycI +xVY +uxQ +cGk +ycI +ycI +ycI +aDM +nyI +tnO +kWA +xru +lwP +wYI +lwP +cYY +nlJ +bDB +bDB +cYY +uIU +cYY +tSJ +oms +nGB +oxY +uiE +oWG +rZL +aif +tGY +tGY +tGY +tGY +tGY +tGY +tGY +iDe +xii +cDV +xYU +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +iQr +xYU +cql +sGW +cql +dhp +gcJ +dhp +dhp +dhp +dhp +dhp +dhp +dhp +dhp +bkE +oah +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(100,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +cNm +oNP +fNm +oNP +oNP +oNP +gsU +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +cqo +iJR +opa +nBB +nBB +nBB +rTn +dsW +tpl +dlx +dgd +vVV +xdB +pWn +nBB +tLj +iJR +eUd +giY +vqn +xFU +bUh +wBY +bak +eUd +wBY +rqS +iyy +vri +vBc +upW +ucA +oFD +dTB +tKN +dTB +pnC +dTB +djt +dTB +jnX +bpm +upW +swp +dHN +vDX +mPk +bUJ +tNg +hez +aDM +aDM +knQ +knQ +knQ +knQ +xfi +xfi +xfi +kmb +yef +hhw +fZk +fZk +qaW +ycI +kVr +jxV +bSG +prr +rNo +ycI +aDM +nyI +nyI +nyI +nyI +jpr +nyI +feY +cYY +pEZ +pEZ +pEZ +cYY +cwJ +cYY +nmZ +fmM +iix +eRv +tRA +ioz +rZL +vHQ +tGY +uJl +gRR +vhb +rTM +xDp +tGY +sZD +vbp +cDV +xYU +iQr +iQr +iQr +iQr +ngp +iQr +iQr +iQr +iQr +xYU +bas +xIz +tgj +dhp +dJF +wzD +wzD +dra +lzG +wzD +wzD +wzD +dhp +dhp +dhp +dhp +cgF +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(101,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +xjE +xjE +xjE +xjE +xjE +xjE +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +oNP +oNP +vkJ +giY +iJR +opa +nBB +rdq +tPU +rDx +dsW +buG +vKB +iuX +bZV +dpq +vNK +kKd +kKd +kKd +kKd +kKd +kKd +kKd +kKd +wBY +wBY +wBY +wBY +rqS +nAc +csC +cMJ +bhY +gua +feX +bxb +rms +fUX +eKI +lUp +dfe +dTB +jnX +txq +upW +cGr +iJR +bNm +oxq +lwx +nFu +knQ +knQ +grD +knQ +oHj +swl +rir +xfi +rFk +rFk +aDM +idY +tPn +ajH +ajH +foz +oIi +wav +wav +mVz +tiP +uYN +idY +aDM +nyI +eBG +prE +gEi +mOj +nyI +qUq +tel +rOk +wmG +hgM +jMZ +sCG +cYY +tSM +eVK +elt +rZL +rZL +rZL +rZL +vhM +tGY +rWQ +ibd +txT +cDe +vPi +uBs +eUp +xMy +hfv +xYU +xYU +brQ +bMv +bMv +wRu +bMv +bMv +bMv +xYU +xYU +cgV +eZX +gdO +dhp +gcm +jjD +wzD +aOO +wzD +wzD +wzD +wzD +wzD +wzD +wzD +dhp +lpA +jwC +lpA +lpA +gng +gng +jqC +jqC +jqC +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(102,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +xjE +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xjE +gsU +gsU +gsU +oNP +oNP +vkJ +bkR +iJR +opa +nBB +tPt +fbp +jcK +xAn +fur +uCz +gGI +gni +pAC +aOV +kKd +nGy +vnc +cwc +sEa +vqD +mnH +kKd +wBY +mcp +fVO +iJR +rqS +oCc +sTJ +pYw +upW +kHo +tbd +jxW +jxW +tBC +bLJ +xuh +jxW +jxW +vqu +sqX +upW +upW +upW +upW +tkr +hoC +iix +tir +xQH +uDi +uTc +ufo +ufo +guj +oSk +oSk +idY +oSk +oSk +yef +rAa +pFW +fUF +ycI +rpK +jxV +gBu +gmA +jtH +ycI +aDM +nyI +nyI +nyI +sHn +qXS +nyI +qUq +jSH +jSH +sOh +jSH +jSH +nBy +xgr +rHf +avA +geq +cfS +cql +uEQ +ijX +vhM +tGY +eUN +mzy +lMW +ttt +dNY +tGY +mYh +xHo +iDe +xYU +pcM +crm +kdV +crm +crm +crm +wXR +xQW +xqd +fnR +kTx +ouU +gdO +dhp +ulD +jjD +wzD +wYh +aOO +wzD +wzD +wzD +wzD +wzD +wzD +dhp +lpA +msG +rhJ +lpA +pWI +lpA +qic +icK +qic +qic +akK +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(103,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xCl +xCl +xCl +xjE +xjE +xCl +xCl +xCl +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +fYV +fYV +gsU +gsU +gsU +vkJ +oya +iJR +opa +nBB +tDT +bUT +rDi +sjq +fAA +dlx +jzg +dlx +iOj +jvr +fjF +dHz +rdj +vzn +vzn +oLL +ncs +kKd +wBY +mcp +fKG +iJR +rqS +axd +mhm +axd +upW +idA +sfA +tul +tul +tul +tul +qtP +gHQ +gHQ +iaW +ePn +upW +iSr +nyO +axd +aJL +kmd +iix +tir +cQZ +xND +jtS +fYd +vMB +dwK +oSk +lae +sxq +bLX +dgo +iOR +iOR +iOR +iOR +ycI +nTk +oBg +vcN +eJk +ayY +ycI +aDM +roL +aFn +nrh +oqS +jVW +nyI +xVH +xzg +jSH +eOm +jSH +saZ +vrt +xgr +pxF +vWX +geq +cfS +cql +lDH +ijX +vhM +tGY +phm +lxl +aik +uKt +tbi +tGY +lXV +fJT +ggi +xYU +yfw +rFC +giU +dgh +ptO +dgh +koT +acb +mJC +mIp +kTx +krN +gWj +sqh +quC +wlw +mZB +lSi +wlw +mZB +mZB +mZB +mZB +mZB +mZB +guv +qic +lpA +bvi +lpA +msG +vOy +qic +rhJ +pWI +qic +lpA +lpA +uBr +lpA +lpA +jPl +msG +kay +lpA +nFm +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(104,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xCl +xCl +xCl +xCl +xCl +xCl +xjE +xjE +xjE +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +oNP +oNP +vkJ +cGr +iJR +opa +nBB +nBB +hBq +tcq +sjq +uxz +jSr +tHP +vKB +tHP +aGi +kKd +vNW +nAN +jhY +jhY +dTT +wfg +kKd +wBY +wBY +wBY +wBY +fDm +ptF +sTJ +afq +sZZ +ePn +ePn +ePn +ePn +ePn +sth +hay +ePn +ePn +ePn +ePn +biV +dTB +kRz +gzM +fxu +wxo +iix +tir +geE +uDi +cdK +oym +vHu +xnG +oSk +lae +sxq +lZG +nzg +iOR +sOK +eDB +wfP +ycI +fUC +uWS +xeY +nPT +nRT +ycI +aDM +nyI +nyI +lhm +nyI +uSF +nyI +hrz +hmM +mvb +nla +mvb +thL +iEx +xgr +rHf +avA +geq +bsH +cql +cql +vFY +vhM +tGY +eDX +cWA +aik +oLQ +wvA +tGY +smY +mYh +vBS +xYU +vNX +fVu +bMT +juh +bXY +nHM +dye +rjN +rIt +mIp +kTx +ouU +gdO +dhp +hOv +aOO +mZB +uln +wzD +wzD +wzD +wzD +wzD +wzD +wzD +dhp +qic +lpA +pWI +qic +lzY +qic +qic +msG +pWI +qic +bTL +bTL +bTL +bTL +bTL +aZm +msG +tZC +tOA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(105,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +xjE +xjE +xjE +xjE +oNP +oNP +gsU +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +oNP +oNP +vkJ +bUh +iJR +iJR +iJR +nBB +nBB +geD +xen +hww +xwO +bxf +bxf +bxf +kKd +kKd +kKd +eJK +kKd +kKd +kKd +kKd +kKd +unB +rqS +rqS +rqS +rqS +kxP +sgC +dpo +upW +upW +wqF +diK +lsu +ePn +qZu +ufP +asM +qNj +pXv +upW +upW +brr +xdJ +axd +aJL +kmd +iix +tir +sjz +qDf +uDf +rFD +skO +kCi +oSk +lae +sxq +sUd +cou +iOR +lLl +tyi +cCQ +ycI +njs +jXz +xeY +inb +oOU +ycI +aDM +nyI +vDM +lya +nyI +gMK +nyI +iaO +gTm +qAh +fgL +vrF +jtm +kjp +bzl +rHf +avA +pun +hao +fjX +cql +cql +gcJ +tGY +qSM +qSM +qOv +qSM +qSM +tGY +cql +fOe +cql +xYU +xYU +bMv +xYU +xYU +bMv +xYU +xYU +msQ +xYU +xYU +hlY +ouU +iYe +dhp +tKD +mZB +mZB +wzD +wzD +wzD +wzD +wzD +wzD +wzD +wzD +dhp +qic +qic +qic +qic +msG +jPl +udd +bvi +lpA +qic +qic +qic +qic +osz +lpA +pNz +pWI +nyb +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(106,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +oNP +oNP +gsU +oNP +cNm +oNP +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +iJR +wgS +sDe +iJR +rYw +nBB +dOq +qih +vJS +lGz +gHO +rvZ +nAd +kKd +cQN +dWl +mhq +bEz +wsq +kKd +afq +afq +afq +wHC +afq +afq +qff +ptF +lzf +pzE +lFV +upW +gIN +wuN +vsl +ePn +ePn +ufP +dXo +dWr +rWx +upW +mMi +szZ +sLp +upW +aJL +kmd +iix +tir +aWR +qrx +elB +tJW +bmm +voQ +oSk +oAn +lOB +kll +bVu +iOR +dEe +tAf +wKW +iJY +iJY +eXt +gSt +eXt +ycI +ycI +aDM +nyI +qdT +fUS +nyI +bJA +nyI +qbS +vDS +jSH +kGs +jSH +vDS +qbS +xgr +gwz +hBe +sgc +bQs +dbd +dbd +stX +lro +hqy +uiu +gpX +aAI +uiu +uiu +wiZ +amQ +xGv +uBQ +tsu +kTx +kTx +kTx +kTx +kTx +hFi +iOi +dXq +sxf +amQ +kTx +ouU +gdO +dhp +uoW +bps +bps +kFN +hse +pUE +pUE +kVs +dhp +dhp +dhp +dhp +lpA +lpA +jzz +jzz +jzz +jzz +jzz +jzz +jzz +jzz +jzz +jzz +jzz +hzL +cWF +sIr +pWI +msG +jwC +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(107,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +gsU +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +kUe +eER +bFD +tjl +iPY +bmv +kFB +lWh +jNM +tMA +wLN +yfu +fRj +hqC +kKd +afq +fwJ +fwJ +fwJ +fwJ +fwJ +rqS +vqk +nEJ +dgO +eHu +bvt +dTB +dTB +gMi +ePn +ePn +ufP +wZZ +dTB +dTB +upW +xue +ilD +hbp +upW +jyC +kmd +kjb +knQ +knQ +ukT +knQ +ykc +itp +ykc +oSk +lyr +xTi +dWC +kjW +iOR +cCZ +aGV +uOu +iJY +spc +mzp +emX +fmo +iJY +clf +aDM +nyI +rfp +iQG +cYY +pVn +nId +ixA +ixA +ixA +tqv +jSH +jSH +jSH +xgr +fen +wmk +xXb +gEl +kWR +bfR +bfR +bfR +bfR +bfR +ryB +hUk +iwW +bfR +fXA +vhT +jij +fXA +fXA +fXA +qmS +bfR +sJc +bfR +bfR +kHO +cfX +bfR +gNj +bfR +doO +rhu +dhp +guv +dhp +dhp +fTn +fTn +fTn +fTn +fTn +fTn +aLS +lpA +ecg +lpA +lpA +jzz +rfs +gCN +xEr +xat +jXR +eJW +pLl +vtK +bxL +jzz +hzL +lpA +lpA +lpA +jxK +tOA +akK +tHK +lpA +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(108,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +oNP +oNP +gsU +oNP +oNP +vkJ +vkJ +vkJ +vkJ +iJR +iJR +iJR +bUh +hHn +iJR +iJR +iJR +iJR +iJR +iJR +iJR +mkK +mkK +mkK +rFt +mkK +qwP +vfH +qfH +lGz +swQ +iNG +gZo +kKd +mfq +cJI +iLa +ivb +igk +kKd +afq +fwJ +lEC +rET +qyI +gdv +uLB +uLB +uLB +uLB +rcG +upW +quR +quR +quR +gja +quR +wOJ +quR +quR +quR +upW +lsF +luZ +dHW +upW +aJL +kmd +lli +knQ +ssm +tJW +ffH +jjA +caR +kYR +oSk +jtK +uLM +dWC +kjW +iOR +lrE +eQV +gWI +iJY +knD +hct +emX +wvw +iJY +xsW +aDM +nyI +nyI +nyI +cYY +cYY +cYY +wIq +sws +bQH +kGs +bQH +wIq +sws +xgr +kxz +xXz +kcY +bQs +oVO +dYC +qXc +qXc +mAh +trW +quz +qXc +tMm +qXc +qXc +eDZ +vlB +vlB +ilB +vlB +ydP +kUo +qnk +dOC +vlB +vlB +mxR +vlB +cYP +vlB +nxg +nlc +cql +qic +lpA +fTn +fTn +ipa +gaV +vLM +mtr +fTn +fTn +jzz +jzz +jzz +gli +jzz +ouo +wzT +wPU +uoM +uoM +sAp +wkl +eET +uyD +jzz +xTD +uqT +gHa +uqT +iog +uqT +uqT +uqT +uqT +ohy +uqT +uqT +uqT +jlQ +tQn +msG +uEp +lpA +lpA +vmc +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(109,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +eUd +hHn +iJR +mkK +mkK +kUe +mkK +mkK +mkK +mkK +eeX +pnA +xjC +mkK +mkK +mkK +mkK +tIk +byX +eRq +jdj +kKd +kKd +cZS +cZS +cZS +kKd +kKd +oRk +fwJ +azk +tiS +gLa +jyh +uLB +bRG +iMU +uLB +fHy +upW +rMl +qLz +act +ePn +bwm +bLw +kPl +qLz +vTf +upW +upW +upW +uyf +upW +vEe +kmd +iix +ceE +geE +gIv +wPS +mww +oXM +kHN +oSk +aPD +xTi +dWC +kjW +iOR +iOR +xPm +iOR +iJY +wBC +mzp +emX +pPS +iJY +wje +aDM +cYY +aTV +utV +hFo +mfC +cYY +jPk +jSH +bQH +dWK +bQH +jSH +eNi +bzl +xBz +avA +lBu +gHw +oVO +cql +eiO +cfS +cql +iYt +cql +cql +tso +wuU +wuU +cql +cql +cql +cql +cql +cql +cql +gFf +imW +pkE +pkE +pkE +pkE +ckm +vlB +jzO +qbr +kVu +qic +cuz +fTn +ajJ +adY +xiD +crp +meN +fgd +fTn +iAu +ttn +jzz +iVT +jzz +pAS +eET +utX +sAp +woF +sAp +toD +eET +pym +jzz +qic +rhJ +lpA +lpA +jxK +lpA +lpA +gng +gng +ceY +gng +gng +usy +dsc +uqT +pOT +uqT +jlQ +lpA +vmc +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(110,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nyH +ifw +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +bUh +bUh +eUd +oya +iJR +mkK +fxs +eeX +lJD +eeX +uSr +eeX +eeX +eta +kAc +tqD +cXk +lDy +khY +wbT +hMC +iNG +sqe +aEI +nYo +pFL +idp +pFL +qPV +kKd +afq +fwJ +bAS +btu +qtD +eKw +uLB +rwC +rKg +ikI +fHy +rcG +dTB +jAd +qAC +tul +qtP +gHQ +pet +sIf +dTB +upW +vFP +rFk +rFk +bNm +aJL +uiR +aXW +ceE +cyv +ehD +pft +aYi +caR +mFc +iJY +xiG +mzp +yfN +eTU +xpG +pPc +tZq +ggc +boR +ffI +uwr +ous +eTU +hez +aDM +xWu +cYY +sXf +snr +snr +nIU +cYY +uoF +knS +bQH +kGs +bQH +uoF +sws +xgr +xBz +avA +eAf +uxH +oYH +uxH +uxH +uxH +uxH +oCo +kuH +cql +cql +cql +cql +cql +rgd +fCR +mDO +dog +kuH +lDx +lax +imW +aNb +fww +ktl +iwH +lwp +abZ +dAV +abZ +dZM +qic +mCJ +fTn +wGS +msT +upY +iGg +ljK +wGS +fTn +jzz +mRp +jzz +jzz +jzz +lDC +rqj +mli +jiL +itq +lhI +gJC +vuz +sBM +jzz +fFr +vIb +vIb +vIb +vIb +vIb +vIb +vIb +grk +fHv +xpB +gng +lpA +lpA +lpA +msG +jrW +bxZ +lpA +vmc +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(111,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +iJR +eUd +iJR +iJR +iJR +iJR +mkK +eeX +ldF +sUL +eeX +eeX +hxV +eeX +uNg +aIX +wXi +qRi +qRi +ius +vfm +hBV +qlB +uMg +ijo +kdq +pDk +tVk +iwG +cjO +qff +afq +fwJ +ijw +tAX +mAo +wUD +uLB +oOY +bjR +uLB +uKp +upW +reG +vho +act +ePn +hay +ePn +kPl +vho +wAQ +upW +rFk +rFk +rFk +idY +aJL +kmd +iix +ceE +pkA +sEv +sEv +eRG +bVn +hlM +iJY +emd +emd +emd +mzp +bAR +rAv +kKU +soE +lai +lHS +nCi +nCi +nCi +iJY +aDM +aDM +xPu +fjQ +yiN +yiN +yiN +hsc +bMY +bMY +lCW +vDZ +jSH +jSH +jSH +xgr +vVy +bVr +cza +uxH +lbT +xeT +rSe +ioY +uxH +oCo +oCo +oCo +tKP +pwQ +pwQ +pwQ +nsP +pwQ +pwQ +pwQ +qVh +kEq +rHE +imW +uQJ +bTp +qkU +nJu +pkE +gme +big +bIq +dZM +qic +jrW +fTn +wXM +tPF +upY +iGg +xlT +fOx +fTn +tPO +fgX +lHY +kUN +jsX +xyK +lWj +tvW +jCj +egF +jCj +wkl +cFE +vmi +jzz +ruh +slr +ljF +bCY +vez +dtI +fGq +vIb +oRM +azx +lCZ +gng +fpQ +bvH +bvH +msG +msG +ejQ +msG +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(112,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nyH +ifw +ifw +ifw +ifw +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +vkJ +iJR +iJR +iJR +iJR +iJR +iJR +iJR +bUh +fKG +fKG +iJR +tLj +mkK +krp +eeX +xRA +tZQ +kuW +eeX +kBt +yhk +jcr +pLC +jOm +pVT +khY +quF +swQ +fFZ +gZo +aEI +mbe +oaC +vbE +rPK +mbe +kKd +idY +fwJ +uLB +uLB +uLB +fnO +uLB +uLB +xKs +uLB +ikI +uLB +uLB +fwJ +pBI +ePn +hay +ePn +nJI +upW +upW +upW +rFk +rFk +hEc +bNm +ghx +kmd +iix +knQ +qcZ +sYR +jgL +wkT +geI +sYR +iJY +cIt +hrj +kqX +mzp +bYp +bRq +iKd +vQt +uky +lHS +rAv +ePb +uEM +iJY +aDM +mYn +cYY +vQA +qbS +aEx +rwH +cYY +uoF +pZW +jSH +kGs +jSH +dJO +sws +xgr +xBz +hbk +naM +uxH +jnY +oqF +wmu +tLD +dNt +oCo +mxB +oCo +loI +vlv +vlv +vlv +nsP +vlv +vlv +vlv +whq +vlv +vlv +imW +bGe +wOA +egJ +gMV +pxr +sGu +oON +qGy +guv +qic +uEp +fTn +wGS +msT +upY +iGg +ljK +wGS +fTn +xSs +lsG +qWd +mEG +qLk +iEa +wRt +ejz +uaR +aFB +nNJ +mEC +uIW +xWg +jzz +olH +gEF +rrM +rAT +jVS +dZw +vrP +fFr +fjr +azx +iiJ +azx +azx +azx +azx +azx +pWI +rzL +pWI +cgF +nFm +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(113,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vkJ +vkJ +vkJ +vkJ +vkJ +eUd +bUh +bUh +bUh +iJR +sDe +iJR +pXP +pXP +pXP +pXP +pXP +pXP +pXP +pXP +pXP +pXP +pXP +xsj +pXP +pXP +pXP +pXP +wWj +fFZ +wPf +kKd +kKd +kKd +kKd +kKd +kKd +kKd +rFk +uLB +xmm +rIf +lgH +mui +jQd +hmY +kmU +uLB +msX +aDE +keI +fwJ +aBJ +axd +vEA +axd +upW +upW +jHi +wje +rFk +rFk +rPs +bNm +uOZ +jMn +eJP +knQ +ceE +ceE +vlt +hCP +ceE +ceE +iJY +tXo +tXo +tXo +mzp +lKS +ckq +wOL +coS +qBE +sdH +cpd +cpd +cpd +iJY +aDM +oat +cYY +cYY +iht +cYY +cYY +cYY +cYY +cYY +lEV +fXb +iEx +cYY +cYY +cYY +oQp +qVf +gwV +uxH +hGH +wis +cvC +bsD +uxH +oCo +gDX +oCo +nfY +sCH +sCH +sCH +csu +sCH +sCH +sCH +whq +sCH +sCH +qSh +vFt +tTS +wiP +qvJ +pkE +jQB +wgk +ufQ +dZM +qic +qic +fTn +fnx +xXY +tKf +sCT +frb +erM +fTn +ktr +weS +hnG +qVd +jsX +nKx +mUB +qto +qto +tPN +qto +qto +ocF +xaF +jzz +ljR +sQq +rrM +lTq +mpj +fML +vqK +lHo +fjr +azx +bZX +alj +alj +tXs +hck +hck +jbo +rNL +uRS +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(114,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +vkJ +giY +iJR +iJR +iJR +iJR +iJR +iJR +pXP +jeC +eDL +mbo +biQ +vbZ +mpt +mbo +teR +oGL +ruz +fpW +etF +nDE +vXq +pXP +hMC +fFZ +wPf +srM +rFk +rFk +rFk +nRl +rFk +rFk +rFk +srM +vcz +vcz +qCB +xKq +shu +gty +kmU +mUM +msX +aFY +oKE +fwJ +rnV +fpD +eog +diw +bpF +upW +rFk +rFk +dYa +jyD +aQj +jyD +bqG +ggI +rAK +jyD +ufD +llB +lba +hCf +aAK +vFp +iJY +jAF +hrj +kqX +mzp +cJW +rAv +kRk +vpD +cJW +mzp +rAv +hrj +uEM +iJY +aDM +lfu +cYY +iOZ +jSH +pwA +gOr +eUx +xRj +gkx +dsl +tKQ +snr +xgr +qbS +xUN +xBz +hbk +naM +uxH +iuc +jVo +fSb +uxH +uxH +oCo +gDX +mDO +bir +mQV +mQV +mQV +fpL +fpL +gqG +kuL +gUS +mQV +mQV +lwp +vKJ +rSR +eMa +dbG +lwp +abZ +fOv +abZ +dZM +dZM +pzv +fTn +diH +uTt +oMB +oMB +clE +oMB +fTn +aDx +aDx +aDx +aDx +jzz +jzz +qto +qto +sjg +pAa +ptt +qto +qto +jzz +jzz +bOq +vIb +xkq +ogW +lIL +ees +dJY +lHo +fJj +azx +iiJ +azx +azx +lJO +azx +azx +msG +fAg +msG +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(115,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +cNm +bxs +bDR +iJR +iJR +fVO +iJR +iJR +iJR +pXP +xCP +qwG +ikx +woq +prW +wgr +aZJ +qqQ +cmB +iQz +nTx +cmB +cmB +rvM +gOt +elw +oXP +eXg +tIk +tIk +tIk +tIk +tIk +srM +tIk +rFk +uLB +iXL +sbJ +szJ +lod +hwC +inr +fzc +fgb +lbv +iAm +nZI +fwJ +iFF +oYN +aHr +uGK +ioC +upW +nRl +rFk +run +jyD +apS +qvo +oYq +ggI +rAK +rDG +jFU +kgR +lba +hCf +gDT +lyV +iJY +iXR +iXR +iXR +mzp +cJW +rAv +tOq +vpD +cJW +mzp +sxI +sxI +sxI +iJY +aDM +vuk +cYY +xar +jSH +vmS +pwA +ntx +lrF +cYY +dKU +lVe +snr +xgr +qbS +weU +xBz +ouU +ftp +uxH +uxH +nsj +uxH +uxH +wYB +eQB +aDU +bir +mQV +mQV +vyh +mQV +mQV +mQV +iJd +mQV +mQV +mQV +eXo +lwp +lwp +dZM +dZM +dZM +dZM +dzw +aOw +ybn +eQH +nZf +iUV +abZ +eGI +nGe +xRX +ouI +ivc +vbR +trr +rAs +uOB +mVG +xJa +trr +foT +vii +pVp +uDj +kyt +cYI +veS +aOU +uNO +sfo +hGu +vIb +vHk +wlu +hNP +pJN +bai +psH +teW +azx +eOH +rQe +lRM +duw +rQe +rQe +msG +fAg +pWI +pWI +msG +rQe +rQe +rQe +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(116,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +oNP +oNP +oNP +bxs +bDR +iJR +iJR +eUd +eUd +bUh +bUh +pXP +aMZ +qwG +mbo +nwA +bIs +uAm +mbo +qQV +btt +uvM +qxo +jjf +cbK +aHU +pXP +dTy +fFZ +sqe +cpJ +ubz +hTn +cpJ +cvz +oTk +tIk +rFk +uLB +uoi +cRl +gIW +sMg +gsY +odo +wiv +mUM +msX +spb +xln +fwJ +dLt +gPx +eog +gMi +afq +idY +rFk +rFk +wUE +jyD +apS +kCY +oYq +ggI +rAK +rDG +lEY +tfS +lba +hCf +rHT +lEY +iJY +gbU +mzp +mzp +tkF +mzp +sRy +pXV +uKc +mzp +jZT +mzp +mzp +dZB +iJY +aDM +sFE +cYY +utJ +jSH +wtl +lCW +lCW +uZW +cYY +oPe +qUq +snr +tnl +qbS +xUN +xBz +ouU +eAf +aKk +mjf +nKO +lsC +uxH +kpg +vlv +mvt +mQV +mQV +nNr +hOU +hOU +hOU +dMG +iqm +gBr +hOU +hOU +hOU +nNr +mQV +dZM +gWO +rZI +dZM +tCh +bMH +tdh +vgm +dzb +bBs +opD +rGC +bdr +fXI +xNl +gJm +jAg +xUY +qTq +pjd +dUm +ltm +tVI +lBo +pZf +nNd +nuD +krl +jTm +qtp +vEx +oLB +oLB +dOO +lRb +fcH +gSm +byp +pip +wTj +vIb +xua +xFr +oti +rQe +rLP +ybj +grT +rQe +oOV +dlu +dQv +lpA +lpA +nba +pkp +fdH +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(117,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +oNP +oNP +vkJ +cGr +iJR +euF +bUh +nJq +iJR +svj +pXP +mVQ +qwG +mbo +cxp +bIs +oPw +mbo +svt +aCh +twz +rtH +iEb +vws +pKi +pXP +jmK +gsX +jlw +vkw +gfq +hIY +cpJ +ylB +dkx +tIk +rFk +uLB +wWl +nQc +msY +ewM +nxV +sQD +wXz +uLB +msX +iaY +xkU +fwJ +quR +quR +siw +quR +quR +upW +sFE +rFk +wUE +jyD +oTH +jww +mXm +ggI +rAK +rDG +lEY +fgf +oHm +xtc +pXB +uPs +iJY +lKp +uus +jjQ +iJY +bot +uDx +bot +gRx +bot +iJY +lAj +fxC +jjQ +iJY +aDM +jhr +cYY +anU +jSH +mjT +gVq +lIk +jSH +cYY +xFq +gdw +pZs +xgr +qbS +weU +xBz +ouU +eAf +aKk +gad +oUD +eje +uxH +kpg +vlv +mvt +gvf +hOU +hOU +hOU +mQV +mQV +qRG +dXd +adJ +mQV +mQV +hOU +hOU +hOU +pwv +caZ +caZ +maR +pcs +dma +iBQ +tsZ +eKp +cCG +abZ +poe +pHv +wSU +fws +nAK +rHy +trr +gWt +ngf +iEQ +buW +trr +xBG +pDI +pDI +iYJ +dNg +uCs +qHU +lnw +lnw +lnw +hjh +vIb +dfN +kxv +uQb +kxv +vIb +vIb +rQe +rQe +rQe +rQe +lRM +hin +rQe +rQe +hME +lpA +rzL +caK +rkz +rQe +nba +rQe +rQe +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(118,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +ifw +oNP +cNm +oNP +oNP +vkJ +cGr +iJR +iEw +eUd +fkI +sgZ +vEk +pXP +olz +gRQ +mbo +lIp +bIs +cNa +mbo +kSm +iva +pxI +prW +oqD +ipx +oYL +pXP +gJP +fFZ +gZo +cpJ +wTK +pjo +cpJ +xOb +oTk +tIk +idY +fwJ +cOp +cOp +cOp +fwJ +cOp +xUP +cOp +uki +fwJ +fwJ +fwJ +fwJ +vyt +jUD +kpQ +jUD +uaO +vrG +jyD +idY +jyD +uPx +kbZ +sEW +jDk +ggI +rAK +jyD +scF +scF +scF +bWp +scF +scF +hxh +bot +bot +bot +iJY +eoR +tRr +oHm +ofb +wgj +iJY +bot +bot +bot +iJY +aDM +rFk +cYY +nHQ +jSH +gVq +pjP +eUx +nxc +cYY +efs +fCl +cay +xgr +qbS +xUN +xBz +ouU +eAf +aKk +tnm +hjW +gXS +uxH +kpg +vlv +mvt +mQV +mQV +mQV +uAW +mQV +vtj +vKq +vKq +vKq +sVd +mQV +uAW +mQV +mQV +dZM +sAq +ppn +dZM +pcs +dma +aFf +mLR +mLR +mLR +mLR +rxu +pHv +wSU +vLh +vke +duz +tPl +wZy +rqv +jjW +xBC +tPl +anl +knN +ftW +pfF +dNg +fqk +uqL +tJp +bmy +knN +cBt +rQe +dBW +gWM +rZR +gWM +asF +cje +nJg +xbv +nJg +lqa +fEg +iXB +lrJ +rQe +rQe +rQe +hhM +rQe +rQe +rQe +ewS +atd +xbq +xbq +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(119,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +ifw +ifw +ifw +ifw +ifw +pRu +pRu +pRu +pRu +pRu +pRu +pRu +pRu +pRu +pXP +pXP +pXP +pXP +dUi +mGz +dUi +pXP +pXP +pXP +nWx +xDH +gkG +pXP +pXP +pXP +vWH +oCM +srl +tIk +ulm +ulm +tIk +tIk +nig +tIk +fvr +rvq +rvq +rvq +rvq +olX +rvq +sPu +rvq +nIt +huM +kps +oSs +bFq +lGM +kSd +vUV +kSd +nwz +mzF +osI +kps +hFB +msz +kps +kps +qwE +ggI +rAK +gWC +oqC +oqC +oqC +tAI +oqC +eDQ +gMu +eDQ +eDQ +eDQ +dal +eDQ +rAK +eDQ +xej +eDQ +hcG +jKT +vVU +sFU +uPx +hez +jyD +cYY +mvk +uZN +cYY +cYY +cYY +cYY +cYY +xgr +nuQ +xgr +bzl +xgr +dOm +xQm +gRc +dfj +uxH +uxH +dNt +uxH +uxH +kpg +vlv +mvt +mQV +bDn +fbD +wBj +fbD +gGt +qst +qst +qst +wxb +fbD +wBj +fbD +cRB +dVF +dVF +dVF +dVF +fXH +mRN +wnB +lgo +lUQ +lUQ +mLR +qfY +cSH +kYn +oHA +vLh +kLp +tPl +nfi +tDd +lzk +xCd +tPl +dSb +aRf +cCg +pfF +sZP +fqk +mpE +aRf +aRf +aRf +aYj +rQe +tkU +wFC +rLH +qfu +qfu +qfu +qfu +qfu +qfu +qfu +jVT +uqN +nnb +uyW +srs +rgq +iry +hwM +syj +ego +mkJ +mkJ +hUp +xbq +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(120,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +oNP +oNP +ifw +oNP +oNP +xNm +xBQ +xGG +ecB +qkJ +fqK +lzX +tZe +gke +rKo +cfY +bIj +hOQ +sXv +ffR +cFn +jTQ +qPP +pXP +wAh +bIs +iJM +pXP +nEx +uik +fVy +fFZ +puu +mja +hzx +elq +fBq +rKP +rvq +rvq +oqC +whL +jqO +xwK +iNJ +iNJ +exU +jRS +iNJ +pfS +qwj +qKq +qKq +qKq +swY +qKq +eCm +niN +hhh +jkH +cdv +iSC +jqO +jqO +jqO +jqO +naq +eCm +vQO +eud +hYO +hYO +hYO +uwa +iNJ +iNJ +iNJ +iNJ +iNJ +iNJ +wjS +iNJ +mHV +iNJ +ejZ +iNJ +iNJ +jCW +ray +igO +saz +igO +wBJ +qSp +eDQ +eDQ +eDQ +eDQ +eDQ +xwR +aqL +eDQ +ugG +huM +kps +kps +tAM +kSd +qvL +ryF +jyD +uci +bir +fpL +huY +kpg +vlv +mvt +mQV +fbD +fYV +xOE +uEI +qdL +ifw +ifw +ifw +xTE +tcm +qYa +fYV +fbD +cVR +jVU +eam +pMy +bcz +lSz +cBv +lgo +lgo +lgo +mLR +cRh +uyQ +rtd +iUW +iUW +yfU +bfw +bfw +bfw +bfw +bfw +bfw +hsA +aRf +cCg +pfF +dNg +fqk +uEv +qOj +eKA +uCY +fMg +rQe +vUG +wFC +uiz +gBm +uMJ +njF +aiE +aiE +aiE +njF +dEV +xUl +xdY +qoP +mbE +mkJ +tBY +mkJ +jRH +gYB +iLj +gJo +jwF +vXm +eLa +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(121,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +cNm +oNP +ifw +oNP +oNP +xNm +erK +uhl +aTA +jkX +jGc +uyA +uyA +tUL +rKo +hod +bDG +ckc +bDG +vHC +jUk +bDG +bTj +pXP +pXP +dSD +pXP +pXP +aAo +jSd +bFV +wXD +eYX +hOI +fsd +owk +hOI +aLf +kSd +kSd +kSd +oBu +kSd +aSf +odq +odq +ilz +oqC +odq +hoh +wqi +odq +odq +odq +gOp +gfX +eoU +kHa +mSH +bAl +bhv +tDR +lTD +lTD +lTD +vYy +bid +bid +bid +ivU +odq +odq +odq +odq +odq +odq +odq +wds +odq +odq +odq +odq +odq +odq +odq +wVY +odq +dzW +biq +iNJ +bBz +hYO +qGL +hYO +mnV +hYO +hYO +hYO +wdK +hYO +pfS +iNJ +oGT +dio +din +iNJ +uCb +iNJ +uex +usS +iYt +oCo +oCo +oCo +bir +jPo +uCK +bBG +mQV +fbD +xzD +cTw +fYV +fYV +ifw +qkA +ifw +fYV +fYV +cjn +vka +fbD +dVF +dVF +dVF +fdK +jjJ +wFz +qwq +kgr +hBf +lgo +mLR +kVn +knx +gmX +taY +dAW +cqI +bfw +lIx +ylg +dbx +dbx +bfw +mbh +vJd +coE +pfF +sZP +uLI +bfw +bfw +fYj +vCY +fYj +rQe +dec +wFC +oaq +pNK +gPP +daC +wBS +gLg +gZZ +daC +pkL +oIn +kIi +wpQ +xfj +cqF +aOv +dMD +dMD +dMD +iJG +mkJ +hUp +xbq +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(122,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +oNP +ifw +oNP +xNm +xNm +rWN +rnA +uVV +ltB +jGc +hKA +hKA +sSh +rKo +iYK +iYK +gbL +wjh +acv +eYE +ioZ +tqq +pXP +ice +djH +amv +mwE +gGd +pgX +nWz +muX +bxI +juJ +sHu +qgS +rcq +suw +eeb +cWz +eeb +aBK +odq +hVd +wBX +jyD +lpX +dFz +odq +eCX +eCX +fSQ +fSQ +fSQ +eCX +kIB +wNw +rna +cDd +ocz +jHD +jyD +iMB +kOd +fqG +jyD +jqi +nWJ +phq +eHJ +rVV +eaR +rVV +shn +cJA +xkL +hwZ +aNT +vOW +rVV +rVV +shn +itI +xkL +bNW +jyD +mZq +lOO +meg +jvE +bCp +qvf +cla +llQ +qDL +xnH +qvf +cla +iIT +fDt +bCp +bid +xYB +ilz +wbb +oqC +jPR +tWK +tsG +sfQ +jyD +hrf +bir +oCo +mQV +mQV +uDg +mQV +mQV +jbb +kGx +fYV +eKW +eKW +eKW +ifw +eKW +eKW +eKW +fYV +kGx +fbD +tVq +usu +sdc +bcz +oCi +pCF +fBb +fBb +bfP +rlS +bfw +bfw +bfw +bfw +bfw +bfw +bfw +bfw +len +mAr +wWE +wWE +bfw +bfw +bfw +bfw +uwg +dNg +fqk +fMu +bfw +oCt +pVZ +pVZ +sxk +bPd +rGy +ibq +iPh +sHW +daC +dCf +vMi +dRt +daC +pmR +wVM +sLn +rQe +mbE +mkJ +tBY +mkJ +mkJ +mkJ +vij +mkJ +xbq +xbq +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(123,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +fNm +ifw +oNP +xNm +ntN +dYF +dYF +iRr +ghQ +jAz +jkX +lCL +lvc +pfT +bDG +oRj +bqU +rAP +pMM +kHi +ioZ +kmB +pXP +gom +nmN +lYa +pXP +evR +xYx +pwR +hjG +cpJ +tIk +ulm +ulm +tIk +uNi +nwU +oKS +ahH +dsJ +odq +vLf +jyD +jyD +eCX +fSQ +ybH +eCX +pzr +liY +pnj +xJb +sVm +jKH +vHI +qBe +uXA +viu +xoY +miU +fqG +ixi +wFU +fqG +wDa +gmL +xTF +pqk +tdk +rYu +lfA +nqq +mgu +mgu +ejP +wFv +oQR +hfU +kwL +mUw +hoV +mgu +atY +aHE +iRU +tvo +uJM +uJM +kct +uMx +xqh +kct +tXq +kct +uJM +uJM +kct +kct +jyD +aQj +jbT +nuj +wbb +odq +dRe +jFZ +nmY +dBz +jyD +jyD +bir +oCo +mQV +qJj +sRt +mQV +jVx +lTM +bAd +fYV +eKW +eKW +eKW +mvQ +eKW +eKW +eKW +fYV +bAd +bPO +tVq +iBq +eAJ +xVB +kEN +kEN +aAy +wAV +lSz +ioW +bfw +guf +gNc +gNc +iji +cON +ski +wvX +lui +wMM +uOR +uOR +sLS +bfw +bfw +uis +pfF +uhf +rbU +cvO +bfw +kdQ +rOy +tPT +ura +ura +oRv +nDd +tjN +daC +jEa +pZF +pZF +lTN +daC +dZT +hbL +rsT +rQe +mbE +eup +wZU +eup +mbE +fuZ +qDb +nQQ +rQe +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(124,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +fNm +oNP +oNP +xNm +dYF +cfM +qgy +qcb +rXp +pyA +llz +lCL +cFq +mJw +uqa +vBY +aip +uXy +pWw +cms +iAM +eGT +uQZ +moV +tYj +ncV +uQZ +new +wpC +blj +sqe +cpJ +lID +rYd +rmV +ulm +eyO +lEY +pvh +glB +dsJ +oqC +mit +tmd +diD +eCX +ksq +rIo +igL +lBy +mjC +uqY +mjC +cfF +aYt +upX +opj +xef +viu +xnm +nQU +kzZ +mik +lHg +iWf +bbR +lba +rvj +yiV +wBk +cZG +wdz +dJz +mgu +oVi +oFx +hoV +mgu +mgu +mgu +wgL +mgu +mgu +cFh +ces +qUm +qUm +uJM +fzh +cgs +jDn +hPH +tKL +cxr +eIZ +guE +tWt +aRe +kct +rtl +qvo +voh +ilz +wbb +odq +rqr +wFU +pUj +mVg +pyR +jyD +bir +oCo +mQV +qgL +dCE +qRG +fYV +lqV +ifw +ifw +eKW +eKW +hJo +wfT +jgJ +eKW +eKW +ifw +ifw +fcK +tVq +xBp +lUo +kLs +lUQ +lUQ +emn +xPo +lSz +bcz +iDB +voL +hyV +hyV +hyV +hyV +hyV +vgl +gDk +kJE +fOZ +vJN +dUb +gAg +loC +hSP +faY +dNg +inU +kot +fYj +gwT +pEI +pVZ +gvJ +ura +oRv +aTF +mCp +eKU +tWZ +oxb +oxb +oxb +tjN +lPz +ejb +wLB +ura +mkJ +mkJ +tBY +mkJ +bJk +fuZ +vij +hAi +xbq +fYV +ifw +ifw +ifw +ifw +ifw +oNP +oNP +fYV +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(125,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +ifw +ifw +fNm +oNP +oNP +xNm +oLu +mdy +exE +uJT +pXL +mto +wgs +dGo +fQL +sTl +oou +maB +eka +gCn +bOu +eeO +qBO +oou +fTy +phC +waU +ctd +bYZ +jXY +vKe +hXr +vfm +sNp +rUp +ovY +jLj +nOK +jFe +lEY +eyQ +eUj +cyN +oqC +mit +xQl +diD +eCX +orp +yeS +urE +hbi +dZo +jPv +tJV +gAD +kQA +twL +twL +aQD +viu +dhB +bQS +bQS +bQS +bQS +iUg +xeI +lba +rvj +fOE +wtY +aMa +mgu +mgu +mgu +mgu +mgu +mgu +mgu +gko +mgu +mgu +mgu +uyI +qTW +oVo +qUm +qUm +uJM +pVG +daR +fGF +kFM +rJq +tko +ihI +pWK +mbS +baD +kct +rtl +kCY +voh +ilz +sUI +hEa +nIP +tdk +tdk +dMP +bZs +dNt +bir +oCo +mQV +agW +dCE +jIW +tcm +lqV +ifw +eIs +iRj +ifw +vrw +lbc +umB +ifw +ifw +gBf +ifw +fcK +tVq +xBp +lUo +lUQ +lUQ +lUQ +lUQ +cPL +iio +qvV +tRb +uvH +jDp +jDp +jDp +jDp +jDp +kDD +wta +rAX +jrL +kmt +hfS +ccP +oyC +vvm +oLB +eSk +iXg +smX +kFQ +uYe +hHo +qIp +gea +ura +oRv +tmp +vWu +aZi +mJe +dRt +osj +dRt +hjT +whS +fWA +qTC +ura +mkJ +hAi +eca +hAi +mbE +fuZ +vij +hAi +xbq +fYV +bQV +oYv +oYv +oYv +oYv +fNm +fNm +oYv +oYv +oYv +oYv +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(126,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +fNm +oNP +oNP +xNm +dYF +qQW +uAn +cPf +hPK +miW +tXz +lhy +lqd +pfT +ygb +vpJ +feM +eeT +eeT +cRQ +hPV +hxt +uQZ +vYu +bzz +nnX +uQZ +gmM +opK +blj +gZo +cpJ +sQo +hXP +vNl +ulm +sMc +lEY +rOw +nsf +dsJ +oqC +mit +hdc +diD +eCX +vQp +rIo +mSE +nWo +nDx +xOn +nDx +qTI +kqo +upX +kDf +mbM +viu +naJ +oWb +fMX +oGr +aZI +jkY +fzM +lba +rvj +fOE +hVm +mgu +mgu +uyI +bke +qWL +mgu +crM +mgu +mgu +mgu +xaY +mgu +pYj +jKl +ces +qUm +qUm +uJM +blw +jpl +sZK +sZK +etL +oAo +mRu +vlb +vfe +kHd +kct +rtl +gQE +voh +ilz +wbb +eDQ +jXo +mUw +mnn +fkL +lYF +jyD +bir +oCo +mQV +egy +dCE +adJ +fYV +lqV +ifw +ifw +eKW +eKW +ubE +yir +lIl +eKW +eKW +ifw +ifw +fcK +tVq +xBp +lUo +vtL +lUQ +fRw +uuy +sUt +lSz +bcz +iDB +bSE +hyV +hyV +hyV +hyV +hyV +mwa +rXX +xIS +ooX +qPq +jQU +qlg +loC +vRA +iYJ +dNg +blR +wKe +fYj +bNB +vjV +pVZ +xxn +ura +oRv +dfr +ckX +bsq +ixh +dYR +dYR +dYR +tjN +dLD +rfF +lrJ +ura +mkJ +mkJ +tBY +mkJ +puP +fuZ +vij +hAi +xbq +fYV +ifw +ifw +ifw +ifw +ifw +oNP +oNP +fYV +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(127,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +fNm +ifw +oNP +xNm +sqB +dYF +dYF +bBi +uJC +joJ +upi +lhy +hFS +pfT +ygb +oRj +rEu +wjh +fBo +abx +bJy +rLl +pkO +pkO +dYH +pkO +pkO +sYh +xYx +uVC +tfe +cpJ +tIk +ulm +ulm +tIk +vuh +kxG +oKS +fJq +dsJ +eDQ +iAt +jyD +btW +eCX +fSQ +fSQ +eCX +uwB +wuV +dRS +luI +lHr +aDS +lkW +jTy +fjZ +viu +xoY +hmr +fqG +wFU +mlW +fqG +gkU +oHm +qQS +vyN +fXt +mgu +fzj +tdk +hVm +mgu +mgu +epi +ewR +mNA +ohd +fXt +mgu +mgu +igx +mpN +dea +qgw +uJM +uJM +kct +kwX +gYg +kct +tci +kct +uJM +uJM +kct +kct +jyD +jyD +azS +nuj +wbb +eDQ +czf +fxJ +vaK +qgM +jyD +jyD +bir +oCo +mQV +bad +qZf +mQV +yir +ymc +fcr +fYV +eKW +eKW +eKW +ifw +eKW +eKW +eKW +fYV +fcr +sHd +tVq +gqO +eOT +cSN +xqZ +aOs +gmF +rce +lSz +iJm +bfw +eoY +plT +uKl +nYg +uKl +sUg +tsH +jDp +tfh +jDp +jDp +jGy +bfw +bfw +cWC +shd +qJu +fqk +hqE +bfw +glF +vUS +tPT +ura +ura +oRv +flz +tjN +daC +knJ +wYT +wYT +hKL +daC +dZT +hbL +utW +rQe +mbE +mbE +wZU +ubf +mbE +fuZ +qDb +wGk +rQe +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(128,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +oNP +ifw +oNP +xNm +xNm +cLr +obo +jDR +gpk +udc +cXp +cXp +cXp +rKo +sfY +sfY +lVt +wjh +jqq +rXy +bJy +llh +pkO +jCR +rRt +qYA +wLa +rKv +xYx +xqm +sqe +cBq +aNF +nAd +kpG +rWv +hIn +oqC +wYd +oqC +dsJ +eDQ +wBJ +dgD +jyD +xRe +sEW +kbZ +eCX +eCX +fSQ +fSQ +fSQ +eCX +kIB +wNw +hAw +iDV +cXQ +tFc +jyD +dmR +dDx +iMB +jyD +nvE +dkS +cNW +shn +tiV +jZK +mCK +aNT +tiV +jZK +qQr +eHJ +gtj +afw +gtj +aNT +agp +jZK +syp +jyD +fOK +afe +rjg +avt +uyx +eid +bxv +rbb +qyU +tQW +hae +bxv +toJ +iIv +uyx +omp +aGe +ilz +wbb +oqC +bxh +ldL +sFU +tMo +jyD +mIF +oCo +oCo +mQV +fwP +mQV +mQV +mQV +fbD +kWP +fYV +eKW +eKW +eKW +ifw +eKW +eKW +eKW +fYV +kWP +fbD +tVq +ayf +fvx +bcz +azm +nvn +fBb +fBb +cnK +uov +bfw +bfw +bfw +bfw +bfw +bfw +bfw +bfw +hAZ +lLp +lnV +mCQ +bfw +bfw +bfw +bfw +awt +rcK +fqk +eki +bfw +hxX +pVZ +pVZ +sxk +jKw +naE +kLt +iWK +rup +daC +tCZ +vMi +vcZ +daC +nrX +lxR +sLn +rQe +mbE +mkJ +tBY +mkJ +mkJ +mkJ +vij +mkJ +xbq +xbq +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(129,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +oNP +ifw +oNP +oNP +xNm +kTR +yfP +lqS +upi +udc +vWD +vWD +vWD +rKo +hMF +ygb +jOL +ygb +ygj +nFx +ygb +rLO +pkO +aNI +uBB +kqP +qsa +ekM +bzk +pIx +buJ +buJ +buJ +buJ +vcl +mNa +iGO +kSd +kSd +kSd +eMp +kSd +vNV +eDQ +pTA +eDQ +eDQ +eDQ +etP +hen +eDQ +eDQ +eDQ +hKo +fXi +wQp +njM +iaM +hsJ +mSb +wLx +pdt +pdt +pdt +hTj +vKz +vKz +vKz +bPI +eDQ +eDQ +eDQ +eDQ +eDQ +eDQ +eDQ +eXe +eDQ +eDQ +eDQ +eDQ +eDQ +cFQ +cFQ +eXe +eDQ +huM +ghl +pLx +pfS +iNJ +hPi +iNJ +aJb +qKq +qKq +qKq +iKB +qKq +wCA +qKq +qKq +gFK +eEh +iNJ +tph +hYO +hsn +igO +iYt +oCo +oCo +bir +lDx +ydC +uEn +aDU +mQV +fbD +xhE +aSP +fYV +fYV +ifw +iOw +ifw +fYV +fYV +ckA +kNs +fbD +dVF +dVF +dVF +wJU +jjJ +wFz +crF +ghu +vUU +lgo +lgo +lpA +bvi +qic +qic +qic +sKk +bfw +iMj +iLT +vmk +ooM +bfw +mbh +vfh +mce +pfF +urk +mkI +bfw +bfw +fYj +xtC +fYj +rQe +fJE +nQe +xHe +tpx +oWt +daC +uNK +vxp +vBT +daC +dZT +hbL +vjd +ura +mbE +mkJ +tBY +mkJ +mkJ +mkJ +vij +mkJ +hUp +xbq +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(130,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +oNP +oNP +ifw +oNP +oNP +xNm +aUZ +gMl +vzV +iXH +xly +sOt +tXH +kNJ +rKo +wbl +ccc +uEE +oar +pjX +oar +eRA +bdq +pkO +jTI +uBB +fIt +wLa +rKv +grl +yjI +yjI +yjI +yjI +jTa +awM +qoF +ifT +gkc +gkc +oqC +wQL +qKq +bbn +iNJ +iNJ +iNJ +iNJ +iNJ +aHv +kPg +qKq +qKq +qKq +mns +qKq +czK +mMq +iYC +uYi +xSD +loG +iNJ +iNJ +gNu +iNJ +iNJ +iNJ +iNJ +osO +iNJ +iNJ +wKs +iNJ +dBK +iNJ +iNJ +iNJ +iNJ +hPi +qnr +iNJ +iNJ +iNJ +mnV +iNJ +iNJ +aJb +ygZ +lnT +vsS +hYR +jDK +wFV +uHh +uHh +uHh +uHh +uHh +uHh +xRc +uHh +uHh +qPR +qns +qIN +iph +oqC +jLl +kGY +jyD +koA +oCo +mDO +huY +prz +vlv +mvt +mQV +fbD +fYV +dLr +uEI +qdL +ifw +ifw +ifw +xTE +tcm +gCJ +fYV +fbD +cVR +jVU +eam +pMy +bcz +lSz +bcz +lgo +lgo +lgo +jrW +lpA +eCK +qic +rhJ +qic +svH +bfw +bfw +bfw +bfw +bfw +bfw +uCY +aRf +cCg +pfF +rcK +fqk +gvD +oVG +vhD +uCY +mYQ +rQe +hkP +pyi +wFC +wFC +out +ufm +gWM +rZR +rZR +mmy +mes +kii +xdY +qoP +mbE +mkJ +tBY +mkJ +mkJ +mkJ +oXX +gJo +ezm +vXm +eLa +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(131,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +ifw +ifw +ifw +ifw +ifw +pRu +pRu +pRu +ubt +pRu +pRu +pRu +pRu +pRu +rKo +rKo +rKo +jJt +rKo +rKo +rKo +pkO +pkO +pkO +ezv +ekC +knt +pkO +dZR +aWH +kqR +qqH +qqH +qqH +nzG +gst +tIk +ulm +ulm +ulm +iLy +gkc +gkc +eDf +gkc +jxU +gkc +gkc +hjb +slA +bBj +bBj +bBj +idT +ldN +kSd +wcq +kSd +fKc +abY +lhQ +aZC +odq +aMt +aZC +odq +oqC +wbb +odq +hVd +odq +odq +aZC +odq +aZC +odq +uoO +odq +odq +pLp +wqi +odq +xzm +odq +hBm +nYt +nzy +omY +hsV +chG +hrg +mAD +rzg +pvX +boh +pvX +boh +pvX +pvX +pvX +boh +pvX +boh +pvX +oXo +pvX +rpZ +dmV +vZu +rRX +ikg +dog +oCo +bir +huY +prz +vlv +mvt +mQV +nKC +fbD +wBj +fbD +lRY +xBK +xBK +xBK +oQg +fbD +wBj +fbD +jNr +dVF +dVF +dVF +dVF +kGh +vwf +mVk +lgo +qic +qic +qic +qic +qic +qic +gqc +qic +qic +icK +qic +qic +qic +qic +guv +ekf +kUn +fgW +sIP +urk +fqk +mpE +aRf +aRf +aRf +aYj +rQe +qfW +kHn +rvP +svE +rUk +rUk +rUk +rUk +rUk +rUk +bUk +yfO +vkU +ura +qTk +nZy +tVm +neh +vvS +qGn +mkJ +mkJ +hUp +xbq +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(132,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +ifw +cNm +oNP +oNP +oNP +pRu +ncI +aqr +grE +pRu +afT +vSp +afT +afT +afT +nfN +nfN +yiF +eKW +eKW +pkO +gxP +dnM +sCL +xgE +vpr +gDw +egI +dhK +adW +qqH +qqH +qqH +nzG +pPk +cZQ +wzw +vlF +ulm +ulm +ulm +ulm +tIk +jyD +jyD +jyD +vWT +jyD +cRT +pIp +loa +jio +bSC +wdL +iQy +boS +iQy +mcF +bSC +xUr +qGY +lpO +cRT +ygq +kbZ +dlQ +wbb +dzj +dqz +dqz +ixq +hRf +lXQ +hRf +xjT +pGn +dhv +dhv +mOq +dhv +dhv +ghq +hUW +dlW +cnA +cnA +eAs +eAs +cnA +cnA +wVC +sqN +oRi +rGp +fzG +bRV +osY +osY +aWK +pHk +fzG +dhl +bta +qQO +jJF +pvX +rbd +ivv +iNX +ikg +ikg +oCo +dos +lDx +prz +vlv +mvt +mQV +mQV +mQV +uAW +mQV +vtj +vKq +vKq +vKq +sVd +mQV +uAW +mQV +mQV +mRW +jzN +sFK +mRW +ruf +cYX +wXF +gSA +guv +gSA +gSA +gSA +gSA +gSA +gSA +gSA +gSA +gSA +bfw +bfw +bfw +bfw +bfw +qXU +kDa +bGE +pfF +rcK +fqk +fyv +kDa +kDa +kDa +okz +rQe +bPd +xVg +jHG +sen +ldQ +jHG +jHG +iSV +jHG +jHG +ldQ +iER +tch +rQe +rQe +rQe +bBp +rQe +rQe +rQe +aJw +bWw +xbq +xbq +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(133,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +oNP +oNP +oNP +pRu +usJ +qpO +fdg +pRu +yiF +yiF +afT +tkJ +rUa +nfN +yiF +yiF +ifw +ifw +xoV +nBD +uBB +uBB +wxz +jEu +pkO +ckt +tpq +ckt +pqW +pqW +pqW +iTg +xoL +ntj +fjD +wqI +aFh +oWM +gMP +fzE +tIk +mZT +fPZ +ber +ber +lxm +lcQ +wyu +otD +otD +ipk +hkr +oRR +ovn +iBR +hEG +ipk +uJu +wld +rBr +lcQ +yle +agq +fhA +wbb +wJL +bHJ +vKI +lrG +bEJ +pQY +bEJ +jvy +dhv +srX +jce +fMb +cQz +rmr +ghq +hRE +dOB +cnA +eRE +xEp +ocX +rzz +cnA +iQv +ofS +ozH +iyV +fzG +xzw +osY +osY +pgI +vUX +fzG +uIv +bNj +hyt +lRD +pvX +rbd +ivv +nuW +rsr +ikg +oCo +oCo +lDx +prz +vlv +mvt +gvf +hOU +hOU +hOU +mQV +mQV +qRG +ain +adJ +mQV +mQV +hOU +hOU +hOU +klM +wEz +wEz +gTg +ncX +iOU +kTB +jUV +ntS +bdA +ePJ +iCz +wxH +gzD +vJi +jWr +oKn +aDz +bfw +grC +xPd +alI +bfw +hiB +sfo +ctM +uDj +phP +wfS +sfo +sfo +sfo +sfo +kot +rQe +lRM +azV +sxk +azV +rQe +rQe +rQe +rQe +rQe +rQe +rQe +nqT +ivO +rQe +jPl +jrW +rzL +cdi +vft +rQe +nba +rQe +rQe +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(134,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +oNP +oNP +oNP +hYV +qJM +ptv +dYF +pfr +dpF +pRu +afT +elu +elu +nfN +yiF +tVn +fYV +fYV +xoV +nnt +kkr +hYJ +eSA +mah +pkO +oMb +bAk +cUf +qAn +iaq +pqW +pqW +voX +nXg +myr +vPp +aCp +akP +aCp +ddi +tIk +mZT +ber +ber +ber +ber +vQJ +vSP +mIU +auq +ykp +wzr +iat +efA +cTS +cpf +vPq +eSQ +yfy +wdy +lcQ +apS +kCY +dhm +wbb +wJL +lba +lba +lba +bEJ +wrw +bEJ +lmZ +dhv +mpe +slh +fMb +cOZ +kII +ghq +bhe +sRx +ecJ +dQK +xhB +gOB +bvl +lBW +gWl +wwo +cpX +sNf +fzG +huT +osY +osY +lUr +cVM +fzG +tgv +rXZ +hyt +oRi +pvX +rbd +ivv +nuW +spS +ikg +gqy +oCo +huY +prz +vlv +mvt +mQV +mQV +hrV +hOU +hOU +hOU +rdo +iLk +gBr +hOU +hOU +hOU +hrV +mQV +mRW +ptS +vqR +mRW +fuy +cro +dxo +mqa +qoW +bBg +cyI +eiA +cyI +hij +eVd +mqa +mqa +sey +wBV +pZf +gVI +ghE +sjH +qfB +jdO +nNd +nuD +bZe +jTm +oLB +pnq +oLB +oLB +bsu +qHM +lwC +jCy +hsX +jbP +mGw +rQe +lpA +lpA +lpA +ecg +cgF +aic +ieg +lpA +lpA +bEE +mGe +syr +syr +dTt +ekc +aoJ +dYm +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(135,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +oNP +cNm +oNP +hYV +hRO +eIV +kow +pRu +uiw +pRu +tgT +afT +fUN +nfN +yiF +pTm +ifw +ifw +xoV +nqD +uBB +uBB +wxz +jTf +xoV +glV +wQu +hQV +opN +iaq +quv +pqW +uhH +vPK +uhH +oqP +xHr +vPp +cWs +vPp +tIk +ber +ber +nrB +ber +lcQ +lcQ +iTc +mWH +mWH +mWH +lAG +kRv +hXI +egr +ccS +lqF +lqF +mnt +tUm +lcQ +apS +gQE +jgl +lZU +uIx +rKh +pAO +pdh +tRr +oHm +tRr +nJn +dhv +dTL +lRz +wGK +uWA +jck +ghq +rQE +psn +cnA +pya +dgn +jUm +hCw +gJY +gWl +kLx +aXT +aXT +faT +osY +osY +osY +osY +osY +ajh +osY +osY +hyt +pvN +rud +mIm +iuq +nuW +hmA +ikg +bir +oCo +lDx +tVF +lTF +iMN +noD +mQV +mQV +eXo +mQV +mQV +mQV +iJd +mQV +mQV +mQV +wMP +mRW +mRW +mRW +mRW +mRW +mRW +pBc +rNO +nVm +guA +mHF +hHi +uNE +uNE +uCG +gGC +itf +rrr +cbS +sbT +cpw +dbB +mhX +cpw +cpw +bSg +qCN +lnw +lnw +riY +lnw +lnw +kUG +gPs +aoC +hjh +rQe +ydd +kgO +kgO +kgO +fiy +dQk +rxn +pSm +syr +pSm +pSm +sTT +fWW +mqj +qbU +oYb +pWI +pWI +msG +rQe +rQe +rQe +uES +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(136,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +pRu +pRu +pRu +pRu +pRu +pRu +pRu +lvX +ceU +afT +nfN +yiF +yiF +ifw +eKW +pkO +ieu +dvo +oQz +wxz +rRt +jRb +tGR +hYn +oMc +qpj +aQC +cis +rrl +sbW +xAt +fTv +rRf +fTv +pfu +iUi +uSp +tCQ +rlq +ber +ozD +ber +lcQ +hIG +gqu +pxn +pcI +lqF +pxn +pcI +uPf +pxn +pcI +lqF +pxn +aTR +bwT +lcQ +aGx +ghq +ghq +ghq +ghq +ghq +ghq +ghq +jFi +wER +oYy +ghq +ghq +pqx +bQe +dDn +tAK +scL +ghq +rxW +dQt +cnA +rWl +hvj +wXE +rkb +rxj +nYV +tml +sxc +rfA +lEi +fim +eTr +ekl +eTr +syk +mNj +mtU +mtU +taN +egH +boh +rbd +swh +eAI +ikg +ikg +bir +gtZ +fPw +hUr +egB +vVh +vVh +xcM +mQV +mQV +mQV +dog +bir +aJE +bir +bir +mQV +mQV +mRW +nWY +eiC +aRJ +aaH +mRW +xIR +xkW +wVj +mRW +qDX +pJJ +pJJ +wnQ +cAz +hCY +mRW +pzv +cpw +cpw +cpw +lbr +iqf +vqO +cpw +iRJ +cpw +oDd +oDd +nqg +oDd +oDd +aLN +bfw +guL +bfw +rQe +qvP +csB +grj +csB +udn +rQe +ieg +qic +fhq +nEF +fOd +cMR +mjD +lqn +msG +qic +msG +aZm +nFm +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(137,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +yiF +yiF +yiF +yiF +yiF +gYW +afT +afT +afT +afT +afT +afT +lvX +lvX +fbo +afT +yiF +oTp +oTp +pkO +pkO +pkO +vEo +kyK +fWT +xoV +xSa +rUY +reg +bkY +iaq +adH +pqW +opx +oTk +uhH +eaa +xDL +vPp +wdk +vPp +tIk +bwV +ber +ber +ber +lcQ +hxQ +gQu +oak +kBf +rBt +oak +kBf +ezR +oak +kBf +rBt +oak +mxW +wLX +sdm +ekP +oxl +ugn +sdY +vpj +qWE +tNz +kFC +hOY +uhg +hOY +ceF +ghq +tAK +emC +kvC +baK +jYX +ghq +dBg +xaS +cnA +vCu +dgn +vBM +hCw +wMJ +sqR +iJn +hyt +dMw +aXT +dNk +yln +hYl +yln +hMm +ncu +sVj +osY +osY +osY +pvX +rbd +ivv +nuW +ikg +mpl +bir +lax +ikg +ikg +ikg +ikg +ikg +qYu +kEq +kEq +kEq +xvS +kEq +rHE +suF +csu +suF +suF +hWs +ybJ +bxA +nwO +eif +xIR +vxD +rEy +siG +mRW +qDX +pJJ +pJJ +ghJ +cAz +hCY +mRW +qic +iRJ +oBM +cpw +dbB +pqs +cpw +cpw +fua +nmP +eJC +aWZ +cpW +roY +lON +aLN +yhr +urf +vun +rQe +fTb +qUI +rwh +qUI +dnI +rQe +tZO +pWI +exJ +msG +pWI +pWI +msG +pWI +msG +qic +idB +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(138,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nyH +ifw +ifw +ifw +ifw +yiF +yiF +yiF +yiF +yiF +yiF +yiF +afT +afT +afT +ceU +kfe +afT +afT +afT +rOV +afT +afT +gen +ceU +afT +afT +afT +cDk +cDk +gen +afT +pkO +hvS +rGt +qRL +pkO +xWw +ovZ +xsl +qAn +iaq +pqW +pqW +uQV +kiF +iVl +vPp +reF +cPK +reF +uGM +tIk +cIq +oId +ozD +ber +lcQ +kfi +gQu +ivA +qCo +lqF +ivA +qCo +uPf +ivA +qCo +lqF +ivA +qCo +sZr +kXq +jhk +fkz +kwW +uhg +uhg +uhg +uhg +uhg +hOY +ttM +hSb +ghq +ghq +iae +emC +jNE +slh +lRz +ghq +sGi +tSf +cnA +gvE +aLL +eXn +rkb +xGb +mdf +uvN +mBE +hRV +brS +dNk +flR +xQJ +egf +hMm +pvN +pvN +osY +ncu +ncu +pvX +rbd +ivv +jFW +ikg +rgd +bir +gsd +uaD +tOR +aMn +suP +ikg +loI +vlv +vlv +vlv +nsP +vlv +vlv +vlv +csu +vlv +vlv +gSA +jtE +pyQ +eph +iyW +tsK +ybM +noX +aNz +xIR +wZh +kVQ +kVQ +kVQ +rXl +nny +mRW +icK +cpw +cpw +cpw +bIG +fji +nOp +cpw +cpw +cpw +dBw +tke +oSf +cgT +rMn +aLN +koe +urf +lTi +rQe +rQe +ivO +ivO +ivO +rQe +rQe +dWh +pWI +exJ +lpA +nkl +lpA +lpA +lpA +lpA +qic +msG +pNz +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(139,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +yiF +afT +afT +afT +afT +afT +afT +afT +afT +afT +lvX +lvX +lvX +ceU +ceU +lvX +afT +afT +gen +ceU +afT +afT +afT +afT +afT +afT +afT +pkO +wOe +rGt +lNr +pkO +ckt +gTG +ckt +pqW +pqW +pqW +veZ +aPW +ciN +oDV +eZs +dti +bTn +pJw +wIu +tIk +dOe +xif +oId +ber +lcQ +lcQ +nDo +nXV +nXV +pqm +nXV +nXV +qUX +tjA +tjA +dGv +fKM +bqE +dIN +vZM +ceQ +gck +aUb +bpz +orE +ntW +oMe +uhg +awp +sqT +hOY +wKI +dvh +tOz +gwO +jNE +fMi +oos +ghq +mGs +jph +cnA +lGW +dgn +fex +gDE +cnA +hpw +aZE +mBE +ozH +brS +dNk +sBH +dNJ +egf +hMm +pvN +eiV +osY +pvt +nzQ +pvX +rbd +ivv +nuW +ikg +fCR +bir +lax +ikg +orn +joz +oaa +ikg +shr +dGp +dGp +dGp +nsP +dGp +dGp +dGp +csu +sCH +sCH +gSA +vnM +jWA +mCX +rVP +xIR +rxe +gjc +fHK +mRW +mRW +mRW +aXv +jfb +jWA +kKG +mRW +qic +cpw +ilh +asD +foh +aIU +iIH +xaA +iuf +cpw +wzQ +tke +uDY +cgT +rap +aLN +clW +urf +kdc +kqf +kbx +sQf +mJi +xzC +hiT +yhg +dsf +aGG +eMV +pWI +msG +msG +lpA +pWI +msG +lYR +pWI +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(140,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nyH +ifw +yiF +yiF +afT +afT +afT +afT +afT +afT +afT +afT +afT +afT +afT +afT +lvX +afT +afT +afT +afT +afT +afT +afT +lvX +ceU +lvX +lvX +afT +pkO +dHP +uBn +nIR +pkO +wZx +gcO +ckt +xJg +rvZ +adm +fpt +sKV +gsz +ygW +uKk +tIk +tIk +tIk +tIk +tIk +rlq +rlq +vvM +rlq +uEl +wCn +knX +knX +knX +wCn +ouw +lmo +dmr +orq +ouw +lcQ +lcQ +lcQ +lcQ +lcQ +lcQ +ghq +ghq +dnB +pJo +dVk +oMe +orE +jPw +jDS +wHX +hOp +tiO +tAK +xeV +jNE +tvs +jce +ghq +qze +jph +cnA +ldM +dCz +lhS +miY +qjU +drc +mqc +pTY +eCs +pHf +xXd +nFT +lfN +egf +hMm +sVj +wti +taZ +boh +boh +boh +nUm +wDs +egZ +ikg +ikg +ikg +lax +ikg +qzi +kyi +viW +ikg +ikg +ikg +ikg +ikg +bir +qyP +bir +tfk +gqy +lDx +oCo +gSA +xzK +jTs +kVY +xqf +mRW +xIR +wIy +wVj +mRW +dcK +mRW +khW +cpO +tqF +nuT +gsM +qic +cpw +nFd +cpw +ecd +pYI +kea +cpw +btD +cpw +oFY +eDH +pVO +rWS +ehR +aLN +xrl +urf +pVZ +lEZ +kbx +tQn +qic +dSE +dZv +qic +qic +pWI +yaV +msG +iyo +msG +lpA +msG +tOA +qic +lpA +nFm +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(141,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +yiF +yiF +yiF +yiF +yiF +yiF +yiF +yiF +yiF +afT +afT +afT +afT +yiF +daF +yiF +nBs +nBs +ncw +afT +afT +afT +afT +spN +eNL +afT +pkO +pkO +pkO +pkO +pkO +lqH +oQN +ckt +cgu +qVY +lwa +uau +eXg +tIk +tIk +tIk +tIk +ber +ber +hso +ozD +oId +ozD +ozD +rlq +pJq +wCn +qeB +qzc +lYC +knX +npb +xlw +pwl +dGd +mAq +lcQ +vAY +aOK +rKr +xcS +bBN +ydI +uCn +uCn +uCn +uCn +uCn +pNM +pRn +jDS +hOY +bDp +dvh +tAK +hWQ +jNE +lRz +dwC +ghq +mGs +jph +cnA +cnA +cnA +kec +cnA +cnA +boh +lwj +boh +boh +boh +boh +boh +boh +boh +boh +boh +boh +boh +boh +bld +wyq +eLO +ivv +xFO +eEL +oRX +ikg +gFf +ikg +mry +mry +mry +qxI +jrB +qqi +woD +ikg +ikg +ikg +ikg +ikg +ikg +ikg +iYt +gSA +xIR +xIR +iYh +xIR +vNe +hLs +rhX +ben +ikg +ikg +mRW +mRW +mRW +mRW +mRW +mRW +qic +cpw +mEP +rtQ +stm +slD +bIY +rtQ +ncm +cpw +aLN +aLN +aLN +aLN +aLN +aLN +kbx +mAf +qMZ +rIU +kbx +tzw +eIx +msG +msG +pWI +msG +msG +yaV +msG +pWI +pWI +enW +idB +lpA +mDk +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(142,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +cNm +oNP +oNP +gsU +oNP +oNP +yiF +yiF +yiF +yiF +afT +yiF +afT +yiF +mkl +oDo +ceU +afT +afT +afT +afT +afT +tgT +afT +vXj +uzr +tfV +wIi +ckt +bEy +pYV +ckt +jig +ihx +ofX +cxN +rPg +uqQ +xHM +xHM +xHM +xHM +cnE +xHM +xHM +xHM +jor +ozD +rlq +jsw +wCn +hbw +pqX +iPW +rbo +cot +mml +kmV +peR +uVc +eQD +sdl +vnv +sdl +frO +lhN +ncG +uCn +qMR +bqf +dCr +uCn +fmw +jst +bGP +wHX +bDp +dvh +tAK +fFU +jNE +fMi +dnW +ghq +slw +uJi +cnA +sIb +gRo +ngO +whH +sCZ +ksG +vCm +iZm +pNc +wbd +ybN +vWC +ljw +nKk +qTP +dRo +tun +xeN +wAw +asI +saV +tJt +fpR +agy +ofL +xFO +xLe +awW +lOJ +oiu +oiu +oiu +lSo +bUI +klr +uGu +ewX +pjk +pjk +fuh +dww +pjk +pjk +iMZ +uot +pjk +uao +pjk +pjk +uhb +vfw +xOQ +cle +stg +dbi +mcu +mcu +ikg +xGR +jwC +lpA +qic +cpw +jrf +xOT +bAI +bAI +bAI +bjl +qOR +cpw +oZy +jbI +jbI +jbI +jbI +jbI +vIg +xOC +kcf +vYM +kbx +msG +pWI +pWI +lpA +oZy +jbI +jbI +urj +lpA +lpA +lpA +lpA +msG +aBx +kBB +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(143,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gsU +oNP +cNm +oNP +gsU +oNP +yiF +yiF +yiF +wbc +yiF +yiF +yiF +yiF +yiF +yiF +yiF +vXj +vXj +vXj +vXj +vXj +xrg +xUw +swe +ckt +ckt +ckt +ckt +wcu +olG +wcu +aeE +lUt +aeE +aeE +aeE +aeE +aeE +aeE +oId +oId +ozD +uvR +vlx +rlq +ber +wCn +lUl +dYx +izZ +knX +pay +srd +qUX +ezM +dZi +lcQ +fwc +aOK +gSv +mvM +kao +ima +uCn +pEY +nHb +hln +nAa +tct +wAB +mZd +hOY +vne +dvh +ggM +vCc +jNE +baK +jce +ghq +uTV +bFB +cnA +fcs +vbq +ngb +sfx +hep +cnA +ybN +fWc +ybN +ybN +ybN +kfD +cQw +nSK +alv +vnB +jdy +wbv +ror +asI +hbT +avQ +qYB +olA +wIs +wIs +wIs +wcr +lwR +wIs +wIs +wIs +cwo +wIs +wIs +cXZ +nYN +wIs +wIs +bNF +kmA +wIs +wIs +wIs +wIs +wIs +rpk +wIs +wIs +uVX +vLv +sNh +sSo +hQw +vuU +mcu +mcu +ikg +eTQ +pWI +lpA +qic +cpw +bAI +wRZ +fJe +xJj +oqg +lqX +bAI +cpw +hzL +msG +uEp +pWI +lpA +lpA +kbx +dts +nEb +sIe +vIg +wRR +jbI +jbI +jbI +urj +uEp +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(144,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +oNP +cNm +gsU +oNP +oNP +oNP +gsU +oNP +oNP +ifw +fYV +fYV +fYV +oNP +oNP +oNP +oNP +ifw +fYV +uCv +cLQ +bcd +mAu +tKY +xoC +mSt +jQR +dgm +byH +qpS +vXj +iCK +pWG +gQR +dLY +gNW +loN +cUw +cYd +kig +shh +aeE +pYx +fQj +gbs +jPV +oId +jNq +ber +wCn +bZo +gNS +muB +wCn +lcQ +lcQ +taQ +lcQ +lcQ +lcQ +lcQ +lcQ +lcQ +oUK +lcQ +pOM +uCn +xFE +iIU +fdn +uCn +uIS +pfx +aoy +jqg +ghq +ghq +xvz +maZ +kKN +lRz +ajK +ghq +rxW +pWt +cnA +xyg +nAk +vRa +oEX +qJH +cnA +uDB +arw +elZ +qbp +ybN +bFA +tIE +wtd +fRe +sMq +orM +xeN +cvs +bSt +vIW +qSq +vmL +gJI +nKe +ycc +ycc +ycc +miF +hXc +hXc +hXc +hIq +wxj +xvu +wSO +aXA +dQm +lFw +mXX +xOw +lFw +lFw +lFw +usV +hLU +eqb +kTI +lFw +ocU +bpk +aij +vjU +stg +dTi +hdG +qwX +ikg +msG +pWI +rhJ +qic +cpw +uuY +oAO +xJj +gAz +pbs +oAO +qDQ +cpw +hzL +pWI +msG +msG +msG +nkl +kbx +xxY +pCN +xxY +kbx +lpA +msG +msG +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(145,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lvX +lvX +lvX +lvX +lvX +lvX +lvX +lvX +oNP +oNP +gsU +oNP +oNP +ifw +xjE +xjE +xjE +xjE +oNP +cNm +oNP +oNP +fYV +uCv +vXc +yjz +udA +mUE +pZK +qVZ +sQL +cYZ +aEq +hJe +rQr +jLH +aWr +pul +dLY +eXp +bXn +ljl +heN +isI +dxf +aeE +gFS +ber +ber +fso +rlq +rlq +ber +wCn +kik +qjJ +pwB +knX +sEQ +lkV +rtU +pfk +chX +ayG +nwc +kdM +nOB +dYX +kzC +sMz +uCn +fJN +bPv +gkV +uCn +mcP +gsj +rtZ +hTI +gqJ +uyT +kri +dDn +lqg +smZ +oos +ghq +nQf +rWz +cnA +cnA +ejs +cnA +cnA +cnA +cnA +wbq +gyq +sMM +eso +ybN +xuV +xuV +xeN +oUs +xeN +xuV +xuV +msL +msL +iwL +mog +jAv +fjM +mog +msL +msL +qwN +jWf +hMc +hMc +hMc +sOY +ikg +tFd +shJ +shJ +shJ +shJ +eQo +shJ +shJ +shJ +shJ +tFd +nhC +nhC +nhC +nhC +nhC +nhC +nKd +nhC +nhC +dNq +puU +spq +qCm +wRR +wRR +jbI +sTj +cpw +oal +oAO +oqg +nHw +fJe +oAO +mYk +cpw +hzL +iEj +dEC +msG +aPa +lpA +kbx +rRc +wFW +xdm +kbx +lpA +pWI +lpA +nFm +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(146,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lvX +lvX +lvX +oWZ +nre +nre +jDx +qBr +nre +lvX +lvX +lvX +lvX +gsU +gsU +iQL +xjE +xCl +xCl +xjE +oNP +oNP +oNP +oNP +fYV +uCv +mdL +bnZ +frV +mUE +oNK +rpb +pxk +dgm +hRP +tMk +vXj +fJm +uur +ecv +dLY +lJy +jka +mVU +iDJ +ouK +mEB +aeE +ber +hhe +ePP +fso +ber +rlq +rlq +wCn +hbw +rpn +jcW +knX +sEQ +kid +oQs +uIc +mal +ayG +iQY +fbt +fbt +ckn +fbt +lTI +uCn +uCn +uCn +ijx +uCn +ghq +ghq +wMi +ghq +ghq +ghq +ghq +cto +ghq +ghq +ghq +ghq +xwE +vuN +kXz +xUU +rQK +utc +mqh +bgn +tng +pLz +kzl +bXq +fkx +ybN +sUv +sFk +xYL +lJE +vbM +ifu +nVg +nBw +sHX +oHS +oHS +mBj +lIf +oHS +jhS +xxI +qSu +msL +hta +hIj +dKc +ikg +okB +mnJ +shJ +cJh +tHD +mjz +oCB +urn +nXR +eMk +shJ +mnJ +nhC +mVw +xmv +tZp +kUi +qpX +npP +szR +nhC +nhC +nhC +nhC +nhC +lpA +lpA +lpA +hzL +cpw +cpw +cpw +cpw +dbB +cpw +cpw +cpw +cpw +hzL +pWI +msG +msG +pWI +lpA +bfw +xxY +wOi +xxY +bfw +lpA +idB +tOA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(147,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lvX +xlY +nre +nre +nre +dGZ +lvX +lvX +mgZ +nre +ebv +lvX +lvX +lvX +fYV +fYV +xjE +xjE +xCl +xjE +oNP +nyH +ifw +ifw +ifw +vXj +vXj +vXj +vXj +vXj +vXj +vXj +heZ +aeE +aeE +aeE +aeE +dLY +aGB +dLY +aeE +ixe +aeE +aeE +aeE +aeE +aeE +aeE +fQj +lsD +rlq +cKG +ozD +ber +rlq +wCn +bID +nMz +tkL +knX +sEQ +jep +fbA +rgv +jse +ayG +pxu +wXI +fIM +ckn +fbt +iBX +kMn +fbt +fbt +fpF +gmg +uqo +gIy +jgk +fpF +gIy +iRd +xDn +smP +kko +fbt +meV +fIp +xFD +fbt +kXz +uHA +qJY +oEG +ybN +vLt +tux +icy +qJC +qtC +kdP +ybN +sBV +onu +cah +gbi +sgG +hhg +iUr +dLm +dLm +uQc +dLm +dkL +sxO +vAH +pHI +ihQ +iJk +msL +mcu +mcu +mcu +ikg +vKM +mnJ +shJ +uLu +qko +qko +sCl +qko +qko +wOX +shJ +mnJ +nhC +qiE +jMg +jMg +nnP +uif +bjo +rym +uTN +kjK +cmc +kJx +nhC +nBG +msG +jrW +hzL +lpA +bvi +lpA +lpA +lpA +lpA +lpA +lpA +lpA +hzL +pWI +nBY +nGS +msG +lpA +bfw +qRf +xmh +qRf +bfw +udd +msG +lpA +nFm +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(148,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lvX +lvX +lvX +lvX +lvX +kQG +nre +nre +nre +kAI +nre +ekL +uye +rON +gsU +gsU +gsU +xjE +xCl +xjE +oNP +oNP +oNP +oNP +fYV +nov +ber +ber +ber +ber +ozD +ber +rlq +aeE +dBq +dBq +oZj +oXc +kAO +mWT +aeE +isI +hFv +aeE +dlH +wxK +oGD +aeE +aeE +aeE +rlq +uvR +oId +oNq +rlq +wCn +wCn +pbt +wCn +wCn +ugA +alp +hmz +alp +ugA +ayG +gvl +gIy +gIy +uQt +bsA +hRv +eId +oFK +oFK +pTI +jMf +oMO +lmY +rTe +ivC +snS +pYf +oFK +ebE +oFK +oFK +cQs +oFK +dAg +hnT +vxo +wuu +jca +tpH +ybN +oNN +pzK +jiw +ljG +uyz +qzH +ybN +jzM +eHV +duM +rDY +cDI +ifu +uhF +aJG +cmw +mjE +eGQ +ifs +eBB +mBW +ujh +gLL +pGP +msL +mcu +mcu +mcu +ikg +dHi +cMO +shJ +cAX +qko +dbX +sCl +dbX +qko +gYd +shJ +cMO +nhC +wWz +vQg +mBr +cTj +nsK +ycD +ybV +ewA +vVE +wiK +pxN +nhC +pTq +pWI +lmU +yaw +sTj +cWF +lpA +pWI +msG +msG +oZy +jbI +jbI +gCQ +lpA +lpA +lpA +lpA +lpA +bfw +oNP +oNP +oNP +bfw +gng +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(149,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +lvX +lvX +lvX +lvX +lvX +lvX +lvX +lvX +lvX +lvX +oNP +oNP +oNP +xjE +xjE +xjE +cNm +oNP +oNP +oNP +fYV +nov +ber +ber +ber +ber +oId +uEl +aKf +aeE +fKd +kPq +kPq +kPq +onq +qHt +wix +abH +pBe +gHy +wbR +hmC +wxt +slx +slx +aeE +rlq +icf +ozD +aKt +kzU +pgH +wVf +kwy +ozD +ieB +ugA +cZJ +cnw +pba +ugA +rKn +fbt +tfq +rzC +tMv +iVX +sxz +xlJ +xlJ +fPo +oLX +xlJ +xlJ +rqW +ckn +ffz +pKI +pKI +pKI +xrm +pKI +pKI +pKI +kXz +kyy +kXz +kXz +gwX +cGA +xdI +mqh +bgn +iEi +pLz +itr +miE +osS +pCw +gXM +fes +pPU +rDY +woL +ifu +esx +aJG +wRG +jFy +khP +mRC +iPa +rXS +vGA +gLL +aPx +jWf +dFQ +ryL +jdv +jWf +mnJ +tWo +shJ +xhh +qko +aKm +sCl +aKm +qko +tvY +shJ +mnJ +nhC +bBB +cax +hEP +kxw +mpJ +jLY +fjf +uTN +edc +yeq +czU +nhC +miq +msG +msG +lpA +yaw +jbI +jbI +jbI +jbI +jbI +urj +lpA +gng +gng +jqC +jqC +jqC +gng +gng +bfw +oNP +oNP +oNP +bfw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(150,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +oNP +oNP +oNP +fNm +oNP +oNP +oNP +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +fYV +nov +ber +ber +ber +ber +oId +pJq +rlq +aeE +rAW +dBq +oZj +tSL +eTH +hbX +aeE +pSf +fEC +aeE +kgW +seF +pGL +slx +slx +aeE +rlq +rKm +xBt +elD +mPo +bgP +ozD +rrN +hik +vvR +ugA +uvx +jWb +ccK +ugA +dne +fbt +eqw +ptd +tQR +wuD +pgk +xlJ +rIy +rBZ +tew +uhd +xlJ +rRY +ckn +ffz +pKI +gcs +xpw +wtk +qxA +xuu +pKI +vEL +dHL +xNE +kKs +lCG +ijf +qji +mqh +aWP +xnd +iAk +bwE +sxw +dum +bLI +pBr +oUN +kfO +moU +jjo +vqG +lSr +eUb +eUb +ybk +eUb +mZW +eZU +xyD +aJG +roO +qWi +bNo +sWQ +kKq +dZy +feU +mnJ +kHz +shJ +fRr +xxG +rxQ +jpp +nyf +qjM +lSs +shJ +mnJ +nhC +uTN +uTN +uTN +nhC +uTN +iAK +uTN +nhC +eKE +uTN +uTN +nhC +xCl +xCl +pWI +tQn +qic +lpA +mDk +gti +uEp +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +pSv +oNP +oNP +oNP +pSv +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(151,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +fNm +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +ber +ber +ber +ber +ozD +bCq +rlq +aeE +eqe +kPq +kPq +kPq +dTd +kPq +kPq +seF +kPq +kPq +kPq +seF +qrw +slx +slx +aeE +rlq +wez +oId +dGN +fdz +ylZ +ozD +gUi +ozD +wWU +ugA +omR +jwu +abR +ugA +kXz +xmf +kXz +kXz +kXz +kXz +kXz +xlJ +qed +wQt +guY +feT +xlJ +ret +eua +cyh +pKI +qXz +vqp +krS +pKI +pKI +pKI +mYa +kln +ivI +kXz +eND +ybN +pQQ +ybN +ybN +hdt +gkM +gkM +msb +cfw +xMB +iXd +scK +vZc +dys +rok +ifu +qST +jCC +oEu +jsd +kfG +sFV +kfG +qTw +mgp +mgp +ipN +jWf +yfE +fuc +eOJ +jWf +mnJ +pDV +shJ +mum +qko +dbX +fcn +dbX +qko +oIu +shJ +mnJ +kpq +cGf +cGf +cGf +uTN +hPE +wPL +sFw +uTN +lzH +phu +nLH +kpq +rGc +rGc +pWI +msG +lYR +gng +gng +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +mcr +oNP +jxq +oNP +mcr +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(152,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ozD +bpN +rlq +aeE +dBq +dBq +oZj +ygV +eUI +gPm +aeE +aUJ +jju +aeE +dlH +omk +nCs +aeE +aeE +aeE +rlq +ber +oId +dvX +pgH +wUV +bnr +vDz +gFn +brV +ugA +ugA +ugA +ugA +ugA +ber +fxl +fxl +ber +ber +fxl +fxl +xlJ +pye +abB +cAH +hes +xCR +unU +ckn +fbt +pKI +xjt +kVJ +qkb +mOC +iIV +pKI +hVx +jUZ +mvd +kXz +vew +hMb +wws +dGV +drp +jIi +rSQ +kQL +msb +gVe +ybN +tvq +pAs +uzg +gce +hxc +pYz +lmv +uuS +wda +jWf +lNF +gda +lNF +jWf +jkV +fxQ +rTj +hWS +swH +gix +swH +hWS +mnJ +vKM +shJ +lYT +qko +aKm +fcn +aKm +qko +gYd +shJ +mnJ +kpq +byW +jiK +jiK +oaQ +epS +poU +aoZ +hjv +lVq +jiK +aMI +kpq +ifw +eKW +eKW +hqf +qic +hqf +xRQ +bvX +acd +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(153,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +nov +nov +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +oId +ber +rlq +aeE +aeE +aeE +aeE +crq +aeE +crq +aeE +aeE +aeE +aeE +aeE +aeE +aeE +aeE +ber +ber +rlq +jfL +ixS +mIA +fNA +dDL +qhr +wOw +gTE +jws +tJD +gGW +uDW +eny +pJq +oId +oId +ozD +ozD +oId +vlx +dPq +xlJ +pIZ +wQt +pDO +hes +xCR +unU +ckn +diB +rcA +tKx +spH +qcn +pKI +pKI +pKI +kXz +mDn +kXz +kXz +udf +ybN +qJK +qJK +rzK +jIi +rSQ +bXO +rqR +shO +ybN +jBG +nqj +mGD +ozd +ozd +xLm +rlY +iLc +ddg +msL +tzo +jMD +qQT +msL +hQD +uJQ +fmL +hWS +sPk +heX +pAY +hWS +mnJ +vKM +shJ +xRl +qko +qko +fcn +qko +qko +eFM +shJ +mnJ +kpq +jiK +rhl +ljg +uTN +nhC +tCI +nhC +uTN +vLH +wlV +jiK +kpq +ifw +eKW +eKW +hqf +qic +hqf +xRQ +bvX +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(154,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ozD +ber +rlq +ber +ber +tUy +aeE +qOb +aeE +qOb +aeE +hso +ber +ber +ber +ber +ber +hMr +ber +grJ +rlq +jfL +oId +ylZ +kNp +hDF +cdE +wfw +wfw +hKh +imn +aKf +rYE +eVs +jdM +gFn +fxl +ylZ +gFn +xDY +oId +fxl +xlJ +hdV +wQt +fAS +hes +eHM +unU +ckn +fbt +nib +bjJ +bjJ +bjJ +cXy +fZR +rjv +iqJ +fxa +rtK +rtK +wwh +ybN +eko +fXV +ybN +tYU +tYU +tYU +tYU +tYU +tYU +aoc +tYU +ifu +ifu +ifu +aNe +msL +msL +msL +msL +rLs +rLs +rLs +msL +msL +msL +msL +hWS +swH +mlM +yhs +hWS +mnJ +mnJ +shJ +vdW +unD +cMm +fyL +cMm +wiI +kwM +shJ +mnJ +kpq +aSr +eWy +ljg +kSv +uTN +aQO +uTN +owu +vLH +oMS +bHz +kpq +ifw +eKW +eKW +hqf +qic +hqf +xRQ +bvX +acd +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(155,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +ozD +vlx +rlq +oNq +fxr +ber +aeE +aeE +aeE +aeE +aeE +rPy +peH +ber +rlq +rlq +rlq +rlq +rlq +rlq +rlq +ozD +ozD +ozD +eUf +oId +gFn +qum +gla +xZu +kxt +pbZ +dmS +paB +sKS +euy +tIY +cxd +hfG +fxl +bmt +fxl +xlJ +wHp +wQt +dft +mux +xlJ +hRA +nLp +tGq +pKI +pKI +pKI +pKI +pKI +eFp +pcy +raD +raD +raD +raD +mCE +ybN +tnc +qJK +hpt +tYU +wpe +sYj +wTO +ctJ +qUe +alR +sEE +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +qan +nkz +lfe +wmo +hWS +rPY +mnJ +shJ +mGf +mGf +czn +sJa +czn +mGf +mGf +shJ +mnJ +kpq +dTl +juX +ljg +gEW +uTN +aQO +uTN +mKd +vLH +mQz +xWD +kpq +mps +mps +msG +msG +qic +gng +xRQ +bvX +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(156,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +cHh +nov +ber +ber +rlq +rlq +rlq +rlq +sUS +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +pIs +vhA +ozD +ozD +ozD +ozD +ozD +dIC +wsR +xHJ +ozD +ozD +oId +nIS +gzU +rza +gFn +ksI +gUY +ber +kqU +lNb +tXw +cmM +gFn +mfZ +fxl +xlJ +gJD +cjW +kPm +tqr +qEO +diB +mmC +lLq +bcx +gaB +uHT +kOM +kXz +eFp +eND +raD +jdf +jdf +raD +iiS +raD +dIV +nWe +iqL +tYU +ovN +jjB +iul +iGk +fbe +wHl +sEE +dFs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +qan +fdE +lfe +qwW +hWS +twg +mnJ +awB +mGf +huK +qko +pNj +qko +eDM +mGf +vKM +mnJ +kpq +ljg +ljg +ljg +uTN +nhC +pgp +nhC +uTN +vLH +ljg +ljg +kpq +xCl +xCl +msG +udd +qic +axx +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(157,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +dAB +ber +jjk +ber +ber +ozD +ozD +oId +ozD +oId +oId +ozD +ozD +ozD +oId +ozD +oId +jfL +oId +ozD +ozD +kSh +acM +kSh +oId +oId +oId +rqU +pPD +mDI +oId +aKU +oId +kHk +qkK +dxH +gUY +nBF +fcZ +bVQ +nBF +nBF +oXV +nBF +iRc +xlJ +qki +wQt +bYF +qUp +fPo +aEy +diB +aaX +gLz +jBC +iBX +ejc +kXz +gje +eYi +raD +cAR +nMH +fwO +gTV +raD +xUZ +cWM +mVP +tYU +gdF +lnC +lke +oPJ +jHv +wqS +sEE +wSx +dFs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +qan +uPo +lfe +iGx +hWS +spi +mnJ +mnJ +mGf +wiB +xxG +iZc +qjM +nld +mGf +okB +mnJ +kpq +erj +hJz +ljg +uTN +cKm +ydK +eVA +uTN +vLH +oXz +hCX +kpq +msG +pWI +msG +udd +qic +dOh +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(158,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +ifw +oNP +cNm +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +uyM +nov +jsw +ber +oId +wNI +wNI +wNI +wNI +wNI +wNI +wNI +wNI +wNI +wNI +oId +tOn +oId +vcD +kSh +nEA +nEA +nEA +ePB +wOb +hhU +nEA +nEA +nEA +ozD +gFn +xIe +ozD +ryR +oFd +gUY +nBF +etA +etA +tYS +rBT +myN +nBF +ber +mFI +xAV +wQt +fHM +kaq +xlJ +kXz +nTb +kXz +kXz +gdu +uxy +qWj +kXz +njQ +eYi +raD +aIw +add +vra +vsJ +xrX +ijm +puX +jxx +tYU +rDF +wTQ +vtr +wJp +ecn +mYy +jMF +kGn +olM +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +swH +swH +eHe +swH +hWS +hWS +hWS +mnJ +mGf +mGf +kDO +rXI +wzm +mGf +mGf +rPY +mnJ +kpq +ljg +ljg +ljg +uTN +xtg +aHs +nem +uTN +vLH +ljg +ljg +kpq +qic +qic +qic +qic +rKM +odd +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(159,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +lrz +ber +ozD +ozD +wRT +cGL +mwr +gbR +ugM +oZz +wNI +xjs +tXS +xdD +jyr +ddT +vcD +oId +gRe +aqn +aqn +ozD +lUm +oId +aDe +hQg +uHz +ozD +gFn +oId +ilN +aEv +xVf +pHx +nBF +etA +etA +pOB +rBT +pZS +nBF +hoA +xlJ +xlJ +dvw +xlJ +xlJ +xlJ +mTn +mXo +pPd +kXz +kXz +cXy +kXz +kXz +mCE +eYi +raD +xAh +daG +fwO +hdm +raD +hab +gnA +hab +tYU +sKP +lLB +ylu +iCb +jHv +aGH +sEE +for +cXN +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +yhs +rIW +heX +xUW +oZO +qoe +hWS +mnJ +tWo +mGf +mGf +mGf +mGf +mGf +vKM +mnJ +mnJ +kpq +kOS +xjm +ljg +uTN +sXe +qGa +jOX +uTN +vLH +rIw +rgS +kpq +qic +eci +dMe +dMe +umW +lpA +dxt +qkN +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(160,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ber +ber +ber +ber +ozD +iWP +ber +ozD +ozD +mYv +qTV +wry +wPP +oZz +qOf +wNI +wNI +wNI +xdD +jyr +ddT +wNI +xIe +gFn +esJ +esJ +esJ +gFn +esJ +esJ +gFn +gFn +gFn +esJ +rSv +mZT +gFn +dSL +sLr +qPY +xYv +jXm +wgM +izS +eHm +bVE +uQL +wmS +wmS +wmS +uQL +mxm +nBF +hSd +mXo +mXo +kaZ +odS +mXo +vIv +mXo +bQi +brH +raD +jdf +qGp +raD +iiS +raD +iFI +gnA +vAt +tYU +qXw +ghy +cuj +iyB +vwb +cpl +sEE +vOG +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +swH +nhT +hfZ +eUt +kwH +sLR +hWS +dHi +mnJ +mnJ +mnJ +mnJ +mnJ +mnJ +mnJ +mnJ +vKM +kpq +dsx +pch +ljg +uTN +uTN +uTN +uTN +uTN +vLH +nzR +oMT +kpq +icK +cCq +cmF +cmF +wqc +lpA +dxt +dxt +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(161,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +nov +nov +ber +ber +ber +ber +ber +ber +ber +oId +ber +ber +ozD +ozD +gCb +uAU +irX +oZz +udW +oZz +kxj +uOy +eyB +jyr +jyr +xdD +eui +gFn +gFn +fTq +gFn +gFn +gFn +lnR +esJ +esJ +gFn +gFn +gFn +oId +bjN +oKo +tfl +gUY +hTq +phJ +hIX +uTY +cjF +sSc +giZ +ebC +uTY +jGQ +sSc +dVA +dHw +bVQ +nBF +nBF +nBF +nBF +bVQ +nBF +nBF +nBF +sXQ +rcU +raD +raD +raD +raD +gOI +bgE +bEa +tWQ +hab +tYU +lZk +eSi +rjb +rNT +nou +bKO +sEE +vOG +fPb +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +swH +pna +xYC +faI +kTT +kRC +hWS +vKM +vKM +vKM +bGH +umH +iEv +vKM +cOP +dPH +mnJ +kpq +ljg +ljg +ljg +ljg +ljg +vLH +vLH +vLH +vLH +ljg +ljg +kpq +qic +bzt +czz +czz +fHc +lpA +dxt +dxt +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(162,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ber +ber +ber +oId +ber +ber +oId +wNI +wNI +wNI +ioK +ioK +ioK +wNI +wNI +gaI +jaV +jyr +jyr +ddT +wNI +ozD +ozD +ozD +oId +lxj +gFn +ozD +ozD +lUm +oId +dvk +irn +xoS +ozD +oZf +ycu +dzf +qhH +xJh +ewC +etA +etA +etA +etA +etA +etA +etA +etA +bsn +dzN +bVQ +sdA +fIy +hXY +xUM +jUp +lVi +hXY +nBF +sUp +bpZ +cZE +xpg +xpg +xpg +ryf +ybN +ybN +ybN +ybN +tYU +tYU +tYU +tYU +tYU +sEE +sEE +tYU +kNo +tYU +mjJ +vnJ +vnJ +uIE +vnJ +vnJ +vnJ +uIE +vnJ +vnJ +vnJ +uIE +vnJ +swH +swH +xfH +swH +wMU +swH +hWS +jWf +jWf +jWf +jWf +jWf +jWf +vKM +cOP +ofG +mnJ +kpq +cGf +cGf +cGf +cGf +ljg +qEy +ljg +cGf +cGf +cGf +cGf +kpq +lYR +msG +duF +duF +gng +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(163,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +ber +oId +oId +ozD +wNI +wNI +wNI +wNI +wNI +dNU +gaI +eyB +jyr +xdD +ddT +wNI +ozD +lpf +nEA +bou +esJ +gFn +oId +xna +nEA +vEC +rqU +rqU +pan +xHT +gFn +gRw +mki +kwD +phJ +rFh +etA +etA +etA +etA +etA +etA +etA +etA +gLH +dzN +pcd +mmN +mmN +gfl +mmN +mmN +gfl +mmN +bVQ +oiT +miI +qJY +qJY +qJY +qJY +aXY +gCM +tYU +jBO +tYU +aPR +jIM +yaQ +pfL +tYU +nZC +eSp +kuB +sUo +avk +rLs +rLs +rLs +vnJ +mlo +rLs +rLs +vwP +rLs +rLs +mlo +vnJ +rLs +rLs +qrK +fwE +fwE +fwE +xvx +xvx +fwE +fwE +fwE +fwE +fDl +jWf +mGH +pQJ +cOP +mnJ +kpq +kpq +kpq +kpq +guc +eXH +iCi +kMc +jby +kpq +kpq +kpq +kpq +mnJ +vKM +vKM +trj +gng +gng +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(164,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +nov +ber +ber +ber +rSv +lJg +qNI +tEO +ozD +wNI +kDx +gaI +wNI +oJm +wBo +wNI +wNI +ozD +iMm +nEA +yda +esJ +gFn +ozD +jaQ +nEA +hhU +rqU +tCm +dUI +oId +ozD +jfi +ozD +bVQ +nDp +wMe +etA +etA +etA +etA +etA +etA +etA +etA +bdR +dQW +vPe +vPe +vPe +lQP +vPe +aRL +vPe +lQP +kkm +bYs +mXo +qJY +qJY +qJY +qJY +eFp +hcP +tYU +bJJ +bkv +kvw +ofV +oCz +jDH +gPz +mKJ +vfB +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +nYm +nos +nos +dwZ +nos +nos +lqq +vnJ +rLs +rLs +tli +iyj +pWp +pWp +jEy +jEy +jEy +pWp +pAD +sYP +mRF +jWf +twg +cOP +cOP +mnJ +vqo +vKM +vKM +kpq +kpq +kpq +kpq +kpq +kpq +kpq +twg +nfU +xyN +mnJ +rJR +trj +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(165,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +oNP +fNm +fNm +fNm +fNm +fNm +oNP +cNm +oNP +oNP +nov +oNq +fxr +ber +oId +ozD +ozD +ozD +ozD +wNI +hXg +gaI +jaV +xdD +oLd +xdD +wNI +ozD +lpf +nEA +bou +esJ +xHj +ozD +xna +nEA +vEC +lpf +ozD +oId +ozD +abV +asK +irk +bVQ +phJ +jFH +etA +etA +etA +etA +etA +etA +etA +etA +xrr +phJ +jHn +aKD +aKD +sUW +gfl +sUW +sUW +aKD +nBF +daA +miI +qJY +qJY +qJY +qJY +eFp +rQK +tYU +tYU +tYU +ayK +vaP +bgN +jlk +tYU +evh +uFx +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +mgC +hzd +arN +arN +arN +hzd +eZy +vnJ +rLs +rLs +vaW +pWp +pWp +pAD +pAD +pWp +pWp +pWp +pAD +pWp +mRF +jWf +vKM +rPY +rPY +mnJ +tWo +mnJ +mnJ +mnJ +mnJ +mnJ +meZ +mnJ +mnJ +mnJ +mnJ +mnJ +mnJ +mnJ +nHk +wcS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(166,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +cNm +oNP +ifw +oNP +cNm +ifw +oNP +oNP +oNP +ifw +oNP +oNP +ifw +oNP +cNm +oNP +ifw +oNP +oNP +oNP +oNP +nov +ber +ber +ber +ber +oId +umV +ktt +fmA +rEA +gaI +gaI +wNI +xdD +xdD +xdD +wNI +ozD +nmx +pCT +ozD +bLb +esJ +oId +ozD +pCT +ozD +ozD +ozD +gHJ +iRR +gHJ +gkL +uDv +nBF +phJ +vYr +etA +etA +etA +etA +etA +etA +etA +etA +bhw +phJ +nBF +sNz +tDJ +tDJ +khn +sNz +xwB +tDJ +bVQ +dRs +fyu +fyu +hyp +fyu +fyu +vXa +mXo +mXo +mXo +tYU +vrR +vrR +vrR +vrR +tYU +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +eVD +spg +spg +wPN +spg +spg +jtn +vnJ +rLs +rLs +vaW +jIk +pWp +vEa +pWp +wJE +pWp +reY +pWp +kBH +mRF +qtf +mnJ +mnJ +vKM +mnJ +mnJ +mnJ +vKM +vKM +vIF +yjY +rJR +rJx +umH +vKM +vfJ +vKM +xyN +vKM +nHk +wcS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(167,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +nov +nov +nov +nov +nov +nov +oId +hvY +pJq +ozD +oId +ozD +dom +khq +wNI +rsX +uTh +wNI +gYV +gYV +gYV +wNI +ozD +mPZ +nEA +lUm +gFn +esJ +oId +cHq +nEA +wOb +qiS +ozD +gHJ +ozD +tmL +lPe +daw +nBF +ugK +bfX +qHl +deR +pkG +rjL +rjL +pDz +rNA +rRK +qqZ +izB +bVQ +phJ +dVq +phJ +ulK +phJ +qnH +phJ +bVQ +scX +ozD +qRX +qRX +gjp +qRX +qRX +qRX +gjp +wOK +gjp +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +nNE +rLs +rLs +koN +rLs +rLs +nNE +vnJ +rLs +rLs +vaW +pWp +pAD +pAD +pWp +pWp +pWp +pAD +pWp +pWp +mco +jWf +kqF +foW +kqF +kqF +mnJ +kqF +vKM +nfU +trj +wcS +wcS +wcS +trj +vKM +vKM +vKM +trj +trj +trj +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(168,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ber +ozD +ber +ber +ber +ber +oId +ozD +ozD +wNI +wNI +wNI +wNI +oId +oId +ozD +oId +ozD +ozD +ozD +ozD +tvk +gFn +ozD +ual +apX +tLd +oId +oId +gHJ +oId +ozD +oId +oId +nBF +xXC +bXG +bSq +upu +hvX +qrr +bEd +phJ +phJ +llI +qrV +yci +nBF +nBF +nBF +nBF +hoA +nBF +bVQ +nBF +nBF +cKG +ozD +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +ulw +vnJ +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +uIE +vnJ +vnJ +vnJ +uIE +vnJ +vnJ +vnJ +uIE +rLs +rLs +tli +pjL +pWp +pAD +ibl +iun +iun +pAD +pWp +ieO +mco +jWf +soL +mnJ +gtQ +vqo +mnJ +trj +trj +trj +trj +oNP +oNP +oNP +trj +trj +trj +trj +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(169,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xjE +xjE +fYV +soa +xjE +xjE +xCl +xjE +xjE +fYV +fYV +xjE +xjE +xCl +xjE +xjE +fYV +fYV +nov +nov +ber +ber +ber +ber +oId +ber +ber +fkW +ber +ber +ber +oId +oId +ozD +oId +ozD +ozD +hso +hso +xif +dfb +ber +oId +xIe +gFn +gFn +uHo +gFn +gFn +gFn +rSv +jfL +gHJ +gHJ +rlq +fkW +ber +nBF +bVQ +nBF +nBF +ewU +jRi +qbX +wIX +jRi +jRi +bVQ +nBF +heK +nBF +ber +nNy +oId +ber +rYX +ber +fkW +ber +cKG +oId +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +ulw +vnJ +rLs +rLs +rLs +rLs +uIE +vnJ +vnJ +vnJ +vnJ +vnJ +vnJ +vnJ +vnJ +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +dMY +jvA +szX +jvA +szX +szX +vuo +wHy +duo +duo +cRZ +jWf +aHa +vfJ +qWe +kqF +mnJ +lsX +vKM +vKM +lht +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(170,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +xjE +xCl +xCl +xjE +gsU +gsU +gsU +nov +ber +ber +ber +ber +ozD +ber +mZT +fkW +mGE +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +ber +oId +gFn +gFn +gFn +gFn +gFn +gFn +gFn +oId +oId +oId +bdY +gHJ +fkW +ber +ber +iRc +hoA +tGh +eRT +eRT +eRT +kOe +eRT +eRT +qgc +nBF +rlq +rlq +rlq +rlq +ozD +ber +pJq +ber +oQl +ber +cKG +ozD +ipz +rLs +rLs +rLs +rLs +rLs +rLs +ulw +uIE +vnJ +vnJ +vnJ +vnJ +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +jWf +jWf +jWf +jWf +jWf +jWf +iUp +mnJ +vKM +kqF +mnJ +lsX +vKM +vKM +qdp +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(171,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +oNP +oNP +xjE +xjE +xjE +xjE +oNP +cNm +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +lSZ +lSZ +lSZ +lSZ +nov +nov +nov +nov +ber +ber +ozD +gFn +ozD +lUm +ozD +bmT +nIW +tsB +ozD +tcQ +ozD +fxl +gHJ +ber +ber +oId +ber +nBF +luU +qXr +uUn +lNR +luU +qXr +oNZ +lNR +bVQ +ozD +oId +oId +rlq +vlx +ber +vhW +ber +xql +rPy +cKG +tUy +gth +rLs +rLs +rLs +rLs +rLs +rLs +izb +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +kqF +rVK +rVK +kqF +rJR +kqF +vqo +foW +vqo +kqF +cMO +lsX +vKM +vKM +qdp +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(172,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +ber +ber +oId +rSv +oId +fAa +wMX +fAa +nEA +nEA +gIa +wtN +oId +fxl +gHJ +uSf +jds +ozD +ber +nBF +uQT +oNZ +uUn +obG +uQT +qXr +uUn +obG +bVQ +obI +ber +ozD +rlq +rlq +mrM +rlq +rlq +rlq +rlq +cKG +ber +gth +rLs +rLs +rLs +rLs +rLs +rLs +izb +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +kqF +pbf +ssC +vqo +fJh +vKM +mdh +mnJ +mnJ +mnJ +mnJ +trj +trj +trj +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(173,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +vlx +ber +jsw +jfL +oId +xki +azo +lUy +oId +ozD +ozD +ozD +ozD +ozD +rlq +oId +ozD +ozD +ber +bVQ +osp +mGn +uUn +obG +uQT +qXr +eUz +obG +nBF +ber +ber +ozD +rlq +vhW +ozD +oId +oId +ber +ozD +uvR +ozD +qlh +rLs +rLs +rLs +rLs +rLs +rLs +ulw +vnJ +rLs +vnJ +xNo +oZI +oZI +oZI +vsh +woR +woR +xiX +oZI +ocw +oZI +oZI +mji +vnJ +vnJ +vnJ +vnJ +vnJ +xNo +oZI +oZI +ocw +oZI +vsh +woR +woR +xiX +oZI +kqF +qPE +xxm +vqo +vKM +vfJ +vKM +vKM +xyN +iEv +vKM +nmI +vKM +kdt +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(174,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +qzV +ber +ber +ber +oId +iSm +czW +nVV +oId +iRc +ber +ber +ber +ber +gHJ +ber +ozD +tUy +ber +nBF +nBF +bVQ +bVQ +nBF +nBF +nBF +bVQ +nBF +nBF +ozD +oId +ozD +rlq +oId +ber +ber +ozD +ber +oId +uvR +ozD +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +jtd +woR +woR +woR +tkE +niH +qBY +qBY +sxP +rLs +rLs +kCj +qBY +oZJ +hgn +jSM +kEm +woR +xiX +oZI +vsh +woR +tSC +jSM +cFZ +oZJ +uUc +xaj +rLs +rLs +wyr +qBY +sCF +vKM +vKM +vKM +vKM +vls +vqo +vqo +kqF +kqF +vKM +trj +trj +trj +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(175,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +qzV +ber +ber +ber +ozD +ozD +oId +ozD +ozD +ber +ozD +oId +ozD +mzs +gHJ +ber +ber +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +rlq +ozD +eKm +ber +ozD +dfb +cUJ +uvR +ozD +rLs +rLs +rLs +rLs +rLs +rLs +vnJ +ulw +vnJ +vnJ +vnJ +kCj +fNU +qCd +iFo +raI +yiZ +yiZ +mPD +jSM +bug +uNv +vnJ +vnJ +vnJ +sqo +wbQ +tJN +vnJ +vnJ +vnJ +bTZ +bug +jSM +raI +yiZ +yiZ +mPD +jSM +kqF +vKM +vKM +vKM +vKM +vKM +kqF +riF +jfG +kqF +vKM +lsX +vKM +pKh +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(176,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +nov +nov +ber +ber +ber +uSf +iRc +ber +ber +ber +xif +mAK +ber +uSf +rlq +rlq +rlq +rlq +vhW +ber +ber +ozD +ber +oId +ber +tUy +wez +ber +oId +ber +ber +ber +ber +ozD +eNc +nrV +xHM +xHM +xHM +gDn +ozD +oId +oId +kin +ofu +pFJ +ozD +ozD +waS +ozD +ozD +pFJ +vxI +bkH +oId +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +kqF +kqF +vqo +tEo +kqF +vqo +kqF +bkF +aFw +vqo +vKM +lsX +vKM +qdp +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(177,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +pYx +ber +ber +vlx +ber +ber +oId +tUy +lrz +lrz +ber +ber +ubS +ubS +wez +jeU +bpN +mkY +oId +oId +ber +fkW +rPy +rPy +ozD +ber +oId +ozD +ber +ozD +ozD +ozD +ber +rPy +wez +tUy +ber +mAK +ber +ber +ber +ber +ber +ber +fZz +oId +rlq +ozD +lzW +ber +ber +rlq +mxv +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +kqF +bFP +anh +rlQ +pKz +rlQ +kqF +vqo +nmu +kqF +sCF +trj +trj +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(178,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +bpN +ber +ber +ber +ber +ber +nov +lSZ +lSZ +lSZ +lSZ +nov +qzV +vfS +oId +kjc +bpN +mkY +ozD +eNc +ber +ber +ber +ber +ber +ber +rYX +ber +ber +mAK +ber +ber +ber +ber +ber +ber +obI +ber +fPZ +ber +ber +emH +oNq +oNq +ber +vlx +rlq +maF +rlq +rlq +rlq +rlq +mxv +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +rLs +kqF +xZp +kPE +kPE +kPE +rgO +bTJ +sVS +sVS +tfX +sVS +gsW +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(179,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +lSZ +lSZ +lSZ +nov +nov +nov +nov +oNP +oNP +oNP +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +lrz +aqQ +lrz +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +nov +ber +ber +ber +ber +ber +ber +ber +ozD +kjc +bpN +mkY +fZz +nov +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +pCG +trj +gWS +wUN +wUN +wUN +jmM +kqF +yeX +vpL +oEz +sVS +cMu +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(180,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +lSZ +lSZ +lSZ +nov +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +nov +nov +nov +nov +nov +nov +nov +nov +jeU +bpN +mkY +nov +nov +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +trj +trj +htM +wUN +giR +trj +trj +wcS +wcS +wcS +trj +trj +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(181,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +nov +lSZ +lSZ +lSZ +nov +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +trj +wcS +wcS +wcS +trj +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(182,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(183,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(184,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(185,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(186,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(187,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(188,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(189,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(190,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(191,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(192,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(193,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(194,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(195,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(196,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(197,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(198,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(199,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(200,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(201,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(202,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(203,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(204,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(205,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(206,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(207,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(208,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(209,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(210,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(211,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(212,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(213,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(214,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(215,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(216,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(217,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(218,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(219,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(220,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(221,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(222,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(223,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(224,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(225,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(226,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(227,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(228,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(229,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(230,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(231,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(232,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(233,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(234,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(235,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(236,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(237,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(238,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(239,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(240,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(241,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(242,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(243,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(244,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(245,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(246,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(247,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(248,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(249,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(250,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(251,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(252,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(253,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(254,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(255,1,2) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} + +(1,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(2,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(3,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(4,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(5,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(6,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(7,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(8,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(9,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(10,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(11,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(12,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(13,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(14,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(15,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(16,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(17,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(18,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(19,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(20,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(21,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(22,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(23,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(24,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(25,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(26,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(27,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(28,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(29,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(30,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(31,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(32,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(33,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(34,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(35,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(36,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(37,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(38,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(39,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(40,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(41,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(42,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(43,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(44,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(45,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(46,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(47,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(48,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(49,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(50,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(51,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(52,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(53,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(54,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(55,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(56,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(57,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(58,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(59,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(60,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(61,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(62,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(63,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(64,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(65,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(66,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(67,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +mxA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(68,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +iQL +cgx +gsU +cgx +iQL +oNP +oNP +oNP +iQL +cgx +upy +qCD +upy +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(69,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +uSz +uSz +uSz +kTE +uSz +uSz +kTE +uSz +uSz +uSz +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ofw +rjf +rjf +rjf +ofw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +arz +gsU +arz +gsU +oNP +oNP +oNP +gsU +arz +vAz +puS +vAz +oNP +oNP +oNP +oNP +oNP +oNP +oNP +uMh +vFk +vFk +vFk +uMh +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(70,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +uSz +nca +nca +qQb +nca +nca +sfp +nca +nca +uSz +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +rjf +lcy +rtu +jPJ +ofw +ofw +oNP +oNP +oNP +oNP +oNP +oNP +gsU +arz +gsU +arz +gsU +arz +arz +arz +gsU +arz +vAz +puS +vAz +oNP +oNP +oNP +oNP +oNP +oNP +uMh +uMh +uNX +uVo +bei +uMh +uMh +lnS +lnS +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(71,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +vnC +gsU +gsU +gsU +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gxW +wlp +gxW +gxW +gxW +gxW +gxW +kTE +nca +nca +nca +nca +nca +nca +nca +nca +kTE +ofw +ofw +ofw +ofw +ofw +ofw +vnC +gsU +ono +cgx +cgx +cgx +cgx +cgx +cgx +rjf +clk +jIp +gwW +aTp +rjf +gsU +gsU +gsU +gsU +gsU +gsU +gsU +arz +gsU +arz +gsU +arz +arz +arz +gsU +arz +vAz +puS +vAz +gsU +gsU +gsU +gsU +gsU +gsU +uMh +cvM +ilb +cju +ujN +pJI +gjR +ngN +tqK +tqK +eBr +mlf +mlf +nTI +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(72,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +gsU +gsU +gsU +gsU +gsU +gsU +gxW +gxW +gxW +gxW +wNa +gxW +bKR +nGi +bKR +bKR +fLK +nca +nca +nca +nca +nca +nca +nca +nca +fLK +tgm +cAr +fvQ +fNj +tgm +ofw +cgx +cgx +xDF +ono +sun +sun +qRu +rjf +rjf +ofw +dZz +dZz +dZz +pMO +rjf +cgx +cgx +cgx +cgx +cgx +cgx +fSK +sun +cgx +sun +cgx +cgx +cgx +cgx +cgx +sun +upy +viB +upy +cgx +cgx +cgx +cgx +cgx +cgx +vFk +wwv +cxV +aAs +mXi +ogJ +tXN +tSQ +ful +ful +rhF +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(73,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +bPT +bPT +bPT +sun +sun +sun +sun +sun +sun +sun +pvv +kdS +kdS +ayn +rVN +bKR +gxW +rvI +cPq +cPq +cPq +cPq +nca +nca +nca +nca +nca +nca +nca +cPq +mMu +mMu +mMu +cPq +tgm +tgm +ofw +sun +sun +sun +sun +eVg +sun +rjf +rjf +tgm +tgm +tgm +tgm +dZz +fRR +rjf +sun +sun +sun +vFr +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +vAz +wfJ +vAz +sun +sun +sun +drJ +sun +sun +vFk +rRJ +aFC +gaE +bbH +lQV +gjR +aHA +rmT +rmT +gin +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(74,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +sun +uLk +ofq +sdT +sun +sun +sun +sun +drJ +sun +sun +pvv +kdS +kdS +kdS +rVN +oka +gxW +bKR +cPq +fIB +fIB +cPq +nca +nca +nca +nca +lir +wWp +ltU +mMu +cbZ +rjE +aWM +mMu +sZe +tgm +ofw +sun +sun +sun +sun +sun +sun +rjf +tgm +tgm +tgm +tgm +tgm +dZz +bpd +ofw +ofw +ofw +sun +eVg +sun +sun +sun +sun +sun +sun +sun +qRu +sun +ono +sun +sun +vAz +cJu +vAz +sun +sun +sun +sun +sun +sun +vFk +xVK +xmx +aAs +nNl +fbU +gjR +bNt +bNt +bNt +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(75,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +sun +sun +sun +drJ +bPT +bPT +bPT +sun +sun +sun +sun +sun +sun +sun +pvv +kdS +kdS +kdS +rVN +bKR +gxW +bKR +cPq +bnw +gyU +twu +gUX +gUX +gUX +oUA +aOi +fUB +iwU +iZu +xtO +rLC +vPN +mMu +sZe +tgm +ofw +ofw +ofw +ofw +rjf +rjf +rjf +ofw +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +ofw +rjf +rjf +rjf +ofw +lnS +lnS +lnS +eVg +sun +sun +drJ +sun +sun +eVg +vAz +cJu +vAz +sun +sun +sun +eVg +sun +lnS +uMh +cvM +upm +cXV +bbH +cvM +gjR +rut +ngN +tqK +tqK +eBr +mlf +mlf +nTI +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(76,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +wGA +gxW +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gsU +gsU +gsU +gsU +gsU +eVg +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +gxW +gxW +gxW +lCA +lCA +lCA +gxW +gxW +gxW +gxW +gxW +uPM +gxW +iuj +cPq +cUe +cUe +cPq +rbl +xtO +rbl +bHX +rbl +hax +rbl +mMu +woE +cBG +bRn +mMu +jgd +tgm +kCc +tgm +mWZ +puW +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +puW +rYp +jxe +mWZ +mWZ +xYl +xSK +lnS +lnS +lnS +lnS +asG +lnS +sun +sun +vAz +cJu +vAz +vAz +upy +sun +sun +sun +lnS +tXN +gjR +pnX +jJi +bts +tXN +gjR +hia +tSQ +ful +ful +rhF +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(77,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +lzi +uIk +uIk +uIk +lzi +gxW +iyc +bKR +gxW +gxW +gxW +gxW +gxW +gxW +gxW +aHX +gUR +bKR +gxW +gxW +lCA +lCA +lCA +gxW +gxW +bKR +bKR +bKR +wpj +bKR +hsq +bKR +wpj +jKs +ghh +wpj +qzN +nWA +jUj +jUj +lbX +kdS +kdS +sSD +fcL +sun +drJ +sun +sun +sun +drJ +sun +sun +sun +sun +sun +gxW +lCA +lCA +gxW +nyL +gUR +eZR +eZR +eZR +qDB +bKR +bKR +bKR +bfh +bVS +ppo +bKR +cPq +cPq +cPq +cPq +iNO +cds +iNO +cPq +iNO +eIG +iNO +cPq +mMu +mMu +mMu +cPq +tgm +nTl +nTl +hur +mWZ +dZz +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +pbx +pbx +pbx +pbx +pbx +xYl +uFh +hsb +uFh +lnS +eLF +uFh +lnS +lnS +sun +vAz +cJu +lme +cJu +vAz +sun +sun +sun +lnS +laZ +gjR +vFk +srf +vFk +tXN +laZ +tAp +aHA +rmT +rmT +gin +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(78,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +lzi +eJb +jLv +eJb +lzi +gxW +gxW +uPM +gxW +qHC +vCA +hHx +wpj +uKM +bKR +bKR +kMR +bKR +fRY +pel +bKR +bKR +bKR +bKR +bKR +bKR +bKR +djU +djU +bKR +raF +bKR +wpj +ozy +uuC +udM +bKR +tVh +jYU +jYU +eFy +kdS +kdS +kdS +fcL +sun +sun +sun +sun +sun +sun +sun +sun +gxW +lCA +lCA +gxW +bKR +mGK +bKR +bKR +eeJ +hDU +hDU +hDU +hDU +hDU +aUR +ajy +ajy +ajy +ajy +ajy +kyH +luM +fMY +eFx +phe +cMq +evs +cPq +kYK +bIp +nRN +kak +mWZ +mWZ +sNm +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +dZz +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +tgm +qfZ +qfZ +qfZ +pbx +gzA +jzv +pzW +pbx +xYl +cZC +cZC +vEg +lnS +lnS +whg +lnS +lnS +sun +upy +vAz +vAz +cJu +vAz +sun +sun +sun +lnS +laZ +laZ +dBR +rCO +cJd +laZ +laZ +kkL +bNt +bNt +bNt +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(79,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +xlc +lzi +oBV +cum +seB +dmn +wpj +bKR +bKR +bKR +bKR +bKR +bKR +wpj +ntu +nWq +bKR +mGK +bKR +fRY +dfQ +bKR +mzm +pai +uQD +pai +pai +skd +wpj +bKR +bKR +beL +bKR +iOd +wpj +wpj +wpj +fNz +pTK +gud +gud +cBa +kdS +kdS +kdS +fcL +sun +sun +sun +sun +sun +sun +sun +sun +gxW +ePG +eZR +owP +bKR +bKR +jJf +mfK +xvr +xEA +xEA +xEA +xEA +xEA +gwZ +xEA +xEA +cPq +cPq +cPq +cPq +vZU +vJt +hoj +hoj +reC +gGq +iNO +vZU +aqA +mNm +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +aVU +pbx +pbx +pbx +pbx +pbx +pbx +pbx +bfV +xTz +bfV +pbx +xYl +nHD +kkL +uFh +uFh +uFh +uFh +uFh +lnS +sun +sun +sun +vAz +cJu +vAz +sun +sun +sun +lnS +laZ +laZ +dBR +rCO +cJd +laZ +laZ +tAp +uFh +ngN +tqK +tqK +eBr +mlf +mlf +nTI +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(80,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +iGA +lzi +eJb +gSY +eJb +lzi +aJp +bKR +bKR +djU +dwW +wpj +bKR +wpj +wpj +wpj +sXA +wpj +wpj +wpj +wpj +wpj +vzI +wpj +wpj +wpj +rvI +nis +pai +pai +skd +wpj +djU +bKR +aGA +bKR +djU +iuj +cKM +cKM +cKM +gxW +gxW +gxW +gxW +gxW +ndc +ndc +gxW +ndc +ndc +gxW +ndc +ndc +gxW +oEW +bKR +bKR +azC +djU +djU +aGA +xvr +xEA +gMz +qRD +aVW +ldI +wew +qeh +xEA +nZh +eqz +lBC +cPq +bNv +bNv +bar +dKZ +kvh +gqj +cnb +gqj +xXs +lvJ +cPq +nOq +btf +uyc +cPq +nOq +btf +uyc +cPq +nOq +wvu +uyc +cPq +jHr +jHr +jHr +cPq +gmh +pbx +bfV +bfV +mgA +bfV +bfV +pbx +xui +bfV +qyt +pbx +xYl +xYl +xYl +xYl +xYl +xYl +xYl +xYl +lnS +lnS +cgx +vAz +vAz +ljH +vAz +vAz +cgx +lnS +lnS +laZ +laZ +dBR +mlj +cJd +laZ +laZ +tAp +uFh +tSQ +ful +ful +rhF +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(81,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +qsE +lzi +las +las +las +lzi +wpj +bKR +bKR +wpj +bKR +wpj +bKR +bKR +bKR +bKR +bKR +bKR +bKR +cEX +vtZ +cEX +vzI +atA +vAr +sbj +mfK +bKR +wpj +bKR +qCK +wpj +bKR +bKR +bKR +bKR +kgn +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +gxW +kdS +oqZ +gxW +kdS +oqZ +gxW +kdS +oqZ +gxW +qHG +hYm +hDU +hDU +hDU +hDU +hDU +lOW +xEA +wBR +qRD +qRD +ugF +lIg +qeh +xEA +bnS +dds +hQI +cPq +nca +rZa +cUC +cUC +qiN +dED +iNO +nca +xkw +fry +cPq +cBH +etU +xzT +cPq +oWp +bjv +hwv +cPq +lls +mBu +xIG +cPq +jHr +jHr +jHr +iQk +gmh +pbx +mNb +cRC +bfV +oXj +bfV +pbx +liE +bJU +liE +pbx +rRo +rRo +nyi +nyi +nyi +nyi +nyi +xYl +kRT +lnS +sun +vAz +okI +ucs +bej +vAz +sun +lnS +cOn +laZ +kkL +drs +xXS +pRH +cZC +laZ +tAp +uFh +aHA +rmT +rmT +gin +mlf +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(82,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +wpj +cKM +cKM +wpj +gve +djU +djU +wpj +bKR +mLD +djU +mzm +pai +pai +pai +pai +ffB +ntu +sda +sbj +mfK +bKR +djU +bXw +vzI +bKR +bKR +rSH +rSH +bKR +mfK +cEX +cEX +ksY +mjM +dfQ +bKR +djU +bKR +gxW +kdS +kdS +gxW +kdS +kdS +gxW +kdS +kdS +gxW +iOd +vzI +kIp +kyH +kIp +kIp +kIp +kIp +kIp +gMz +qRD +puL +lFE +vMX +qeh +xEA +peD +lKW +cJg +cPq +oYP +oxD +hGy +hIp +eEz +sUa +cPq +nca +cJn +nca +cPq +gtv +myh +syv +cPq +xkD +uNB +xkD +cPq +jzH +nHO +tPW +cPq +jHr +jHr +jHr +xRJ +oUV +pbx +uMV +bfV +bfV +bfV +bfV +pbx +dub +liE +liE +eVv +uFh +uFh +nyi +njc +mxV +nrJ +nyi +xYl +uFh +lnS +upy +vAz +hiq +eAM +rzd +vAz +upy +lnS +hbA +sIT +bAT +nSg +epo +ylV +dRM +sIT +vWz +cZC +bNt +bNt +bNt +lnS +lnS +lnS +oNP +oNP +oNP +lnS +iVo +iVo +nqz +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(83,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +ayn +tgI +xAq +xAq +xAq +lzx +cFP +cFP +cFP +wpj +mzm +pai +pai +ffB +gxW +gxW +lCA +lCA +lCA +lCA +lCA +gxW +gxW +bKR +wpj +bKR +vzI +wpj +bKR +bKR +bKR +bKR +bKR +bKR +tKg +dFw +bKR +bKR +bKR +aGA +bKR +gxW +cXn +cXn +gxW +cXn +cXn +gxW +cXn +cXn +gxW +qJp +ffB +kIp +rAE +ifx +tWk +ifx +wfo +kIp +hye +lRk +lks +vRG +vMX +ylc +xEA +cPq +uRY +cPq +cPq +cPq +cPq +cPq +iNO +gFl +iNO +cPq +nom +jiz +cPq +cPq +cPq +rVd +cPq +cPq +cPq +iCv +cPq +cPq +cPq +lbM +cPq +cPq +jHr +jHr +jHr +iQk +tgm +pbx +tLn +nKo +bfV +bfV +bfV +pbx +liE +liE +liE +pbx +nyi +nyi +nyi +kSE +tBa +mju +nyi +xYl +bAJ +uFh +vov +wAx +mMb +eAM +jJr +qbB +vov +nSx +uFh +fOz +tRX +jQg +laZ +dBR +uFh +uFh +sLM +uFh +uFh +uFh +uFh +uFh +uFh +lnS +lnS +lnS +lnS +lnS +mlf +mlf +mlf +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(84,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +kdS +uFm +nnN +nnN +nnN +qwF +cFP +cFP +mPe +djU +ipR +qzN +gxW +gxW +gxW +sun +sun +sun +sun +sun +sun +sun +gxW +gxW +gxW +cXG +vzI +djU +bKR +wpj +wpj +mGK +djU +uxj +uxj +uxj +uxj +wpj +bKR +bKR +rvI +nzU +jBL +jBL +nzU +jBL +jBL +nzU +jBL +jBL +nzU +vzI +kIp +kIp +vyj +vyj +vyj +vyj +kDT +kIp +vEb +jts +vcm +mYq +afn +wPv +xEA +xaG +hax +gnt +fEd +iaP +fbY +gdi +aYv +fRf +aYv +hbF +eRf +qeK +lZI +moq +qFk +hly +hah +cPq +xaG +hax +cWt +cPq +bHd +qbz +maC +cPq +jHr +jHr +jHr +cPq +tgm +pbx +nYO +nKo +nKo +nKo +nKo +pbx +vYg +iSl +hyL +syB +iCA +rbc +vtU +anE +sjR +pWS +iCA +kup +nHD +nai +vov +ooc +eAM +eAM +eAM +iQF +vov +xSK +uFh +iWy +lWF +okx +wFT +ujL +uFh +xGV +kFc +kFc +kFc +kFc +hsb +kkL +uFh +czr +laZ +laZ +laZ +lnS +mlf +mlf +mlf +lnS +jyf +yaN +mlf +mEZ +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(85,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +kdS +aAp +wpk +wpk +wpk +qwF +eAm +xcn +xcn +ipo +saI +txG +gxW +sun +vgv +dGm +dGm +dGm +dGm +dGm +dGm +dGm +wjz +sun +gxW +gxW +nis +pai +skd +djU +rPG +dFw +wpj +ybQ +oiV +oiV +sWW +djU +wpj +bKR +bKR +nzU +bKR +bKR +nzU +bKR +bKR +nzU +bKR +bKR +nzU +vzI +kIp +iqN +uJD +ifx +ifx +ifx +fYC +kIp +aNr +aEP +kFy +pjg +iwF +wSl +xEA +olI +uGQ +wtm +fEd +eJj +tfJ +eJT +eJT +eJT +eJT +eJT +eTL +kKI +gSj +moq +cAA +hax +hzJ +cPq +hnE +hax +cAA +cPq +iaz +jFd +gbC +hMn +jHr +jHr +jHr +cPq +tgm +pbx +xlU +nKo +bMW +foL +ohB +syB +sBt +aZW +vcJ +fCQ +iCA +qxu +mnL +aRA +ngK +dmc +iCA +xYl +uFh +uFh +vov +gmT +rUC +rWe +xlH +mHK +vov +xSK +uFh +cZC +dzC +dQL +hvu +mGh +mGh +mGh +mGh +mGh +mGh +mGh +dFl +rcj +cZC +czr +laZ +laZ +laZ +lnS +gyO +unn +ltE +lnS +uFh +yaN +mlf +nzS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(86,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +gxW +qRr +qRr +qRr +kah +psD +xcn +qsb +ayc +xwk +xcn +sun +vgv +sOV +hUG +hUG +hUG +hUG +hUG +hUG +hUG +eYg +wjz +sun +lCA +bKR +bKR +vzI +wpj +wpj +bKR +wpj +oiV +oiV +oiV +oiV +djU +bKR +bKR +bKR +wpj +eYl +imx +wpj +kkl +eYl +djU +eYl +eYl +wpj +vzI +kIp +gpq +uJD +wRh +jOV +oNR +dta +kIp +xbT +xbT +xbT +xEA +bNu +xEA +xEA +vBW +prl +gqs +fEd +eJj +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +kKI +eQh +moq +wjU +hax +xaG +cPq +ojn +mlA +pbK +cPq +cnq +nzB +eLP +cPq +jHr +jHr +jHr +cPq +tgm +pbx +pvk +loX +vcJ +miD +dcP +syB +sYN +gxG +vcJ +bMA +iCA +uGX +mgs +cPp +fkX +hjl +iCA +uYJ +xYl +xYl +vov +vDp +lvT +rRl +wYK +iHS +vov +qGI +dgc +gLZ +tYQ +cZC +kkL +kkL +iWd +kIe +eUh +kIe +iWd +kIe +kIe +tcg +bQf +dRM +sIT +sIT +kkA +hnJ +mkW +ful +rkW +hnJ +hsb +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(87,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +ayn +tgI +xAq +xAq +xAq +qwF +ipo +ipo +eIQ +uPb +qhE +xcn +sun +xXk +sun +hUG +hUG +hUG +hUG +hUG +hUG +hUG +sun +tYO +sun +lCA +bKR +bKR +vzI +djU +cEX +bKR +cBE +egt +egt +egt +egt +fse +bKR +rSH +bKR +rNe +aEr +bKR +aEr +aEr +bKR +bKR +bKR +aEr +wxT +vzI +kIp +cME +uJD +ifx +ifx +ifx +kdU +nNt +gvq +ofi +jej +ieD +qIg +vaM +cPq +cPq +aOT +cPq +cPq +eJj +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +mWx +cPq +cPq +cPq +deI +cPq +cPq +cPq +how +cPq +cPq +cPq +apY +cPq +cPq +cPq +lah +cPq +cPq +tgm +pbx +lrl +lrl +uit +tyu +tZM +syB +klZ +deZ +nHH +gLq +iCA +bCh +bCh +dxi +bCh +bCh +iCA +xSK +xSK +xYl +vov +wbe +wbe +tqH +jgo +cPx +vov +nSg +qPW +fnL +rYi +bMI +wgm +eIB +tKZ +eQs +hlr +oqo +bgQ +bgQ +kIe +kIe +nGo +tUQ +bWc +bWc +bWc +hnJ +mkW +ful +rkW +hnJ +qPW +qPW +ylV +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(88,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +kdS +uFm +nnN +nnN +nnN +qwF +xcn +hrQ +qvn +cXv +txG +txG +vgv +sOV +sun +sun +sun +sun +dLX +sun +sun +sun +sun +eYg +wjz +gxW +gxW +bKR +vzI +djU +cEX +bKR +tPc +nci +qJw +nci +nci +pGq +bKR +rSH +qJp +ioP +tan +tan +pai +tan +pai +vQQ +tan +pai +kBI +mpC +kIp +kIp +vhZ +naL +naL +naL +taE +hDq +vlU +dFa +rXG +vIa +dEP +eQk +rmC +onn +tFH +onn +tSc +gbc +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +xRV +luv +bZh +luv +sIL +luv +iAD +luv +sIL +luv +szj +xGe +sIL +luv +sTu +luv +lOh +hXB +cPq +cAr +pbx +cLl +aWz +mLF +qtJ +xEt +syB +tyN +fYX +tyN +syB +kiL +xjV +hMo +aUT +lJn +nSU +kiL +kiL +drC +hDo +vov +wbe +wbe +eic +jgo +hCF +vov +iYr +laZ +fRW +kkL +kkL +vsO +kFc +iWd +hdO +meB +aVp +vTn +nvQ +uJF +ycp +nGo +wUw +laZ +laZ +laZ +rcD +umO +uFh +xqr +kkL +laZ +laZ +dBR +fnT +yfF +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(89,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +gDe +kdS +kdS +kdS +aAp +wpk +wpk +wpk +qwF +xcn +gzx +pat +pyX +txG +sun +xXk +hUG +hUG +hUG +hUG +hUG +dLX +hUG +hUG +hUG +hUG +hUG +tYO +sun +gxW +bKR +vzI +wpj +wpj +bKR +djU +oiV +oiV +oiV +oiV +wpj +bKR +mzm +ffB +lCA +lCA +lCA +wpj +sva +sva +wpj +sva +sva +djU +gNR +bKR +kIp +lbN +ifx +vTU +ifx +lSR +nNt +fva +nca +dCB +kJQ +jTD +qAb +eJT +eJT +eJT +eJT +eJT +swd +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +laG +eJT +eJT +eJT +eJT +eJT +bWU +fXa +fXa +fXa +pUI +eJT +eJT +eJT +eJT +eJT +cPU +ikL +cPq +tgm +boy +vcJ +vcJ +vcJ +qtJ +arg +tyN +uRJ +ghd +cmh +tyN +hSf +wnL +fSZ +mSv +fSZ +xZa +dux +kiL +eCL +xYl +vov +wbe +iVB +jul +lwJ +cPx +vov +gCP +tgx +wrh +cZC +laZ +gVR +kFc +csq +eiU +hCK +non +nvQ +nvQ +bMJ +kIe +nGo +czr +laZ +laZ +laZ +aBc +uFh +uFh +uFh +gQm +laZ +laZ +lRL +ylV +uFh +yaN +mlf +qUx +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(90,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +pGv +pGv +gxW +gxW +gxW +gxW +qRr +qRr +qRr +wEC +xcn +mzK +fHF +txG +txG +gEP +sOV +hUG +hUG +hUG +hUG +hUG +dLX +hUG +hUG +hUG +hUG +hUG +tYO +sun +gxW +kha +vzI +wpj +dfQ +bKR +wpj +ybQ +oiV +oiV +avO +wpj +djU +vzI +lCA +lCA +bzS +lGj +iap +haV +kBa +hNa +haV +kBa +wpj +fvn +djU +atl +atl +atl +atl +atl +atl +atl +jwP +nca +szT +kJQ +jTD +iGP +kJQ +kJQ +kJQ +kJQ +kJQ +dnZ +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +sBY +kJQ +kJQ +kJQ +kJQ +kJQ +jTD +hPS +ubm +ejE +wQk +kJQ +kJQ +kJQ +kJQ +kJQ +lVL +pKE +cPq +tgm +pbx +tjD +fcR +hqX +nQB +wuf +xKx +ftt +fAK +qKa +rVD +tVG +xTc +bcO +gxb +hmh +dmL +mHZ +oJR +dVB +qgp +vov +vov +vov +vov +vov +uPA +vov +rOz +aqJ +uxA +kkL +laZ +gVR +qaj +csq +fDH +aad +tff +nvQ +uJF +bgQ +iWd +nGo +dRM +sIT +sIT +sIT +leF +uFh +kkL +ifP +gQm +laZ +laZ +laZ +dBR +uFh +yaN +mlf +mlf +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(91,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +qRr +qRr +qRr +qRr +qRr +csF +cKc +qTX +cKc +kah +xcn +qQw +sBX +cdo +elI +ajS +xCl +xCl +xCl +xCl +xCl +xCl +gUV +xCl +xCl +xCl +xCl +xCl +tYO +sun +gxW +bKR +vzI +wpj +djU +bKR +wpj +xjx +kUf +kUf +kUf +qsm +pai +kbm +lCA +fcl +rjC +gDV +aEr +yjw +wHq +aEr +yjw +efW +kQd +wvp +veG +atl +kKV +enM +qHI +cJx +iEZ +atl +pzQ +nca +pHR +kJQ +jTD +cso +iYa +iYa +iYa +iYa +iYa +rwJ +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +boY +iYa +iYa +iYa +iYa +iYa +esF +fXa +fXa +fXa +vzp +iYa +iYa +iYa +iYa +iYa +uJE +hbM +cPq +tgm +pbx +pzC +pEm +dMJ +jQY +afO +tyN +tEy +nmd +vrM +tyN +fwb +eTe +fSZ +cAE +fSZ +gHN +xps +kiL +pCS +aLE +mGh +mGh +mGh +mGh +mGh +dQL +ruu +kEW +itE +soN +gQm +laZ +gVR +iWd +iWd +iWd +hVa +iWd +pwj +qYh +iFh +iWd +qpa +cZC +cZC +kkL +kkL +kkL +ppU +cZC +jPa +gQm +laZ +laZ +laZ +dBR +uFh +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(92,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +pGv +pGv +gxW +gxW +gxW +gxW +qRr +qRr +qRr +kah +xcn +pWl +xOu +gEP +txG +txG +qRu +hUG +hUG +hUG +hUG +hUG +dLX +hUG +hUG +hUG +hUG +hUG +tYO +sun +gxW +bKR +nis +pai +pai +pai +pai +ffB +wpj +wpj +wpj +bKR +wpj +rIN +lCA +fcl +gaF +vhe +jGP +bXr +oeJ +cCy +pHy +wZe +ubX +dcO +jOK +atl +wSy +oOy +jdr +oZq +ttN +atl +aDW +dxS +ttV +bfr +aOp +oDB +vrY +gBY +mkX +qHn +sch +gBC +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +ljm +iGj +hRH +iGj +hwI +iGj +iYb +iGj +hwI +iGj +jaw +iGj +hwI +iGj +fme +iGj +qZh +hIZ +cPq +tgm +pbx +hno +fLo +jfl +syB +syB +syB +tyN +rBH +tyN +syB +dDJ +qkk +rhv +faG +gWy +fNP +kiL +kiL +wtD +wtD +wtD +wtD +wtD +wtD +wtD +wtD +xYl +vGY +cZC +hpL +hIc +laZ +gVR +csq +oki +kmW +syw +iWd +nvQ +bMJ +uJF +kIe +nGo +kkL +aYI +eEV +eLV +kkL +uFh +hsb +oGM +gQm +laZ +laZ +laZ +dBR +uFh +kkL +brk +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(93,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +ayn +tgI +xAq +xAq +xAq +qwF +xcn +wQY +mmu +jqR +txG +sun +xXk +hUG +hUG +hUG +hUG +hUG +dLX +hUG +hUG +hUG +hUG +hUG +tYO +sun +gxW +dFw +bKR +aGA +wpj +bKR +bKR +djU +nyz +kgn +bKR +bKR +qoV +vTG +djU +paO +klv +pwY +sGt +jnt +ezO +aps +bWO +qtv +tAh +cSL +vDa +atl +eOg +bFh +tVM +atl +atl +atl +xjj +tcJ +tcJ +mRe +jwg +fUu +cPq +cPq +jNO +cPq +cPq +hnu +dss +kJQ +kJQ +kJQ +kJQ +kJQ +tNE +nWQ +cPq +cPq +cPq +lFi +cPq +cPq +cPq +cHz +cPq +cPq +cPq +jqA +cPq +cPq +cPq +kak +cPq +cPq +tgm +pbx +pbx +pbx +pbx +pbx +mGb +mfY +fPB +hFD +vcJ +per +syB +syB +pln +oom +pTX +kiL +kiL +rZW +wtD +hYH +biS +kbc +dyb +eMJ +iSs +wtD +xYl +kkL +kkL +sne +laZ +laZ +gVR +iWd +rfX +tGt +oHH +csq +uJF +bgQ +kIe +kIe +nGo +cZC +dEE +eXK +fli +kkL +uFh +bAJ +uFh +gQm +laZ +laZ +lKn +ujL +uFh +cZC +jyf +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(94,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +kdS +uFm +nnN +nnN +nnN +qwF +xcn +rUS +fmf +xfY +txG +txG +mhi +qRu +sun +sun +sun +sun +dLX +sun +sun +sun +sun +ono +xDF +gxW +gxW +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +ntu +qoV +laF +pEb +tan +mNv +gxW +gxW +gxW +mLI +mLI +mLI +gxW +gxW +gxW +gxW +atl +aeB +uJq +sLF +atl +lRW +cJx +fdM +rZo +cPq +cPq +umf +cPq +cPq +xaG +fvJ +twP +aMu +ykM +dss +kJQ +vey +pIW +igY +kJQ +tNE +nWQ +iel +moq +hmk +hax +xaG +cPq +ngX +qrI +fUE +cPq +tnS +fvJ +xaG +cPq +fNj +mWZ +dsg +tgm +tgm +txk +pbx +kgU +kgU +hTU +ltq +rQY +fPB +uqv +oey +vcJ +qOF +tyN +bbF +mId +uFs +kmG +kiL +rZW +wtD +cRa +ijG +nXq +hoH +kdY +uuk +wtD +xYl +cZC +uFh +sne +laZ +laZ +lvE +dlP +ibj +utq +jMe +iWd +iWd +vXv +ycp +djP +feC +kkL +aQp +kZV +gIU +cZC +aaP +uFh +xqr +kkL +laZ +laZ +dBR +nfd +nSM +cZC +bsb +uFh +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(95,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +kdS +aAp +wpk +wpk +wpk +qwF +ipo +dnx +lnk +afa +akM +xcn +sun +xXk +sun +hUG +hUG +hUG +hUG +hUG +hUG +hUG +sun +tYO +sun +lCA +kmZ +bKR +bKR +djU +wpj +kBi +lCA +wpj +kMl +kMl +kMl +kMl +kMl +kMl +kMl +kMl +kMl +kMl +afv +ifw +eKW +eKW +eKW +ifw +afv +jom +wzf +atl +cJx +wDf +cJx +atl +atl +bls +bls +bls +bls +uVW +sSr +dUc +cPq +hnE +oiC +wtm +aMu +ykM +gjA +iYa +aBA +nca +iyQ +iYa +gHc +nWQ +lZI +moq +cAA +hax +hzJ +cPq +trN +fvJ +eFc +cPq +vBW +hjn +hzJ +cPq +mWZ +mWZ +tgm +tgm +wlm +hur +pbx +bfV +uiD +jiS +hPP +gkb +qAd +ajO +kRI +mPH +juZ +tyN +bbF +mId +uFs +myn +kiL +rZW +wtD +vml +mqG +rgG +ccV +wtD +wtD +wtD +xYl +rcD +uFh +eWA +cZC +laZ +dBR +iWd +cxs +nOY +qVi +iWd +uFh +pvw +qwt +eXK +feC +kkL +kkL +oMm +kkL +kkL +dMB +kkL +uFh +waX +wFT +wFT +ujL +uFh +uFh +kkL +uFh +uFh +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(96,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +qRr +qRr +qRr +aPK +cFP +xcn +aDG +afa +afa +xcn +sun +mhi +qRu +hUG +hUG +hUG +hUG +hUG +hUG +hUG +ono +xDF +sun +lCA +kmZ +bKR +bKR +lCA +nCM +jgV +pGt +oaX +kMl +flA +oCb +rVA +gkZ +glH +rIq +uQa +sXM +kMl +fqA +fqA +fqA +fqA +fqA +fqA +fqA +atl +rHe +atl +orZ +uPy +cJx +lDl +dev +bls +tGG +uJW +bls +wfG +sSr +sSr +cPq +rCj +hjn +gDW +aMu +usE +vQR +rWc +hjM +dCI +eIK +rWc +ieV +wcf +ybw +moq +gHY +lbf +hah +cPq +ngX +oiC +nrZ +cPq +wsm +oiC +kEz +cPq +mWZ +uET +tgm +iLU +wlm +xxQ +pbx +bfV +xMg +uDM +wqN +vcJ +fPB +jzG +oey +jOI +kdr +xAZ +cwF +ibm +jkD +vbs +kiL +rZW +wtD +eMJ +ggX +eMJ +eMJ +wtD +fbG +hsb +kup +xYl +uFh +uFh +kkL +laZ +olg +iWd +qfe +csq +neM +iWd +koi +koi +koi +kkL +eJh +uNd +jOC +aQn +rGr +ruG +xzb +kkL +tUQ +cZC +mQQ +mQQ +mQQ +kkL +oZR +kkL +uFh +kkL +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(97,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +ayn +tgI +xAq +xAq +xAq +qwF +cFP +xcn +xcn +ipo +fXe +txG +gxW +sun +mhi +cgx +cgx +cgx +cgx +cgx +cgx +cgx +xDF +sun +gxW +gxW +cEX +bKR +bKR +iNu +aEr +bKR +aEr +qVz +kMl +cAs +aDd +lXp +gkZ +ayV +psf +pMK +mOF +kMl +fqA +bSk +xPB +tHQ +xPB +ddW +fqA +ogX +uWV +dnb +jDY +dLv +kQs +jUb +wLw +bls +bls +qcN +bls +bls +dUc +woe +cPq +cPq +gJK +cPq +cPq +umf +cPq +cPq +syE +cno +edu +cPq +uSz +uSz +cPq +cPq +cPq +fba +cPq +cPq +cPq +jns +cPq +cPq +cPq +mWY +cPq +cPq +mWZ +wlm +tgm +kEM +arv +tgm +pbx +gVA +wRr +mQw +lQO +knT +fPB +qjw +vcJ +ita +syB +syB +rXN +lnJ +nKz +kiL +kiL +kiL +wtD +jPj +gAe +ipD +dMk +wtD +wtD +wtD +wtD +xYl +kkL +kkL +kkL +kkL +nQv +kkL +jJa +bGL +qXK +kkL +rgE +cWj +sFH +kkL +hNH +iXj +xZv +bNb +rWs +wxl +uxc +kkL +czr +laZ +laZ +cKx +qPW +qPW +eVN +qPW +qPW +cZC +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(98,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +kdS +uFm +nnN +nnN +nnN +qwF +cFP +eAm +bIu +wpj +lvS +mfK +gxW +gxW +gxW +sun +sun +sun +sun +sun +sun +sun +gxW +gxW +gxW +bKR +bKR +bKR +bKR +lCA +gnz +aEr +kDU +itU +kMl +aDH +dLB +otO +gkZ +bKE +aiy +bKE +bKE +kMl +fqA +drg +uny +uny +uny +cbY +fqA +vSQ +dKY +kgk +wsz +vxM +spM +efC +jsI +bls +fnt +yji +fCM +bls +fGk +fCN +cPq +dQN +xaQ +gdq +cPq +sSr +cPq +erv +idl +ojN +nca +liN +nvU +nvU +dsu +cPq +lxb +aJS +pRA +cPq +kxi +nCq +xdL +cPq +seD +rji +smI +cPq +mWZ +sbA +sbA +sbA +sbA +sbA +sbA +sbA +pbx +pbx +syB +syB +tyN +gDP +tyN +syB +syB +wPc +wtg +xfF +fXE +cWX +gpI +xiU +lYS +cIB +xTr +iZX +noV +pBd +nZZ +nJA +wtD +xYl +uFh +uFh +uFh +uFh +kFc +lvF +lTP +wdu +yiR +jSL +xZv +thg +cmD +kkL +kkL +kls +kls +kkL +kkL +fym +qym +kkL +dRM +wFT +wFT +kAG +laZ +laZ +aLe +laZ +laZ +kkL +uFh +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(99,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +vze +gDe +gDe +kdS +kdS +kdS +aAp +wpk +wpk +wpk +uxf +cFP +cFP +eYk +djU +bKR +bKR +bKR +bKR +gxW +gxW +lCA +lCA +lCA +lCA +lCA +gxW +gxW +bKR +wpj +djU +wpj +bKR +wpj +wpj +eyH +aEr +aEr +usK +kMl +qAy +oxN +rns +fPJ +rUK +ofQ +fjP +eUP +kMl +fqA +dEi +uny +gqp +uny +vly +fqA +grr +mfc +puT +vFQ +jAs +cJx +oWN +jxw +bls +dqW +pHP +gUs +bls +asx +fCN +cPq +nOq +mnz +ibT +cPq +hGX +cPq +dDT +aId +wCx +pwt +pdC +pwt +wHL +gtM +cPq +nOq +kOo +paq +cPq +nOq +nFO +gGJ +cPq +nOq +vPz +hiL +cPq +mWZ +sbA +cRc +xeB +cFl +vNn +gjT +sbA +spe +qqu +qqu +qqu +qqu +fti +kAu +rlk +erW +jHW +mPv +iKR +fSZ +vRv +bxD +qsx +lYS +pyx +byw +lOk +xqN +rzT +bjq +hDx +wtD +xYl +piU +piU +kkL +uFh +cZC +kkL +aNR +dDy +wMk +kkL +bWs +jLT +eXK +kkN +wNA +twE +hmH +nvs +koi +fym +uxc +cZC +uFh +iWy +kkL +mso +kkL +kkL +oXt +cZC +kkL +kkL +xqr +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(100,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +gxW +gxW +gxW +gxW +cKM +cKM +cKM +wpj +viU +wpj +wpj +djU +aGA +wpj +bKR +raF +xGp +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +iuj +bKR +bKR +bKR +djU +ogF +jmz +aEr +vmP +uLU +kMl +uvT +fCv +dLW +dLW +okU +uAa +bLO +prY +kMl +fqA +lWe +uny +uny +uny +iDw +fqA +atl +cJx +qdD +lsv +qdD +cJx +atl +atl +bls +oUp +hYE +hYE +bls +bls +aZK +cPq +rNG +hWK +hwX +cPq +sSr +cPq +gXU +tvU +eKg +idl +vCb +fZP +sqW +kOA +cPq +rNG +vJJ +imG +cPq +rNG +vzj +bDY +cPq +rNG +fJf +nJa +cPq +sNm +sbA +tnT +fRz +dvd +hJC +rdm +uJd +tVG +dAU +bQd +pHg +pHg +brm +ljD +dAU +qRz +xDI +uAi +hKy +oek +vRv +siX +mhV +lYS +ijV +wwb +lOk +ipZ +dOo +xXQ +tDM +wtD +kpE +xYl +xYl +xYl +xYl +jyf +kkL +kkL +rUU +kkL +kkL +kBD +pwK +bvY +cbg +lep +qNK +khh +oaL +bHr +rZK +hVG +jIK +bMI +bMI +bMI +bMI +bMI +bMI +mYb +uFh +uFh +ebF +uFh +lnS +lnS +lnS +lnS +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(101,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +wvB +bKR +ojA +oAI +bKR +bKR +bKR +bKR +bKR +bKR +gjD +bKR +gjD +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +qzN +iOd +bKR +bKR +bKR +wpj +djU +bKR +djU +aGA +bKR +bKR +djU +skN +iHM +qFf +wpj +wpj +kMl +nnh +csm +hcc +duK +vGX +ell +gsf +bAY +kMl +fqA +pmW +xwn +cGb +lOL +cqy +fqA +atl +kuT +daT +bgD +fCx +jit +atl +oMG +bQz +toE +ama +ydg +yhT +bls +avZ +cPq +cPq +cPq +cPq +cPq +sSr +cPq +cPq +cPq +cPq +cPq +cPq +wum +gIm +ndH +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +cPq +mWZ +sbA +bnE +nrD +aBG +fqE +pEQ +sbA +dMz +vTx +kMY +eGV +wnw +wnw +ndh +wnw +ogt +soX +epu +xIH +fSZ +vRv +haR +aqe +wtD +xwe +gnS +nql +nDW +wtD +wtD +wtD +wtD +uoq +uoq +uoq +uoq +xYl +yku +kkL +rEV +rEe +qvc +kkL +aWY +fqJ +xKr +ogN +jNI +hmH +tXJ +wRi +koi +agb +uxc +kkL +uFh +uFh +uFh +uFh +xqr +uFh +dZl +xYl +xYl +xYl +uFh +nHD +uFh +uFh +lnS +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(102,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +euB +bKR +aGA +jJf +bKR +bKR +bKR +djU +iyc +wpj +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +tFF +wpj +azC +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +bKR +gxW +lCA +lCA +lCA +gxW +bKR +kMl +vhL +qTO +vhL +kMl +pVe +ymg +uQd +krR +kMl +fqA +fqA +fqA +qFe +fqA +fqA +fqA +atl +gHu +jlo +cYw +xTO +hjc +atl +mMs +kUS +oBh +meI +gKj +dLO +bls +fCN +sSr +sSr +sSr +sSr +sSr +sSr +sSr +sSr +sSr +aZM +sSr +umf +wum +poT +nDn +kak +mWZ +mWZ +mWZ +mWZ +cbz +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +mWZ +sbA +sbA +sbA +sbA +sbA +sbA +sbA +phB +pWq +phB +xlv +jOi +cPz +bRF +cPz +jOi +qkk +qhk +aAV +kRu +gzC +lYS +lYS +wtD +lYS +cZI +lYS +eMJ +wtD +ijH +oxr +jgK +rxG +fvB +rxG +uoq +xYl +qiu +kkL +eaX +vuA +vkt +kkL +pUN +olt +oTf +dwH +aig +iIj +tXJ +dzR +kkL +elA +uxc +kkL +cZC +cZC +kkL +kkL +kkL +kkL +pbS +xSK +iWy +xYl +uFh +uFh +uFh +xSK +koi +cgx +cgx +cgx +cgx +cgx +qRu +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(103,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +bKR +wpj +wpj +dyX +bKR +djU +djU +wpj +wpj +wpj +wpj +bKR +wpj +djU +nGi +wpj +wpj +bKR +wpj +wpj +djU +djU +wpj +wpj +wpj +bKR +raF +gxW +gxW +gxW +gxW +sun +sun +sun +gxW +kMl +kMl +heR +git +oeT +kMl +kMl +ygm +hiO +hmR +kMl +afv +dDk +qNp +urd +qNp +dDk +afv +atl +syt +qIH +dCg +fWl +wsh +atl +sUK +qXY +xup +rdr +lFZ +lrn +bls +jeA +suG +suG +suG +suG +suG +suG +suG +suG +suG +suG +sSr +cPq +wjQ +hVc +nDn +cPq +cPq +cPq +cPq +tSn +tSn +tSn +kak +tSn +tSn +tSn +tSn +tgm +mWZ +mWZ +mWZ +mWZ +mWZ +uWc +fgG +tuu +gnD +oYw +qWW +tuj +jOi +iQQ +dwI +qae +jOi +jOi +bCE +vlE +vRv +lYS +lYS +sIG +okT +dUo +mbQ +eum +wlD +wtD +qSv +paE +brY +ygC +lJX +ygC +eVv +xYl +xYl +kkL +kkL +kkL +kkL +kkL +kkL +kkL +kkL +kkL +nuU +iIj +uFc +ucb +kkL +elA +uxc +koi +fQO +dYe +uFh +hGW +ajX +cZC +pbS +jyf +cZC +uYJ +kkL +cZC +bAJ +xSK +koi +sun +sun +sun +sun +afv +mhi +cgx +cgx +cgx +cgx +cgx +cgx +cgx +cgx +qRu +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(104,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +dfQ +bKR +bKR +bKR +bKR +bKR +djU +wmM +lvS +lvS +kvk +djU +bKR +wpj +fyI +nHP +iUS +wpj +bKR +wpj +wbA +oeH +xfq +sDM +djU +sWr +bKR +uZK +lCA +sun +sun +sun +sun +sun +sun +sun +kMl +gza +osm +wrK +cTD +lyw +kMl +nUF +pTw +nUF +kMl +jnS +jnS +fqA +ngD +fqA +jnS +jnS +atl +cJx +jvC +cJx +ghT +cJx +atl +bls +uBL +bls +bls +ulk +bls +bls +jAt +puz +itx +mbL +aEN +knW +dzF +cbU +vIO +vzw +suG +sSr +cPq +ixF +ili +xjz +dCB +nvU +nvU +mln +coF +rBp +xrF +aHK +srH +lkC +xhp +tSn +tSn +tSn +tSn +tSn +tSn +mWZ +fgG +fgG +vtX +fyY +gUQ +niV +gUQ +cPz +qJd +mtK +rNl +eoC +yeQ +bbF +mId +vRv +lYS +tns +nBr +qKk +qoX +vEh +iRy +jhw +wtD +tiC +nfb +kGd +aqs +aqs +aqs +uoq +kRT +xYl +xYl +xYl +xYl +xYl +xYl +xYl +xYl +uFh +kkL +gxT +mNp +tXJ +aSE +kkL +hFT +uxc +koi +ebT +omi +plw +dgQ +wxw +kkL +pbS +kkL +cZC +xYl +uFh +uFh +lnS +lnS +lnS +sun +sun +sun +sun +sun +sun +sun +sun +sun +vFr +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(105,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +bKR +eZR +bKR +pel +cEX +djU +oAI +bKR +bKR +eSB +djU +bKR +wpj +wpj +djU +djU +wpj +jhv +djU +tJw +weO +beL +iaJ +djU +qFS +bKR +qCW +lCA +sun +sun +sun +sun +sun +sun +sun +omu +pxU +bDf +kKf +xTU +oyI +qTh +oqQ +pMf +tXF +baO +tXF +tXF +eWZ +mNF +tXF +tXF +mHo +atl +obY +fZL +gCX +fWl +riN +atl +lpN +caL +hYE +gtm +mhB +ssE +bls +nbv +dPz +dPz +dPz +bDU +cdr +cdr +cdr +cID +xjG +suG +sSr +cPq +nkN +veT +kXc +weL +sVk +nli +pKe +coF +vnE +lnU +aHK +hHh +aHK +vPA +xpR +fvc +tSn +ydF +foJ +tSn +mWZ +fgG +ahM +tZv +sCE +iBd +lmA +gUQ +qDU +bCe +qoN +amU +ylj +yeQ +bbF +mId +vRv +lYS +wJo +nBr +aAX +mVx +kSn +iRy +dqj +wtD +wDZ +iSz +hEh +auy +whE +qmP +uoq +uoq +uoq +uFh +wpW +wpW +wpW +wpW +wpW +aYs +bIm +kkL +lqj +mNp +sjW +eie +kkL +agb +bkl +kkL +huV +huV +ehm +huV +huV +kkL +sjc +dtR +qDV +lNN +lNN +mkv +itQ +qnE +mCM +oDk +dDk +noP +diq +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(106,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +djU +wpj +iuj +djU +wpj +wpj +oAI +bKR +bKR +eSB +wpj +bKR +bKR +bKR +qTY +bKR +bKR +bKR +djU +pNg +weO +bKR +kuU +djU +iDK +bKR +gPT +lCA +sun +sun +sun +sun +sun +sun +sun +omu +hAk +kKf +sGN +kKf +tZi +rNp +vyq +xth +uaS +iKw +gEA +gEA +gEA +vZD +gEA +wFN +jVI +cbp +guk +wWG +ksH +fWl +atU +atl +fnB +yji +kKY +huO +pbr +qRa +bls +wJt +wVv +lyK +tHl +ter +hbB +lVH +hbB +wZp +tHl +suG +hGX +cPq +vDw +bjf +idl +pHR +tdn +ojN +pKe +coF +dvE +lbw +lbw +nmB +lbw +nXr +ngH +ngH +ylo +fWU +ars +qTE +mWZ +fgG +bJV +qVg +xKb +hlC +xKb +gUQ +cPz +uqU +tqS +rQF +eVE +yeQ +bbF +mId +vRv +lYS +pXn +nBr +mwI +sOu +lSW +iRy +sHE +wtD +jKI +tEc +ldJ +lBc +phw +phw +hCr +dnF +uoq +uFh +wpW +cUE +xib +imA +wpW +xYl +uFh +kkL +kkL +kls +kls +kkL +kkL +scs +gMB +wOo +cmi +cmi +xbx +fqn +rBV +kkL +koi +bRj +koi +cZC +lnS +xrp +lnS +lnS +lnS +sun +sun +sun +dDk +sun +sun +xCl +xCl +xCl +xCl +xCl +xCl +sun +sun +xXk +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(107,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +djU +bKR +bKR +bKR +bKR +wpj +dTp +fum +fum +wja +wpj +bKR +djU +bKR +bKR +bKR +wpj +bKR +wpj +mew +mIJ +bKR +eWo +wpj +fgE +bKR +bKR +gxW +gxW +sun +sun +sun +sun +sun +sun +omu +pxU +xTU +kKf +bDf +pkf +pCj +cwE +lAt +iJp +byF +qhK +byF +byF +byF +wjY +hnh +dIs +mjo +bVa +nYK +mdV +wXf +byM +atl +cjx +mEe +eOb +qXY +nph +eVW +bls +oRf +dPz +nNp +uHE +sxa +uqr +fGR +uqr +ral +nIG +suG +sSr +cPq +cPq +cPq +cPq +cPq +lxn +siu +bxm +dJx +unQ +unQ +kSQ +uMZ +lGg +lCh +tPD +xHz +btH +qNZ +paz +tSn +mWZ +fgG +vCI +hKz +tar +qWG +jVr +jKo +jOi +kix +tqS +spZ +jOi +jOi +ipy +mXa +blf +lYS +lYS +egQ +ljs +fCb +nrt +dgt +vPF +wtD +hlk +iSz +teN +fvZ +cjI +seh +uoq +odl +uoq +uFh +wpW +fEc +iSJ +ehi +wpW +ocK +xYl +wsH +mvA +rWs +tOi +fUj +fUj +pOJ +uxc +kkL +iyY +iyY +eNQ +iyY +iyY +cZC +lHG +kxF +iJy +ogN +koi +bQK +xNO +lnS +sun +sun +sun +sun +dDk +sun +sun +xCl +xCl +tQh +rMx +sEd +xCl +sun +sun +mhi +cgx +qRu +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(108,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +wpj +dKx +bsO +qQX +djU +wpj +wpj +wpj +djU +wpj +wpj +bKR +wJM +dKx +bsO +qQX +wJM +bKR +wpj +djU +wpj +sXA +wpj +djU +wpj +bKR +bKR +bKR +gxW +sun +sun +sun +sun +sun +sun +kMl +pzb +wKC +baa +dNb +dZe +kMl +jCE +wXs +ydu +rsG +vDm +riV +moa +pLI +btQ +ltM +jVI +cbp +pBx +gGD +ntp +fWl +mNc +atl +cYl +yji +scM +huO +pbr +tXx +bls +tbs +trY +noE +xQe +iCc +rIi +ueP +rIi +ral +tRx +suG +sSr +sSr +sSr +sSr +sSr +cPq +mqe +ojN +pKe +coF +dvE +lbw +luQ +tbI +lbw +avG +ngH +ngH +ylo +wAt +tMQ +tSn +mWZ +fgG +fgG +kww +gUQ +qWG +gUQ +jMM +jOi +kFf +jmZ +jOi +jOi +cDf +wtg +brm +rZD +hCs +lYS +brZ +wtD +lYS +aES +lYS +wtD +wtD +uoq +bkq +pIV +bkq +uoq +uoq +uoq +uoq +uoq +eVv +wpW +wpW +vBh +wpW +wpW +wpW +wpW +wpW +cRP +hsb +cZC +djP +dyh +djP +nIg +koi +tip +tip +raK +oNv +oNv +kkL +iQa +hJh +sNs +ogN +lnS +rmA +lnS +lnS +sun +sun +sun +sun +dDk +sun +sun +drJ +xCl +xCl +xCl +xCl +xCl +sun +sun +sun +afv +mhi +cgx +cgx +cgx +cgx +cgx +cgx +cgx +cgx +cgx +cgx +qRu +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(109,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +bKR +wJM +tBl +jYU +nlw +wJM +qzN +bKR +bKR +bKR +bKR +bKR +bKR +wJM +tBl +jYU +nlw +wJM +bKR +uGw +rFT +rFT +rFT +rFT +rFT +jdB +bKR +djU +bKR +gxW +gxW +sun +sun +sun +sun +kMl +kMl +rfl +sAP +uIC +nio +eAK +kMl +kMl +rLN +fAp +fAp +fAp +fAp +rLN +rLN +qVx +ltM +jVI +atl +aQr +hUc +nyk +kFb +sxm +atl +ftx +nkk +hYE +sVV +tSW +doT +bls +oHc +kZk +aEY +kZg +cnS +ujP +fdC +fOo +rXT +lhX +fyo +fyo +fyo +fyo +fyo +sSr +cPq +idl +ojN +pKe +coF +srI +lnU +luQ +ptV +lbw +brM +nZJ +fGx +tSn +uqB +ihn +tSn +mWZ +voW +fgG +qWa +pXH +hjA +nlX +nAp +vGw +pab +gLc +kbN +hSf +cMK +mPv +pEl +fSZ +hyH +qYY +bgB +jVR +qqu +fti +xpS +ieq +rkO +kWo +xpS +uGf +qqu +hYC +rlk +mBH +mma +cTq +rka +hMD +iqi +hBX +wpW +aUQ +cVT +uVb +wpW +dsR +fvR +rGr +rGr +seo +rGr +pbc +koi +vNF +eXK +eXK +fqn +obe +kkL +krE +cNR +qyh +ogN +koi +rVw +eLi +lnS +lnS +sun +sun +sun +dDk +sun +sun +sun +sun +sun +sun +sun +sun +qRu +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +afv +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(110,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +gxW +izn +lEB +sRF +gxW +aGA +bKR +bKR +bKR +bKR +bKR +fgE +gxW +izn +lEB +sRF +gxW +bKR +yaM +oiV +oiV +oiV +oiV +oiV +tpd +aGA +wpj +bKR +bKR +gxW +sun +sun +sun +sun +omu +tvc +cZA +sWc +uAH +mSU +gQp +doH +omu +sun +sun +sun +sun +sun +sun +rLN +btQ +cVx +nqO +dOy +atl +hgL +boq +ocp +atl +atl +xXv +fSk +bls +vTd +gSn +vTd +bls +suG +mRY +lDS +suG +suG +uMU +joK +uMU +suG +suG +fyo +gzR +iyG +kOq +fyo +sSr +cPq +idl +ojN +pKe +coF +rEN +lwK +jBf +uXn +kiD +auv +tSn +tSn +tSn +gyK +tSn +tSn +mWZ +tgm +vim +jmx +vtc +wJi +rTW +wWB +sMZ +trs +ehq +iiD +lEp +uXu +iCN +gxb +iEf +nrg +ogw +pHg +hWV +pHg +brm +pHg +pHg +loY +pHg +pHg +dhs +dAU +trV +oJv +kIL +dQp +tmw +lkl +mJS +kwc +ssg +cOV +xKB +gYO +iLn +tLl +ple +tkq +tkq +tkq +tkq +ebF +tkq +tkq +tkq +tkq +scS +vpx +drF +kkL +cZO +ogN +tzN +koi +koi +hYv +nvX +kPk +qBB +bAA +gDe +sun +tym +tym +tym +tym +dDk +dDk +dDk +dDk +sun +kua +xCl +xCl +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(111,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +cFP +cFP +cFP +aer +gxW +qzN +bKR +spE +spE +spE +bKR +gUR +gxW +cFP +cFP +aer +gxW +bKR +rOc +lQC +lQC +lQC +lQC +lQC +dVY +bKR +bKR +bKR +bKR +gxW +sun +sun +sun +sun +omu +pxU +oHO +pcx +eMU +emw +opf +tUW +omu +sun +sun +sun +sun +sun +sun +fAp +btQ +ltM +bdC +jeE +rFN +rFN +rFN +rFN +ihS +eoN +rFN +oLC +diL +rFN +aLD +rFN +rFN +eoN +sPz +ixr +soi +lje +iwe +luj +rIT +aXw +ezd +fgV +kuS +sKg +wBB +fyo +aZM +cPq +ohJ +ojN +vQk +yem +yem +yem +yem +yem +yem +yem +yem +ghs +rsm +dqx +gST +kGg +mWZ +tgm +gaA +pct +gsC +hTM +wpn +nng +vGw +vdF +xIt +kbN +fwb +vVl +eXP +jYh +rft +mrm +bvR +rrF +dFK +gIK +jzf +sVe +fyZ +sJN +kRu +gIK +lTj +lwN +gKi +vTx +jgE +mma +rhS +jbz +gUH +ohf +vIN +wpW +uXF +avP +aLH +wpW +nIg +tkq +bOw +swk +tkq +tkq +tkq +bJr +bJr +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +lvP +eXK +iny +kPk +qBB +hwf +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +dDk +dDk +dDk +noP +dDk +dDk +dDk +dDk +sun +sun +sun +sun +sun +qRu +sun +sun +xXk +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(112,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +gxW +cFP +cFP +cFP +gxW +gxW +lCA +lCA +lCA +lCA +lCA +gxW +gxW +cFP +cFP +cFP +gxW +spE +spE +spE +gxW +gxW +gxW +gxW +gxW +gxW +gxW +bKR +gxW +gxW +sun +sun +sun +kMl +kMl +kMl +kVM +ygh +ygh +ygh +vjH +kMl +kMl +kMl +sun +sun +eVg +sun +sun +fAp +btQ +lJa +mTR +aIH +gEA +gEA +gEA +gEA +gEA +fGd +xUn +iKw +gEA +gEA +obU +koX +uaS +fGd +xsd +lWQ +xzW +scl +qXL +foK +qXL +fft +bYV +fyo +hBh +pir +rWA +fyo +sSr +umf +wum +ojN +pKe +yem +hZs +eUF +yem +vVT +yem +njD +yem +gDb +mvr +lYb +qZy +tSn +iOb +tgm +xjk +hZk +lrg +hWk +lrg +qgZ +jOi +lsb +nbF +jOi +jOi +bUY +aud +gDG +gDG +gNp +kiL +qvx +kiL +kiL +kiL +kiL +bbF +sJN +kDr +kiL +erq +rhk +xYJ +nBv +lou +mma +rJs +vQK +lIq +udb +bGM +wpW +urY +agt +aCI +wpW +jWl +tkq +odC +gUe +kXb +hEB +uZF +nmK +nmK +esd +kye +tkq +dPw +dPw +jrx +dPw +dPw +tkq +nIg +eXK +eXK +kPk +qBB +mdn +kua +sun +xQS +xQS +xQS +xQS +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +sun +sun +sun +sun +drJ +sun +sun +sun +mhi +qRu +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(113,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +cKc +cKc +cKc +gxW +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gxW +cKc +cKc +cKc +gxW +lCA +lCA +lCA +gxW +sun +sun +sun +sry +sun +gxW +gxW +gxW +sun +sun +sun +sun +omu +rSZ +ehn +xQG +eLC +jwT +mHw +xyf +coV +xBY +omu +sun +bPT +bPT +bPT +sun +fAp +lrr +eOq +wMD +uWQ +bEM +rFN +rFN +rFN +rFN +bLh +rFN +rFN +rFN +rFN +rFN +giV +vae +aNj +jzx +ixr +dEN +lGL +mQr +hkM +ixr +aYf +cKr +mrD +ebz +wfZ +way +fyo +sSr +cPq +idl +ojN +pKe +yem +agV +lIi +yem +cfp +yem +nni +yem +yem +yem +yem +yem +tSn +cvQ +tgm +xjk +kdN +tBK +clp +tBK +lLL +jOi +gOL +mGO +uxo +jOi +jOi +czB +ikQ +leU +kiL +kiL +ajo +ajo +ajo +ajo +kiL +ruB +sJN +rrU +saS +hRU +fSZ +geW +fSZ +hOH +wpW +scE +scE +scE +wpW +reu +wpW +wpW +wpW +wpW +wpW +jWl +tkq +bbp +kTz +sHK +gUe +wMF +kwf +sfr +pAM +ltV +fdN +uYz +kLv +kLv +kLv +uuG +jEr +lwQ +eXK +mtY +lnS +lnS +sun +sun +sun +sun +sun +sun +eVg +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +fNm +fNm +fNm +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(114,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +sun +sry +sun +sun +sun +sun +sun +sun +sun +sun +omu +jIR +bVG +crv +crv +vVw +fTx +dzG +hDr +wCK +omu +sun +uLk +bxB +sdT +sun +rLN +psI +wTW +sTZ +xXw +xXw +xXw +nty +nty +nty +xXw +hRj +dXE +xaO +eCW +wWR +dXE +hRX +qsk +sUX +iZM +mSB +cCM +drW +oTl +mUR +dan +mSB +fyo +buh +fyo +fyo +fyo +sSr +cPq +idl +ojN +fkh +yem +cVY +lIi +rZi +ucX +hHL +obl +yem +wrG +wrG +wrG +yem +mWZ +rRm +tgm +xjk +kXC +tBK +qsz +tBK +iRI +jOi +jjC +nJw +cer +vNO +jOi +kiL +gYo +kiL +kiL +tcD +tcD +tcD +tcD +ajo +oAg +bbF +sJN +jkJ +uEW +fSZ +aXR +iUy +dEo +nLT +wpW +sBP +sBP +sBP +hvi +sBP +wpW +uFh +uFh +uFh +uFh +jWl +tkq +gQW +aec +kiB +xWa +ltz +gUe +wTV +dHb +jSV +vbd +bFW +unm +gCY +unm +bNz +tkq +fQJ +lnS +lnS +lnS +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +drJ +dDk +sun +sun +sun +sun +sun +sun +qRu +sun +sun +xXk +vnC +oNP +oNP +oNP +ifw +oNP +oNP +cNm +oNP +ifw +oNP +oNP +fNm +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(115,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +sun +sun +sun +sry +dDk +dDk +dDk +dDk +dDk +dDk +dDk +sun +omu +iCS +rlK +rod +lkQ +suo +xyf +roe +eug +qeP +omu +sun +bPT +bPT +bPT +sun +rLN +dob +nbJ +iXf +xXw +iif +xPk +val +uTr +ers +xXw +xXw +xXw +wob +wob +wob +xXw +xXw +xXw +sUX +ixr +rCo +lGL +pLr +soi +gWo +gWo +mSB +sUV +sSr +sSr +sSr +sSr +sSr +cPq +idl +tOh +mrh +vGt +jbe +eyp +eJZ +ogV +wtq +hQN +uak +hBZ +vrW +wHv +yem +mWZ +xjk +xjk +xjk +mQi +bPg +wDM +ozW +tYY +jOi +rpi +prm +bcA +mzq +jOi +nCc +ajo +ajo +ajo +sve +ajo +sOO +tcD +ajo +kiL +bbF +mXa +wey +dKq +mdx +nCp +jyg +qSD +bWx +wpW +dXs +uRh +ooa +aCu +sBP +wpW +uFh +uFh +sLM +mpg +jWl +tkq +rKy +xTY +bsK +gUe +fpq +gUe +jGh +fpC +uZF +tHu +wJm +kLv +kLv +kLv +dPw +tkq +mlf +tHB +mlf +ehy +gDe +gDe +gDe +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +sun +sun +sun +drJ +sun +sun +sun +sun +sun +xXk +gsU +gsU +gsU +fYV +fYV +fYV +fYV +fYV +fYV +fYV +fYV +oNP +oNP +ifw +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(116,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +drJ +sun +gxW +bFy +kEn +wpj +sun +sun +sun +sun +dDk +sun +kMl +kMl +kMl +omu +fKH +kMl +pyO +omu +kMl +kMl +kMl +sun +sun +eVg +sun +sun +rLN +pSP +bGQ +fAD +xXw +mtR +xPk +wzB +lxc +fIx +xPk +nAP +iPO +gRY +qqr +dWk +xpD +sMD +xXw +unk +lml +lpB +lGL +pLr +ifV +gWo +woz +rPF +dUc +aZM +ofo +wik +dUc +xqc +cPq +vFu +ojN +pKe +yem +dyg +ozv +yem +pAy +yem +rHr +yem +hEw +hEw +hEw +yem +jxe +xjk +wGR +bdE +xtx +bJQ +vyu +qwQ +hOK +jOi +xik +rkh +fZV +dVt +jOi +ajo +rku +gNQ +dHC +tcD +ajo +ajo +oAk +ajo +kiL +bbF +mId +jkJ +kwG +fSZ +emx +puR +fAu +qOG +wpW +sBP +sBP +sBP +sBP +sBP +wpW +ltW +lnS +kkL +kkL +jWl +tkq +dYE +uvi +fdY +hlw +uZF +gUe +jGh +esd +gWE +tkq +aHI +dPw +dPw +dPw +dPw +tkq +mlf +tHB +mlf +xPa +gDe +gDe +gDe +gDe +gDe +sun +sun +sun +afv +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +sun +sun +sun +sun +sun +sun +etN +etN +phh +lCr +riC +phh +uef +isn +isn +isn +isn +oNP +ifw +oNP +fYV +soa +fYV +fYV +fYV +fYV +fYV +soa +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(117,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +gxW +rPu +cFP +tGk +sun +sun +sun +sun +dDk +sun +sun +cKv +pzP +pVH +joM +jUh +nYl +jSB +xec +roh +etN +etN +etN +etN +etN +etN +fAp +upv +clj +hPJ +xXw +dZK +xPk +fGv +fME +mjy +xPk +glL +uEf +rAd +pox +mlc +lmG +jia +qUZ +cOw +nsW +lbJ +lGL +pLr +jvh +gWo +gWo +mSB +sSr +sSr +qee +dUc +aXy +fDf +cPq +idl +ojN +nZE +yem +dyg +xbr +yem +eaj +yem +kEx +yem +yem +yem +yem +yem +mWZ +xjk +jAl +dQO +xjk +rab +gok +wDF +xjk +eDU +kbN +bYh +kbN +eDU +eDU +mvz +ble +ble +eGo +eGo +eGo +eGo +eGo +rku +kiL +wkf +mId +kHc +feB +xcG +ncE +sSp +aXp +iAd +wpW +oct +oct +oct +wpW +wpW +wpW +uFh +lnS +mGG +kkL +jWl +tkq +jyH +uvi +tkq +xIJ +xIJ +pnV +pLQ +xIJ +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +tkq +sun +sun +iLN +sun +sun +sun +xlj +xlj +xlj +xlj +xlj +sun +sun +sun +sun +sun +sun +sun +afv +dDk +sun +etN +etN +etN +etN +cJO +npF +pht +pht +pht +pht +quI +pht +pht +pht +pht +hzl +sRL +aZO +isn +isn +isn +isn +aZO +isn +isn +oNP +fYV +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(118,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +drJ +sun +sun +sun +sun +gxW +crL +crL +tGk +sun +sun +sun +sun +dDk +sun +sun +cKv +aRD +dQI +iNV +xUs +jLd +kWm +lTW +vDh +rUW +rRA +rUW +rUW +pSs +xfe +gUG +ued +xdh +kdF +fve +lWN +nyS +hoc +lJq +kZs +spT +uUb +bjV +kmu +dow +gEC +pox +ePF +xXw +lBY +iEU +mSB +pof +uKP +kOu +xeW +qdx +mSB +jXE +mSB +mSB +mSB +mSB +mSB +cPq +mdd +opG +uni +yem +isU +aSD +yem +yem +yem +yem +yem +rdG +rvY +czG +mSB +kak +mSB +kyO +uOh +fYY +nKP +nmS +tjS +sOL +tIO +vcr +lVK +uRR +kne +xOr +nff +hbr +ble +iAd +jTE +pao +jTE +iAd +kiL +kiL +lOA +pvn +bgz +iAd +iAd +cbs +cbs +cbs +iAd +oNP +oNP +oNP +oNP +oNP +lnS +lnS +whg +lnS +tkq +tkq +slt +tkq +tkq +miG +tkq +tcd +hBP +qlS +kdR +jDA +kiB +dPw +dPw +ehL +gRd +pQF +wss +xrh +dNu +dPw +dPw +tkq +xlj +uzv +qnD +uzv +xlj +xlj +xlj +whQ +dTR +jFN +xlj +sun +sun +sun +sun +sun +ird +hpf +viR +ltS +xMN +mnT +ajD +pht +pht +pht +byC +kUU +vSx +vSx +vSx +vSx +vSx +kUZ +jHK +gtw +ocJ +pht +pht +pht +pht +xOe +pht +pht +pht +hzl +sRL +isn +oNP +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(119,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +sun +sun +sun +sun +sun +sun +gxW +gxW +idd +wpj +sun +sun +sun +sun +dDk +sun +sun +cKv +srG +yei +vyb +eoX +vdB +eoX +gvA +wAg +wmh +cvL +ycz +wcJ +tsI +wcJ +lJF +gek +bSa +lrU +xXw +aqY +xPk +xPk +xPk +xPk +xPk +eZp +kTy +gnC +ldE +iRa +pox +vaD +wob +ixr +gds +xOm +byG +uKz +aCl +hkM +jgu +ykl +cPy +muz +xxW +uKZ +hTZ +uKZ +uKZ +ixr +tNM +aCl +aSw +gtt +gtt +gtt +gGf +jUt +dSi +jUt +jUt +jUt +tMi +dBr +ciY +sEc +fxL +aCl +aCl +aCl +lRf +gTO +lYe +vmd +pTy +eDa +pHK +pHK +rhw +kJi +fjb +ijD +jcC +nAv +gxf +oFA +nVu +cYn +ckj +fbk +mId +vRv +hFZ +cbs +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +fYV +fYV +fYV +ixV +vBG +gcN +fBm +pJE +oQA +iXS +qFC +qXX +fby +mbF +vEW +kiB +xYF +dPw +fPY +vdv +gUe +gUe +wxu +sjX +dPw +tNK +kiB +vyH +pTg +stp +mIV +klk +uzv +qxp +rBF +mtW +qDo +xlj +uzv +uzv +xlj +sun +sun +ird +adt +ajD +xmI +yek +iVr +rFH +kUU +vSx +vSx +vSx +sun +cXi +nfp +nfp +nfp +nfp +nfp +nfp +oNP +tSX +oTx +tSX +tSX +tSX +oTx +tSX +tSX +gtw +jKK +pht +hzl +rOv +oNP +fYV +ifw +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(120,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +arz +arz +sun +sun +sun +gxW +tGk +wpj +sun +sun +sun +sun +dDk +sun +sun +cKv +uZd +iAg +vyb +xqO +niE +nKW +gCT +roh +vSx +vSx +vSx +vSx +vSx +vSx +fAp +cLq +aLD +rQI +xXw +vMd +gRq +hDb +wYL +xPk +pUD +xQq +iNA +kcN +tsM +rLu +tLq +gRX +wob +fra +sYT +thv +iKm +aGh +lWQ +lWQ +xPG +pka +pka +pka +tal +lWQ +pXR +lWQ +qXL +dXZ +jEF +hvn +tzF +pka +pka +pka +qKi +lWQ +lWQ +lWQ +lWQ +lWQ +lWQ +dHa +qXL +scl +ety +lWQ +lWQ +lWQ +lWQ +sGq +nVY +uks +bzf +qUt +opR +opR +opR +xhV +iBH +cEM +iAd +mxh +bkm +cBW +iAd +oUP +wYc +tOG +lOU +vRv +bsB +cbs +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +oNP +oNP +oNP +ixV +jFg +uCP +nHj +pJE +oQA +qLY +gOC +bvu +uyH +oWd +eFe +kiB +hOr +hOr +fWo +pyy +gUe +gUe +jSG +vfW +hOr +hOr +kiB +vhi +qik +eim +gam +gEO +rdQ +lvy +dfh +aee +wbC +dAh +htI +csY +uzv +sun +sun +ird +asv +kWD +drY +qGf +nXX +gvy +ycd +cXi +cXi +cXi +cXi +cXi +nfp +nfp +nfp +nfp +nfp +nfp +chC +chC +chC +chC +chC +chC +chC +chC +chC +dTO +cpZ +gtw +qzk +xEZ +ifw +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(121,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +dDk +cKv +cKv +ltc +eHk +vyb +kWH +epr +lpC +vER +roh +sun +sun +sun +sun +sun +sun +fAp +ued +cLA +xKY +xXw +dHH +bqr +sVt +apr +xXw +xXw +vTJ +wob +xXw +wob +xXw +wob +xXw +xXw +nHX +pku +lIS +pku +pka +pka +pka +ead +pka +pka +pka +pne +pka +pka +pka +pgy +pka +pka +pka +wBe +pka +pka +pka +xvq +pka +pka +pka +pku +pku +pku +lbz +bLm +iPz +xlk +pku +pku +pku +pku +voE +hQW +jDa +dFH +qPg +qPg +qPg +xME +dgZ +eku +dSS +tQT +bDz +cjh +bDz +cHD +gUa +mCZ +fyZ +wOk +cvv +loZ +cbs +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ixV +emj +shM +wsB +pJE +aXP +sOP +vev +wUA +sqi +oTa +era +kiB +sMf +sMf +xFc +pzD +gUe +gUe +cQk +ieS +sMf +sMf +kiB +vpE +qrp +uxt +shp +rPC +uzv +fDT +fsb +bqn +fKi +hyq +fbn +bQt +uzv +sun +sun +ird +tdd +ggb +gps +kUU +vSx +vSx +sun +cXi +mcS +rsJ +fLu +cXi +aqv +mTg +xtw +wzM +glR +qtk +chC +chC +chC +chC +rpu +chC +chC +chC +chC +chC +oNP +mTv +qzk +rOv +oNP +fYV +ifw +ifw +ifw +ifw +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(122,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +gsU +gsU +gsU +gsU +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +cKv +cKv +vjP +fNO +kCT +cBX +kWn +xFJ +cNv +jMV +niq +niq +niq +niq +niq +sun +sun +rLN +dKR +cVt +kUC +xXw +vMz +lEG +nYB +maQ +xXw +iJj +tBH +tCu +pji +tCu +pji +tCu +oBk +rLN +hmG +ovf +gRD +ncr +tot +weA +hFk +mSB +kdh +kdh +kdh +ucQ +kdh +kdh +kdh +gOl +kdh +kdh +kdh +ucQ +kdh +kdh +kdh +mSB +tot +weA +hFk +ucQ +adI +mMZ +mSB +mSB +mpn +mSB +eKq +eKq +jdU +cMM +voE +atD +tIO +qVB +whw +gNN +jWx +xFY +sdw +fuV +vDj +vDj +eNs +eNs +eNs +vDj +vDj +vDj +fik +brm +epn +tkq +tkq +tkq +tkq +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +ifw +ifw +tkq +xnq +shM +kzw +kiB +uCc +kiB +pJE +eIt +inS +vJh +pLG +kiB +koY +dPw +fPY +eMA +gUe +gUe +lYN +sjX +dPw +mHP +kiB +lma +pbX +lFu +lUM +xlj +xlj +xlj +uzv +uzv +wio +pzm +xwt +jsa +uzv +sun +sun +cXi +cXi +mFp +cXi +cXi +sAO +sAO +sAO +cXi +lyB +pvE +jbS +cXi +cXi +kDV +kDV +kDV +chC +pko +chC +jta +dtl +xun +wRc +wOV +iZq +gCW +chC +chC +dTO +wgZ +qzk +rOv +fYV +soa +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(123,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +drJ +sun +sun +sun +arz +arz +sun +sun +cKv +hfQ +nrw +vPH +uJV +eoX +jtz +eIw +bES +niq +niq +xxL +hrq +hiv +niq +niq +mUN +mUN +szr +xlO +vWM +xXw +dXH +xXw +xXw +xXw +xXw +xXw +kRi +wTW +tCW +opF +sZa +wTW +uIh +rLN +lEN +pka +bkI +gWo +gWo +gWo +gWo +aNq +gWo +gWo +gWo +gWo +gWo +gWo +gWo +aNq +gWo +gWo +gWo +gWo +gWo +gWo +gWo +aNq +gWo +gWo +gWo +iWo +cfs +pal +mSB +bZN +wBy +lri +jqJ +dNo +eKq +pku +voE +atD +kfF +tIO +tIO +tIO +oJF +bHf +ikV +byl +vDj +wSF +uQB +uQB +xYA +oZQ +rIk +ycj +aGY +khu +dFt +tkq +nEG +fRy +ixV +tUo +tUo +tUo +tUo +tUo +tUo +tUo +tUo +tkq +ixV +ixV +tkq +tkq +dZU +drZ +vjh +kSe +ayO +pJE +pJE +qXX +eCT +gnN +pwT +nzh +nzh +wNc +kcJ +cGz +cGz +mhU +bGb +nzh +nzh +jvK +gPL +iSk +vMw +uzv +uzv +fUf +lJW +itu +uzv +xlj +lJJ +aph +tIr +xlj +xlj +xlj +oVb +fgu +obd +dTA +wyS +iyb +vcf +bMC +szL +bMC +spP +mhD +sHj +cXi +xMR +xMR +xMR +chC +tfT +bLl +cac +wZO +kQQ +fWe +kDj +kDj +tEQ +chC +chC +isn +reL +qzk +rOv +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(124,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +sun +sun +arz +arz +arz +arz +sun +cKv +rgA +rUq +nSE +dHv +bcY +atE +ibc +xWN +niq +rwB +mCf +fcS +gKK +bmW +niq +gid +mUN +rzn +nPh +gDj +jnS +umb +qVj +xpY +sUG +uQq +oOI +fuI +tXF +tXF +tXF +tXF +tXF +xAK +lQo +rUD +pka +wsG +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +wlZ +jvc +jXO +eKq +wHF +pmN +rfh +gNs +kRl +eKq +pku +voE +uKZ +rvv +soi +gWo +gWo +nHo +kSw +cMt +myH +sNO +hst +bhJ +dtx +fGC +mPG +iTS +ycj +aGY +oKf +loQ +rnZ +gIT +gIT +ixV +ubY +heQ +koE +hRz +vtm +pXf +cpN +tqA +tkq +nCG +dws +yfM +tkq +dhZ +gOT +aMY +kUO +vmW +cqD +pJE +ooW +eSC +jbl +dNj +nDM +gxi +age +cyW +cyW +cyW +cyW +cyW +eIf +nwn +tfr +lML +wRq +viI +uzv +fUf +nwy +skM +pif +itu +xlj +ioJ +vHe +lYE +kYH +jhO +xlj +dPV +lop +lQD +jCs +ize +ubc +qgF +gxt +cXi +mEs +yks +lLW +uxs +cXi +lpL +faR +faR +chC +gPI +tFA +xQk +chC +rUu +chC +chC +chC +fff +xLg +chC +chC +ajD +rFH +rOv +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(125,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +ngR +arz +arz +sun +drJ +sun +sun +sun +sun +sun +sun +sun +arz +arz +arz +arz +sun +cKv +vrA +qci +pQB +cvJ +wVH +nSE +shU +ipj +niq +xaJ +aYW +pHT +oxU +szh +rly +dUJ +rcp +btJ +udh +ggU +jnS +umb +rAm +mqI +btQ +rFN +tnX +ntl +fLb +idk +cmY +idk +lsi +ydB +mrO +kqi +pka +wsG +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +wlZ +tkp +vZh +eKq +hHc +nCP +rMB +tjU +tJC +drk +vbJ +oLj +ixr +rvv +ifV +gWo +gWo +aLo +bOx +iHg +nRM +aWF +acY +wkH +vLd +rpW +vZA +hdH +vSs +fUv +eIL +eDc +nvB +fHS +fHS +tlQ +mmX +mmX +eBy +qcY +iDA +tGp +toX +toX +ylU +fOs +jOA +vvY +ohr +iQg +erh +rQX +cYt +pPn +yiX +pJE +uFB +mNB +udE +qGv +nzH +giw +qgt +pll +jCZ +pll +pll +vbh +cAY +xkO +xCW +qEn +eGn +kAD +uzv +ukx +skM +puO +skM +juY +wKh +rCc +fiD +sQi +iWv +oRo +eYP +eUC +rkH +sMJ +cOO +ize +giy +sWl +lix +cXi +sXH +kvS +kDl +tRl +olv +qxT +wgf +dnP +lbW +phn +agP +wSM +rXh +sgB +kES +cPB +wHb +xbj +eZb +chC +chC +lDD +aZj +oYv +dUL +oYv +ifw +ifw +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(126,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +sun +sun +arz +arz +arz +arz +sun +cKv +rgA +rUq +nSE +dHv +ufV +ixb +uPz +nmf +niq +bHq +nwM +kAd +mCf +srq +niq +gqr +mUN +jdz +fRJ +gDj +jnS +umb +qSl +vQF +iTs +gKf +byF +cPD +rzq +byF +byF +byF +lXW +byF +jIA +nfC +pka +wsG +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +wlZ +iov +rXq +eKq +vkr +aaK +tJC +tjU +tAr +eKq +uJs +voE +fep +nZn +jvh +gWo +gWo +jfv +kSw +tNZ +myH +sNO +bjc +bhJ +rTY +idr +fsr +jcD +ycj +aGY +oKf +loQ +thf +gIT +gIT +ixV +tqA +iRS +oRt +dru +hwQ +ygp +iRS +nVz +tkq +ffT +iQi +sLe +tkq +dSd +gOT +fOO +vWO +vZZ +fud +pJE +nln +dKl +qzd +ldc +cJP +pJj +pJj +pJj +pJj +pJj +pJj +iFp +pJj +cJP +iea +gTl +cAd +mkV +uzv +dsB +tZB +fKb +qVn +xrQ +drn +qQE +gej +prS +ddb +buD +xlj +nTW +sdJ +kAF +ycM +ize +tDQ +aYY +sxF +cXi +pWM +fbd +wpa +vhj +cXi +voH +voH +ply +chC +bKg +tFA +oqB +chC +hwi +chC +chC +chC +xEG +xLg +chC +chC +nXX +rFH +rOv +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(127,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +drJ +sun +sun +sun +arz +arz +sun +sun +cKv +sFe +iyx +sQr +vbm +eoX +qak +ePs +iRm +niq +niq +ptW +yaH +upG +niq +niq +mUN +mUN +qmr +qsO +vJy +hSR +iNZ +hSR +sOJ +umg +umg +umg +hSR +hSR +umg +umg +umg +hSR +hSR +hSR +rJV +pka +ttb +gWo +gWo +gWo +gWo +kCo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +kCo +gWo +gWo +gWo +gWo +gWo +gWo +gWo +kCo +gWo +gWo +gWo +iHs +sVM +sVM +mSB +pYL +kqa +hXN +aVe +tAr +eKq +uJs +voE +rpD +fnH +tIO +tIO +tIO +oJF +ctx +ikV +sVG +vDj +chT +fiO +cJM +pQV +oix +sbK +ycj +aGY +kEQ +xig +tui +qYZ +auE +ixV +bKN +bKN +bKN +bKN +bKN +bKN +bKN +bKN +tkq +ixV +ixV +tkq +tkq +icX +oZk +kGw +okF +mFq +pJE +pJE +qXX +sDv +iFR +pwT +gWi +gWi +kIl +oGJ +jlg +nLU +mpq +lMj +gWi +gWi +jvK +gPL +hPz +qND +uzv +uzv +dsB +maS +fEA +uzv +xlj +rCn +qKw +nWO +xlj +xlj +xlj +uNb +kdW +pso +oYC +gFT +fIb +kTj +jAR +meb +eVl +spP +rbj +hEx +cXi +xMR +xMR +xMR +chC +gmJ +mLy +kYi +eWK +kQQ +trq +kQQ +kQQ +pAW +chC +chC +tSX +xGT +qzk +rOv +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(128,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +gsU +gsU +gsU +gsU +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +cKv +cKv +nDG +wpN +tdj +qYx +uAB +uaU +cNv +gEp +niq +niq +niq +niq +niq +sun +sun +rLN +pUg +haO +qPL +hSR +ewu +idI +quX +sFY +irF +gpy +kzi +nmo +oVm +tDW +rMN +eZl +niw +hSR +jeP +qRM +jhx +sti +kja +qnd +mxq +mSB +olu +olu +olu +ucQ +olu +olu +olu +mSB +olu +olu +olu +ucQ +olu +olu +olu +mSB +kja +qnd +mxq +ucQ +lBY +rpw +mSB +nsZ +mSB +mSB +eKq +eKq +bXh +dxO +voE +rpD +tIO +ljk +vcr +vcr +bCs +aAW +aOm +nLN +vDj +sNO +sNO +vDj +bzN +okw +tyE +vDj +iQS +loY +gBk +tkq +tkq +tkq +tkq +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +ifw +ifw +tkq +kiB +ecu +kiB +kiB +sjn +kiB +pJE +ekw +vja +nzH +cex +kiB +xYF +dPw +fPY +tyF +toX +gUe +uuK +sjX +dPw +tNK +kiB +bEn +wmP +edT +sgY +xlj +xlj +xlj +uzv +uzv +wil +fYK +emM +log +uzv +sun +sun +cXi +cXi +nNZ +cXi +cXi +sAO +sAO +sAO +cXi +bRl +eMj +pmg +cXi +cXi +aEw +aEw +aEw +chC +hLO +chC +jta +veu +doI +oef +ciG +hyh +gCW +chC +chC +dTO +wgZ +qzk +rOv +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(129,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +arz +arz +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +dDk +dDk +cKv +cKv +cBU +aGs +vyb +nNY +sYq +nBq +xov +roh +sun +sun +sun +sun +sun +sun +fAp +ued +cLA +bBm +hSR +boJ +jPN +tSN +utl +gaa +aGO +cWS +oRC +luN +oRC +pOU +mBv +swK +umg +jQo +uJs +tww +kkY +pka +pka +pka +ybb +pka +pka +pka +wuc +pka +pka +pka +oQm +pka +pka +pka +kkY +pka +pka +pka +iBF +pka +pka +pka +uJs +uJs +uJs +cHs +uJs +uJs +nAT +uJs +dDI +jUt +jUt +cOw +jXC +kBL +kvR +eUB +eUB +eUB +dOd +jRV +pwn +syA +nNi +uCA +sNO +jeZ +bhJ +sss +ycj +kTO +oiy +vRv +pDu +cbs +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +ixV +gUe +hZg +kiB +uaK +nzH +flH +qEw +fOs +qkv +lQv +qYU +kiB +hOr +hOr +jvP +oOJ +toX +gUe +pJM +dNQ +hOr +hOr +kiB +oCs +lDv +syG +edT +wol +snb +sQj +icA +mtW +mtW +eDJ +emM +ene +uzv +sun +sun +ird +umP +xge +wbp +uss +etN +etN +sun +cXi +cfC +fIN +nsr +cXi +aEw +ctt +gsm +rMm +ggD +mWM +chC +chC +chC +chC +thK +chC +chC +chC +chC +chC +oNP +mTv +qzk +rOv +oNP +fYV +ifw +ifw +ifw +ifw +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(130,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +arz +arz +sun +sun +sun +fky +sxD +uPc +sun +sun +sun +sun +dDk +sun +sun +cKv +gmj +iAg +vyb +aDL +aCx +pzS +bJt +roh +etN +etN +etN +etN +etN +etN +fAp +cLq +aLD +cQe +hSR +tkB +oBX +xNZ +qtd +gaa +tcE +ssD +gJe +kWL +kBJ +dKP +mrN +kJd +umg +iKI +dLK +vBs +ety +lWQ +qzY +lWQ +oDU +pka +pka +pka +tEZ +qXL +ctB +qXL +qXL +scl +qXL +qXL +xgP +pka +pka +pka +tpN +qXL +qXL +qXL +qXL +qXL +qXL +ccz +qXL +qXL +dyd +lWQ +ffL +lWQ +lWQ +xTt +teK +gFb +pxA +qUt +opR +opR +opR +xhV +bnx +saX +xSm +lDE +sNO +tYx +cXJ +kzA +ycj +bbF +mId +vRv +eeP +cbs +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +ifw +oNP +oNP +oNP +ixV +gUe +unx +kiB +msK +nzH +tqy +qFC +nwX +iQT +njT +oNw +kiB +sMf +sMf +cFa +gSI +toX +gUe +beI +nub +sMf +sMf +kiB +dBB +qik +eim +gam +eYj +mmY +fpa +mlJ +hre +gzE +dfT +rrY +kcM +uzv +sun +sun +ird +asv +nAb +kkR +cZl +vEv +hzl +ycd +cXi +cXi +cXi +cXi +cXi +nfp +nfp +nfp +nfp +nfp +nfp +chC +chC +chC +chC +chC +chC +chC +chC +chC +dTO +xix +reL +qzk +xEZ +ifw +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(131,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +sun +sun +sun +sun +sun +sun +fky +fky +bCG +uPc +sun +sun +sun +sun +dDk +sun +sun +cKv +dqY +eRx +vyb +eoX +wau +eoX +qSd +fHC +qBC +ivJ +kMh +sml +rZU +sml +lJF +dgs +bSa +cQe +hSR +kER +pus +rha +pkH +gaa +boD +jBe +abv +jkn +abv +oyk +tpb +gdC +umg +rrO +fep +hBF +aCl +aCl +gTO +aCl +mUD +cqr +hca +vnZ +mRq +fcf +uRf +fSr +sAX +afj +gld +fSr +jzK +phc +phc +phc +ryp +mcc +iCl +mDY +dTD +mDY +bca +phd +jfg +sRA +sst +bZj +hkM +ixr +ixr +muR +vRy +lOc +lJL +lkp +lkp +lkp +hDL +ikV +bnx +oUB +ibW +auW +sNO +nWF +luz +okM +ycj +bbF +mId +vRv +lJm +cbs +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +fYV +fYV +fYV +ixV +mZw +mlO +kiB +aLQ +nzH +iEr +gOC +qXX +sqi +dKl +vMP +kiB +koY +dPw +fPY +sNd +toX +gUe +ofc +sjX +dPw +mHP +kiB +uhM +iOF +iiz +mXD +wNm +aDO +vsM +aZX +aQA +hpp +xlj +uzv +uzv +xlj +sun +sun +ird +mOZ +mFo +wpI +arJ +prO +rFH +uss +etN +etN +etN +sun +cXi +nfp +nfp +nfp +nfp +nfp +nfp +oNP +isn +xix +isn +isn +isn +xix +isn +isn +reL +npF +caJ +gvy +rOv +oNP +fYV +ifw +nyH +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(132,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +drJ +sun +sun +sun +sun +fky +qlG +qlG +sxD +sun +sun +sun +sun +dDk +sun +sun +cKv +rKs +dQI +oZG +hki +rCJ +ueZ +uEU +qCI +kDu +roF +kDu +kDu +qZk +suX +iga +cYy +iAs +mgg +bgI +mAB +mAB +mAB +qXD +jBT +oVm +mBB +tDW +tDW +tDW +cJX +hGk +qLe +hSR +jjm +mSB +mSB +sPb +vOP +lJs +bjk +jlY +xhk +xhk +xhk +ryt +fqL +fqL +vuR +gzn +bwR +gzn +qVW +fqL +fqL +jza +aal +aal +aal +bfG +bBJ +fvh +bBJ +sad +bfG +nTG +aXU +fXJ +weJ +aXU +aXU +aXU +hif +fps +tIO +njf +usx +tGN +okm +rwt +dUO +dzP +rvT +nnS +fxz +vDj +vDj +vDj +vDj +vDj +lOA +pvn +bgz +iAd +dAv +vdL +vdL +vdL +dAv +oNP +oNP +oNP +oNP +oNP +dJi +bQa +bQa +bQa +dJi +kiB +kiB +kiB +kiB +vBo +pXl +lzg +sTM +jFK +gYa +eaA +kiB +dPw +dPw +ehL +sDf +nkg +iRS +oYU +dNu +dPw +dPw +tkq +xlj +uzv +uzv +uzv +xlj +xlj +xlj +pzV +wmF +xeo +xlj +sun +sun +sun +sun +sun +dRD +vSx +vSx +sWL +qdk +dbl +nXX +caJ +caJ +caJ +pCV +uss +etN +etN +etN +etN +etN +xjl +uef +reL +jmG +caJ +caJ +caJ +caJ +fVv +caJ +caJ +caJ +gvy +ghL +tSX +oNP +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(133,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +fky +lMT +ayU +sxD +sun +sun +fYV +fYV +dDk +sun +sun +cKv +nuJ +vsY +nSE +mDG +nYl +ozG +xsN +roh +vSx +vSx +vSx +vSx +vSx +vSx +fAp +qfG +vOl +aoL +hSR +xdT +jLP +nJG +pHL +hSR +eLJ +hSR +nJG +mYw +xVT +hSR +hSR +hSR +hSR +cml +mSB +lCs +uJs +idG +soi +gWo +gWo +vIn +pIT +hTT +meM +uvm +yeJ +uCp +uGV +wYn +kwk +wes +hhQ +nZd +aal +jYK +prL +dyO +cSW +auw +gsS +kgK +bfG +svX +nTG +nTG +nTG +pnF +hKt +hKt +hKt +hKt +nTG +nTG +nTG +nTG +wbI +rvT +rwX +hpg +rwX +rvT +tXv +uzP +veg +pAN +apB +eJD +gsy +jne +mId +fXE +ylS +tML +dkI +kIV +ueQ +dAv +dAv +uJZ +uJZ +uJZ +dAv +dJi +bTe +bTe +bTe +dJi +cma +jJw +ipn +ipn +auV +kiB +vHn +qok +bUF +sge +kiB +tkq +tkq +tkq +tkq +uZF +uZF +uZF +tkq +tkq +tkq +tkq +tkq +sun +sun +sun +sun +sun +sun +xlj +uzv +uzv +uzv +xlj +sun +sun +sun +sun +sun +szG +sun +afv +dDk +szG +vSx +vSx +vSx +vSx +wYE +jKK +caJ +caJ +caJ +caJ +azq +caJ +caJ +caJ +caJ +gvy +ghL +uqH +tSX +tSX +tSX +tSX +uqH +tSX +tSX +oNP +fYV +soa +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(134,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +drJ +sun +fky +sBS +kCO +uPc +sun +sun +fYV +fYV +dDk +sun +nlT +nlT +nlT +jyp +pxq +nlT +jWI +jyp +nlT +nlT +nlT +sun +sun +eVg +sun +sun +pDL +nkx +dYz +nkx +pDL +hSR +hSR +hSR +hSR +hSR +uDV +hSR +hSR +hSR +hSR +hSR +bii +aqz +uOd +oNo +mSB +mUT +uJs +idG +ifV +gWo +gWo +vIn +tNn +tNn +tNn +jkr +eOi +lAU +szv +jyb +szv +aXk +vDt +wes +aal +uCI +dDW +fuF +sLA +mbc +btq +nZN +bfG +bfG +nTG +kzk +pCv +cln +tCd +tCd +tCd +tCd +fpb +tCd +bFk +nTG +ylt +rvT +qzE +vza +jBP +wrD +fOC +xbK +bbt +kfJ +bbt +gSo +uIe +rSp +eQl +oJv +nGn +lgI +gjL +vqs +bAj +hlE +ekr +ibk +jyl +cQM +lZM +xbJ +anr +bTe +bTe +dJi +iAq +qhu +gnT +uwR +cTy +kiB +uMW +kuf +cvc +wMp +uMW +tkq +hLb +hxA +oYv +sun +sun +vOX +xrd +xCl +oLs +xCl +ksR +gDe +gDe +gDe +gDe +gDe +sun +sun +sun +afv +sun +sun +sun +sun +sun +sun +sun +afc +sun +sun +dDk +etY +sun +sun +sun +sun +sun +vSx +vSx +fBr +qHK +kbO +fBr +jHK +tSX +tSX +tSX +tSX +cNm +ifw +oNP +fYV +fYV +fYV +fYV +fYV +fYV +fYV +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(135,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +arz +arz +arz +arz +sun +sun +sun +sun +sry +dDk +sun +sun +sun +fYV +fYV +dDk +sun +jyp +hAP +oKa +qVX +qVX +egx +xrC +qVX +tPz +pLg +jyp +sun +bPT +bPT +bPT +sun +pDL +tox +jCo +iko +wsE +fwM +req +fwM +fwM +wlM +fMx +uAC +rlX +oDn +dSU +odx +rIu +cVB +xRP +wwN +mSB +wKw +uMq +idG +jvh +gWo +gWo +vIn +tJK +aQv +cfH +kJa +cuv +dKt +ccx +dqy +gLM +jPU +thq +wes +nje +pNx +fqV +ulu +cjA +drU +gKk +drU +orj +dzQ +aYV +tCd +xau +bLY +sIJ +sIJ +sIJ +mST +iCT +ucG +vPY +nTG +ylt +rvT +bmO +wHo +kqq +bTH +vma +uxm +msZ +vgJ +bxa +wHo +nnS +gAR +jmf +pTb +fjW +vHl +xwh +uHX +mgb +hJL +bzW +poA +yew +oxI +sgX +dJi +ctp +irL +fwF +dJi +ioh +uQO +opk +kRy +kRy +kiB +wBU +xbb +nGb +gHX +uMW +tkq +dVZ +xCl +cWV +sun +sun +sun +oYv +xCl +oLs +xCl +vrw +gDe +gDe +gDe +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +oWu +sun +mLC +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +gsU +gsU +fYV +fYV +fYV +fYV +fYV +fYV +fYV +fYV +oNP +oNP +ifw +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(136,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +sun +sry +dDk +dDk +dDk +dDk +dDk +dDk +dDk +sun +jyp +iVb +yiC +gXT +rvc +uyw +rGS +gXT +fhB +nhq +jyp +sun +uLk +bxB +sdT +sun +pDL +pDL +mYI +pDL +pDL +pDL +pDL +pDL +pDL +pDL +pDL +bqo +mon +pGJ +tGr +tbO +fgT +sSq +sSq +sSq +sSq +wNW +qjX +wNW +jqx +sSq +sSq +sSq +huS +soD +bzw +tqQ +snV +mFv +byg +daD +aCr +tYl +ssK +rqE +rPz +pIH +fDQ +asJ +fca +vGy +tRD +nSc +aDI +bUo +wMY +pKS +xxx +pKS +pKS +sIx +acg +bXx +cUX +wPW +ttk +nTG +fUq +rvT +cGi +wHo +loE +cQB +cQB +tHT +lPY +qmy +wvz +sIy +rvT +igN +igN +igN +igN +igN +igN +mtd +igN +igN +cxc +poA +cZb +enJ +fhc +kcZ +bUL +exb +wjy +gAZ +vDC +kQD +xQB +jkv +ozw +kiB +uMW +uMW +xPE +uMW +uMW +tkq +xwo +lbc +oYv +sun +eVg +sun +oYv +oYv +oYv +oYv +oYv +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +qjK +dDk +sun +sun +sun +sun +sun +drJ +sOV +sun +sun +xXk +gsU +oNP +oNP +cNm +ifw +oNP +oNP +oNP +oNP +ifw +oNP +oNP +fNm +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(137,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +vNH +vNH +kQM +fky +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +tXk +tXk +biW +fky +gsF +gsF +gsF +fky +sun +sun +sun +sry +sun +fky +fky +fky +sun +sun +dDk +dDk +jyp +eXY +muF +pkk +unI +naV +pLk +kEw +fQq +mBx +jyp +sun +bPT +bPT +bPT +sun +pDL +hUZ +spO +fAJ +lBB +rqA +eZz +apt +apt +lmF +pDL +oVp +sfu +bjE +rKE +bjE +uDe +sSq +sXw +xrA +eng +xcH +nkV +sSj +aGt +vkW +vir +sSq +vCd +bHP +bHP +rcP +wtV +mfR +qME +tTk +vUd +wES +gAN +bdS +aal +hnp +aDa +kSq +vtB +eym +ubq +eym +oFr +dzQ +gKn +sIJ +gcK +sIJ +lxf +bDb +woP +gXy +oTv +gei +ttk +iMl +fUq +rvT +rvT +wOE +pYO +icZ +aXe +sYQ +cxt +kmq +wHo +vej +rvT +mZQ +tYp +nFl +fBw +fBw +oLO +gXO +pQw +igN +rvK +poA +cZb +bhf +eby +dJi +mRr +irL +wNd +dJi +rlw +pFx +ecT +vxn +mpf +tkq +tkq +tkq +tkq +tkq +tkq +tkq +cRY +cRY +oYv +sun +sun +sun +kaz +sOF +sOF +sOF +oBY +sun +sun +sun +sun +sun +sun +sun +eVg +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +oZl +dDk +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +fNm +fNm +fNm +fNm +fNm +fNm +fNm +fNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(138,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +ayU +ayU +ayU +fky +fky +gsF +gsF +gsF +gsF +gsF +fky +fky +ayU +ayU +ayU +fky +kFr +isb +isb +fky +fky +fky +fky +fky +fky +fky +laa +fky +fky +sun +sun +dDk +nlT +nlT +qyp +gXT +rPd +uyw +awr +qVX +pZx +nlT +nlT +sun +sun +eVg +sun +sun +hvV +euV +fKD +nAU +uem +vwS +jxg +ldq +sRn +ufG +pDL +tbO +mon +grW +tbO +waj +tEX +fHX +nkV +iQJ +oYK +dFe +fLR +oRI +nkV +nkV +nkV +ogM +xfr +mQL +uxT +kwk +teg +xhk +uws +ppi +qfr +xhk +iTA +pyZ +bfG +aal +bfG +ppL +bfG +unw +gKY +lHJ +bfG +bfG +nvv +sIJ +xIA +lxf +sIJ +bhZ +xFG +bUj +oTv +gei +jRU +nTG +vzy +gMZ +rvT +qVy +rvT +rvT +rvT +rvT +ugu +fyi +oiU +rvT +rvT +doV +qjZ +qjZ +qWl +qWl +rXA +cdN +uen +mJX +cZb +jOh +cZb +xRx +uwz +hUx +uUP +cdR +fvj +svC +ilX +pFx +ioh +mRi +ioh +cRY +hcT +oHG +wKL +wKL +wKL +mua +vKg +ujM +fqm +tAx +tAx +tAx +wNi +jvZ +fZi +jvZ +peg +dDk +dDk +dDk +dDk +tym +tym +tym +tym +dDk +dDk +dDk +dDk +sun +sun +sun +sun +sun +sun +szG +dDk +sun +sun +sun +sun +sun +sun +sun +sun +vgv +sOV +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(139,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +ayU +ayU +ayU +ayU +fky +kFr +isb +isb +wtT +isb +sbp +isb +fky +ayU +ayU +ayU +fky +isb +uPc +isb +isb +dSQ +fHa +isb +dbq +hoW +asT +ebS +isb +fky +sun +sun +dDk +sun +jyp +wnJ +qVX +qVX +haH +qVX +qVX +pPo +jyp +sun +sun +sun +sun +sun +sun +hvV +pkF +fKD +nJt +uem +dfn +cXM +qaq +nkJ +nUQ +pDL +bGW +eNH +aoo +tbO +qGx +cYL +sSq +ybL +fWm +nki +fYz +lRG +oKP +ylr +rem +mQh +sSq +eJO +oFL +nEP +qHw +teg +fqL +wgV +raS +iAN +fqL +iTA +qEr +bfG +asq +fQH +gTd +bfG +wLs +rMo +oeu +bfG +aRH +gKn +sIJ +mNJ +sIJ +sIJ +sIJ +sIJ +sRm +cIx +jyN +goy +nTG +fUq +ylt +qes +gaG +fUq +tcR +qDw +rvT +rvT +rvT +rvT +rvT +igN +wlB +oKX +oKX +ydE +ydE +aOF +gnX +kOD +igN +fpp +gdk +jTh +bHe +bpL +jyl +ebI +uuU +qBU +ktN +kXI +pFx +ury +opk +aEZ +cRY +oGE +kLO +mwt +bHV +bHV +cRY +cRY +cRY +luP +jhP +col +uVF +ycd +sun +sun +sun +sun +gwc +nvr +pwd +sun +xQS +xQS +sun +sun +sun +sun +sun +dDk +dDk +dDk +dDk +dDk +dDk +dDk +ezC +dDk +sun +sun +sun +drJ +sun +sOV +sun +sun +xXk +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(140,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +uxB +moK +vxS +fky +pZZ +oun +qAr +aYF +oun +oun +vCv +fky +uxB +moK +vxS +fky +isb +mud +isb +isb +dSQ +fHa +yeP +yeP +uPc +pYk +isb +isb +fky +sun +sun +dDk +sun +jyp +gqV +gXT +gCp +uee +aXL +qVX +saJ +jyp +sun +sun +sun +sun +sun +sun +hvV +qjy +fKD +frd +uem +jKF +gLW +ofW +gLn +jLD +pDL +nvg +wHf +ujK +ujK +ujK +ujK +sSq +wNW +aHO +sSq +dFI +vrz +qou +sSq +sSq +sSq +sSq +xhk +xhk +xhk +dGK +wyg +fqL +qpT +kSk +uuu +fqL +nnU +bMd +bfG +mQc +lyc +oRJ +bfG +bBJ +kmm +nje +bfG +kau +tpP +mPd +rJa +pbh +bIl +qEt +qEt +qEt +iAR +qEt +nYw +nTG +sWZ +nCx +nCx +nCx +nCx +nCx +nCx +fUz +nCx +nCx +ylt +xhQ +igN +vSX +vSX +vSX +epx +gXs +gXs +urr +mnc +vjZ +jNH +fZf +aVB +qvl +hpy +oxI +cfD +fys +gGj +twc +cqO +pFx +nNU +opk +qAv +cRY +pJn +lDb +uSj +bHV +bHV +cRY +csR +uxE +jwM +xfs +irc +pnD +ycd +sun +sun +sun +sun +sun +sun +sun +gwc +nvr +nvr +pMz +pMz +nvr +pMz +nvr +pMz +nvr +jmh +fbq +jmh +pMz +huu +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(141,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +frT +mjN +lqE +obK +bZZ +mjN +isb +oun +pDT +oun +eSn +qAr +isb +mjN +lqE +obK +bZZ +kHb +fQm +lkT +pYk +asT +isb +byI +isb +fHa +isb +isb +asT +fky +fky +sun +sun +dDk +sun +nlT +nlT +hns +lAI +dre +mof +unb +nlT +pDL +pDL +iVM +iVM +iVM +iVM +pDL +pDL +qLs +nGA +iAO +hyY +daa +daa +daa +daa +qRn +pDL +mon +tGr +ujK +vzZ +jrA +pUY +ujK +fZA +xYo +sSq +sSq +sSq +sSq +sSq +hKW +hKW +bSA +eCi +kwt +vwO +vKV +ltA +vwO +ksv +oSl +ksv +vwO +cES +vjs +vwO +mhL +sDh +esm +xXq +ciy +iEp +krb +cKd +wmw +eoP +fjl +dVf +pfR +nTG +kKW +kKW +nEg +kKW +kKW +nTG +nTG +sWZ +plv +plv +plv +plv +plv +rak +qes +ylt +nCx +nCx +nCx +aFv +vSX +vSX +ePR +wqa +mHE +twQ +spl +xwb +gTA +bRe +xIX +aFK +lXc +lbe +eUZ +xMS +sQS +jjb +twc +dif +pFx +vaq +opk +wWy +cRY +oVg +qfl +uEJ +kSF +pmh +iHV +wcQ +hVR +uIt +hrX +apL +fTQ +ycd +sun +sun +sun +sun +drJ +sun +sun +sun +xQS +xQS +sun +sun +sun +sun +sun +sun +sun +sOV +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +afv +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(142,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +eSg +mjN +lqE +obK +bZZ +mjN +sbp +oun +oun +oun +oun +oun +isb +mjN +lqE +obK +bZZ +kHb +isb +oYl +uPc +uPc +uPc +uPc +uPc +pYk +uPc +isb +isb +fky +sun +sun +sun +dDk +sun +sun +nlT +hWh +gXT +vAu +qVX +oKe +nlT +czv +pVf +xfz +xfz +xfz +dZJ +iJC +uem +uTU +qEX +uTU +bQj +uTU +diS +uxb +uTU +cTP +pDL +fgT +tGr +aKl +hut +mva +qMB +oAS +isN +jqr +vEB +bUd +orA +bUd +qzJ +kxT +kxT +kxT +kxT +kxT +xfh +wUv +aWQ +gTr +ozk +grw +dIe +fRn +itG +cPs +cMY +qWv +eiI +uag +xXq +jOe +ctu +lKb +ieL +wmw +mhR +rVO +wNX +izO +nTG +nTG +nTG +nTG +nTG +nTG +nTG +nCx +sWZ +plv +fhv +fmb +pMJ +plv +uZb +fUq +fUq +ylt +laB +nCx +igN +qyK +vSX +vSX +jsW +agJ +agJ +jAI +mnc +vjZ +jNH +kxe +niA +oxI +reN +pFx +rhT +rhT +rhT +bay +yfq +pFx +dia +tPo +dHZ +sWi +sWi +sWi +sWi +dpD +sWi +sWi +sWi +sWi +sWi +iYY +sWi +sWi +sWi +sun +sun +sun +sun +sun +sun +sun +sun +xQS +xQS +sun +sun +xCl +xCl +kua +xCl +kua +sun +sun +sun +afv +vgv +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +sOV +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(143,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +isb +uPc +isb +isb +isb +pYk +rML +isb +mOX +sbp +xsx +uQk +isb +uPc +asT +kWd +isb +uPc +isb +iKf +uPc +mbP +pYk +pCq +uPc +gVy +uPc +isb +fky +fky +sun +sun +sun +dDk +sun +sun +jyp +pPq +gpO +jWt +nZa +pPq +nlT +dhM +rCy +xHW +pVU +xHW +rNh +tFw +mkg +oyG +eDP +rgC +uTU +gDZ +bwK +bwK +iVY +rln +pDL +nvg +tGr +gZQ +bMN +cib +jac +siS +lIE +xgi +nhu +lTE +sUz +dON +bPq +lTE +lTE +eUM +lTE +lTE +kBw +kHM +oYS +yhC +lcA +jdh +aUp +jKd +oYS +qXt +wGc +xxc +miS +qlY +huo +uVA +hgO +tYB +xgX +atR +npI +ohs +wNX +fCF +nTG +ogo +nCx +nCx +sWZ +nCx +nCx +nCx +plv +plv +bxq +tYX +dtH +plv +plv +plv +plv +plv +plv +nCx +igN +kFg +bIf +bIf +pwk +pwk +uBd +tUn +fbl +igN +qnT +thD +cQM +cQM +iqs +vNL +lTu +qvX +hrE +tys +uTZ +pFx +aBd +cgb +sdn +dia +kJb +ind +fMF +xSH +clK +jkv +bwA +nIs +rQG +ipn +gKt +ipn +sWi +lVp +lVp +lVp +sWi +sWi +sun +sun +sun +sun +sun +drJ +gDe +kua +tQh +boZ +sEd +gDe +sun +sun +vgv +dGm +sOV +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(144,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +adk +uPc +uPc +fHa +pYk +uPc +xQb +xQb +uPc +mIv +uPc +xQb +xQb +uPc +uPc +vVj +pYk +uPc +asT +oun +pYk +vVj +uPc +rSY +pYk +pfh +uPc +isb +gsF +sun +sun +sun +sun +dDk +sun +sun +jyp +oOe +mgM +tim +pJA +oOe +nlT +tfO +rCy +xoG +xoG +xoG +xoG +xdi +mLY +tvy +xeM +eFQ +uTU +mDB +bwK +bwK +qXT +qVt +pDL +mon +tGr +aYX +jGe +bHG +kli +oAS +lVN +iUO +iHU +wfE +exF +itM +vFd +rCT +wfE +tyY +pxX +rCT +lsE +tRy +nZQ +dDr +cLI +ruT +cLI +kJV +nZQ +nZQ +mDD +pNG +nKf +xCf +xXq +wcA +qgH +pKK +oGj +oir +khw +wsj +iWa +wcW +nTG +sWZ +plv +plv +plv +plv +sxl +plv +plv +riG +rkU +iHv +fXp +hkt +oII +xSk +cIA +inl +plv +nCx +igN +xhR +dnm +ufp +qJt +qJt +uBd +tUn +jMi +igN +oNa +oxI +oxI +oxI +cjk +pFx +ggz +uhP +uhP +sLL +vdN +hMM +jEj +cHX +aYp +nWb +odZ +lYw +aYp +lvO +wLy +jkv +clK +clK +clK +clK +clK +bZU +fkQ +ozw +jkv +jkv +jkv +sWi +sun +sun +sun +sun +sun +sun +kua +gDe +gDe +xCl +kua +xCl +sun +sun +xXk +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(145,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +isb +sbp +dRm +isb +isb +asT +isb +jFM +isb +isb +isb +asT +isb +isb +isb +isb +isb +isb +isb +qAr +uPc +jSv +shL +gZX +shL +anL +pYk +isb +gsF +sun +sun +sun +sun +dDk +sun +sun +jyp +hxg +gpO +uHq +nZa +vlq +nlT +uPY +rCy +dQa +rmg +war +jJH +fMK +mkg +iOH +xWS +jTu +uTU +aYH +bwK +bwK +bGp +hcr +pDL +mon +tGr +ujK +oAS +dmg +oAS +ujK +vwO +sYp +vwO +eCD +dII +jpC +vwO +eov +lVN +sTk +gHe +iAn +oJB +tEj +tEj +oJB +wBL +tAz +nnY +rxi +tEj +tEj +oJB +oTP +nKf +xCf +xXq +pjW +hPI +eRP +hCt +oir +nTG +sxl +nTG +nTG +nTG +sWZ +plv +jgN +tLU +bUb +lDM +inl +plv +gCU +rkU +qYI +fXp +tuP +tBy +tBy +eKC +xJq +plv +nCx +igN +igN +igN +igN +igN +igN +igN +igN +igN +igN +gFa +tBX +kpU +wWq +mTx +pFx +ltp +cCI +qwn +ogE +mfL +pFx +dKk +wAE +xsA +dia +fBA +sBz +jdl +dFh +clK +clK +clK +pQm +haX +vMF +clK +clK +ipn +dHZ +ioh +ioh +oWa +sWi +sun +sun +sun +sOV +sun +sun +sun +sun +sun +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(146,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +uPc +pYk +pYk +nJH +uPc +uPc +uPc +nhl +uPc +pYk +pYk +uPc +uPc +iNg +nAg +isb +isb +tSZ +uPc +uPc +uPc +gsF +gsF +vWn +nGO +duh +pYk +kWd +gsF +sun +sun +sun +sun +dDk +sun +sun +nlT +oGV +qVX +uyw +qVX +rdh +dAG +jDX +rCy +xoG +xoG +xoG +xoG +oTn +akw +nMU +ale +nMU +xwd +nMU +qHY +qHY +nMU +akw +xFm +mSk +wcb +ujK +bxe +ncK +kYo +ujK +qey +nvf +usv +dZc +kKz +dZc +usv +usv +dZc +urx +dZc +usv +oJB +giF +oOZ +nxT +vuW +usY +vEc +bwF +deh +atp +oJB +ucf +gpC +xCf +xXq +bPo +xwX +ota +qfq +oir +wbf +nCx +sWZ +sWZ +wMg +nCx +plv +lwH +eKC +rdE +lDM +nGF +plv +nbN +uDo +tBy +tBy +tuP +tBy +tBy +eKC +arM +plv +sqD +fUq +fUq +fUq +cOg +cwZ +keQ +hHN +cOg +fUq +dAv +nIc +nOy +fDD +qYE +fUh +pFx +gIl +pzf +nPM +pOH +cEe +pFx +dia +pyj +dia +dia +vOe +xyA +aav +bEQ +dia +rsM +cxF +hlc +hlc +nzw +bcv +clK +ipn +dHZ +tTj +eLo +bMX +lVp +sun +sun +sun +sun +sun +sun +sun +sun +vFr +sun +sun +sun +sun +sun +xXk +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fYV +oNP +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(147,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +mev +mZO +fHa +fHa +pYk +kFr +isb +isb +asT +isb +isb +isb +pYk +iVy +lMS +ruv +jGS +pYk +uPc +maJ +wFS +vGm +gsF +cdt +asT +shL +pYk +isb +fky +fky +fky +fky +sun +sBJ +sun +gpK +nlT +nlT +jUu +rwL +jKp +nlT +nlT +pDL +bHT +bwP +cLG +rgQ +cLG +guG +akw +kaH +fXN +uqy +nnI +iPQ +gtX +gtX +sXB +sSM +xFm +ouf +mDc +ujK +gwd +cNS +dTE +ujK +pBy +wbS +usv +vGj +piN +xWG +qOz +gVZ +xew +duX +wlH +xAG +oJB +pfG +edQ +eeG +dfZ +nGw +all +fHt +edQ +xMA +oJB +jhC +iMz +mLK +mvP +mvP +mvP +mvP +mvP +mvP +mvP +mvP +mvP +ylt +qes +hmx +plv +nGc +eKC +rdE +lDM +rCM +plv +sdf +pCi +ybt +fFh +fIS +jId +pwm +dgC +xAe +plv +nCx +qes +ejT +fUq +enx +fJG +waP +rvC +cOg +aqH +dAv +aFv +dAv +dAv +dAv +dAv +dAv +dAv +dAv +dAv +dAv +dAv +clK +uWC +stO +sfm +dia +eFg +ini +tNN +oeM +nOC +mOS +kRY +iuu +fLE +oAq +hlc +wLy +knR +jkv +jkv +jkv +jkv +lVp +sun +sun +sun +sun +afv +vgv +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +sOV +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(148,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +euA +fHa +asT +uPc +oYl +kWd +isb +pYk +hwe +uPc +nXb +uPc +kFr +boH +dSQ +ozc +isb +uPc +mWJ +prA +shL +xXT +sdb +isb +imo +uPc +isb +eIH +asT +isb +gpK +gpK +xmR +gpK +gpK +uun +nlT +aBi +jID +mHb +nlT +uun +pDL +rgi +rnr +xbU +mHn +gxo +lbF +akw +mmD +exW +aym +avv +jEn +qoT +gZq +kMk +gUD +xFm +ydV +aeP +ujK +hag +leM +kiP +ujK +mKj +hhO +usv +uhh +frS +xWG +qOz +eVq +dGx +tNc +nXm +lgy +mTm +uCx +jpg +hDk +dSJ +gAU +aMq +rzf +oVw +tJM +tEj +czq +iMz +xCf +tFU +uBH +flv +mXR +skv +aYN +snE +hjO +mvP +ylt +enx +dYO +plv +xHc +tiT +cRF +hdL +cIA +plv +mUG +tBy +tBy +lPI +lPm +tBy +cPG +plv +plv +plv +nCx +rak +lWV +sWZ +ifG +nCx +nCx +maN +gTB +nCx +nCx +nCx +nCx +sWZ +nCx +nCx +pts +pts +tTZ +sGg +pts +jjP +clK +alM +nNK +oco +dia +dia +dia +dia +dIh +dia +xww +tmn +ubU +pHn +mms +tQt +clK +nBV +sWi +jkv +dHZ +ozw +lVp +dGm +dGm +dGm +dGm +dGm +sOV +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +oNP +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(149,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +hIM +isb +aJD +rpy +fHa +fHa +fHa +asT +isb +isb +uPc +kWd +uPc +dwq +asT +isb +isb +isb +isb +isb +uPc +pYk +pYk +uPc +uPc +pYk +krI +uPc +uPc +sRE +uPc +pYk +ujr +gpK +iKa +pQO +qFE +gpK +ksp +iue +lDo +uXY +lDo +gVG +hQr +pDL +eRb +xvb +rlL +bfa +aXq +aXq +akw +eUa +adr +pcv +gfy +ftg +hsQ +xfU +gSi +kKl +xFm +cYL +uZm +ujK +ujK +ujK +ujK +ujK +grL +vbf +usv +xiz +frS +vtP +qOz +tTQ +uTI +fUI +kOz +grM +aOR +feI +xDX +xRI +rBn +pIY +jRf +dvg +xDX +ctS +yiA +vDR +wZJ +xzi +ogs +wxa +tdg +mhE +xsp +kdK +wgy +xFZ +gfY +xyq +hnL +ylt +plv +plv +uZn +vEn +uZn +plv +plv +plv +qqI +tBy +tBy +plv +tBy +cPG +cNy +jEg +oUz +aQw +aQw +qgj +nBu +cOg +dNV +omC +mrs +kDC +fQZ +mTK +qDw +enx +oBb +oBb +oBb +rak +rmn +uKC +xVW +qRT +ilM +clK +aXD +dwe +qar +idK +nhK +jXP +clK +bLV +clK +clK +bLV +bLV +clK +bLV +bLV +clK +iiM +sWi +jkv +dHZ +tXi +sWi +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +fJW +uaG +fJW +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(150,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +fky +fky +jmV +jmV +jmV +uPc +qHV +pYk +uPc +uPc +kWd +pYk +pYk +ihk +asT +isb +isb +isb +ecE +isb +kWd +isb +isb +isb +asT +uPc +ecE +eIH +gpK +jUf +pQO +ohn +rTN +dcu +wwM +ovQ +iOE +sXX +lQj +tMZ +pDL +uem +fTY +uem +bJu +cFz +jnI +xFm +xFm +tLg +xFm +xFm +wbW +sDl +qRc +tKq +xFm +xFm +kCv +eYd +wDG +cTW +wDG +oHg +nUv +ioG +cTW +usv +dig +frS +xWG +qOz +mhy +rKt +nMY +ejr +xcx +mTm +lSk +ows +xET +ooV +rwx +cyE +bpy +hxK +bOO +tEj +czq +rIl +xCf +tFU +bTS +wbU +bTS +mvP +bTS +ykS +bTS +mvP +vwO +ucI +vwO +plv +syx +uQl +woV +aRI +hEs +vyF +plv +cLg +qKh +cLg +plv +sNx +cPG +olb +olb +olb +olb +kpv +qgj +qgj +omG +cOg +enx +enx +cOg +fUq +nhX +fUq +fUq +fUq +ylt +dGS +fUq +ffK +xgt +ebA +xVm +tTZ +lni +qSc +uuo +qSc +hlc +xkc +wku +bLV +sun +sun +oNP +oNP +sun +sun +sun +sun +uRt +dar +sWi +sWi +sWi +sWi +sWi +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +cNm +oNP +oNP +fYV +fYV +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +uaG +fJW +tOX +fJW +uaG +pWQ +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(151,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +jDT +bOJ +nnH +nnH +nnH +rnR +aMM +ayU +ayU +uPc +rMJ +isb +nhl +isb +fky +fky +gsF +gsF +gsF +gsF +gsF +fky +fky +iNg +qAr +mBn +isb +eIH +gpK +iKa +pQO +kNH +gpK +uOt +iEc +ufe +eiK +nxx +kvH +hQr +pDL +rYj +iUe +bQj +mxp +jwG +clN +xFm +ajB +xek +hyw +xFm +cgd +jkg +qCE +sZk +xFm +aFr +due +gyA +qQy +pXh +uxV +pXh +nsa +aiC +enq +usv +fPI +mWV +xWG +qOz +aZP +iQO +ydm +sAZ +hFE +oJB +pfG +lOM +fHt +pgM +wLC +tVC +eQy +lOM +xMA +oJB +mTX +iMz +xCf +mvP +fBz +rNb +dIp +mnw +lmh +vSK +fEr +gov +fmc +cwV +lbq +oQU +xyT +tuE +hps +tXd +dDt +ezA +plv +jYb +izV +xHk +cLg +alw +cPG +olb +lNs +cmm +olb +omG +oxE +ouS +omG +ylt +ylt +ylt +cOg +enx +cOg +cOg +cOg +cOg +cOg +cOg +cOg +jhG +tQu +gOM +tQu +tTZ +clK +xXn +dLh +xJz +hlc +lSO +vDB +bLV +sun +sun +nyH +ifw +sun +sun +sun +sun +oNP +kuY +oNP +ifw +oNP +ifw +nyH +ifw +oNP +oNP +nLM +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +ifw +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +ifw +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +fJW +fJW +tof +kkk +tnN +fJW +fJW +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(152,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +rFo +dcW +rUG +rUG +rUG +dpE +ayU +ayU +lNk +uPc +tNk +bCl +fky +fky +fky +sun +sun +sun +sun +sun +sun +sun +fky +fky +fky +oPM +asT +fHa +gpK +gpK +vSW +gpK +gpK +gpK +gpK +gpK +lFe +gpK +gpK +gpK +pDL +iaH +opn +foX +das +lcC +uRb +xFm +dQn +pYU +gvQ +shj +gRa +xvA +esL +dZD +xFm +heg +cTW +heg +eAh +drR +wDG +jWq +tob +phT +kcG +usv +usv +bVk +usv +usv +usv +usv +cLx +usv +usv +oJB +hIk +yct +vNG +gLS +bId +jAV +nRS +wrP +oze +oJB +vOw +hil +whI +mvP +hdY +pzX +hzt +cwL +lyg +gbT +lpG +mvP +loo +nIM +orc +oQU +gGx +dlb +mXq +fId +bNX +reO +dEh +ivE +cMV +fXW +cLg +alw +nay +rLa +eXf +ckx +olb +kpv +gEH +qfs +kpv +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +cOg +duE +ffK +asw +fUq +sWZ +clK +mje +bLV +aFs +bLV +clK +clK +clK +eQL +eQL +oNP +ifw +ifw +sun +sun +afv +ifw +wNu +ifw +ifw +oNP +oNP +ifw +oNP +oNP +oNP +nyH +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +nyH +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +fYV +ifw +ifw +uaG +uaG +mia +lyl +xPZ +sgH +ahl +uaG +uaG +ifw +ifw +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(153,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +rFo +dQP +hyZ +hyZ +hyZ +dpE +ayU +lDG +lDG +ucH +fMs +gsq +fky +sun +vgv +dGm +dGm +dGm +dGm +dGm +dGm +dGm +wjz +sun +fky +fky +uFI +eIH +isb +kWd +jXb +gpK +gpK +gZD +iis +feZ +jHE +noy +iis +gZD +pDL +tuy +pJC +uem +hVg +jyw +hal +xFm +fQn +dct +xek +xFm +peN +wxA +alq +uoC +xFm +fJH +net +heg +cyO +heg +aff +qAB +tob +qBn +oWE +heg +nTr +nRj +usR +heg +qPJ +aWL +tgO +fyn +jrc +oJB +oJB +oJB +oJB +tEj +iPq +tEj +oJB +oJB +oJB +oJB +bOS +rpN +xCf +mvP +wZW +pzX +lyg +cwL +hzt +gbT +mfP +mvP +skb +mHD +fLM +oQU +wnj +kJh +pOP +vSZ +cuR +jqE +plv +teJ +ykP +oKC +cLg +alw +cPG +olb +tGi +iPM +olb +kpv +hii +qgj +omG +ylt +ylt +xkG +xkG +xkG +xkG +xkG +xkG +xkG +ylt +ylt +cOg +cOg +enx +enx +tTZ +nck +clK +cjT +gOf +xuP +rMf +qMu +niW +qXx +gsU +gsU +oNP +oNP +oNP +gsU +gsU +gsU +oNP +aTX +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +xSG +isR +qtO +qtO +fQv +xPz +uDT +jHf +uaG +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(154,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +fky +fky +aSk +aSk +aSk +bnY +hNC +lDG +kjt +hgq +gsu +lDG +sun +vgv +sOV +rPq +rPq +rPq +rPq +rPq +rPq +rPq +eYg +wjz +sun +gsF +pFH +eIH +uPc +xKf +lDa +gpK +gpK +gZD +gpK +gpK +qZM +gpK +gpK +gZD +pDL +uem +eUe +uem +uem +uem +uem +xFm +wIx +lFh +ycH +xFm +xFm +xFm +xFm +xFm +xFm +xFm +ljE +uas +wDG +wDG +wDG +heg +tob +cTW +ftq +xTA +hOJ +nhI +nRj +snu +fHx +aWL +rvQ +wUZ +tRj +tGP +fuW +aSt +tfA +scC +lsJ +bOU +exv +jmP +ezN +rMh +umD +wVw +wZN +mvP +wCi +wCi +wCi +mvP +geh +bbu +geh +mvP +skb +mHD +fLM +oQU +oQU +oQU +plv +oQU +uZw +vff +plv +cLg +pHC +cLg +plv +aWa +cPG +olb +olb +olb +olb +omG +mCI +pjV +omG +ylt +cco +cOg +cOg +cOg +cOg +cOg +cOg +cOg +qda +ylt +cOg +ylt +cOg +gXV +jsF +kDC +clK +clK +clK +clK +clK +clK +clK +clK +ggS +ggS +oNP +ifw +ifw +sun +sun +afv +ifw +kuY +ifw +ifw +oNP +oNP +ifw +oNP +oNP +oNP +nyH +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +nyH +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +fYV +ifw +ifw +uaG +uaG +gnw +qdP +qtO +neo +hrp +uaG +uaG +ifw +ifw +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(155,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +jDT +bOJ +nnH +nnH +nnH +dpE +dUk +vCT +kCg +pdj +lpT +lDG +sun +xXk +sun +rPq +rPq +rPq +rPq +rPq +rPq +rPq +sun +tYO +sun +gsF +etC +asT +pYk +tqj +ejd +gpK +gpK +gpK +gpK +sua +vDg +fqw +gpK +gpK +pDL +rfW +lmu +sJQ +wnZ +muw +mgG +xFm +kPY +bkS +dPB +vJP +fVX +uOJ +nzY +irS +nzY +xFm +wDG +oNb +wDG +dCW +wel +cTW +mZb +dLd +jtj +heg +vGJ +syH +jWq +cTW +htf +aWL +eHX +htd +dhi +lFB +kfo +rtc +aJQ +iOn +jEe +wgC +xet +dvY +ezN +hoE +pSZ +rIl +gHm +dCi +mZp +mZp +mZp +hPm +mZp +mhP +uQz +ovD +xHV +mHD +gdS +ryj +ryj +ryj +uKu +ryj +uRz +osg +plv +xxf +iPN +uTq +plv +alw +cPG +olb +uqV +cmm +olb +omG +rNC +qgj +kpv +ylt +cco +cOg +ylt +ylt +ylt +ylt +ylt +cOg +qda +cco +xvF +cwp +mym +qda +nCx +nCx +nCx +nCx +nCx +sWZ +nCx +fUq +beE +vJo +sun +sun +nyH +ifw +sun +sun +sun +sun +oNP +wNu +oNP +ifw +oNP +ifw +nyH +ifw +oNP +oNP +ifw +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +ifw +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +ifw +ifw +ifw +ifw +oNP +oNP +ifw +nyH +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +fJW +fJW +tEP +xPZ +uZP +fJW +fJW +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(156,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +rFo +dcW +rUG +rUG +rUG +gWf +lDG +lQp +oIa +dNH +gsq +gsq +vgv +sOV +sun +sun +sun +sun +uXi +sun +sun +sun +sun +eYg +wjz +fky +fky +vVj +uPc +oPM +lOE +gpK +aiP +mqC +wGm +xsb +vFI +xDG +wGI +srJ +pDL +cwi +nDf +hrN +qgP +wgI +sUl +xFm +qge +bkS +vyG +xFm +gFo +uAT +nzY +nzY +nzY +xFm +cTW +cTW +heg +heg +pGu +heg +mOO +rXf +cTW +heg +rlR +heg +heg +heg +snu +aWL +heA +pMI +fmh +nBb +mAJ +uZJ +iia +jov +kZP +skz +njk +jdW +qgX +rxp +eLf +taJ +kVj +mGr +apZ +apZ +apZ +peU +apZ +snH +leV +apZ +apZ +iwd +apZ +apZ +apZ +hlb +kTF +kTF +fKl +rjj +ixI +rgZ +aCX +wVi +vge +jjZ +eqD +qYb +eXf +fBd +olb +omG +rfY +qgj +omG +ylt +cco +cOg +cOg +cOg +cOg +cOg +cOg +cOg +qda +ylt +cOg +ylt +cOg +eCz +fIz +xqT +fUq +ylt +fUq +fUq +nCx +nCx +ajN +vJo +sun +sun +oNP +oNP +sun +sun +sun +sun +xrI +fbD +ppA +ppA +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +fYV +fYV +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +uaG +fJW +kSr +fJW +uaG +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(157,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +rFo +rFo +rFo +dQP +hyZ +hyZ +hyZ +dpE +lDG +hHS +vmZ +cZK +gsq +sun +xXk +rPq +rPq +rPq +rPq +rPq +uXi +rPq +rPq +rPq +rPq +rPq +tYO +sun +fky +eIH +uPc +pYk +jXb +gpK +oCH +ndn +lPv +eUV +hfr +lKB +kLJ +ndn +pDL +jtk +lmu +eYr +ihf +oqw +cjf +xFm +ejW +xVu +aCS +xFm +ajk +dWp +dqL +dqL +oNh +xFm +eqq +edO +wfA +lMm +krL +hSw +mZb +qmt +uYd +iwX +oWE +jOp +heg +fTs +uGk +aWL +san +riR +qNn +lFB +cSX +uwd +jUz +ews +cDL +jdW +xet +pPa +ezN +kux +mqS +nzL +cAV +uDK +nZQ +kIr +dDr +mDD +nZQ +wtj +rYr +dyx +rCT +rCT +rCT +rCT +rCT +axn +myD +rCT +rCT +rQM +plv +aot +qBM +mjK +plv +tBy +nti +olb +tGi +iPM +olb +kpv +gge +qgj +omG +ylt +ylt +tpQ +tpQ +tpQ +tpQ +tpQ +tpQ +tpQ +ylt +ylt +cOg +cOg +cOg +cOg +enx +cOg +cOg +cOg +enx +cOg +nxN +nCx +ylt +ppA +ppA +ppA +ppA +vJo +vJo +ppA +ppA +ppA +ppA +fbD +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +fJW +uaG +fJW +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(158,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +gsF +gsF +fky +fky +fky +fky +aSk +aSk +aSk +oMW +lDG +xwy +uQF +gsq +gsq +pNt +sOV +rPq +rPq +rPq +rPq +rPq +uXi +rPq +rPq +rPq +rPq +rPq +tYO +sun +fky +jXb +lDa +jXb +sus +gpK +gpK +dkf +gpK +gpK +jVF +gpK +gpK +dkf +pDL +uMd +lmu +wzi +cXI +npD +vtu +xFm +hvL +tfo +qTb +xFm +iTk +ewz +iZI +ing +sHA +xFm +sKO +uxR +ngy +kiq +sgs +whi +wYW +epd +uYd +kGi +xVX +dBk +cTW +nRj +nRj +aWL +iUf +xdV +kBC +tGP +tzG +nya +nya +cMh +nxi +ovF +pPa +mPA +ezN +eCD +ptB +kAq +vYQ +fjg +fjg +syK +vhO +vhO +eKf +iom +eKf +vhO +pVI +vUc +iBO +tiR +pVI +vhO +acm +acm +bQZ +acm +plv +plv +plv +plv +plv +sNx +nti +olb +olb +olb +olb +kpv +pxz +cgR +omG +ylt +ylt +xkG +xkG +xkG +xkG +xkG +xkG +xkG +ylt +ylt +xkG +xkG +xkG +xkG +xkG +xkG +xkG +ylt +ylt +cOg +fUY +nCx +nCx +gtJ +nCx +nCx +css +nCx +sWZ +fcV +egO +hkn +vqq +sVd +ppA +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +cNm +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +ifw +oNP +ifw +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(159,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +aSk +aSk +aSk +aSk +aSk +euO +tXk +tXk +tXk +bnY +lDG +xLn +lNi +jWH +qqB +ezu +xCl +xCl +xCl +xCl +xCl +xCl +pPe +xCl +xCl +xCl +xCl +xCl +tYO +sun +fky +aLv +iWH +yeP +yeP +gpK +vDl +qpo +wfC +lWi +wOB +tud +nka +ndn +pDL +uem +hNI +uem +pDL +pDL +pDL +xFm +xFm +xFm +xFm +xFm +suc +suc +ljf +suc +suc +xFm +uSn +ycW +nCa +lhT +bvw +xTj +hcb +wDG +uYd +qMU +lus +hzR +rXf +aaJ +euv +euv +euv +euv +euv +tGP +ezN +ezN +ezN +tuk +ezN +fnY +ezN +tGP +tGP +vwO +lyU +gbX +xCf +fjg +gNP +hQl +lmg +fjg +vgr +lNq +weo +pVI +pwc +lMG +jqy +wTn +hYT +vhO +oer +nnF +jkx +nrS +plv +euh +poW +poW +uZn +tBy +nti +olb +nHE +cmm +olb +omG +oUz +nye +kpv +ylt +cco +cOg +cOg +cOg +cOg +cOg +cOg +cOg +dat +gNz +cOg +cOg +cOg +cOg +cOg +cOg +cOg +qda +ylt +cOg +fUq +fUq +ylt +fUq +cOg +cOg +enx +tWa +fUq +ylt +ppA +ppA +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ifw +oNP +ifw +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(160,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +gsF +gsF +fky +fky +fky +fky +aSk +aSk +aSk +dIg +lDG +kPS +whA +pNt +gsq +gsq +qRu +rPq +rPq +rPq +rPq +rPq +uXi +rPq +rPq +rPq +rPq +rPq +tYO +sun +fky +jXb +eIH +kWd +isb +gpK +hel +qpo +icM +fdA +hna +xGf +bWX +ndn +pDL +uFa +mNn +eHl +pDL +rRV +bZl +wYm +bWa +kbk +hNW +xFm +cDr +jHN +qMk +kNi +rRs +xFm +isq +ezK +ilU +xyp +ueK +ccY +kAH +gUx +uYd +bmD +oPc +aIc +heg +nRj +euv +oby +uRd +sUP +fSd +wqx +rMh +ryj +ryj +ovD +kkM +aWQ +ryj +ryj +sly +oTF +xHV +qjb +whI +fjg +bim +fZo +vdG +rcf +xky +haJ +god +cgg +xOi +bul +bul +bul +nZU +vhO +oDb +qdZ +jkx +uVm +plv +fsY +yjb +aIa +keC +tBy +klN +fqT +eXf +nKV +olb +omG +qgj +aQw +wUn +ylt +cco +cOg +ylt +ylt +ylt +ylt +ylt +cOg +cOg +cOg +cOg +ylt +ylt +ylt +ylt +ylt +cOg +qda +ylt +cOg +oBb +rak +ylt +fwp +fUo +pOb +bPP +jCn +wFK +fUq +ylt +oIJ +tcL +rfK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fYV +oNP +fYV +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(161,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +jDT +bOJ +nnH +nnH +nnH +dpE +lDG +aRB +kPZ +jLu +gsq +sun +xXk +rPq +rPq +rPq +rPq +rPq +uXi +rPq +rPq +rPq +rPq +rPq +tYO +sun +fky +jXb +fQm +hzj +isb +gpK +rWC +qpo +fbB +bPj +bmg +bmg +lZW +ndn +pDL +lwn +vgO +sAo +pDL +vEf +fyw +tfE +fsv +tjX +xhc +xFm +cDr +mnF +agg +loD +rRs +xFm +cTW +uYd +uYd +uYd +rXf +cTW +kwq +heg +heg +bmD +xVX +heg +heg +nRj +euv +rvn +aRu +aWi +wlf +jIY +wzA +dhU +ump +ump +qHW +szz +vTk +vTk +vTk +reM +vTk +lGp +xCf +fjg +rTg +gVE +tuH +fjg +mgf +ebb +eiE +pVI +lBm +tMP +kcQ +tMP +wpH +vhO +jlF +xoH +nhU +nPf +plv +vVM +hFl +hFl +uZn +tBy +mxb +olb +tGi +iPM +olb +kpv +qgj +qHo +omG +ylt +cco +cOg +cOg +cOg +cOg +cOg +cOg +cOg +blu +vRD +cOg +cOg +cOg +cOg +cOg +cOg +cOg +qda +ylt +cOg +fUq +fUq +fUq +ylt +ylt +ylt +fUq +cOg +xhQ +fUq +fUq +oIJ +tcL +tcL +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(162,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +rFo +dcW +rUG +rUG +rUG +vBd +lDG +arB +cEB +apR +gsq +gsq +mhi +qRu +sun +sun +sun +sun +uXi +sun +sun +sun +sun +ono +xDF +fky +fky +aLv +mud +nhl +wBD +gpK +qsF +iNk +urH +lPB +pjp +hQr +dim +aLi +pDL +owt +sQm +plA +pDL +iiW +mFh +wYV +sSu +kzS +wqH +xFm +suc +suc +suc +suc +suc +xFm +bHN +eVB +sGH +wDG +bmD +oQV +fRu +dQf +bmD +xIF +xVX +heg +cjD +loK +euv +iJi +shi +pAk +jYD +wqx +lVN +axn +rCT +kIR +rCT +xxT +rCT +rCT +rCT +efK +wfE +ail +xCf +fjg +kQI +aqF +kqk +gVu +aXm +aXm +aXm +gVu +dmK +goA +wyR +fMk +pHc +vhO +acm +acm +hMZ +gLV +plv +plv +plv +plv +plv +cNy +plv +olb +olb +olb +olb +omG +aQw +gge +omG +ylt +ylt +tpQ +tpQ +tpQ +tpQ +tpQ +cLb +cLb +xkG +ylt +tpQ +tpQ +tpQ +tpQ +tpQ +tpQ +tpQ +ylt +ylt +cOg +tca +cOg +fUq +onN +ojR +cOg +fUq +enx +vjC +ylt +fUq +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(163,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +rFo +dQP +hyZ +hyZ +hyZ +dpE +vCT +vCT +thV +nkO +sgF +lDG +sun +xXk +sun +rPq +rPq +rPq +rPq +rPq +rPq +rPq +sun +tYO +sun +gsF +buK +opC +isb +isb +asT +gpK +gpK +gpK +gpK +gpK +gpK +nXn +gpK +gpK +pDL +pDL +pDL +pDL +pDL +uYd +uYd +uYd +uYd +rXf +iKz +xFm +xFm +xFm +xFm +xFm +xFm +xFm +rFz +xIF +bWT +kIJ +jLF +tzt +tRd +eLM +dbC +dbC +ePL +cTW +frH +nRj +euv +xnD +ekN +qAP +nmq +euv +wqx +wqx +wqx +euv +seS +aYM +seS +seS +seS +orN +vgF +ail +xhv +vhO +hyz +fTh +nXP +wRX +cCF +tPy +uXX +gVu +gll +soh +ljb +soh +amB +vhO +bjt +wZi +wZi +wZi +fEP +cdI +wZi +wZi +agK +tdx +wZi +wZi +rcd +hrZ +lTJ +rfY +qgj +wWL +omG +ylt +ylt +ylt +ylt +ylt +ylt +cco +cOg +cOg +cOg +qda +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +ylt +cOg +fUq +vAo +bgy +cGZ +laf +vAo +fUq +fUq +fUq +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(164,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +fky +fky +fky +aSk +aSk +aSk +oMW +ayU +lDG +jed +hVv +kBu +lDG +sun +mhi +qRu +rPq +rPq +rPq +rPq +rPq +rPq +rPq +ono +xDF +sun +gsF +lOE +pYk +ndi +iVy +pYk +gpK +gpK +gpK +gpK +eUi +iUP +hQr +iVi +gZD +gpK +kqT +oKz +cGC +uJS +cwQ +sOH +snu +lfK +iaE +pmb +bmD +geb +ewx +cSa +def +wJx +geb +geb +bLa +cEF +sVp +heg +cTW +vVz +heg +heg +jTd +hXh +cTW +ehW +nRj +euv +cOR +shi +pAk +seN +vDJ +dbk +dbk +dbk +euv +wMr +jFX +lVE +aYe +aYe +seS +puE +ail +xCf +vhO +nak +tJS +lYW +wWn +kXL +jZq +uWh +gVu +hNu +jcv +soh +soh +aXg +vhO +cWa +omG +kpv +aQw +omG +rfY +pEK +omG +fzo +xIs +dbj +omG +omG +wBT +uXG +aQw +rau +qgj +kpv +kpv +omG +cOg +enx +cOg +ylt +cco +cOg +ylt +cOg +qda +cOg +cOg +cOg +cOg +cOg +cOg +cOg +cOg +cOg +cOg +fUq +vAo +aQW +pno +fHG +vAo +fUq +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(165,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +jDT +bOJ +nnH +nnH +nnH +dpE +ayU +lDG +lDG +ucH +nRQ +gsq +fky +sun +mhi +cgx +cgx +cgx +cgx +cgx +cgx +cgx +xDF +sun +fky +fky +jXb +nOi +aEz +isb +hoW +bpG +eIH +gpK +gpK +bKn +hQr +onA +gpK +gpK +gpK +aWu +rnS +hWx +hLK +rSM +qCv +gxq +qYG +hLM +veh +dfL +geb +oNf +eNV +jzr +uSu +oEo +trc +bKA +snu +kwF +heg +npl +ode +tnA +cTW +mpS +rXf +heg +wDG +nRj +euv +sbb +qlL +pAk +qcJ +qcJ +qcJ +sLD +fOD +euv +spk +nUA +ciP +hyR +tES +hox +cyd +avD +ldt +vhO +vhO +vhO +vhO +vhO +fHI +xai +woj +gVu +gVu +iNf +ttY +tsp +vhO +vhO +heI +omG +aYZ +qgj +qgj +gEH +gge +kpv +nLj +wqU +saT +kpv +bIT +gNL +wEk +wUn +omG +hic +iha +gge +omG +spp +ccM +cOg +cOg +cco +cOg +cOg +cOg +qda +cOg +fUq +fUq +cOg +hkb +sRR +pvo +kKO +uqX +glr +mTk +ppA +krx +ckV +jzX +ppA +fUq +oIJ +tcL +ebD +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(166,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +rFo +dcW +rUG +rUG +rUG +dpE +fJV +ayU +fde +uPc +txV +ikr +fky +fky +fky +sun +sun +sun +sun +sun +sun +sun +fky +fky +fky +vab +jXb +rWT +eIH +shc +pYk +rXu +sRE +gpK +gpK +cpt +xGk +sFx +gpK +gpK +tlb +yaD +qpZ +ueu +hKV +ueu +ueu +hKV +ueu +ueu +hKV +uNI +bLa +nMs +xTo +lmK +qvY +hpc +qjq +bKA +snu +lYz +cTW +gKl +nRj +qaw +heg +nRj +nRj +suL +suL +suL +euv +voO +pdD +jwz +oTc +xEQ +sxt +sxt +sxt +euv +imQ +qzf +uKD +uKD +uKD +orN +eBg +hFx +fLM +acm +wRM +ozO +sSn +vhO +isT +soh +hcu +vhO +vhO +vhO +vhO +vhO +vhO +xkt +cWa +omG +omG +gge +qgj +omG +omG +kpv +jnD +wLR +fCe +omG +omG +omG +bVM +gge +gge +tZJ +ueA +wrt +kOE +gUp +ayo +poa +enx +ylt +tpQ +tpQ +tpQ +xkG +cOg +lTo +dVT +qes +hfB +ffK +ffK +ffK +ojR +rvC +ylt +ppA +tcL +tcL +qWx +ppA +ylt +oIJ +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(167,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gpZ +gDe +gDe +gDe +rFo +rFo +rFo +dQP +hyZ +hyZ +hyZ +bcc +mkN +ayU +vxh +pYk +dZt +qWF +mDP +ndD +fky +fky +gsF +gsF +gsF +gsF +gsF +fky +fky +kXH +uPc +dxT +kpD +yel +eHU +pYk +pYk +uPc +wMv +gpK +gpK +gpK +gpK +gpK +gpK +gpK +joA +hKV +hle +hle +hKV +hle +hle +hKV +hle +hle +hKV +uNI +bLa +lRK +wYU +eFD +nFe +tEv +mgV +bKA +iaE +eHg +cTW +sCS +cEU +kov +heg +rgw +dVG +iZA +gsA +foQ +euv +euv +euv +bVk +euv +euv +euv +euv +euv +euv +jmN +fMv +lVE +aYe +aYe +seS +puE +kLa +fLf +qXu +xqU +lkO +tTL +vhO +gVu +did +gVu +vhO +egA +xjp +wIp +uHg +pmS +hUH +txN +jnb +kpv +kpv +qgj +omG +pMA +aXX +iDs +sgV +nBW +spC +sZu +kpv +axk +rUo +rUo +kOE +iaD +mNq +kpv +epj +nCx +iWw +enx +ylt +ylt +cOg +cOg +mvT +cOg +epj +ffK +qkt +fUq +kVh +uJk +ppA +vJo +vJo +vJo +ppA +tcL +tcL +tcL +ppA +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(168,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +fky +fky +fky +vNz +vNz +vNz +pYk +mED +pYk +uPc +uPc +yeP +pYk +uPc +wvf +pYk +mCj +jQW +hwR +qfO +roa +pxe +njY +uPc +eIH +uPc +pYk +kjj +uPc +sgN +hjH +uPc +hWO +eIH +gpK +gpK +gpK +gpK +gpK +gpK +gpK +wvf +hKV +lyD +nxl +hKV +lyD +nxl +hKV +lyD +nxl +hKV +uRM +geb +geb +noo +soe +dAK +geb +yhW +geb +iaE +uUj +heg +heg +rXf +cTW +cTW +nRj +wDG +sFf +sFf +sFf +jua +bVN +wDG +dOK +tTK +orN +fjH +xPN +eAP +bWL +dVp +iTl +xEa +pCz +oMJ +seS +puE +woT +fLM +acm +pHX +xmJ +xLU +vhO +iRv +vNi +eCJ +vhO +eAY +kng +lwv +fZU +sOa +fcT +kFI +oUz +wKT +omG +qgj +qbK +cEo +iDs +shK +ftP +npj +xfG +amF +fwL +fwL +tKV +tKV +tKV +tKV +tKV +fwL +ppA +loi +qta +cOg +cOg +ylt +cOg +mfI +cLb +cOg +enx +oyv +oyv +oyv +ppA +ppA +ppA +oNP +oNP +oNP +ppA +tcL +tcL +tcL +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(169,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +qHN +tIt +eyx +mIG +uPc +yit +isb +vcB +bri +uPc +eIH +pYk +kFr +nXb +suV +isb +tIt +wfe +uPc +frQ +sbz +hwR +joN +roa +gCS +lwh +uPc +isb +asT +eIH +wvf +uPc +kFV +rMb +qfK +rhy +qfK +qfK +gzT +gDU +qfK +qfK +rhy +cky +vKT +hKV +lyD +lyD +hKV +lyD +lyD +hKV +lyD +lyD +hKV +pQL +tKF +bLa +meT +jxy +uGY +nJe +kNb +xYK +krW +kfy +sfO +hfF +jrG +diG +pXh +tKF +mBe +mBe +mBe +mBe +mBe +mrK +gWb +heg +wDG +orN +sbB +dsN +dsN +kXD +wrz +hSZ +uKD +uKD +uKD +orN +puE +woT +fLM +acm +acm +acm +acm +vhO +vhO +vhO +vhO +vhO +xMt +kng +sxK +isx +qUw +omG +txN +eVt +gge +omG +aQw +omG +jTo +wvS +nFN +cGR +iAS +bck +sTe +fwL +fHk +sun +fHk +sun +fHk +sun +fHk +ppA +vGf +ruc +ylt +enx +cOg +cOg +enx +efc +cOg +dwa +cOD +uql +uql +qOh +tcL +tcL +gAy +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(170,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +qHN +ouc +gyn +toN +uPc +vPC +isb +eIH +rvh +uPc +cSy +uPc +nLk +pYk +tIt +fnK +isb +xak +uPc +oib +lAo +dzy +iQA +uke +bwM +yeb +pYk +eIH +ndi +uPc +wfe +uPc +pYk +hCO +eIH +isb +uPc +pYk +iVy +wBD +iVy +fky +fky +fky +fky +fky +oIY +oIY +hKV +oIY +oIY +hKV +oIY +oIY +hKV +mVr +fRu +geb +hAW +hAW +suf +bLa +bmD +ooU +iof +oWL +heg +gyR +gyR +uCf +heg +ePk +mBe +pcA +vKt +bty +mBe +wdH +oXd +heg +dOK +orN +dqo +vnU +vnU +ksn +owz +owz +lVE +aYe +iGR +orN +sHP +buc +tlh +cty +fhH +kkz +eXu +rfY +gge +tgM +tQo +kpv +wUn +eXk +cbL +kpv +oqp +kpv +txN +gge +gNL +kpv +aQw +omG +aPv +lzP +lzP +vdH +xbB +xbB +xbB +fwL +fHk +tqY +fHk +tqY +fHk +tqY +fHk +ppA +ppA +nqH +fCS +ylt +ylt +ylt +ylt +tpQ +ylt +ylt +mDr +pno +pno +tOc +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(171,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +qHN +qJJ +bgV +tIt +xJt +kGo +eIH +isb +isb +isb +tIt +nhl +eIH +pYk +eIH +uPc +uPc +vXt +pYk +wct +gDJ +hfL +uMi +jvk +eey +ndi +uPc +eIH +eIH +raB +wfe +xBf +pYk +eIH +dSQ +hIy +uPc +eHT +bvA +lLf +lLf +kdO +rFo +rFo +xbO +dNX +sun +sun +sun +sun +sun +sun +sun +sun +hKV +ykw +ejG +tzt +jLF +men +kNb +jLF +eLn +lhx +heg +cTW +heg +emh +hFL +orC +gyR +ifU +mBe +xAQ +kiE +xAQ +mBe +mBe +mBe +mBe +wDG +orN +szN +goI +lhK +xZA +xkC +owz +vXl +krY +oMJ +xAQ +xAQ +lOt +xAQ +xAQ +rwO +uKS +cdI +wZi +fhH +qHo +ueA +kGN +xkt +bPS +oUz +eVt +oUz +kpv +txN +omG +ntV +oHi +qgj +hQv +lEa +lal +foN +xeR +xbB +jXl +xbB +sun +sit +sun +sun +vFr +sun +sun +sun +sun +ppA +vJo +sqf +vJo +cOg +ylt +vyO +bpq +ylt +ylt +vgT +qrz +qrz +xmU +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(172,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +qHN +tIt +uhc +uPc +uPc +fky +fky +kTa +fky +xrE +pYk +eIH +vSA +isb +pYk +ljS +uCH +eqP +cNb +oBU +qph +asB +muL +oBU +hRM +mvJ +vHt +pYk +uPc +xak +feG +uPc +cKB +isb +isb +vVj +asT +mMW +obK +obK +bVf +rFo +rFo +rFo +dNX +sun +drJ +sun +sun +sun +sun +sun +sun +hKV +uYd +uYd +hKV +tSj +hSc +mqw +qNc +rRW +hHb +heg +jOq +nku +yjV +nOT +fwe +npn +qhM +mBe +eRe +mqf +eFN +xAQ +rpf +qqp +mBe +wDG +orN +orN +orN +orN +orN +orN +qUG +orN +orN +orN +xAQ +eOa +dlC +oBr +xAQ +gpx +vTi +jZi +kpv +tkA +pYS +fVx +kOE +kOE +vkN +dQY +auH +omG +omG +kFI +omG +gNL +qhR +qgj +wAp +xBv +gxU +unT +xqe +tvJ +lWz +ntD +tqY +sit +tqY +fHk +tqY +fHk +tqY +sit +sun +ppA +oSR +qoS +ifo +cOg +ylt +shs +xSM +ylt +sJX +oyv +oyv +ppA +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(173,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +sFC +mSS +qHN +uPc +isb +fky +nHy +eIH +fky +fky +fky +fky +fky +fky +fky +sKH +eIH +nmM +fky +fky +gsF +gsF +gsF +fky +fky +xlq +mZV +eqP +fTE +nKt +foG +wBD +eIH +itH +qAr +pYk +iVt +nKn +qXy +qXy +sFM +rFo +rFo +rFo +dNX +sun +sun +sun +sun +sun +drJ +sun +sun +sun +sun +sun +hKV +uYd +uYd +hKV +dBX +lCR +ugT +heg +mZc +eRt +wus +jSQ +lhU +gyR +wuJ +mBe +hIz +jlK +gcA +xAQ +hPu +huF +mBe +wDG +dOK +pxt +dOK +wDG +wDG +uJh +xvo +nDH +mSj +xQZ +xAQ +daB +uAb +frB +xAQ +aQw +kfE +qgj +omG +wlr +dyv +qbK +prF +kEu +pqB +tNs +bTQ +aoF +kOE +aMV +qbK +mLE +omG +oUz +gge +lEa +uKy +kEp +gec +xbB +xbB +xbB +sun +fHk +sun +fHk +sun +fHk +sun +fHk +sun +ppA +fHz +rqg +mSF +enx +ojR +tAD +ovo +ylt +cOD +uql +uql +qOh +tcL +tcL +gAy +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(174,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +fky +fky +fky +sZW +fky +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +oNP +oNP +oNP +oNP +oNP +fky +fky +fky +fky +fky +gsF +gsF +fky +gsF +gsF +gsF +fky +fky +fky +fky +fky +fky +fky +fky +gsU +gsU +gsU +gsU +gsU +eVg +sun +sun +sun +sun +drJ +sun +sun +sun +sun +sun +hKV +uYd +uYd +uYd +hKV +uYd +hKV +hKV +hKV +hKV +hKV +iwb +mBe +enj +xAQ +sie +xAQ +xAQ +akx +mBe +mBe +mBe +mBe +mBe +mBe +mBe +mBe +dit +sjM +dOc +xQZ +xAQ +wky +mcN +jaJ +xAQ +aIC +qgj +aQw +omG +omG +omG +kpv +omG +omG +pqB +usT +hOh +nWN +gJs +oUz +sKD +nBJ +omG +ngz +wQi +xbB +lEa +lEa +lEa +xbB +xbB +sun +sun +fHk +sun +fHk +sun +fHk +sun +fHk +sun +ppA +oor +rSG +cYq +cOg +epj +ylt +rvC +ylt +mDr +pno +pno +tOc +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(175,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +sun +sun +sun +sun +bPT +bPT +bPT +sun +sun +sun +sun +sun +sun +sun +rLA +lyD +lyD +iEV +dMS +gFC +mBe +djb +lJA +nFp +poj +vjQ +sBG +ikA +dch +pBZ +mDH +dch +bcK +iev +mBe +mLJ +hSi +mBe +mBe +mBe +mBe +itm +mBe +mBe +tKV +tKV +tKV +ihj +pNk +bdT +kco +fyx +omG +cam +usT +gpw +fwL +fwL +tKV +tKV +tKV +fwL +fwL +fwL +fwL +fHk +fHk +fHk +fHk +fHk +sit +sit +fHk +sun +fHk +sun +fHk +sun +fHk +sun +ppA +ppA +iyh +hfB +vJo +vJo +ylt +ylt +ylt +vgT +qrz +qrz +xmU +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(176,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +sun +uLk +ofq +sdT +sun +sun +sun +sun +drJ +sun +sun +rLA +lyD +lyD +lyD +dMS +wDG +mBe +mqF +pNa +wkX +tEk +tEk +uKU +fcy +dch +uSZ +xLM +dch +txi +fFN +mBe +kbo +xyy +mBe +iuY +lfV +lWP +gaU +lCv +sun +sun +sun +sun +fwL +qpH +dzm +fFz +hkF +qgh +xHl +aoP +fwL +fwL +fHk +fHk +fHk +fHk +fHk +sit +rJG +sit +fHk +fHk +fHk +fHk +fHk +sun +sOV +fHk +sun +fHk +sun +fHk +sun +fHk +eYg +sun +ppA +dZX +hfB +jBM +vJo +ylt +ylt +sJX +oyv +oyv +ppA +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(177,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +bPT +bPT +bPT +drJ +sun +sun +sun +sun +sun +sun +dNX +lyD +lyD +lyD +dMS +xIF +mBe +vbP +sIK +xLA +gnb +wVa +iiA +bBT +xAQ +dch +gpe +xAQ +gQT +dch +mBe +mBe +mBe +mBe +mBe +bjj +mBe +lCv +lCv +sun +drJ +eVg +sun +ihj +fwL +qsp +hvz +qrC +kpv +lAd +gge +fwL +xXk +fHk +fHk +fHk +fHk +fHk +tYO +eVg +sun +cgx +cgx +cgx +cgx +cgx +sun +sun +sun +sun +sun +eVg +sun +sun +sun +sun +sun +ppA +xrM +hfB +odP +vJo +vJo +ylt +cOD +uql +uql +qOh +tcL +tcL +gAy +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(178,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +sun +sun +sun +sun +sun +sun +gsU +gsU +gsU +gsU +gsU +gsU +hKV +hKV +hKV +hKV +roR +mBe +paD +cxM +fAL +aBT +fJL +sJY +qyn +oMy +kWg +qfa +lpK +gGc +pjN +hRk +ijr +qcG +ijr +aln +vSu +hKS +sfC +eOn +wjz +eYg +sun +sun +sOV +ihj +ihj +fwL +omG +omG +dEF +oUz +fwL +tvb +jSA +jSA +jSA +jSA +jSA +uyR +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +dGm +ppA +oEP +hfB +hfB +xVm +vJo +ylt +mDr +pno +pno +tOc +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(179,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +hKV +pZq +mBe +lCv +lCv +lCv +lCv +mBe +qlT +jLe +qXZ +gGP +dot +rPO +eYv +geC +mBe +lCv +lCv +lCv +mBe +lCv +lCv +gsU +gsU +eYg +dGm +dGm +qaz +dGm +dGm +dGm +fwL +fki +oUz +oUz +gge +fwL +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +ppA +vkF +hfB +cWb +cGM +vJo +epj +vgT +qrz +qrz +xmU +tcL +tcL +oaK +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(180,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lCv +mdW +rWF +xAQ +wiu +lMh +xIh +rSI +bzL +lCv +oNP +oNP +oNP +oNP +oNP +oNP +oNP +gsU +gsU +gsU +gsU +gsU +gsU +gsU +gsU +fwL +gPW +jpw +div +fwL +fwL +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ppA +ppA +kIq +hgr +oso +ppA +ppA +ppA +ppA +ppA +ppA +ppA +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(181,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +lCv +lCv +lCv +mBe +lCv +lCv +mBe +lCv +lCv +lCv +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +fwL +fwL +fwL +fwL +fwL +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +ppA +vJo +vJo +vJo +ppA +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(182,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(183,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(184,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(185,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(186,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(187,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(188,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(189,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(190,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(191,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(192,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(193,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(194,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(195,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(196,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(197,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(198,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(199,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(200,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(201,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(202,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(203,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(204,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(205,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(206,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(207,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(208,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(209,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(210,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(211,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(212,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(213,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(214,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(215,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(216,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(217,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(218,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(219,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(220,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(221,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(222,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(223,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(224,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(225,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(226,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(227,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(228,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(229,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(230,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(231,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(232,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(233,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(234,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(235,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(236,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(237,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(238,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(239,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(240,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(241,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(242,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(243,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(244,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(245,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(246,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(247,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(248,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(249,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(250,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(251,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(252,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(253,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(254,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} +(255,1,3) = {" +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +oNP +"} diff --git a/_maps/stations/boxstation.dmm b/_maps/stations/boxstation.dmm new file mode 100644 index 000000000000..040f6c80f8fe --- /dev/null +++ b/_maps/stations/boxstation.dmm @@ -0,0 +1,214615 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aac" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/wood/large, +/area/service/library) +"aai" = ( +/turf/closed/wall/r_wall, +/area/science/cytology) +"aas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aau" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"aaC" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"aaD" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aaG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"aaI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"aaP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"aba" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"abg" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"abj" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"abn" = ( +/obj/structure/table, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/pickaxe, +/obj/item/pickaxe{ + pixel_x = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/miningoffice/meteor) +"abv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"abw" = ( +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/science/research) +"abK" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"abO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/stack/package_wrap, +/turf/open/floor/wood/parquet, +/area/service/library) +"abT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"abV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"abX" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"abZ" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ack" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"acr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"acz" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/maintenance/bottom_station_maints/south) +"acN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"acO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"acR" = ( +/obj/machinery/light/small, +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"acU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"adq" = ( +/obj/structure/table, +/obj/item/assembly/igniter{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage" + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"adx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/checkpoint/escape) +"adI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"adL" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"adR" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"adT" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"aef" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"aez" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port) +"aeE" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"aeH" = ( +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/security/processing) +"aeI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aeM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"aeT" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/bottom_station_maints) +"aeW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aeX" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"afg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aft" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"afx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"afK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"afR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/rack, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"agd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"agf" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/vault, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ags" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/escape) +"agy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"agA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"agI" = ( +/obj/structure/door_assembly/door_assembly_mai, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aha" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"ahO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"aih" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"ait" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"aix" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"aiz" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"ajc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -14 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"aji" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"ajj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ajk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/prison) +"ajm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"ajn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"ajo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ajp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical) +"ajx" = ( +/obj/machinery/mecha_part_fabricator/service, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"ajG" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"ajH" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ajM" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 7" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"ajN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/atmos) +"ajO" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/security/prison/safe) +"ajR" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Isolation Cell"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"ajS" = ( +/obj/machinery/door/airlock{ + name = "Permabrig Showers" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"akn" = ( +/obj/item/soap/nanotrasen, +/obj/machinery/shower/directional/north, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"aku" = ( +/turf/open/openspace, +/area/hallway/primary/starboard/low_level_service) +"akw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"akz" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/shieldgen{ + active = 1; + anchored = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"akC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"akD" = ( +/obj/structure/sign/painting/library_secure, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"akK" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"akV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"akW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"akX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"alc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"ald" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/toilet/greyscale{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"alj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"alu" = ( +/obj/structure/lattice, +/obj/structure/statue/uranium/nuke, +/turf/open/space/basic, +/area/space/nearstation) +"alE" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"alJ" = ( +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"alM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"alQ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"alR" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"alS" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"alU" = ( +/obj/item/bedsheet/random, +/obj/structure/bed/maint, +/obj/machinery/button/door{ + id = "cells"; + name = "Shutters Control Button"; + pixel_x = -24; + pixel_y = 8; + req_access_txt = "29" + }, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/effect/decal/cleanable/cum, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"ama" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"amf" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/engineering"; + dir = 8; + name = "Engineering Security APC"; + pixel_x = -25 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"amy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"amz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"amA" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"amN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"amX" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"amZ" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/four) +"ana" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/service/chapel/main) +"anb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ane" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"anh" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"any" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"anz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"anD" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"anH" = ( +/obj/structure/holosign/barrier/atmos, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"anI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"anK" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"anZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"aoa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aof" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"aoh" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"aoi" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"aov" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/bed/maint, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"aoI" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aoK" = ( +/obj/machinery/camera/autoname, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"aoL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aoM" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"aoN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"aoO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"aoP" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"aoX" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/wallframe/camera{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/wallframe/camera{ + pixel_x = 5 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"apg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"apn" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"apu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"apx" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"apy" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"apz" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"apB" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"apF" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"apT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"apU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"apX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"apZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"aqg" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aqo" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"aqp" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"aqq" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"aqr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"aqt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"aqv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aqx" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aqG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"aqN" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"aqU" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/server) +"ara" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"arf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"arg" = ( +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"ari" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"arj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"ark" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"arl" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"arn" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aro" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"arp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"asb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"asf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ask" = ( +/obj/structure/dresser, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"asm" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"asp" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"asq" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"asr" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"ast" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"asu" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cab3"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"asD" = ( +/obj/machinery/computer/security/labor, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/processing) +"asK" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"asL" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cab4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"asM" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"asU" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"asV" = ( +/obj/structure/cable, +/obj/machinery/light, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"asX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"asZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"atf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/kachalka) +"ath" = ( +/turf/closed/wall, +/area/commons/fitness/kachalka) +"atj" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"atl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"atm" = ( +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"atr" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"ats" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"atw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"atQ" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"aua" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"aun" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"aup" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab4"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"aut" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"aux" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"auy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"auz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"auO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/fore) +"auS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"auU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"auX" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"auZ" = ( +/turf/open/floor/plasteel, +/area/maintenance/space_hut) +"avc" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/janitor) +"avk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/commons/dorms) +"avl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"avt" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"avu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"avw" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge/cryo) +"avD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"avI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"avN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"avP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"avS" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/candle, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"avV" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman/biogen, +/obj/effect/turf_decal/trimline/brown/warning, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"avW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/warning, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"avX" = ( +/obj/structure/table, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare{ + pixel_y = 4 + }, +/obj/item/flashlight/flare{ + pixel_y = 8 + }, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"avZ" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"awj" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"awn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock{ + id_tag = "Dorm7"; + name = "Dorm 7" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"awq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"awr" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"awt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"awv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"awx" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"awy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"awz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"awA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"awB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"awC" = ( +/obj/machinery/vending/custom, +/turf/closed/wall, +/area/commons/vacant_room/commissary/second) +"awE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"awM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"awP" = ( +/obj/structure/festivus{ + anchored = 1; + name = "шест" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/light, +/area/commons/fitness/kachalka) +"awW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"axb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"axf" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"axh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"axi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"axz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"axI" = ( +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"axQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"axR" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"axT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"axV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"axW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/solars/port/aft) +"axX" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"axY" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge/cryo) +"ayr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ayw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"ayB" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"ayD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ayH" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ayV" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/four) +"aza" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aze" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/commons/dorms) +"azh" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"azj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"azk" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central/low_level_eva) +"azl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"azn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/cryo) +"azq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"azr" = ( +/obj/item/stack/ammonia_crystals, +/obj/item/stack/ammonia_crystals, +/obj/item/stack/ammonia_crystals, +/obj/item/stack/ammonia_crystals, +/obj/item/stack/ammonia_crystals, +/obj/structure/rack, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"azt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"azu" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"azB" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"azD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/glass/rag, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"azX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"aAb" = ( +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"aAd" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"aAl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aAq" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical/old, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aAr" = ( +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/tacmap/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aAs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aAy" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aAJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical) +"aAX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"aAZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aBa" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"aBb" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/hydroponics/constructable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"aBn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aBy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aBz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aBD" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/starboard/low_level_service) +"aBQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"aBR" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"aBX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"aBZ" = ( +/obj/machinery/computer/gateway_control, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"aCb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aCd" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"aCe" = ( +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"aCg" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aCl" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aCp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aCq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"aCr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aCt" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library/artgallery) +"aCy" = ( +/obj/structure/closet/crate/large, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aCz" = ( +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"aCB" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCF" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"aCL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aCY" = ( +/obj/machinery/light/small/red, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aDe" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"aDk" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"aDn" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/wood, +/area/service/library/upper) +"aDo" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"aDq" = ( +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/maintenance/space_hut/plasmaman) +"aDz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aDC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aDD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"aDH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"aDL" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aDN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aDQ" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/epinephrine, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aDT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aDU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aEc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/theater) +"aEs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aEA" = ( +/turf/closed/wall/r_wall, +/area/service/theater) +"aEB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"aEE" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aEF" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"aEG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aEP" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aFe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aFk" = ( +/obj/machinery/camera{ + c_tag = "Theatre Storage" + }, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 2 + }, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"aFo" = ( +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "visitation"; + name = "Visitation Shutters"; + pixel_x = 6; + pixel_y = 25; + req_access_txt = "2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aFC" = ( +/turf/open/openspace, +/area/maintenance/department/electrical) +"aFL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"aFS" = ( +/turf/open/floor/plasteel/white/side, +/area/maintenance/bottom_station_maints/south) +"aGb" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aGd" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"aGe" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/security/prison) +"aGg" = ( +/obj/machinery/camera/motion{ + c_tag = "EVA Motion Sensor" + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aGl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aGm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aGn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aGo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aGy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"aGE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aGI" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aGO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 1; + freq = 1400; + location = "Janitor" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/janitor) +"aGP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"aGQ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"aGX" = ( +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aHd" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aHp" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"aHr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"aHu" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aHw" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"aHA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aHG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"aHK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aHL" = ( +/obj/machinery/door/airlock/command/glass{ + name = "EVA Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aHN" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aHV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aHW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"aId" = ( +/turf/closed/wall, +/area/commons/cryopods) +"aIi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aIj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aIr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aIt" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge/shop) +"aIK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aIN" = ( +/obj/machinery/door/airlock/security{ + name = "Permabrig Visitation" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"aIP" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aIR" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison) +"aIS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"aIT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aIY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"aJd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"aJe" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"aJj" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/crowbar, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"aJk" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"aJp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/tacmap/directional/east, +/turf/open/floor/wood, +/area/service/library/upper) +"aJB" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/smartfridge/disks, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aJC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aJF" = ( +/obj/machinery/camera{ + c_tag = "Library North" + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"aJG" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aJW" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"aKa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aKd" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"aKi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/primary/aft/exploration) +"aKj" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aKk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aKl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aKu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aKv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"aKw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"aKz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aKA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aKE" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"aKL" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry/public) +"aKO" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"aKT" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"aKZ" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/wood/parquet, +/area/service/library) +"aLb" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 13; + id = "ferry_escape"; + name = "NT SS13: Отбытие"; + width = 5 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"aLg" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Genetics Lab Maintenance"; + req_access_txt = "9" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Biohazard"; + name = "карантин" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aLh" = ( +/obj/structure/chair/office, +/turf/open/floor/wood/parquet, +/area/service/library) +"aLj" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aLu" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aLz" = ( +/obj/machinery/door/poddoor{ + id = "executionspaceblast" + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"aLE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aLL" = ( +/obj/item/westposter, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/commons/fitness/kachalka) +"aLM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"aLV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aLX" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/key/janitor, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"aLY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aMb" = ( +/obj/structure/bed/maint, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"aMI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"aMK" = ( +/obj/machinery/vending/games, +/turf/open/floor/wood/parquet, +/area/service/library) +"aMW" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"aNb" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aNd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aNo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"aNu" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"aNv" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aND" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"aNQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"aNV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"aNZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aOo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"aOq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"aOB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"aOC" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay South"; + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"aOF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"aOU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"aOZ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"aPg" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"aPj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aPp" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"aPt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aPv" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aPw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"aPz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aPA" = ( +/turf/closed/wall, +/area/commons/locker) +"aPD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aPF" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aPG" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aPH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"aPI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aPK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aPO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -30; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aPP" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"aPZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aQh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"aQm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aQJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aQK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/rack, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/hallway/primary/port/gate) +"aQL" = ( +/obj/structure/lattice, +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space/nearstation) +"aQQ" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"aQT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aQU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aQW" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aQX" = ( +/obj/effect/turf_decal/pool/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aQY" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aQZ" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aRa" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aRh" = ( +/obj/item/hfr_box/body/waste_output, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"aRx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"aRN" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"aRP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/service/library) +"aRT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aRX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/fore) +"aRY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"aRZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aSk" = ( +/obj/structure/pool_ladder, +/turf/open/indestructible/pool/end, +/area/commons/locker) +"aSl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aSy" = ( +/obj/structure/altar_of_gods, +/turf/open/floor/carpet, +/area/service/chapel/main) +"aSN" = ( +/obj/machinery/camera/autoname, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"aSQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aSR" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"aSV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1; + network = list("ss13","perma_brig"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSY" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"aTx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aTB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aTF" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/item/crowbar/large{ + pixel_y = 12 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"aTH" = ( +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aTJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"aTN" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"aUf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Starboard Aft"; + dir = 8; + network = list("ss13","rd","xeno_pens") + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/science/xenobiology) +"aUi" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"aUt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aUz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"aUB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/hallway/secondary/exit/departure_lounge) +"aUV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"aUX" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp{ + pixel_y = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"aVb" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_y = 6 + }, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"aVf" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"aVg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"aVh" = ( +/obj/machinery/light/small, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"aVn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bed, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/spawner/random/contraband/permabrig_gear, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"aVJ" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/courtroom) +"aVL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"aVO" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"aWd" = ( +/obj/structure/bookcase/random/fiction, +/turf/closed/wall, +/area/service/library) +"aWy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aWI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/girder, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aWK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aWO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"aWQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"aXc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"aXm" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"aXo" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aXt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"aXA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"aXF" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aXK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aYd" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aYn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aYo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"aYp" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"aYw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"aYz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aYP" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"aYQ" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/service/library/upper) +"aYT" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"aYX" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"aZa" = ( +/obj/machinery/light, +/obj/effect/turf_decal/siding/white{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"aZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aZw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"aZy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar) +"aZB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"aZM" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"aZP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aZW" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aZZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bab" = ( +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/lab) +"bal" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"ban" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bas" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/carpet, +/area/service/library) +"bat" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/service/library) +"bax" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/wood/large, +/area/service/library) +"baP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"bba" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bbd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/port) +"bbe" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/hallway/primary/port/to_arrival) +"bbs" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"bbD" = ( +/turf/closed/wall, +/area/service/library) +"bbX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"bbZ" = ( +/obj/effect/spawner/random/trash/moisture_trap, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bck" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor"; + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"bcl" = ( +/obj/structure/disposalpipe/trunk/multiz, +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"bcn" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bco" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"bcu" = ( +/obj/item/paper_bin{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/paperplane{ + pixel_x = -6 + }, +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"bcS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"bcT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"bdc" = ( +/obj/structure/rack, +/obj/item/storage/briefcase, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/lawoffice) +"bdg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bdo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bdt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningdock) +"bdS" = ( +/obj/item/toy/crayon/red{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/toy/crayon/orange{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/toy/crayon/green{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/toy/crayon/blue{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/toy/crayon/purple{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/toy/crayon/yellow{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/toy/crayon/white{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/toy/crayon/black{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"bdV" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"bek" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bel" = ( +/obj/effect/landmark/start/bomj, +/obj/structure/chair/brevno/log2, +/obj/structure/chair/brevno, +/obj/item/instrument/guitar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"bem" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ber" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"beu" = ( +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + pixel_y = -32 + }, +/obj/item/coffee_cartridge/fancy, +/obj/item/coffee_cartridge/fancy, +/obj/item/coffee_cartridge/fancy, +/obj/item/coffee_cartridge/fancy, +/obj/structure/rack, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"bew" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"beO" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"beQ" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bfe" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"bft" = ( +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"bfC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"bgk" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bgC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"bgV" = ( +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"bhs" = ( +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"bhG" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"bhJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bhX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"big" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/obj/item/stack/wrapping_paper{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/stack/package_wrap{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"bij" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bik" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 4"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"bim" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/scanning_module_t2, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"biw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"biA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"biB" = ( +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"bje" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bjf" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bjj" = ( +/obj/machinery/keycard_auth{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"bjm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bjo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/science/xenobiology) +"bjq" = ( +/obj/structure/rospilovo/switcher, +/turf/closed/wall, +/area/maintenance/bottom_station_maints/north) +"bjr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"bjv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bjI" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bjL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"bjY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/department/medical/morgue"; + dir = 4; + name = "Morgue Maintenance APC"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"bkj" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"bkn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"bkp" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"bkA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bkB" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bkG" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"bkJ" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_prep) +"bkM" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bkR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos/upper) +"bld" = ( +/obj/structure/closet, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"blj" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bln" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"blq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"blP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"blU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/commons/dorms/cabin/three) +"blV" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"blY" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/light, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"bmf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"bml" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/item/toy/sword, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bmz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bmA" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bmM" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"bmP" = ( +/obj/structure/rospilovo/intercom{ + pixel_x = -32 + }, +/obj/machinery/hydroponics/soil, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/obj/item/seeds/berry, +/turf/open/floor/noslip, +/area/maintenance/bottom_station_maints/north) +"bmR" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"bmS" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"bng" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bnk" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bnl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/coffeemaker, +/obj/structure/table/wood, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bnp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/breakroom) +"bnt" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"bnG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"bnS" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"bnZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"bod" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "executionflash"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"boe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/hydroponics) +"bok" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bom" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/maintenance/department/chapel) +"bot" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space) +"boy" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/circuit/green, +/area/science/breakroom) +"boz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"boA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"boC" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/space/nearstation) +"boI" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"boQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"boV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"boZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"bpb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"bpi" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner{ + pixel_y = 8 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bpq" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bpz" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/main) +"bpA" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"bpD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"bpG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"bpJ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Security Maintenance"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/security/upper) +"bpS" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bpX" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/circuit/green, +/area/science/breakroom) +"bql" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/warehouse) +"bqt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"bqC" = ( +/turf/closed/wall, +/area/engineering/atmospherics_engine) +"bqR" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/theater"; + dir = 8; + name = "Theatre APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"brf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bri" = ( +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/port) +"brk" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"brq" = ( +/obj/structure/sign/departments/holy{ + pixel_y = 32 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"brr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"brs" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/maintenance/bottom_station_maints/east) +"brx" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"brD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"brJ" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/security/upper) +"brQ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical/two) +"brX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"brY" = ( +/obj/structure/rospilovo/water/bochka/kap{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"bsf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bsq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bsG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"bsU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"bth" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"btr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"btu" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"btv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"btx" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"btL" = ( +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23"; + security_level = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"btM" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"buc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table, +/obj/item/book/manual/wiki/telescience, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bud" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bug" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"buw" = ( +/obj/item/radio/intercom{ + pixel_x = -3; + pixel_y = -29 + }, +/obj/machinery/computer/robotics{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/button/door{ + id = "Biohazard_tech"; + name = "Почтовый шлюз"; + pixel_x = 15; + pixel_y = -25; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"buF" = ( +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"buI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"buZ" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bvg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bvi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"bvm" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"bvx" = ( +/obj/machinery/door/airlock/external{ + glass = 1; + name = "Xenobiology External Airlock"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bvC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"bvI" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun"; + name = "Holy Driver" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"bvU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bvX" = ( +/obj/structure/table, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bvY" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"bwg" = ( +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/landmark/start/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"bwk" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bwp" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/southright, +/turf/open/floor/plasteel, +/area/security/prison) +"bws" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"bwz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"bwQ" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/security/prison) +"bwR" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bwS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"bwT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bwU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"bwW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"bwY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bxe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"bxk" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"bxm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bxn" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bxu" = ( +/obj/structure/table, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/security/prison) +"bxy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"bxL" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bxM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"bya" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/curtain/red, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/service/library) +"byc" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"byd" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"byr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"byt" = ( +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"byu" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/controller{ + pixel_y = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"byE" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/space/basic, +/area/space) +"byG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"byI" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"byK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"byP" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"byQ" = ( +/obj/machinery/door/window/eastright{ + name = "Bar Access" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"byT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bzc" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/southleft, +/turf/open/floor/plasteel, +/area/security/prison) +"bze" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"bzg" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bzm" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/main) +"bzs" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bzy" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bzE" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Xenobiology Exit"; + req_one_access_txt = "12;13;55" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bzL" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"bzO" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"bzU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bAa" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bAu" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Permabrig Maintenance"; + req_access_txt = "1" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/prison) +"bAC" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bAL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/maintenance/bottom_station_maints) +"bAM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/camera/autoname{ + dir = 5; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bAS" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"bBb" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bBg" = ( +/obj/machinery/computer/shuttle_flight/mining/common{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/hallway/secondary/entry/public) +"bBj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"bBk" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"bBn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"bBp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"bBu" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"bBF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"bBJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"bBM" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"bCi" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"bCj" = ( +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/engine, +/area/science/research/abandoned) +"bCq" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"bCF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCS" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"bCX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bDb" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bDk" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"bDl" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/trimline/brown/warning, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"bDw" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/item/radio/intercom{ + pixel_x = 0; + pixel_y = 29 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bDx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"bDy" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bDz" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bDC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bDI" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"bDN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"bDT" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -35 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"bDV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"bDY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bEg" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bEi" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"bEk" = ( +/obj/machinery/computer/mech_bay_power_console, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"bEx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"bEy" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bEC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/science/research/abandoned) +"bEJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bEU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"bFb" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"bFd" = ( +/turf/closed/wall, +/area/science/mixing) +"bFg" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bFw" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 4; + name = "Greenhouse Access"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"bFz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/misc_lab) +"bFE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"bFH" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFP" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"bFT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"bFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/multitool/circuit{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/multitool/circuit{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"bGi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/displaycase/trophy, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bGv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"bGw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bGx" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"bGY" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bGZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"bHb" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"bHc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bHe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bHf" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/item/pickaxe, +/obj/item/mining_scanner, +/obj/item/storage/bag/ore, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bHg" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bHh" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bHi" = ( +/obj/structure/window{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port) +"bHo" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/toy/cards/deck, +/obj/item/storage/pill_bottle/dice, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"bHq" = ( +/obj/machinery/status_display/evac{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"bHJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bHM" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"bHN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"bHO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft/restroom) +"bHT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"bHV" = ( +/turf/open/floor/plasteel/white/side, +/area/science/lab) +"bIg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bIr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"bIs" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"bIw" = ( +/obj/machinery/button/door{ + id = "xenobio5"; + layer = 3.3; + name = "Xenobio Pen 5 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"bIx" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bIy" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bIz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/science{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"bIA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/structure/sign/departments/science/alt{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"bIB" = ( +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/structure/table, +/obj/machinery/door_buttons/access_button, +/obj/item/clothing/mask/gas{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"bIC" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"bID" = ( +/obj/structure/ladder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"bIL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"bJb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"bJj" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"bJk" = ( +/turf/open/floor/plating, +/area/engineering/storage/tech) +"bJu" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"bJA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bJC" = ( +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"bJD" = ( +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"bJK" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bJU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/storage) +"bJX" = ( +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 2"; + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/aft) +"bKe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/space/nearstation) +"bKj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"bKk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"bKm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"bKI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"bKN" = ( +/turf/closed/wall, +/area/science/test_area) +"bKO" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"bKS" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"bKU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bLe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"bLx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/primary/aft/restroom) +"bLy" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"bLz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"bLA" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"bLC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"bLR" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bLT" = ( +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"bMi" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 4"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bMk" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bMl" = ( +/obj/structure/cable, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"bMp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bMq" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/prison) +"bMF" = ( +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"bMH" = ( +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bML" = ( +/turf/closed/wall/r_wall, +/area/service/hydroponics/garden) +"bMX" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bNb" = ( +/obj/item/airlock_painter, +/obj/structure/lattice, +/obj/structure/closet, +/turf/open/space/basic, +/area/space/nearstation) +"bNg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"bNr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"bNI" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/aft/restroom) +"bNJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"bNK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"bNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bNP" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bNW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bOf" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/sign/prison/kolesa{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"bOi" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space/nearstation) +"bOm" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"bOO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Shields Control"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos/project) +"bOY" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bPf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bPj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"bPx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bPz" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"bPA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bPB" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bPC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"bPQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"bPV" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bQc" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/aft/restroom) +"bQr" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bQt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"bQE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"bQF" = ( +/obj/machinery/door/airlock/engineering{ + name = "Vacant Office A"; + req_access_txt = "32" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"bQK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"bQN" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bQP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"bRd" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/camera/autoname, +/turf/open/floor/plating, +/area/maintenance/aft) +"bRl" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/window/reinforced/tinted, +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/primary/aft/restroom) +"bRt" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bRu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"bRA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bRJ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"bRQ" = ( +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/hallway/secondary/entry/south_hall) +"bRT" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"bRU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"bRV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"bRW" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"bRX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"bSe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"bSi" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/engineering/main) +"bSp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"bSt" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"bSv" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"bSw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"bSz" = ( +/obj/machinery/newscaster/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/hallway/primary/aft/restroom) +"bSB" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/storage/tech) +"bSN" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"bSO" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "Xenobio Pen 7 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bST" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"bSY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"bTb" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"bTc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"bTd" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bTk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"bTr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"bTz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/storage/tech) +"bTF" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthWest"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"bTG" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"bTH" = ( +/obj/structure/sign/departments/mait, +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"bTI" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"bUc" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/tcommsat/server/upper) +"bUi" = ( +/obj/machinery/portable_atmospherics/canister/bz, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"bUo" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"bUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"bUv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bUx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"bUD" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/r_wall, +/area/maintenance/department/electrical/two) +"bUI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bUJ" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bUN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"bVa" = ( +/obj/machinery/door/window{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bVe" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/cum, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"bVk" = ( +/obj/machinery/button/door{ + id = "xenobio10"; + layer = 3.3; + name = "Xenobio Pen 10 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bVn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/pod{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"bVx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"bVB" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/primary/aft/exploration) +"bVE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bamboo{ + dir = 1 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"bVI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"bVQ" = ( +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"bVR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bVS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bVV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"bVW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"bWb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Cafeteria" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"bWc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"bWm" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 10"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio10"; + name = "Xenobio Pen 10 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"bWp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/exploration) +"bWx" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/monofloor, +/area/commons/vacant_room/commissary/third) +"bWy" = ( +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft/exploration) +"bWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"bWB" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"bWN" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/door_seal{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/door_seal{ + pixel_x = 2 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"bWQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"bWR" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"bWS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"bWV" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"bXe" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bXi" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/extinguisher, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"bXv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"bXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"bXA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bXG" = ( +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"bXM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"bXP" = ( +/turf/closed/wall, +/area/engineering/atmos/project) +"bYa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"bYt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"bYv" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/camera/autoname{ + dir = 5; + network = list("ss13","perma_brig") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -30; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bYw" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bYz" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/hallway/primary/aft/restroom) +"bYA" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"bYB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"bYF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"bYV" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz{ + color = "#ffc600"; + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"bZb" = ( +/obj/machinery/button/door{ + id = "xenobio9"; + layer = 3.3; + name = "Xenobio Pen 9 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bZh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"bZj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft/exploration) +"bZl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"bZm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bZo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"bZB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"bZT" = ( +/obj/structure/table, +/obj/item/clothing/suit/hooded/wintercoat/science, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"bZW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bZY" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"caj" = ( +/obj/effect/landmark/navigate_destination/disposals, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cat" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"caC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"caO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"caR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"cbe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research/abandoned) +"cbg" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"cbj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/primary/aft/exploration) +"cbl" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cbp" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"cbx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cbC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"cbR" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 3"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cbU" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"cbV" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"cbX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"cce" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"cci" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server/upper) +"ccl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ccv" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ccB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "atmos_reactor_shutters"; + name = "бронеставни выхода в теха"; + pixel_y = -32; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"ccC" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ccI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"ccQ" = ( +/obj/machinery/button/door{ + id = "xenobio2"; + layer = 3.3; + name = "Xenobio Pen 2 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"ccR" = ( +/obj/machinery/status_display/evac{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"cdb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cdv" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cdE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"cdS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"cdZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ced" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cef" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"ces" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"ceu" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ceE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"ceJ" = ( +/turf/open/openspace, +/area/commons/fitness/recreation) +"cfg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cfw" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"cfD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cfI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"cgk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "Xenobio Pen 2 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cgn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cgs" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"cgA" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"cgC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"cgE" = ( +/obj/machinery/camera{ + c_tag = "Prison Visitation"; + dir = 1; + network = list("ss13","perma_brig") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"cgF" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cgJ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"cgQ" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/service/library) +"cgW" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"chr" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 2"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "Xenobio Pen 2 Blast Door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"chu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"chR" = ( +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"chU" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cio" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ciB" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ciI" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"ciM" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/closet/secure_closet/courtroom, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ciO" = ( +/obj/machinery/camera/autoname, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"ciQ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"ciS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"ciU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"cja" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"cjp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/hallway/primary/aft/exploration) +"cjw" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"cjx" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 2 + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/service/hydroponics) +"cjz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"cjB" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cjD" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cjG" = ( +/obj/machinery/vending/sustenance, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cjI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"cjO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cjW" = ( +/obj/effect/landmark/blobstart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cjZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"cke" = ( +/obj/structure/rack, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"ckg" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ckl" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plating, +/area/security/prison) +"cko" = ( +/obj/structure/disposalpipe/trunk/multiz, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"ckw" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"ckz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "vroomshutter"; + name = "Vacant Room Shutter" + }, +/turf/open/floor/plating, +/area/commons/vacant_room) +"ckA" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"ckG" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ckK" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"ckT" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"clo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"clq" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"cls" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"clx" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/aft) +"cly" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"clz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"clB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"clN" = ( +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"clZ" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"cmn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"cmw" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"cmx" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"cmO" = ( +/obj/effect/landmark/navigate_destination/tools, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"cmR" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space) +"cmX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"cnd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cni" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"cnj" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"cnk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cnp" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cnE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"cnF" = ( +/obj/machinery/meter, +/obj/machinery/button/door/incinerator_vent_ordmix, +/obj/machinery/button/ignition/incinerator/ordmix, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing/chamber) +"cnG" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"cnH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cnM" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit/departure_lounge/cryo) +"cnO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table_frame, +/obj/item/wirerod, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/storage_shared) +"cnV" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood/parquet, +/area/service/library) +"com" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"cos" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/power/emitter, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"cot" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/table, +/obj/item/wirecutters{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/wirecutters{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"coD" = ( +/obj/effect/turf_decal/bot_red, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"coG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"coM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"cpb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"cpk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"cpp" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"cpI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"cpO" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"cpX" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"cqA" = ( +/obj/machinery/power/solar{ + id = "auxsolareast"; + name = "Port Auxiliary Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"cqH" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"crk" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"crw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"cry" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"crP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"crR" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"csc" = ( +/turf/closed/wall, +/area/security/courtroom) +"cse" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"csm" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical/two) +"csJ" = ( +/turf/closed/wall, +/area/service/chapel/main) +"ctc" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"cth" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"ctq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"ctt" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ctv" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"cty" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"ctJ" = ( +/obj/structure/table, +/obj/item/mining_scanner{ + pixel_x = 10 + }, +/obj/item/gps/mining/off{ + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ctS" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/south, +/turf/open/openspace, +/area/cargo/storage) +"ctW" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plating, +/area/engineering/main) +"cuc" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Permabrig Kitchen" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cud" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"cug" = ( +/obj/structure/table, +/obj/machinery/oven, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"cuj" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"cul" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cup" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"cus" = ( +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cuy" = ( +/obj/item/blackmarket_uplink, +/obj/structure/closet/crate/cardboard, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"cuG" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cuS" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cuT" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/cytology) +"cva" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"cvb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cvc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvd" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Antechamber Bottom"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cve" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cvf" = ( +/obj/item/folder, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/photo_album/prison, +/obj/item/camera, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"cvh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"cvj" = ( +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/office) +"cvk" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvm" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"cvo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"cvr" = ( +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"cvu" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"cvG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cvJ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"cvM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvS" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"cvT" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvV" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/security/prison) +"cvX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/turret_protected/aisat/hallway) +"cvZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"cwc" = ( +/obj/structure/cable, +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cwd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"cwe" = ( +/obj/machinery/vending/cola/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cwf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"cwg" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber North Bottom"; + network = list("aicore") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"cwk" = ( +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cwr" = ( +/obj/machinery/light/small, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"cwu" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Port" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"cwz" = ( +/turf/closed/wall, +/area/maintenance/aft) +"cwA" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cwE" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/solars/port/aft) +"cwG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/obj/effect/turf_decal/tile/hex/purple, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos/upper) +"cwO" = ( +/obj/structure/railing, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"cxi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"cxt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/warehouse) +"cxx" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cxB" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"cxN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"cxQ" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/hallway/secondary/entry/public) +"cxR" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"cxW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"cxY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"cyb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"cyk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cyy" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/commons/fitness/recreation) +"cyA" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"cyK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cyM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cyY" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry/public) +"czh" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"czp" = ( +/obj/structure/table, +/obj/item/storage/fish_case/random/freshwater{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/storage/fish_case/random/freshwater{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/storage/fish_case/random/freshwater{ + pixel_x = -6; + pixel_y = 13 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"czu" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"czG" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to External" + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"czS" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"czU" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"czZ" = ( +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cAf" = ( +/obj/structure/frame/machine, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cAo" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"cAz" = ( +/obj/structure/filingcabinet, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/wood/parquet, +/area/service/library) +"cAF" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cAG" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"cAJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"cAO" = ( +/turf/open/openspace, +/area/maintenance/disposal) +"cAS" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cAV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/science/misc_lab) +"cBa" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"cBe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"cBm" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/griddle, +/turf/open/floor/plasteel, +/area/security/prison) +"cBu" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"cBx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cBz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"cBG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"cBI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cBS" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/aisat/hallway) +"cBV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"cCb" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"cCc" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"cCd" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"cCe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"cCj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"cCA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cCB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"cCC" = ( +/obj/structure/table, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"cCE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"cCF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"cCG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"cCL" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cCS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"cCT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"cCW" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cCY" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cDj" = ( +/obj/machinery/button/door{ + id = "vroomshutter2"; + name = "Vacant Room Shutter Control"; + pixel_x = 26; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"cDk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/maintenance/disposal/incinerator) +"cDl" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cDz" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"cDC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"cDI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDK" = ( +/obj/machinery/light_switch{ + pixel_x = 26; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/xenobiology) +"cDR" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cDS" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"cEg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/mixing) +"cEm" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"cEq" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Foyer"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cEH" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"cEK" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness) +"cEL" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cEP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"cEW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cFb" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cFc" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"cFe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"cFf" = ( +/obj/structure/rospilovo/propane/dual{ + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"cFs" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"cFL" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cFR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"cGk" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cGv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"cGT" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cGY" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cHi" = ( +/turf/closed/wall, +/area/hallway/primary/fore/brig_enter) +"cHj" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cHl" = ( +/obj/structure/railing, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"cHo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"cHt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"cHx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cHK" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cHW" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cHZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cIg" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "NT SS13: Arrivals dock"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"cIh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cIn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cIo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"cIC" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/layer2, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"cIE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/solars/port/fore) +"cIO" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"cIS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cIV" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cIX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"cJg" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"cJj" = ( +/obj/structure/table/glass, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cJk" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/miningoffice/meteor) +"cJu" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"cJv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"cJC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"cJF" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"cJJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/four) +"cJS" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/carpet, +/area/service/chapel/main) +"cKd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"cKl" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"cKp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/openspace, +/area/maintenance/port) +"cKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"cKR" = ( +/obj/machinery/door/window/southleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/service/bar) +"cKU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"cKV" = ( +/obj/structure/bookcase/random, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cLe" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"cLn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cLy" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/maintenance/port/aft) +"cLC" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"cLS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage) +"cMc" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"cMd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe"; + pixel_x = -4 + }, +/turf/open/floor/wood, +/area/service/bar) +"cMf" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"cMh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"cMk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"cMs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"cMD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"cMN" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cNg" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director RC"; + pixel_x = -2; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/computer/department_orders/science, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"cNw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/science/xenobiology) +"cNA" = ( +/obj/item/coin/gold, +/obj/item/coin/iron, +/obj/item/coin/gold, +/obj/item/coin/iron, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cOf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"cOq" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"cOr" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"cOv" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"cOA" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"cOL" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"cOV" = ( +/obj/structure/sign/departments/vault, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"cOY" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/item/folder{ + pixel_x = 3 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cPg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"cPm" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/item/hand_labeler, +/turf/open/floor/wood, +/area/service/bar) +"cPn" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz{ + color = "#8000b6"; + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"cPp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cPw" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"cPK" = ( +/obj/effect/landmark/navigate_destination/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"cPM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"cPN" = ( +/obj/machinery/button/door{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"cQn" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"cQu" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"cQN" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cQV" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"cRz" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"cRO" = ( +/obj/structure/sign/warning/coldtemp, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRS" = ( +/turf/closed/wall, +/area/hallway/primary/starboard/low_level_service) +"cSb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"cST" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"cSU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cTb" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"cTk" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cTn" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"cTo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"cTH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"cTQ" = ( +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"cTS" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/solars/starboard/aft) +"cTX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"cUi" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cUk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel, +/area/commons/dorms) +"cUl" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cUm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"cUo" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Core Hallway Bottom"; + dir = 4; + network = list("aicore") + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"cUp" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cUq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cUD" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External NorthEast Bottom"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cUE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"cUI" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"cUV" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"cVf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cVh" = ( +/obj/machinery/camera{ + c_tag = "Garden"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"cVn" = ( +/turf/open/floor/carpet, +/area/service/chapel/main) +"cVs" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"cVt" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"cVv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cVx" = ( +/obj/structure/bed, +/obj/effect/landmark/xeno_spawn, +/obj/item/bedsheet/dorms, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cVL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cVV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"cWe" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"cWj" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"cWk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"cWl" = ( +/obj/effect/turf_decal/siding/thinplating/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"cWA" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor"; + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"cWH" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cWU" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cXb" = ( +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cXd" = ( +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"cXi" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"cXr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/lawoffice) +"cXE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/nanite) +"cXV" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cXX" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"cYr" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"cYv" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"cYK" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"cYN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"cYX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit/departure_lounge/cryo) +"cZa" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"cZd" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cZf" = ( +/turf/open/openspace, +/area/space) +"cZm" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 2"; + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cZp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"cZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cZE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cZH" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cZK" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"cZN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"cZW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/server/upper) +"dab" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"dal" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/manufactory) +"dan" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"dao" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"daq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"dax" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"daA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"daE" = ( +/obj/machinery/air_sensor/plasma_tank, +/obj/effect/turf_decal/tile/hex/purple, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos/upper) +"daF" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"daK" = ( +/obj/machinery/door/window{ + dir = 4; + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"daQ" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat/hallway"; + dir = 4; + name = "MiniSat Chamber Hallway APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"daY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dba" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"dbd" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_y = -25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"dbj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"dbl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"dby" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"dbF" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Aft"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/science/xenobiology) +"dbI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dbZ" = ( +/obj/machinery/power/solar_control{ + dir = 1; + id = "starboardsolar"; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/maintenance/solars/starboard/aft) +"dcc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"dci" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"dcs" = ( +/obj/structure/table, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"dcF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"dcK" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"dcN" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"dcQ" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"dcU" = ( +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/engineering/atmos/upper) +"ddd" = ( +/obj/machinery/camera{ + c_tag = "MiniSat External South"; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/ai_monitored/turret_protected/ai) +"ddu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"ddv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"ddw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "robo2" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"ddx" = ( +/obj/effect/spawner/random/medical/two_percent_xeno_egg_spawner, +/turf/open/floor/engine, +/area/science/xenobiology) +"ddD" = ( +/obj/machinery/button/door{ + id = "xenobio1"; + layer = 3.3; + name = "Xenobio Pen 1 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"ddI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit) +"ddM" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ddN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"den" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Tool Storage Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"deu" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"deF" = ( +/obj/machinery/power/rad_collector, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"deM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"deP" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"dfp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/port/aft) +"dfq" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dfy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/delamination_counter/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"dfO" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"dfS" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dgt" = ( +/obj/structure/table, +/obj/item/electropack, +/obj/item/screwdriver, +/obj/item/wrench, +/obj/item/clothing/head/helmet, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"dgw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/lab) +"dgy" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dgB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"dgP" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/aft) +"dgU" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"dgY" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"dhb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"dhB" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/solars/port/fore) +"dhC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"dhG" = ( +/turf/open/floor/wood, +/area/commons/dorms/four) +"dhK" = ( +/obj/machinery/computer/holodeck, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"die" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"dij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"din" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/aft) +"dip" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"diu" = ( +/obj/structure/table, +/obj/item/trash/plate, +/obj/item/mining_thing/burned{ + pixel_y = 11 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"diw" = ( +/turf/closed/wall/r_wall, +/area/science/genetics) +"diO" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"diT" = ( +/obj/machinery/button/door{ + id = "maint2"; + name = "Blast Door Control B" + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"diX" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + req_one_access_txt = "2;101"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"diZ" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"djb" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"dje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"djf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"djq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/hydroponics) +"dju" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"djE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"djH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"djM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"djR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"dke" = ( +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"dkj" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dkk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"dkn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"dkz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"dla" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/computer/bounty{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"dlq" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"dls" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"dma" = ( +/turf/open/openspace, +/area/commons/locker) +"dmk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"dmA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"dmM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"dmT" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"dnF" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"dnK" = ( +/obj/structure/railing, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/service/chapel/main) +"dnP" = ( +/obj/structure/cable, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"dnS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"dnT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/processor/slime, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dnY" = ( +/turf/open/floor/plasteel/airless, +/area/space/nearstation) +"dok" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"doz" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"doD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"doS" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/maintenance/department/electrical) +"dpn" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dpw" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dpA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dpJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"dpQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"dqb" = ( +/obj/structure/chair/office, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"dqn" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"dqq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"dqB" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"dqL" = ( +/obj/machinery/button/door{ + id = "xenobio11"; + layer = 3.3; + name = "Xenobio Pen 11 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"dre" = ( +/obj/structure/table, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/storage/bag/plants/portaseeder, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"dro" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"drr" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"drC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"drG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"drK" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"drX" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/engineering/main) +"dsh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"dsj" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"dsp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "Xenobio Pen 7 Blast Door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"dsr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"dsN" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"dsU" = ( +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"dti" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 1 North"; + dir = 1 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/floor/directional/west, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"dtl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"dtv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + dir = 4 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/qm) +"dtx" = ( +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/south) +"dtz" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dtB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"dtF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"dtT" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/item/camera/detective, +/obj/item/hand_labeler, +/turf/open/floor/carpet, +/area/security/detectives_office) +"dud" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"duj" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"dum" = ( +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"duy" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"duA" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"duB" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"duE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"duF" = ( +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"duK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"duN" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"duQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"duS" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dvg" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"dvt" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/escape) +"dvE" = ( +/obj/structure/table/reinforced, +/obj/item/food/urinalcake{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"dvL" = ( +/obj/item/clothing/glasses/meson, +/obj/item/flashlight, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"dvO" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"dvW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"dwm" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2O Outlet Pump" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos/upper) +"dwp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"dwt" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom4"; + name = "Unit 4" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"dwM" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/science"; + name = "Science Security APC"; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"dwY" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"dxd" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock External"; + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"dxf" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/commons/fitness/recreation) +"dxv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/sign/departments/science/alt{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"dxD" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"dxJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dym" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dyp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"dyt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"dyw" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"dyJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"dza" = ( +/obj/machinery/door/airlock/research{ + name = "Research Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/science/research) +"dzk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"dzK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"dAm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dAp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"dAz" = ( +/obj/structure/table, +/obj/item/aicard{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"dAG" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dAI" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"dAJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"dAP" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"dAV" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"dAX" = ( +/obj/structure/cable, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical/two) +"dAY" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/hallway/primary/port/to_arrival) +"dBc" = ( +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = -26; + pixel_y = 25; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"dBs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"dCw" = ( +/obj/machinery/vending/boozeomat/all_access, +/turf/closed/wall, +/area/maintenance/port/aft) +"dCB" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"dCD" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"dCE" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"dCG" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"dCH" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"dCI" = ( +/obj/effect/landmark/start/bomj, +/obj/structure/bed/maint, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"dCO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dCW" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/openspace, +/area/maintenance/space_hut/plasmaman) +"dCZ" = ( +/turf/closed/wall, +/area/science/research) +"dDd" = ( +/obj/structure/curtain{ + color = "#ff0000"; + open = 0 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/decal/cleanable/cum, +/obj/effect/decal/cleanable/cum, +/obj/effect/decal/cleanable/cum, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/kachalka) +"dDe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dDi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"dDk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"dDs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice/meteor) +"dDL" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/turf/open/floor/wood, +/area/lawoffice) +"dDM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"dDQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"dDT" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"dDW" = ( +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"dEe" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"dEi" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"dEI" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 10; + id = "mining_home"; + name = "NT SS13: Mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/large; + width = 7 + }, +/turf/open/floor/engine, +/area/maintenance/port/aft) +"dET" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dEX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"dFt" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"dFu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 2; + id = "pod_lavaland4"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"dFB" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"dFC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"dFH" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"dFI" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"dFS" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"dFY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"dGq" = ( +/obj/structure/rospilovo/shina3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"dGz" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 11"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio11"; + name = "Xenobio Pen 11 Blast Door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"dGF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dGG" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"dGL" = ( +/obj/effect/landmark/blobstart, +/obj/item/clothing/suit/ianshirt, +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port) +"dGP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"dHa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"dHc" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + network = list("ss13","rd") + }, +/obj/machinery/button/door{ + id = "robotics"; + name = "Shutters Control Button"; + pixel_x = 6; + pixel_y = 24; + req_access_txt = "29" + }, +/obj/structure/table, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/instrument/piano_synth/headphones/spacepods, +/obj/item/radio/headset/headset_sci{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/storage/part_replacer/stock_parts_box_x10/scanning_module_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dHd" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"dHm" = ( +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"dHp" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"dHJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dHM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"dHN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/checkpoint/escape) +"dHO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"dHP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"dHR" = ( +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/openspace, +/area/ai_monitored/command/nuke_storage) +"dHX" = ( +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/prison) +"dIb" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"dIc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"dIq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/chair, +/turf/open/floor/plating, +/area/space/nearstation) +"dIv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"dIC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/bar) +"dID" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"dIE" = ( +/obj/item/stack/cable_coil/fifteen, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"dIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"dIG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dIM" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"dIQ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"dIU" = ( +/obj/effect/landmark/navigate_destination/cargo, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"dIV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma/five, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dIX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"dIY" = ( +/obj/machinery/vending/medical, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"dJh" = ( +/obj/item/toy/crayon/spraycan{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/structure/table/wood, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/item/wirecutters, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"dJx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"dJH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"dJI" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"dJJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"dJQ" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 1; + name = "Service Hall APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"dKc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"dKj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dKG" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"dKJ" = ( +/obj/machinery/door/window{ + dir = 1; + name = "Mass Driver"; + req_access_txt = "12" + }, +/obj/machinery/door/window{ + name = "Mass Driver"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/computer/pod/old/mass_driver_controller/shack{ + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"dLg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"dLi" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"dLq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"dLF" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"dLL" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/checkpoint/escape) +"dLV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dMj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"dMm" = ( +/obj/machinery/door/poddoor/multi_tile/four_tile_hor{ + id = "spacepoddoor3" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dMv" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"dMw" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"dMI" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"dMO" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dMP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"dMR" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/office) +"dMT" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side, +/area/science/lab) +"dMU" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"dMV" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore"; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"dMW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dNd" = ( +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"dNj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"dNu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dNx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"dND" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dNN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"dOa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"dOd" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/box, +/obj/structure/marker_beacon, +/turf/open/space/openspace, +/area/space/nearstation) +"dOn" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"dOC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"dOJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"dOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"dOR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"dOT" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dOU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"dOW" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"dPe" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"dPq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/port/aft) +"dPx" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"dPG" = ( +/obj/effect/turf_decal/bot, +/obj/vehicle/ridden/forklift/cargo{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"dPK" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"dPO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"dPV" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"dQn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dQE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"dQK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dQX" = ( +/obj/machinery/button/door{ + id = "manufactory1"; + layer = 3.3; + name = "Manufactory Privacy"; + pixel_x = 32; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"dRe" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/tools"; + dir = 1; + name = "Auxiliary Tool Storage APC"; + pixel_y = 25 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"dRi" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/checkpoint/escape) +"dRk" = ( +/obj/structure/fluff/hedge, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"dRr" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"dRz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"dRA" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"dRG" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/primary/starboard/low_level_service) +"dRM" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"dSr" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Laboratory"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"dSI" = ( +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/commons/fitness/kachalka) +"dSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/commons/fitness) +"dSM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"dSR" = ( +/obj/machinery/atmospherics/components/binary/valve/on{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"dTo" = ( +/obj/structure/sign/departments/custodian{ + pixel_y = -32 + }, +/turf/open/openspace, +/area/space) +"dTy" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dTI" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"dTQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"dTV" = ( +/obj/machinery/button/door{ + id = "arrivalsb"; + name = "Blast Door Control"; + pixel_y = -32 + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor/multi_tile/three_tile_ver{ + id = "arrivalsb" + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"dTY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/janitor, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"dUc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dUw" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/aft) +"dUG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dUL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"dUO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"dUT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"dUV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"dUZ" = ( +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"dVm" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"dVs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"dVy" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"dVz" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"dVA" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"dVL" = ( +/obj/structure/fluff/hedge, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dVN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"dVU" = ( +/obj/machinery/light_switch{ + pixel_x = 25 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"dWd" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"dWl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"dWo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Service Bay"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"dWC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/marker_beacon/green, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dWM" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"dXd" = ( +/obj/structure/closet, +/obj/item/coin/iron, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dXn" = ( +/obj/structure/table, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"dXq" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"dXC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rnd4"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"dXS" = ( +/obj/structure/curtain/red, +/turf/open/floor/carpet, +/area/service/library) +"dXU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"dYc" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"dYr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"dYt" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"dYv" = ( +/turf/open/openspace, +/area/ai_monitored/command/nuke_storage) +"dYH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"dYK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"dYM" = ( +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dYR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"dZc" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"dZe" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/power/apc{ + areastring = "/area/cargo/office"; + name = "Cargo Office APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"dZo" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Antechamber"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"dZy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"dZF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"eaf" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"eah" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/bottom_station_maints) +"eaj" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/aft) +"eao" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/wood, +/area/service/theater) +"eax" = ( +/obj/machinery/iv_drip, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eaF" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"eaM" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eaY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"eaZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"ebh" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ebD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ebF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/railing/corner, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ebL" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/bar) +"ebU" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"ebY" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"ebZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"ecc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/supply"; + dir = 1; + name = "Cargo Security APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ecd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"ecg" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"ecj" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ecm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"ecr" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat/atmos"; + name = "Atmospherics Turret Control"; + pixel_x = -27; + req_access = null; + req_access_txt = "65" + }, +/obj/structure/stairs/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ect" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"ecQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/aft) +"ecZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/port) +"edi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"edn" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/obj/item/radio/intercom{ + pixel_x = -30 + }, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"eds" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/tacmap/directional/east, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"edu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"edH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "robo1" + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"edR" = ( +/obj/structure/easel, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"edZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"eea" = ( +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/computer/cargo{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eeb" = ( +/obj/machinery/camera{ + c_tag = "Chapel South"; + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"eei" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"eeB" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"eeM" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"efa" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"efq" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"efr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"efs" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"efD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-24" + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"efG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"efJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"efK" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "NT SS13: Cargo Bay"; + width = 12 + }, +/turf/open/openspace, +/area/maintenance/port) +"efX" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"egk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/smartfridge/extract/preloaded, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"egl" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"egr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"egt" = ( +/obj/machinery/camera{ + c_tag = "Xeno Test Chamber Enterance"; + dir = 8; + network = list("ss13","test","rd","xeno") + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"egT" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"egU" = ( +/obj/item/storage/secure/safe{ + pixel_x = 6; + pixel_y = -30 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"ehd" = ( +/obj/structure/cable, +/obj/structure/frame/machine/wired, +/turf/open/floor/engine, +/area/science/misc_lab) +"ehh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"ehl" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"ehw" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"ehE" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ehF" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ehL" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eia" = ( +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/storage) +"eic" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"eid" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry/south) +"eig" = ( +/obj/machinery/button/door{ + id = "Dorm7"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"eit" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"eiv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos/upper) +"eiI" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/structure/sign/clock/directional/south, +/turf/open/floor/wood, +/area/lawoffice) +"eja" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/hydroponics/soil, +/turf/open/floor/plasteel, +/area/security/prison) +"ejh" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/machinery/door/window{ + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"ejj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"ejt" = ( +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"ejy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"ejE" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"ejH" = ( +/obj/structure/table, +/obj/item/paper_bin/construction, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"ejP" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ekk" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"ekE" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ekG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/hydroponics/soil, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ell" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/closed/wall, +/area/cargo/sorting) +"elr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"elB" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/cargo/miningoffice/meteor) +"elN" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"elO" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"elT" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"elW" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"eme" = ( +/obj/structure/lattice, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/openspace, +/area/service/chapel/main) +"emi" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/grenade/chem_grenade/resin_foam, +/obj/item/grenade/chem_grenade/resin_foam, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"emn" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"emu" = ( +/obj/docking_port/stationary{ + dheight = 4; + dir = 8; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "NT SS13: Auxiliary base bay"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"emy" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"emD" = ( +/obj/machinery/button/door{ + id = "xenobio6"; + layer = 3.3; + name = "Xenobio Pen 6 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"emF" = ( +/obj/machinery/camera{ + c_tag = "Engineering West"; + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"emG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"emH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"emI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/frame/machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"eng" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"enu" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"enx" = ( +/obj/effect/decal/cleanable/cum, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"enA" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"enB" = ( +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"enH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/turf/open/floor/light, +/area/service/kitchen) +"enI" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"enS" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eof" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=CHW"; + location = "Lockers" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"eov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"eow" = ( +/obj/machinery/hydroponics/soil, +/obj/item/plant_analyzer, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"eoN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"eoZ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"epk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"epl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"epo" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ept" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"epB" = ( +/obj/structure/fluff/hedge, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"epM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"epN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"epX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eqD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bamboo, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"eqT" = ( +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"eqZ" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"erc" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ero" = ( +/obj/machinery/button/door{ + id = "xenobio4"; + layer = 3.3; + name = "Xenobio Pen 4 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"erw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"erK" = ( +/obj/machinery/iv_drip, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"erO" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced/survival_pod, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"erP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"erQ" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"erX" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"erZ" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"esl" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"esn" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/monkey_energy{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"esv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/science/robotics) +"esy" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"esA" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"esC" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/wood/fifty, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"esK" = ( +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -30; + prison_radio = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/microwave, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/security/prison) +"esN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/obj/item/food/grown/poppy/geranium{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"esT" = ( +/turf/open/space/basic, +/area/space/nearstation) +"etb" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"etd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ete" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"etf" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"etm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Backup Storage"; + req_access_txt = "10"; + security_level = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/second_engy) +"etv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"etC" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison) +"etH" = ( +/obj/structure/grille, +/obj/structure/sign/departments/xenobio{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"etN" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 6 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "18" + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 6 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 1 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 6 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"etS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"euc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eum" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eur" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"euD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"euJ" = ( +/obj/structure/grille, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"euL" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"euT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"euU" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"euV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"evC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"evH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"evZ" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"ewh" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ewy" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ewC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"ewG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"ewK" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"ewR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"ewX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"ewY" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ewZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_eva) +"exj" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/tacmap/directional/east, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"exo" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"exz" = ( +/obj/machinery/computer/nanite_chamber_control{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"exH" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"exJ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"exL" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"exN" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"exO" = ( +/obj/effect/turf_decal/trimline/neutral/line, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"eyd" = ( +/obj/structure/table, +/obj/item/blackmarket_uplink, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eyh" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "toiletbolt_dorm1"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"eyl" = ( +/turf/open/floor/carpet, +/area/hallway/primary/port/to_arrival) +"eyo" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"eyt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"eyG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"eyH" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library/artgallery) +"eyI" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/chapel/main) +"eyT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eze" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ezk" = ( +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"ezz" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"ezH" = ( +/obj/tacmap/directional/north, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"ezJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"eAe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"eAf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"eAk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"eAt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/item/target/clown, +/obj/effect/turf_decal/box/red, +/turf/open/space/openspace, +/area/space/nearstation) +"eAF" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/department/electrical/two) +"eAL" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"eAM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"eAP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"eAY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"eBg" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eBm" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eBn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_lavaland1"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"eBs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"eBz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "EVA"; + pixel_x = -32 + }, +/obj/item/stack/sheet/plasteel/twenty, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"eBI" = ( +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"eBN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"eBR" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"eBS" = ( +/obj/structure/marker_beacon, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"eBZ" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + icon_state = "right"; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"eCc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"eCd" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"eCg" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"eCi" = ( +/turf/closed/wall, +/area/commons/dorms/one) +"eCl" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "north-east of NT SS13"; + width = 23 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"eCA" = ( +/obj/structure/rospilovo/battery{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 12; + pixel_y = 20 + }, +/obj/structure/rospilovo/televizor/broken{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"eCB" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"eCE" = ( +/obj/structure/rack, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"eCG" = ( +/obj/structure/bed, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eCJ" = ( +/obj/structure/rack, +/obj/structure/cable, +/obj/item/stock_parts/cell/super, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"eCK" = ( +/obj/structure/table/glass, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/reagent_containers/glass/beaker/sulphuric{ + pixel_x = 11; + pixel_y = 17 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"eCL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"eDj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"eDk" = ( +/obj/effect/turf_decal/siding/wideplating/dark/end{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/fuel_pellet, +/obj/item/fuel_pellet, +/obj/item/fuel_pellet, +/turf/open/floor/plating, +/area/cargo/qm/perch) +"eDv" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"eDx" = ( +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"eDW" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = 14; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"eDZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"eEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft/exploration) +"eEC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "31" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"eED" = ( +/obj/machinery/door/poddoor/shutters{ + id = "eva_space_out"; + name = "Хранилище скафандров" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"eEY" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eEZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry/south) +"eFe" = ( +/obj/machinery/sparker{ + id = "testigniter"; + pixel_x = -25 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"eFo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"eFI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"eFN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"eFT" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber North"; + network = list("aicore") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"eGo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"eGq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"eGr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"eGt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eGw" = ( +/obj/effect/turf_decal/stripes{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"eGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/grounding_rod, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"eGI" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/displaycase/winner/robust, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"eGQ" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"eGR" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eGS" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"eGT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eGX" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"eGY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"eHu" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"eHv" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"eHw" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"eHx" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"eHG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"eHK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"eHM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eHN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/rust, +/area/maintenance/bottom_station_maints) +"eHP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"eHV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/library) +"eHY" = ( +/obj/item/wrench, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eIg" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"eIi" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"eIk" = ( +/obj/structure/chair/sofa/bench{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"eIl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"eIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eIC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/bar) +"eIJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"eIM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"eIW" = ( +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/robotics/lab) +"eIX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"eIZ" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"eJc" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"eJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"eJx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"eJz" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"eJA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"eJE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/commons/fitness) +"eJO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"eJZ" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 19; + pixel_y = 7 + }, +/obj/item/tank/internals/oxygen/yellow{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/toy/cards/deck{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"eKg" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"eKx" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"eKy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eKE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"eKF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"eKO" = ( +/obj/structure/cable, +/obj/structure/ladder, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"eKQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness) +"eKS" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) +"eKT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer1, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"eLc" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eLr" = ( +/obj/structure/bookcase/random/reference, +/turf/closed/wall, +/area/service/library) +"eLu" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/item/radio/intercom{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"eLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eLM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"eMa" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eMb" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"eMc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/theater) +"eMn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"eMv" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"eMA" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room Access"; + req_access_txt = "8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "бронешторы лаборатории взрывотехники" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"eMW" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"eNq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"eNx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"eNQ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"eOg" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"eOl" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/carpet, +/area/service/chapel/main) +"eOv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"eOF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eOQ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"ePi" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"ePl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ePo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"ePr" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"ePB" = ( +/turf/open/openspace, +/area/hallway/primary/port/vault) +"ePF" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ePI" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ePN" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ePO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"ePQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ePU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"ePZ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"eQs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"eQu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"eQA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/vault) +"eQC" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"eQD" = ( +/obj/machinery/light/floor/directional/east, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"eQE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"eQG" = ( +/obj/structure/table, +/obj/item/lightreplacer{ + layer = 3.02; + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/storage/box/lights/mixed{ + layer = 3.01; + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"eQJ" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"eQR" = ( +/obj/structure/table/reinforced, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/security/prison) +"eQU" = ( +/obj/structure/sign/departments/nanites, +/turf/closed/wall/r_wall, +/area/science/nanite) +"eQW" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"eRj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"eRn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"eRq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eRr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science) +"eRt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"eRx" = ( +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/structure/chair/stool, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eRK" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"eRX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"eSi" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/service/hydroponics) +"eSL" = ( +/obj/structure/table, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/obj/item/stock_parts/micro_laser/high, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"eSM" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/training_machine, +/obj/item/target, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"eSN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"eSQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"eSV" = ( +/obj/machinery/camera{ + c_tag = "Fitness Room South"; + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"eTe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eTf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/qm) +"eTg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"eTh" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"eTq" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"eTB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"eTE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/escape) +"eTG" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eTJ" = ( +/obj/structure/chair/sofa/corp/left, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"eTS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"eTW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"eUi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"eUE" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"eUL" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eUQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"eVm" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark{ + name = "Зона доставки Рейнджеров" + }, +/area/cargo/exploration_mission) +"eVy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"eVA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eVF" = ( +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/solars/starboard/aft) +"eVM" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"eVT" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"eVZ" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eWa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"eWe" = ( +/obj/structure/table, +/obj/item/food/donut/apple, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eWy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"eWL" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eWQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"eWX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"eWY" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"eXc" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eXu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"eXx" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"eXz" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"eXA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"eXG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"eXN" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/mineral/plasma, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"eXT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"eYf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"eYo" = ( +/obj/item/target, +/obj/effect/turf_decal/box/red, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"eYH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eYK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"eZl" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"eZp" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"eZx" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/turret_protected/aisat/hallway) +"eZA" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/sign/departments/science{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"eZC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eZK" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/service/hydroponics) +"eZL" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"eZN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing/corner, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south_hall) +"eZO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"eZQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"eZS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/artgallery) +"fax" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"fay" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/space/nearstation) +"faP" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/port) +"fbc" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fbj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fbm" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"fbp" = ( +/turf/open/floor/plating/beach/sand, +/area/commons/vacant_room/commissary/third) +"fbD" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"fbH" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"fbM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"fbO" = ( +/obj/machinery/rnd/bepis, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"fbS" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark, +/obj/effect/turf_decal/tile/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fbV" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/corner, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/dark_red, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"fcs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fcO" = ( +/turf/open/floor/plasteel/white/side, +/area/science/research) +"fcQ" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"fcY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"fdb" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"fdc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"fdd" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engineering/atmos) +"fdg" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/openspace, +/area/space) +"fdi" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"fdu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"fdw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"fdO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/solars/starboard/aft) +"fea" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"feb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"fek" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 + }, +/turf/open/space/openspace, +/area/science/mixing/chamber) +"fem" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"fey" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"feN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"feS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"ffj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"ffw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ffR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ffT" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 8; + pixel_x = 3 + }, +/turf/open/floor/wood, +/area/service/bar) +"ffX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"fgl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fgy" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fgJ" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fgN" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/light, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"fgQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/rd"; + dir = 1; + name = "RD Office APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/pai_card, +/obj/item/taperecorder{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"fgU" = ( +/obj/machinery/button/door{ + id = "xenobio8"; + layer = 3.3; + name = "Xenobio Pen 8 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"fgW" = ( +/obj/machinery/camera{ + c_tag = "Xeno Test Chamber"; + dir = 4; + network = list("ss13","test","rd","xeno") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"fgX" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fhd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fhw" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/aft) +"fhA" = ( +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"fhJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"fhY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"fhZ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fia" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"fil" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"fiq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"fix" = ( +/obj/item/toy/crayon/spraycan{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/toy/crayon/spraycan{ + pixel_y = 11 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = -8; + pixel_y = 13 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"fiz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/closed/wall, +/area/commons/fitness) +"fiI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/commons/fitness) +"fiK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"fiN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"fiW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"fiZ" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"fja" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"fjm" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"fjq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/science/robotics) +"fjE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"fkd" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"fkm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"fkp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"fkr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/item/storage/belt/utility{ + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"fkt" = ( +/obj/structure/stairs/east, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fkO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fkR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"fkT" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 2; + pixel_y = -5 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"fkU" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"fkZ" = ( +/obj/machinery/iv_drip, +/turf/open/floor/engine, +/area/science/xenobiology) +"flc" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"fli" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"flo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/railing/right{ + dir = 4; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"flr" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"fly" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/full, +/obj/machinery/door/poddoor/multi_tile/three_tile_ver{ + id = "arrivalsb" + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"flB" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP2"; + location = "Stbd" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"flM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"flZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"fmc" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/mixing) +"fme" = ( +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"fmB" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"fmD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"fmS" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"fmT" = ( +/obj/machinery/priem_steklotara, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fmW" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"fnd" = ( +/obj/effect/landmark/start/botanist, +/obj/machinery/holopad, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"fnF" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"fnM" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/pen/red, +/obj/machinery/button/door{ + id = "lawyer_blast"; + name = "Privacy Shutters"; + pixel_x = 25; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/folder/blue{ + pixel_x = -16; + pixel_y = 3 + }, +/obj/item/folder/blue{ + pixel_x = -14; + pixel_y = 1 + }, +/obj/item/folder/blue{ + pixel_x = -13; + pixel_y = -1 + }, +/obj/item/folder/blue{ + pixel_x = -18; + pixel_y = -1 + }, +/obj/item/stamp/law{ + pixel_x = 11; + pixel_y = 2 + }, +/turf/open/floor/wood, +/area/lawoffice) +"fnS" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"fnV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"fnW" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"fob" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fof" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/obj/structure/table, +/obj/item/door_seal{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/item/door_seal{ + pixel_x = -6 + }, +/obj/item/clothing/head/hardhat/weldhat{ + pixel_x = 12; + pixel_y = 5 + }, +/obj/item/clothing/head/hardhat/weldhat/orange{ + pixel_x = 16; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"foi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/holopad, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"fok" = ( +/obj/structure/closet/secure_closet/cytology, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"fop" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"fos" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"fot" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"foV" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door/directional/west{ + id = "toiletbolt_dorm2"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"foZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"fpg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fph" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"fpk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"fpo" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/locker"; + dir = 4; + name = "Locker Room APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fps" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"fpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"fpE" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"fpL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"fpR" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 9"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio9"; + name = "Xenobio Pen 9 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"fqb" = ( +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"fqh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fqj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"fql" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"fqr" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/prison) +"fqv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"fqy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"fqN" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"fqP" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + layer = 3.1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/book/manual/chef_recipes, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"fqS" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"fqV" = ( +/turf/closed/wall/r_wall, +/area/cargo/meeting_room) +"fqX" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat/service"; + name = "Service Bay Turret Control"; + pixel_x = 27; + req_access = null; + req_access_txt = "65" + }, +/obj/structure/stairs/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"frc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"frd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/nanite) +"frC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"frG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"frK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"frM" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"frW" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/hallway/secondary/entry/south) +"fsE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"fsF" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/cargo/qm) +"fsS" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"ftd" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ftp" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/dinner, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"ftx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ftE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ftG" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "Engineering_tech"; + name = "Почтовый шлюз"; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ftR" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/hydro, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fuo" = ( +/turf/closed/wall, +/area/engineering/engine_smes) +"fup" = ( +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"fur" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fut" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"fuC" = ( +/obj/machinery/air_sensor/carbon_tank, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos/upper) +"fva" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"fvf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fvg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/checkpoint/escape) +"fvk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"fvm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"fvt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shieldgen, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/science/research/abandoned) +"fvw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Atmospherics Delivery"; + req_access_txt = "24" + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"fvA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"fvF" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat/hallway"; + name = "Chamber Hallway Turret Control"; + pixel_x = 32; + pixel_y = -24; + req_access = null; + req_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"fvH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"fvI" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"fvJ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fvO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"fvQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fvS" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"fwe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fwt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fwL" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/clothing/mask/balaclava{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"fwQ" = ( +/obj/structure/cable, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"fwZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"fxe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"fxf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"fxi" = ( +/obj/machinery/door/window/southleft{ + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"fxm" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Test Chamber Monitor"; + network = list("test") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"fxn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"fxo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"fxq" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"fxw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"fxI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"fxM" = ( +/turf/open/space/openspace, +/area/maintenance/starboard/fore) +"fxW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fyb" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"fyd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"fyi" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"fyx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/bot, +/obj/item/stack/spacecash/c200, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"fyJ" = ( +/obj/machinery/medical_kiosk, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"fyO" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/research, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"fyP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"fyR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -11; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/folder/yellow{ + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fyV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fza" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"fzt" = ( +/turf/closed/wall, +/area/commons/toilet) +"fzF" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"fzS" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"fAn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fAo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"fAq" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/space/nearstation) +"fAs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"fAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"fAN" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"fAP" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fAS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fAV" = ( +/obj/machinery/light/small, +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"fBn" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"fBu" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/maintenance/bottom_station_maints/south) +"fBw" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"fBy" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"fBE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"fBF" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fBW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"fCb" = ( +/turf/open/floor/light, +/area/commons/fitness/kachalka) +"fCi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"fCj" = ( +/obj/machinery/light/small/red/directional/east, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/camera/autoname/directional/west, +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"fCq" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fCy" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "NT SS13: Fore bay"; + roundstart_template = /datum/map_template/shuttle/labour/box; + width = 9 + }, +/turf/open/space/openspace, +/area/space) +"fCz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"fCZ" = ( +/turf/closed/wall, +/area/cargo/exploration_dock) +"fDb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"fDc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/instrument/eguitar, +/obj/item/instrument/guitar{ + pixel_x = 11 + }, +/obj/effect/turf_decal/bot/left, +/turf/open/floor/wood, +/area/service/theater) +"fDk" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/hydroponics/garden) +"fDn" = ( +/obj/structure/table/wood, +/obj/item/camera_film, +/obj/item/camera_film, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"fDp" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/art"; + dir = 4; + name = "Art Storage"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"fDy" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"fDC" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"fDK" = ( +/turf/closed/wall/r_wall, +/area/commons/vacant_room/commissary/third) +"fDW" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port) +"fDZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"fEs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"fEw" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Locker Room Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"fEx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fEI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/science/mixing) +"fEM" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"fFo" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"fFz" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"fFS" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"fGk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/bot, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"fGo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/multitool, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"fGG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"fGH" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fGI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;38" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fGL" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 21 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fGU" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"fHb" = ( +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"fHl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"fHn" = ( +/turf/closed/wall, +/area/engineering/break_room) +"fHr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"fHw" = ( +/obj/machinery/turntable, +/obj/item/eastposter, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"fHx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/off/dark/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"fHy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"fHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fHJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"fHK" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fHP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"fIb" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"fId" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fIm" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"fIo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"fID" = ( +/obj/structure/grille/broken, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"fIE" = ( +/obj/effect/spawner/random/maintenance/four, +/obj/effect/spawner/random/maintenance/four, +/obj/structure/table, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"fIF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"fIM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"fIY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/maintenance/bottom_station_maints) +"fJh" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fJk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fJn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"fJp" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/xenobiology) +"fJx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"fJB" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"fJC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/science/misc_lab) +"fJE" = ( +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"fJM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"fJN" = ( +/obj/machinery/dna_scannernew, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"fJU" = ( +/obj/machinery/door/window/westleft{ + name = "Janitorial Delivery"; + req_access_txt = "26" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/janitor) +"fJX" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"fKa" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry/public) +"fKb" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"fKc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"fKo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"fKB" = ( +/obj/machinery/status_display/evac{ + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/escape) +"fKH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/item/radio/intercom{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"fKK" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"fKM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"fKP" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor3"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"fLu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/door/window/southleft, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/aft/restroom) +"fLH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"fLI" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"fLP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"fLR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/closet/secure_closet/cytology, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"fLS" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft) +"fMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"fMm" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"fMz" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/science) +"fMI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right, +/turf/open/space/openspace, +/area/space/nearstation) +"fMY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plating, +/area/maintenance/aft) +"fNb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"fNh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"fNn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"fNs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"fNt" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"fNy" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 8; + output_dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"fNz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"fNG" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 7"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"fNN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fNR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fNT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/wood, +/area/commons/dorms) +"fNU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fOc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"fOi" = ( +/turf/open/floor/glass/reinforced, +/area/hallway/secondary/exit) +"fOB" = ( +/obj/machinery/air_sensor/mix_tank, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"fOG" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat_interior) +"fOI" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"fOR" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"fOV" = ( +/obj/item/food/fishmeat/carp/dry{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/item/food/fishmeat/carp/dry/donbas{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/food/fishmeat/carp/dry/donbas, +/obj/item/food/fishmeat/carp/dry/donbas{ + pixel_y = 5 + }, +/obj/effect/spawner/random/entertainment/drugs, +/obj/structure/table/rospilovo, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"fOW" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 12 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"fOZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"fPl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"fPp" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"fPt" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"fPv" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"fPD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"fPK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"fPQ" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"fPR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"fPZ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fQb" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"fQJ" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"fQL" = ( +/obj/effect/spawner/xmastree/rdrod, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"fQO" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"fRn" = ( +/obj/machinery/camera{ + c_tag = "Research Division North"; + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"fRo" = ( +/obj/effect/landmark/navigate_destination/det, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"fRt" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/to_arrival) +"fRC" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"fRN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fSo" = ( +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"fSt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"fSv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fSw" = ( +/obj/machinery/computer/warrant{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"fTf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/arrows/white, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fTg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"fTq" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/pen, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood/parquet, +/area/service/library) +"fTx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"fTy" = ( +/obj/item/storage/pod{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"fTB" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"fTD" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"fTL" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"fTM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fTS" = ( +/turf/closed/wall, +/area/commons/spacepod_docks) +"fTU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"fTZ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/commons/dorms) +"fUi" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"fUB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/engine, +/area/engineering/second_engy) +"fUD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"fUX" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fUY" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"fVo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/closed/wall, +/area/commons/fitness) +"fVv" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"fVz" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"fVC" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fVO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"fVP" = ( +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/lawoffice) +"fWa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fWm" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prison Common Room" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"fWn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"fWv" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"fWA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fWL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fWP" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"fWS" = ( +/obj/structure/table, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 23 + }, +/obj/item/storage/fancy/cigarettes{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fWW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"fWY" = ( +/obj/machinery/space_heater/improvised_chem_heater, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"fXf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"fXw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"fXz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"fXS" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fXY" = ( +/obj/structure/table/glass, +/obj/item/food/grown/poppy, +/obj/item/food/grown/harebell, +/turf/open/floor/plasteel/monofloor, +/area/service/chapel/main) +"fYi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/service/library) +"fYs" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"fYt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"fYH" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"fYK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"fYO" = ( +/turf/open/space/openspace, +/area/maintenance/port/fore) +"fYR" = ( +/turf/open/openspace, +/area/maintenance/fore/secondary) +"fYT" = ( +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fYW" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"fZa" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"fZb" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"fZc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"fZd" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"fZy" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fZI" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/aisat/hallway) +"fZO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"fZP" = ( +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas, +/obj/item/radio/intercom/directional/north, +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"fZW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"fZZ" = ( +/obj/structure/cable, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"gab" = ( +/turf/open/floor/plasteel/dark/side, +/area/engineering/storage/tech) +"gac" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"gak" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"gau" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"gaB" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"gaF" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"gaH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/tank_holder/oxygen, +/obj/structure/railing/left, +/turf/open/space/openspace, +/area/space/nearstation) +"gba" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"gbg" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gbj" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/clothing/glasses/science{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gbl" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gbo" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"gbM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"gbY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"gch" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gci" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"gcr" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space) +"gcu" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"gcA" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/instrument/violin, +/obj/item/instrument/piano_synth, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot/left, +/turf/open/floor/wood, +/area/service/theater) +"gcR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"gdb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"gdd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"gdp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gdq" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "Xenobio Pen 2 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"gdF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"gdW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"gea" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"geg" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/prison) +"geD" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"geJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"geP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"geS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"gfc" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/item/razor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"gfk" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"gfq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/white/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"gft" = ( +/obj/machinery/recharge_station, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gfH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"gfO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"gfS" = ( +/obj/structure/table, +/obj/item/folder/white, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"gfT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ggu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/mineral_door/paperframe, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"ggv" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"ggA" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"ggF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/obj/item/target/alien, +/obj/effect/turf_decal/box/red, +/turf/open/space/openspace, +/area/space/nearstation) +"ggG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"ggL" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"ggQ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ggV" = ( +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"ghc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ghd" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/mixing) +"ghE" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gii" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"giD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/science/nanite) +"giF" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engineering/main) +"giH" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel, +/area/security/processing) +"giT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/engine, +/area/science/misc_lab) +"gjd" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"gjs" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gju" = ( +/obj/structure/chair, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/escape) +"gjx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"gjA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gjF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gjN" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gjT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gjZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gkp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"gkq" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"gkw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"gkK" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"gkW" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"glc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"gle" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"gll" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"glo" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"glr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"glB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/storage/firstaid/emergency, +/obj/item/storage/firstaid/emergency, +/obj/item/storage/firstaid/emergency, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright{ + dir = 8; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"glS" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"glW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"glX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"glY" = ( +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = 8; + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump/on, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"gma" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"gmb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/tacmap/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"gmi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"gmp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"gmr" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gmB" = ( +/obj/structure/chair, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gmM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/space/basic, +/area/space/nearstation) +"gmW" = ( +/obj/structure/sign/warning/gasmask, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"gmX" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/service/bar"; + name = "Bar APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gnf" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/turf/open/floor/plating, +/area/engineering/manufactory) +"gng" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/three) +"gnh" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"gnj" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"gnk" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"gnD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gnG" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 1"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gnR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"goc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"god" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"gof" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmospherics_engine) +"goj" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Dock Power Storage"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/port) +"goo" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "mech bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"got" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"goy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "rnd3"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"goC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"goK" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"goL" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel/white, +/area/science/research) +"goV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Crematorium Maintenance"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"goW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"goY" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"gpg" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gpq" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gpH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gpU" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"gqa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/service/bar) +"gqb" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft) +"gql" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/lab) +"gqv" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"grb" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"grj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gro" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/commons/locker) +"grq" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/head/welding, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"grw" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"gsa" = ( +/turf/open/floor/plating, +/area/security/processing) +"gsl" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"gsO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"gsT" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/aquarium, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"gsZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gtd" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"gtk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"gtt" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"gtw" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"gtJ" = ( +/obj/machinery/power/turbine{ + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"gtO" = ( +/obj/effect/landmark/stationroom/maintenance/rdm10x5, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"gtQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"gtS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"gtY" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"gue" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/fore"; + dir = 1; + name = "Starboard Bow Maintenance APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"guB" = ( +/turf/open/floor/plating, +/area/maintenance/space_hut) +"guC" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"guR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"guS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/prison) +"gvd" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/space/basic, +/area/space/nearstation) +"gvf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/exploration) +"gvj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"gvm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"gvx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"gvA" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"gvB" = ( +/obj/machinery/camera{ + c_tag = "Fore Port Solar Access" + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gvD" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gvI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"gvO" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"gvT" = ( +/obj/structure/closet/crate/coffin, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"gvU" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gvV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"gwf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"gwg" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gwv" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gww" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"gwA" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"gwR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"gwT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/railing/left{ + dir = 8; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gxe" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"gxf" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical) +"gxg" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit) +"gxv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"gxy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"gxQ" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gxR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"gxZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/vending/engivend, +/turf/open/floor/plating, +/area/engineering/main) +"gyo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"gyq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"gyN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gyR" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/service/library/upper) +"gyT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Prisoner Transfer Centre"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"gza" = ( +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"gzb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/red/insulated{ + pixel_y = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"gzl" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"gzu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"gzv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"gzx" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"gzA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "atmos"; + name = "бронежалюзи атмоса" + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"gzN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gzS" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gAg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/goonplaque, +/area/hallway/primary/port/to_arrival) +"gAh" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/maintenance/department/electrical/two) +"gAl" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"gAp" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"gAq" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gAv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"gAN" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gAS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"gBm" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gBt" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"gBu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gBB" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/quikdeploy/cade/plasteel, +/obj/item/quikdeploy/cade/plasteel, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/security/checkpoint/escape) +"gBM" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port/aft) +"gBN" = ( +/obj/machinery/light_switch{ + pixel_x = -20 + }, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/wood, +/area/lawoffice) +"gCb" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Laboratory"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"gCc" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/execution/transfer"; + dir = 4; + name = "Prisoner Transfer Centre"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"gCg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gCs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"gCz" = ( +/turf/open/openspace, +/area/service/chapel/main) +"gCA" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"gCG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gCM" = ( +/obj/structure/industrial_lift{ + elevator_vertical_speed = 50; + radial_travel = 0; + violent_landing = 0; + warns_on_down_movement = 1 + }, +/obj/effect/landmark/lift_id{ + specific_lift_id = "sci_box" + }, +/obj/machinery/elevator_control_panel/directional/west{ + linked_elevator_id = "sci_box" + }, +/turf/open/openspace, +/area/science/lab) +"gCN" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"gDf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"gDi" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"gDm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"gDq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"gDw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"gDH" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"gDK" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"gDQ" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/shoes/jackboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"gDR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"gDT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"gDW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/secondary/entry/public) +"gEa" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"gEc" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"gEg" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gEh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gEj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"gEs" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"gEu" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/recharger_item, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"gEy" = ( +/obj/machinery/door/airlock/external{ + name = "Space Shack"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"gEA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"gEB" = ( +/obj/structure/table, +/obj/effect/spawner/random/decoration/material, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gEV" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/machinery/button/door{ + id = "barmankomorka"; + name = "window button"; + pixel_y = -26 + }, +/turf/open/floor/wood, +/area/service/bar) +"gFs" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"gFF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"gFU" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"gGf" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical/two) +"gGj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/science/xenobiology) +"gGu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"gGy" = ( +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/openspace, +/area/ai_monitored/command/nuke_storage) +"gGz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gGJ" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel, +/area/security/courtroom) +"gGL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/hydroponics) +"gGU" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"gHa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/engineering/main) +"gHe" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"gHt" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos/upper) +"gHG" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"gHS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"gHX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"gIe" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gIs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gIx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gIX" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"gJo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/storage_shared) +"gJs" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"gJy" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"gJA" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/electrical) +"gJE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"gJG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"gJJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"gKa" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"gKq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gKs" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/shipping_container/nanotrasen, +/turf/open/floor/plating, +/area/space/nearstation) +"gKK" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/preopen{ + id = "barShutters"; + name = "privacy shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/bar) +"gKQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"gKR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gKT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"gKW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"gKZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"gLb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gLf" = ( +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"gLm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westleft{ + name = "Delivery Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gLo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gLB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gLN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/security/prison) +"gLU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness) +"gMj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"gMl" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hallway/secondary/service) +"gMq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"gMv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"gMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gMI" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 19 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"gNb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"gNc" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/miningoffice/meteor) +"gNf" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"gNq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"gNr" = ( +/obj/structure/table, +/obj/item/folder/blue{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/folder/blue{ + layer = 3.01; + pixel_x = 3 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gNV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"gOk" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"gOq" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"gPd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"gPs" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"gPB" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"gPJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"gPK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"gPQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"gQx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/openspace, +/area/science/xenobiology) +"gQy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"gQL" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating, +/area/space/nearstation) +"gQR" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gQW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"gQY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"gRL" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/smartfridge/drying_rack, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gRT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"gRW" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"gRY" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"gSc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/warehouse) +"gSf" = ( +/obj/machinery/light, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"gSh" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"gSs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gSt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"gSy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"gSF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"gSH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"gSI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"gSM" = ( +/obj/structure/closet/crate, +/obj/item/stack/ore/iron{ + amount = 20 + }, +/obj/item/stack/ore/glass{ + amount = 20 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gSY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel, +/area/engineering/main) +"gSZ" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"gTi" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/mechbay"; + dir = 2; + name = "Mech Bay APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"gTj" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gTk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"gTm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"gTp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"gTs" = ( +/turf/closed/wall/r_wall, +/area/commons/fitness) +"gTG" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"gUc" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit/departure_lounge/shop) +"gUs" = ( +/turf/open/openspace, +/area/hallway/primary/port/to_arrival) +"gUy" = ( +/obj/structure/rospilovo/doski/doski2, +/obj/structure/rospilovo/painting/stalin{ + pixel_y = 32 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = -9; + pixel_y = 19 + }, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"gUJ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"gUN" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/item/crowbar, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gUO" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gUT" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"gVb" = ( +/obj/structure/closet/wardrobe/miner, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gVk" = ( +/obj/machinery/computer/security, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"gVp" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"gVC" = ( +/obj/structure/flora/rock, +/turf/open/floor/grass, +/area/security/prison) +"gVK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Research Division" + }, +/turf/open/floor/plating, +/area/science/lab) +"gVM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/structure/closet/secure_closet/cytology, +/obj/item/lazarus_injector, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"gVN" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/service/hydroponics) +"gVP" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/chapel/main) +"gWd" = ( +/turf/closed/wall, +/area/hallway/primary/aft/restroom) +"gWg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gWk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"gWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/port) +"gWw" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"gWA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"gWF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gWI" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/bush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"gWP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"gWS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"gXd" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"gXu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"gYg" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"gYl" = ( +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"gYo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"gYq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"gYz" = ( +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"gYK" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"gYM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gYT" = ( +/obj/structure/closet/secure_closet/injection, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"gYV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/mixing) +"gZd" = ( +/obj/machinery/exoscanner, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"gZi" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/gateway"; + dir = 8; + name = "Gateway APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"gZk" = ( +/obj/effect/landmark/stationroom/bridge/random, +/turf/closed/wall, +/area/security/checkpoint/supply) +"gZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gZD" = ( +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/lab) +"gZI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/rospilovo/bochka/red{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -5; + pixel_y = -4 + }, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"gZJ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"gZW" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"hai" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"har" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"hau" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/service/hydroponics) +"haE" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"haK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"haL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"haO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"haQ" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"haV" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"haX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"hbl" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/storage/secure/safe{ + pixel_x = -23 + }, +/obj/item/storage/box/evidence, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hbn" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/corn, +/obj/item/seeds/corn{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hbz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hbK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hco" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hcq" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/machinery/aug_manipulator, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"hct" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fitness" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"hcv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"hcy" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"hcz" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/device/flashlight/slamp, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"hcC" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"hcJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"hcQ" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hdb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hdd" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"hdg" = ( +/turf/closed/wall, +/area/engineering/manufactory) +"hdj" = ( +/obj/structure/ladder, +/obj/effect/turf_decal/box, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"hdl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"hdq" = ( +/obj/tacmap/directional/north, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/science/mixing) +"hds" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"hdu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/obj/structure/railing/right, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hdv" = ( +/turf/open/openspace, +/area/science/xenobiology) +"hdy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"hdK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"hee" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AIE"; + location = "AftH" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"hei" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"heq" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"her" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Port Mid"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"het" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/openspace, +/area/science/xenobiology) +"hey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal/incinerator"; + dir = 1; + name = "Incinerator APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"heA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"heI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"hfc" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat_interior) +"hfn" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hft" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/service/bar) +"hfy" = ( +/obj/structure/table, +/obj/item/discovery_scanner{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/item/experi_scanner{ + pixel_x = 7 + }, +/obj/item/research_disk_pinpointer{ + pixel_x = -7 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"hfz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hfD" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hfE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"hfR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/table/wood, +/obj/item/food/mint{ + pixel_y = 9 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"hfV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"hgb" = ( +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"hgk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"hgn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"hgt" = ( +/obj/effect/landmark/stationroom/brig/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"hgF" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"hgW" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hhb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"hhg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hhi" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/security/prison) +"hhn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"hhq" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"hhv" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"hhK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hhP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"hhR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"hif" = ( +/obj/machinery/chem_master, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"him" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/plantgenes, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"hit" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "atmos_reactor_shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"hix" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"hiF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hiI" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"hiJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft/exploration) +"hiP" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hiS" = ( +/obj/effect/turf_decal/arrows{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"hiV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/rack, +/obj/item/clipboard, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"hjj" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"hjw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"hjA" = ( +/obj/structure/table, +/obj/item/t_scanner, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hkh" = ( +/obj/effect/turf_decal/trimline/neutral/corner, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"hkr" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"hkw" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Three"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"hkD" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"hkQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"hkT" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"hlh" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/service/bar) +"hlz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"hlD" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hlG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"hlH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"hlO" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"hlP" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"hlW" = ( +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage" + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"hlY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"hmg" = ( +/turf/open/space/openspace, +/area/space/nearstation) +"hmi" = ( +/turf/open/floor/plasteel/dark, +/area/science/lab) +"hms" = ( +/obj/structure/table, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/multitool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"hmz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hmL" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/wrench, +/obj/item/multitool, +/turf/open/floor/plating, +/area/space/nearstation) +"hmP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"hni" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"hnj" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/maintenance/port/aft) +"hnl" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"hnC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"hnJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"hnP" = ( +/turf/closed/wall/r_wall, +/area/lawoffice) +"hnR" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"hnU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/openspace, +/area/space/nearstation) +"hnW" = ( +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"hnY" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/fore"; + dir = 1; + name = "Port Bow Maintenance APC"; + pixel_x = -1; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hoe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"hog" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"hom" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"hot" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination/kitchen, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"how" = ( +/obj/structure/lattice/catwalk, +/obj/effect/spawner/random/decoration/showcase, +/turf/open/space/openspace, +/area/maintenance/port/fore) +"hoR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"hoU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"hpz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hpC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"hpD" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hpE" = ( +/turf/open/floor/plating, +/area/engineering/manufactory) +"hpH" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Monkey Pen"; + pixel_y = -2; + req_access_txt = "9" + }, +/turf/open/floor/grass, +/area/science/genetics) +"hpO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/obj/effect/turf_decal/tile/hex/purple, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos/upper) +"hpU" = ( +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"hpV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "2;101"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hpX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"hqg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hql" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hqn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"hqI" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hqN" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"hrb" = ( +/obj/effect/landmark/navigate_destination/atmos, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"hrf" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hrp" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hrr" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/structure/sign/picture_frame{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hrt" = ( +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"hrx" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"hrF" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"hrQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"hrX" = ( +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/south) +"hsl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hss" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"hsx" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "NT SS13: Прибытие"; + width = 5 + }, +/turf/open/space/openspace, +/area/space) +"hsC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hsJ" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hsK" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"hsM" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"hsO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"hsV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"hsX" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"hsZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen/invisible, +/obj/item/taperecorder, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"htc" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/white, +/area/maintenance/bottom_station_maints/south) +"htd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/brigdoor/southright, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"hti" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"hto" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/item/coin/iron, +/obj/item/coin/diamond, +/obj/item/coin/diamond, +/obj/item/coin/diamond, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"htS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"htY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"huj" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"hun" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"huq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"hux" = ( +/turf/closed/wall, +/area/hallway/primary/starboard/botan) +"huD" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname, +/turf/open/space/openspace, +/area/space/nearstation) +"huE" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"huI" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"huV" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"hvf" = ( +/obj/machinery/vending/custom, +/turf/closed/wall, +/area/commons/vacant_room) +"hvi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"hvj" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"hvk" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/aft/restroom) +"hvw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hvO" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"hvQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"hvV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"hwa" = ( +/obj/effect/turf_decal/stripes, +/obj/effect/turf_decal/stripes/red/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/checkpoint/escape) +"hwh" = ( +/obj/machinery/door/airlock{ + name = "Bar Service Hall"; + req_one_access_txt = "25" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"hwk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"hwl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"hwm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/security/upper) +"hwo" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"hwt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hwD" = ( +/turf/open/openspace, +/area/command/gateway) +"hwM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 25 + }, +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hwS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"hxr" = ( +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/table, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hxt" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"hxz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engineering/main"; + dir = 1; + name = "Engineering APC"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"hxG" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hxI" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"hxJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hxO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"hxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"hyh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"hyk" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/port) +"hyo" = ( +/obj/structure/cable, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/aft) +"hyI" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/requests_console{ + department = "Mining"; + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"hyN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"hyU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/blacklight{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"hyV" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/aft) +"hyX" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hyZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"hzb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"hzc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"hzg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"hzj" = ( +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"hzw" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/port/fore"; + dir = 8; + name = "Port Bow Solar APC"; + pixel_x = -25 + }, +/obj/machinery/camera{ + c_tag = "Fore Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/maintenance/solars/port/fore) +"hzT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"hAg" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/item/shard{ + icon_state = "medium" + }, +/obj/item/circuitboard/computer/operating, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hAo" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 8"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"hAv" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hAR" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"hBc" = ( +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"hBf" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/open/floor/plating, +/area/maintenance/port) +"hBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"hBk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"hBv" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/cable, +/obj/machinery/shieldgen{ + active = 1; + anchored = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"hBy" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"hBA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hBD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hBH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hBI" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 3"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hBJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"hBK" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"hBL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"hBR" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"hBT" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber South Bottom"; + dir = 1; + network = list("aicore") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"hCb" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Backup Storage"; + req_access_txt = "10"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/second_engy) +"hCd" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hCg" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hCj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"hCu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"hCH" = ( +/obj/structure/bed, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"hCQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hCV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"hDb" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"hDx" = ( +/obj/tacmap/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio{ + layer = 3.01 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/checkpoint/escape) +"hDD" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/seven, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hDF" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"hDG" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/security/checkpoint/escape) +"hDN" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/lemon_lime{ + pixel_x = 6; + pixel_y = 15 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"hEb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"hEh" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"hEm" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"hEL" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"hEP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hFh" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice/meteor) +"hFj" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hFv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/reagent_dispensers/servingdish, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/security/prison) +"hFz" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/power/tesla_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"hFC" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/open/space/basic, +/area/space/nearstation) +"hGg" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"hGl" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"hGE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"hGJ" = ( +/obj/structure/grille/broken, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hGL" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"hGP" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"hGX" = ( +/obj/machinery/light/small/directional/north, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"hHh" = ( +/obj/structure/sign/departments/mait/alt, +/turf/closed/wall, +/area/maintenance/starboard) +"hHk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"hHl" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/escape) +"hHq" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Kill Chamber"; + normalspeed = 0; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"hHw" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"hHx" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Lounge" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"hHB" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63; 42" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"hHC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/mechpad, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"hHJ" = ( +/obj/machinery/computer/station_alert, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"hHK" = ( +/obj/structure/railing/corner, +/turf/open/openspace, +/area/service/chapel/main) +"hHO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hHU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"hIj" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"hIk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"hID" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"hIG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"hIW" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"hIX" = ( +/obj/structure/rospilovo/radiation/stop{ + pixel_y = 12 + }, +/obj/structure/rospilovo/water/luzha, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"hJb" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hJf" = ( +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"hJg" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"hJq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"hJt" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"hJL" = ( +/obj/structure/stairs/south, +/turf/open/floor/wood, +/area/service/library) +"hJZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/small, +/obj/structure/sign/departments/holy/directional/south, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"hKg" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hKj" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"hKk" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hKr" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"hKw" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"hKy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hKA" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hKL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hKP" = ( +/obj/machinery/camera{ + c_tag = "Toxins Launch Room Access"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hKQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"hKY" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"hLc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"hLz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"hLF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left, +/turf/open/space/openspace, +/area/space/nearstation) +"hLL" = ( +/obj/machinery/camera{ + c_tag = "Genetics Access"; + dir = 8; + network = list("ss13","medbay"); + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hLU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"hMn" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"hMv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"hMK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"hMP" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/south{ + start_active = 1; + view_range = 14 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"hMS" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/server) +"hNp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"hNF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"hNG" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/east, +/obj/machinery/light/floor/directional/west, +/turf/open/openspace, +/area/service/hydroponics) +"hNL" = ( +/obj/item/latexballon, +/mob/living/simple_animal/hostile/retaliate/frog, +/turf/open/floor/plating, +/area/maintenance/port) +"hNN" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"hNO" = ( +/turf/closed/wall, +/area/security/detectives_office) +"hNP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"hNQ" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hNS" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teledoor"; + name = "MiniSat Teleport Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"hNT" = ( +/obj/effect/turf_decal/siding/white, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"hNZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "QM Desk"; + req_access_txt = "41" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"hOx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"hOA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"hOL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"hOM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hOP" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/maintenance/starboard/fore) +"hPr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hPu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"hPw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"hPy" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom1"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"hPH" = ( +/obj/machinery/computer/atmos_control{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"hPN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/paper/guides/jobs/holopad_hydro, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/port) +"hQe" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"hQf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"hQy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hQD" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"hQK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/commons/dorms) +"hQL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"hQP" = ( +/obj/structure/table, +/turf/open/floor/engine, +/area/science/xenobiology) +"hQQ" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"hQR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pod_parts/armor/industrial, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"hQW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/service/library/upper) +"hRm" = ( +/turf/closed/wall, +/area/service/library/artgallery) +"hRv" = ( +/obj/structure/table, +/obj/item/kitchen/fork/plastic, +/obj/item/food/omelette, +/obj/item/food/omelette, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"hRI" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"hRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"hRM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"hRS" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"hSa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"hSl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"hSo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"hSK" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"hSS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/shop) +"hSZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Library Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hTc" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/security/prison) +"hTj" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/plaque/static_plaque/golden{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"hTC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"hTH" = ( +/obj/effect/turf_decal/siding/white{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"hTT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"hUh" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hUi" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"hUm" = ( +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"hUW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater) +"hVc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"hVn" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"hVr" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"hVR" = ( +/obj/item/hfr_box/core, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"hWr" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"hWs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/auxiliary) +"hWx" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"hWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hWN" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/science/server) +"hWT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"hWU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/exodrone, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"hXd" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"hXg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hXn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"hXu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hXO" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hXV" = ( +/obj/structure/disposalpipe/trunk/multiz{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/commons/vacant_room/commissary) +"hXZ" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"hYa" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"hYf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"hYj" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"hYn" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"hYv" = ( +/obj/effect/spawner/random/trash/grille_or_waste, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hYy" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"hYB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"hYF" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/department/electrical/two) +"hYG" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/closed/wall, +/area/service/library) +"hYO" = ( +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"hYT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"hYU" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"hYW" = ( +/obj/machinery/camera/preset/ordnance/num2{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"hZa" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/service/chapel/main) +"hZk" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"hZs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 14 + }, +/turf/open/floor/wood, +/area/service/bar) +"hZG" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"hZK" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"hZL" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"hZS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hZT" = ( +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"hZW" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"iab" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"iad" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"iax" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iaA" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iaB" = ( +/obj/structure/table, +/obj/item/camera, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"iaV" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"iaY" = ( +/obj/item/construction/plumbing/research, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ibj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"ibk" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/security/prison) +"ibs" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/dark/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"ibF" = ( +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"ibG" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Research Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/research/abandoned) +"ibU" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ibZ" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"icf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"icm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"icp" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"icx" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"icy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"icC" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"icF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"icG" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"icS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"ide" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "cyto"; + pixel_y = 35; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"iei" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iej" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft/restroom) +"ieu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ieE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/item/radio/off{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ieG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ieH" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry/south_hall) +"ieJ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"ieL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Fitness Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ieP" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"ifa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"ifd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ifj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"ifl" = ( +/obj/structure/dresser, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"ifp" = ( +/mob/living/simple_animal/bot/cleanbot{ + name = "D.I.R.T." + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer2"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_y = 32; + req_access_txt = "5" + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"ift" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"ifw" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/fitness) +"ifz" = ( +/obj/machinery/igniter/incinerator_ordmix, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4; + piping_layer = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"ifE" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"ifF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ifM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"ifQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south_hall) +"igj" = ( +/obj/effect/turf_decal/tile/hex/brown, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"igp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"igu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"igF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/item/hand_labeler{ + pixel_x = 13; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"igP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"igT" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ihe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"iht" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"ihO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"ihQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"iij" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/engineering/storage) +"iiq" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"iis" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"iiZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"ijf" = ( +/obj/structure/table, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/item/modular_computer/tablet, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ijn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"ijs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"ijF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ijN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ijX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"ijY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/checkpoint/escape) +"ikm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"ikq" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iks" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"ikF" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"ikO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ikT" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"ikZ" = ( +/turf/closed/wall/r_wall, +/area/cargo/qm) +"ilc" = ( +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/monofloor/white, +/area/science/genetics) +"ilk" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ilE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/landmark/navigate_destination/research, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"ilH" = ( +/obj/structure/table/reinforced, +/obj/item/pod_parts/armor/industrial, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"ilS" = ( +/obj/structure/table/wood, +/obj/item/storage/fish_case/random/freshwater{ + pixel_x = -8; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = 8; + pixel_y = 13 + }, +/obj/machinery/button/door{ + id = "aquaprivacy"; + name = "Privacy Shutters"; + pixel_x = -8; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"ilW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"imm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"imq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/dark_red, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"imv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"imx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"imS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"imT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"inh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"inn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"inq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"inv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"inD" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"inE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"inG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"inW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/commons/vacant_room/commissary/third) +"inZ" = ( +/obj/structure/cable, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"iof" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iov" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"iox" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"ioD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"ioQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"ioW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ioX" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ioY" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/refreshing_beverage, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ipb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"ipe" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"ipo" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ips" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"ipu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"ipI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"ipO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"ipQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"ipT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ipV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"iqa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) +"iqh" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmospherics_engine) +"iqi" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"iqn" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iqq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"iqv" = ( +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"iqV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"irk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/emergency/old{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"irm" = ( +/obj/structure/cable, +/obj/machinery/button/door{ + id = "Biohazard_tech"; + name = "Почтовый шлюз"; + pixel_x = 32; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"irL" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"irW" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"isn" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"isr" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ist" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"isB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"isH" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Laboratory"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"isP" = ( +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"ito" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"its" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos) +"ity" = ( +/obj/machinery/light/floor/directional/west, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"itH" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/service/chapel/main) +"itQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"itS" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"iui" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 13 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"iuz" = ( +/obj/structure/rospilovo/truba, +/obj/item/reagent_containers/food/drinks/boyarka{ + pixel_x = 4; + pixel_y = 10 + }, +/obj/structure/sign/flag/soviet{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"iuE" = ( +/obj/effect/turf_decal/trimline/green/filled/corner, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"iuL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iuN" = ( +/obj/effect/landmark/navigate_destination/sec, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"iuQ" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"iuS" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"iuT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 5"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iuX" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/sugar, +/turf/open/floor/plasteel/monofloor, +/area/commons/vacant_room/commissary/third) +"iuZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ivb" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ive" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"ivr" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"ivx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/red/warning, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/mixing) +"ivC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"ivJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ivW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"iwf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"iwz" = ( +/obj/structure/disposalpipe/trunk/multiz/down, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/service/hydroponics) +"ixk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"ixp" = ( +/obj/item/hfr_box/body/interface, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"ixz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"ixQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"iyb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/half, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/security/checkpoint/escape) +"iyr" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/machinery/firealarm{ + pixel_y = 36 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iyw" = ( +/obj/machinery/lapvend, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"iyy" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space/openspace, +/area/space/nearstation) +"iyG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"iyJ" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"iyZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"izb" = ( +/obj/machinery/camera/autoname, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"izj" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"izk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/passive_vent, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"izq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"izv" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"izx" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Pod Access"; + dir = 1; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"izy" = ( +/turf/closed/wall, +/area/commons/storage/tools) +"izA" = ( +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"izC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"izD" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/obj/structure/fluff/beach_umbrella, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = -6; + pixel_y = -14 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"izI" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"izK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"izT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"izY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"iAa" = ( +/obj/structure/closet/crate, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/item/food/meat/rawcutlet/plain, +/obj/item/food/meat/rawcutlet/plain, +/obj/item/food/meat/rawcutlet/plain, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"iAc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"iAr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"iAt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/hallway/primary/port/gate) +"iAy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"iAA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iAC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"iAI" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iAT" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"iAY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/shipping, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"iBj" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"iBK" = ( +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door{ + id = "genetic"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"iBR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"iBT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"iCh" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"iCj" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/insectguts, +/obj/item/clothing/under/costume/jabroni, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"iCs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iCt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_x = 25; + req_access_txt = "22" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"iCw" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iCB" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Distro to Waste" + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"iCH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iDi" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iDp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"iDt" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iDG" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iDK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"iDN" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"iDT" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iDU" = ( +/obj/structure/cable, +/obj/effect/landmark/stationroom/medbay/random, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"iEa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft) +"iEd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iEy" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/stairs/west{ + invisibility = 101; + layer = 2 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"iEN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"iFl" = ( +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"iFo" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"iFs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"iFx" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"iFF" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"iFH" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/port/gate) +"iFU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"iGk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"iGo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"iGq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"iGv" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"iGy" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"iGK" = ( +/obj/machinery/button/door{ + id = "miner_meteor"; + pixel_x = 29; + req_one_access_txt = "32;47;48" + }, +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/miningoffice/meteor) +"iGM" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"iGT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"iGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"iGX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"iHj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"iHw" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"iHG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"iHJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"iIa" = ( +/mob/living/simple_animal/pet/dog/corgi/pig, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"iIf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"iIg" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air Out" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"iIh" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"iIn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iIG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting Equipment"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iIL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"iJj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"iJo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"iJL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab South"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"iJM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iJP" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"iJU" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"iJV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"iKa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"iKb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"iKe" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"iKl" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"iKr" = ( +/obj/structure/chair, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/medical/abandoned; + dir = 1; + name = "Second Medbay APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"iKu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"iKJ" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"iKK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"iKO" = ( +/obj/machinery/space_heater, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"iKS" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"iLf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"iLr" = ( +/obj/structure/table/wood, +/obj/item/coin/silver, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"iLI" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/aft) +"iLK" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"iLN" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"iMq" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/antiweed, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iMv" = ( +/turf/closed/wall/r_wall, +/area/commons/vacant_room/commissary) +"iMx" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"iMN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"iMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iNb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"iNc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"iNd" = ( +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"iNk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry/public) +"iNl" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iNm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"iNw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"iNz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/tacmap/directional/north, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"iNP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/structure/table, +/obj/item/training_toolbox{ + pixel_y = 5 + }, +/obj/item/training_toolbox{ + pixel_y = -2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"iNQ" = ( +/obj/structure/table, +/obj/item/stack/sticky_tape{ + pixel_x = -13; + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"iNY" = ( +/obj/machinery/power/apc{ + areastring = "/area/security/detectives_office"; + dir = 8; + name = "Detective's Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"iOe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iOw" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iOx" = ( +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"iOE" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"iOI" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"iOJ" = ( +/obj/structure/closet, +/obj/effect/landmark/blobstart, +/obj/effect/spawner/random/maintenance, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iOS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"iOV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"iPf" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"iPv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"iPz" = ( +/turf/open/openspace, +/area/hallway/primary/aft) +"iPF" = ( +/obj/structure/grille/broken, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"iPM" = ( +/obj/structure/table, +/obj/item/weldingtool, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iPT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"iPX" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"iQe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/second_engy) +"iQQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"iRi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"iRk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iRl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/engineering/manufactory) +"iRz" = ( +/turf/closed/wall, +/area/service/janitor) +"iRG" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"iRK" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"iRO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"iRP" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/two) +"iRV" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage) +"iRZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"iSc" = ( +/obj/structure/closet/crate/cardboard, +/obj/item/clothing/under/rank/civilian/clown/sexy, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/head/wizgirl, +/obj/item/clothing/head/rabbitears, +/obj/item/clothing/head/kitty, +/obj/item/clothing/head/maidheadband, +/obj/item/clothing/under/costume/schoolgirl, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/item/clothing/head/nursehat, +/obj/item/clothing/under/rank/medical/doctor/nurse, +/obj/item/clothing/suit/shrine_maiden, +/obj/item/clothing/gloves/maid, +/obj/item/clothing/accessory/maidapron, +/obj/item/clothing/neck/maid, +/obj/item/clothing/under/rank/civilian/janitor/maid, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"iSj" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"iSs" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 3 & 4"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"iSv" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 4"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"iSF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"iSI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"iSR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"iTf" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"iTp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"iTF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/storage/ashtray, +/turf/open/floor/carpet, +/area/security/detectives_office) +"iTH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"iTU" = ( +/obj/structure/table/wood, +/obj/machinery/light/small, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -30 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"iTW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"iUb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"iUg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"iUk" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/three) +"iUm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"iUt" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"iUw" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iUA" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"iUU" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 2; + height = 5; + id = "trader_transport_station"; + name = "NT SS13: Trader Transport dock"; + width = 5 + }, +/turf/open/space/openspace, +/area/space) +"iVi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/camera{ + c_tag = "Locker Room East"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"iVn" = ( +/obj/vehicle/sealed/mecha/working/ripley/cargo, +/turf/open/floor/mech_bay_recharge_floor, +/area/cargo/office) +"iVN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"iWe" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"iWf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iWy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"iWR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iWW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iWX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"iXf" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"iXp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/space_hut) +"iXv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom4"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"iXD" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"iXV" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"iYi" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Garden Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iYj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south_hall) +"iYl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"iYp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"iYr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"iYx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"iYy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"iYA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iYD" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"iYQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/turf/open/space/basic, +/area/space/nearstation) +"iYX" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"iYY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iZo" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"iZB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iZL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"iZN" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/electrical/two) +"iZZ" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"jab" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"jae" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"jaw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/service/library) +"jaC" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"jaH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/meter/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jaR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"jbu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"jbG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"jbT" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"jbZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"jcg" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"jcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jcU" = ( +/obj/machinery/telecomms/processor/preset_four, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"jda" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/maintenance/bottom_station_maints/south) +"jdm" = ( +/obj/machinery/nanite_chamber, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"jdr" = ( +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jdX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"jeo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"jeq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jeG" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"jeJ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/department/electrical) +"jeM" = ( +/obj/effect/landmark/start/mechanic, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"jeT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"jeU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jeV" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jfc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"jfe" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/sparker{ + id = "executionburn"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"jfn" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jfp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jfz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/girder/plastitanium, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"jfJ" = ( +/obj/machinery/grill, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"jfN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"jgk" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jgn" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jgp" = ( +/obj/item/kirbyplants/fullysynthetic, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"jgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jgQ" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jhe" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"jhf" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jhv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/storage/eva"; + dir = 1; + name = "EVA Storage APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"jhy" = ( +/obj/structure/chair/office, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"jhD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research/abandoned) +"jhJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"jhW" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"jia" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jic" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"jin" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jip" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"jiu" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"jiw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"jiz" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/closet, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/wrench, +/obj/item/crowbar/red, +/turf/open/floor/wood, +/area/service/bar) +"jiC" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "atmos"; + name = "бронежалюзи атмоса" + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"jiD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jiF" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"jiO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"jiR" = ( +/turf/open/openspace, +/area/commons/fitness) +"jjd" = ( +/obj/structure/rack, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jjj" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting Equipment"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jjm" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"jjs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/secondary/entry/south) +"jjE" = ( +/obj/machinery/air_sensor/nitrous_tank, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos/upper) +"jjH" = ( +/obj/structure/table, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jjJ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"jjL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"jki" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "manufactory1"; + name = "manufactory shutters" + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"jkk" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"jks" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jky" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jkC" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/office"; + name = "Chapel Office APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"jkE" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"jkG" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"jkN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jkO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/aft) +"jkT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/atmos/upper) +"jlk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jlx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"jly" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination{ + location = "Arrival Shuttle" + }, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"jlz" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/space/nearstation) +"jlU" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/decal/cleanable/cum, +/obj/structure/bed, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"jml" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/pdapainter/research, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"jms" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/machinery/button/door{ + id = "Dorm5"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"jmJ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"jmS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"jnc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/obj/effect/turf_decal/stripes/box, +/turf/open/space/openspace, +/area/space/nearstation) +"jnj" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"jns" = ( +/obj/structure/marker_beacon/burgundy, +/obj/item/target/syndicate, +/obj/effect/turf_decal/box/red, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"jnv" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"jnw" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"jny" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"jnB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/exploration) +"jnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"jnH" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = 30 + }, +/obj/structure/closet/secure_closet/security/engine, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"jnS" = ( +/obj/machinery/light, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"jnZ" = ( +/obj/item/radio/intercom{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"joe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"jol" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jox" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"joH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"joP" = ( +/obj/machinery/power_restarter, +/turf/closed/wall, +/area/engineering/engine_smes) +"joT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater) +"jpc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"jpm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"jpp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"jps" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 4; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"jpy" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"jpF" = ( +/obj/structure/lattice/catwalk, +/obj/item/instrument/guitar, +/turf/open/space/basic, +/area/space/nearstation) +"jpI" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"jqd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "2;101"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"jqf" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"jqt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jqu" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"jqw" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"jqy" = ( +/obj/structure/table, +/obj/item/pen, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"jqz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"jqP" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"jqW" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"jrh" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jrp" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 11"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jrx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"jrz" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 6; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jrH" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"jrI" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"jrZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"jsb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"jsi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"jsj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/cryopods) +"jsA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"jsB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"jsH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/commons/vacant_room) +"jsL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"jsN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jsS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"jsU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"jsZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jti" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"jtl" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/port/aft) +"jtq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jtt" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"jtv" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"jtw" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/xenobiology) +"jty" = ( +/obj/machinery/the_singularitygen{ + icon_state = "beacon0" + }, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"jtz" = ( +/turf/closed/wall, +/area/maintenance/fore/upper) +"jtI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"jtN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/maintenance/department/electrical) +"jtR" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"jtU" = ( +/obj/machinery/camera{ + c_tag = "Tech Storage" + }, +/obj/machinery/power/apc{ + areastring = "/area/engineering/storage/tech"; + dir = 1; + name = "Tech Storage APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"jtY" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"jue" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"jut" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Control"; + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/solars/starboard/aft) +"juE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"juH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"juS" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"juW" = ( +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"juY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"jvf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"jvm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"jvn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"jvo" = ( +/obj/machinery/dna_scannernew, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"jvt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"jvw" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/turf/open/floor/plasteel/dark, +/area/science/server) +"jvz" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos/upper) +"jvN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"jvP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"jwg" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/engine/hull/reinforced, +/area/engineering/atmos/upper) +"jwj" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"jwm" = ( +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jwo" = ( +/obj/machinery/monkey_recycler, +/obj/item/food/monkeycube, +/obj/item/food/monkeycube, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jwv" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jwx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jwz" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry/south) +"jwE" = ( +/obj/machinery/camera{ + c_tag = "Dormitory South"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jwK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"jwL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"jwY" = ( +/obj/structure/closet, +/obj/item/clothing/under/suit/black/skirt, +/obj/item/clothing/under/suit/black_really, +/obj/structure/window{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"jxf" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/tacmap/directional/north, +/obj/structure/closet, +/obj/item/clothing/under/costume/sailor, +/obj/item/clothing/under/costume/bathrobe, +/obj/item/clothing/under/costume/kilt, +/obj/item/clothing/head/beret, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"jxi" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = 24; + pixel_y = 4; + req_access_txt = "24" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/atmos) +"jxu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"jxz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetic"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"jxF" = ( +/obj/machinery/door/airlock/command/glass{ + name = "AI Core"; + req_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"jxI" = ( +/turf/closed/wall, +/area/lawoffice) +"jxK" = ( +/obj/machinery/camera{ + c_tag = "MiniSat External NorthWest"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"jxP" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"jxT" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"jxX" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"jxZ" = ( +/obj/item/hfr_box/body/moderator_input, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"jyc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"jyi" = ( +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"jyv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"jyz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"jyD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"jyG" = ( +/obj/structure/railing/left{ + dir = 8; + pixel_y = 2 + }, +/turf/open/openspace, +/area/service/chapel/main) +"jyL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"jyM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jyR" = ( +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jze" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_y = 8 + }, +/obj/item/clothing/shoes/magboots{ + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/machinery/door/window/northright{ + dir = 8; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"jzB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"jzV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"jAe" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/lab) +"jAj" = ( +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"jBe" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"jBi" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/art) +"jBq" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"jBt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"jBF" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"jBV" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"jCr" = ( +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jCv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"jCJ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access_txt = "8;12" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jDv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jDR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"jDX" = ( +/turf/closed/wall, +/area/commons/fitness) +"jDZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/solars/port/aft) +"jEk" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/service/chapel/main) +"jEs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"jEz" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jED" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningoffice/meteor) +"jEH" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"jET" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"jEY" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jFj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","perma_brig") + }, +/obj/machinery/computer/security/telescreen/prison{ + network = list("perma_brig"); + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jFr" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engineering/main) +"jFA" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + freq = 1400; + location = "Tool Storage" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"jFQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"jGb" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"jGf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light_switch/directional/north{ + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "rnd3"; + name = "бронешторы лаборатории нанитов"; + pixel_y = 35; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"jGh" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"jGi" = ( +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"jGr" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/multitool, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"jGu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jGv" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jGx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"jHp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"jHD" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"jHK" = ( +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jIb" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jIe" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"jIl" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"jIn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jIo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jIC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/item/storage/secure/safe{ + dir = 1; + pixel_x = 6; + pixel_y = -28 + }, +/obj/machinery/computer/aifixer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"jIH" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/engine/hull/reinforced, +/area/engineering/atmos/upper) +"jIT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"jJp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"jJD" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"jJE" = ( +/obj/structure/chair/comfy/beige, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"jKc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"jKg" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"jKi" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jKk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"jKl" = ( +/obj/machinery/portable_atmospherics/canister/freon, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"jKr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"jKJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/hydroponics) +"jKL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Art" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"jKO" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jKU" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"jLe" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"jLy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"jLz" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"jLV" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/aft/exploration) +"jMa" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"jMf" = ( +/obj/structure/table, +/obj/item/paper{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/paper{ + layer = 3.02; + pixel_x = 4 + }, +/obj/item/paper{ + layer = 3.01; + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/pen{ + layer = 3.03; + pixel_y = -3 + }, +/obj/item/paper{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/paper{ + layer = 3.01; + pixel_x = -3; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jMh" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"jMk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"jMo" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"jMq" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"jMu" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"jMA" = ( +/obj/machinery/light/blacklight, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"jMD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"jMH" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 15 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jMI" = ( +/obj/item/beacon, +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating/airless, +/area/science/test_area) +"jMP" = ( +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"jNa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"jNg" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/multitool, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"jNj" = ( +/obj/structure/table/glass, +/obj/item/hatchet, +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/reagent_containers/glass/bucket, +/obj/item/plant_analyzer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"jNu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"jNC" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"jOa" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 17 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jOd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"jOD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"jOF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jOS" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"jOV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"jOX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"jPh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"jPv" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/hallway/primary/aft/restroom) +"jPz" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"jPD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"jPG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/requests_console/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"jPO" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"jPQ" = ( +/obj/structure/table/wood, +/obj/item/nullrod, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"jPS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"jPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Incinerator" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jQf" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jQl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 3 + }, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/security/detectives_office) +"jQn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom{ + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"jQv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"jQK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jQM" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/service/chapel/main) +"jQQ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"jQV" = ( +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"jRa" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jRx" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"jRz" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/binary/pump/off/orange/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"jRJ" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "71" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "бронешторы лаборатории взрывотехники" + }, +/turf/open/floor/plasteel, +/area/science/storage) +"jRO" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + id = "garagh-up" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jRR" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Mining Maintenance"; + req_access_txt = "48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/miningdock) +"jSa" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/siding/white{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"jSi" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"jSq" = ( +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/stack/package_wrap, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Prison Workshop"; + dir = 4; + network = list("ss13","perma_brig") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -30; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jSt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"jSz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"jSE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"jSF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/pointybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"jSJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/box/syringes{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"jSP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"jSU" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jSV" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"jTd" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"jTl" = ( +/turf/open/floor/wood, +/area/service/library/artgallery) +"jTn" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"jTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/computer/security/telescreen/turbine{ + dir = 1; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jTH" = ( +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jTJ" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"jTP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"jTS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"jUc" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jUe" = ( +/turf/open/space/openspace, +/area/space) +"jUB" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"jUW" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"jVi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/security/execution/transfer) +"jVj" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"jVq" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ + critical_machine = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = 38; + pixel_y = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"jVr" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/space/nearstation) +"jVA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jVC" = ( +/obj/structure/bookcase/random/religion, +/turf/closed/wall, +/area/service/library) +"jWt" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jWu" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/burnt_floor, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jWw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jWI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"jWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jXb" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jXm" = ( +/obj/structure/holohoop, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"jXq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"jXu" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "atmos"; + name = "бронежалюзи атмоса" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"jXH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"jXL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/floor/directional/north, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"jXO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"jXT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"jYj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"jYk" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"jYo" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/department/electrical/two) +"jYt" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"jYu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"jYz" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"jYA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"jYK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"jYM" = ( +/turf/open/floor/grass, +/area/service/hydroponics) +"jYU" = ( +/obj/structure/closet/wardrobe/grey, +/obj/machinery/requests_console{ + department = "Locker Room"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"jZc" = ( +/obj/machinery/door/window/southleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Gas Storage"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"jZl" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"jZv" = ( +/obj/structure/bodycontainer/crematorium{ + id = "crematoriumChapel" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"jZI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"jZL" = ( +/obj/machinery/shower/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"jZO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"jZY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"kam" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"kaw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kaX" = ( +/obj/structure/rospilovo/doski/doski3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"kbc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"kbd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"kbi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kbj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"kbr" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"kbs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination/med, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"kbu" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"kbE" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kbP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kbW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kcg" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 1; + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"kcl" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kcn" = ( +/obj/structure/table, +/obj/item/multitool, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"kcp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"kcs" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"kcz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"kcB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"kcD" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/service/hydroponics) +"kcJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kcP" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"kdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"kdd" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Port Bow Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/solars/port/fore) +"kdk" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos/upper) +"kdE" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/service/hydroponics) +"kdO" = ( +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "secure storage" + }, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"kdS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"kdV" = ( +/obj/structure/rospilovo/cover{ + pixel_x = 16 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"kel" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kes" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"kff" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/solars/port/aft) +"kfl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"kfq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"kfI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kfK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kfX" = ( +/obj/structure/rack, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "EVA South"; + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"kgb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"kge" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom3"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"kgm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"kgA" = ( +/obj/machinery/modular_computer/console/preset/cargochat/service{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"kgF" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kgH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"kgK" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/chapel/main"; + name = "Chapel APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"khc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"khw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"khx" = ( +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"khA" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"khO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/stairs/west, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"khQ" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"kih" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"kik" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kip" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"kiq" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"kis" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/spacepod_equipment/cargo/large{ + pixel_y = 9 + }, +/obj/item/spacepod_equipment/cargo/chair{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"kiz" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"kiE" = ( +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"kiT" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Observation"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"kiW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"kiY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kjg" = ( +/obj/machinery/telecomms/server/presets/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"kjh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kjn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/engine, +/area/engineering/second_engy) +"kjo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"kjD" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"kjN" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"kjO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor3"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/commons/vacant_room/commissary/third) +"kka" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/maintenance/port/fore) +"kkj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"kkq" = ( +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south_hall) +"kkG" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"kkH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"kkW" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"kkX" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"klc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"kli" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"klz" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor3"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"klD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"klI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"klN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kme" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"kmf" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/primary/aft/restroom) +"kmo" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"kmr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"kmx" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"kmz" = ( +/turf/closed/wall, +/area/science/lab) +"kmB" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"kmD" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"kmS" = ( +/obj/structure/table/wood, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kmU" = ( +/obj/item/hfr_box/corner, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"knc" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"knu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "robo2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"knA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library/upper) +"knE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"knH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/sign/picture_frame/showroom{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"knL" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/analyzer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"knM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"knP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/department/electrical) +"knR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"knU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"knY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"kot" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"koM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"koS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/checkpoint/escape) +"koY" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"kpp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"kpr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"kpu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"kpP" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"kpQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"kpT" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"kpV" = ( +/obj/machinery/door/airlock/security{ + id_tag = "laborexit"; + name = "Labor Shuttle"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"kqb" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"kqn" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"kqv" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"kqC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"kqE" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"kqK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"kqL" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"kqS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"kqT" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"kri" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"krm" = ( +/turf/open/floor/plasteel, +/area/science/xenobiology) +"krw" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"krz" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"krC" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"krF" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"krN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/courtroom) +"krQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"krT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"krZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"ksc" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"kse" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"ksu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"ksS" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"ktc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"ktd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"ktk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ktp" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ktD" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"ktG" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"ktJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"kuf" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"kug" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"kum" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"kuS" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/science) +"kuU" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck/cas{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = -7 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"kvk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kvl" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "8;12" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kvn" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"kvo" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kvv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"kvz" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"kvH" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"kvN" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/carpet, +/area/maintenance/department/chapel) +"kvY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"kwn" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"kwt" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kwu" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"kwD" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Robotics Bay"; + req_access_txt = "23" + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"kwH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side, +/area/science/lab) +"kwM" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/firstaid/regular, +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/primary"; + name = "Primary Tool Storage APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"kwN" = ( +/obj/item/radio/intercom{ + pixel_y = -35 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kwR" = ( +/obj/structure/table, +/obj/item/folder/blue, +/obj/item/pen/blue, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"kxg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"kxh" = ( +/obj/structure/extinguisher_cabinet{ + dir = 2; + pixel_x = 0; + pixel_y = -28 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"kxj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"kxF" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"kxK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"kxL" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/cargo/sorting) +"kxM" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kxQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"kxZ" = ( +/obj/item/hfr_box/corner, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"kye" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kyf" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"kyk" = ( +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Holding Cell"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"kym" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "Security" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"kyC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"kyD" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 27; + receive_ore_updates = 1 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"kyU" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"kyX" = ( +/obj/machinery/camera{ + c_tag = "Locker Room South"; + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"kzb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"kzc" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"kzf" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/maintenance/department/electrical/two) +"kzh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"kzi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kzo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4; + piping_layer = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"kzp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"kzs" = ( +/obj/machinery/hydroponics/soil, +/obj/item/shovel/spade, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/security/prison) +"kzR" = ( +/obj/machinery/door/airlock/command{ + name = "MiniSat Access"; + req_access_txt = "65" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"kzU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"kAd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"kAi" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kAJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + req_one_access_txt = "11;101" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"kAK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"kAX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kBh" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/structure/sink/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"kBC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"kBD" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"kBG" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kBX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"kCh" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "Lower Hydroponics APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kCn" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"kCv" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"kCy" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/plaques/robust/bronze{ + pixel_y = -33 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"kCC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kCH" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Maintenance"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical/two) +"kCM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Art Storage" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"kCT" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"kCX" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"kCY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kDa" = ( +/obj/structure/table, +/obj/item/stamp, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kDn" = ( +/obj/structure/table/reinforced, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/atmos, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/clipboard{ + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"kDq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/checkpoint/escape) +"kDu" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kDv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kDw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"kDG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"kDM" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kDR" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"kDS" = ( +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 26 + }, +/obj/vehicle/ridden/forklift/science, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"kDT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kDW" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera/autoname, +/obj/structure/reagent_dispensers/foamtank, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"kEa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"kEd" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"kEh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"kEj" = ( +/obj/machinery/scanner_gate, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"kEv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kEw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/turntable, +/obj/machinery/newscaster{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"kEB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"kEC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/trunk/multiz/down, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kEF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"kEW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/engineering/manufactory) +"kFg" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"kFs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/item/target/syndicate, +/obj/effect/turf_decal/box/red, +/turf/open/space/openspace, +/area/space/nearstation) +"kFF" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"kFO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/mixing) +"kGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kGo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/lawoffice) +"kGE" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/item/trash/sosjerky, +/obj/item/trash/boritos, +/obj/item/trash/can, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/modular_computer/tablet, +/obj/item/radio/off{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kGF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/carpet, +/area/service/library/upper) +"kGJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/girder, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kGK" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"kGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/hallway/primary/aft/exploration) +"kGM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"kGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"kGU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kHk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"kHo" = ( +/obj/structure/table, +/obj/item/storage/box/mousetraps{ + layer = 3.01; + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/storage/box/mousetraps{ + pixel_y = 9 + }, +/obj/item/restraints/legcuffs/beartrap{ + layer = 3.02; + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/restraints/legcuffs/beartrap{ + layer = 3.02; + pixel_x = 9; + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"kHq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"kHS" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"kHW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kId" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"kIy" = ( +/obj/structure/window/paperframe, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"kID" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/cytology) +"kIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kIR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/vending/mechcomp, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"kIU" = ( +/obj/item/circuitboard/machine/stasis, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kJk" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"kJm" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement, +/turf/open/floor/wood, +/area/service/library/upper) +"kJo" = ( +/obj/structure/bonfire/prelit{ + density = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"kJq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"kJv" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "10;13" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kJw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kJE" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"kJH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"kJJ" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"kJP" = ( +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Court Cell"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"kKc" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"kKe" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4; + piping_layer = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"kKf" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"kKk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"kKn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"kKr" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"kKy" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"kKA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"kKJ" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"kKM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"kKS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"kKV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "executionfireblast" + }, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Transfer Room"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"kKY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"kLb" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"kLn" = ( +/obj/effect/spawner/random/contraband/prison, +/obj/structure/closet/crate, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/security/prison) +"kLr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"kLA" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"kLH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"kLR" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/research/abandoned) +"kLX" = ( +/obj/structure/rospilovo/komod{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/rospilovo/radio{ + pixel_x = -4; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"kMe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kMl" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"kMp" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"kMu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kME" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"kMN" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/tcomms_all, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"kMQ" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/lab"; + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"kMW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kNb" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Bay" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"kNl" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23"; + security_level = 6 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"kNp" = ( +/obj/machinery/camera/autoname{ + dir = 5; + network = list("ss13","perma_brig") + }, +/turf/open/space/basic, +/area/space) +"kNu" = ( +/obj/machinery/light, +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"kNE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/stairs/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"kNV" = ( +/obj/machinery/modular_computer/console/preset/cargochat/cargo{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"kNX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "garagh-up"; + name = "Blast Door Control"; + pixel_x = -28 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"kOf" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical/two) +"kOv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/autoname, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"kOz" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"kOI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"kOK" = ( +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/effect/turf_decal/bot_white, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"kOL" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + id = "garagh-down" + }, +/obj/machinery/button/door{ + id = "garagh-down"; + name = "Blast Door Control"; + pixel_x = -28 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/electrical/two) +"kOZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/department/electrical) +"kPd" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/seeds/cotton/durathread, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"kPk" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"kPx" = ( +/obj/item/stack/rods, +/turf/open/space/openspace, +/area/space/nearstation) +"kPz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/service/bar) +"kPJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"kPN" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kQd" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"kQg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kQE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"kQT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"kQU" = ( +/obj/machinery/door/airlock/security{ + name = "Prison Workshop" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"kRb" = ( +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Telecomms)"; + pixel_y = 26 + }, +/obj/structure/cable, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"kRq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"kRx" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"kRD" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"kRE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"kRL" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kRO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Engineering"; + name = "Бронежалюзи инженерного блока" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"kSc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"kSn" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel/white/corner, +/area/science/research) +"kSA" = ( +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"kSC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"kSL" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kSN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"kSY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/bottom_station_maints) +"kTc" = ( +/obj/machinery/light/directional/south, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kTk" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"kTm" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/suit_storage_unit/mining/eva, +/turf/open/floor/plasteel, +/area/cargo/qm) +"kTz" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"kTE" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"kUb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"kUc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kUB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"kUQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"kUZ" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/security/prison/safe"; + dir = 4; + name = "Prison Wing Cells APC"; + pixel_x = 25 + }, +/turf/open/floor/plating, +/area/security/prison) +"kVA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"kVK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"kVP" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_y = 15 + }, +/obj/item/storage/box/flare{ + layer = 3.01; + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kWi" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall, +/area/engineering/main) +"kWm" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"kWo" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"kWt" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"kWD" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"kWF" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/engineering/second_engy) +"kWK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"kWL" = ( +/obj/machinery/atmospherics/miner/n2o, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos/upper) +"kWO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"kWV" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"kWY" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x5, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kXo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"kXp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"kXt" = ( +/obj/structure/chair/stool, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"kXJ" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"kXT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"kXU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"kXV" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cab1"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"kXZ" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"kYf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"kYg" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kYj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"kYB" = ( +/obj/effect/decal/cleanable/garbage, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"kYO" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/service/chapel/main) +"kYV" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"kZc" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"kZi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"kZn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"kZs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"kZt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"kZE" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/spawner/random/decoration/glowstick/on{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/spawner/random/decoration/glowstick/on{ + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"kZF" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kZS" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kZU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"kZZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"laA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/port) +"laH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"laV" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"lbd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"lbi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lbt" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"lbC" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"lbF" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/cargo/office) +"lbI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"lbL" = ( +/obj/machinery/light/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/storage_shared) +"lbT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"lbV" = ( +/obj/effect/landmark/start/paramedic, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"lcg" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"lco" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/mob/living/simple_animal/parrot/poly, +/obj/machinery/pdapainter/engineering, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"lcv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"lcy" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lcA" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lcH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_access_txt = "23"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"lcN" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"ldk" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ldv" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External South Bottom"; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ldP" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/service/library/upper) +"ldR" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Control"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"ldS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"ldT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"lec" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ley" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"leB" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"leI" = ( +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"leP" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer"; + security_level = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"leS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"leV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/toner, +/obj/item/hand_labeler, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"lfq" = ( +/obj/machinery/meter, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"lfx" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/solars/port/aft) +"lfE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"lfG" = ( +/obj/machinery/light/small/red/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lfJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"lfQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"lfS" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Manufactory"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"lfU" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"lfY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"lgj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"lgk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lgt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 8; + pixel_y = -2 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"lgx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/vending/cigarette, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"lgy" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lgH" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"lgI" = ( +/obj/structure/sink/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"lgQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"lgV" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lho" = ( +/turf/closed/wall, +/area/maintenance/space_hut) +"lhA" = ( +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","perma_brig") + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = /area/security/prison; + dir = 1; + name = "Prison Wing APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"lhE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"lhK" = ( +/obj/item/cigbutt, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lhM" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"lhU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/bottom_station_maints) +"lhY" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lil" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"lis" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"liC" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "10;13" + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"liF" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"liQ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"liW" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ljd" = ( +/turf/open/floor/plasteel/monofloor, +/area/science/research/abandoned) +"ljj" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/atmospherics, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"ljs" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"ljt" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/healthanalyzer, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"ljA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/manufactory) +"ljE" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"ljG" = ( +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"ljJ" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/circuitboard/machine/vendatray, +/obj/item/camera, +/obj/item/toner/large, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"ljN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"ljU" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"ljX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ljY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"lkd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"lkf" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lkn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"lkE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lkI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"llf" = ( +/obj/machinery/computer/nanite_chamber_control{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"llk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/structure/curtain{ + color = "#ff0000"; + open = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/fitness/kachalka) +"lll" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"llr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/starboard/low_level_service) +"llt" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/port) +"llD" = ( +/obj/structure/table, +/obj/item/storage/box/hug{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/razor{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"llG" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"llI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"llO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"llR" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"lma" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"lmc" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"lmy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"lmH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48"; + shuttledocked = 1 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"lmI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lnb" = ( +/obj/structure/destructible/cult/tome, +/obj/item/clothing/under/suit/red, +/obj/item/book/codex_gigas, +/turf/open/floor/wood, +/area/service/library/upper) +"lng" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lnk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/closed/wall/r_wall, +/area/science/storage) +"lno" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer5, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer1, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"lnu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"lnE" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 6"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"lnF" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"lnJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"lnL" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"loj" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"loy" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"loB" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/rack, +/obj/item/clothing/suit/hooded/wintercoat/science{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/suit/hooded/wintercoat/science{ + pixel_x = -1 + }, +/obj/item/clothing/shoes/winterboots{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/clothing/shoes/winterboots, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"loE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"loG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/aft) +"loM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"loS" = ( +/turf/closed/wall, +/area/medical/abandoned) +"loW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"loZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/commons/fitness) +"lpa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lph" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"lpl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lpF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lpG" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"lpS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"lpW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/mod/maint, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"lqc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"lqd" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"lqi" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"lqj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"lql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 6; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"lrd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"lrh" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/hallway/secondary/entry) +"lrt" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lrz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"lrA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lrE" = ( +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lrN" = ( +/obj/structure/mirror{ + pixel_y = 30 + }, +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"lsd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"lsv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"lsz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"lsB" = ( +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing/chamber) +"lsC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lsE" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lsH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal exit vent" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"lsK" = ( +/obj/item/radio/intercom{ + pixel_y = -35 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"lsR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"lsY" = ( +/turf/closed/wall/r_wall, +/area/commons/cryopods) +"lta" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"ltb" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ltf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"ltm" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"ltp" = ( +/turf/closed/wall, +/area/maintenance/fore) +"lty" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"ltG" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ltU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"ltV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ltX" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"lui" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"lut" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"luu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"luE" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/monkey_recycler, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"luR" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"luS" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"luZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lvz" = ( +/obj/structure/cable, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/security/prison) +"lvA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"lvJ" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/space/openspace, +/area/engineering/atmos/upper) +"lvV" = ( +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"lwf" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lwg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"lwn" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"lww" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"lwA" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lwB" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"lwL" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 27 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"lwM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lwN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"lwW" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/rcl/pre_loaded, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"lxb" = ( +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"lxh" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/component_printer, +/turf/open/floor/plasteel/monofloor, +/area/science/research/abandoned) +"lxk" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lxl" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lxt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio8"; + name = "Xenobio Pen 8 Blast Door" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"lxI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"lxL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lxR" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"lye" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"lyh" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/courtroom) +"lyo" = ( +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"lyF" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"lyJ" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"lyR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lzc" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"lzp" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/orange/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"lAc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"lAf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lAi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"lAB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"lAG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"lAL" = ( +/obj/structure/sign/departments/mait/alt, +/turf/closed/wall, +/area/commons/vacant_room/commissary/second) +"lAZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lBg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = -31 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"lBr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor"; + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"lBz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lBF" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/south) +"lBG" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"lBI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"lBM" = ( +/obj/structure/chair/sofa/corp{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"lBO" = ( +/turf/closed/wall, +/area/cargo/sorting) +"lBS" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/mixing/chamber) +"lBW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"lBY" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"lCc" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"lCC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"lCH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lCZ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"lDc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/commons/dorms"; + name = "Dormitory APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lDP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"lDU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics North West"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"lDV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"lEc" = ( +/obj/machinery/teleport/station, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"lEf" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/ai_module/reset, +/obj/item/ai_module/core/full/corp, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"lEk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lEl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lEm" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/table/wood, +/obj/machinery/fax, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"lEx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"lEz" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"lEC" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"lEN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/security/prison) +"lES" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lFa" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/shop) +"lFj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"lFv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"lFA" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south_hall) +"lFD" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"lFK" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"lFS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lFW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"lGQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"lGX" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"lHa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"lHq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"lHu" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + pixel_y = -29 + }, +/obj/item/storage/belt/janitor, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -17; + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -13 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"lHL" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lIi" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/floor/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"lIn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"lIp" = ( +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Transfer Area Lockdown"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/machinery/button/flasher{ + id = "executionflash"; + pixel_x = 24; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"lIv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"lIC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"lID" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_dorm3"; + name = "Unit B" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"lII" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"lIM" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"lIV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"lJc" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/science/xenobiology) +"lJq" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/restraints/handcuffs, +/obj/item/reagent_containers/spray/pepper, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lJA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"lJC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"lJU" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lKb" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"lKf" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lKx" = ( +/obj/structure/chair{ + dir = 8; + name = "Defense" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lKA" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"lKV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lKX" = ( +/obj/machinery/atmospherics/miner/plasma, +/obj/effect/turf_decal/tile/hex/purple, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos/upper) +"lLf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/cream_pie, +/turf/open/floor/plasteel/dark/corner, +/area/service/theater) +"lLA" = ( +/obj/structure/bed, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"lLG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"lLL" = ( +/obj/effect/turf_decal/tile/dark, +/obj/effect/turf_decal/tile/dark{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lLZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"lMg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"lMn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"lMp" = ( +/turf/closed/wall, +/area/service/hydroponics/garden) +"lMC" = ( +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"lMG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"lMK" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"lMN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"lMX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"lNb" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"lNe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/escape) +"lNs" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"lNu" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lNA" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"lNB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"lNE" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"lNL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/brigdoor, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"lNU" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Laboratory"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lNX" = ( +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/dark, +/area/science/server) +"lOf" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lOt" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lOF" = ( +/obj/structure/table/wood, +/obj/item/book/fish_catalog{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/fish_feed{ + pixel_x = 7 + }, +/obj/tacmap/directional/north, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"lOL" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"lOQ" = ( +/obj/structure/tank_holder/oxygen/red, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"lOT" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"lPa" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/crate{ + name = "satellites crate" + }, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"lPm" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"lPx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"lPA" = ( +/obj/structure/table/wood, +/obj/item/camera, +/turf/open/floor/wood, +/area/service/library/upper) +"lPF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"lPO" = ( +/turf/closed/wall, +/area/service/chapel/office) +"lQl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"lQr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"lQs" = ( +/obj/item/wrench, +/obj/item/screwdriver, +/obj/structure/rack, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"lQK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"lQP" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"lRf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engineering/main) +"lRi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"lRn" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"lRo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/command/heads_quarters/ce"; + dir = 4; + name = "CE Office APC"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"lRK" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/computer/chef_order{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"lRO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"lRY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lSc" = ( +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"lSl" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"lSq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lSr" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lSt" = ( +/obj/machinery/power/apc{ + areastring = "/area/service/kitchen"; + name = "Kitchen APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"lSy" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/structure/table, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = 5 + }, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_y = 7 + }, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = -5 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"lSB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"lSC" = ( +/turf/closed/wall, +/area/engineering/atmos/upper) +"lSK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"lTd" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lTe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/secondary/entry/public) +"lTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"lTh" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"lTl" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/machinery/camera{ + c_tag = "Labor Shuttle Dock North" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"lTr" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"lTw" = ( +/obj/effect/landmark/navigate_destination/tcomms, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"lTH" = ( +/obj/machinery/mass_driver/shack{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/space_hut) +"lTK" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/one) +"lTQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"lTY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"lUc" = ( +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"lUe" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lUg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lUG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"lUI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics) +"lUN" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"lUR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lUT" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"lUV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry/public) +"lVe" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lVz" = ( +/obj/machinery/button/door{ + id = "teledoor"; + name = "MiniSat Teleport Shutters Control"; + pixel_y = 25; + req_access_txt = "17;65" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lVH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"lVP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"lVU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lWd" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter"; + req_access_txt = "17;65" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lWh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"lWl" = ( +/obj/structure/table, +/obj/item/lighter/greyscale{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/kitchen/spoon{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical/old{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"lWo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/rack, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"lWp" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"lWr" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"lWu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"lWv" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"lWy" = ( +/obj/machinery/vending/custom, +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"lWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"lWC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"lWD" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/primary) +"lWW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"lXa" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"lXs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"lXw" = ( +/obj/structure/table, +/obj/item/camera_film, +/obj/item/camera, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"lXx" = ( +/obj/item/radio/intercom/directional/north, +/obj/machinery/vending/drugs, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"lXL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"lXM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"lXU" = ( +/obj/structure/easel, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"lXX" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"lYh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"lYt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"lYL" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/vending_refill/cigarette, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthEast"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/item/clothing/head/collectable/tophat, +/turf/open/floor/wood, +/area/service/bar) +"lYR" = ( +/turf/open/floor/engine, +/area/maintenance/port/aft) +"lYV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"lZc" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/syringe{ + pixel_y = 4 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 4; + icon_state = "right"; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"lZp" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"lZB" = ( +/obj/item/radio/intercom/directional/north, +/obj/item/storage/box/handcuffs{ + pixel_x = -3; + pixel_y = 12 + }, +/obj/item/storage/box/flare{ + layer = 3.01; + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"lZD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"maq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"maK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"mbd" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"mbe" = ( +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"mbp" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/field/generator, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"mbA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"mbC" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"mbI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/vault) +"mcd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mch" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"mcm" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"mco" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/vehicle/ridden/janicart, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"mcA" = ( +/obj/machinery/door/window/eastleft{ + icon_state = "right"; + name = "Incoming Mail"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"mcF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/advanced_airlock_controller/directional/north{ + exterior_pressure = 20 + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"mcK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"mcL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Robotics"; + req_access_txt = "23" + }, +/turf/open/floor/circuit, +/area/science/robotics) +"mcM" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"mcU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Door" + }, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"mcV" = ( +/obj/machinery/light/floor{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"mdc" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/dorms) +"mdz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mdD" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mdE" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"mdN" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/computer/security/telescreen/rd{ + dir = 4; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"mdV" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/maintenance/department/chapel) +"mdZ" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio11"; + name = "Xenobio Pen 11 Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"meF" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engineering/manufactory) +"meK" = ( +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"meL" = ( +/obj/machinery/camera{ + c_tag = "Testing Chamber"; + dir = 1; + network = list("test","rd") + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/frame/machine/wired, +/turf/open/floor/engine, +/area/science/misc_lab) +"mfb" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Engineering"; + name = "Бронежалюзи инженерного блока" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/manufactory) +"mfn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engineering/main) +"mfp" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mfC" = ( +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"mfH" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/ce) +"mfM" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/hallway/secondary/entry/south_hall) +"mfQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/solars/port/fore) +"mfR" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1; + piping_layer = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden/layer1, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"mfT" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mgn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"mgo" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel, +/area/engineering/main) +"mgt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"mgw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mgG" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"mgP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mgR" = ( +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"mhd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/layer_manifold/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mhh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"mhj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mhl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"mhx" = ( +/turf/open/floor/carpet, +/area/service/library/upper) +"mhG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"mhP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"mia" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"mij" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"mik" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"mim" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"mix" = ( +/obj/effect/turf_decal/arrows, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"miG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"miQ" = ( +/turf/closed/wall, +/area/maintenance/port) +"miS" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"mjb" = ( +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"mjc" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"mjl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"mjo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mjr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"mjt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"mjC" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"mjD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"mjF" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mjH" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mjQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "vroomshutter"; + name = "Vacant Room Shutter" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/vacant_room) +"mjW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mjZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Aft Primary Hallway 1"; + dir = 8; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mka" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mkf" = ( +/obj/machinery/telecomms/server/presets/security, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"mkj" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mkv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"mkC" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"mkL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/main) +"mkN" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 1 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"mkO" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/north, +/turf/open/openspace, +/area/cargo/storage) +"mkP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"mkR" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel, +/area/science/mixing) +"mkS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mlk" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mlr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"mlz" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"mlA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mlD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mlK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mmb" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"mmc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"mms" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"mmv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"mmP" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mmZ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"mnJ" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"mnN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"mnU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"mod" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/aft"; + name = "Starboard Quarter Maintenance APC"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mov" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/food/omelette, +/obj/item/food/omelette, +/turf/open/floor/plasteel, +/area/security/prison) +"moA" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"moS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"moY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"mpf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"mpj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mpp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"mpr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"mpt" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"mpN" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"mpQ" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"mpV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"mqg" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mqq" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/four) +"mqz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"mqO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"mqW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/nanite_programmer, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"mrb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"mrj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"mrp" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"mrq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/price_tagger, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"mrr" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/service/chapel/main) +"mrv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rnd2"; + name = "бронеставни лаборатории взрывотехники" + }, +/turf/open/floor/plating, +/area/science/mixing) +"mse" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"msh" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"msj" = ( +/obj/machinery/status_display/ai{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"msp" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"msu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"msC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"msD" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"msH" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"msK" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"msR" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"msU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"mta" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/port) +"mtd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"mth" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mtl" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/security/upper) +"mtm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"mtt" = ( +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"mtH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/mining_rack, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"mtK" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"mtO" = ( +/turf/open/floor/plating, +/area/maintenance/disposal) +"mtS" = ( +/turf/open/floor/engine/hull, +/area/space/nearstation) +"mtX" = ( +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"mum" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"muw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"mux" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 1; + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"muy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "robo2" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"muE" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"muM" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/parquet, +/area/service/library) +"muR" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mve" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/rack, +/obj/item/stock_parts/cell/hyper, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"mvh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"mvk" = ( +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plating, +/area/cargo/miningoffice/meteor) +"mvB" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mvE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"mwh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"mwV" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/xenobiology) +"mwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mxj" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"mxn" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"mxB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/aft) +"mxK" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"mxT" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"mxU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/item/mining_thing/amd, +/obj/item/mining_thing/amd{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"mxV" = ( +/obj/structure/table, +/obj/item/reagent_containers/pill/mutadone{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/pill/mutadone{ + pixel_y = -1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/button/door{ + id = "rnd4"; + name = "бронешторы лаборатории генетики"; + pixel_x = -32; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"mya" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"myl" = ( +/turf/open/floor/engine, +/area/science/research/abandoned) +"myq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"myy" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"myC" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"myK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"myQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"myR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"myZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = -28 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"mze" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mzh" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/fore/secondary) +"mzr" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"mzB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/south) +"mzG" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"mzH" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/science/storage) +"mzK" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"mAb" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"mAu" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"mAz" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"mAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mAG" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/service/kitchen) +"mAQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos/upper) +"mAV" = ( +/obj/structure/sign/departments/evac{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"mAW" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/crate{ + name = "satellites crate" + }, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"mBg" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 7"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "Xenobio Pen 7 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"mBs" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"mBv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/mob/living/carbon/human/species/monkey/punpun, +/turf/open/floor/wood, +/area/service/bar) +"mBA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/structure/curtain{ + color = "#ff0000"; + open = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/fitness/kachalka) +"mBH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"mBK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"mBN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1; + on = 0 + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"mBO" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + areastring = "/area/science/mixing/chamber" + }, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/assembly/igniter{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/assembly/igniter{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/assembly/igniter{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/assembly/igniter{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"mBQ" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/item/gavelhammer, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mBX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"mBY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"mCa" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"mCb" = ( +/obj/structure/sign/picture_frame{ + pixel_y = -32 + }, +/turf/open/floor/wood/large, +/area/service/library) +"mCh" = ( +/obj/structure/table, +/obj/item/blackmarket_uplink, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"mCk" = ( +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"mCq" = ( +/obj/machinery/camera{ + c_tag = "Library South"; + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"mCr" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"mCt" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"mCB" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mCO" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mCW" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plating, +/area/maintenance/aft) +"mDt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"mDM" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mDQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination/gateway, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mEk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"mEm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"mEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mEw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"mEz" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mED" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rnd3"; + name = "research lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/science/nanite) +"mEE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mEF" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"mEL" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"mEM" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port) +"mER" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"mEV" = ( +/turf/closed/wall, +/area/commons/toilet/locker) +"mFa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"mFh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"mFD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"mFE" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"mFI" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthWest Bottom"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mFY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera/autoname{ + dir = 1; + network = list("ss13","perma_brig") + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mGe" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mGo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"mGw" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"mGE" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"mGH" = ( +/obj/structure/cable, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mGL" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics South East"; + dir = 1 + }, +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mHk" = ( +/obj/effect/turf_decal/trimline/neutral/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"mHu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"mHv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"mHA" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"mHC" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"mHI" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"mIk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"mIq" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"mIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"mIC" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mIE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"mIG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = 29; + pixel_y = -12; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"mIJ" = ( +/obj/item/storage/bag/plants/portaseeder, +/obj/structure/table/glass, +/obj/item/plant_analyzer, +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/machinery/light_switch{ + pixel_x = -6; + pixel_y = -25 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"mIN" = ( +/obj/structure/cable, +/mob/living/simple_animal/hostile/lizard{ + name = "Вертихвостка"; + real_name = "Wags-His-Tail" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"mIX" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/flash/handheld{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/item/folder/red{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/pen{ + layer = 30.1; + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"mJh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + name = "интерьерная дверь"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/science/lab) +"mJp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"mJu" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"mJv" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mJy" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"mJz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"mJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"mJR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/fancy/royalblack, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mJT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mJW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"mKt" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"mKu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Garden" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"mKy" = ( +/turf/closed/wall, +/area/cargo/miningdock) +"mKz" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"mKA" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/maintenance/aft) +"mKG" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"mKY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hunter, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"mLi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"mLj" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"mLt" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"mLE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mLH" = ( +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/green/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"mLU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/electrolyzer, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos) +"mLV" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x3, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mMd" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"mMf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"mMn" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"mMq" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics"; + req_one_access_txt = "65" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"mMr" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"mMs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"mMB" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"mMG" = ( +/obj/machinery/camera{ + c_tag = "Gateway"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mMO" = ( +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mNi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmospherics_engine) +"mNk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"mNl" = ( +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"mNM" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"mNV" = ( +/obj/machinery/suit_storage_unit/industrial/loader, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"mOm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"mOu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"mOv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"mOF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mOW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"mPj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"mPl" = ( +/obj/structure/table/reinforced, +/obj/item/food/energybar, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mPw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"mPx" = ( +/obj/machinery/door/window/southleft{ + name = "Engineering Delivery"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "engineering security door" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering_tech"; + name = "engineering security door" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mPC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"mPY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"mQA" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"mQD" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"mRk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mRl" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"mRq" = ( +/turf/open/indestructible/pool/end, +/area/commons/locker) +"mRw" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"mRy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"mRH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"mRM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mRN" = ( +/obj/structure/sign/poster/official/build, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"mRQ" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/department/electrical) +"mRR" = ( +/obj/machinery/camera{ + c_tag = "Port Hallway 3"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"mRY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"mSj" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"mSn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"mSp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"mSt" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"mSz" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/machinery/door/poddoor/shutters/prison, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"mSA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"mSL" = ( +/obj/structure/table, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"mSX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"mTd" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mTf" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"mTl" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mTE" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"mTL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"mTM" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel, +/area/engineering/main) +"mTN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"mTR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/low_level_eva) +"mTT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"mUe" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mUk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"mUo" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mUw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"mUy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"mUz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mUJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mUO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Engineering" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"mUW" = ( +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 4 + }, +/obj/machinery/computer/security/mining, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"mUX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/primary/aft/exploration) +"mVd" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance"; + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"mVh" = ( +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"mVj" = ( +/obj/structure/sink/kitchen{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"mVp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mVz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"mVZ" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"mWc" = ( +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"mWj" = ( +/obj/machinery/light_switch{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mWx" = ( +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"mWB" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"mWC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"mWL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/girder, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mXB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"mXK" = ( +/obj/structure/railing/right{ + dir = 4; + pixel_y = 2 + }, +/turf/open/openspace, +/area/service/chapel/main) +"mXM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"mYk" = ( +/obj/structure/sign/warning/deathsposal{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mYu" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mYC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"mYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"mYI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"mYJ" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"mYL" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"mYP" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mYU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mZw" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"mZH" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mZM" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mZP" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"naa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nau" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/solars/starboard/fore) +"naO" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"naT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"nba" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"nbm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"nbE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/frame/machine, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"nbI" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nbT" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nbU" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"nbY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"nbZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"ncg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"ncm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"ncq" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"ncu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ncz" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"ncB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ncK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"ncY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"ndo" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"ndB" = ( +/turf/closed/wall, +/area/commons/storage/primary) +"ndH" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/box/drinkingglasses, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/white, +/area/security/prison) +"ndZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"nem" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"new" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"neS" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"neT" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"neZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/button/door{ + id = "eva_space_out"; + name = "Контроль шторы выхода в космос"; + pixel_x = -5; + pixel_y = 26; + req_access_txt = "18" + }, +/obj/machinery/button/door{ + id = "eva_space_doors"; + name = "Болтирование космошлюза"; + normaldoorcontrol = 1; + pixel_x = -5; + pixel_y = 37; + req_access_txt = "18"; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "eva_space_doors"; + name = "Открытие космошлюза"; + normaldoorcontrol = 1; + pixel_x = 6; + pixel_y = 37; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nft" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"nfv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"nfJ" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/engineering/main) +"nfK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nfL" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nfT" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"ngh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ngC" = ( +/obj/structure/table/reinforced, +/obj/item/soap{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"ngD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"ngT" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ngW" = ( +/obj/structure/dresser, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"nha" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + pixel_y = -30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"nhf" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nhh" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nhx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"nhz" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/red/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/checkpoint/escape) +"nhB" = ( +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nhD" = ( +/obj/machinery/camera/autoname, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nhI" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/port/to_arrival) +"nhN" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/floor/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"nhO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"nic" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/courtroom"; + dir = 8; + name = "Courtroom APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"nid" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"nig" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/red/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nit" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"niC" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/engineering/second_engy) +"niD" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/service/chapel/main) +"niI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"niY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"njb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"njc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/primary) +"nje" = ( +/obj/structure/cable, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/structure/closet/crate/radiation, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"njg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"njk" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"njm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_y = 27; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"njo" = ( +/obj/item/radio/off, +/obj/item/crowbar, +/obj/item/assembly/flash/handheld, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/auxiliary"; + name = "Security Checkpoint APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"njt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"njx" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"njE" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/cargo/storage) +"njR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nks" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nkC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"nkE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"nkM" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"nkP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"nle" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"nlt" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x3, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"nlu" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Monitoring"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nly" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"nlC" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/ai_all, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"nlK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"nlM" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"nlU" = ( +/obj/machinery/camera{ + c_tag = "Robotics Lab - South"; + dir = 1; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/machinery/computer/mechpad{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"nlW" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nmf" = ( +/turf/closed/wall, +/area/hallway/primary/aft/exploration) +"nmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"nml" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"nmn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nmp" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"nmA" = ( +/obj/machinery/door/airlock/external{ + name = "Construction Zone" + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"nna" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"nnm" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nnB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"nnG" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"nnH" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"nnK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"nnO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"nnR" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/openspace, +/area/space) +"nnS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"nob" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nod" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"nog" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"nop" = ( +/obj/structure/punching_bag, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"noD" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"noN" = ( +/obj/machinery/mecha_part_fabricator/maint, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"noO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"noQ" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"noT" = ( +/obj/machinery/washing_machine, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"npb" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"npe" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nph" = ( +/turf/closed/wall, +/area/cargo/exploration_prep) +"npt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Quartermaster Maintenance"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/qm) +"nqo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"nqz" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"nqL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"nqV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"nqW" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2" + }, +/obj/machinery/camera{ + c_tag = "Cargo Delivery Office"; + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"nrf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nrt" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"nru" = ( +/obj/structure/railing, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nrw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"nrM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nrO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nrQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Atmospherics" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nrZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"nsb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"nsg" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"nsm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"nsn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"nsF" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"nsK" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/security/prison) +"nsP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"nsU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"ntc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nte" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"nth" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"nts" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 4500; + name = "waste vent" + }, +/obj/effect/turf_decal/tile/hex/brown, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"ntu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ntB" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ntP" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ntU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port/gate) +"ntX" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/price_tagger{ + pixel_y = -11 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"nua" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"nun" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/crate, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/plating, +/area/space/nearstation) +"nus" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"nux" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nuY" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"nvd" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/exit) +"nvv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"nvw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"nvy" = ( +/obj/structure/rack, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nvz" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"nvA" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nvB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"nvF" = ( +/obj/structure/ladder, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"nvH" = ( +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nvK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"nvP" = ( +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_y = -32 + }, +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"nvU" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"nvV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nwj" = ( +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/computer/department_orders/science{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"nwx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"nwy" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint1" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nwG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"nwK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/navigate_destination/dockarrival, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"nwN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nwV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"nwW" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nwX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"nwY" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/camera/autoname/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"nxn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"nxp" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"nxu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical/two) +"nxv" = ( +/obj/machinery/light, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"nxx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"nxy" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + networks = list("xeno_pens") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nxH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 14 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"nxW" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"nxY" = ( +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"nxZ" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"nya" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"nyb" = ( +/obj/effect/landmark/xeno_spawn, +/obj/item/bikehorn/rubberducky, +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"nyk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"nyr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nyD" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"nyH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"nyJ" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"nyM" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/stairs/east, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nyN" = ( +/obj/item/soap/deluxe, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"nyP" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"nzz" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"nzA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plating, +/area/maintenance/port) +"nzO" = ( +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"nAe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"nAk" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"nAt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"nAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"nAG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"nAQ" = ( +/obj/item/paper/fluff/jobs/security/beepsky_mom{ + name = "письмо от мисис Бибски" + }, +/turf/open/floor/plating, +/area/security/processing) +"nAU" = ( +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"nBn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/science/xenobiology) +"nBo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nBt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/right{ + dir = 8; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nBu" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nBx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/seeds/bamboo{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lamp/green{ + pixel_x = -16; + pixel_y = 11 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"nBz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"nBE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"nBO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nCE" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice/meteor) +"nCH" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"nCL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"nCO" = ( +/obj/machinery/camera{ + c_tag = "Research Division South"; + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"nDa" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nDl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/processing) +"nDs" = ( +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"nDF" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_y = -25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"nDH" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 21 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"nDN" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/bot, +/obj/item/binoculars, +/obj/item/gps/mining/off, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"nDP" = ( +/obj/item/cigbutt/cigarbutt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nDQ" = ( +/obj/machinery/flasher{ + id = "visitorflash"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"nDY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"nEd" = ( +/obj/machinery/door/airlock/external/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/miningoffice/meteor) +"nEl" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nEm" = ( +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"nEw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"nEH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"nFe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"nFE" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"nFM" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/service/bar) +"nFW" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/secondary/entry/public) +"nFX" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nGm" = ( +/turf/closed/wall, +/area/cargo/meeting_room) +"nGp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"nGt" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nGy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"nGH" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"nGI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nGR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"nHd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"nHs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/research) +"nHt" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"nHw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"nHG" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Bay Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nHU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/court{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/courtroom) +"nHX" = ( +/turf/closed/wall, +/area/commons/dorms/two) +"nHY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"nIb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/lab) +"nIh" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"nIi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"nIk" = ( +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nIo" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"nIp" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"nIy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"nIJ" = ( +/obj/machinery/telecomms/server/presets/service, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"nIP" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/security/prison) +"nJb" = ( +/obj/machinery/light, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/pen{ + pixel_x = 10; + pixel_y = 3 + }, +/obj/item/paperplane{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"nJl" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"nJo" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/aft) +"nJt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"nJw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"nJC" = ( +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"nJF" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_one_access_txt = "8;12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nJH" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"nJN" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External NorthWest Bottom"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nJW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"nKo" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nKu" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"nKy" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nKE" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/item/pipe_dispenser{ + pixel_y = 6 + }, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"nKK" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/mecha_part_fabricator/cargo, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"nKY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"nLm" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"nLA" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"nLD" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"nLO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"nMb" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nMh" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"nMr" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"nMF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/science/xenobiology) +"nMJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nMK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"nMO" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"nMZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"nNh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"nNl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"nNt" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nNu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/openspace, +/area/space/nearstation) +"nND" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"nNL" = ( +/obj/machinery/camera/motion{ + c_tag = "MiniSat Core Hallway"; + dir = 4; + network = list("aicore") + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"nNM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"nNX" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nNZ" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"nOd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"nOh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"nOm" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"nOr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"nOs" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"nOv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nOI" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"nOS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"nOX" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"nPi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"nPj" = ( +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nPE" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"nPJ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"nPK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nPM" = ( +/obj/effect/turf_decal/pool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"nPO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/spacepod_equipment/cargo/large, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"nPP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobiomain"; + name = "containment blast door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"nPY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"nPZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nQg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nQr" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"nQx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"nQy" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"nQD" = ( +/turf/open/openspace, +/area/commons/fitness/kachalka) +"nQL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"nQR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"nRe" = ( +/obj/effect/landmark/stationroom/maintenance/rdm11x14_sw, +/turf/open/openspace, +/area/space) +"nRh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"nRm" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nRr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nRA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"nRC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nRO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"nRV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"nRX" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 1; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 1; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nRZ" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/item/trash/can, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nSg" = ( +/obj/item/coin/silver{ + pixel_x = 8; + pixel_y = -12 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nSs" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nSv" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"nSF" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior{ + critical_machine = 1; + id_tag = "atmos_incinerator_airlock_exterior"; + name = "Turbine Exterior Airlock" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"nSZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"nTh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nTi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nTP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"nTZ" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthEast Bottom"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nUa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"nUp" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat_interior) +"nUt" = ( +/obj/machinery/camera{ + c_tag = "Research Division Access" + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nUw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"nUO" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "QM #2" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"nVa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"nVb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nVi" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/tacmap/directional/north, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/crowbar/large, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"nVk" = ( +/obj/machinery/computer/security, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"nVp" = ( +/obj/machinery/camera/autoname, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"nVv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"nVx" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nVD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"nVQ" = ( +/obj/structure/cable, +/obj/item/instrument/harmonica, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"nVX" = ( +/obj/machinery/computer/mecha{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"nWa" = ( +/obj/machinery/light, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"nWq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"nWu" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"nWA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"nWD" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/auxiliary) +"nWL" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"nWT" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"nWU" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/hallway/primary/aft/exploration) +"nXo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nXq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"nXw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"nXD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"nXF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible/layer2, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"nXI" = ( +/obj/structure/sign/departments/mait/alt, +/turf/closed/wall, +/area/maintenance/fore/secondary) +"nXQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"nXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nYf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"nYs" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nYX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nZd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"nZh" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/starboard/fore) +"nZj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/lawoffice) +"nZu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nZy" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"nZE" = ( +/obj/structure/cable, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"nZO" = ( +/obj/machinery/computer/warrant{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"nZY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"oaj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"oap" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/two) +"oav" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oaw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"oaF" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oaH" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/openspace, +/area/maintenance/port) +"oaO" = ( +/turf/open/floor/wood, +/area/service/library/upper) +"oaV" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"obf" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"obg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"obo" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"obr" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"obB" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"obF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"obH" = ( +/obj/machinery/camera{ + c_tag = "Engineering Access" + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"obI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/stack/sheet/mineral/bamboo{ + amount = 30 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"obM" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"obO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/stairs/west, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"obP" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"obR" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics) +"ocA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"ocM" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"ocV" = ( +/obj/structure/table, +/obj/machinery/button/ignition{ + id = "testigniter"; + pixel_x = -6; + pixel_y = 2 + }, +/obj/machinery/button/door{ + id = "testlab"; + name = "Test Chamber Blast Doors"; + pixel_x = 4; + pixel_y = 2; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"odc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"odd" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"odh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"odt" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"odx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"odB" = ( +/turf/open/floor/plasteel/dark/side, +/area/service/chapel/main) +"odJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"odO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"odT" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"oed" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar/large, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"oef" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/hallway/primary/aft/exploration) +"oeu" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"oev" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"oex" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"oez" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oeG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"oeM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"oeP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"oeW" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/t_scanner, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"oeY" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ofa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/emproof/empty, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"ofo" = ( +/turf/open/floor/wood, +/area/maintenance/port/aft) +"ofG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"ofI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "O2 Outlet Pump"; + target_pressure = 4500 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ofP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"ofZ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ogm" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"ogn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port/aft) +"ogz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ogC" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat/atmos"; + dir = 8; + name = "MiniSat Atmospherics APC"; + pixel_x = -25 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"ogJ" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/bottom_station_maints) +"ogL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Equipment"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ogQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/chapel/main) +"ohv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"ohC" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab) +"ohH" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ohJ" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oih" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","perma_brig") + }, +/turf/open/floor/grass, +/area/security/prison) +"oio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"oiz" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab1"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"oiD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"oiN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oiP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oiV" = ( +/obj/machinery/power/apc{ + areastring = "/area/cargo/qm"; + dir = 1; + name = "Quartermaster APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/cargo/qm) +"oiW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ojo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"ojs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"oju" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ojI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"ojX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"okj" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"okl" = ( +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"okm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"okq" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"okA" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"okF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"okI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/closed/wall, +/area/commons/vacant_room/commissary/third) +"okN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"ole" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"olu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"olw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"olC" = ( +/obj/structure/sign/warning/pods{ + pixel_x = 32 + }, +/obj/structure/table, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/bin_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/manipulator_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/micro_laser_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/scanning_module_t2, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"olI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"olM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/mecha_part_fabricator/sci, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"olN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/service/hydroponics) +"olV" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oml" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"onf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"onl" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"onm" = ( +/obj/structure/window/reinforced, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Starboard Mid"; + dir = 8; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"onn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"onv" = ( +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"ony" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"onQ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"onS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"onU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"onX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"onZ" = ( +/turf/open/openspace, +/area/maintenance/aft) +"oof" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"oor" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"ooD" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"ooK" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"ooL" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"opd" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera/autoname/directional/south, +/obj/item/t_scanner/adv_mining_scanner/lesser{ + pixel_x = 17 + }, +/obj/item/pickaxe/drill/diamonddrill, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/miningoffice/meteor) +"opy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/tacmap/directional/north, +/obj/machinery/fax, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/cargo/qm) +"opH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"opM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"opU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"opV" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lipstick/random{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"oqm" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"oqx" = ( +/obj/machinery/camera{ + c_tag = "MiniSat External NorthEast"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/turf/open/floor/engine/hull, +/area/space/nearstation) +"oqz" = ( +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"oqC" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Shuttle Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"oqH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/plaques/robust{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"oqL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oqM" = ( +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing/chamber) +"oqQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"orb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ord" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ort" = ( +/obj/machinery/door/airlock{ + name = "Garden" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"orO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"orU" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_y = 28 + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"orW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"osb" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beakers, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"osk" = ( +/obj/machinery/seed_extractor, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"oso" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"oss" = ( +/obj/structure/table/reinforced, +/obj/item/raw_anomaly_core/random{ + pixel_y = 11 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = 7; + pixel_y = 5 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/mixing) +"ost" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"osz" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"osC" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"osD" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"osF" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"osG" = ( +/obj/structure/grille/broken, +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/north) +"osP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"osT" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"osW" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"otf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"otl" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/chapel/main) +"otC" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"otN" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/openspace, +/area/engineering/atmos/upper) +"otP" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"otR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plasteel, +/area/security/prison) +"otU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/lab"; + dir = 4; + name = "Research Lab APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"otZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oub" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"ouo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"ous" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ouK" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/port) +"ouL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 4; + pixel_y = 2 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"ouP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/autolathe, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"ouS" = ( +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"ouU" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/obj/item/paper/crumpled{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ouZ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright{ + dir = 8; + req_access_txt = "18" + }, +/obj/item/storage/box/flare, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ove" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"ovf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/hallway/secondary/entry/south) +"ovq" = ( +/obj/item/reagent_containers/pill/mutadone{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/reagent_containers/pill/mutadone{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/turf_decal/bot_white, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 10 + }, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"ovv" = ( +/obj/machinery/telecomms/processor/preset_two, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ovw" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ovK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"ovL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"ovQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"ovR" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = -26; + pixel_y = 6; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/structure/window/reinforced/survival_pod{ + dir = 9 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ovS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"owe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"owr" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"owu" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"owO" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/vacant_room/office"; + dir = 8; + name = "Vacant Office APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"owT" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"owY" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oxe" = ( +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"oxj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"oxm" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oxt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research/abandoned) +"oxu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"oxy" = ( +/turf/closed/wall, +/area/service/theater) +"oxM" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"oxR" = ( +/turf/closed/wall/r_wall, +/area/cargo/miningoffice/meteor) +"oxY" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"oyh" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"oyn" = ( +/obj/effect/turf_decal/pool{ + dir = 8 + }, +/obj/item/pool/rubber_ring, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"oyp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"oyt" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"oyF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light, +/obj/structure/table/glass, +/obj/item/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/biopsy_tool{ + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"oyY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ozb" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/aft"; + dir = 8; + name = "Aft Hall APC"; + pixel_x = -25 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ozk" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ozl" = ( +/obj/effect/landmark/blobstart, +/obj/structure/training_machine, +/turf/open/floor/engine, +/area/science/misc_lab) +"ozt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"ozG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/research) +"ozK" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/mixing) +"ozM" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ozO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"ozP" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"ozU" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"oAh" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oAi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"oAt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/mixing/chamber) +"oAu" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oAv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/port) +"oAx" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"oAD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"oAU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oAZ" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"oBa" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"oBs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"oBt" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"oBA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"oBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oBH" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 1; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 1; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"oBI" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"oBP" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes{ + layer = 3.01; + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 3; + pixel_y = 13 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"oBQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"oCb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"oCc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"oCd" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/turf/open/floor/engine, +/area/science/misc_lab) +"oCi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"oCk" = ( +/obj/structure/cable, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/drinks/mug/tea{ + pixel_x = 5 + }, +/obj/item/storage/ashtray, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"oCA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"oCD" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"oCF" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit) +"oCM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Dormitories Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"oDu" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"oDz" = ( +/obj/effect/turf_decal, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"oDD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"oDV" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oDW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"oDZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plating, +/area/security/execution/transfer) +"oEl" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oEn" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 30 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"oEu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"oEz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 1; + id = "cyto" + }, +/turf/open/floor/plating, +/area/science/cytology) +"oEA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"oEE" = ( +/obj/machinery/vending/chetverochka, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/to_arrival) +"oEI" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"oEK" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oEO" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/maintenance/bottom_station_maints/south) +"oEV" = ( +/obj/structure/cable, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"oFh" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oFE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oFF" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oFR" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 8; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"oFX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"oGc" = ( +/obj/item/stack/rods/ten, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"oGl" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/prison) +"oGp" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"oGv" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"oGy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"oGM" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"oGU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"oHn" = ( +/obj/structure/cable, +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/aft) +"oHp" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/carpet, +/area/service/library/upper) +"oHq" = ( +/obj/effect/landmark/navigate_destination/court, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"oHx" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"oHF" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"oHH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/execution/transfer) +"oHL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"oHO" = ( +/obj/machinery/camera{ + c_tag = "Research and Development"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/obj/machinery/button/door{ + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"oHS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"oHT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"oHY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oIh" = ( +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft/exploration) +"oIk" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oIl" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/solars/starboard/fore) +"oIp" = ( +/obj/machinery/telecomms/server/presets/engineering, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"oIT" = ( +/obj/machinery/door/window/northright{ + dir = 8; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/turf/open/floor/wood, +/area/service/library/upper) +"oIU" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"oIX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oJq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"oJt" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"oJu" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"oJz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oJF" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"oJJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/gate) +"oJV" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"oJY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oKc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oKg" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"oKl" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"oKn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"oKr" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"oKA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oKI" = ( +/obj/effect/turf_decal/arrows{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"oKL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"oKN" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + sortType = 18 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oLh" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"oLi" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"oLo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"oLw" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"oLy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"oLF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"oLL" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oLQ" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"oMg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"oMn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"oMx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"oMB" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"oMK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"oMN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research/abandoned) +"oNa" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/department/electrical) +"oNb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"oNc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"oNq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oOd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"oOl" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/openspace, +/area/service/bar) +"oOx" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/commons/vacant_room/commissary/third) +"oOD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"oON" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"oPe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"oPl" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"oPs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oPy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"oPz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"oPI" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space) +"oPR" = ( +/obj/structure/cable, +/obj/effect/spawner/random/trash/botanical_waste, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oPT" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"oQi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oQF" = ( +/obj/machinery/requests_console{ + department = "Hydroponics"; + departmentType = 2; + pixel_y = 30 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"oQK" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"oQM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/coin/silver, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"oQQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"oQS" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"oQV" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"oRa" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/security/prison) +"oRc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"oRg" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"oRv" = ( +/obj/structure/table/reinforced, +/obj/item/transfer_valve{ + pixel_x = -9 + }, +/obj/item/transfer_valve{ + pixel_x = 9 + }, +/obj/item/transfer_valve, +/turf/open/floor/plasteel, +/area/science/mixing) +"oRC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall, +/area/commons/fitness) +"oRD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"oRO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod_lavaland2"; + name = "lavaland" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"oRY" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oRZ" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/four) +"oSb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"oSg" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"oSo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/xenobiology"; + name = "Xenobiology APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oSq" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"oSB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"oSE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"oTe" = ( +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"oTi" = ( +/obj/machinery/button/door{ + id = "maint1"; + name = "Blast Door Control A" + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"oTo" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft/exploration) +"oTr" = ( +/obj/machinery/vending/boozeomat, +/obj/structure/sign/picture_frame/showroom/one{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/bar) +"oTC" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"oTD" = ( +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oTP" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/secondary/exit) +"oTW" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"oUb" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"oUs" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/qm, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/cargo/qm) +"oUv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/storage/tech) +"oUw" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"oUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/research{ + name = "Research Break Room"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/science/breakroom) +"oUG" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz{ + color = "#8000b6" + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"oUI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner, +/area/service/theater) +"oUU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"oVa" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/cum, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"oVg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"oVp" = ( +/turf/open/openspace, +/area/hallway/secondary/entry) +"oVv" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"oVz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/shop) +"oVD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"oVK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"oVM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oVS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"oVV" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio10"; + name = "Xenobio Pen 10 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"oWc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"oWf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/research/abandoned) +"oWu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oWF" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat_interior) +"oXD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/spawner/random/trash/cigbutt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oXY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oYf" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"oYg" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"oYk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Engineering SMES" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"oYm" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"oYt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/smartfridge/petri/preloaded, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"oYH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"oYR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"oYZ" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/arrows, +/turf/open/floor/plating, +/area/maintenance/port) +"oZh" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"oZl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"oZw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"oZE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oZI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"oZX" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pad" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"pak" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"pal" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"par" = ( +/obj/structure/lattice/catwalk, +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"paJ" = ( +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"paV" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"paX" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"paY" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pbg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"pbp" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"pbx" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"pbA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8; + start_active = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"pbH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"pbN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"pbP" = ( +/obj/item/reagent_containers/syringe, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"pbT" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/smart{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"pca" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/status_display/supply{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"pch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"pcl" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"pcu" = ( +/obj/machinery/button/door{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_x = -24; + pixel_y = 10; + req_access_txt = "24" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for secure storage."; + id = "Secure Storage"; + name = "Engineering Secure Storage"; + pixel_x = -24; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -10; + req_access_txt = "10" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/picture_frame/showroom/three{ + pixel_x = -40 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"pcx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pcB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"pcF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"pcH" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"pcO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pcS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"pcT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"pcZ" = ( +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pdb" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"pdi" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pdk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"pdy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"pdz" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"pdC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"pdR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pem" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"pen" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"peo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"peq" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space) +"peF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"peM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"peO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"peU" = ( +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"peZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pfb" = ( +/turf/open/openspace, +/area/hallway/secondary/entry/south_hall) +"pfg" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pfr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"pfG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"pfP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_holder/extinguisher/advanced, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"pgh" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"pgl" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pgn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"pgo" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"pgt" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"pgw" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"phb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"phd" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 1; + networks = list("xeno_pens") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"phm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/trunk/multiz{ + dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"phE" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"phI" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/item/stock_parts/capacitor, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"phK" = ( +/obj/structure/table/glass, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"phM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/head/collectable/tophat, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"phO" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"phP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"phR" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"phV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"phY" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pii" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/glass, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"pin" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"pip" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = -28 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"pix" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"piz" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber North"; + dir = 1; + network = list("aicore") + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"piC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"piF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"piI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"piK" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"piQ" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/folder/white{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"pja" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/service/hydroponics/garden) +"pjj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"pjs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/port) +"pju" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"pjy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"pjE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pjW" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pkE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/shop) +"pkM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/part_replacer/stock_parts_box_x10/bin_t1, +/obj/item/storage/part_replacer/stock_parts_box_x10/micro_laser_t1, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"plk" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"plC" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"plK" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"plN" = ( +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"plP" = ( +/obj/effect/landmark/stationroom/engine/random, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"plY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"plZ" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pma" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"pme" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"pmk" = ( +/turf/open/floor/plating, +/area/engineering/engine_smes) +"pmx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"pmC" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"pmD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end, +/obj/effect/turf_decal/stripes/red/end, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"pmE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pmF" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"pmQ" = ( +/obj/structure/closet/crate/maint, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"pnh" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"pni" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"pnj" = ( +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 26; + pixel_y = -26; + req_access_txt = "55" + }, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = 26; + pixel_y = -38; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"pnl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"pnE" = ( +/obj/structure/frame/machine/wired, +/turf/open/floor/engine, +/area/science/misc_lab) +"pnJ" = ( +/obj/structure/mineral_door/iron{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/north) +"pnM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 4; + pixel_y = 20 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"pnV" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pnX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"pod" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"poi" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/one) +"pot" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/cargo/office) +"pov" = ( +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"poE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"poF" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/lab) +"poQ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -8 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"poU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ppg" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/hallway/secondary/service) +"ppo" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/closet/mini_fridge, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"ppJ" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"ppL" = ( +/obj/machinery/door/airlock/security{ + name = "Prison Yard" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"ppQ" = ( +/obj/machinery/status_display/evac{ + layer = 4 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"ppV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ppZ" = ( +/obj/machinery/camera{ + c_tag = "MiniSat Teleporter"; + dir = 1; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pqc" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = 8; + pixel_y = 26 + }, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/computer_disk/ordnance{ + pixel_x = -18; + pixel_y = -3 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = -14; + pixel_y = 6 + }, +/obj/item/computer_disk/ordnance{ + pixel_x = -11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"pqj" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Station Intercom (AI Private)"; + pixel_y = -29 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pqt" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"pqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"pqK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/checkpoint/escape) +"pqU" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"pra" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"prl" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio11"; + name = "Xenobio Pen 11 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"prr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"prG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"prZ" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"psa" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"psl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"psr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"psY" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"pta" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/mixing) +"ptb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/bar) +"ptV" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -7 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"puJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_input{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Waste Tank" + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"puN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"puO" = ( +/obj/structure/chair/sofa/corp/right, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"pvc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plating, +/area/space/nearstation) +"pvd" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft"; + dir = 1; + name = "holodeck camera" + }, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"pvr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"pvt" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/crowbar{ + pixel_y = -11 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 6; + pixel_y = 15 + }, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 6; + pixel_y = -1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"pvw" = ( +/obj/structure/shipping_container/kosmologistika, +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"pvE" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/modular_computer/console/preset/cargochat, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"pvF" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"pvJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"pvK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"pvN" = ( +/obj/machinery/camera{ + c_tag = "Arrivals North"; + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"pvO" = ( +/obj/structure/table, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pvU" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"pvX" = ( +/obj/machinery/light/floor, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"pwa" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 29 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"pwo" = ( +/obj/structure/table, +/obj/structure/showcase/machinery/microwave, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"pwy" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"pwz" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"pwU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pxa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"pxb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pxr" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"pxB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "maint2" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pxK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/camera/autoname/directional/north{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pxL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"pxZ" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pyc" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/computer/department_orders/service{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"pyf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"pyo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"pyp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"pys" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"pyF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/openspace, +/area/space/nearstation) +"pyU" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the exit."; + id = "laborexit"; + name = "exit button"; + normaldoorcontrol = 1; + pixel_x = 26; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"pzc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"pzm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/brown/filled/arrow_cw{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"pzs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"pzt" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"pzx" = ( +/obj/effect/landmark/blobstart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port/aft) +"pzD" = ( +/obj/machinery/exodrone_launcher, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"pzE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"pzF" = ( +/turf/open/floor/plasteel/white/corner, +/area/science/research) +"pzH" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pzM" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + network = list("ss13","perma_brig") + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"pzN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pAH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pBp" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste In"; + target_pressure = 4500 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"pBq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"pBw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"pBF" = ( +/turf/open/openspace, +/area/commons/dorms) +"pBV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/research/abandoned) +"pCj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "Xenobio Pen 6 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"pCn" = ( +/obj/item/cigbutt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pCD" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"pCE" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port"; + dir = 8; + name = "Port Maintenance APC"; + pixel_x = -25; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pCI" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"pCO" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pCT" = ( +/obj/structure/ladder, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"pDn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"pDq" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"pDr" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"pDu" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/research/abandoned) +"pDz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"pDI" = ( +/turf/closed/wall, +/area/hallway/secondary/entry/public) +"pDR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pEa" = ( +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pEc" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"pEl" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"pEr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"pEs" = ( +/turf/closed/wall, +/area/service/kitchen/coldroom) +"pEu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"pEA" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"pEU" = ( +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"pEX" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/aft/restroom) +"pEZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/dresser, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"pFf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/radio/intercom/directional/south, +/obj/item/stock_parts/cell/super{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/super{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/assembly/signaler{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"pFE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"pFK" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints/west) +"pFP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"pFS" = ( +/obj/structure/table, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/item/storage/firstaid/regular, +/obj/item/paper/pamphlet/gateway, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"pFV" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"pGq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pGw" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"pGD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"pGU" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"pGW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"pHa" = ( +/obj/machinery/camera{ + c_tag = "Aft Port Solar Access"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pHd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"pHh" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/cytology) +"pHo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"pHH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"pHL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"pHZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"pIb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"pIe" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal"; + dir = 8; + name = "Disposal APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"pIG" = ( +/obj/structure/transit_tube/horizontal, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"pIS" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"pJj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pJr" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + req_one_access_txt = "11;101" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"pJs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"pJB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pJD" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/openspace, +/area/service/bar) +"pJJ" = ( +/obj/structure/marker_beacon/green, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"pJO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"pJV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pJY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"pKf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera{ + c_tag = "Testing Lab"; + dir = 1; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"pKm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"pKw" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/aft"; + dir = 8; + name = "Port Quarter Maintenance APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pKF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"pKP" = ( +/obj/structure/table, +/obj/item/kitchen/knife, +/obj/item/storage/box/donkpockets, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/commons/vacant_room/commissary/third) +"pKX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"pKZ" = ( +/obj/machinery/camera{ + c_tag = "Fitness Room" + }, +/obj/structure/closet/masks, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"pLg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/computer/security/telescreen/ordnance, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"pLn" = ( +/obj/machinery/conveyor/inverted{ + dir = 5; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pLo" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"pLE" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/openspace, +/area/space) +"pLT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"pLV" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"pLY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"pMh" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/solars/port/fore) +"pMi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"pMr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/security/prison) +"pMt" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/service/chapel/main) +"pMC" = ( +/obj/item/hfr_box/corner, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"pMV" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"pNs" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/openspace, +/area/space) +"pNB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pNC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"pNE" = ( +/obj/effect/decal/cleanable/food/egg_smudge, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pNW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"pOd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"pOf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pOo" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #2 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"pOw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"pOz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"pOR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"pOT" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pPc" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"pPg" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/service/bar) +"pPi" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/west, +/obj/machinery/light/floor/directional/east, +/turf/open/openspace, +/area/service/bar) +"pPB" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #3 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"pPX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"pQl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"pQr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/commons/fitness) +"pQC" = ( +/obj/machinery/light/floor/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"pQE" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"pQG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"pQM" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"pQU" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pQY" = ( +/obj/structure/chair, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pRa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"pRh" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pRr" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"pRA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"pRM" = ( +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"pRQ" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"pRV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"pSc" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pSf" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pSi" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"pSq" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port) +"pSI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/chair/comfy/teal, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"pSK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"pSM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"pSU" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pSW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil, +/obj/item/pen{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"pTd" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"pTl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"pTq" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"pTQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"pTU" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry/south_hall) +"pTV" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"pTW" = ( +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/food/grown/poppy/lily{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/machinery/reagentgrinder{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/north, +/obj/item/storage/ashtray/bronze, +/turf/open/floor/wood, +/area/service/bar) +"pUf" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_y = -24; + req_access = null; + req_access_txt = "65" + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat Foyer"; + dir = 1; + network = list("minisat") + }, +/mob/living/simple_animal/bot/cleanbot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"pUr" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"pUw" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"pUz" = ( +/obj/structure/stairs/north, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pUA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pUM" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy"; + req_access_txt = "69" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"pVc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"pVk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"pVp" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/fore/secondary"; + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 25 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"pVv" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"pVw" = ( +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"pVI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/shipping_container/nanotrasen, +/turf/open/space/openspace, +/area/space/nearstation) +"pVQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"pVR" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/solars/starboard/aft) +"pWd" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"pWj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"pWv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"pWH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/checkpoint/escape) +"pWO" = ( +/obj/machinery/light/blacklight{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"pWS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"pWT" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pXa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pXe" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_x = 26 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"pXh" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"pXp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/service/chapel/main) +"pXs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/storage) +"pXx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"pXD" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"pXE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pYx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"pYD" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"pYH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/port) +"pYN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"pYR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"pYX" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pZa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"pZb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"pZh" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"pZj" = ( +/obj/machinery/camera{ + c_tag = "Engineering MiniSat Access"; + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"pZJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"pZL" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"pZW" = ( +/obj/structure/table, +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qaa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qae" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"qao" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"qaq" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/rack, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/machinery/light/blacklight, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"qay" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qaE" = ( +/obj/structure/table/rospilovo, +/obj/effect/spawner/random/entertainment/drugs{ + pixel_x = 5; + pixel_y = 20 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/item/stack/spacecash/c100{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/stack/spacecash/c100{ + pixel_y = 6 + }, +/obj/item/stack/spacecash/c100{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"qaJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"qaN" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/filingcabinet/employment, +/turf/open/floor/wood, +/area/lawoffice) +"qaT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"qaX" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"qaY" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"qbz" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"qbB" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qbE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"qbJ" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Chapel Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"qbK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"qbM" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"qbN" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qbX" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"qca" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/library/upper) +"qcb" = ( +/obj/structure/punching_bag, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"qce" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/fitness) +"qct" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"qcu" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"qcG" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/item/toy/plush/snakeplushie, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"qcJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"qcN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/tacmap/directional/north, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"qcU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"qdd" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"qdh" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"qdm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"qdn" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qdv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"qdL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"qdO" = ( +/obj/structure/window{ + dir = 4 + }, +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/security/prison) +"qea" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/science/research/abandoned) +"qee" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qei" = ( +/turf/closed/wall, +/area/commons/storage/emergency/port) +"qes" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/department/electrical/two) +"qeu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/holopad{ + name = "botany requests holopad" + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"qez" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"qeE" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qeF" = ( +/obj/machinery/light/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/engineering/storage_shared) +"qeQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"qeT" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"qfo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"qfs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_eva) +"qfu" = ( +/obj/machinery/telecomms/bus/preset_four, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"qfC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qfD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Hall - Aft"; + dir = 1; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qfF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/port) +"qfG" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"qfJ" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 5 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"qfT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"qfV" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/solars/port/aft) +"qge" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"qgg" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"qgh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qgm" = ( +/obj/tacmap/directional/west, +/turf/open/floor/glass, +/area/service/hydroponics) +"qgs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"qgB" = ( +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Monkey Pen"; + pixel_y = -2; + req_access_txt = "9" + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/bush, +/mob/living/carbon/human/species/monkey, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/genetics) +"qgD" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"qgF" = ( +/obj/structure/table, +/obj/item/crowbar/large, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qgK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qgR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"qgY" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/paper/crumpled, +/turf/open/floor/plating, +/area/maintenance/port) +"qhm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "misclab"; + name = "test chamber blast door" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"qhs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"qhx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"qhG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"qhI" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/chem_dispenser/botany, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qhK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"qhL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos/upper) +"qhN" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"qhQ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"qhR" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/exit) +"qhW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"qhY" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"qid" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/departments/xenobio{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qie" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"qiq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qiH" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"qiK" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qiL" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "portsolar"; + name = "Port Quarter Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/maintenance/solars/port/aft) +"qiV" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qiX" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"qjb" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/iv_drip, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"qjd" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"qjj" = ( +/obj/machinery/door/window{ + dir = 8; + name = "AI Core Door"; + req_access_txt = "16" + }, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"qjm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"qjL" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qjP" = ( +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/camera/autoname, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/wood, +/area/service/theater) +"qjR" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"qjT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qjV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"qjZ" = ( +/obj/structure/displaycase/trophy, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood/parquet, +/area/service/library) +"qkc" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/qm{ + pixel_x = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -27; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"qke" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"qki" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"qko" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"qks" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"qkK" = ( +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/computer/nanite_cloud_controller, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"qkP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qkT" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "NT SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/openspace, +/area/space) +"qkU" = ( +/obj/machinery/camera/motion{ + c_tag = null; + dir = 4 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"qkX" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/firstaid/fire, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/obj/item/clothing/glasses/meson{ + pixel_y = 4 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"qlm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"qlA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"qlI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/department/electrical) +"qlN" = ( +/obj/effect/landmark/start/bomj, +/obj/structure/chair/brevno, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"qlU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel/white, +/area/science/research) +"qlW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"qmf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/bar) +"qmm" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"qmp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"qmt" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/science/xenobiology) +"qmx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"qmB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"qmO" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/storage/emergency/port"; + dir = 1; + name = "Port Emergency Storage APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"qmZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"qnr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"qnL" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"qnT" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"qnZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"qob" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"qod" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood/parquet, +/area/service/library) +"qof" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/exit) +"qoj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"qok" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"qor" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"qov" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos/upper) +"qoD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"qoQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"qoS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"qoV" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/multitool, +/obj/item/clothing/glasses/meson, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"qpc" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qpm" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"qpq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qps" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"qpI" = ( +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"qqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"qqr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"qqs" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qqI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/plate_press, +/turf/open/floor/plasteel, +/area/security/prison) +"qqJ" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"qqV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"qqW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door{ + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"qri" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/air_tank{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos/upper) +"qrj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"qrl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"qry" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"qrA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"qrE" = ( +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/janitorialcart, +/obj/item/storage/bag/trash, +/obj/item/storage/bag/trash, +/obj/item/pushbroom, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"qrI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 9 + }, +/turf/open/floor/light, +/area/service/kitchen) +"qrO" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/aisat/hallway) +"qrV" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"qrY" = ( +/obj/machinery/camera{ + c_tag = "Aft Starboard Solar Access"; + dir = 1 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qsj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/gate) +"qte" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"qti" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qtt" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/machinery/button/door{ + id = "vroomshutter"; + name = "Vacant Room Shutter Control"; + pixel_x = 26; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/commons/vacant_room) +"qtC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/machinery/light_switch{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/service/theater) +"qtH" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"qtR" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"qtW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "2;101"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"qtZ" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"qud" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"quj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"quJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"quO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"quP" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/primary/starboard/low_level_service) +"quQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"qva" = ( +/turf/open/openspace, +/area/cargo/storage) +"qvd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"qvn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"qvs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/second_engy) +"qvy" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"qvE" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "External to Filter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"qvH" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qvP" = ( +/turf/closed/wall/rust, +/area/maintenance/space_hut/plasmaman) +"qwa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"qwd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rnd3"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/science/nanite) +"qwl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor2"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "vroomshutter2"; + name = "Vacant Room Shutter" + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"qwo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"qwz" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/solars/port/fore) +"qwY" = ( +/obj/machinery/hydroponics/soil, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics/garden) +"qxg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningoffice/meteor) +"qxi" = ( +/obj/machinery/atmospherics/components/binary/pump/off/orange/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing/chamber) +"qxm" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/stamp/rd{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"qxu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"qxB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/mineral/plastitanium, +/area/service/hydroponics) +"qxG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"qxI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"qxJ" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel/monofloor, +/area/service/chapel/main) +"qxL" = ( +/obj/machinery/meter, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"qxM" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"qyo" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"qyC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"qyE" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/glass, +/area/service/hydroponics) +"qyM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/service/bar) +"qyO" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qyT" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/obj/machinery/button/door{ + id = "Dorm6"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"qyV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"qyX" = ( +/obj/structure/table, +/obj/item/electropack{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qza" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/electrical/two) +"qzl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"qzn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"qzq" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_x = -9; + pixel_y = 13 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port) +"qzv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/item/radio/intercom{ + pixel_x = 0; + pixel_y = 29 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"qzC" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/flag/nanotrasen/directional/north, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qzK" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"qzL" = ( +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"qzP" = ( +/obj/machinery/rnd/server/master, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"qzV" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing/chamber) +"qAg" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3 + }, +/obj/item/pen{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"qAj" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"qAl" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"qBd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qBm" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap{ + pixel_x = -2; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"qBx" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qBZ" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"qCi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"qCk" = ( +/obj/structure/rospilovo/clocks{ + pixel_y = 37 + }, +/obj/structure/rospilovo/plita{ + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker/meta{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"qCt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"qCu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"qCz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qCD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"qCH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qCJ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"qCR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"qDd" = ( +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"qDg" = ( +/obj/structure/table/wood, +/obj/item/pen/red, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qDi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"qDH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"qDW" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"qDX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/library) +"qDZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"qEc" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"qEh" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qEt" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"qEu" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/ordnance, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/plasteel, +/area/science/mixing) +"qEz" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qER" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"qES" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"qFb" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"qFe" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qFi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/aft"; + name = "Aft Maintenance APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"qFk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qFl" = ( +/obj/structure/railing, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/openspace, +/area/service/chapel/main) +"qFx" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/storage/fancy/cigarettes, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qFz" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/maintenance/bottom_station_maints) +"qFG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qFH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"qFW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"qGa" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"qGc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qGd" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/service/bar) +"qGk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"qGn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"qGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"qGO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"qGZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"qHi" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 12; + height = 18; + id = "emergency_home"; + name = "NT SS13: Emergency Shuttle Dock"; + width = 32 + }, +/turf/open/space/openspace, +/area/space) +"qHp" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/flashlight/lamp{ + pixel_y = 3 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/checkpoint/escape) +"qHw" = ( +/obj/structure/chair/sofa/corp{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -35 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"qHI" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"qHQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qIb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"qIj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"qIn" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/lab) +"qIr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = -10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"qIC" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/exit) +"qIY" = ( +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"qIZ" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qJd" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"qJh" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"qJq" = ( +/turf/open/openspace, +/area/maintenance/space_hut/plasmaman) +"qJu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"qJA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central/low_level_eva) +"qJK" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"qKh" = ( +/obj/machinery/door/airlock{ + name = "Observatory Access" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qKk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"qKu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"qKE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"qKM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"qKS" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/science/research) +"qLj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"qLp" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_dorm1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"qLI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"qLP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"qLT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qLW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qMi" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"qMs" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"qMu" = ( +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_x = -30; + prison_radio = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qMw" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qMx" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer RC"; + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"qMA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qMP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"qMT" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/wood, +/area/service/library/upper) +"qNk" = ( +/obj/machinery/power/apc{ + areastring = "/area/engineering/break_room"; + dir = 8; + name = "Engineering Foyer APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"qNs" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x5, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"qNC" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"qNJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "miner_meteor" + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/miningoffice/meteor) +"qNK" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"qNS" = ( +/obj/effect/spawner/random/clothing/bowler_or_that, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qOh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plating, +/area/hallway/secondary/entry/south) +"qOq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"qOL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/cargo/miningdock"; + dir = 1; + name = "Mining Dock APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"qOT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qOU" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"qOX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"qPa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"qPh" = ( +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"qPr" = ( +/obj/machinery/vending/modularpc, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"qPA" = ( +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qPB" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"qPC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"qPD" = ( +/obj/structure/table/reinforced, +/obj/item/radio/intercom{ + pixel_y = -26 + }, +/obj/item/paper_bin{ + pixel_x = -3 + }, +/obj/item/pen{ + pixel_x = -3 + }, +/obj/item/folder/yellow{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"qPG" = ( +/obj/structure/cable, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"qPN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemical Storage"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/fore) +"qPP" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 6"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"qPY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints/east) +"qPZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qQd" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qQe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qQn" = ( +/obj/structure/table/wood, +/obj/item/food/chips, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/turf/open/floor/carpet, +/area/hallway/primary/port/to_arrival) +"qQs" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/science/research"; + dir = 4; + name = "Misc Research APC"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"qQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qQw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"qQy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/pod_parts/core, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"qQJ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"qRe" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"qRf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"qRg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/vendor/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qRs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + name = "output gas connector port" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"qRF" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"qSy" = ( +/obj/machinery/camera/autoname{ + network = list("ss13","perma_brig") + }, +/turf/open/space/basic, +/area/space) +"qSG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qSK" = ( +/obj/machinery/camera{ + c_tag = "Locker Room Toilets"; + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"qSS" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"qSX" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"qTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"qTh" = ( +/turf/open/openspace, +/area/service/bar) +"qTA" = ( +/obj/structure/table/wood, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"qTI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"qTY" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"qTZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"qUe" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"qUl" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"qUp" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/item/beacon, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"qUt" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qUv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"qUI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"qUM" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 6 + }, +/obj/item/taperecorder, +/obj/item/folder/white, +/obj/item/folder/white, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"qUP" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod One"; + shuttledocked = 1 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"qUS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"qUX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"qVr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/item/radio/intercom/directional/east, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"qVs" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"qVx" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"qVy" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"qVH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"qVT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"qVU" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qWe" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage_shared) +"qWz" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/two) +"qWG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "N2 Outlet Pump"; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qWW" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/wood, +/area/service/library/upper) +"qXo" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"qXx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"qYl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"qYx" = ( +/obj/structure/ladder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"qYT" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/science/lab) +"qZa" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"qZd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"qZn" = ( +/obj/structure/rospilovo/doski/doski4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"qZp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"qZw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/vending/modularpc, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"qZx" = ( +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/service/hydroponics) +"qZG" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname, +/turf/open/space/openspace, +/area/space/nearstation) +"qZK" = ( +/obj/structure/table/wood, +/obj/item/trash/plate{ + pixel_y = 5 + }, +/obj/item/food/fishmeat/carp{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/food/fishmeat/carp{ + pixel_y = 3 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"qZO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/radio/intercom{ + pixel_x = 29 + }, +/obj/item/storage/firstaid/fire{ + empty = 1; + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/firstaid/fire{ + empty = 1; + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/storage/firstaid/brute{ + empty = 1; + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/storage/firstaid/brute{ + empty = 1; + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/healthanalyzer{ + pixel_y = -16 + }, +/obj/item/healthanalyzer{ + pixel_y = -16 + }, +/obj/item/healthanalyzer{ + pixel_y = -16 + }, +/obj/item/healthanalyzer{ + pixel_y = -16 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"qZP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"raf" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"rai" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/science/xenobiology) +"raj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/paper, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"ram" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"rao" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"raB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"raF" = ( +/turf/closed/wall/r_wall, +/area/engineering/second_engy) +"raJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"raY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/restaurant_portal/bar, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rbg" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rbo" = ( +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 4; + name = "Engineering RC"; + pixel_y = 30 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"rbt" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/maintenance/port) +"rbu" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rbw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rbN" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "MiniSat Atmospherics"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"rbU" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/spacepod_equipment/tracker{ + pixel_x = -2; + pixel_y = 17 + }, +/obj/item/pod_parts/core{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/spacepod_equipment/weaponry/pod_ka{ + pixel_y = -13 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"rbZ" = ( +/obj/structure/flora/rock/jungle, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/genetics) +"rcg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/radio/intercom{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rck" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rco" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"rcq" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"rcr" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"rcB" = ( +/obj/machinery/power/solar{ + id = "portsolar"; + name = "Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"rcD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rcE" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Incinerator Output Pump"; + target_pressure = 4500 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"rcI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"rcO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rcP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"rcS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"rcZ" = ( +/obj/structure/table, +/obj/item/food/mint, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rdg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"rdD" = ( +/obj/structure/rospilovo/shina2{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"rdF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/griddle, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Kitchen" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rdH" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"rdX" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"rdZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry/south) +"reb" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lantern, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"ree" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/command/nuke_storage"; + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"ref" = ( +/obj/machinery/firealarm/directional/south, +/obj/item/coffee_cartridge/decaf, +/obj/item/coffee_cartridge/decaf, +/obj/item/coffee_cartridge/decaf, +/obj/item/coffee_cartridge/decaf, +/obj/structure/rack, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"res" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"rew" = ( +/turf/closed/wall/r_wall, +/area/commons/storage/primary) +"rez" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"reJ" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"reL" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_x = -4; + pixel_y = 14 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_x = 8; + pixel_y = 1 + }, +/obj/item/stack/cable_coil{ + pixel_y = -4 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/item/grenade/chem_grenade{ + pixel_x = -10 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"reN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"reO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"reP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"reT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"rfw" = ( +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"rfy" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"rfO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Quartermaster Maintenance"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"rfP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"rfQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"rfS" = ( +/obj/structure/bookcase/random/adult, +/turf/closed/wall, +/area/service/library) +"rfV" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"rgp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"rgC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"rgG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rhk" = ( +/obj/machinery/camera{ + c_tag = "Secure Tech Storage" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"rho" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plating, +/area/service/kitchen/coldroom) +"rhC" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rhQ" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/plating/icemoon, +/area/maintenance/disposal/incinerator) +"rhR" = ( +/obj/machinery/newscaster/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"rik" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"riH" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"riL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"riQ" = ( +/turf/closed/wall/r_wall, +/area/science/nanite) +"riZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rjk" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/radio/off{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"rjr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"rjt" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"rjE" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"rjL" = ( +/obj/machinery/door/airlock{ + name = "Port Emergency Storage" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"rjN" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"rkf" = ( +/turf/closed/wall, +/area/commons/dorms/four) +"rkh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"rkj" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 30 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore) +"rkn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"rkr" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rkv" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"rkw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rkC" = ( +/obj/structure/lattice/catwalk, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/colocup{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/colocup{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis{ + pixel_y = -3 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rkK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"rkL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo/sorting) +"rkT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/science/xenobiology) +"rlt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"rlx" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Starboard Fore"; + dir = 8; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"rlA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel, +/area/commons/locker) +"rlG" = ( +/obj/structure/chair, +/obj/machinery/flasher{ + id = "transferflash"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rlH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"rlP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rlY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"rmm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"rms" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"rmN" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Starboard Fore"; + dir = 8; + network = list("ss13","rd","xeno_pens") + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/science/xenobiology) +"rmP" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"rmU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"rnr" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rnt" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Mech Bay Maintenance"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"rnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/aft) +"rnJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"rnM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rnQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/fore) +"rnS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"roh" = ( +/obj/machinery/computer/shuttle_flight/labor{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"roj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/bar) +"rom" = ( +/obj/item/stack/ore/iron, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"ron" = ( +/obj/structure/rospilovo/doski, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"rov" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"roy" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"roD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"roJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"roW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/neutral{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos/upper) +"rpt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"rpH" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/bookcase/random, +/obj/effect/turf_decal/stripes{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"rpQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"rpR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Directors Observation Deck"; + dir = 4; + network = list("ss13","rd") + }, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"rpT" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab2"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"rqa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"rqv" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer2"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"rqL" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/freezer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"rrb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"rrd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rrg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"rrn" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rrG" = ( +/obj/machinery/computer/atmos_control/ordnancemix, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"rrI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"rrU" = ( +/turf/closed/wall, +/area/hallway/secondary/entry/south_hall) +"rsb" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rsJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rts" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"rtJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"rtY" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "Custodial Closet APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"rua" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"ruc" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/electrical) +"rup" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"rus" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ruC" = ( +/obj/machinery/newscaster{ + pixel_x = -28; + pixel_y = -28 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -31 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_x = 28; + pixel_y = -28 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ruH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ruI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"ruP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"ruT" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rvb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/aft) +"rvd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"rvh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/small, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/project) +"rvn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"rvu" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"rvy" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"rvA" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"rvG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rwb" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"rwe" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"rwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"rwk" = ( +/turf/open/openspace, +/area/maintenance/starboard/aft) +"rwo" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"rwq" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"rwr" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"rwx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair{ + dir = 1 + }, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"rwT" = ( +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/solars/port/fore) +"rxr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"rxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rxB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"rxP" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rxT" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry/south_hall) +"ryt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"ryv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"ryJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/book/manual/wiki/cytology, +/obj/item/toy/plush/carpplushie, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ryM" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ryV" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"rzo" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/multi_tile/three_tile_hor{ + id = "garagh-up" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/department/electrical) +"rzu" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"rzv" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rzC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/service/chapel/main) +"rzI" = ( +/obj/structure/closet/boxinggloves, +/obj/item/clothing/shoes/jackboots, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rzR" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/fore"; + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"rzW" = ( +/obj/structure/table, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "vroomshutter2"; + name = "Vacant Room Shutter" + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"rAe" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rAr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"rAs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/space/openspace, +/area/space/nearstation) +"rAt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"rAx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/chair/sofa/bench{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"rAI" = ( +/obj/structure/chair, +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rAL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"rBi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_x = 5 + }, +/obj/machinery/recharger{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"rBo" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/bottom_station_maints) +"rBD" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 1; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 1; + name = "Supply multi deck pipe adapter" + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/fore/upper) +"rBI" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Research Director Observation"; + req_access_txt = "30" + }, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"rBK" = ( +/obj/item/crowbar, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/primary/aft) +"rBO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"rCa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rCb" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rCm" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"rCr" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/lab) +"rCs" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "robo1" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"rCu" = ( +/obj/structure/table, +/obj/item/taperecorder, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rCw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"rCx" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"rCC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"rCO" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/prison) +"rCX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rDa" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"rDh" = ( +/obj/structure/flora/junglebush/b, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"rDi" = ( +/obj/machinery/door/airlock{ + name = "Theatre Backstage"; + req_access_txt = "46" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"rDp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"rDW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"rEb" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rEc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters_2"; + name = "Pharmacy Shutter" + }, +/turf/open/floor/plating, +/area/medical/abandoned) +"rEk" = ( +/obj/structure/closet/emcloset{ + anchored = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"rED" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rEF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"rEW" = ( +/obj/structure/table, +/obj/machinery/fax, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"rFh" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"rFu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"rFy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"rFJ" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/carpet, +/area/maintenance/department/chapel) +"rFU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/security/prison) +"rFW" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"rFY" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"rGH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"rGJ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/primary/aft) +"rGU" = ( +/turf/open/openspace, +/area/service/library/upper) +"rGY" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 10"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"rHf" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"rHg" = ( +/turf/closed/wall, +/area/commons/dorms/five) +"rHj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/commons/dorms/four) +"rHo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"rHu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rHD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"rHF" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -17 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"rHH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"rHZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"rIl" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/three, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rIs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"rIt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rIz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/maintenance/space_hut) +"rIN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rIS" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"rIZ" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"rJb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics) +"rJp" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"rJs" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"rJH" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/structure/chair/sofa, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"rJM" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "roboe" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"rJR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"rKf" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"rKv" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rKA" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Research Director Observation"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"rKC" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"rKF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"rKJ" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/security/prison) +"rKM" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/manufactory) +"rKO" = ( +/obj/machinery/light/small, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"rLb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/commons/vacant_room/commissary) +"rLp" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rLE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"rLM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Fitness Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"rLP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"rMn" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"rMp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rMt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"rMJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/cargo/qm) +"rMM" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"rMZ" = ( +/obj/structure/chair, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/escape) +"rNf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rNh" = ( +/obj/structure/cable, +/obj/item/wrench, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"rNp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"rNt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + dir = 1; + id = "vroomshutter2"; + name = "Vacant Room Shutter" + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"rNx" = ( +/obj/item/stack/sheet/iron/five, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rNz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"rNG" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"rNH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"rNK" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"rNN" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/restroom) +"rNP" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"rNR" = ( +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/turret_protected/aisat/service"; + dir = 4; + name = "MiniSat Service Bay APC"; + pixel_x = 25 + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"rOb" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"rOi" = ( +/turf/open/floor/plating/airless, +/area/engineering/storage_shared) +"rOk" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rOD" = ( +/obj/machinery/mecha_part_fabricator/engi, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/manufactory) +"rOE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/processing) +"rOG" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"rOJ" = ( +/obj/machinery/button/door{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_x = -26; + pixel_y = -8; + specialfunctions = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"rOX" = ( +/obj/structure/bed, +/obj/effect/spawner/random/contraband/prison, +/obj/item/bedsheet/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"rOZ" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"rPb" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/stack/cable_coil, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"rPm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/port/vault) +"rPp" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints) +"rPq" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rPu" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder/constructed, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"rPL" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"rPT" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"rQc" = ( +/turf/closed/wall, +/area/maintenance/department/electrical/two) +"rQg" = ( +/obj/machinery/computer/pod/old{ + density = 0; + icon = 'icons/obj/airlock_machines.dmi'; + icon_state = "airlock_control_standby"; + id = "chapelgun"; + name = "Mass Driver Controller"; + pixel_x = 24 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"rQs" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"rQv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"rQJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"rQK" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Fitness" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"rQM" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 2"; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"rQV" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"rRq" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"rRs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rRw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"rRG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"rRM" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"rRP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"rRQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"rRS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rRX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rSh" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"rSi" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/paper/guides/jobs/hydroponics, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"rSq" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rSr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"rSE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/arrows/white, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"rSJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/rnd) +"rSO" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"rSQ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"rSY" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Firefighting Equipment"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rTb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"rTD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/xmastree, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rTX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rTY" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"rUa" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/machinery/chem_dispenser, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"rUb" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rUm" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"rUn" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rUq" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rUE" = ( +/obj/structure/table, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical/two) +"rUS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"rUW" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"rVj" = ( +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"rVs" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"rVE" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rVP" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"rVX" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/all_access, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"rWc" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"rWi" = ( +/mob/living/simple_animal/hostile/retaliate/goat/wycc, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"rWp" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"rXc" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rXv" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"rXy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rXH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/sign/picture_frame{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"rXT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"rXX" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"rYc" = ( +/obj/machinery/newscaster{ + pixel_y = -32 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"rYf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rYm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rYr" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/service/chapel/main) +"rYs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"rYB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"rYJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/machine/wired, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"rYL" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/item/radio/intercom{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"rYU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"rYX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rZh" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"rZp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"rZx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"rZK" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/three, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rZL" = ( +/obj/item/kirbyplants/random, +/obj/tacmap/directional/east, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"rZR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"rZV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sab" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"sad" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"saF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"sbm" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"sbr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos) +"sbD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"sbF" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/maintenance/starboard/fore) +"sbH" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"sbK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"sbL" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/arrows, +/turf/open/floor/plating, +/area/maintenance/port) +"sbO" = ( +/obj/structure/table, +/obj/item/toy/plush/slimeplushie, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"scf" = ( +/obj/structure/table/reinforced, +/obj/item/aicard{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"scj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"scp" = ( +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/science/breakroom) +"scI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"scJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/entry/public) +"scK" = ( +/turf/open/floor/glass, +/area/service/hydroponics) +"scL" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"scT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"sde" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"sdf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"sdi" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sdA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"sdJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sdO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"ser" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry/public) +"ses" = ( +/turf/open/openspace, +/area/service/hydroponics) +"seK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/paperframe, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"seY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"sfw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/computer/piratepad_control/civilian, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit/departure_lounge/cryo) +"sfx" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"sfD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"sfH" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"sfJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sfR" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"sfU" = ( +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/aft) +"sga" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/xenobiology) +"sgj" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag{ + pixel_y = 8 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"sgD" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"sgL" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"sgT" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"sgZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"sha" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/service/chapel/main) +"she" = ( +/obj/machinery/light, +/obj/machinery/chem_master/condimaster, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"shj" = ( +/obj/structure/stairs/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"sho" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"shu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Prison Gate"; + name = "prison blast door" + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"shw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plating, +/area/science/robotics/lab) +"shx" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/security/courtroom) +"shB" = ( +/turf/open/openspace, +/area/maintenance/port) +"shI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"shJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"shT" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4 + }, +/obj/item/folder/yellow{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/pen/blue, +/turf/open/floor/wood, +/area/service/library/artgallery) +"sif" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"sij" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio10"; + name = "Xenobio Pen 10 Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"sim" = ( +/obj/structure/cable, +/obj/machinery/light, +/turf/open/floor/carpet, +/area/service/chapel/main) +"sit" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"siM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"sjf" = ( +/obj/machinery/holopad{ + name = "botany requests holopad" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"sjk" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"sjr" = ( +/turf/open/floor/plasteel/elevatorshaft, +/area/science/research/abandoned) +"sjW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"ske" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"skm" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"sko" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Foyer" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"skr" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"skC" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"skD" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/engine{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"skI" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"skL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"skS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/storage/toolbox/electrical{ + pixel_y = 17 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"skT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/delivery/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/escape) +"skX" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/tacmap/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"slv" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"slw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"slx" = ( +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"slL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/incinerator_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"slP" = ( +/turf/closed/wall, +/area/commons/dorms) +"slZ" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/service/library/artgallery) +"sma" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"sml" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/table/greyscale, +/turf/open/floor/plating, +/area/maintenance/aft) +"smr" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"smI" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"smQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"snb" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/storage/box/shipping, +/turf/open/floor/plasteel, +/area/commons/storage/art) +"snh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"sns" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"snv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/solars/starboard/aft) +"snD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"snG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"snI" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"snR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sod" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"soH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"soM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"soW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"spe" = ( +/obj/structure/table/reinforced, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/item/storage/box, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"spw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"spC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmospherics_engine) +"spY" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"spZ" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/commons/locker) +"sqi" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/genetics"; + dir = 4; + name = "Genetics Lab APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sqJ" = ( +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"sqQ" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"sqW" = ( +/obj/structure/cable, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/maintenance/solars/starboard/fore) +"srd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"sre" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/obj/machinery/button/door/directional/west{ + id = "toiletbolt_dorm3"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"srq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"srr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/theater) +"srt" = ( +/obj/structure/rack, +/obj/item/pipe_dispenser{ + pixel_y = 6 + }, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_y = -6 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/camera/autoname{ + start_active = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"sru" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "maint3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"srv" = ( +/obj/item/electronics/airalarm, +/obj/item/circuitboard/machine/seed_extractor, +/obj/structure/table, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"srL" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"srR" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1481; + name = "Confessional Intercom"; + pixel_x = 25 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"ssb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/shower/directional/north, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ssp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"ssq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ssr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination/library, +/turf/open/floor/carpet, +/area/service/library/upper) +"ssB" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"ssI" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"ssK" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"ssW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"stf" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/chair, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"stm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"stt" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_x = 30 + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/tcommsat/computer) +"stG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"stL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"stT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Law office"; + pixel_x = -32 + }, +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/lawoffice) +"sun" = ( +/obj/machinery/power/apc{ + areastring = "/area/commons/toilet"; + dir = 4; + name = "Dormitory Bathrooms APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"suH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"suJ" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"suW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/mob/living/carbon/human/species/monkey, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/junglebush/c, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/grass, +/area/science/genetics) +"sve" = ( +/obj/structure/chair/sofa/corp/corner{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"svA" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"svU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"swb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/public) +"swf" = ( +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 4; + network = list("ss13","rd") + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"swh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/circuitboard/aicore, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"swv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"swM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/gate) +"swN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"swP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"swT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"swU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"swY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"swZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"sxG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"sxK" = ( +/obj/machinery/vending/snack/green, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/hallway/secondary/exit) +"sxR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"syg" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"syi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"syj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/aft) +"syk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sym" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"syr" = ( +/obj/structure/cable, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"syG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"syV" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"syW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"sza" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "31;49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/port/aft) +"sze" = ( +/obj/structure/tank_holder/oxygen/red, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"szi" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"szm" = ( +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"szn" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/aft) +"szD" = ( +/obj/structure/sign/departments/xenobio{ + pixel_y = -32 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"szV" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"sAg" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/newscaster{ + pixel_y = 29 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"sAi" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"sAl" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"sAo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/tacmap/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"sAs" = ( +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sAx" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"sAA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"sAC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sAF" = ( +/obj/structure/table, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/hydroseeds, +/obj/item/vending_refill/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sAH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"sAO" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"sAQ" = ( +/obj/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) +"sBc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"sBm" = ( +/obj/structure/ladder, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server/upper) +"sBs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"sBK" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"sBR" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Chamber Hallway"; + req_one_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"sBS" = ( +/turf/closed/wall/r_wall, +/area/cargo/storage) +"sBX" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway"; + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"sBY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"sCa" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/ce{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"sCt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"sCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"sCL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space/openspace, +/area/space/nearstation) +"sCS" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"sCZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"sDb" = ( +/obj/machinery/power/apc{ + areastring = "/area/lawoffice"; + dir = 4; + name = "Law Office APC"; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"sDf" = ( +/obj/machinery/camera/autoname, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"sDq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"sDr" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "roboe" + }, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"sDu" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/storage/toolbox/mechanical{ + layer = 3.01; + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"sDC" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"sDD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/survival_pod{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"sDF" = ( +/obj/effect/turf_decal/stripes/box, +/obj/structure/cable/multilayer/multiz, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"sDM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"sEo" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/maintenance/port/aft) +"sEp" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"sEt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"sEu" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"sEK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/mixing) +"sFa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"sFf" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"sFl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/vehicle/ridden/forklift/engineering{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"sFm" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sFw" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Research Division Delivery"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "biohazard containment door" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard_tech"; + name = "biohazard containment door" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"sFx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"sFN" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sFQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"sFX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"sGq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"sGB" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/weldingtool{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weldingtool{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"sGD" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"sGI" = ( +/obj/machinery/camera{ + c_tag = "Engineering East"; + dir = 8 + }, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sGX" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/port) +"sHs" = ( +/obj/structure/sign/painting/library_private, +/turf/closed/wall, +/area/lawoffice) +"sHC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/storage/tech) +"sHL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"sHR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"sIe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"sIn" = ( +/obj/structure/railing/corner, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sIr" = ( +/obj/structure/grille, +/turf/open/floor/engine/hull/reinforced, +/area/space/nearstation) +"sIs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"sIv" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"sIx" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/grille/broken, +/obj/structure/rospilovo/bochka/red{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/maintenance/bottom_station_maints/north) +"sIy" = ( +/obj/structure/sign/poster/contraband/space_cube{ + pixel_x = 31 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"sIE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sIF" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sIP" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"sIY" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"sJy" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"sJK" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil, +/turf/open/space/openspace, +/area/space/nearstation) +"sJS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/shower/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"sKs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sKN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"sKP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sKZ" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"sLn" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sLu" = ( +/obj/item/clothing/gloves/boxing/green, +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/waterbottle, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"sLy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/chapel/main) +"sLA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sLD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"sLO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/engineering{ + name = "Spacepod Room"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/storage) +"sMu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"sMG" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_dorm2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"sMP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"sMR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"sMY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"sNh" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sNt" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"sNC" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/storage) +"sOd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"sOg" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"sOm" = ( +/obj/machinery/modular_computer/console/preset/cargochat/engineering{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sOo" = ( +/obj/structure/table/glass, +/obj/item/storage/bag/trash, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sOu" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 25 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"sOv" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/six) +"sOB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"sOG" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"sOV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"sPc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sPh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/solars/starboard/aft) +"sPn" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"sPD" = ( +/obj/machinery/light/small/red/directional/north, +/obj/structure/table, +/obj/effect/spawner/random/clothing/gloves, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sPF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"sPH" = ( +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"sPV" = ( +/obj/machinery/computer/prisoner/management, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"sQc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"sQm" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"sQx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"sQy" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"sQG" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"sQJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sQU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"sQW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"sQZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"sRc" = ( +/obj/machinery/effector, +/turf/closed/wall/r_wall, +/area/commons/fitness/kachalka) +"sRd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"sRm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/brown/arrow_cw{ + dir = 8; + pixel_y = 20 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"sRz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"sRI" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sRM" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor3"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/third) +"sSd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"sSg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"sSl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"sSn" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/obj/item/candle{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"sSr" = ( +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sSM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"sSW" = ( +/turf/closed/wall, +/area/service/library/upper) +"sSY" = ( +/obj/effect/landmark/carpspawn, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"sSZ" = ( +/obj/structure/stairs/west{ + invisibility = 101; + layer = 2 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/warehouse) +"sTd" = ( +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/pipe/multiz{ + color = "#ffc600" + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"sTe" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"sTh" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "7" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/science/mixing) +"sTk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/roboticist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"sTz" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Chief Engineer"; + req_access_txt = "56" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"sTA" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"sTD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sTG" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"sTH" = ( +/obj/item/clothing/under/costume/jabroni, +/obj/item/clothing/head/helmet/izanhelm, +/obj/structure/closet, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"sTJ" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"sTM" = ( +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sTP" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"sTU" = ( +/obj/machinery/air_sensor/oxygen_tank, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"sTW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/door/airlock/maintenance{ + name = "Atmospherics Maintenance"; + req_access_txt = "24" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "atmos"; + name = "бронежалюзи атмоса" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"sUb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sUw" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "Xenobio Pen 4 Blast Door" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"sUz" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"sUE" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/decal/cleanable/insectguts, +/obj/item/clothing/under/costume/jabroni, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"sUO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"sUU" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"sVe" = ( +/turf/closed/wall, +/area/service/kitchen) +"sVo" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"sVD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"sVG" = ( +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"sVI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"sVV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"sWc" = ( +/obj/structure/disposalpipe/trunk/multiz/down{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/disposal) +"sWC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/binary/crystallizer, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sWO" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/box/syringes{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"sWQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"sWT" = ( +/obj/structure/table/wood, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"sWY" = ( +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = -24 + }, +/obj/machinery/door/window{ + dir = 8; + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"sXh" = ( +/obj/machinery/power/smes/engineering, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"sXk" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sXv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"sXG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"sXI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"sXW" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/shieldgen{ + active = 1; + anchored = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"sYi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/second_engy) +"sYC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/lawoffice) +"sYI" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"sYL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"sYY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sYZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"sZf" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"sZu" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sZy" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio9"; + name = "Xenobio Pen 9 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"sZI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"sZS" = ( +/obj/structure/table/reinforced, +/obj/item/pod_parts/armor, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"sZU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"taj" = ( +/obj/structure/railing, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"tal" = ( +/obj/effect/landmark/start/bomj, +/obj/structure/chair/brevno/log2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"taM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"taV" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"tbb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"tbh" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/bottom_station_maints) +"tbi" = ( +/obj/machinery/camera{ + c_tag = "Locker Room West"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"tbp" = ( +/obj/structure/bed, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"tbB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tbM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"tbN" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"tbW" = ( +/obj/item/paper/crumpled{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tcd" = ( +/obj/machinery/chem_heater, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/machinery/camera/autoname, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"tcq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"tcu" = ( +/turf/closed/wall, +/area/cargo/office) +"tcy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"tcK" = ( +/turf/closed/wall/r_wall, +/area/commons/spacepod_docks) +"tcP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tcR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"tde" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tdf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"tdh" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"tdj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/obj/item/book/manual/wiki/cooking_to_serve_man{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"tdy" = ( +/obj/structure/closet/wardrobe/white, +/obj/item/clothing/shoes/jackboots, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tdH" = ( +/obj/machinery/button/door{ + id = "permaouter"; + name = "Outer Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = -7; + req_access_txt = "2"; + specialfunctions = 4 + }, +/obj/machinery/button/door{ + id = "permainner"; + name = "Inner Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + pixel_y = 7; + req_access_txt = "2"; + specialfunctions = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tdR" = ( +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tdX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"tdZ" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ted" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"teo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"ter" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/restroom) +"tet" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"teF" = ( +/obj/structure/table/wood/poker, +/obj/item/stack/spacecash/c200{ + pixel_y = 5 + }, +/obj/item/stack/spacecash/c20, +/obj/item/coin/iron{ + pixel_x = -12 + }, +/obj/item/coin/gold{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"teK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"teN" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"teT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"teY" = ( +/obj/machinery/atmospherics/components/binary/circulator/cold{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"tfq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/cable, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"tfF" = ( +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/pestspray{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"tfL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/mineral/ore_redemption, +/turf/open/floor/plasteel, +/area/cargo/miningoffice/meteor) +"tfN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "robo1" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"tfT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"tfW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8; + network = list("ss13","perma_brig") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tgl" = ( +/obj/machinery/button/door{ + id = "rndres"; + name = "Shutters Control Button"; + pixel_y = 32; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "rndres"; + name = "research reserve shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"tgn" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/button/door{ + id = "barmanprivate"; + name = "privacy button"; + pixel_x = 25 + }, +/turf/open/floor/wood, +/area/service/bar) +"tgo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"tgs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"tgt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"tgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/brown/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tgG" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 1"; + req_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "Xenobio Pen 1 Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/xenobiology) +"tgH" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"tgK" = ( +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"tgZ" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry/public) +"thd" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"ths" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"thw" = ( +/obj/effect/turf_decal/siding/white{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"thy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/binary/volume_pump/on{ + dir = 1; + name = "Air to Distro" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"thI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/public) +"tie" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"til" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"tiH" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tiJ" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"tiS" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"tjb" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/chem_master, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"tjc" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"tjl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"tjw" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -31 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"tjz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/circuitboard/machine/copytech{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/circuitboard/machine/copytech_platform, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"tjK" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/fax, +/turf/open/floor/plasteel, +/area/security/courtroom) +"tjY" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 8; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 8; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"tke" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"tkj" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"tkx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"tkz" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tkB" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"tkF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"tkN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"tkW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"tla" = ( +/obj/structure/bed, +/obj/machinery/button/door{ + id = "Cab2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + pixel_y = -25; + specialfunctions = 4 + }, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"tlb" = ( +/obj/structure/table/wood, +/obj/item/toy/crayon/spraycan{ + pixel_x = 7; + pixel_y = 14 + }, +/obj/item/toy/crayon/spraycan{ + pixel_y = 11 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = -8; + pixel_y = 13 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"tlc" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/bar) +"tle" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"tlq" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"tls" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/gate) +"tlA" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary/second) +"tlJ" = ( +/obj/structure/table, +/obj/effect/spawner/random/medical/minor_healing, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"tlZ" = ( +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tmc" = ( +/obj/machinery/light/small, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"tml" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"tmn" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"tmC" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tmY" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"tnx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"tny" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"tnD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"tnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"tod" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm/perch) +"toK" = ( +/obj/machinery/button/door{ + id = "maint3"; + name = "Blast Door Control C" + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"toN" = ( +/obj/structure/statue/gold/robust, +/turf/open/openspace, +/area/space) +"toP" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"toV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"tpf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"tpq" = ( +/obj/effect/turf_decal/trimline/neutral/corner{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"tpt" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"tpE" = ( +/obj/machinery/power/terminal, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/solars/starboard/fore) +"tpG" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/lapvend, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"tpJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/courtroom) +"tpK" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"tqc" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tqd" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"tqf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"tqg" = ( +/turf/closed/wall/r_wall, +/area/medical/abandoned) +"tqj" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"tqo" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"tqt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"tqC" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/south, +/turf/open/openspace, +/area/service/bar) +"tqK" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"trb" = ( +/obj/machinery/shower/directional/north, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"trl" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"trr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"trs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"trt" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/security/prison) +"trv" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/vending/wardrobe/chap_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"trw" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"trD" = ( +/obj/effect/turf_decal/siding/white, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"trF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"trY" = ( +/obj/structure/closet/crate, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/contraband/narcotics, +/turf/open/floor/plating, +/area/security/prison) +"tsa" = ( +/obj/machinery/button/door{ + id = "kanyewest"; + name = "Privacy Shutters"; + pixel_y = 24 + }, +/obj/item/storage/briefcase, +/obj/structure/rack, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"tsj" = ( +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/preset/ordnance/num1{ + dir = 8 + }, +/turf/open/indestructible/labfloor, +/area/science/test_area) +"tsn" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Shuttle Bay" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"tsp" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"tsw" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/paper/guides/jobs/hydroponics, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/potato, +/obj/item/seeds/tomato, +/obj/item/seeds/carrot, +/obj/item/seeds/grass, +/obj/item/seeds/ambrosia, +/obj/item/seeds/wheat, +/obj/item/seeds/pumpkin, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/contraband/narcotics, +/turf/open/floor/plasteel, +/area/security/prison) +"tsG" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood, +/area/service/library/upper) +"tsJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison/safe) +"tsN" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tsW" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"ttb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id = "Secure StorageBackdoor"; + name = "secure storage" + }, +/obj/machinery/button/door{ + id = "Secure StorageBackdoor"; + name = "Storage Backdoor"; + pixel_y = 26; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/storage) +"tti" = ( +/turf/closed/wall, +/area/commons/dorms/seven) +"ttr" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/department/electrical/two) +"ttB" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"ttF" = ( +/obj/machinery/status_display/supply{ + pixel_y = 2 + }, +/turf/closed/wall, +/area/cargo/sorting) +"ttI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/obj/effect/landmark/blobstart, +/turf/open/openspace, +/area/maintenance/aft) +"ttY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/security/processing) +"ttZ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical/two) +"tug" = ( +/obj/structure/rospilovo/porog{ + dir = 4 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"tuj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"tve" = ( +/obj/machinery/scanner_gate, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"tvy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/cargo/storage) +"tvA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxillary Base Construction"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice/meteor) +"tvD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"tvX" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"twd" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Kill Chamber"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"two" = ( +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"twp" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"twv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood/large, +/area/service/library) +"tww" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"twA" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"twC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"twK" = ( +/turf/open/floor/plasteel/white/side{ + dir = 6 + }, +/area/science/mixing) +"twP" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"twR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/storage/pod{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"twZ" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"txn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"txt" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"txv" = ( +/obj/item/stack/cable_coil{ + amount = 7; + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tyc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tyd" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tyk" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/service/library/upper) +"tyw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"tyz" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"tyD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/science/research) +"tyH" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"tyK" = ( +/obj/structure/table, +/obj/item/razor, +/obj/item/storage/backpack/duffelbag/sec/surgery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/healthanalyzer{ + pixel_y = -13 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"tyQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/internals, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"tyW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tzb" = ( +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"tzf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"tzi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/hydroponics) +"tzm" = ( +/turf/open/floor/carpet, +/area/service/bar) +"tzO" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"tzR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"tzV" = ( +/turf/open/floor/engine, +/area/engineering/storage_shared) +"tAc" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"tAe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"tAi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"tAl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge/shop) +"tAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tAo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"tAx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"tAy" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tAG" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tAI" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tAJ" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/lawyer, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"tAM" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/table, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/plasteel, +/area/security/prison) +"tBk" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"tBm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"tBp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"tBt" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"tBx" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tBy" = ( +/obj/effect/spawner/xmastree, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"tCa" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"tCf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"tCr" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"tCt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tCA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"tCD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"tCQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing/corner, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"tDc" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"tDg" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"tDh" = ( +/obj/machinery/meteor_catcher{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tDL" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"tDX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"tEb" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/status_display/supply{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"tEt" = ( +/turf/open/floor/wood/parquet, +/area/service/library) +"tEu" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tEv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red/half, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/security/checkpoint/escape) +"tED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tEP" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"tEY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"tFj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood/large, +/area/service/library) +"tFp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/turf/open/space/openspace, +/area/space/nearstation) +"tFw" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"tFx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"tFD" = ( +/obj/machinery/button/flasher{ + id = "transferflash"; + pixel_x = 24 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tFV" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"tGh" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tGu" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/structure/cable, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"tGx" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tGO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/fore) +"tHd" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_dock) +"tHA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"tHB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"tId" = ( +/obj/structure/janitorialcart, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tIl" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/second_engy) +"tIx" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/service/bar) +"tID" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"tIF" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = 16; + pixel_y = 5 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tIN" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/openspace, +/area/service/bar) +"tJc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tJo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"tJz" = ( +/obj/structure/table/optable{ + name = "Robotics Operating стол" + }, +/obj/item/surgical_drapes, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tJQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"tKu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"tKw" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tKx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"tKy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"tKF" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tKI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"tKK" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"tKL" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"tKR" = ( +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"tKW" = ( +/obj/effect/turf_decal/loading_area/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot_red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/checkpoint/escape) +"tKX" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tLb" = ( +/turf/open/floor/plating, +/area/engineering/main) +"tLj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tLs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"tLJ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Visitation Observation"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"tLQ" = ( +/obj/machinery/air_sensor/air_tank, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"tLY" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics North" + }, +/turf/open/openspace, +/area/service/hydroponics) +"tLZ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/potato{ + name = "запасная батарея офицера Бибски" + }, +/turf/open/floor/plating, +/area/security/processing) +"tMm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"tMp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"tMu" = ( +/obj/structure/rack, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/assault_pod/mining, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Auxillary Base Construction"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"tMw" = ( +/obj/structure/table, +/obj/item/binoculars{ + layer = 3.03 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"tMW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tMX" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/fore) +"tNb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"tNe" = ( +/obj/structure/table, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + amount = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"tNg" = ( +/obj/structure/cable/multilayer/multiz, +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"tNm" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"tNx" = ( +/obj/machinery/camera{ + c_tag = "Server Room"; + network = list("ss13","rd"); + pixel_x = 22 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/server"; + dir = 1; + name = "Server Room APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/server) +"tNz" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"tNC" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"tNE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel, +/area/service/kitchen/coldroom) +"tNH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tNK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"tNV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"tOc" = ( +/turf/closed/wall/r_wall, +/area/commons/fitness/kachalka) +"tOn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"tOw" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"tOD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tOJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor"; + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"tPj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tPl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"tPp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"tPz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"tPB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"tPS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"tPY" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"tQc" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"tQj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"tQk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"tQq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tQv" = ( +/turf/closed/wall, +/area/maintenance/department/electrical) +"tQw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barmanprivate"; + name = "barman privacy shutters" + }, +/turf/open/floor/plating, +/area/service/bar) +"tQx" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/exit) +"tQA" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"tQK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/aft) +"tQO" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/four) +"tQV" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"tRa" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"tRc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"tRi" = ( +/obj/machinery/door/poddoor/preopen{ + id = "lawyer_blast"; + name = "privacy door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/lawoffice) +"tRk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"tRp" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tRs" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"tRA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"tRJ" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 9"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tRU" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"tRV" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"tSl" = ( +/obj/structure/sign/warning/docking, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"tSq" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Research Director"; + req_access_txt = "30" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"tST" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tTl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"tTq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"tTu" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_one_access_txt = "2;101"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"tTJ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel, +/area/commons/locker) +"tTS" = ( +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"tUb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/carpet, +/area/service/bar) +"tUe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"tUj" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Service Bay"; + req_one_access_txt = "65" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"tUm" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"tUs" = ( +/turf/closed/wall/r_wall, +/area/science/robotics) +"tUA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tUI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tUK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kanyewest"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/detectives_office) +"tUO" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/comfy/black, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"tUU" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/window{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tVb" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 Outlet Pump" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"tVj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"tVC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/lawoffice) +"tVX" = ( +/turf/closed/wall, +/area/hallway/primary/port/gate) +"tVY" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"tWi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tWl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/department/electrical/two) +"tWn" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/spawner/random/techstorage/command_all, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"tWw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Dormitory" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tWy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"tWA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"tWE" = ( +/obj/machinery/camera/autoname, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"tWJ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"tWK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tXa" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"tXq" = ( +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"tXr" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"tXW" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"tYi" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"tYr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"tYv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tYZ" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"tZb" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tZt" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tZu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"tZv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"tZD" = ( +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/hallway/primary/aft/restroom) +"tZI" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tZM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"tZO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"tZV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"uah" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Bay" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"uak" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"uat" = ( +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_y = 25; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms/four) +"uav" = ( +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1481; + name = "Confessional Intercom"; + pixel_x = 25 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"uaw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"uaG" = ( +/obj/structure/light_construct, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"uaH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"uaI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"uaM" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"uaP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/status_display/evac{ + pixel_y = -32 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"uaR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"uaS" = ( +/obj/effect/landmark/start/librarian, +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/service/library/upper) +"uaT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "spacepoddoor3"; + name = "������ ��� ����������"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"uba" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "бронешторы лаборатории взрывотехники" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"ubo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"ubu" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/to_arrival) +"ubw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research/abandoned) +"ubz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"ubH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ubI" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage/tech) +"ubM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ubX" = ( +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Biohazard Shutter Control"; + pixel_x = -6; + pixel_y = 28; + req_access_txt = "47" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "Biohazard_tech"; + name = "Почтовый шлюз"; + pixel_x = 7; + pixel_y = 28; + req_access_txt = "47" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"ucc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/sign/plaques/robust/bronze/duo{ + pixel_y = -33 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uce" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"uck" = ( +/obj/machinery/light, +/obj/structure/punching_bag, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"ucy" = ( +/obj/structure/chair/comfy/beige{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"ucG" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/courtroom) +"ucJ" = ( +/obj/structure/chair/stool, +/obj/effect/spawner/random/maintenance, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"udb" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"udh" = ( +/obj/machinery/nuclearbomb/beer, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"udB" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"udQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"udW" = ( +/obj/machinery/door/airlock/research{ + name = "Nanites Lab Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"uef" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"uep" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"ueq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"uey" = ( +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ueC" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera{ + c_tag = "Fore Starboard Solar Access" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ueE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Hall - Fore"; + dir = 6; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ueI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ueN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"ueW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ueY" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"ufe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ufj" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/openspace, +/area/space/nearstation) +"ufs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ufJ" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ufO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ufR" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "MiniSat External SouthEast"; + dir = 4; + network = list("minisat"); + start_active = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"ufY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/atmospherics_engine) +"ugb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ugc" = ( +/obj/structure/grille/broken, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ugg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"ugi" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"ugk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ugm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"ugv" = ( +/obj/structure/table, +/obj/item/radio/headset/headset_exploration, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ugG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"ugT" = ( +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ugX" = ( +/obj/structure/marker_beacon, +/turf/open/floor/plating/rust{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space/nearstation) +"uhj" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uhp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"uhq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uht" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"uhu" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"uhx" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"uhz" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/security/prison) +"uhB" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/evac{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"uhC" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"uhG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"uhY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"uic" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Space" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uiK" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + dir = 2; + name = "Pharmacy Desk"; + req_access_txt = "69" + }, +/obj/machinery/door/poddoor/preopen{ + id = "chemistry_shutters_2"; + name = "Pharmacy Shutter" + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"uiX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ujd" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ujh" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ujo" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/department/electrical/two) +"uju" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/analyzer{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/analyzer{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/pipe_dispenser{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/pipe_dispenser{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ujE" = ( +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4; + name = "port to mix" + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"ujJ" = ( +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"ujL" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/table/reinforced, +/obj/item/dest_tagger, +/obj/item/dest_tagger, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"ujZ" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"uki" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"ukr" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"ukt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"ukM" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/security/upper) +"ukV" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ulg" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/effect/turf_decal/tile/dark, +/obj/effect/turf_decal/tile/dark{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ulh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"ulk" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + id_tag = "commissarydoor3"; + req_one_access_txt = "12;63;48;50" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ull" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ulB" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"ulN" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ulW" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ulX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"umi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/toy/figure/qm{ + pixel_x = -6 + }, +/obj/item/gps/mining/off{ + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"umm" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/janitor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"umA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"umG" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"umR" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/security/processing) +"umW" = ( +/obj/machinery/camera/autoname{ + dir = 5; + start_active = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"umX" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + dir = 4 + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"una" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"unc" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"unj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"unk" = ( +/obj/structure/railing, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"unw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"unA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"unB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"unI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/tacmap/directional/north, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"unR" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uoi" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"uop" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"uos" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/service/chapel/main) +"uoG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/secondary/entry/south) +"uoH" = ( +/obj/structure/table, +/obj/item/nanite_remote{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/nanite_scanner, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"uoJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"uoW" = ( +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"uoX" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"upb" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmankomorka"; + name = "bar shutters" + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"uph" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"upj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"upk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/table, +/obj/item/stack/rods/ten, +/turf/open/floor/plating, +/area/space/nearstation) +"upu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"upJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"upP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"upR" = ( +/obj/structure/railing, +/obj/item/kirbyplants/random, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"uqd" = ( +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"uqo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"uqs" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"uqu" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x3, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uqv" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"uqN" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"uqR" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uqS" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "trash" + }, +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"urb" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical) +"urf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"urn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"urw" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/tcommsat/server"; + dir = 1; + name = "Telecomms Server APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"urF" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"urH" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Detective Maintenance"; + req_access_txt = "4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore) +"usc" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"usg" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"usl" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"usm" = ( +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/commons/storage/emergency/port) +"usr" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"usu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"usC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/engineering/engine_smes"; + dir = 1; + name = "SMES room APC"; + pixel_y = 25 + }, +/obj/machinery/portable_atmospherics/canister/proto/default/oxygen, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"usV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"usX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/science/xenobiology) +"utP" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway West"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"uua" = ( +/turf/open/openspace, +/area/maintenance/starboard/fore) +"uuf" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port) +"uuh" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/security_all, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"uuA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/solars/port/aft) +"uuQ" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"uuT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"uuU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Port Aft"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"uvk" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics/mechbay) +"uvl" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"uvs" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"uvw" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/structure/table/glass, +/obj/machinery/button/door{ + id = "chemistry_shutters_2"; + name = "Chemistry shutters"; + pixel_x = 24; + pixel_y = -28; + req_one_access_txt = "5; 69" + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"uvx" = ( +/obj/machinery/autolathe, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"uvE" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetic"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/genetics) +"uvP" = ( +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"uvQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"uvT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"uvW" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Port Fore"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"uvZ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"uwl" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"uws" = ( +/obj/structure/sink{ + pixel_y = 30 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"uww" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/structure/closet/crate/goldcrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"uwF" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Spacepod Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage_shared) +"uwQ" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"uwR" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"uwX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"uxm" = ( +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"uxp" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"uxq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"uxw" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"uxQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"uxT" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high/plus{ + layer = 30.1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"uxW" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"uxZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/courtroom) +"uyj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"uyt" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/engineering/main) +"uyy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/tacmap/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"uyA" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Plasma Outlet Pump" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uyC" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "genetic"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/genetics) +"uyG" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("vault") + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"uyM" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft/exploration) +"uyW" = ( +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4{ + color = "#0000ff"; + dir = 4; + name = "Supply multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"uyZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"uza" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"uzc" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/theater) +"uzl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/clothing/mask/vape, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research/abandoned) +"uzy" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Courtroom South"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"uzD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"uAi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"uAn" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"uAt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"uAu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"uAw" = ( +/turf/closed/wall, +/area/security/processing) +"uAB" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"uAQ" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"uAV" = ( +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uBj" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"uBk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"uBp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"uBu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"uBx" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness) +"uBy" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"uBO" = ( +/turf/closed/wall, +/area/command/heads_quarters/rd) +"uCb" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"uCA" = ( +/obj/machinery/porta_turret/ai{ + dir = 4; + installation = /obj/item/gun/energy/e_gun + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/aisat/hallway) +"uCD" = ( +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat_interior) +"uCK" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"uCL" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"uCO" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"uCZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/picture_frame{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uDb" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"uDe" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"uDo" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"uDw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"uDx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uDF" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Two"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"uDG" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"uDL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"uDM" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"uDR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/modular_computer/console/preset/cargochat{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"uDS" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"uEb" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = /area/ai_monitored/turret_protected/ai; + dir = 1; + name = "AI Chamber APC"; + pixel_y = 25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"uEs" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"uEv" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/maintenance/bottom_station_maints/south) +"uEz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"uEA" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/bot, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"uEB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"uED" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"uEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/structure/table/wood, +/obj/item/toy/katana{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/toy/katana{ + pixel_x = -2 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"uFj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"uFp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Incinerator to Output" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"uFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"uFw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"uFR" = ( +/obj/machinery/airlock_sensor/incinerator_ordmix, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump/off/orange/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"uGb" = ( +/obj/machinery/computer/secure_data, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"uGf" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uGg" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"uGl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uGm" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore/secondary) +"uGv" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"uGD" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"uGH" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"uGM" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/science/server) +"uGO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/comfy/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uGU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uHs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"uHz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"uHB" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_eva) +"uHI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"uHM" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"uHN" = ( +/obj/machinery/skill_station, +/turf/open/floor/wood/parquet, +/area/service/library) +"uHR" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/aft/restroom) +"uIn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit) +"uIq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/to_brig) +"uIs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"uIG" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"uIJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/science/research/abandoned) +"uIL" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"uIR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/sorting) +"uIT" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"uJb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"uJn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"uJo" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/openspace, +/area/space/nearstation) +"uJO" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uJR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uKx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"uKA" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6 + }, +/obj/machinery/button/door{ + id = "barmanpriv"; + name = "barman privacy"; + pixel_x = -6; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "barShutters"; + name = "bar shutters"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/wood, +/area/service/bar) +"uKI" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"uKL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uKN" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + pixel_y = 4 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"uKP" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"uKQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"uLa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"uLc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"uLi" = ( +/obj/structure/closet/bombcloset, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"uLo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"uLx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/gate) +"uLH" = ( +/obj/machinery/recharge_station, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"uLJ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/structure/sign/warning/securearea{ + name = "\improper STAY CLEAR HEAVY MACHINERY"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"uLL" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"uLP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/tools) +"uMf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"uMj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"uMy" = ( +/obj/machinery/computer/exodrone_control_console{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/qm/perch) +"uMK" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"uMS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/item/storage/box/chemheater, +/obj/item/storage/box/chemdisp, +/obj/item/storage/box/lights/tubes, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"uNa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"uNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"uNS" = ( +/obj/structure/chair, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uOk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"uOm" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/white{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"uOu" = ( +/obj/machinery/button/door{ + id = "executionspaceblast"; + name = "Vent to Space"; + pixel_x = -25; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/machinery/button/ignition{ + id = "executionburn"; + pixel_x = -24; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "executionfireblast"; + name = "Transfer Area Lockdown"; + pixel_x = -36; + pixel_y = -5; + req_access_txt = "2" + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"uOB" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"uOD" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"uOE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"uOF" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness) +"uOI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"uOY" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"uPd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical) +"uPl" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"uPy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"uPC" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel/white/corner, +/area/science/mixing) +"uPE" = ( +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"uPG" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/service_all, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"uPH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningoffice/meteor) +"uPP" = ( +/obj/machinery/power/solar_control{ + id = "auxsolareast"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/solars/starboard/fore) +"uPW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"uQh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"uQl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"uQs" = ( +/obj/structure/holosign/barrier/atmos, +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"uQK" = ( +/obj/machinery/nanite_chamber, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"uQL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"uQQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uQS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"uQT" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Bay 1 South" + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/floor/directional/east, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"uQW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"uRn" = ( +/obj/structure/cable/multilayer/multiz, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"uRy" = ( +/obj/structure/ladder, +/turf/open/floor/carpet, +/area/service/bar) +"uRD" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/trimline/green/filled/end{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uRH" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"uRO" = ( +/obj/structure/ladder, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/aft) +"uRP" = ( +/turf/closed/wall, +/area/science/misc_lab) +"uSi" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"uSR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"uST" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood/poker, +/obj/item/clothing/mask/cigarette/cigar, +/obj/item/storage/ashtray, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"uSZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"uTe" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + name = "Engineering External Access"; + req_access_txt = "10;13" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"uTj" = ( +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Test Chamber"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"uTs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/checkpoint/escape) +"uTy" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"uTL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"uTP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"uUh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"uUo" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab Entrance"; + network = list("ss13","rd") + }, +/turf/open/openspace, +/area/science/xenobiology) +"uUq" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"uUr" = ( +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_y = 24 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"uUs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"uUw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uUG" = ( +/obj/structure/railing, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uUK" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"uUM" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"uUQ" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Laundry" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"uUR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uUT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/medical/morgue) +"uUU" = ( +/obj/structure/table, +/obj/machinery/coffeemaker{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = 13; + pixel_y = 7 + }, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"uUX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"uVl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms/seven) +"uVm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"uVB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/newspaper, +/obj/item/price_tagger{ + pixel_x = -10; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"uVG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uVJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/service/library) +"uVK" = ( +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/hallway/secondary/entry/south) +"uVO" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"uWf" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/maintenance/four, +/turf/open/space/basic, +/area/space/nearstation) +"uWn" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 1 + }, +/obj/machinery/door/window/survival_pod{ + dir = 8; + name = "Observation Deck"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"uWs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"uWz" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uWK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/airlock{ + name = "Kitchen Service Hall"; + req_access_txt = "28"; + req_one_access_txt = null + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/service) +"uWN" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uWO" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"uWQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"uWS" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage" + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"uXk" = ( +/obj/machinery/computer/atmos_control{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"uXl" = ( +/obj/machinery/light/floor/directional/north, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"uXv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"uXy" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"uXC" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"uXD" = ( +/obj/machinery/atmospherics/miner/oxygen, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"uYb" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge/cryo) +"uYn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/dresser, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Theatre"; + name = "theatre RC"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/service/theater) +"uYo" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/port) +"uYB" = ( +/obj/structure/statue/sandstone/assistant, +/turf/open/floor/plating, +/area/space/nearstation) +"uYK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"uYM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"uYN" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"uZh" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"uZu" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = -30; + receive_ore_updates = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"uZX" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"vac" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"vaf" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vay" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_x = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"vaP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"vaS" = ( +/obj/machinery/newscaster/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"vba" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vbo" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vbz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"vbC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"vbD" = ( +/obj/machinery/door/airlock/command{ + name = "EVA"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"vbJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"vbX" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vcb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"vce" = ( +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/door/firedoor/heavy, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vcj" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vcm" = ( +/obj/machinery/door/airlock/security{ + name = "Prison Forestry" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"vcn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"vcp" = ( +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"vcA" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/north{ + network = list("ss13","perma_brig") + }, +/turf/open/space/basic, +/area/space/nearstation) +"vcH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vcP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"vdl" = ( +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science Requests Console"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/obj/structure/table/wood, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = 11; + pixel_y = 13 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"vds" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/mixing) +"vdy" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat/hallway) +"vdA" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen 2"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vdB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"vdC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"vdD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vdI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vdN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"vea" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"veg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"vek" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = -30 + }, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/closet/secure_closet/security/science, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"vep" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"vet" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"veu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vew" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"veC" = ( +/turf/closed/wall/r_wall, +/area/cargo/qm/perch) +"veD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"veH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"veR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"veU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"veV" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central/low_level_eva) +"vfa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vfd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vfn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vfq" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/department/electrical) +"vft" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vfA" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -9 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -9 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"vfM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"vgc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"vgE" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vgI" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Maintenance"; + req_access_txt = "12;24" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"vgM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/checkpoint/escape) +"vgR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vgX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/hallway/secondary/service) +"vgZ" = ( +/obj/structure/table/glass, +/obj/item/biopsy_tool{ + pixel_x = -10; + pixel_y = 3 + }, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vhj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/service/hydroponics) +"vhn" = ( +/obj/structure/table, +/obj/item/hemostat, +/obj/item/cautery{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"vhp" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"vht" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"vhw" = ( +/obj/structure/closet/crate/bin, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"vhy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vhF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vhL" = ( +/obj/structure/frame/computer, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vhP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access_txt = "26" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"vhR" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"vhS" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vib" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vil" = ( +/obj/structure/reagent_dispensers/bath{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"vin" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/tacmap/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"vis" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced, +/obj/structure/reagent_dispensers/watertank, +/turf/open/openspace, +/area/science/xenobiology) +"vit" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/item/storage/box/autobuild_lights/small{ + pixel_y = 9 + }, +/obj/item/storage/box/autobuild_lights{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/service/janitor) +"viJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"viK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"viN" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/commons/fitness/kachalka) +"viP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/tcommsat/computer"; + dir = 1; + name = "Telecomms Monitoring APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"vje" = ( +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vjf" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"vjm" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"vjr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/vending_refill/custom, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"vjs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vjH" = ( +/obj/machinery/button/door{ + id = "arrivalsb"; + name = "Blast Door Control"; + pixel_y = 32 + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/full, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"vjJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"vjW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"vkd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/primary/aft/exploration) +"vkj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage) +"vkp" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"vkA" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"vkB" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"vkQ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/assembly/prox_sensor{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"vlr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"vlB" = ( +/turf/closed/wall, +/area/cargo/qm/perch) +"vlD" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + name = "research lab shutters" + }, +/obj/machinery/vending/custom, +/turf/closed/wall/r_wall, +/area/science/lab) +"vlF" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/power/grounding_rod, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"vlV" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"vlX" = ( +/turf/closed/wall, +/area/hallway/primary/port/to_arrival) +"vml" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"vmp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"vmr" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"vms" = ( +/turf/open/floor/plating, +/area/cargo/storage) +"vmv" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/turf/open/floor/plating, +/area/maintenance/aft) +"vmF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/door/airlock/external/glass{ + safety_mode = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"vmZ" = ( +/obj/structure/closet/crate/coffin, +/obj/machinery/door/window/eastleft{ + name = "Coffin Storage"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/office) +"vna" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vnp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/storage/tech) +"vnq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vnz" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/siding/white{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vnI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/abandoned) +"vnW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"vof" = ( +/turf/closed/wall, +/area/cargo/storage) +"voi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vop" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/melee/flyswatter, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/queen_bee/bought, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/suit/beekeeper_suit, +/turf/open/floor/grass, +/area/service/hydroponics) +"voH" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"voN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"voU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"voY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vpb" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/west) +"vpq" = ( +/turf/closed/wall, +/area/hallway/primary/central/low_level_eva) +"vpt" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_construction, +/obj/item/clothing/glasses/meson, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vpu" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/item/paper, +/obj/machinery/door/window/westright{ + dir = 1; + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"vpM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vpQ" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"vpR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Aquariums" + }, +/obj/machinery/door/poddoor/shutters{ + dir = 4; + id = "aquaprivacy"; + name = "Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/commons/fitness/recreation) +"vqe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vqk" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vqm" = ( +/obj/structure/table/glass, +/obj/item/hemostat, +/obj/item/stock_parts/manipulator, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vqw" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"vqx" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"vrn" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"vro" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass{ + req_one_access_txt = "13;101" + }, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vrt" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"vrQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"vsk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/service/hydroponics) +"vsm" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"vsy" = ( +/turf/closed/wall, +/area/commons/dorms/three) +"vsH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/botan) +"vsO" = ( +/turf/closed/wall, +/area/commons/vacant_room) +"vsZ" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/service/chapel/main) +"vtr" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"vts" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"vtv" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/hyper, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/plating, +/area/engineering/manufactory) +"vtx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/service/bar) +"vtR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"vua" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"vuo" = ( +/obj/machinery/light/floor/directional/west, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"vuv" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/bar) +"vuz" = ( +/turf/open/floor/wood, +/area/commons/dorms/seven) +"vuB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"vuC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"vuD" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"vuE" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/mutagen{ + layer = 30.1; + pixel_x = 3; + pixel_y = -9 + }, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Monkey Pen"; + req_access_txt = "9" + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"vuF" = ( +/obj/structure/railing, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vvj" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"vvr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos) +"vvs" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"vvv" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"vvw" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"vvO" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"vvX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"vwa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"vwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/table, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"vwx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"vwF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/spacepod_docks) +"vwJ" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"vwQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"vwU" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 4" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"vxc" = ( +/obj/machinery/meter, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"vxj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"vxk" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"vxo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"vxw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vxx" = ( +/obj/item/clothing/under/costume/jabroni/sec, +/obj/item/clothing/head/helmet/police, +/obj/structure/closet, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"vxE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vxS" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"vym" = ( +/turf/closed/wall, +/area/hallway/secondary/entry/south) +"vyq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vyA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vyL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vyP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"vzf" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/locker) +"vzj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vzl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"vzD" = ( +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"vzQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Research Delivery Access"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vzR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"vzZ" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"vAa" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/effect/turf_decal/siding/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library/artgallery) +"vAh" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/research) +"vAm" = ( +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vAq" = ( +/turf/closed/wall, +/area/commons/storage/art) +"vAr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"vAu" = ( +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"vAA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"vAB" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/cargo/miningdock) +"vAD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"vAI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"vAK" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"vAU" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"vAY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"vBa" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/space_heater, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"vBE" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 6" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"vBL" = ( +/obj/item/clothing/under/color/lightpurple, +/obj/item/stack/spacecash/c200, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vBM" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/aft) +"vBW" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"vBY" = ( +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"vCe" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vCg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"vCh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"vCk" = ( +/obj/structure/table, +/obj/item/storage/box/aquarium_props{ + pixel_y = 8 + }, +/obj/item/storage/box/aquarium_props, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/fore/upper) +"vCn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"vCr" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"vCJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vCL" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"vCN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/engine, +/area/engineering/second_engy) +"vCP" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/hallway/secondary/entry) +"vDd" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/hand_labeler, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"vDg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/research) +"vDh" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/port) +"vDk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/freezer, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/fore/upper) +"vDs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"vDw" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prisoner Processing"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"vDI" = ( +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"vDJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"vDK" = ( +/obj/effect/turf_decal/trimline/yellow/warning{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vDL" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"vDQ" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/ai_monitored/command/nuke_storage) +"vDV" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"vDY" = ( +/obj/machinery/button/door{ + id = "xenobio7"; + layer = 3.3; + name = "Xenobio Pen 7 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"vDZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vEi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"vEs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = -4; + pixel_y = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"vEy" = ( +/obj/structure/table/glass, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/crowbar, +/obj/item/plant_analyzer, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"vEU" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/food/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "barmanpriv"; + name = "bar shutters" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"vEX" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"vFb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"vFi" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -25 + }, +/obj/machinery/atmospherics/components/binary/tank_compressor, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"vFj" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high/plus{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/multitool{ + layer = 3.01; + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"vFp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"vFK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Incinerator Access"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden{ + name = "wooden barricade (CLOSED)" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vFM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/fitness) +"vFX" = ( +/obj/machinery/camera/motion{ + c_tag = null; + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"vFZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing/chamber) +"vGb" = ( +/turf/closed/wall/r_wall, +/area/science/breakroom) +"vGf" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"vGh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"vGy" = ( +/obj/machinery/pool_filter, +/turf/open/indestructible/pool/end, +/area/commons/locker) +"vGC" = ( +/obj/structure/table, +/obj/item/clothing/head/soft/grey{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"vGL" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"vHz" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vHI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vHN" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"vHU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/wood/large, +/area/service/library) +"vHY" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"vIc" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/qm) +"vIh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"vIl" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/fore) +"vIq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"vIt" = ( +/obj/machinery/camera{ + c_tag = "Cargo Receiving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8; + req_access_txt = "31" + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"vIB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/library) +"vID" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"vIN" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vJf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"vJm" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + dir = 4; + name = "Scrubbers multi deck pipe adapter" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vJn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"vJr" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"vJu" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary/third) +"vJy" = ( +/obj/structure/cable, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"vJA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"vJH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"vJX" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vKb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"vKc" = ( +/obj/item/toy/spinningtoy, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vKp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"vKr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"vKu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintenance"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Biohazard"; + name = "карантин" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vKw" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/yellow/filled/line, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"vKR" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = 15; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"vKU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 4; + name = "Toxins Storage APC"; + pixel_x = 25 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"vKX" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"vLg" = ( +/turf/closed/wall, +/area/service/hydroponics) +"vLl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vLm" = ( +/obj/structure/filingcabinet, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"vLr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/solars/starboard/fore) +"vLD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"vLX" = ( +/obj/item/bedsheet/red, +/mob/living/simple_animal/bot/secbot/beepsky{ + name = "Офицер Бибски" + }, +/obj/structure/bed/dogbed{ + name = "кроватка офицера Бибски" + }, +/turf/open/floor/plating, +/area/security/processing) +"vMa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vMb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"vMn" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -11; + pixel_y = -24 + }, +/obj/machinery/camera/motion{ + c_tag = "MiniSat AI Chamber Core"; + dir = 1; + network = list("aicore") + }, +/obj/machinery/door/window{ + dir = 4; + name = "AI Core Door"; + req_access_txt = "16" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"vMA" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"vMB" = ( +/obj/structure/lattice, +/obj/machinery/light/floor/directional/north, +/turf/open/openspace, +/area/service/bar) +"vMF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"vMK" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/science/robotics) +"vMP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vMR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"vMZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"vNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vNc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vNj" = ( +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"vNp" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio9"; + name = "Xenobio Pen 9 Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"vNy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"vNC" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"vNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + name = "Robotics Maintenance"; + req_access_txt = "23" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vNW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"vOd" = ( +/obj/structure/table/optable{ + name = "Robotics Operating стол" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"vOh" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"vOj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"vOr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"vOu" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"vOz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"vOI" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/disks{ + pixel_x = -15; + pixel_y = 3 + }, +/obj/item/storage/box/zipties{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"vOK" = ( +/turf/closed/wall/r_wall, +/area/engineering/manufactory) +"vOP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vPd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/railing/left{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vPu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"vPD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"vPU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vQj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"vQt" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vQx" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vQz" = ( +/obj/machinery/power/mining_rack, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"vRg" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"vRi" = ( +/turf/closed/wall/r_wall, +/area/cargo/warehouse) +"vRo" = ( +/turf/open/floor/glass/reinforced, +/area/service/chapel/main) +"vRO" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/storage/box/syringes{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -2 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"vRQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"vRX" = ( +/turf/open/floor/wood/large, +/area/service/library) +"vRZ" = ( +/obj/effect/turf_decal/siding/thinplating, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"vSl" = ( +/obj/effect/turf_decal/bot{ + dir = 1 + }, +/obj/machinery/field/generator, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"vSA" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"vSG" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/power/apc{ + areastring = "/area/cargo/sorting"; + name = "Delivery Office APC"; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"vSP" = ( +/obj/structure/table/wood, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/prison{ + dir = 1; + pixel_y = -27 + }, +/turf/open/floor/wood, +/area/lawoffice) +"vSQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"vST" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair/stool/bamboo{ + dir = 4 + }, +/obj/structure/sign/picture_frame{ + pixel_x = 32 + }, +/turf/open/floor/bamboo, +/area/commons/vacant_room/commissary/third) +"vSU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"vSY" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/siding/wideplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"vTv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/department/electrical/two) +"vTx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vTB" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/checkpoint/escape) +"vTF" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/research/abandoned) +"vTL" = ( +/obj/item/radio/intercom{ + pixel_x = -25 + }, +/obj/structure/rack, +/obj/item/storage/box/lights/tubes, +/obj/item/crowbar/red, +/turf/open/floor/glass/reinforced, +/area/science/xenobiology) +"vTO" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vUq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos/upper) +"vUv" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/grass, +/area/commons/vacant_room/commissary/third) +"vUF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south_hall) +"vUM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"vVd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vVg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"vVh" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/meeting_room) +"vVl" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice/meteor) +"vVq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"vVu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry/south_hall) +"vVz" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"vVP" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/science/mixing) +"vVQ" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engineering/second_engy) +"vWg" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"vWn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"vWo" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/main) +"vWu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"vWw" = ( +/obj/structure/table, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/crowbar, +/obj/item/radio/headset/headset_sci{ + pixel_x = -3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"vWA" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/fore"; + dir = 8; + name = "Starboard Bow Solar APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/maintenance/solars/starboard/fore) +"vWB" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/hallway/secondary/entry/south) +"vWE" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "8;12" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/starboard) +"vWF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/commons/dorms/one) +"vWQ" = ( +/obj/structure/table/wood, +/obj/item/food/baguette, +/obj/item/toy/dummy, +/turf/open/floor/plasteel/checker, +/area/service/theater) +"vXe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"vXh" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"vXi" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"vXj" = ( +/obj/machinery/computer/slot_machine{ + balance = 15; + money = 500 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vXq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"vXs" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Escape Pod 1"; + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"vXv" = ( +/obj/item/radio/intercom{ + pixel_y = 20 + }, +/obj/machinery/camera{ + c_tag = "Courtroom North" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/monofloor, +/area/security/courtroom) +"vXx" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/ladder, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"vXz" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/structure/closet/l3closet, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"vXE" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"vXK" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vXM" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/chair/sofa/corp/right{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"vXQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"vXZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"vYp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"vYr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 4; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"vYw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"vYI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/aug_manipulator, +/obj/item/radio/intercom/directional/west, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"vYK" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"vZb" = ( +/obj/effect/spawner/random/trash/cigbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vZq" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"vZx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"vZz" = ( +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/security/prison) +"vZG" = ( +/obj/structure/chair/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"vZP" = ( +/obj/structure/table, +/obj/machinery/computer/bookmanagement, +/turf/open/floor/plasteel, +/area/security/prison) +"vZQ" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"waf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"waB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"waJ" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"waL" = ( +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage/tech) +"wbt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"wbV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"wbY" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"wca" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/prison) +"wce" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/storage/ashtray/glass, +/turf/open/floor/light, +/area/service/bar) +"wck" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"wcq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wcr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/entry/south_hall) +"wcD" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"wcK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"wcS" = ( +/turf/open/floor/engine, +/area/science/misc_lab) +"wcU" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"wdf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"wdk" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"wdp" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wds" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"wdx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/brown, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/brown{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"wdG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wdV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"wea" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"weh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"weF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom/two{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research/abandoned) +"weG" = ( +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/openspace, +/area/maintenance/disposal) +"weX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wfu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"wfv" = ( +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Chapel Office" + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"wfz" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"wfD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wfN" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wfV" = ( +/turf/open/indestructible/pool, +/area/commons/locker) +"wgh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"wgu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"wgE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"wgJ" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "NT SS13: Public Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/meta; + width = 7 + }, +/turf/open/space/openspace, +/area/space) +"wgY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"whd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"whm" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination/dorms, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"whp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"whs" = ( +/obj/machinery/icecream_vat, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"whv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"whD" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"whF" = ( +/obj/machinery/modular_computer/console/preset/curator{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"whG" = ( +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_y = 15 + }, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/spawner/random/decoration/glowstick{ + pixel_x = 3; + pixel_y = 4 + }, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"whK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"whN" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"whP" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"whQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"whT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"whU" = ( +/obj/machinery/power/generator, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"whV" = ( +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"whW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/airalarm/directional/east, +/turf/open/openspace, +/area/service/hydroponics) +"wid" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wif" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/processing) +"win" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/cryo) +"wis" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"wiy" = ( +/obj/machinery/door/firedoor/heavy, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research, +/obj/effect/mapping_helpers/airlock/access/any/science/xenobio, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"wiN" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft) +"wiR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wiS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"wiT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"wjd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/aft) +"wjH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"wjJ" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/west) +"wjL" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/structure/table/wood, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"wjM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"wjX" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/department/electrical/two) +"wkc" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"wkx" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wkA" = ( +/turf/open/openspace, +/area/commons/vacant_room/commissary) +"wkR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wkS" = ( +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/exit/departure_lounge/cryo) +"wlf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"wlg" = ( +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"wlp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"wlq" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"wlI" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wlP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wlS" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"wmc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wmh" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"wmi" = ( +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"wmw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"wmQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wmR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"wmS" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wng" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"wno" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/machinery/light_switch{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room) +"wnp" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"wnx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/tacmap/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"wnA" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"wnL" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/wrench, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"wnU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"wnV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"wnY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"woi" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"wov" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/carpet/peaks, +/area/commons/fitness/kachalka) +"woz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"woB" = ( +/obj/structure/sign/picture_frame/portrait{ + pixel_y = 25 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"woD" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"woH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"wpc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/hallway/primary/port/gate) +"wpe" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/turf/open/floor/plasteel, +/area/science/mixing) +"wpr" = ( +/turf/open/floor/plating, +/area/hallway/secondary/service) +"wps" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints/east) +"wpO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"wpX" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle/empty{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/hallway/secondary/service) +"wqa" = ( +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"wqh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"wqx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/lab) +"wqA" = ( +/obj/structure/sign/departments/cargo{ + pixel_x = -32 + }, +/obj/structure/ladder, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"wqH" = ( +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"wqP" = ( +/obj/structure/cable, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"wqU" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"wqV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wqY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"wqZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/item/storage/photo_album/bar{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/camera, +/obj/structure/disposalpipe/trunk/multiz, +/turf/open/floor/wood, +/area/service/bar) +"wrd" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/storage/tech) +"wre" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wri" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/stool{ + dir = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wrj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"wrp" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"wrr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wrv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"wrC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"wrE" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/openspace, +/area/space/nearstation) +"wrF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"wrL" = ( +/turf/closed/wall, +/area/commons/dorms/six) +"wrP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"wsa" = ( +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"wsg" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wsl" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/north) +"wsy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wsE" = ( +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"wsM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/department/electrical) +"wsN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor/white, +/area/science/mixing) +"wsQ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"wsV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"wsZ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"wte" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"wth" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"wtj" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"wts" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/obj/item/multitool{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/folder/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"wtw" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"wtA" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"wtB" = ( +/turf/closed/wall, +/area/maintenance/department/medical/morgue) +"wtJ" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"wtL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/space/nearstation) +"wtO" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/machinery/power/port_gen/pacman/super, +/turf/open/floor/plating, +/area/maintenance/department/electrical/two) +"wul" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wuD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"wuI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wuJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"wuQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wuR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wuZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/holosign_creator/atmos{ + pixel_x = -1; + pixel_y = -14 + }, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"wvc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wve" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wvf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/nanite_cloud_controller, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"wvh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/engineering/atmospherics_engine) +"wvq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"wvu" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"wvH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/vault) +"wvJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/misc_lab) +"wvT" = ( +/obj/machinery/computer/department_orders/engineering{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"wwf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "stationawaygate"; + name = "Gateway Access Shutters" + }, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"wwq" = ( +/turf/open/openspace, +/area/maintenance/port/aft) +"www" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"wwy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"wwB" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/rack, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"wwD" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wwQ" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "Xenobio Pen 5 Blast Door" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 5"; + req_access_txt = "55" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"wwY" = ( +/obj/item/hfr_box/corner, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"wxe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"wxf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wxL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"wxN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"wxZ" = ( +/obj/machinery/deepfryer, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"wya" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wyo" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics South"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"wys" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/nanite) +"wyu" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port) +"wyv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"wyA" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"wyD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wyH" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"wyK" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/white, +/area/science/research) +"wyP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/folder/blue{ + layer = 3.01; + pixel_x = 3 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/side, +/area/maintenance/department/electrical) +"wyU" = ( +/turf/closed/wall, +/area/service/bar) +"wyV" = ( +/turf/closed/wall, +/area/security/prison) +"wzl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"wzx" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wzI" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"wzL" = ( +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"wzS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/box/corners, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/space/nearstation) +"wzX" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/mixing) +"wAg" = ( +/obj/machinery/door/airlock/security{ + name = "Permanent Cell 3" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"wAl" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"wAq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"wAs" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"wAC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"wAS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wBd" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/space/openspace, +/area/space/nearstation) +"wBr" = ( +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"wBu" = ( +/obj/item/bedsheet/blue, +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"wBx" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"wBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wBS" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel{ + amount = 10 + }, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/meson, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engineering/manufactory) +"wCg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"wCi" = ( +/obj/structure/table/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/fax, +/obj/item/paper/monitorkey{ + pixel_y = -13 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"wCt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wCz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"wCB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wCF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library/upper) +"wCG" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"wCH" = ( +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints) +"wCW" = ( +/turf/closed/wall, +/area/engineering/atmos) +"wDd" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wDg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"wDk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"wDr" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics Internal Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"wDx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"wDC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"wDE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"wDU" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"wDX" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/blood_filter{ + pixel_x = 5 + }, +/obj/item/clothing/neck/stethoscope{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"wEb" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"wEe" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/science/research) +"wEl" = ( +/obj/machinery/light/floor{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/tcommsat/server/upper) +"wEm" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door" + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"wEn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wEu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"wEO" = ( +/obj/structure/bed/prison/bed, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/maintenance/bottom_station_maints/north) +"wFs" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"wFt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wFu" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/am_containment, +/obj/item/am_containment, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"wFG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"wFI" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"wFK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"wFO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"wFQ" = ( +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Containment Blast Doors"; + pixel_x = -26; + pixel_y = 26; + req_access_txt = "55" + }, +/obj/effect/turf_decal/trimline/purple/filled/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wGc" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"wGd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"wGh" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"wGk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/marker_beacon/green, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wGy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"wGA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/second_engy) +"wGR" = ( +/turf/closed/wall, +/area/commons/vacant_room/office) +"wHb" = ( +/turf/open/space/openspace, +/area/maintenance/starboard/aft) +"wHg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"wHi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wHk" = ( +/obj/item/hfr_box/body/fuel_input, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"wHm" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"wHq" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"wHs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wHt" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1 + }, +/turf/open/floor/carpet/purple, +/area/science/breakroom) +"wHE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"wHU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"wHV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wId" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"wIg" = ( +/obj/structure/table, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"wIr" = ( +/turf/closed/wall/r_wall, +/area/commons/locker) +"wIB" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/south) +"wIG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"wIV" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/maintenance/aft) +"wIZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"wJb" = ( +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"wJe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wJs" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics/garden) +"wJA" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"wJD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/abandoned) +"wJW" = ( +/obj/item/chair/wood, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"wKk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"wKw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wKE" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"wKO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/autoname, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"wKU" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/hallway/primary/port/to_arrival) +"wKX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wLh" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"wLr" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"wLs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"wLt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/break_room) +"wLI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"wMd" = ( +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/machinery/button/door{ + desc = "A remote control-switch for the engineering security doors."; + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_x = -24; + pixel_y = -6; + req_access_txt = "10" + }, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"wMD" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wMI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/south) +"wMO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wMR" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/obj/item/multitool{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/robotics/lab) +"wNw" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints/north) +"wNC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"wND" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/effect/turf_decal/siding/thinplating, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"wNJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/gateway) +"wNL" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/engineering/atmospherics_engine) +"wNS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/research/glass{ + name = "Test Chamber"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "testlab"; + name = "test chamber blast door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"wNW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"wOb" = ( +/obj/item/assembly/mousetrap, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wOo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wOr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/sorting) +"wOu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wOE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light, +/turf/open/floor/grass, +/area/security/prison) +"wOF" = ( +/obj/structure/closet/crate, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningdock) +"wOI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"wOO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/north) +"wOR" = ( +/obj/structure/light_construct{ + dir = 8 + }, +/mob/living/simple_animal/hostile/retaliate/goose/vomit, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"wOX" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 Outlet Pump" + }, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"wOY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"wPi" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + layer = 3.03; + pixel_x = 4 + }, +/obj/item/folder/white{ + layer = 3.04; + pixel_y = 3 + }, +/obj/item/pen/red{ + layer = 3.05; + pixel_x = -3 + }, +/obj/item/paper{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/paper{ + layer = 3.01; + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/paper{ + layer = 3.02; + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"wPl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/turf/open/floor/wood, +/area/service/library/artgallery) +"wPu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wPw" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"wPF" = ( +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/xenobiology) +"wPO" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wPP" = ( +/obj/structure/table, +/obj/item/clothing/glasses/meson, +/obj/item/storage/bag/ore, +/obj/item/pickaxe, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wPW" = ( +/obj/machinery/status_display/evac, +/turf/closed/wall, +/area/medical/abandoned) +"wQs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/checkpoint/escape) +"wQy" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/east) +"wQA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"wQD" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"wQF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness) +"wQR" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wQS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/low_level_eva) +"wQW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"wQX" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering Secure Storage"; + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"wRa" = ( +/obj/structure/chair{ + dir = 4; + name = "Prosecution" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wRh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/spacepod_docks) +"wRm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"wRo" = ( +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/research/explosive_compressor, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"wRx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/chapel) +"wRC" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"wRL" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"wRN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wSa" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"wSd" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom{ + dir = 4; + pixel_x = 27 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"wSe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"wSh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "Xenobio Pen 3 Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/science/xenobiology) +"wSj" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"wSx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"wSN" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wSQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"wTc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"wTh" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wTr" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"wTA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"wTD" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"wTN" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"wTR" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wUb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"wUd" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/small/red/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wUi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/computer/security/telescreen/prison{ + network = list("perma_brig"); + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"wUs" = ( +/turf/open/genturf, +/area/maintenance/bottom_station_maints/north) +"wUB" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/item/stack/sheet/iron/five, +/obj/item/circuitboard/machine/paystand, +/obj/item/stack/cable_coil/five, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wUC" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 1 + }, +/turf/closed/wall, +/area/cargo/sorting) +"wUH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wVg" = ( +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/research) +"wVh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft/restroom) +"wVp" = ( +/obj/structure/chair/sofa/corp, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/exit) +"wVu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"wVC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"wVN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wVQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/smes/engineering, +/turf/open/floor/engine, +/area/engineering/second_engy) +"wVT" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"wVU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"wVV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"wVX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom{ + pixel_y = -29 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos) +"wWp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"wWz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wWD" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"wWG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"wWI" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/light_switch{ + pixel_y = 28 + }, +/obj/item/radio/off{ + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wWK" = ( +/turf/open/floor/plating, +/area/maintenance/starboard) +"wWN" = ( +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wWT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"wWU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"wXf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wXh" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer"; + req_access_txt = "2"; + security_level = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"wXl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"wXn" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/science/cytology) +"wXr" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/grounding_rod, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"wXt" = ( +/obj/effect/landmark/navigate_destination/eva, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"wXI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"wXK" = ( +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmospherics_engine) +"wXO" = ( +/obj/machinery/power/apc/auto_name/directional/north{ + cell_type = /obj/item/stock_parts/cell/high/plus + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"wXY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"wYb" = ( +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wYf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"wYg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"wYk" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"wYA" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/seven) +"wYC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/eva) +"wYD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"wYF" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"wZc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"wZy" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"wZB" = ( +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "rnd2"; + name = "бронеставни лаборатории взрывотехники"; + pixel_x = 9; + pixel_y = -25; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "Biohazard"; + name = "Карантин"; + pixel_x = -4; + pixel_y = -25; + req_access_txt = "47" + }, +/obj/machinery/button/door{ + id = "misclab"; + name = "Test Chamber Blast Doors"; + pixel_x = 9; + pixel_y = -38; + req_access_txt = "55" + }, +/obj/machinery/button/door{ + id = "xenobiomain"; + name = "Xenobiology Containment Blast Doors"; + pixel_x = -4; + pixel_y = -38; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"wZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xaa" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/structure/sign/clock/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"xac" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/elevator/directional/north{ + id = "sci_box" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"xad" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xae" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/gate) +"xan" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"xaK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmospherics_engine) +"xaQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xaZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"xbf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"xbl" = ( +/obj/structure/cable, +/obj/effect/landmark/navigate_destination/techstorage, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xbn" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"xbo" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes{ + pixel_y = 2 + }, +/obj/item/lighter/greyscale{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/primary/port/to_arrival) +"xbt" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"xbW" = ( +/obj/machinery/requests_console{ + department = "Crew Quarters"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Dormitory North" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xcq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xcz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xcA" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"xcG" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"xcJ" = ( +/obj/machinery/camera{ + c_tag = "Labor Shuttle Dock South"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"xcK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"xcM" = ( +/obj/machinery/camera{ + c_tag = "Fore Starboard Solars"; + dir = 1 + }, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/solars/starboard/fore) +"xdg" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Dorm 6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/six) +"xdh" = ( +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/openspace, +/area/space/nearstation) +"xdm" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external{ + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"xdq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = -25 + }, +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"xds" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"xdP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Mix to Space" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xdU" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/cargo/miningoffice/meteor) +"xdZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"xef" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"xev" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xew" = ( +/turf/closed/wall, +/area/science/xenobiology) +"xeF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xeS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xfg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/commons/fitness) +"xfh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "commissaryshutter"; + name = "Commissary Shutter Control"; + pixel_x = 26; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"xfn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/hallway/primary/aft/exploration) +"xfo" = ( +/obj/machinery/computer/turbine_computer{ + dir = 1; + id = "incineratorturbine" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"xfO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"xfV" = ( +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/engine, +/area/maintenance/bottom_station_maints) +"xgh" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"xgq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/science) +"xgJ" = ( +/turf/closed/wall, +/area/maintenance/fore/secondary) +"xgX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/storage/tech) +"xgY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/closed/wall, +/area/commons/fitness) +"xgZ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/starboard/fore) +"xha" = ( +/obj/machinery/telecomms/bus/preset_two, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xhl" = ( +/obj/effect/landmark/navigate_destination/dockaux, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry/public) +"xho" = ( +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xhr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/rack, +/turf/open/openspace, +/area/maintenance/port) +"xhv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/science/xenobiology) +"xhz" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"xhD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/computer/security/telescreen/engine{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"xhH" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"xhN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating, +/area/maintenance/aft) +"xhQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"xhU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/brown/tom, +/turf/open/floor/plasteel, +/area/security/prison) +"xhW" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints/east) +"xia" = ( +/obj/machinery/light/directional/north, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/openspace, +/area/maintenance/port) +"xih" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/engine/cult, +/area/service/library/upper) +"xij" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"xit" = ( +/obj/structure/chair/stool{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"xiD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/displaycase/winner/engineer, +/turf/open/floor/plasteel, +/area/engineering/main) +"xiW" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel/monofloor, +/area/service/hydroponics) +"xiZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/primary/aft/restroom) +"xjp" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"xjG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security/upper) +"xjN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xkq" = ( +/obj/structure/closet/crate, +/obj/item/stack/ore/gold{ + amount = 10 + }, +/obj/item/stack/ore/silver{ + amount = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xkw" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"xkW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"xlc" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xle" = ( +/obj/structure/chair/sofa{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"xlg" = ( +/obj/machinery/light/directional/north, +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/maintenance/port/aft) +"xlh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"xlx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"xly" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -28 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"xlz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"xlC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"xlN" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/science/xenobiology) +"xlO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"xmK" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"xmO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/light, +/area/service/kitchen) +"xmV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"xmY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side, +/area/hallway/secondary/entry/south) +"xmZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/genetics) +"xnm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry/public) +"xnp" = ( +/obj/structure/table, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xnr" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"xnC" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom2"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"xnN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Research Director Observation"; + req_access_txt = "30" + }, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"xnR" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xnS" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"xoc" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"xoi" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"xos" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library/upper) +"xou" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"xow" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xoC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmospherics_engine) +"xoO" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"xoU" = ( +/obj/structure/table/glass, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/grapes, +/obj/item/food/grown/cocoapod, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/service/hydroponics/garden"; + dir = 2; + name = "Garden APC"; + pixel_x = -25; + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"xpa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xph" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/courtroom) +"xpj" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/checkpoint/escape) +"xpk" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"xpn" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Access"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"xpp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"xpE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"xpH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot_red, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"xpN" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xpX" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens - Starboard Aft"; + dir = 8; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xpY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xqd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"xqo" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"xqr" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/solars/starboard/aft"; + dir = 8; + name = "Starboard Quarter Solar APC"; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/solars/starboard/aft) +"xqw" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Incinerator"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"xqJ" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"xqL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"xqT" = ( +/obj/machinery/atmospherics/components/binary/circulator/flipped{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/atmospherics_engine) +"xrb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"xrc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"xrm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/rust, +/area/maintenance/space_hut/plasmaman) +"xru" = ( +/obj/structure/cable, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xrx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xry" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/maintenance/fore) +"xrA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"xrB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xrD" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 8; + pixel_x = 27 + }, +/obj/item/trash/plate, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xrJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/maintenance/department/electrical/two) +"xrX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"xsa" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permainner"; + name = "Permabrig Transfer"; + security_level = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison) +"xso" = ( +/obj/machinery/camera{ + c_tag = "Research Division West" + }, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"xsq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"xsQ" = ( +/obj/machinery/vending/chetverochka, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xsY" = ( +/obj/effect/spawner/random/trash/box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xtf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xtm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut) +"xtu" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/hydroponics) +"xtM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xtV" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"xub" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"xuj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"xuu" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + name = "NT SS13: escape pod #1 loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"xuw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/status_display/evac{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xuD" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/bar) +"xuK" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xuN" = ( +/obj/structure/table, +/obj/item/swab, +/obj/item/hand_labeler_refill{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"xuQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"xuR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"xuS" = ( +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xuV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"xvp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/xenobiology) +"xvv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xvG" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"xvL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/storage/eva) +"xvQ" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"xvR" = ( +/obj/machinery/camera{ + c_tag = "Toxins Lab East"; + dir = 8; + network = list("ss13","rd"); + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/red/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"xwh" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary/second) +"xwp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/maintenance/disposal) +"xws" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/manufactory) +"xwB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"xwE" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/lawoffice) +"xwG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xwM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/science/mixing) +"xwN" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints/south) +"xwZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"xxn" = ( +/obj/effect/turf_decal/pool{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"xxw" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"xxz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"xxS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/warehouse) +"xxU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/obj/item/target, +/obj/effect/turf_decal/box/red, +/turf/open/space/openspace, +/area/space/nearstation) +"xxY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/robotics/lab) +"xyk" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage_shared) +"xyn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/nanite_programmer, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"xyy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/genetics) +"xyz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xyF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 4 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"xyI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xyM" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xzj" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + sortType = 16 + }, +/turf/open/openspace, +/area/hallway/secondary/exit/departure_lounge) +"xzu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xzy" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"xzA" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"xzI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"xAg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/tcommsat/computer) +"xAk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/manufactory) +"xAy" = ( +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xAz" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/defibrillator_mount/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"xAG" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xAI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xAM" = ( +/obj/structure/grille, +/obj/structure/window{ + dir = 4 + }, +/obj/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"xAN" = ( +/obj/structure/cable/multilayer/multiz, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/maintenance/port) +"xBd" = ( +/obj/structure/table, +/obj/item/bonesetter, +/obj/item/retractor, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"xBf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/court{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/courtroom) +"xBj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xBp" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom3"; + name = "Unit 3" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"xBr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"xBN" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/commons/dorms/cabin/two) +"xBQ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xBW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"xBY" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"xCa" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/storage) +"xCc" = ( +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/machinery/button/door{ + id = "stationawaygate"; + name = "Gateway Access Shutter Control"; + pixel_x = -1; + pixel_y = -24; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xCq" = ( +/obj/structure/tank_holder/oxygen/yellow, +/turf/open/floor/plating, +/area/maintenance/port) +"xCx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Biohazard"; + name = "карантин" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"xCG" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"xCH" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/medical_all, +/obj/item/storage/box/chemmaster, +/obj/item/storage/box/chemheater, +/obj/item/storage/box/chemdisp, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xCI" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"xCJ" = ( +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"xCP" = ( +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/lab) +"xCW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/hallway/primary/aft/restroom) +"xDi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"xDk" = ( +/turf/closed/wall/r_wall, +/area/science/research/abandoned) +"xDl" = ( +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/obj/structure/table/wood, +/obj/item/toy/crayon/red{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/toy/crayon/orange{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/toy/crayon/green{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/toy/crayon/blue{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/toy/crayon/purple{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/toy/crayon/yellow{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/toy/crayon/white{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/toy/crayon/black{ + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/artgallery) +"xDG" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/department/electrical/two) +"xDH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/commons/storage/primary) +"xDR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/storage_shared) +"xDW" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/low_level_service) +"xDX" = ( +/obj/machinery/door/airlock/atmos{ + name = "Turbine Access"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/landmark/navigate_destination/incinerator, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"xEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xEe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xEy" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/hallway/secondary/entry) +"xEz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/miningoffice/meteor) +"xEH" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xEI" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"xEM" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research/abandoned) +"xFc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"xFm" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/hallway/primary/port/vault) +"xFn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xFr" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"xFs" = ( +/obj/structure/table, +/obj/item/storage/box, +/obj/item/storage/box, +/obj/structure/plaque/static_plaque/atmos{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"xFt" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/vault) +"xFv" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port/to_arrival) +"xFx" = ( +/obj/effect/landmark/navigate_destination/minisat_access_ai, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"xFC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/brig_enter) +"xFG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/item/storage/secure/safe{ + pixel_x = -23 + }, +/obj/structure/rack, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"xFK" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/office) +"xFV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/locker) +"xGo" = ( +/obj/machinery/light_switch{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"xGs" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xGu" = ( +/turf/closed/wall/r_wall, +/area/service/library) +"xGx" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"xGz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/security/processing) +"xGA" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/space/nearstation) +"xGF" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"xGJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"xGL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"xHb" = ( +/obj/structure/table, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 3 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/watertank, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xHd" = ( +/obj/structure/table, +/obj/item/flashlight/lamp{ + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xHe" = ( +/obj/structure/lattice, +/obj/effect/spawner/random/maintenance, +/turf/open/openspace, +/area/maintenance/port/aft) +"xHo" = ( +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xHV" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Monitoring" + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos) +"xIl" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"xIv" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"xIw" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"xIy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xIU" = ( +/obj/item/paper/crumpled, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space/nearstation) +"xJc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/closed/wall, +/area/commons/fitness) +"xJd" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xJf" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"xJi" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Dorm 5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/commons/dorms/five) +"xJp" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"xJy" = ( +/obj/structure/table, +/obj/item/storage/box/disks_nanite{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"xJB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/execution/transfer) +"xJD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"xJJ" = ( +/obj/machinery/camera/autoname, +/obj/machinery/mecha_part_fabricator, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/robotics) +"xJK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner, +/area/service/theater) +"xJN" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xJT" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"xJV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"xJW" = ( +/obj/structure/rack, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"xJZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"xKi" = ( +/obj/structure/lattice, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/openspace, +/area/hallway/secondary/entry) +"xKs" = ( +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"xKu" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xKE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xKL" = ( +/obj/effect/landmark/stationroom/maintenance/rdm10x10, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"xKW" = ( +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/machinery/button/elevator/directional/south{ + id = "sci_box" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"xLe" = ( +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"xLg" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x5, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xLk" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Air Supply Maintenance"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xLn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xLu" = ( +/obj/machinery/light_switch{ + pixel_x = -23 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"xLy" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xLT" = ( +/obj/machinery/camera/autoname{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/circuitboard/machine/thermomachine{ + pixel_y = 6 + }, +/obj/item/circuitboard/machine/thermomachine{ + pixel_x = -3 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/stack/cable_coil{ + pixel_x = -3; + pixel_y = 14 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmospherics_engine) +"xMl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"xMq" = ( +/obj/structure/sign/departments/holy{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/rnd) +"xMy" = ( +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"xMA" = ( +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen 8"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xME" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xMJ" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/mixing) +"xML" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xMN" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xMP" = ( +/obj/item/latexballon, +/obj/item/clothing/gloves/color/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/shoes/sneakers/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/open/floor/plating, +/area/maintenance/port) +"xMR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"xMX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/carpet/donk, +/area/commons/dorms/five) +"xNm" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xNq" = ( +/obj/effect/landmark/navigate_destination/chapel, +/turf/open/floor/carpet, +/area/service/chapel/main) +"xNs" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xNE" = ( +/obj/structure/table, +/obj/machinery/oven{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"xNH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"xNR" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/royalblue, +/area/commons/dorms/three) +"xNU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xOc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xOj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/white/side, +/area/hallway/primary/aft/exploration) +"xOl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge/shop) +"xOz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"xOD" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xPi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"xPl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/research) +"xPm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"xPy" = ( +/obj/machinery/camera{ + c_tag = "Service Hallway East"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"xPM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock{ + name = "Bar Service Hall"; + req_one_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"xPP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/pink/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xQe" = ( +/obj/machinery/button/door{ + id = "xenobio3"; + layer = 3.3; + name = "Xenobio Pen 3 Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"xQg" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/item/paper{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/paper{ + layer = 3.01; + pixel_x = -1; + pixel_y = -3 + }, +/obj/item/paper{ + layer = 3.02; + pixel_x = 4 + }, +/obj/item/binoculars{ + layer = 3.03 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"xQh" = ( +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"xQj" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/port/to_arrival) +"xQl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"xQq" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xQv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xQE" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera/autoname, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xQO" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xQX" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"xRf" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xRg" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"xRi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"xRy" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"xRD" = ( +/obj/structure/closet/crate, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/miningdock) +"xRJ" = ( +/turf/closed/wall, +/area/maintenance/bottom_station_maints) +"xRX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xSc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/commons/fitness) +"xSn" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/stripes/white/line, +/obj/effect/turf_decal/trimline/brown/filled/corner{ + dir = 1 + }, +/obj/vehicle/ridden/forklift/service{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/white/line, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"xSs" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"xSB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"xSL" = ( +/obj/machinery/computer/exoscanner_control{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wideplating/dark/end, +/obj/item/radio/intercom{ + pixel_y = -35 + }, +/turf/open/floor/plating, +/area/cargo/qm/perch) +"xSY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xTB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xTI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xTK" = ( +/obj/machinery/defibrillator_mount/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/stasis, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"xTR" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/maintenance/port/aft) +"xTU" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"xTX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/medbay) +"xUb" = ( +/obj/machinery/camera{ + c_tag = "Dormitory Toilets"; + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet) +"xUw" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/theater) +"xUD" = ( +/obj/item/beacon, +/obj/effect/landmark/navigate_destination/dockesc, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"xUF" = ( +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"xUL" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard/botan) +"xUP" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"xUU" = ( +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"xVo" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/engine, +/area/science/misc_lab) +"xVy" = ( +/turf/open/genturf, +/area/maintenance/bottom_station_maints/west) +"xVC" = ( +/obj/machinery/door/firedoor, +/turf/open/genturf, +/area/maintenance/bottom_station_maints/south) +"xVP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/entry) +"xVS" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"xVW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"xWa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port/to_arrival) +"xWc" = ( +/turf/closed/wall/r_wall, +/area/command/gateway) +"xWh" = ( +/obj/structure/railing/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"xWr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary/second) +"xWD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/monofloor, +/area/commons/dorms) +"xWF" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway"; + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore/to_brig) +"xWH" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_access_txt = "71" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd2"; + name = "бронешторы лаборатории взрывотехники" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"xWO" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"xWW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/power/mining_rack, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/misc_lab) +"xXf" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"xXk" = ( +/obj/item/radio/off, +/turf/open/floor/plasteel/monofloor, +/area/security/prison) +"xXo" = ( +/obj/item/seeds/apple, +/obj/item/seeds/banana, +/obj/item/seeds/cocoapod, +/obj/item/seeds/grape, +/obj/item/seeds/orange, +/obj/item/seeds/sugarcane, +/obj/item/seeds/wheat, +/obj/item/seeds/watermelon, +/obj/structure/table/glass, +/obj/item/seeds/tower, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden) +"xXu" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"xXy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"xXA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xXF" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/misc_lab) +"xXL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xXY" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/entry/public) +"xYb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xYe" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"xYj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/chapel/main) +"xYk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics) +"xYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore/secondary) +"xYu" = ( +/obj/machinery/door/window/eastright{ + name = "Robotics Surgery"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"xYx" = ( +/obj/structure/table, +/obj/item/clothing/mask/surgical, +/turf/open/floor/engine, +/area/science/xenobiology) +"xYB" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel, +/area/maintenance/fore/secondary) +"xYC" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"xYE" = ( +/obj/effect/spawner/random/trash/caution_sign, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"xYM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xYR" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xYV" = ( +/obj/item/stack/sheet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xYY" = ( +/turf/closed/wall, +/area/security/prison/safe) +"xYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"xZa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"xZb" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical) +"xZd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"xZq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos) +"xZt" = ( +/obj/machinery/computer/piratepad_control/civilian{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/office) +"xZw" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"xZN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"xZV" = ( +/turf/open/floor/plasteel, +/area/cargo/office) +"xZY" = ( +/obj/item/trash/sosjerky, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"yao" = ( +/turf/open/floor/engine, +/area/maintenance/department/electrical) +"yaX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ybf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"ybh" = ( +/obj/effect/landmark/navigate_destination/bridge, +/turf/open/openspace, +/area/space) +"ybi" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"ybq" = ( +/turf/open/floor/carpet, +/area/service/library) +"ybx" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/space/openspace, +/area/space/nearstation) +"ybA" = ( +/turf/closed/wall/r_wall, +/area/maintenance/bottom_station_maints) +"ybD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ybJ" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/department/electrical/two) +"ycv" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"ycw" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/solars/port/aft) +"ycx" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"ycz" = ( +/obj/structure/sign/departments/medbay/alt, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/abandoned) +"ycE" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/science/xenobiology) +"ycJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/closet/l3closet/scientist, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ycK" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"ycS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"ydp" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/ai_monitored/turret_protected/aisat_interior) +"ydz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port/gate) +"ydB" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/bottom_station_maints) +"ydH" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_prep) +"ydK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"ydL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/checkpoint/auxiliary) +"ydZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"yea" = ( +/obj/machinery/door/window/brigdoor{ + name = "Research Director Observation"; + req_access_txt = "30" + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/border_only, +/turf/open/floor/plasteel/cafeteria, +/area/command/heads_quarters/rd) +"yer" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel, +/area/engineering/main) +"yeu" = ( +/obj/machinery/chem_mass_spec, +/obj/effect/turf_decal/trimline/yellow/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/abandoned) +"yeG" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"yfc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"yfo" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"yfC" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"yfK" = ( +/obj/structure/cable, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"yfQ" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/cargo/office) +"yfR" = ( +/turf/open/floor/plasteel/dark/side, +/area/maintenance/department/electrical) +"ygc" = ( +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ygl" = ( +/obj/structure/table, +/obj/item/scalpel{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ygq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/structure/sign/calendar/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"ygr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"ygC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/science/test_area) +"ygH" = ( +/obj/structure/table/wood, +/obj/machinery/fax, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood, +/area/service/library/upper) +"ygI" = ( +/turf/open/genturf, +/area/maintenance/bottom_station_maints) +"ygJ" = ( +/obj/structure/ladder, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/cargo/meeting_room) +"ygW" = ( +/obj/effect/turf_decal/siding/white{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry/south_hall) +"yhs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear/red, +/obj/effect/turf_decal/stripes/red/line, +/obj/effect/turf_decal/stripes/red/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/escape) +"yht" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/starboard/medbay) +"yhO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library/artgallery) +"yhR" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"yhS" = ( +/obj/machinery/light_switch/directional/north, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"yhY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"yif" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/junglebush/large{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/genetics) +"yij" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"yik" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"yip" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Art" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/carpet, +/area/service/library/artgallery) +"yiw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints) +"yiJ" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/clothing/under/rank/rnd/scientist, +/obj/item/clothing/under/rank/centcom/intern, +/obj/item/clothing/under/rank/civilian/hydroponics/skirt, +/obj/item/clothing/under/rank/civilian/curator, +/obj/item/clothing/under/rank/civilian/cookjorts, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/commons/locker) +"yiO" = ( +/obj/item/radio/intercom{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "Prison Intercom (General)"; + pixel_y = 24; + prison_radio = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"yiX" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/aquarium, +/obj/structure/sign/calendar/directional/north, +/turf/open/floor/wood, +/area/commons/fitness/recreation) +"yji" = ( +/obj/machinery/atmospherics/pipe/multiz/scrubbers/visible/layer2{ + color = "#ff0000"; + name = "Scrubbers multi deck pipe adapter" + }, +/obj/machinery/atmospherics/pipe/multiz/supply/visible/layer4, +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/south) +"yjp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/window/southright{ + dir = 8; + name = "Bar Door"; + req_one_access_txt = "25;28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"yjr" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"yju" = ( +/obj/machinery/button/door{ + id = "ceprivacy"; + name = "Privacy Shutters Control"; + pixel_y = 26 + }, +/obj/machinery/holopad, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"yjv" = ( +/turf/open/floor/plating, +/area/maintenance/bottom_station_maints/east) +"yjz" = ( +/turf/open/space/basic, +/area/space) +"yjN" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/fitness/kachalka) +"yjS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft/restroom) +"yjT" = ( +/turf/open/floor/plasteel, +/area/cargo/miningoffice/meteor) +"yjX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible/layer1, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"yjZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore/brig_enter) +"ykb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel/dark, +/area/engineering/second_engy) +"ykl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ykn" = ( +/turf/open/floor/engine, +/area/commons/spacepod_docks) +"yko" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"yks" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/storage) +"yku" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"ykG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmospherics_engine) +"ykI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/science/lab) +"ykL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"yla" = ( +/obj/structure/rack, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ylc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + dir = 8; + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"yld" = ( +/obj/machinery/light/small{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/kitchen) +"ylf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + dir = 4; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ylo" = ( +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/cytology) +"ylw" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/ai_monitored/turret_protected/ai) +"ylz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/engine_smes) +"ylC" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"ylQ" = ( +/obj/structure/transit_tube/station/dispenser/reverse, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) + +(1,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(2,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(3,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(4,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(5,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(6,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(7,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(8,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(9,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(10,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(11,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(12,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(13,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(14,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(15,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(16,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(17,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(18,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(19,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(20,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(21,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(22,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(23,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(24,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(25,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(26,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(27,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(28,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(29,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +xXu +xXu +yhR +yhR +yhR +xXu +xXu +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(30,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bUo +yjz +yjz +yhR +xXu +ctv +ctv +xXu +xXu +xXu +ctv +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(31,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +xXu +yhR +yhR +yhR +xXu +xXu +xXu +yhR +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(32,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ctv +xXu +yjz +yjz +yjz +peq +yjz +yjz +yjz +xXu +ctv +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(33,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(34,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(35,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +xXu +xXu +yjz +xXu +xXu +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +xXu +xXu +yjz +xXu +xXu +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(36,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +yhR +yhR +yhR +sAl +xXu +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +sAl +yhR +yhR +yhR +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(37,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +hdd +awW +awW +hdd +qhY +hdd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +hdd +hdd +hdd +awW +awW +hdd +hdd +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(38,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +sXW +pLY +lJC +uNa +bmA +pNC +yjz +yjz +yjz +yjz +yjz +yjz +yjz +tfT +cwc +cIh +jpp +aRY +akz +hdd +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(39,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +hdd +cxY +xnS +awW +awW +awW +yjz +yjz +yjz +yjz +yjz +yjz +yjz +awW +awW +awW +xVP +ljU +hdd +hdd +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(40,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +hdd +rXH +hLc +nhN +hdd +cDl +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cDl +hdd +uQT +xqd +tJQ +hdd +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(41,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +awW +fZc +fTf +cAG +hdd +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hdd +xEy +gll +brD +awW +yhR +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(42,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +awW +bPj +rSE +shj +hdd +hFC +yjz +yjz +yjz +yjz +yjz +yjz +yjz +awx +hdd +pVv +nWL +dDW +awW +yhR +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(43,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +awx +hdd +gmb +uVG +dti +hdd +cDl +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cDl +hdd +lIi +uUw +uCZ +hdd +hFC +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(44,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +hdd +cyb +uVG +awW +awW +awW +yjz +yjz +yjz +yjz +yjz +yjz +yjz +awW +awW +awW +xVP +vSA +hdd +hdd +yhR +yik +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(45,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +sXW +axh +jyz +uNa +bmA +pNC +yjz +yjz +yjz +yjz +yjz +yjz +yjz +uCL +jIl +jly +gcR +aeW +hBv +hdd +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(46,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +hdd +hdd +axI +rLP +hdd +qhY +hdd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +hdd +hdd +hdd +xCJ +qSG +hdd +hdd +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(47,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yik +yhR +awW +aLu +clB +dGP +vsm +yhR +yhR +yjz +yjz +yjz +cIg +yjz +yjz +yjz +yhR +yhR +awW +fvQ +aRZ +awW +yhR +yhR +yik +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(48,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bUo +yik +yhR +awW +rPT +clB +aIK +vsm +vsm +vsm +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +awW +wHm +jeq +awW +yhR +xXu +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +aQL +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(49,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +hdd +cls +clB +dGP +wHm +wHm +vsm +vsm +vsm +yhR +yhR +awx +vsm +vsm +awW +vsm +vsm +aBn +aRZ +hdd +yhR +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cCE +uZh +cCE +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(50,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bxL +yhR +xXu +hdd +hdd +axb +ayr +azD +dGP +dGP +aCp +vsm +awW +awW +awW +vsm +uJO +aNb +mPY +wHm +wHm +agU +hdd +yhR +yjz +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +cCE +uqS +cCE +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(51,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hPr +yhR +xXu +yhR +hdd +hdd +hdd +jdr +vNa +dGP +wHm +kcP +wHm +wHm +wHm +aKj +aLw +wHm +fvQ +fvQ +vfn +aRZ +hdd +yhR +yjz +yjz +yjz +xXu +xXu +yjz +cCE +cCE +cCE +cCE +beO +lsH +cCE +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(52,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hPr +yhR +xXu +yhR +yhR +esT +hdd +hdd +fpE +hBD +aCL +aEG +vfn +aHA +vfn +aKk +vfn +aNd +aRZ +aRZ +aQJ +hdd +hdd +yhR +yjz +yjz +yjz +yjz +xXu +xXu +bcl +beQ +pLn +lfU +xoc +bgk +cCE +yhR +yhR +yhR +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(53,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +lho +rIz +lho +lho +lho +lho +yhR +yhR +hdd +hdd +hdd +clB +aEE +myy +aHA +myy +gWg +aLj +hdd +hdd +hdd +hdd +hdd +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +cCE +udQ +bkB +beO +reO +beO +reO +reO +yjz +yjz +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(54,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +lho +lTH +dKJ +iXp +guB +lho +lho +yhR +yhR +yjz +hdd +awW +hdd +vyA +aHA +aIT +hdd +awW +hdd +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +cCE +fKc +bkB +vgc +bhJ +eRx +bHg +reO +xXu +xXu +xXu +xXu +yhR +yjz +yhR +yjz +yjz +yjz +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(55,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +lho +lho +lho +wFO +auX +avS +axf +yhR +uYB +yjz +yjz +yjz +iFH +bxM +oJJ +pdk +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +cCE +uLJ +bkB +bkB +boV +caj +mtO +reO +yjz +yjz +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(56,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +axf +xtm +auZ +bsU +axf +yhR +yhR +yjz +yjz +yjz +ntU +gyq +oJJ +awM +ntU +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +cCE +blV +bgk +mux +boV +cAF +ehL +cCE +xXu +pvF +ePo +pvF +ePo +pvF +ePo +pvF +ePo +pvF +yhR +yhR +yhR +xXu +xXu +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(57,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +lho +gEy +lho +lho +lho +xXu +yhR +yjz +yjz +yjz +iFH +aFL +oJJ +pdk +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +cCE +cCE +cCE +eMv +bje +dVU +cCE +cCE +pvF +rIS +pmQ +pmQ +pmQ +bHh +liF +liF +gpU +pvF +xXu +xXu +xXu +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(58,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +cCL +cCL +cCL +yjz +yjz +yhR +yhR +yhR +yjz +yjz +iFH +qcN +oJJ +pdk +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +cCE +bjf +cCE +nHY +beO +qzq +kKA +kKA +kKA +kKA +bHi +kKA +kKA +bwz +pvF +xXu +xXu +xXu +xXu +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(59,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +ntU +gyq +oJJ +pdk +ntU +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +pvF +sRI +tFw +mVp +miQ +lXU +tiJ +wyu +tiJ +nVb +bHi +tiJ +hyk +tiJ +pvF +pvF +pvF +pvF +pvF +yjz +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(60,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +ntU +pVk +oJJ +pdk +ntU +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yhR +xXu +xXu +pvF +pvF +pvF +vDK +oYZ +eTe +jWu +aAy +sbL +eTe +eTe +aAy +oYZ +dAG +kYg +aAy +sbL +mVp +pvF +yjz +yjz +yjz +xXu +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(61,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +eXc +eXc +bCS +eXc +bCS +yhR +yhR +yhR +yjz +yjz +ntU +gyq +oJJ +pdk +ntU +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +yjz +yjz +yhR +pvF +hbz +xAM +tiJ +kKA +tiJ +kKA +kKA +kKA +kKA +tiJ +tiJ +miQ +miQ +miQ +qks +pvF +wLr +yhR +yhR +yhR +xXu +xXu +yhR +yhR +yhR +yhR +xXu +xXu +xXu +yhR +yhR +xXu +xXu +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(62,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +alR +alR +anI +alR +alR +yjz +yjz +yjz +yjz +yjz +bCS +bOi +eXc +bOi +eXc +yjz +yjz +yhR +yhR +yhR +iFH +gyq +oJJ +aIS +iFH +yhR +yhR +yhR +yhR +aQL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +xXu +yjz +yjz +yjz +yhR +pvF +fDW +khc +aez +kfI +njt +njt +kfI +kfI +kfI +aez +wck +qPZ +bCq +kli +lnL +gUO +wLr +yjz +yjz +yjz +fDK +fDK +glX +glX +glX +glX +fDK +fDK +fDK +glX +glX +vJu +vJu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(63,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +alR +alQ +amy +anh +alR +yjz +yjz +yjz +yjz +yjz +eXc +eXc +bNb +yhR +eXc +yjz +yjz +yhR +yjz +yjz +iFH +gyq +oJJ +gsO +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yjz +yjz +yjz +yhR +pvF +pYH +whD +eWy +lfG +kKA +tiJ +tiJ +tiJ +wUd +eWy +nzA +odc +bCq +lhK +lnL +oZX +wLr +yjz +yjz +fDK +fDK +uEL +mUk +jTn +uKN +vBY +vBY +fKP +mwh +hgb +mwh +haQ +vJu +xXu +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(64,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +bUo +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +anI +auO +amA +anh +anI +yhR +yjz +yjz +yjz +yjz +bCS +xIU +bOi +eXc +bOi +yjz +yjz +yhR +yjz +yjz +ntU +gyq +oJJ +pdk +ntU +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +pvF +qiq +tjc +iDT +aLE +oWu +oWu +iaV +lVU +xvv +iDT +aLE +ipu +oiN +lnL +bwk +cry +oiN +yjz +yjz +glX +obI +mUk +fbp +fbp +fbp +vBY +vOu +nmf +nmf +nmf +nmf +rwf +vJu +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(65,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wJA +alS +amz +anh +alR +yhR +yjz +yjz +yjz +yjz +bCS +eXc +bOi +bCS +eXc +yhR +yhR +yhR +yhR +yhR +iFH +gyq +oJJ +pdk +iFH +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +xXu +yjz +yhR +yjz +yjz +yjz +yjz +yhR +pvF +kKA +pYH +tiJ +ioW +tiJ +kKA +tKK +kKA +pYH +bwz +odc +kKA +bCq +sIn +nSs +cry +oiN +yjz +yjz +glX +nBx +mUk +fbp +fbp +fbp +vBY +nWa +nmf +uyM +oTo +nmf +sRM +jLV +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(66,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +alR +alR +anI +alR +alR +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +iFH +iFH +eIl +oJJ +vet +iFH +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +xXu +xXu +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +pvF +uuf +kAX +gci +qgK +qgY +njt +kfI +njt +kAX +aez +ovw +hNN +bCq +nyM +lnL +cry +wLr +yhR +yhR +vJu +rhR +vBY +fbp +fbp +fbp +vBY +vUv +nmf +kGL +bWp +gvf +mUX +jLV +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(67,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +iFH +aQK +vhR +oJJ +vhR +iAt +iFH +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +pvF +pYH +whD +eWy +nig +kKA +kKA +kKA +kKA +wUd +eWy +nrO +odc +wLr +wLr +wLr +wLr +wLr +yjz +yjz +fDK +smr +inZ +lhE +hhP +hhP +bVx +ioD +kjO +cjp +jnB +aKi +eJA +hiJ +yhR +yjz +yjz +yjz +yhR +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(68,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +wpc +vhR +oJJ +vhR +swM +iFH +rvu +rvu +rvu +rvu +rvu +rvu +yhR +xXu +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +pvF +enu +lVU +wTh +lVU +lVU +lVU +lVU +lVU +lVU +wTh +lVU +eaM +pvF +yjz +yjz +yjz +yhR +yjz +yjz +fDK +mBs +vBY +eTB +seK +seK +ggu +kIy +nmf +nmf +nmf +luu +jIT +jLV +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(69,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +qvP +qvP +qvP +qvP +qvP +qvP +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +lMC +aNu +lMC +mMG +ycK +pFS +pDr +gZi +xWc +tVX +sIY +uLx +sIY +tVX +tVX +xYR +xYR +xYR +xYR +kWY +rvu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yhR +yhR +yhR +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +pvF +yjz +yjz +yjz +yhR +yjz +yjz +fDK +pSi +mUk +eTB +seK +mUk +gPJ +oKn +ajc +iuX +nmf +smQ +fDb +hiJ +yhR +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(70,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +anH +wlg +iBR +iBR +iBR +wlg +qvP +aDq +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +lMC +nbI +nKo +fMm +ntP +aBZ +fvA +apg +jxT +ydz +umG +oJJ +uAi +tAc +tVX +xYR +xYR +xYR +xYR +xYR +rvu +yhR +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yhR +yhR +yhR +yhR +yjz +yhR +yhR +yhR +wLr +wLr +wLr +wLr +wLr +fDK +jsb +mUk +eTB +seK +eqD +hfR +mUk +mUk +pKP +nmf +gAS +oVK +jLV +xXu +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(71,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +qvP +qvP +wlg +qvP +qvP +qvP +aCl +qvP +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +lMC +nKo +oeY +bjI +bVa +aau +mDQ +xCc +xWc +xZd +tls +oJJ +xae +tAc +tVX +xYR +xYR +xYR +xYR +xYR +rvu +yhR +xXu +xXu +yjz +yjz +yjz +yhR +yjz +yjz +vpb +wbV +wbV +vRi +xxS +vRi +xxS +vRi +xxS +vRi +xxS +veC +veC +veC +veC +veC +veC +wLr +wLr +vfd +oxm +vfd +vfd +okI +inW +inW +eTB +seK +mUk +qZK +bVE +mUk +bWx +nmf +iAD +eJA +jLV +wIB +wIB +yhR +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(72,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +qvP +aqx +arg +qvP +kYB +wlg +iBR +iBR +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +lMC +fMm +nKo +nbI +xRf +aVb +wEb +gvI +wgY +xZd +qsj +oJJ +xae +tAc +tVX +bCS +bCS +aPD +bCS +bCS +rvu +aIP +yhR +vpb +vpb +vpb +vpb +vpb +vpb +vpb +vpb +xVy +xVy +tQV +eZO +dPG +lPm +bql +bTG +btr +mkC +vlB +gZd +eDk +uMy +xSL +vlB +bzs +vfd +vfd +oxm +cIV +pdR +rTX +rTX +klz +eTB +kIy +rZL +vST +lWr +vBY +oOx +nmf +dje +eJA +ulk +qlW +wIB +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(73,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +qvP +qvP +qvP +qvP +qvP +iBR +iBR +hdj +aCY +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xWc +lMC +xAG +lMC +lMC +blj +hZW +lMC +gvI +wwf +fIM +ixQ +jti +eDv +tAc +tVX +frc +frc +frc +frc +frc +aTB +aTx +juH +aXt +eHG +eHG +eHG +eHG +hYT +eHG +pQE +sgT +xVy +tQV +lPm +lPm +lPm +tQV +iaB +cVt +xuN +vlB +vlB +phP +tod +tdh +vlB +ioY +cIV +vfd +oxm +vfd +pdR +lnL +wLr +wLr +fDK +fDK +fDK +fDK +fDK +fDK +jLV +nmf +vkd +bWA +nmf +qlW +wIB +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(74,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +mSz +alU +wlg +avV +qvP +ayB +kjo +xrm +aDo +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xWc +xWc +xWc +xWc +xWc +xWc +xWc +lMC +lMX +xWc +tVX +tVX +ylf +tVX +tVX +tVX +lcy +bCS +wIr +wIr +wIr +wIr +wIr +wIr +wIr +aPA +aPA +eHG +xVy +pFK +hWr +bew +aYw +bvZ +gSc +mNk +wlS +wlS +sSZ +wlS +wlS +wlS +iEy +vlB +eoZ +dci +dgB +vlB +sPD +vfd +vfd +nPK +vfd +voi +vfd +pYX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jLV +cbj +gAS +dVs +nmf +qlW +wIB +wIB +wIB +yhR +xXu +cfw +bmM +cyK +cfw +cfw +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(75,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +mSz +wlg +wlg +avW +qvP +qvP +dnP +qvP +qvP +qvP +yhR +yhR +yhR +yhR +yhR +cCL +yhR +cCL +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +wNJ +lMC +xuS +xWc +xYR +xYR +frc +avZ +bCS +xYR +xpa +mLV +aPA +aQU +ncK +khO +obO +hoe +hoe +aKA +aPA +eHG +xVy +pFK +ePZ +wjJ +xVy +xVy +tQV +bkn +cFs +cFs +nvz +cFs +cFs +nzO +uGH +vlB +ejy +pzD +tdh +vlB +gEB +nPK +lnL +oxm +oxm +mfT +ckg +wLr +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jLV +jLV +bXv +bXx +nmf +qlW +uRn +roy +wIB +yjz +yhR +cfw +cgA +cKd +ciQ +cfw +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(76,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +qvP +qvP +qvP +bDl +oMB +oMB +oMB +aCy +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +wNJ +xJT +vID +xWc +qjT +xYR +frc +xpa +ylf +xpa +xpa +xYR +aPA +aQX +aYX +aYX +aYX +aYX +izD +bbs +aPA +eHG +xVy +pFK +rmP +wjJ +xVy +xVy +tQV +pca +uTP +sBs +tqt +qIY +tqt +fFo +uGH +vlB +hWU +kpr +bkG +vlB +wYb +lnL +kcJ +cIV +vfd +pdR +vfd +wLr +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +hwS +bYt +nmf +ycx +tjY +pYD +ugb +yjz +xXu +cyK +cgC +nJo +ciS +cyK +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(77,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +qvP +qvP +avX +azr +aAq +qvP +qvP +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +cCL +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +aBa +xWc +xWc +xWc +xWc +aBa +aBR +xIy +aBR +aBa +xYR +xpa +xYR +aPA +aQW +vGy +wfV +wfV +wfV +wfV +oQK +aPA +eHG +xVy +pFK +xVy +wjJ +xVy +xVy +tQV +goW +tqt +qIY +uqv +qIY +tyQ +vvO +eWY +vlB +vlB +cat +bkJ +nph +nph +nph +tUU +tUU +tUU +fXS +nNX +wLr +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jLV +jLV +nog +bYt +nmf +nmf +ycx +xef +ugb +yjz +yhR +cfw +jtl +jtl +jtl +cfw +yhR +wIB +wIB +wIB +wIB +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(78,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +qvP +qvP +qvP +qvP +qvP +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +sZI +eRX +eRX +wWT +eRX +eRX +nqo +unA +aBa +bCS +lcy +bCS +aPA +aPG +mRq +wfV +wfV +wfV +wfV +fgN +aPA +eHG +xVy +pFK +byc +wjJ +xVy +xVy +tQV +mlr +uqv +qIY +tqt +jYA +uqv +vvO +uKI +gkW +nph +dRz +krF +cTk +bwg +nph +ofZ +pzm +mjb +qTI +sRm +pYX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bVB +bWy +stm +bYt +eEw +nmf +ycx +xef +ugb +yhR +yhR +cfw +cfw +cyK +cfw +cfw +yhR +wIB +xQh +xQh +wIB +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(79,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +lxI +ggV +ggV +ggV +ggV +ggV +aHG +aJe +aBa +wjJ +bvZ +wjJ +aPA +aQY +aSk +wfV +wfV +wfV +wfV +oQK +aPA +eHG +xVy +pFK +byd +wjJ +wjJ +xVy +tQV +wND +tqt +qIY +oKL +qIY +tqt +vvO +uKI +nKu +nph +qHQ +bAS +ydH +ugv +nph +dMU +iFl +fCj +mPj +pnM +pYX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +bVB +oIh +stm +lWA +bZj +nmf +ycx +xef +wIB +nMb +yhR +yhR +yhR +yhR +yhR +yhR +yhR +wIB +xQh +wcD +wIB +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(80,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +lxI +aBa +aGd +aGd +aGd +aBa +aHG +tAe +aBa +wjJ +bvZ +bvZ +aPH +aRa +aSk +wfV +wfV +wfV +wfV +pDq +aPA +eHG +xVy +pFK +pFK +ioQ +ioQ +pFK +tQV +bSe +uqv +qIY +tqt +qIY +uqv +vvO +lwB +nph +nph +qBd +fql +oDz +eVm +fCZ +fCZ +fCZ +fCZ +sza +fCZ +tHd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jLV +jLV +tOn +oeG +nmf +nmf +ycx +xef +wIB +sPn +wIB +wIB +ugb +ugb +ugb +wIB +wIB +wIB +xQh +ycx +wIB +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(81,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +wTN +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +lxI +aGd +yjz +yhR +yjz +aGd +aHG +aJd +aBa +wjJ +xVy +bvZ +aPA +aQZ +mRq +wfV +wfV +wfV +wfV +blY +aPA +eHG +xVy +pFK +wjJ +wjJ +wjJ +dju +tQV +klc +tqt +qIY +tqt +qIY +tqt +vvO +lwn +nph +fja +bwS +okm +oGv +nOm +fCZ +tWE +hvO +bJb +nUw +ybi +tHd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +hwS +bYt +nmf +jSP +ycx +xef +wIB +cgF +wIB +xef +xQh +xQh +xQh +xQh +pYD +xwN +oaV +ycx +ugb +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(82,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +jEs +aGd +yhR +alu +yhR +aGd +aHG +aJe +aKw +wjJ +xVy +bvZ +aPA +nPM +vGy +wfV +wfV +wfV +wfV +oQK +aPA +eHG +xVy +pFK +wjJ +wjJ +wjJ +wjJ +tQV +hvV +ojI +rYm +kUB +mbA +uqv +vvO +wlS +pVw +eNq +uyZ +uSR +uSR +iTW +olI +dUO +dUO +dUO +bKk +bKk +ljE +tgH +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +stm +bYt +nmf +ssq +ycx +xef +wIB +sPn +wIB +xef +xef +xQh +xQh +xQh +xef +dCG +xQh +ycx +wIB +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(83,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +lxI +aGd +yjz +yhR +yjz +aGd +aHG +aJd +aBa +wjJ +xVy +bvZ +aPA +bfe +xxn +oyn +xxn +xxn +xxn +bvY +ioQ +eHG +xVy +ioQ +wjJ +wjJ +wjJ +wjJ +nHG +pdC +eBN +gEa +bkp +bkp +eBN +miS +wlS +nph +qRg +eYf +leB +iRK +skX +fCZ +mve +bKj +oUb +bKj +nDN +tHd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +hwS +qZd +nmf +nrw +ycx +ycx +cdb +ycx +mLj +ycx +ycx +ycx +ycx +ycx +ycx +ycx +ycx +ycx +wIB +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(84,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +xXu +aBa +opM +aBa +aGd +aGd +aGd +aBa +aHG +aJe +aBa +wjJ +xVy +bvZ +aPA +aPK +aEs +mQA +aEs +aEs +ljY +bcS +aPA +eHG +xVy +pFK +wjJ +wjJ +wjJ +wjJ +tQV +cxt +tQV +tQV +tQV +tQV +tQV +tQV +tQV +nph +nph +bwU +nph +bkJ +bkJ +tHd +tHd +bKm +bKm +bKm +tHd +tHd +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +stm +bYt +aai +aai +aai +aai +aai +aai +aai +aai +ycx +xQh +xQh +xQh +xQh +xQh +xQh +xQh +wIB +wIB +wIB +wIB +wIB +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(85,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +wTN +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +cCL +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +lxI +ggV +ggV +ggV +ggV +ggV +aHG +aJe +aBa +wjJ +xVy +bvZ +aPA +aPA +aPA +aPA +aPA +aPA +ioQ +aPA +aPA +eHG +xVy +pFK +wjJ +wjJ +wjJ +wjJ +pFK +bmf +bvZ +bvZ +bvZ +bvZ +bvZ +bvZ +bvZ +bxy +eLM +bwT +qfT +bxy +uEB +vpb +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +jLV +fHJ +nwY +aai +isr +ppV +ryJ +eGT +uDL +oYt +aai +ycx +xQh +xQh +vAU +xQh +xQh +xQh +xQh +xVC +xQh +xQh +xQh +wIB +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(86,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aBa +onX +vua +vua +pjj +vua +vua +vXq +qDH +aBa +wjJ +wjJ +bvZ +qVy +bvZ +bvZ +hfV +bvZ +bvZ +bvZ +bvZ +bvZ +bvZ +xVy +pFK +pFK +ioQ +ioQ +pFK +pFK +kWm +pFK +nGm +nGm +nGm +nGm +nGm +nGm +nGm +daA +bwW +uxp +fqV +bDk +vpb +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +stm +tRk +pHh +aai +njm +wXn +hrQ +jMh +pii +aai +vMA +xwN +xwN +xwN +xwN +xwN +xwN +xwN +xwN +xwN +xwN +xQh +ugb +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(87,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wsl +vDJ +wsl +xXu +aBa +aBa +aBa +aBa +aBa +aBa +aBR +fiZ +aBR +aBa +vpb +vpb +pFK +pFK +xVy +xVy +xVy +xVy +xVy +xVy +xVy +xVy +bvZ +wjJ +wjJ +wjJ +wjJ +wjJ +aTJ +wjJ +wjJ +wjJ +nGm +jXH +vAD +bjv +btv +buc +nGm +daA +nit +hPw +fqV +jfp +byE +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +jsA +qaT +nWU +aai +dFC +wXn +tle +wXn +oyF +aai +deP +xwN +xef +xef +cqH +xwN +xef +xef +xef +vvs +xwN +xQh +ugb +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(88,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wsl +wUs +wsl +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +gmM +xXu +xXu +yjz +yjz +xXu +vpb +xVy +xVy +xVy +ejE +ejE +ejE +ejE +ejE +cWA +ejE +ejE +xVy +xVy +xVy +xVy +xVy +xVy +xVy +nGm +bGi +jMP +dZy +nEm +bek +byG +bIg +nit +uxp +byG +jfp +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +hiJ +stm +hcv +xfn +wiy +dPO +byr +byr +wVC +jSJ +aai +ycx +xwN +xef +xef +xef +xwN +xef +xef +xef +xef +xwN +xQh +ugb +yhR +yhR +yhR +xXu +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(89,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +gvd +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +wsl +wsl +wsl +wUs +wsl +wsl +wsl +wsl +wsl +wsl +wsl +wsl +wsl +dAV +wsl +wsl +wsl +wsl +yjz +vpb +xVy +xVy +xVy +ejE +lQs +bvC +myZ +qoQ +ssp +rOJ +ejE +xVy +xVy +xVy +xVy +xVy +xVy +xVy +nGm +pSI +uFw +uTL +uQl +bud +kNb +bIs +nit +uxp +byG +jfp +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +hiJ +stm +xOj +oef +aai +oqm +wXn +byr +wXn +tjb +aai +ycx +nqz +xef +xef +xef +xVC +xef +xef +xef +xef +ciU +xQh +ugb +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yhR +xXu +yhR +yhR +yjz +yhR +xXu +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(90,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +xIl +cvJ +cvJ +cvJ +xIl +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +wsl +wUs +vKX +vKX +vKX +vKX +vKX +vKX +vKX +wOO +wOO +wOO +wOO +wOO +vKX +wUs +wUs +vDJ +yjz +vpb +xVy +xVy +xVy +ejE +awr +jky +xxz +xxz +oBA +jsN +ejE +xVy +xVy +xVy +xVy +xVy +xVy +xVy +nGm +bGi +bNK +uTL +nEm +bek +byG +daA +bwY +uxp +byG +jfp +yjz +yjz +yjz +yjz +yjz +yhR +wIB +wIB +ugb +ugb +wIB +wIB +ugb +ugb +wIB +wIB +gba +tyz +cuT +aai +eZl +mvh +byr +wXn +uMS +aai +ycx +xwN +xef +xef +xef +xwN +xef +xef +xef +xef +xwN +xef +ugb +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(91,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +xXu +xXu +yhR +yhR +yhR +yhR +cvJ +tyK +dgt +jqP +xIl +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +vDJ +wUs +rms +vKX +wNw +wUs +wUs +wUs +wUs +wOO +sGD +uYN +sGD +sGD +sGD +wUs +wUs +vDJ +yjz +vpb +xVy +xVy +xVy +ejE +ezk +fxn +cEH +wuI +glc +egU +ejE +xVy +xVy +xVy +xVy +xVy +xVy +xVy +nGm +vVh +nEm +ygJ +nEm +izT +nGm +daA +byI +uxp +byG +jfp +yjz +yjz +yjz +yjz +yjz +yhR +wIB +xef +xef +xef +jda +jda +jda +jda +uEv +xwN +hwS +nIi +aai +izK +ylo +wXn +tle +wXn +ycJ +aai +ycx +xwN +xef +xef +xef +xwN +xef +xef +xef +xef +xwN +cjO +wIB +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(92,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +xXu +xXu +xXu +gvd +yjz +yjz +yjz +yhR +cvJ +kiE +dMI +qaq +xIl +xIl +yjz +yhR +yhR +xXu +xXu +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yhR +yhR +vDJ +wUs +wUs +wUs +wNw +wUs +wNw +wUs +wUs +wOO +sGD +jfz +kNE +eAP +sGD +wUs +wUs +vDJ +xXu +vpb +vpb +xVy +xVy +ejE +wUB +rjt +hdu +vKb +wqV +uVB +ejE +xVy +xVy +xVy +xVy +xVy +xVy +xVy +nGm +pvE +uDe +buI +pbg +uDR +nGm +ccR +byK +byT +fqV +jfp +yhR +yjz +yjz +yjz +yjz +yhR +ugb +xef +oGc +hrX +dtx +dtx +lBF +dtx +oEO +xwN +nog +gTk +oEz +oMx +ide +wXn +tle +wXn +gVM +aai +cdb +xwN +xwN +xwN +xwN +xwN +xwN +wIB +wIB +wIB +wIB +wIB +wIB +xXu +xXu +xXu +xXu +xXu +yhR +xXu +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(93,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +xIl +aLz +aLz +aLz +xIl +xIl +mVh +dWd +dWd +gYT +xIl +cvJ +xIl +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +vDJ +wUs +wUs +wUs +wNw +wUs +wUs +wUs +wUs +wOO +sGD +efG +lFD +qqg +sGD +wUs +wUs +vDJ +yjz +yhR +vpb +vpb +wbV +iMv +iMv +iMv +iMv +iMv +hXV +iMv +iMv +vpb +vpb +vpb +wbV +wbV +wbV +vpb +fqV +fqV +fqV +uah +fqV +fqV +fqV +fqV +fqV +fqV +fqV +jfp +yhR +yjz +yjz +yjz +yjz +xXu +ugb +xef +ycx +ycx +ycx +dIE +lBF +dtx +aFS +htc +uhY +pqI +oEz +fLR +vOj +vOj +dyt +vOj +kXT +kID +wTD +bSp +xef +dCG +xef +xQh +xQh +wIB +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(94,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +xIl +qbE +xJB +wgh +jVi +uOu +hQL +xfO +oSE +xfO +knE +ozO +xIl +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +wsl +wUs +wUs +wUs +wUs +wUs +wUs +wsl +wsl +dbl +sGD +sGD +sGD +aHL +sGD +sGD +sGD +sGD +sGD +yhR +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +byG +buI +byG +yhR +yjz +yjz +yhR +yjz +yjz +jfp +xXu +yjz +yjz +yjz +yjz +yhR +wIB +xef +xef +xef +xef +xef +xef +acz +fBu +xwN +hwS +gTk +aai +qid +qyO +iaY +gbj +qVr +ceu +aai +mjl +xwN +xwN +xwN +xef +xQh +xQh +wIB +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(95,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +yhR +xIl +jfe +bgV +gKW +jVi +cvZ +hQL +nrZ +dWd +dWd +jZc +oDZ +xIl +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +wsl +wsl +wsl +wsl +wsl +wsl +wsl +wsl +gIX +wOO +wUs +sGD +hGL +iGX +ouP +cke +lYV +qOU +sGD +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +jfp +xXu +yhR +yhR +yhR +yhR +awx +wIB +xwN +xwN +xwN +ugb +ugb +ugb +ugb +xwN +xwN +bBJ +wZc +aai +aai +aai +aai +aai +aai +aai +aai +pIS +xQh +xQh +xwN +cCW +xQh +xQh +wIB +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(96,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yhR +yhR +wWU +xIl +aOo +bod +bLe +kKV +hyU +lIp +gCc +plY +dWd +kqK +oHH +xIl +yhR +yhR +cCL +yhR +yhR +cCL +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +xXu +yhR +xXu +yhR +xXu +yjz +vDJ +gIX +wUs +wOO +wUs +sGD +jhv +qOq +dnF +dnF +dnF +fnW +eBz +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +jfp +jfp +jfp +jfp +jfp +jfp +jfp +tNm +vJA +grb +xCW +uBp +uBp +uBp +bUx +bVI +iFU +iNw +hKQ +bSp +xef +xef +bSp +xef +xQh +xQh +xQh +pIS +xQh +xQh +xwN +xef +xQh +xQh +ugb +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(97,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +hwm +hwm +dYr +hwm +hwm +hwm +xIl +xIl +xIl +xIl +xIl +eAe +jMA +xIl +xIl +xIl +nhf +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +xXu +yhR +xXu +xXu +yhR +xXu +yhR +xXu +yjz +vDJ +gIX +wUs +wOO +wUs +sGD +aGg +nGR +cUE +cUE +cUE +xvL +vDd +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +wIB +wIB +bNI +nWq +iej +oBt +oBt +aWQ +xiZ +bWB +oBt +bYz +gWd +cbl +cbl +xwN +xef +ycx +ycx +ycx +cbx +cSU +nWT +xwN +xef +wIB +wIB +wIB +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(98,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +xXu +yhR +hwm +nPE +kEj +kEj +tve +hwm +cTn +wca +pdz +cTn +xIl +pxa +dWd +shu +yhR +yhR +yhR +yjz +yhR +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +xXu +yhR +xXu +yhR +vDJ +wUs +vKX +wOO +wUs +sGD +eAL +wYC +dnF +dnF +dnF +fHr +kfX +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +wVh +nWq +bJC +gWd +gWd +grb +gWd +gWd +gWd +gWd +gWd +xwN +xwN +xwN +xef +ycx +xQh +xwN +xwN +xwN +cdv +xwN +bSp +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(99,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +hwm +umX +hnW +cwx +uSi +hwm +bMq +hxt +hxt +dHX +xIl +wUi +wWp +shu +yhR +xXu +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +xXu +yhR +yhR +wsl +vDJ +vDJ +vDJ +wsl +wsl +wsl +wNw +wOO +wOO +wUs +sGD +kip +mSL +aJj +pLV +dnF +fHr +pfP +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +wVh +nWq +bJC +gWd +pYD +mRH +cdZ +cdZ +cdZ +bYA +cdZ +cdZ +cdZ +cdZ +cdZ +cdZ +bZB +xef +xef +xef +laH +cSU +nWT +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(100,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +hwm +qdm +ehh +ehh +aOq +bpJ +jmS +jmS +jmS +jmS +gyT +bcE +dWd +shu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +fIb +xXu +xXu +xXu +xXu +wsl +wsl +wyA +esC +lpW +wNw +wUs +wUs +wNw +dbl +wNw +wNw +sGD +sGD +sGD +sGD +sGD +raB +fHr +gMj +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +wVh +nWq +rNN +gWd +yji +rZx +xwN +xQh +xQh +xwN +xQh +xQh +xQh +xQh +xQh +xQh +bZB +xQh +xQh +xQh +xQh +xQh +rZR +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(101,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +hwm +aro +ukM +fIE +bkj +hwm +guS +hxt +fZW +aIR +xIl +pWO +duA +shu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +yjz +xXu +yjz +vDJ +pUr +jBV +jBV +vKX +hvj +vKX +vKX +aDz +eVy +oBH +wUs +wUs +vpq +veV +uHB +sGD +eyt +hBJ +oRD +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +wVh +nWq +ljG +gWd +xef +caC +xwN +xQh +xQh +xwN +xwN +xwN +xwN +xwN +xwN +xwN +hyZ +xwN +xwN +xwN +xwN +xwN +sVD +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(102,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +xXu +vcA +hwm +hwm +hwm +pzM +dSR +hwm +hwm +oGl +pMr +uRH +xIl +xIl +xIl +xIl +fdu +fdu +fdu +uRH +fdu +fdu +fdu +uRH +qSy +yjz +xXu +yhR +yjz +xXu +yjz +vDJ +pUr +jBV +wUs +wUs +wNw +wUs +wUs +aDC +wLh +aCg +wUs +wUs +vpq +eAk +nNM +vbD +wvq +wXt +pFf +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +vOh +bEU +bEU +ltX +ltX +ltX +ltX +bNI +bNI +bNI +bNI +fNb +cce +gWd +jhJ +dBs +xVC +xQh +xQh +xQh +xQh +xQh +xQh +xwN +cjO +xQh +bZB +xwN +xef +xef +cqH +xwN +rZR +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(103,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yhR +yhR +hwm +nZE +ift +brJ +hwm +oGl +fZW +rCO +gHG +exN +uRH +qyX +sXk +fkd +sXk +llD +sXk +sXk +vXE +uRH +uRH +yhR +xXu +yhR +yjz +xXu +yjz +vDJ +pUr +jBV +wUs +wNw +wNw +vKX +vKX +aDC +jBV +jBV +wUs +wUs +vpq +aGl +wIG +sGD +oYR +gwf +mqO +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +bEU +waL +axi +vrt +qeT +sDF +ltX +bLx +uHR +bNJ +bRl +dWl +bLC +grb +kZn +wIB +wIB +wIB +wIB +ugb +ugb +ugb +wIB +wIB +wIB +wIB +bZB +xwN +xef +xef +xef +xwN +rZR +wIB +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(104,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +cTH +gSH +ift +mtl +hwm +lhA +fZW +fZW +gKT +kzb +oQS +qLT +kfl +kfl +kfl +uED +wtj +wtj +eGq +bpi +fdu +yjz +xXu +xXu +xXu +xXu +xXu +wsl +wNw +pRr +wNw +wNw +wUs +aCb +wNw +aGo +wNw +wNw +wNw +wNw +vpq +wQS +tzR +sGD +sGD +sGD +sGD +sGD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +bEU +uAt +xgX +sHC +vnp +bHJ +lcH +bLz +yjS +yjS +fLu +ter +bJC +gWd +bNI +wIB +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +wIB +bZB +ciU +xef +xef +xef +ciU +rZR +ugb +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(105,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +cTH +gSH +xjG +brJ +hwm +oGl +hxt +etC +gPK +exN +uRH +jFj +aHu +aHu +sXG +ack +ePi +aHu +aHu +xsQ +fdu +yhR +yhR +xXu +yhR +yjz +yhR +wsl +wUs +vKX +vKX +vKX +vKX +vKX +wNw +uWQ +wOO +wOO +wOO +wOO +gOk +oPy +ecm +wbt +wbt +wbt +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +ltX +bDw +wrd +bGv +gab +bJj +ltX +bLy +fkr +cCe +pEX +qhG +bJD +kmf +bNI +yhR +yhR +cci +cci +cZW +cZW +cZW +cci +cci +yhR +wIB +bZB +xwN +xef +xef +xef +xwN +rZR +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(106,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +cTH +gSH +xjG +mtl +hwm +geg +hpU +uRH +uRH +uRH +uRH +qQe +tdH +urf +wVV +tFD +tKF +lUR +wvc +lJq +fdu +yjz +yjz +xXu +yhR +yjz +yhR +wsl +wUs +vKX +wUs +wNw +wNw +wNw +wNw +rRQ +dro +wNw +hvj +wNw +vpq +ipb +kwu +kwu +kwu +kwu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +bEU +bDz +bTz +oUv +bSB +vKw +ltX +hlO +eJZ +cCd +bQc +qhG +aPP +nxv +bNI +yhR +cci +cci +mcV +rNK +bXG +rNK +edn +cci +yjz +wIB +bZB +xwN +xef +xef +xef +xwN +ckG +wIB +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(107,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +hwm +gGU +jip +brJ +hwm +hxt +fqr +uRH +hhi +gVC +uRH +uRH +uRH +uIL +wXh +uRH +uRH +uRH +uRH +uRH +uRH +uRH +yhR +xXu +yhR +yhR +yhR +wsl +wUs +vKX +wUs +wNw +gIX +gIX +wNw +mAb +wNw +wNw +jBV +wUs +vpq +pHH +dHp +vGL +vGL +vGL +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +bEU +bDy +bFg +bGw +ksS +mCh +ltX +bLA +iNQ +cCd +bQc +qhG +aPP +bSv +wVh +yjz +cZW +rNK +rNK +bPQ +bQK +bYF +bTI +cci +yjz +wIB +bZB +xwN +xwN +xwN +xwN +xwN +rZR +wIB +wIB +wIB +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(108,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +xXu +yjz +xXu +yjz +hwm +aEF +hwm +hwm +hwm +tLJ +uRH +uRH +hTc +wOE +uRH +reJ +bHc +bHc +xlO +bHc +tIF +wyV +qqI +jSq +kLn +uRH +yjz +xXu +yhR +yjz +yhR +wsl +wNw +qGZ +wNw +wNw +wUs +wUs +wUs +rRQ +vKX +hvj +jBV +wUs +vpq +wea +bpD +azk +azk +azk +azk +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +adR +ltX +ltX +ltX +ltX +ltX +ltX +bHO +psa +fvI +hvk +qhG +aPP +cCc +wVh +yhR +cZW +fbm +bXG +cDC +sBm +bSt +bUc +cci +yhR +wIB +bZB +xwN +qud +cSU +qHI +cSU +cTb +cCY +xef +xef +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(109,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yjz +yhR +yjz +xXu +yjz +xXu +yjz +uRH +aFo +aPt +bvU +bPf +bYy +uRH +uhz +ibk +gLN +uRH +rlG +aHu +ePi +sXG +ack +vXi +wyV +xtM +xhU +trY +uRH +yhR +xXu +yhR +yhR +yhR +wsl +wUs +vKX +wUs +wNw +wUs +wUs +wUs +rRQ +wUs +wNw +wUs +wUs +vpq +oUU +feb +wNw +vKX +vKX +fqN +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +ept +ept +bGx +nMK +bNI +jPv +bHN +rNz +gmp +gmp +ndZ +aPP +cCb +wVh +yjz +cZW +rNK +rNK +mjt +cxi +mqz +qtR +cci +yjz +wIB +gwR +xwN +mxn +cCY +xwN +cCY +xwN +xwN +cfg +xef +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(110,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +cCL +yhR +xXu +yhR +xXu +yhR +uRH +aGb +aPv +bvX +bPx +bYB +uRH +oih +qdO +nIP +uRH +rAI +tfW +uOk +wVV +urf +mvB +wyV +qqI +tKy +mgw +uRH +yjz +xXu +yhR +yjz +yhR +wsl +wUs +vKX +wUs +wNw +wUs +wUs +wUs +rRQ +wUs +wNw +wUs +wUs +vpq +eKE +wbt +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +tbh +sFa +dIX +qgs +kEa +tZD +oBt +oBt +qxI +bJu +vtR +oBt +bSz +bNI +yhR +cci +cci +wEl +rNK +bXG +rNK +pvX +cci +yjz +wIB +bZB +xQh +rZR +xQh +xwN +xQh +ckK +xwN +xQh +xef +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(111,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yjz +xXu +yjz +xXu +yjz +uRH +aGe +aGe +uRH +bPz +bZl +uRH +dVy +hjj +kzs +wyV +wyV +wyV +wyV +xsa +leP +wyV +wyV +wyV +wyV +kQU +uRH +uRH +uRH +nhf +yhR +yhR +tRV +vKX +vKX +wUs +wNw +awj +rRQ +rRQ +rRQ +wUs +wNw +wUs +jBV +vpq +uAu +wbt +hvj +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +xRJ +pcB +xRJ +xRJ +bNI +oAx +oKg +gWd +gWd +gWd +bKU +gWd +tPz +bNI +yhR +yhR +cci +cci +cZW +cZW +cZW +cci +cci +yhR +wIB +bZB +bZB +nsn +xQh +xwN +xQh +ckK +xwN +xQh +xef +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(112,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yjz +wTN +yjz +xXu +yjz +uRH +aHu +aPz +bwp +aPz +ccI +uRH +eja +htY +kQg +oRa +rFU +trt +wyV +xwZ +bHc +bHc +cul +qMu +bHc +qGn +dyp +kGE +uRH +yhR +wsl +wsl +wsl +wUs +vKX +aVh +wNw +wUs +tQj +wUs +wUs +aVh +wNw +wNw +wNw +vpq +aGl +wbt +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +nlt +ybA +bNI +bNI +gWd +gWd +wDU +xRJ +xBQ +xRJ +ygI +ybA +ybA +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +wIB +izb +xQh +nsn +xQh +xwN +xQh +ckK +xwN +xQh +wHE +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(113,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +uRH +aIj +aPF +bwQ +bPA +cfI +uRH +ekG +hwl +lkd +lkd +lkd +lkd +vcm +qPa +sXG +sXG +sXG +sXG +sXG +sXG +sXG +ajj +uRH +yjz +wsl +wLh +wLh +oEV +wLh +oEV +pKX +pKX +tQj +asZ +tQj +tQj +asZ +tQj +tQj +vpq +aGl +wbt +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +wDU +ybA +yjz +ybA +wDU +wDU +bNP +xRJ +xBQ +xRJ +ygI +dqB +ybA +ybA +ybA +ybA +bSw +bSw +bSw +ybA +ybA +wIB +wIB +xQh +nvF +nsn +xQh +xwN +xQh +xQh +xwN +xQh +ycx +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(114,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +aSV +uRH +nDQ +aPI +bxu +bPB +cgE +uRH +eja +hxt +lwA +plZ +rKJ +tsw +wyV +xMR +urf +tfW +aXK +urf +cVV +urf +wVV +wuR +uRH +yjz +wsl +wLh +rHg +rHg +rHg +rHg +avk +tti +tti +tti +tti +tti +tti +tti +mAb +vpq +blP +wbt +wNw +wNw +qGZ +wNw +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +tPz +wDU +wDU +wDU +bSw +yjz +bSw +wDU +wDU +wDU +tPz +xBQ +xRJ +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +tmc +xwN +xQh +xQh +xQh +nsn +xef +xef +xef +xef +cCY +xef +ycx +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(115,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +uRH +aIr +aQQ +bzc +aPz +cjz +uRH +eow +hDb +lxk +xYY +xYY +xYY +xYY +vWu +nxx +xYY +xYY +xYY +xYY +wyV +uUQ +wyV +uRH +yhR +wsl +wLh +rHg +fyi +iUA +rHg +mdc +tti +wYA +pvU +dhC +naO +bfC +tti +aFe +tHA +dHp +nZd +wNw +vKX +vKX +fqN +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +wDU +ybA +yhR +ybA +wDU +wDU +wDU +xRJ +xBQ +xRJ +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +dqB +dqB +xwN +xQh +xQh +xwN +nsn +xQh +xQh +xQh +xQh +xwN +xQh +ycx +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(116,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +uRH +aIN +uRH +uRH +uRH +uRH +uRH +wyV +wyV +wyV +xYY +rOX +tsJ +xYY +yiO +wfD +xYY +tsJ +rOX +xYY +jOV +nly +dZF +uRH +yjz +vDJ +lSB +rHg +vAu +xMX +xJi +whK +awn +edu +guC +moY +uVl +cAo +tti +aFe +pQG +aoa +wbt +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +wDU +ybA +yjz +ybA +xRJ +xRJ +xRJ +xRJ +xBQ +xRJ +dqB +dqB +dqB +ygI +ygI +xRJ +xRJ +xRJ +mia +xRJ +xRJ +xwN +xwN +xwN +xwN +nsn +xQh +xwN +xwN +xwN +xwN +xwN +qER +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +ctv +xXu +yjz +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(117,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +wTN +yjz +yjz +yjz +cCL +yjz +xXu +yjz +uRH +aKa +aQT +bAM +bSY +cjG +cwe +esK +hFv +lEN +xYY +ald +rmU +vea +qzl +ajm +qct +rmU +ald +xYY +nzz +nly +iAA +uRH +yjz +vDJ +lSB +rHg +qJd +jms +rHg +fNT +tti +eig +vuz +isP +isP +otC +tti +nEw +aHV +mTR +mTR +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +xRJ +tPz +xRJ +ybA +yjz +ybA +wDU +wDU +bNP +xRJ +xBQ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xfV +gYK +hCj +rjk +cot +aTF +bIC +njk +xwN +nsn +xQh +xwN +xQh +xQh +xQh +gCN +ycx +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(118,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +xXu +yhR +cCL +yhR +yhR +yhR +wTN +yhR +xXu +yhR +uRH +aKl +aSl +bBF +bSY +crP +aHu +xXk +hJg +mjo +xYY +xYY +xYY +xYY +qzl +iPX +xYY +xYY +xYY +xYY +geS +sZU +dZF +uRH +yjz +wsl +wlf +rHg +rHg +rHg +rHg +hQK +tti +tti +tti +tti +tti +tti +tti +aFe +wbt +mTR +yjz +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +bNP +ybA +yjz +bSw +wDU +wDU +wDU +tPz +xBQ +xBQ +xBQ +xBQ +xBQ +xBQ +xBQ +cbp +pxL +ske +lIC +pxL +pxL +pxL +ske +pxL +saF +ccl +ycx +cio +ycx +ycx +ycx +ycx +ycx +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(119,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yjz +yjz +yjz +cCL +yjz +xXu +yjz +uRH +uRH +aSQ +bBF +bSY +crP +cAJ +ePi +hRv +mov +xYY +rOX +tsJ +xYY +qzl +oju +xYY +tsJ +rOX +xYY +geS +ulh +anz +uRH +yjz +wsl +wLh +wrL +ifl +khx +wrL +whK +rkf +tQO +mqq +aun +jEH +psY +rkf +aFe +wbt +mTR +yjz +wNw +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +wDU +bSw +yhR +ybA +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +ygI +ygI +ygI +bXM +xRJ +bWN +duE +kSY +ogJ +bAL +qFz +duE +eIZ +xwN +bTr +xwN +xwN +xQh +xQh +xQh +xQh +xef +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(120,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +uRH +aSQ +bDx +bWb +cth +aIr +aIr +ibj +mFY +xYY +ald +rmU +vwU +qzl +ajm +wAg +rmU +ald +xYY +wyV +bAu +wyV +uRH +yhR +wsl +wLh +wrL +sfR +nwx +xdg +whK +amZ +cJJ +ayV +rHj +jfN +aCd +rkf +aFe +wbt +mTR +mTR +vpq +wNw +qGZ +wNw +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +wDU +wDU +wDU +ybA +yjz +ybA +xRJ +xRJ +xRJ +xRJ +xRJ +mMd +glS +bXP +bXP +bXP +bXP +bXP +fof +duE +uCb +kZE +msH +uCb +duE +eDW +xRJ +oHT +ygI +xwN +xwN +xwN +xwN +xwN +xwN +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(121,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +uRH +aTH +bBF +bSY +cuc +cBm +eQR +ieE +mPl +xYY +xYY +xYY +xYY +wmc +ajj +xYY +xYY +xYY +xYY +ulB +dFB +nsK +uRH +yjz +wsl +wLh +wrL +sOv +qyT +wrL +whK +rkf +uat +dhG +aAb +aAb +aix +rkf +ikm +wbt +wbt +iqa +vpq +vKX +vKX +fqN +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +xRJ +tPz +xRJ +ybA +ybA +ybA +nQr +wDU +wDU +wGh +xRJ +ygI +bVQ +bXP +bOY +bRA +bWQ +bXP +sGB +duE +lhU +rBo +eah +fIY +duE +lSy +xRJ +oHT +ygI +xRJ +ygI +ygI +ygI +ygI +ygI +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(122,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +uRH +aSQ +bDY +bSY +cud +cBz +eRn +ixk +mVj +xYY +rOX +tsJ +xYY +sXI +eTg +xYY +tsJ +rOX +xYY +cvV +kUZ +ckl +uRH +yjz +wsl +wLh +wrL +wrL +wrL +wrL +aAX +rkf +rkf +rkf +rkf +rkf +rkf +rkf +aFe +dHp +dHp +dax +vpq +vKX +vKX +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +ygI +ygI +ygI +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +wDU +bXP +bUI +bVR +qxG +bOO +pxL +lIC +ske +pxL +pxL +pxL +pbH +gCg +cmX +oHT +ygI +aeT +ygI +ygI +ygI +ygI +ygI +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(123,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +xXu +yjz +yjz +yjz +yjz +xXu +yhR +yhR +uRH +aKl +bEJ +bSY +cug +cCC +fqP +iAa +ndH +xYY +ald +rmU +vBE +qzl +ajm +rHf +rmU +ald +alJ +uRH +uRH +uRH +uRH +qSy +wsl +wLh +wLh +wLh +wLh +arf +aux +pwU +pwU +oHY +hEP +xyI +unR +slP +aFe +fJn +fJn +bZh +hZG +tQj +tQj +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +ygI +ygI +ygI +ygI +ygI +tPz +wDU +wDU +wDU +wDU +tPz +wDU +wDU +bXP +bUJ +bVS +rvh +bXP +bal +lnF +hCj +vmr +gHe +whG +duE +vXz +xRJ +oHT +ygI +xRJ +ygI +ygI +ygI +ygI +ygI +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(124,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +wTN +yjz +yhR +yjz +yjz +xXu +yjz +yjz +uRH +aUt +nxx +wyV +wyV +wyV +wyV +wyV +wyV +xYY +xYY +xYY +xYY +aLV +iPX +xYY +xYY +xYY +alJ +yhR +yhR +yhR +yhR +yhR +wsl +aqg +iUk +iUk +iUk +iUk +auU +xWD +rjr +tde +slP +jYj +slP +slP +wNw +nYf +dHp +wuJ +vpq +vKX +tQj +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ybA +xRJ +ygI +ygI +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +bVQ +bXP +bXP +bXP +bXP +bXP +xRJ +xRJ +iCh +xRJ +xRJ +bTH +gWP +xRJ +xRJ +vRQ +ybA +ybA +ybA +ybA +ybA +ybA +ybA +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(125,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yjz +yjz +xXu +yjz +yjz +jkE +aWy +bHc +bXA +tLj +bHc +fva +aPO +ntc +xYY +rOX +tsJ +xYY +qzl +wHs +xYY +tsJ +rOX +alJ +yjz +yjz +yhR +yjz +yjz +wsl +wUs +iUk +aqo +asp +iUk +auS +hYn +hYn +fpg +slP +pcT +pcT +aDL +wNw +jXT +dHp +wbt +vpq +vKX +tQj +vKX +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ygI +xRJ +xRJ +tPz +tPz +xRJ +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +bVQ +xRJ +nQr +wDU +wDU +wGh +xRJ +wDU +wDU +nlt +fAV +ygI +xBQ +uyj +uyj +oHT +ybA +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(126,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +xXu +yjz +cCL +yjz +yjz +xXu +yjz +yjz +jkE +aZB +eOv +bHe +cvb +bHe +eOv +bHe +ajo +xYY +ald +rmU +vBW +qzl +ajm +ajM +rmU +ald +alJ +yjz +yjz +yhR +yjz +yjz +wsl +wUs +iUk +asm +blU +atQ +uGU +lui +jpI +jSU +slP +fWY +pcT +aDQ +wNw +aGl +awq +vpq +vpq +wNw +inn +wNw +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ygI +xRJ +wDU +wDU +wDU +wGh +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +ygI +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +xRJ +ygI +xRJ +uyj +xRJ +cgW +ybA +yjz +yjz +yhR +xXu +xXu +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +ctv +xXu +ctv +ctv +xXu +ctv +ctv +ctv +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(127,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +cCL +yhR +xXu +yhR +yhR +yhR +yhR +xXu +yhR +aSV +uRH +wyV +wyV +wyV +wyV +wyV +wyV +hhR +nxx +xYY +xYY +xYY +xYY +qzl +ajj +xYY +xYY +xYY +alJ +yhR +yhR +yhR +yhR +yhR +wsl +wUs +iUk +ari +asu +iUk +uGU +ait +nSv +ejP +slP +rPu +pcT +vKX +qGZ +aGl +wbt +vpq +vKX +vKX +tQj +tQj +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wDU +tPz +wDU +wDU +wDU +wDU +tPz +wDU +wDU +wDU +wDU +tPz +wDU +wDU +tPz +wDU +wDU +wDU +wDU +tPz +wDU +wDU +wDU +szi +wDU +ygI +uyj +ygI +wiT +ybA +yjz +yjz +yhR +yjz +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(128,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +xXu +yjz +cCL +yjz +yjz +xXu +yjz +yjz +jkE +bcu +bHo +bYv +cvf +cKV +wyV +jtq +nLO +nLO +nLO +tCA +vWu +qzl +aji +ajO +ajn +aVn +alJ +yjz +yjz +yhR +yjz +yjz +wsl +wUs +iUk +iUk +iUk +iUk +oAU +iLr +fwL +mlk +slP +lta +aBy +ejj +wNw +aGm +aHV +vpq +qGZ +vpq +vpq +tQj +wNw +wUs +wUs +wUs +wUs +wUs +wUs +wUs +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ygI +xRJ +wDU +wDU +wDU +wDU +ybA +ygI +ygI +ygI +ygI +xRJ +bVQ +izI +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +xRJ +ygI +xRJ +uyj +xRJ +wiT +ybA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(129,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yjz +yjz +xXu +yjz +yjz +jkE +bdS +bIx +bYw +cvo +cvo +fWm +jOd +nOd +bHe +sdJ +tJc +nxx +cth +ajm +ajR +rmU +ald +alJ +yjz +yjz +yhR +yjz +yjz +wsl +wUs +oRZ +ask +atm +oRZ +avl +xit +jnj +aza +slP +wNw +sNt +wNw +wNw +aGl +gQW +aDN +aGl +brk +vpq +tQj +odh +tQj +tQj +tQj +tQj +tQj +wUs +wUs +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jnS +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +ygI +ygI +xRJ +oRg +gqv +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +xRJ +ygI +uyj +uyj +ygI +wiT +ybA +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(130,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yhR +yjz +xXu +yjz +yjz +jkE +bft +bIy +hwl +cvG +pSc +wyV +wyV +wyV +ppL +wyV +wyV +wyV +cHx +ajk +xYY +xYY +xYY +alJ +xXu +xXu +xXu +xXu +xXu +wsl +wUs +oRZ +tqd +aHw +aup +uGU +awv +axX +aze +slP +aBz +qoS +aDU +aGl +aGn +aHW +iYx +vlr +ssB +vpq +wUs +wNw +wUs +wUs +wUs +wUs +tQj +wUs +wUs +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +ygI +ygI +xRJ +wDU +bVQ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +mia +xRJ +xRJ +xRJ +uyj +xRJ +xRJ +wiT +ybA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(131,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +xXu +yhR +xXu +yhR +yhR +jkE +fix +lvz +hwl +vZP +pSc +uRH +jQV +nOS +pwy +aHu +uck +wyV +nlM +ajj +wyV +ajH +akn +uRH +yjz +yjz +yhR +yjz +yjz +wsl +wUs +oRZ +ark +asL +oRZ +avu +awt +axV +slP +slP +aAZ +aHW +aDT +peM +gtQ +gtQ +wyU +wyU +wyU +wyU +wyU +wyU +wyU +wyU +wyU +wyU +odh +wyU +wyU +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xRJ +xRJ +xRJ +tPz +tPz +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +wDU +ygI +ygI +ygI +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +qNs +xRJ +uyj +ygI +ygI +wiT +ybA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(132,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +jkE +vZz +nVQ +bYx +tAM +cMN +uRH +jUW +okq +qgD +okq +uhx +wyV +cth +ajm +ajS +ayD +trb +uRH +yjz +yjz +lsY +lsY +lsY +lsY +vYp +oRZ +oRZ +oRZ +oRZ +slP +awz +axR +slP +eKS +aGl +aAl +oxy +oxy +oxy +oxy +oxy +dfS +mJR +uQW +jwx +xrB +pNB +wFt +esN +uQW +qLW +iBT +gsZ +sVe +ber +wxZ +xFr +sVe +ygI +wDU +ygI +wDU +ygI +ygI +ygI +nQr +ygI +bVQ +gyo +bVQ +bVQ +oRg +uCb +bVQ +ygI +wDU +nQr +wDU +bVQ +wDU +gqv +wDU +wDU +wDU +bVQ +uCb +bVQ +ygI +ygI +ygI +ygI +ygI +gqv +wDU +wDU +wDU +wDU +wDU +xRJ +uyj +ygI +ygI +wiT +ybA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(133,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +uRH +jkE +jkE +jkE +uRH +uRH +uRH +jXm +otR +qhx +sQW +ujh +wyV +dHa +ajo +wyV +fPQ +ssb +uRH +yhR +yhR +jsj +iKS +hEh +emn +aqq +apx +arl +asM +aId +avw +awy +axQ +azj +lXL +ueN +rNH +oxy +uYn +sWT +pEA +oxy +xSY +nRr +lES +lsC +rTD +qti +qti +iWR +lsC +qLW +qti +wri +xmO +dBc +bba +fJE +sVe +ygI +bVQ +bVQ +bVQ +bVQ +bVQ +bVQ +gyo +bVQ +wDU +wCH +rPp +wCH +gqv +wDU +wDU +wDU +wDU +uCb +bVQ +uCb +bVQ +gqv +wDU +fos +fos +wDU +ygI +kHS +ygI +ygI +dqB +dqB +dqB +xRJ +wDU +wDU +wDU +wDU +wDU +xRJ +uyj +ygI +ygI +wiT +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(134,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +uRH +jLy +ccC +cUI +ccC +ltb +uRH +uRH +uRH +uRH +uRH +uRH +uRH +qSy +yjz +lsY +lcN +anZ +anZ +apu +arj +asb +asV +aId +uYb +awA +axT +azl +aAl +niI +aAl +oxy +qtC +erZ +ouo +oxy +fDc +eMc +gcA +fId +qti +lKV +lES +lES +lES +osP +ifd +wri +enH +bba +uQL +fJE +sVe +sVe +sVe +sVe +pEs +pEs +pEs +pEs +pEs +pEs +xRJ +gqv +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +tPz +tPz +xRJ +xRJ +bMX +ygI +ygI +ygI +iqh +iqh +iqh +iqh +iqh +iqh +xRJ +xRJ +xRJ +mia +xRJ +xRJ +xRJ +uyj +xRJ +xRJ +wiT +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(135,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +xXu +yjz +yjz +yhR +yjz +yjz +yhR +yjz +uRH +jpy +aHu +wtj +aHu +nop +uRH +xXu +xXu +xXu +xXu +xXu +xXu +yjz +yjz +jsj +dNd +anD +sIv +aoI +thd +arn +siM +aXF +lYh +jnE +nml +azk +mTR +mTR +mTR +aEA +lLf +oUI +xJK +rDi +srr +xUw +uzc +fId +rIN +lBz +mxK +efs +qFb +npb +xyz +wri +qrI +fJE +rHu +fJE +fJE +fJE +xdq +sVe +vvw +svA +whs +sQm +sQm +pEs +wDU +wDU +wDU +wDU +gqv +wDU +wDU +wDU +wDU +tPz +ygI +ygI +wDU +ygI +iqh +iqh +iqh +iqh +iqh +iqh +bSN +jnZ +xaK +bVV +iqh +mum +wjH +ygI +nMr +ygI +ygI +xRJ +uyj +ygI +ygI +wiT +ybA +ybA +yjz +yhR +yjz +yjz +yjz +yhR +yhR +yhR +yhR +uWf +yhR +yhR +yhR +yhR +yhR +yhR +yhR +uWf +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(136,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +cCL +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +uRH +uRH +jkE +jkE +jkE +uRH +uRH +yhR +yhR +yjz +tOc +tOc +tOc +tOc +yjz +jsj +dNd +apx +aHd +nba +rNP +asr +jsU +aGI +sOV +jnE +lBG +azn +yhR +yhR +yhR +aEc +aFk +biB +eIi +oxy +qjP +gKZ +uzc +phM +cJv +dAm +jjJ +onv +wJb +cJg +xyz +lng +sVe +rcZ +myR +ldk +eBR +ydZ +myR +tNE +jab +eWQ +eWQ +eWQ +vAK +pEs +wDU +wDU +wDU +wDU +xRJ +xRJ +gqv +xRJ +xRJ +xRJ +ygI +ygI +wCH +ygI +iqh +pgn +dOC +nbE +dOC +bRJ +bVW +bVW +cPn +bWc +iqh +ygI +ygI +ygI +wDU +nMr +xNU +mHv +xNU +ygI +ygI +wiT +pZL +ybA +bSw +ybA +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(137,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +xXu +yhR +yjz +yjz +yjz +yhR +yjz +yjz +xXu +yjz +kNp +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +tOc +tOc +xJf +jxX +tOc +tOc +lsY +aoK +asq +asq +aqp +mDt +asq +kNu +aId +ciO +qmB +cnM +cnM +yhR +yjz +yhR +aEc +opV +vWQ +sIP +oxy +eao +hUW +joT +inE +uST +dAm +tlc +wJb +onv +bEi +xci +gmX +sVe +xNE +ydZ +uqs +gTG +fMk +eqV +sVe +wqP +kQd +rWi +eIM +nnH +pEs +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +bNP +xRJ +ygI +ygI +ygI +wCH +ygI +iqh +wsV +rMt +rMt +rMt +rYs +wNL +wNL +jJp +cCF +hit +rcS +eHN +rcS +xNU +xNU +rcS +xRJ +ygI +ygI +ygI +wiT +ygI +pgo +ygI +bQr +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(138,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yjz +xXu +xXu +xXu +xXu +yjz +yjz +yhR +tOc +tOc +tOc +tOc +tOc +chR +chR +chR +wsZ +chR +lsY +aoL +ygq +apy +aqq +whN +ast +lnJ +aId +gXd +iUm +cnM +cCL +yhR +yjz +yhR +aEA +oxy +oxy +oxy +oxy +eSN +pJj +hZS +tRc +nBO +lBz +mjc +qcu +xuD +mbd +aZw +lng +sVe +rdF +gjZ +vWg +gIe +vPu +tdj +sVe +cYr +kQd +rik +eIM +wwB +pEs +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +wCH +ygI +iqh +ive +kSN +kSN +kSN +ykG +qUI +pXD +bWR +ccB +iqh +qBZ +xRJ +xRJ +uxm +xRJ +xRJ +xRJ +ygI +ygI +ygI +wiT +lOQ +ybA +bSw +ybA +hFC +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(139,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +tOc +aov +aLL +awP +aGQ +eCc +wov +wov +jox +avt +lsY +lsY +lsY +lsY +nsU +aId +aId +aId +aId +apX +dOU +cnM +cCL +yhR +yhR +yhR +wsl +wUs +bqR +wUs +wyU +lRY +rLb +rlP +rlP +wWz +mUz +hai +hai +hai +eGr +vna +ord +sVe +lww +ydZ +gIs +hRL +vPu +tFV +sVe +vkp +kQd +kQd +kKk +afR +pEs +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +cBV +xRJ +ygI +ygI +ygI +wDU +ygI +iqh +gbY +wOX +teY +vbJ +vbJ +yhY +hWx +qhs +cCG +iqh +xNU +xRJ +ygI +ygI +ygI +ygI +xRJ +xRJ +xRJ +xRJ +cCS +ybA +ybA +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(140,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +xXu +xXu +xXu +xXu +yjz +yjz +yhR +atf +jlU +fCb +dSI +dMv +aaG +oVa +gza +iCj +lGX +mBA +oAi +oAi +win +wdf +bvi +wdf +aua +sXv +eic +awB +axY +azh +wsl +wsl +wsl +wsl +bze +bze +bze +oeM +erP +rYU +qti +lsC +ftE +lwM +naa +xeF +gjT +euD +wKw +wKw +hot +rxA +aNo +nnB +nnB +har +oio +sVe +pbx +kQd +kQd +kQd +nnH +pEs +wDU +wDU +wDU +wDU +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +ygI +ygI +wDU +ygI +iqh +mIq +bLT +whU +ewK +wrC +deM +lWC +bYV +iYp +iqh +xNU +xRJ +ygI +ygI +ygI +ygI +xRJ +dqB +dqB +dqB +cCS +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(141,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +sRc +iSc +mEm +mGo +mFD +qae +pch +pch +wlp +usu +llk +cjI +cjI +cjI +aqr +iZL +cjI +cjI +cDS +uLo +hSa +asK +bze +wNw +wUs +wUs +wUs +bze +wUs +wUs +wyU +kEw +mFa +lgx +oPe +upJ +upJ +upJ +upJ +aCr +ipT +hwM +raY +sVe +fJE +bdo +ref +sVe +sVe +sVe +sVe +pEs +pEs +rho +pEs +pEs +pEs +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +wDU +wDU +ygI +iqh +nOh +wOX +xqT +quO +quO +izY +fiq +bYV +uyy +iqh +xNU +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +hun +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(142,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +yhR +yhR +tOc +jxf +yjN +qcb +enx +dDQ +gza +gza +nxY +nND +tOc +wNw +wNw +wNw +wNw +wNw +sOG +wNw +axY +aaP +hSa +axY +bze +fOZ +bze +bze +bze +bze +bEx +wyU +wyU +wyU +wyU +vtx +wyU +azI +mSA +sEt +sEt +wce +yjp +wyU +sVe +mAG +qXo +bdo +beu +sVe +xtf +xtf +wDU +wDU +nQr +wDU +wDU +wDU +gqv +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +wDU +wDU +ygI +iqh +nMZ +uki +uki +uki +nkC +iAy +nOr +hWx +cCB +iqh +xNU +ygI +gzl +gzl +xRJ +wDU +wDU +wDU +wGh +xRJ +cCS +bSw +yhR +yhR +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +mqg +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(143,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +sRc +sTH +djM +aqt +aqt +dDQ +sUE +gza +bVe +chR +tOc +wUs +tkj +wUs +brY +wUs +wUs +wNw +sfw +syG +sbK +axY +hCu +wNw +wUs +wUs +aHK +wUs +wUs +wyU +cPm +nNl +cMd +jiz +wyU +kWo +kJk +deu +hft +xou +aZy +nHd +vEU +fJE +wxN +bdo +lSt +sVe +xtf +xtf +wDU +wDU +wDU +wDU +wDU +wDU +gqv +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +wCH +wDU +ygI +iqh +nth +fdc +fdc +fdc +nOr +lIn +nOr +bYV +iYp +iqh +xNU +xtf +ygI +cwr +xRJ +wDU +wDU +wDU +wDU +xRJ +apF +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +pqt +pqt +pqt +pqt +pqt +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(144,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +atf +vxx +chR +chR +fOV +qaE +kOI +kOI +pov +nyN +tOc +wUs +wUs +wUs +wUs +wUs +wUs +wNw +cYX +gMv +eRj +cnM +wsl +wsl +wUs +wUs +aHK +wUs +wUs +wyU +wqZ +gqa +kPz +eKF +vHN +nlK +fWW +hOx +mBv +vnW +roj +iTU +sVe +uUU +fJE +bdo +yld +sVe +gqv +gqv +xRJ +xRJ +xRJ +gqv +xRJ +xRJ +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +wCH +wDU +ygI +iqh +aXm +aXm +emI +kkX +bWS +wuZ +pkM +xLT +cdE +iqh +gEh +ygI +ygI +kyU +xRJ +wDU +wDU +wDU +wDU +bRu +wiT +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +pqt +pqt +dWM +rbN +ogC +pqt +cvk +cvk +cvk +cvk +yhR +nJN +yhR +yhR +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +yhR +yhR +yhR +mFI +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(145,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +yhR +xXu +yhR +yhR +yhR +tOc +hcz +fHw +euU +uWO +xle +tNg +cuy +ath +dDd +tOc +wUs +wUs +wUs +wUs +hIX +tug +wNw +wkS +aaP +uFj +cnM +yjz +wsl +wsl +wUs +aHK +wUs +wUs +wyU +bmS +uRy +dIC +uvs +wyU +uKA +oTr +vtr +ffT +xuV +hZs +osb +sVe +jfJ +fJE +bdo +rKC +rZp +rKF +oRc +xRJ +ygI +ygI +wDU +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +ygI +iqh +iqh +iqh +iqh +iqh +isH +fPK +fPK +iqh +iqh +iqh +xNU +ygI +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wiT +bSw +yhR +yhR +xXu +yhR +yhR +yhR +yhR +yhR +yhR +yhR +uWf +yhR +yhR +yhR +yhR +yhR +yhR +yhR +uWf +yhR +yhR +yhR +yhR +yhR +yhR +pqt +jrI +wHq +kmD +fli +mMn +cvk +vHY +poE +cvk +cvk +cvk +cvk +cvk +cvk +cvu +cvu +cvu +cvu +dFS +dFS +cva +cva +cva +cva +cva +cva +cva +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(146,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +tOc +tOc +tOc +tOc +atf +atf +tOc +tOc +tOc +tOc +tOc +wsl +wsl +pCI +bjq +pCI +pnJ +wNw +axY +aUV +fiW +cnM +yjz +yjz +wsl +wUs +aHK +wUs +aVh +wyU +lrN +tUb +qmf +rpH +wyU +wyU +wyU +wyU +wyU +hwh +wyU +wyU +sVe +sVe +lyF +uWK +sVe +sVe +kEB +oRc +xRJ +ygI +ygI +wDU +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +ygI +iqh +bLT +kXp +uMP +qGx +hWx +eGz +wXr +iqh +ygI +ygI +xNU +xtf +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wiT +ybA +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +pqt +uHM +wHq +vDV +byP +fli +eZx +cvX +cvX +cvX +cvX +cvu +cvu +cvu +cvu +cvu +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(147,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +wsl +kLX +oGy +wEO +bmP +uBj +ron +dCI +axY +pfr +iKu +azn +yhR +yhR +vDJ +wUs +aHK +wUs +wUs +tQw +tgn +tzm +eIC +rpH +wyU +ljJ +kgA +pyc +aAr +tqf +xSn +cvh +lBM +vXM +djR +fia +ajx +xXf +fiN +xtf +xRJ +ygI +ygI +wDU +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +xRJ +iqh +hkT +bLT +dSr +hWx +sDM +hWx +agd +iqh +rwo +ygI +xNU +ygI +ygI +ygI +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +wiT +ybA +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +pqt +pqt +ryV +vay +fli +icx +cvk +cvu +cvu +cvu +cvX +cvu +cvu +cvu +cvu +cvu +cva +ufJ +xYC +icG +xYC +icG +cvr +icG +xYC +icG +xYC +ufJ +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(148,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +wsl +eCA +oGy +qZn +nbZ +bNr +whd +nbZ +axY +llI +tet +cnM +yjz +yjz +wsl +hCu +gMV +wUs +wUs +wyU +wyU +ebL +wyU +wyU +wyU +dJQ +qPG +ocM +uAB +wkc +osD +skm +wpX +skm +skm +oVD +lRK +xXf +uJn +xtf +xRJ +ygI +ygI +wDU +ygI +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +wDU +ygI +iqh +kXp +cIC +nXF +msD +oof +hfE +whv +iqh +ygI +ygI +vOr +yiw +yiw +yiw +tMp +yiw +yiw +yiw +yiw +yiw +hSl +ybA +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +cuj +pqt +pqt +pqt +mMq +pqt +cvk +cvk +cvk +cvk +cvM +cvk +cvk +cvk +cvk +cvk +cva +cwk +xYC +icG +xYC +icG +xYC +icG +xYC +icG +xYC +icG +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(149,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +yhR +yhR +xXu +xXu +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yhR +yhR +wsl +gUy +fBn +qlN +kdV +vKX +nbZ +pbP +gUc +nRA +arp +tAl +yhR +yhR +vDJ +dro +aHK +wNw +wNw +wNw +dro +vKX +lIv +wpr +xzy +skm +skm +sJy +ewX +kKJ +uoW +skm +skm +oJq +skm +kqC +iOx +xXf +fiN +oRc +xRJ +ygI +ygI +wDU +ygI +ygI +xRJ +xRJ +xRJ +wDU +wDU +xRJ +wDU +wDU +wDU +wDU +xRJ +xRJ +tPz +tPz +xRJ +iqh +iqh +iqh +iqh +iqh +iqh +iqh +iqh +iqh +ygI +ygI +gCG +wps +wps +wps +wps +dhb +wps +wps +wps +wps +fLI +xhW +xhW +xhW +xhW +xhW +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +cuj +cuj +cus +cvd +cuS +ecr +cvk +cvu +jtY +cvu +cvX +cUo +cgs +cvu +jtY +mpt +cva +cwg +xYC +xYC +xYC +xYC +xYC +xYC +xYC +xYC +xYC +hBT +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(150,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +xXu +yjz +xXu +yhR +wsl +iuz +fBn +bel +vKX +kJo +vKX +vil +aIt +alj +xOl +gUc +yjz +yjz +wsl +dro +aHK +qGZ +vKX +vKX +vKX +vKX +xXf +dRM +xzy +nrt +ckw +anK +oKl +pIb +xPy +skm +nrt +jgp +tBt +hcy +xXf +xXf +rKF +xtf +xRJ +ygI +ygI +wDU +wDU +wDU +wDU +ygI +xRJ +wDU +wDU +xRJ +wDU +wDU +xRJ +gqv +xRJ +ygI +wDU +wDU +ygI +gqv +xNU +xNU +xNU +xNU +fCi +xNU +xNU +mHv +xNU +xNU +gCG +wps +wBr +yjv +yjv +yjv +yjv +gtO +wps +wBr +yjv +yjv +yjv +yjv +yjv +nWA +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +cuj +cuj +cve +cuG +cuS +cuG +cvk +jtY +cBS +jtY +bmR +cvT +jtY +jtY +cBS +bmR +cwf +ilk +xYC +icG +xYC +cwA +xYC +cAS +xYC +icG +xYC +msj +cva +cva +ldv +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(151,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +yhR +yhR +xXu +xXu +xXu +wTN +osG +qCk +hBy +tal +nbZ +kaX +aMb +bNr +gUc +tgs +arp +aBD +aBD +aBD +aBD +cRS +akC +cRS +cRS +cRS +cRS +cRS +xXf +xXf +xXf +xXf +xXf +xXf +xXf +xcz +xXf +xXf +xXf +gMl +xXf +xXf +xXf +bbZ +uyj +ygI +xRJ +ygI +ygI +ygI +ygI +ygI +wDU +ygI +xRJ +wDU +wDU +xRJ +wDU +wDU +xRJ +xNU +xNU +ifj +xNU +xNU +xNU +mHv +bhX +ygI +ygI +ygI +wDU +ygI +oRc +gqv +ygI +ygI +wiT +wps +wBr +yjv +yjv +yjv +yjv +yjv +wps +wBr +rKO +wps +yjv +yjv +yjv +nWA +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +cuj +cuj +cuG +cuG +cuS +fqX +cvk +cvu +jtY +cvu +cvX +vJy +dum +daQ +bmR +xzA +cva +cup +xYC +xYC +xYC +xYC +xYC +xYC +xYC +xYC +xYC +xYC +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(152,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +yhR +osG +sIx +gZI +rdD +lWl +irk +cFf +dGq +aIt +akw +jue +auy +ipQ +ipQ +pcF +wuD +avI +lEx +ukt +kbj +bVn +ipQ +ipQ +nwV +juY +ipQ +aIY +ipQ +ipQ +mhh +sbD +sbD +xDW +cRS +sEp +rOG +xRJ +xRJ +knU +oRg +xRJ +xRJ +xRJ +xRJ +xRJ +ygI +wDU +ygI +xRJ +wDU +wDU +xRJ +xRJ +xRJ +xRJ +xNU +gyo +xRJ +xRJ +tPz +tPz +xRJ +xRJ +xRJ +xRJ +xRJ +tPz +xRJ +xRJ +xRJ +xRJ +xRJ +hun +wps +wps +yjv +yjv +yjv +yjv +yjv +wps +wps +wps +wps +wps +dhb +dhb +xhW +xhW +xhW +xhW +xhW +nVp +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +cuj +trl +trl +trl +tUj +trl +cvk +cvk +cvk +cvk +cvM +cvk +cvk +cvk +cvk +cvk +cva +cwk +xYC +icG +xYC +icG +xYC +icG +xYC +icG +xYC +icG +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(153,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +yhR +wsl +wsl +wsl +wsl +wsl +wsl +wsl +wsl +gUc +akV +jue +auz +bBp +bBp +bBp +bBp +rJR +bBp +aGP +bBp +bBp +gDR +rJR +lph +gvm +rHH +njb +pEu +pEu +brX +wgu +frC +mMB +cRS +wDU +wDU +xNU +xBj +fiN +uCb +uxm +ygI +ygI +ygI +xRJ +xRJ +gqv +xRJ +xRJ +wDU +wDU +ygI +ygI +ygI +xRJ +xNU +ygI +xRJ +wDU +wDU +wDU +wGh +xRJ +ygI +ygI +ygI +wDU +ygI +ygI +xRJ +ygI +ygI +wiT +ygI +wps +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xKL +xhW +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +xXu +trl +trl +oEn +fRC +nRh +gzu +cvk +cvu +cvu +cvu +cvX +cvu +cvu +cvu +cvu +cvu +cva +ufJ +xYC +tVY +xYC +icG +oHx +cGY +xYC +icG +xYC +ufJ +cva +cva +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(154,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +tAl +alj +aqv +cRS +cRS +hvj +cRS +lAL +tlA +tOJ +tlA +vLg +vLg +vLg +vLg +vLg +xtu +vLg +gGL +vLg +vLg +vLg +vLg +llr +llr +xBj +xNU +xNU +cbC +xRJ +vCh +mJu +xRJ +xRJ +xRJ +uxm +xRJ +wDU +wDU +bNP +xRJ +wDU +wDU +ygI +ygI +ygI +uxm +vCh +ydB +xRJ +wDU +wDU +wDU +wDU +xRJ +dqB +ygI +ygI +wDU +wDU +ygI +xRJ +ygI +ygI +wiT +ygI +dhb +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +trl +uLH +aKE +tqK +mRl +nRh +eZx +cvX +cvX +cvX +cvX +cvu +cvu +cvu +cvu +cvu +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(155,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +gUc +oub +arp +wNw +vKX +vKX +vKX +tlA +aBb +xwh +bOm +vLg +rSi +cjw +cnE +vLg +wVu +vLg +vLg +vLg +hau +kcD +vLg +vLg +vLg +vLg +xRJ +tPz +xRJ +xRJ +xNU +bVQ +ujZ +xRJ +ygI +ygI +uxm +wDU +wDU +wDU +gqv +wDU +wDU +ygI +ygI +bXM +uxm +xNU +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +xRJ +ygI +ygI +wDU +wDU +ygI +xRJ +ygI +ygI +wiT +ygI +dhb +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +trl +kbr +aKE +mMr +nRh +mxj +cvk +nHt +drr +cvk +cvk +cvk +cvk +cvk +cvk +cvu +cvu +cvu +cvu +dFS +dFS +cva +cva +cva +cva +cva +cva +cva +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(156,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +wTN +xXu +yhR +tAl +qmp +arp +hvj +vKX +rms +vKX +tlA +kPd +gso +dPK +vLg +him +cRz +aMI +sUO +wVu +qzK +tZI +vLg +aUi +jYM +aSR +jYM +vop +vLg +wDU +wDU +nlt +xRJ +xNU +uCb +ujZ +xRJ +ygI +ygI +xRJ +wDU +wDU +wDU +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xRJ +xNU +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +ygI +wDU +wDU +ygI +uxm +ygI +ygI +wiT +ygI +wps +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +trl +trl +grq +dWo +rNR +trl +cvk +cvk +cvk +cvk +yhR +cUD +yhR +yhR +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +yhR +yhR +yhR +nTZ +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(157,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +xXu +yjz +gUc +teo +cpb +wNw +vKX +vKX +ejj +tlA +pZh +lSK +byt +vLg +aJB +cRz +cxW +rFu +pni +cxW +elO +vLg +vhj +rWp +jYM +jYM +gBt +vLg +wDU +wDU +wDU +xRJ +xNU +wDU +uCb +xRJ +ygI +ygI +xRJ +xRJ +gqv +xRJ +xRJ +ygI +ygI +ygI +ygI +ygI +xRJ +xNU +ygI +xRJ +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +ygI +xYZ +yiw +yiw +fxq +yiw +yiw +hSl +ygI +wps +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +nWA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +trl +trl +trl +trl +trl +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(158,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +xXu +yjz +tAl +qmp +uaP +wNw +tlA +tlA +tlA +tlA +tlA +bck +tlA +tlA +dre +cRz +aDe +vLg +oQF +cxW +cRz +qSX +ogm +sUU +bFw +aDD +qfo +vLg +wDU +wDU +wDU +xRJ +vCh +wDU +wDU +xRJ +ygI +xRJ +xRJ +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +xRJ +vCh +ygI +xRJ +xRJ +szi +szi +xRJ +xRJ +xRJ +ygI +wDU +wiT +wDU +ygI +xRJ +ygI +ygI +ygI +ygI +wps +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +nWA +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +iDN +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(159,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +aof +aof +cxN +aof +aof +yjz +xXu +yjz +gUc +onf +qor +hSS +tlA +xFG +nvK +aCz +juE +bjL +xWr +tlA +tlA +aSN +cRz +vLg +swv +jBq +ppJ +aYP +fnd +aYP +aYP +aYP +she +vLg +wDU +wDU +wDU +xRJ +vCh +wDU +wDU +uxm +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +xRJ +xNU +ygI +xRJ +wDU +wDU +wDU +wDU +qNs +xRJ +ygI +wDU +wiT +wDU +ygI +xRJ +ygI +ygI +ygI +ygI +wps +yjv +yjv +yjv +yjv +yjv +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(160,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +aof +aoh +aoN +apB +aof +yjz +xXu +yjz +tAl +qmp +qor +lFa +tlA +gzx +dab +dab +nGp +kSC +dab +qhK +tlA +aOZ +djb +vLg +xQE +dwY +fur +goY +oVS +gWw +fur +iuE +kCh +vLg +wDU +wDU +wDU +xRJ +xNU +azB +uCb +uxm +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +ygI +xRJ +xNU +wDU +tPz +wDU +wDU +wDU +wDU +wDU +uxm +ygI +wDU +wiT +ygI +ygI +uxm +ygI +ygI +ygI +wps +wps +wps +wps +dhb +wps +wps +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(161,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +cxN +aRX +aoM +apB +cxN +yjz +xXu +yjz +gUc +uvT +qor +kEF +rNt +qMP +dab +atw +mMf +atw +dab +vjr +tlA +vLg +vLg +vLg +tkz +fbc +oml +onQ +eMb +oIk +oml +uAV +ban +vLg +xRJ +tPz +xRJ +wps +nvU +wps +wps +wps +ejt +wps +wps +wps +wps +bzy +wps +wps +wps +wps +cHZ +wps +wps +nvU +ccv +xRJ +wDU +wDU +wDU +wDU +wDU +xRJ +ygI +ygI +wiT +ygI +ygI +uxm +ygI +ygI +cHt +wps +bZT +bEg +wBr +wBr +wBr +wBr +wps +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(162,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +dYt +aoi +aoO +apB +aof +yhR +xXu +yhR +tAl +qmp +qor +vGf +rNt +mrq +avD +jYK +lBW +atw +dab +fmB +tlA +cjx +djq +boe +uRD +fbc +dpw +onQ +gkK +oIk +dpw +uAV +dpw +vLg +yjv +yjv +cHK +wps +sVV +yjv +hhv +fJB +yjv +wBr +wBr +wBr +wBr +yjv +wBr +wBr +wBr +wBr +sVV +nvU +ruH +bID +qPY +wps +wps +wps +wps +wps +wps +wps +wps +wps +xdZ +wps +wps +wps +wps +wps +wps +wps +rvy +wBr +wBr +wBr +wps +wps +wps +yjv +yjv +yjv +wZy +yjv +yjv +yjv +yjv +yjv +yjv +xhW +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(163,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +aof +aof +cxN +aof +aof +yjz +xXu +yjz +gUc +aRT +qor +rqa +rNt +cDj +atw +dab +lBW +dab +dab +fGo +tlA +vLg +vLg +vLg +gRL +mLH +nnm +cYK +aUz +fnF +nnm +aYT +qhI +vLg +yjv +yjv +yjv +wps +pFE +sVV +sVV +pFE +blq +sVV +sVV +pFE +sVV +sVV +sVV +sVV +brr +sVV +sVV +cHZ +yjv +lVH +sVV +wps +wBr +wBr +wBr +wBr +wBr +xEI +xEI +xEI +nyk +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +yjv +wps +wps +wps +wps +wps +dhb +dhb +xhW +xhW +xhW +xhW +xhW +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(164,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +tAl +mTT +jue +vGf +tlA +tlA +awC +rzW +qwl +tlA +tlA +tlA +tlA +pkE +oVz +vLg +vLg +qFW +vLg +rJb +vLg +rJb +vLg +rJb +vLg +vLg +yjv +yjv +yjv +wps +wps +wps +sGq +wps +wps +wps +cHZ +wps +wps +wps +wps +wps +wps +wps +wps +wps +nOX +yjv +bJA +hYj +jHp +jHp +jHp +jHp +jHp +jHp +jHp +jHp +haX +ehE +xEI +xEI +xEI +xEI +xEI +xEI +oTW +nGH +xEI +wBr +wBr +yjv +yjv +yjv +yjv +yjv +bzy +yjv +yjv +xhW +yhR +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(165,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +xXu +xXu +yjz +xXu +yjz +tAl +jyD +jue +jue +xan +aAs +awE +awE +lWW +jSz +aGE +uOI +sAo +aVL +aVL +fbj +vVd +dbI +tCt +wcq +uvQ +ect +wuQ +ect +bEy +xGx +yjv +yjv +yjv +wps +wBr +wBr +xPm +wps +wBr +wBr +yjv +bpS +yjv +yjv +wps +yjv +yjv +yjv +bAC +wps +oLw +fAD +bMp +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +yjv +xhW +xhW +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(166,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +xXu +yjz +xXu +yjz +gUc +aLY +jKg +jKg +tDL +jKg +jKg +dTQ +qqr +bqt +jKg +dTQ +dTQ +dTQ +nqL +ous +fhd +dip +fhd +tGh +fhd +tGh +cLn +tGh +mUo +xGx +yjv +yjv +yjv +wps +wBr +wBr +xPm +cHZ +yjv +yjv +yjv +wBr +wBr +crR +wps +yjv +yjv +yjv +yjv +wps +wps +wps +bMl +bDb +xYx +ylC +ylC +fgW +ylC +hQP +bDb +inq +bRU +twd +bDb +uvW +bXe +ylC +wzl +ylC +ylC +wzl +her +ylC +wzl +ylC +ylC +wzl +uuU +ylC +qKu +yjv +xhW +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(167,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +xXu +yhR +xXu +yhR +gUc +gUc +qmp +qmp +teo +alj +alj +kZt +kUQ +hRM +tbb +dvW +dvW +dvW +eAY +qFG +jyM +nQg +hpz +nQg +jDv +fRN +vdI +tZV +iuS +xGx +wps +cHZ +wps +wps +wps +wBr +xPm +wps +yjv +yjv +yjv +yjv +wBr +yjv +cHZ +yjv +yjv +yjv +yjv +cHZ +wBr +yjv +bMp +bDb +ygl +ylC +vRg +qmt +jtw +hQP +bDb +izk +usX +haE +bDb +ylC +fyb +ylC +wzl +fyb +ylC +wzl +ylC +ylC +wzl +ylC +ylC +wzl +ylC +ylC +qKu +yjv +xhW +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(168,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yjz +xXu +yhR +yhR +gUc +tAl +tAl +gUc +tAl +gUc +tAl +gUc +tAl +gUc +tAl +gUc +aIt +aIt +xGx +xGx +xGx +xGx +aUB +xGx +jNu +xGx +jNu +xGx +xGx +xPm +xPm +xPm +xPm +xPm +xPm +rmm +wps +wps +cHZ +wps +wps +wBr +yjv +wps +yjv +yjv +yjv +yjv +wps +wBr +yjv +bMp +bDb +ddx +ylC +ylC +wyv +ylC +fkZ +bDb +jOX +uaI +mOW +bDb +eWa +ylC +ylC +awb +ylC +ylC +awb +ylC +ylC +awb +ylC +ylC +awb +ylC +vRg +qKu +czU +xhW +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(169,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yjz +xXu +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xGu +qjZ +tEt +aNV +nTP +bya +uVJ +qDX +ljN +qDX +fYi +qDX +bas +bbD +xPm +wps +wps +wps +wps +wps +cHZ +wps +yjv +yjv +cHW +wps +yjv +yjv +wps +yjv +yjv +yjv +yjv +wps +wBr +yjv +bMp +bDb +bDb +bJK +yjr +gWA +ylC +bJK +bDb +bDb +hHq +cRO +bDb +mcU +wwQ +sQG +bRV +iSv +sUw +wSh +cbR +hGP +cgk +chr +gdq +mPw +tgG +qKu +bJK +czU +xhW +xhW +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(170,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yjz +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +xGu +qod +tEt +tEt +tEt +dXS +iwf +ybq +jaw +eHV +ybq +ybq +qDX +cMh +xPm +wps +yjv +yjv +cHK +wps +yjv +cHZ +yjv +yjv +yjv +cHZ +wBr +yjv +wps +wps +bzy +bzy +wps +wps +wBr +yjv +bMp +bDb +bRT +oYH +bLc +qhm +oYH +oYH +bRT +bDb +ueE +hBH +bDb +bMk +iuT +bIw +xyM +bMi +ero +xyM +hBI +xQe +jia +vdA +ccQ +jia +gnG +ddD +bDb +czU +erc +xhW +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(171,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +wTN +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +wTN +yhR +xGu +aJF +hds +cnV +tEt +jVC +bat +hYG +eLr +vHU +aWd +rfS +bat +bbD +jiF +wps +yjv +yjv +yjv +wps +yjv +wps +yjv +yjv +yjv +wps +wBr +yjv +wps +yjv +yjv +yjv +bAC +wps +wBr +yjv +bMp +bDb +rNh +ycE +qEt +uTj +fkR +ycE +bPC +cBG +mMs +ycE +mcm +qKE +elW +ycE +uzD +ycE +ycE +ycE +ycE +ycE +ycE +ycE +rDa +uzD +ycE +iOI +nPP +czU +czZ +xhW +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(172,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +xXu +yjz +vIB +aLh +fTq +muM +aVO +jVC +bat +hJL +eLr +tFj +aWd +rfS +twv +bbD +yjv +wps +yjv +yjv +yjv +cHZ +yjv +wps +wps +cHZ +wps +wps +wBr +yjv +wps +yjv +yjv +yjv +yjv +wps +wXO +czU +bMp +bDb +bUi +cTX +drK +hhg +bNp +gJG +egr +bQN +dqL +jrp +uza +bVk +rGY +uza +bZb +tRJ +uza +fgU +xMA +uza +vDY +fNG +uza +emD +qPP +qfD +bDb +czU +czS +nWA +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(173,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +qza +qza +ugm +ugm +ugm +ugm +qza +qza +yjz +yjz +yjz +yhR +yjz +yjz +yjz +xXu +yhR +vIB +cgQ +muM +abO +aVO +jVC +aRP +hYG +eLr +vRX +aWd +rfS +aac +xGu +hcC +xhW +yjv +yjv +yjv +wps +yjv +wps +yjv +yjv +cHW +wps +yjv +yjv +cHZ +yjv +yjv +yjv +yjv +cHZ +wBr +yjv +bMp +bDb +bIz +afx +dvO +oDV +dvO +dvO +sIs +bDb +prl +dGz +mdZ +oVV +bWm +sij +sZy +fpR +vNp +gCA +hAo +lxt +bSO +mBg +dsp +hZL +lnE +kKM +bJK +wFs +wBr +xhW +yhR +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yhR +dMW +cCL +cCL +cCL +xXu +qhQ +yjz +yjz +yjz +yjz +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(174,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +fIb +fIb +qza +qza +qes +ttr +ttr +ttr +ttr +hYF +qza +wRx +wRx +xFK +xFK +xFK +xFK +xFK +xFK +yhR +xGu +aKZ +aMW +aMW +tEt +jVC +vRX +hYG +eLr +vRX +aWd +rfS +bax +xGu +yhR +xhW +yjv +yjv +yjv +wps +yjv +cHZ +yjv +yjv +yjv +cHZ +wBr +yjv +wps +yjv +yjv +yjv +yjv +wps +wBr +yjv +bMp +bDb +bIB +daq +dYK +ycE +pnj +ycE +jOS +bDb +ylC +ylC +cGT +ylC +ylC +cGT +ylC +ylC +cGT +ylC +ylC +cGT +ylC +ylC +cGT +ylC +ylC +twp +pCj +czU +czU +xhW +yhR +yjz +yjz +yhR +yjz +yhR +yjz +mtK +mtK +mtK +eqZ +lkE +cCL +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(175,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +iYQ +yhR +yhR +yhR +cCL +iYQ +cCL +qza +oor +mUy +mUy +mUy +oFX +gGf +rQc +lFK +uyW +lPO +jZv +jNC +szm +fNt +xFK +yhR +xGu +cAz +aMK +uHN +aPg +jVC +vRX +hYG +eLr +vRX +aWd +rfS +mCb +xGu +yhR +xhW +xhW +nWA +xhW +xhW +nWA +wps +yjv +yjv +yjv +wps +wps +cHZ +wps +yjv +yjv +yjv +yjv +wps +wps +wps +bCX +bDb +bIA +rQv +egt +wPF +fJp +bDb +bDb +bDb +ylC +ylC +dby +ylC +fyb +dby +ylC +ylC +dby +ylC +ylC +dby +ylC +ylC +dby +ylC +ylC +ylC +pCj +wBr +czU +xhW +yhR +yhR +yhR +yhR +yjz +yhR +yhR +mtK +iuZ +hWF +jgQ +lkE +cCL +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(176,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +kOL +vAA +lqi +buF +kMl +wGd +rUE +rQc +gYz +phm +goV +sdA +iCt +iGU +jkC +xFK +yhR +xGu +xGu +vIB +vIB +xGu +xGu +vIB +xGu +xGu +vIB +xGu +xGu +vIB +xGu +nMb +yhR +yhR +yhR +yhR +yhR +yhR +xhW +nWA +nWA +nWA +wps +wBr +yjv +wps +wps +wps +wps +wps +wps +wps +wBr +bMp +bDb +bDb +hGE +bDb +bDb +fkt +bDb +xEI +bDb +ylC +ylC +dby +rlx +hEL +dby +ylC +ylC +dby +ylC +hEL +onm +ylC +ylC +dby +ylC +hEL +xpX +pCj +wBr +czU +xhW +yhR +yjz +yjz +yhR +yhR +yhR +yjz +mtK +lkE +iIh +ePl +lkE +cCL +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(177,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +iZN +buF +buF +lNB +buF +wGd +wjX +rQc +lhM +wCg +lPO +lPO +lPO +tMW +lPO +xFK +yhR +yhR +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yhR +yhR +yjz +yjz +yjz +yhR +yjz +yhR +yhR +yhR +yhR +yhR +nWA +wBr +yjv +yjv +yjv +yjv +yjv +yjv +wBr +wps +erc +bMp +wps +bGY +jTS +etH +bDb +bDb +bDb +xEI +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +czU +czU +xhW +yhR +yjz +yjz +yjz +yhR +yjz +yjz +mtK +cnO +hqg +hqg +lkE +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(178,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yhR +iZN +dAp +lNA +xrJ +hVn +wGd +ttZ +rQc +qjV +kdS +pdb +lPO +trv +mrp +aUX +xFK +xFK +xFK +yhR +yjz +yhR +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yhR +xXu +xXu +xXu +xXu +xXu +yhR +yhR +scL +xhW +nWA +nWA +brs +wBr +yjv +wBr +wBr +wBr +wBr +yjv +wBr +wps +bEg +jeT +qZp +gQY +pys +wBr +wBr +xEI +xEI +xEI +xEI +xEI +xEI +xEI +xEI +ldT +xEI +tiS +yjv +wbY +xEI +fdb +wBr +wBr +nMO +kTk +xEI +xEI +xEI +wps +czU +dXn +xhW +xhW +mtK +mtK +mtK +lkE +mtK +mtK +mtK +hqg +hqg +hqg +lkE +qhQ +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(179,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +iYQ +yhR +yhR +yhR +cCL +iYQ +vqw +bUD +hzc +dpQ +wIZ +dpQ +qRf +rQc +rQc +ksu +aYz +iuQ +lPO +fVz +xCG +oxM +srd +bQt +xFK +vWo +mkL +mkL +vWo +vWo +mkL +vWo +vWo +mkL +vWo +vWo +mkL +vWo +yjz +yjz +yjz +yjz +yhR +yjz +yjz +cCL +bvx +boz +yjv +bzE +yjv +yjv +wBr +wBr +gSf +wps +bzy +wps +wps +wBr +biA +wps +wBr +cnd +iYy +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +xaZ +ybf +fBW +czU +czU +czU +fiK +czU +yjv +wBr +wBr +cko +jjd +hKg +iYA +oIX +aZc +paX +hqg +jGu +vDZ +lkE +qhQ +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(180,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +wRx +wRx +wRx +qza +kGK +brQ +vTv +brQ +csm +rQc +smI +smI +aYz +gYz +lPO +wfv +kEd +jPQ +tVj +fPD +lPO +yhS +xUF +kTz +oYf +lTr +kTz +aft +btM +kTz +btu +eOl +kTz +vWo +xXu +xXu +xXu +yhR +yhR +yhR +yhR +cCL +vGb +vGb +vGb +vGb +wZy +wBr +wBr +wBr +wBr +wps +cBx +xaZ +bAa +xaZ +msC +wps +tYi +bHf +dvL +xhW +xhW +xhW +xhW +xhW +gEs +mcM +wBr +xEI +wBr +wBr +wBr +wBr +ltG +wBr +wQy +wBr +wBr +erc +xEI +xEI +yjv +xEI +wps +xEI +czS +yjv +yjv +rrn +jgQ +fAS +jgQ +jgQ +gSs +iIh +iIh +iIh +iIh +mtK +mtK +mtK +mtK +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(181,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +wRx +bom +rFJ +qza +ara +ttr +tWl +ttr +kOf +rQc +eYK +fYs +aYz +gYz +lPO +gPB +hkQ +imx +coM +coM +dEi +xUF +xUF +kTz +vRo +fPt +fPt +rkv +fPt +rkv +cVn +cVn +kTz +mkL +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +vGb +boy +bpX +vGb +vGb +vGb +wBr +xDk +xDk +xDk +biA +wBr +xDk +xDk +xDk +xDk +xDk +xDk +xDk +xhW +yhR +yhR +yhR +xhW +xhW +xhW +xhW +nWA +xhW +nWA +xhW +xhW +xhW +xhW +xhW +xhW +xhW +nWA +xhW +xhW +yjv +xEI +xhW +xhW +xhW +xhW +xhW +mtK +jgQ +jgQ +jgQ +jgQ +iPM +jYz +rgG +owe +rgG +owe +rgG +rgG +rua +gmr +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(182,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yhR +tjl +afg +mxT +qza +eCJ +ybJ +fil +uxT +vFj +rQc +rQc +rQc +hnJ +gYz +lPO +gvT +gvT +gvT +mpN +lPO +lPO +iGy +xUF +kTz +vRo +oGM +qUl +oGM +xGF +qUl +cVn +cVn +hsX +vWo +yjz +yjz +yjz +xXu +xXu +yjz +yjz +yhR +vGb +gnk +qaX +jrH +sve +vGb +xDk +xDk +qea +xDk +biA +wQy +xDk +ssK +vTF +vTF +pLo +sjk +xDk +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yhR +yjz +xhW +yjv +rvy +xhW +yjz +yjz +yjz +yjz +mtK +ryM +ryM +ktp +jgQ +mGe +iIh +aZW +oiP +oiP +oiP +oiP +hJb +mtK +mtK +yhR +yhR +yhR +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(183,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yjz +yjz +cCL +yhR +tjl +kme +vVg +ugm +vep +xDG +vTv +brQ +gAh +aRN +wmh +ujo +wCg +gYz +lPO +eaf +vmZ +eaf +eaf +lPO +sze +xUF +xUF +nLm +cZa +cVn +cVn +cVn +cVn +cVn +cVn +fHl +xYj +mkL +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +bnp +tTS +enB +oCk +qHw +vGb +sjr +xDk +qea +xDk +ibG +xDk +xDk +cBu +myl +myl +myl +bCj +dGF +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +xXu +yjz +xhW +wBr +rZh +xhW +yhR +yhR +yhR +yhR +mtK +iIh +iIh +iIh +jgQ +jgQ +hfD +jgQ +jgQ +noN +rvn +riL +jgQ +eBm +lkE +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(184,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +cCL +yhR +tjl +kme +vVg +ugm +qaY +dAX +nxu +nxu +nxu +nxu +nxu +kCH +qoD +hJZ +lPO +tPY +xUF +xUF +xUF +qIj +xUF +xUF +wLs +nLm +xTU +cVn +cVn +aSy +xNq +cVn +cVn +fHl +cVn +mkL +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +bnp +bng +boQ +bxe +wHt +vGb +xac +xDk +tgl +xDk +oMN +ubw +jhD +cBu +myl +kLR +myl +bCj +dGF +yhR +yhR +yhR +yhR +xXu +yhR +yhR +xXu +xXu +xXu +xXu +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +xhW +xhW +xhW +xhW +yjz +yjz +yjz +yjz +mtK +pUz +jgQ +irL +jgQ +jgQ +iIh +jgQ +jgQ +riL +jgQ +riL +jgQ +vCe +lkE +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(185,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +yhR +yhR +cCL +yhR +tjl +kme +mIE +ugm +oVv +jYo +ttr +ttr +kzf +uBu +oBQ +rQc +tOw +wCg +qbJ +knR +knR +knR +knR +hBk +pOR +pOR +nBz +vZG +reb +rzC +gVP +rzC +rzC +rzC +rzC +ogQ +myQ +mkL +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yhR +bnp +boA +tTS +lLG +jBe +vGb +hZk +gDw +hZk +cBe +icS +uCO +lNL +cBu +myl +myl +myl +bCj +dGF +yhR +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +yjz +yjz +yjz +yjz +yjz +mtK +pUz +jgQ +irL +jgQ +jgQ +iIh +rbu +rZK +ryM +qeE +qeE +jHK +mtK +mtK +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(186,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +cCL +yhR +tjl +kme +vVg +ugm +bnS +qUX +loW +loW +apU +cDz +qza +qza +wRx +wRx +xFK +iSj +xUF +rQg +xUF +xUF +tBy +xUF +xUF +kTz +vRo +fPt +rkv +dcQ +rkv +rkv +cVn +cVn +sim +vWo +yhR +yhR +yhR +yhR +xXu +yhR +yhR +yhR +bnp +bnk +tTS +bvg +tMm +oUF +weF +mGE +eds +uNC +biw +bUq +htd +cBu +myl +myl +myl +bCj +xDk +yhR +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yhR +yjz +yjz +yjz +yjz +yjz +mtK +mtK +mtK +mtK +lkE +mtK +mtK +mtK +mtK +lkE +lkE +lkE +mtK +mtK +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(187,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +cCL +yhR +tjl +kme +vVg +ugm +lGQ +dHM +wtO +uTy +clq +eAF +qza +yjz +yhR +yjz +vWo +vWo +bvI +csJ +sLy +sLy +sLy +sLy +mrr +kTz +vRo +oGM +oGM +qUl +uuQ +qUl +cVn +cVn +snh +mkL +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +bnp +tTS +tTS +bth +laV +vGb +xDk +xDk +xDk +xDk +uzl +cbe +oxt +iiq +bCi +bzL +bCi +rRM +xDk +yhR +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(188,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yjz +yhR +tjl +veD +ygr +qza +nje +upP +mSj +mSj +mSj +qza +yjz +yjz +yhR +yjz +yjz +vWo +otl +csJ +fXY +qxJ +qxJ +qxJ +odB +kTz +xlz +kTz +eeb +xlz +xGo +kTz +apz +cJS +kgK +vWo +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +vGb +bnl +bpq +vdl +kXt +scp +xDk +vSY +lcg +xEM +pKm +pDu +uIJ +bxm +byu +xDk +xDk +xDk +xDk +yhR +yjz +yjz +yjz +xXu +yjz +yjz +bUo +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(189,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +wTN +yjz +yhR +yjz +yjz +yjz +yhR +wRx +mdV +kvN +qza +qza +qza +qza +qza +qza +qza +yhR +yhR +cCL +yhR +yhR +vWo +pMt +vWo +mkL +mkL +mkL +mkL +csJ +pgw +csJ +ssI +vWo +vWo +vWo +mkL +vWo +vWo +mkL +vWo +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +vGb +vGb +vGb +vGb +vGb +vGb +xDk +dij +oWf +hBh +bEC +ljd +pDu +bEC +lxh +xDk +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(190,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +xXu +yhR +cCL +yhR +yhR +cCL +cCL +wRx +wRx +wRx +wRx +yhR +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +vWo +srR +uUq +uav +vWo +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +xDk +kGS +bzO +taM +mJz +rYJ +fvt +vwf +bFW +xDk +yhR +yhR +yhR +xXu +xXu +xXu +xXu +xXu +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(191,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yhR +yjz +yjz +yjz +yhR +cCL +yhR +yhR +yhR +cCL +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +vWo +vWo +vWo +vWo +vWo +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +xDk +xDk +xDk +xDk +pBV +pBV +pBV +xDk +xDk +xDk +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(192,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +xXu +yjz +yjz +yjz +yjz +cCL +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yhR +yhR +xXu +yhR +xXu +xXu +xXu +yhR +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yhR +yjz +yjz +yjz +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(193,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yhR +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +cjD +cjD +cnk +cjD +cjD +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(194,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +xXu +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cjD +iXf +cly +cmw +cjD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(195,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yhR +yhR +xXu +xXu +xXu +xXu +yhR +cCL +yhR +xXu +xXu +xXu +xXu +xXu +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +xXu +yjz +yjz +yjz +yhR +yhR +xXu +yhR +xXu +xXu +yhR +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +xXu +yhR +yhR +xXu +yhR +yhR +yhR +yhR +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cnk +iXf +clx +snv +cnk +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(196,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +xXu +xXu +yhR +xXu +xXu +xXu +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cjD +iXf +clz +cmx +cnj +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(197,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +xXu +xXu +xXu +wTN +xXu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +cjD +cjD +cnk +cjD +cjD +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(198,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(199,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(200,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +jYu +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(201,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yhR +yjz +yhR +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(202,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(203,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(204,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(205,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(206,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yhR +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(207,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(208,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(209,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(210,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(211,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(212,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(213,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(214,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(215,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(216,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(217,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(218,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(219,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(220,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(221,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(222,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(223,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(224,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(225,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(226,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(227,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(228,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(229,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(230,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(231,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(232,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(233,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(234,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(235,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(236,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(237,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(238,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(239,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(240,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(241,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(242,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(243,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(244,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(245,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(246,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(247,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(248,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(249,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(250,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(251,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(252,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(253,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(254,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} +(255,1,1) = {" +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +yjz +"} + +(1,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(2,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(3,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(4,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(5,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(6,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(7,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(8,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(9,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(10,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(11,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(12,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(13,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(14,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(15,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(16,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(17,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(18,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(19,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +okl +jUe +jUe +tFp +jUe +jUe +abj +jUe +jUe +tFp +jUe +jUe +okl +okl +jUe +jUe +okl +jUe +fdg +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(20,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +uJo +uJo +uJo +uJo +uJo +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(21,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +jUe +jUe +okl +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(22,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +fdg +jUe +okl +okl +jUe +jUe +okl +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(23,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +tFp +abj +abj +abj +tFp +abj +abj +abj +tFp +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(24,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +fdg +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +tcK +vjH +gfk +fly +gfk +gfk +fly +gfk +gfk +dTV +tcK +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(25,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +nnR +okl +nnR +nnR +pNs +nnR +nnR +pNs +nnR +okl +nnR +jUe +jUe +jUe +okl +okl +tcK +haK +toV +toV +toV +toV +toV +toV +toV +kkH +tcK +okl +okl +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +wgJ +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(26,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +tcK +kZi +ggA +vuo +ykn +ykn +ykn +vuo +xSs +hSK +tcK +okl +okl +okl +okl +okl +jUe +jUe +jUe +okl +pDI +pDI +tsn +pDI +pDI +okl +okl +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(27,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +nnR +okl +azX +rnS +abj +dOd +abj +rnS +nQR +okl +nnR +okl +hdd +awW +eBn +awW +hdd +unI +bZY +haK +ykn +ykn +ykn +kkH +obP +hSK +hdd +awW +oRO +awW +tgZ +okl +jUe +jUe +jUe +okl +loE +xxw +xXY +toP +loE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(28,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +nnR +okl +lZD +dyw +pVI +abj +abj +gKs +nNu +okl +nnR +okl +hdd +wsE +wsE +wsE +hdd +uQS +ykn +ykn +ykn +ykn +ykn +ykn +ykn +heA +hdd +wsE +wsE +wsE +tgZ +okl +okl +okl +okl +okl +tgZ +tgZ +oqC +tgZ +cyY +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(29,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +pNs +okl +abj +bnG +msU +msU +msU +lsv +abj +okl +pNs +okl +hdd +wsE +wsE +wsE +hdd +cWe +ykn +ykn +ykn +ykn +ykn +ykn +ykn +hSK +hdd +wsE +wsE +wsE +tgZ +okl +jUe +jUe +jUe +okl +tgZ +bBg +dbj +loE +lEz +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(30,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +nnR +okl +lZD +aef +abj +abj +abj +aef +nNu +okl +nnR +okl +hdd +wsE +wsE +wsE +hdd +ueq +ykn +ykn +ykn +ykn +ykn +ykn +ykn +naT +hdd +wsE +wsE +wsE +tgZ +okl +okl +okl +okl +okl +tgZ +wDE +axz +cSb +kZc +pju +qkT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(31,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +pNs +okl +tQk +iTH +abj +dOd +abj +iTH +god +okl +pNs +okl +awW +wsE +pPB +wsE +awW +kZi +bZY +lFW +ykn +ykn +ykn +iGq +obP +hSK +awW +wsE +pOo +wsE +loE +okl +jUe +okl +jUe +okl +tgZ +xnm +iLf +loE +loE +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(32,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +uJo +uJo +uJo +okl +okl +okl +okl +okl +okl +okl +uJo +nnR +okl +hdd +vsm +hkw +vsm +vsm +bGZ +eKx +eQD +ykn +ykn +ykn +eQD +tXW +hSK +vsm +vsm +uDF +vsm +tgZ +okl +okl +okl +okl +okl +loE +xnm +lUV +swb +nFW +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(33,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +uJo +rvu +rvu +oqQ +oqQ +oqQ +rvu +oqQ +oqQ +oqQ +rvu +rvu +rvu +hdd +jxP +wsE +wsE +chu +lFW +dwp +dwp +dwp +dwp +dwp +dwp +dwp +iGq +chu +wsE +wsE +otP +tgZ +jUe +jUe +okl +jUe +jUe +loE +xnm +wQW +baP +lII +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(34,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +uJo +rvu +xYR +xYR +xYR +xYR +pCn +xYR +kCY +xYR +xYR +iDG +xYR +xpY +wsE +wsE +cZm +vsm +nFe +qmZ +txn +aba +tgo +dNN +uBk +nFe +dYR +vsm +uxQ +wsE +vXs +cyY +okl +okl +okl +okl +okl +loE +xnm +xhl +kri +iSs +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(35,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +rvu +rvu +xYR +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +pUw +geD +vsm +vsm +fTS +vwF +fTS +srq +wRh +srq +fTS +vwF +fTS +vsm +vsm +dsj +pUw +tgZ +jUe +jUe +jUe +jUe +jUe +loE +xnm +fKa +gDW +cxQ +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(36,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +okl +rvu +diu +enS +tqg +uqN +atr +qjb +wBu +erK +loS +tcd +onl +gDi +tqg +mLE +fxW +rcg +awW +ykl +erw +gIx +wOo +xYb +wOo +twC +gIx +ngh +vsm +eyT +bZW +oKc +tgZ +jUe +jUe +jUe +jUe +jUe +tgZ +dls +rAt +loE +loE +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(37,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +oqQ +jIb +xYR +tqg +xTK +una +una +tLs +tww +uiK +cFc +gtd +rUa +tqg +scj +voY +tNb +fyV +uGl +fOc +imS +imS +mpV +imS +imS +bDC +uUR +fyV +uXv +voY +oFF +loE +qpI +jUe +jUe +jUe +jUe +tgZ +vin +wQW +cSb +kZc +pju +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +okl +okl +pyF +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(38,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +oqQ +mfp +xYR +tqg +xJp +una +pZJ +gSh +xqJ +loS +vkA +pxA +uvw +tqg +nKy +cxx +kAi +awW +vPU +cIn +tAi +uhu +pBq +pQC +uhu +pra +vpM +awW +phO +cxx +uWN +loE +qpI +jUe +jUe +jUe +jUe +tgZ +mZw +rAt +loE +lEz +loE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +jUe +okl +jUe +pyF +jUe +okl +okl +okl +okl +jUe +pyF +jUe +okl +jUe +okl +jUe +okl +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(39,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +rkC +jpF +uJo +okl +oqQ +gBm +xYR +tqg +rnJ +fkT +goK +vJr +mpf +loS +reL +lZp +yeu +tqg +lrh +oVp +awW +fqS +tdZ +cIn +lRi +jOF +pBq +uhu +cUp +pra +lrt +hdd +awW +oVp +xKi +tgZ +qpI +jUe +jUe +jUe +jUe +tgZ +xnm +scJ +lTe +tgZ +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +pyF +abj +abj +abj +abj +pyF +okl +okl +okl +okl +abj +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(40,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +oqQ +jIb +kCY +tqg +dIY +wJD +tkB +uUh +krw +loS +rEc +pUM +rEc +tqg +oVp +oVp +duB +rkh +mTN +cIn +tPp +brf +vdN +brf +ijN +pra +tPj +piC +hsK +oVp +oVp +loE +jUe +jUe +jUe +jUe +jUe +tgZ +xnm +wQW +thI +loE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +abj +wzS +oCb +abj +jUe +okl +jUe +jUe +okl +abj +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(41,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +rvu +ibU +xYR +tqg +lXx +una +woi +uUh +fKb +fvm +eOg +eOg +tdf +taj +oVp +oVp +oVp +fHK +mTN +cIn +uhu +jQv +nwK +uhu +uhu +pra +tPj +vbo +oVp +oVp +oVp +loE +jUe +jUe +jUe +jUe +jUe +loE +xnm +wQW +rwx +tgZ +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +abj +pnX +pWj +abj +okl +okl +jUe +jUe +okl +abj +okl +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(42,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +uJo +uJo +uJo +okl +rvu +rvu +xYR +tqg +wDX +una +eBZ +uUh +lbV +kiz +goK +lis +goK +aXA +oVp +oVp +oVp +wqY +mTN +cIn +uhu +uhu +ncu +djf +uhu +pra +tPj +wAs +oVp +oVp +oVp +loE +jUe +jUe +jUe +jUe +jUe +dlq +xnm +wQW +thI +loE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +pyF +abj +abj +abj +abj +abj +abj +abj +abj +jUe +okl +okl +okl +okl +abj +okl +okl +okl +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(43,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +rvu +uWz +tqg +vRO +una +gAl +uUh +jYk +loS +jPz +loS +loS +tqg +oVp +oVp +nNZ +kWO +mTN +cIn +brf +brf +wxe +brf +djf +pra +tPj +nKY +kkG +oVp +oVp +loE +jUe +jUe +jUe +jUe +jUe +loE +xnm +wQW +thI +cyY +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +abj +wtL +nUa +nUa +xGA +pyF +qgg +xGA +pyF +okl +abj +abj +abj +abj +tDh +abj +abj +abj +abj +okl +pyF +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(44,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +rvu +xYR +tqg +tzb +jbZ +vvv +hoR +vhw +loS +ifp +amX +kRD +tqg +vCP +oVp +awW +hdd +eVZ +cIn +pGU +uhu +imT +cEL +vLD +pra +qIZ +hdd +awW +oVp +vCP +tgZ +qpI +jUe +jUe +jUe +jUe +tgZ +mER +wQW +thI +loE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +okl +abj +iKK +abj +abj +abj +abj +abj +abj +abj +jUe +okl +okl +okl +okl +abj +okl +okl +okl +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(45,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +rvu +xYR +tqg +tqg +tqg +vnI +rqv +vnI +wPW +bhG +bKI +qie +tqg +mze +dQn +wTR +awW +vjs +cIn +uhu +rfw +fqv +uhu +uIT +pra +iWX +awW +sNh +dQn +lgV +loE +qpI +jUe +hsx +jUe +jUe +loE +xnm +wQW +joe +tgZ +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +nmp +uPH +cJk +uPH +nmp +jUe +abj +pvc +oCb +abj +okl +okl +jUe +jUe +okl +abj +okl +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(46,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +oqQ +xYR +muR +eze +tqg +iKr +gFF +rRq +qUe +lAG +gFF +ipV +ycz +xKE +vyL +gdd +wTc +iNm +ueI +rfQ +rfQ +uhp +xFn +xFn +kfq +vLl +cvS +ohv +vMP +jMq +tgZ +pJJ +khQ +lpS +loE +tFp +tgZ +wis +wQW +hZK +tgZ +okl +tFp +okl +jUe +jUe +jUe +jUe +okl +tFp +okl +jUe +jUe +okl +oxR +uPH +uPH +uPH +mvk +uPH +uPH +oxR +hMP +nun +pWj +abj +jUe +okl +jUe +jUe +okl +abj +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(47,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +oqQ +xYR +muR +eze +tqg +uDS +pDn +pDn +pDn +pDn +pDn +eit +nsP +vHI +vyL +oFF +awW +rYf +kEv +pDR +cIS +rkw +ufs +wKX +pDR +twR +awW +tyc +vMP +myy +tgZ +loE +loE +ity +loE +loE +tgZ +peo +wQW +hZK +tgZ +okl +okl +okl +nmp +okl +okl +okl +okl +okl +okl +okl +okl +nmp +uPH +vVl +vVl +uPH +nEd +uPH +hFh +uPH +rGH +abj +abj +abj +pyF +okl +okl +okl +okl +abj +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(48,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +uJo +okl +oqQ +xYR +muR +eze +tqg +mVZ +xAz +ncq +fyJ +lBY +xAz +dok +vnI +hiF +dJx +vAm +hdd +hdd +hdd +awW +uhq +qvy +uhq +awW +hdd +hdd +hdd +nIk +vMP +myy +pDI +ser +loE +lHa +loE +aKL +pDI +qKk +kzh +kDG +tgZ +tgZ +tgZ +loE +loE +loE +tgZ +tgZ +tgZ +jUe +okl +jUe +jUe +okl +uPH +gNc +dDs +nCE +yjT +xEz +xdU +uPH +okl +jUe +abj +pvc +oCb +pyF +jUe +okl +jUe +okl +jUe +okl +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(49,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +rvu +xYR +mYu +xYR +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +tqg +vuB +qvn +gch +vfa +tEu +kvk +kvk +ced +azD +nRC +kvk +rUb +tEu +kvk +sLA +obg +obg +hsV +wLI +nhx +sFX +kxg +gJE +ahO +efJ +jtI +iNk +maK +pYR +ryt +cEP +jdX +cEP +pDz +ovf +rdZ +okl +okl +okl +okl +okl +oxR +opd +qxg +tfL +jED +jED +elB +oxR +okl +jUe +abj +pnX +pWj +abj +abj +abj +abj +pyF +abj +abj +abj +abj +okl +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(50,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +rvu +xYR +wUH +xYR +xYR +xYR +xYR +xpY +xYR +leS +xpa +frc +aZZ +cCT +oiD +gYo +oSB +wrF +pvN +wrF +hMK +kDu +cPg +ncz +ncz +nxZ +ncz +ncz +kyC +ncz +jiu +rQM +wrP +ddu +gle +ncm +jhe +iPT +iUb +lbT +sOd +jXq +fDZ +jwK +jXq +jXq +jXq +xgh +rdZ +jUe +okl +jUe +jUe +nmp +uPH +abn +qxg +yjT +yjT +yjT +iGK +uPH +bgC +abj +pyF +abj +abj +abj +pvc +oCb +abj +jlz +abj +pvc +oCb +abj +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(51,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +eTh +rvu +bCS +bCS +bCS +kik +bCS +bCS +bCS +kZF +poU +xYR +xYR +bCS +bCS +bCS +bCS +bCS +nWD +nWD +nWD +nWD +nWD +icF +mVz +dRk +dRk +dRk +dRk +vyP +dPe +wGR +wGR +wGR +wGR +bQF +wGR +wGR +odt +miQ +miQ +miQ +miQ +miQ +miQ +goj +miQ +iqV +xgh +rdZ +pLE +okl +jUe +jwz +rdZ +oxR +oxR +tvA +qNJ +qNJ +qNJ +oxR +oxR +rdZ +rdZ +abj +jUe +jUe +abj +bKe +pWj +abj +hmL +abj +pnX +pWj +abj +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(52,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +abj +wyD +iDG +qpq +umW +xYR +ijf +phI +bCS +dUG +rcO +iDt +xEH +xEH +xEH +xEH +xEH +qiK +nWD +mGw +viK +hzj +nWD +emH +tie +jJE +tRa +xbo +slv +oEu +jBF +wGR +owO +jyi +xly +jqz +pma +wGR +gii +sGX +aeE +rbt +eqT +pVQ +fVO +jZI +miQ +wMI +rAL +jwz +rdZ +rdZ +rdZ +jwz +uVK +uoG +cEP +mrj +gPQ +gPQ +gPQ +cEP +uoG +ovf +rdZ +bgC +okl +okl +pyF +bgC +abj +abj +pyF +bgC +abj +abj +abj +okl +aVf +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(53,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +abj +rvu +aeI +bCS +xYR +xYR +xME +ohH +bCS +eZC +rcO +bCS +bCS +bCS +bCS +bCS +xYR +xYR +nWD +tny +ydL +hYf +juW +rxB +tie +fdi +qQn +dAY +ucy +oEu +jBF +wGR +tKL +pma +lSc +vxS +pma +wGR +xRX +goj +fVO +fJX +wRm +sBY +lyJ +iXD +miQ +iNz +dtF +vym +eEZ +qOh +eid +frW +vWB +woz +ceE +mmc +woz +woz +woz +iWy +woz +oCD +jwz +rdZ +jwz +rdZ +rdZ +jwz +rdZ +rdZ +jwz +rdZ +rdZ +jwz +pyF +okl +usg +jUe +jUe +pyF +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(54,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +rvu +rvu +bCS +hbn +xYR +xME +pzH +bCS +bCS +rcO +bCS +nYs +eax +cAf +bCS +bCS +xYR +nWD +gVk +lTY +iqv +hWs +nwG +hss +mLi +eyl +eyl +ktd +oEu +wtw +wGR +pma +vMF +lll +wKk +pma +wGR +qxu +miQ +fDy +vDh +iks +fkm +hBL +kcp +miQ +jXq +ivC +uoG +cEP +cEP +cEP +uoG +mzB +jXq +dfO +jWI +jWI +jWI +jWI +kRq +myK +ocA +ovK +bFE +eQE +bFE +onS +gJJ +tZu +bFE +oMn +bFE +jjs +rdZ +abj +okl +usg +jUe +jUe +okl +jUe +jUe +mdE +mdE +mdE +mdE +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(55,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +rvu +riZ +obr +bNW +bNW +bNW +qCz +bCS +rcO +bCS +orU +kIU +xYR +tdy +bCS +xYR +nWD +uxw +lOL +jhy +vpu +nwG +tie +fdi +eyl +eyl +slv +qnZ +jBF +wGR +fvS +lSc +pEU +iMN +lSc +wGR +qxu +miQ +miQ +miQ +miQ +miQ +miQ +miQ +miQ +fDZ +jXq +jXq +whQ +hdl +syW +cWk +vht +hVc +bBM +dYM +eUL +ylc +eUL +bBM +bBM +myK +myK +myK +eJO +myK +myK +mjC +kId +myK +myK +myK +mij +rdZ +bgC +okl +usg +okl +okl +okl +okl +okl +mdE +jUe +okl +jUe +mdE +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(56,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +wrE +mdE +mdE +okl +okl +okl +rvu +jGv +mCO +xYR +xYR +xYR +dOT +bCS +rcO +bCS +vhL +tJz +eTG +xYR +bCS +xYR +nWD +jic +lOL +rBi +hWs +pTQ +tie +uhC +cQn +aiz +uhC +qnZ +xQj +wGR +pma +rwr +pEU +iMN +pcl +wGR +qxu +beO +cAO +weG +cAO +cAO +xwp +cAO +beO +miQ +gkw +miQ +miQ +miQ +miQ +miQ +fvf +miQ +bBM +kzp +bBn +bBn +bBn +asU +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +kOv +mij +jwz +abj +okl +usg +jUe +jUe +okl +jUe +jUe +mdE +okl +vew +okl +mdE +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(57,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sAQ +jUe +okl +jUe +okl +jUe +okl +jUe +sJK +jUe +okl +jUe +kPx +jUe +mdE +jUe +jUe +jUe +rvu +uKL +xYR +xYR +xYR +xYR +jVA +bCS +fwt +bCS +hAg +xYR +xYR +vqm +bCS +wUH +peO +lwg +mjD +njo +nWD +hHx +cty +bbe +vlX +vlX +bbe +xWa +tNC +wGR +rdH +qDg +vAr +igp +pma +wGR +qxu +beO +beO +beO +beO +sWc +beO +cWU +beO +wlP +hKk +hKk +hKk +flo +jWw +vPd +iIn +unB +bBM +mPC +qPA +qPA +kAK +hQD +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +myK +mij +rdZ +abj +okl +usg +okl +mdE +mdE +mdE +okl +okl +jUe +hnU +jUe +okl +okl +mdE +mdE +wrE +mdE +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(58,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sAQ +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +okl +okl +okl +rvu +rvu +tqc +tqc +jrh +tqc +mjH +bCS +fwt +bCS +stf +eze +sOo +cJj +lMp +lMp +bML +bML +bML +bML +bML +nWu +tie +ubu +xFv +fRt +oEE +qnZ +jBF +wGR +mgR +lSc +lSc +vzD +jqW +wGR +kPk +jsZ +vcP +pIe +beO +qPC +beO +bjf +beO +faP +shB +faP +shB +oaH +laA +ouK +shB +faP +bBM +bDV +rIt +eum +rMp +hQD +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +myK +mij +rdZ +abj +okl +usg +jUe +jUe +okl +jUe +okl +jUe +jUe +hnU +jUe +jUe +okl +jUe +okl +jUe +jUe +mdE +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(59,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +fdg +jUe +jUe +sAQ +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +okl +jUe +rvu +rvu +rvu +rvu +rvu +fqj +bCS +nRm +bCS +bCS +bCS +bCS +bCS +lMp +gtw +qwY +gtw +xoU +vEy +lMp +uMj +iht +pmx +jfc +qVT +qVT +iOS +jBF +wGR +pma +pma +ffX +lSc +pma +wGR +jnv +miQ +qxu +tiJ +tiJ +pXa +tiJ +tiJ +miQ +xhr +shB +faP +shB +oaH +laA +ouK +shB +faP +bBM +bBM +uey +bBM +qfC +dDe +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +myK +vjW +jwz +bgC +okl +usg +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(60,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sAQ +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +oqQ +nBu +pXE +vnq +pUA +pUA +pUA +sQJ +kMu +lMp +uws +hrt +vts +wJs +hrt +lMp +jBF +mWc +jBF +gAg +jBF +mWc +fTy +sBX +wGR +wGR +wGR +wGR +wGR +wGR +wGR +miQ +miQ +qxu +nkP +gii +hCQ +sYL +sYL +wul +avP +moS +gLb +moS +gwT +sod +nBt +qOT +cGk +nvV +lHL +tiJ +bBM +jyR +erX +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +nIo +mij +rdZ +abj +okl +usg +okl +hnU +hnU +hnU +hnU +hnU +hnU +abj +hnU +hnU +hnU +hnU +hnU +hnU +jUe +mdE +okl +mdE +okl +pyF +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(61,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +okl +okl +okl +jUe +jUe +jUe +okl +jUe +oqQ +htS +pXE +bCS +bCS +oqQ +bCS +bCS +cZE +iYi +mcK +uAQ +sit +jiO +hrt +lMp +lMp +lMp +oTC +jaR +rHo +miQ +miQ +miQ +miQ +xCq +aKT +ecZ +rLE +hNQ +tiJ +eTq +miQ +qxu +tiJ +gMG +miQ +miQ +miQ +uYo +xia +mta +mta +mta +mta +mta +mta +mta +bri +uYo +miQ +qks +bBM +iWe +erX +nmA +kTE +kTE +kTE +kTE +emu +kTE +kTE +kTE +kTE +bBM +vaS +xmY +rdZ +abj +abj +lFj +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(62,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +mdE +mdE +okl +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +jUe +anI +alR +alR +alR +alR +rvu +rvu +rvu +hnY +pXE +bCS +fYO +kka +fYO +bCS +cBI +lMp +osk +xXo +nCH +mms +eXx +lfY +jNj +fDk +iOS +kpQ +bST +miQ +rwe +tiJ +tiJ +tiJ +bHh +tiJ +qfF +ull +hBf +pJO +pHL +wdV +qmx +qdn +iov +miQ +shB +shB +shB +shB +shB +shB +shB +shB +shB +shB +shB +shB +bCq +cLy +wwq +skI +qjL +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +lFA +ifQ +ieH +ieH +qpI +lFj +jUe +jUe +jUe +okl +jUe +jUe +jUe +abj +jUe +jUe +jUe +okl +jUe +jUe +jUe +wrE +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(63,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +anI +anI +anI +kdd +qwz +hzw +alR +gvB +hXg +pjW +htS +pXE +oqQ +kka +how +kka +oqQ +xaQ +lMp +dLF +pMi +sBc +bIL +fdw +fdw +fdw +mKu +sfD +eof +lrz +miQ +miQ +miQ +njR +avN +avN +avN +avN +avN +avN +dcN +avN +oeu +dVN +nXq +peF +miQ +shB +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +shB +bCq +wwq +wwq +skI +sTA +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +kkq +iYj +gxR +pTU +dMw +lFj +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(64,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +okl +okl +okl +okl +mdE +okl +vew +hnU +hnU +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +hnU +tKx +qZa +ffw +cIE +tsW +mfQ +pqU +pXE +pXE +nDa +eHM +pXE +bCS +fYO +kka +fYO +bCS +xaQ +lMp +uws +jrZ +hrt +hrt +hrt +skr +hrt +fDk +cUm +xcK +veH +vEX +avN +avN +gBu +eTq +miQ +mEV +mEV +mEV +mEV +mEV +mEV +mEV +mEV +mEV +aIi +miQ +shB +shB +tiJ +shB +shB +shB +shB +shB +shB +tiJ +shB +shB +bCq +hnj +dfp +skI +xKs +sTe +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +kTE +bBM +vUF +eZN +kCv +vVu +qpI +lFj +okl +hnU +hnU +hnU +hnU +hnU +hnU +abj +hnU +hnU +hnU +hnU +hnU +hnU +jUe +mdE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(65,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +anI +anI +anI +rwT +dhB +pMh +riH +fWa +bNW +reN +eWL +wre +bCS +bCS +ndB +ndB +ndB +den +lMp +nid +mzr +gtw +hrt +cVh +tfF +mIJ +lMp +kBX +iNc +gPy +aPA +aPA +aPA +aPA +aPA +aPA +mEV +hPy +mEV +xnC +mEV +kge +mEV +iXv +mEV +kGn +miQ +shB +shB +tiJ +shB +shB +shB +shB +shB +shB +tiJ +shB +shB +bCq +wwq +wwq +mIG +tMu +sTe +kTE +kTE +kTE +kTE +qNC +kTE +kTE +kTE +kTE +bBM +mfM +pfb +kiW +vVu +qpI +lFj +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(66,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +wrE +mdE +okl +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +jUe +anI +alR +alR +alR +alR +dOT +xYR +pjW +xYR +sSr +cse +wAS +klN +dzK +otf +oXY +lMp +lMp +pja +lMp +ort +lMp +lMp +lMp +lMp +jXL +iNc +eJx +aPA +rov +eLu +ooD +jYU +gDQ +mEV +luS +mEV +oxY +mEV +xBp +mEV +dwt +mEV +etd +miQ +shB +shB +tiJ +shB +shB +shB +shB +shB +shB +tiJ +shB +shB +bCq +cLy +wwq +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bBM +bRQ +pfb +pJY +ieH +ieH +lFj +jUe +jUe +jUe +okl +jUe +jUe +jUe +abj +jUe +jUe +jUe +okl +jUe +jUe +jUe +mdE +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(67,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +rvu +eLc +bdg +bNW +xPP +eCG +bCS +xYR +spY +bCS +hpD +ndB +oTD +whV +cdS +aZM +tmC +knL +lWD +iOS +iOS +iOS +iOS +iOS +iOS +mpp +gPy +aPA +pRQ +kGM +kGM +kGM +vcp +mEV +usl +hID +hID +rgp +llG +hID +hID +mEV +gdb +miQ +shB +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +tiJ +shB +jgk +vXK +cCA +xad +bem +mJT +kPN +lnL +bCq +mJT +lnL +lnL +rrU +bvm +thw +fmW +gMq +gMq +uOm +aZa +ieH +lFj +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(68,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +okl +okl +okl +rvu +eLc +xPP +xYR +rvu +rvu +rvu +ooL +bCS +bCS +pjW +ndB +wQD +whV +tUe +tUe +wHg +wxL +xDH +fNs +cCj +fNs +fNs +fNs +fNs +ddv +loM +aPA +fut +xFV +mOv +tAo +wYf +eVT +jae +gUJ +lzc +iYX +lgj +qSK +wcU +mEV +kGn +miQ +shB +shB +shB +shB +shB +shB +efK +shB +shB +shB +shB +shB +jgk +lnL +lnL +lnL +bCq +ntB +lnL +lnL +bCq +fgJ +nZu +lnL +rrU +jwj +ygW +jsS +kXJ +kXJ +vwQ +trD +vVu +lFj +okl +hnU +hnU +hnU +hnU +hnU +hnU +abj +hnU +hnU +hnU +hnU +hnU +hnU +jUe +mdE +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(69,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +ugX +sVG +sVG +sVG +mYL +sVG +ugX +jUe +jUe +jUe +jUe +mdE +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +rvu +bCS +ooL +bCS +rvu +jUe +rvu +xYR +xYR +xYR +xho +ndB +fHb +whV +oYg +whV +jDR +rPq +lWD +gEA +vmp +rAx +xyF +gEA +tQA +nvB +xbt +aPA +uHz +sMu +bDI +qDW +tbi +mEV +mEV +mEV +mEV +mEV +mEV +mEV +mEV +mEV +kGn +miQ +xQO +oWu +cOq +veU +jvt +cOq +jvt +iUt +cOq +oWu +oWu +hcQ +bCq +bCq +bCq +bCq +bCq +ciB +ulN +bCq +bCq +bCq +bCq +tKX +rrU +ndo +gdW +oPT +hxI +hDN +fQb +trD +vVu +lFj +jUe +rcB +rcB +rcB +rcB +rcB +jUe +abj +jUe +rcB +rcB +rcB +rcB +rcB +okl +mdE +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(70,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sVG +sVG +sVG +sVG +sVG +sVG +sVG +sVG +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +jUe +jUe +rvu +vhF +xZY +xYR +oqQ +jUe +oqQ +xYR +bCS +hXg +jQK +ndB +hjA +whV +whV +whV +jDR +oZE +ndB +gUs +nhI +gUs +nhI +gUs +fjm +nvB +mRR +aPA +uop +sMu +wIg +wIg +cpI +fTg +yiJ +pRA +hKY +aPA +xMP +miQ +fIm +kZS +kGn +vof +mtm +mtm +mtm +vpQ +vms +mtm +vms +oSq +mtm +vof +mtm +mtm +vof +nSs +rOk +dMO +dMO +dMO +dMO +dMO +hQy +lnL +bCq +lnL +pOf +rxT +gdW +mNl +mRw +mRw +wcr +hNT +ieH +lFj +jUe +jUe +jUe +jUe +okl +jUe +jUe +abj +jUe +jUe +okl +jUe +okl +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(71,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +ugX +mYL +sVG +qvP +qvP +qvP +qvP +qvP +qvP +okl +okl +okl +mdE +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +mdE +okl +okl +rvu +ftd +xYR +xYR +oqQ +okl +oqQ +xYR +bCS +bCS +bCS +ndB +adq +dHd +cmO +sxG +jDR +hrr +ndB +gUs +nhI +gUs +nhI +gUs +iDK +jrx +gdF +bbX +hNF +hNF +wIg +vGC +cpI +mJN +dmk +srL +noT +aPA +dGL +miQ +fIm +mkN +kGn +vof +vrn +gvO +mtm +qRe +azq +mtm +azq +bpA +mtm +eea +iAY +nDY +mtm +rOk +oLL +lYR +lYR +lYR +lYR +lYR +kcl +hQy +ciB +bwk +rrU +rxT +jSa +ajG +peU +peU +peU +hTH +ieH +lFj +ybx +okl +okl +okl +okl +okl +okl +hnU +okl +okl +okl +okl +okl +mdE +mdE +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(72,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sVG +sVG +sVG +qvP +dCW +lBI +wlg +wlg +mSz +jUe +jUe +jUe +mdE +mdE +mdE +mdE +mdE +wrE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +jUe +jUe +rvu +cVx +srv +xYR +rvu +jUe +oqQ +xYR +bCS +gTj +wmS +ndB +pvO +whV +whV +whV +jDR +kwM +ndB +gUs +nhI +gUs +nhI +gUs +iDK +nvB +eOQ +qnr +lVP +lsR +neT +neT +mYC +qZw +jwY +oyp +hKY +aPA +hNL +miQ +tiJ +euJ +kGn +mHI +fhY +eRt +uOD +xOz +lHq +vIt +apZ +sgD +rRw +fhY +koY +koY +mtm +dPq +lYR +wwq +wwq +wwq +wwq +wwq +lYR +oJY +bCq +gwg +rrU +rrU +rrU +rrU +rrU +rrU +rrU +rrU +rrU +aPj +wLr +cmR +jUe +jUe +okl +jUe +jDZ +msh +jDZ +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(73,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +ugX +sVG +pvw +sVG +qvP +qJq +lBI +qYx +iBR +mSz +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +rvu +bCS +bCS +ooL +rvu +jUe +rvu +xYR +xYR +wUH +xYR +ndB +qzC +whV +oYg +whV +jDR +ePI +ndB +wKU +nhI +gUs +nhI +gUs +uXl +nvB +eJx +aPA +sdi +qLI +qDW +bDI +cpI +tpG +aPA +aPA +aPA +aPA +aPA +miQ +iAI +vJm +etd +vof +uPl +vAI +pzc +iVN +gWk +lYt +oKr +xpk +xlx +koY +koY +koY +mtm +dPq +lYR +lYR +lYR +lYR +lYR +lYR +lYR +oJY +ulN +lnL +pOf +ogn +ogn +ogn +ogn +orW +lnL +lAf +eVA +xdP +vTx +sEo +jUe +jUe +okl +jUe +cyK +tWA +jDZ +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(74,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sVG +sVG +sVG +sVG +qvP +qJq +afK +iBR +iBR +mSz +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +rvu +hto +bCS +xYR +rvu +okl +rvu +rvu +bCS +bCS +xYR +ndB +eGI +whV +whV +qpm +jDR +tsN +lWD +wAC +rlY +jvf +caR +wAC +iLN +nvB +euV +spZ +qbX +vvX +rpt +trw +oNb +euL +gro +gro +rlA +rlA +aPA +tiJ +hPV +hxJ +npe +vof +lKA +qva +njE +qva +qva +njE +qva +qva +qki +koY +lma +tEb +vof +xlg +lYR +wwq +wwq +wwq +wwq +wwq +lYR +kTc +bCq +bem +bCq +bCq +bCq +bCq +gBM +gBM +ogn +lyR +bCq +bCq +wLr +wLr +wLr +wLr +wLr +cfw +cyK +fXz +jDZ +jDZ +okl +okl +okl +okl +lgt +rnS +nQR +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(75,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +sVG +sVG +sVG +sVG +qvP +qvP +mSz +uQs +mSz +qvP +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +rvu +rvu +rvu +xYR +bCS +okl +eXc +rvu +jwo +bCS +xYR +ndB +oaF +whV +whV +whV +vNW +jFA +rCm +jBF +jBF +jBF +jBF +jBF +jBF +nvB +gPy +aPA +tWK +aqN +dma +dma +xzI +euL +vzf +vzf +tTJ +tTJ +aPA +xAN +pjs +shB +shB +vof +iOE +qva +njE +qva +qva +njE +qva +qva +qki +koY +xCa +uEA +mtm +dPq +lYR +lYR +lYR +lYR +lYR +lYR +lYR +oJY +bCq +ofo +bCq +iKO +duy +bCq +uhj +lnL +pzx +osT +unw +bCq +nhB +lnL +orW +lnL +etf +cfw +qfV +axW +qiL +cfw +wLr +oiN +oiN +wLr +dIq +oCb +nNu +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(76,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +ugX +sVG +sVG +mYL +sVG +sVG +kbc +kbc +sVG +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +pNE +oqQ +eXc +sSY +rvu +rvu +rvu +jol +ndB +elT +uxq +uHI +gUN +qay +dAP +njc +onU +onU +rHZ +onU +onU +wTA +jPD +evZ +aPA +gxv +dEe +ePr +ePr +xlC +rXT +uhG +ktc +ktc +nIy +aPA +mEM +pjs +faP +faP +vof +tID +qva +njE +qva +qva +njE +qva +qva +qki +koY +xCa +nUO +mtm +dPq +lYR +wwq +wwq +wwq +wwq +wwq +lYR +lUe +bCq +jqw +unc +uxW +dIb +bCq +iOw +lnL +ogn +fWA +xNm +bCq +bkM +sZu +lnL +lnL +etf +cfw +kff +hyV +ycw +cfw +fAP +lnL +mjF +wLr +upk +dNx +hLF +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(77,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +ugX +sVG +sVG +sVG +sVG +mYL +ugX +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +rvu +xYR +rvu +eXc +okl +okl +eXc +rvu +oqQ +rew +rew +eKg +rew +rew +rew +rew +rew +rew +rew +rew +rew +rew +wth +uwX +ijn +aPA +hJt +hJt +iVi +hJt +wWG +hJt +quj +weX +fpo +kyX +fEw +phV +bbd +shB +shB +vof +bOf +njE +mkO +njE +njE +njE +ctS +njE +gYg +uPy +xCa +qjR +mtm +pfg +lYR +lYR +lYR +lYR +lYR +lYR +lYR +oJY +oiN +rNx +tXq +xTR +uaG +bCq +kZZ +gdp +lnL +uic +cwu +bCq +kbi +lnL +lnL +lnL +etf +cfw +cwE +uuA +lfx +cfw +xnR +ulN +kxM +wLr +wLr +wLr +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(78,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +ugX +sVG +sVG +sVG +sVG +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +kCY +oqQ +dnY +okl +eXc +okl +jUe +jUe +okl +haL +ieG +haL +dYv +vDQ +dYv +vDQ +dYv +vDQ +dYv +dHR +rPm +fYK +eCL +fsE +vAq +vAq +vAq +vAq +vAq +aPA +aPA +aPA +aPA +aPA +aPA +aPA +rcI +gWq +shB +shB +vof +fHP +qva +njE +qva +qva +njE +qva +qva +qva +dxD +xCa +ipe +mtm +pfg +lYR +wwq +lYR +wwq +lYR +wwq +lYR +oJY +oiN +ofo +qTA +xTR +txv +bCq +kZZ +rvG +nBo +nBo +nBo +bCq +tAy +bCq +bCq +bCq +bCq +cfw +kmB +mbC +cfw +cfw +bCq +lnL +jKO +lnL +gAq +oiN +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(79,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +sSY +okl +okl +oqQ +xYR +oqQ +dnY +eXc +okl +jUe +jUe +jUe +jUe +haL +fem +haL +vDQ +aBa +aBa +aBa +aBa +aBa +cOV +vDQ +rPm +fYK +fzF +fsE +jBi +rcr +ejH +snb +vAq +mIC +pCE +ybD +cVf +cVf +cVf +iPv +sUb +llt +cKp +cKp +rfO +ehl +qva +njE +qva +qva +njE +qva +qva +qva +jGb +pzt +aOC +vof +pfg +lYR +wwq +lYR +wwq +lYR +wwq +lYR +oJY +oiN +uxW +osC +xTR +lmc +bCq +vyq +gdp +lnL +iCH +hDD +bCq +kbi +bCq +sho +pKw +piK +bCq +pHa +mlA +rSq +rSq +qGc +rSq +rSq +abX +gAq +oiN +okl +okl +okl +okl +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +jUe +okl +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(80,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +oqQ +rvu +hgt +uWz +rvu +rvu +rvu +eXc +okl +jUe +okl +okl +haL +fem +haL +dYv +aBa +eIg +eCg +uww +hUh +aBa +dYv +rPm +fYK +eCL +wFG +kCM +dDk +dDk +jqu +vAq +mEE +ikZ +ikZ +ikZ +ikZ +ikZ +ikZ +npt +ikZ +ikZ +sBS +sBS +wve +njE +mkO +njE +njE +njE +ctS +njE +pRM +tzO +hzg +uak +mtm +lsE +rKv +lYR +lYR +dEI +lYR +lYR +kgF +lkf +oiN +ofo +eCd +xTR +ofo +bCq +bCq +bCq +bem +bCq +bCq +bCq +tNH +rVE +tNH +rnM +uhj +bCq +xnR +mlA +lnL +nSs +bCq +bCq +bCq +wLr +wLr +wLr +okl +jUe +jUe +jUe +uJo +ctv +ctv +ctv +ctv +ctv +ctv +ctv +ctv +ctv +ctv +uJo +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(81,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +mJv +bml +pJV +xYR +nYs +kDa +rvu +haL +haL +haL +haL +haL +dDT +pZa +haL +vDQ +aBa +ezH +lAi +dXU +pmF +aBR +rPm +rPm +qbK +eCL +wnU +jBi +gDq +fDp +lXw +vAq +mEE +ikZ +oUs +xeS +dtv +umi +qkc +cVs +kTm +eTf +mGH +gbl +dCD +qva +njE +qva +qva +njE +qva +qva +pPc +hei +rdg +koY +mtm +lnL +lsE +bdt +bdt +lmH +bdt +bdt +hlD +lnL +bCq +byQ +dCw +ofo +kBD +bCq +lnL +lnL +lnL +lnL +xLg +bCq +lnL +bCq +cZd +ist +bCq +bCq +lnL +mlA +lnL +lnL +sZu +bCq +wQR +wLr +bxn +okl +okl +jUe +jUe +jUe +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +jUe +jUe +uJo +uJo +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(82,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +abj +kFs +abj +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +kCY +xYR +ygc +xYR +xYR +xYR +xpY +uwl +uwl +vlV +uwl +rMM +ifF +iHj +haL +dYv +aBa +ltm +eHv +hyh +xGL +agf +eQA +mbI +oMg +kUb +hxR +vAq +vAq +vAq +vAq +vAq +pTl +ikZ +iJM +uQQ +fUY +uGO +qcG +inh +vIc +mnN +fgl +lIV +uBy +qva +njE +qva +qva +njE +qva +qva +hlG +fbO +qZP +koY +mtm +ulN +lnL +bdt +rom +wAq +nAU +bdt +lnL +jEY +bCq +wFI +wOR +uxW +kuU +bCq +lnL +lnL +lnL +lnL +lnL +vFK +lnL +bCq +mUe +sTD +kDM +wHV +mlA +jIo +lnL +iCH +lnL +xJd +iCH +izj +abj +jUe +jUe +jUe +jUe +jUe +uJo +uJo +qWe +qWe +qWe +qWe +qWe +qWe +qWe +qWe +qWe +uJo +ctv +uJo +okl +okl +okl +okl +wrE +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(83,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +okl +okl +okl +okl +okl +okl +tFp +okl +okl +okl +okl +okl +xxU +okl +okl +okl +okl +okl +okl +okl +okl +okl +oqQ +nDP +xrD +lUg +rAe +luE +aeI +rvu +haL +haL +haL +haL +haL +dDT +pZa +haL +vDQ +aBa +ree +vNy +kot +uyG +aBR +rPm +rPm +fYK +fhJ +pjy +iGo +vOP +vOP +vOP +wqh +acr +ikZ +oiV +iRk +rMJ +tYv +hNZ +kWK +pcS +eTf +oPz +aNO +exj +qva +njE +tvy +qva +njE +qva +qva +wHU +jvP +adI +koY +mtm +bwk +lnL +bdt +wOF +wAq +dxd +bdt +lnL +nSs +bCq +uxW +ofo +fcs +wJW +bCq +lnL +lnL +lnL +lnL +lnL +bCq +xnR +bCq +xjN +dET +bCq +qMw +sYY +bCq +oiN +bCq +bem +bCq +bCq +wLr +abj +okl +okl +jUe +uJo +uJo +uJo +uJo +qWe +nKE +vMb +uqo +tke +qQy +hQR +nPO +qWe +qWe +uJo +uJo +jUe +jUe +jUe +okl +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(84,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +oqQ +oqQ +rvu +rvu +oqQ +rvu +rvu +rvu +jUe +jUe +jUe +jUe +abj +haL +fem +haL +dYv +aBa +mEF +wRL +hco +hyX +aBa +dYv +rPm +fYK +hix +sCS +qei +qei +qei +qei +qei +eaY +ikZ +opy +uqR +uQQ +xcq +oQM +ikZ +ikZ +fsF +tcu +abT +tcu +tcu +tcu +tcu +igF +dla +wts +tcu +tcu +nwW +kDv +kwN +vof +lnL +mKy +mKy +mKy +uMf +vAB +mKy +oiN +bem +bCq +bem +pCO +syj +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +nRe +ozk +bCq +dfp +bCq +lnL +lnL +sFm +wLr +oiN +oiN +oiN +oiN +egT +ctv +ctv +uJo +qWe +nxn +tzV +tzV +tzV +tzV +tzV +hzb +hqn +qWe +uJo +uJo +uJo +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(85,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +abj +haL +fem +haL +vDQ +aBa +aBa +aBa +aBa +aBa +cOV +vDQ +rPm +fYK +hix +fsE +aut +qei +usm +sLD +qei +pXa +ikZ +ikZ +xuw +evH +wYD +ikZ +ikZ +cvj +iVn +tWy +sQc +elr +dIc +nKK +uvx +mHA +alE +qAg +xUP +tcu +dIc +kMW +dIc +mKy +mKy +mKy +gjd +fIo +psl +pem +mKy +lnL +lnL +orW +lnL +kHW +mkj +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +wwq +bCq +lnL +lnL +bCq +bCq +twA +rCu +gpq +oiN +egT +uJo +uJo +uJo +qWe +sfx +tzV +tzV +oKI +tzV +tzV +tzV +rEF +qWe +uJo +ctv +uJo +uJo +okl +okl +okl +okl +okl +okl +tFp +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(86,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +eAt +okl +tFp +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +abj +haL +ieG +haL +dYv +vDQ +dYv +vDQ +dYv +vDQ +dYv +gGy +rPm +fYK +hix +wFG +clo +rjL +exJ +fPv +qei +pXa +pSq +ikZ +ikZ +ikZ +ikZ +ikZ +mNV +jLe +qjm +qjm +iyZ +ePO +vRZ +vaP +uvP +uvP +dOR +uvP +uvP +xaa +nXw +uUs +qJh +mKy +hyI +mUW +uwR +uwR +neS +uwR +bdt +qUp +lnL +lnL +mUe +lnL +lnL +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +tbB +bCq +lnL +bCq +lnL +lnL +qKh +lnL +lnL +pQY +pZW +oiN +bxn +okl +jUe +okl +qao +qCt +tzV +kmU +jxZ +wwY +tzV +tzV +uaT +qWe +qWe +qWe +ctv +uJo +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(87,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +dDT +xdm +dDT +rUn +dDT +dDT +dDT +dDT +dDT +dDT +dDT +dDT +dDT +dDT +xFt +wvH +fsE +dan +qei +qmO +rTY +qei +viJ +qmx +qmx +sLn +fwe +lrA +oAv +ell +kxL +wUC +kxL +oON +uce +jGx +vbC +wDC +uYK +nGy +mtd +lTQ +koM +qjm +tYr +dZe +mKy +exL +uwR +uwR +jnw +jny +xij +bdt +qUp +lnL +lnL +lnL +lnL +lnL +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +wwq +bCq +hrp +hrp +bCq +gKq +mEz +cXV +eyd +oiN +eXc +okl +jUe +okl +qWe +gGu +mix +wHk +hVR +ixp +fFz +tzV +sYZ +dMm +lbL +cnS +nmp +okl +okl +tFp +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(88,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +abj +okl +jUe +okl +ggF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +dDT +qbz +dDT +bij +pPX +sQU +sQU +sQU +sQU +sQU +sQU +cfD +sQU +lWh +sRz +pvr +uGD +gxe +qei +dsU +qps +qei +oEK +ukV +ukV +nXX +pRh +ukV +miQ +aYp +lBO +ffj +lBO +qtZ +ttF +dIc +juS +vEs +nte +cUV +nsm +psr +tvD +vUM +nIp +dFY +nkE +dOL +mKY +mBH +dDM +gNq +xRD +bdt +pdi +lnL +lnL +lnL +lnL +dET +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +oiN +wwq +bCq +bCq +iRV +iRV +iRV +ttb +iRV +iRV +iRV +iRV +kQT +kQT +kQT +qWe +aLM +tzV +pMC +aRh +kxZ +tzV +tzV +kLr +xMy +rOi +rOi +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(89,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +uJo +uJo +wrE +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +dDT +dDT +dDT +hLz +dDT +jyL +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +cLe +hix +mkP +izy +izy +izy +izy +ejE +wkA +wkA +wkA +rLj +wkA +wkA +ejE +ncg +lBO +mcA +lBO +dLq +lBO +iis +pMV +kNV +acO +uvP +ooK +xLe +kug +tsp +gnR +nXw +bdt +sIe +uwR +uwR +cOv +uwR +pXh +mKy +rzv +lnL +lnL +lnL +yla +xnR +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +wwq +dfp +wwq +iRV +kvn +hsM +jZY +jZY +bsG +iij +iRV +nqV +dyJ +fey +uwF +dba +tzV +tzV +hiS +tzV +tzV +tzV +kLr +xMy +rOi +rOi +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(90,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +uJo +okl +pJJ +qpI +qpI +qpI +jns +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fCy +jUe +jUe +jUe +jUe +dDT +gRY +uwl +uwl +haL +jyL +xWc +etN +kKf +aBQ +kKf +kxF +kKf +lWo +xWc +ePB +oxj +quJ +mkP +izy +dRe +dJH +nZy +ejE +wkA +wkA +wkA +rLj +wkA +wkA +ejE +ncg +nqW +feS +cvm +wOr +uIR +dIc +eEC +dIc +iPf +tcu +fNy +dIc +pFV +uOE +dCB +uOE +pFV +qOL +fYH +iXV +cWj +cWj +oxe +mKy +lnL +lnL +bCq +ohJ +bCq +bCq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +dfp +xHe +dfp +iRV +syV +tpt +cos +vlF +vSl +nvv +sLO +roJ +tLb +ctW +qWe +sma +xDR +tzV +tzV +tzV +tzV +tzV +rEF +qnL +qeF +gJo +nmp +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(91,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qZG +uJo +okl +qpI +eYo +qpI +qpI +qpI +jUe +uJo +uJo +wrE +jUe +jUe +jUe +wif +ttY +wif +jUe +wif +tnD +wif +jUe +jUe +jUe +dDT +ucJ +pCT +uwl +loy +rRX +eED +lMC +dHO +lMC +lMC +bZo +iIL +iYr +bYa +ePB +oxj +hix +mkP +uLP +urF +itQ +iAT +ejE +wkA +wkA +wkA +rLj +wkA +wkA +ejE +ncg +wHi +hsO +hsO +cZp +uIR +pot +bnt +ooK +acO +wqA +tTq +pWd +uOE +cUq +jPS +wqa +pFV +jRR +mKy +mKy +mKy +mKy +mKy +mKy +bCq +bem +bCq +lnL +iax +wwq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +wwq +dfp +wwq +iRV +eUQ +tpt +cos +vlF +mbp +sjW +iRV +cFR +mgt +nfJ +qWe +ncY +ezJ +xyk +ezJ +ezJ +hYB +hvQ +bTb +qWe +qWe +qWe +uJo +ctv +uJo +tFp +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(92,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +okl +wrE +nmp +qpI +qpI +qpI +dMw +qpI +qpI +uJo +okl +okl +jUe +oPI +jUe +wif +gsa +wif +jUe +wif +gsa +wif +okl +okl +okl +dDT +ltp +ltp +ltp +ltp +imm +xWc +neZ +mpj +ewy +qUq +mpj +hwD +hiV +xWc +xFm +oxj +dpJ +hHU +aXc +aHr +unj +ozU +ejE +wkA +wkA +wkA +rLj +wkA +wkA +ejE +ncg +gEg +eBI +eBI +ctc +fYW +xZV +fza +mTL +dIU +pOw +uvP +xZt +uOE +bzg +kWV +ivb +pFV +qgh +lnL +bCq +ghE +gpq +bCq +xnR +lnL +lnL +orW +lnL +iax +wwq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +bCq +oiN +bCq +iRV +nFE +tpt +lPa +hFz +hFz +qVH +iRV +oLy +tLb +drX +qWe +qWe +qWe +qWe +qWe +qWe +qWe +qWe +qWe +qWe +okl +ctv +uJo +uJo +ctv +ctv +uJo +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(93,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qpI +qpI +qpI +qpI +qpI +qpI +ivr +qpI +qpI +qpI +qpI +kvz +kvz +kvz +kvz +mKz +gHS +wif +umR +wif +tRA +oDu +kvz +kvz +kvz +dDT +hyN +uwl +ltp +mAu +jyL +xWc +ram +rCw +lMC +lMC +sAA +nRX +lFv +bYa +ePB +pNW +odx +iKa +uLP +hlW +lSr +lmI +ejE +hBA +gtS +ktJ +xfh +dkk +aaI +ejE +rkL +ujL +eBI +eBI +vSG +lBO +lhY +uvP +uvP +jcg +uvP +lgH +yfQ +uOE +rVP +nJH +nha +pFV +ecc +lnL +iIG +paV +lnL +bCq +bCq +oiN +oiN +lnL +oiN +bCq +wwq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +hGJ +lnL +lwf +kxM +iRV +cLS +tpt +mAW +hFz +gKa +qVH +iRV +kbu +lrd +gxZ +hRS +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +ctv +ctv +uJo +jUe +jUe +jUe +plP +okl +okl +tFp +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(94,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qpI +qpI +dMw +qpI +wif +giH +aKd +rxr +soM +rIs +roh +kvz +sbm +rIs +bwR +kvz +nAQ +vLX +ltp +plC +uwl +qPN +uwl +bsq +xWc +jze +bcn +tqj +bcn +ouZ +bcn +glB +xWc +dEX +hnC +odx +mkP +izy +wlq +mSt +tUm +ejE +lWy +bTk +azt +cZK +pOz +ove +ove +rfV +big +spe +iGM +qPD +lBO +fBw +xjp +uvP +acO +xjp +xjp +leV +uOE +vbz +wSd +pmC +pFV +qBx +mGS +bCq +lnL +iOe +bCq +jUe +mtS +oiN +lnL +oiN +vKc +wwq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sYY +bCq +iOe +xnR +kHW +iRV +pXs +eia +bJU +iAr +vkj +pJs +iRV +nle +tLb +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(95,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qpI +qpI +qpI +qpI +wif +cJu +ipo +duF +mhP +iKl +pLT +wif +rOE +skL +tpf +aeH +gsa +tLZ +ltp +gvV +uwl +ltp +rzR +jyL +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +xWc +cZf +cZf +cZf +izy +uLP +uLP +uLP +ejE +cZf +cZf +cZf +cZf +cZf +cZf +ejE +lBO +lBO +uIR +gLm +uIR +lBO +lbF +lbF +jmJ +vKr +lbF +lbF +dMR +pFV +pFV +pFV +pFV +gZk +bCF +jMH +bCq +bCq +bCq +bCq +oiN +oiN +oiN +ohJ +oiN +oiN +oiN +bCq +sfJ +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +vft +mCB +bCq +bCq +bCq +bCq +iRV +iRV +iRV +iRV +iRV +iRV +iRV +iRV +olw +hRS +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(96,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +asD +nDl +fea +xGz +mOm +lgQ +vDw +nPY +rrg +xcJ +kvz +uAw +uAw +ltp +ltp +ltp +ltp +tbM +iSI +bug +tMX +hGg +vIl +uwl +vpq +qfs +ewZ +qJA +vpq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qiV +dCO +mUJ +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +pzN +aPZ +gWF +cUi +eVM +eVM +eVM +eVM +eVM +eVM +eVM +eVM +eVM +eVM +eVM +bCq +gLo +mGS +iOw +bCq +reP +yij +lnL +mUO +mPx +lKf +ane +iIf +raJ +wmw +hRS +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(97,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +lTl +nDl +bWV +bWV +nxW +bWV +wif +pyU +vOz +tkW +ewh +mtX +rXy +uwl +loy +rMM +rMM +xVW +ieG +xpE +qok +mVd +nnK +nnK +kmx +upu +upu +gNV +kcz +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +wLr +wLr +oiN +oiN +oiN +wLr +oiN +oiN +oiN +oiN +oiN +oiN +wLr +bCq +wrr +eVM +ckA +ckA +tDc +ckA +jPO +qkU +tDc +ckA +ckA +eVM +nVx +lEl +lVe +mGS +wPO +lnL +lnL +kxM +hRS +hRS +ftG +gnj +noO +wDx +vYK +fop +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(98,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +kvz +kpV +kvz +hnP +jxI +jxI +jxI +jxI +syr +uwl +jyL +jtz +jtz +hhn +jtz +jtz +uwl +vpq +jjm +vJn +kVA +gcu +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +mtS +mtS +mtS +wLr +lnL +eGt +eVM +oIp +qxM +hwo +ckA +kjD +ckA +jtv +gjs +nIJ +eVM +sfJ +qaa +isn +oFh +pzN +pzN +pzN +tUA +kRO +soW +opH +lbd +cwd +xuj +eaF +fop +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(99,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +gak +jxI +gBN +stT +pRa +xry +oyY +rnQ +pwa +jtz +eJc +kxK +pwo +jtz +uwl +vpq +atj +dHp +cIo +vpq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jUe +bEU +bEU +bEU +bEU +bEU +jUe +okl +jUe +mtS +dCE +mtS +wLr +sZu +qgh +eVM +qfu +jcU +gPs +ckA +ckA +ckA +pTV +xha +ovv +eVM +jgs +sKZ +sKZ +sKZ +sKZ +sKZ +sKZ +sKZ +sKZ +pCD +ixz +sab +gnj +bFT +jFr +fop +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(100,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +wng +kBC +fVP +kGo +cXr +nZj +sHs +jxI +jxI +ojs +jtz +vCk +kxK +czp +jtz +jtz +vpq +tCQ +oYm +eZQ +vpq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +okl +bEU +nlC +tWn +ubI +bEU +okl +okl +jUe +mtS +oiN +oiN +wLr +vTO +fJk +eVM +urw +oTe +oTe +ijF +cyk +ijF +oTe +oTe +iMx +eVM +qgh +sKZ +deF +wFu +wQX +jKl +hYO +hYO +sKZ +rvA +ixz +gnj +xRg +icy +lRf +bpz +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(101,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +gak +jxI +bdc +cPK +sYC +fSw +eiI +jxI +jyL +jtz +ppo +abV +eyG +rBD +jtz +ceJ +qee +ceJ +ceJ +xZw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jUe +bEU +rhk +dVz +trF +bEU +jUe +okl +okl +mtS +oiN +sfJ +pzN +pzN +duS +eVM +wtJ +xWO +qbM +ckA +oSg +ckA +eQW +gxQ +qdh +eVM +qgh +sKZ +deF +pmk +eUE +pmk +deF +deF +sKZ +qjd +ixz +gSY +sOm +aZP +uyt +hRS +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(102,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +xFC +yjZ +gak +tRi +tVC +gtY +jwL +tAJ +vSP +jxI +jyL +jtz +rqL +puN +uVO +qSS +jtz +ceJ +qee +cyy +cyy +ijX +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ltX +bEU +vOh +kNl +adR +bEU +ltX +ltX +tUs +tUs +tUs +vNO +tUs +tUs +ivJ +eVM +mkf +xev +tDc +tDc +oTe +tDc +tDc +kjg +xLy +eVM +qgh +sKZ +jty +pmk +pmk +pmk +xmK +xmK +sKZ +uDG +dMP +giF +giF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(103,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +gak +tRi +fnM +dDL +qaN +sDb +xwE +jxI +jyL +jtz +jtz +vDk +jtz +jtz +jtz +xZw +gjA +ceJ +ceJ +ijX +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +mWx +lEf +bJk +bFb +gZJ +eSL +xuK +ltX +mlz +eRK +vYI +vCg +fAN +tUs +ivJ +eVM +oTe +ckA +tDc +xRy +tDX +xRy +tDc +ckA +oTe +eVM +qgh +sKZ +sKZ +kdO +kdO +sKZ +sKZ +sKZ +sKZ +cKl +ixz +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(104,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +utP +jxI +jxI +jxI +jxI +jxI +jxI +jxI +jyL +xZw +uPE +gzN +snG +vnz +vQx +jqt +dmT +ceJ +ceJ +xZw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +dcs +bJk +bJk +mTE +bJk +bJk +xQq +ltX +sDr +lqd +dMj +lvA +rVs +tUs +ivJ +xRy +sOB +sOB +sOB +xRy +mcF +xRy +sOB +sOB +sOB +xRy +qgh +sKZ +usC +iBj +iBj +hgk +fuo +dTy +emF +fTx +fHy +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(105,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iTp +gmi +cIX +hNO +ito +hbl +muE +hNO +ncB +oyY +rkj +xZw +nbU +nJC +lQr +kvv +dKG +wmi +upR +ceJ +ceJ +sEu +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cXd +lyo +jGr +bFb +qge +mLt +qko +ltX +xJJ +rJM +nna +rrI +bim +tUs +ivJ +xRy +viP +nuY +sOB +rMn +fxw +kqE +kcn +jps +dPx +xRy +qgh +sKZ +dqq +imv +nAe +ofa +voN +iGT +sWQ +wmw +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(106,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +dLi +yjZ +rcP +hNO +hKA +lUN +hAv +hNO +urH +hNO +jyL +xZw +yiX +nJC +nJC +kvv +dKG +wmi +dmT +cyy +cyy +sEu +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +vXx +eSQ +dOa +xbl +dSM +vuC +vFX +ltX +aJk +rJM +nna +rrI +vWw +tUs +ivJ +xRy +kRb +xAg +sOB +lUc +wSx +lUc +kPJ +jLz +lsK +xRy +qgh +sKZ +rCb +iNb +fJM +nHw +voN +xrc +kDw +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(107,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +kLH +hNO +lvV +hAv +lye +iNY +xrb +hNO +jyL +xZw +lOF +wqH +nJC +kvv +dKG +wmi +dmT +ceJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jtU +bFb +kpT +whT +xCH +bJk +jNg +ltX +dPV +nLA +sTk +ijs +rPb +tUs +ivJ +xRy +hHw +dLg +dUV +eoN +eDj +cpp +lTw +pSM +tRU +xRy +qgh +sKZ +sXh +iNb +ylz +ubz +xbn +fxf +ane +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(108,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +gak +tUK +sgZ +fRo +iIa +iTF +jeG +hNO +jyL +xZw +ilS +xUU +nJC +kvv +dKG +wmi +upR +ceJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ljt +bJk +uPG +xVS +uuh +bJk +qoV +ltX +bEk +wGy +ivW +xYk +exo +tUs +ivJ +xRy +mXB +kwR +sOB +jkG +qCJ +stt +vDs +veg +lbt +xRy +qgh +sKZ +rCb +iNb +ugG +fTU +voN +ixz +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(109,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +wng +kBC +rFh +wUb +xXy +hFj +jQl +xhH +hNO +jyL +xZw +gsT +nJC +nJC +kvv +dKG +wmi +fqb +xZw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +xlc +mEk +kMN +whT +hom +bJk +nvP +ltX +lUI +fjq +mcL +esv +obR +tUs +ivJ +xRy +xRy +xRy +xRy +xRy +xRy +xRy +xRy +hlY +xRy +xRy +qgh +sKZ +oDD +ycS +oSb +tfq +voN +aOU +hTT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(110,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +lEC +yjZ +nRO +hNO +tsa +oJu +vLm +gAN +dtT +hNO +jyL +xZw +mFE +nJC +oaw +kvv +icp +wmi +woD +xZw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +bJk +bJk +bJk +swZ +ltX +ltX +ltX +ltX +qEc +fZZ +vMK +tGu +oLi +tUs +ivJ +ivJ +ivJ +ivJ +ivJ +ivJ +ivJ +bCq +nOv +kDT +cWH +bCq +qgh +sKZ +fuo +oYk +fKM +joP +fuo +rbo +hTT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(111,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +xwB +hNO +hNO +tUK +tUK +tUK +hNO +hNO +rup +dxf +xZw +hGl +hGl +vpR +hGl +hGl +xZw +xZw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ltX +ltX +ltX +btL +ltX +bJX +iPz +ltX +tUs +tUs +kwD +tUs +tUs +tUs +bCq +bCq +bCq +bCq +bCq +bCq +jQf +bCq +fTM +iab +cPp +vIN +duS +sKZ +hHJ +glW +iyG +fNn +voN +ifM +feN +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(112,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +isB +cMs +eFN +dOJ +eFN +eFN +xWF +xIw +prG +iQQ +iQQ +iQQ +iQQ +nPi +wrv +iQQ +lkn +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +izq +izq +izq +sPc +fot +fot +fot +nTi +dxJ +oJz +teT +dxJ +dxJ +ozb +dxJ +izq +aHN +izq +izq +hsl +rck +qvH +tAn +dtB +cDI +bCq +pSU +qnT +bRW +nmi +sIF +gww +voN +lwN +hTT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(113,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +uGv +kym +kgm +inv +inv +inv +inv +tCf +tCf +jiw +cmn +uIq +tFx +tFx +tFx +lPF +mWB +mWB +cZf +cZf +cZf +toN +ybh +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ebZ +ebZ +ebZ +wjd +kcB +oLF +ebZ +ebZ +ebZ +ebZ +ebZ +ebZ +cxR +ebZ +ebZ +ebZ +ebZ +ebZ +ebZ +lkI +wjd +qrl +ebZ +hee +olV +bCq +sZu +sKZ +hVr +vFb +xhD +fNn +voN +ifM +eCB +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(114,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +dLi +yjZ +jRx +oHL +sCt +ayw +oqz +gQy +sDq +ieJ +qTf +kXZ +kXZ +suH +ihQ +wnx +kXZ +lqj +kXZ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jwv +mTd +ggQ +vCJ +hKL +nux +fot +fot +fot +alM +rLp +rLp +rLp +rLp +rLp +rLp +rLp +rLp +ggQ +xAI +jwv +mjZ +lFS +qJu +yfC +www +www +www +www +www +www +www +hRS +hxz +goC +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(115,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +jkk +vsO +vsO +aKO +vsO +xgJ +xgJ +xgJ +xAy +xgJ +xgJ +xgJ +xgJ +xgJ +xgJ +xgJ +xgJ +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +iRz +iRz +iRz +iRz +com +cwz +rGJ +iEa +iEa +oqL +iEa +iEa +rBK +iKe +qpc +obM +cnp +wCW +fHn +fHn +fHn +fHn +cXb +eRq +ufe +www +mfH +www +fEM +qMx +sCa +www +qgF +fIF +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(116,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +sHL +ckz +wno +jQn +vsO +sVo +cvD +cvD +stG +eUi +eUi +eUi +eUi +eUi +eUi +eUi +rZV +nfT +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +hlP +rtY +aLX +iRz +ssW +rSQ +czh +czh +czh +nrQ +rDW +kSL +snD +jMD +gjx +hOL +tkx +mRN +izC +sAH +oBI +fHn +oaj +sko +sCH +www +yju +pcu +pGw +pGw +bjj +www +qQd +xuQ +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(117,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +oso +yjZ +sHL +vsO +gEj +rKf +vsO +nwN +vsy +vsy +vsy +nHX +nHX +nHX +nHX +eCi +eCi +eCi +eUi +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +tCr +umm +lHu +iRz +ssW +rSQ +jMa +jMa +fKH +fvw +vzZ +rQs +poQ +wCW +vCn +xpn +oRY +czh +oqH +wLt +owr +qNk +jYt +dcF +swP +oCi +qkX +wFK +lwW +eXz +qlA +cZN +xiD +xuQ +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(118,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +voU +iuN +prr +hvf +jsH +dcc +vsO +frK +vsy +pEZ +iJV +nHX +nQy +eZp +nHX +kRE +mnJ +eCi +eUi +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +vit +mFh +mnU +iRz +eur +rSQ +llR +llR +pYN +sQy +sQy +sQy +xFs +wCW +tKI +nVa +oRY +aCB +vXe +njg +jQQ +owr +owr +dcF +moA +bjr +lco +ghc +wCi +uGg +kDn +cZN +gHa +xuQ +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(119,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +phR +ted +sHL +mjQ +uoJ +foi +vsO +frK +vsy +xNR +jSE +nHX +qWz +gSF +nHX +kuf +pip +eCi +eUi +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +mco +dTY +eQG +iRz +ssW +rSQ +wte +wte +pYN +gnh +hrb +sQy +sQy +fdd +lDV +mpr +fhZ +sif +cHo +lRO +nEH +nEH +nEH +hJf +owr +oCi +nLD +aRx +tnx +qIr +lRo +sTz +jvn +ost +oyt +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(120,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jeo +qcJ +hUi +vsO +fAs +fyx +vsO +frK +vsy +tbp +lfQ +nHX +hCH +evC +nHX +lLA +vWF +eCi +eUi +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +avc +ete +nMh +kHo +iRz +wiR +rSQ +pin +pin +lTf +edi +lLZ +qAl +jBt +nlu +nhO +fCz +rOZ +rOZ +jSV +xYe +iRO +iRO +gbo +uKQ +kSA +www +akD +oCi +oCi +www +www +www +vpt +xuQ +gnj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(121,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +wOI +uPW +kpu +ckz +geJ +qtt +vsO +frK +vsy +vsy +gng +nHX +nHX +oap +nHX +eCi +poi +eCi +nfL +xgJ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +dTo +iRz +hIG +mIN +rlH +vhP +qFi +rSQ +czh +xHV +dNj +hPH +uXk +tYZ +jxi +fdd +vvr +svU +rOZ +amf +wMd +tgt +gZW +iRO +owr +dcF +owr +lpl +bzm +cpO +cpO +xMN +gDm +hRS +dfy +xuQ +usV +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(122,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jeo +fpk +gVp +vsO +lBr +vsO +vsO +snR +oCM +kGU +gGz +cUk +hql +mka +vgR +qTZ +krQ +jwE +shJ +dYH +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +iZo +qrE +nNh +iRz +ssW +rvb +czh +wCW +wCW +wCW +fdd +fdd +wCW +wCW +oez +kJJ +rOZ +jnH +emy +xQX +uEs +iRO +owr +dUL +nEH +dNu +nvw +jvn +jvn +joH +aOB +skC +qaJ +xmV +uep +wfu +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(123,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ojo +fpk +gJy +cHi +nDH +cvD +cvD +hbK +slP +ebF +akW +whm +nNt +glo +pBF +pBF +tGx +kaw +vzj +tWw +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +fJU +iRz +iRz +iRz +ssW +lfJ +czh +jpc +lDU +ctq +okN +xZq +hms +okN +ats +ajN +rOZ +vNC +dZc +skD +ebY +iRO +fzS +kyf +oBa +fGH +kWi +obH +wfz +rEb +gDm +hRS +mfn +prZ +hqI +sGI +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(124,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +nZO +fpk +shI +cHi +frK +lTK +lTK +lTK +lTK +fvJ +pBF +pBF +ucc +fzt +fzt +fzt +fzt +nkM +fzt +fzt +fzt +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +iRz +aGO +iRz +uaM +rRG +ssW +uaM +czh +hKr +hIk +swU +rgC +duj +oeW +sQy +sCZ +wVX +rOZ +rOZ +rOZ +rOZ +rOZ +rOZ +hRS +hRS +hRS +hRS +hRS +hRS +hRS +hRS +hRS +hRS +hRS +bBj +hRS +hRS +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(125,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +mya +hHB +mya +mya +mya +mya +mya +ucG +lyh +ucG +csc +frK +lTK +lxR +vDI +lTK +xbW +fTZ +fTZ +lAZ +fzt +tCa +kBh +gkp +pOd +cPw +kpP +xUb +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cwz +uaM +hyo +mZM +tKR +tnW +iEN +czh +oJV +sQy +tEY +sQy +fyP +ljj +sQy +czG +qvE +xuR +mJW +ruI +kgH +ruI +vzl +qKM +nAk +mCa +tNz +tZO +dkn +tmn +sCL +sCL +sCL +sCL +sCL +irW +uTe +wXY +yer +ost +ost +ovQ +inG +kJv +rwb +liC +knM +uJo +jUe +diO +abj +okl +okl +ctv +ctv +ctv +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(126,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ciM +dFt +gRW +mTl +wRa +nHU +nic +jtR +eBs +bok +csc +frK +lTK +gaF +sns +oiz +syk +pBF +pBF +lAZ +fzt +xqo +dvE +nRV +sun +uXC +wNW +cPw +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +rSO +qwa +kwn +onZ +onZ +rnB +weh +czh +pcH +sQy +sQy +sQy +sQy +sQy +sQy +sCZ +ofG +ltU +dIv +dIv +qdL +dIv +dIv +lAc +lAc +lAc +lAc +hBR +epX +wdp +sCL +kKc +kKc +kKc +kKc +okl +hRS +hRS +lcA +mTM +mgo +ieu +iDi +hRS +bSi +bzm +knM +uJo +uJo +uJo +abj +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +ctv +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(127,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +vXv +wRN +mYU +tjK +mZP +tpJ +tWJ +pBw +ciI +csc +csc +nwN +lTK +aha +kXV +lTK +piI +pBF +pBF +jIn +fzt +wqU +ngC +uEz +fzt +fzt +fzt +cPw +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cwz +cwz +dOW +jkO +ttI +din +nua +jXu +hhb +pyf +teK +sDC +sDC +sDC +sDC +nfv +gAv +oDW +wYg +rFy +lQl +eNx +dmM +hBR +hBR +hBR +rao +kZs +ioX +aKv +acU +uUK +fwZ +wTr +kKc +okl +okl +vOK +vOK +vOK +vOK +lfS +rKM +vOK +vOK +vOK +knM +knM +knM +knM +knM +ctv +uJo +ctv +ctv +ctv +uJo +ctv +ctv +ctv +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(128,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +hTj +cUl +aVJ +aVJ +vcn +tpJ +dHP +pBw +rFW +csc +xYB +frK +lTK +lTK +lTK +lTK +knH +fTZ +fTZ +lAZ +fzt +wqU +cPw +uEz +fzt +eyh +qLp +cPw +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cwz +aYo +onZ +onZ +onZ +ruT +czh +qez +qez +qcU +qez +fPp +sQy +sQy +sQy +aPw +xuR +hBR +oHS +hMv +tcq +dmM +hBR +aSY +boZ +kqn +boZ +qWG +pKF +lvJ +qxL +uQh +nOI +kKc +okl +okl +vOK +kIR +osF +hmP +kxj +rSr +sJS +vOK +okl +okl +okl +okl +jUe +knM +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +okl +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(129,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +pme +mBQ +uxZ +shx +jTJ +xph +kkj +oHq +uzy +csc +sdO +wZJ +iRP +ngW +wsa +iRP +ffR +pBF +pBF +dND +fzt +fzt +fzt +rSh +fzt +fzt +fzt +gtt +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cwz +jGh +jkO +jkO +jkO +bZm +czh +wCW +ifa +ogL +ifa +wCW +sWC +sQy +sQy +bIr +xuR +hBR +oHS +uaR +hBR +dmM +hBR +hBR +nVv +kHk +boZ +gnD +xuR +sCL +kKc +kKc +kKc +kKc +okl +okl +vOK +nVi +qqJ +qqJ +xAk +qqJ +iZZ +vOK +jki +jki +vOK +okl +okl +knM +jUe +jUe +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(130,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +lNb +kqb +aVJ +aVJ +vcn +tpJ +tWJ +pBw +eIX +csc +qCR +aAd +iRP +iJU +xBN +rpT +emG +knY +agy +lDc +fzt +jZL +jZL +apT +fzt +foV +sMG +cPw +fzt +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cwz +oHn +onZ +onZ +onZ +liW +czh +fOI +rlt +nJW +bDT +wCW +wCW +its +sQy +gXu +lSC +dcU +oHS +uaR +hBR +dmM +hBR +hBR +nVv +qyo +kZs +pQl +aKv +acU +uUK +pvJ +uXD +kKc +okl +vOK +vOK +cbg +pad +hpE +xAk +hpE +qqJ +hpE +qqJ +hIW +jki +okl +jUe +knM +okl +okl +okl +okl +okl +uJo +okl +okl +abj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(131,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +krN +qCu +wOu +uOB +flZ +tpJ +tWJ +pBw +mKt +csc +pVp +boI +iRP +dGG +tla +iRP +hXu +aNQ +xLn +nXo +qMi +tBm +nyb +aPp +fzt +fzt +fzt +gJs +fzt +wyU +gKK +wyU +gKK +wyU +gKK +wyU +gKK +wyU +gKK +wyU +wyU +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qUv +czh +wrp +sQy +bpb +sQy +emi +ifa +sbr +nQL +pWS +xuR +kcs +ryv +uaR +hBR +iDU +hBR +hBR +hog +kqn +boZ +ofI +pKF +lvJ +qxL +woH +sTU +kKc +okl +jki +fsS +pEr +gDH +hpE +iad +hpE +hpE +hpE +qqJ +jqf +jki +okl +jUe +knM +jUe +jUe +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(132,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +xJZ +xMl +kJP +lKx +hXd +xBf +tWJ +uDM +kse +csc +tkF +aAd +iRP +iRP +iRP +iRP +ifw +rQK +hct +ifw +fzt +gLf +gLf +nnS +fzt +sre +lID +cPw +fzt +qTh +qTh +pJD +qTh +oOl +qTh +pJD +qTh +qTh +qTh +vJX +gKK +rjN +qCi +wsQ +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +coG +czh +hgF +tZv +fax +nVa +rkr +ifa +sbr +xPi +etv +xuR +xoO +ryv +uaR +hBR +dmM +hBR +aSY +wGc +hlH +boZ +mAQ +xuR +sCL +kKc +kKc +kKc +kKc +okl +jki +rOD +jeM +gDH +qqJ +xAk +hpE +hpE +hpE +qqJ +sRd +jki +okl +jUe +knM +okl +okl +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(133,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +egl +egl +nPJ +dVL +gGJ +mya +csc +csc +igT +csc +ruP +sFN +ieL +uOF +gLU +lQP +kbd +gDf +lEk +vac +jDX +fzt +fzt +fzt +fzt +fzt +fzt +fzt +fzt +qTh +qTh +vMB +qTh +qTh +qTh +tqC +qTh +qTh +qTh +nmn +wyU +diZ +qCi +rjN +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +czh +srt +sQy +sDC +sQy +emi +ifa +mLU +sQy +oOd +xuR +ggv +pEc +uaR +hBR +dmM +hBR +hBR +mJp +waf +jkN +qri +uJb +jKc +fUi +qrA +kqT +kKc +okl +jki +fYt +pGW +fph +iRl +hdy +kEW +kEW +qQJ +qQJ +rUS +jki +okl +okl +knM +jUe +jUe +okl +okl +okl +wrE +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(134,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +uGm +uGm +uGm +uGm +uGm +uGm +iHw +iuL +xYm +iuL +tyd +lpa +jDX +kiq +swY +wvu +wvu +vZQ +mWC +vQj +cEK +eKQ +uua +tBx +fKK +uua +uua +sgL +qTh +qTh +qTh +tIx +qTh +qTh +qTh +tIx +qTh +qTh +qTh +jeV +gKK +sKN +lUG +huq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +czh +eHw +kAd +mBY +doD +bqC +bqC +fPK +gCb +vYw +bqC +kDW +stL +lbI +xrX +kxQ +xrX +xrX +xrX +xJD +xrX +eiv +uLa +otN +vxc +qDi +tLQ +kKc +okl +vOK +vOK +wBS +skS +wvT +gxy +dal +rNp +hpE +hpE +vtv +jki +okl +jUe +knM +jUe +jUe +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(135,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cvD +kIJ +wsy +wsy +gtk +wsy +nrM +wNC +xYm +eFI +roD +dtl +jDX +mYJ +meK +hkh +mHk +mHk +tpq +szV +eJE +gTs +pwz +pwz +fKK +fKK +qNK +sgL +qTh +qTh +qTh +tIx +qTh +qTh +qTh +tIx +qTh +qTh +qTh +nFX +wyU +eXu +qCi +rjN +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +eur +iqh +bqC +fPK +lNU +fPK +bqC +qPB +gof +mNi +ufY +fPK +hBR +ryv +qrj +hBR +leI +hBR +hBR +hBR +kHk +xrX +nfK +xuR +aEB +kKc +kKc +kKc +kKc +okl +okl +vOK +vOK +vOK +gnf +gxy +hpE +hpE +hpE +dQX +olC +jki +okl +jUe +knM +jUe +jUe +okl +jUe +jUe +egT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(136,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +nhD +nks +ipO +tyw +gvx +gCs +wBx +xgJ +xgJ +vgI +xgJ +jDX +rzI +meK +exO +nwX +uBx +mim +dud +tTl +eKQ +fxM +miG +jbT +nZY +uua +sgL +qTh +qTh +qTh +tIx +qTh +qTh +qTh +tIx +qTh +qTh +qTh +uLL +gKK +fXf +qCi +lXM +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +hNp +hNp +hNp +hNp +uwQ +hNp +wvh +oUG +cGv +dQE +raf +ryv +jks +hBR +dmM +hBR +hBR +hBR +ezz +kZs +mGL +tzf +fcQ +uUK +qov +gHt +kKc +okl +okl +cwz +hYU +vOK +vOK +bKS +hpE +qqJ +vOK +vOK +vOK +vOK +vOK +vOK +knM +okl +okl +okl +okl +okl +uJo +okl +okl +abj +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(137,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +niY +cHl +fYR +fYR +nXI +crk +aAd +xgJ +hdK +iIg +mDM +jDX +pKZ +meK +exO +gNb +fxe +mim +fGU +rxP +gTs +pwz +sHR +sgL +sgL +sgL +sgL +pPg +pPi +tIx +tIx +tIx +pPi +tIx +tIx +tIx +pPi +tIx +mlD +fNU +fXf +qCi +wSa +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +izA +izA +izA +izA +izA +izA +bQP +hWx +uSZ +fPK +hBR +ryv +jks +mSp +dmM +hBR +hBR +aSY +kqn +boZ +tVb +ofP +jIH +qxL +qhL +fuC +kKc +okl +cwz +cwz +uaM +lTh +vOK +qfG +hpE +nft +vOK +hpE +hpE +hpE +hpE +ljA +knM +jUe +okl +jUe +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(138,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +qLj +vba +fYR +fYR +xgJ +iKJ +aAd +xgJ +qMA +eHY +mSX +jDX +eQJ +meK +jKr +dgY +dgY +qmm +meK +wQF +aWK +jlk +oKN +xQv +jKi +nPj +hsJ +qTh +qTh +qTh +tIx +qTh +qTh +qTh +tIx +qTh +qTh +qTh +jEz +gKK +fXf +lMG +vFp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +plk +oPl +oPl +oPl +oPl +oPl +bQP +bWR +spC +wXK +hBR +ryv +jks +tcq +dmM +hBR +hBR +hBR +kHk +boZ +ubH +xuR +aEB +kKc +kKc +kKc +kKc +okl +cwz +kJE +jZl +oEI +mfb +wXl +hpE +qqJ +qUP +xuu +hpE +hpE +hpE +dFu +knM +jUe +okl +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(139,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sMY +kHq +nru +fYR +fYR +xgJ +xgJ +esy +xgJ +xgJ +xgJ +xgJ +jDX +lOf +meK +qhN +jiR +jiR +xSc +gTp +pQr +jDX +hxr +wsg +wsg +rYX +eMa +gmB +qTh +qTh +qTh +tIx +qTh +qTh +qTh +tIx +qTh +qTh +qTh +cnH +qGd +lCC +qCi +vFp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +izA +izA +izA +izA +izA +izA +bQP +qhs +xoC +fPK +jCr +ryv +jZO +hBR +wVT +hBR +hBR +hBR +mzK +kZs +ugT +tzf +fcQ +uUK +hpO +lKX +kKc +okl +cwz +mKA +djH +lTh +vOK +sFl +hXn +tjz +vOK +hpE +hpE +hpE +hpE +ljA +knM +jUe +okl +jUe +jUe +jUe +uJo +uJo +uJo +uJo +wrE +uJo +uJo +jUe +okl +jUe +jUe +jUe +jUe +jUe +uJo +uJo +uJo +uJo +uJo +uJo +uJo +wrE +uJo +uJo +uJo +uJo +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(140,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ueY +wfN +kYV +mzh +mzh +tcP +usc +aAd +aAd +bHT +sAs +sAs +rLM +nXD +nCL +aqG +rCa +lOt +uOY +qdd +eSV +jDX +fmT +wsg +eMa +xTB +wsg +jXb +qTh +qTh +qTh +vMB +qTh +qTh +qTh +tqC +qTh +qTh +qTh +mlK +wyU +rjN +qCi +vFp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +izA +izA +izA +izA +izA +izA +bQP +sTd +rCC +mgn +raf +ryv +cja +hBR +dmM +hBR +hBR +aSY +kqn +boZ +uyA +ofP +lvJ +qxL +cwG +daE +kKc +okl +cwz +bRd +vZb +lTh +vOK +rKM +kzR +vOK +vOK +vOK +vOK +vOK +vOK +vOK +knM +jUe +sSY +okl +okl +okl +wrE +jUe +jUe +jUe +jUe +jUe +uJo +uJo +uJo +wrE +wrE +uJo +uJo +wrE +uJo +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +uJo +wrE +uJo +uJo +uJo +uJo +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(141,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +okl +tOc +viN +nQD +nQD +nQD +viN +nQD +nQD +tcP +nvH +vba +aAd +oIU +oIU +fVo +xfg +fiI +fiI +pVc +eKQ +eKQ +ilW +dSJ +dSJ +loZ +xgY +pmE +kvo +wCB +wsg +uNS +qTh +qTh +qTh +nFM +qTh +qTh +qTh +tIN +qyM +qTh +qTh +fNN +gKK +heq +qCi +kbs +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +sDf +izA +izA +izA +izA +izA +bQP +sTd +asX +mgn +raf +ryv +cja +hBR +dmM +hBR +hBR +hBR +kHk +boZ +vUq +xuR +sCL +kKc +kKc +kKc +kKc +okl +cwz +szn +vhy +lTh +vOK +pZj +tgK +frM +hdg +jUe +okl +jUe +okl +okl +knM +jUe +okl +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +okl +wrE +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(142,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +cZf +cZf +cZf +cZf +cZf +okl +atf +viN +nQD +nQD +nQD +viN +nQD +nQD +tcP +sAs +vba +aAd +aAd +aAd +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +asf +tgA +wyU +wyU +wyU +wyU +wyU +wyU +upb +upb +upb +raF +raF +qvs +qvs +raF +raF +hQe +pHo +xFc +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +plk +oPl +oPl +oPl +oPl +oPl +bQP +hWx +kmr +bqC +eGX +ryv +cja +hBR +ley +hBR +hBR +hBR +jfn +kZs +kdk +tzf +acU +uUK +bkR +kWL +kKc +hmg +aih +uaM +mcd +rvb +vOK +tgK +tgK +jMu +hdg +jUe +okl +jUe +okl +okl +knM +okl +okl +jUe +jUe +jUe +egT +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +wrE +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(143,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +okl +atf +viN +nQD +nQD +nQD +viN +nQD +nQD +xgJ +btx +xgJ +cQV +cQV +krC +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +nZh +hHO +wyU +pTW +sgj +lYL +gEV +wyU +qlm +wXI +efD +raF +ptV +kqS +scT +mUw +raF +enI +nBE +vFp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +izA +izA +izA +izA +izA +izA +bQP +sTd +asX +sSM +raf +ryv +cja +hBR +hBR +hBR +hBR +aSY +kqn +boZ +dwm +ofP +lvJ +qxL +roW +jjE +kKc +okl +aih +dUw +vhy +lfJ +vOK +cMk +sad +xws +meF +ikT +okl +jUe +okl +okl +knM +okl +jUe +jUe +okl +okl +sIr +sIr +sIr +sIr +sIr +okl +jUe +okl +okl +okl +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +okl +okl +okl +jUe +okl +bTF +okl +jUe +okl +okl +okl +jUe +jUe +jUe +okl +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(144,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +atf +viN +nQD +nQD +nQD +viN +nQD +nQD +xgJ +sKP +xgJ +mzh +mzh +plN +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +fKK +wMD +gMI +xPM +ptb +bRX +bpG +eXT +vuv +bpG +sTJ +acR +raF +rHF +nJw +wGA +xJW +raF +mmZ +qCi +vFp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +oQQ +oQQ +oQQ +oQQ +upj +oQQ +ipI +dRA +cMD +fPK +hBR +ryv +cja +hBR +hBR +hBR +hBR +hBR +kHk +boZ +ebh +xuR +sCL +kKc +kKc +kKc +kKc +okl +aih +hYU +vhy +rSQ +vOK +ljA +ljA +ljA +hdg +okl +noD +okl +okl +okl +knM +okl +okl +okl +okl +sIr +sIr +mtS +mtS +mtS +sIr +sIr +sIr +sIr +sIr +okl +okl +okl +okl +sIr +sIr +sIr +sIr +sIr +sIr +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +jUe +uJo +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(145,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +tOc +viN +viN +viN +viN +viN +viN +viN +xgJ +wSQ +xgJ +fYR +fYR +gpg +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +wMD +hHO +wyU +woB +uoi +bMF +tBk +wyU +lEm +mch +aDH +raF +ykb +vCN +sYi +gzb +raF +sKN +qCi +kCy +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +ssW +iqh +jiC +iqh +iqh +iqh +iqh +iqh +iqh +iqh +iqh +iqh +hBR +ryv +cja +mSp +hBR +hBR +hBR +hBR +kHk +kZs +aND +tzf +acU +uUK +puJ +mbe +kKc +okl +cwz +hYU +vhy +rSQ +okl +jUe +jUe +jUe +okl +okl +iyy +abj +knM +knM +pbA +okl +jUe +jUe +okl +sIr +mtS +mtS +eBS +mtS +mtS +mtS +mtS +mtS +sIr +sIr +sIr +sIr +iPF +sIr +mtS +dCE +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(146,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +tOc +tOc +tOc +atf +atf +atf +tOc +tOc +uGm +uaw +uGm +cQV +cQV +ikq +oRC +dMV +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +pvd +qce +sbF +asf +gZv +wyU +wyU +sqQ +mch +aWO +raF +raF +qvs +raF +raF +wKO +nJw +sYi +lWu +raF +rjN +qCi +rjN +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jFQ +qhW +rco +rco +rco +rco +rco +rco +rco +mth +hnl +kXo +pBp +eIJ +flM +tcq +hBR +hBR +hBR +aSY +kqn +tdX +cyM +ofP +lvJ +qxL +mBN +fOB +kKc +okl +cwz +lTh +kME +rSQ +okl +jUe +jUe +jUe +okl +jUe +wBd +cuj +ttB +cuj +cuj +jUe +jUe +jUe +okl +sIr +mtS +dCE +mtS +mtS +mtS +mtS +dCE +mtS +jxK +mtS +mtS +dCE +mtS +mtS +cva +cva +cva +cva +cva +cva +cva +cva +nDF +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(147,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +jUe +okl +jUe +okl +jUe +okl +okl +abj +abj +tcP +fYR +fYR +plN +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +asf +rNf +hlh +cKR +sIy +fme +ubo +raF +wVQ +vVQ +rkK +oZI +pXx +nJw +sYi +tCD +raF +fPR +qCi +lXM +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +fhw +kJE +fhw +cwz +dgP +eov +gzA +iCB +hBR +ryv +tNV +raf +hBR +hBR +hBR +hBR +kHk +aSY +lLL +eFo +sCL +kKc +kKc +kKc +kKc +okl +cwz +lTh +vhy +aih +okl +jUe +jUe +jUe +okl +jUe +wBd +cuj +eTW +rEk +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cva +cva +cva +cva +qqV +sFf +nsg +tJo +sFf +xYC +uhB +etb +iSF +cva +cva +cva +okl +okl +okl +wrE +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(148,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +okl +okl +jUe +jUe +jUe +tcP +mzh +mzh +plN +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +fKK +asf +rNf +xXf +xXf +xXf +xXf +xXf +raF +kjn +elN +gYq +tkN +ouS +qeu +oLo +lMn +hCb +fbM +yht +rjN +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +wEn +mAz +kpp +thy +jMk +fHx +uvl +jzV +hBR +hBR +hBR +lXs +kZs +ulg +tzf +iGv +uUK +wdx +igj +kKc +okl +cwz +lTh +vhy +aih +okl +okl +okl +okl +okl +fpL +pIG +fpL +uAn +mjr +cuj +fOG +owu +tjw +apn +nvy +cuj +xcG +dZo +uIG +pqj +cuj +cvk +jtY +fZI +nNL +kgb +qrO +fZI +jtY +jtY +itS +hKj +scf +fyd +fxI +hXZ +hXZ +bHb +hXZ +hXZ +msu +ylw +iSF +cva +cva +cva +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(149,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +okl +okl +okl +okl +tcP +fYR +fYR +plN +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +asf +rNf +wsg +xXf +hEm +cwO +ppg +kWF +kjn +niC +gfH +cYN +odO +odO +heI +iQe +etm +xTX +qCi +rjN +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +eov +tmn +tmn +tmn +tmn +ibs +tmn +tmn +hJq +hBR +hBR +iNd +aCq +fbS +uJb +jwg +lfq +nts +igj +kKc +okl +cwz +uaM +ugc +rSQ +okl +jUe +jUe +jUe +okl +fpL +ePF +aYn +hPu +rwq +cuj +cOY +two +fDC +vKp +cZH +cuj +hfc +ydp +hfc +uCD +qwo +cvk +pTq +dXq +pTq +cvc +pTq +dXq +pTq +dXq +cva +uoX +uWs +fyd +fxI +piz +cva +cva +sWY +cva +qjj +cva +fZb +cva +cva +cva +jUe +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(150,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +okl +okl +jUe +okl +jUe +jUe +wzI +uGm +uGm +uGm +qVx +oRC +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +vjf +qce +uua +asf +rYX +wsg +qEh +fxi +ksc +vgX +raF +fUB +tIl +qDZ +rts +uUX +qFH +quQ +quQ +raF +fNz +cPM +taV +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +sAx +fJx +fJx +fJx +fJx +gau +qfJ +kFg +jcq +hBR +hBR +jvz +tmn +tmn +tmn +qpI +kKc +kKc +kKc +kKc +okl +cwz +uaM +vhy +rSQ +okl +jUe +jUe +jUe +okl +fpL +ylQ +aYn +xFx +mRk +cEq +mRk +gHX +fhA +xhQ +mRk +jMo +mRk +wid +tmY +mRk +fvF +sBR +vdy +vdy +vdy +ktD +vdy +vdy +vdy +vdy +kiT +xkw +xkw +jxF +ejh +eKO +cva +uEb +iRG +vfA +ruC +cva +eFT +ole +ole +ole +ddd +okl +okl +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(151,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +jUe +okl +jUe +okl +jUe +jUe +okl +qpI +mtS +uGm +wwD +xJc +xfg +xfg +xfg +vFM +eKQ +eKQ +cYv +loZ +loZ +loZ +fiz +brx +aYd +qQu +wsg +xXf +xXf +aKz +xXf +raF +raF +raF +qvs +raF +qvs +raF +qvs +raF +raF +gEc +fUD +pix +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +vhp +mdz +sTW +iBU +hEb +xpH +jkT +wDr +dke +tEP +qpI +ivr +qpI +qpI +okl +okl +fLS +uaM +ugc +fLS +okl +okl +okl +okl +okl +fpL +iFx +aYn +vGh +izx +cuj +wWI +two +fvO +vdB +pUf +cuj +nUp +oWF +nUp +uCD +vGh +cvk +qYl +sbH +qYl +hkD +qYl +sbH +qYl +sbH +fVv +rjE +xpp +fyd +xBY +gDK +cva +cva +vMn +cva +daK +cva +iSF +cva +cva +cva +jUe +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(152,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +jUe +okl +qpI +mtS +uGm +aAd +ekE +fBE +tDg +jDX +qUS +sTG +sTG +fOR +jDX +uua +fKK +uua +uua +asf +rNf +xKu +xKu +xKu +bLR +aku +quP +aku +quP +aku +quP +aku +quP +aku +aku +lsd +hti +fUD +icm +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +xrA +tmn +tmn +tmn +wtA +tmn +tmn +tmn +tmn +cwz +cwz +cwz +cwz +cwz +cwz +cwz +hvw +vhy +rSQ +jUe +jUe +jUe +jUe +okl +fpL +fpL +fpL +fpL +mjr +cuj +cuj +kJq +luZ +mYP +clN +cuj +icC +eMn +nGt +erQ +cuj +cvk +jtY +uCA +jtY +kEh +iAc +uCA +jtY +jtY +mKG +kih +dqb +fyd +xBY +wDk +wDk +par +wDk +wDk +abg +nya +iSF +cva +cva +cva +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(153,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +wrE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +okl +okl +okl +okl +qpI +qpI +uGm +sAs +xgJ +aAd +adL +jDX +dhK +qES +fxo +eSM +jDX +uua +sgL +sgL +sgL +sgL +nYX +sgL +vLg +vLg +vLg +aku +quP +aku +dRG +aku +quP +aku +dRG +aku +aku +lsd +ces +uHs +pyp +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +fWP +lwL +oev +fbD +sml +cwz +lfJ +iLI +kJE +cwz +loG +wiN +cwz +cwz +hYU +sAi +kvY +xSB +rSQ +qZG +okl +okl +okl +okl +uJo +jUe +jUe +jUe +jUe +yhR +cuj +hNS +lWd +fOG +cuj +cuj +cuj +cuj +cuj +cuj +cuj +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cvk +cva +cva +cva +cva +vXZ +sFf +nsg +okF +rPL +rtJ +rUm +sFf +xYC +cva +cva +cva +okl +okl +okl +uJo +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(154,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +mdE +jUe +jUe +okl +jUe +jUe +jUe +uGm +sAs +bHT +aAd +wzx +jDX +rcD +ldR +rbg +iNP +jDX +obF +sgL +xnp +eEY +sgL +rNf +fYT +eSi +qZx +vLg +vLg +vLg +vLg +vLg +rJb +vLg +rJb +vLg +rJb +vLg +hux +ces +fUD +sdf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +dQK +vmv +cZv +rbw +uaM +cwz +mCW +uaM +uaM +cwz +uaM +uaM +til +cwz +cwz +sYI +rSQ +rSQ +rSQ +okl +jUe +jUe +jUe +jUe +uJo +jUe +jUe +jUe +jUe +okl +cuj +lVz +ulW +ppZ +cuj +mtS +dCE +mtS +mtS +mtS +mtS +dCE +mtS +oqx +mtS +mtS +dCE +mtS +mtS +cva +cva +cva +cva +cva +cva +cva +cva +dbd +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(155,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +jUe +jUe +okl +jUe +jUe +abj +pwz +sgL +sgL +gjN +sgL +sgL +sgL +sgL +pSf +sgL +sgL +wsg +sgL +qUt +wOb +sgL +lgk +mOF +vLg +tiH +dpn +vLg +eZK +vLg +lRn +njx +qgm +scK +ewY +lxb +lXX +vLg +lsd +qQw +lsd +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +lmy +rbw +uaM +cwz +sfU +dUw +uaM +cwz +cwz +qAj +uaM +uaM +lTh +cVL +rSQ +okl +jUe +okl +jUe +jUe +jUe +jUe +uJo +jUe +jUe +jUe +jUe +okl +cuj +qJK +lEc +eMW +cuj +mtS +mtS +eBS +mtS +mtS +mtS +mtS +mtS +sIr +sIr +sIr +sIr +sIr +sIr +mtS +dCE +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(156,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +mdE +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +okl +okl +okl +okl +okl +abj +iAC +wMO +phY +xKu +xKu +ltV +xXA +xXA +xow +wsg +wsg +owT +sgL +hXO +nRZ +sgL +oPR +rNf +vLg +tST +iMq +vLg +ses +eZK +ses +hQQ +scK +scK +lxb +lxb +lxb +rJb +ces +fUD +ces +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cFb +rbw +oAZ +cwz +uaM +uaM +qdv +bFH +cwz +uaM +uaM +uaM +lTh +vhy +aih +okl +jUe +okl +jUe +jUe +jUe +okl +uJo +okl +jUe +jUe +jUe +okl +cuj +cuj +cuj +cuj +cuj +sIr +mtS +mtS +mtS +sIr +sIr +iPF +sIr +sIr +okl +okl +okl +okl +sIr +sIr +sIr +sIr +sIr +sIr +cva +cva +cva +cva +cva +cva +cva +cva +cva +cva +okl +jUe +jUe +jUe +uJo +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(157,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +okl +jUe +jUe +okl +jUe +jUe +eTh +pwz +pwz +pwz +eGR +mMO +ltV +oXD +tKw +xow +oPs +icf +oPs +sgL +hxG +sgL +sgL +fYT +fGL +peZ +lty +eeB +vLg +ses +eZK +ses +qxB +qyE +qyE +fEx +hvi +iEd +ftR +cOf +lcv +ces +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +xvG +ecg +rTb +hSo +yjX +yjX +xhN +xhN +spw +mkS +duN +kvY +kvY +xSB +aih +okl +okl +okl +okl +okl +okl +okl +abj +okl +okl +okl +okl +okl +rXX +okl +okl +okl +okl +sIr +sIr +sIr +sIr +sIr +okl +jUe +okl +okl +okl +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +okl +okl +okl +jUe +okl +ufR +okl +jUe +okl +okl +okl +jUe +jUe +jUe +jUe +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(158,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +okl +okl +okl +okl +okl +okl +hOP +hOP +pwz +sgL +sgL +nPZ +toK +qkP +qkP +qkP +toK +sru +sgL +wsg +tvX +uUG +ecj +waB +vLg +xds +iUg +vLg +ses +eZK +ses +eZK +ses +ses +trr +bhs +lSq +haO +ces +gzv +aGy +osW +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jsB +rbw +uaM +cwz +uaM +uaM +uaM +uaM +cwz +klI +uaM +dUw +uaM +hYU +aih +okl +jUe +jUe +jUe +okl +jUe +okl +uJo +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +gcr +gcr +gcr +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +uJo +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(159,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +mdE +mdE +okl +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +jUe +jUe +okl +jUe +cxN +aof +aof +aof +aof +vHz +rIl +xXA +unk +uua +uua +uua +kye +hgW +yfc +oNq +wnY +yfK +fqh +euc +vLg +uWS +lBg +vLg +eZK +eZK +hNG +eZK +eZK +eZK +trr +rRP +pnV +rJb +ces +fUD +ces +ovL +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +jsB +rbw +uaM +cwz +msR +szn +uaM +uaM +cwz +wVN +uaM +uaM +kJE +nem +rSQ +okl +jUe +jUe +jUe +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +fdg +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +uJo +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(160,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +okl +jUe +jUe +cxN +cxN +cxN +uPP +oIl +vWA +aof +gue +wsg +xXA +qEz +uua +uua +uua +asf +wsg +wsg +lrE +scI +scI +gYM +vLg +vLg +cJF +aas +vLg +tLY +eZK +ses +eZK +ses +ses +trr +bhs +pnV +rJb +ces +fUD +ces +xUL +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +fkU +vNc +rco +ony +bTd +uaM +cwz +uaM +uaM +uaM +hYU +cwz +klI +uaM +oAZ +cwz +cwz +rSQ +rnS +nQR +jUe +jUe +okl +jUe +jUe +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +uJo +wrE +wrE +okl +uJo +uJo +uJo +wrE +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +uJo +uJo +fID +uJo +wrE +uJo +uJo +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(161,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +vew +hnU +hnU +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +hnU +hnU +hnU +hnU +vZx +qVs +mSn +vLr +mse +nau +wCG +xXA +xXA +xXA +qEz +fKK +fKK +fKK +sgL +uiX +sLu +sgL +uua +uua +iHG +vLg +iUw +pGq +ubM +jKJ +ses +eZK +ses +eZK +ses +ses +trr +xiW +kbE +hPN +sjf +fUD +vWn +hhq +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +hAR +ssW +iHJ +bTd +uaM +vje +cwz +uaM +dym +uaM +hYU +cwz +hTC +uaM +uaM +vBM +uaM +gqb +huD +abj +okl +okl +okl +okl +okl +uJo +jUe +jUe +uJo +wrE +wrE +uJo +uJo +uJo +wrE +okl +okl +wrE +uJo +uJo +uJo +uJo +uJo +jUe +okl +jUe +jUe +jUe +jUe +jUe +wrE +okl +wrE +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +uJo +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(162,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +okl +jUe +jUe +cxN +cxN +cxN +sqW +tpE +xcM +gSZ +ueC +wsg +xXA +qEz +uua +uua +uua +iof +vxo +hOM +iof +fKK +fKK +iHG +vLg +eyo +iwz +ddN +haO +olN +olN +olN +olN +olN +olN +lec +kWD +loj +rrd +gfO +vsH +qiX +wtB +wtB +rIZ +hni +jIe +jAj +mBK +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +uaM +uaM +cgn +eaj +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +cZf +eaj +iYD +rbw +uaM +uaM +oAZ +cwz +cwz +cwz +cwz +cwz +cwz +xlh +cwz +cwz +bUv +bUv +bUv +vcH +vcH +bUv +bUv +bUv +jUe +jUe +uJo +uJo +uJo +uJo +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(163,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +wrE +mdE +sJK +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +jUe +jUe +okl +jUe +cxN +aof +aof +aof +aof +esA +sgL +xXA +sZf +uua +uua +uua +iof +lNu +bsf +sgL +uua +uua +iHG +vLg +fob +sAF +xHb +jKJ +kdE +kdE +gVN +kdE +whW +kdE +gNf +wyo +qbN +vsk +vJf +pbN +dsh +jvm +nxH +fmD +uUT +fmD +bjY +grw +fmD +uUT +fmD +mYI +fOW +qlU +sSl +wIV +fJx +fJx +fJx +ecQ +trs +trs +trs +trs +fMY +fjE +oEA +rco +rco +rco +rco +rco +iui +rco +rco +rco +rco +oEA +rco +xsq +dgU +qwa +qwa +qwa +wnA +qwa +qwa +qwa +qwa +wnA +pJB +bNg +hhK +bUv +mEo +tAI +goc +goc +cni +tlZ +gSt +jUe +jUe +uJo +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(164,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +okl +okl +okl +okl +okl +okl +okl +pwz +eGR +wsg +sgL +aJC +diT +pxB +pxB +pxB +sgL +iof +iof +sgL +vdD +bNN +jOa +vLg +vLg +vLg +vLg +vLg +vLg +rJb +vLg +rJb +vLg +rJb +vLg +tzi +vLg +vLg +lsd +nVD +lsd +nyJ +rnt +nyJ +nyJ +nyJ +nyJ +nyJ +cQu +cQu +cQu +cQu +hiP +nvA +hLL +cwz +mxB +rvb +uaM +cXi +onZ +onZ +onZ +tQK +onZ +dgy +cwz +lTh +fTD +whP +hYU +uaM +ssW +ehF +uaM +uaM +uaM +cwz +uaM +uaM +kJE +uaM +uaM +uaM +cwz +uaM +lTh +uaM +uaM +cwz +bBb +gzS +nrf +bUv +iZB +ljX +ljX +ljX +wnV +wnV +wnV +qZG +okl +okl +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(165,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +pwz +wsg +wsg +sgL +xXA +knc +uua +uua +uua +nwy +uua +uua +uua +asf +vxw +dLV +jET +jET +bQE +jET +iKb +jET +jET +bQE +jET +jET +xzj +kjN +kqL +jGi +vVz +tbN +oCA +sSd +nyJ +cPN +cMf +ibF +uvk +kam +mpQ +gfc +rYL +sTP +cQu +ekk +dza +vuD +vuD +vuD +vuD +eHx +eHx +eHx +eHx +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bQN +xCx +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +iIh +lkE +gzS +nrf +bUv +hey +orb +uph +goc +wBL +xfo +wnV +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(166,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +pwz +wsg +sgL +sgL +xXA +qEz +uua +uua +uua +nwy +uua +uua +uua +qqs +vxw +aJG +jGi +jGi +jGi +jGi +xub +jGi +jGi +jGi +jGi +jGi +rBO +jGi +jGi +jGi +ozP +tbN +mYH +oLh +goo +pvK +vjJ +tKu +hWT +gTi +mpQ +vhn +mzG +tpK +cQu +kSn +bkA +vuD +dqn +hrF +qzP +eHx +wnL +rpR +yea +hdv +xlN +hdv +nBn +xlN +hdv +bDb +loB +vTL +rVj +kbP +nMF +lJc +nMF +nMF +nMF +nMF +nMF +gGj +nMF +nMF +nMF +dbF +nMF +nMF +nMF +qKu +boC +lkE +gzS +sym +xZa +aaD +iMV +bmz +mhd +gPd +jWL +tWi +rcE +cDk +cDk +cDk +cDk +hCV +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(167,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +okl +okl +okl +okl +okl +okl +okl +pwz +gbg +wsg +agI +xXA +ujd +tZt +uua +uua +nwy +uua +uua +uua +sgL +fGI +sgL +fSo +jGi +jGi +jGi +xub +jGi +jGi +jGi +jGi +jGi +rBO +jGi +jGi +jGi +aCF +pzE +jbG +wdk +goo +khw +pgt +eZL +kLb +oed +mpQ +bMH +mzG +vOd +cQu +eGS +ozt +vuD +foZ +gkq +vYr +eHx +kDS +qyC +rBI +hdv +xlN +hdv +hdv +xlN +hdv +bDb +bXi +rVj +rVj +reT +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +qKu +jVr +lkE +gzS +uJR +jXO +oex +hdb +wkR +jPW +wkR +jTx +wnV +wnV +bUv +rhQ +bUv +jUe +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(168,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +kPx +jUe +mdE +jUe +jUe +okl +jUe +jUe +jUe +jUe +pwz +sgL +esA +sgL +xXA +xXA +ujd +obF +pxK +oTi +pcO +obF +lxL +sgL +nyr +hRm +wPl +kKn +kKn +wDg +hRm +sSW +sSW +tUO +raj +yku +oZl +sde +sSW +sSW +sSW +bHq +cpk +wdk +goo +oOD +wgE +wgE +vIh +uef +mpQ +xBd +mzG +osz +cQu +fcO +ozt +vuD +aqU +hWN +hMS +eHx +akX +qyC +erO +hdv +xlN +hdv +hdv +xlN +hdv +bDb +fok +rVj +rVj +lsz +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bjo +bJK +jVr +mtK +gzS +fWL +bUv +mWj +bzU +cjW +dsr +mwZ +lql +jXO +glY +jXO +slL +bUv +bUv +chU +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(169,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +wrE +mdE +wrE +jUe +jUe +okl +jUe +jUe +jUe +jUe +iof +pxr +cQN +sgL +wsg +xXA +xXA +xXA +lbi +ebD +yfc +yfc +yfc +kjh +drG +hSZ +eZS +eaZ +eaZ +eaZ +jKL +gvj +kGF +knA +knA +knA +uYM +knA +nyP +xnr +sSW +pRV +rSJ +tbN +hnR +iYl +vqx +ibF +gUT +kam +mpQ +xCI +xYu +jyc +cQu +fcO +ozt +lNX +oNc +ugg +vvj +eHx +gfS +qyC +mgG +sDD +dFH +euT +euT +euT +uWn +ovR +wFQ +hCg +hCg +wCt +rai +rai +rai +xZN +wxf +oVM +dIV +owY +hif +bjm +mgP +piQ +xhv +rai +gQx +bDb +jVr +mtK +vaf +djE +xDX +sPF +kzU +hfn +iYY +epk +eKy +jVq +wiS +nSF +dHm +kcg +gtJ +aNv +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(170,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +okl +okl +okl +okl +okl +okl +okl +okl +iof +wsg +wsg +jjj +wsg +wsg +sgL +sgL +tRp +bBu +sgL +sgL +sgL +ugk +tQq +hRm +vAa +ama +kKS +oHF +yip +mhx +tcR +hQW +ssr +hQW +vwx +knA +mhx +dvg +sSW +cbX +eAf +ozP +cQu +hMn +iOV +iOV +iOV +xtV +xtV +nbY +dKj +ips +cQu +xso +ozt +vuD +tNx +pbT +rfy +eHx +jqy +fAo +xGJ +xnN +nsF +pXe +enA +mtt +kzi +wJe +myC +myC +myC +orO +lPx +lPx +lPx +mIk +ycE +hUm +krm +krm +tAG +nxy +hCd +gvD +jbu +wxf +sbO +nPP +jVr +lkE +qFx +tUI +dAI +mYk +goc +qRs +uFp +gSy +iCs +jXO +xqw +jXO +pbp +bUv +bUv +chU +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(171,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +wrE +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +iof +xJN +wsg +sgL +wsg +wSN +sgL +tId +wsg +sgL +iOJ +kmS +sgL +iei +cEW +hRm +eyH +cEm +kkW +fwQ +hRm +eJz +jJD +qOX +qOX +hqN +igP +knA +rAr +hiI +qca +veR +cpk +nOs +cQu +rcq +lNs +fvk +fvk +xLu +kMQ +lMN +txt +nlU +cQu +fcO +ozt +vuD +jvw +lMg +uGM +eHx +qCD +rKA +kes +uBO +uBO +uBO +uBO +kyD +wQA +bTc +got +got +got +nsb +cWl +jKU +bFP +bFP +bFP +pod +cFe +kLA +oBF +iRZ +iRZ +iRZ +gfT +oKA +eCE +gSI +fay +aKu +xru +ojX +bUv +rzu +rVX +eLw +eYH +bRt +tED +uLc +uLc +bUv +bUv +bUv +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(172,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jYu +okl +okl +uJo +okl +okl +okl +pwz +pwz +iof +pwz +pwz +pwz +sgL +sgL +sgL +cFL +sgL +sgL +tOD +wsg +odJ +wsg +udh +sgL +hKy +cEW +hRm +aCt +vVq +jTl +fmS +hRm +ldP +qMT +rGU +rGU +krz +akK +knA +wVU +eGQ +qca +veR +cpk +bik +cQu +ibZ +ujJ +bco +edH +muw +gWS +knu +jOD +hHC +cQu +fcO +ltf +vuD +vuD +vuD +vuD +eHx +cNg +jpm +fQL +mdN +huI +swh +uBO +iyr +hfz +nSZ +oiW +yaX +yaX +kbW +epo +dnT +vQt +phd +vgZ +sxR +sxR +ufO +abv +oiW +yaX +hwt +kJw +kJw +xHo +nPP +jVr +lkE +gzS +eIu +bUv +bUv +bUv +bUv +bUv +bUv +bUv +bUv +bUv +okl +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(173,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +uJo +jUe +jUe +jUe +pwz +wsg +wsg +uqu +sgL +bPV +uiX +wsg +nEl +wsg +wsg +sgL +sgL +cFL +sgL +sgL +sgL +huE +hKy +hRm +hRm +yhO +jSt +kKy +shT +slZ +jVj +aJp +mCq +rJs +kCT +wCF +xos +clZ +vrQ +aYQ +epM +eGo +tbN +cQu +ukr +kRx +bco +dUT +tfN +hoU +wjM +muy +izv +cQu +vZq +ozt +fMz +vek +swf +oJF +uBO +qke +res +mhl +fWn +vwJ +ewR +uBO +ogz +lCZ +oFE +rus +rai +rai +rai +vis +gwv +veu +egk +nob +sWO +jTH +eQs +vwa +nJt +rai +rai +rai +rai +het +bDb +fAq +mtK +gzS +eIu +mtK +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(174,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +jUe +jUe +jUe +pwz +wsg +wsg +wsg +tRp +wsg +wsg +uMK +xnp +xnp +jhf +sgL +ayH +wsg +kUc +odJ +vqk +vqk +hKy +hRm +wjL +mik +ihO +cpX +sSW +sSW +sSW +sSW +gyR +oIT +oyh +fDn +mhx +jPh +uCK +qca +mvE +cpk +mCk +cQu +cQu +dHc +bco +hzT +rCs +slx +hBK +ddw +eXG +cQu +odT +ozt +fMz +ubX +wKE +dwM +uBO +vjm +dIF +qDd +jml +jNa +jIC +uBO +cNw +wdG +oFE +oZh +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +nMF +bJK +jVr +mtK +inD +eIu +mtK +jUe +jUe +okl +jUe +jUe +sIr +sIr +sIr +sIr +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(175,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +jUe +jUe +jUe +pwz +wsg +wsg +wsg +huE +rRS +wsg +jjH +eWe +ngT +wsg +sgL +phK +owT +qVU +odJ +wsg +wsg +pAH +hRm +fZP +dTI +dUZ +nJb +sSW +aDn +whF +qWW +sSW +uZX +oaO +efa +mhx +jPh +bHM +qca +veR +cpk +tbN +dKc +uKP +eTS +bco +jjL +sFx +slx +wMR +iFs +eXG +yfo +fcO +xOc +kuS +acN +xgq +sBK +uBO +fgQ +bUN +pHZ +pGD +nbm +nVX +uBO +uUo +tPl +oFE +azu +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +hdv +pCj +jVr +lkE +sAC +mAE +lkE +okl +okl +okl +okl +okl +sIr +mtS +mtS +mtS +sIr +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(176,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +okl +okl +pwz +pwz +sgL +sgL +sgL +sgL +sgL +mjW +nEl +wsg +wsg +wsg +sgL +tZb +wnY +kEC +oav +xML +xML +oQi +hRm +dJh +mik +dUZ +xDl +sSW +lPA +oHp +mhx +xih +oaO +uaS +liQ +mhx +jPh +eGQ +sSW +jyv +cpk +tbN +jTP +xNH +jSi +bco +ggG +slx +cOL +slx +gDT +xxY +eIW +fZO +vMR +eRr +fyO +hlz +ieP +uBO +dAz +vAY +fTL +qxm +twP +buw +uBO +hdv +xvp +oFE +bnZ +rkT +bjo +bjo +rmN +rkT +bjo +bjo +bjo +bjo +bjo +rkT +bjo +bjo +bjo +aUf +bjo +bjo +bjo +pCj +boC +lkE +xTI +gSs +lkE +jUe +jUe +okl +jUe +jUe +sIr +mtS +dCE +mtS +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(177,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +wrE +jUe +jUe +pwz +xHd +xrx +jUc +any +uGf +sgL +sgL +odJ +sgL +cFL +sgL +sgL +wsg +vxE +wsg +odJ +wsg +lWv +dtz +hRm +daF +mik +dUZ +tlb +sSW +ygH +mhx +mhx +sSW +kJm +tsG +hxO +mhx +jPh +cLC +sSW +uUM +cpk +tbN +jTP +uKP +dUc +hcq +qZO +aeX +pvt +kmo +qqW +xoi +yfo +fcO +ozt +eRr +sOg +mCr +vkB +uBO +pqc +nnG +qDd +rEW +qDd +wZB +uBO +mwV +cDK +kCC +oSo +xew +xew +xew +xew +xew +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +bDb +iIh +lkE +xTI +gSs +lkE +jUe +jUe +okl +jUe +jUe +sIr +mtS +eBS +mtS +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(178,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +uJo +okl +okl +iof +vKR +lpF +eMa +wsg +wsg +tRp +wsg +wsg +wsg +wsg +iqn +tRp +wsg +vxE +xnp +odJ +usr +nQx +uua +hRm +esn +mik +dUZ +rFY +sSW +tyk +hsZ +lnb +sSW +csJ +csJ +hZa +sha +rYr +csJ +csJ +hYy +cpk +tbN +dxv +cQu +cQu +cQu +cQu +cQu +cQu +jhW +shw +cQu +cQu +aHp +qzn +eRr +eRr +eRr +eRr +eHx +aBX +tSq +aBX +aBX +aBX +aBX +cMc +xew +fNh +sga +szD +xew +goL +pSW +wyK +qKS +uRP +uLi +cbU +ugi +hDF +ohC +gQR +pcZ +buZ +suJ +rsb +oAu +jgQ +jgQ +iIh +iIh +fBF +fkp +mtK +sIr +sIr +sIr +iPF +sIr +sIr +mtS +mtS +mtS +iPF +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(179,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +jUe +jUe +pwz +cDR +anb +lWv +kvo +lWv +sgL +sgL +sgL +tQv +tQv +tQv +tQv +tQv +aaC +tQv +tQv +tQv +nQx +uua +hRm +sAg +mik +vml +sAO +csJ +csJ +csJ +csJ +csJ +sUz +lKb +xWh +uht +tlq +lOT +csJ +adT +nAE +tbN +tyH +dCZ +aDk +syg +jWt +ekk +pak +pzF +vAh +vAh +hZT +nHs +ovS +vAh +vAh +vAh +vAh +msK +mNM +umA +ozG +vAh +vAh +tHB +rpQ +vAh +mNM +wmR +cTQ +vAh +vAh +vAh +vAh +abw +bFz +nAt +vNj +nAt +vNj +ohC +iCw +gzS +uDx +wya +gzS +gzS +gzS +gzS +gzS +gzS +xTI +bld +mQD +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(180,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +jUe +jUe +pwz +pwz +pwz +pwz +vcj +vuF +sgL +vXj +cNA +tQv +aFC +knP +bKO +kVK +alc +wyP +xZb +tQv +nQx +uua +hRm +rJH +dUZ +dUZ +qPh +gCz +gCz +kYO +gCz +qFl +wyH +wzL +bln +gCz +gCz +qtH +csJ +xMq +eJu +dmA +llO +wEe +vdC +oVg +kfK +tyD +fEs +swT +ilE +wpO +wpO +hOA +mIu +qgR +qgR +wPw +qgR +qXx +vSQ +dnS +abK +vfM +ecE +mrb +wId +xPl +dkz +ulX +uKx +uKx +oGU +phb +phb +eAM +vce +kZU +uFv +myq +nus +vKu +xEe +xEe +jaH +atl +mRM +ueW +lCH +lCH +rsJ +fNR +otZ +rhC +mtK +dCE +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +sIr +sIr +sIr +okl +okl +okl +okl +okl +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(181,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +wrE +uJo +okl +okl +okl +okl +pwz +uua +uua +sgL +fgX +dXd +tQv +aFC +aFC +vfq +qlI +oeP +mRQ +oNa +tQv +nQx +uua +hRm +hYa +dUZ +edR +qPh +gCz +gCz +pXp +gCz +ana +niD +itH +jyG +gCz +gCz +gCz +eyI +tbN +cpk +tbN +nxp +dCZ +nUt +dRr +sMP +ekk +fGk +fcO +vPD +uqd +cOA +vDg +fRn +iox +bxk +bxk +klD +kqv +qQs +oAD +sOu +rNG +oGp +bxk +kqv +vDg +bxk +nCO +bxk +hBc +oAD +uqd +bxk +wVg +bFz +fvH +crw +jsi +qLP +ohC +iIh +iIh +xLk +iIh +iIh +vMa +iIh +iIh +gzS +nMJ +iIh +iIh +mtK +mtK +mtK +mtK +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(182,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +uJo +uJo +wrE +sAQ +sAQ +pwz +hGX +uua +tQv +cVv +tQv +tQv +kis +rbU +aoX +ajp +sSg +doS +qiH +tQv +ujd +xXL +hRm +rXv +dUZ +dUZ +qPh +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +eme +eyI +tbN +cpk +aQh +eZA +qRF +qRF +qRF +qRF +qRF +kmz +dMT +seY +poF +kmz +kmz +eQU +mED +qwd +qwd +riQ +mzH +teN +jRJ +teN +teN +teN +sNC +geP +geP +geP +ekk +lut +fPl +wSe +onn +kzc +qKS +uRP +lpG +gac +cef +huV +ohC +piF +jgQ +qbB +iIh +qNS +gSs +jgn +iIh +gzS +ykL +okA +iIh +ddM +dfq +aNZ +lkE +mtS +mtS +eBS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(183,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +tFp +okl +okl +okl +abj +tFp +abj +pwz +mWL +kGJ +ruc +xbf +kNX +mBX +bDN +tAx +sZS +uPd +oeP +yfR +lUT +tQv +qFe +wsg +hRm +hRm +gbM +gbM +haV +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +gCz +gCz +gCz +eyI +pzE +eGo +tbN +jTP +vlD +etS +uZu +kOz +oFR +dgw +rCr +fpw +qIn +hfy +gCM +riQ +uQK +exz +xJy +mqW +teN +dAJ +yks +jaC +uXy +mHC +lnk +fek +abj +abj +bdV +bdV +mrv +uba +mrv +bdV +bdV +mEL +msp +obo +aOF +iqi +ohC +esl +nTh +efq +iIh +oAu +gSs +iNl +iIh +gzS +qFk +eOF +iIh +hrf +kRL +kRL +lkE +mtS +mtS +mtS +mtS +mtS +mtS +mtS +eBS +dCE +mtS +sIr +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(184,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jRO +uua +uua +rzo +maq +gOq +yao +dFI +oCc +ilH +uPd +oeP +kOZ +wsM +tQv +wsg +wsg +sgL +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +gCz +gCz +gCz +eyI +tbN +cpk +tbN +jTP +mJh +rOb +paJ +kdc +hmi +ecd +ydK +ykI +qIn +xYE +xKW +riQ +giD +lIM +rvd +qkK +teN +dAJ +yks +fps +jHD +duK +sPH +waJ +waJ +waJ +sPH +mkR +ozK +iqq +qEu +oRv +bdV +fQJ +msp +crw +aOF +qUM +ohC +esl +nTh +wPu +iIh +iIh +gSs +iIh +iIh +iIh +jgQ +xTI +rrn +jgQ +rwk +rwk +lkE +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +okl +okl +okl +okl +okl +okl +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(185,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +tdR +fKK +fKK +gJA +ggL +ggL +wEu +olu +xQl +qry +aAJ +sVI +jtN +gft +tQv +nEl +wsg +qEz +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +gCz +gCz +gCz +eyI +tbN +flB +tbN +wnp +mEw +etS +paJ +olM +cjB +nIb +bab +mHu +gZD +jAe +jAe +udW +frd +sMR +wys +oQV +teN +qzv +hrx +pdy +krT +wAl +sPH +kKe +ifz +kzo +sPH +hdq +igu +amN +fQO +wpe +bdV +eXN +msp +pSK +pKf +uRP +uRP +ohC +ohC +ohC +ohC +pOT +gSs +iIh +jUe +iIh +iIh +fBF +iIh +cyA +rwk +rwk +lkE +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +mtS +sIr +sIr +jUe +gcr +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(186,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +fdg +okl +jUe +okl +jUe +okl +tdR +uua +uua +gJA +wwy +cXX +yao +ktG +oCc +kWt +gxf +kWt +yfR +jeJ +tQv +uGf +wsg +qEz +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +pXp +vsZ +eyI +tbN +cpk +odd +qRF +qRF +oHO +tXr +vcb +pyo +rQJ +kwH +cKO +wqx +xCP +xCP +udW +frd +cXE +vMZ +gYl +teN +rez +yks +fps +krT +kxh +sPH +lno +mfR +eKT +sPH +vkQ +guR +amN +pgh +oss +bdV +xXF +pYx +drC +slw +wcS +wcS +ljs +wcS +wcS +ohC +obf +gSs +lkE +jUe +lkE +sAC +wmQ +iIh +nlW +mtK +mtK +mtK +sIr +sIr +sIr +sIr +sIr +sIr +iPF +iPF +sIr +sIr +okl +jUe +gcr +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(187,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +tFp +okl +okl +okl +abj +tFp +xdh +pwz +aWI +aWI +ruc +pen +uVm +uVm +uVm +pWv +kWt +gxf +kWt +yfR +cnG +tQv +eBg +wsg +obB +gCz +gCz +pXp +gCz +gCz +gCz +pXp +gCz +hHK +jQM +uos +mXK +gCz +gCz +gCz +eyI +tbN +cpk +tbN +qRF +gFU +cTo +paJ +cOr +paJ +paJ +bHV +ycv +gql +paJ +nwj +riQ +jGf +sfH +kum +wvf +teN +eQu +yks +soH +fbH +fbH +sPH +lzp +okj +syi +sPH +mBO +fQO +gTm +fQO +rdX +bdV +eeM +msp +lXa +slw +wcS +wcS +wcS +wcS +ozl +ohC +ePN +gSs +lkE +jUe +lkE +ikO +mtK +mtK +mtK +mtK +wHb +wHb +mdE +okl +okl +okl +okl +okl +okl +okl +mdE +wrE +mdE +mdE +mdE +mdE +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(188,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +mdE +fID +uJo +pwz +hGX +uua +tQv +luR +bBk +cST +tNe +sDu +urb +nIh +kAJ +aVg +lil +tQv +snI +wsg +sgL +gCz +gCz +pXp +gCz +gCz +gCz +jEk +gCz +dnK +nDs +eQC +aJW +gCz +gCz +wYF +csJ +brq +xDi +agA +qRF +oLQ +cTo +paJ +paJ +otU +opU +irm +ycv +qvd +paJ +sqJ +riQ +jdm +llf +uoH +xyn +teN +dVA +vKU +edZ +rDp +wrj +vEi +uFR +cIO +ujE +nXQ +qzL +uDb +gYV +pta +uju +bdV +epl +oBs +fxm +ocV +wcS +wcS +wvJ +wcS +wcS +ohC +yko +rnr +iIh +jUe +iIh +xTI +mtK +okl +okl +okl +okl +okl +mdE +jUe +okl +jUe +sJK +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +mdE +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(189,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pwz +uua +uua +tQv +tQv +tQv +tQv +tQv +ruc +aVg +aVg +aCe +aVg +aVg +dvt +dvt +tTu +dvt +dzk +dzk +dzk +dzk +dvt +dvt +dvt +dvt +dvt +flr +kFF +tXa +wRC +nyD +qrV +csJ +gvU +tBp +rYc +qRF +jUB +iRi +ntX +eCK +qRF +sFw +diw +dXC +ilc +dXC +dXC +diw +diw +goy +diw +diw +teN +teN +teN +xWH +teN +sPH +sPH +syi +gAp +syi +gmW +uPC +ikF +gRT +eHP +iJL +ohC +hNP +ohC +cAV +giT +fJC +fJC +ohC +ohC +ohC +ohC +iIh +ntu +iIh +iIh +iIh +xTI +mtK +jUe +jUe +jUe +jUe +jUe +mdE +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +jUe +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(190,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +wrE +pwz +vcj +vuF +sgL +lxl +lTd +gLB +vXh +pwz +tFp +aVg +pJr +aVg +tFp +dvt +dRi +wCz +vDL +cgJ +cgJ +wQs +vTB +dvt +lMK +iSR +rQV +dvt +csJ +csJ +hZa +sha +cxB +csJ +csJ +gvU +vJH +gvU +fWv +fWv +fWv +fWv +fWv +fWv +gVK +diw +pEl +hLU +lgI +mJy +mxV +fFS +iFF +vuE +lZc +diw +xBr +duQ +fLP +vFi +rrG +vCr +lsB +oAt +cnF +fEI +twK +fQO +oxu +lQK +xIv +ohC +hgn +ohC +mtH +xWW +vQz +vQz +ohC +mGe +iIh +ryM +iIh +fgy +paY +jgQ +jgQ +fAn +lkE +jUe +jUe +jUe +jUe +jUe +wrE +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +mdE +okl +okl +okl +mdE +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(191,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +pwz +wkx +ujd +aEP +grj +grj +kel +rWc +pwz +okl +okl +aLb +okl +okl +dvt +ebU +iGk +ckT +fGG +fGG +ngD +eDx +dvt +lCc +nJl +bws +dvt +fJh +lNE +dao +gvA +aeM +iJP +mAV +gvU +kYf +gvU +ozM +qGa +jtt +iyw +qPr +fWv +qYT +diw +ehw +fXw +gfq +eDZ +qGO +sIE +jlx +oWc +jPG +diw +pTd +pTd +qeQ +qoj +lnu +sEK +qzV +oqM +vFZ +xwM +fQO +ldS +gRT +lQK +lbC +ohC +wNS +ohC +mxU +ewG +wcS +wcS +ohC +jgQ +iIh +iIh +iIh +xEb +rsJ +rsJ +rsJ +wmQ +lkE +jUe +jUe +jUe +jUe +jUe +okl +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +mdE +jUe +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(192,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +iof +pxZ +wsg +wsg +wsg +vxk +xzu +wXf +iof +jUe +jUe +okl +jUe +jUe +dzk +aoP +whp +kDq +gEu +cbV +dVm +hDG +dvt +qHp +kyk +koS +dzk +dID +lDP +lDP +lDP +lDP +lDP +lDP +lDP +rkn +hjw +hjw +hjw +hjw +hjw +ihe +vIq +nod +diw +diw +pFP +gea +gaB +mCt +fJN +oJt +pZb +uuT +diw +mhG +qGk +uDw +fQO +fQO +mkv +vFZ +lBS +qxi +xwM +fQO +fQO +eHK +jxu +hpX +ohC +pHd +eFe +xcA +qMs +wcS +meL +ohC +jgQ +xYV +rUq +iIh +ktk +paY +abZ +rhC +vhS +mtK +okl +okl +okl +okl +okl +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(193,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +wrE +nmp +iof +ctJ +nPj +wsg +wsg +wsg +nPj +pgl +tGO +jUe +jUe +okl +jUe +jUe +dzk +tEv +whp +kDq +sPV +dHN +nJl +fKo +dzk +cyF +vgM +xJV +dzk +frG +vSU +gvU +tPB +gvU +gvA +gvU +tPB +frG +ePU +gvU +oTP +rJp +nvd +dJI +hwk +dcK +kKr +jxz +cJC +caO +gaB +rbZ +rDh +hpH +tcy +wds +diw +mhG +epN +wsN +uaH +jRz +lfE +qyV +xvR +pmD +vVP +kFO +kFO +cEg +kYj +aQm +ohC +tNK +gFs +xcA +tuj +wcS +pnE +ohC +jgQ +fUX +jgQ +vzQ +mod +iIh +cjD +cjD +cjD +cjD +cnk +jUe +jUe +jUe +jUe +okl +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +mdE +mdE +mdE +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(194,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +iof +wPP +kVP +xkq +gSM +wsg +wsg +kwt +vro +okl +okl +okl +okl +okl +diX +nJl +whp +kDq +uGb +cBa +bcT +iGk +jqd +lNe +lNe +eTE +hpV +frG +gvA +vxj +ppQ +exH +gvA +vxj +pQM +tqo +gvA +vxj +ppQ +eHu +noQ +fOi +kXU +ePQ +jeU +uyC +sQZ +caO +gaB +suW +yif +qgB +xyy +nAG +diw +bdV +bdV +bdV +bdV +bdV +bdV +bdV +bdV +bdV +bdV +uDo +fup +hHk +mOu +vbX +ohC +xVo +oCd +ehd +pnE +wcS +pnE +ohC +ryM +ryM +xsY +iIh +ktk +qrY +cjD +xqr +jut +dbZ +cnk +cnk +cnk +jUe +jUe +okl +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +okl +jUe +mdE +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(195,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +pwz +iof +iof +pwz +gVb +wsg +wsg +fkO +tGO +jUe +jUe +okl +jUe +jUe +dzk +iyb +jsL +kDq +nVk +xpj +pzs +gBB +dzk +nyH +ags +ckT +dzk +xkW +gvA +vxj +dIQ +exH +gvA +vxj +dIM +tqo +gvA +vxj +gWI +puO +noQ +fOi +kXU +nvd +mmv +uvE +cJC +caO +gaB +dOn +jvo +ovq +wcK +vzR +xmZ +fSt +eei +pal +glr +mmP +hIj +plK +cHj +iaA +bdV +bdV +bdV +eMA +bdV +bdV +ohC +ohC +ohC +ohC +ohC +ohC +ohC +ohC +iIh +iIh +iIh +iIh +ktk +mhj +mXM +sPh +uRO +fdO +daY +eXA +jvN +hnU +hnU +hnU +hnU +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +abj +hnU +hnU +vew +okl +mdE +okl +okl +mdE +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(196,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +okl +xXu +okl +okl +nmp +okl +pwz +pWT +nPj +wsg +xgZ +iof +jUe +jUe +okl +jUe +jUe +dzk +dLL +ijY +uTs +xQg +mIX +adx +pWH +dvt +hDx +kKY +fvg +dzk +xkW +gvA +vxj +iDp +exH +lSl +vxj +hkr +tqo +gvA +vxj +pnl +wVp +noQ +fOi +kXU +noQ +diw +diw +iBK +dCH +dDi +iJo +rHD +sKs +gKQ +cjZ +vOI +fSt +tRs +ths +mZH +kMe +rXc +fLH +sTM +wWK +gsl +huj +voH +fcY +new +iIh +rRs +xEe +xYM +xEe +xEe +gjF +xEe +xEe +fHC +iWW +gjF +xEe +ctt +pxb +xvQ +cTS +pVR +eVF +cnk +cnk +cnk +jUe +jUe +okl +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +hnU +jUe +jUe +jUe +okl +jUe +mdE +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(197,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +xXu +xXu +xXu +okl +pwz +sgL +sgL +efX +sgL +pwz +okl +okl +okl +okl +okl +dvt +dvt +dzk +dzk +dzk +dzk +dzk +dvt +dvt +lZB +qTY +rfP +dzk +xkW +gvA +vxj +kDR +exH +gvA +vxj +phE +tqo +gvA +vxj +jSF +eTJ +noQ +fOi +kXU +iyJ +diw +udB +wYk +tZM +sqi +kOK +lWp +pnh +wPi +ewC +oBP +fSt +wDd +pQU +fLH +ftx +vgE +ftx +kMe +wWK +pcx +vWE +iiZ +tPS +eWX +kvl +vib +jgQ +iIh +iIh +iIh +iIh +iIh +iIh +iIh +jgQ +iIh +iIh +iIh +mtK +cjD +cjD +cjD +cjD +cnk +jUe +jUe +jUe +jUe +okl +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +okl +mdE +mdE +mdE +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(198,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +xXu +okl +pwz +czu +fWS +nPj +wWN +pwz +jUe +jUe +okl +jUe +jUe +mdE +okl +jUe +jUe +okl +jUe +jUe +dzk +dvt +dzk +dzk +qtW +fKB +gyN +gvA +vxj +pQM +exH +gvA +vxj +ppQ +tqo +gvA +iJj +pQM +epB +noQ +fOi +kXU +nnO +diw +diw +diw +aLg +diw +diw +diw +diw +diw +diw +diw +fSt +oEl +wWK +jiD +gma +rXc +oEl +dsN +kBG +rCX +huj +fZd +wOY +hKP +iIh +pxb +jgQ +jgQ +xNs +lgy +oAh +iIh +fPZ +fCq +jgQ +iIh +jRa +fVC +mtK +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(199,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +eCl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jYu +okl +wTN +okl +pwz +fyR +oUw +wsg +nPj +iof +jUe +jUe +okl +jUe +jUe +mdE +okl +jUe +jUe +okl +jUe +jUe +dzk +gju +pqK +qob +hmz +dzk +xkW +ePU +gvU +xqL +gvU +gvA +gvU +xqL +lJA +vSU +gvU +kQE +mTf +eGY +jzB +mRy +hpC +efr +rED +nGI +nhh +xRi +fnV +xRi +qCH +qCH +swN +aXo +hHh +kBG +kBG +huj +wWK +rXc +wWK +huj +huj +gpH +bFd +bFd +sTh +bFd +bFd +bFd +iIh +jgQ +jgQ +xGs +twZ +iIh +fVC +jgQ +jgQ +rSY +fAS +pxb +mtK +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +cqA +hnU +cqA +okl +cqA +hnU +cqA +okl +cqA +hnU +cqA +jUe +mdE +jUe +jUe +jUe +mdE +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(200,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +xXu +okl +iof +qBm +wsg +wsg +wsg +iof +jUe +jUe +okl +jUe +jUe +mdE +okl +okl +okl +okl +okl +okl +dzk +rMZ +nhz +eng +die +dzk +eGw +eGw +mRY +xUD +kvH +aTN +aTN +aTN +aTN +eGw +qIb +kQE +sxK +dJI +gvA +dJI +tQx +fSt +fqy +fqy +wWK +wWK +kBG +kBG +wWK +jwm +dIG +iWf +pjE +iWf +iWf +iWf +iWf +iWf +iWf +iWf +iWf +hsC +bFd +wRo +pfG +wEm +xMJ +bFd +vBL +jgQ +jgQ +rUq +jgQ +irL +jgQ +aGX +iNl +iIh +jgQ +nbT +mtK +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +okl +mdE +okl +okl +okl +mdE +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(201,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +nmp +iof +wsg +wsg +xOD +wsg +xwG +jUe +jUe +okl +jUe +jUe +mdE +okl +jUe +jUe +okl +jUe +jUe +dzk +skT +hwa +hHl +tKW +dzk +uIn +oCF +hQf +xBW +qof +oCF +ddI +gxg +ddI +oCF +kQE +kQE +kQE +kQE +dJJ +sFQ +kQE +fSt +fSt +fSt +iTf +wWK +mdD +jwm +jwm +vBa +fSt +fSt +fSt +fSt +huj +nJF +huj +huj +huj +jCJ +huj +huj +bFd +uUr +kMp +fmc +ghd +bdV +mtK +mtK +lkE +lkE +lkE +mtK +mtK +mtK +dHJ +mtK +mtK +mtK +mtK +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +wrE +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +cqA +hnU +cqA +jUe +mdE +jUe +jUe +jUe +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(202,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +iof +tbW +wsg +wsg +nPj +iof +jUe +jUe +okl +jUe +jUe +mdE +okl +jUe +jUe +okl +jUe +jUe +dzk +dzk +dzk +dzk +fbV +dzk +dJJ +kQE +vCL +xBW +wWD +kQE +dJJ +sFQ +dJJ +kQE +kQE +okl +jUe +kQE +fSv +kQE +jUe +okl +pLE +kiY +jrz +sSn +dkj +xpN +jwm +vBa +fSt +abj +abj +fSt +fnS +wWK +wWK +wWK +wSj +wWK +rrb +huj +wzX +pLg +lqc +fmc +ivx +bdV +abj +okl +jUe +jUe +okl +lZD +tMw +mtK +lJU +mtK +doz +gaH +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +wrE +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(203,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +pwz +iLK +nPj +wlI +nPj +iof +jUe +jUe +okl +jUe +jUe +wrE +okl +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +dzk +coD +dzk +fSv +kQE +tQc +urn +eIk +kQE +fSv +kQE +fSv +kQE +jUe +okl +jUe +tSl +vmF +kQE +jUe +okl +jUe +kiY +teF +khA +sQx +jwm +nSg +jKk +fSt +jUe +okl +kiY +ftp +qte +wWK +wWK +wWK +wWK +hYv +fSt +kJH +kJH +kJH +bdV +vds +bdV +abj +okl +jUe +jUe +okl +lZD +jin +mtK +tyW +mtK +jin +abj +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +mdE +mdE +wrE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +mdE +wrE +mdE +mdE +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(204,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pwz +pwz +gNr +jMf +ouU +pwz +jUe +jUe +okl +jUe +jUe +mdE +okl +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +dzk +yhs +dzk +gKR +kQE +qhR +iFo +qIC +kQE +gKR +kQE +gKR +kQE +okl +okl +okl +abj +fTB +abj +okl +okl +okl +fSt +kiY +kiY +fSt +kiY +kiY +fSt +fSt +jUe +nmp +kiY +xhz +tlJ +flc +fZy +wWK +hRI +fSt +fSt +okl +nmp +okl +hYW +mfC +pyF +okl +okl +okl +okl +okl +lZD +wGk +vqe +oZw +pEa +dWC +fMI +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +mdE +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(205,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +okl +abj +pwz +iof +iof +iof +pwz +okl +okl +okl +okl +okl +mdE +mdE +mdE +okl +okl +okl +okl +okl +okl +okl +dzk +coD +dzk +fSv +kQE +kQE +kQE +kQE +kQE +fSv +kQE +fSv +kQE +jUe +okl +jUe +cKU +abj +rYB +jUe +okl +jUe +okl +jUe +pLE +okl +jUe +pLE +jUe +okl +jUe +okl +fSt +fSt +kiY +fSt +fSt +kiY +fSt +fSt +hmg +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +okl +tQk +iTH +hcJ +abj +rAs +iTH +god +mdE +abj +mdE +mdE +mdE +abj +mdE +okl +wrE +mdE +mdE +wrE +mdE +wrE +okl +jUe +okl +okl +okl +wrE +mdE +mdE +mdE +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(206,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +okl +xXu +okl +okl +okl +okl +nmp +okl +tFp +jUe +jUe +okl +jUe +jUe +tFp +okl +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +dzk +imq +jTd +vmF +kQE +jUe +okl +jUe +kQE +vmF +tSl +vmF +kQE +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +jUe +nmp +gQL +gQL +nmp +jUe +okl +okl +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +okl +okl +mdE +eNQ +okl +ufj +mdE +okl +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +wrE +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(207,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +xXu +xXu +xXu +jUe +dYc +dYc +dYc +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +qHi +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +abj +abj +abj +abj +abj +abj +abj +pvc +oCb +lgt +rnS +vXQ +pvc +oCb +lgt +rnS +vXQ +kCn +okl +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(208,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +gcr +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +mdE +mdE +wrE +mdE +mdE +wrE +mdE +pnX +pWj +krZ +iTH +ouL +pnX +pWj +krZ +iTH +ouL +mmb +okl +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +fdg +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(209,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +jUe +jUe +jUe +gcr +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +jUe +jUe +okl +jUe +jUe +jUe +wrE +gQL +gQL +okl +jUe +okl +gQL +gQL +okl +jUe +okl +gQL +gQL +gcr +okl +pyF +okl +pyF +okl +okl +okl +okl +okl +okl +jnc +okl +okl +okl +jnc +okl +mdE +mdE +mdE +okl +mdE +mdE +mdE +okl +mdE +wrE +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(210,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +wrE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +mdE +wrE +mdE +mdE +okl +jUe +jUe +abj +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +okl +okl +okl +okl +jUe +okl +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +okl +jUe +okl +jUe +okl +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(211,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +pyF +fdg +jUe +pyF +jUe +okl +jUe +jUe +okl +jUe +pyF +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +fdg +bot +jUe +jUe +jUe +iUU +jUe +jUe +jUe +jUe +pyF +jUe +fdg +jUe +okl +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(212,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(213,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +wrE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(214,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(215,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +okl +okl +okl +okl +okl +okl +jUe +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +okl +pyF +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(216,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(217,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +okl +mdE +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(218,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +mdE +mdE +mdE +mdE +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +okl +mdE +okl +jYu +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(219,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +mdE +mdE +mdE +wrE +okl +wrE +mdE +mdE +mdE +fID +mdE +mdE +mdE +mdE +mdE +mdE +mdE +fID +mdE +mdE +mdE +mdE +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(220,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(221,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +mdE +mdE +mdE +jUe +jUe +jUe +mdE +mdE +mdE +jUe +jUe +jUe +mdE +mdE +mdE +jUe +jUe +jYu +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +okl +pyF +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(222,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(223,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jYu +jUe +jUe +jUe +jUe +jUe +jYu +jUe +jUe +jUe +jUe +jUe +jYu +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(224,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(225,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(226,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(227,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +pyF +okl +pyF +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(228,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +jUe +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(229,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +jUe +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(230,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +ygC +dpA +ygC +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(231,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +tml +ygC +jCv +ygC +tml +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(232,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +ygC +ygC +uIs +dpA +oMK +ygC +ygC +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(233,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +bKN +bKN +rCx +fBy +fBy +fBy +rUW +bKN +bKN +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(234,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +okl +okl +okl +ygC +yeG +kSc +fBy +jMI +fBy +fZa +kCX +ygC +okl +okl +okl +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(235,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +bKN +bKN +udb +fBy +fBy +fBy +ifE +bKN +bKN +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(236,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +ygC +ygC +hKw +tsj +uvZ +lAB +lAB +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(237,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +tml +ygC +gwA +ygC +tml +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(238,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +ygC +bKN +ygC +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(239,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(240,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +okl +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(241,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(242,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +okl +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(243,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +pyF +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(244,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(245,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(246,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(247,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(248,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(249,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(250,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(251,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(252,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(253,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(254,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} +(255,1,2) = {" +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +jUe +"} diff --git a/_maps/stations/construction.dmm b/_maps/stations/construction.dmm new file mode 100644 index 000000000000..911e3e73af0f --- /dev/null +++ b/_maps/stations/construction.dmm @@ -0,0 +1,79436 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"ac" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/foamedmetal/resin, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ae" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space/basic, +/area/space) +"ag" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"ah" = ( +/obj/machinery/telecomms/processor/preset_one/birdstation, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ai" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"aj" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"ak" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"al" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"am" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "Virus Door 3"; + name = "Камера содержания 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"an" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"ap" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"ar" = ( +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/marker_beacon/green, +/obj/effect/turf_decal/stripes/asteroid/box, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"as" = ( +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = 8; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -8; + pixel_y = -24; + req_access_txt = null + }, +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"au" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ax" = ( +/obj/machinery/light/small, +/obj/item/folder, +/obj/item/folder, +/obj/machinery/camera{ + c_tag = "Telecomms - Control Room"; + dir = 1; + network = list("ss13","tcomms") + }, +/obj/item/pen, +/obj/machinery/firealarm/directional/south, +/obj/item/paper/monitorkey, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"ay" = ( +/obj/machinery/atmospherics/components/unary/portables_connector, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"az" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"aA" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/machinery/atmospherics/components/unary/outlet_injector/layer4, +/turf/open/floor/plating/airless, +/area/command/heads_quarters/captain/private) +"aD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/meeting_room) +"aF" = ( +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"aG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/unexplored) +"aH" = ( +/turf/closed/wall, +/area/engineering/lobby) +"aI" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/scientist, +/obj/machinery/vending/wallmed/directional/south, +/obj/effect/landmark/start/research_director, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"aJ" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid, +/area/mine/unexplored) +"aL" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"aM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"aO" = ( +/obj/structure/marker_beacon, +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"aQ" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"aS" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay/central) +"aT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"aV" = ( +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"aW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"aY" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/structure/closet/crate/engineering, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"aZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"bc" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/turret_protected/aisat/hallway) +"be" = ( +/obj/structure/marker_beacon, +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"bf" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"bh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bl" = ( +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bm" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + locked = 0 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"bn" = ( +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"bq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bs" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"bv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"by" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/meeting_room) +"bA" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bB" = ( +/obj/structure/closet/secure_closet/atmospherics{ + locked = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/lobby) +"bD" = ( +/obj/structure/sign/departments/vault, +/turf/closed/wall/r_wall, +/area/maintenance/radshelter) +"bE" = ( +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"bK" = ( +/obj/structure/lattice/catwalk, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bN" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"bO" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"bP" = ( +/turf/open/floor/plasteel, +/area/science/lab) +"bQ" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/closed/wall/mineral/titanium, +/area/hallway/secondary/entry) +"bS" = ( +/obj/structure/lattice, +/obj/item/rpd_upgrade/unwrench, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"bV" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/warehouse) +"bW" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/mine/unexplored) +"bX" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"ca" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/space/basic, +/area/mine/unexplored) +"cc" = ( +/obj/machinery/mecha_part_fabricator/service, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"cd" = ( +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/uranium/five, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"cf" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/airless, +/area/engineering/main) +"ch" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"ci" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"cj" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/lab) +"ck" = ( +/turf/closed/wall, +/area/science/server) +"cl" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage) +"cm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"cn" = ( +/obj/structure/table/reinforced, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/screwdriver/power{ + pixel_x = -11 + }, +/obj/item/multitool/tricorder{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"co" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/structure/sign/departments/xenobio{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space) +"cp" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/button/door{ + pixel_y = -32; + name = "Камера содержания 1"; + id = "Virus Door 1" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cs" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_y = -25; + pixel_x = 26 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "AI Chamber - Core"; + network = list("aicore"); + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ct" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"cv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/warehouse) +"cx" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"cz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"cB" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"cC" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/science/lab) +"cD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"cE" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"cF" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"cG" = ( +/obj/machinery/camera/autoname/directional/east, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cH" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"cK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/virology) +"cL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"cN" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/mine/unexplored) +"cO" = ( +/obj/machinery/telecomms/bus/preset_one/birdstation, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cP" = ( +/turf/open/floor/plasteel/airless, +/area/space) +"cQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore) +"cR" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"cU" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"cW" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/medical/virology) +"cY" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"cZ" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"da" = ( +/obj/structure/closet/crate, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"db" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/plasma{ + pixel_x = 6 + }, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"df" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"dh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"di" = ( +/obj/machinery/vending/engivend, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"dk" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"do" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"dp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"du" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"dv" = ( +/obj/structure/lattice, +/obj/item/circuitboard/machine/bluespace_miner{ + pixel_y = 5; + pixel_x = 3 + }, +/turf/open/space/basic, +/area/space) +"dw" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"dx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"dy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/maintenance/radshelter) +"dA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"dB" = ( +/turf/open/space/basic, +/area/medical/medbay/central) +"dC" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dD" = ( +/obj/item/geiger_counter, +/turf/open/floor/plating/airless, +/area/engineering/main) +"dE" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research) +"dF" = ( +/obj/effect/turf_decal/sand/plating, +/obj/item/rpd_upgrade/unwrench{ + pixel_x = -5; + pixel_y = 5 + }, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"dG" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/start/security_officer, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start/specialist, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"dH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"dI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/west{ + view_range = 14 + }, +/turf/open/space/basic, +/area/space/nearstation) +"dJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"dL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"dM" = ( +/turf/open/floor/engine/airless, +/area/engineering/main) +"dO" = ( +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"dQ" = ( +/obj/machinery/ore_silo, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"dS" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/sleeper) +"dU" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"dW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"dX" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"dY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/ai_monitored/turret_protected/aisat/hallway) +"dZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ea" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"eb" = ( +/obj/structure/closet/crate, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid, +/area/mine/unexplored) +"ec" = ( +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/asteroid/corner, +/obj/effect/turf_decal/stripes/asteroid/corner{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"ed" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/departments/xenobio{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space) +"ee" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"ef" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"eh" = ( +/obj/machinery/light/floor/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"ei" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"ej" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/mechanic) +"el" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"eo" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/item/wrench, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eq" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/command/heads_quarters/captain/private) +"er" = ( +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External West"; + dir = 8; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space) +"eu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"ev" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/captain/private) +"ew" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"eB" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/structure/foamedmetal, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"eC" = ( +/turf/open/floor/engine, +/area/engineering/main) +"eE" = ( +/turf/closed/wall, +/area/space) +"eF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/mine/unexplored) +"eG" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/cargo/warehouse) +"eH" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/hallway/secondary/entry) +"eJ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"eM" = ( +/obj/item/biopsy_tool, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"eP" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"eQ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"eT" = ( +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"eU" = ( +/obj/effect/turf_decal/sand/lite, +/obj/item/rcd_upgrade/furnishing{ + pixel_y = 7; + pixel_x = 9 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"eW" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"eY" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/mine/unexplored) +"eZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"fb" = ( +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"fd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/floor/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"fh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"fi" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/storage/belt/shotgun/bullet, +/obj/item/storage/belt/shotgun/bullet, +/obj/item/storage/belt/shotgun/bullet, +/obj/item/storage/belt/shotgun/bullet, +/obj/item/storage/belt/shotgun/buckshot, +/obj/item/storage/belt/shotgun/buckshot, +/obj/item/storage/belt/shotgun/buckshot, +/obj/item/storage/belt/shotgun/buckshot, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"fj" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"fl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/mechanic) +"fm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"fo" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"fq" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/airless, +/area/command/gateway) +"fr" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"fs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/lobby) +"ft" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/lab) +"fv" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"fw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"fx" = ( +/turf/closed/wall/r_wall/syndicate, +/area/tcommsat/server) +"fy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"fA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"fD" = ( +/obj/structure/cable, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"fE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/medical/medbay/central) +"fI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"fJ" = ( +/obj/structure/table, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/obj/item/gun/energy/kinetic_accelerator, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/meeting_room) +"fK" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fM" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"fO" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"fQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"fR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage) +"fT" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"fU" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External West"; + dir = 8; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ga" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"gc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"ge" = ( +/turf/open/floor/plasteel, +/area/medical/sleeper) +"gf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/smes/engineering, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"gg" = ( +/turf/closed/mineral/random/volcanic/hard, +/area/mine/unexplored) +"gi" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gj" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/research) +"gl" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/closet/secure_closet/captains, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gm" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"gn" = ( +/obj/structure/closet/crate/coffin, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/clothing/under/misc/burial, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/storage/fancy/candle_box, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/item/nullrod, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"go" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/foamedmetal, +/turf/open/floor/engine/airless, +/area/engineering/main) +"gq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"gr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/cargo/meeting_room) +"gu" = ( +/obj/machinery/camera/autoname/directional/west{ + view_range = 14 + }, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"gv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"gA" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"gD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"gE" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/machine/autolathe, +/obj/item/circuitboard/machine/circuit_imprinter/department/science, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/computer/mecha_control, +/obj/item/circuitboard/computer/robotics, +/obj/item/circuitboard/computer/borgupload, +/obj/item/circuitboard/computer/aiupload, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/research) +"gF" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/foam, +/area/space) +"gG" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"gH" = ( +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"gI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"gM" = ( +/obj/item/clothing/shoes/magboots/advance{ + pixel_y = 8; + pixel_x = 11 + }, +/turf/open/floor/plating/airless, +/area/engineering/main) +"gN" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"gO" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating/airless, +/area/command/heads_quarters/captain/private) +"gQ" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/sleeper) +"gR" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/obj/item/gun/energy/e_gun/hos, +/turf/open/floor/plating, +/area/mine/unexplored) +"gS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/solars/port/fore) +"gT" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"gU" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/mine/unexplored) +"gV" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gW" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"gX" = ( +/turf/open/space/basic, +/area/space/nearstation) +"gZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"ha" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_y = -30 + }, +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"hb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"he" = ( +/turf/open/floor/plating/airless, +/area/science/lab) +"hf" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/science/lab) +"hg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"hh" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"hj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/lobby) +"hl" = ( +/obj/item/stack/spacecash/c10000, +/obj/item/stack/spacecash/c10000, +/obj/item/stack/spacecash/c10000, +/obj/item/stack/spacecash/c10000, +/obj/item/stack/spacecash/c10000, +/obj/effect/spawner/random/entertainment/money_large, +/obj/structure/closet/crate/secure/owned{ + locked = 0 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"hn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine/airless, +/area/engineering/main) +"hq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"hr" = ( +/obj/item/construction/rcd/combat, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plating/foam, +/area/engineering/main) +"hs" = ( +/obj/item/stock_parts/cell/bluespace{ + pixel_y = -1; + pixel_x = -4 + }, +/turf/open/floor/plating/foam, +/area/space) +"hu" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/open/floor/plating/airless, +/area/tcommsat/server) +"hy" = ( +/obj/machinery/mecha_part_fabricator/sci, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research) +"hz" = ( +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"hA" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hB" = ( +/obj/structure/table_frame, +/obj/item/shard, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"hD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"hE" = ( +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"hH" = ( +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space) +"hJ" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"hK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/maintenance/radshelter) +"hM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"hO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/office) +"hQ" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"hR" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"hS" = ( +/obj/structure/closet/secure_closet/security{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"hT" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"hU" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/shard, +/turf/open/floor/plating/airless, +/area/space) +"hW" = ( +/turf/open/floor/plating/airless, +/area/medical/virology) +"hX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"hY" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"ia" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space) +"ib" = ( +/obj/machinery/shieldgen{ + anchored = 1; + active = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"ic" = ( +/obj/structure/closet/crate/secure/gear{ + locked = 0 + }, +/obj/item/circuitboard/computer/secure_data, +/obj/item/circuitboard/computer/prisoner, +/obj/item/circuitboard/computer/crew, +/obj/item/circuitboard/computer/advanced_camera, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"id" = ( +/obj/structure/frame/machine/wired, +/obj/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"ie" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/bottle/cognac{ + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = 8; + layer = 3.02; + pixel_y = 2 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"ig" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/reagent_containers/spray/weedspray, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wrench, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/shovel/spade, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"ih" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"ij" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"il" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"im" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"io" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/construction/storage_wing) +"iq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ir" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"it" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"iu" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/solars/port/fore) +"iv" = ( +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"iw" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/white/airless, +/area/medical/virology) +"ix" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"iy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iz" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"iA" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine/airless, +/area/engineering/main) +"iC" = ( +/obj/structure/table/reinforced, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"iE" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/medical/virology) +"iF" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"iH" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"iI" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"iJ" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "Virus Door 1"; + name = "Камера содержания 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"iK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"iL" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/main/mechanic) +"iM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"iO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"iU" = ( +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/structure/closet/crate/secure/gear{ + locked = 0 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/restraints/legcuffs/bola/energy, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/melee/baton/loaded, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/mechanic) +"iV" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating, +/area/engineering/main) +"iW" = ( +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"iX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"iY" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"iZ" = ( +/obj/machinery/door/airlock/virology/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"ja" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/lab) +"jb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"jc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"jd" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/command/gateway) +"je" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"jk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/science/lab) +"jl" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/security/main/mechanic) +"jn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"js" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"jt" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engineering/main) +"jw" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/west{ + view_range = 14 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jx" = ( +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"jy" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"jz" = ( +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/structure/closet/secure_closet/security/field_med{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/mechanic) +"jA" = ( +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"jC" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"jD" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = -2; + pixel_y = 11 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/flashlight{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"jE" = ( +/obj/structure/closet/secure_closet/atmospherics{ + locked = 0 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"jF" = ( +/obj/structure/closet/crate/science, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/stack/sheet/mineral/plasma/five, +/obj/item/storage/box/syringes, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/storage/box/beakers, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"jH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jJ" = ( +/obj/machinery/telecomms/hub/preset, +/obj/machinery/light/small{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"jK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"jL" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/meeting_room) +"jN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"jP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"jR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"jT" = ( +/obj/item/circuitboard/computer/slot_machine, +/obj/item/circuitboard/computer/slot_machine, +/obj/item/circuitboard/computer/slot_machine, +/obj/item/circuitboard/machine/bountypad, +/obj/item/circuitboard/computer/bountypad, +/obj/item/circuitboard/computer/price_controller, +/obj/structure/closet/crate/secure/owned{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"jU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/button/door{ + pixel_x = -11; + name = "Камера содержания 1"; + id = "xeno1"; + pixel_y = 29 + }, +/obj/machinery/button/door{ + name = "Камера содержания 3"; + id = "xeno2"; + pixel_y = 29 + }, +/obj/machinery/button/door{ + pixel_x = 11; + name = "Камера содержания 3"; + id = "xeno3"; + pixel_y = 29 + }, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"jW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"jX" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"jY" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/storage/toolbox/ammo/wt550, +/obj/item/gun/ballistic/automatic/wt550{ + layer = 3.03 + }, +/obj/item/gun/ballistic/automatic/wt550{ + layer = 3.03 + }, +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/mine/unexplored) +"jZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"kc" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"kd" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/storage/belt/holster/thermal, +/obj/item/storage/belt/holster/thermal, +/obj/item/gun/energy/ionrifle, +/obj/item/gun/energy/temperature/security, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"ke" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/security/main/mechanic) +"kg" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/maintenance/radshelter) +"kh" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"ki" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_ammo/large{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"kj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"kk" = ( +/obj/structure/marker_beacon, +/obj/effect/turf_decal/stripes/asteroid/box, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"kl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"km" = ( +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"ko" = ( +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Aft Port Solar Control"; + dir = 1 + }, +/obj/machinery/power/solar_control{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/solars/port/fore) +"kp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 4; + pixel_y = 2 + }, +/turf/open/space/basic, +/area/space/nearstation) +"kt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"ku" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/misc_lab) +"kv" = ( +/turf/open/floor/plasteel, +/area/space) +"kw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"kx" = ( +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"ky" = ( +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet/alt, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"kz" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay/central) +"kB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/solars/port/fore) +"kC" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"kD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/electrical{ + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/research) +"kG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"kH" = ( +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"kI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"kL" = ( +/turf/open/space/basic, +/area/science/lab) +"kN" = ( +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plasteel/monofloor/airless, +/area/science/xenobiology) +"kU" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"kV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"kW" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"kX" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + locked = 0 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"kZ" = ( +/turf/closed/wall/mineral/plastitanium/nodiagonal, +/area/tcommsat/server) +"ld" = ( +/obj/machinery/door/airlock/research/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/xenobiology) +"le" = ( +/obj/structure/cable, +/obj/machinery/power/solar, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"lf" = ( +/obj/structure/closet/crate/secure/gear{ + locked = 0 + }, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/flashes, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/deputy, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"lg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"lh" = ( +/obj/structure/holosign/barrier/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"li" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"lo" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"lr" = ( +/obj/structure/table, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ls" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"lu" = ( +/obj/item/stack/rods, +/turf/open/space/basic, +/area/space/nearstation) +"lw" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"lx" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"lz" = ( +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/lab) +"lB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"lC" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/research) +"lE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/lab) +"lG" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/airless, +/area/engineering/main) +"lI" = ( +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/engineering/atmos/upper) +"lJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"lK" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"lL" = ( +/obj/structure/frame/machine/wired, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"lM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light/floor/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"lO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"lP" = ( +/obj/item/wirecutters, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"lQ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/meeting_room) +"lR" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/medical/sleeper) +"lS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"lU" = ( +/obj/machinery/light/broken, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"lX" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"lY" = ( +/obj/structure/grille, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"ma" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External East"; + dir = 4; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mc" = ( +/obj/structure/table/reinforced, +/obj/item/lightreplacer{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/lightreplacer{ + pixel_x = -2; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"md" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/exploration, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"me" = ( +/obj/docking_port/stationary{ + dwidth = 12; + height = 18; + id = "emergency_home"; + name = "NT SS13: emergency evac bay"; + width = 32 + }, +/turf/open/space/basic, +/area/space) +"mf" = ( +/obj/machinery/camera/autoname/directional/north, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"mg" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"mh" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"mi" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"mn" = ( +/obj/structure/table/reinforced, +/obj/item/areaeditor/blueprints{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/item/areaeditor/blueprints{ + pixel_y = 5; + pixel_x = 1 + }, +/obj/item/areaeditor/blueprints{ + pixel_x = 9; + pixel_y = 2 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"mo" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"mp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"mq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/airless, +/area/engineering/main) +"mr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/space) +"mu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"mv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"my" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/obj/machinery/camera/autoname/directional/north{ + view_range = 14 + }, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"mz" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/plasteel, +/area/science/lab) +"mA" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"mE" = ( +/obj/item/shard, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"mF" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"mG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"mH" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"mI" = ( +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"mJ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/construction/storage_wing) +"mK" = ( +/obj/effect/supplypod_rubble, +/obj/item/scalpel/advanced, +/obj/structure/closet/supplypod, +/obj/item/retractor/advanced, +/obj/item/bonesetter/advanced, +/obj/item/cautery/advanced, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"mM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/storage) +"mO" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Hall - Aft"; + dir = 1; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine/airless, +/area/science/xenobiology) +"mP" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/space/basic, +/area/space) +"mQ" = ( +/obj/effect/turf_decal/tile/dark_blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"mS" = ( +/turf/closed/wall/rust, +/area/command/gateway) +"mT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mU" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad"; + pixel_x = 8 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"mW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 8; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"mX" = ( +/obj/item/weldingtool, +/turf/open/floor/engine/airless, +/area/engineering/main) +"mZ" = ( +/obj/structure/closet/crate/medical, +/obj/item/defibrillator/loaded, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/medigel/aiuri, +/obj/item/reagent_containers/medigel/aiuri, +/obj/item/reagent_containers/medigel/libital, +/obj/item/reagent_containers/medigel/libital, +/obj/item/reagent_containers/medigel/sterilizine, +/obj/item/reagent_containers/medigel/sterilizine, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/medbay/central) +"na" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"nb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/lab) +"nc" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/research) +"ne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ng" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"nh" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/foam, +/area/medical/sleeper) +"nl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"nn" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"no" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/computer/telecomms/server, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Telecomms Camera Monitor"; + network = list("tcomms"); + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"nq" = ( +/obj/item/stack/cable_coil, +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/engineering/main) +"nr" = ( +/obj/item/shard, +/turf/open/space/basic, +/area/space) +"ns" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nt" = ( +/turf/open/space/basic, +/area/medical/virology) +"nv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"nw" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"nC" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space) +"nD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"nE" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/solars/port/fore) +"nF" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/medical/virology) +"nH" = ( +/obj/item/pipe_dispenser{ + pixel_y = 6 + }, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser{ + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"nI" = ( +/turf/closed/wall/r_wall, +/area/cargo/office) +"nL" = ( +/obj/structure/lattice, +/obj/item/stack/ore/iron, +/turf/open/space/basic, +/area/space/nearstation) +"nM" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/medical/sleeper) +"nN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/command/heads_quarters/captain/private) +"nO" = ( +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"nQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"nT" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"nU" = ( +/obj/structure/closet/secure_closet/hydroponics{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/construction/storage_wing) +"nW" = ( +/turf/closed/wall, +/area/mine/lobby) +"nZ" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"oa" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 15 + }, +/obj/item/stock_parts/cell/super{ + pixel_x = -1; + layer = 3.02; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/super{ + layer = 3.01; + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/stock_parts/cell/super{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"ob" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/solars/port/fore) +"od" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"of" = ( +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"og" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/medical/virology) +"oh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"oi" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/mine/unexplored) +"ok" = ( +/obj/structure/closet/crate/engineering, +/obj/item/circuitboard/machine/space_heater, +/obj/item/circuitboard/machine/space_heater, +/obj/item/circuitboard/machine/space_heater, +/obj/item/circuitboard/machine/space_heater, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/thermomachine, +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"ol" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"om" = ( +/turf/closed/wall/r_wall, +/area/mine/lobby) +"oo" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/warehouse) +"op" = ( +/obj/machinery/door/airlock/research/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"or" = ( +/obj/structure/closet/crate/medical, +/obj/item/circuitboard/machine/limbgrower, +/obj/item/circuitboard/machine/medipen_refiller, +/obj/item/circuitboard/machine/cryo_tube, +/obj/item/circuitboard/machine/cryo_tube, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/reagentgrinder, +/obj/item/circuitboard/machine/reagentgrinder, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/central) +"ou" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ow" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ox" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/circuitboard/machine/electrolyzer, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"oA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"oB" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/bag/bio, +/obj/item/storage/bag/chemistry, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/central) +"oD" = ( +/obj/machinery/door/airlock/engineering/glass, +/turf/open/floor/plasteel, +/area/engineering/main) +"oF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"oI" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"oJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"oK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"oM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/mine/lobby) +"oO" = ( +/turf/open/floor/circuit/green, +/area/mine/lobby) +"oQ" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/lab) +"oR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"oU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage) +"oV" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"oW" = ( +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"oY" = ( +/obj/machinery/door/airlock/research/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research) +"oZ" = ( +/turf/open/floor/plating/foam, +/area/space) +"pc" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/engine/airless, +/area/engineering/main) +"pd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/mine/lobby) +"pe" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"pf" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/window/brigdoor/southleft, +/obj/item/folder/documents{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pg" = ( +/obj/item/rcd_upgrade/simple_circuits, +/turf/open/floor/plating/foam, +/area/space) +"ph" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/space/basic, +/area/space) +"pi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"pj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pk" = ( +/mob/living/silicon/robot/shell, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/ai_monitored/turret_protected/aisat/hallway) +"pl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pm" = ( +/obj/machinery/research/explosive_compressor, +/obj/item/radio/intercom{ + pixel_y = 25 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/misc_lab) +"pn" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/shaft_miner, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"po" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"pq" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"pr" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ai_monitored/turret_protected/ai) +"pt" = ( +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"pu" = ( +/obj/item/stack/ore/silver, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"pw" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"px" = ( +/obj/item/stack/ore/iron, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"pB" = ( +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"pD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pE" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/box/beakers/large_beakers, +/obj/item/storage/box/beakers/large_beakers, +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/storage/box/syringes, +/obj/item/storage/box/syringes, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/medical/medbay/central) +"pF" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engineering/main) +"pG" = ( +/obj/structure/cable, +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"pH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pK" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"pL" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/central) +"pM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pP" = ( +/turf/closed/wall, +/area/engineering/storage) +"pQ" = ( +/obj/structure/closet/secure_closet/security/specialist{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/mechanic) +"pS" = ( +/obj/structure/table_frame, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"pT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ore_box, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/airless, +/area/space) +"pX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"pY" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/science/xenobiology) +"pZ" = ( +/obj/structure/lattice, +/obj/structure/foamedmetal, +/turf/open/space/basic, +/area/space) +"qa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"qd" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"qf" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/milk, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/kitchen/knife, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"qi" = ( +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/command/gateway) +"ql" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"qm" = ( +/obj/structure/bed/double, +/obj/item/bedsheet/captain/double, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/meeting_room) +"qp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/electrical{ + pixel_y = -13 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"qr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"qs" = ( +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"qt" = ( +/turf/open/floor/plasteel, +/area/mine/unexplored) +"qw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"qx" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/asteroid/airless/cave, +/area/medical/virology) +"qy" = ( +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"qz" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"qA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/science/research) +"qB" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/construction/storage_wing) +"qC" = ( +/obj/item/screwdriver, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plasteel/monofloor/airless, +/area/science/xenobiology) +"qD" = ( +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"qG" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"qI" = ( +/obj/structure/closet/crate/science, +/obj/item/experi_scanner, +/obj/item/experi_scanner, +/obj/item/discovery_scanner, +/obj/item/discovery_scanner, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"qJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"qK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qL" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/mechanic, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"qM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 20 + }, +/obj/item/defibrillator/loaded, +/turf/open/floor/mineral/titanium/yellow, +/area/hallway/secondary/entry) +"qN" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/ore/iron, +/turf/open/space/basic, +/area/space/nearstation) +"qO" = ( +/turf/open/floor/plasteel/dark/side, +/area/science/misc_lab) +"qP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light, +/turf/open/floor/engine, +/area/engineering/main) +"qQ" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"qR" = ( +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating/airless, +/area/medical/virology) +"qS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"qT" = ( +/obj/machinery/door/airlock/vault{ + req_access_txt = "20" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"qU" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/melee/flyswatter, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/queen_bee/bought, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/suit/beekeeper_suit, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"qW" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"qX" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"qY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"qZ" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ai_monitored/turret_protected/aisat/hallway) +"ra" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/closet/secure_closet/medical1{ + locked = 0 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/medbay/central) +"rd" = ( +/obj/machinery/door/airlock/engineering/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"rf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rg" = ( +/obj/structure/closet/crate/medical, +/obj/item/defibrillator/loaded, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/storage/belt/medical{ + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/medical/medbay/central) +"rh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/table/wood, +/obj/item/storage/lockbox/medal{ + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ri" = ( +/obj/structure/closet/crate/cardboard, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/lightreplacer, +/obj/item/storage/belt/janitor, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/mop, +/obj/item/pushbroom, +/obj/item/storage/bag/trash, +/obj/item/reagent_containers/glass/bucket, +/obj/item/soap, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"rl" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ro" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"rp" = ( +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"rq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"ru" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"rx" = ( +/obj/item/stack/ore/glass, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"ry" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/main) +"rB" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"rD" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating, +/area/medical/medbay/central) +"rE" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/foam, +/area/medical/sleeper) +"rH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"rI" = ( +/obj/machinery/door/airlock/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"rL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rO" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"rQ" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"rR" = ( +/obj/item/clothing/suit/armor/reactive/teleport, +/turf/open/floor/plating/foam, +/area/space) +"rS" = ( +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/atmos, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage) +"rT" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"rU" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/marker_beacon, +/turf/open/floor/plating, +/area/space) +"rV" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = -10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + obj_integrity = 300; + pixel_x = 4; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"rX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rY" = ( +/turf/open/floor/plasteel, +/area/mine/lobby) +"sb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/engine, +/area/engineering/main) +"se" = ( +/obj/machinery/light/broken{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sg" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"si" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"sj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/engine, +/area/engineering/main) +"sk" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/misc_lab) +"sl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"sm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"so" = ( +/obj/machinery/door/airlock/mining/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"sp" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"sq" = ( +/turf/closed/wall, +/area/science/test_area) +"sr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"st" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"sw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/holosign/barrier/atmos, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"sx" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/mine/unexplored) +"sz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"sA" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sC" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/storage) +"sD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"sE" = ( +/obj/structure/closet/crate/medical, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/machine/stasis, +/obj/item/circuitboard/machine/stasis, +/obj/item/circuitboard/computer/crew, +/obj/item/circuitboard/computer/med_data, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/central) +"sF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"sG" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"sK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"sM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/science/lab) +"sN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sP" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"sT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"sU" = ( +/turf/open/floor/plating/airless, +/area/tcommsat/server) +"sV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"sX" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space) +"sY" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"ta" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/cargo/warehouse) +"tb" = ( +/obj/machinery/mecha_part_fabricator/sb, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"td" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/space) +"tf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Hall - Aft"; + dir = 1; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"th" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"tk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/space/basic, +/area/space/nearstation) +"tm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"tn" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/mechanic) +"ts" = ( +/obj/structure/closet/crate/medical, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/chem_heater, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/central) +"tu" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab Entrance"; + network = list("ss13","rd") + }, +/turf/open/floor/engine/airless, +/area/science/xenobiology) +"tv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"tx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ty" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/monofloor/white/airless, +/area/medical/sleeper) +"tA" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/storage/box/stingbangs, +/obj/item/storage/box/teargas, +/obj/item/storage/box/teargas, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/obj/item/gun/grenadelauncher, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"tC" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/lab) +"tD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/research) +"tF" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ai_monitored/turret_protected/ai) +"tG" = ( +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = -27; + pixel_y = -7 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -7 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 5; + pixel_x = -27 + }, +/obj/machinery/button/door{ + id = "AI Core shutters"; + name = "AI Core shutters control"; + pixel_x = 24; + pixel_y = 7; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters control"; + pixel_x = 36; + pixel_y = 7; + req_access_txt = "16" + }, +/obj/structure/cable, +/obj/effect/landmark/start/ai, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"tJ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"tK" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Air to Distro" + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"tM" = ( +/obj/structure/table_frame, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"tN" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"tR" = ( +/obj/machinery/door/airlock/public/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"tS" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"tU" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/box/disks, +/obj/item/reagent_containers/glass/bottle/mutagen, +/obj/item/reagent_containers/syringe, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/storage/pill_bottle/mutadone, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/research) +"tV" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/medical/virology) +"tW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"tZ" = ( +/obj/machinery/door/airlock/engineering, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ua" = ( +/turf/open/floor/plating/airless, +/area/medical/medbay/central) +"uc" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"ud" = ( +/obj/item/rcd_upgrade/silo_link, +/turf/open/floor/plating/foam, +/area/space) +"uf" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun/mini, +/obj/item/gun/energy/e_gun/mini, +/obj/item/gun/energy/e_gun/mini, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"ug" = ( +/obj/structure/safe, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/spacecash/c500, +/obj/machinery/light/small, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera/motion/directional/north, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"uh" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/plate{ + pixel_y = 4 + }, +/obj/item/food/cheesewedge{ + pixel_y = 9; + layer = 3.01 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"ui" = ( +/obj/machinery/power/emitter, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"uj" = ( +/obj/machinery/vending/clothing, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/hallway/secondary/entry) +"uk" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ul" = ( +/obj/item/ai_module/reset/purge, +/obj/item/ai_module/reset, +/obj/item/ai_module/supplied/quarantine, +/obj/item/ai_module/supplied/freeform, +/obj/item/ai_module/core/full/paladin_devotion, +/obj/item/ai_module/core/full/robocop, +/obj/item/ai_module/core/full/asimov, +/obj/item/ai_module/core/full/corp, +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/structure/closet/crate/secure/science{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/research) +"um" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pickaxe/mini, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/tools{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"ur" = ( +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ut" = ( +/obj/structure/table, +/obj/item/gun/energy/plasmacutter, +/obj/item/gun/energy/plasmacutter, +/obj/item/gun/energy/plasmacutter, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/meeting_room) +"uu" = ( +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage) +"uv" = ( +/obj/machinery/vending/medical, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay/central) +"ux" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"uz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"uA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/lobby) +"uC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"uE" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/machine/copytech_platform, +/obj/item/circuitboard/machine/copytech, +/obj/item/circuitboard/machine/experimentor, +/obj/item/circuitboard/machine/destructive_scanner, +/obj/item/circuitboard/machine/destructive_analyzer, +/obj/item/circuitboard/machine/rdserver, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/lab) +"uF" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/central) +"uG" = ( +/obj/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/hallway) +"uI" = ( +/obj/effect/turf_decal/stripes/box, +/obj/item/rcd_upgrade/silo_link, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uJ" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Port"; + dir = 4; + network = list("aicore") + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"uL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"uM" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"uN" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/research) +"uO" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"uS" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"uT" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plasteel, +/area/cargo/office) +"uU" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"uV" = ( +/obj/structure/table, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark/side, +/area/science/misc_lab) +"uW" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"uX" = ( +/obj/machinery/porta_turret/ai{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"uY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vc" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"vd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"ve" = ( +/obj/structure/foamedmetal/resin, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"vf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vg" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/closet/crate/medical, +/obj/item/wheelchair, +/obj/item/wheelchair, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"vh" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 10; + pixel_y = 22 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27 + }, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 10; + pixel_y = -25 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + pixel_x = -3; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"vj" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/machine/dnascanner, +/obj/item/circuitboard/computer/scan_consolenew, +/obj/item/circuitboard/machine/dnascanner, +/obj/item/circuitboard/computer/scan_consolenew, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"vk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/target/alien/anchored, +/obj/machinery/camera/preset/ordnance/num1{ + dir = 10 + }, +/turf/open/indestructible/labfloor, +/area/science/test_area) +"vl" = ( +/obj/structure/lattice, +/obj/machinery/light/broken, +/turf/open/space/basic, +/area/science/lab) +"vm" = ( +/mob/living/simple_animal/hostile/asteroid/goliath, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"vo" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"vp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/gps/mining, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/circuitboard/machine/crystallizer, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"vt" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"vu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"vv" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"vw" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"vy" = ( +/turf/closed/wall, +/area/solars/port/fore) +"vz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"vA" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vC" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"vD" = ( +/turf/closed/wall, +/area/mine/unexplored) +"vF" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"vG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 4 + }, +/turf/open/space/basic, +/area/command/heads_quarters/captain/private) +"vH" = ( +/obj/structure/foamedmetal/resin, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"vI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/disk/nuclear, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/medical/medbay/central) +"vL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/floor/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"vM" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "Virus Door 2"; + name = "Камера содержания 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/medical/virology) +"vN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"vO" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "O2 Outlet Pump"; + target_pressure = 4500 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vR" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"vS" = ( +/obj/item/areaeditor/blueprints/slime, +/turf/open/floor/engine/airless, +/area/science/xenobiology) +"vU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vX" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"vY" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"vZ" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall, +/area/engineering/gravity_generator) +"wa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wb" = ( +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"wc" = ( +/obj/machinery/vending/autodrobe/all_access, +/obj/machinery/light, +/turf/open/floor/mineral/titanium/yellow, +/area/hallway/secondary/entry) +"wf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wi" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/mecha_kineticgun{ + pixel_y = 4 + }, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"wk" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/space) +"wl" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall, +/area/engineering/main) +"wn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"wo" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/east, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"wp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"wr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ws" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/main) +"wt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/blackmarket_uplink{ + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wu" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/fancy/donut_box{ + pixel_y = 12; + pixel_x = -1 + }, +/obj/item/storage/fancy/donut_box{ + pixel_y = 2; + layer = 3.01 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"ww" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = 19; + layer = 3.03 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -3; + pixel_y = 14; + layer = 3.04 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 8; + pixel_y = 19; + layer = 3.03 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -3; + pixel_y = 14; + layer = 3.04 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 6; + pixel_y = 9; + layer = 3.05 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = 6; + pixel_y = 9; + layer = 3.05 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -5; + pixel_y = 5; + layer = 3.06 + }, +/obj/item/reagent_containers/food/drinks/waterbottle/large{ + pixel_x = -5; + pixel_y = 5; + layer = 3.06 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"wx" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/foamedmetal/resin, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"wy" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"wB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"wC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"wE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"wG" = ( +/obj/machinery/shieldgen{ + anchored = 1; + active = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"wH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"wJ" = ( +/turf/open/floor/plasteel/dark/side, +/area/maintenance/radshelter) +"wL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"wM" = ( +/obj/machinery/mineral/ore_redemption, +/obj/machinery/door/window/brigdoor/northleft, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"wO" = ( +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wP" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/shieldgen{ + anchored = 1; + active = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"wQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"wV" = ( +/obj/structure/holosign/barrier/atmos, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wW" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/gravity_generator/main, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wY" = ( +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"wZ" = ( +/obj/structure/lattice, +/turf/closed/mineral, +/area/mine/unexplored) +"xb" = ( +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"xc" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"xd" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"xe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main/mechanic) +"xf" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"xl" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/foam, +/area/science/lab) +"xm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"xp" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"xr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/cargo/warehouse) +"xu" = ( +/turf/closed/wall, +/area/medical/virology) +"xz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/lab) +"xB" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/construction/storage_wing) +"xD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"xF" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/foamedmetal/resin, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"xI" = ( +/obj/machinery/status_display/evac{ + pixel_y = 31 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "AI Chamber - Fore"; + network = list("aicore") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"xJ" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/mmi, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"xK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"xM" = ( +/obj/machinery/camera/motion/directional/east, +/turf/open/floor/circuit/green, +/area/mine/lobby) +"xN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"xP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/mine/lobby) +"xQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"xR" = ( +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/space) +"xT" = ( +/turf/open/floor/plating, +/area/mine/lobby) +"xU" = ( +/turf/open/floor/plasteel, +/area/cargo/office) +"xV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"xW" = ( +/turf/open/floor/plating/foam, +/area/engineering/main) +"yb" = ( +/obj/structure/lattice, +/obj/item/stack/cable_coil/five, +/turf/open/space/basic, +/area/space/nearstation) +"yd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"ye" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yg" = ( +/obj/structure/table, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel, +/area/engineering/storage) +"yh" = ( +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"yi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"yk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"yn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"yp" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"yr" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"yt" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"yv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"yw" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/engineering/main) +"yx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab) +"yA" = ( +/obj/structure/table, +/obj/item/stack/spacecash/c10000, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"yB" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/mine/unexplored) +"yC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/cargo/warehouse) +"yD" = ( +/obj/structure/cable, +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"yE" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 5 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"yG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"yH" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera{ + c_tag = "AI Chamber - Fore"; + network = list("aicore") + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"yI" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yJ" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/lab) +"yK" = ( +/turf/open/space/basic, +/area/engineering/atmos/upper) +"yL" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"yM" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"yN" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"yP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"yQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engineering/main) +"yR" = ( +/obj/item/rcd_upgrade/frames{ + pixel_y = -9; + pixel_x = -8 + }, +/turf/open/floor/engine/airless, +/area/engineering/main) +"yV" = ( +/turf/closed/wall, +/area/engineering/atmos/upper) +"yW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/meeting_room) +"yY" = ( +/obj/item/storage/firstaid/tactical, +/obj/effect/supplypod_rubble, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"yZ" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/fore) +"za" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/monofloor/white/airless, +/area/medical/virology) +"zb" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"zc" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/mime, +/obj/machinery/vending/wallmed/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"zd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"ze" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"zg" = ( +/obj/machinery/shieldgen{ + anchored = 1; + active = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"zi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"zj" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"zk" = ( +/obj/machinery/autolathe, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"zl" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"zm" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Hall - Aft"; + dir = 10; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"zn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"zp" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/item/stock_parts/cell/hyper, +/obj/item/binoculars, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"zq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"zs" = ( +/obj/structure/sign/poster/contraband/free_drone{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"zt" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/construction/storage_wing) +"zu" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"zv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"zy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"zA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"zC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"zD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"zF" = ( +/obj/machinery/door/airlock/mining/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"zH" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"zJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"zK" = ( +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot, +/obj/item/shield/riot/military, +/obj/item/shield/riot/kevlar, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"zL" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/medical/medbay/central) +"zM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"zN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/storage) +"zO" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"zP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"zQ" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"zR" = ( +/obj/structure/table_frame, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"zS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"zT" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/maintenance/radshelter) +"zV" = ( +/obj/vehicle/sealed/mecha/working/clarke, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"zW" = ( +/turf/closed/wall, +/area/medical/sleeper) +"zZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos/upper) +"Ab" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Ac" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/meeting_room) +"Ad" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Ae" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"Af" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 8; + pixel_y = -2 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Ah" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"Ai" = ( +/obj/structure/table, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_y = 14 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"Ak" = ( +/obj/item/storage/part_replacer/bluespace/tier2, +/obj/item/storage/part_replacer/bluespace/tier2, +/obj/item/storage/part_replacer/bluespace/tier2, +/obj/structure/closet/crate/secure/engineering{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"Al" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Am" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"Aq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"As" = ( +/obj/structure/marker_beacon/green, +/obj/effect/turf_decal/trimline/yellow, +/obj/effect/turf_decal/stripes/asteroid/box, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Au" = ( +/turf/closed/wall, +/area/construction/storage_wing) +"Av" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"Aw" = ( +/obj/structure/table, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"Ay" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"Az" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"AA" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"AF" = ( +/obj/item/stack/ore/iron, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"AG" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"AI" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/closed/mineral/random, +/area/mine/unexplored) +"AJ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"AK" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/button/door{ + pixel_y = 32; + name = "Камера содержания 2"; + id = "Virus Door 2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"AO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"AR" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"AU" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/misc_lab) +"AW" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/obj/item/gps/mining/off, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"AY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine/airless, +/area/engineering/main) +"Ba" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe{ + pixel_x = -4 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/meeting_room) +"Bg" = ( +/turf/open/floor/plating/foam, +/area/medical/medbay/central) +"Bh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Bi" = ( +/obj/machinery/food_cart, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"Bj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Bk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Bl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Bm" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/south, +/turf/open/space/basic, +/area/engineering/main) +"Bn" = ( +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External East"; + dir = 4; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space) +"Bo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/foamedmetal/resin, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/atmos/upper) +"Bp" = ( +/obj/item/wrench, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Bq" = ( +/obj/structure/closet/crate/secure/gear{ + locked = 0 + }, +/obj/item/circuitboard/machine/cell_charger, +/obj/item/circuitboard/machine/recharger, +/obj/item/circuitboard/machine/recharger, +/obj/item/circuitboard/machine/recharger, +/obj/item/recharger_item, +/obj/item/recharger_item, +/obj/item/tactical_recharger, +/obj/item/tactical_recharger, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"Br" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"Bs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"Bt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"Bu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/mineral/ore_redemption{ + input_dir = 8; + output_dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"Bw" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plasteel, +/area/science/lab) +"Bx" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"BB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BC" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"BD" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"BE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"BF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/lobby) +"BG" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/lab) +"BH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/mechanic) +"BI" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"BJ" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/circuitboard/machine/chem_master/condi, +/obj/item/circuitboard/machine/reagentgrinder, +/obj/item/circuitboard/machine/plantgenes, +/obj/item/circuitboard/machine/biogenerator, +/obj/item/circuitboard/machine/seed_extractor, +/obj/item/circuitboard/machine/chem_dispenser/botany, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"BK" = ( +/turf/open/floor/plasteel/dark/side, +/area/cargo/meeting_room) +"BM" = ( +/turf/open/floor/plating/airless, +/area/space) +"BN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"BQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BS" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"BT" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"BU" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"BV" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/mine/lobby) +"BW" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/ai_monitored/turret_protected/aisat/hallway) +"BY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/mine/lobby) +"BZ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"Ca" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Cb" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_ammo/large{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weldingtool/experimental{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Cc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/engineering/main) +"Ce" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Cf" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"Cg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Cj" = ( +/obj/item/stack/ore/glass, +/turf/open/space/basic, +/area/space) +"Cl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/meeting_room) +"Cm" = ( +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plasteel, +/area/cargo/office) +"Co" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"Cq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"Cr" = ( +/obj/structure/foamedmetal, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/engine, +/area/engineering/main) +"Cs" = ( +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Cu" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/solars/port/fore) +"Cv" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/sand/plating/lite_1, +/obj/effect/turf_decal/stripes/asteroid/corner, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Cw" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Cy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"CB" = ( +/turf/closed/wall, +/area/science/research) +"CC" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"CE" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"CG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"CJ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, +/turf/open/floor/plating, +/area/mine/lobby) +"CK" = ( +/turf/open/floor/engine/airless, +/area/science/xenobiology) +"CL" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"CN" = ( +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External West"; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space) +"CO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"CR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/medical/medbay/central) +"CT" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/research/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/lab) +"CU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"CV" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"CW" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"CZ" = ( +/obj/structure/closet/crate/science, +/obj/item/circuitboard/computer/mech_bay_power_console, +/obj/item/circuitboard/machine/mech_recharger, +/obj/item/circuitboard/computer/mech_bay_power_console, +/obj/item/circuitboard/machine/mech_recharger, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/item/circuitboard/machine/cell_charger, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"Da" = ( +/obj/item/rod_of_asclepius, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Db" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating/airless, +/area/command/heads_quarters/captain/private) +"Dc" = ( +/turf/closed/wall/rust, +/area/mine/unexplored) +"De" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Dg" = ( +/turf/open/floor/plating, +/area/medical/sleeper) +"Dj" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"Dk" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Dl" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north{ + view_range = 14 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"Dn" = ( +/obj/item/stack/cable_coil/cut, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space) +"Do" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"Dp" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"Dq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"Dr" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space) +"Ds" = ( +/obj/machinery/vending/drugs, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay/central) +"Dt" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"Dx" = ( +/obj/item/wrench, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"Dy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/solars/port/fore) +"Dz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/sleeper) +"DB" = ( +/obj/item/wirecutters, +/turf/open/floor/plating/airless, +/area/engineering/main) +"DC" = ( +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"DD" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"DE" = ( +/obj/machinery/mass_driver{ + id = "toxinsdriver" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/misc_lab) +"DF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating, +/area/mine/lobby) +"DG" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space) +"DH" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/central) +"DI" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/command/gateway) +"DL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DM" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/sleeper) +"DN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"DO" = ( +/obj/structure/shuttle/engine/large, +/turf/open/floor/plating/airless, +/area/tcommsat/server) +"DP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DU" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"DV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"DX" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"DY" = ( +/obj/structure/closet/secure_closet/hydroponics{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/construction/storage_wing) +"DZ" = ( +/obj/structure/foamedmetal/resin, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"Ec" = ( +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"Ed" = ( +/turf/open/floor/plating/airless, +/area/engineering/main) +"Eg" = ( +/obj/structure/closet/secure_closet/engineering_personal{ + locked = 0 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/lobby) +"Ei" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/tcommsat/server) +"Ej" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + locked = 0 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/lobby) +"El" = ( +/obj/structure/lattice, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/space/basic, +/area/space/nearstation) +"Em" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"Eo" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"Ep" = ( +/turf/open/floor/plating/foam, +/area/medical/virology) +"Eq" = ( +/turf/open/floor/plasteel/dark/side, +/area/construction/storage_wing) +"Er" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main/mechanic) +"Es" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"Eu" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Ev" = ( +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/structure/closet/crate/engineering/electrical, +/obj/item/circuitboard/machine/smes, +/obj/item/circuitboard/machine/smes, +/obj/item/circuitboard/machine/smes, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/item/circuitboard/machine/recharger, +/obj/item/circuitboard/machine/cell_charger, +/obj/item/circuitboard/machine/pacman/mrs, +/obj/item/circuitboard/machine/pacman/super, +/obj/item/circuitboard/machine/pacman, +/obj/item/clothing/gloves/color/yellow, +/obj/item/inducer, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Ew" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"EB" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/multitool, +/obj/item/wirecutters, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"EE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"EF" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"EG" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"EI" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"EJ" = ( +/obj/item/circuitboard/machine/nanite_program_hub, +/obj/item/circuitboard/machine/nanite_programmer, +/obj/item/circuitboard/computer/nanite_cloud_controller, +/obj/item/circuitboard/machine/nanite_chamber, +/obj/item/circuitboard/computer/nanite_chamber_control, +/obj/item/nanite_scanner, +/obj/item/nanite_remote, +/obj/structure/closet/crate/secure/science{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"EL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"EM" = ( +/obj/structure/holosign/barrier/atmos, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"EO" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/command/gateway) +"EP" = ( +/turf/open/floor/plasteel/dark/side, +/area/cargo/office) +"EQ" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/medical/sleeper) +"ER" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/meeting_room) +"ES" = ( +/obj/machinery/door/airlock/vault, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"ET" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"EU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"EV" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/construction/storage_wing) +"EX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/cargo/office) +"EY" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"EZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/lab) +"Fa" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"Fc" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Lab Entrance"; + network = list("ss13","rd") + }, +/turf/open/floor/plating/asteroid/airless, +/area/science/xenobiology) +"Fd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"Fe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/mine/lobby) +"Ff" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Fg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Fh" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"Fl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Fm" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"Fo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Fq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"Fr" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"Fs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera/autoname/directional/west{ + view_range = 14; + dir = 9 + }, +/turf/open/space/basic, +/area/space) +"Ft" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Fv" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Fw" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/meeting_room) +"Fy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate/solarpanel_small, +/obj/item/stack/sheet/rglass/x10, +/obj/item/stack/sheet/rglass/x10, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"FA" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/cargo/office) +"FB" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/secure/briefcase{ + pixel_x = -1; + pixel_y = 10 + }, +/obj/item/storage/secure/briefcase{ + pixel_y = 1; + pixel_x = 1 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"FC" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"FD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"FE" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"FF" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"FG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FH" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plasteel, +/area/space) +"FI" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"FK" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FL" = ( +/obj/machinery/conveyor{ + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"FM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/security/main/mechanic) +"FP" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"FS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/maintenance/radshelter) +"FU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FV" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"FW" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"FX" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/medical/virology) +"FZ" = ( +/obj/machinery/computer/rdconsole{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/lab) +"Ga" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor/airless, +/area/engineering/atmos/upper) +"Gb" = ( +/obj/machinery/computer/atmos_control/air_tank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"Gc" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"Ge" = ( +/obj/structure/closet/crate/radiation, +/obj/item/stack/sheet/mineral/uranium/five, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Gf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Gi" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/structure/closet/crate/engineering, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Gk" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gm" = ( +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Gn" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Go" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Gp" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"Gr" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/science/lab) +"Gt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"Gu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Gv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"Gw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/main) +"Gx" = ( +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Gy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/construction/storage_wing) +"Gz" = ( +/turf/closed/wall, +/area/engineering/main) +"GA" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/clothing/gloves/color/fyellow/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GC" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"GG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GI" = ( +/obj/machinery/power/apc/highcap/ten_k{ + pixel_y = -25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"GJ" = ( +/obj/structure/table_frame, +/obj/item/reagent_containers/hypospray/cmo{ + pixel_x = -8 + }, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"GK" = ( +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"GM" = ( +/obj/machinery/light/floor/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/research) +"GP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"GR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/rcd_upgrade/simple_circuits, +/turf/open/space/basic, +/area/space/nearstation) +"GT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/research) +"GU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/space/basic, +/area/space) +"GW" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"GX" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/space/basic, +/area/space) +"GY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GZ" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Ha" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"Hc" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"Hd" = ( +/obj/machinery/door/airlock/virology/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"He" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hh" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hi" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/cargo/meeting_room) +"Hj" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"Hk" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/fore) +"Hl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"Hm" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Hn" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Ho" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Hp" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/lobby) +"Hq" = ( +/obj/structure/foamedmetal/resin, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"Hr" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Ht" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Hu" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"Hx" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Hy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"HC" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"HD" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"HE" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"HG" = ( +/obj/structure/cable, +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"HH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"HI" = ( +/obj/machinery/door/airlock/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"HJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"HK" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/engineering/main) +"HL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"HM" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"HN" = ( +/obj/item/screwdriver, +/turf/open/floor/plating/airless, +/area/engineering/main) +"HP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HT" = ( +/turf/closed/mineral/random, +/area/mine/unexplored) +"HU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"HV" = ( +/obj/machinery/power/grounding_rod, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"HW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel, +/area/mine/lobby) +"HX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"HY" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Ia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/rank/cargo/miner{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/under/rank/cargo/miner{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/under/rank/cargo/miner, +/obj/structure/table, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ib" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/space/basic, +/area/mine/lobby) +"Ic" = ( +/obj/machinery/computer/bounty{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Ie" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"If" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/closet/crate/science, +/obj/item/circuitboard/machine/telesci_pad, +/obj/item/circuitboard/computer/telesci_console, +/obj/item/circuitboard/machine/teleporter_hub, +/obj/item/circuitboard/machine/teleporter_station, +/obj/item/circuitboard/computer/teleporter, +/obj/item/circuitboard/machine/teleporter_hub, +/obj/item/circuitboard/machine/teleporter_station, +/obj/item/circuitboard/computer/teleporter, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/research) +"Ig" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/mine/unexplored) +"Ih" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/stripes/line, +/turf/open/space/basic, +/area/mine/unexplored) +"Ij" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"Ik" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/space/basic, +/area/mine/lobby) +"Il" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Im" = ( +/obj/structure/railing, +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/stripes/asteroid/line, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Io" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/loading_area, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"Iq" = ( +/obj/machinery/mecha_part_fabricator/cargo, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"Is" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Iv" = ( +/obj/machinery/door/airlock/shuttle/glass, +/obj/structure/cable, +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Ix" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space) +"Iy" = ( +/obj/structure/holosign/barrier/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"IA" = ( +/obj/machinery/door/airlock/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"IB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"IC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/marker_beacon/green, +/turf/open/space/basic, +/area/mine/unexplored) +"IE" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IF" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/wirecutters, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"IH" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_x = -2; + pixel_y = 18 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/electrical{ + pixel_y = 2; + pixel_x = -1 + }, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/east, +/obj/machinery/power/apc/auto_name/directional/west{ + cell_type = /obj/item/stock_parts/cell/high + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"IJ" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/closet/crate/secure/science{ + locked = 0 + }, +/turf/open/floor/plasteel/airless, +/area/space) +"IK" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IL" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"IM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"IO" = ( +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"IP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"IR" = ( +/obj/structure/table, +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IT" = ( +/obj/structure/lattice, +/obj/item/shard, +/turf/open/space/basic, +/area/space/nearstation) +"IU" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"IV" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/east, +/turf/open/space/basic, +/area/space) +"IW" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"IY" = ( +/obj/structure/sign/departments/medbay{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"IZ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/radshelter) +"Ja" = ( +/turf/closed/mineral, +/area/mine/unexplored) +"Jb" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"Jc" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/construction/storage_wing) +"Jd" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/foamedmetal/resin, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Je" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/lab) +"Ji" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Jj" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/radshelter) +"Jk" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"Jl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Jm" = ( +/turf/open/floor/plasteel, +/area/engineering/storage) +"Jo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"Jp" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/medical/medbay/central) +"Jq" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Jt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/space/basic, +/area/space) +"Ju" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Jv" = ( +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"Jw" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"Jy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Jz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"JA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JB" = ( +/obj/structure/lattice, +/obj/item/pipe_dispenser/bluespace, +/turf/open/space/basic, +/area/engineering/atmos/upper) +"JC" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"JE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"JG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"JM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JN" = ( +/obj/item/rcd_upgrade/simple_circuits{ + pixel_y = -6; + pixel_x = 7 + }, +/obj/item/rcd_upgrade/frames{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/plating/foam, +/area/space) +"JO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JQ" = ( +/turf/closed/wall, +/area/science/misc_lab) +"JR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"JS" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/preset/ordnance/num2, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"JT" = ( +/obj/structure/closet/crate/solarpanel_small, +/obj/item/stack/sheet/rglass/x10, +/obj/item/stack/sheet/rglass/x10, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"JU" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"JV" = ( +/obj/machinery/air_sensor/oxygen_tank, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"JW" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/space/basic, +/area/space) +"JX" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"JZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ka" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/weldingtool, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Kb" = ( +/turf/closed/wall, +/area/security/main/mechanic) +"Ke" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/seclite{ + pixel_y = 6 + }, +/obj/item/flashlight/seclite{ + pixel_y = 6 + }, +/obj/item/flashlight/seclite{ + pixel_y = 6 + }, +/obj/item/flashlight/seclite{ + pixel_x = -9 + }, +/obj/item/flashlight/seclite{ + pixel_x = -9 + }, +/obj/item/flashlight/seclite{ + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/meeting_room) +"Kf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left, +/turf/open/space/basic, +/area/space/nearstation) +"Kg" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/meeting_room) +"Kh" = ( +/obj/structure/closet/crate/freezer, +/obj/item/circuitboard/machine/chem_master/condi, +/obj/item/circuitboard/machine/reagentgrinder, +/obj/item/circuitboard/machine/coffeemaker, +/obj/item/circuitboard/machine/chem_dispenser/drinks/beer, +/obj/item/circuitboard/machine/chem_dispenser/drinks, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"Ki" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Kj" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Kk" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/medical/medbay/central) +"Kl" = ( +/obj/machinery/mecha_part_fabricator/engi, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"Ko" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Kq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"Ku" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/solars/port/fore) +"Kx" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space) +"Ky" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/airless, +/area/science/xenobiology) +"KA" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/test_area) +"KC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/engineering/atmos/upper) +"KD" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"KE" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space) +"KF" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"KH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"KI" = ( +/turf/open/space/basic, +/area/engineering/main) +"KJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"KM" = ( +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"KN" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste In"; + target_pressure = 4500; + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"KO" = ( +/obj/structure/table, +/obj/item/mining_voucher{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/mining_voucher{ + pixel_y = 2 + }, +/obj/item/mining_voucher{ + pixel_y = 3; + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"KP" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/asteroid/line, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"KR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"KS" = ( +/obj/structure/lattice, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space) +"KV" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma/thirty, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"KZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Lc" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Le" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Lf" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Lg" = ( +/obj/item/gun/syringe, +/obj/item/reagent_containers/syringe{ + pixel_y = -8 + }, +/turf/open/floor/plating/foam, +/area/medical/virology) +"Lh" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/central) +"Lj" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/lab) +"Lm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Lp" = ( +/obj/structure/cable, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"Lq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"Lt" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/turf/open/space/basic, +/area/mine/unexplored) +"Lu" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Lw" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/gps{ + pixel_y = 4 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Lx" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/research) +"Ly" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"Lz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating/lite_2, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"LA" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/lab) +"LC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"LD" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"LE" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty{ + pixel_x = -13; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"LF" = ( +/obj/machinery/computer/gateway_control, +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/command/gateway) +"LH" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"LI" = ( +/obj/machinery/power/tesla_coil, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"LK" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/mine/lobby) +"LL" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/mine/lobby) +"LM" = ( +/obj/structure/tank_holder/extinguisher, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"LN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"LO" = ( +/obj/machinery/door/airlock/atmos, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/atmos/upper) +"LP" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"LR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"LU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"LV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/science/lab) +"LW" = ( +/obj/item/shard, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"LX" = ( +/turf/open/floor/plasteel/monofloor/airless, +/area/science/xenobiology) +"LY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"LZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/warehouse) +"Ma" = ( +/obj/machinery/vending/games, +/turf/open/floor/plasteel, +/area/science/lab) +"Md" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/lobby) +"Me" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"Mf" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/airless, +/area/engineering/main) +"Mg" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"Mk" = ( +/obj/item/stack/rods, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space) +"Ml" = ( +/turf/closed/wall/mineral/titanium, +/area/hallway/secondary/entry) +"Mm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Mn" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = 25; + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Mo" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/engineering/atmos/upper) +"Mp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/door/airlock/command/glass, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"Mr" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Ms" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/rcd_upgrade/furnishing{ + pixel_x = -7; + pixel_y = 5 + }, +/turf/open/floor/plasteel/airless, +/area/medical/sleeper) +"Mt" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/solars/port/fore) +"Mv" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/dark_blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"Mx" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/medical/sleeper) +"My" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/grenade/chem_grenade/resin_foam{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"MA" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"MB" = ( +/obj/item/circuitboard/machine/skill_station, +/turf/open/floor/plating/airless, +/area/space) +"MC" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"MG" = ( +/obj/machinery/atmospherics/miner/oxygen, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos/upper) +"MH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"MJ" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/storage/box/lights/bulbs, +/obj/item/storage/box/lights/bulbs, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/tubes, +/obj/item/storage/box/lights/tubes, +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"MK" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/mine/lobby) +"ML" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"MM" = ( +/turf/open/floor/plasteel/dark/side, +/area/medical/medbay/central) +"MN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"MP" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/test_area) +"MR" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"MS" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner, +/turf/open/space/basic, +/area/mine/unexplored) +"MU" = ( +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space) +"MW" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"MY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/engineering/lobby) +"MZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/mine/lobby) +"Nb" = ( +/obj/machinery/airalarm/directional/east, +/obj/structure/closet/crate/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"Nc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Nd" = ( +/obj/structure/table, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/kitchen/knife/combat/survival, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ne" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"Nf" = ( +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Ng" = ( +/obj/machinery/ntnet_relay, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"Nh" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ni" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"Nj" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"Nk" = ( +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plasteel, +/area/command/gateway) +"Nl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/engineering/main) +"Nn" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"No" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/sleeper) +"Np" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"Nr" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/office) +"Nt" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/vault, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"Nu" = ( +/obj/structure/cable, +/obj/machinery/power/solar/t2_armored, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"Nv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"Nw" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/obj/item/melee/chainofcommand{ + pixel_x = 13 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Nx" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/obj/item/t_scanner/adv_mining_scanner/lesser, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/cargo/meeting_room) +"Ny" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/maintenance/radshelter) +"Nz" = ( +/obj/machinery/status_display/ai{ + pixel_y = 31 + }, +/obj/machinery/computer/telecomms/monitor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"NB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"NC" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/central) +"ND" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/medical/sleeper) +"NE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"NG" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/door{ + pixel_x = -32; + name = "Камера содержания 3"; + id = "Virus Door 3" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"NH" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"NJ" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand/plating, +/turf/closed/mineral/random/volcanic/hard, +/area/mine/unexplored) +"NK" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"NL" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/tcommsat/server) +"NM" = ( +/obj/structure/lattice, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"NN" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"NO" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/lobby) +"NQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"NS" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -3 + }, +/obj/item/pen/fountain/captain{ + pixel_y = 4; + pixel_x = -3 + }, +/obj/item/lighter{ + pixel_x = 16; + layer = 3.01 + }, +/obj/item/stamp/captain{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"NV" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/clown, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"NW" = ( +/obj/structure/cable, +/turf/open/floor/mineral/titanium, +/area/hallway/secondary/entry) +"NX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine/airless, +/area/science/xenobiology) +"NY" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"Oe" = ( +/obj/machinery/camera/autoname/directional/south, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/command/gateway) +"Of" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/lobby) +"Oi" = ( +/obj/structure/tank_dispenser, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/atmos/upper) +"Oj" = ( +/obj/structure/cable, +/obj/item/raw_anomaly_core/random{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/airless, +/area/space) +"Ok" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/status_display/ai{ + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Om" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark/side, +/area/engineering/atmos/upper) +"On" = ( +/obj/machinery/vendor/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Oo" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"Op" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"Oq" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/medical/sleeper) +"Or" = ( +/turf/closed/mineral/random, +/area/command/gateway) +"Os" = ( +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/beacon, +/obj/item/hand_tele, +/obj/structure/closet/crate/secure/science{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/research) +"Ov" = ( +/obj/structure/table, +/obj/item/flashlight/seclite{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/flashlight/seclite{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Oz" = ( +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage) +"OA" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"OB" = ( +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage) +"OD" = ( +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plasteel, +/area/command/gateway) +"OE" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"OG" = ( +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/command/gateway) +"OH" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engineering/main) +"OK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OL" = ( +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"OM" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/ai_monitored/turret_protected/aisat/hallway) +"ON" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"OO" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OR" = ( +/obj/structure/table/wood/fancy/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/reagent_containers/food/drinks/bottle/champagne{ + pixel_x = -11; + pixel_y = 18; + layer = 3.01 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 12; + layer = 3.01 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 4; + layer = 3.02; + pixel_x = -3 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"OS" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/cargo/warehouse) +"OT" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OW" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"OX" = ( +/turf/open/space/basic, +/area/medical/sleeper) +"OZ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start/field_medic, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Pb" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/obj/machinery/power/solar_control{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"Pd" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"Pe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Ph" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/engine, +/area/engineering/main) +"Pi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/command/heads_quarters/captain/private) +"Pk" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"Pl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"Pm" = ( +/obj/item/shard, +/turf/open/floor/plating/airless, +/area/space) +"Po" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/bookcase/random, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Pq" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/command/gateway) +"Pr" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/misc_lab) +"Ps" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Pv" = ( +/obj/machinery/camera/autoname/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/meeting_room) +"Px" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/door/airlock/command/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"Pz" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"PD" = ( +/obj/item/raw_anomaly_core/random{ + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/plating/airless, +/area/science/lab) +"PE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/mine/lobby) +"PF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"PG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"PH" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/mine/lobby) +"PJ" = ( +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"PK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"PM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"PN" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/research) +"PO" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"PP" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/item/crowbar, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"PR" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/space/basic, +/area/space) +"PS" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/foam, +/area/medical/virology) +"PT" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/box, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/warehouse) +"PU" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/space) +"PV" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -3 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"PY" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Aft"; + dir = 1; + network = list("aicore") + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Qb" = ( +/obj/structure/table, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Qc" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/sand/lite, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01"; + luminosity = 2 + }, +/area/command/gateway) +"Qd" = ( +/obj/machinery/door/airlock/engineering/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/lobby) +"Qe" = ( +/obj/structure/cable, +/obj/machinery/power/smes/engineering, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"Qh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"Qk" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/mine/unexplored) +"Ql" = ( +/obj/effect/mapping_helpers/broken_floor, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating, +/area/command/gateway) +"Qn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"Qo" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/heads_quarters/captain/private) +"Qq" = ( +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Qr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/lobby) +"Qs" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "xeno1" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"Qt" = ( +/obj/item/raw_anomaly_core/random{ + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/plasteel/airless, +/area/science/lab) +"Qu" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/science/lab) +"QA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine/airless, +/area/engineering/main) +"QB" = ( +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"QC" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"QI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/cargo/warehouse) +"QJ" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"QL" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"QM" = ( +/obj/structure/closet/secure_closet/cytology{ + locked = 0 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"QN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"QO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"QQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/solars/port/fore) +"QR" = ( +/obj/structure/table/reinforced, +/obj/item/card/id/advanced/gold/captains_spare{ + pixel_y = 3 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"QS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/mine/unexplored) +"QT" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/elevatorshaft, +/area/ai_monitored/turret_protected/aisat/hallway) +"QU" = ( +/obj/item/flashlight, +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"QW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"QY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"QZ" = ( +/obj/machinery/camera{ + c_tag = "AI Chamber - Starboard"; + dir = 8; + network = list("aicore") + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Ra" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage) +"Rb" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plasteel, +/area/space) +"Rd" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/research) +"Re" = ( +/obj/machinery/telecomms/server/presets/common/birdstation, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"Rf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/obj/machinery/camera/autoname/directional/south{ + view_range = 14 + }, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"Rg" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/science/research) +"Rh" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space) +"Rj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"Rk" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/security/main/mechanic) +"Rl" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Rm" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/lab) +"Ro" = ( +/obj/item/stack/ore/iron, +/obj/item/shard, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"Rp" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/rxglasses, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/medbay/central) +"Rq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"Rr" = ( +/obj/structure/sign/poster/official/no_erp{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"Rt" = ( +/obj/item/pickaxe/mini, +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Rw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall, +/area/engineering/atmos/upper) +"Rx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"Rz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/hallway) +"RB" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "xeno3" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"RC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"RD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets/donkpocketberry{ + pixel_y = 5; + layer = 3.01 + }, +/obj/item/storage/box/donkpockets/donkpocketpizza{ + pixel_y = 10; + layer = 3.02 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"RE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/rnd/server/master, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"RI" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"RL" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"RM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"RN" = ( +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/pipe_dispenser, +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"RO" = ( +/obj/structure/table_frame, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"RP" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/lab) +"RQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"RR" = ( +/obj/item/storage/firstaid/medical, +/turf/open/floor/plasteel/monofloor/white/airless, +/area/medical/sleeper) +"RT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"RU" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"RW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"RX" = ( +/obj/structure/closet/crate/secure/gear{ + locked = 0 + }, +/obj/item/door_seal/sb, +/obj/item/door_seal/sb, +/obj/item/quikdeploy/cade/plasteel, +/obj/item/quikdeploy/cade/plasteel, +/obj/item/flasher_portable_item, +/obj/item/flasher_portable_item, +/obj/item/flasher_portable_item, +/obj/item/flasher_portable_item, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/security/main/mechanic) +"RY" = ( +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 10; + pixel_y = -6 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Sa" = ( +/obj/structure/holosign/barrier/atmos, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/lab) +"Sb" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/airless, +/area/space) +"Sc" = ( +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Sf" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Sg" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/space) +"Sh" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"Sj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"Sk" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Sl" = ( +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Sm" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Sn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"Sp" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/status_display/ai{ + pixel_x = -32 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Su" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/storage/part_replacer/bluespace/tier2{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/part_replacer/bluespace/tier2{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/part_replacer/bluespace/tier2{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/research) +"Sv" = ( +/obj/item/clothing/mask/breath{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Sx" = ( +/obj/item/clothing/glasses/meson/night, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Sy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/foamedmetal, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Sz" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"SA" = ( +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/xenobiology) +"SB" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/meeting_room) +"SC" = ( +/turf/closed/wall, +/area/science/xenobiology) +"SE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/engine, +/area/engineering/main) +"SF" = ( +/obj/structure/table/reinforced, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/item/crowbar{ + pixel_y = -11 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/cargo/meeting_room) +"SJ" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"SK" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"SL" = ( +/obj/machinery/door/airlock/shuttle/glass, +/obj/structure/fans/tiny, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"SM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"SO" = ( +/obj/item/raw_anomaly_core/random{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space) +"SR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"SS" = ( +/obj/effect/turf_decal/loading_area/white{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/elevatorshaft, +/area/ai_monitored/turret_protected/aisat/hallway) +"ST" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"SU" = ( +/turf/open/floor/plating/foam, +/area/medical/sleeper) +"SV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos/upper) +"SW" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external/glass, +/turf/open/floor/plating, +/area/solars/port/fore) +"SY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"Ta" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"Tb" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"Td" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/meeting_room) +"Th" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"Tk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Tn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"To" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"Tq" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/medbay/central) +"Tr" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/engineering/lobby) +"Ts" = ( +/obj/machinery/door/airlock/external/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/meeting_room) +"Tt" = ( +/obj/structure/fireaxecabinet/directional/north, +/obj/structure/table, +/obj/item/storage/part_replacer/bluespace/tier2{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"Tv" = ( +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"Tw" = ( +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Tx" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/space/nearstation) +"Ty" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"Tz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"TA" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"TB" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/secure_closet/security{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/security/main/mechanic) +"TE" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/crate/freezer, +/obj/item/circuitboard/machine/oven, +/obj/item/circuitboard/machine/griddle, +/obj/item/circuitboard/machine/griddle, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/deep_fryer, +/obj/item/circuitboard/machine/microwave, +/obj/item/circuitboard/machine/gibber, +/obj/item/circuitboard/machine/chem_master/condi, +/obj/item/circuitboard/machine/reagentgrinder, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"TF" = ( +/turf/open/space/basic, +/area/science/xenobiology) +"TH" = ( +/obj/machinery/door/poddoor/shutters/window{ + id = "xeno2" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"TI" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/mine/unexplored) +"TK" = ( +/obj/structure/closet/crate/engineering, +/obj/item/storage/part_replacer/stock_parts_box_x10/bin_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/manipulator_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/micro_laser_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/scanning_module_t2, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engineering/lobby) +"TN" = ( +/obj/structure/table/reinforced, +/obj/item/rcd_ammo/large{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/item/construction/rcd/arcd, +/obj/item/construction/rcd/arcd, +/obj/item/rcd_ammo/large{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/item/rcd_ammo/large{ + pixel_x = -16; + pixel_y = 10 + }, +/obj/item/construction/rcd/arcd, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"TO" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -26; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "16" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"TP" = ( +/obj/structure/closet/crate/secure/weapon{ + locked = 0 + }, +/obj/item/gun/ballistic/shotgun/automatic/combat, +/obj/item/gun/ballistic/shotgun/automatic/combat, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/turf/open/floor/plasteel/dark/side, +/area/security/main/mechanic) +"TQ" = ( +/obj/machinery/meter, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"TR" = ( +/obj/structure/cable, +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"TS" = ( +/obj/structure/displaycase/captain{ + req_access = null; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain/private) +"TT" = ( +/obj/effect/turf_decal/tile/green/full, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/white/airless, +/area/medical/virology) +"TV" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"TW" = ( +/turf/open/space/basic, +/area/mine/unexplored) +"TX" = ( +/obj/structure/foamedmetal, +/turf/open/floor/plating/foam, +/area/space) +"TY" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/window/reinforced, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"TZ" = ( +/turf/open/floor/plating/asteroid/airless, +/area/space) +"Ub" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Uc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/fore) +"Ud" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/security/main/mechanic) +"Ue" = ( +/obj/machinery/vending/engivend, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Uf" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/science/lab) +"Ug" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/mine/unexplored) +"Uh" = ( +/turf/open/floor/plating/foam, +/area/science/lab) +"Uj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/research) +"Uk" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/atmos/upper) +"Ul" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 7; + pixel_x = -15 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"Um" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"Un" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/tool, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage) +"Uo" = ( +/turf/closed/wall/r_wall/syndicate, +/area/ai_monitored/turret_protected/aisat/hallway) +"Up" = ( +/mob/living/carbon/human/species/monkey, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Ur" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Us" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/medical/medbay/central) +"Ut" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Uu" = ( +/obj/item/pickaxe/mini, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Uw" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Ux" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"Uy" = ( +/obj/structure/closet/crate/engineering, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/turf/open/floor/plasteel, +/area/space) +"Uz" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"UA" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"UC" = ( +/turf/closed/wall, +/area/space/nearstation) +"UD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/screwdriver, +/obj/effect/turf_decal/sand/lite, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"UG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"UH" = ( +/obj/structure/table, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/obj/item/clothing/glasses/meson/engine{ + pixel_x = 16 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"UJ" = ( +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"UK" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/security/main/mechanic) +"UL" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/maintenance/radshelter) +"UM" = ( +/obj/machinery/computer/atmos_control/oxygen_tank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"UN" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"UQ" = ( +/obj/machinery/door/airlock/virology, +/obj/structure/cable, +/obj/structure/foamedmetal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"UR" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/closet/secure_closet/chemical{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/medical/medbay/central) +"UT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"UV" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"UW" = ( +/obj/machinery/door/airlock/engineering/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"UX" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Va" = ( +/turf/closed/mineral/random, +/area/science/xenobiology) +"Vf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/cargo/warehouse) +"Vg" = ( +/turf/closed/wall/r_wall, +/area/mine/unexplored) +"Vh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/crowbar, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Vj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"Vm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/office) +"Vn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Vo" = ( +/obj/machinery/door/airlock/research/glass, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor, +/area/science/xenobiology) +"Vr" = ( +/obj/machinery/camera/motion{ + c_tag = "Secure - AI Upper External West"; + dir = 10; + network = list("aicore"); + view_range = 14 + }, +/turf/open/space/basic, +/area/space) +"Vs" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"Vu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"Vv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main/mechanic) +"Vy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/lab) +"VA" = ( +/obj/structure/foamedmetal, +/turf/open/floor/engine/airless, +/area/engineering/main) +"VC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"VD" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/rcd{ + pixel_y = 8 + }, +/obj/item/inducer{ + pixel_y = -9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"VE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space) +"VF" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/space/basic, +/area/space) +"VG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/cargo/warehouse) +"VI" = ( +/obj/structure/lattice, +/obj/item/clothing/gloves/color/chief_engineer, +/turf/open/space/basic, +/area/space/nearstation) +"VJ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vendor/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"VL" = ( +/obj/machinery/atmospherics/miner/plasma, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"VN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"VP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/maintenance/radshelter) +"VQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"VS" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line, +/obj/structure/railing, +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/space/basic, +/area/space) +"VT" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"VU" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"VW" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/comfy/black, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"VY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"Wa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/space/basic, +/area/space/nearstation) +"Wc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/foamedmetal, +/turf/open/floor/engine, +/area/engineering/main) +"We" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Wf" = ( +/obj/machinery/shieldgen{ + anchored = 1; + active = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"Wh" = ( +/obj/structure/window/reinforced, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Wi" = ( +/obj/structure/table/reinforced, +/obj/item/construction/rld, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Wj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/directional, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Wk" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"Wl" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"Wm" = ( +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos/upper) +"Wn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/sleeper) +"Wo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Wp" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"Ws" = ( +/turf/closed/wall/mineral/plastitanium/nosmooth, +/area/hallway/secondary/entry) +"Wt" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/stock_parts/cell/super{ + pixel_x = 15; + layer = 3.02 + }, +/obj/item/stock_parts/cell/super{ + layer = 3.01; + pixel_x = 5 + }, +/obj/item/stock_parts/cell/super{ + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Wu" = ( +/obj/structure/holosign/barrier/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Wv" = ( +/obj/structure/closet/secure_closet/miner{ + locked = 0 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"Wz" = ( +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"WA" = ( +/turf/open/floor/plasteel/monofloor/airless, +/area/engineering/main) +"WB" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/maintenance/radshelter) +"WC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"WD" = ( +/obj/item/rpd_upgrade/unwrench{ + pixel_y = -8; + pixel_x = -5 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"WG" = ( +/obj/structure/closet/secure_closet/detective{ + locked = 0 + }, +/obj/item/storage/box/evidence, +/obj/item/storage/box/evidence, +/obj/item/taperecorder, +/obj/item/detective_scanner, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/main/mechanic) +"WK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"WM" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/space/basic, +/area/space) +"WN" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/maintenance/radshelter) +"WP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/lab) +"WT" = ( +/obj/structure/frame/machine/wired, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/circuitboard/machine/stasis, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"WV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"WX" = ( +/obj/structure/cable, +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"WY" = ( +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/captain/private) +"Xb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/meeting_room) +"Xc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/circuitboard/machine/grounding_rod, +/obj/item/circuitboard/machine/grounding_rod, +/obj/item/circuitboard/machine/circulator, +/obj/item/circuitboard/machine/circulator, +/obj/item/circuitboard/machine/generator, +/obj/structure/closet/crate/secure/engineering{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/engineering/lobby) +"Xe" = ( +/obj/structure/table/reinforced, +/obj/item/construction/rcd/loaded, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/rcd_ammo/large{ + pixel_x = 15; + pixel_y = 5 + }, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Xk" = ( +/turf/closed/wall, +/area/cargo/meeting_room) +"Xl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Xn" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"Xo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"Xq" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_mission) +"Xr" = ( +/obj/machinery/mecha_part_fabricator/med, +/turf/open/floor/plasteel/monofloor/dark, +/area/medical/medbay/central) +"Xs" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos/upper) +"Xt" = ( +/turf/closed/wall, +/area/science/lab) +"Xw" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Xx" = ( +/obj/structure/table, +/obj/item/pai_card, +/turf/open/floor/plasteel/monofloor/dark, +/area/construction/storage_wing) +"Xy" = ( +/mob/living/silicon/robot/shell, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/turret_protected/aisat/hallway) +"XB" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"XD" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Telecomms - Control Room"; + dir = 1; + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"XF" = ( +/turf/open/floor/plating/airless, +/area/medical/sleeper) +"XG" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "N2 Outlet Pump"; + target_pressure = 4500 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"XK" = ( +/obj/item/card/id/departmental_budget/car, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"XN" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/airless, +/area/space) +"XO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/closed/wall, +/area/engineering/gravity_generator) +"XQ" = ( +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/structure/closet/crate/engineering, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"XS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/obj/structure/foamedmetal/resin, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"XV" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"XW" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/cable_coil, +/turf/open/space/basic, +/area/space/nearstation) +"XX" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"XY" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/solars/port/fore) +"Ya" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Yb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Yc" = ( +/turf/open/space/basic, +/area/space) +"Ye" = ( +/obj/machinery/door/airlock/engineering/glass, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/engineering/storage) +"Yf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/construction/storage_wing) +"Yh" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Yj" = ( +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"Yk" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/cargo/office) +"Yl" = ( +/obj/structure/foamedmetal, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/medical/sleeper) +"Ym" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Yo" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel/dark, +/area/maintenance/radshelter) +"Yr" = ( +/obj/structure/janitorialcart, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/construction/storage_wing) +"Ys" = ( +/obj/structure/closet/secure_closet/medical3{ + locked = 0 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/medical/medbay/central) +"Yt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/research) +"Yu" = ( +/turf/closed/wall, +/area/command/gateway) +"Yv" = ( +/obj/structure/table, +/obj/item/stamp{ + pixel_x = -2; + layer = 3.01 + }, +/obj/item/stamp/denied{ + pixel_x = -9; + pixel_y = 10; + layer = 3.01 + }, +/obj/item/hand_labeler{ + pixel_x = 10; + pixel_y = 6; + layer = 3.01 + }, +/obj/item/folder/yellow{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"Yw" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pizzabox/meat, +/obj/item/pizzabox/meat{ + pixel_y = 3; + layer = 3.01 + }, +/obj/item/pizzabox/meat{ + pixel_y = 9; + layer = 3.03 + }, +/obj/item/pizzabox/meat{ + pixel_y = 6; + layer = 3.02 + }, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"Yy" = ( +/obj/structure/sign/warning/radshelter, +/turf/closed/wall/r_wall, +/area/maintenance/radshelter) +"YF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/medical/medbay/central) +"YK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"YL" = ( +/obj/structure/cable, +/obj/machinery/power/solar/t4_plastitaniumglass, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"YM" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/fore) +"YP" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"YR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/floor/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/engineering/lobby) +"YS" = ( +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/machinery/computer/security/telescreen/ordnance, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/misc_lab) +"YV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east{ + view_range = 14 + }, +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"YW" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/medical/sleeper) +"Za" = ( +/obj/structure/table, +/obj/item/mecha_parts/mecha_equipment/mining_scanner, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Zb" = ( +/obj/structure/lattice, +/obj/machinery/light/broken, +/turf/open/space/basic, +/area/engineering/main) +"Zc" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"Zd" = ( +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Zf" = ( +/obj/structure/foamedmetal/resin, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos/upper) +"Zg" = ( +/obj/item/circuitboard/machine/chem_master, +/turf/open/floor/plasteel/airless, +/area/science/xenobiology) +"Zh" = ( +/turf/open/floor/plating/asteroid, +/area/mine/unexplored) +"Zj" = ( +/obj/item/crowbar, +/turf/open/floor/plating/airless, +/area/engineering/atmos/upper) +"Zk" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/construction/storage_wing) +"Zl" = ( +/obj/machinery/door/airlock/virology, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/white, +/area/medical/virology) +"Zm" = ( +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Zn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Zo" = ( +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"Zq" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/main) +"Zs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Zt" = ( +/obj/structure/lattice, +/obj/item/rpd_upgrade/unwrench{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/space/basic, +/area/space) +"Zv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 10 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"Zx" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_y = 2 + }, +/obj/item/pen, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/requests_console/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"ZA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/storage/box/syringes{ + pixel_y = -2; + pixel_x = -4; + layer = 3.01 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ZB" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ZC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/crate/solarpanel_small, +/obj/item/stack/sheet/rglass/x10, +/obj/item/stack/sheet/rglass/x10, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ZF" = ( +/obj/effect/turf_decal/box, +/obj/machinery/suit_storage_unit/atmos, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/storage) +"ZH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"ZL" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ZN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/engineering/lobby) +"ZO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"ZP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/radshelter) +"ZQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ZR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"ZU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ZV" = ( +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"ZZ" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) + +(1,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(2,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(3,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(4,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(5,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(6,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(7,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(8,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(9,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(10,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(11,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(12,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(13,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(14,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(15,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(16,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(17,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(18,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(19,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(20,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(21,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(22,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(23,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(24,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(25,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(26,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(27,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(28,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(29,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(30,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(31,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(32,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(33,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(34,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(35,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(36,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(37,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(38,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(39,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(40,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(41,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(42,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(43,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(44,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(45,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(46,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(47,1,1) = {" +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 +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 +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 +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 +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 +zC +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(48,1,1) = {" +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 +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 +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 +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 +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 +Dp +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(49,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +XX +XX +XX +XX +Yc +Yc +Yc +zC +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(50,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +XX +Yc +Dp +Yc +XX +Yc +Yc +Yc +Dp +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(51,1,1) = {" +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 +ae +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +XX +CL +Yc +Dp +CL +XX +Dp +sP +Dp +XX +Dp +CL +XX +XX +CL +XX +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 +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 +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 +Yc +Yc +Yc +Yc +"} +(52,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +XX +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Jo +Yc +Yc +Yc +Yc +Yc +Dp +Yc +XX +Yc +Yc +zC +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 +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 +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 +Yc +"} +(53,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +XX +Yc +Yc +Yc +Yc +XW +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Yc +CL +Yc +Yc +Dp +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 +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 +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 +Yc +"} +(54,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +XX +CL +XX +Yc +XX +XX +nL +Yc +Yc +Yc +Yc +VI +Yc +Dp +Yc +Dp +Yc +Dp +Yc +Jo +Dp +Dp +Dp +XX +XX +CL +XX +CL +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 +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 +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 +"} +(55,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Yc +Yc +rx +Jo +Nu +Yc +Dp +Yc +Nu +Jo +Nu +Yc +Jo +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Dp +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 +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 +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 +"} +(56,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +Yc +rx +Nu +Nu +mE +Nu +Yc +qN +Yc +Ro +Jo +Nu +Dp +Dp +Dp +Nu +Jo +Nu +Yc +Jo +Yc +Nu +AF +nr +rx +Nu +Yc +CL +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 +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 +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 +"} +(57,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +zC +Dp +Dp +Dp +Jo +Jo +Jo +Jo +Jo +Jo +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Jo +Nu +Jo +Jo +Jo +Jo +Jo +Dp +Jo +Jo +Dp +XX +Dp +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 +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 +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 +"} +(58,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +AF +mE +Nu +Nu +Nu +Yc +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Dp +Nu +Yc +Jo +Yc +Nu +Yc +iv +Nu +AF +Yc +XX +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 +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 +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 +"} +(59,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Wl +Yc +Nu +Jo +Nu +Dp +Dp +Dp +mE +yb +IT +Yc +Jo +Yc +Yc +Dp +Yc +Dp +Yc +Yc +CL +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 +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 +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 +"} +(60,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +XX +Yc +iv +Nu +Nu +Nu +Nu +Yc +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Dp +Nu +Yc +Jo +Yc +le +le +le +le +le +Yc +XX +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 +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 +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 +"} +(61,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +CL +Dp +Jo +Jo +Jo +Jo +Jo +Jo +Wl +Wl +Wl +Wl +Wl +Wl +Wl +Wl +Wl +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Dp +Dp +CL +Dp +zC +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 +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 +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 +"} +(62,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +mE +Nu +iv +Nu +Nu +Yc +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Jo +Nu +Yc +Jo +Yc +le +le +le +IT +Yc +Yc +Dp +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 +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 +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 +"} +(63,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +lu +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Wl +Dp +Nu +Jo +Nu +Dp +Dp +Dp +Nu +Jo +Nu +Yc +Jo +Yc +Yc +Dp +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 +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 +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 +Yc +Yc +Yc +"} +(64,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +AF +Nu +iv +rx +Nu +Yc +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Jo +Nu +Yc +Jo +Yc +le +le +le +Cj +VF +Yc +Dp +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 +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 +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 +"} +(65,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Dp +Jo +Jo +Jo +Jo +Jo +Jo +Wl +Yc +Nu +Jo +Nu +Yc +Dp +Yc +Nu +Jo +Nu +Jo +Jo +Jo +Jo +Jo +Jo +Jo +PR +Dp +CL +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 +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 +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 +"} +(66,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +MC +iv +mE +Nu +AF +Yc +Wl +Yc +MC +Jo +Nu +Dp +Dp +Dp +Nu +Jo +Nu +Yc +Jo +Yc +le +le +le +le +le +Yc +XX +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 +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 +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 +"} +(67,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Yc +Yc +mE +Jo +iv +Yc +Dp +Yc +Nu +Jo +Nu +Yc +Jo +Yc +Yc +Dp +Yc +Dp +Yc +Yc +CL +CL +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 +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 +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 +"} +(68,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Dp +Dp +Yc +Yc +Dp +Yc +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +jw +Jo +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +XX +CL +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 +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 +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 +"} +(69,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +UV +Dp +Yc +Yc +Dp +Yc +Dp +Yc +Dp +Yc +Dp +ij +iu +ij +Dp +Yc +Yc +Dp +Yc +Yc +Dp +Dp +XX +CL +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 +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 +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 +"} +(70,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ZZ +Dp +Yc +Yc +Yc +Dp +Yc +Dp +Yc +Dp +Yc +AR +QQ +Cu +ij +AR +Yc +Yc +Dp +Yc +Yc +Dp +Yc +Dp +CL +XX +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 +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 +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 +"} +(71,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +UV +ZZ +Dp +Dp +Dp +lJ +iX +Wl +Af +bv +Dp +QQ +QQ +SW +ij +QQ +Dp +Dp +Dp +Yc +Yc +Dp +Yc +Yc +Dp +XX +CL +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(72,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Dp +Dp +UV +Yc +NE +AO +vf +RM +Kf +Yc +vy +XY +kB +ko +vy +Dp +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Dp +XX +CL +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(73,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Dp +Dp +Yc +Dp +Dp +dI +Fy +JT +ZC +Wl +Dp +vy +Ku +ob +gS +vy +Dp +dW +GR +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Dp +Dp +Dp +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(74,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +CL +UV +Yc +Dp +PP +UC +CL +UC +cF +FP +Tx +UC +XX +vy +nE +Dy +Mt +vy +XX +CL +zv +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Dp +ak +bv +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(75,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +Gz +Gz +jt +Hr +Gz +Gz +Gz +Gz +Gz +Gz +Gz +Gz +Gz +Gz +Gz +tZ +Gz +Gz +Gz +XX +Dp +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Wl +Wl +uY +bv +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(76,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +UC +Gz +Ed +dM +dM +km +km +hr +km +km +pc +Ed +VA +Cr +km +eC +qE +fQ +st +Gz +UC +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +Dp +uI +Wl +zv +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(77,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +CL +Gz +yw +Ed +dM +dM +km +km +km +dM +mX +dM +VA +km +km +km +eC +LY +st +Gz +XX +Dp +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Ij +Cw +Cw +Kx +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(78,1,1) = {" +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +yw +Hr +dM +iA +QA +QA +NQ +QA +QA +QA +QA +QA +gp +gp +NQ +Xo +LY +st +Gz +XX +CL +Wa +ZU +ZU +ST +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Cw +xc +Kx +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(79,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +KI +yw +dM +AY +Ed +Ed +Ed +Ed +Ed +Ed +Ed +Ed +HN +Ed +nq +kl +LY +LI +Gz +ap +ap +ap +xD +xD +ap +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Kx +xc +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(80,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +KI +yw +Ed +AY +Ed +KF +UX +UX +UX +UX +UX +UX +UX +KF +Ed +kl +zJ +SE +ap +Qe +Ae +gf +ou +WX +ap +Lc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +xc +Kx +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(81,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jt +yw +Ed +AY +Ed +UX +Ed +Ed +Ed +Ed +yw +Hr +Ed +UX +Ed +sb +qE +Yb +ap +kW +kW +mA +bl +Wt +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +xc +xc +Yc +Yc +Yc +Yc +Yc +ZV +ZV +ZV +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(82,1,1) = {" +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 +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 +Yc +Yc +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Gz +Hn +dM +AY +Ed +UX +Ed +Ed +yw +Ed +Ed +Ed +yw +UX +pF +sw +qE +fo +XO +sK +JF +OA +mT +KV +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Kx +Cw +Yc +Yc +ZV +ZV +HT +HT +HT +ZV +ZV +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 +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 +Yc +Yc +Yc +Yc +"} +(83,1,1) = {" +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 +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 +Yc +ZV +ZV +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Hr +yw +dM +AY +Ed +UX +Ed +yw +Hr +yw +Ed +Ed +Ed +UX +pF +sb +nl +nl +HI +cz +KJ +DN +dZ +vC +xD +zi +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +HE +HE +TA +jC +ZV +HT +HT +HT +HT +HT +HT +nC +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Cw +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +Yc +Yc +"} +(84,1,1) = {" +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 +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 +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +yw +KI +Ed +AY +Ed +UX +Ed +yw +xW +KI +xW +Ed +Bp +yQ +pF +sb +qE +fo +Tz +Ev +tm +DN +Ge +Qq +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +TA +TA +HT +HT +HT +eU +tV +FX +xu +xu +xu +xu +HT +HT +HT +xc +Kx +xc +xc +Kx +Cw +Yc +Yc +Cw +Cw +Cw +Yc +Yc +Cw +Cw +Cw +Kx +Cw +Cw +Cw +Yc +Yc +Cw +Kx +xc +xc +xc +Kx +xc +xc +Kx +Cw +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 +Yc +"} +(85,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +KI +KI +yw +AY +Ed +UX +Ed +gM +xW +KI +yw +Ed +Ed +UX +Ho +kl +qE +dC +ap +vZ +xD +UW +xD +Tz +ap +Dr +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +rQ +jC +HT +HT +HT +HT +FX +Xw +qD +se +qD +sA +xu +HT +HT +HT +Cw +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 +Cw +xc +Kx +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 +"} +(86,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +Yc +Yc +Yc +KI +yw +Ed +AY +Ed +UX +lG +Ed +yw +xW +Hr +yw +Ed +Sy +Ho +kl +cB +Nl +ap +We +Hy +oJ +Zs +PG +ap +Lc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +ZV +HT +HT +HT +yY +HT +xu +qD +za +TT +iw +qD +xu +HT +HT +HT +HE +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 +Cw +xc +Cw +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 +"} +(87,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +jC +ZV +ZV +ZV +ZV +ZV +ZV +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 +Yc +Yc +Yc +yw +Hr +dM +Wc +Ed +UX +Ed +Ed +Ed +Ed +Ed +Ed +Ed +UX +Ho +zA +LY +HV +ap +MW +hA +aL +gV +Ew +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +ZV +HT +HT +HT +HT +xu +Sm +qD +oA +qD +Ps +xu +HT +HT +HT +nw +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 +Cw +xc +Cw +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 +"} +(88,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +jC +ZV +ZV +ZV +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 +Yc +jt +dM +km +Wc +Ho +KF +UX +UX +UX +UX +UX +UX +UX +KF +iV +Cc +LY +HV +ap +Wj +aL +bl +wW +Ew +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +rQ +jC +HT +xu +xu +xu +xu +xu +am +xu +xu +xu +xu +xu +HT +GZ +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 +Yc +Cw +Kx +Cw +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 +"} +(89,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +jC +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +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 +Cw +Gz +km +km +Wc +Ho +Ho +Ed +Ed +Ed +Ed +Ed +Ed +DB +Ed +iV +zA +LY +ui +ap +iO +gV +aL +hA +Ew +xD +zi +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +TA +jC +xu +Xw +zb +cK +NG +ew +Ur +cK +Nf +sA +xu +HT +ZV +mK +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 +Yc +Cw +Cw +Kx +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 +"} +(90,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TA +ZV +ZV +ZV +ZV +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 +Cw +eE +Gz +yR +km +rr +vz +hn +gG +gG +gG +gG +gG +gG +gG +Ph +rH +RC +LY +ui +ap +MN +HX +HX +HX +Jl +ap +Dr +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +HE +TA +xu +oV +aV +vM +ew +ew +ew +iJ +NK +LD +xu +HT +ZV +ZV +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 +Yc +Yc +Cw +xc +Kx +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 +"} +(91,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +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 +xc +Gz +ry +ry +oD +ry +ry +ry +ws +rH +rH +rH +Wo +ry +ry +ry +tZ +ry +ry +ap +ap +xD +xD +xD +ap +ap +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +TA +HT +xu +Up +vo +cK +Ki +ew +NH +cK +IO +Ps +xu +HT +HT +ZV +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 +Yc +Yc +Yc +Cw +xc +Cw +Yc +Yc +Yc +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(92,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +ZV +ZV +jC +ZV +ZV +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 +Kx +Gz +Ed +HK +WA +Ed +Mf +ry +zA +eC +eC +eC +Jb +ry +Lf +Xl +jW +Xl +Zq +Gz +du +dw +dw +dw +dh +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +jC +xu +xu +xu +xu +xu +AK +ew +cp +xu +xu +xu +xu +xu +xu +ZV +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 +Yc +Yc +Yc +Yc +Cw +Kx +Cw +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(93,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +NJ +ZV +ZV +ZV +ZV +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 +Cw +Gz +Bm +yw +Ed +yw +Ed +Gz +sj +eC +eC +eC +qP +Gz +lr +gW +jW +gW +RN +dp +zi +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +xu +Il +IM +kw +iZ +kw +kw +oA +Cs +KM +qx +qx +PS +FX +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 +Yc +Yc +Yc +Yc +Yc +Yc +Cw +xc +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(94,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +ZV +ZV +ZV +gg +gg +gg +ZV +ZV +ZV +ZV +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 +Hr +yw +KI +KI +KI +Zb +Gz +mp +wr +gD +hD +jH +Gz +ur +gW +jW +OH +PV +dp +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +ph +xu +mF +kG +rl +xu +WT +kw +rB +og +iE +Lg +iE +PS +nF +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(95,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +ZV +ZV +ZV +ZV +WD +gg +gg +ZV +ZV +ZV +jC +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 +yw +KI +KI +yw +dD +HK +wl +zA +eC +gD +eC +Jb +wl +yN +wH +jW +pM +LE +dp +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +JW +WV +rO +ew +UN +xu +xu +Zl +iE +iE +iE +iE +PS +Ep +hW +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(96,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +ZV +ZV +VL +ZV +ZV +Mr +TA +kk +ZV +jC +TA +rU +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +KI +KI +KI +KI +yw +Ed +Iy +VC +PF +fA +PF +Zn +pi +hb +gW +jW +gW +RI +dp +zi +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +VS +WV +ux +gc +PO +xu +UJ +JU +iW +iE +iE +qx +Ep +Ep +nF +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(97,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +ZV +ZV +ZV +ZV +ZV +gg +NJ +ZV +ZV +ZV +jC +TA +HE +Ij +Ij +ph +sF +sF +sF +sF +Fs +rT +wC +ph +sF +sF +sF +Pe +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +KI +KI +KI +KI +yw +mq +Np +Nv +Nv +eW +jW +jW +jW +EU +EU +jW +gW +Ux +dp +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +JW +WV +uk +Xn +Yj +xu +pw +kw +rB +iE +qx +qx +cW +Ep +nt +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(98,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +ZV +ZV +ZV +gg +gg +gg +ZV +ZV +ZV +ZV +jC +TA +Ij +cN +Vg +Ig +Ig +Ig +Ig +td +xR +yV +yV +vd +vd +vd +Rw +zu +CW +kc +hR +hR +hR +hR +hR +yK +KI +KI +yw +yw +Ed +cf +Wu +Fl +gW +EU +gW +Fl +Gg +dn +yk +zy +yk +Gw +Gz +Dr +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +JW +WV +ZA +ir +KD +xu +UJ +kw +UT +xu +iE +qR +nF +nt +cW +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(99,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +gg +HT +ZV +jC +ZV +ZV +ZV +jC +Cv +Vg +dF +HE +TA +TA +HE +Cw +ph +yV +vs +Xs +fr +iY +Bo +ve +hR +hR +yK +yK +My +hR +yK +yK +KI +yw +Hr +jt +Gz +Gz +Gz +wl +dp +rd +dp +wl +Gz +Gz +dp +dp +dp +Gz +Gz +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +qY +xu +xu +xu +xu +xu +xu +UQ +xu +xu +xu +xu +FX +nF +FX +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +eY +oi +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(100,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +KP +Ig +TA +Ta +Ta +Ta +Ta +Yc +JW +vd +lI +bO +bO +bO +Ad +vH +ve +yK +hR +yK +yK +hR +yK +yK +Yc +Yc +Cw +Yc +Yc +Cw +JW +Md +lg +Bs +Pl +Md +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Ij +ZO +rD +pG +eB +ZO +Ij +Cw +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +Zh +gR +oi +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(101,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +KP +Ig +jC +Ta +Wm +Tv +Fz +Tk +KE +Zv +Gb +Fo +Fo +bO +Vn +xF +vH +JB +wY +yK +yK +yK +yK +hR +Yc +Yc +Cw +Yc +Yc +Cw +JW +Md +lg +Bs +Pl +Md +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ij +ZO +Ni +TR +ua +Kk +Cw +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 +Cw +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +aJ +eY +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(102,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +jC +ZV +KP +Ig +ZV +Ta +of +Ec +UA +bs +zl +Az +HD +rK +wE +rK +Cg +rK +vH +vH +Ga +hR +yK +hR +kc +Dx +Cw +Cw +Cw +Cw +Cw +Cw +JW +Md +vL +Bs +YR +Md +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Kk +Jp +Kk +Jp +dB +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 +Cw +Yc +Cw +ia +Cw +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(103,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +jx +jx +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +jC +ZV +ZV +ZV +ZV +KP +Ig +ZV +Ta +Ta +Ta +Ta +Yc +JW +vd +jc +bO +Fo +bO +Vn +rK +bO +aQ +wY +yK +hR +wY +yK +hR +Yc +Yc +Cw +Yc +Yc +Cw +JW +Md +lg +Bs +Pl +Md +zi +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +ZO +Ni +HG +Bg +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 +Yc +Cw +ia +cP +ei +cP +BM +BM +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(104,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ec +cN +ZV +ZV +jC +TA +HE +Cw +GU +yV +Oi +bO +Fo +bO +Vn +rK +Zd +vH +wx +yK +yK +hR +yK +yV +Yc +Yc +Cw +Yc +Yc +Cw +JW +Md +lg +Bs +Pl +Md +zi +pP +fR +fR +fR +fR +fR +pP +mr +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Ij +ZO +Ni +Rx +rD +ZO +Ij +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 +ia +cP +FH +dc +FH +Rh +TZ +HT +HT +HT +HT +HT +HT +bW +oi +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(105,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +jx +jx +hz +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +jC +ZV +KP +Ig +ZV +Ta +Ta +Ta +Ta +Yc +JW +vd +mv +bO +Fo +bO +Vn +rK +Zf +vH +bS +yK +yK +Zj +ac +yV +Cw +Cw +Cw +Cw +Cw +aH +aH +aH +Md +Qd +Md +aH +aH +aH +rS +zN +OB +zN +OB +pP +VE +Yc +Yc +Cw +Yc +Yc +Yc +oZ +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +FF +FF +FF +ZO +Hd +ZO +FF +FF +FF +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jl +Kb +Kb +Vv +mH +Vv +Kb +Kb +Kb +HT +HT +HT +HT +eY +oi +eY +oi +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(106,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +jC +TA +jC +KP +Ig +ZV +Ta +JV +sm +qX +th +GX +nD +UM +Vn +tv +Vn +YP +rK +Jd +vH +Hq +yK +kc +vH +DZ +yV +sF +sF +sF +sF +sF +aH +bB +jE +QN +Bs +lX +kX +Eg +aH +ZF +sC +OB +sC +Oz +pP +pP +Cw +Cw +Cw +Yc +Yc +oZ +TX +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Cw +Cw +FF +kz +UR +mZ +Rx +Rp +ra +uv +FF +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Kb +ej +TB +hS +lO +zK +ky +fl +Kb +vD +vD +HT +HT +HT +Zh +eY +jY +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(107,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +jC +TA +Im +Ig +ZV +Ta +MG +hg +TQ +cR +qQ +dH +vP +uz +QJ +bO +Vn +rK +Eu +ve +vH +vH +vH +vH +fm +yV +Md +Md +Md +Md +Md +aH +Tt +mw +gN +wQ +gN +EL +ok +Md +UH +uu +oU +uu +uu +cl +pP +wq +wq +wq +BM +Cw +oZ +Cw +BM +Cw +BM +ia +Cw +Yc +Yc +Yc +Cw +BM +wq +wq +NC +oB +QW +Op +Rx +Op +HJ +pL +FF +MU +Cw +Yc +Yc +Cw +Dn +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +ia +wq +wq +iL +WG +ix +oR +lO +oR +lB +TP +Kb +gU +gU +HT +HT +HT +Zh +Zh +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(108,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +jC +KP +Ig +ZV +Ta +Ta +Ta +Ta +Yc +JW +vd +zn +Ju +uz +bO +Vn +rK +nQ +bO +vH +vH +XS +tK +VY +Gd +kV +Qn +lM +Qn +Xc +Md +Ak +an +Tr +lX +MY +LR +MJ +Md +yg +uu +Aw +Ai +uu +Hj +fR +kv +kv +FH +cP +BM +ia +Cw +oZ +TX +TX +Cw +Yc +Cw +Yc +Yc +Yc +Yc +Cw +FH +ZO +or +Jz +Us +Tq +CR +Fq +Lh +ZO +Sg +Sb +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +ia +Sb +FH +kv +Vv +Bq +Er +UK +eQ +ke +jR +fi +Vv +qt +qt +Zh +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(109,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ec +cN +ZV +ZV +ZV +TA +HE +Cw +GU +yV +IL +bO +uz +bO +Vn +cL +Zd +nQ +nQ +Zf +Bk +nQ +bq +LO +aZ +aZ +aZ +aZ +aZ +IA +aZ +aZ +Ty +Kl +aF +wQ +Bs +Qd +Ra +Ra +Ra +Ra +Ra +Ra +Ye +Th +Th +EM +pU +pU +pZ +ia +TX +TX +sX +sX +Cw +Cw +Cw +Yc +Yc +Cw +lh +Th +kU +Rx +ih +zL +Xr +MM +Rx +Rx +kU +nO +hH +oZ +Yc +Yc +Cw +BM +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +WK +WK +yD +mH +lO +Rk +RL +tb +tA +lO +lO +mH +eF +eF +aG +Zh +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(110,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +KP +Ig +ZV +Ta +Ta +Ta +Ta +Yc +JW +vd +wa +bO +uz +bO +Vn +cL +bO +bO +bO +bO +cL +zq +bh +ai +ZN +Lq +fd +Lq +Lq +Md +TK +an +uA +uM +fs +LR +aF +Md +Jm +mM +BE +uu +Jm +Jm +fR +Uy +kv +FH +cP +cP +cP +BM +Cw +Cw +oZ +Yc +Yc +Yc +Yc +Yc +Cw +ia +FH +kv +ZO +sE +Jz +fE +vK +YF +Fq +DH +ZO +Sg +XN +Cw +Mk +Cw +Cw +Cw +BM +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +FH +Vv +ic +Er +xe +tn +FM +jR +uf +Vv +qt +Zh +Zh +eb +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(111,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +KP +Ig +ZV +Ta +FI +QO +qX +th +GX +nD +Vs +Vn +Ht +Vn +fO +cL +cL +cL +cL +cL +cL +KN +zZ +yV +Md +Md +Md +Md +Md +aH +iF +Of +fh +fj +fh +wB +jT +Md +Jm +mM +xV +uu +Jm +Hj +pP +wq +wq +wq +wq +wq +ia +Cw +oZ +ia +Cw +BM +Yc +Yc +Cw +Cw +BM +wq +wq +wq +NC +ts +jN +SM +Rx +SM +LU +uF +FF +BM +oZ +Cw +Cw +Yc +Yc +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +hU +wq +iL +lf +mu +uC +lO +uC +iM +kd +Kb +gU +gU +Zh +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(112,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +KP +Ig +ZV +Ta +EF +SV +TQ +cR +qQ +dH +XG +uz +uz +uz +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Vn +Om +yV +dw +dw +dw +dw +dw +aH +Hp +jD +uM +Bs +eu +bm +Ej +aH +Cq +hX +Jm +uu +Jm +Un +pP +Cw +Cw +Yc +Cw +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +FF +aS +Ys +rg +Rx +pE +Ys +Ds +FF +Cw +Cw +Yc +Pm +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Kb +Ud +iU +RX +lO +pQ +jz +BH +Kb +vD +vD +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(113,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ig +ZV +Ta +Ta +Ta +Ta +Yc +JW +vd +sT +Ju +bO +bO +bO +bO +bO +bO +bO +bO +bO +Wz +Om +yV +Cw +Cw +Cw +Cw +Cw +aH +aH +aH +Ty +hj +aF +aH +aH +aH +pP +pP +fR +fR +fR +pP +pP +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +FF +FF +ZO +ZO +kU +ZO +ZO +FF +FF +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Kb +Kb +Kb +Vv +mH +Vv +Kb +Kb +Kb +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(114,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TA +HE +Cw +qY +yV +ox +Br +po +uS +Mo +Uk +az +nH +Rq +gZ +sp +QY +KC +yV +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Sn +ag +cQ +qy +Sn +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +zW +pS +DM +ga +ge +vg +zW +Cw +Cw +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 +Cw +ia +cP +cY +ia +Cw +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(115,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TA +Cw +Cw +yV +yV +vd +vd +vd +yV +vd +vd +vd +yV +vd +vd +vd +yV +yV +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Sn +ag +cQ +qy +Sn +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +zW +zW +EQ +Dg +SU +gI +Oq +zR +zW +zW +zW +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 +Cw +ia +cD +Cw +Yc +Cw +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(116,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +Yc +Yc +IV +qY +dw +dw +dw +vu +dw +dw +dw +vu +dw +dw +dw +dh +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Sn +ag +cQ +qy +Sn +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +zW +mh +GJ +SU +rE +sg +SU +YW +Cf +mh +zW +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 +Cw +Cw +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(117,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +ph +sF +sF +Jt +sF +sF +Le +YM +TV +cQ +qy +Tb +ph +sF +sF +Jt +sF +sF +Le +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Wn +mh +No +Dg +Ne +gI +Ne +Ne +Dg +RO +Wn +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 +Cw +Yc +Yc +Yc +Yc +Yc +TW +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(118,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +GZ +TA +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +IZ +IZ +Jj +Jj +IZ +Jj +Jj +IZ +IZ +Uc +cQ +yr +Au +Au +iy +iy +Au +iy +iy +Au +Au +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +oZ +lR +lR +Ne +Dz +BP +gI +fy +qw +cU +lR +lR +Cw +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(119,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +ph +IZ +di +Wi +mc +IH +gm +qs +mI +Yy +ag +cQ +qy +Au +jy +Bx +Nn +TE +Kh +qf +Pk +Au +Lc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +SU +lR +lR +ol +zO +gQ +Oq +vR +Ne +mh +Wn +BM +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(120,1,1) = {" +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 +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +CV +CO +Zo +IP +Zo +sD +zT +Jj +ag +cQ +qy +iy +qB +Tn +gH +aT +gH +ru +iI +iy +zi +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +OX +SU +rE +lR +nh +rE +dS +yL +dS +Yl +EY +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 +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 +Yc +Yc +Yc +"} +(121,1,1) = {" +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 +ZV +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +Cb +tx +VT +Bt +ZP +qJ +ne +tR +vU +cQ +vU +oW +mG +Dq +RD +ww +wu +eZ +ri +iy +zi +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +SU +ND +SU +rE +SU +rE +rE +EQ +RR +mh +Wn +Cw +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 +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 +Yc +Yc +"} +(122,1,1) = {" +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 +ZV +ZV +ZV +HT +HT +HT +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +TN +KR +kg +hK +VP +tW +WB +Jj +ag +cQ +qy +iy +zt +vY +Jc +mJ +xB +gq +Bi +iy +zi +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ND +OX +OX +SU +ND +ND +SU +EQ +ty +EQ +Mx +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 +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 +Yc +Yc +Yc +"} +(123,1,1) = {" +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 +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +cm +IZ +zk +je +WN +dQ +wJ +FV +UL +bD +Cy +yZ +el +Au +Hc +ql +EV +cc +Eq +Ah +Yr +Au +dX +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Mx +ND +ND +ND +Mx +OX +ND +ND +EQ +Ms +XF +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 +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 +Yc +Yc +Yc +"} +(124,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +Xe +wn +FS +dy +Ny +XV +zT +Jj +ag +cQ +qy +iy +nU +vY +Yf +io +Gy +gq +JC +iy +zi +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ND +OX +ND +OX +ND +OX +OX +OX +ND +XF +zW +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 +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 +Yc +Yc +Yc +"} +(125,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +ki +PM +IB +Pd +ow +FD +Zo +CE +Ly +cQ +Ly +Zk +gH +Fa +Yw +Xx +FB +aW +qU +iy +zi +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +nM +OX +XF +OX +OX +OX +XF +ND +Mx +zW +zW +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 +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 +Yc +Yc +Yc +"} +(126,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +jx +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +JW +Jj +cn +Gt +Zo +Zo +Zo +ET +WB +Jj +ag +cQ +qy +iy +DY +df +gH +gH +gH +sl +gn +iy +zi +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +zW +XF +OX +Mx +ND +OX +zW +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(127,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +rQ +DG +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +qY +IZ +Ue +Yo +oa +wo +XQ +aY +Gi +Yy +ag +cQ +qy +Au +oI +yM +pe +Nb +BJ +ig +MR +Au +Dr +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(128,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +mo +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +rQ +jC +TA +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +IZ +IZ +Jj +Jj +IZ +Jj +Jj +IZ +IZ +Uc +cQ +yr +Au +Au +iy +iy +Au +iy +iy +Au +Au +Cw +Cw +Cw +Cw +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 +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 +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 +"} +(129,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +jx +jx +jx +aj +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jC +TA +HE +KS +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +qY +dw +dw +vu +dw +dw +dh +YM +TV +cQ +qy +Tb +qY +dw +dw +vu +dw +dw +dh +Cw +Yc +Yc +Cw +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 +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 +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 +"} +(130,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +jx +jx +jx +jx +jx +jx +jx +jx +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +cZ +rQ +jC +TA +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Sn +ag +cQ +qy +Sn +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Kx +xc +xc +Cw +xc +xc +Cw +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 +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 +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 +"} +(131,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +jx +jx +jx +jx +jx +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +cZ +rQ +jC +DG +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +bQ +bQ +Ws +bQ +bQ +Yc +Yc +Sn +ag +cQ +qy +Sn +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +xc +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 +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 +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 +"} +(132,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +jx +jx +jx +jx +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +rQ +cZ +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Ml +lY +lY +lY +lY +lY +Ml +Yc +Sn +ag +cQ +qy +Sn +Yc +Yc +Cw +Yc +Yc +Yc +Ij +Yc +Yc +Yc +Ij +Yc +Cw +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 +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 +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 +"} +(133,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +cZ +cZ +DG +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Ml +uj +eH +qM +eH +wc +Ml +Yc +YM +Em +cQ +Hk +nI +nI +nI +Cw +KS +Cw +Cw +Ij +Ij +Ij +Ij +Ij +Cw +Kx +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 +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 +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 +"} +(134,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +Da +ZV +ab +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +gg +gg +gg +gg +gg +gg +gg +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +cZ +ZV +ZV +cZ +rQ +TA +HE +DG +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Am +Yh +Zm +Zm +Zm +BS +Am +Yc +Sn +ag +cQ +qy +Jw +zS +nI +oK +oK +oK +Yc +Ij +Yc +Yc +Yc +Ij +Yc +xc +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 +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 +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 +"} +(135,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +cZ +rQ +TA +TA +HE +Cw +Cw +Cw +Cw +Cw +Cw +Am +qL +pB +jZ +li +BS +Am +Cw +Sn +ag +cQ +sV +na +Jw +Io +FL +uW +uc +Yc +Ij +Yc +Yc +Yc +Ij +Yc +Cw +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 +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 +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 +"} +(136,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +ZV +ZV +cZ +rQ +jC +TA +DG +Cw +Yc +Yc +Dj +zP +Ml +NV +NW +mn +li +zc +Ml +Sn +YM +NY +cQ +qy +Yk +xU +xU +uT +BT +EX +Yc +Ij +Yc +Yc +Yc +Ij +Yc +xc +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 +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 +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 +"} +(137,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +cZ +rQ +jC +cZ +Cw +Yc +me +IU +iz +SL +pB +NW +Lw +Av +Av +Iv +vU +BC +vU +yZ +Ly +xU +mU +as +nI +oK +nI +Cw +Ij +Cw +Cw +Cw +Ij +Cw +xc +Cw +Cw +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 +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 +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 +"} +(138,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +ZV +ZV +ZV +cZ +rQ +jC +Cw +Yc +Yc +Dj +zP +Ml +md +NW +QR +xm +aI +Ml +Sn +YM +NY +cQ +qy +FA +xU +xU +uT +ZQ +Cm +fv +Ij +Yc +Yc +Yc +Ij +Yc +xc +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 +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 +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 +"} +(139,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +cZ +rQ +jC +TA +HE +KS +Cw +Cw +Cw +Am +pn +NW +GP +xm +eJ +Am +Cw +Sn +ag +cQ +dA +yP +Jw +js +Me +Nr +lS +Yc +Ij +Yc +Yc +Yc +Ij +Yc +Cw +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 +oZ +oZ +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 +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 +"} +(140,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +cZ +ZV +ZV +ZV +ZV +cZ +rQ +jC +TA +jC +Yc +Yc +Cw +Am +dG +NW +nn +pB +OZ +Am +Yc +Sn +ag +cQ +qy +Jw +dJ +nI +oK +oK +oK +Yc +Ij +Yc +Yc +Yc +Ij +Yc +xc +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 +oZ +TX +TX +oZ +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 +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 +"} +(141,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +ZV +ZV +ZV +cZ +rQ +jC +rQ +cZ +Yc +Cw +Ml +Ml +CC +Gn +hh +Ml +Ml +Yc +YM +vt +cQ +Hk +nI +nI +nI +Cw +KS +Cw +Cw +Ij +Ij +Ij +Ij +Ij +Cw +xc +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 +oZ +TX +TX +TX +TX +oZ +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 +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 +"} +(142,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +cZ +rQ +cZ +rQ +DG +Cw +Yc +Ml +Am +Am +Am +Ml +Yc +Yc +Sn +ag +cQ +qy +oK +Yc +Yc +Cw +Yc +Yc +Yc +Ij +Yc +Yc +Yc +Ij +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +oZ +Yc +oZ +TX +TX +TX +ud +TX +TX +oZ +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 +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 +"} +(143,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +ZV +ZV +ZV +ZV +ZV +cZ +rQ +jC +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +DG +Sn +ag +cQ +qy +oK +Yc +Yc +KS +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +xc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +oZ +TX +oZ +oZ +oZ +TX +TX +TX +TX +oZ +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 +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 +"} +(144,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +cZ +ZV +cZ +rQ +jC +TA +HE +KS +Cw +Cw +Cw +Cw +oK +oK +oK +nI +bf +hO +EP +nI +oK +oK +oK +oK +Cw +Cw +Cw +xc +xc +xc +Cw +xc +Kx +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Yc +oZ +TX +TX +TX +TX +oZ +oZ +TX +TX +DD +Cw +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 +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 +"} +(145,1,1) = {" +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 +ZV +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +jC +cZ +ZV +cZ +rQ +jC +TA +Yc +Yc +Yc +Yc +Cw +oK +Ub +Sc +yA +bf +hO +EP +hl +Ic +Uw +XK +oK +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +oZ +WK +oZ +TX +TX +rR +TX +TX +TX +oZ +gF +MB +bN +FH +Cw +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 +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 +"} +(146,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +cZ +ZV +ZV +ZV +cZ +rQ +jC +Yc +Yc +Yc +Yc +KS +oK +Ab +Gv +xU +xU +hO +yp +yp +yp +Gv +Yv +oK +DG +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +oZ +TX +EM +TX +TX +TX +TX +JN +xl +xl +Uh +Xt +uL +CT +uL +Xt +Cw +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 +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 +"} +(147,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +cZ +ZV +ZV +cZ +rQ +cZ +Yc +Yc +Yc +Cw +oK +QC +fT +ZR +Vm +hO +aM +al +pq +bX +Qb +oK +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +oZ +TX +Rb +Th +kv +wk +TX +TX +TX +xl +Uh +Bw +bP +au +qr +mz +Xt +Cw +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 +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 +"} +(148,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +HT +HT +yB +jC +TA +HE +TI +TI +MS +Xk +Xk +Xk +Xk +Td +qo +BK +Xk +Xk +zH +zH +zH +LZ +LZ +LZ +zH +zH +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +oZ +CB +CB +Ay +Ay +oY +Ay +Ay +CB +CB +TX +Uh +BG +ls +xz +xz +dL +Je +Xt +Cw +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(149,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +EI +cZ +rQ +cZ +TW +TW +ca +Lt +Cl +Kg +Ba +Ac +xO +by +SF +Nx +zH +rp +Jv +Fh +Fh +Fh +VJ +zH +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +oZ +TX +CB +PN +gE +ul +Uj +tU +Lx +Rg +CB +Xt +Xt +ja +WP +WP +WP +WP +Ma +Xt +Cw +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(150,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Or +Or +mS +Yu +Yu +mS +mS +qi +Or +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +EI +rQ +TA +TW +TW +TW +ca +EG +Cl +ut +oF +Xb +Sh +Xb +zd +Ke +LZ +Wv +yF +eG +Vf +OS +OE +zH +wq +wq +BM +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Cw +ia +Cw +TX +wq +nc +CZ +kt +si +Uj +si +Sj +vj +Ay +Lj +oQ +Hl +Rm +fI +fI +Px +ck +ck +PU +Cw +Cw +Cw +Cw +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(151,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +mS +OD +OD +Qc +OD +fq +fq +DJ +qi +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +jC +As +Eo +Eo +Eo +Cl +Cl +Xk +Td +fw +Fw +Ac +gr +sY +BK +LZ +jA +yF +QI +Xq +VG +fM +LZ +Uy +FH +cP +ia +Cw +Cw +Yc +Yc +Yc +Yc +Yc +ia +Cw +Cw +BM +Cw +Yc +gF +kv +Ay +xJ +Co +uN +gj +qA +Qh +EE +Ay +yJ +Kq +nb +lz +fI +lL +mW +yn +ck +Cw +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(152,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +qi +Pq +Nk +OG +LF +jd +fq +OG +cZ +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +rQ +TA +HE +Ug +Ug +Ug +Fr +xO +Ts +xO +xO +Td +Iq +BK +xO +xO +zF +ta +ta +yC +cv +xr +ta +so +Th +EM +pU +WK +WK +TX +oZ +Cw +Cw +Yc +Yc +Yc +Yc +Cw +oZ +TX +Cw +lh +Th +oY +Uj +dE +tJ +hy +bn +Uj +Uj +oY +dL +Vy +Fd +FZ +fI +yh +ZH +mf +ck +Cw +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 +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 +"} +(153,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +Oe +qi +Ql +OG +OG +fq +jd +fq +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +eP +TA +As +Qk +Qk +Dl +Cl +Cl +Xk +jL +fw +ER +SB +aD +Um +BK +LZ +KO +fb +fC +fb +fb +fb +LZ +kv +FH +BM +Cw +TX +TX +TX +oZ +Yc +Yc +Yc +Cw +Cw +oZ +TX +TX +TX +oZ +kv +Ay +vN +Co +GT +lC +Yt +Qh +qI +Ay +LA +wN +LV +RP +fI +lL +Vu +RE +ck +dv +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(154,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +EO +OD +DJ +fq +Or +jd +fq +mS +vm +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +rQ +TW +TW +TW +TW +ca +Lt +Cl +Td +Bu +Aq +xO +Aq +jP +BK +LZ +QB +jA +ci +jA +jA +VU +zH +wq +ia +Cw +oZ +TX +pg +TX +oZ +Yc +Yc +Cw +Yc +ia +TX +TX +hs +TX +wq +wq +nc +Rd +ea +kI +Uj +kI +kj +EJ +Ay +uE +tC +Hl +Gr +fI +fI +Mp +ck +ck +PU +Cw +Cw +Cw +Cw +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(155,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +ca +EG +Cl +lQ +SB +Pv +xO +yW +fJ +Hi +zH +DU +oo +mi +oo +PT +zH +zH +Cw +Yc +Yc +Cw +oZ +TX +oZ +Cw +Cw +Yc +Cw +Cw +Cw +oZ +TX +TX +oZ +Cw +Cw +CB +kD +Su +lC +Uj +Os +If +tD +CB +Xt +Xt +lE +WP +ft +jk +sM +he +Xt +Cw +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(156,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +be +nw +HE +TI +TI +TI +TI +TI +TI +ca +Lt +Cl +Cl +Cl +Xk +Ts +Xk +Cl +Cl +zH +mi +bV +mi +bV +mi +zH +Cw +Yc +Yc +Yc +Cw +Yc +oZ +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +oZ +oZ +Yc +Yc +Yc +CB +CB +CB +Ay +oY +Ay +CB +CB +CB +Yc +Xt +Sa +ls +ls +cj +EZ +vl +Xt +Cw +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(157,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +aO +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ca +IC +lx +pK +lx +Cl +xO +Cl +pK +lx +zH +LZ +LZ +LZ +LZ +LZ +zH +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +JW +Ay +Mv +Uj +zj +Ay +zi +Cw +Yc +Xt +Qt +cC +Qu +kL +kL +kL +hf +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 +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 +"} +(158,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +Gp +Qk +Qk +Qk +Qk +Cl +Fr +Cl +Qk +Qk +fK +Sf +Sf +Sf +Sf +Sf +Hx +CL +xc +xc +Kx +Cw +Kx +xc +xc +Kx +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Cw +Cw +JW +Ay +wL +Uj +mQ +Ay +zi +Cw +Yc +Uf +Xt +Uf +hf +kL +Qu +PD +Uf +Cw +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 +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 +"} +(159,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +rQ +ZV +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TI +TW +TW +ca +Ug +kh +TW +TW +Dp +gX +gX +gX +Dp +Yc +Yc +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +JW +Ay +eh +Uj +GM +Ay +zi +Yc +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Cw +Cw +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 +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 +"} +(160,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +TI +TW +TW +ca +Ug +kh +TW +TW +Dp +gX +gX +gX +Dp +Yc +Yc +Kx +Yc +Yc +Yc +Cw +Yc +Yc +Yc +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +JW +Ay +wL +Uj +xp +Ay +zi +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ia +Cw +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 +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 +"} +(161,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +cZ +jx +jx +jx +jx +HT +jx +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +TI +TW +TW +ca +Ug +kh +TI +TI +El +bA +bA +bA +NM +Dp +Dp +Dp +Cw +Cw +Cw +Cw +Cw +Cw +Cw +xc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +co +Ay +Fm +Uj +jF +Ay +ed +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +"} +(162,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +aO +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +be +ZV +TW +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +HE +ZV +TA +ar +HE +As +TA +TA +UC +Ji +Ji +ZB +ns +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Kx +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +ph +SC +SC +SC +SC +SC +RQ +ld +RQ +SC +SC +uO +pY +TF +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 +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 +Yc +Yc +"} +(163,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +TA +ZV +ZV +TA +TA +jC +nw +HE +cG +ZZ +ZZ +ZZ +Af +ak +ak +iX +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +JW +im +LN +Vj +YK +RQ +QM +SY +wV +LM +id +TF +TF +TF +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 +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 +Yc +Yc +"} +(164,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +ZV +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +jC +eP +ZV +ZV +jC +rQ +jC +TA +HE +ZZ +ZZ +ZZ +xN +UG +UG +kp +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +JW +im +yG +ef +kH +Vo +Jq +Oo +kx +Zg +kx +pY +TF +Wp +Yc +Yc +Cw +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 +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 +"} +(165,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +rQ +jC +TA +vA +ZZ +zp +yv +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Kx +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +JW +im +jn +VN +Rj +RQ +kx +Ky +kx +DC +qG +Wp +pY +pY +Yc +Cw +SO +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 +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 +"} +(166,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +cZ +jx +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +EI +EI +ZV +ZV +ZV +rQ +jC +HE +ZZ +AW +WM +nv +nv +Zc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +qY +SC +SC +SC +SC +SC +jU +Ky +dx +Es +DC +kx +pY +Wp +Yc +Cw +ia +Cw +Yc +Cw +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 +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 +"} +(167,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +Ja +Ja +om +om +om +om +om +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +TW +TW +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +jC +ZV +rQ +TA +vA +ZZ +Wl +Wl +Wl +Wl +RU +Yc +Yc +Cw +Yc +Yc +Yc +xc +Cw +Yc +Cw +Cw +Cw +Cw +Cw +Cw +HT +SC +SK +SK +Uz +RQ +kx +Ky +kx +hB +DC +LW +tM +uO +Yc +Yc +Cw +BM +Cw +ia +Yc +Cw +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 +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 +"} +(168,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +Ja +Ja +om +oM +xM +oM +om +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +jC +HE +ZZ +mP +qW +qW +qW +Cw +Cw +Cw +Cw +Cw +Cw +Cw +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +HT +HT +SC +SK +SJ +SK +Qs +LX +Ky +kx +NN +ON +tN +zm +SC +Cw +Yc +Yc +Cw +od +Cw +PU +ia +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 +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 +"} +(169,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +Ja +om +oO +qS +oO +om +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +be +ZV +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +rQ +TA +HE +Ix +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +xc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +HT +HT +SC +VQ +VQ +VQ +RQ +Es +Ky +kx +RQ +RQ +RQ +RQ +SC +Cw +PU +Cw +ia +Oj +IJ +eE +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(170,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +Ja +om +pd +oO +pd +om +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +rQ +ZV +rQ +TA +yv +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Kx +Yc +Yc +Yc +Cw +Yc +ZV +HT +HT +HT +SC +SK +SK +SK +RQ +kx +Ky +kx +RQ +SK +SK +SK +SC +HT +Zt +JQ +yx +op +yx +JQ +ST +Dp +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 +Yc +Yc +Yc +Yc +Yc +Dp +Dp +Yc +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(171,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +aO +HT +HT +HT +HT +HT +HT +Ja +om +om +qT +om +om +nW +nW +nW +nW +nW +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +yv +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +jC +ZV +ZV +HT +HT +SC +NB +SJ +SK +TH +LX +Ky +LX +RB +SK +SJ +SA +SC +HT +HT +JQ +pm +yi +uV +yx +go +Dp +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 +Yc +Yc +Yc +Yc +Dp +Dp +To +sq +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(172,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +rf +nW +Ja +nW +AA +CJ +EB +GA +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +ZV +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +HE +HE +jC +jC +ZV +ZV +HT +SC +VQ +VQ +VQ +RQ +kx +Ky +kx +RQ +VQ +VQ +VQ +SC +HT +HT +JQ +sk +yi +qO +yx +go +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 +Yc +Yc +Yc +Yc +Dp +Dp +To +To +KA +To +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(173,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +om +rq +nW +nW +nW +AG +CU +Fe +CU +HH +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +ZV +jC +jC +jC +ZV +ZV +ZV +ZV +SC +tu +CK +vS +RQ +kx +Ky +Wp +RQ +CK +CK +mO +SC +HT +HT +JQ +vF +ch +YS +yx +go +Dp +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Dp +uU +To +RW +oh +mg +To +uU +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(174,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +pf +rq +tS +nW +xP +AG +GG +Ff +GG +HL +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +be +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +ZV +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HE +Yc +Yc +Yc +Cw +Yc +Yc +Yc +HE +HT +ZV +ZV +jC +ZV +ZV +ZV +ZV +ZV +dO +CK +CK +CK +DC +LX +fn +eM +LX +DC +CK +CK +SC +HT +HT +JQ +pX +ku +JQ +JQ +Do +Dp +Dp +Dp +Dp +Dp +Dp +zC +Dp +Dp +Dp +Yc +Dp +Dp +zC +Dp +Dp +Dp +Dp +Dp +Dp +zC +Dp +Dp +Dp +Yc +Yc +Dp +zC +Dp +Yc +Dp +Dp +Dp +Dp +zC +To +To +wy +hJ +hJ +hJ +ee +To +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(175,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +om +rq +ug +nW +xQ +AJ +De +Fg +GH +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jC +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +Ja +Ja +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +TA +jC +ZV +ZV +ZV +ZV +ZV +jC +jC +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +jX +bE +NX +NX +RQ +zM +Ky +iK +DC +DC +NX +NX +SC +HT +HT +JQ +DE +Pr +Pr +AU +ZZ +Dp +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +JR +Ce +CG +hJ +hJ +hJ +vk +yt +sq +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(176,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +nW +rf +nW +nW +xT +Bh +DF +Ft +GY +HM +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +Ja +jx +Ja +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +DX +jX +bE +bE +RQ +kx +fn +Es +lP +CK +CK +CK +SC +HT +HT +JQ +JQ +JQ +JQ +JQ +JS +Dp +Dp +gX +Dp +Dp +Dp +zC +Dp +Dp +Dp +Dp +Dp +Dp +zC +Dp +Dp +Yc +Yc +Dp +Dp +zC +Dp +Dp +Dp +Dp +Dp +Dp +zC +Dp +Dp +Dp +Dp +Dp +Dp +zC +To +To +FC +hJ +hJ +hJ +xd +To +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(177,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +aO +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +nW +rI +nW +nW +nW +nW +nW +FE +nW +nW +nW +nW +Ja +Ja +Ja +HT +HT +HT +HT +ZV +jC +ZV +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +ZV +Ja +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +jX +dO +bE +hE +qC +LX +Hu +kN +LX +CK +CK +lU +SC +HT +HT +HT +HT +HT +HT +HT +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Dp +uU +To +dk +hM +ct +To +uU +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(178,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pj +rL +um +nW +yd +Bj +DI +FG +Ha +HP +IW +nW +Ja +Ja +Ja +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +Ja +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +dO +bE +NX +bE +RQ +GK +gA +GK +RQ +NX +bE +hE +Va +HT +HT +HT +HT +HT +HT +HT +HT +Dp +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 +Yc +Yc +Yc +Dp +Dp +To +To +MP +To +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(179,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pl +rN +vp +nW +ye +Bl +nW +FK +BF +HQ +IY +nW +Ja +Ja +Ja +HT +HT +ZV +be +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +Ja +Ja +TW +TW +ZV +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +SC +Fc +bE +CK +RQ +DX +px +GK +gA +cH +hE +tf +SC +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Dp +Dp +To +sq +To +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(180,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pD +rX +vI +nW +yE +BB +nW +FU +BF +HS +Jk +nW +Ja +Ja +Ja +HT +HT +PJ +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TW +ZV +jx +jx +jx +jx +jx +jx +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +pu +hE +cH +qd +hE +da +gA +DX +hE +hE +Va +Va +HT +HT +HT +HT +HT +HT +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Dp +Dp +Yc +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(181,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +ZV +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pH +rY +vO +nW +nW +BF +nW +Gc +nW +nW +nW +nW +nW +nW +Ja +HT +PJ +Rt +ZV +TW +TW +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +jx +jx +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +hE +hE +px +DX +hE +hE +hE +hE +Va +Va +HT +HT +HT +HT +HT +HT +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(182,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aO +jx +jx +jx +cZ +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pT +rX +wf +wM +yI +BB +DL +FU +He +BB +rY +rY +OK +nW +Ja +ZV +QU +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +Ja +jx +jx +Ja +Ja +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +hE +hE +lo +hE +pu +Va +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(183,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +cZ +jx +jx +jx +jx +jx +HT +HT +HT +HT +Ja +Ja +nW +qa +sr +wp +wO +ze +BN +DP +Gf +Hg +Hg +Jy +Mm +OO +PE +Qr +ZV +PJ +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +px +jX +DX +jX +hE +jX +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(184,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +xf +eT +Lz +Gm +Gm +aO +jx +jx +HT +HT +HT +Ja +Ja +nW +qp +sz +wt +nW +zs +BQ +DV +BQ +Hh +HU +JA +rY +OT +nW +Ja +ZV +PJ +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +Va +hE +jX +hE +hE +px +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(185,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +jx +jx +cZ +jx +lK +Gm +Gm +Gm +Gm +jx +HT +HT +Ja +Ja +nW +nW +nW +nW +nW +nW +BU +nW +Gk +nW +HW +JE +MA +nW +nW +nW +nW +Rf +TI +TI +TI +TI +TI +TI +TI +TI +TI +ZV +ZV +ZV +jx +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +Va +Va +hE +pt +hE +Va +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(186,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +jx +jx +Gm +Gm +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +nW +BV +nW +nW +nW +Ia +JG +MH +OW +PH +BY +QL +Rl +TI +TW +TI +TW +TW +TW +TW +TW +ZV +ZV +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +Va +Va +jX +px +hE +Va +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(187,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +cZ +jx +jx +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +jx +jx +Gm +Gm +Gm +jx +Ja +Ja +Ja +Ja +Ja +Ja +nW +BY +nW +Ja +nW +nW +JH +nW +nW +nW +nW +nW +Rr +TI +TW +TI +TI +TI +TI +TI +TI +ZV +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +Ja +Ja +Sv +ZV +ZV +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +Va +Va +Va +hE +Va +Va +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(188,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +jx +jx +Gm +Gm +Gm +Gm +Gm +Gm +jx +Ja +nW +BZ +nW +Ja +Al +nW +JM +nW +Ca +PJ +PJ +QS +QS +wZ +wZ +TI +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +Ja +Ja +RY +Sz +jx +ZV +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Va +Va +Va +Va +Va +Va +Va +Va +Va +Va +Va +Va +Va +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(189,1,1) = {" +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +jx +GZ +jx +jx +GZ +jx +Gm +Gm +sG +YV +jK +DW +sG +Ca +nW +JO +nW +Ca +TI +TI +TI +wZ +wZ +Ja +wZ +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +jx +Sl +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(190,1,1) = {" +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +aO +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aj +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +nZ +jx +aO +jx +jC +TA +TA +TA +jC +Ca +Ib +JZ +MK +Hm +TW +TW +TW +TW +wZ +Ja +wZ +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(191,1,1) = {" +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aj +jx +jx +jx +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +jx +jC +jC +jC +jx +Ca +Ih +JZ +ML +Hm +TW +TW +TW +TW +TI +TW +TI +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(192,1,1) = {" +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +jx +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +Hm +Ih +JZ +ML +Hm +TI +TI +TI +TI +TI +TI +TI +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(193,1,1) = {" +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +cZ +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HC +Ih +JZ +ML +HC +TW +TW +wZ +TW +TW +TW +TI +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(194,1,1) = {" +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +cZ +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +Hm +Ih +JZ +ML +Hm +TW +Ja +wZ +Ja +Ja +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(195,1,1) = {" +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +Hm +Ih +JZ +ML +Hm +TW +Ja +wZ +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(196,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +TW +Hm +Ih +JZ +ML +Hm +TW +TW +wZ +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(197,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(198,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aO +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TI +TW +TW +TI +TI +TI +Hm +Ih +JZ +ML +Hm +TI +TI +TI +TI +TI +TI +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(199,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TI +TW +TW +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(200,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TI +TW +TW +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(201,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TI +TI +TI +wZ +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(202,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +Dc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +cZ +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TI +TW +Ja +wZ +Ja +TW +HC +Ih +JZ +ML +HC +ZV +TW +TI +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(203,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +gX +Dc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TI +Ja +Ja +wZ +Ja +TW +HE +Ih +JZ +ML +HE +ZV +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(204,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +sx +Dc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TI +wZ +wZ +wZ +wZ +TI +HE +Ih +JZ +ML +HE +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(205,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +fW +GW +hY +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aO +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TI +TW +Ja +wZ +TW +TW +HE +Ik +JZ +MZ +Al +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(206,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +JL +HE +TA +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TI +TW +TW +TI +TW +TW +my +nW +JH +nW +Al +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(207,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +jx +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Dp +JL +gi +jC +vX +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +eP +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TI +TW +TW +TI +TW +TW +Al +nW +Kj +nW +Al +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(208,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +jx +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +LC +BD +LP +jC +rQ +Nc +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +cZ +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TI +TW +TW +TI +TI +TI +nW +nW +Ko +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(209,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +HT +HT +HT +jx +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Wl +Wl +OL +gi +jC +rQ +Nc +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TI +TW +TW +TI +TW +ZV +nW +Is +JE +Nd +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(210,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +HT +jx +jx +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +xN +iT +OL +LP +TA +jC +rQ +HT +HT +HT +HT +HT +jx +jx +jx +be +jx +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TI +TW +TW +TI +TW +ZV +nW +IE +KH +Nh +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(211,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Dp +JL +VD +wi +LP +TA +jC +rQ +HT +HT +HT +jx +cZ +jx +jx +jx +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TI +TW +TW +TI +ZV +ZV +nW +IF +KZ +NO +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(212,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +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 +Dp +JL +eo +sN +UD +Dk +TA +jC +rQ +rQ +jC +vX +jx +jx +DG +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TI +TW +TW +TI +ZV +Ja +nW +IK +KZ +On +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +FW +Sx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(213,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +JL +IG +zV +WC +db +LP +gi +jC +jC +gu +jC +DG +Yc +Yc +Yc +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TW +TI +TW +ZV +ZV +ZV +Ja +nW +IR +Lm +Ov +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(214,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Dp +JL +ro +Ka +Vh +Za +OL +LP +Ym +gi +Dc +Dp +Yc +Yc +Yc +Yc +Yc +DG +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TW +TW +ZV +ZV +ZV +jx +jx +Ja +nW +nW +Lu +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +kC +kC +kC +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(215,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Dp +Gu +UG +UG +UG +UG +iT +Wl +tk +UG +sx +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +DG +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +jx +jx +Ja +Ja +nW +LK +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +vv +xK +kC +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(216,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Cw +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 +Yc +Dp +Dp +Dp +Dp +Yc +Dp +NE +Wl +Kf +Dp +Dp +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +jx +jx +jx +Ja +nW +LL +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +jx +jx +aj +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +vv +xK +kC +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +YL +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(217,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Cw +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 +sP +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 +DG +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +jx +jx +jx +jx +nW +Mg +nW +HT +Ja +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +ay +xK +kC +HT +HT +HT +HT +HT +vG +Dp +Yc +YL +Yc +YL +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(218,1,1) = {" +Yc +Yc +Yc +Cw +Cw +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 +Jo +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 +DG +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +TW +TW +TW +TW +TW +TW +ZV +eP +HT +HT +HT +HT +HT +jx +jx +jx +zD +Al +SR +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +AI +HT +HT +HT +HT +HT +kC +kC +lw +kC +HT +HT +HT +HT +HT +Pi +Dp +Dp +YL +Dp +YL +Dp +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(219,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YL +YL +YL +YL +Jo +YL +YL +YL +YL +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TW +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +jx +jx +Al +Al +Al +jx +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Db +cZ +ZV +ZV +HT +HT +HT +Pi +Jo +Jo +Jo +Jo +Jo +Jo +sP +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(220,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +Uu +Nc +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +cZ +Db +jC +jC +jC +jC +HT +HT +Pi +Dp +Dp +YL +Dp +YL +Dp +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(221,1,1) = {" +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YL +YL +YL +YL +YL +YL +Jo +YL +YL +YL +YL +YL +YL +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +vm +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +cZ +aA +gO +eq +eq +eq +eq +eq +nN +Pi +Dp +Yc +YL +Yc +YL +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(222,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +er +Yc +Yc +Yc +Dp +Yc +Wl +Wl +Jo +Wl +Wl +Yc +fU +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +kC +kC +Nt +kC +jC +jC +jC +jC +Wl +Dp +Yc +Yc +Yc +Yc +YL +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(223,1,1) = {" +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +tF +tF +tF +tF +tF +tF +tF +Uo +SS +Uo +BW +NL +NL +NL +fx +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +kC +Qo +dU +kC +PK +PK +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(224,1,1) = {" +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +tF +ib +tF +rV +tF +ib +tF +tF +BW +fD +BW +BW +NL +Wf +NL +NL +hu +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +Nj +jb +kC +it +cd +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(225,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +pr +wb +Ut +BI +Tw +Pz +do +Sp +tF +Rz +dY +vc +BW +vw +hT +Re +Ei +sU +DO +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +TW +TW +TW +ZV +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +kC +kC +ES +kC +kC +kC +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(226,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +tF +tF +Go +Fv +uJ +Ya +Ya +Fv +Ya +do +tF +xI +dY +Pb +BW +cO +hT +ah +Ei +fx +sU +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +ZV +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +Po +cx +ZL +qK +NS +kC +HT +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(227,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +tF +tF +Zx +Wh +il +tF +zQ +tF +Sk +PY +tF +qZ +dY +pk +uG +gT +hT +Wk +NL +fx +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +DG +Yc +Yc +Yc +Yc +Yc +Yc +DG +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +hq +WY +RT +WY +Ul +ev +Wl +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(228,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Vr +tF +wP +iC +TY +iq +tG +cs +tF +cE +Gx +TO +dY +bc +dY +fD +Lp +qz +XD +fx +CN +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 +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +LH +WY +ie +WY +GC +ev +bK +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(229,1,1) = {" +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +tF +tF +yH +Wh +HY +tF +XB +tF +Fv +Ya +tF +OM +dY +Xy +uG +ng +hT +GI +NL +fx +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 +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +JX +WY +uh +WY +VW +ev +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(230,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +tF +tF +uX +Fv +nT +Ya +Ya +Fv +Ya +do +tF +Nz +dY +ax +BW +jJ +hT +hQ +Ei +fx +DO +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 +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +TS +WY +OR +WY +GC +ev +bK +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(231,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +pr +xb +Ut +QZ +Mn +Pz +do +Ok +tF +no +dY +ha +BW +Dt +hT +Ng +Ei +sU +sU +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 +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +gl +WY +RT +WY +Nw +ev +Wl +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(232,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +tF +zg +tF +vh +tF +zg +tF +tF +BW +fD +BW +BW +NL +wG +NL +kZ +hu +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 +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +iH +Ie +qm +gv +rh +kC +HT +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(233,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +pr +tF +tF +tF +tF +tF +tF +tF +tF +Uo +QT +Uo +BW +NL +NL +NL +fx +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 +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +kC +kC +kC +kC +kC +kC +kC +HT +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(234,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Bn +Yc +Yc +Yc +Dp +Yc +Wl +Wl +Jo +Wl +Wl +Yc +ma +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Wl +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(235,1,1) = {" +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YL +YL +YL +YL +YL +YL +Jo +YL +YL +YL +YL +YL +YL +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Dp +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(236,1,1) = {" +Yc +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +Jo +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(237,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YL +YL +YL +YL +Jo +YL +YL +YL +YL +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(238,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Jo +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(239,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +sP +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(240,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +jx +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(241,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +jx +jx +jx +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(242,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +jx +jx +jx +HT +jx +HT +HT +jx +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(243,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +Cw +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 +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(244,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +Cw +Cw +Cw +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(245,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(246,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Yc +Cw +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(247,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Cw +Cw +Cw +HT +HT +HT +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(248,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +Cw +Cw +Cw +Yc +Yc +HT +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(249,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +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 +Cw +Cw +Cw +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(250,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(251,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(252,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Yc +Cw +Cw +Cw +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 +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 +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 +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 +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 +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 +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 +"} +(253,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Yc +Yc +Cw +Cw +Cw +Cw +Yc +Cw +Yc +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Cw +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 +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 +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 +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 +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 +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 +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 +"} +(254,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(255,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} diff --git a/_maps/stations/construction_old.dmm b/_maps/stations/construction_old.dmm new file mode 100644 index 000000000000..98ff4e0f76c1 --- /dev/null +++ b/_maps/stations/construction_old.dmm @@ -0,0 +1,69785 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"ae" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space/basic, +/area/space) +"aj" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"al" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"am" = ( +/obj/structure/lattice, +/obj/item/clothing/gloves/color/yellow, +/turf/open/space/basic, +/area/space) +"ao" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/science/research) +"ap" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"as" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool/experimental, +/obj/item/crowbar/power, +/obj/item/screwdriver/power, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"at" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"aL" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"aM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"aN" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"aR" = ( +/obj/machinery/door/airlock/engineering, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"aU" = ( +/turf/open/floor/plating/asteroid/airless/cave, +/area/space/nearstation) +"bd" = ( +/turf/open/space/basic, +/area/tcommsat/server) +"bg" = ( +/obj/machinery/door/airlock/engineering, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/science/research) +"bi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bl" = ( +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"bv" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/tcommsat/server) +"bw" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/science/research) +"bx" = ( +/obj/machinery/vending/clothing, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"by" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bW" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"bY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ce" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"ci" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"cj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"cx" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"cD" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"cG" = ( +/obj/structure/table, +/obj/item/integrated_circuit_printer, +/obj/item/gps{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cO" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"cY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"dc" = ( +/turf/closed/wall, +/area/hallway/secondary/construction) +"de" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/item/clothing/gloves/color/yellow, +/turf/open/space/basic, +/area/solars/starboard/fore) +"df" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dl" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dA" = ( +/obj/machinery/power/solar_control, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"dI" = ( +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dJ" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"dT" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/research) +"dZ" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"eb" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ei" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"ew" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"eE" = ( +/turf/closed/wall, +/area/space) +"eF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"eP" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"eQ" = ( +/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"eW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"fd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"fj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/multitool/tricorder, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"fn" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"fq" = ( +/turf/open/floor/plating/asteroid/airless/cave, +/area/command/gateway) +"fy" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"fA" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"fC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"fH" = ( +/obj/structure/closet/crate, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/hud/diagnostic, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/storage/bag/ore, +/turf/open/floor/plating, +/area/construction/storage_wing) +"fI" = ( +/turf/closed/wall/mineral/plastitanium, +/area/cargo/storage) +"fY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"gi" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"gu" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"gx" = ( +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"gD" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/engineering, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"gM" = ( +/obj/structure/closet/crate/medical, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_master, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/stasis, +/obj/item/circuitboard/machine/stasis, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/computer/operating, +/obj/item/circuitboard/computer/pandemic, +/turf/open/floor/plating, +/area/construction/storage_wing) +"gP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"gQ" = ( +/obj/machinery/pdapainter, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"gR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"gU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gV" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gX" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/space/basic, +/area/space) +"ha" = ( +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = 8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = 24; + pixel_y = -8; + req_access_txt = null + }, +/turf/open/floor/plating, +/area/cargo/storage) +"hc" = ( +/obj/item/stock_parts/subspace/transmitter, +/turf/open/space/basic, +/area/space) +"hm" = ( +/obj/item/stack/cable_coil, +/turf/open/space/basic, +/area/space) +"hA" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hH" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"hJ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"hL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/command/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/research) +"hU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ic" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ih" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"is" = ( +/obj/structure/frame/machine, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"iw" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"ix" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/research) +"iy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iD" = ( +/obj/item/card/id/departmental_budget/car, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iM" = ( +/obj/item/card/id/advanced/gold/captains_spare, +/obj/item/areaeditor/blueprints, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iP" = ( +/obj/item/gun/energy/disabler{ + pixel_y = 4 + }, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = -4 + }, +/obj/item/melee/baton/loaded, +/obj/item/assembly/flash, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs, +/obj/structure/closet/crate/secure/gear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iR" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/advanced, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating, +/area/construction/storage_wing) +"iS" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel, +/area/science/research) +"iT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iW" = ( +/obj/machinery/door/airlock/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"jd" = ( +/obj/machinery/door/airlock/external/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"je" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"jg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/science/research) +"jl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"jv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/closed/wall, +/area/science/research) +"jw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/airlock/engineering, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"jx" = ( +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"jH" = ( +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/hallway/secondary/entry) +"jR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"jY" = ( +/obj/structure/lattice, +/obj/item/construction/rcd/loaded, +/turf/open/space/basic, +/area/space) +"jZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"ka" = ( +/obj/machinery/monkey_recycler, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"kd" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 12; + height = 18; + id = "emergency_home"; + name = "NT SS13: emergency evac bay"; + width = 32 + }, +/turf/open/space/basic, +/area/space) +"ke" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/construction/storage_wing) +"kr" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"ky" = ( +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"kA" = ( +/obj/structure/closet/radiation{ + anchored = 1 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"kG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"li" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"ls" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"lz" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"lA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"lB" = ( +/obj/structure/table, +/obj/item/crowbar/large, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"lL" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"lS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"mb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"me" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/construction/rcd/loaded, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mf" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"mo" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"mp" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"mu" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"my" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/construction/storage_wing) +"mC" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/turf/open/floor/plating, +/area/construction/storage_wing) +"mG" = ( +/obj/structure/closet/crate/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/turf/open/floor/plating, +/area/construction/storage_wing) +"mL" = ( +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"mT" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"na" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"ne" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"nj" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/pickaxe/drill, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plating, +/area/construction/storage_wing) +"nl" = ( +/obj/structure/closet/crate/science, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/turf/open/floor/plating, +/area/construction/storage_wing) +"nr" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"nv" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nw" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "floorscorched2" + }, +/area/space) +"nC" = ( +/obj/item/circuitboard/machine/techfab/department/service, +/obj/item/circuitboard/machine/techfab/department/security, +/obj/item/circuitboard/machine/techfab/department/science, +/obj/item/circuitboard/machine/techfab/department/medical, +/obj/item/circuitboard/machine/techfab/department/engineering, +/obj/item/circuitboard/machine/techfab/department/cargo, +/obj/structure/closet/crate/science, +/obj/item/circuitboard/machine/circuit_imprinter, +/obj/item/circuitboard/machine/circuit_imprinter, +/obj/item/circuitboard/machine/mechfab, +/obj/item/circuitboard/machine/mechfab/med, +/obj/item/circuitboard/machine/mechfab/engi, +/obj/item/circuitboard/machine/mechfab/sci, +/obj/item/circuitboard/machine/mechfab/cargo, +/obj/item/circuitboard/machine/mechfab/sb, +/obj/item/circuitboard/machine/techfab, +/obj/item/circuitboard/machine/techfab, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/construction/storage_wing) +"nL" = ( +/obj/structure/closet/crate/engineering, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/screwdriver/power, +/obj/item/screwdriver/power, +/obj/item/weldingtool/experimental, +/obj/item/weldingtool/experimental, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/obj/item/construction/rcd/arcd, +/obj/item/multitool/tricorder, +/obj/item/multitool/tricorder, +/turf/open/floor/plating, +/area/construction/storage_wing) +"nO" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/research) +"nS" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"nW" = ( +/turf/closed/wall, +/area/mine/lobby) +"nZ" = ( +/mob/living/simple_animal/hostile/asteroid/goldgrub, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"od" = ( +/obj/structure/table, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/regular{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"om" = ( +/turf/closed/wall/r_wall, +/area/mine/lobby) +"ov" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oA" = ( +/obj/structure/closet/crate/engineering, +/obj/item/construction/rcd/loaded, +/obj/item/construction/rcd/loaded, +/obj/item/crowbar/power, +/obj/item/crowbar/power, +/obj/item/screwdriver/power, +/obj/item/screwdriver/power, +/obj/item/weldingtool/experimental, +/obj/item/weldingtool/experimental, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/item/rcd_ammo/large, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/construction/rcd/arcd, +/obj/item/multitool/tricorder, +/obj/item/multitool/tricorder, +/turf/open/floor/plating, +/area/construction/storage_wing) +"oJ" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"oM" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/mine/lobby) +"oO" = ( +/turf/open/floor/circuit/green, +/area/mine/lobby) +"oU" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"oV" = ( +/turf/closed/wall, +/area/engineering/storage_shared) +"pd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/mine/lobby) +"pf" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/window/brigdoor/southleft, +/obj/item/folder/documents{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pr" = ( +/obj/item/circuitboard/machine/telecomms/hub, +/turf/open/space/basic, +/area/space) +"pD" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/mine/lobby) +"pJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"pM" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"pQ" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"pT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/ore_box, +/turf/open/floor/plasteel, +/area/mine/lobby) +"qa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"qh" = ( +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"qk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solars/starboard/fore) +"qp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/storage/toolbox/electrical{ + pixel_y = -13 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"qq" = ( +/obj/structure/table/reinforced, +/obj/item/circuitboard/machine/autolathe, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"qt" = ( +/obj/machinery/autolathe/hacked, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"qw" = ( +/obj/effect/spawner/structure/window/shuttle, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"qD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qE" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/bag/chemistry, +/obj/item/storage/bag/bio, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plating, +/area/construction/storage_wing) +"qN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"qR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plating, +/area/construction/storage_wing) +"qS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"qT" = ( +/obj/machinery/door/airlock/vault{ + req_access_txt = "20" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"qW" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/seven, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"rf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rk" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"rq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rt" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ru" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"rx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/structure/cable, +/obj/structure/table, +/obj/item/pizzabox/meat, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"rC" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/closed/wall/mineral/titanium/nodiagonal, +/area/hallway/secondary/entry) +"rI" = ( +/obj/machinery/door/airlock/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"rL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rX" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/mine/lobby) +"rY" = ( +/turf/open/floor/plasteel, +/area/mine/lobby) +"sa" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/turf/open/floor/plating, +/area/science/research) +"sh" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/science/research) +"sl" = ( +/obj/machinery/computer/rdconsole, +/turf/open/floor/plasteel, +/area/science/research) +"sq" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"sz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"sD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"sL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"sQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"sU" = ( +/obj/item/stock_parts/subspace/crystal, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"sV" = ( +/obj/machinery/door/airlock/engineering, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"ta" = ( +/obj/structure/closet/supplypod, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space) +"tb" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"ti" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"tn" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"tt" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/space/basic, +/area/space) +"tF" = ( +/obj/structure/closet/firecloset/full{ + anchored = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tH" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tS" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"tT" = ( +/obj/item/stock_parts/micro_laser, +/turf/open/space/basic, +/area/space) +"uf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"ug" = ( +/obj/structure/safe, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/spacecash/c500, +/obj/machinery/light/small, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/mine/lobby) +"um" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pickaxe/mini, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/tools{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"ux" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uC" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/rods{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"vf" = ( +/obj/item/circuitboard/machine/telecomms/bus, +/turf/open/space/basic, +/area/space) +"vm" = ( +/mob/living/simple_animal/hostile/asteroid/goliath, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"vp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/gps/mining, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vI" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/item/disk/nuclear, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vO" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"vQ" = ( +/obj/item/stock_parts/subspace/treatment, +/turf/open/space/basic, +/area/tcommsat/server) +"wf" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wq" = ( +/turf/open/floor/plasteel/airless{ + icon_state = "floorscorched1" + }, +/area/space) +"wt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wB" = ( +/turf/open/floor/plasteel/airless, +/area/space) +"wD" = ( +/obj/item/stock_parts/subspace/filter, +/turf/open/space/basic, +/area/space) +"wH" = ( +/turf/open/floor/plating, +/area/construction/storage_wing) +"wM" = ( +/obj/machinery/mineral/ore_redemption, +/obj/machinery/door/window/brigdoor/northleft, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wN" = ( +/obj/machinery/vendor/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"wO" = ( +/obj/machinery/door/airlock/mining, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"wU" = ( +/obj/structure/table/reinforced, +/obj/item/slime_scanner, +/obj/item/storage/bag/bio, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wW" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/gravity_generator/main, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wZ" = ( +/obj/structure/lattice, +/turf/closed/mineral, +/area/mine/unexplored) +"xr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"xO" = ( +/obj/item/computer_disk{ + pixel_x = 8; + pixel_y = -10; + + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space) +"xP" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/mine/lobby) +"xQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"xT" = ( +/turf/open/floor/plating, +/area/mine/lobby) +"xX" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"yc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/plasteel, +/area/science/research) +"yd" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"ye" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yo" = ( +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plating, +/area/tcommsat/server) +"yr" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"yt" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"yy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"yE" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yI" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/mine/lobby) +"yP" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/structure/frame/machine, +/turf/open/floor/plasteel, +/area/science/research) +"za" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/research) +"zc" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/starboard/fore) +"ze" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"zj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/cargo/storage) +"zo" = ( +/obj/item/circuitboard/machine/telecomms/server, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"zs" = ( +/obj/structure/sign/poster/contraband/free_drone{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"zC" = ( +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"zD" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"zI" = ( +/obj/machinery/rnd/server, +/turf/open/floor/plasteel/dark, +/area/science/research) +"zK" = ( +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"zP" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/start/captain, +/obj/effect/landmark/latejoin, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"zS" = ( +/turf/open/space/basic, +/area/solars/starboard/fore) +"Ah" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"Al" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Au" = ( +/turf/closed/wall, +/area/construction/storage_wing) +"Av" = ( +/obj/structure/frame/machine, +/turf/open/floor/plasteel, +/area/science/research) +"Aw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/science/research) +"Ay" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"AA" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"AB" = ( +/obj/structure/cable, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"AD" = ( +/obj/structure/lattice, +/obj/item/solar_assembly, +/turf/open/space/basic, +/area/space) +"AE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"AF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"AG" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"AH" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"AJ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"AQ" = ( +/obj/item/multitool, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"AS" = ( +/turf/open/floor/plasteel, +/area/science/research) +"Bb" = ( +/obj/structure/table, +/obj/item/pizzabox/meat, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"Bd" = ( +/obj/machinery/door/airlock/public/glass{ + welded = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"Bh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Bj" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Bl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Bm" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/dark, +/area/science/research) +"Bq" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plating, +/area/science/research) +"Bs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/science/research) +"BB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BE" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/research) +"BF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/mine/lobby) +"BH" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/structure/cable, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"BM" = ( +/turf/open/floor/plating/airless, +/area/space) +"BN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"BU" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"BV" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"BW" = ( +/obj/machinery/door/window/brigdoor/southleft, +/obj/machinery/door/poddoor/preopen{ + id = "xeno"; + name = "Creature Cell" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"BX" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"BY" = ( +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"BZ" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"Ca" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Cc" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"Cf" = ( +/obj/item/stack/sheet/glass, +/turf/open/space/basic, +/area/space) +"Cj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/science/research) +"Cm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"Cs" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/science/research) +"Cw" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Cy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/research) +"Cz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/layer2, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/science/research) +"CB" = ( +/turf/closed/wall, +/area/science/research) +"CI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"CJ" = ( +/obj/structure/rack, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers, +/turf/open/floor/plating, +/area/mine/lobby) +"CK" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"CL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/layer4{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless/cave, +/area/science/xenobiology) +"CU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"CX" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"De" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Dj" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"Dl" = ( +/obj/machinery/door/airlock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"Dm" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"Dp" = ( +/obj/item/stock_parts/subspace/ansible, +/turf/open/space/basic, +/area/space) +"Dz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"DC" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/cargo/storage) +"DF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plating, +/area/mine/lobby) +"DI" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"DL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DV" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"DW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"Ea" = ( +/obj/item/stock_parts/micro_laser, +/turf/open/floor/plating, +/area/tcommsat/server) +"Eh" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"Ei" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Er" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"Eu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"EA" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"EB" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/multitool, +/obj/item/wirecutters, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"EE" = ( +/obj/structure/lattice/catwalk, +/obj/item/clothing/gloves/color/yellow, +/turf/open/space/basic, +/area/solars/starboard/fore) +"EG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel, +/area/cargo/storage) +"EO" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"ET" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"EZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"Fe" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/mine/lobby) +"Ff" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Fg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Ft" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"FE" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"FG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FK" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"FU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"FV" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"FY" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"Gc" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gk" = ( +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Gm" = ( +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Gt" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/construction/storage_wing) +"GA" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/clothing/gloves/color/fyellow/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"GK" = ( +/turf/closed/wall, +/area/tcommsat/server) +"GO" = ( +/obj/machinery/suit_storage_unit, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"GP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/research) +"GU" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/plasteel/dark, +/area/science/research) +"GY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/mine/lobby) +"Ha" = ( +/obj/machinery/door/airlock/medical/glass, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"He" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hh" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Hm" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Hn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"HC" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/obj/machinery/power/floodlight{ + anchored = 1 + }, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"HE" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"HH" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"HL" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"HM" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"HP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HS" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"HT" = ( +/turf/closed/mineral/random, +/area/mine/unexplored) +"HU" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"HW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen/double, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ia" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/clothing/under/rank/cargo/miner{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/under/rank/cargo/miner{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/clothing/under/rank/cargo/miner, +/obj/structure/table, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ib" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/space/basic, +/area/mine/lobby) +"Ic" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/airless, +/area/space) +"Ih" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/turf/open/space/basic, +/area/mine/unexplored) +"Ij" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"Ik" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/space/basic, +/area/mine/lobby) +"Ir" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/research) +"Is" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Iu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plating, +/area/science/research) +"IE" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IF" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IK" = ( +/obj/structure/table, +/obj/item/pickaxe, +/obj/item/pickaxe{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/obj/item/storage/bag/ore, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"IR" = ( +/obj/structure/table, +/obj/item/gun/energy/kinetic_accelerator, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2, +/turf/open/floor/plasteel, +/area/mine/lobby) +"IV" = ( +/obj/machinery/door/airlock/science/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"IW" = ( +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"IY" = ( +/obj/structure/sign/departments/medbay{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"Ja" = ( +/turf/closed/mineral, +/area/mine/unexplored) +"Jd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"Ji" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Jk" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/mine/lobby) +"Jo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Jy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JF" = ( +/turf/closed/wall, +/area/cargo/exploration_prep) +"JG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JM" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/fireaxecabinet{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"JQ" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/cargo/storage) +"JZ" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Kd" = ( +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"Kj" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ko" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Kp" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -23 + }, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"Kq" = ( +/obj/machinery/suit_storage_unit/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"Kw" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Ky" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/science/research) +"KH" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"KJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"KM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"KW" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"KZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Lm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Lo" = ( +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"Lu" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"LD" = ( +/turf/open/floor/plating, +/area/science/research) +"LF" = ( +/obj/machinery/computer/gateway_control, +/turf/open/floor/plating, +/area/command/gateway) +"LK" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_y = 32 + }, +/obj/effect/turf_decal/sand, +/turf/open/floor/plating, +/area/mine/lobby) +"LL" = ( +/obj/effect/turf_decal/sand, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/mine/lobby) +"Mg" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"Mm" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"MA" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = -32 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"MH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/mine/lobby) +"MK" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/space/basic, +/area/mine/lobby) +"ML" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/turf/open/space/basic, +/area/mine/unexplored) +"MO" = ( +/obj/structure/frame, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"MZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/space/basic, +/area/mine/lobby) +"Nc" = ( +/obj/structure/ore_box, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Nd" = ( +/obj/structure/table, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/kitchen/knife/combat/survival{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/kitchen/knife/combat/survival, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Nh" = ( +/obj/structure/ore_box, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Nz" = ( +/turf/open/floor/plating, +/area/cargo/storage) +"NF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"NL" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel, +/area/cargo/storage) +"NO" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/mine/lobby) +"NY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Ol" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/research) +"On" = ( +/obj/machinery/vendor/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Or" = ( +/turf/closed/mineral/random, +/area/command/gateway) +"Ov" = ( +/obj/structure/table, +/obj/item/flashlight/seclite{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/flashlight/seclite{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/mine/lobby) +"Ow" = ( +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/tcommsat/computer) +"OD" = ( +/turf/open/floor/plasteel, +/area/command/gateway) +"OE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"OG" = ( +/turf/open/floor/plating, +/area/command/gateway) +"OK" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"OO" = ( +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/tiled, +/area/hallway/secondary/entry) +"OT" = ( +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel, +/area/mine/lobby) +"OU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"OW" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"Pp" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Pq" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/plating, +/area/command/gateway) +"Pv" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/start/security_officer, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"Pw" = ( +/obj/structure/frame/machine, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"Py" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/closed/wall, +/area/science/xenobiology) +"PB" = ( +/obj/item/circuitboard/machine/telecomms/broadcaster, +/turf/open/space/basic, +/area/tcommsat/server) +"PE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/mine/lobby) +"PH" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = -32 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/sand, +/obj/structure/cable, +/turf/open/floor/plating, +/area/mine/lobby) +"PJ" = ( +/obj/structure/cable, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"PL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"PR" = ( +/obj/item/shard, +/turf/open/space/basic, +/area/space) +"Qc" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01"; + luminosity = 2 + }, +/area/command/gateway) +"Ql" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/command/gateway) +"Qr" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/lobby) +"QD" = ( +/obj/item/circuitboard/machine/telecomms/processor, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"QH" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"QL" = ( +/obj/machinery/door/airlock/external, +/obj/effect/turf_decal/sand, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/mine/lobby) +"QN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/research) +"QS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/mine/unexplored) +"QU" = ( +/obj/item/flashlight, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"QX" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"Rf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"Rl" = ( +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/unexplored) +"Rr" = ( +/obj/structure/sign/poster/official/no_erp{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/sand, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/mine/lobby) +"Rt" = ( +/obj/item/pickaxe/mini, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Rz" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"RB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"RL" = ( +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"RO" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"RU" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"RX" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"RY" = ( +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 10 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 10; + pixel_y = -6 + }, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Si" = ( +/obj/machinery/door/airlock/command/glass, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"Sk" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Sl" = ( +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Sv" = ( +/obj/item/clothing/mask/breath{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"Sx" = ( +/obj/item/stock_parts/subspace/filter, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"Sz" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"SC" = ( +/turf/closed/wall, +/area/science/xenobiology) +"SJ" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"SK" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"SP" = ( +/obj/structure/frame/machine, +/turf/open/space/basic, +/area/space) +"SR" = ( +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/cargo/exploration_prep) +"ST" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = -32 + }, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Td" = ( +/obj/machinery/atmospherics/miner/plasma, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Te" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/machinery/door/poddoor/preopen{ + id = "xeno"; + name = "Creature Cell" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Tn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"To" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"Tw" = ( +/obj/item/circuitboard/machine/telecomms/receiver, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"TF" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"TG" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/exploration_mission) +"TI" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/mine/unexplored) +"TP" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2, +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"TR" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/xenobiology) +"TU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"TV" = ( +/obj/item/stock_parts/subspace/amplifier, +/turf/open/space/basic, +/area/space) +"TW" = ( +/turf/open/space/basic, +/area/mine/unexplored) +"TZ" = ( +/obj/machinery/power/solar, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"Ua" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 2; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"Uo" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Uu" = ( +/obj/item/pickaxe/mini, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"Uy" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 8 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/landmark/latejoin, +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/secondary/entry) +"UB" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"UC" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"UT" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/turf/open/floor/plating/asteroid/airless/cave, +/area/mine/unexplored) +"UU" = ( +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/tcommsat/server) +"UV" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"UZ" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/xenobiology) +"Va" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Vc" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Vl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Vq" = ( +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Vr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Vw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Vx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"VB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/machinery/button/door{ + id = "xeno"; + name = "Containment Control"; + pixel_x = 23; + req_access_txt = "55" + }, +/obj/item/slimepotion/slime/sentience, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"VF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/exploration_prep) +"VI" = ( +/obj/vehicle/ridden/wheelchair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"VQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"VS" = ( +/obj/machinery/door/window/brigdoor/southleft, +/obj/machinery/door/poddoor/preopen{ + id = "xeno"; + name = "Creature Cell" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"VZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Wa" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"Wd" = ( +/obj/item/stack/sheet/glass, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Wy" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"WD" = ( +/turf/open/floor/plating, +/area/tcommsat/server) +"WJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"WL" = ( +/obj/item/circuitboard/computer/comm_server, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"WQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"WU" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"WY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Xh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Xi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Xp" = ( +/obj/machinery/door/airlock/science/glass, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Xu" = ( +/obj/item/circuitboard/computer/message_monitor, +/obj/item/stack/sheet/glass, +/turf/open/floor/plating/airless, +/area/space) +"XL" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"XN" = ( +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating/airless, +/area/space) +"XX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Yb" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/science/research) +"Yc" = ( +/turf/open/space/basic, +/area/space) +"Yd" = ( +/obj/machinery/light, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Yn" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Yq" = ( +/obj/item/stack/cable_coil/cut, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"Yu" = ( +/turf/closed/wall, +/area/command/gateway) +"YA" = ( +/obj/machinery/door/airlock/external, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/research) +"YD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"YE" = ( +/obj/vehicle/ridden/wheelchair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"YI" = ( +/obj/machinery/light, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"YJ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"YL" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/mineral/plastitanium, +/area/cargo/storage) +"YQ" = ( +/obj/item/solar_assembly, +/turf/open/space/basic, +/area/space) +"YT" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"YV" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"YW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Zh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"Zj" = ( +/obj/structure/table/reinforced, +/obj/item/gps{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/gps{ + pixel_x = -5; + pixel_y = 11 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"Zr" = ( +/turf/closed/wall, +/area/tcommsat/computer) +"ZD" = ( +/obj/item/clothing/suit/space/orange, +/obj/item/clothing/head/helmet/space/orange, +/obj/item/tank/internals/oxygen/yellow, +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZG" = ( +/obj/item/gps, +/obj/structure/table/reinforced, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio"; + pixel_y = 15 + }, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"ZI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZK" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZM" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZS" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"ZT" = ( +/obj/machinery/door/airlock/command, +/turf/open/floor/plating/airless, +/area/tcommsat/computer) +"ZU" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZV" = ( +/turf/open/floor/plating/asteroid/airless, +/area/mine/unexplored) +"ZY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ZZ" = ( +/obj/machinery/atmospherics/components/trinary/filter/layer4, +/turf/open/floor/plasteel, +/area/science/xenobiology) + +(1,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(2,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(3,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(4,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(5,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(6,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(7,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(8,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(9,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(10,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(11,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(12,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(13,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +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 +"} +(14,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +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 +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 +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 +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 +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 +"} +(15,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +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 +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 +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 +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 +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 +"} +(16,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(17,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(18,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(19,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(20,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(21,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(22,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(23,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(24,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(25,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +kd +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(26,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +iy +ke +iy +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(27,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +iy +wH +iy +Cw +Cw +Cw +am +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(28,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Au +wH +iy +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(29,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Au +kr +iy +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YQ +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 +Yc +"} +(30,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Yc +Cw +Yc +Yc +Cw +Cw +Au +wH +Au +Yc +Yc +Yc +Yc +mp +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Ij +Yc +Cw +Yc +Yc +Yc +Cw +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 +Yc +Yc +"} +(31,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Au +Au +Au +Au +wH +Au +Au +CB +CB +CB +jv +YA +JF +JF +JF +JF +JF +Yc +Cw +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 +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 +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 +Yc +Cw +Cw +Cw +YQ +Ij +Yc +Cw +Yc +Yc +YQ +Cw +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 +Yc +Yc +"} +(32,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Cw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Au +fA +qE +iD +wH +my +Au +Cs +ao +Ir +Iu +LD +JF +EZ +Cm +RL +TU +Yc +Cw +Cw +am +Cw +Cw +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 +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 +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 +YQ +Ij +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(33,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +ap +ap +eb +fj +bi +gU +hL +ap +mL +mL +mL +mL +ap +nj +gM +iM +wH +mC +Au +Cs +ao +Ir +Iu +LD +JF +TG +AF +Hn +TP +Cw +Cw +Yc +Cw +Cw +Cw +RU +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 +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 +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 +AD +Ij +Cw +Cw +Yc +Yc +Cw +Cw +Cw +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 +Yc +"} +(34,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +ap +fl +fC +hA +aL +gV +hU +jd +pJ +lS +cX +dE +nr +qN +qN +iP +wH +mC +Au +Cs +Bs +GP +BE +LD +JF +YV +KJ +VF +TU +Yc +Cw +Cw +Cw +Cw +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 +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 +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 +Yc +Cw +Ij +Cw +Yc +YQ +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 +Yc +Yc +Yc +Yc +Yc +"} +(35,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +am +ap +as +fC +aL +bl +wW +ic +ap +ce +cz +cY +mT +ap +fH +wH +iR +wH +mG +Au +Cy +Cc +Iu +nO +Yb +JF +Kq +ky +fY +JF +Cw +Cw +Cw +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 +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 +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 +Yc +Yc +Yc +Cw +Ij +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(36,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +ap +me +fC +gV +aL +hA +ic +ap +ci +mT +ci +mT +ap +oA +qR +sL +kG +nl +Au +Cz +Cj +QX +Iu +Bq +JF +Kq +ky +fY +JF +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Cw +Ij +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(37,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +ap +ap +AE +aM +bu +hD +bY +ap +kA +cD +mu +na +ap +nL +Gt +sQ +wH +nC +Au +Cz +CI +CI +jg +sa +JF +wN +ky +fY +JF +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Ij +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(38,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +jH +jH +qw +qw +qw +qw +jH +rC +Cw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Au +Au +sV +Au +Au +CB +CB +CB +CB +za +CB +JF +JF +SR +Ah +JF +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(39,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jH +jH +ET +ET +xX +ET +ET +ET +jH +AH +AH +AH +gu +bx +ru +RX +RX +tb +zK +dc +CX +oU +Dj +gP +ti +Dj +Dj +CB +sh +Eh +To +QN +Ol +Ol +Ol +Ol +PL +CB +Yc +Yc +Cw +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 +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 +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 +Wd +Yc +Yc +Cw +Yc +Yc +Zr +QH +Zr +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(40,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +qw +Pv +Kd +sD +Kd +Kd +Kd +pM +jH +FV +sq +AH +aN +Dj +Dj +Dj +Dj +Dj +Dj +dc +aN +Dj +gx +Dj +ti +li +Dj +Ay +Ky +Er +KM +PL +uf +uf +uf +uf +Lo +CB +Yc +Yc +Cw +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 +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 +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 +Cw +Cw +Cw +Cw +Cw +Cw +Zr +Zr +zC +Zr +Yc +Yc +GK +GK +GK +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 +Yc +Yc +"} +(41,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jH +zP +AB +eF +lO +at +at +at +eQ +by +by +ih +cj +cj +rx +rx +rx +cj +xM +Dl +xM +xM +xM +xM +tn +ls +xM +IV +KM +KM +AS +AS +dT +CB +yc +NF +oJ +CB +Yc +Yc +Cw +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 +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 +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 +Cw +WL +Cw +Cw +Cw +eE +Zr +ZG +zC +Zr +Yc +Yc +GK +Pw +GK +GK +GK +GK +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 +"} +(42,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +qw +Pv +Kd +Kd +OR +Kd +Kd +pM +jH +YE +VI +AH +Dj +Dj +Bb +pQ +Bb +Dj +Dj +dc +Dm +Dj +Dj +Dj +ti +lA +Dj +Ay +sl +Eu +AS +AS +bw +CB +CB +hS +CB +CB +Yc +Yc +Cw +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 +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 +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 +BM +Cw +Cw +Xu +XN +YT +Zr +FY +zC +Zr +GK +GK +GK +Tw +Sx +QD +MO +GK +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 +"} +(43,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jH +jH +Uy +BX +Pp +BX +BX +BX +jH +AH +AH +AH +dc +bW +bW +bW +bW +bW +oV +oV +oV +oV +Dj +Dj +ti +lB +od +CB +yP +AS +AS +AS +iS +CB +Ua +Tn +OE +CB +Yc +Yc +Cw +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 +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 +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 +BM +WU +Cw +Yq +BM +ZT +zC +zC +Ow +WD +Ea +Si +cx +WD +yo +bv +GK +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 +"} +(44,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +jH +jH +qw +qw +qw +qw +jH +rC +Cw +Cw +Cw +dc +dc +Zh +Zh +Zh +dc +oV +GO +GO +oV +oV +oV +iW +oV +oV +CB +Av +AS +AS +AS +cG +CB +GU +Bm +zI +CB +Yc +Yc +Cw +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 +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 +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 +Cw +BM +BM +Zr +ZS +FY +Zr +GK +GK +GK +AQ +sU +zo +is +GK +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 +"} +(45,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Yc +oV +dI +dI +ei +oV +gQ +je +dI +qh +CB +Aw +AS +ix +CB +CB +CB +CB +CB +CB +CB +Yc +Yc +Cw +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 +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 +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 +eE +eE +eE +Zr +gi +zC +Zr +Yc +Yc +GK +UU +bd +GK +GK +GK +tT +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 +"} +(46,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Yc +oV +oV +dC +dC +dC +oV +oV +df +Dz +eW +gD +eW +je +dI +qq +CB +AS +AS +AS +CB +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Zr +Zr +zC +Zr +Yc +Yc +GK +PB +vQ +PR +wD +Yc +hm +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 +"} +(47,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +Yc +oV +Zj +dI +ne +ne +ne +oV +dl +dx +fi +oV +dI +je +dI +qt +CB +AS +AS +AS +CB +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Zr +QH +Zr +Yc +Yc +Yc +SP +Yc +TV +vf +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 +"} +(48,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +Yc +oV +IL +FM +dx +dx +dx +aR +dx +dx +fn +oV +gR +jl +mb +dI +bg +AS +AS +AS +CB +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TV +tt +Yc +SP +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 +"} +(49,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +Yc +oV +uC +jZ +ne +ne +Kp +oV +dA +dJ +fy +oV +dI +je +dI +qW +CB +Bd +CB +Bd +CB +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +pr +Yc +Yc +hc +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 +"} +(50,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +Yc +oV +oV +dC +dC +dC +oV +oV +dC +dZ +dC +oV +hH +je +dI +qW +oV +BM +BM +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +Cw +Yc +Yc +Yc +Yc +Yc +Dp +Yc +Yc +tt +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 +"} +(51,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +qk +zc +oV +hJ +je +dI +rk +oV +BM +Cw +jY +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Ij +Cw +Yc +Yc +Yc +Yc +Dp +Yc +Cf +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 +"} +(52,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +zc +Yc +oV +hJ +je +mf +oV +oV +Yc +Cw +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +am +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 +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 +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 +Yc +Yc +Yc +Yc +Ij +Yc +YQ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +PR +Yc +tt +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 +"} +(53,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +zc +Cw +oV +oV +jw +oV +oV +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Cw +Cw +Yc +Cw +Ij +Yc +Yc +Cw +Cw +Yc +Yc +Yc +Yc +SP +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 +"} +(54,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +zc +Cw +oV +BH +je +XL +oV +Yc +Yc +Cw +Cw +Cw +Cw +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +YQ +Yc +Cw +Ij +Yc +Yc +YQ +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 +Yc +Yc +Yc +Yc +Yc +"} +(55,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +am +zc +Yc +oV +iw +jR +XL +oV +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Cw +Cw +Ij +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +tt +Yc +wD +Yc +Yc +Yc +tt +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(56,1,1) = {" +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 +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 +Yc +Yc +Yc +Cw +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +qk +zS +qk +qk +qk +qk +qk +qk +qk +qk +qk +EE +zc +zc +zc +zc +zc +zc +zc +zc +zc +zc +Yc +oV +BH +jZ +XL +oV +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +YQ +Yc +Cw +Yc +Ij +AD +Yc +Yc +YQ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +PR +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 +"} +(57,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +qk +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Cw +Cw +Yc +Yc +oV +dC +dC +dC +oV +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Cw +Yc +Ij +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +gX +Yc +tt +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 +"} +(58,1,1) = {" +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 +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 +Yc +Yc +Cw +al +qk +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Yc +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +Cw +Cw +Cw +Yc +Cw +Cw +Cw +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +YQ +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(59,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +qk +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +Cw +Yc +Cw +Cw +Cw +Cw +Yc +Yc +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +Cw +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(60,1,1) = {" +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 +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 +Yc +Yc +Yc +Cw +qk +qk +qk +qk +qk +qk +de +qk +qk +qk +qk +zS +qk +qk +qk +qk +qk +qk +qk +qk +qk +zc +zc +zc +zc +zc +zc +zc +zc +zc +zc +zc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(61,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(62,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(63,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(64,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +TZ +TZ +TZ +TZ +qk +TZ +TZ +TZ +TZ +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +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 +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 +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 +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 +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 +"} +(65,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +Yc +Yc +Yc +Yc +Yc +Cw +Yc +qk +Yc +Cw +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(66,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +qk +qk +qk +qk +qk +qk +qk +qk +qk +Cw +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(67,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(68,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +TZ +Cw +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(69,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +Yc +TZ +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(70,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +Cw +Yc +am +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(71,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(72,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(73,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(74,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(75,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(76,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(77,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(78,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(79,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(80,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(81,1,1) = {" +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 +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 +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 +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 +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 +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 +jx +jx +jx +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(82,1,1) = {" +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 +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 +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 +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 +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 +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 +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +"} +(83,1,1) = {" +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 +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +"} +(84,1,1) = {" +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 +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(85,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(86,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +Yc +"} +(87,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +Yc +"} +(88,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +Yc +"} +(89,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +Yc +"} +(90,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +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 +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 +"} +(91,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +"} +(92,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +jx +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 +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 +"} +(93,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +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 +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 +Yc +"} +(94,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +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 +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 +Yc +Yc +Yc +Yc +"} +(95,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +jx +jx +jx +jx +jx +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(96,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +"} +(97,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +"} +(98,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +"} +(99,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +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 +"} +(100,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(101,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(102,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(103,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(104,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(105,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(106,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(107,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(108,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(109,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(110,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(111,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(112,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(113,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(114,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(115,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(116,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(117,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(118,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(119,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(120,1,1) = {" +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 +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(121,1,1) = {" +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 +ZV +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(122,1,1) = {" +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 +ZV +ZV +ZV +HT +HT +HT +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(123,1,1) = {" +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 +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(124,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(125,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(126,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(127,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +Yc +"} +(128,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +mo +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +"} +(129,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +aj +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +Yc +"} +(130,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +"} +(131,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +"} +(132,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +Yc +"} +(133,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +Yc +"} +(134,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ab +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(135,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(136,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(137,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(138,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +ZV +ZV +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(139,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +fI +CK +fI +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 +Yc +Yc +"} +(140,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +fI +KW +fI +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 +Yc +Yc +"} +(141,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +Yc +fI +fI +fI +KW +fI +fI +fI +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 +"} +(142,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +fI +fI +Va +fI +lz +fI +nv +fI +fI +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 +"} +(143,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +jx +jx +Ja +Ja +Ja +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 +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 +Yc +Yc +fI +TF +Ji +KW +KW +Nz +qD +Jo +fI +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 +"} +(144,1,1) = {" +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +Ja +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 +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 +Yc +DC +cO +lL +Nz +Nz +Nz +qD +cO +DC +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 +"} +(145,1,1) = {" +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 +ZV +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Or +Or +Yu +Yu +Yu +Yu +Yu +OG +Or +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Ja +Ja +Ja +jx +jx +Td +jx +Ja +Ja +Ja +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 +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 +Yc +DC +cO +lL +pm +NY +zj +qD +iT +DC +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 +"} +(146,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +OD +OD +Qc +OD +fq +fq +Ql +OG +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +jx +vm +jx +jx +Ja +Ja +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 +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 +Yc +fI +yr +lL +OL +Ei +xr +qD +VQ +fI +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 +"} +(147,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +OG +Pq +OD +OG +LF +fq +fq +OG +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +jx +jx +Ja +Ja +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 +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 +Yc +Yc +fI +fI +lL +Nz +ha +Nz +qD +fI +fI +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 +"} +(148,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +OG +OG +Ql +OG +OG +fq +fq +fq +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +jx +jx +Ja +Ja +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 +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 +Yc +Yc +Yc +DC +Sk +Jd +fI +Jd +yt +DC +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 +"} +(149,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yu +EO +OD +Ql +fq +Or +fq +fq +Yu +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +DC +NL +Nz +fI +Nz +EG +DC +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 +"} +(150,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +JQ +ux +RB +YL +RB +fd +JQ +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 +"} +(151,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +Ja +Ja +Ja +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 +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 +Yc +Yc +Yc +Yc +Yc +Rz +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 +Yc +Yc +Yc +Yc +"} +(152,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Ja +Ja +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(153,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +eP +ZV +ZV +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(154,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +vm +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(155,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(156,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +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 +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(157,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +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 +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(158,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +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 +eE +Yc +BM +Cw +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(159,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +eE +wB +ta +xO +BM +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(160,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +eE +BM +Ic +wB +wB +eE +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(161,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +jx +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +TW +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +nw +Ic +nw +eE +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(162,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +TW +TW +TW +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +BM +wq +eE +eE +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(163,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +TW +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(164,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +ZV +eP +ZV +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(165,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Cw +Cw +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(166,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(167,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +Ja +Ja +om +om +om +om +om +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(168,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +Ja +Ja +om +oM +oO +oM +om +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(169,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +Ja +om +oO +qS +oO +om +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(170,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +Ja +om +pd +oO +pd +om +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(171,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +Ja +om +om +qT +om +om +nW +nW +nW +nW +nW +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(172,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +rf +nW +Ja +nW +AA +CJ +EB +GA +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +TW +TW +TW +TW +ZV +ZV +ZV +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +Yc +"} +(173,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +om +rq +nW +nW +nW +AG +CU +Fe +CU +HH +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +Yc +Yc +Yc +"} +(174,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +pf +rq +tS +nW +xP +AG +GG +Ff +GG +HL +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +ZV +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(175,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +Ja +Ja +om +om +rq +ug +nW +xQ +AJ +De +Fg +GH +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +ZV +Ja +Ja +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(176,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +nW +rf +nW +nW +xT +Bh +DF +Ft +GY +HM +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +Ja +jx +Ja +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(177,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +nW +rI +nW +nW +nW +nW +nW +FE +nW +nW +nW +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +TW +TW +TW +TW +ZV +Ja +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(178,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pj +rL +um +nW +yd +Bj +DI +FG +Ha +HP +IW +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +Ja +jx +RO +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(179,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pl +rN +vp +nW +ye +Bl +nW +FK +BF +HQ +IY +nW +Ja +Ja +Ja +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +Ja +Ja +TW +TW +ZV +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(180,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pD +rX +vI +nW +yE +BB +nW +FU +BF +HS +Jk +nW +Ja +Ja +Ja +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TW +ZV +jx +jx +jx +jx +jx +jx +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(181,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pH +rY +vO +nW +nW +BF +nW +Gc +nW +nW +nW +nW +nW +nW +Ja +HT +HT +Rt +ZV +TW +TW +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +jx +jx +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(182,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +nW +pT +rX +wf +wM +yI +BB +DL +FU +He +BB +rY +rY +OK +nW +Ja +HT +QU +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +Ja +jx +jx +Ja +Ja +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(183,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +Ja +Ja +nW +qa +sr +wp +wO +ze +BN +DP +Gf +Hg +Hg +Jy +Mm +OO +PE +Qr +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(184,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +Ja +Ja +nW +qp +sz +wt +nW +zs +BQ +DV +BQ +Hh +HU +JA +rY +OT +nW +Ja +ZV +ab +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +ZV +ZV +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(185,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +Ja +Ja +nW +nW +nW +nW +nW +nW +BU +nW +Gk +nW +HW +JE +MA +nW +nW +nW +nW +Rf +TI +TI +TI +TI +TI +TI +TI +TI +TI +ZV +ZV +ZV +jx +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(186,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +jx +jx +jx +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +nW +BV +nW +nW +nW +Ia +JG +MH +OW +PH +BY +QL +Rl +TI +TW +TI +TW +TW +TW +TW +TW +ZV +ZV +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +"} +(187,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +jx +jx +jx +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +nW +BY +nW +Ja +nW +nW +JH +nW +nW +nW +nW +nW +Rr +TI +TW +TI +TI +TI +TI +TI +TI +ZV +Ja +Ja +Ja +Ja +Ja +jx +jx +jx +Ja +Ja +Ja +Ja +Sv +ZV +ZV +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(188,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +jx +jx +jx +Ja +Ja +Ja +Ja +Ja +Ja +Ja +nW +BZ +nW +Ja +Al +nW +JM +nW +Ca +PJ +PJ +QS +QS +wZ +wZ +TI +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +Ja +Ja +RY +Sz +jx +ZV +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +Yc +"} +(189,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +ew +jx +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +zD +Ca +DW +Gm +Ca +nW +JO +nW +Ca +TI +TI +TI +wZ +wZ +Ja +wZ +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +jx +Sl +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +"} +(190,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +jx +jx +jx +jx +nZ +jx +jx +jx +jx +Al +Al +Al +jx +Ca +Ib +JZ +MK +Hm +TW +TW +TW +TW +wZ +Ja +wZ +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +Yc +"} +(191,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +aj +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +Ca +Ih +JZ +ML +Hm +TW +TW +TW +TW +TI +TW +TI +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +Yc +"} +(192,1,1) = {" +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +jx +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +Hm +Ih +JZ +ML +Hm +TI +TI +TI +TI +TI +TI +TI +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(193,1,1) = {" +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HC +Ih +JZ +ML +HC +TW +TW +wZ +TW +TW +TW +TI +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(194,1,1) = {" +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +Hm +Ih +JZ +ML +Hm +TW +Ja +wZ +Ja +Ja +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(195,1,1) = {" +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +Hm +Ih +JZ +ML +Hm +TW +Ja +wZ +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +Yc +"} +(196,1,1) = {" +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 +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +TW +Hm +Ih +JZ +ML +Hm +TW +TW +wZ +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +"} +(197,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +SC +SC +SC +SC +SC +SC +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +Yc +"} +(198,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TI +TW +TW +TI +TI +TI +Hm +Ih +JZ +ML +Hm +TI +TI +TI +TI +TI +TI +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +SC +Vl +Vl +ZM +ZM +SC +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(199,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TI +TW +TW +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +SC +Kw +Vl +ZU +YJ +SC +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(200,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TI +TW +TW +TI +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +SC +Vr +WJ +ZY +DJ +SC +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(201,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TI +TI +TI +wZ +TW +TW +Hm +Ih +JZ +ML +Hm +TW +TW +TI +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +SC +Vw +WQ +ZZ +ZZ +Py +CL +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(202,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TI +TW +Ja +wZ +Ja +TW +HC +Ih +JZ +ML +HC +ZV +TW +TI +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +jx +jx +SC +SC +SC +WY +SC +SC +SC +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(203,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TI +Ja +Ja +wZ +Ja +TW +HE +Ih +JZ +ML +HE +ZV +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +SC +Uo +Vx +Xh +ov +rt +SC +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(204,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TI +wZ +wZ +wZ +wZ +TI +HE +Ih +JZ +ML +HE +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +SC +UB +VB +Xi +nS +tH +SC +jx +jx +jx +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(205,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TI +TW +Ja +wZ +TW +TW +HE +Ik +JZ +MZ +Al +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +jx +SC +SC +SC +Xp +SC +SC +SC +jx +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(206,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TI +TW +TW +TI +TW +TW +Al +nW +JH +nW +Al +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +jx +jx +jx +jx +jx +jx +SC +XX +SC +jx +jx +jx +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(207,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TI +TW +TW +TI +TW +TW +Al +nW +Kj +nW +Al +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +SC +SC +SC +SC +SC +jx +SC +Yd +SC +jx +SC +SC +SC +SC +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(208,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TI +TW +TW +TI +TI +TI +nW +nW +Ko +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +SC +SJ +SK +SK +SC +SC +SC +Yn +SC +SC +SC +SK +SK +SK +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(209,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +Ja +Ja +TW +TW +TI +TW +TW +TI +TW +ZV +nW +Is +JE +Nd +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +SC +SK +SK +SK +Te +UC +VS +Xi +Te +UC +BW +SK +SJ +SK +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(210,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +Yc +Yc +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TI +TW +TW +TI +TW +ZV +nW +IE +KH +Nh +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +SC +SK +SJ +SK +SC +SC +SC +YD +SC +SC +SC +SK +SK +SK +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(211,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TI +TW +TW +TI +ZV +ZV +nW +IF +KZ +NO +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +SC +SC +SC +SC +SC +UT +SC +YI +SC +aU +SC +SC +SC +SC +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(212,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TW +TI +TW +TW +TI +ZV +Ja +nW +IK +KZ +On +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +jx +jx +jx +jx +jx +jx +SC +XX +SC +aU +aU +jx +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(213,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +TW +TW +TI +TW +ZV +ZV +ZV +Ja +nW +IR +Lm +Ov +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +jx +SC +SC +SC +Xp +SC +SC +SC +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(214,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TW +TW +ZV +ZV +ZV +jx +jx +Ja +nW +nW +Lu +nW +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +SC +UV +VZ +YW +bo +tF +SC +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +"} +(215,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TW +TW +Ja +Ja +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +jx +jx +Ja +Ja +nW +LK +nW +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +ST +SC +SC +SC +ZI +yy +EA +SC +jx +jx +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(216,1,1) = {" +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 +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 +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +Ja +TW +TW +TW +ZV +ZV +ZV +HT +HT +jx +jx +jx +Ja +nW +LL +nW +Ja +Ja +HT +HT +HT +HT +HT +HT +jx +jx +aj +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +jx +jx +jx +TR +UZ +Wa +ZI +OU +ka +SC +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(217,1,1) = {" +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 +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 +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +Ja +Ja +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +jx +jx +jx +jx +nW +Mg +nW +HT +Ja +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +jx +jx +jx +jx +SC +SC +SC +ZK +Vq +wU +SC +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(218,1,1) = {" +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 +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 +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +Ja +TW +TW +TW +TW +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +jx +jx +jx +zD +Al +zD +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +Ja +jx +SC +Vc +Wy +UC +Wy +ZD +SC +jx +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(219,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +TW +TW +Ja +Ja +TW +TW +TW +TW +ZV +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +jx +jx +Al +Al +Al +jx +HT +HT +HT +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +SC +SC +SC +SC +SC +SC +SC +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(220,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +Uu +Nc +HT +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +jx +jx +jx +jx +jx +jx +jx +jx +jx +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(221,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +vm +jx +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +jx +jx +jx +jx +jx +jx +jx +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(222,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +jx +jx +jx +jx +jx +jx +jx +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +Ja +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(223,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +Ja +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(224,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +Ja +TW +TW +ZV +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(225,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +Ja +Ja +TW +TW +TW +ZV +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(226,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +ZV +ZV +TW +TW +TW +TW +TW +TW +eP +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(227,1,1) = {" +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +eP +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(228,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(229,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(230,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(231,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(232,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(233,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(234,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(235,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(236,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(237,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(238,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(239,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(240,1,1) = {" +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +HT +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 +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 +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 +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 +"} +(241,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(242,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(243,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(244,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(245,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(246,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(247,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(248,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(249,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(250,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(251,1,1) = {" +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +ae +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(252,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(253,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(254,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} +(255,1,1) = {" +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 +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 +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 +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 +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 +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 +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 +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 +Yc +Yc +Yc +Yc +Yc +Yc +Yc +"} diff --git a/_maps/stations/dawn.dmm b/_maps/stations/dawn.dmm new file mode 100644 index 000000000000..a82a9a39fd08 --- /dev/null +++ b/_maps/stations/dawn.dmm @@ -0,0 +1,83022 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/space/basic, +/area/space) +"ab" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"ac" = ( +/turf/closed/wall, +/area/science/research) +"ad" = ( +/turf/closed/wall, +/area/command) +"ae" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command) +"af" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ag" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/multitool, +/turf/open/floor/plasteel/dark, +/area/command) +"ah" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/command) +"ai" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/command) +"aj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/communications, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command) +"ak" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/dark, +/area/command) +"al" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/dark, +/area/command) +"am" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/turf/open/floor/plasteel/dark, +/area/command) +"an" = ( +/obj/structure/table/reinforced, +/obj/item/storage/lockbox/medal, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/plasteel/dark, +/area/command) +"ao" = ( +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = -32 + }, +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/turf/open/floor/plasteel/dark, +/area/command) +"ap" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"aq" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ar" = ( +/turf/open/floor/plasteel, +/area/command) +"as" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"at" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command) +"au" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command) +"av" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"aw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/command) +"ax" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"ay" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"az" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/command) +"aA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel/dark, +/area/command) +"aB" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/plasteel/dark, +/area/command) +"aD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"aE" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + dir = 6; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aF" = ( +/turf/open/floor/plasteel/white, +/area/science/research) +"aG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command) +"aH" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/turf/open/floor/plasteel/dark, +/area/command) +"aI" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/dark, +/area/command) +"aJ" = ( +/obj/machinery/smartfridge/extract, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aK" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/disk/nuclear, +/turf/open/floor/plasteel/dark, +/area/command) +"aL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command) +"aM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aN" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/exit) +"aO" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"aP" = ( +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"aQ" = ( +/turf/open/floor/plasteel/dark, +/area/command) +"aR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command) +"aS" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/assembly/flash, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"aT" = ( +/obj/structure/chair/comfy/black{ + dir = 1; + name = "Command Station" + }, +/obj/effect/landmark/start/captain, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 29; + pixel_y = 6; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/command) +"aU" = ( +/obj/structure/table/reinforced, +/obj/item/hand_tele, +/obj/item/melee/chainofcommand, +/turf/open/floor/plasteel/dark, +/area/command) +"aV" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aW" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"aY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"aZ" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command) +"ba" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bc" = ( +/turf/closed/wall, +/area/maintenance/fore) +"bd" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"be" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bf" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/fore) +"bg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"bh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command) +"bi" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall, +/area/science/xenobiology) +"bj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command) +"bk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bl" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/command) +"bm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"bn" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 11 + }, +/obj/item/reagent_containers/syringe{ + pixel_y = -1; + pixel_x = -6 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"bp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command) +"bq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"br" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"bs" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/rnd/server/master, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"bt" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio" + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"bu" = ( +/turf/closed/wall, +/area/cargo/storage) +"bv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bx" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"by" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"bz" = ( +/obj/machinery/smartfridge/organ, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"bA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"bC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command) +"bD" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"bF" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/rnd/bepis, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bG" = ( +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel, +/area/science/lab) +"bH" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"bI" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bJ" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/lab) +"bK" = ( +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/computer/shuttle_flight/mining, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/mecha_part_fabricator/cargo, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/vendor/mining, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bO" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/mineral/ore_redemption{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"bR" = ( +/turf/closed/wall, +/area/security/brig) +"bS" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + dir = 6; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bU" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"bV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"bX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bZ" = ( +/obj/structure/chair/pew/right, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"ca" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command) +"cb" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -5; + pixel_y = 1; + layer = 3.01 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 7; + pixel_y = -6; + layer = 3.02 + }, +/obj/machinery/button/door{ + id = "rnd4"; + name = "бронешторы лаборатории генетики"; + pixel_x = -32; + req_access_txt = "9"; + pixel_y = 32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"cc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/science/lab) +"cd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ce" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"cf" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"cg" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"ch" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/cargo/storage) +"ci" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/rnd/server, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"cj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ck" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"cm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"co" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs{ + layer = 3.01 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3; + layer = 3.02 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cp" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/floor/directional/north{ + pixel_y = -6 + }, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"cr" = ( +/obj/structure/bed/dogbed/ian, +/mob/living/simple_animal/pet/dog/corgi, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"cs" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"ct" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cu" = ( +/obj/effect/turf_decal/tile/purple/fourcorners, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel, +/area/science/lab) +"cv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"cx" = ( +/obj/structure/fluff/hedge, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"cy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command) +"cz" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 7; + pixel_x = 8 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -4; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cA" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"cB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"cC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cD" = ( +/turf/open/floor/plasteel, +/area/cargo/storage) +"cF" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/mecha_part_fabricator{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/command) +"cH" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/item/storage/part_replacer/stock_parts_box_x10/bin_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/manipulator_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/micro_laser_t2, +/obj/item/storage/part_replacer/stock_parts_box_x10/scanning_module_t2, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"cI" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cK" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cL" = ( +/obj/effect/landmark/start/head_of_security, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 1 + }, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/multitool, +/obj/machinery/button/door{ + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -24; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"cR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cS" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"cT" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"cU" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/science/lab) +"cV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cW" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cX" = ( +/obj/structure/cable, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"cY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cZ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"da" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"db" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"de" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/floor/directional/south{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/xenobiology) +"df" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/science/lab) +"dg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/lab) +"dh" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/lab) +"di" = ( +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/dark_red/opposingcorners{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"dj" = ( +/obj/machinery/light, +/obj/structure/sign/warning/bodysposal{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dl" = ( +/obj/machinery/door/airlock/command{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dm" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/lab) +"dn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"do" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dp" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/lab) +"dq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 5 + }, +/area/science/lab) +"dr" = ( +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/plasteel, +/area/science/lab) +"ds" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dt" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"du" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"dw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dx" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plating, +/area/maintenance/fore) +"dy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dz" = ( +/turf/open/floor/plasteel, +/area/science/research) +"dA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dB" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dC" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dD" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dE" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"dF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"dG" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/aft) +"dH" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"dJ" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"dK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"dM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"dP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dQ" = ( +/obj/machinery/mecha_part_fabricator/sci, +/turf/open/floor/plasteel, +/area/science/lab) +"dR" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"dS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dT" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/computer/piratepad_control/civilian, +/obj/machinery/camera/directional/east, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"dV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dX" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"dY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engineering/main"; + dir = 1; + name = "Engineering APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/lab) +"ea" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"ed" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/server) +"ef" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/melee/baton/loaded, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eg" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/effect/turf_decal/tile/purple/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"eh" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"ei" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"ej" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel, +/area/science/lab) +"ek" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "31" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"el" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"en" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"eo" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ep" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"eq" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/item/gun/energy/ionrifle, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"er" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/central) +"es" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"et" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eu" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -5; + pixel_y = 2; + layer = 3.02 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_y = 9; + pixel_x = 2 + }, +/obj/item/reagent_containers/dropper{ + pixel_x = 10; + pixel_y = -2; + layer = 3.01 + }, +/obj/item/disk/design_disk{ + pixel_x = 14; + pixel_y = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 3; + pixel_x = 16 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"ev" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 9; + pixel_x = 4 + }, +/obj/machinery/light, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"ew" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"ex" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"ey" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"ez" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eC" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"eD" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eE" = ( +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eF" = ( +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"eG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = 24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"eL" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eM" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/research) +"eN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"eO" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/research) +"eP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/research) +"eQ" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/sink/directional/south, +/turf/open/floor/plasteel/white, +/area/science/research) +"eS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eT" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eU" = ( +/obj/machinery/light, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/north{ + dir = 10 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"eV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"eW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eX" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fc" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"fd" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"fe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ff" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fg" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research and Development" + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"fi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"fj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"fk" = ( +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"fl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/storage/crayons, +/obj/machinery/camera{ + c_tag = "Dormitory" + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"fm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/science/research) +"fo" = ( +/obj/machinery/door/window/northleft{ + name = "Mass Driver Door" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"fp" = ( +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/server) +"fq" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"fr" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ft" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fu" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fv" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"fw" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"fx" = ( +/obj/machinery/bluespace_beacon, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"fy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/filingcabinet/security, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fz" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"fB" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"fE" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"fI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/ordnance, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/science/research) +"fJ" = ( +/obj/structure/cable, +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"fK" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"fL" = ( +/obj/machinery/light, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/science/lab) +"fM" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/closet/secure_closet/miner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fP" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"fS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fT" = ( +/obj/structure/closet/secure_closet/cytology{ + locked = 0 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"fV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fW" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fX" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"fY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"ga" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gd" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/pen{ + pixel_y = 5; + pixel_x = -4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ge" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"gg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/science/research) +"gh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/lab) +"gi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"gj" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"gk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"gl" = ( +/obj/structure/closet/l3closet, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"gm" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"gn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"go" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"gp" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gq" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"gr" = ( +/obj/structure/table, +/obj/item/storage/box/evidence, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gs" = ( +/obj/structure/table, +/obj/item/taperecorder, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/hydroponics) +"gw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"gx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = -24 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/research) +"gy" = ( +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"gz" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"gA" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "7" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gB" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gD" = ( +/obj/structure/table, +/obj/item/storage/box/handcuffs{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gE" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"gF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"gG" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall, +/area/science/research) +"gH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gI" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gJ" = ( +/obj/machinery/vending/tool, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gK" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gM" = ( +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gN" = ( +/obj/structure/table, +/obj/item/storage/firstaid, +/obj/item/multitool, +/obj/item/clothing/head/soft, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gO" = ( +/obj/structure/table, +/obj/item/storage/box/monkeycubes{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 5; + layer = 3.02 + }, +/obj/item/stack/sheet/mineral/plasma/five{ + pixel_x = -7; + pixel_y = -1; + layer = 3.01 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/extinguisher{ + pixel_y = 13; + pixel_x = 7 + }, +/obj/item/extinguisher{ + pixel_y = 13; + pixel_x = 7 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gP" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law{ + pixel_y = 10; + pixel_x = -17 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gR" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"gS" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"gT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gU" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/obj/item/camera/detective, +/obj/item/taperecorder, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gV" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gW" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"gX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gY" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"ha" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"hd" = ( +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"he" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hf" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hg" = ( +/obj/structure/table/reinforced, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hh" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hi" = ( +/obj/structure/sign/poster/official/safety_eye_protection, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"hj" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"hk" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"hl" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"hm" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"hn" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"ho" = ( +/obj/structure/table, +/obj/machinery/oven{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"hp" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hq" = ( +/obj/structure/chair, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"hs" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ht" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"hu" = ( +/turf/open/floor/plasteel/dark/side, +/area/science/lab) +"hv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hw" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hx" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"hz" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/airlock_sensor/incinerator_ordmix, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"hA" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"hB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"hC" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"hD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"hE" = ( +/turf/closed/wall, +/area/medical/pharmacy) +"hG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera/directional/east{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"hH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hI" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/detective, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/security/detectives_office) +"hJ" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/carpet, +/area/security/detectives_office) +"hK" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hM" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hN" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"hO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"hP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hQ" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hS" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"hT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/shower/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"hU" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"hV" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"hW" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"hX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hY" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"ia" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/turf/open/floor/engine, +/area/science/mixing) +"ib" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/science/mixing) +"ic" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"id" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior, +/turf/open/floor/engine, +/area/science/mixing) +"ie" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"if" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ig" = ( +/turf/closed/wall, +/area/medical/storage) +"ih" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ii" = ( +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"ij" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ik" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/science/research) +"il" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"im" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"in" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"io" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "toxins" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"ip" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"ir" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"is" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"it" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"iu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"iv" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ix" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/science/research) +"iy" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iA" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iB" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iD" = ( +/obj/machinery/camera{ + c_tag = "Research Division Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"iE" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/button/ignition/incinerator/ordmix, +/obj/machinery/button/door/incinerator_vent_ordmix, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"iF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"iG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"iH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 4 + }, +/turf/open/floor/light, +/area/service/kitchen) +"iI" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iM" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"iN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"iO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iP" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"iU" = ( +/turf/closed/wall, +/area/maintenance/port) +"iV" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"iW" = ( +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"iX" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"iY" = ( +/obj/structure/chair/stool/bar{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/service/bar) +"iZ" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ja" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/bar) +"jb" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jc" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"jd" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"je" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar) +"jf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jg" = ( +/turf/closed/wall, +/area/medical/medbay) +"jh" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"ji" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"jj" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jk" = ( +/turf/closed/wall, +/area/service/kitchen/coldroom) +"jl" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"jm" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"jn" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jq" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + network = list("ss13","rd","xeno_pens"); + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"jr" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/science/mixing) +"js" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ju" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jv" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jw" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/obj/item/ammo_box/magazine/m50, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jx" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jy" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"jz" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jA" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jB" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"jC" = ( +/obj/machinery/griddle, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"jD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"jF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jG" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"jH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jI" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"jJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jL" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jM" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jN" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 3 + }, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jP" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jQ" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jR" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/limbgrower, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jS" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/command) +"jV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"jW" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jY" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"jZ" = ( +/mob/living/simple_animal/hostile/retaliate/goat/wycc, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"ka" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"kb" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"kc" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kd" = ( +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ke" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kf" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kg" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/restaurant_portal/restaurant, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/directional/east{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"ki" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kj" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kl" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"km" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"kn" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ko" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"kp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"kq" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"kr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ks" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kt" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"ku" = ( +/obj/effect/landmark/start/field_medic, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"kv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"kx" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"kz" = ( +/obj/machinery/camera/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kD" = ( +/obj/machinery/camera{ + c_tag = "Toxins Lab"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"kE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/service/bar) +"kF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"kG" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/bar) +"kH" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kI" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"kJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"kL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_mission) +"kN" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"kO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 4 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/light, +/area/service/kitchen) +"kP" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engspace" + }, +/turf/open/floor/plating, +/area/engineering/main) +"kQ" = ( +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"kR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"kS" = ( +/turf/closed/wall, +/area/service/janitor) +"kU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"kV" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"kX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/morgue) +"kZ" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lc" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ld" = ( +/obj/machinery/camera{ + c_tag = "Escape"; + dir = 8 + }, +/obj/structure/fluff/hedge, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"le" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/restaurant_portal/bar, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/west{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"lg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/firecloset, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/white, +/area/science/research) +"li" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lj" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"lk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"ll" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"lm" = ( +/obj/structure/table, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"ln" = ( +/obj/structure/table, +/obj/item/paper/guides/recycler{ + pixel_x = -5; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/item/storage/box/lights/tubes{ + pixel_y = 13; + pixel_x = 5 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = 13; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lo" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"lp" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"lq" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"lr" = ( +/obj/machinery/camera{ + c_tag = "Medbay North"; + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ls" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/service/janitor) +"lt" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lu" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/janitor) +"lw" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"ly" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lz" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 4 + }, +/obj/item/food/pie/cream, +/turf/open/floor/light, +/area/service/kitchen) +"lC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"lD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"lE" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lG" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_y = -11; + pixel_x = 8; + layer = 3.03 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_y = -9; + pixel_x = 2; + layer = 3.02 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_y = -7; + pixel_x = -4; + layer = 3.01 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 5; + pixel_y = 11 + }, +/obj/item/soap/nanotrasen{ + pixel_y = -9 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 13; + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lH" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/service/janitor) +"lI" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer" + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"lV" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"lW" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"lY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lZ" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ma" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"mb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"mc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge"; + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"md" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"me" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mf" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mg" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mh" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mk" = ( +/obj/machinery/vendor/exploration, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"ml" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/morgue) +"mn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mo" = ( +/obj/effect/turf_decal/siding/thinplating, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"mp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mq" = ( +/turf/open/floor/plasteel, +/area/service/janitor) +"mr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"ms" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/east, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/pen{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -7; + pixel_y = 1; + layer = 3.01 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"mt" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/obj/item/book/manual/wiki/cooking_to_serve_man{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"mu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/hallway/secondary/exit) +"mv" = ( +/obj/structure/chair/comfy/beige, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"mw" = ( +/obj/structure/chair/comfy/beige, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"mx" = ( +/obj/machinery/vending/chetverochka/pharma, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"my" = ( +/obj/structure/table/reinforced, +/obj/item/wrench/medical{ + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_y = 12; + pixel_x = -1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -8; + pixel_y = 5; + layer = 3.01 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 9; + pixel_y = 2; + layer = 3.01 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mz" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + on = 1; + target_temperature = 80 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mD" = ( +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"mE" = ( +/turf/closed/wall, +/area/maintenance/aft) +"mF" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"mG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"mH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/service/janitor) +"mI" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"mJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"mK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay) +"mL" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"mM" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mN" = ( +/turf/closed/wall, +/area/service/bar) +"mO" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/service/bar) +"mP" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mR" = ( +/turf/closed/wall, +/area/commons/dorms) +"mS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mV" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Cryo"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mW" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"mZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"na" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"nb" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nc" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"nd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"ne" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"nf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"ng" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nh" = ( +/obj/item/radio/intercom/directional/south{ + pixel_y = -28 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"ni" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/gateway) +"nj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter/greyscale, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"nl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central) +"nm" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"nn" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/aft) +"no" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"np" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"nq" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"nr" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 3 + }, +/obj/item/stack/package_wrap{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"ns" = ( +/obj/structure/lattice, +/obj/machinery/light/floor{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"nt" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/bar) +"nu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/medical_kiosk, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nv" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"nw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"nx" = ( +/obj/structure/table, +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"ny" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Chemistry" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"nz" = ( +/obj/machinery/smartfridge/chemistry, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"nA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nC" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/resin_foam{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/resin_foam{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/resin_foam{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/item/multitool{ + pixel_x = -15; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/analyzer, +/obj/item/analyzer, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nD" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 2; + layer = 3.01 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"nE" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nF" = ( +/obj/machinery/camera{ + c_tag = "Surgery"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/structure/sink/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nH" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/camera, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"nI" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"nJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"nK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"nL" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"nM" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/service/janitor) +"nN" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/fancy/coffee_cart_rack{ + pixel_x = -8; + pixel_y = 21 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"nO" = ( +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"nP" = ( +/obj/machinery/grill, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"nR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"nS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"nU" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"nV" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"nX" = ( +/turf/closed/wall, +/area/medical/morgue) +"nY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"nZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oa" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/button/curtain{ + id = "bar"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/bar) +"ob" = ( +/obj/machinery/chem_dispenser, +/obj/machinery/button/door{ + desc = "A remote control-switch for privacy shutters."; + id = "chemistry_shutters"; + name = "Privacy Shutters"; + pixel_x = -24; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oc" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/chemist, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"od" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oe" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"og" = ( +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"oi" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/six, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oj" = ( +/obj/machinery/processor, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"ok" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"ol" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"om" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/exit) +"on" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"oo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Hydroponics Desk"; + req_one_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"op" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"oq" = ( +/turf/closed/wall, +/area/service/hydroponics) +"or" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"ot" = ( +/turf/open/floor/wood, +/area/service/bar) +"ou" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern{ + pixel_y = 9 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"ov" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel/main) +"ow" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ox" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/table, +/obj/machinery/airalarm/directional/west, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oy" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oB" = ( +/obj/structure/fluff/hedge, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"oC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oD" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"oE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/brute{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = -2 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"oF" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"oG" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"oH" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"oI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/cryo) +"oJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"oK" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"oL" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"oO" = ( +/obj/structure/sink/kitchen/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/wood, +/area/service/bar) +"oP" = ( +/turf/open/floor/plasteel, +/area/commons/dorms) +"oQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oR" = ( +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"oS" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"oU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oY" = ( +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"oZ" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/fourcorners, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"pa" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/spawner/xmastree, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pb" = ( +/obj/structure/table, +/obj/effect/spawner/random/food_or_drink/donkpockets{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"pc" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/bar) +"pd" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/hallway/secondary/exit) +"pe" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pf" = ( +/turf/closed/wall/r_wall, +/area/medical/pharmacy) +"pi" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"pj" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pk" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pl" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/screwdriver, +/obj/item/radio/headset/headset_med, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pm" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/clothing/suit/straight_jacket, +/obj/item/gun/syringe, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"po" = ( +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"pp" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"pq" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/engineering/main) +"pr" = ( +/obj/structure/table, +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"ps" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"pt" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"pu" = ( +/obj/machinery/computer/camera_advanced/xenobio, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"pv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pw" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"px" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"py" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/motion/directional/south{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"pz" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"pA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"pB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door{ + id = "barmanpriv"; + name = "barman privacy"; + pixel_x = 28 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/service/bar) +"pC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pD" = ( +/obj/structure/cable, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"pF" = ( +/obj/structure/kitchenspike, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"pG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"pI" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"pJ" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/wrench, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bucket, +/obj/item/wirecutters, +/obj/item/storage/bag/plants/portaseeder, +/obj/item/reagent_containers/spray/pestspray, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/weedspray, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pK" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"pM" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pN" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pO" = ( +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"pQ" = ( +/turf/closed/wall, +/area/service/kitchen) +"pR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"pS" = ( +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"pT" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Quarters"; + req_access_txt = "58" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pU" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"pV" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"pW" = ( +/turf/closed/wall, +/area/service/chapel/office) +"pX" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/office) +"pY" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) +"pZ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "recycler"; + pixel_x = -4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qa" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"qb" = ( +/obj/machinery/camera, +/turf/open/floor/plasteel, +/area/engineering/main) +"qc" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"qe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"qf" = ( +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"qg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"qh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"qi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"qj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"qk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access_txt = "19"; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ql" = ( +/obj/machinery/button/door{ + id = "kitchen"; + name = "Kitchen Shutters Control"; + pixel_x = 26; + pixel_y = 25; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"qm" = ( +/turf/closed/wall/r_wall, +/area/medical/storage) +"qn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"qo" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qp" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"qq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2, +/turf/open/space/basic, +/area/maintenance/aft) +"qr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qt" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"qv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qx" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"qy" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/north, +/turf/open/space/basic, +/area/space/nearstation) +"qz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"qA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark/side, +/area/science/lab) +"qC" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"qD" = ( +/obj/machinery/space_heater, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qE" = ( +/turf/closed/wall, +/area/science/test_area) +"qF" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"qG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/airless, +/area/maintenance/aft) +"qH" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"qI" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"qJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"qK" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"qL" = ( +/obj/machinery/gibber, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"qM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"qN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qO" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"qP" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qQ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"qT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"qV" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/seed_extractor, +/obj/machinery/camera/autoname/directional/west, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"qX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 8 + }, +/turf/open/floor/light, +/area/service/bar) +"qY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ra" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Cargo Office" + }, +/obj/machinery/cell_charger, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"rd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"re" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rf" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"rg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ri" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rj" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"rk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rl" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rm" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"rn" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ro" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/floodlight, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"rq" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"rs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/sign/departments/engineering/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ru" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"rv" = ( +/obj/structure/table, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel, +/area/engineering/main) +"rw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/mineral/plasma/thirty, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rx" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"ry" = ( +/obj/machinery/power/smes{ + charge = 1.5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rz" = ( +/obj/machinery/power/smes{ + charge = 1.5e+006 + }, +/obj/machinery/camera{ + c_tag = "SMES Room" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rA" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/cell_charger, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rB" = ( +/obj/structure/cable, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rC" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/floor/wood, +/area/service/bar) +"rE" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"rG" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rH" = ( +/obj/structure/table/reinforced, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rI" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/air_sensor/nitrous_tank, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"rJ" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rK" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rL" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"rM" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"rN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/autoname{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"rO" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"rP" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rQ" = ( +/obj/machinery/chem_dispenser/drinks{ + density = 0; + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/carbon/human/species/monkey/punpun, +/turf/open/floor/wood, +/area/service/bar) +"rR" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rS" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste In"; + target_pressure = 4500; + dir = 4 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"rT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"rU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"rV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"rW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rX" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"rZ" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/storage/belt/champion, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"sa" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sb" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"sc" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"sd" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/restraints/handcuffs{ + pixel_y = 4; + pixel_x = 13 + }, +/obj/item/assembly/timer{ + pixel_x = 15; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"se" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"sf" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"sh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/structure/table, +/obj/item/holosign_creator/atmos, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"si" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"sj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/space/basic, +/area/engineering/atmos) +"sk" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/miner/nitrogen, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"sl" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sm" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/food/pie/cream, +/turf/open/floor/light, +/area/service/bar) +"sn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"so" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sp" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sq" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"sr" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + name = "output gas connector port" + }, +/obj/effect/turf_decal/tile/dark/full, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"ss" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"st" = ( +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"su" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"sw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"sx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/main) +"sy" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair/stool{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"sz" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall, +/area/maintenance/aft) +"sA" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"sB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sE" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"sF" = ( +/obj/structure/table, +/obj/machinery/coffeemaker, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"sG" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"sH" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sI" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sJ" = ( +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"sK" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sL" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"sM" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sN" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sO" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"sP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sT" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/lightreplacer{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sV" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/main) +"sW" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"sX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"sY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ta" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"tb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"td" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos) +"te" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"tf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"tg" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"th" = ( +/obj/machinery/mecha_part_fabricator/engi, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"ti" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"tj" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"tk" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"tl" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tm" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tn" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"to" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tp" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tq" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/r_wall, +/area/engineering/main) +"tr" = ( +/obj/structure/cable, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/chief_engineer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ts" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tt" = ( +/obj/structure/particle_accelerator/fuel_chamber, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"tu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/pharmacy) +"tv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"ty" = ( +/obj/item/crowbar, +/turf/open/floor/engine, +/area/engineering/main) +"tz" = ( +/obj/structure/particle_accelerator/power_box, +/turf/open/floor/engine, +/area/engineering/main) +"tA" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"tB" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tC" = ( +/obj/item/screwdriver, +/turf/open/floor/engine, +/area/engineering/main) +"tD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tF" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"tG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"tH" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tK" = ( +/obj/structure/particle_accelerator/particle_emitter/left, +/turf/open/floor/engine, +/area/engineering/main) +"tL" = ( +/obj/structure/particle_accelerator/particle_emitter/center, +/turf/open/floor/engine, +/area/engineering/main) +"tM" = ( +/obj/structure/particle_accelerator/particle_emitter/right, +/turf/open/floor/engine, +/area/engineering/main) +"tN" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"tO" = ( +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tP" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"tQ" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"tR" = ( +/obj/machinery/button/door{ + dir = 8; + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_x = -24; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"tS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tV" = ( +/turf/closed/wall/r_wall, +/area/cargo/qm) +"tW" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/service/hydroponics) +"tX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/cargo/qm"; + dir = 1; + name = "Quartermaster APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tY" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ua" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/space/nearstation) +"ub" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"ud" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"ue" = ( +/obj/machinery/light/small, +/obj/machinery/camera/autoname/directional/north{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uf" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"ug" = ( +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"uh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ui" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"uk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"ul" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/main) +"um" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"un" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engineering/main) +"uo" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"up" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/toy/figure/qm{ + pixel_x = -6 + }, +/obj/item/gps/mining{ + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uq" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/coin/silver, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ur" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"us" = ( +/obj/structure/transit_tube, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"ut" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/qm) +"uu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"uw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ux" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"uB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"uD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red/full, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"uE" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"uF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/floodlight, +/obj/machinery/light, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"uH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uI" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/pharmacy) +"uK" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/fore) +"uL" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall/r_wall, +/area/engineering/main) +"uM" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/camera/preset/ordnance/num2{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/main) +"uO" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"uP" = ( +/turf/open/floor/engine, +/area/engineering/main) +"uQ" = ( +/obj/machinery/power/grounding_rod, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"uR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/teleporter) +"uS" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uT" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"uU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"uV" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"uW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uX" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"uZ" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"va" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vb" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"vc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue/full, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"vd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"ve" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"vf" = ( +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/space/nearstation) +"vg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vh" = ( +/obj/structure/girder, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/door{ + dir = 4; + id = "engsm"; + name = "Radiation Shutters Control"; + pixel_x = 24; + req_access_txt = "10" + }, +/turf/open/floor/engine, +/area/engineering/main) +"vj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vl" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/main) +"vm" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/main) +"vn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"vp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vs" = ( +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vt" = ( +/obj/structure/table/reinforced, +/obj/item/storage/part_replacer/tier2{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vv" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vx" = ( +/obj/machinery/shieldgen{ + anchored = 1 + }, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"vy" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vz" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"vA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/floodlight, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"vC" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vE" = ( +/obj/structure/sign/warning/electricshock, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"vF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"vG" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"vJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/engine, +/area/engineering/main) +"vK" = ( +/obj/structure/particle_accelerator/end_cap, +/turf/open/floor/engine, +/area/engineering/main) +"vL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"vP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/floodlight, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vR" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"vS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"vT" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"vU" = ( +/turf/open/floor/plating, +/area/engineering/main) +"vV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/firecloset, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"vW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"vX" = ( +/obj/effect/turf_decal/box, +/obj/machinery/the_singularitygen/tesla, +/turf/open/floor/plating, +/area/engineering/main) +"vY" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vZ" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"wa" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"wb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"wd" = ( +/obj/machinery/light/small, +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"we" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"wf" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms, +/area/tcommsat/server) +"wg" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wh" = ( +/turf/open/floor/plasteel, +/area/cargo/qm) +"wi" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"wk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"wl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wm" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"wn" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"wo" = ( +/obj/machinery/telecomms/broadcaster/preset_left/birdstation, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"ws" = ( +/obj/machinery/light/small, +/obj/machinery/telecomms/server/presets/common/birdstation, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"wt" = ( +/obj/machinery/telecomms/bus/preset_one/birdstation, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"wu" = ( +/obj/machinery/camera/directional/north, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"wv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"ww" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wy" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"wz" = ( +/turf/open/space, +/area/space) +"wA" = ( +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/tcommsat/server) +"wB" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wC" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wE" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"wF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/structure/plasticflaps, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wG" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/camera/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat/service) +"wI" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"wJ" = ( +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen{ + pixel_y = 2 + }, +/obj/item/pen/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wK" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma/thirty{ + pixel_y = -1; + layer = 3.01 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"wL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/floor/directional/west{ + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"wM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wN" = ( +/obj/effect/landmark/start/ai, +/obj/structure/cable, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_y = -40 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 22 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_x = 0; + pixel_y = 33 + }, +/obj/machinery/button/door{ + id = "AI Core shutters"; + name = "AI Core shutters control"; + pixel_x = 6; + pixel_y = -22; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters control"; + pixel_x = -6; + pixel_y = -22; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"wO" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"wP" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"wQ" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"wR" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"wS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wT" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"wU" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"wV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"wW" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 8 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/camera{ + c_tag = "Security Office South"; + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"wY" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"wZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"xb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"xc" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xd" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xe" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"xf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command) +"xg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"xh" = ( +/obj/structure/closet/secure_closet/captains, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xi" = ( +/obj/machinery/light, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"xj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/chem_dispenser/drinks/beer{ + density = 0; + dir = 8; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/bar) +"xk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"xl" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xm" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/stamp, +/obj/item/stamp/denied, +/obj/item/pen/red, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"xo" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xp" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xr" = ( +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"xs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/science/test_area) +"xt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"xv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xw" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"xx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xz" = ( +/obj/machinery/autolathe, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"xC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"xH" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xI" = ( +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xJ" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/motion/directional/north{ + dir = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"xL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"xM" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xN" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"xP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"xQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"xR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xS" = ( +/turf/closed/wall, +/area/cargo/qm) +"xT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xV" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"xW" = ( +/mob/living/simple_animal/sloth/citrus, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xY" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/book/manual/wiki/barman_recipes, +/turf/open/floor/light, +/area/service/bar) +"ya" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yb" = ( +/obj/machinery/vending/security, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/machinery/button/door{ + desc = "A remote control-switch for privacy shutters."; + id = "brig_isolation"; + name = "Изоляция заключенных"; + pixel_y = -32; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yd" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/security/detectives_office) +"ye" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/restraints/handcuffs, +/obj/item/storage/fancy/cigarettes, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/security/detectives_office) +"yf" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/toy/cards/deck{ + pixel_y = 3 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"yh" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"yi" = ( +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yj" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yk" = ( +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/computer/crew, +/obj/machinery/firealarm{ + pixel_y = 27; + pixel_x = -6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yl" = ( +/obj/machinery/washing_machine, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ym" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"yo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"yp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/landmark/observer_start, +/turf/open/floor/goonplaque{ + desc = "In loving memory of Giacommand; the original creator of ministation. Rest in peace you magnificent spaceman." + }, +/area/hallway/primary/central) +"yq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"yr" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"ys" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/detectives_office) +"yt" = ( +/obj/item/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"yu" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yw" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"yx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"yy" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yz" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"yB" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/green, +/turf/open/space/basic, +/area/space/nearstation) +"yF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yH" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yN" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yP" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"yS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/storage/pill_bottle/dice, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"yT" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yV" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"yW" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yY" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"yZ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 9 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/plasteel, +/area/service/kitchen) +"za" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/science/alt/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zc" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"zd" = ( +/obj/machinery/light, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ze" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel, +/area/commons/dorms) +"zf" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/commons/dorms) +"zg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/commons/dorms) +"zi" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zj" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_y = 21; + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"zk" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"zl" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "cremawheat" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"zn" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"zo" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"zr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"zs" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"zw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"zx" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"zy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"zz" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"zA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"zB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zC" = ( +/obj/structure/cable, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"zD" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"zE" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"zF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"zG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"zH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = -34; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"zI" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"zJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"zK" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/chem_dispenser/botany, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"zL" = ( +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6 + }, +/obj/item/holosign_creator/robot_seat/bar{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/lighter{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/wood, +/area/service/bar) +"zM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"zN" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"zO" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"zP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"zQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"zR" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"zS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"zT" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"zU" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"zV" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"zW" = ( +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"zX" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"zY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/hallway/secondary/exit) +"zZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/exit) +"Aa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Ab" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/hallway/secondary/exit) +"Ac" = ( +/obj/structure/closet/crate/bin, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"Ad" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"Ae" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"Af" = ( +/obj/machinery/pdapainter, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"Ag" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"Ah" = ( +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Ai" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Aj" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"Ak" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/machinery/recharger, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"Al" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"Am" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hop) +"An" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Ao" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Ap" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"Aq" = ( +/obj/machinery/vending/cart, +/obj/machinery/camera/autoname/directional/west{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"Ar" = ( +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"As" = ( +/obj/structure/closet/secure_closet/hop, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"At" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/box, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Au" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Av" = ( +/obj/structure/closet/secure_closet/security/field_med, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Aw" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"Ax" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Az" = ( +/obj/structure/cable, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"AA" = ( +/obj/structure/cable, +/obj/machinery/power/terminal, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"AB" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"AC" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AD" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"AF" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AG" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AH" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "65" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"AI" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"AJ" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"AK" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Teleporter"; + req_access_txt = "17;65" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AM" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/computer/monitor, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AN" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16"; + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"AO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"AP" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"AQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"AR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"AS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"AU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/gateway) +"AV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"AW" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"AX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"AY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"AZ" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Ba" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"Bb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera/directional, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Bc" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/mob/living/silicon/robot/shell, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Bd" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/power/port_gen/pacman{ + anchored = 1; + sheets = 40 + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Be" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space, +/area/space) +"Bf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Bg" = ( +/obj/machinery/light/small, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Bh" = ( +/obj/machinery/camera/motion/directional/east, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Bi" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Bj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"Bk" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"Bl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"Bm" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Bn" = ( +/obj/docking_port/stationary{ + dir = 1; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"Bo" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Bp" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"Bq" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Br" = ( +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Bs" = ( +/obj/machinery/door/airlock/engineering/glass{ + autoclose = 0; + frequency = 1449; + id_tag = "tcomm_airlock_interior"; + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"Bt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"Bu" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"Bv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Bw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "65;13;11;61" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Bx" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"By" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/camera/directional/south, +/obj/machinery/atmospherics/components/binary/pump/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"Bz" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"BA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"BB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"BC" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"BD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"BE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"BF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"BG" = ( +/obj/structure/sign/departments/aisat, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"BH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/bluespace_beacon, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"BI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"BJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral/half/contrasted{ + dir = 1 + }, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Atmospherics"; + req_one_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"BK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"BL" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"BM" = ( +/obj/effect/landmark/start/ai/secondary, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"BN" = ( +/obj/machinery/telecomms/receiver/preset_left/birdstation, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"BO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"BP" = ( +/obj/machinery/computer/message_monitor{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"BQ" = ( +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"BR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"BS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"BT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/white, +/area/science/research) +"BU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/detectives_office) +"BV" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"BW" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/mime, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"BX" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"BY" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"BZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"Ca" = ( +/obj/effect/turf_decal/box/white, +/obj/machinery/shieldgen{ + anchored = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/main) +"Cb" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Cc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"Cd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ce" = ( +/obj/docking_port/stationary{ + dir = 8; + height = 18; + id = "emergency_home"; + name = "BoxStation emergency evac bay"; + width = 32 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"Cf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"Cg" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"Ch" = ( +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/yellow, +/obj/structure/cable, +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"Cj" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/lab) +"Ck" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"Cl" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/camera/directional/north, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"Cm" = ( +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Cp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/engineering/main) +"Cs" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ct" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Cv" = ( +/obj/structure/marker_beacon/burgundy, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"Cw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/cargo/exploration_dock) +"Cx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/engineering/main) +"Cy" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/commons/dorms) +"Cz" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"CC" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"CE" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"CF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"CH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"CI" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"CK" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"CL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/command/gateway) +"CM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"CN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"CQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"CR" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"CS" = ( +/obj/structure/altar_of_gods, +/obj/item/storage/book/bible{ + pixel_y = 5 + }, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"CU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = 30 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"CV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"CW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"CX" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"CY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"CZ" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Dd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Df" = ( +/obj/machinery/button/door{ + id = "xenobio"; + name = "Карантин камер содержания"; + pixel_y = 32; + req_access_txt = "55" + }, +/obj/machinery/processor/slime, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"Dj" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"Dk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"Dl" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Dm" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Dn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Do" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Dq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"Dr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Dv" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"DD" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"DE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/directional/west{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"DF" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"DH" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"DI" = ( +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 26 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 38; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"DJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"DK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"DM" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser{ + pixel_y = 12 + }, +/obj/item/pipe_dispenser{ + pixel_y = 6; + layer = 3.01 + }, +/obj/item/pipe_dispenser{ + layer = 3.02 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/fireaxecabinet/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"DN" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"DO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"DP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/aicard, +/obj/item/stamp/rd, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"DQ" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"DR" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"DS" = ( +/obj/structure/cable, +/obj/machinery/camera/directional/south, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"DT" = ( +/obj/item/target/alien/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera/preset/ordnance/num1{ + dir = 8 + }, +/turf/open/indestructible/labfloor, +/area/science/test_area) +"DW" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/item/paper/monitorkey{ + pixel_y = 2 + }, +/obj/item/pen/blue, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"DX" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"DY" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"DZ" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Ea" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/directional/north, +/turf/open/space/basic, +/area/space/nearstation) +"Ee" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ej" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/computer_disk/chemistry, +/obj/item/computer_disk/medical, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Em" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"En" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Ep" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/plunger, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Es" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Ev" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Ew" = ( +/obj/effect/landmark/start/exploration, +/turf/open/floor/carpet, +/area/cargo/exploration_dock) +"Ez" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_y = 4; + pixel_x = 4 + }, +/obj/item/paper/pamphlet/gateway{ + pixel_x = -12; + pixel_y = 4 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"EA" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"EB" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"EC" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"EF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"EG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"EH" = ( +/obj/structure/table, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel, +/area/engineering/main) +"EJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"EL" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"EM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"EN" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/nullrod{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"EO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command) +"EQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ES" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"EU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Bridge"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"EW" = ( +/obj/structure/cable, +/obj/machinery/teleport/station, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"EX" = ( +/obj/structure/chair/pew/left, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"EY" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"EZ" = ( +/turf/open/floor/carpet/royalblack, +/area/hallway/secondary/exit) +"Fb" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"Fe" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"Ff" = ( +/obj/structure/sign/departments/holy/directional/south, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Fg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"Fh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fi" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Fn" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"Fp" = ( +/obj/structure/fluff/hedge, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"Fq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Fr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fs" = ( +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Ft" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"Fu" = ( +/obj/structure/punching_bag, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Fv" = ( +/obj/item/radio/intercom{ + pixel_y = 21 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"Fx" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Fy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"FB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage"; + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"FD" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"FE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"FF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"FG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"FH" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"FK" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"FL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"FO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/north{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + req_access_txt = "19"; + pixel_y = -32; + desc = "Кнопка, которая контроллирует шлюзы и не только." + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"FR" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/atmospherics/miner/plasma, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"FS" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"FW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/medbay) +"Ga" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Gb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"Gc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ge" = ( +/obj/effect/turf_decal/tile/neutral/fourcorners, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Gg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera/motion/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Gh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"Gi" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"Gl" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Gm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Go" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/science/research) +"Gt" = ( +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall/r_wall, +/area/science/mixing) +"Gw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"Gx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/gateway_control{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Gy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/chapel/main) +"Gz" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/cargo/storage) +"GA" = ( +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"GB" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"GC" = ( +/obj/item/target, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"GD" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"GG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"GH" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/red, +/area/commons/dorms) +"GJ" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"GM" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/main) +"GN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/floor/directional/east{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"GP" = ( +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"GQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"GS" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/camera/autoname/directional/east{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"GV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"GW" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"GZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"Ha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Hk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"Hl" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/chair/sofa/corp/corner{ + dir = 1; + pixel_y = 3; + pixel_x = -6 + }, +/obj/machinery/camera/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"Hq" = ( +/turf/closed/wall, +/area/science/lab) +"Hr" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"Hs" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/west{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Ht" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Hu" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Hv" = ( +/obj/structure/lattice, +/obj/machinery/camera/directional/west, +/turf/open/space/basic, +/area/space/nearstation) +"Hw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_mass_spec, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Hx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"Hz" = ( +/obj/effect/turf_decal/bot_white, +/obj/machinery/gravity_generator/main, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"HA" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"HB" = ( +/mob/living/simple_animal/slime, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + network = list("ss13","rd","xeno_pens"); + dir = 10 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"HC" = ( +/obj/structure/table/reinforced, +/obj/item/hand_tele{ + pixel_y = 3 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"HE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/science/xenobiology) +"HG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"HH" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"HJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"HL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/button/door{ + id = "barmanpriv"; + name = "barman privacy"; + pixel_x = 28; + pixel_y = 16 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/bar) +"HM" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_y = 5; + pixel_x = -6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"HN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/commons/dorms) +"HP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"HQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/server) +"HS" = ( +/obj/structure/table, +/obj/item/aicard, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat/service) +"HU" = ( +/obj/structure/fluff/hedge, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"HW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"HX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/tool, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"HZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ia" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ic" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/cryo) +"Id" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Ie" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"If" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Ig" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Ih" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Ii" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/lab) +"Ij" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ik" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/server) +"Il" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"Im" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side, +/area/science/xenobiology) +"In" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"Ip" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Iq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Ir" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"It" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Iu" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Iv" = ( +/obj/structure/cable, +/obj/machinery/camera/directional/north, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Iw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Ix" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Iy" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/science/xenobiology) +"Iz" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"IH" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"II" = ( +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"IM" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"IN" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue/opposingcorners{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"IO" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/command) +"IQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"IR" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/air_sensor/nitrogen_tank, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"IU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"IW" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"IX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"IZ" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ja" = ( +/turf/closed/wall, +/area/science/mixing) +"Jb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/qm{ + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Jd" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"Je" = ( +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Jf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Jh" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"Ji" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Jj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"Jm" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"Jn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/explosives, +/turf/open/floor/plating, +/area/science/mixing) +"Jo" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 1; + layer = 3.01 + }, +/obj/item/flashlight{ + pixel_y = -11; + layer = 3.03 + }, +/obj/item/flashlight{ + pixel_y = -6; + pixel_x = -4; + layer = 3.02 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Jr" = ( +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hop"; + dir = 1; + name = "Head of Personnel APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"Js" = ( +/turf/closed/wall/r_wall, +/area/command) +"Jw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Jx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"JA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"JB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"JD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"JE" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"JF" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"JI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"JK" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port) +"JL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"JQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"JS" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"JV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"JW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"JZ" = ( +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/exit) +"Kb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/research) +"Kc" = ( +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Kg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"Kh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Ki" = ( +/obj/structure/sign/departments/aisat, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"Kj" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/machinery/keycard_auth{ + pixel_x = -10 + }, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/mob/living/simple_animal/parrot/poly, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Kl" = ( +/obj/structure/table/wood/poker, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 4; + network = list("ss13","rd") + }, +/obj/item/flashlight/lamp/green{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Kn" = ( +/obj/machinery/light/small, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera/autoname/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ko" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"Kq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"Kr" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"Ks" = ( +/obj/structure/chair/pew/right, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"Kt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Ku" = ( +/obj/structure/table/reinforced, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box{ + pixel_y = 5 + }, +/turf/open/floor/light, +/area/service/bar) +"Kv" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Kw" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/camera/autoname/directional/south{ + dir = 6 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"Ky" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"KA" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"KB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"KE" = ( +/obj/effect/turf_decal/box/red, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"KH" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"KJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/science/mixing) +"KK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"KL" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"KO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"KR" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command) +"KS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"KT" = ( +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"KU" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"KW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Lc" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"Lf" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Lh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Li" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"Lk" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/miner/oxygen, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"Lm" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"Lq" = ( +/obj/machinery/smartfridge, +/turf/closed/wall/r_wall, +/area/service/hydroponics) +"Lr" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = 7 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = -7 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"Lt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Lz" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"LA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"LF" = ( +/obj/effect/mapping_helpers/dead_body_placer, +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"LG" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"LI" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"LK" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"LM" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"LN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"LS" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command) +"LU" = ( +/obj/structure/closet/crate/medical, +/obj/effect/turf_decal/bot, +/obj/item/roller, +/obj/item/roller, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/brute, +/obj/item/iv_drip_item, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/syringe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"LV" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/trimline/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/command/teleporter) +"LW" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"LX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/engine, +/area/engineering/main) +"LY" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"LZ" = ( +/turf/open/floor/carpet/red, +/area/service/chapel/main) +"Ma" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/obj/machinery/announcement_system, +/obj/machinery/camera/directional/south, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"Mb" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 6; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"Mc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/service/hydroponics) +"Md" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Mf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Mg" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 1; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"Mh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/space/basic, +/area/engineering/atmos) +"Mk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/white, +/area/science/lab) +"Ml" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"Ms" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"Mt" = ( +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel, +/area/engineering/main) +"Mv" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Mw" = ( +/obj/machinery/light, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"Mx" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"My" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"Mz" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"MA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"MB" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"MF" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"MG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"MH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"MI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"MJ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"MM" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"MN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"MQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"MR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"MU" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"MW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/landmark/start/research_director, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Nb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname/directional/east{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Nc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"Nd" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"Ne" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Ng" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Nh" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Nj" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"Nl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Nm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/iv_drip, +/obj/machinery/light, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Ns" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Nu" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/effect/spawner/random/maintenance/eight, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"Nv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"Nw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/left{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"Nx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Ny" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"Nz" = ( +/obj/structure/sign/warning/enginesafety, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"ND" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/engineering/atmos) +"NE" = ( +/obj/structure/cable, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/engineering/main) +"NF" = ( +/obj/machinery/camera/autoname/directional/east, +/turf/open/space/basic, +/area/space) +"NI" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"NK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"NL" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"NM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"NN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"NP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + network = list("ss13","rd","xeno_pens"); + dir = 9 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"NQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"NR" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"NT" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"NY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"NZ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/space/basic, +/area/engineering/atmos) +"Oa" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"Oe" = ( +/obj/effect/landmark/start/hunter, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Oh" = ( +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"Oi" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Oj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Ol" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 8 + }, +/turf/open/space/basic, +/area/engineering/atmos) +"Om" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms) +"On" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/departments/engineering/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Oo" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Op" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Or" = ( +/obj/structure/cable, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"Os" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white/side{ + dir = 8 + }, +/area/science/mixing) +"Ot" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Ou" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_y = 5; + pixel_x = -6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Ov" = ( +/obj/structure/closet/secure_closet/security/specialist, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Ow" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Ox" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Oy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Oz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"OA" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plasteel/monofloor, +/area/science/mixing) +"OF" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/command) +"OH" = ( +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"OJ" = ( +/obj/structure/sign/warning/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = -28; + pixel_y = -4 + }, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"OL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"OM" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"OQ" = ( +/obj/machinery/computer/teleporter, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"OS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"OU" = ( +/obj/item/beacon, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"OV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"OW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"OX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/pickaxe/mini, +/obj/item/binoculars, +/obj/item/gps/mining/off, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"OZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Pb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Pc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"Pd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Pe" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Pf" = ( +/obj/machinery/computer/pandemic, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Pg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"Ph" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"Pj" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Pk" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Pl" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Pm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"Pn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Po" = ( +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Pp" = ( +/obj/item/beacon, +/obj/effect/turf_decal/stripes/full, +/obj/effect/turf_decal/stripes/red/box, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Pq" = ( +/obj/machinery/button/crematorium{ + id = "cremawheat"; + pixel_x = -26; + req_access_txt = "27" + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"Ps" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/secondary/exit) +"Pv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Pw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"Px" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"PB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"PC" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"PD" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"PE" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"PF" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"PG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"PH" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"PI" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"PJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/crate/solarpanel_small, +/turf/open/floor/plasteel, +/area/engineering/main) +"PL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/science/lab) +"PM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"PN" = ( +/obj/structure/table, +/obj/item/clothing/glasses/science{ + pixel_y = 19 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/reagent_containers/pill/mutadone{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/pill/mutadone{ + pixel_y = -1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"PR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/science/mixing) +"PT" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable/cargo, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"PY" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/north{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"Qa" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Qb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Qd" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Qe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, +/turf/open/space/basic, +/area/engineering/atmos) +"Qf" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Qg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Qh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Qi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"Qj" = ( +/obj/machinery/atmospherics/components/tank/air{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"Qk" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Qm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"Qo" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Qp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/command/gateway) +"Qq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"Qs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Qt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Qv" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"Qw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Qz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"QB" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/atmos) +"QD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"QE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"QH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"QI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"QK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/autoname/directional/east{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"QL" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"QN" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"QO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"QQ" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/commons/dorms) +"QS" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"QT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"QU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/engineering, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/storage/belt/utility, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"QV" = ( +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"QY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Ra" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Rb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Rd" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/machinery/camera/autoname/directional/west{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Re" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"Rf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"Rh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Ri" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, +/turf/open/space/basic, +/area/engineering/atmos) +"Rk" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Rl" = ( +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Rp" = ( +/obj/structure/sign/warning/coldtemp, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"Rq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"Rr" = ( +/obj/machinery/gateway/centerstation, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"Rs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/book/manual/wiki/infections{ + pixel_y = 6 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ry" = ( +/turf/closed/wall, +/area/medical/cryo) +"Rz" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"RB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"RD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"RE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/lab) +"RF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"RH" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"RJ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/accounting{ + pixel_y = 9 + }, +/obj/machinery/light, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"RM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"RN" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"RP" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"RR" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"RS" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/box, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"RT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"RW" = ( +/obj/structure/chair/sofa/corp{ + dir = 4; + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"RY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"RZ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Sa" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/quartermaster, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Sb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"Sc" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/structure/sink/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Se" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Sf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"Sg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"Si" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"Sj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Sk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Sl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Ward"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Sn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Sp" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/miner/n2o, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + valve_open = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Sq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"St" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 4; + pixel_y = 3; + pixel_x = -6 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"Sv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Sw" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"Sx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"SA" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/turntable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"SB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"SC" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/trimline/white, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat/service) +"SD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"SE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/engineering/main) +"SG" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"SJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/wirecutters, +/turf/open/floor/engine, +/area/engineering/main) +"SL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"SM" = ( +/turf/closed/wall/r_wall, +/area/cargo/storage) +"SN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"SO" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"SQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm/directional/north, +/obj/item/beacon{ + pixel_y = 7 + }, +/obj/item/wrench{ + pixel_x = 15; + pixel_y = 3 + }, +/obj/item/beacon{ + pixel_y = 1; + pixel_x = -3; + layer = 3.01 + }, +/obj/machinery/camera/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"SS" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"SU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/outlet_injector/layer2{ + dir = 4 + }, +/turf/open/space/basic, +/area/ai_monitored/turret_protected/aisat/atmos) +"SV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"SW" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/science/lab) +"SY" = ( +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/obj/machinery/camera/autoname/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ta" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"Tb" = ( +/turf/closed/wall, +/area/science/xenobiology) +"Tc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"Tf" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/table, +/obj/machinery/plantgenes{ + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Th" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/coldtemp, +/turf/open/floor/plating, +/area/medical/cryo) +"Tk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"Tl" = ( +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"Tn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"To" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Tp" = ( +/obj/effect/landmark/start/specialist, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Tq" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ts" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Tu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"Tw" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"Tx" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 9 + }, +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"Ty" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"TB" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"TD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"TE" = ( +/obj/machinery/mineral/stacking_machine{ + stack_amt = 10 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"TF" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"TG" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"TH" = ( +/obj/machinery/telecomms/processor/preset_one/birdstation, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"TI" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"TJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"TK" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"TP" = ( +/obj/machinery/research/explosive_compressor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/science/research) +"TR" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 8 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"TT" = ( +/obj/structure/chair/pew/left, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"TV" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"TW" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"TX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"TY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"Ua" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/pharmacy) +"Ub" = ( +/obj/structure/chair/pew/left, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel/main) +"Uc" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Uf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ug" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"Uh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Ui" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat) +"Uj" = ( +/obj/structure/bed/dogbed/lia, +/obj/machinery/button/door{ + desc = "A remote control-switch for privacy shutters."; + id = "Бронешторы"; + name = "Privacy Shutters"; + pixel_x = -27; + pixel_y = 5; + req_access_txt = "2" + }, +/obj/structure/cable, +/mob/living/simple_animal/pet/dog/shepherd, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Uk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ul" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 14; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 14; + pixel_y = -2 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"Um" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"Up" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Uq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/transit_tube/station/dispenser/reverse/flipped{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"Ur" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Uu" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Uw" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Ux" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Uy" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"Uz" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"UA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/cargo/exploration_dock) +"UC" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"UD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"UE" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Xenobiology Pens Observation - Port Fore"; + dir = 4; + network = list("ss13","rd","xeno_pens") + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"UI" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"UJ" = ( +/obj/structure/table, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6; + pixel_y = 5; + layer = 3.02 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 3; + layer = 3.01 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 6; + pixel_x = -6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = -2; + pixel_x = -6; + layer = 3.03 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = -4; + layer = 3.04 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6; + pixel_y = -2; + layer = 3.05 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"UK" = ( +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"UL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"UM" = ( +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"UN" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"UO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/science/lab) +"UP" = ( +/obj/structure/cable, +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"UQ" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"UR" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"US" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"UT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/main) +"UW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"UX" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"UZ" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/effect/turf_decal/tile/hex/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"Va" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Vd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/engine, +/area/science/xenobiology) +"Vf" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 8 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Vg" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"Vh" = ( +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"Vi" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Vj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Vl" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 38 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Vp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"Vq" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Vr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"Vt" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Vv" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 10; + pixel_x = -4 + }, +/obj/item/food/donut/berry{ + pixel_x = 4; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Vw" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel/monofloor, +/area/science/research) +"Vx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Vy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Vz" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"VB" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"VC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"VD" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"VF" = ( +/obj/machinery/camera{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"VG" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"VH" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms) +"VJ" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"VK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"VL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"VO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chemistry Lab East"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"VP" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"VQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"VS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_smes) +"VU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"VV" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"VW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"VX" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"VZ" = ( +/obj/machinery/camera/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Wa" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"Wc" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Wf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Wh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"Wm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"Wn" = ( +/turf/closed/wall, +/area/security/detectives_office) +"Wo" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Wt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"Wv" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/b_minus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/b_plus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Wx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/storage) +"Wy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Wz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engineering/main) +"WB" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/item/stamp/cmo{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"WD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/aft) +"WF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/lab) +"WH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, +/turf/open/space/basic, +/area/engineering/atmos) +"WL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"WO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"WQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"WR" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"WS" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos) +"WT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"WU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"WX" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"WY" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"WZ" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation" + }, +/turf/open/floor/plating, +/area/security/brig) +"Xa" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/effect/turf_decal/tile/hex/blue, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"Xd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Xe" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/main) +"Xf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"Xi" = ( +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/full, +/turf/open/floor/plasteel/monofloor, +/area/engineering/atmos) +"Xj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/lab) +"Xk" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/west, +/turf/open/space/basic, +/area/space) +"Xl" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/lab) +"Xo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"Xp" = ( +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/science/research) +"Xq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Xr" = ( +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel/main) +"Xs" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/engineering/gravity_generator) +"Xt" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Xu" = ( +/obj/effect/turf_decal/siding/thinplating{ + dir = 6 + }, +/turf/open/floor/plasteel/freezer/airless, +/area/science/xenobiology) +"Xv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rnd4"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"Xx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"Xz" = ( +/obj/structure/lattice, +/obj/machinery/camera/autoname/directional/south, +/turf/open/space/basic, +/area/space/nearstation) +"XB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"XC" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/obj/structure/cable, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"XE" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"XF" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"XG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"XH" = ( +/obj/structure/cable, +/obj/machinery/vending/wallmed/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"XJ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/six, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"XK" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"XL" = ( +/obj/structure/table, +/obj/item/storage/box/zipties{ + pixel_y = 18; + pixel_x = -4 + }, +/obj/item/storage/box/disks{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/science/lab) +"XM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/monofloor, +/area/hallway/primary/central) +"XN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"XO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma{ + pixel_x = 14 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"XQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd"; + dir = 8 + }, +/turf/open/floor/plating, +/area/science/lab) +"XR" = ( +/turf/closed/wall/r_wall, +/area/medical/cryo) +"XS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/research) +"XT" = ( +/turf/closed/wall/r_wall, +/area/command/gateway) +"XU" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/hallway/secondary/exit) +"XW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"XX" = ( +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"XY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/bed/roller, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/cryo) +"Ya" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Yg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy, +/turf/open/space/basic, +/area/space/nearstation) +"Yh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Yj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Yl" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"Yn" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 15 + }, +/obj/item/storage/toolbox/emergency{ + pixel_y = 6; + layer = 3.01 + }, +/obj/item/flashlight{ + pixel_y = -1; + layer = 3.02 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat/service) +"Yp" = ( +/obj/structure/table/optable{ + desc = "A cold, hard place for your final rest."; + name = "Morgue Slab" + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Yt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Yv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"Yw" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"Yx" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/space/basic, +/area/engineering/atmos) +"Yy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/dorms) +"YC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"YF" = ( +/obj/effect/landmark/start/librarian, +/obj/structure/chair/wood, +/turf/open/floor/plasteel, +/area/commons/dorms) +"YG" = ( +/obj/structure/chair/pew/right, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) +"YH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/floor/directional/east{ + pixel_x = -5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"YI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"YK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 8; + id = "rnd4"; + name = "research lab shutters" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"YL" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, +/turf/open/space/basic, +/area/engineering/atmos) +"YO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"YQ" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"YR" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"YS" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_dock) +"YT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"YU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/reagent_containers/dropper, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -30 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"YV" = ( +/obj/effect/turf_decal/tile/neutral/anticorner/contrasted{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera/motion/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"YW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 5; + pixel_y = 18 + }, +/obj/machinery/recharger{ + pixel_x = -5; + pixel_y = 18 + }, +/obj/item/storage/toolbox/emergency{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"YY" = ( +/obj/structure/fluff/hedge, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit) +"YZ" = ( +/obj/machinery/light, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Zb" = ( +/obj/effect/turf_decal/trimline/blue/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"Zd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/monofloor, +/area/hallway/secondary/exit) +"Ze" = ( +/obj/machinery/button/door{ + dir = 8; + id = "engspace"; + name = "Защитные шторы"; + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"Zf" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space) +"Zl" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway Access"; + req_access_txt = "62" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"Zm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/camera/directional/east, +/turf/open/space/basic, +/area/space/nearstation) +"Zn" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/ai) +"Zq" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/turf/open/floor/plating, +/area/engineering/main) +"Zr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/part_replacer/stock_parts_box_x10/capacitor_t2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"Zs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/closed/wall, +/area/science/mixing) +"Zv" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/engineering/atmos) +"Zw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"Zx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Zy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Zz" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ZA" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera/directional/east{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ZB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ZC" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ZD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/bag/bio{ + pixel_y = 3 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ZE" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ZJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ZL" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"ZO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ZP" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/camera/motion/directional/west, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"ZT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/turret_protected/aisat) +"ZU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"ZV" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"ZW" = ( +/obj/structure/sign/departments/aisat, +/turf/closed/wall/r_wall, +/area/engineering/main) +"ZX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"ZY" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ZZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair/sofa/bench/right{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) + +(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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +yE +gp +gp +gp +gp +gp +yE +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +aa +aa +aa +gp +uT +uT +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,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 +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 +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 +gp +gp +gp +aa +aa +aa +gp +Ce +gp +aa +aa +aa +gp +gp +gp +gp +gp +gp +aa +aa +aa +aa +aa +aa +aa +gp +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,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 +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 +WR +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 +gp +cQ +iO +cQ +gp +gp +gp +cQ +iO +cQ +gp +gp +gp +GW +GW +GW +GW +GW +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +Qv +uT +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,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 +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 +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 +gp +cQ +iP +cQ +YI +YI +YI +cQ +iP +cQ +YI +YI +YI +GW +jc +cx +HU +YI +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,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 +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 +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 +GW +GW +YI +iQ +YI +Nw +Um +ZZ +YI +iQ +YI +XU +qn +ZJ +hG +Ps +dJ +YI +YI +YI +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +Qv +uT +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,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 +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 +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 +GW +dU +ic +ic +Vj +fr +OU +fr +Vj +mu +ic +fr +fr +fr +fr +fr +Nh +zM +iP +Aj +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +Qv +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,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 +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 +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 +YI +Op +ie +fr +fr +fr +WO +fr +fr +fr +fr +fr +fr +fr +fr +fr +zE +YI +YI +YI +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +uT +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,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 +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 +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 +YI +hD +fr +vo +fr +fr +kQ +fr +fr +fr +lC +fr +fr +fr +fr +fr +hr +zY +YI +pd +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,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 +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 +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 +GW +fQ +fr +kw +kw +jX +qh +qh +qh +qh +qh +Ms +qh +qh +fr +fr +fr +zZ +YI +pd +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Cc +aa +aa +aa +aa +aa +aa +aa +aa +aa +GW +fr +fr +fr +fr +jX +fr +fr +fr +fr +fr +dX +dX +wV +fr +fr +fr +vV +YI +pd +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +gp +gp +gp +gp +Qv +Qv +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 +aa +WR +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +SM +cA +bQ +dR +QD +dR +bU +cA +SM +SM +tV +tV +ut +ut +tV +GW +sA +jc +YY +jc +jV +kR +ld +jc +EZ +EZ +EZ +dX +Zd +fr +fr +aN +Ab +YI +pd +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +Qv +uT +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bF +cC +dt +dS +eE +dS +xo +xv +CR +Gz +xS +tX +uy +Jb +oK +cg +cg +cg +cg +cg +ey +cg +cg +cg +mv +nj +EZ +fr +BZ +fr +fr +zE +YI +YI +YI +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bL +cD +du +dT +HH +fM +xp +cD +cD +tO +xS +tY +uz +Oo +Sa +xS +xH +it +iU +ok +nT +cf +lo +cg +mw +nH +sJ +jT +BZ +qu +fr +Nh +zM +iP +Aj +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bM +cD +xC +cD +Sq +cD +xp +WT +tD +tS +xR +uh +MG +wh +xX +xS +cf +JK +jf +jf +nT +jf +lp +cg +mF +sJ +sJ +fr +BZ +fr +JZ +om +YI +YI +YI +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bN +cD +DH +cD +Sq +cD +xp +xF +If +tT +xS +up +uB +wh +xY +xS +Yv +li +Sx +kU +kU +jf +lq +cg +mG +nI +on +fr +BZ +fr +jc +oB +Fp +YI +aV +aa +aa +aa +AI +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +gp +Qv +uT +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +"} +(117,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bO +cD +DH +Oi +Sq +cD +xq +gK +Sq +Sq +xS +uq +xW +Sn +PE +xS +Sx +Wa +qC +Ta +jh +kS +kS +kS +kS +kS +kS +oL +yn +hc +rU +Gw +wX +GW +aV +aV +aV +aV +aV +aV +aV +aV +gp +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +gp +aa +Qv +Qv +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(118,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bP +cD +Ox +Yt +HJ +HJ +HJ +lF +Sq +Up +xS +xS +xS +xS +xS +xS +Sx +iM +jk +jk +jk +kS +ls +lV +mH +nJ +kS +nZ +yn +fr +zy +zD +nL +zD +zD +zD +zD +zD +Rq +WD +Rq +Rq +gp +gp +gp +gp +gp +gp +gp +gp +gp +aa +aa +aa +aa +gp +aa +aa +Qv +Qv +gp +gp +gp +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 +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 +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 +aa +aa +"} +(119,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +cd +hR +xE +bq +Uw +Qk +QL +lF +Ya +xM +bu +nA +Sx +Sx +Sx +Sx +Sx +iM +jk +qL +jY +kS +lE +mq +mI +mq +lH +oM +yn +fr +zz +zD +Jr +Ac +Ak +rE +cr +zD +XJ +Pk +KW +mE +WD +GB +GB +si +si +si +si +GB +GB +gp +aa +gp +gp +gp +gp +gp +aa +uT +Ml +Ml +Hs +gp +gp +aa +gp +gp +gp +gp +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 +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 +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 +"} +(120,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +SM +bu +dw +Oe +bq +TI +TI +TI +xx +xF +ih +bu +Sx +mR +mR +mR +mR +mR +mR +jk +ji +jZ +kS +ln +mr +qj +mJ +ma +jX +pL +fr +zz +ll +zQ +Ad +pA +qf +qp +zD +pt +Pk +Fu +sz +ps +rj +MH +OH +OH +OH +RD +uf +GB +gp +gp +rq +MU +MU +MU +rq +gp +aa +zx +ua +ZL +vY +vY +vY +vY +vY +tP +gp +gp +gp +gp +gp +aa +gp +gp +gp +gp +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Bn +zU +ce +cS +bq +bq +bq +eT +fN +ds +xy +cD +xU +bu +Sx +mR +yg +Om +mR +yS +yw +jk +pF +ka +kS +lG +ms +lu +nM +kS +qI +yn +fr +zz +ll +zR +Ae +dE +qf +RJ +zD +DF +Pk +nc +Hk +ps +GB +rw +JL +rW +rW +sB +sM +GB +Ml +Ml +MU +tp +tp +tp +MU +gp +gp +iX +vf +ZL +vh +vh +vh +vh +vh +Vh +vY +vY +vY +vY +vY +vY +vY +vY +vY +vY +vY +tP +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +ch +SM +bu +bu +ek +bu +bv +bv +bu +eA +fb +bu +Sx +mR +yh +yx +mR +GH +fC +jk +jk +kb +kS +kS +kS +kS +kS +kS +fr +yn +fr +zA +xP +zS +Ae +Am +qf +As +zD +xN +nc +tG +nc +ps +GB +rx +SO +rX +OH +UD +sN +GB +rq +rq +rq +IZ +Wf +Kn +rq +rq +rq +tq +Zq +rq +rq +rq +rq +rq +vh +vh +Rd +vh +vh +vh +vh +vh +vh +Rd +vh +vh +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +aa +aV +Ag +dx +bD +bu +gM +xC +xz +cD +xU +bu +qx +mR +mR +yy +mR +mR +zc +pQ +jB +lU +yV +yz +hn +sF +nN +pQ +ZC +nd +ZC +zD +zD +zT +Af +Em +Aq +zD +zD +mE +dG +nc +nc +ps +GB +ry +rO +OH +rX +UD +sN +GB +sL +EL +EC +rM +Gc +rM +rM +rv +EH +rM +rY +ss +rq +uO +vx +rq +vh +rq +rq +rq +rq +rq +vh +rq +rq +rq +rq +rq +vh +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,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 +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 +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Xk +Zf +Zf +Ag +dx +eC +bu +gN +ZO +Ar +ZO +xU +bu +Uz +sg +sg +sg +yO +Yy +Yy +pQ +kq +lU +lU +lU +lU +qU +qU +mD +zB +mb +fB +Lq +zD +zD +zD +zD +zD +zD +Pl +oq +dG +qF +UP +ps +GB +rz +rO +Or +MH +sC +Vp +FB +Uf +Uf +YR +YR +YR +YR +YR +YR +YR +YR +YR +Ts +va +vj +vj +rq +rq +rq +uQ +vx +uQ +rq +rq +rq +uO +uO +vx +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +Ag +EF +Ag +Ag +by +bD +bu +ra +xt +cD +xI +xU +bu +yi +ym +ym +xw +yN +ym +oP +pQ +kN +lU +ko +nr +pb +jE +or +pQ +Cm +mb +Id +rl +zJ +zV +Ah +An +Sc +Ux +pM +oq +mE +mE +nn +ps +GB +ry +rO +OH +rX +OH +sR +GB +rT +rM +rM +rM +Nl +jd +rM +rM +Gc +rM +uC +Ee +rq +uW +TY +vR +vn +vP +zP +zP +zP +zP +vn +vR +uY +vp +uO +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,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 +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 +aa +aa +aa +aa +jI +Qv +Js +Js +Js +Js +Js +Js +aV +bd +by +bc +cT +bD +bD +bu +xm +uw +xA +ux +xU +bu +yj +ym +Lc +xw +YQ +yT +zd +pQ +jC +lU +lm +jy +mt +qO +nO +pQ +lz +mb +mS +gv +zK +zW +ow +Ao +ow +BR +pN +oq +qq +qG +qa +pP +GB +rA +VS +CK +JB +JB +sR +rq +rq +MU +rV +rV +rV +rq +uo +rM +uu +rM +Nl +vd +vl +vu +vO +ui +uk +uk +vR +uP +vR +uk +uk +ui +uk +uj +uO +rq +FK +uV +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,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 +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 +aa +aa +aa +Qv +ab +Js +Js +ao +aD +aQ +wY +Js +Js +Ag +rg +bc +uK +bD +bc +bu +bv +bv +do +bv +AX +bu +fl +ym +ym +xw +VH +ym +ze +pQ +ho +xk +qK +qO +qK +qO +nP +pQ +qv +mb +fB +oo +nb +bw +ow +XW +ow +pv +pO +oq +oq +oq +Mc +pP +GB +rB +fJ +MH +MH +MH +sR +rq +jG +rM +tv +rM +tQ +rq +rq +qb +rM +rM +rM +vd +vm +vF +vG +vS +vS +vS +vS +vS +vS +vS +vS +vS +VQ +uj +uO +rq +vh +Vh +tP +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +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 +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 +aa +aa +aa +"} +(128,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 +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 +aa +aa +aa +Qv +aa +ae +af +aq +aG +aR +bh +xd +Js +bf +by +by +by +bD +bc +dB +dB +dB +ff +tI +tU +gw +yl +HN +QQ +sg +yO +oP +zf +pQ +mL +ql +qO +qO +qO +qO +oj +pQ +Zz +mb +fB +pG +nb +nE +ow +oQ +ow +pw +Qo +Vi +fE +Mv +oq +pP +GB +rC +rP +sa +sf +MH +Vp +Xt +QT +QT +QT +QT +QT +rM +ve +rM +rM +PJ +Mt +vd +vl +vA +ub +vZ +Cx +Cx +Cx +vb +Cx +Cx +Cx +vZ +vF +rp +rq +rq +vh +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,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 +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 +aa +aa +aa +Qv +gp +ae +ag +OF +ar +ar +aR +cG +Js +bg +by +cj +by +bD +bc +dC +er +er +fg +fB +Zx +gw +mR +mR +mR +YF +yO +oP +zg +pQ +pQ +kO +iH +iH +lB +sb +pQ +pQ +fB +mb +fB +gv +pJ +px +px +so +px +px +KH +qV +Tf +rn +oq +pP +GB +GB +GB +GB +sl +Vp +sR +rq +LY +UJ +VB +rM +QT +ug +uL +rq +uN +rq +rq +vl +vl +vE +LX +Cx +vU +vU +vU +Li +vU +vU +vU +Cx +vF +uj +oN +rq +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,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 +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 +aa +aa +aa +Qv +aa +ae +ah +at +ar +ar +aR +mc +Js +ad +ad +ad +bc +dH +bc +dD +es +es +fs +fB +mQ +hp +hb +ij +mR +Cy +yP +yW +Cy +pQ +yZ +sy +sy +sy +sy +jx +kh +pQ +ZC +nY +ZC +tW +gv +gv +gv +oq +gv +gv +gv +oq +oq +oq +oq +rf +mE +hb +ij +rq +MU +sE +MU +Nz +tN +tN +tN +tN +dY +sU +rq +vJ +uY +tR +vn +uY +vp +rV +vH +Cx +vU +vU +vU +vU +vU +vU +vU +Cx +vF +uj +Ze +vT +kP +uU +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,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 +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 +aa +aa +aa +Qv +aa +ae +ai +au +aH +aS +aR +EO +bj +bp +bC +LS +bT +ct +nG +fB +fB +fB +fB +fB +PB +fB +nG +fB +no +fB +NQ +nG +ZC +zi +fB +fB +fB +fB +nG +fB +fB +ZC +DI +mb +nG +no +fB +fB +fB +zi +fB +fB +fB +qc +qr +fB +qr +ly +rs +fB +fB +MU +QI +nf +if +Ph +CE +zH +RM +FH +QT +rM +TG +vu +uP +Ug +ty +tK +uj +rV +vH +Cx +vU +vU +SE +uG +uv +vU +vU +Cx +vF +uj +vs +vt +kP +uU +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,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 +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 +aa +aa +aa +Qv +gp +ae +aj +av +aI +aT +aZ +be +ae +bk +bA +ca +cm +qM +qM +qM +qM +qM +qM +qM +XM +XM +XM +XM +fz +pR +Oh +FL +tA +FL +FL +is +is +is +is +is +is +nK +is +yp +np +hS +np +np +np +np +np +np +np +np +np +np +np +pR +Px +Px +Px +se +qS +Cp +th +VD +Kj +tr +Zy +Es +QT +rM +ve +vu +vK +tt +tz +tL +SJ +rV +vH +Cx +vU +vU +sX +vX +pq +vU +vU +Cx +vF +uj +vs +Ca +kP +uU +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,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 +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 +aa +aa +aa +Qv +aa +ae +ak +aw +aK +aU +xb +xg +bl +bB +xg +KR +bV +MA +fB +dN +dM +Ct +fu +fB +fB +yu +fB +fB +no +iJ +XM +fB +ZC +Wc +fB +iJ +fB +fB +fB +fB +fB +ZC +Vl +yQ +fB +no +kz +fB +iJ +fB +fB +fB +fB +yu +rt +hM +qY +lA +On +iJ +fB +MU +sn +QT +sV +Ph +CZ +YO +UI +FH +QT +rM +TG +vu +DN +DN +tC +tM +uj +rV +vH +Cx +vU +vU +wZ +vD +vB +vU +vU +Cx +vF +uj +vs +Zr +kP +uU +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,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 +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 +aa +aa +aa +Qv +aa +ae +al +az +ar +ar +xb +xf +Js +ad +ad +ad +bc +dI +as +cK +xQ +Vt +as +as +as +as +as +as +as +ZC +kp +ZC +mN +kE +kE +kG +kG +kG +kG +kE +kE +mN +ZC +zw +ZC +Iz +Iz +nl +nl +nl +nl +nl +Iz +Iz +zI +ru +ru +ri +ru +hp +rR +TF +QB +sH +sG +hi +tN +tN +tN +tN +CC +sQ +rq +SD +vS +vi +Ev +uH +vr +rV +vH +Cx +vU +vU +vU +vU +vU +vU +vU +Cx +vF +uj +vs +vz +kP +uU +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,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 +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 +aa +aa +aa +Qv +gp +ae +am +IO +ar +ar +xb +cy +Js +bD +uc +bD +bD +bD +as +dP +eG +Nx +fv +fP +gd +Av +Ot +gB +as +fB +XM +fB +kE +nS +jv +jv +SG +SG +jv +qt +SA +kE +fB +yQ +jW +Iz +aa +gp +aa +aa +aa +aa +gp +aa +zI +HX +RR +rk +TF +TF +TF +TF +sp +Uk +qP +rq +Jo +ZY +sT +rM +QT +ul +uL +rq +Xe +rq +rq +vl +vl +vE +vL +Cx +vU +vU +vU +Li +vU +vU +vU +Cx +vk +uj +uE +rq +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,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 +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 +aa +aa +aa +Qv +aa +ae +an +aA +aL +xb +jU +xh +Js +bD +Mx +Mx +Mx +Mx +Mx +dV +eH +eI +UC +lc +ge +Ov +Iq +gB +as +yG +XM +fB +kE +kV +qQ +qo +iI +zj +jD +jv +BW +kE +fB +yQ +fB +nl +gp +hO +hO +hO +hO +hO +hO +gp +zI +PG +xe +rk +TF +DX +KL +sh +Ty +Uk +sY +ro +rY +rY +Qh +Qh +QT +QT +Xt +QT +QT +sI +rM +vd +vl +vQ +vM +vZ +Cx +Cx +Cx +vb +Cx +Cx +Cx +vZ +vk +uF +rq +rq +vh +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,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 +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 +aa +aa +aa +Qv +Qv +Js +Js +aB +aP +aQ +xc +Js +Js +bD +Mx +hU +xl +Pj +Mx +et +xQ +Qd +bR +yk +Ot +ef +db +Ji +as +Cm +XM +fB +kG +jv +xT +jv +iv +iv +jv +jv +qN +kG +fB +yQ +fB +nl +aa +hO +iZ +hQ +im +rZ +hO +aa +re +qs +HW +rk +TF +rG +Ty +Ty +Ty +td +Qs +rq +Ij +rM +uu +rM +iV +rq +rq +VF +QT +rM +rM +vd +vm +vF +vN +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +Cf +yo +uj +uO +rq +vh +vv +vy +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,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 +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 +aa +aa +aa +aa +jI +Qv +Oa +Oa +Oa +ti +Oa +Oa +XT +Zl +Mx +kg +cV +dK +pT +dW +fS +dW +Uj +eJ +gC +gC +Iw +sd +as +fB +XM +fB +kG +jv +pa +js +ki +ki +js +ki +ki +ja +ga +qM +fB +nl +nl +nU +Gh +iN +iN +iW +hO +aa +re +Nu +Pm +rk +TF +rG +Ty +td +td +Cs +CN +rq +rq +MU +MU +MU +MU +rq +ur +tv +QT +rM +Ns +vd +vl +vu +vO +vW +Qq +Qq +Ch +uP +Ch +Qq +Qq +vW +Qq +uj +uO +rq +LI +uV +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,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 +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 +aa +aa +aa +aa +aa +gp +Oa +SQ +Ny +II +qk +Oa +Hx +gk +Mx +mP +GD +Ht +Mx +Ot +eJ +gt +Ot +hq +gr +gD +Iw +wW +as +fB +XM +fB +kG +jv +qR +ju +jD +qo +ju +jD +xT +kG +fB +Ft +pC +pC +pC +nV +ne +oh +ip +pz +hO +Xz +re +wF +ru +rk +TF +rH +Ty +DD +tb +Oy +tb +Jd +rq +tf +rM +rM +Ns +sI +rM +uC +YR +rM +Gc +UT +rq +Fv +wc +Ch +Ev +rN +um +um +um +um +Ev +Ch +uH +vr +uO +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,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 +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 +aa +aa +gp +gp +gp +gp +Oa +HC +NK +fx +EJ +Jm +Sg +My +Mx +Mx +Mx +Mx +Mx +ea +Pv +gt +gL +hq +gs +gP +Tp +ya +as +fB +XM +fB +kE +jv +mM +jv +jv +jv +jv +jv +kj +kE +fB +pR +fB +nl +nl +nU +nR +iq +iq +pD +hO +aa +re +eS +pZ +rk +TF +DM +Ty +td +tb +Uu +cY +cY +Fb +vI +vI +vI +vI +vI +vI +vI +YR +YR +YR +Cd +vg +vw +vw +rq +rq +rq +uQ +vx +uQ +rq +rq +rq +uO +uO +vx +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(141,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 +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 +aa +aa +gp +XT +XT +XT +Oa +uR +UR +hN +LV +SN +Wm +Bp +QV +as +co +Ot +Nb +fS +eW +Xq +Xq +cL +gt +ku +fS +yb +as +fB +XM +jW +mN +iw +zs +iY +iY +iY +iY +iY +le +mO +yF +pR +fB +nl +aa +hO +jw +il +ir +yt +hO +aa +re +wC +Pw +zC +TF +nC +Ty +DD +tb +RF +cY +PI +rq +sL +rM +rM +uC +rM +rM +Gl +VB +rM +rY +ss +rq +uO +vx +rq +vh +rq +rq +rq +rq +rq +vh +rq +rq +rq +rq +rq +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(142,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 +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 +aa +gp +Cv +AU +QU +LU +UM +uR +uR +uR +uR +uR +dv +Bp +QV +as +cp +cN +dk +Ot +eX +fa +fy +fW +gu +gQ +fS +yc +as +fB +XM +fB +mN +mN +mN +Ku +qX +lf +sm +xZ +mN +mN +fB +pR +fB +nl +gp +hO +hO +hO +hO +hO +hO +gp +zI +bx +eD +rh +TF +RN +sD +td +sS +pe +cY +PI +rq +rq +rq +tH +Nl +ue +ZW +rq +rq +rq +Sb +rq +rq +rq +rq +rq +vh +vh +GS +vh +vh +vh +vh +vh +vh +GS +vh +vh +vh +uV +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(143,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 +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 +aa +gp +AU +AU +sq +Je +Je +EG +wL +Xf +Xf +wL +VW +br +XT +as +Dv +Dv +dl +Dv +Dv +Dv +Dv +el +fX +as +wI +fX +as +yH +XM +fB +mN +oa +zL +qH +ot +ot +nq +rD +OJ +mN +yB +pR +jW +Iz +aa +gp +aa +aa +NF +aa +gp +aa +zI +TE +uZ +tw +TF +rJ +rS +td +su +td +cY +SB +PT +Cg +rq +Wz +Uq +un +us +tg +gp +MU +NE +rq +vh +vh +vh +vh +vh +vv +vC +vC +vC +vC +vC +vC +vC +vC +vC +vC +vC +vy +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +AU +Vz +IM +Ip +EG +VW +Qp +KT +KT +KT +RY +UL +XT +aa +Dv +cM +SV +eo +kx +fd +Dv +GZ +TD +WZ +GZ +TD +WZ +fB +XM +fB +mN +nm +oO +pB +rQ +xj +pc +je +HL +nt +da +Px +Ff +GM +GM +Gy +Gy +Gy +Gy +Gy +pX +pX +pX +pW +KA +oA +TF +CH +MI +IN +ei +MJ +cY +td +DY +XK +rq +MU +MU +TG +rq +gp +tk +tq +sx +rq +vC +vC +vC +vC +vC +vy +gp +gp +gp +gp +gp +gp +gp +aa +gp +gp +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,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 +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 +aa +gp +AU +UX +Rr +we +bm +te +PH +PH +CL +UL +UL +EU +XT +gp +Dv +cR +dy +ep +Ig +fe +Dv +xV +fY +WZ +xV +fY +WZ +fB +XM +EA +mN +mN +mN +mN +mN +mN +mN +mN +mN +mN +fB +pR +fB +Gy +Ub +TT +ta +Xr +LZ +xi +pW +zl +Pq +pW +xe +rk +TF +WS +IW +TF +sw +TF +KU +RF +in +td +SY +FE +FE +FE +Nj +Nj +tl +Ml +KK +ZA +gp +gp +aa +gp +gp +gp +gp +aa +aa +aa +aa +gp +aa +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,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 +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 +aa +gp +AU +Ip +IM +Vz +Ir +Xx +gZ +KT +KT +KT +XG +UL +XT +aa +Dv +cW +dA +eq +ZE +Uc +Dv +as +as +as +as +as +as +yG +XM +lA +FS +gH +gH +gH +gH +gH +gH +gH +gH +FS +lA +pR +mS +Gy +ov +Ks +ov +fk +ou +nh +pW +OV +KB +Dq +rk +rk +TF +ND +KO +zn +Re +KO +rK +tE +vc +td +di +Zv +Sp +Vf +CI +Nj +tl +gp +KK +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(147,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 +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 +aa +gp +AU +AU +RB +YW +Gx +Ir +GN +Nc +Nc +YH +Xx +FO +XT +XT +Dv +Dv +Dv +Dv +Dv +Dv +Dv +gp +GJ +gS +hH +yq +BU +yI +XM +fB +gz +gI +BV +hs +lj +lj +lj +lj +lj +lj +yG +pR +EQ +DR +op +op +US +US +CS +pH +pV +KB +MB +pW +xe +oi +zI +Kw +KO +zk +rL +KO +VP +HZ +uD +td +st +sj +rI +Wo +Ol +Nj +tl +gp +KK +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +Qv +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,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 +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 +aa +gp +Cv +AU +Ez +Lf +It +cX +XH +GA +DZ +OM +dv +UL +UL +XT +gp +aa +gp +aa +aa +gp +aa +gp +GJ +gT +hI +yd +fK +yJ +XM +fB +gz +gJ +pK +qD +lj +jb +WX +kl +JE +lj +fB +pR +fB +Gy +ta +EX +ta +kt +ou +Jh +pW +EN +PY +pX +wb +zI +zI +Nj +KO +Zv +NZ +NZ +sK +gV +sr +to +Xi +sj +sj +Zv +KO +Nj +tm +gp +KK +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +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 +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 +aa +aa +aa +aa +"} +(149,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 +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 +aa +aa +gp +YS +YS +YS +YS +YS +YS +YS +YS +YS +zr +zr +ni +XT +gp +Iz +Iz +Iz +Iz +Iz +Iz +gp +GJ +gU +hJ +ye +ys +yK +XM +jW +XF +XF +XF +XF +lj +jz +Fs +xL +SS +lj +fB +pR +fB +Gy +bZ +YG +ov +Dk +pH +eU +pX +pX +pX +pX +Yw +fw +gp +Nj +KO +Zv +NZ +Zv +Zv +Yx +ns +Mh +Zv +Zv +sj +Zv +KO +Nj +tl +gp +KK +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +uT +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,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 +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 +aa +aa +gp +xu +Pe +Vq +Vq +mk +St +RW +Hl +YS +VZ +fB +lA +Iz +Iz +Iz +Kl +HM +Ou +Vv +Iz +Iz +GJ +Wn +Wn +Wn +Wn +fB +XM +fB +XF +jl +wa +xG +lj +jj +WB +km +Ej +lj +fB +pR +fB +nX +nX +nX +nX +nX +kY +nX +pY +gp +gp +zI +wM +zI +gp +Nj +KO +IR +BX +Zv +sc +tj +Zv +TR +Gi +Zv +In +sO +KO +Nj +tl +gp +KK +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Qv +Qv +Qv +Qv +aa +aa +aa +aV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(151,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 +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 +aa +aa +gp +xu +Sv +Md +Qf +Ew +Ew +Ew +Mg +JW +fB +jF +lA +fB +fB +zi +fB +fB +fB +fB +zi +fB +jF +gY +hK +yf +ZC +fB +XM +fB +XF +jl +jl +xG +lj +jn +jH +kn +MF +lj +yF +oJ +yD +ml +nv +pI +Ra +oR +Dn +oD +pY +gp +aa +Ml +Ml +QK +gp +Nj +KO +UZ +sk +Zv +Xa +Lk +Zv +Sw +sW +Zv +Lm +FR +KO +Nj +tn +gp +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +Qv +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(152,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 +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 +aa +aa +gp +xu +kM +ud +MN +UA +Cw +Cw +Ap +Iu +pR +pR +pR +pR +pR +pR +pR +pR +pR +TJ +pR +pR +pR +pR +pR +pR +Qi +Il +XM +yX +XF +pU +jl +xG +lj +lj +Ds +Yl +Yl +CX +fB +pR +dj +nX +Dl +HA +LF +Zb +DQ +Yp +pY +gp +aa +aa +aa +aa +gp +Nj +KO +WH +KO +KO +YL +KO +KO +Qe +KO +KO +Ri +KO +KO +Nj +gp +ts +tB +tB +tB +tB +tB +tB +uI +tB +tB +tB +tB +tg +gp +KK +Qv +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(153,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 +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 +aa +aa +gp +xu +FF +ZX +aY +Kr +Qf +Qt +Kr +JW +fB +fB +fB +fB +fB +fB +Oj +fB +fB +fB +fB +fB +fB +ha +hL +hL +ZC +yL +Fq +za +XF +jm +Hr +OA +XF +jp +jJ +Vx +kH +FW +ZC +Qi +ZC +nX +oZ +cZ +cZ +cZ +ZD +bz +pY +gp +gp +gp +gp +gp +gp +gp +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Nj +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +gp +uS +KK +uT +gp +gp +gp +Qv +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(154,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 +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 +aa +aa +gp +xu +Rh +MN +Kr +Kr +Qf +Qf +Rl +YS +Qm +Qm +Iz +YK +YK +YK +Iz +ol +Xv +Xv +Xv +ol +ol +XQ +nw +XQ +SW +eP +kF +Go +XF +gW +Nd +hW +XF +XF +Pb +kr +TK +FW +lK +md +mn +cI +pf +pf +pf +pf +pf +pf +UQ +JD +JD +JD +JD +UQ +UQ +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Ml +Ml +tl +KK +gp +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(155,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 +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 +aa +aa +gp +xu +OX +MN +QS +LK +Qf +Qf +RS +YS +aa +aa +gR +Tx +aO +Fn +Zw +JS +cb +PN +XL +bW +cu +cP +dp +eg +Hq +hT +XB +lg +Ja +CU +gX +gX +io +XF +ES +jA +lI +mh +lL +Sk +kr +nu +Ua +ob +ox +oS +pj +pf +YU +Wy +SL +Jf +Jf +Qa +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +Ml +tm +KK +Qv +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(156,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 +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 +aa +aa +yE +YS +YS +TW +YS +YS +fc +fc +YS +YS +gp +gp +gR +Cz +LM +mo +Zw +ap +fH +Mk +CQ +bX +lX +cU +Tu +dq +Hq +eR +ZU +BT +Ja +hd +PF +PF +iy +XF +jK +Qg +lQ +mi +lM +qi +QH +Tn +qd +oc +qz +VL +pk +uJ +aM +XX +Pf +NI +NI +Qb +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +Qv +aa +aa +aa +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(157,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 +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 +aa +aa +aa +aa +aa +CW +aa +aa +aa +aa +aa +aa +aa +gp +gR +Mz +oV +Xu +Zw +ay +gq +en +en +bY +cc +Cj +dr +eh +Hq +eV +ft +gf +Zs +he +Yj +Yj +iz +KJ +jL +zF +Ie +jg +lN +me +mp +jg +hE +od +oy +VL +pl +uJ +Rs +Ur +Kv +NI +NI +Qb +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +Qv +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(158,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +Zw +ba +Zw +Rp +Hq +hV +ap +Mb +bW +PL +Cj +bG +fL +Hq +ac +kI +gg +PR +hf +UN +PF +iA +KJ +jM +kv +kL +FW +Yh +mf +lO +jg +nx +pS +PD +VC +pm +uJ +Lt +Ga +NI +NI +Jx +Qb +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +uT +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(159,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +aE +bb +hP +bK +Tb +Zw +Zw +Zw +bi +UO +Cj +dQ +ej +Hq +ik +kJ +lk +Ja +hg +PF +OS +iB +KJ +jN +cv +zN +FW +lP +jA +mx +jg +ny +oe +oz +oT +tF +pf +Ky +JV +NI +NI +OZ +Gm +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +gp +gp +gp +gp +Qv +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(160,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +Df +rm +OW +rm +UE +rm +rm +bI +Zw +RE +df +TX +WF +bW +BS +Fg +gi +Jn +hh +PF +hX +iC +KJ +jO +kv +kL +jg +FW +mg +FW +jg +nz +qe +tu +wU +tu +pf +JQ +JV +NI +NI +OZ +Vy +UQ +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ml +tl +KK +uT +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(161,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +pu +VJ +dc +dc +CM +QO +XN +QO +eQ +Ii +dg +dZ +Xj +gh +fi +ZU +gj +gA +IU +PF +hY +kD +KJ +jP +zF +lI +lr +Vx +DJ +Vx +mU +Vx +Vx +Vx +oU +IX +Dj +ZB +JV +NI +NI +OZ +rb +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +WL +Ml +JI +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +Qv +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(162,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +aJ +gO +bn +rm +rm +kB +gl +fT +Zw +cz +dh +hu +eu +bW +fj +UW +oY +qg +Mf +Mf +hZ +Fx +KJ +jQ +lR +kX +kX +lR +lR +lR +Lh +dF +dF +Qg +Qg +Ha +Sl +PM +HG +HG +Oz +Xd +YT +UQ +gp +Qv +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Pn +eF +iR +gp +gp +gp +gp +gp +aa +aa +aa +gp +gp +gp +Qv +Ml +tm +KK +Qv +aa +aa +aa +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(163,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gR +bo +bo +bo +Im +bt +bo +bo +bo +Tb +fh +Xl +qA +ev +Hq +Xo +ZU +lw +Ja +hj +hv +jr +hv +KJ +jR +lt +oW +NY +NY +NY +NY +GQ +NY +og +oC +GQ +YZ +Dj +GV +OZ +NI +NI +JV +Qb +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +dd +Ml +zo +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +Qv +aa +aa +aa +uT +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(164,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 +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 +aa +aa +yE +gp +gp +Qv +gp +gp +gp +gp +gp +gp +gp +gp +gR +NL +aW +UK +cq +de +Ko +aW +jq +Tb +cF +dh +hu +ew +bW +fj +ZU +oY +Ja +hk +CY +KE +hw +KJ +jg +mK +kZ +mK +jg +Ry +Th +mV +oI +ig +tx +CF +tx +qm +Sj +OZ +NI +NI +JV +Qb +UQ +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ml +tl +KK +gp +aa +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(165,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 +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 +aa +aa +aa +aa +aa +Qv +Qv +Qv +Ml +Ml +Qv +Qv +Qv +Qv +gR +xn +xn +Vd +iu +bH +Tk +xn +xn +Tb +cH +dm +bJ +ex +bW +fj +ZU +oY +Ja +hl +hx +Os +iE +KJ +jS +Vx +oX +Vx +lW +Ry +my +mW +nD +ig +oE +qJ +pn +qm +Ep +OZ +NI +NI +JV +Gm +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +uT +gp +gp +gp +Qv +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(166,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 +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 +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +aa +aa +aa +qy +gR +gR +Gb +kW +iu +bH +qW +Gb +Tb +Tb +Hq +Hq +bW +bW +bW +iD +ZU +gm +Ja +hm +hy +ia +hy +KJ +kc +kA +lb +jA +Wv +oI +mz +mX +XY +ig +Ul +rd +po +qm +XO +ht +NI +NI +Rb +Qb +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +Qv +aa +aa +aa +uT +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,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 +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 +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +aa +aa +aa +gp +gR +bS +UK +cq +de +Ko +HB +gR +ci +dn +Ik +eL +pi +Xp +fm +fF +gn +gE +Gt +hz +ib +iF +Gt +kd +jA +gy +jA +lY +oI +mA +mY +Nm +ig +oF +rd +Mw +qm +LN +NI +NI +Hw +NI +MQ +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tm +KK +Qv +uT +aa +aa +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +aa +aa +gp +gR +VV +fq +iu +bH +MM +VV +gR +ck +dO +fp +eK +aF +aF +fm +fG +aF +gF +XF +hA +id +hA +XF +ke +jA +WY +lT +LW +oI +mB +mZ +VG +ig +oG +rd +LG +qm +Fr +NI +NI +Fy +GP +Tq +JD +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tl +KK +KK +Qv +uT +gp +gp +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +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 +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 +aa +aa +"} +(169,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +aa +gp +gR +Gb +kW +iu +bH +qW +Gb +gR +bs +ed +Ik +Kg +ez +fV +fV +ZU +aF +Lr +XF +hB +ii +iG +XF +kf +NY +nF +NY +lZ +Ry +mC +na +En +ig +oH +lD +pr +qm +ks +Va +Va +Fh +Ia +VO +UQ +gp +Qv +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Qv +Ml +tn +gp +KK +KK +KK +KK +KK +KK +KK +gp +Qv +Qv +gp +gp +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,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 +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 +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +aa +gp +gR +ax +UK +cq +de +Ko +ax +gR +HQ +HQ +NR +xr +cs +ix +TP +aF +aF +Vw +XF +EY +EY +EY +XF +FW +FW +Dj +FW +FW +XR +XR +Ic +Ic +qm +Wx +Wx +qm +qm +UQ +JD +JD +JD +JD +UQ +UQ +gp +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +uT +Ml +gp +uX +gp +Aw +Pc +Pc +Pc +Aw +KK +gp +uT +ng +LA +LA +VK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +aa +gp +gR +xn +Vd +Iy +HE +Tk +xn +gR +RH +Dm +Po +Se +cs +ac +fn +go +Kb +gG +XF +hC +hC +hC +XF +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Qv +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +Ml +Ml +Ml +Hv +gp +ts +wR +AC +AR +Bf +Pc +SU +KK +DE +KK +Ix +sP +iR +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gR +Gb +Gb +kW +qW +Gb +Gb +gR +WU +MW +QY +Jw +cs +eM +fo +dz +dz +XS +gp +gp +gp +gp +vh +vh +vh +vh +vh +vh +aa +aa +vh +vh +vh +vh +vh +vh +aa +vh +vh +vh +vh +vh +vh +aa +Qv +Qv +uT +Qv +Qv +Qv +Qv +Qv +uT +Qv +Qv +Qv +gp +Qv +Qv +Qv +gp +Qv +Qv +Qv +Qv +uT +Qv +Qv +Qv +uT +Ml +JF +Ml +BG +Tc +Tc +Uy +AD +Br +Bg +pp +Pg +Bl +Ki +KK +Uh +PC +iR +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gR +ax +ax +UK +NP +ax +ax +gR +DP +FD +TB +Hu +cs +eN +fn +fI +gx +cs +gp +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 +aa +aa +aa +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ml +Kh +Ml +Tc +SC +wG +Uy +wB +Ge +YV +wi +By +Vr +Bl +KK +Uh +PC +iR +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gR +gR +gR +gR +gR +gR +gR +gR +cB +cB +cB +cB +cs +eO +cs +XS +XS +cs +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ml +QN +Ml +Tc +EW +BH +AK +wS +Ax +wS +BJ +Nv +Kq +Bl +Ck +Kt +CV +iR +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +gp +gp +vh +qT +qT +qT +qT +uM +aa +vh +qT +qT +vh +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +KK +KK +Tc +OQ +XE +Uy +Tw +AF +Bq +pp +BB +NN +Bl +Ck +Ck +KK +ng +Qv +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +vh +vh +vh +vh +gp +aa +gp +vh +vh +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ea +wE +xB +Uy +HS +Yn +Uy +AM +AG +VX +pp +Qj +Qj +pp +Qz +wE +DK +Qv +uT +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +gp +gp +gp +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +wE +Iv +Uy +Uy +Uy +Uy +Aw +Bw +Aw +pp +pp +pp +pp +DS +wE +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +KK +wE +GG +wE +yr +Ih +NT +Bh +Aa +Pd +NT +ZT +yr +wE +GG +wE +KK +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +KK +KK +wE +TV +XC +TV +To +AV +AV +Rf +Ui +Ui +Wh +TV +XC +TV +wE +KK +KK +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +yY +yY +yY +yY +yY +AB +Al +Al +AE +Al +Al +BC +BL +BL +BL +BL +BL +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +zX +Vg +QE +DW +yY +yr +Al +Al +wv +Al +Al +BC +BL +Tl +wl +Rz +Bk +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +Ma +Bt +zG +OL +wA +Aa +wv +wv +Rf +wv +wv +Aa +BE +BK +Fz +Fz +Cl +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +KK +yY +wO +AJ +Ba +BP +yY +wK +At +KS +Aa +Gg +Bi +Do +BL +wJ +AS +Jj +wg +BL +KK +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +WR +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +yY +Bj +Bs +Bj +yY +yY +Rk +Rk +Rk +AH +Rk +Rk +Rk +BL +Bx +EM +Xs +EM +Bx +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,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 +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 +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 +gp +aa +gp +aa +aa +aa +aa +aa +aa +aa +WR +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 +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +Fe +wm +wn +wm +ws +yY +BY +wP +wT +AY +wT +wP +BY +BL +zO +fU +NM +Si +uA +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +TH +wm +wn +wm +wt +yY +Fi +eb +Qw +AZ +DO +Bv +Zn +BL +HP +wQ +EB +ww +Au +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +Ea +yY +wm +wn +wf +wn +wu +yY +wy +WQ +BF +ZP +AO +fR +wy +BL +Bb +EB +BQ +Hz +BA +BL +DK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,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 +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 +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 +gp +aa +gp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +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 +gp +KK +yY +wm +wn +wm +wn +wm +yY +wP +WQ +Rk +Rk +Rk +Ne +wP +BL +Cb +ww +EB +wQ +wk +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +Bu +BN +wm +wo +wd +yY +Wt +eb +AN +Bc +Bm +Bv +Dd +BL +BO +BD +BD +BD +BI +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +yY +yY +yY +yY +yY +yY +yY +AO +Az +Rk +wN +Rk +Az +BF +BL +BL +BL +BL +BL +BL +BL +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +KK +KK +Zm +KK +KK +Rk +BM +wP +AA +AP +Bd +Bo +Bz +wP +BM +Rk +KK +KK +Zm +KK +KK +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +KK +Rk +Rk +py +RZ +AQ +Ai +AQ +RZ +xJ +Rk +Rk +KK +gp +gp +gp +gp +gp +aa +aa +aa +WR +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 +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 +aa +aa +aa +aa +aa +aa +"} +(193,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +KK +KK +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +Rk +KK +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +WR +aa +aa +aa +aa +aa +aa +gp +KK +KK +KK +KK +KK +Zm +KK +KK +KK +KK +KK +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,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 +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 +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 +gp +aa +gp +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 +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 +WR +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,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 +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 +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 +gp +gp +gp +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,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 +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 +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 +gp +gp +xs +Sf +xs +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +Lz +xs +YC +xs +Lz +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +xs +xs +RT +Sf +MR +xs +xs +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Be +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 +aa +gp +qE +qE +Ng +RP +RP +RP +IH +qE +qE +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Yg +gp +gp +gp +xs +GC +VU +RP +Pp +RP +IQ +Kc +xs +gp +gp +gp +Yg +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +qE +qE +ZV +RP +RP +RP +Ow +qE +qE +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +xs +xs +FG +DT +Dr +JA +JA +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gp +gp +Lz +xs +AW +xs +Lz +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,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 +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 +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 +gp +gp +xs +qE +xs +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,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 +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 +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 +gp +gp +gp +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,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 +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 +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 +gp +gp +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,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 +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 +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 +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,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 +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 +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 +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,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 +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 +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 +Yg +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,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 +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 +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 +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 +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 +aa +aa +wz +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 +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 +aa +aa +aa +aa +aa +aa +aa +"} +(249,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/_maps/stations/dawn_old.dmm b/_maps/stations/dawn_old.dmm new file mode 100644 index 000000000000..2897ff263ec4 --- /dev/null +++ b/_maps/stations/dawn_old.dmm @@ -0,0 +1,79000 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/space/basic, +/area/space) +"ab" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"ac" = ( +/turf/closed/wall, +/area/science/research) +"ad" = ( +/turf/closed/wall, +/area/command) +"ae" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command) +"af" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/turf/open/floor/plasteel, +/area/command) +"ag" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/command) +"ah" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel, +/area/command) +"ai" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/computer/security, +/turf/open/floor/plasteel, +/area/command) +"aj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/computer/communications, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"ak" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/white/side, +/area/command) +"al" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/white/side, +/area/command) +"am" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/turf/open/floor/plasteel, +/area/command) +"an" = ( +/obj/structure/table/reinforced, +/obj/item/storage/lockbox/medal, +/turf/open/floor/plasteel, +/area/command) +"ao" = ( +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = -32 + }, +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/turf/open/floor/plasteel, +/area/command) +"ap" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/xenobiology) +"aq" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/hand_tele, +/turf/open/floor/plasteel, +/area/command) +"ar" = ( +/turf/open/floor/plasteel, +/area/command) +"as" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"at" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command) +"au" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command) +"av" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"aw" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/command) +"ax" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"ay" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"az" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/command) +"aA" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid, +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plasteel, +/area/command) +"aB" = ( +/obj/structure/displaycase/captain, +/turf/open/floor/plasteel, +/area/command) +"aD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/command) +"aE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aF" = ( +/turf/open/floor/plasteel/white, +/area/science/research) +"aG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command) +"aH" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/stamp/captain, +/turf/open/floor/plasteel, +/area/command) +"aI" = ( +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel, +/area/command) +"aJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"aK" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/disk/nuclear, +/turf/open/floor/plasteel, +/area/command) +"aL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/command) +"aM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"aO" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"aP" = ( +/obj/structure/fireaxecabinet{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/command) +"aQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command) +"aR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command) +"aS" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase, +/obj/item/assembly/flash, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/command) +"aT" = ( +/obj/structure/chair/comfy/black{ + dir = 1; + name = "Command Station" + }, +/obj/effect/landmark/start/captain, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 29; + pixel_y = 6; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command) +"aU" = ( +/obj/structure/table/reinforced, +/obj/item/hand_tele, +/obj/item/melee/chainofcommand, +/turf/open/floor/plasteel, +/area/command) +"aV" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"aW" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"aY" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/command) +"aZ" = ( +/obj/structure/cable, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command) +"ba" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"bb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bc" = ( +/turf/closed/wall, +/area/maintenance/fore) +"bd" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"be" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bg" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall, +/area/command) +"bi" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bj" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/command) +"bk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bl" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/command) +"bn" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/xenobiology) +"bp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command) +"bq" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"br" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bs" = ( +/obj/machinery/monkey_recycler, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bt" = ( +/obj/machinery/processor/slime, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bu" = ( +/turf/closed/wall, +/area/cargo/storage) +"bv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"bw" = ( +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"by" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"bz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"bA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"bB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"bC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/command) +"bD" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"bF" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/rnd/bepis, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bG" = ( +/obj/machinery/smartfridge/extract, +/obj/machinery/camera{ + c_tag = "Xenobiology South" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bH" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bI" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bJ" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/research) +"bK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/computer/shuttle_flight/mining, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/mecha_part_fabricator/cargo, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bN" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/vendor/mining, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bO" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay North" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/mineral/ore_redemption{ + input_dir = 8; + output_dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "supply dock loading door" + }, +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"bR" = ( +/turf/closed/wall, +/area/security/brig) +"bS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bU" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "supply dock loading door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"bV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bW" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/multitool, +/turf/open/floor/plasteel/white, +/area/science/research) +"bX" = ( +/obj/structure/table, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel/white, +/area/science/research) +"bY" = ( +/obj/machinery/computer/scan_consolenew, +/turf/open/floor/plasteel/white, +/area/science/research) +"bZ" = ( +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/white, +/area/science/research) +"ca" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command) +"cb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/science/research) +"cc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/science/xenobiology) +"cd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ce" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cf" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"cg" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"ch" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/cargo/storage) +"ci" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit/telecomms/server, +/area/science/research) +"cj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ck" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/rnd/server, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/research) +"cm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"co" = ( +/obj/structure/rack, +/obj/item/storage/box/teargas{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/camera{ + c_tag = "Security Office North"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cp" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cq" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay) +"cr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"cs" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"ct" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "rnd"; + name = "Shutters Control Button"; + pixel_x = -24; + pixel_y = -6 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -27; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"cy" = ( +/obj/structure/closet/secure_closet/captains, +/turf/open/floor/plasteel, +/area/command) +"cz" = ( +/obj/structure/table, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/machinery/camera{ + c_tag = "Research and Development" + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"cA" = ( +/obj/structure/sign/warning/vacuum/external, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"cB" = ( +/obj/structure/table, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"cD" = ( +/turf/open/floor/plasteel, +/area/cargo/storage) +"cF" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/mecha_part_fabricator{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cG" = ( +/obj/machinery/suit_storage_unit/captain, +/turf/open/floor/plasteel, +/area/command) +"cH" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plasteel/white, +/area/science/research) +"cI" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall/r_wall, +/area/medical/medbay) +"cK" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/contraband/armory, +/obj/effect/spawner/random/contraband/armory, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/white, +/area/science/research) +"cQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"cR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cS" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cT" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"cU" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/science/research) +"cV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cW" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"cY" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/research) +"cZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"da" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"db" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"dc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"de" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"df" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"dh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"dk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dl" = ( +/obj/machinery/door/airlock/command{ + name = "Armory"; + req_access_txt = "3" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dm" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/research) +"do" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dp" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/research) +"dq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dr" = ( +/obj/machinery/rnd/destructive_analyzer, +/turf/open/floor/plasteel, +/area/science/research) +"ds" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dt" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"du" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"dw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dx" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"dy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"dz" = ( +/turf/open/floor/plasteel, +/area/science/research) +"dA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"dB" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dC" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dD" = ( +/obj/machinery/camera{ + c_tag = "Fore Primary Hallway" + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/fore) +"dH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"dK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"dM" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/research) +"dP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dQ" = ( +/obj/machinery/rnd/production/techfab/department/science, +/turf/open/floor/plasteel, +/area/science/research) +"dR" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"dS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dT" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"dV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dY" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/engineering/main) +"dZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"ea" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ed" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/server, +/area/science/research) +"ef" = ( +/obj/structure/table, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eg" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/pen, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eh" = ( +/obj/machinery/computer/rdconsole, +/turf/open/floor/plasteel, +/area/science/research) +"ei" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ej" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"ek" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "31" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"el" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"en" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"eo" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ep" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"eq" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/item/gun/energy/ionrifle, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/ai_monitored/security/armory) +"er" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/central) +"es" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"et" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 2 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eu" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/white, +/area/science/research) +"ev" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/white, +/area/science/research) +"ew" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = -3; + pixel_y = 6 + }, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/white, +/area/science/research) +"ex" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/turf/open/floor/plasteel/white, +/area/science/research) +"ey" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"ez" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eC" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"eD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"eE" = ( +/obj/machinery/camera{ + c_tag = "Cargo Recieving Dock"; + dir = 4 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "QMLoaddoor2"; + layer = 4; + name = "Loading Doors"; + pixel_x = -24; + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/flasher{ + id = "PCell 3"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eJ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eL" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eM" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/research) +"eN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research) +"eO" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "Toxins Launcher Bay Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/research) +"eP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/research) +"eQ" = ( +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"eR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/shower{ + pixel_y = 18 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eT" = ( +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/cargo/storage) +"eV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"eW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"eX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fd" = ( +/obj/machinery/firealarm/directional/west, +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"fe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ff" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fg" = ( +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fh" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/side, +/area/science/research) +"fj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"fk" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"fl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/storage/crayons, +/obj/machinery/camera{ + c_tag = "Dormitory" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/science/research) +"fo" = ( +/obj/machinery/door/window/northleft{ + name = "Mass Driver Door" + }, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"fp" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Server Room"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/science/research) +"fq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fr" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ft" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fu" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fv" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"fw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = 32; + pixel_y = 0 + }, +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fz" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fB" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"fE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"fF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"fH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"fI" = ( +/obj/machinery/doppler_array{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"fK" = ( +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4"; + security_level = 6 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"fL" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/research) +"fM" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/closet/secure_closet/miner, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fQ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"fS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fT" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"fV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fW" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"fX" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"fY" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ga" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ge" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/closet/firecloset, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"gg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/science/research) +"gh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"gi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"gj" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/science/research) +"gk" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"gl" = ( +/obj/machinery/vending/wardrobe/gene_wardrobe, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"gm" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"gn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"go" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"gp" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"gq" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gr" = ( +/obj/structure/table, +/obj/item/taperecorder, +/obj/item/storage/box/evidence, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gs" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/hydroponics) +"gw" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"gx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + dir = 2; + id = "toxinsdriver"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/science/research) +"gy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gz" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"gA" = ( +/obj/machinery/door/airlock/research{ + name = "Toxins Lab"; + req_access_txt = "7" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gB" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gD" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gE" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/research) +"gF" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/white, +/area/science/research) +"gG" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall, +/area/science/research) +"gH" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gI" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gJ" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gK" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gM" = ( +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gN" = ( +/obj/structure/table, +/obj/item/storage/firstaid, +/obj/item/multitool, +/obj/item/clothing/head/soft, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gP" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = 32; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"gR" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"gS" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"gT" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/storage/secure/safe{ + pixel_y = 28 + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gU" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office" + }, +/obj/item/camera/detective, +/obj/item/taperecorder, +/turf/open/floor/carpet, +/area/security/detectives_office) +"gV" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"gW" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gY" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ha" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hb" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hd" = ( +/obj/structure/tank_dispenser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"he" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hf" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hg" = ( +/obj/structure/table/reinforced, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hh" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hi" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hj" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hk" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hl" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hm" = ( +/obj/structure/sign/warning/biohazard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"hn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"ho" = ( +/obj/structure/chair/stool, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_y = 27 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hp" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hq" = ( +/obj/structure/chair, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hs" = ( +/turf/open/floor/plating, +/area/maintenance/starboard) +"ht" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3" + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"hu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"hv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hw" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hx" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"hz" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/airlock_sensor/incinerator_ordmix, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, +/turf/open/floor/engine, +/area/science/mixing) +"hA" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"hB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"hC" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"hD" = ( +/obj/machinery/vending/cola, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"hE" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"hG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hH" = ( +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hI" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/detective, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/security/detectives_office) +"hJ" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/carpet, +/area/security/detectives_office) +"hK" = ( +/obj/structure/table, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hM" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"hP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hQ" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hS" = ( +/obj/machinery/airalarm{ + pixel_y = 23 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"hT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hU" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"hV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1" + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Containment Pen"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"hW" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hY" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"hZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"ia" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/turf/open/floor/engine, +/area/science/mixing) +"ib" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/science/mixing) +"ic" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"id" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior, +/turf/open/floor/engine, +/area/science/mixing) +"ie" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ig" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ii" = ( +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"ij" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ik" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"il" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"im" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"in" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ip" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"ir" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"is" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/hallway/secondary/exit) +"it" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"iu" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iv" = ( +/obj/structure/closet/crate{ + name = "Gold Crate" + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_y = 2 + }, +/obj/item/stack/sheet/mineral/gold{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/storage/belt/champion, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iw" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ix" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iy" = ( +/obj/machinery/light, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iz" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iA" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iB" = ( +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iD" = ( +/obj/machinery/camera{ + c_tag = "Research Division Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"iE" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/button/ignition/incinerator/ordmix, +/obj/machinery/button/door/incinerator_vent_ordmix, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/hidden, +/turf/open/floor/engine, +/area/science/mixing) +"iG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"iH" = ( +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/central"; + dir = 4; + name = "Central Hall APC"; + pixel_x = 25 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) +"iI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iM" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"iN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"iO" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iP" = ( +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Airlock" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"iR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"iT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/maintenance/port) +"iU" = ( +/turf/closed/wall, +/area/maintenance/port) +"iV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"iW" = ( +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"iX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"iY" = ( +/obj/item/coin/silver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/coin/silver{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/coin/silver{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/coin/silver{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/coin/silver{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/closet/crate{ + name = "Silver Crate" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iZ" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ja" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jb" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jc" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/exit) +"je" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"jf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jg" = ( +/turf/closed/wall, +/area/medical/medbay) +"jh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ji" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"jj" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jl" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"jm" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"jn" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jp" = ( +/obj/structure/table, +/obj/item/storage/box/gloves, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"js" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jt" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"ju" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jv" = ( +/obj/structure/cable, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jw" = ( +/obj/structure/safe, +/obj/item/clothing/head/bearpelt, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/gun/ballistic/revolver/russian, +/obj/item/ammo_box/a357, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jx" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"jy" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jz" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jA" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/mineral/stacking_machine{ + stack_amt = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jD" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + req_access_txt = "53" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jE" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"jF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"jH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"jI" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"jJ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jL" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jM" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jN" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/storage/firstaid/regular{ + pixel_y = 3 + }, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jQ" = ( +/obj/structure/closet/wardrobe/white, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jR" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jS" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"jT" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"jW" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"jZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ka" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kc" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kd" = ( +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = -5; + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ke" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kf" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = 28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kg" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kh" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"ki" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"kj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"kl" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"km" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/item/reagent_containers/hypospray, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"kn" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ko" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kp" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port) +"kq" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ks" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ku" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"kv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kx" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"kA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kD" = ( +/obj/machinery/camera{ + c_tag = "Toxins Lab"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"kE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"kF" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"kG" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"kH" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kI" = ( +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"kJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research) +"kL" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kM" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_mission) +"kN" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kO" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"kQ" = ( +/obj/machinery/disposal, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"kR" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"kS" = ( +/turf/closed/wall, +/area/service/janitor) +"kU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"kV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"kW" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"kX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"kZ" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ld" = ( +/obj/machinery/camera{ + c_tag = "Escape"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"le" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"lj" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"lk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"ll" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"lm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"ln" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Custodial Closet" + }, +/obj/item/paper/guides/recycler, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"lp" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"lq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/service/janitor) +"lr" = ( +/obj/machinery/camera{ + c_tag = "Medbay North"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ls" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/service/janitor) +"lt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lu" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lw" = ( +/obj/structure/closet/wardrobe/science_white, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"ly" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lz" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lC" = ( +/obj/structure/cable, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"lD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/spawner/xmastree, +/turf/open/floor/plasteel, +/area/service/bar) +"lE" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"lF" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway North"; + dir = 8; + network = list("MiniSat"); + start_active = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lG" = ( +/obj/structure/table, +/obj/item/storage/box/lights/bulbs, +/obj/item/storage/box/lights/tubes, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/turf/open/floor/plasteel, +/area/service/janitor) +"lH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/service/janitor) +"lI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Medbay Foyer" + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lP" = ( +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/medical/medbay) +"lU" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lV" = ( +/obj/structure/closet/l3closet/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"lW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lX" = ( +/obj/effect/landmark/start/geneticist, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/white, +/area/science/research) +"lY" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/table/reinforced, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -10; + pixel_y = 9 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"lZ" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount{ + pixel_y = -28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ma" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/janitor) +"mb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Bridge"; + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command) +"md" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"me" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 7; + pixel_y = 16 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mf" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mg" = ( +/obj/machinery/door/airlock/medical{ + name = "Medbay Reception"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ml" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/vending/snack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mq" = ( +/turf/open/floor/plasteel, +/area/service/janitor) +"mr" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/service/janitor) +"ms" = ( +/obj/structure/table, +/obj/machinery/airalarm/directional/east, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/service/janitor) +"mt" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"mu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 1 + }, +/area/hallway/secondary/exit) +"mv" = ( +/obj/structure/chair/comfy/beige, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"mw" = ( +/obj/structure/chair/comfy/beige, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"mx" = ( +/obj/machinery/vending/chetverochka/pharma, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"my" = ( +/obj/structure/table/reinforced, +/obj/item/wrench/medical, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mz" = ( +/obj/machinery/atmospherics/components/unary/cryo_cell, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mB" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mC" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + on = 1; + target_temperature = 80 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mD" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mE" = ( +/turf/closed/wall, +/area/maintenance/aft) +"mF" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"mG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"mH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"mI" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/service/janitor) +"mJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/janitor) +"mK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay) +"mL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "26" + }, +/turf/open/floor/plating, +/area/service/janitor) +"mM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mN" = ( +/turf/closed/wall, +/area/service/bar) +"mO" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/service/bar) +"mP" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mQ" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "bar" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/bar) +"mR" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"mS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mU" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mV" = ( +/obj/machinery/door/airlock/medical/glass{ + id_tag = null; + name = "Cryo"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"mZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"na" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"nc" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"nd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ne" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/service/bar) +"nf" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel, +/area/service/bar) +"ng" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"nh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"nj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter/greyscale, +/turf/open/floor/carpet, +/area/hallway/secondary/exit) +"nk" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nl" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/service/bar) +"nm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nn" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"no" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Central Access" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"np" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/service/bar) +"nq" = ( +/obj/structure/sign/warning/securearea{ + desc = "Under the painting a plaque reads: 'While the meat grinder may not have spared you, fear not. Not one part of you has gone to waste... You were delicious.'"; + icon_state = "monkey_painting"; + name = "Mr. Deempisi portrait"; + pixel_x = -28; + pixel_y = -4 + }, +/obj/machinery/vending/boozeomat, +/obj/machinery/button/curtain{ + id = "bar"; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/bar) +"nr" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/wood, +/area/service/bar) +"ns" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "bar" + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/obj/structure/curtain/cloth/fancy/mechanical{ + id = "bar" + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/medical_kiosk, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/service/hydroponics) +"nw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + name = "Research and Development Desk"; + req_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/research) +"nx" = ( +/obj/structure/table, +/obj/item/storage/box/beakers, +/obj/item/storage/box/beakers, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ny" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/camera{ + c_tag = "Chemistry" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nz" = ( +/obj/machinery/smartfridge/chemistry, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -6; + pixel_y = 13 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"nF" = ( +/obj/machinery/camera{ + c_tag = "Surgery"; + dir = 8 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"nG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nH" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/camera, +/turf/open/floor/carpet, +/area/hallway/secondary/exit) +"nI" = ( +/obj/structure/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"nJ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/janitorialcart, +/obj/item/mop, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"nK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"nL" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"nM" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/service/janitor) +"nN" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port) +"nO" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"nP" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plating, +/area/maintenance/port) +"nR" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/bar) +"nT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"nU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/saltshaker, +/obj/item/reagent_containers/food/condiment/peppermill, +/obj/item/kitchen/fork, +/turf/open/floor/plasteel, +/area/service/bar) +"nV" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/bar) +"nX" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet, +/area/service/bar) +"nY" = ( +/obj/structure/table/reinforced, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/service/bar) +"nZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/wood, +/area/service/bar) +"oa" = ( +/obj/item/radio/intercom{ + pixel_x = 25 + }, +/turf/open/floor/wood, +/area/service/bar) +"ob" = ( +/obj/machinery/chem_dispenser, +/obj/item/reagent_containers/glass/beaker/large, +/obj/machinery/button/door{ + desc = "A remote control-switch for privacy shutters."; + id = "chemistry_shutters"; + name = "Privacy Shutters"; + pixel_x = -24; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oc" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/chemist, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"od" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oe" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"og" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Medbay South"; + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"oj" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/maintenance/port) +"ok" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"ol" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"om" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"on" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/exit) +"oo" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + name = "Hydroponics Desk"; + req_one_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"op" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oq" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"or" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/carpet, +/area/service/bar) +"ot" = ( +/turf/open/floor/wood, +/area/service/bar) +"ou" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/cultivator, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ov" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/hatchet, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ow" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ox" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oy" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oD" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 8 + }, +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oE" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/brute{ + pixel_x = -7; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = -7; + pixel_y = -2 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 10; + pixel_y = -2 + }, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oF" = ( +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oG" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oH" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay) +"oJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"oK" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"oL" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle North" + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oM" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"oO" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/chem_dispenser/drinks/beer{ + density = 0; + dir = 8; + pixel_x = 24 + }, +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"oP" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oR" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oS" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"oY" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"oZ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/bar) +"pa" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/bar) +"pb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/hardhat/cakehat, +/turf/open/floor/carpet, +/area/service/bar) +"pc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/bar) +"pd" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/hallway/secondary/exit) +"pe" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"pf" = ( +/obj/machinery/smartfridge/food, +/turf/open/floor/plasteel, +/area/service/bar) +"pi" = ( +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"pj" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"pk" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"pl" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/screwdriver, +/obj/item/radio/headset/headset_med, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"pm" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"pn" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/clothing/suit/straight_jacket, +/obj/item/gun/syringe, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"po" = ( +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"pp" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"pq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cold Chamber"; + network = list("burnchamber") + }, +/turf/open/space/basic, +/area/space) +"pr" = ( +/obj/structure/table, +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/storage/box/beakers{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/item/hand_labeler, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"ps" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"pt" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"pu" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"pv" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"px" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/plasteel, +/area/service/bar) +"pA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"pB" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"pC" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/bar) +"pD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"pF" = ( +/obj/structure/table/reinforced, +/turf/open/floor/carpet, +/area/service/bar) +"pG" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pH" = ( +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pJ" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/aft) +"pK" = ( +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"pL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"pM" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"pN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"pO" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"pP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"pQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"pR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/closed/wall, +/area/service/bar) +"pS" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"pT" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Quarters"; + req_access_txt = "58" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pU" = ( +/obj/machinery/door/airlock{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/bar) +"pV" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pW" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pX" = ( +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pY" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pZ" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qa" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"qc" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qd" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southright{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"qe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westright{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"qf" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"qg" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qh" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qj" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qk" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"ql" = ( +/obj/machinery/oven, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qm" = ( +/obj/machinery/griddle, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qn" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "28" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/bar) +"qp" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"qq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter, +/turf/open/space/basic, +/area/maintenance/aft) +"qr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qt" = ( +/obj/machinery/airalarm/directional/west, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qv" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qx" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/research) +"qC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qE" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/aft) +"qF" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 25 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"qG" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/aft) +"qH" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qI" = ( +/obj/structure/kitchenspike, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/item/food/meat/slab/monkey, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qJ" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qK" = ( +/obj/machinery/gibber, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"qL" = ( +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qM" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qN" = ( +/obj/structure/table, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qO" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1; + network = list("SS13") + }, +/obj/item/holosign_creator/robot_seat/bar{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/holosign_creator/robot_seat/restaurant{ + pixel_y = -5; + pixel_x = 4 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qP" = ( +/turf/open/floor/plating/airless, +/area/space) +"qQ" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qR" = ( +/obj/machinery/processor, +/obj/machinery/light/small, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"qS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"qT" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"qU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"qV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"qW" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"qX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ra" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Cargo Office" + }, +/obj/machinery/cell_charger, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"rd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/service/bar) +"re" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/service/bar) +"rf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rg" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"rh" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"ri" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rj" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"rk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"rm" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ro" = ( +/turf/closed/wall, +/area/engineering/main) +"rp" = ( +/obj/structure/reagent_dispensers/fueltank/large, +/turf/open/floor/plasteel, +/area/engineering/main) +"rq" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"rr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/maintenance/aft) +"rs" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ru" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/maintenance/aft) +"rv" = ( +/obj/structure/table, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stock_parts/cell/emproof{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rw" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rx" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/airalarm/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"ry" = ( +/obj/machinery/power/smes{ + charge = 1.5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rz" = ( +/obj/machinery/power/smes{ + charge = 1.5e+006 + }, +/obj/machinery/camera{ + c_tag = "SMES Room" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rA" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 25 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rC" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rD" = ( +/obj/machinery/vending/cola, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rE" = ( +/obj/machinery/vending/snack, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rG" = ( +/obj/structure/closet/secure_closet/atmospherics, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rH" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/machinery/air_sensor/carbon_tank, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"rI" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/air_sensor/nitrous_tank, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"rJ" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/air_sensor/plasma_tank, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"rK" = ( +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"rL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"rM" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"rN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/main) +"rO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rP" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rQ" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rR" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rS" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"rT" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engineering/main) +"rU" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"rV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"rW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rX" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"rY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"rZ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/mime, +/turf/open/floor/plasteel, +/area/service/bar) +"sa" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/engineering/main) +"sc" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall/r_wall, +/area/engineering/main) +"sd" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/item/restraints/handcuffs, +/obj/item/assembly/timer, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"se" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"sf" = ( +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"sh" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"si" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_smes) +"sj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sk" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"sl" = ( +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/engineering/main) +"sn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"so" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/engineering/atmos) +"sp" = ( +/obj/machinery/atmospherics/components/binary/pump/on/scrubbers/visible/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ss" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/co2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"st" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/n2o{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"su" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped/plasma{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible/layer2, +/obj/machinery/atmospherics/components/trinary/filter/atmos/flipped{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sx" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/main) +"sy" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/food/pie/cream, +/turf/open/floor/carpet, +/area/service/bar) +"sz" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sA" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"sB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/chem_seller/engineering, +/turf/open/floor/plasteel, +/area/engineering/main) +"sE" = ( +/obj/machinery/door/airlock/engineering{ + name = "SMES Room"; + req_access_txt = "32" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"sF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/engineering/main) +"sG" = ( +/turf/closed/wall, +/area/engineering/atmos) +"sH" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sM" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sN" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sO" = ( +/obj/structure/transit_tube_pod, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"sP" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"sS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"sT" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"sU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sV" = ( +/obj/structure/rack, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/engineering/main) +"sW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"sX" = ( +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/engineering/main) +"sY" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ta" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway South"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"td" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tf" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tg" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"th" = ( +/obj/machinery/mecha_part_fabricator/engi, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"tj" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/engineering/main) +"tk" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"tl" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tm" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tn" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"to" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel, +/area/engineering/main) +"tp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tq" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engineering/main) +"tr" = ( +/obj/structure/cable, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/chief_engineer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ts" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tt" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"tu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/medbay) +"tv" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = -4 + }, +/obj/item/pipe_dispenser{ + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tw" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/cable, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tx" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/plasteel, +/area/service/bar) +"ty" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/engineering/main) +"tz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"tA" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tB" = ( +/obj/structure/transit_tube, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"tC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/main) +"tD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tE" = ( +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engineering/main) +"tF" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"tG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"tH" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tI" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tK" = ( +/obj/machinery/atmospherics/components/binary/circulator/cold{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"tL" = ( +/obj/machinery/power/generator, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"tM" = ( +/obj/machinery/atmospherics/components/binary/circulator{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"tN" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"tO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"tQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/table, +/obj/item/pipe_dispenser{ + pixel_y = 6 + }, +/obj/item/circuitboard/machine/thermomachine, +/obj/item/circuitboard/machine/thermomachine, +/turf/open/floor/plasteel, +/area/engineering/main) +"tR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"tV" = ( +/turf/closed/wall/r_wall, +/area/cargo/qm) +"tW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/cargo/qm) +"tX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/cargo/qm"; + dir = 1; + name = "Quartermaster APC"; + pixel_y = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ua" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel, +/area/engineering/main) +"ub" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"ue" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/engineering/main) +"uf" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"ug" = ( +/obj/machinery/light, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"uh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ui" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engineering/main) +"uj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plating, +/area/engineering/main) +"uk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ul" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engineering/main) +"um" = ( +/obj/structure/table, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/apc, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel, +/area/engineering/main) +"un" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engineering/main) +"uo" = ( +/obj/machinery/camera, +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel, +/area/engineering/main) +"up" = ( +/obj/machinery/firealarm/directional/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/toy/figure/qm{ + pixel_x = -6 + }, +/obj/item/gps/mining{ + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uq" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/coin/silver, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ur" = ( +/obj/machinery/camera, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/plasteel, +/area/engineering/main) +"us" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/engineering/main) +"ut" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/qm) +"uu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uv" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"uw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ux" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/computer/cargo{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"uD" = ( +/obj/structure/table, +/obj/machinery/light/small, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -6; + pixel_y = 9 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/turf/open/floor/plasteel, +/area/engineering/main) +"uF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/engineering/main) +"uG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/closed/wall, +/area/engineering/main) +"uH" = ( +/obj/machinery/light/small, +/obj/structure/reagent_dispensers/watertank/high, +/turf/open/floor/plasteel, +/area/engineering/main) +"uI" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uJ" = ( +/mob/living/carbon/human/species/monkey/punpun, +/obj/machinery/chem_dispenser/drinks{ + density = 0; + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/wood, +/area/service/bar) +"uK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plating, +/area/engineering/main) +"uL" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plating, +/area/engineering/main) +"uN" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"uO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"uP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"uQ" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engineering/main) +"uR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uS" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/engineering/main) +"uU" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uV" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/engineering/main) +"uW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space/basic, +/area/space) +"uX" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"uY" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engineering/main) +"va" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space/basic, +/area/space) +"vb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plating, +/area/engineering/main) +"vc" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plating, +/area/engineering/main) +"vd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plating, +/area/engineering/main) +"ve" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"vf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vh" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vi" = ( +/obj/machinery/camera{ + c_tag = "Burn Chamber"; + network = list("burnchamber") + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space) +"vk" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/space/basic, +/area/space) +"vl" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"vm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"vp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/main) +"vu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"vv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vw" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vx" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vy" = ( +/obj/machinery/button/door{ + id = "burndoor"; + name = "Burn Chamber Vent Control"; + pixel_x = 25; + pixel_y = 5 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/main) +"vz" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vC" = ( +/obj/item/analyzer, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engineering/main) +"vD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating, +/area/engineering/main) +"vL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vM" = ( +/obj/machinery/atmospherics/components/binary/volume_pump{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vN" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"vP" = ( +/obj/machinery/door/poddoor{ + id = "burndoor"; + name = "Mixer Room Vent" + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"vQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vR" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/space/basic, +/area/space) +"vS" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plating, +/area/engineering/main) +"vT" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/plating, +/area/engineering/main) +"vU" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engineering/main) +"vV" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle South"; + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"vW" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/main) +"vY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"vZ" = ( +/obj/machinery/light, +/turf/open/floor/plating, +/area/engineering/main) +"wa" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"wb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"wc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"wd" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat) +"we" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat) +"wf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wg" = ( +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wh" = ( +/turf/open/floor/plasteel, +/area/cargo/qm) +"wi" = ( +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wk" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wl" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"ws" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"wt" = ( +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wv" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"ww" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wy" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/item/paper/monitorkey, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"wz" = ( +/turf/open/space, +/area/space) +"wA" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"wB" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"wC" = ( +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"wE" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"wG" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wI" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"wJ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"wK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"wL" = ( +/obj/docking_port/stationary{ + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"wM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft) +"wN" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"wO" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"wP" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/warning/radiation/rad_area{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"wQ" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"wR" = ( +/obj/structure/window/reinforced/fulltile, +/obj/structure/transit_tube, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"wT" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"wU" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"wV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"wW" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/machinery/camera{ + c_tag = "Security Office South"; + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"wX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"wY" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/command) +"xb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"xc" = ( +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/command) +"xd" = ( +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command) +"xe" = ( +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command) +"xg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command) +"xh" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/command) +"xi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/command) +"xj" = ( +/obj/machinery/conveyor{ + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xk" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"xl" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xm" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/stamp, +/obj/item/stamp/denied, +/obj/item/pen/red, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xn" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"xo" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xp" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad" + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xq" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xr" = ( +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"xs" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/science/test_area) +"xt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"xv" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xy" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/wardrobe/cargotech, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xz" = ( +/obj/machinery/autolathe, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xB" = ( +/obj/structure/cable, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xC" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/conveyor{ + dir = 4; + id = "toxins" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"xH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "toxins" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"xI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xL" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"xM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xN" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"xO" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/command/nuke_storage"; + dir = 1; + name = "Vault APC"; + pixel_y = 25 + }, +/turf/open/floor/circuit, +/area/ai_monitored/command/nuke_storage) +"xP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/southright{ + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"xQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/brig) +"xR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xS" = ( +/turf/closed/wall, +/area/cargo/qm) +"xT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Vault Security Office"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"xU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xV" = ( +/obj/machinery/flasher{ + id = "Cell 2"; + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"xW" = ( +/mob/living/simple_animal/sloth/citrus, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xY" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/cargo/qm) +"ya" = ( +/obj/machinery/mecha_part_fabricator/sb, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/vending/security, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yd" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/security/detectives_office) +"ye" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/restraints/handcuffs, +/obj/item/storage/fancy/cigarettes, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/carpet, +/area/security/detectives_office) +"yf" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 3"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table, +/obj/item/toy/cards/deck, +/turf/open/floor/carpet, +/area/hallway/primary/central) +"yh" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central) +"yi" = ( +/obj/machinery/vending/autodrobe/all_access, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yj" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/flasher{ + id = "PCell 3"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"yl" = ( +/obj/machinery/washing_machine, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ym" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yn" = ( +/obj/structure/closet/crate, +/obj/item/clothing/head/chefhat, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"yo" = ( +/obj/item/flashlight, +/obj/machinery/camera{ + c_tag = "Engine Room"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/main) +"yp" = ( +/turf/open/floor/goonplaque{ + desc = "In loving memory of Giacommand; the original creator of ministation. Rest in peace you magnificent spaceman." + }, +/area/hallway/primary/central) +"yq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"yr" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"ys" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/detectives_office) +"yt" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Bar"; + dir = 1; + network = list("SS13") + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/bar) +"yu" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yw" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central) +"yx" = ( +/turf/open/floor/carpet, +/area/hallway/primary/central) +"yy" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yB" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yC" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central) +"yD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yH" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yP" = ( +/obj/machinery/door/window/eastleft, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/carpet, +/area/hallway/primary/central) +"yT" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yW" = ( +/obj/machinery/door/window/eastright, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"yY" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"yZ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"za" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/hallway/primary/central) +"zc" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zd" = ( +/obj/machinery/light, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ze" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zf" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zg" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"zk" = ( +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"zn" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"zo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Bar Door"; + req_access_txt = null; + req_one_access_txt = "25;28" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/bar) +"zw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zx" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zz" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zA" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"zC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"zD" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"zE" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"zG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"zH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/button/door{ + id = "aux_base_shutters"; + name = "Public Shutters Control"; + pixel_x = -34; + req_one_access_txt = "32;47;48" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"zI" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zJ" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/accounting, +/obj/item/folder/blue{ + pixel_x = -13 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zK" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"zM" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"zN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"zP" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"zQ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zR" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zT" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zU" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zV" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zW" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"zX" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"zY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"zZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Aa" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber"; + dir = 4; + network = list("MiniSat") + }, +/mob/living/silicon/robot/shell, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Ab" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Ac" = ( +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ad" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ae" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Af" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ag" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"Ah" = ( +/mob/living/simple_animal/pet/dog/corgi, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ai" = ( +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"Aj" = ( +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay 1"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"Ak" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Al" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 4; + network = "tcommsat" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"Am" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"An" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ao" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Aq" = ( +/obj/machinery/vending/cart, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Ar" = ( +/obj/machinery/pdapainter, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"As" = ( +/turf/closed/wall, +/area/command/heads_quarters/hop) +"At" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"Au" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"Aw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI core shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"Ax" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"Az" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AA" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AC" = ( +/obj/structure/transit_tube, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"AD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"AE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"AF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters" + }, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"AG" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"AH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"AI" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 3; + height = 15; + id = "arrivals_stationary"; + name = "arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"AJ" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_y = -25 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = 28 + }, +/obj/machinery/button/door{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber entrance shutters control"; + pixel_x = 23; + pixel_y = -23; + req_access_txt = "16" + }, +/obj/machinery/button/door{ + id = "AI Core shutters"; + name = "AI Core shutters control"; + pixel_x = 24; + pixel_y = 22; + req_access_txt = "16" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"AK" = ( +/obj/machinery/telecomms/broadcaster/preset_left/birdstation, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"AM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AN" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AO" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AP" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"AR" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"AS" = ( +/obj/machinery/door/airlock/engineering/glass{ + autoclose = 0; + frequency = 1449; + id_tag = "tcomm_airlock_interior"; + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"AU" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai"; + name = "AI Chamber turret control"; + pixel_x = -5; + pixel_y = 24 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"AV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"AW" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"AX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_access_txt = "50" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"AY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"AZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Ba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"Bb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"Bc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"Bd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"Be" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space, +/area/space) +"Bf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Bg" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Bi" = ( +/turf/open/floor/circuit/telecomms/mainframe, +/area/ai_monitored/turret_protected/aisat) +"Bj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"Bk" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"Bl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Bm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"Bn" = ( +/obj/docking_port/stationary{ + dir = 1; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/box; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"Bo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"Bp" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Bq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Br" = ( +/obj/machinery/telecomms/server/presets/common/birdstation, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"Bs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/ai_monitored/turret_protected/aisat) +"Bt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/circuit/telecomms/mainframe, +/area/ai_monitored/turret_protected/aisat) +"Bu" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"Bv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Bw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"Bx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"By" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"Bz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"BC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"BD" = ( +/obj/machinery/telecomms/processor/preset_one/birdstation, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"BE" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"BF" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"BG" = ( +/obj/structure/cable, +/obj/machinery/power/apc/highcap/five_k{ + dir = 8; + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BI" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BK" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat) +"BL" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BN" = ( +/obj/structure/table, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"BO" = ( +/obj/structure/sign/warning/radiation/rad_area, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"BP" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/service) +"BQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"BR" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"BS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"BT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/firecloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small, +/turf/open/floor/plasteel/white, +/area/science/research) +"BU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/detectives_office) +"BV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"BW" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/service/bar) +"BX" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"BY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"BZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/closet/crate{ + name = "solar pack crate" + }, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/circuitboard/computer/solar_control, +/obj/item/electronics/tracker, +/obj/item/paper/guides/jobs/engi/solars, +/turf/open/floor/plating, +/area/engineering/main) +"Ca" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"Cb" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"Cc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"Cd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 5; + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"Ce" = ( +/obj/docking_port/stationary{ + dir = 8; + height = 18; + id = "emergency_home"; + name = "BoxStation emergency evac bay"; + width = 32 + }, +/turf/open/space/basic, +/area/space) +"Cf" = ( +/obj/machinery/button/ignition{ + id = "burnchamber"; + pixel_x = 25 + }, +/turf/open/floor/plating, +/area/engineering/main) +"Cg" = ( +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plating/airless, +/area/engineering/main) +"Ch" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/obj/machinery/sparker{ + id = "burnchamber"; + pixel_x = -25 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"Cj" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar) +"Ck" = ( +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"Cp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"Cx" = ( +/obj/structure/chair/stool, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Burn Chamber Telescreen"; + network = list("burnchamber"); + pixel_y = -30 + }, +/turf/open/floor/plating, +/area/engineering/main) +"Cy" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/primary/central) +"CE" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"CF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"CH" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"CK" = ( +/obj/effect/landmark/start/station_engineer, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"CQ" = ( +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"CR" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"CS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"CX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"CY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"CZ" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/areaeditor/blueprints, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Dj" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay) +"Dm" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Ds" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Dv" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"DD" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"DF" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"DH" = ( +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"DI" = ( +/obj/structure/cable, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 28 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_x = -32; + pixel_y = 36 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"DJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"DN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"DO" = ( +/obj/machinery/telecomms/receiver/preset_left/birdstation, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"DP" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/aicard, +/obj/item/stamp/rd, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"DY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"Ee" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ej" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/computer_disk/chemistry, +/obj/item/computer_disk/medical, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Em" = ( +/obj/structure/cable, +/obj/effect/landmark/start/hunter, +/turf/open/floor/plasteel, +/area/cargo/storage) +"En" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ep" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/plunger, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Es" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Ev" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/engineering/main) +"Ew" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"EA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Starboard Primary Hallway 2"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"EF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/fore) +"EQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ES" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"EU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"EZ" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"Fb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/engineering/main) +"Fe" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Fg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"Fh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/coldtemp, +/turf/open/floor/plating, +/area/science/xenobiology) +"Fq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Fr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"Ft" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Fu" = ( +/obj/structure/punching_bag, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Fx" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/aft) +"Fy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Fz" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"FB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Storage"; + req_access_txt = "11" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"FD" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"FE" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"FH" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"FL" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"FS" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"FW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/medbay) +"Gb" = ( +/obj/machinery/atmospherics/components/unary/passive_vent{ + dir = 8 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"Gc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ge" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Gh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"Gm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Go" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/science/research) +"Gt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall/r_wall, +/area/science/mixing) +"Gx" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Gy" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Gz" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/cargo/storage) +"GA" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"GB" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_smes) +"GD" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"GG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"GH" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + pixel_x = 25; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/hallway/primary/central) +"GJ" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"GN" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"GP" = ( +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"GQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/limbgrower, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"GV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"GW" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"GZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"Ha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Hk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Hq" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Plasma Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Hs" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ht" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Hu" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Hw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/chem_mass_spec, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Hz" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"HA" = ( +/turf/closed/wall/r_wall, +/area/service/hydroponics) +"HG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"HH" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"HJ" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway East"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"HL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/turntable, +/turf/open/floor/plasteel, +/area/service/bar) +"HM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/pickaxe/mini, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"HZ" = ( +/turf/closed/wall, +/area/engineering/engine_smes) +"Ia" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ie" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ig" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Ik" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "CO2 Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Il" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"In" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Iv" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Iw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Iz" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"IN" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"IR" = ( +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"IU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"IW" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_input, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible/layer2, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"IX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ja" = ( +/turf/closed/wall, +/area/science/mixing) +"Jb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp/qm{ + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Jd" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "10" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Je" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Jf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ji" = ( +/obj/structure/closet/secure_closet/security, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/item/melee/baton/loaded, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Jo" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/turf/open/floor/plasteel, +/area/engineering/main) +"Jr" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/command/heads_quarters/hop"; + dir = 1; + name = "Head of Personnel APC"; + pixel_y = 25 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"Js" = ( +/turf/closed/wall/r_wall, +/area/command) +"Jw" = ( +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Jx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"JB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"JD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/chemistry) +"JE" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/item/gun/energy/e_gun/mini, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"JK" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"JL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"JQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"JS" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"JV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Kg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"Kj" = ( +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/autoname, +/obj/item/folder/yellow, +/obj/item/stamp/ce, +/obj/machinery/keycard_auth{ + pixel_x = -10 + }, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/mob/living/simple_animal/parrot/poly, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"Ko" = ( +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"Ku" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"Kv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ky" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/viro_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"KA" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"KB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "35" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/hydroponics) +"KJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/science/mixing) +"KK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"KL" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"KO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"KR" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command) +"KU" = ( +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"KW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Li" = ( +/obj/structure/cable, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/plating, +/area/engineering/main) +"Lr" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random, +/turf/open/floor/plasteel/white, +/area/science/research) +"Lt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"LG" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"LN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"LS" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command) +"LV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"LW" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"LY" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ma" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"Mb" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/science/research) +"Mf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Ml" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"Mw" = ( +/obj/machinery/light, +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Mx" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"MF" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"MH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"MI" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"MJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"MM" = ( +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"MN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"MQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"MU" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"MW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Nb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Security Office North"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Nc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Nd" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/door/window/eastright{ + req_access_txt = "7" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Ne" = ( +/obj/machinery/vendor/exploration, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Nj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Nl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Nm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/iv_drip, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ns" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Nv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Nw" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Nx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/security/brig) +"NI" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"NL" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"NN" = ( +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"NP" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"NR" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"NT" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"NY" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"NZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"Oa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"Oe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Oh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Oi" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Ol" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"On" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Oo" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Op" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"Ot" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Oy" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"Oz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"OH" = ( +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"OJ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/restaurant_portal/bar, +/turf/open/floor/plasteel, +/area/service/bar) +"OQ" = ( +/obj/machinery/light/small, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"OS" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"OX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/chair/sofa/corp{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"OZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Pb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Pc" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"Pf" = ( +/obj/machinery/computer/pandemic, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ph" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"Pj" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"Pk" = ( +/turf/open/floor/plasteel, +/area/maintenance/aft) +"Po" = ( +/obj/structure/cable, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Pw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Px" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"PE" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"PF" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"PM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"PR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall, +/area/science/mixing) +"PT" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"PY" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"Qa" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Qb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Qd" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology North"; + dir = 4; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"Qf" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Qg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Qh" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Qi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Qj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Qk" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Qo" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Qq" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/main) +"Qz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "MiniSat External Access"; + req_access_txt = "65;13" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"QB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/engineering/atmos) +"QD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/cargo/storage) +"QH" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"QI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"QL" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"QO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"QT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"QY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Ra" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Re" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"Rf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"Rh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stock_parts/cell/hyper, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Ri" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Rk" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Rq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"Rs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/book/manual/wiki/infections{ + pixel_y = 6 + }, +/obj/item/storage/box/monkeycubes, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"RH" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"RM" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"RN" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/machinery/atmospherics/miner/plasma, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"RP" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"RY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Sa" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/quartermaster, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Se" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"Sf" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"Sj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 27 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Sk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Sl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Ward"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Sn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/cargo/qm) +"Sp" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/machinery/atmospherics/miner/n2o, +/obj/effect/turf_decal/tile/hex/red, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + valve_open = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Sq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Sw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Sx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"SA" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"SB" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"SC" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"SG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"SL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"SM" = ( +/turf/closed/wall/r_wall, +/area/cargo/storage) +"SS" = ( +/obj/structure/bed/dogbed/runtime, +/mob/living/simple_animal/pet/cat/runtime, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"SV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"SY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "N2O Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ta" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Tb" = ( +/turf/closed/wall, +/area/science/xenobiology) +"Tc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/service) +"Tn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"To" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Tp" = ( +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Tq" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Ts" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Tu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/white, +/area/science/research) +"Tw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Tx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"Ty" = ( +/obj/machinery/atmospherics/pipe/layer_manifold{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"TB" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"TD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"TF" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"TG" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"TH" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat/service) +"TI" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"TP" = ( +/obj/machinery/research/explosive_compressor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/science/research) +"TV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Ua" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "chemistry shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/medical/medbay) +"Ub" = ( +/obj/structure/cable, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Uc" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"Uf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Ug" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/main) +"Uj" = ( +/obj/structure/bed/dogbed/lia, +/mob/living/simple_animal/hostile/carp/lia, +/obj/machinery/button/door{ + desc = "A remote control-switch for privacy shutters."; + id = "HOSOffice"; + name = "Privacy Shutters"; + pixel_x = -27; + pixel_y = 5; + req_access_txt = "2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"Uk" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ul" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 14; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 14; + pixel_y = -2 + }, +/obj/machinery/door/window/northright{ + dir = 2; + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Um" = ( +/obj/machinery/door/firedoor, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"Up" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Uq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Ur" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Uu" = ( +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Uw" = ( +/obj/machinery/suit_storage_unit/mining/eva, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Uy" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"UC" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HOSOffice"; + name = "security shutters" + }, +/turf/open/floor/plating, +/area/security/brig) +"UD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"UE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"UI" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"UK" = ( +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"UL" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space) +"UN" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"UQ" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"US" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"UT" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/machinery/sparker{ + id = "burnchamber"; + pixel_x = -25 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/main) +"UW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"UZ" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"Va" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Vd" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"Vf" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Vh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"Vl" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/cable, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Vp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"Vv" = ( +/obj/machinery/light, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Vx" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Vy" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"VC" = ( +/obj/machinery/button/door{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer"; + name = "Medbay Exit Button"; + normaldoorcontrol = 1; + pixel_y = -26 + }, +/obj/machinery/stasis, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"VD" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "ceprivacy"; + name = "privacy shutter" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"VG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"VL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"VO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chemistry Lab East"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"VS" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_smes) +"VV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/hidden{ + dir = 10 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"VX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"Wc" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 40 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Wn" = ( +/turf/closed/wall, +/area/security/detectives_office) +"Wo" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input, +/obj/effect/turf_decal/tile/hex/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/red, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"Wv" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/b_minus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/b_plus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/a_plus, +/obj/item/reagent_containers/blood/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Wx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"Wy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"Wz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plating, +/area/engineering/main) +"WB" = ( +/obj/structure/table, +/obj/structure/table/glass, +/obj/item/stamp/cmo{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"WD" = ( +/obj/machinery/door/airlock/external{ + name = "External Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"WH" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"WQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/service) +"WS" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/effect/turf_decal/tile/hex/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/hex/green, +/obj/effect/turf_decal/tile/hex/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/layer2, +/obj/machinery/light/small{ + dir = 1; + flickering = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"WU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = 25 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"WX" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"WZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"Xe" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/light{ + pixel_y = 0 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"Xi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engineering/main) +"Xj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"Xl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/white, +/area/science/research) +"Xo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/science/research) +"Xt" = ( +/obj/machinery/computer/piratepad_control/civilian, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"XB" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"XC" = ( +/obj/machinery/light/small{ + brightness = 5; + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat) +"XE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Telecomms Server Room"; + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/aisat) +"XF" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"XL" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/bar) +"XM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"XN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"XO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"XQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rnd" + }, +/turf/open/floor/plating, +/area/science/research) +"XR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"XS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/science/research) +"XT" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"XU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"XX" = ( +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"XY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ya" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/cargo/storage) +"Yh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Yj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"Yl" = ( +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"Yn" = ( +/obj/machinery/telecomms/bus/preset_one/birdstation, +/turf/open/floor/plasteel/dark/telecomms, +/area/ai_monitored/turret_protected/aisat) +"Yv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"YC" = ( +/obj/machinery/camera{ + active_power_usage = 0; + c_tag = "Bomb Test Site"; + desc = "A specially-reinforced camera with a long lasting battery, used to monitor the bomb testing site."; + dir = 8; + invuln = 1; + name = "Hardened Bomb-Test Camera"; + network = list("toxins"); + use_power = 0 + }, +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"YG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/science/mixing) +"YI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"YK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold, +/turf/closed/wall, +/area/science/mixing) +"YO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch{ + pixel_x = 27; + pixel_y = -10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"YQ" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"YR" = ( +/obj/structure/window/plasma/reinforced/spawner/west, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"YS" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_dock) +"YT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"YU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/clothing/gloves/color/latex/nitrile, +/obj/item/reagent_containers/dropper, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -30 + }, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"YW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"YZ" = ( +/obj/machinery/light, +/obj/machinery/power/apc{ + dir = 4; + pixel_y = -25; + pixel_x = 25 + }, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plasteel/white, +/area/medical/medbay) +"Ze" = ( +/obj/machinery/atmospherics/components/binary/pump/off/yellow/visible{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"Zs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/closed/wall, +/area/science/mixing) +"Zv" = ( +/turf/open/floor/engine/air, +/area/engineering/atmos) +"Zw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/science/xenobiology) +"Zy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ZB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ZC" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ZE" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ZU" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/science/research) +"ZY" = ( +/obj/machinery/camera/autoname{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ZZ" = ( +/obj/structure/window/plasma/reinforced/spawner/east, +/obj/structure/window/plasma/reinforced/spawner{ + name = "south" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input, +/obj/effect/turf_decal/tile/hex/yellow, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/hex/yellow{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) + +(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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,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 +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 +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 +aa +aa +aa +aa +Ce +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 +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 +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 +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 +aa +aa +aa +aa +aa +"} +(104,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 +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 +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 +aV +cQ +iO +cQ +aV +aV +aV +cQ +iO +cQ +aV +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 +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 +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 +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 +aa +aa +aa +"} +(105,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 +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 +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 +aV +cQ +iP +cQ +aV +aV +aV +cQ +iP +cQ +aV +aV +aV +aV +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 +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 +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 +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 +"} +(106,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 +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 +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 +GW +GW +YI +iQ +YI +GW +YI +GW +YI +iQ +YI +GW +GW +pd +GW +YI +GW +YI +YI +YI +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 +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 +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 +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 +"} +(107,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 +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 +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 +GW +dU +ic +ic +ic +jG +kP +jG +ic +mu +ic +ol +GW +pd +GW +zx +fr +zM +iP +Aj +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 +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 +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 +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 +"} +(108,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 +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 +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 +YI +Xt +fr +fr +fr +fr +fr +fr +fr +fr +fr +om +GW +GW +GW +fr +fr +YI +YI +YI +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 +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 +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 +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 +"} +(109,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 +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 +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 +YI +Op +ie +fr +fr +fr +kQ +fr +fr +fr +fr +fr +fr +pe +fr +fr +fr +ic +zY +YI +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 +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 +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 +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 +"} +(110,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 +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 +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 +GW +fQ +fr +vo +fr +jT +jT +jT +jT +jT +ng +jT +jT +jT +jT +fr +fr +fr +zZ +YI +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 +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 +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 +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 +"} +(111,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Cc +aa +aa +aa +aa +aa +aa +aa +aa +aa +GW +gV +ig +zo +iV +jU +zo +zo +zo +zo +nh +zo +zo +wV +jT +fr +fr +fr +vV +YI +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 +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 +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 +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 +"} +(112,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +SM +SM +cA +bQ +dR +QD +dR +bU +cA +SM +SM +tV +tV +ut +ut +tV +GW +hD +oN +oN +jc +jV +kR +ld +oN +oN +oN +oN +oN +wX +jV +BV +fr +zN +Ab +YI +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 +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 +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 +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 +"} +(113,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bF +cC +dt +dS +eE +dS +xo +xv +CR +Gz +xS +tX +uy +Jb +oK +cg +cg +is +cg +jd +ey +cg +cg +cg +mv +nj +mF +oN +iV +lC +fr +zE +YI +YI +YI +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 +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 +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 +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 +"} +(114,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bL +cD +du +dT +HH +fM +xp +xw +xE +tO +tW +tY +uz +Oo +Sa +tW +hE +it +iT +je +jE +cf +lo +cg +mw +nH +mF +oN +iV +jT +fr +fr +zM +iP +Aj +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 +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 +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 +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 +"} +(115,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +QD +bM +cD +cD +bq +eS +bq +tw +bq +tD +tS +xR +uh +uB +uB +xX +xZ +kU +kU +cf +jf +jE +jE +lp +cg +mF +mF +mF +oN +iV +jT +fr +fr +YI +YI +YI +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 +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 +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 +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 +"} +(116,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bN +cD +DH +bq +Sq +cD +xp +cD +xE +tT +xS +up +wh +uB +xY +xS +cf +kU +cf +jf +cf +cf +lq +cg +mG +nI +on +oN +iV +jT +fr +fr +cg +GW +aV +aa +aa +aa +AI +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 +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 +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 +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 +"} +(117,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bO +cD +DH +Ub +Sq +cD +xq +gK +Ya +Pw +xS +uq +xW +Sn +PE +xS +cf +kU +cf +jh +jX +kS +kS +kS +kS +kS +kS +oL +iV +jT +jT +jT +jT +GW +aV +aV +aV +aV +aV +aV +aV +Rq +Fx +Rq +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rq +rq +rq +rq +rq +rq +rq +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 +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 +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 +"} +(118,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bP +cD +DH +bq +cD +cD +cD +cD +Ya +Pw +xS +xS +xS +xS +xS +xS +cf +iM +iU +iU +jf +kS +ls +lV +mH +nJ +kS +oN +iV +fr +zy +zD +nL +zD +zD +zD +Rq +Rq +Rq +Rq +Rq +qT +nc +Rq +aV +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rq +uW +vj +vj +vj +vk +rq +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 +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 +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 +"} +(119,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +cd +hR +cD +Em +Uw +Qk +QL +cD +Ya +xM +bu +cf +cf +cf +cf +cf +cf +iM +iU +ji +jY +kS +lE +mq +mI +nK +lH +oM +iV +fr +zz +zD +Jr +Ac +Ak +zD +xN +YQ +Fu +pu +KW +mE +WD +GB +GB +si +si +si +GB +GB +GB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rq +vY +uW +vj +vj +vR +rq +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 +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 +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 +"} +(120,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +bu +bu +dw +bq +TI +TI +TI +xx +xF +xU +bu +cf +gw +gw +zb +zb +zb +zb +gw +ji +jZ +kS +ln +mr +mJ +mJ +ma +nh +zo +zw +zz +ll +zQ +Ad +pA +qf +qp +qp +qp +qp +qE +mE +ps +rj +MH +OH +OH +OH +OH +uf +GB +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +rq +vY +va +vj +vj +vk +rq +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 +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 +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 +"} +(121,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Bn +bw +ce +cS +cD +bq +eT +fN +ds +xy +xE +xU +bu +cf +gw +yg +yw +gw +yS +yw +gw +iU +ka +kS +lG +ms +lu +nM +kS +oN +iV +fr +zz +ll +zR +Ae +Ac +zD +pt +Pk +DF +ps +tG +mE +ps +GB +rw +JL +rW +rW +sB +sM +GB +aa +aV +rq +MU +MU +MU +rq +aV +aa +aa +rq +vY +uW +vj +vj +vR +rq +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 +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 +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 +"} +(122,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +SM +ch +SM +bu +ek +bu +bu +bu +bu +eA +fb +bu +cf +gw +yh +yx +gw +GH +yx +gw +jk +kb +lH +lH +lH +mL +lH +lH +oN +iV +fr +zA +xP +zS +QO +Am +zD +As +mE +mE +ps +nc +mE +rh +GB +rx +OH +rX +OH +UD +sN +GB +aa +aV +MU +BZ +BZ +BZ +MU +aV +aa +aa +rq +pq +va +vj +vj +vk +rq +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 +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 +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 +"} +(123,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +Ag +dx +bD +bu +gM +xC +xz +xE +xU +bu +cf +gw +gw +yy +gw +gw +zc +gw +jB +ko +kU +lU +iU +cf +nN +iU +le +nd +nm +zB +zL +zT +Af +Ac +Aq +zD +pL +nc +ps +nc +nc +ps +GB +ry +rO +OH +OH +UD +sP +GB +rq +rq +rq +tH +rM +ue +rq +rq +rq +rq +rq +vY +uW +vj +vj +vR +rq +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 +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 +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 +"} +(124,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +qP +aV +Ag +by +eC +bu +gN +cD +Oi +xE +xU +bu +cf +gw +yi +ym +ym +ym +ym +gw +kq +kp +kV +lU +iU +jE +jE +mD +ly +ly +yX +zD +zI +zU +Ac +Ac +Ar +zD +ps +ps +ps +qF +ps +ps +GB +rz +rO +MH +MH +sC +Vp +FB +Uf +Uf +sS +Uf +Ts +Uf +Uf +iR +Ri +uD +rq +vY +va +vj +vj +vk +rq +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 +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 +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 +"} +(125,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +Ag +EF +Ag +Ag +dE +cr +eU +ra +xt +xt +xI +xU +bu +cf +gw +yj +yz +yN +ym +ym +gw +kN +xj +ko +iU +iU +jE +cf +iU +fB +dM +yX +zD +zJ +zV +Ah +An +zD +zD +pM +mE +mE +mE +mE +ps +GB +ry +rO +OH +OH +OH +sR +HZ +rT +tq +sT +rM +sQ +rM +Nl +uu +iR +rv +rq +va +vk +uW +vj +vR +rq +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 +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 +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 +"} +(126,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 +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 +aa +aa +aa +aa +jI +UL +Js +Js +Js +Js +Js +Js +aV +bd +by +bc +by +dF +eD +bu +xm +uw +xA +ux +xU +bu +cf +gw +fl +yA +ym +yT +zd +gw +jC +kp +lm +cf +mt +jE +nO +iU +lz +dM +yX +zD +zK +zW +wC +Ao +zC +BR +pN +qa +qq +qG +mE +ps +GB +rA +VS +CK +JB +JB +sR +ro +ro +ro +rV +rV +sx +ro +uo +rM +iR +ro +rq +rq +vl +vl +Ug +rq +rq +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 +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 +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 +"} +(127,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 +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 +aa +aa +aa +UL +ab +Js +Js +ao +aD +aQ +wY +Js +Js +Ag +rg +bc +cT +dF +bc +bu +bv +bv +do +bv +AX +bu +cf +gw +yl +yA +ym +ym +ze +gw +ho +xk +cf +cf +cf +jE +nP +iU +fB +mb +yZ +zD +zL +zD +zD +zD +zD +pv +pO +mE +mE +mE +mE +ps +GB +rB +OH +sz +OH +OH +sR +ve +rM +Jo +tv +dY +tQ +ro +ro +rM +On +uF +sU +rM +vm +vz +vG +vS +rq +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 +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 +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 +"} +(128,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 +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 +aa +aa +aa +UL +aa +ae +af +aq +aG +aR +aR +xd +xi +bf +bz +bz +bz +dG +bc +dB +dB +dB +ff +tI +tU +gw +cf +hn +ym +yA +yO +yV +zf +gw +jE +jE +jE +jE +jE +jE +oj +iU +dM +dM +dM +mR +nb +nE +nE +nE +nE +pw +pP +qU +qU +qU +qU +ps +GB +rC +rP +sa +sf +OH +sR +ro +rM +rM +rM +rN +tR +Ee +ro +uv +rY +ro +uK +vb +vn +vA +vH +vT +rq +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 +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 +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 +"} +(129,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 +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 +aa +aa +aa +UL +aV +ae +ag +ar +ar +ar +ar +cG +Js +bg +by +cj +by +dF +bc +dC +er +er +fg +fB +yX +gw +gw +gw +gw +yB +ym +yV +zg +gw +jE +kO +cf +iH +cf +cf +ok +iU +dM +fB +fB +mE +pJ +mE +mE +mE +mE +px +pQ +pQ +pQ +pQ +qV +pw +GB +GB +GB +GB +sl +OH +sR +ro +tj +rM +rM +rM +rM +ug +ro +sX +uN +ro +uL +vc +vp +vA +vH +Ev +rq +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 +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 +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 +"} +(130,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 +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 +aa +aa +aa +UL +aa +ae +ah +at +ar +ar +ar +mc +Js +bh +ad +ad +bc +dH +bc +dD +es +es +fs +fB +yX +hp +hb +ij +gw +yC +yP +yW +Cy +gw +mD +iU +iU +gw +iU +iU +iU +iU +SA +ZC +ZC +mE +mE +mE +oq +oq +mE +mE +mE +mE +mE +mE +ru +rf +rr +rD +rQ +sb +sm +sE +sF +tN +tN +tN +tN +tN +rM +rM +rV +rM +uO +MU +ty +uY +vp +vA +vH +Ev +rq +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 +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 +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 +"} +(131,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 +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 +aa +aa +aa +UL +aa +ae +ai +au +aH +aS +ar +be +bj +bp +bC +LS +bT +ct +yE +yD +yD +yD +yD +yD +ga +yD +yE +yD +fw +ga +ga +ga +nm +zi +zj +yD +yD +iI +fB +fB +fB +ZC +DI +fB +fB +no +fB +ta +fB +fB +fB +fB +fB +qc +qr +fB +qX +cZ +rs +fB +yE +sc +QI +sU +sD +Ph +CE +zH +RM +FH +rM +rM +rV +rM +uP +Ug +ty +tK +ui +vB +vI +vU +rq +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 +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 +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 +"} +(132,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 +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 +aa +aa +aa +UL +aa +ae +aj +av +aI +aT +aZ +be +ae +bk +bA +ca +cm +cv +cZ +dM +dM +dM +dM +dM +ly +dM +hc +dM +fz +lA +Oh +ly +tA +ly +ly +mS +fB +iJ +fB +fB +fB +ZC +ly +yp +fB +no +fB +nG +fB +fB +fB +fB +fB +fB +fB +fB +yX +cZ +dM +dM +Px +se +qS +Cp +th +VD +Kj +tr +Zy +Es +rM +rM +ve +rM +rY +tt +tz +tL +rM +vC +vJ +yo +rq +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 +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 +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 +"} +(133,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 +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 +aa +aa +aa +UL +aa +ae +ak +aw +aK +aU +xb +xg +bl +bB +xg +KR +bV +yX +da +dN +ly +dN +fu +yX +yX +gy +yX +yX +fC +da +Wx +SG +ZC +Wc +dM +hM +fB +fB +yu +fB +lF +ZC +Vl +yQ +fB +no +fB +yX +yX +yX +yX +yX +yX +gy +qs +qH +qY +cZ +rt +fB +fB +rq +sn +QT +sV +Ph +CZ +YO +UI +FH +rM +rM +rV +rM +DN +MU +tC +tM +uj +vD +vK +vW +rq +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 +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 +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 +"} +(134,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 +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 +aa +aa +aa +UL +aa +ae +al +az +ar +ar +xb +xf +Js +ad +ad +ad +bc +dI +db +cK +xQ +cK +as +Nx +as +as +as +as +as +hN +Ta +le +gz +gz +mM +gw +gw +gw +gw +gw +gw +gw +FL +ZC +ZC +mN +mN +mQ +mQ +mQ +mQ +mN +mN +mN +mN +mN +re +ri +ru +rE +rR +sg +so +sH +sG +tN +tN +tN +tN +tN +rM +rM +rV +rM +uk +MU +tC +Cg +vr +vE +vH +vX +rq +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 +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 +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 +"} +(135,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 +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 +aa +aa +aa +UL +aV +ae +am +ar +ar +ar +xb +cy +Js +by +cj +by +by +by +dc +dP +eG +dP +fv +fP +gd +gB +JS +in +as +yE +dM +yX +gz +gH +gH +gz +aV +aa +aa +aa +aa +kE +lf +fB +fB +mO +ne +nR +tx +OJ +nR +HL +mN +yn +qt +qI +re +rk +TF +TF +TF +TF +sp +sI +Uk +ro +to +ZY +rM +rM +rM +ul +ro +sX +Xe +ro +uQ +vc +vr +vE +vL +Cx +rq +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 +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 +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 +"} +(136,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 +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 +aa +aa +aa +UL +aa +ae +an +aA +aL +xb +xb +xh +Js +by +Mx +Mx +Mx +Mx +Mx +dV +eH +eI +UC +lc +ge +gB +hq +iu +as +yE +dM +yX +gz +gH +hO +hO +hO +hO +hO +hO +aa +kE +lf +fB +fB +mN +nf +nS +oh +oh +oh +pz +pR +pK +qu +qJ +re +rk +TF +rG +KL +sh +Ty +sI +sY +ro +rM +rM +rM +tP +uC +um +ro +rM +rM +ro +uT +vd +vs +vE +vM +vZ +rq +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 +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 +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 +"} +(137,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 +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 +aa +aa +aa +UL +UL +Js +Js +aB +aP +aY +xc +Js +Js +br +Mx +hU +xl +Pj +Mx +et +xQ +et +bR +yk +hr +Ji +Ot +kW +as +yE +dM +xe +gz +gH +hO +hQ +im +iv +iZ +hO +aa +kE +lf +yQ +jW +mN +nk +nT +nR +nR +nT +rZ +mN +Cj +qv +qK +rd +rl +TF +rG +DD +td +sr +sJ +Nj +ve +rM +LY +tE +tE +ua +ro +ro +rM +vf +uG +uU +vy +vt +vF +vN +Cf +rq +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 +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 +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 +"} +(138,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 +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 +aa +aa +aa +aa +jI +UL +Js +Js +Js +Js +Js +Js +Ag +by +Mx +kg +cV +dK +pT +dW +eJ +dW +Uj +dX +gq +gC +eJ +sd +as +yE +dM +yZ +gz +gH +hO +iW +iN +iN +js +jx +ki +ki +lA +yX +yX +mN +nl +nU +Gh +BW +nU +pB +mN +qg +re +re +re +ps +TF +FE +YR +Ik +ei +sK +xB +ro +ro +ro +MU +MU +ub +ro +ur +Ns +vf +ro +uV +ro +vu +vu +vO +ro +Qq +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 +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 +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 +"} +(139,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ag +gk +Mx +mP +GD +Ht +Mx +Ot +eJ +Ot +Ot +fT +gr +gD +hG +wW +as +yE +mb +yX +gz +gH +hO +hS +ip +iW +ju +jD +xT +kG +lB +Ft +ga +ns +pC +nV +pC +oh +nV +pC +mN +qh +qx +qL +mN +ps +TF +rH +ZZ +sr +ss +sK +tb +Jd +tp +tf +Nw +Qh +Ol +Qh +Qh +Gc +vQ +rp +ro +UT +vw +vh +wc +Ch +rq +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 +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 +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 +"} +(140,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +Mx +Mx +Mx +cx +Mx +ea +eJ +Ot +gL +fT +gs +gP +Tp +ya +as +yE +dM +yX +gz +gH +hO +xO +iq +iX +jv +kh +kj +kj +yD +dM +yX +mQ +nR +nR +nR +lD +nR +pD +pS +qi +qy +qM +mN +ps +TF +Sp +Vf +SY +ei +sK +In +QB +Fb +Xi +sW +uC +uC +uC +uC +uC +Vh +uH +ro +Cd +vg +vw +zP +zP +rq +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 +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 +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 +"} +(141,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +as +co +XU +Nb +fS +eW +fS +fS +cL +gt +ku +fS +yb +as +yF +XM +yX +gz +gH +hO +il +ir +iY +jw +hO +aa +kE +yE +dM +yX +nt +oZ +oZ +oZ +oZ +oZ +yt +re +qj +qz +qN +mN +ps +TF +rI +Wo +sr +st +Sw +Ze +TF +rq +rq +rq +tH +rM +ue +rq +rq +Li +rq +rq +vh +vv +vx +vx +Ca +rq +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 +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 +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 +"} +(142,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +as +cp +cN +dk +el +eX +fa +fy +fW +gu +gQ +Iw +yc +as +yE +dM +yX +gz +gH +hO +hO +hO +hO +hO +hO +aa +kE +yE +dM +yX +mN +np +nX +nX +nX +pa +nX +mN +qk +qC +qO +mN +rh +TF +RN +UZ +Hq +ei +Sw +PT +TF +aa +aa +MU +Wz +sO +un +us +tg +KK +KK +rq +vi +vg +vx +vx +vw +rq +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 +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 +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 +"} +(143,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +as +Dv +Dv +dl +en +Dv +Dv +Dv +wI +fX +as +wI +fX +as +yG +dM +yX +gz +gH +gz +aV +jt +aa +aa +aa +wz +kE +yE +dM +yX +mN +mN +nY +or +pb +sy +pF +mN +ql +qC +qQ +mN +ps +TF +rJ +rS +sr +su +sL +Hs +TF +aa +aa +rq +MU +MU +TG +rq +gp +tk +KK +rq +vh +vv +vx +vx +Ca +rq +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 +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 +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 +"} +(144,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dv +cM +SV +eo +kx +fd +Dv +GZ +TD +as +GZ +TD +as +yH +dM +yX +gz +gH +gz +gz +gz +gz +gz +aV +aa +gw +yE +dM +yX +mN +nq +nZ +pc +pc +pc +ot +mN +qm +qC +qR +mN +ps +TF +rK +MI +IN +ei +MJ +Uq +TF +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +rq +vh +vg +vx +vx +vw +rq +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 +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 +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 +"} +(145,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dv +cR +dy +ep +Ig +fe +Dv +xV +fY +as +xV +fY +as +yE +dM +EA +gz +gH +Ku +kw +iw +ja +gz +gz +gz +gw +yE +dM +yX +mN +nr +oa +uJ +oO +ot +ot +pU +qn +qD +XL +qo +ps +TF +WS +IW +sj +sw +IR +KU +TF +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +rq +Cd +vv +vx +vx +Ca +rq +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 +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 +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 +"} +(146,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dv +cW +dA +eq +ZE +Uc +Dv +as +as +as +as +as +as +yE +dM +EQ +FS +gH +gH +gH +gH +gH +jy +gH +gH +FS +Il +dM +HJ +mN +mN +mN +mN +mN +pf +zs +mN +mN +mN +mN +mN +ps +TF +TF +TF +zn +Re +Um +TF +TF +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +rq +vv +vx +vx +vx +vw +rq +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 +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 +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 +"} +(147,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Dv +Dv +Dv +Dv +Dv +Dv +Dv +aV +GJ +gS +hH +yq +BU +yI +dM +yX +gz +gI +hs +hs +lj +lj +lj +lj +lj +lj +yG +dM +EQ +EQ +op +CS +US +oP +CS +pH +pV +KB +ps +ps +ps +ps +Rq +aa +aV +zk +rL +KO +aV +aa +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +rq +rq +vP +vP +vP +rq +rq +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 +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 +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 +"} +(148,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +GJ +gT +hI +yd +fK +yJ +dM +yX +gz +gJ +hs +hs +lj +jb +WX +kl +JE +lj +yE +dM +yX +Gy +gv +Qo +ou +oQ +ou +oQ +pW +HA +PY +Rq +wb +Rq +Rq +aa +aV +zk +qP +KO +aV +aa +aa +aa +aa +aa +aa +aa +aa +Ml +tm +KK +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 +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 +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 +aa +aa +aa +aa +"} +(149,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +YS +YS +YS +YS +YS +YS +YS +YS +aa +GJ +gU +hJ +ye +ys +yK +EQ +yX +XF +XF +XF +XF +lj +jz +Fs +xL +SS +lj +yD +dM +yX +mS +oo +Qo +ov +oQ +ov +oQ +pX +HA +Rq +Rq +nc +qT +aV +aa +rU +rU +NZ +EZ +rU +aa +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +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 +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 +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 +aa +aa +aa +aa +"} +(150,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +xu +xu +YS +XT +Up +Gx +HM +Rh +Vv +YS +Iz +GJ +Wn +Wn +Wn +Wn +yE +dM +yX +XF +jl +wa +xG +lj +jj +WB +km +Ej +lj +yE +dM +yX +fB +pG +Qo +ow +oQ +ow +oQ +pY +HA +aV +Rq +wM +Rq +aV +aa +rU +Zv +BX +DY +rU +aa +aa +aa +aa +aa +aa +aa +aa +Ml +tl +KK +KK +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 +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 +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 +aa +aa +aa +"} +(151,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +xu +Qf +Qf +Qf +Qf +Qf +Qf +WZ +NP +Oa +fB +jF +gY +hK +yf +le +da +ly +yX +XF +jl +jl +xG +lj +jn +jH +kn +MF +lj +yF +oJ +ga +ml +nv +pI +Ra +oR +Ra +oD +pZ +HA +aa +aV +qP +aV +aa +aa +rU +Zv +sk +Zv +rU +aa +aa +aa +aa +aa +aa +aa +aa +Ml +tn +gp +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +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 +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 +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 +"} +(152,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wL +GN +LV +EU +YW +RY +dv +To +MN +MN +Uu +lA +lA +lA +lA +lA +Qi +Il +yR +yX +XF +jm +jl +xG +lj +lj +Ds +Yl +lj +lj +yE +dM +yX +Iz +HA +HA +gv +HA +gv +HA +HA +HA +aa +aa +aa +aa +aa +aa +rU +WH +sA +WH +rU +aa +aa +aa +aa +aa +aa +aa +aa +Ml +gp +ts +tB +tB +tB +tB +tB +tB +uI +tB +tB +tB +tB +tg +gp +KK +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 +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 +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 +"} +(153,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +xu +Nc +kM +Ew +OX +GA +NR +Qf +Ne +Oa +fB +yu +ha +hL +hL +ZC +yL +Fq +za +XF +gW +Nd +hW +XF +jp +jJ +Vx +kH +cq +hN +Ta +nn +Iz +aV +aa +aa +aV +aa +aa +aV +aa +aa +aa +aa +aa +aa +aa +rU +rU +rU +rU +rU +aa +aa +aa +aa +aa +aa +aa +aa +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +Ml +gp +uS +KK +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 +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 +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 +"} +(154,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +YS +YS +YS +YS +YS +YS +YS +YS +YS +YS +cs +cs +XQ +nw +XQ +cs +eP +kF +Go +XF +gX +gX +gX +XF +XF +Pb +kr +VC +jg +lK +md +mn +cI +Dj +Dj +Dj +Dj +Dj +Dj +UQ +JD +JD +UQ +UQ +UQ +UQ +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 +Ml +Ml +tl +KK +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 +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 +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 +"} +(155,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ax +aO +ax +Tb +ax +aO +ax +Tb +bW +cu +cP +dp +eg +ac +hT +XB +lg +Ja +PF +PF +PF +xH +XF +ES +zF +lI +mh +lL +Sk +zF +nu +Ua +ob +ox +oS +pj +Dj +YU +Wy +SL +Jf +Hk +Qa +UQ +aV +CH +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 +Ml +tm +KK +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 +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 +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 +"} +(156,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ax +aW +ax +Tb +ax +aW +ax +Tb +bX +lX +cU +Tu +dq +ac +eR +ZU +BT +Ja +hd +PF +PF +iy +XF +jK +kt +lQ +mi +lM +QH +QH +Tn +qd +oc +QH +VL +pk +FW +aM +XX +Pf +NI +NI +Qb +JD +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(157,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ay +ax +ax +Tb +ay +ax +ax +Tb +bY +aF +cY +dr +eh +ac +eV +ft +gf +Zs +he +Yj +Yj +iz +jr +jL +kv +Ie +jg +lN +me +mp +jg +jg +od +oy +VL +pl +FW +Rs +Ur +Kv +JV +NI +Qb +JD +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(158,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +bo +ba +ap +Tb +bo +hV +ap +Tb +bZ +aF +cY +dz +fL +ac +ac +kI +gg +PR +hf +UN +PF +iA +KJ +jM +kv +kL +FW +Yh +mf +lO +jg +nx +jA +jA +VL +pm +FW +Lt +NI +NI +JV +NI +Qb +JD +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(159,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +aE +bb +hP +Tb +aE +bb +ix +Tb +Tb +aF +de +dQ +ej +ac +ik +kJ +lk +Ja +hg +CQ +OS +iB +KJ +jN +kv +kL +FW +lP +jA +mx +jg +ny +oe +oz +oT +tF +Dj +Ky +NI +NI +JV +NI +Gm +UQ +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(160,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +rm +rm +rm +Qd +rm +rm +rm +KA +Tb +aF +df +gi +gi +cb +BS +Fg +gi +Ja +hh +PF +hX +iC +KJ +jO +zF +kL +jg +FW +mg +FW +jg +nz +qe +tu +wU +jg +Dj +JQ +NI +NI +JV +NI +Vy +UQ +aV +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 +Ml +tl +KK +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 +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 +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 +"} +(161,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +rm +rm +rm +bS +rm +fE +XN +CX +eQ +ZU +dg +dZ +Xj +gh +fi +ZU +gj +gA +IU +PF +hY +kD +KJ +jP +zF +lI +lr +Je +DJ +Je +mU +nA +oB +oB +oU +IX +Dj +ZB +NI +NI +JV +Jx +rb +UQ +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(162,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +aJ +gO +bn +Tb +bs +rm +XN +bK +Zw +cz +dh +hu +eu +ac +fj +UW +gl +Ja +hi +PF +hZ +iC +KJ +jQ +oV +kX +kX +lR +oV +oV +kX +oV +oV +lR +Qg +Ha +Sl +PM +HG +HG +Oz +OZ +YT +UQ +aV +CH +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 +Ml +tm +KK +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 +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 +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 +"} +(163,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +bo +ht +ap +Tb +bt +rm +UK +ef +Tb +fh +Xl +qA +ev +ac +Xo +ZU +lw +Ja +hj +hv +PF +hv +KJ +jR +NY +oW +lt +GQ +NY +NY +oW +oC +og +oC +oW +YZ +Dj +GV +NI +NI +NI +NI +Qb +UQ +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(164,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +aN +ax +ax +Tb +bG +rm +Vd +cB +Tb +cF +Xl +aF +ew +ac +fj +ZU +oY +Ja +hk +CY +PF +hw +KJ +jg +mK +kZ +mK +lT +jg +mK +mV +oI +jg +oI +CF +mK +Dj +Sj +NI +NI +NI +NI +Qb +UQ +aV +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 +Ml +tl +KK +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 +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 +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 +"} +(165,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ax +ax +ax +Tb +bH +Yv +XR +xn +cc +cH +dm +bJ +ex +ac +fk +ZU +Mb +Ja +hl +hx +Mf +iE +KJ +jS +Vx +oX +Vx +lW +jg +my +mW +nD +jg +oE +oX +pn +Dj +Ep +NI +NI +NI +NI +Gm +UQ +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(166,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +ax +bi +ax +Tb +bI +rm +NL +Tb +Tb +ac +ac +ac +ac +ac +iD +ZU +gm +Ja +hm +hy +ia +hy +Sx +kc +kA +lb +jA +Wv +mK +mz +mX +XY +jg +Ul +kX +po +Dj +XO +NI +NI +NI +NI +Qb +JD +aV +CH +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 +Ml +tl +KK +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 +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 +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 +"} +(167,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +gR +gR +gR +gR +Fp +Ko +Tx +gR +ci +dn +XS +SB +pi +aF +fm +fF +gn +gE +YK +hz +ib +iF +Gt +kd +kB +jA +jA +lY +mK +mA +mY +Nm +jg +oF +kX +Mw +Dj +LN +NI +NI +Hw +NI +MQ +JD +aV +CH +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 +Ml +tm +KK +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 +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 +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 +"} +(168,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +MM +MM +VV +gR +ck +dO +fp +eK +eK +fq +UE +fG +aF +gF +YG +hA +id +hA +hy +ke +jA +jA +jA +LW +mK +mB +mZ +VG +jg +oG +kX +LG +Dj +Fr +NI +NI +Fy +GP +Tq +JD +aV +CH +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 +Ml +tl +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +MM +qW +Gb +gR +ci +ed +XS +Kg +ez +fV +aF +aF +aF +Lr +Ja +hB +ii +iG +XF +kf +NY +nF +NY +lZ +jg +mC +na +En +jg +oH +lt +pr +Dj +ks +Oe +Va +Fh +Ia +VO +UQ +aV +CH +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 +Ml +tn +gp +KK +KK +KK +KK +KK +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gR +gR +gR +gR +gR +cs +cs +cs +xr +cs +eL +TP +aF +aF +cs +XF +hC +hC +hC +XF +FW +FW +Dj +FW +FW +Dj +Dj +FW +FW +Dj +FW +FW +Dj +Dj +UQ +UQ +UQ +JD +JD +UQ +UQ +aV +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 +Ml +gp +uX +gp +wd +Bl +Bl +Bl +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Oy +RH +Dm +Po +Se +cs +ac +fn +fH +go +gG +aV +aa +aa +aa +aa +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +CH +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 +Ml +gp +gp +ts +wR +AC +AR +Bf +Bl +KK +KK +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Oy +WU +MW +QY +Jw +cs +eM +fo +dz +dz +XS +aa +aa +aa +aa +CH +CH +CH +CH +CH +CH +aa +aa +CH +CH +CH +CH +CH +CH +aa +aa +aa +jI +CH +CH +CH +aa +CH +CH +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 +Ml +wd +Bl +Bl +wd +AD +wi +Bg +wd +Bl +Bl +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Oy +DP +FD +TB +Hu +cs +eN +fn +fI +gx +cs +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Ml +wd +SC +wG +wi +wi +Ge +wi +wi +wG +ww +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Oy +Oy +Oy +Oy +Oy +cs +eO +cs +XS +XS +cs +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aV +JK +wd +Iv +wi +wi +wS +wi +Bp +wi +wi +wi +wd +Ck +aV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +Ck +Ck +wd +OQ +Tw +Tw +Tw +AF +Bq +TV +BB +NN +wd +Ck +Ck +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Qz +wd +Iv +Tw +pp +wT +AG +wT +pp +Qj +wi +wd +Qz +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +we +Iv +wd +Iv +Tw +Fe +Aw +Aw +Aw +Pc +Qj +wi +wd +Iv +we +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +GG +wd +Iv +Nv +zX +pp +Aa +pp +NT +Qj +wi +wd +GG +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Iv +XC +Iv +Tw +zO +Fz +AJ +Fz +AV +TV +wi +Hz +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Iv +zG +zG +Tw +Rk +Rk +Rk +AU +VX +BC +wE +wE +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Iv +zG +wy +yr +Al +Ma +wv +AK +Br +BD +Yn +wE +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Iv +zG +wA +wJ +AH +Ma +Rf +BE +Bs +Bi +BE +BK +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Iv +zG +wB +wK +At +AE +AS +Bj +Bt +Bi +BE +wE +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +Bv +zG +yY +AH +Au +XE +wv +DO +Bk +Bu +BF +wE +Iv +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +KK +wd +wk +ws +AY +BY +Ax +AY +AY +wE +wE +wE +wE +wE +fU +wd +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +wd +wl +wt +Iv +Iv +Bv +Bv +AZ +Bv +Bv +Iv +Iv +Iv +Iv +wd +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +wf +wm +wu +Uy +Uy +Uy +Uy +Ba +Uy +WQ +Uy +Uy +BO +Iv +BQ +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +wg +wn +wg +Uy +wN +Az +AM +Bb +Tc +Bw +BG +BI +Cb +Iv +BQ +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +wd +wd +wo +wd +Uy +wO +AA +AN +Bc +Bm +Bx +BH +TH +BO +Bl +wd +wd +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +KK +KK +uR +KK +Uy +wP +wN +AO +wN +BP +By +BI +BL +Uy +KK +KK +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +Uy +wQ +AA +AP +Bd +Bo +Bz +BJ +BM +Uy +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +Uy +wN +AB +AQ +Ai +Tc +BA +TH +BN +Uy +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +Uy +Uy +Uy +Uy +Uy +Uy +Uy +Uy +Uy +Uy +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +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 +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 +gp +aa +gp +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +KK +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,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 +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 +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 +gp +aa +gp +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,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 +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 +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 +xs +RP +xs +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,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 +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 +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 +AW +YC +AW +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,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 +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 +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 +AW +Sf +AW +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Be +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,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 +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 +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 +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 +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 +aa +aa +wz +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 +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 +aa +aa +aa +aa +aa +aa +aa +"} +(249,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/_maps/stations/delta.dmm b/_maps/stations/delta.dmm new file mode 100644 index 000000000000..197c871ab5ed --- /dev/null +++ b/_maps/stations/delta.dmm @@ -0,0 +1,178445 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space, +/area/space) +"aac" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space, +/area/space/nearstation) +"aad" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aag" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"aak" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"aam" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aaq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aar" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aas" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"aat" = ( +/obj/docking_port/stationary/random{ + id = "pod2_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"aav" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aay" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaA" = ( +/obj/item/robot_suit, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaC" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"aaG" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aaH" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"aaI" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aaK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aaP" = ( +/turf/closed/wall/mineral/plastitanium, +/area/hallway/secondary/entry) +"aaS" = ( +/turf/closed/wall/mineral/plastitanium, +/area/construction/mining/aux_base) +"abe" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abf" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"abi" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"abj" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"abp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abq" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abs" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"abt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"aby" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = -23 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"abz" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"abA" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + req_access_txt = "16" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"abC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"abF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"abG" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"abH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"abJ" = ( +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"abP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 1"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/external{ + name = "Escape Pod 2"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abR" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/closet/emcloset/anchored, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"abS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"abT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"abV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"abZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aca" = ( +/obj/structure/sign/warning/pods{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acc" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ace" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"acf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aco" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acp" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acs" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"act" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acu" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acv" = ( +/obj/machinery/camera{ + c_tag = "Solar - Fore Starboard"; + name = "solar camera" + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acy" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"acA" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"acF" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 4; + height = 17; + id = "arrivals_stationary"; + name = "delta arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/delta; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"acG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"acK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acL" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"acN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"acO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"acP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"acR" = ( +/obj/structure/table/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"acV" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acX" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acY" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Fore Port"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ada" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adb" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Fore Starboard"; + dir = 4; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adc" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"add" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/mining_voucher, +/obj/machinery/camera{ + c_tag = "Auxiliary Construction - Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adf" = ( +/obj/structure/closet/secure_closet/miner/unlocked, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adg" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"adh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"adi" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"adj" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ado" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"adq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"ads" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"adt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adw" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/item/plant_analyzer, +/obj/machinery/camera{ + c_tag = "Permabrig - Garden"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"adx" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ady" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adG" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "63" + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north{ + pixel_x = -26 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/security/range) +"adO" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adQ" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"adR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"adZ" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aec" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aee" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aej" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aer" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"aet" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aex" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "Construction"; + name = "Construction Requests Console" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aeE" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aeF" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"aeS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeV" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeX" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afb" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afc" = ( +/obj/machinery/door/poddoor/shutters{ + id = "construction"; + name = "Construction Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aff" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/assault_pod/mining, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"afs" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"afu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afz" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"afG" = ( +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"afJ" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"afR" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"afT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afV" = ( +/obj/item/beacon, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"afY" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"agh" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/teleporter_hub{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/circuitboard/machine/teleporter_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"agk" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agl" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ago" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"agp" = ( +/obj/machinery/door/airlock/external{ + name = "Auxiliary Base Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"agv" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"agB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"agO" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_ne"; + name = "northeast of station"; + width = 23 + }, +/turf/open/space, +/area/space/nearstation) +"agR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"agS" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Fore"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"agX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Port"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"ahb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"aht" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Zone"; + req_one_access_txt = "72" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahv" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahF" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "cardoor"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ahS" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Aft Port"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aid" = ( +/obj/docking_port/stationary{ + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"aig" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aih" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aik" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ait" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"aiu" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"aiw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"aix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"aiy" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aiA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aiB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"aiJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aiT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aiU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aiY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ajf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajh" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aji" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ajp" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ajr" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"ajs" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aju" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ajJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"ajK" = ( +/obj/machinery/light/small/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ajR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/entry) +"ajV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"ajW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"ajX" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Port"; + dir = 1; + name = "arrivals camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"ajY" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"aka" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aki" = ( +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akj" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Starboard"; + dir = 1; + name = "arrivals camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akE" = ( +/turf/closed/wall, +/area/security/checkpoint/customs) +"akF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/customs) +"akG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"akI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"akJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akL" = ( +/obj/machinery/vending/clothing, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akM" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akN" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"akP" = ( +/turf/closed/wall, +/area/security/checkpoint) +"akQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint) +"akR" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint) +"alf" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"alg" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ali" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/tank/internals/oxygen, +/obj/item/wrench, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/keycard_auth/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"alv" = ( +/obj/machinery/photocopier, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"alw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"alA" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/restraints/handcuffs, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"alB" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"alW" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"alY" = ( +/obj/structure/closet/firecloset, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"amj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aml" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"amm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"amo" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/camera{ + c_tag = "Arrivals - Center"; + name = "arrivals camera" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amp" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amq" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amr" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ams" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"amx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"amy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"amW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"amY" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"and" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"ani" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"ank" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"anm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ann" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ano" = ( +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"anp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"ant" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"anv" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"anx" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Security Post - Arrivals"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"anF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"anJ" = ( +/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"anY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aod" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aoe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aoh" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Arrivals Customs"; + dir = 4; + name = "customs camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aoj" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aok" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aol" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aom" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aon" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"aoq" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aor" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + pixel_x = -8; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aoE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aoF" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"aoW" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ape" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"apg" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"api" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"apm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"apn" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"app" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"apq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"apr" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"apw" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apB" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apE" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apF" = ( +/obj/machinery/mass_driver/trash{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"apG" = ( +/obj/machinery/door/poddoor/massdriver_trash, +/obj/structure/fans/tiny, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"apH" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"apL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"apU" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aqa" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aqj" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aql" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"aqm" = ( +/obj/structure/table/wood, +/obj/item/food/chips, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aqn" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aqo" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aqp" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aqq" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"aqs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aqD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqE" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aqF" = ( +/obj/machinery/button/door{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_x = -25; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/structure/chair/stool, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/pod/old/mass_driver_controller/trash{ + pixel_x = -24; + pixel_y = -7 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqG" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqI" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aqT" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aqV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"arf" = ( +/obj/machinery/disposal/delivery_chute{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right"; + layer = 3 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arg" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 1; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arh" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"ari" = ( +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 8; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"arx" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ary" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"arB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arC" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"arF" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"arG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"arL" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arM" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arO" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Arrivals - Aft"; + name = "arrivals camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arP" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arR" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"arS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"arU" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ase" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"asf" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"asg" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ash" = ( +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/inverted{ + dir = 6; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"asi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"asr" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/camera{ + c_tag = "Bridge - E.V.A. Aft"; + dir = 1; + name = "command camera" + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"asD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"asF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"asH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"asQ" = ( +/obj/effect/landmark/start/chief_medical_officer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"atw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"atx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"atB" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"atC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"atD" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"atE" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/machinery/recycler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/disposal) +"atF" = ( +/obj/machinery/door/window/eastright{ + name = "Danger: Conveyor Access"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"atG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aub" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"auf" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"auk" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aul" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aum" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aun" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aup" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"auq" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aus" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"auO" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"auY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"avm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"avn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avo" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avp" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"avr" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/head/rabbitears, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avt" = ( +/obj/structure/table_frame/wood, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avu" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avv" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"avw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"avx" = ( +/obj/structure/table/wood, +/obj/item/camera_film, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"avz" = ( +/obj/structure/curtain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"avC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/engineering/storage_shared) +"avN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"avY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"awb" = ( +/turf/closed/wall, +/area/engineering/atmos/upper) +"awf" = ( +/obj/machinery/door/airlock/grunge{ + name = "Crematorium"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"awl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"awm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"awn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awo" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awp" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/toggle/suspenders, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"awr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/melee/skateboard, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"awu" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"awv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"awO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"awP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"axx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"axH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"axI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"axJ" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axK" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"axL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"axM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"axN" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"axO" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"axP" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"axQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"axS" = ( +/obj/machinery/photocopier, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"ayd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ayx" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ayL" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Site"; + req_access_txt = "8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"ayR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ayS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayT" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayU" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ayV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ayW" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/autodrobe/all_access, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ayX" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/jackboots, +/obj/effect/spawner/random/clothing/costume, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"ayY" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/maintenance/port/fore) +"ayZ" = ( +/obj/structure/table/wood, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"azn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"azr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"azs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"azH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"azI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"azV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"azX" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "RD's Junction"; + sortType = 13 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"aAd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aAe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aAf" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aAq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"aAA" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"aAR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"aAS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/disposal) +"aAU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aBz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aBA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aBB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "Custodial Junction"; + sortType = 22 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aBC" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "custodialshutters"; + name = "Custodial Shutters"; + req_access_txt = "26" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aBD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aBM" = ( +/obj/machinery/computer/operating{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"aBN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"aBU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Emergency Escape"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/central/secondary) +"aCo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"aCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aCR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aCW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"aDi" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 4; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"aDl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aDn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aDu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"aDx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aDy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"aDD" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aDE" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aDF" = ( +/obj/structure/bed, +/obj/machinery/status_display/evac/directional/north, +/obj/item/bedsheet/clown, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aDG" = ( +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aDH" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aDI" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"aDJ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/service) +"aDM" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison) +"aDU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"aEd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/aft) +"aEq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"aEH" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aEI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aEJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aEN" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aFb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aFi" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"aFk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aFm" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aFn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"aFo" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space, +/area/space/nearstation) +"aFp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aFq" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"aFr" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aFs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"aFu" = ( +/obj/structure/table/wood, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"aFC" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"aFT" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/button/door/directional/west{ + id = "AuxCabinA"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aFU" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aFV" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aFW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aFX" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"aGe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"aGf" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"aGp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"aGu" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "cardoor"; + name = "Cargo Cell Control"; + normaldoorcontrol = 1; + pixel_x = -34; + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aGH" = ( +/obj/machinery/light/directional/west, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"aGL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/prison) +"aGQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/disposal/incinerator) +"aGR" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/maintenance/disposal/incinerator) +"aGS" = ( +/obj/machinery/light/directional/north, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/unlocked, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aGT" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Incinerator"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/tank/plasma, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aGV" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aGW" = ( +/obj/machinery/power/smes{ + charge = 1e+006 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aGY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"aHk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"aHq" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Service Hallway - Fore"; + dir = 4; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aHL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aHM" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aHN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aIf" = ( +/obj/structure/table, +/obj/machinery/computer/bookmanagement, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"aIg" = ( +/obj/structure/bookcase/random, +/turf/open/floor/plasteel, +/area/security/prison) +"aIh" = ( +/obj/structure/bookcase/random, +/obj/structure/sign/poster/ripped{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aIk" = ( +/obj/machinery/power/turbine{ + dir = 8; + luminosity = 2 + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aIl" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 4; + luminosity = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aIm" = ( +/obj/machinery/igniter/incinerator_atmos, +/obj/structure/cable, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aIn" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aIo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 1 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aIp" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_y = 27 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"aIq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"aIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIx" = ( +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIy" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aIH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aIN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIO" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIP" = ( +/obj/structure/bed, +/obj/machinery/status_display/evac/directional/north, +/obj/item/bedsheet/mime, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIQ" = ( +/obj/structure/dresser, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aIR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Service Foyer"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aIS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aJd" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Center"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aJe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aJh" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"aJl" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/locker) +"aJm" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aJn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aJo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aJy" = ( +/mob/living/simple_animal/mouse/gray, +/turf/open/floor/plasteel, +/area/security/prison) +"aJA" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"aJD" = ( +/turf/closed/wall, +/area/space/nearstation) +"aJF" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aJH" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/fore) +"aJP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aKc" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"aKg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aKh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aKi" = ( +/obj/structure/closet, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aKj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aKk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aKl" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aKm" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aKn" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aKo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aKF" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/atmos/upper) +"aKK" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aKL" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aKM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aKN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Security Desk" + }, +/obj/item/folder/red, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aKU" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"aKV" = ( +/turf/closed/wall, +/area/security/prison) +"aKZ" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"aLa" = ( +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aLd" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aLe" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aLl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/landmark/start/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"aLv" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/cargo/sorting) +"aLC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/button/door/directional/west{ + id = "AuxCabinB"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aLD" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aLE" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aLF" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"aLT" = ( +/obj/machinery/door_timer{ + id = "cargocell"; + name = "Cargo Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aLU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aLV" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Security Post - Cargo"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aMa" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"aMf" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt3"; + name = "Cell 3" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permashut3" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"aMi" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aMm" = ( +/obj/structure/chair/stool, +/obj/item/radio/intercom/directional/west{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aMq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aMr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aMs" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aMt" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"aMu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"aMz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"aML" = ( +/turf/closed/wall, +/area/security/execution) +"aMM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/light/dim/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aMZ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aNl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Office"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"aNC" = ( +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aNG" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/spawner/random/contraband/prison, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"aNH" = ( +/obj/structure/table, +/obj/item/trash/popcorn, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aNJ" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"aNK" = ( +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aNM" = ( +/obj/machinery/light/directional/east, +/mob/living/simple_animal/mouse/white, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aNO" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aNP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"aNQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_one_access_txt = "13; 24; 10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"aNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aNS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aOl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room/external) +"aOw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"aON" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aOR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"aOS" = ( +/obj/structure/closet/secure_closet/brig{ + id = "cargocell"; + name = "Cargo Cell Locker" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aOZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"aPa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall, +/area/engineering/atmos/upper) +"aPg" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/ticket_machine/directional/north, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPi" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/camera{ + c_tag = "Permabrig - Cell 2"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"aPk" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) +"aPn" = ( +/obj/machinery/light/small/directional/west, +/obj/item/clothing/suit/caution, +/obj/structure/sign/poster/official/no_erp{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"aPo" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/item/soap/homemade, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"aPq" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aPr" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aPs" = ( +/obj/structure/table, +/obj/item/kitchen/fork/plastic, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aPt" = ( +/obj/machinery/vending/sustenance, +/obj/machinery/camera{ + c_tag = "Permabrig - Kitchen"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aPu" = ( +/obj/structure/table, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/turf/open/floor/plating, +/area/security/prison) +"aPv" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/spawner/random/contraband/prison, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"aPx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/incinerator_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aPz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"aPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/maintenance/disposal/incinerator) +"aPB" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"aPC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"aPS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aQc" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"aQx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"aQG" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aQI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"aQK" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/fourcolor, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/chapel/office) +"aQW" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aQX" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/healthanalyzer, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aQY" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/morphine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aRm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aRn" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/security{ + pixel_y = 8 + }, +/turf/closed/wall, +/area/cargo/warehouse) +"aRo" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aRx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aRA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRF" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"aRT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"aSd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/goonplaque, +/area/hallway/primary/central/north) +"aSh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/checkpoint/supply) +"aSi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"aSk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 6 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"aSy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aSC" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aSD" = ( +/turf/open/floor/plasteel/white, +/area/security/prison) +"aSE" = ( +/obj/structure/bed, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aSG" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aSH" = ( +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aSI" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/north, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/morphine{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/chloralhydrate{ + pixel_x = -7 + }, +/obj/item/reagent_containers/glass/bottle/facid{ + pixel_x = 7 + }, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aSJ" = ( +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/door/directional/north{ + id = "visitation"; + name = "Visitation Shutters"; + pixel_x = 6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aSM" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/ignition{ + id = "justicespark"; + pixel_x = 7; + pixel_y = 24; + req_access_txt = "63" + }, +/obj/machinery/button/flasher{ + id = "justiceflash"; + pixel_x = 6; + pixel_y = 34; + req_access_txt = "63" + }, +/obj/item/folder/red{ + pixel_x = 3 + }, +/obj/item/restraints/handcuffs, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "justiceblast"; + name = "Justice Shutters Control"; + pixel_x = -6; + req_access_txt = "63" + }, +/obj/machinery/button/door/directional/north{ + id = "justicechamber"; + name = "Justice Chamber Control"; + pixel_x = -6; + pixel_y = 34; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aSN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aSO" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aSY" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"aSZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aTe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"aTB" = ( +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aTM" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aTN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aUp" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"aUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison/safe) +"aUw" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Permabrig - Cell 1"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"aUD" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/item/electropack, +/obj/item/assembly/signaler, +/obj/machinery/light/directional/west, +/obj/item/clothing/head/helmet/sec, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aUE" = ( +/obj/machinery/camera{ + c_tag = "Security - Visitation"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aUK" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"aVi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aVm" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Service Hallway - Aft"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aVv" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Quartermaster Junction"; + sortType = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aVA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"aVB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"aVP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"aWe" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aWf" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt1"; + name = "Cell 1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permashut1" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"aWg" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aWi" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/electricshock{ + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aWk" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aWl" = ( +/obj/structure/table/reinforced, +/obj/machinery/light_switch/directional/south, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aWm" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"aWq" = ( +/obj/machinery/door/window/westleft, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Justice gas pump" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aWE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"aWH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"aWU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aXd" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Cargo Junction"; + sortType = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aXh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"aXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aXB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"aXI" = ( +/turf/closed/wall, +/area/service/bar) +"aXM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"aXR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation"; + req_access_txt = "2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"aXU" = ( +/turf/closed/wall/mineral/plastitanium, +/area/security/prison) +"aYr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aYs" = ( +/obj/structure/disposalpipe/sorting/wrap{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"aYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aYB" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"aYH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"aZk" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aZn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"aZo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"aZp" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/multitool, +/obj/item/pen/red, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"aZq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"aZr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison) +"aZu" = ( +/obj/machinery/camera{ + c_tag = "Security - Prison" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"aZC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"aZK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Security - Escape Pod" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aZL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aZM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + initial_temperature = 2.7; + luminosity = 2 + }, +/area/security/prison) +"aZN" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/security/brig) +"baj" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ban" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bao" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bax" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"baD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"baG" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"baL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"baM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"baW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bbn" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/pods{ + dir = 8; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bbp" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bbr" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"bbs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bbt" = ( +/turf/open/floor/plating, +/area/security/prison) +"bbu" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod 3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/security/prison) +"bbv" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"bbw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bbz" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod4_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space) +"bbA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"bbB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bbQ" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"bbT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bcb" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bcd" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"bce" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"bcm" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bcn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bcv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bcD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bcG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bcI" = ( +/obj/structure/cable, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_x = 27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"bcJ" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcK" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcO" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcP" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcR" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcS" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcT" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bcU" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcV" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/clothing/suit/armor/vest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bcW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating{ + initial_gas_mix = "o2=0.01;n2=0.01;TEMP=2.7"; + initial_temperature = 2.7; + luminosity = 2 + }, +/area/security/prison) +"bde" = ( +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"bdg" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"bdo" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bdx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bdL" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "Theater Junction"; + sortType = 18 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bdN" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"bdO" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bdP" = ( +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bdR" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bdS" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Waiting Room"; + name = "cargo camera" + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bdT" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bdU" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"beo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"beq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"bes" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"bet" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bez" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"beK" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"beP" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"beV" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Hydroponics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"beX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"beY" = ( +/obj/effect/landmark/start/head_of_security, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"bfk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"bfl" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bfo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bfp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bfs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bfw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"bfC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bfH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bfR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bfS" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bfU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bfW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"bgi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bgj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bgH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bgU" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"bgY" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"bgZ" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"bhb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"bhc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bhf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"bhh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bhn" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bhH" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bhJ" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bhQ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/aft) +"bhR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"bhT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bhW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bhX" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bia" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bib" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bin" = ( +/obj/machinery/field/generator, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"biy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"biz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"biA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"biB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"biE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"biF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"biU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"bjc" = ( +/obj/structure/closet/wardrobe/green, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"bjh" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/arrows/white{ + color = "#0000FF"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bjo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bjK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"bjN" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + name = "Kitchen Junction"; + sortType = 20 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bjR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bki" = ( +/obj/machinery/mecha_part_fabricator/sb, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bkk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bkv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"bkw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bkA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bkE" = ( +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bkF" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bkJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"bkU" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bkY" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall13"; + location = "hall12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"blb" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bll" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"blm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"blo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"blt" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"blw" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"blB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research) +"blE" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/hallway/primary/central/north) +"blH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"blJ" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"blL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"blM" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"blN" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"blQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bmc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"bmd" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/camera{ + c_tag = "Brig - Infirmary"; + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/item/healthanalyzer{ + pixel_x = -2; + pixel_y = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bme" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/light{ + pixel_y = 0 + }, +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bmf" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"bmg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/medbay/alt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/sb_med) +"bmh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bmw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"bmA" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"bmD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bmH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bmI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bmJ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"bne" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bnn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bnp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bnt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"bnu" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/directions/supply{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -8 + }, +/turf/closed/wall, +/area/hallway/primary/central/north) +"bnv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bnC" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bnD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bnG" = ( +/turf/closed/wall/r_wall, +/area/security/execution/transfer) +"bnI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bnJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bnS" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 2"; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"bnW" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"bnZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"boe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bof" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"boj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bok" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bot" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"boH" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"bpa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bpb" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bpd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bpe" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bpf" = ( +/obj/machinery/computer/shuttle_flight/labor, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bpg" = ( +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bph" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Transfer Centre" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bpi" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bpF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bpL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bpN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"bqb" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"bqm" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bqs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bqt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"bqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bqv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bqz" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Locker Room - Aft"; + dir = 1; + name = "dormitories camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/commons/locker) +"bqG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bqZ" = ( +/obj/machinery/medical_kiosk, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"brc" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bre" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"brf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"brg" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"brh" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bri" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"brj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"brk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"brB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"brL" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"brM" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"brN" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"brO" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"brP" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"brS" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bsa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bsj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"bsk" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"bsl" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"bsq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi3"; + location = "engi2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bsr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"btb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"btd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bte" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"btl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"btm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bto" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"btF" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"btH" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"btJ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"btW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bua" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/item/toy/katana, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"bug" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bui" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"buz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"buK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bve" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"bvi" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall9"; + location = "hall8" + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"bvm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bvs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bvu" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/port) +"bvF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bvJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space/nearstation) +"bvX" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bvY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bvZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bwc" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_security, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"bwe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"bwi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bwo" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bwp" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Chamber - Fore"; + name = "motion-sensitive ai camera"; + network = list("aichamber") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bwq" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bwT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"bxe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bxm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bxp" = ( +/obj/machinery/camera{ + c_tag = "Security - Brig Fore"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"bxv" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bxw" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bxy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bxz" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"byf" = ( +/turf/open/floor/plasteel, +/area/engineering/main) +"bym" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"byB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"byD" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 28 + }, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byG" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/north, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byH" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"byK" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"byL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"byS" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/bodypart/l_leg/robot, +/obj/item/bodypart/r_leg/robot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"byT" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"bzb" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bzc" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bzp" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"bzO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"bzS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"bzW" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"bAc" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/delta; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"bAd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bAf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Gulag Shuttle Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bAg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bAj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bAs" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"bAy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bAz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bAF" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bAG" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bAI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"bAM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bAT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bBf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bBs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bBw" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"bBI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bBO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"bBZ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bCa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bCb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bCc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bCg" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"bCi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"bCl" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"bCq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bCt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aicorewindow"; + name = "AI Core Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bCu" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bDN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"bDU" = ( +/turf/closed/wall, +/area/cargo/exploration_prep) +"bDV" = ( +/turf/closed/wall, +/area/security/execution/transfer) +"bDW" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/firealarm/directional/west{ + pixel_x = -38 + }, +/obj/machinery/button/door/directional/west{ + id = "gulagdoor"; + name = "Transfer Door Control"; + normaldoorcontrol = 1 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bDX" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "HoS Junction"; + sortType = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bDY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bDZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Transfer Centre Aft"; + dir = 1 + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bEa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bEb" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bEf" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + pixel_x = 4; + req_access_txt = "16" + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel" + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bEg" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bEh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/service/kitchen) +"bEl" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bEm" = ( +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + pixel_x = -3; + req_access_txt = "16" + }, +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel" + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bEr" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bEx" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bEy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"bED" = ( +/obj/item/beacon, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"bEQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bEW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bFj" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"bFG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bFH" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "gulagdoor"; + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"bFI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/transfer) +"bFK" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"bFL" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"bFM" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bFN" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bFO" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bFP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"bFQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/warden) +"bFR" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bFT" = ( +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_y = -8 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_y = -8 + }, +/obj/machinery/button/door/directional/south{ + id = "aicoredoor"; + name = "AI Chamber Access Control"; + pixel_x = -24; + req_access_txt = "16" + }, +/obj/machinery/button/door/directional/south{ + id = "aicorewindow"; + name = "AI Core Shutters"; + pixel_x = 24; + req_access_txt = "16" + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"bFX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bGo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"bGr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bGS" = ( +/obj/machinery/door/window/brigdoor{ + id = "cargocell"; + name = "Cargo Cell"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bGX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"bGZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Atmospherics - Starboard"; + dir = 8; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bHn" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bHq" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"bHr" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"bHs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/detectives_office) +"bHt" = ( +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHv" = ( +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"bHx" = ( +/obj/structure/closet/secure_closet/brig{ + id = "brig1"; + name = "Cell 1 Locker" + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bHy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/flasher/directional/north{ + id = "brig1" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bHG" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bHH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bHI" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Security E.V.A. Storage" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/warden) +"bHJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bHK" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bHL" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"bHM" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/mmi, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bIc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bIf" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/package_wrap, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"bIj" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"bIt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bIA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/primary/central/south) +"bIM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bIW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"bJa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bJc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bJd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bJe" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bJf" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bJg" = ( +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/machinery/vending/wardrobe/det_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJh" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/clothing/head/fedora/det_hat{ + icon_state = "curator" + }, +/obj/item/clothing/suit/det_suit{ + icon_state = "curator" + }, +/obj/item/clothing/under/rank/security/detective, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJi" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/camera/detective, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJj" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/restraints/handcuffs, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJk" = ( +/obj/structure/filingcabinet/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJl" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/bin, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJm" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJn" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJo" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bJq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJr" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJv" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bJy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"bJz" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bJB" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/machinery/camera{ + c_tag = "Security - Evidence Storage"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bJD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bJE" = ( +/obj/machinery/suit_storage_unit/security, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bJF" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bJM" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bJN" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bKd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bKr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Gear Room"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bKv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Storage Closet"; + req_access_txt = "63" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"bKH" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"bKJ" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bKW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Auxiliary Tool Storage Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bKY" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Detective's Office Maintenance"; + req_access_txt = "4" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"bKZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bLa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bLl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bLm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bLo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bLr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bLs" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"bLw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bLx" = ( +/obj/structure/table/reinforced, +/obj/item/bodypart/chest/robot, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 6 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bLF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"bLU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bMa" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"bMb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"bMc" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "engdoor"; + name = "Engineering Cell"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bMe" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bMx" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bMy" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMz" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMA" = ( +/obj/machinery/camera{ + c_tag = "Telecomms - Monitoring"; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMD" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bME" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio{ + pixel_y = 5 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bMF" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bMK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"bMR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"bMW" = ( +/turf/closed/wall, +/area/security/detectives_office) +"bMX" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bMY" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bMZ" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bNb" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bNc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bNd" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + department = "Detective's Office"; + name = "Detective's Requests Console" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bNf" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bNi" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bNj" = ( +/turf/closed/wall, +/area/security/brig) +"bNl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bNm" = ( +/obj/machinery/computer/crew, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bNn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bNp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bNq" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/item/tactical_recharger{ + pixel_x = -7 + }, +/obj/item/tactical_recharger{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bNr" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -3 + }, +/obj/item/storage/lockbox/loyalty, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bNs" = ( +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/item/key/security, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bNt" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bNu" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bNw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bNx" = ( +/obj/machinery/camera/motion{ + c_tag = "AI Chamber - Aft"; + dir = 1; + name = "motion-sensitive ai camera"; + network = list("aichamber") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bNA" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bNB" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bNM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/machinery/door/window/brigdoor/northright{ + dir = 2; + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/machinery/door/window/brigdoor/northright{ + name = "Justice Chamber"; + req_access_txt = "3" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bOc" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"bOf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"bOg" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bOh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bOi" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/closet/secure_closet/brig{ + id = "engcell"; + name = "Engineering Cell Locker" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bOj" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bOk" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bOv" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"bOF" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopline"; + name = "Queue Shutters" + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bOG" = ( +/obj/machinery/announcement_system, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bOH" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOI" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bON" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bOO" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bOP" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"bOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"bOY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/mob/living/carbon/human/species/monkey/punpun, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"bPc" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/color/latex, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bPd" = ( +/obj/machinery/door/window/eastright{ + name = "Detective's Morgue" + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bPe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bPg" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bPi" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/hand_labeler, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bPj" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/detective, +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bPk" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bPl" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bPo" = ( +/obj/structure/closet/secure_closet/brig{ + id = "brig2"; + name = "Cell 2 Locker" + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bPp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/flasher/directional/north{ + id = "brig2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bPr" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"bPs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + dir = 4; + name = "Warden's Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/westleft{ + name = "Warden's Desk" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"bPt" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bPu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"bPv" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bPw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"bPx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bPy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bPz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bPA" = ( +/obj/structure/closet/secure_closet/contraband/armory, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bPC" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bPH" = ( +/obj/structure/sign/plaques/kiddie, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bPV" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall11"; + location = "hall10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bQd" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bQe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bQf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bQg" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"bQh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bQi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bQr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/lawoffice) +"bQA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/button/door/directional/west{ + id = "engsm"; + name = "Radiation Shutters Control"; + req_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"bQG" = ( +/obj/structure/reflector/box, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"bQH" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/item/paper/monitorkey, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bQI" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bQJ" = ( +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bQM" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bQN" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bQO" = ( +/obj/machinery/computer/telecomms/server{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bRd" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRj" = ( +/obj/structure/table/wood, +/obj/item/pen, +/obj/item/paper_bin/carbon, +/obj/item/pen, +/obj/item/toy/figure/detective, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bRk" = ( +/obj/structure/table/wood, +/obj/structure/disposalpipe/segment, +/obj/item/flashlight/lamp, +/obj/item/reagent_containers/food/drinks/flask/det, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bRl" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/safe/directional/east, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/light_switch/directional/south{ + pixel_x = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "detectivewindows"; + name = "Privacy Shutters"; + pixel_x = -6; + req_access_txt = "4" + }, +/turf/open/floor/carpet, +/area/security/detectives_office) +"bRm" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bRq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bRs" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bRt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bRv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bRw" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bRx" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bRy" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bRz" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bRA" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bRB" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bRC" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bRD" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bRE" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRF" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRG" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite - Antechamber"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRK" = ( +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRL" = ( +/obj/machinery/teleport/station, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRM" = ( +/obj/machinery/computer/teleporter, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bRN" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bRO" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/turf/open/space, +/area/space/nearstation) +"bRP" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/space/nearstation) +"bRQ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bRR" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space, +/area/space/nearstation) +"bRS" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"bSd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"bSl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"bSn" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + id = "engcell"; + name = "Engineering Cell"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bSp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bSD" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bSE" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bSF" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bSH" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bSI" = ( +/obj/structure/filingcabinet/medical, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bSJ" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"bSK" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bSZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "detectivewindows"; + name = "Detective Privacy Blast door" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/detectives_office) +"bTb" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bTe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bTf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/warden, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/security/warden) +"bTh" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Warden's Office"; + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/warden) +"bTi" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bTk" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bTl" = ( +/obj/machinery/camera/motion{ + c_tag = "Armoury - Exterior"; + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bTq" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bTs" = ( +/obj/machinery/camera{ + c_tag = "AI Satellite - Maintenance"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"bTu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bTB" = ( +/obj/item/kirbyplants/random, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_x = -32; + req_access = null; + req_access_txt = "65" + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Teleporter"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bTC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bTD" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"bTF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"bTJ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/diagonal{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bTK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"bTR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bUh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUi" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/machinery/door_timer{ + id = "engcell"; + name = "Engineering Cell"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Engineering"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bUl" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"bUF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bUG" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"bUH" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"bUI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"bUK" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command{ + name = "Telecomms Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"bUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"bUS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUU" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bUY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Hallway - Port"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVd" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 30 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVg" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bVj" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"bVl" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -42 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bVn" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/multitool, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bVp" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bVr" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bWl" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/office) +"bWq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bWv" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWw" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWy" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bWz" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWI" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bWT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"bWW" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bWX" = ( +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bWY" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bWZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"bXa" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"bXb" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bXm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"bXq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXz" = ( +/obj/item/beacon, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall12"; + location = "hall11" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey."; + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXA" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Security Junction"; + sortType = 7 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bXB" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXD" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"bXE" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXH" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bXI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"bXJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bXL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bXM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bXN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bXO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bXR" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle, +/obj/item/clothing/suit/hooded/ablative, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bXU" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"bXV" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bXW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bXY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bYa" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bYe" = ( +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bYf" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"bYg" = ( +/obj/structure/showcase/cyborg/old{ + dir = 8; + pixel_x = 9; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bYh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"bYm" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/diagonal, +/turf/open/space, +/area/space/nearstation) +"bYw" = ( +/obj/machinery/door/window/southright, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"bYB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/range) +"bYE" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bYF" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bYG" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bYH" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"bYI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bYJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bYL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage) +"bYO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bYP" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bZf" = ( +/obj/machinery/telecomms/server/presets/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"bZg" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"bZi" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Telecomms Server Room"; + req_access_txt = "61" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bZj" = ( +/obj/machinery/telecomms/server/presets/command, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bZk" = ( +/obj/machinery/telecomms/server/presets/security, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"bZI" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"bZM" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"bZN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"bZX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"bZY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/full_armor_upgrade, +/obj/item/full_armor_upgrade, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"caa" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cab" = ( +/obj/machinery/computer/monitor{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cac" = ( +/obj/machinery/recharge_station, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cad" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cae" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"caf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cah" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cai" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"caj" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cak" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cal" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/status_display/evac/directional/south, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cam" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/borg, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"can" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/machinery/status_display/ai/directional/south, +/obj/item/aicard, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cao" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"cap" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"caq" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"cas" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"cau" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"caB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"caE" = ( +/turf/closed/wall, +/area/maintenance/port) +"caF" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"caQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/exodrone_control_console{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"caT" = ( +/obj/machinery/telecomms/bus/preset_one, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"caU" = ( +/obj/machinery/telecomms/processor/preset_one, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white/telecomms, +/area/tcommsat/server) +"caY" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"caZ" = ( +/obj/machinery/telecomms/processor/preset_three, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cba" = ( +/obj/machinery/telecomms/bus/preset_three, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"cbi" = ( +/obj/machinery/holopad{ + pixel_x = -16 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"cbj" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/security/courtroom) +"cbk" = ( +/turf/closed/wall, +/area/security/courtroom) +"cbn" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/courtroom) +"cbr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"cbD" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"cbE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"cbF" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/clothing/under/rank/security/warden/grey, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"cbG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"cbH" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "armouryaccess"; + name = "Armoury Access"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cbI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cbJ" = ( +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cbK" = ( +/obj/machinery/camera{ + c_tag = "Armory - Interior"; + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cbL" = ( +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cbX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ccm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ccn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"cco" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Game Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"ccu" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/toy/cards/deck, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"ccD" = ( +/obj/machinery/camera{ + c_tag = "Telecomms - Chamber Port"; + dir = 4; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ccH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ccL" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Secure Storage"; + req_access_txt = "71" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"ccM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ccU" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ccW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ccX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ccY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Courtroom - Fore" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ccZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/courtroom) +"cda" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cdb" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cdc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cdd" = ( +/obj/machinery/light/directional/north, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cdf" = ( +/obj/structure/closet/secure_closet/courtroom, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cdg" = ( +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cdm" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigwindows"; + name = "Brig Front Blast door" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/machinery/door/window/northright{ + name = "Security Desk" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cdo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cdp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Security - Brig Aft"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"cdq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + name = "Warden's Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southright{ + name = "Warden's Desk" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/item/poster/random_official{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_official, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/warden) +"cdr" = ( +/obj/machinery/door/poddoor{ + id = "armouryaccess"; + name = "Armoury Access" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cds" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/northright{ + name = "Armoury Desk"; + req_access_txt = "3" + }, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/southright{ + name = "Armoury Desk" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"cdt" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"cdv" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cdw" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cdz" = ( +/obj/machinery/camera/motion{ + c_tag = "AI - Upload"; + name = "motion-sensitive ai camera"; + network = list("aiupload") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cdA" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cdH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"cdL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"cdN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cdT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cdV" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cdY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cea" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"ceb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"ced" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cet" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ceD" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"ceG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ceM" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ceO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"ceP" = ( +/obj/structure/chair{ + name = "Prosecution" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ceQ" = ( +/obj/structure/chair{ + name = "Prosecution" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ceR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cfb" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/brig) +"cfc" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"cfd" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "brigflashdoor"; + name = "Flash Control"; + pixel_x = 26; + pixel_y = 7; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "brigfront"; + name = "Brig Access Control"; + pixel_y = -6; + req_access_txt = "63" + }, +/obj/machinery/button/door/directional/east{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = 36; + pixel_y = -6; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cfe" = ( +/obj/structure/chair, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cff" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"cfk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cfm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"cfq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel, +/area/security/brig) +"cfr" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/brig) +"cfs" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/random/aimodule/harmless, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cft" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cfu" = ( +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"cfz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/effect/spawner/random/aimodule/harmful, +/obj/item/ai_module/supplied/oxygen{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cfR" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port) +"cfT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cfX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"cgm" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cgq" = ( +/obj/machinery/camera{ + c_tag = "Telecomms - Chamber Starboard"; + dir = 8; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cgz" = ( +/obj/structure/table, +/obj/machinery/status_display/ai/directional/west, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cgC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cgD" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cgE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cgF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cgG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cgO" = ( +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Center"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cgP" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/secofficer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/security/brig) +"cgR" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cgS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cgX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/brig) +"cgY" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"cgZ" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"chb" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"chc" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"chd" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"che" = ( +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"chg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"chh" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"chi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "aiuploadwindow"; + name = "AI Upload Lockdown Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"chj" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/ai_module/core/freeformcore{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/core/full/custom, +/obj/item/ai_module/core/full/asimov{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cho" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"chq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/window/reinforced, +/obj/item/ai_module/supplied/protect_station{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/zeroth/onehuman, +/obj/item/ai_module/reset/purge{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"chr" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"chs" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"cht" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/space, +/area/space/nearstation) +"chG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"chH" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"chI" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port) +"chK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chL" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"chM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cid" = ( +/obj/machinery/telecomms/bus/preset_four, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cie" = ( +/obj/machinery/telecomms/processor/preset_four, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cif" = ( +/obj/machinery/copytech, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"cig" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cih" = ( +/obj/machinery/telecomms/processor/preset_two, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cii" = ( +/obj/machinery/telecomms/bus/preset_two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cir" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cit" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ciz" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/machinery/light/small/directional/west, +/obj/item/pen, +/obj/structure/sign/poster/official/enlist{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciI" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -26 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/security/brig) +"ciJ" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciK" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciL" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciM" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciN" = ( +/obj/machinery/vending/security, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciO" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciP" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ciR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"ciX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"ciZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/space/nearstation) +"cjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cjc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cjl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"cjp" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cjq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cjt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cjE" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cjF" = ( +/obj/machinery/telecomms/server/presets/service, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cjG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/command{ + name = "Telecomms Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"cjH" = ( +/obj/machinery/telecomms/server/presets/engineering, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cjI" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/telecomms, +/area/tcommsat/server) +"cjP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"cjQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/central/secondary) +"ckd" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Courtroom - Center"; + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ckl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"ckn" = ( +/obj/structure/table/reinforced, +/obj/item/ai_module/reset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"ckp" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"ckt" = ( +/obj/structure/table/reinforced, +/obj/item/ai_module/supplied/quarantine, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"ckJ" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ckK" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"ckL" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"ckN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cla" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"clp" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"clq" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"clr" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"clu" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"clv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard) +"clw" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"clx" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar/red, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cly" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"clz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"clA" = ( +/turf/closed/wall, +/area/security/range) +"clD" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/range) +"clF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/range) +"clG" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/range) +"clH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/security/range) +"clI" = ( +/turf/open/floor/plating, +/area/security/range) +"clJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/security/range) +"clK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/range) +"clL" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/security/range) +"clM" = ( +/obj/structure/table/reinforced, +/obj/item/ai_module/supplied/freeform, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"clN" = ( +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = -26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"clP" = ( +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"clQ" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/aimodule/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"clR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"cme" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cmf" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cmq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"cmA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"cmD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/server) +"cmF" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Telecomms Server Room"; + req_access_txt = "61" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"cmO" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cmR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cmS" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cmT" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/security/courtroom) +"cmU" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cmW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cmX" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cmY" = ( +/obj/structure/chair{ + dir = 8; + name = "Judge" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cmZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cna" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cnb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cnp" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/range) +"cnq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/range) +"cnr" = ( +/obj/item/target/syndicate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/training_machine, +/turf/open/floor/plasteel, +/area/security/range) +"cns" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/range) +"cnu" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cnv" = ( +/obj/machinery/porta_turret/ai, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cnx" = ( +/obj/machinery/porta_turret/ai, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cny" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"cnI" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"cnM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cnV" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Bar - Aft"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"coa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"coe" = ( +/turf/closed/wall, +/area/tcommsat/server) +"cog" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"coi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cok" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"cot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/warrant{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cov" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cow" = ( +/obj/structure/chair{ + dir = 1; + name = "Defense" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cox" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"coy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"coz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"coA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"coB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coC" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"coG" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"coH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coJ" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"coK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"coN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/northleft{ + name = "Security Delivery"; + req_access_txt = "63" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/range) +"coO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/range) +"coP" = ( +/obj/structure/table/reinforced, +/obj/item/gun/energy/laser/practice{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/range) +"coQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/range) +"coR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/security/range) +"coS" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Security - Shooting Range"; + dir = 1 + }, +/turf/open/floor/plating, +/area/security/range) +"coT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/security/range) +"coU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/range) +"coW" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/range) +"cpa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cpm" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cpn" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpo" = ( +/obj/structure/tank_dispenser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpp" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cpr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/item/clothing/gloves/color/yellow, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"cpv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"cpI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/tank_holder/oxygen/red, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cpL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"cpN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpV" = ( +/obj/structure/table, +/obj/machinery/status_display/evac/directional/west, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cpX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cpY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cqb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"cqc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cqg" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Security" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/range) +"cqh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cqj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"cqn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"cqu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"cqy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"cqC" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/effect/landmark/start/captain, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"cqH" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqJ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cqK" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"cqW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"cqY" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"cqZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/secondary/command) +"cra" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"cre" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"crh" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crj" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Courtroom - Aft"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crk" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/courtroom) +"crl" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crm" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crn" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"cro" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crp" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"crr" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"crw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/closet/wardrobe/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"crA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"crB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"crC" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/structure/closet/bombcloset/security, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"crD" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/space, +/area/space/nearstation) +"crQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"csa" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"csb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"csm" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"csK" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"csM" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"csR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"csZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cta" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard) +"ctf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"ctg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/security/glass{ + name = "Storage Closet"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cth" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/nuclearbomb/beer, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cti" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ctr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cts" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ctu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ctE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ctF" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ctG" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ctH" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ctI" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ctR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ctU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ctV" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ctW" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Center Port"; + dir = 1; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ctY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ctZ" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cub" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cuc" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cud" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cue" = ( +/obj/structure/chair/comfy/black, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cug" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cuh" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cuj" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cum" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cup" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Central Hallway - Center Starboard"; + dir = 1; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cuq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cur" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cut" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"cuu" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: PRESSURIZED DOORS" + }, +/turf/closed/wall, +/area/security/courtroom) +"cuF" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuG" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/security/officer, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cuK" = ( +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/flashes, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cuM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cuQ" = ( +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cvd" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cve" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"cvf" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/electronics/firelock, +/obj/item/stack/sheet/glass, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cvg" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/electronics/airalarm, +/obj/item/electronics/firealarm, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cvh" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = "n2" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"cvt" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cvu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cvC" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cvD" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cvE" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cvP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cvX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"cwc" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cwh" = ( +/obj/effect/landmark/start/mechanic, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"cwB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cwC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cwL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cwM" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cwN" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cwP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cwR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cxr" = ( +/obj/structure/bed/dogbed/mcgriff, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/mob/living/simple_animal/pet/dog/pug/mcgriff, +/turf/open/floor/plasteel, +/area/security/warden) +"cxC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"cxF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"cxN" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"cxO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"cxP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cxU" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cxY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"cyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cyt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cyu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cyv" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"cyD" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cyY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cyZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cza" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard) +"czb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard) +"czc" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"czd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"cze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"czi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"czo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"czq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"czv" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/disposal) +"czw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"czJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"czV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"cAe" = ( +/obj/machinery/door/airlock{ + name = "Permabrig Showers" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"cAf" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Chemistry Junction"; + sortType = 11 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAy" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"cAE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cAR" = ( +/obj/structure/table/wood, +/obj/item/toy/talking/ai, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cAW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cAX" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cAY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cAZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/delivery, +/obj/structure/tank_holder/emergency_oxygen, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cBM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/commons/dorms) +"cBR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cCe" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"cCh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cCk" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/mixing) +"cCn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cCv" = ( +/obj/structure/dresser, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"cCC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cCD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cCE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cCF" = ( +/obj/effect/turf_decal/bot, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cCP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cCY" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"cDk" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"cDn" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cDC" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"cDW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cEk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cED" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"cFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"cFj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cFF" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cFG" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 1"; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cFH" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"cFK" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tea, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"cFL" = ( +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/east, +/obj/effect/mapping_helpers/airalarm/unlocked, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cFZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cGa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plating, +/area/maintenance/port) +"cGb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cGc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/port) +"cGe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cGf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"cGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"cGj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cGJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"cGO" = ( +/obj/structure/chair/stool, +/obj/machinery/light/small/directional/north, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cHk" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cHq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"cHv" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/maintenance/port) +"cHw" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods/fifty, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cHx" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"cHy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/port) +"cHI" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"cHR" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cHS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"cHU" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"cHV" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHX" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cHY" = ( +/obj/machinery/newscaster/directional/north, +/obj/structure/table/wood, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cIh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"cIj" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space, +/area/space/nearstation) +"cIo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"cIp" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cIt" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"cIu" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"cIV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cIW" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIX" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJa" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/reagent_containers/blood/random, +/obj/item/roller, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cJc" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJd" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cJl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"cJq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"cJu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/kitchen) +"cJw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"cJI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cJK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cJM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cJN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cJV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"cKc" = ( +/obj/machinery/light_switch/directional/west, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"cKJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cLH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cLK" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood, +/obj/item/storage/pill_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"cLM" = ( +/obj/item/radio/off, +/turf/open/floor/plating, +/area/maintenance/port) +"cMa" = ( +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cMf" = ( +/obj/item/storage/belt, +/obj/item/radio, +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"cMi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cMj" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cMn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cMM" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cMO" = ( +/turf/closed/wall, +/area/maintenance/department/electrical) +"cMP" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cMR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/ids, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"cMS" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/department/electrical) +"cMV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"cMX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cMY" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cMZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cNa" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cNb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cNc" = ( +/turf/closed/wall, +/area/science/xenobiology) +"cNd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cNe" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 1"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cNg" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 3"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cNh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/xenobiology) +"cNi" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Xenobiology - Killroom Chamber"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/xenobiology) +"cNj" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port) +"cNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cNl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port) +"cNp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research) +"cNq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/research) +"cNt" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cNz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cNA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cND" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/central) +"cNG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cNH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cNJ" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cNK" = ( +/turf/closed/wall/r_wall, +/area/medical/storage) +"cNL" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/medical/storage) +"cNM" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/medical/storage) +"cNN" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/medical/storage) +"cNO" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cNP" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/medical/storage) +"cNQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cNT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"cNX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"cNY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"cOj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"cOk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cOm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cOn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cOo" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cOt" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOu" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/apc{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/electronics/apc, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOv" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOy" = ( +/obj/machinery/light_switch/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOz" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOA" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOB" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cOC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cOG" = ( +/obj/structure/table/wood, +/obj/item/gun/ballistic/automatic/pistol/toy, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cOM" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cON" = ( +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cOO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"cOP" = ( +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"cOQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"cOR" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"cOV" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/science/research) +"cPf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cPi" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/research) +"cPj" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"cPk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cPo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cPv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cPy" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"cPz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPB" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cPD" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Storage"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/table/greyscale, +/obj/item/storage/box/bodybags{ + pixel_x = -8; + pixel_y = 15 + }, +/obj/item/storage/box/syringes{ + pixel_x = 8; + pixel_y = 15 + }, +/obj/item/storage/box/masks{ + pixel_x = -8 + }, +/obj/item/storage/box/gloves{ + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cPE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cPU" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"cQc" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cQd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cQe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQi" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQk" = ( +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cQr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQs" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cQv" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQz" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research) +"cQC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cQD" = ( +/turf/closed/wall, +/area/security/checkpoint/science/research) +"cQE" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -32 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cQF" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cQG" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/machinery/status_display/ai/directional/north, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cQI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cQX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cQZ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cRa" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cRb" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cRc" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"cRd" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/medical) +"cRe" = ( +/turf/closed/wall, +/area/medical/storage) +"cRf" = ( +/obj/machinery/light/directional/west, +/obj/machinery/mecha_part_fabricator/med, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/storage) +"cRg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cRh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + name = "Medical Delivery"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/storage) +"cRk" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Medbay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/storage) +"cRl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cRp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cRq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cRD" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRF" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cRN" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cRQ" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cRR" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cRT" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera{ + c_tag = "Xenobiology - Port"; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRV" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cRW" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cRY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSd" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cSe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSg" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cSh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cSj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cSl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cSm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cSn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cSo" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cSw" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_prep) +"cSM" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/radio, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "meddoor"; + name = "Medical Cell Control"; + normaldoorcontrol = 1; + pixel_x = -36 + }, +/obj/machinery/button/door/directional/north{ + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cSN" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cSO" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north{ + pixel_x = 32 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cSS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"cST" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cSU" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cSW" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/toxin{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/light/directional/east, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cSZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"cTi" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft 1"; + dir = 1; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"cTj" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cTk" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cTm" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/volume_pump{ + name = "Ports to Distro" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"cTq" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTr" = ( +/obj/machinery/computer/monitor{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTs" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTu" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTx" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cTz" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/xenoblood, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cTA" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cTB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cTC" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + dir = 4; + network = list("xeno") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTG" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno8"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTH" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno4"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTI" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno1"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTP" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/xenobiology) +"cTQ" = ( +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTT" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/biopsy_tool{ + pixel_x = 14; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cTV" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/item/extinguisher/mini, +/obj/item/storage/box/monkeycubes, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/north, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cUb" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cUc" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cUe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cUw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"cUy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"cUG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"cUH" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cUI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cUM" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/brute{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cUN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cUO" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/door/window/westleft{ + name = "First-Aid Supplies"; + red_alert_access = 1; + req_access_txt = "5" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cUP" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cUT" = ( +/obj/structure/mirror/directional/east, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/light/small/directional/north, +/obj/effect/landmark/blobstart, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cVl" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/hardhat/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cVm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cVr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"cVs" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cVt" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cVu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cVv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cVw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cVy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cVz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cVA" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cVD" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/button/door{ + id = "xenosecure"; + name = "Containment Control"; + pixel_y = -3; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVG" = ( +/obj/structure/dresser, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"cVR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cVS" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVT" = ( +/obj/machinery/light/directional/east, +/obj/machinery/requests_console/directional/east{ + department = "Xenobiology"; + name = "Xenobiology Requests Console"; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cVU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cVY" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cVZ" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cWn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cWp" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cWr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cWs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"cWu" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/gun/syringe, +/obj/item/gun/syringe, +/turf/open/floor/plasteel, +/area/medical/storage) +"cWv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"cWy" = ( +/obj/structure/table/glass, +/obj/item/storage/belt/medical, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/medical/storage) +"cWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cWH" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"cWI" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/obj/item/holosign_creator/atmos, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"cWK" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWL" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWN" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cWO" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cWP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cWR" = ( +/obj/machinery/power/terminal, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWT" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cWV" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology - Secure Cell"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cWW" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cWX" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Secure Creature Pen"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXb" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cXd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cXf" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cXg" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cXh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXl" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cXm" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/circuit/green, +/area/science/xenobiology) +"cXn" = ( +/obj/machinery/camera{ + c_tag = "Science - Fore"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"cXo" = ( +/obj/machinery/door_timer{ + id = "scicell"; + name = "Science Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/landmark/start/depsec/science, +/obj/machinery/button/door/directional/west{ + id = "scidoor"; + name = "Science Cell Control"; + normaldoorcontrol = 1; + pixel_y = -12 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cXp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cXq" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Security Post - Science"; + dir = 8; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cXD" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cXI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cXO" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cXQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cXR" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"cXS" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cXU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cXY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/storage) +"cYa" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cYb" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/box/donkpockets/donkpockethonk, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cYc" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Break Room"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/tank_holder/oxygen, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cYe" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cYi" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cYj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cYk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cYl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cYm" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cYn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"cYp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"cYq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"cYx" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYy" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYD" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cYE" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cYF" = ( +/obj/machinery/light_switch/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYG" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYH" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cYI" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"cYJ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"cYK" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cYL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xenosecure"; + name = "Secure Pen Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cYM" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYP" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cYZ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZb" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Starboard"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cZd" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cZf" = ( +/obj/machinery/door/window/brigdoor{ + id = "scicell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"cZg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"cZi" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/science/research) +"cZj" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"cZk" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/research) +"cZl" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/lab) +"cZm" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"cZn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"cZo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"cZp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + name = "Research Lab Desk"; + req_one_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"cZq" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/lab) +"cZr" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cZA" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cZC" = ( +/obj/machinery/door_timer{ + id = "medcell"; + name = "Medical Cell"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security Post - Medbay"; + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"cZL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cZP" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cZQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/item/bot_assembly/medbot, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dah" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"dai" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/item/wirecutters, +/obj/effect/turf_decal/bot, +/obj/item/crowbar, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dal" = ( +/obj/structure/mopbucket, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/turf/open/floor/plating, +/area/maintenance/port) +"dam" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/port) +"dan" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dap" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Auxiliary Power"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dar" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"das" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dau" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dav" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno5"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/machinery/light/directional/south, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daw" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dax" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno7"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/machinery/light/directional/south, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daB" = ( +/obj/machinery/processor/slime, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"daE" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"daG" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"daH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"daI" = ( +/obj/structure/closet/secure_closet/brig{ + id = "scicell"; + name = "Science Cell Locker" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"daK" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"daM" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"daN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research) +"daO" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"daP" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/science/lab) +"daQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"daR" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"daS" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"daT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"daU" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"daV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"daX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"daY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dba" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"dbb" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 3 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dbc" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/toy/figure/chemist{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dbd" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dbe" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dbf" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dbg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dbh" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dbr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dbv" = ( +/obj/structure/chair/stool, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dbw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dbz" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dbC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dbD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dbM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/orange, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dcb" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dcd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dce" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dch" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno8"; + name = "Creature Cell #8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dci" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell #1" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dck" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dcn" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dcp" = ( +/obj/machinery/smartfridge/extract/preloaded, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dcs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dct" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcu" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/light/directional/east, +/obj/item/storage/box/monkeycubes, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/dropper{ + pixel_y = 12 + }, +/obj/item/reagent_containers/dropper{ + pixel_y = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dcv" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"dcw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"dcx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"dcy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + id_tag = "scidoor"; + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"dcz" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dcC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dcD" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Science - Research Division Access"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dcE" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/science/lab) +"dcF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/lab) +"dcG" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcI" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcJ" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcK" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/mecha_part_fabricator/sci, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dcM" = ( +/turf/closed/wall, +/area/medical/chemistry) +"dcN" = ( +/obj/structure/table/glass, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dcO" = ( +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dcP" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dcQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dcR" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 7; + pixel_y = -6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dcT" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dcY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"ddd" = ( +/obj/structure/closet/secure_closet/brig{ + id = "medcell"; + name = "Medical Cell Locker" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"dde" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddg" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"ddh" = ( +/obj/structure/table/wood, +/obj/item/folder/white, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddi" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddk" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ddl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ddm" = ( +/turf/closed/wall, +/area/medical/psychology) +"ddq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ddu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ddB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"ddC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddH" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"ddI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ddR" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ddS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/cytology, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddT" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddV" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ddW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"ddY" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/science/research) +"dea" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research) +"deb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dec" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"ded" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/science/lab) +"def" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"deg" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"deh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dei" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/lab) +"dej" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"del" = ( +/obj/structure/table/glass, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dem" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"den" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"deo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dep" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"deq" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dew" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dex" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dey" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"deA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"deC" = ( +/obj/structure/closet/secure_closet/chief_medical, +/obj/item/clothing/under/rank/medical/doctor, +/obj/item/clothing/head/nursehat, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"deG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"deJ" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"deK" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"deL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/neck/stethoscope, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"deN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet, +/area/medical/psychology) +"deO" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/carpet, +/area/medical/psychology) +"deP" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/structure/chair/sofa/left, +/obj/item/toy/plush/moth{ + name = "Moffee" + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"deQ" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"deR" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"deU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"deX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"deY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port) +"deZ" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port) +"dfa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dfc" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dfd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdxeno"; + name = "Xenobiology Containment Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"dfi" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/science/research) +"dfm" = ( +/turf/closed/wall, +/area/science/research) +"dfo" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dfp" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/research) +"dfq" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/item/experi_scanner, +/obj/item/experi_scanner{ + pixel_x = 4 + }, +/obj/item/experi_scanner{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dfs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dft" = ( +/obj/machinery/holopad{ + pixel_x = -16 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dfu" = ( +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Research Lab"; + departmentType = 5; + name = "Research Requests Console"; + receive_ore_updates = 1 + }, +/obj/machinery/camera{ + c_tag = "Science - Research and Development"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dfv" = ( +/obj/structure/sign/departments/chemistry, +/turf/closed/wall, +/area/medical/pharmacy) +"dfw" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "chemisttop"; + name = "Pharmacy Top Shutter Control"; + pixel_y = 6; + req_access_txt = "69" + }, +/obj/machinery/button/door/directional/west{ + id = "chemistbot"; + name = "Pharmacy Bottom Shutter Control"; + pixel_y = -6; + req_access_txt = "69" + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dfx" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dfz" = ( +/obj/structure/table/glass, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/dropper, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Pharmacy"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dfA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"dfC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dfD" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/medical) +"dfI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dfL" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/medbay/central) +"dfP" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"dfQ" = ( +/turf/open/floor/carpet, +/area/medical/psychology) +"dfS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dfX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dgf" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"dgq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dgr" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"dgt" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 6"; + dir = 1; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"dgu" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dgv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dgO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dgP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dgQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab2"; + name = "Secondary Research and Development Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"dgR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgT" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dgU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"dgV" = ( +/obj/machinery/chem_dispenser, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dgW" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dgX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dgZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dha" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"dhb" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk" + }, +/obj/item/folder/white, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dhc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dhf" = ( +/obj/machinery/newscaster/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"dhg" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/structure/sign/poster/random{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"dhm" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Center"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dho" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dhq" = ( +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dht" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dhv" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Psychology Office"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dhw" = ( +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dhx" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dhy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dhz" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dhC" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dhQ" = ( +/turf/closed/wall, +/area/science/research/abandoned) +"dhS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dhU" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"dhV" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dhX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dhY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dhZ" = ( +/obj/item/beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dib" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"did" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"die" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dif" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dih" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dii" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dij" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dik" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dil" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dim" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Research Lab Desk"; + req_one_access_txt = "7" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab2"; + name = "Secondary Research and Development Shutter" + }, +/obj/machinery/door/window/eastright, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/lab) +"din" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dio" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dip" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistbot"; + name = "Chemistry Side Shutters" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Chemistry Desk" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"diq" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dir" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dis" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dit" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"diu" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/pharmacy) +"div" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dix" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"diz" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"diC" = ( +/obj/item/beacon, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"diE" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"diS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"diT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"diX" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"diY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/costume/owl, +/obj/item/clothing/mask/gas/owl_mask, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"diZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/grenade/smokebomb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"djc" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"djh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"djn" = ( +/obj/structure/table/reinforced, +/obj/item/screwdriver, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plasteel, +/area/maintenance/port) +"djo" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"djp" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel, +/area/maintenance/port) +"djr" = ( +/turf/open/floor/plasteel, +/area/maintenance/port) +"djs" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"djv" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/maintenance/port) +"djw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"djx" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"djy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"djz" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"djA" = ( +/turf/closed/wall/r_wall, +/area/science/genetics) +"djB" = ( +/obj/structure/sign/poster/official/science{ + pixel_x = -32 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"djC" = ( +/obj/machinery/camera{ + c_tag = "Genetics Lab North"; + can_atmos_pass = "science camera"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "'Monkey Pen"; + req_access_txt = "9" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"djD" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"djE" = ( +/obj/machinery/computer/scan_consolenew, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"djF" = ( +/turf/closed/wall/r_wall, +/area/science/nanite) +"djG" = ( +/obj/machinery/computer/nanite_cloud_controller, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"djH" = ( +/obj/machinery/nanite_programmer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"djI" = ( +/obj/machinery/computer/nanite_chamber_control, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"djJ" = ( +/obj/machinery/nanite_chamber, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"djK" = ( +/turf/closed/wall, +/area/science/nanite) +"djL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"djM" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"djO" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 25 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"djS" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"djW" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"djX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/turf/open/floor/plating, +/area/science/lab) +"djY" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/south{ + pixel_x = -25 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"djZ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dka" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dkb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/lab) +"dkc" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/science/lab) +"dkd" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "rndlab1"; + name = "Primary Research Shutters Control"; + pixel_x = -8; + req_access_txt = "7" + }, +/obj/machinery/button/door/directional/south{ + id = "rndlab2"; + name = "Secondary Research Shutters Control"; + pixel_x = 8; + req_access_txt = "7" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"dke" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dkf" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dkg" = ( +/obj/machinery/chem_master, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dkh" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/requests_console/directional/south{ + department = "Pharmacy"; + name = "Pharmacy Requests Console"; + receive_ore_updates = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"dkr" = ( +/obj/structure/table/reinforced, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dkG" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dkI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkJ" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkK" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/closet/secure_closet/psychology, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkL" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkM" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 14; + pixel_y = 3 + }, +/obj/item/paper_bin/carbon{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkN" = ( +/obj/structure/noticeboard/directional/south, +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"dkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/vending/wallmed/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dkR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"dkS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/aft) +"dkT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/item/modular_computer/tablet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dkX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"dle" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dlf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dlg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dlh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dli" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dln" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"dlo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "'Monkey Pen"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dlp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dlr" = ( +/obj/machinery/light/directional/east, +/obj/effect/landmark/start/geneticist, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dlt" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dlu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dlv" = ( +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dlz" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/science/research) +"dlM" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"dlN" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"dlO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"dlP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Research and Development Lab"; + req_one_access_txt = "7" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dlQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dlR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dlU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry"; + req_access_txt = "69; 33" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dlW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/chemistry) +"dlX" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/chemistry) +"dlY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dma" = ( +/turf/closed/wall, +/area/medical/surgery) +"dmd" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/medical/surgery) +"dmf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dmh" = ( +/turf/closed/wall, +/area/hallway/secondary/construction) +"dms" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmt" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 26 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"dmu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"dmy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dmA" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"dmB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/end, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dmC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dmE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dmF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/nanite) +"dmG" = ( +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dmH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dmI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dmJ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dmL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dmN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dmO" = ( +/obj/machinery/camera{ + c_tag = "Science - Lab Access"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/research) +"dmU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dmZ" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dna" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dnb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dnc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dne" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dnf" = ( +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/machinery/computer/mechpad{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dng" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnh" = ( +/obj/structure/cable, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnl" = ( +/obj/machinery/camera{ + c_tag = "Chemistry - Fore"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dno" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnp" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnq" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnr" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dnt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dnv" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dnw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dnx" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dny" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dnA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dnB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/security/brig) +"dnC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnE" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnF" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/surgery) +"dnG" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnK" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dnL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/rack, +/obj/item/roller, +/obj/item/reagent_containers/blood, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dnN" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnQ" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnR" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnS" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnT" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/girder, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dnX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dnY" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dog" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"doh" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"doi" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dok" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port) +"dol" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"dom" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"don" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"doo" = ( +/obj/structure/closet/crate, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/item/target/clown, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"doq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"doG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"doR" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/south, +/obj/item/aicard, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"doT" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Robotics Junction"; + sortType = 14 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"doW" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"doY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"doZ" = ( +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dpa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"dpb" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"dpc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mechpad, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/east{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dpe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Mech Bay"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "mechbay"; + name = "Mech Bay Shutters Control"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dpg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/chemistry) +"dph" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpi" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpm" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpo" = ( +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dpt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dpv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dpA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dpB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dpC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dpD" = ( +/obj/structure/chair, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dpE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dpF" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dpG" = ( +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dpH" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dpI" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dpK" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dpL" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dpM" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dpX" = ( +/obj/structure/training_machine, +/obj/item/target/syndicate, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"dpY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dpZ" = ( +/turf/open/floor/plating, +/area/science/research/abandoned) +"dqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dqj" = ( +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dqm" = ( +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 1; + req_one_access = null; + req_one_access_txt = "4;5;9" + }, +/obj/item/toy/figure/geneticist, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dqo" = ( +/obj/structure/table/reinforced, +/obj/item/nanite_scanner{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/nanite_scanner{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/nanite_remote{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/nanite_remote{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dqr" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dqu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dqw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dqz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"dqC" = ( +/obj/structure/chair/wood, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"dqE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dqL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqO" = ( +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"dqP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqQ" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dqT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dqV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"dqW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"drf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dri" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"drn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dro" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery) +"drq" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"drz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"drA" = ( +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"drB" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"drC" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"drD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"drE" = ( +/obj/structure/sign/poster/official/build{ + pixel_y = -32 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"drF" = ( +/obj/machinery/vending/assist, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"drG" = ( +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"drI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/radio/headset/headset_medsci{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"drJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"drK" = ( +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"drL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/monkeycubes{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/monkeycubes{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = -8; + pixel_y = 9 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -10; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"drM" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/disks_nanite{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/storage/box/disks_nanite{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Division - Nanite Lab"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"drN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"drO" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"drP" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"drQ" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing) +"drR" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/science/mixing) +"drT" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/science/mixing) +"drW" = ( +/obj/machinery/camera{ + c_tag = "Science - Port"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/science/research) +"dsc" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dsf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsl" = ( +/obj/machinery/door/poddoor/shutters{ + id = "mechbay"; + name = "Mech Bay Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dsm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/newscaster/directional/east, +/obj/item/storage/toolbox/emergency, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dsA" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dsC" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dsD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dsF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dsG" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay - Cryogenics"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/book/manual/wiki/medicine, +/obj/item/clothing/neck/stethoscope, +/obj/item/wrench/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dsI" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/medical/surgery) +"dsJ" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsL" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsN" = ( +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/surgical_drapes, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/blood_filter, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsO" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsP" = ( +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsQ" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/surgery, +/obj/item/scalpel, +/obj/item/cautery, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsR" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/mirror/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dsT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dsU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dsV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dta" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"dte" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dtf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"dtg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"dti" = ( +/obj/structure/closet/bombcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/science/mixing) +"dtj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dtl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dtm" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dtp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"dtr" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dtu" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"dtv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dtw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dtx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"dty" = ( +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"dtG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dtN" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dtO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dtP" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/machinery/camera{ + c_tag = "Medbay - Recovery Room"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dtQ" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dtR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dtS" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dtT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dtU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dtV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dub" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"duc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"due" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dul" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dum" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dun" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"duo" = ( +/obj/structure/table/reinforced, +/obj/item/mmi, +/obj/item/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dup" = ( +/obj/structure/frame/machine, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"duq" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/storage/belt/utility, +/obj/item/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dur" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/delivery, +/obj/machinery/mecha_part_fabricator/maint, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dus" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/micro_laser, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dut" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command) +"duz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"duD" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"duE" = ( +/obj/machinery/computer/nanite_chamber_control{ + dir = 8 + }, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"duF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/science/mixing) +"duG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"duR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"duU" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"duV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"duW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"duX" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 1 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"duY" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"duZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/east{ + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dva" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dvc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dvg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"dvF" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"dvM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dvN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dvO" = ( +/obj/structure/table, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dvQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dvR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dvS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dvZ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwb" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dwc" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dwd" = ( +/obj/machinery/camera{ + c_tag = "Research Division - Genetics Lab"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/south{ + department = "Genetics"; + name = "Genetics Requests console" + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dwe" = ( +/obj/machinery/light/directional/south, +/obj/effect/landmark/start/geneticist, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"dwi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"dwt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dwv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"dww" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwy" = ( +/obj/machinery/camera{ + c_tag = "Science - Mech Bay"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwC" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"dwD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dwE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"dwO" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"dwU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"dxc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dxg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dxi" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dxk" = ( +/obj/structure/table, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/glasses/blindfold, +/obj/item/clothing/ears/earmuffs, +/obj/item/gun/syringe, +/obj/item/clothing/glasses/eyepatch, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxl" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxo" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxp" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dxr" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/west, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dxs" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dxt" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dxu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dxv" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"dxw" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/electronics/firealarm, +/obj/item/stack/sheet/glass, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dxz" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dxA" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dxH" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxJ" = ( +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"dxK" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"dxL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxN" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dxP" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dxQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/mixing) +"dxS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/lawoffice) +"dya" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dyc" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"dyd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"dye" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/science/robotics/lab) +"dyf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dyg" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"dyw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dyD" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dyE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery B Access"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"dyF" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"dyG" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dyH" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dyI" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Surgery A"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dyJ" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/smartfridge/organ, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dyK" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/vending/wallmed/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"dyN" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyR" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyS" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dyT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dyU" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"dyV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dza" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"dze" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dzf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dzh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dzo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dzp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dzq" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dzt" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter, +/turf/open/floor/plasteel, +/area/science/mixing) +"dzx" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"dzz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"dzG" = ( +/obj/item/paper_bin, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dzH" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dzI" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/storage/belt/utility/full, +/obj/machinery/light/directional/north, +/obj/item/circuitboard/mecha/ripley/main, +/obj/item/circuitboard/mecha/ripley/peripherals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dzJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dzK" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/roboticist, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/north{ + id = "roboticsprivacy"; + name = "Robotics Privacy Controls"; + pixel_x = 24; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dzL" = ( +/obj/structure/sign/departments/science{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dzR" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dAd" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"dAg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dAh" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dAi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dAj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"dAk" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"dAl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dAm" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dAn" = ( +/obj/machinery/camera{ + c_tag = "Solar - Aft Starboard"; + name = "solar camera" + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dAp" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/machine/cyborgrecharger, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dAr" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dAs" = ( +/obj/item/robot_suit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dAw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/science/mixing) +"dAx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dAJ" = ( +/obj/item/stack/sheet/plasteel{ + amount = 15 + }, +/obj/item/wrench, +/obj/machinery/light/directional/west, +/obj/item/clothing/glasses/welding, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "roboticsprivacy"; + name = "Robotics Shutters" + }, +/obj/machinery/door/window/westleft{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/obj/machinery/door/window/eastleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dAR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dAV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chemistry - Center"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dBc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dBe" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/bodysposal{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dBm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dBo" = ( +/obj/machinery/vending/wallmed/directional/north, +/obj/structure/table/glass, +/obj/item/stack/medical/gauze, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dBp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"dBq" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/cautery, +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dBr" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dBs" = ( +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dBt" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dBw" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"dBA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dBB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dBC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"dBE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dBH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dBI" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dBJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dBK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"dBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"dBM" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"dBT" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dBU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dBW" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dBX" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/fyellow, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dBY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dBZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dCa" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/science/mixing) +"dCh" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dCp" = ( +/obj/item/stack/cable_coil, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 3 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -3 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/structure/table/reinforced, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCv" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dCy" = ( +/turf/closed/wall, +/area/medical/morgue) +"dCA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"dCB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dCF" = ( +/obj/machinery/vending/cart, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"dCO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dCP" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/button/door/directional/east{ + id = "surgeryb"; + name = "Privacy Shutters Control" + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dDb" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/aft) +"dDc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dDd" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dDe" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"dDg" = ( +/obj/structure/table, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/decoration/glowstick, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dDh" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dDi" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"dDj" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dDk" = ( +/obj/structure/frame/machine, +/obj/machinery/light/small/directional/south, +/obj/item/stack/sheet/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dDl" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/toolbox/electrical, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/science/research/abandoned) +"dDn" = ( +/obj/item/assembly/prox_sensor{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 9; + pixel_y = -2 + }, +/obj/item/assembly/prox_sensor{ + pixel_y = 2 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dDq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"dDt" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Secure Storage"; + req_access_txt = "71" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dDw" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"dDD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dDF" = ( +/obj/structure/noticeboard/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Robotics Lab"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dDI" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dDJ" = ( +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/table/glass, +/obj/machinery/light_switch/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dDM" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"dDN" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/wallmed/directional/north, +/turf/open/floor/plating, +/area/medical/morgue) +"dDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDR" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/item/crowbar{ + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/pushbroom, +/obj/machinery/light_switch/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/medical/morgue) +"dDZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"dEb" = ( +/obj/machinery/door/poddoor/preopen{ + id = "surgeryb"; + name = "privacy shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"dEc" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dEd" = ( +/obj/machinery/stasis, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dEe" = ( +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dEg" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"dEh" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dEk" = ( +/turf/closed/wall, +/area/security/detectives_office/private_investigators_office) +"dEn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab) +"dEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"dEp" = ( +/obj/structure/closet, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dEq" = ( +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve{ + pixel_x = -5 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/item/transfer_valve{ + pixel_x = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/west{ + department = "Toxins Lab"; + departmentType = 5; + name = "Toxins Requests Console" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dEu" = ( +/obj/structure/sign/poster/official/science{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dEv" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/science/storage) +"dEy" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/science/storage) +"dEz" = ( +/obj/structure/table, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/science/storage) +"dEA" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"dEB" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/server) +"dEC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/science/server) +"dEE" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/server) +"dEF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dEG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/robotics/lab) +"dEH" = ( +/obj/structure/rack, +/obj/item/storage/firstaid, +/obj/item/storage/firstaid, +/obj/structure/disposalpipe/segment, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/pai_card, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dEN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dEO" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dEP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dER" = ( +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/item/plunger, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Chemistry"; + departmentType = 1; + name = "Chemistry Requests Console" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dES" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma{ + pixel_y = 10 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dEV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dEW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dEX" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dEY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/dead_body_placer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dFd" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dFg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/science/research) +"dFt" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dFw" = ( +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/spawner/random/trash/mess, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dFx" = ( +/obj/structure/table/wood, +/obj/item/crowbar/red, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/detective, +/obj/item/camera/detective, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office/private_investigators_office) +"dFz" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFB" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/machinery/camera{ + c_tag = "Science - Toxins Launch Site"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm/directional/east, +/obj/machinery/newscaster/directional/north, +/obj/machinery/light_switch/directional/east{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dFI" = ( +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/mixing) +"dFL" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Science - Toxins Mixing Lab Aft"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/science/mixing) +"dFN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dFO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dFP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dFQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/storage) +"dFR" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/server) +"dFY" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dGc" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dGd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dGe" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dGh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dGi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Chemistry"; + req_access_txt = "69;33" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"dGl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"dGn" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dGv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dGx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"dGA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dGB" = ( +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/item/clothing/neck/tie/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/item/kirbyplants/random, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dGN" = ( +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dGO" = ( +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dGP" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dGQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dGW" = ( +/turf/closed/wall/r_wall, +/area/science/test_area) +"dGX" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/test_area) +"dGY" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/ordnance, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dGZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dHa" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/science/misc_lab) +"dHc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dHe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dHh" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/ordnance, +/obj/item/storage/firstaid/toxin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"dHm" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/storage) +"dHo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dHp" = ( +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dHq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/server) +"dHt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dHu" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/multitool, +/obj/item/clothing/head/welding, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dHw" = ( +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/item/borg/upgrade/rename, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dHx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dHy" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/item/cautery, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dHz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dHA" = ( +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dHB" = ( +/obj/structure/table/reinforced, +/obj/item/retractor, +/obj/item/hemostat, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dHD" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHE" = ( +/obj/structure/sign/departments/chemistry{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dHQ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"dHW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/girder, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dHX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dId" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dIe" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dIf" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dIg" = ( +/obj/structure/filingcabinet/security, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dIi" = ( +/obj/structure/window/reinforced, +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dIj" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dIk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dIx" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/weldingtool, +/obj/item/assembly/voice, +/obj/item/clothing/head/welding, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"dID" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/storage) +"dIE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/science/storage) +"dIF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + external_pressure_bound = 140; + name = "server vent"; + pressure_checks = 0 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dIH" = ( +/obj/machinery/camera{ + c_tag = "Science - Server Room"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"dII" = ( +/obj/machinery/camera{ + c_tag = "Science - Aft"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"dIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dIL" = ( +/obj/structure/table, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dIN" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dIO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/window/northleft{ + name = "Robotics Delivery"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dIP" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/sign/departments/medbay/alt{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dIQ" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dIR" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"dIS" = ( +/obj/structure/table/reinforced, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/circular_saw, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dIT" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dIU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"dIV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dIW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Medbay - Morgue"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex{ + pixel_y = 6 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/medical/morgue) +"dIZ" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/medical/morgue) +"dJc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"dJd" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/medical/morgue) +"dJf" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"dJg" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plating, +/area/medical/morgue) +"dJo" = ( +/obj/effect/turf_decal/tile/green, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"dJp" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dJu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"dJz" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"dJC" = ( +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dJD" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dJE" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office/private_investigators_office) +"dJG" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dJH" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"dJI" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dJJ" = ( +/obj/machinery/doppler_array/research/science{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJK" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJN" = ( +/obj/machinery/research/explosive_compressor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dJT" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/science/mixing) +"dJU" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/science/mixing) +"dJV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"dJW" = ( +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/science/mixing) +"dJX" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/electrical, +/obj/structure/table/reinforced, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/obj/item/relic, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/mixing) +"dJY" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/science/mixing) +"dJZ" = ( +/obj/machinery/camera{ + c_tag = "Science - Toxins Secure Storage"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/portable_atmospherics/pump{ + name = "Lil Pump" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKa" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKc" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKd" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKh" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"dKk" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"dKs" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dKt" = ( +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dKu" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dKv" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/black, +/obj/item/storage/box/evidence, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office/private_investigators_office) +"dKw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dKy" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dKz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dKA" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall, +/area/science/misc_lab) +"dKB" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/science/misc_lab) +"dKC" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/obj/machinery/computer/pod/old/mass_driver_controller/ordnancedriver, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dKE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Toxins Maintenance"; + req_access_txt = "8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKF" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKG" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKH" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dKJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"dKN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dKP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dKR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dKY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"dKZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dLa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dLb" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"dLc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"dLd" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"dLe" = ( +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dLf" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/aft) +"dLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"dLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"dLn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dLo" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"dLw" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/secure_data, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dLx" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dLy" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigpack_uplift{ + pixel_x = 6 + }, +/obj/item/storage/fancy/cigarettes/cigpack_carp{ + pixel_x = -3 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dLA" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dLC" = ( +/turf/closed/indestructible/opshuttle, +/area/science/test_area) +"dLD" = ( +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/preset/ordnance, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dLE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dLF" = ( +/obj/item/beacon, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dLH" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dLI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/misc_lab) +"dLJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/misc_lab) +"dLK" = ( +/obj/machinery/door/poddoor/massdriver_ordnance, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/misc_lab) +"dLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dLM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dLN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dLO" = ( +/obj/machinery/mass_driver/ordnance, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"dLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dLT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dLX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dLY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"dLZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dMa" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dMb" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/science/research) +"dMc" = ( +/obj/structure/table/wood, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/research) +"dMd" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dMe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/science/research) +"dMg" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/science/research) +"dMh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dMt" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dMv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"dMY" = ( +/turf/closed/wall, +/area/hallway/primary/central/south) +"dNe" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"dNi" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dNj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dNk" = ( +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office/private_investigators_office) +"dNl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"dNm" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/detectives_office/private_investigators_office) +"dNn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dNo" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNq" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNs" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNt" = ( +/obj/structure/rack, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dNw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dNz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dNB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dNC" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dNI" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/science/research) +"dNL" = ( +/turf/closed/wall, +/area/security/checkpoint/customs/auxiliary) +"dNO" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"dNP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dNQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dNS" = ( +/turf/closed/wall, +/area/maintenance/aft) +"dNT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"dNV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"dNY" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dNZ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dOa" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dOb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dOc" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dOo" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"dOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"dOq" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/science/research) +"dOs" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/science/research) +"dOu" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dOw" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/obj/machinery/camera{ + c_tag = "Science - Break Room"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dOz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dOB" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dOC" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dOD" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Aft"; + dir = 4; + name = "hallway camera" + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dOE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"dOF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"dOH" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dOL" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/target, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating/airless, +/area/science/test_area) +"dOM" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"dOR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"dOT" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"dOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dOV" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/science/research) +"dOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dOY" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dOZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/science/research) +"dPc" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPe" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPf" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/customs/auxiliary) +"dPh" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dPi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dPk" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dPl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"dPm" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"dPp" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"dPq" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"dPr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"dPI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPJ" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPN" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/science/research) +"dPO" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"dPQ" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dPR" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"dPS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/science/research) +"dPT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dPV" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Departures Customs"; + dir = 4; + name = "customs camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPX" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPY" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dPZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/window/brigdoor/southright{ + dir = 8; + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dQa" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dQb" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dQd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dQe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQg" = ( +/obj/machinery/camera{ + c_tag = "Virology - Containment Lock"; + dir = 8; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"dQi" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQj" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQk" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQl" = ( +/turf/closed/wall, +/area/medical/virology) +"dQm" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQn" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQo" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQp" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dQC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dQE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dQK" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dQM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dQN" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dQP" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dQU" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dQX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_interior"; + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/door_buttons/access_button{ + idDoor = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 22; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQY" = ( +/obj/machinery/door_buttons/airlock_controller{ + idExterior = "virology_airlock_exterior"; + idInterior = "virology_airlock_interior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -10; + pixel_y = 24; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/medical/virology) +"dQZ" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRc" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dRg" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/virologist, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dRh" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"dRj" = ( +/obj/machinery/camera{ + c_tag = "Virology - Break Room"; + dir = 8; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dRk" = ( +/obj/structure/sign/poster/official/cleanliness, +/turf/closed/wall, +/area/medical/virology) +"dRl" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dRm" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dRn" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dRo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"dRx" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dRP" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/crowbar, +/obj/item/radio, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dRR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dRS" = ( +/obj/structure/closet/secure_closet/contraband/heads, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"dRT" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dRU" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"dRV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"dRW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/aft) +"dRX" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dRZ" = ( +/obj/structure/closet/l3closet/virology, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSa" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSb" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSd" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dSe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dSm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dSo" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dSp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dSD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dSE" = ( +/obj/structure/closet, +/obj/effect/spawner/random/clothing/costume, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dSF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dSI" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dSJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dSO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/customs/auxiliary) +"dSP" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dSQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dSR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dSS" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dST" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"dSU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dSY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dSZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dTb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"dTj" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dTv" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dTE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTG" = ( +/obj/machinery/camera{ + c_tag = "Departures - Fore"; + name = "departures camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dTL" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "xeno6"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"dTR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dTS" = ( +/obj/structure/chair/wood, +/obj/machinery/camera{ + c_tag = "Chapel - Starboard"; + dir = 8; + name = "chapel camera" + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"dTU" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/tank/air{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dTV" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dTW" = ( +/obj/item/clothing/neck/stethoscope, +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dTX" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dTY" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/medical/virology) +"dTZ" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dUa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dUb" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dUh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dUo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Storage"; + req_one_access_txt = "72" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"dUx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUB" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dUO" = ( +/obj/machinery/vending/wallmed/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dUP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dUY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dVe" = ( +/obj/machinery/atmospherics/components/binary/temperature_gate{ + dir = 4; + on = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dVk" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVl" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"dVt" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVu" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/requests_console/directional/north{ + department = "Virology"; + name = "Virology Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVv" = ( +/obj/machinery/computer/pandemic, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVw" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVx" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVz" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/machinery/camera{ + c_tag = "Virology - Lab"; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/medical/virology) +"dVA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dVD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dVE" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dVG" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dVY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dVZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWd" = ( +/obj/structure/disposalpipe/sorting/mail{ + name = "Chapel Junction"; + sortType = 17 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWe" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall8"; + location = "hall7" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWg" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWm" = ( +/obj/structure/reagent_dispensers/virusfood/directional/west, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWn" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWp" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWs" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWw" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dWx" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dWB" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"dWQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"dWS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dWX" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"dXa" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dXb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dXc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dXd" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dXe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dXl" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/medical/virology) +"dXt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"dXF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"dXI" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"dXK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXL" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXM" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXN" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dXR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"dXU" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/medical/virology) +"dXV" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dXW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dXX" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dXY" = ( +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYa" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYe" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYi" = ( +/obj/structure/table/glass, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dYu" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dYD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dYE" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"dYG" = ( +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/window/reinforced/fulltile, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"dYI" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dYJ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dYM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"dYO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"dYP" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYQ" = ( +/obj/structure/table/glass, +/obj/structure/sign/warning/deathsposal{ + pixel_y = -32 + }, +/obj/item/paper_bin, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYR" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYS" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYT" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light_switch/directional/south{ + pixel_x = 26 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/medical/virology) +"dYW" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dYX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dZe" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dZg" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dZh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"dZn" = ( +/obj/machinery/light/directional/west, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZo" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZp" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZq" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Departures - Center"; + name = "departures camera" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"dZu" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album/bar{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dZz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"dZC" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dZE" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dZG" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/machinery/camera{ + c_tag = "Virology - Cells"; + dir = 8; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"dZV" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"dZW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"eab" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "DeltaStation emergency evac bay"; + width = 30 + }, +/turf/open/space/basic, +/area/space) +"ead" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"eae" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eaf" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"eak" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"eal" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"eao" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eap" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eas" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eaE" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eaL" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/r_wall, +/area/medical/virology) +"eaM" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"eaO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/medical/virology) +"eaQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"eaR" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"eaS" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"eaT" = ( +/obj/machinery/camera{ + c_tag = "Solar - Aft Port"; + name = "solar camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"eaU" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"eaW" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"eaX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eaY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eaZ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters2"; + name = "E.V.A. Storage Shutters" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ebb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ebc" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"ebk" = ( +/obj/machinery/light/directional/west, +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ebl" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ebm" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ebp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ebu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"ebv" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ebz" = ( +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ebB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ebD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"ebE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"ebF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10; 13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"ebG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ebH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ebI" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ebL" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ebM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ebN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ebO" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/machinery/button/door/directional/north{ + id = "evashutters2"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ebQ" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ebR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ebS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"eca" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecb" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"ecg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/outlet_injector/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"ech" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/medical/virology) +"eci" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"ecj" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/pen/red, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/virology) +"eck" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ecl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ecm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"ecn" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"eco" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ecp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecq" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ect" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecu" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ecv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecF" = ( +/obj/machinery/camera{ + c_tag = "Departures - Port"; + dir = 4; + name = "departures camera" + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecG" = ( +/obj/structure/chair, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecH" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/dice, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ecJ" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ecK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecL" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecN" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecP" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ecQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ecX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ecY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"edb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"edf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edg" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"edh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edi" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/item/clothing/mask/breath, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"edj" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edk" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"edl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"edt" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"edy" = ( +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"edD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"edH" = ( +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"edK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"edR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"edX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"edY" = ( +/turf/closed/wall, +/area/security/checkpoint/escape) +"edZ" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/security/checkpoint/escape) +"eeb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"eej" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"eek" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/escape) +"een" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"eeo" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eep" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eeq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eer" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ees" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eet" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eeu" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eeG" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eeH" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/light_switch/directional/west{ + pixel_y = 26 + }, +/obj/machinery/camera{ + c_tag = "Security - Departures Port" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeJ" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeM" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeN" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeO" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeS" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeU" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"eeW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Transferring Center"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"efb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"eff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eft" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"efu" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/radio, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efw" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"efK" = ( +/obj/machinery/door/airlock/security{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/brig) +"efQ" = ( +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"egg" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egi" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egj" = ( +/obj/machinery/computer/prisoner/management{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egk" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egl" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egm" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egn" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster{ + icon_state = "poster22_legit"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"ego" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egp" = ( +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egr" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Security - Departures Starboard"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"egw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"egD" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"egE" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/escape) +"ehq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"eht" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Chapel - Port"; + dir = 4; + name = "chapel camera" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"ehu" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"ehy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ehG" = ( +/obj/machinery/mecha_part_fabricator/service, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ehI" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"ehL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"ehM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ehQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ehS" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"ehX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"eie" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"eil" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"eiq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eiK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eiZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/mousetraps, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"ejm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ejr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library) +"ejL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ejR" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"eka" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library) +"ekn" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ekq" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ekw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/restrooms) +"ekx" = ( +/obj/structure/bed, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/commons/dorms) +"ekH" = ( +/obj/structure/bodycontainer/crematorium{ + dir = 4; + id = "cremawheat" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ekM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ekR" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"ekS" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ele" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"elR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"elW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"emc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"emj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/chemistry) +"eml" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"emw" = ( +/obj/structure/filingcabinet/security, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"emG" = ( +/obj/machinery/rnd/server, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"emJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"emM" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ene" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"enj" = ( +/obj/machinery/door/window/eastright{ + name = "Theater Stage" + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"enk" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall4"; + location = "engi3" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"enp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"enx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"enF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"enG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/range) +"enI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"enO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"eok" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"eoC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eoX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"eoZ" = ( +/obj/structure/cable, +/obj/machinery/button/flasher{ + id = "Cell 2"; + name = "Prisoner Flash"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "permashut2"; + name = "Cell Lockdown Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"eph" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"epE" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Oxygen Supply"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"epH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"epN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) +"epP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/cargo/qm) +"epU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/maintenance/department/science) +"eqa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/atmos) +"eqe" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Foyer"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"eqo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eqs" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"equ" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"eqC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"eqJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"eqQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/commons/fitness/recreation) +"eqU" = ( +/turf/open/space, +/area/space) +"erd" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Access Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/westright{ + name = "Access Queue" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"erm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"ert" = ( +/turf/closed/wall, +/area/service/library/abandoned) +"erV" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/item/assembly/voice, +/obj/item/assembly/voice, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"esn" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay - Starboard"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"esF" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/service/library/abandoned) +"esG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"etl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"etr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"etu" = ( +/turf/closed/wall, +/area/service/hydroponics/garden/abandoned) +"etJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"etN" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/wood, +/area/service/library/abandoned) +"etU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"eui" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"euq" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"euz" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"euG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"euO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"euP" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"evg" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"evk" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"evr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"evy" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "N2 to Airmix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"evJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ewa" = ( +/obj/machinery/light/directional/north, +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain/private) +"ewf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/primary/central/south) +"ewg" = ( +/obj/machinery/mecha_part_fabricator/cargo, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ewj" = ( +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"ewl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ewK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"ewQ" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"ewR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"exf" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"exk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"exw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"exB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"exE" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"exW" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"eyc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"eys" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"eyt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"eyu" = ( +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/radio, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/command/teleporter) +"eyw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"eyE" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"eyT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"eyY" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/engineering/atmos/upper) +"eze" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ezu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"ezC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ezU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"eAa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"eAp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eAA" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"eAB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"eAI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"eAM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eAP" = ( +/obj/structure/sign/painting/library_private{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"eBe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"eBv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"eBN" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"eCf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"eCl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"eCo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"eCr" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"eCw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"eCE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Command Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"eCG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"eCM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"eCP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"eCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eDj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/greyscale, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"eDl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"eDo" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eDz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"eDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eEf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"eEH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"eEK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"eEQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eEX" = ( +/obj/structure/chair/stool, +/obj/machinery/flasher/directional/north{ + id = "visitorflash" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"eEY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eFb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"eFj" = ( +/obj/effect/landmark/start/chief_engineer, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"eFk" = ( +/obj/machinery/door/window/brigdoor/southright{ + name = "Command Chair"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"eFq" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"eFA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eFD" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Treatment Center"; + req_access_txt = "5" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"eFP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"eFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"eFX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eGt" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eGI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eGN" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"eGP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Law Office Maintenance"; + req_access_txt = "38" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eHh" = ( +/obj/machinery/camera{ + c_tag = "Security - Prison Port" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/prison) +"eHs" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"eHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"eHx" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"eHB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"eHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"eHO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"eHP" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eIe" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"eIk" = ( +/obj/machinery/camera{ + c_tag = "Dormitories - Starboard"; + name = "dormitories camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eIo" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eIs" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Office"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"eIy" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/light/directional/south, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/black, +/obj/machinery/status_display/evac/directional/south, +/obj/item/clothing/head/fedora, +/obj/item/clothing/under/dress/redeveninggown, +/obj/item/clothing/head/rabbitears, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"eID" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"eJd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"eJp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"eJt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/landmark/navigate_destination{ + location = "Escape" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eJC" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"eJF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"eJG" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/crate/goldcrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"eJR" = ( +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/service/kitchen) +"eJS" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eKd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"eKl" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"eKo" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/service/kitchen) +"eKq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eKA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Atmos to Loop" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"eKC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"eKH" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"eKR" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Dormitory Hallway"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"eKZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"eLb" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/machinery/light/small/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"eLv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"eLw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/range) +"eLz" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"eLA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"eLK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"eLV" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/razor, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/commons/dorms) +"eLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eLZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"eMa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eMd" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"eMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"eMt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"eMy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"eMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/research/abandoned) +"eMI" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"eMJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"eMM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"eMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"eNa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/computer/gateway_control, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"eNt" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eND" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"eNE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"eNI" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"eNW" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"eOc" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + req_one_access_txt = "5;12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"eOt" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"eOG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eOM" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"eOV" = ( +/obj/structure/table/wood, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/that, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"eOZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room/external) +"ePm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Cargo"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ePs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ePK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/morgue) +"ePO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ePP" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/analyzer, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/mixing) +"ePQ" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/clothing/under/rank/centcom/commander, +/obj/item/clothing/head/centhat{ + armor = list("melee"=0,"bullet"=0,"laser"=0,"energy"=0,"bomb"=0,"bio"=0,"rad"=0); + desc = "A replica hat of a Central Commander's attire. It has a small tag on it saying, 'It's good to be emperor.'"; + name = "Replica CentCom hat" + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"ePT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"ePX" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"eQk" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/east, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Security - Interrogation Monitoring"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"eQr" = ( +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"eQB" = ( +/obj/machinery/requests_console/directional/north{ + department = "Kitchen"; + name = "Kitchen Requests Console" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"eQE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"eQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eRd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eRg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"eRu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eRQ" = ( +/obj/machinery/computer/atmos_control/plasma_tank, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eRS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"eRY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"eRZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"eSd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/library) +"eSl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"eSo" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eSr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eSH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"eSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"eTr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"eTv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"eTx" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay - Port"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eTD" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"eTH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"eTO" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"eTQ" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/service/library) +"eTS" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/matter_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eTV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office/light, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"eUp" = ( +/obj/machinery/light/directional/west, +/obj/effect/mapping_helpers/ianbirthday, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"eUy" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"eUH" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/service/theater) +"eVj" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"eVn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"eVs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"eVv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"eVw" = ( +/obj/structure/table/reinforced, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"eVy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eVC" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"eVI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/departments/court{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"eVM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"eVR" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"eWf" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"eWj" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi2"; + location = "engi1" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eWr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"eWx" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/aisat) +"eWE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"eWF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"eWR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"eXa" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"eXb" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"eXl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"eXr" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"eXt" = ( +/turf/open/floor/carpet, +/area/service/bar/atrium) +"eXA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"eXN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"eYa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"eYc" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Test Range" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"eYi" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eYj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"eYo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"eYE" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"eYJ" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/entertainment/gambling, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"eZa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eZh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/northleft{ + name = "Medical Desk"; + req_access_txt = "5" + }, +/obj/machinery/door/window/southleft{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"eZl" = ( +/obj/machinery/camera{ + c_tag = "Science - Research Director's Quarters"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/modular_computer/console/preset/research{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"eZu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"eZx" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/structure/cable, +/obj/item/tank/internals/plasma, +/turf/open/floor/plating, +/area/engineering/supermatter) +"eZV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/teleporter) +"eZX" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/library/abandoned) +"fan" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"faw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"faE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"faH" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"faI" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "MiniSat Service Bay"; + dir = 8; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"faJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"faY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"fbc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"fbe" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fbh" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library/abandoned) +"fbj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"fbn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"fbp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"fbr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fbt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/west, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fbu" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fbQ" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_one_access_txt = "13; 24; 10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"fbT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"fbV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fbY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"fcl" = ( +/obj/structure/dresser, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"fcn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fcr" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/primary/central/south) +"fcw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fcA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fcB" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"fcG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"fcK" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"fdc" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"fdd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"fdk" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"fdo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"fdx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"fdH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"fdT" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"fec" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/command) +"fek" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"fez" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"feM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator Foyer"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ffh" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"ffk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/skill_station, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ffo" = ( +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"ffv" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"ffA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"ffB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"ffH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ffV" = ( +/obj/item/flashlight/seclite, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"ffY" = ( +/obj/structure/table, +/obj/item/toy/foamblade, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/item/stack/pipe_cleaner_coil/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"ffZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fgn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fgq" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"fgO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"fhO" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fhW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"fip" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/wirecutters, +/obj/item/stack/cable_coil, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fiz" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fiE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fiJ" = ( +/obj/structure/dresser, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/service/theater) +"fiM" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"fiN" = ( +/obj/structure/window, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"fiP" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"fiW" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"fjo" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch/directional/south, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/circuitboard/machine/microwave, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"fjp" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/cargo/qm) +"fjr" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"fjt" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"fjO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fjP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fjU" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/directional/north{ + pixel_x = -8 + }, +/obj/machinery/button/door/directional/north{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Control"; + pixel_x = 6 + }, +/turf/open/floor/wood, +/area/lawoffice) +"fjV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"fjX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"fkq" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fkA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"fkP" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"fkU" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"flq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/library/abandoned) +"flu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/library/abandoned) +"flz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"flF" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner, +/area/commons/fitness/recreation) +"flZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fmd" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/sorting) +"fms" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fmC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"fmE" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fmH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fnc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/xenobiology) +"fnk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"fno" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"fnx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"fny" = ( +/obj/machinery/computer/monitor, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fnz" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"fnS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/storage) +"fnZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"foe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"fof" = ( +/turf/closed/wall, +/area/lawoffice) +"for" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fot" = ( +/turf/closed/wall, +/area/ai_monitored/command/storage/eva) +"foG" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/atmos{ + name = "Turbine Generator Access"; + req_one_access_txt = "24;10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"foK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"foL" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"foM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/theater/abandoned) +"fph" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"fpi" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"fpn" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"fpo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"fpv" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fpK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fpQ" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"fpZ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fqb" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fqj" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"fqn" = ( +/obj/effect/landmark/start/mime, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"fqp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fqt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fqv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"fqA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/starboard/fore) +"fqV" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"fqW" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 10; + pixel_y = 10 + }, +/obj/item/stack/medical/gauze{ + pixel_x = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/stack/medical/bone_gel{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"fqY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"frl" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"frC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"frV" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"fsy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"fsB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fsE" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"fsH" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fsZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/service/janitor) +"ftc" = ( +/obj/machinery/libraryscanner, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"ftf" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"ftj" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"ftA" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ftB" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ftI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ftP" = ( +/obj/machinery/computer/security/hos{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"fus" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"fuv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"fuB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fuF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Nanite Lab"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/nanite) +"fuJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fuK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/dorms) +"fuN" = ( +/obj/structure/table, +/obj/item/disk/tech_disk{ + pixel_x = -6 + }, +/obj/item/disk/tech_disk{ + pixel_x = 6 + }, +/obj/item/disk/tech_disk{ + pixel_y = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"fvd" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"fvf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"fvG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fvN" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fvP" = ( +/obj/machinery/light/directional/north, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"fwe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"fwj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"fwk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"fwo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"fwB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/engineering/storage) +"fwF" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"fxd" = ( +/obj/effect/spawner/random/vending/colavend, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"fxe" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/command/teleporter) +"fxp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/window/northleft{ + name = "Chemistry Desk" + }, +/obj/machinery/door/window/southleft{ + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"fxw" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"fxx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Delivery Office"; + req_access_txt = "50" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"fxz" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + name = "Theater Delivery"; + req_access_txt = "46" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/theater) +"fxS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/curtain, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Shower" + }, +/obj/item/soap/deluxe, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"fxY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"fyh" = ( +/obj/machinery/computer/mecha{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"fyM" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/directional/east{ + pixel_x = 38 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"fyY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 9 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"fzv" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fzO" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"fAd" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"fAf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fAk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fAl" = ( +/obj/structure/rack, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"fAp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fAy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/commons/locker) +"fAz" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fAB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"fAX" = ( +/turf/closed/wall, +/area/commons/locker) +"fAY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fBg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison) +"fBo" = ( +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"fBp" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"fBq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fBy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main/sb_med) +"fBC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"fBG" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"fBM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/checker, +/area/engineering/break_room) +"fCd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fCh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"fCx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"fCD" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fCE" = ( +/obj/machinery/washing_machine, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"fCQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/library) +"fCW" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"fDa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/education) +"fDt" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fDA" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"fEm" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/sign/poster/official/science{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"fET" = ( +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fEX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "O2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fEZ" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fFf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"fFl" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"fFv" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"fFy" = ( +/turf/closed/wall/r_wall, +/area/command) +"fFT" = ( +/obj/machinery/camera{ + c_tag = "Science - Toxins Mixing Lab Fore"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"fFU" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Starboard"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/east{ + id = "cargounload"; + layer = 4; + name = "Loading Doors"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "cargoload"; + layer = 4; + name = "Loading Doors"; + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fGb" = ( +/obj/machinery/requests_console/directional/south{ + department = "Mining"; + name = "Mining Requests Console" + }, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Dock"; + dir = 1; + name = "cargo camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"fGm" = ( +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/head/fedora, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"fGt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fGz" = ( +/obj/structure/table/reinforced, +/obj/item/healthanalyzer, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/healthanalyzer, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"fGF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fGQ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/bag/tray, +/obj/effect/turf_decal/bot, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"fGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fHd" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/cargo/sorting) +"fHm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fHu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fHw" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"fIe" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Mining Desk"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"fIk" = ( +/obj/machinery/computer/cargo/request, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"fIl" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fIt" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"fIz" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall, +/area/engineering/main) +"fIF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"fIN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"fJg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"fJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"fJy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fJD" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"fJI" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/engineering/storage_shared) +"fKe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"fKh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/secure/loot, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"fKp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fKs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fKA" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"fKX" = ( +/obj/structure/mirror/directional/west, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"fLT" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"fMb" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fMv" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"fMD" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"fMK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"fMP" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "Whatever it is, it reeks of foul, putrid froth."; + list_reagents = list(/datum/reagent/consumable/ethanol/bacchus_blessing=15); + name = "Delta-Down"; + pixel_x = 5; + pixel_y = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"fNp" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/main) +"fNx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"fNC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"fNP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating, +/area/cargo/sorting) +"fNT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"fNX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fOk" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/storage/lockbox/loyalty, +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"fOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"fOs" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"fOJ" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/chair/office/light, +/obj/effect/decal/cleanable/greenglow, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fOP" = ( +/obj/structure/lattice, +/turf/open/space, +/area/engineering/atmos/upper) +"fOX" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"fPb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"fPj" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/electronics/airlock, +/obj/item/stack/sheet/glass, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"fPu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"fPH" = ( +/obj/structure/dresser, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"fQf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"fQl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"fQy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fQL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"fQZ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"fRu" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 5 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"fSi" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"fSp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"fSq" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"fSy" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall, +/area/hallway/primary/central/south) +"fSA" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 1 + }, +/obj/structure/table/wood/poker, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fSB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"fSE" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fSO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"fTa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/library/abandoned) +"fTf" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/service/library/abandoned) +"fTh" = ( +/obj/structure/table/reinforced, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"fTP" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"fTU" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"fTV" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"fUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/gateway) +"fUj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"fUl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Theater Backstage"; + dir = 8; + name = "service camera" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/service/theater) +"fUn" = ( +/obj/structure/chair/comfy/brown, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"fUx" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"fUK" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fUR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"fUZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"fVp" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/pen/red, +/obj/machinery/door/window{ + dir = 8; + name = "Library Desk" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"fVr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/primary) +"fVy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/ai/directional/south, +/obj/structure/reagent_dispensers/fueltank/large, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"fVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/structure/tank_dispenser, +/obj/machinery/camera{ + c_tag = "Engineering - Gear Storage"; + dir = 8; + name = "engineering camera" + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"fVM" = ( +/obj/structure/table/wood, +/obj/item/wrench, +/obj/item/storage/secure/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"fVN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"fVZ" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fWe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fWi" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"fWq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"fWz" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/dirt/dust, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms) +"fWC" = ( +/obj/structure/reflector/single, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"fWG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"fWV" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/radio, +/obj/item/radio, +/obj/item/radio, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/command/gateway) +"fWW" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"fWZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"fXi" = ( +/obj/structure/table/wood, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"fXn" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel/fifty, +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Side Room"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fXp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fXW" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = -5 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"fYc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fYs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"fYK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fYL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"fYO" = ( +/obj/structure/sign/departments/psychology{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"fYW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fZp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"fZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"fZt" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"fZv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fZx" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fZA" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"fZK" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"fZN" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/research) +"fZP" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"fZW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"gag" = ( +/obj/structure/disposalpipe/sorting/mail{ + name = "CE's Junction"; + sortType = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gax" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"gaE" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"gaN" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"gaO" = ( +/obj/item/clipboard{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/item/newspaper, +/obj/item/pen/red, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"gaP" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/item/folder/yellow, +/obj/machinery/door/window/northleft{ + name = "Chemistry Desk" + }, +/obj/machinery/door/window/southleft{ + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"gbd" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"gbB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"gbL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall, +/area/engineering/atmos) +"gcu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"gcT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"gcW" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"gdb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"gdf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gdw" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"gdO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"gdT" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"gdV" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Game Room" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gep" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"geA" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"geJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/door/window/southright{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"geR" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"geT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"geW" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gfc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"gfI" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gfN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 1; + req_access_txt = "31" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"ggg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ggn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"ghk" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/cardborg, +/obj/item/clothing/head/cardborg, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"gho" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"ghq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Break Room"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"ghJ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gic" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"gih" = ( +/obj/machinery/computer/upload/ai{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"gij" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"giT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"giV" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gjd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"gje" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gjg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"gjl" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gju" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"gjx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"gjC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"gjL" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"gkn" = ( +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + dir = 8; + name = "service camera" + }, +/obj/structure/table, +/obj/effect/turf_decal/delivery, +/obj/machinery/plantgenes, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gko" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gkv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gkK" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Cell 5"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"gkR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gkW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"glh" = ( +/obj/structure/sign/directions/command{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"glp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"glz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"glG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"glH" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"glS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"glT" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"gmc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"gmh" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Hallway Maintenance Hatch"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"gmi" = ( +/obj/structure/rack, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/clothing/head/chefhat, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "kitchenwindow"; + name = "Kitchen Privacy Control"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"gmN" = ( +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"gmP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gna" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"gnc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gnd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"gni" = ( +/obj/machinery/camera{ + c_tag = "Primary Restroom"; + name = "restroom camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"gnq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gnv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "MiniSat Upload"; + req_access_txt = "16" + }, +/obj/machinery/flasher/directional/west{ + id = "AI" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"gnF" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"gnR" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/atmos, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gnV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"gnW" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"gom" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/primary/aft) +"goy" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"goP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"goQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Hall" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/chapel/main) +"goR" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"goX" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"goY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"gpp" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"gpr" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"gpC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gpG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gqi" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"gqj" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"gqq" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"gqw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gqy" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/cargo/office) +"gqB" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/junction/flip, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gqD" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gqE" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"gqJ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"gqN" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/safe/hos{ + pixel_x = 32 + }, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"gqP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"gqQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"grl" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"grO" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gsa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gse" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - co2 Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"gsn" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"gsq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"gsr" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gsx" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gsB" = ( +/obj/structure/closet/crate/bin, +/turf/open/floor/plasteel, +/area/security/prison) +"gsC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gsX" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gsZ" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"gta" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gtA" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gub" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"guf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"guk" = ( +/obj/machinery/door/window/northleft{ + name = "Engineering Delivery"; + req_access_txt = "32" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"gum" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"gup" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"guB" = ( +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"guF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"guL" = ( +/turf/closed/wall/r_wall, +/area/security/execution) +"guN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Bar - Fore"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/displaycase/forsale/kitchen, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"guW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"gvc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"gvd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gvf" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"gvx" = ( +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Bridge - E.V.A. Fore"; + name = "command camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"gvH" = ( +/obj/structure/mirror/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"gwo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room/external) +"gwr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/button/door/directional/south{ + id = "evashutters"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"gxd" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"gxe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"gxg" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/locker) +"gxm" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"gxo" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/obj/machinery/door/window/eastright, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gxv" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Library Desk"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"gxD" = ( +/obj/machinery/rnd/bepis, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gxL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gxR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Customs Maintenance"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"gyd" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/library/abandoned) +"gyl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/restrooms) +"gyL" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/toy/gun, +/obj/item/clothing/head/beret/sec{ + armor = list("melee"=0,"bullet"=0,"laser"=0,"energy"=0,"bomb"=0,"bio"=0,"rad"=0); + desc = "A replica beret resembling that of a special operations officer under Nanotrasen."; + name = "replica officer's beret" + }, +/obj/structure/cable, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"gzt" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"gzu" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_singulo_tesla, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"gzC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gzD" = ( +/obj/structure/girder, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gzM" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/electronics/airalarm, +/obj/item/electronics/airlock, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"gzU" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft Starboard"; + dir = 1; + name = "cargo camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gzW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gzY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"gAm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"gAy" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gAD" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/pill_bottle/dice, +/obj/effect/spawner/random/entertainment/money_large, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"gBh" = ( +/obj/structure/sign/directions/engineering{ + desc = "A handy sign praising the engineering department."; + icon_state = "safety"; + name = "engineering plaque" + }, +/turf/closed/wall, +/area/engineering/break_room) +"gBo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gBt" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/harebell, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"gBz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gBM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"gBQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gBU" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"gBY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gCc" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Cell 1"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"gCu" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/chef, +/obj/effect/turf_decal/bot, +/obj/item/food/mint, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel, +/area/service/kitchen) +"gCw" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/space, +/area/engineering/atmos) +"gCD" = ( +/obj/structure/reflector/double, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"gCK" = ( +/turf/closed/wall, +/area/maintenance/department/science) +"gCX" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"gDg" = ( +/obj/structure/table/wood/fancy, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"gDw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"gDB" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gDC" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"gDE" = ( +/obj/structure/chair/office, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"gDO" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"gDQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"gDT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"gEh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/hallway/secondary/command) +"gEA" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"gEG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gER" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gFf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gFj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gFn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"gFG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"gFZ" = ( +/obj/machinery/nanite_program_hub, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"gGp" = ( +/obj/structure/chair/stool/bar, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"gGz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gGK" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"gGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"gGU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Nitrogen Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"gHb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Bar Junction"; + sortType = 19 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"gHl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"gHm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"gHK" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"gHX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargounload" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gIf" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/armor/vest/justice, +/obj/item/clothing/head/helmet/justice/escape{ + name = "justice helmet" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"gIm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gIH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gIX" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat Exterior Access"; + req_one_access_txt = "13;32" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"gJq" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Xenobiology - Cell 8"; + dir = 1; + name = "xenobiology camera"; + network = list("ss13","xeno","rd") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gJw" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gJL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gJO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gKg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gKr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/science/research/abandoned) +"gKG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"gKN" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"gKO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gKR" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gKX" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Quarters"; + req_access_txt = "40" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"gKZ" = ( +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"gLe" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"gLm" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"gLo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"gLB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"gLM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"gLS" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"gMy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"gMz" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"gMZ" = ( +/obj/machinery/airalarm{ + pixel_y = 28 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/computer/crew, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"gNl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"gNF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"gNK" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/turf/open/floor/wood, +/area/service/library) +"gNS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"gNW" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"gOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gOL" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Dock - Aft"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"gOQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"gOY" = ( +/obj/machinery/power/smes/engineering{ + charge = 2e+006 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/engineering/main) +"gPc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"gPf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/auxiliary) +"gPk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"gPt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"gPv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/science/research) +"gPw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"gPx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"gPA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"gPC" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"gPM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"gQi" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gQp" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"gQs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"gQI" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gQQ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"gQS" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"gRl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenwindows"; + name = "Kitchen Privacy Shutters" + }, +/turf/open/floor/plating, +/area/service/kitchen) +"gRr" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"gRM" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/contraband/prison, +/obj/effect/spawner/random/contraband/prison, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"gRN" = ( +/obj/machinery/smartfridge/organ, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"gRQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"gRT" = ( +/turf/open/floor/wood, +/area/service/theater/abandoned) +"gSi" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab) +"gSn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"gSp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"gSs" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: PRESSURIZED DOORS" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"gSw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"gSL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"gSY" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"gTa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"gTm" = ( +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"gTs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gTt" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"gTB" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/aft) +"gTH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gTI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"gTJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"gUo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"gUy" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Cell 4"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"gUH" = ( +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"gUN" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gUR" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/mime, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"gVf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gVj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"gVw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"gVE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"gVL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"gVP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gWm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gWz" = ( +/obj/structure/toilet/greyscale, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"gWG" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"gWQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"gWX" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"gXi" = ( +/obj/machinery/door/airlock/security{ + name = "Private Interrogation"; + req_access_txt = "4" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"gXj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port) +"gXk" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Air Supply"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"gXn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"gXC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"gXL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"gXU" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gXX" = ( +/obj/machinery/camera{ + c_tag = "Departures - Aft"; + dir = 1; + name = "departures camera" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gYt" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"gYz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyerprivacy"; + name = "Lawyer's Privacy Shutter" + }, +/turf/open/floor/plating, +/area/lawoffice) +"gYD" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/south, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"gYQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gYZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"gZh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"gZK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"gZR" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"had" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/open/floor/plating, +/area/tcommsat/server) +"haf" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hak" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/maintenance, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"hax" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/engineering/break_room) +"haA" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"haE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"haH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/target, +/obj/structure/training_machine, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"haT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"haV" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"haW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"hbl" = ( +/obj/structure/bookcase, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"hbp" = ( +/obj/structure/bed, +/obj/item/bedsheet/black, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hbO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hbT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"hbW" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hcc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"hcO" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"hdi" = ( +/obj/machinery/atmospherics/components/binary/pump/layer2{ + dir = 8; + name = "Gas to Chamber" + }, +/obj/machinery/atmospherics/components/binary/pump/layer4{ + dir = 4; + name = "Chamber to Cooling" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"hdj" = ( +/obj/machinery/photocopier, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"hdp" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hdq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/musician/piano, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"hdt" = ( +/obj/machinery/mineral/ore_redemption, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hdG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hdP" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"hei" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"heo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"her" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"heA" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/service/bar) +"heL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"heQ" = ( +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"heR" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hfg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hfi" = ( +/obj/effect/decal/cleanable/oil, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"hfl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"hfn" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/bomj, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"hfp" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"hfr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"hft" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/razor, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"hfC" = ( +/obj/structure/lattice, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"hfE" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/meat/slab/human{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/meat/slab/human, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hfP" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hgm" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 8 + }, +/turf/open/space, +/area/engineering/atmos/upper) +"hgo" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"hgz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hgA" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Room"; + dir = 4; + name = "engineering camera" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hgE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Unfiltered & Air to Mix" + }, +/obj/machinery/atmospherics/pipe/color_adapter, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hgH" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hgK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"hgT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"hhG" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"hhH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"hhS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hia" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"hij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"hiu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"hiA" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hiD" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"hiG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hiK" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"hjl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"hjt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hjx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hjC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"hjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"hjX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"hjY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"hkj" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"hkl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"hko" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hkO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hkY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hlc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hlw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"hly" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hlI" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hlW" = ( +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"hmb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"hml" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"hmD" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/library) +"hmH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/library/abandoned) +"hnl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"hnn" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"hnu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"hnF" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hnN" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/main) +"hnW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hod" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hon" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"hop" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"hos" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"hov" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hoA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"hoN" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"hoQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"hoS" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hoW" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"hoY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hoZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hpb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hpn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"hpq" = ( +/obj/machinery/nuclearbomb/selfdestruct{ + layer = 2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hpD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hpH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/commons/dorms) +"hpM" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hpN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hpY" = ( +/obj/structure/cable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"hqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"hqz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hqK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"hqR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"hqS" = ( +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"hra" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hrt" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"hrC" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"hrI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel, +/area/security/main) +"hrT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"hrU" = ( +/obj/machinery/camera{ + c_tag = "Cargo Bay - Port"; + dir = 4; + name = "cargo camera" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #4" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hsd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"hsh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"hsx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hsG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"hsR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"htp" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/library) +"htv" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"htJ" = ( +/turf/closed/wall, +/area/command/heads_quarters/cmo) +"htK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"htS" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"htZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/mixer{ + name = "plasma mixer" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hun" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"hut" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -5 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft Starboard"; + dir = 1; + name = "cargo camera" + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 2 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"huK" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"hvd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"hvp" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"hvt" = ( +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"hvD" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/engineering/atmos/upper) +"hwx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hwH" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/library) +"hwK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hwL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hwT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"hwU" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hwV" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hxm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"hxu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"hxv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"hxG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"hxO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"hxZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"hye" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"hyz" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hyV" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hza" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hzd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hzg" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/library) +"hzj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/restaurant_portal/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"hzs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"hzC" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"hAc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hAm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hAD" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/geranium{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/grown/poppy/lily, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"hAI" = ( +/obj/structure/window, +/obj/structure/sink{ + pixel_y = 30 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/security/prison) +"hAN" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"hBf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hBn" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"hBy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hBz" = ( +/obj/machinery/door/window/brigdoor/security/cell/westright{ + id = "brig2"; + name = "Cell 2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"hBB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hBE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hBY" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solars/port/aft) +"hCg" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"hCj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hCm" = ( +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"hCH" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hCJ" = ( +/turf/open/space/basic, +/area/service/abandoned_gambling_den) +"hCK" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"hCR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chapelprivacy"; + name = "Chapel Privacy Shutters" + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"hCS" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"hCT" = ( +/turf/open/floor/circuit/green, +/area/engineering/gravity_generator) +"hDb" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/structure/frame/computer, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"hDc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"hDe" = ( +/obj/machinery/light_switch/directional/south{ + pixel_x = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south{ + pixel_x = -4 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"hDg" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/port/fore) +"hDh" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"hDA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"hDE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hEa" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hEk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"hEm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hEq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"hEu" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"hEB" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hED" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hEN" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hEX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"hFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"hFp" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"hFt" = ( +/obj/structure/frame/computer, +/obj/item/circuitboard/computer/secure_data, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"hFM" = ( +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hFX" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"hGb" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno2"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hGg" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"hGh" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hGq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"hGr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"hGA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"hGF" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"hGG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"hHe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hHj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hHx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"hHJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"hHP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hHR" = ( +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"hHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hIa" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"hIj" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"hIq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hIH" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"hII" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/space, +/area/engineering/atmos) +"hIN" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hJb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"hJe" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hJu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hJA" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/cargo/office) +"hJG" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/obj/item/clothing/head/bowler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"hJH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hJN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"hJT" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"hKg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"hKw" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/cook, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"hKA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hKQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"hKR" = ( +/obj/structure/lattice, +/turf/open/space, +/area/service/abandoned_gambling_den) +"hLq" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"hLr" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/maintenance/port) +"hLN" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hLW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"hMg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"hMk" = ( +/turf/closed/wall, +/area/engineering/main) +"hMv" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"hMA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access_txt = "17" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/teleporter) +"hML" = ( +/turf/closed/wall, +/area/command/meeting_room/council) +"hMZ" = ( +/obj/item/beacon, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hNd" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"hNm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"hNq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"hNT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"hNZ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hOg" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/mining{ + name = "Drone Bay"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hOx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hOU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"hOZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"hPs" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"hPv" = ( +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"hPw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hPD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"hPM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"hQe" = ( +/obj/structure/chair/stool, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"hQk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"hQn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"hQq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hQG" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hQJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hQM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hQZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"hRa" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"hRj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"hRz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdrnd"; + name = "Research and Development Shutters" + }, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Research Lab Desk"; + req_one_access_txt = "7;29" + }, +/obj/machinery/door/window/westleft, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"hRH" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"hRO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"hSl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"hSn" = ( +/obj/machinery/airlock_sensor/incinerator_ordmix, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"hSu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/table/greyscale, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 7 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"hSx" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window{ + dir = 4; + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hSK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hSS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"hST" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"hSV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hTb" = ( +/obj/machinery/camera{ + c_tag = "Arrivals - Center Port"; + name = "arrivals camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"hTk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hTo" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tower, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"hTt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hTu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hTA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"hTF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/theater/abandoned) +"hTO" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"hTS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"hUe" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"hUm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/obj/machinery/vending/coffee, +/turf/open/space/basic, +/area/space/nearstation) +"hUq" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hUr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/greyscale, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"hUs" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"hUv" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"hUA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hUE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"hUH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security Hallway - Center"; + dir = 1; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hVc" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/fore) +"hVi" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"hVo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"hVv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/theater) +"hVB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"hVE" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"hVF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"hVW" = ( +/obj/structure/window/plasma/reinforced/spawner/west{ + dir = 4 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"hVY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hVZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hWc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hWj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Testing Room"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hWu" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/supermatter) +"hWw" = ( +/obj/machinery/flasher{ + id = "justiceflash"; + pixel_x = 26; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "justiceflash"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"hWy" = ( +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"hWD" = ( +/obj/structure/disposalpipe/sorting/mail{ + name = "Engineering Junction"; + sortType = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"hXe" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"hXi" = ( +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hXn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hXs" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/kitchen) +"hXG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"hXM" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"hXT" = ( +/obj/machinery/door/window/northleft, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"hYe" = ( +/obj/structure/table/glass, +/obj/item/folder/blue, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/chemistry, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"hYs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"hYA" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"hYG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"hZg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"hZo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hZw" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Port"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"hZA" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"hZL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hZN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"hZU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/library) +"iaa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"iah" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/hostile/retaliate/goose/vomit, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"iaz" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iaA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"iaF" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"ibh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"ibr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ibv" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album/chapel, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"ibw" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"ibz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ibJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"ibQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ibS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ibV" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ibY" = ( +/obj/structure/chair/stool, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"icb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ice" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"ici" = ( +/obj/structure/bed/roller, +/obj/structure/sign/departments/chemistry{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Medbay - Waiting Room"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ick" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/clothing/mask/gas/sechailer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"icm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"icz" = ( +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 12 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"icG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ide" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/bio, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"idi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"idk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"idv" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"idx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"idG" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"idL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"idM" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"idQ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/teleporter) +"idS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"idU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ieh" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"iem" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iev" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_one_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ieL" = ( +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ieW" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ifa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ife" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/md, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"ifj" = ( +/obj/structure/dresser, +/obj/item/storage/secure/safe/directional/east, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"ifv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster's Quarters"; + req_access_txt = "41" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ifw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ifF" = ( +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"ifQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ifX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ifZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iga" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"igc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"ign" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"igq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"igB" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"igV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"igW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ihd" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/trash/grille_or_waste, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"ihg" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ihi" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ihk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"ihB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ihC" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/suit/ianshirt, +/obj/item/bedsheet/ian, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"ihX" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse/brown/tom, +/turf/open/floor/plasteel, +/area/security/prison) +"iil" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"iim" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 27 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iit" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iiE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"iiI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iiL" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"iiR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ijb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ijk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"ijH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plating, +/area/space) +"ijR" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ikf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"iki" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"ikq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"ikG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"ikJ" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ikU" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"ils" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/security/main) +"ilu" = ( +/obj/structure/window, +/obj/machinery/biogenerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ilK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/machinery/button/door/atmos_test_room_mainvent_2, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"ilM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Lab"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"ilU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Distro" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ima" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"ime" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"imp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/cargo/qm) +"imx" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/window/northleft{ + name = "Drone Launchsite" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"imy" = ( +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"imA" = ( +/obj/structure/table, +/obj/item/stack/wrapping_paper{ + pixel_y = 5 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"imC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"imL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"imN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"imZ" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ina" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"inm" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/grimy, +/area/command) +"inw" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"inC" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/item/wrench, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/supermatter) +"inK" = ( +/obj/machinery/door/window/northright, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"inR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ioc" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"iog" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"ioj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ioz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ioN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"ioP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"ioR" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"ioU" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ipa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ipi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ipn" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ipq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ipD" = ( +/obj/structure/table/wood, +/obj/machinery/cell_charger, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"ipL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"ipZ" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"iql" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iqz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"iqH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"iqM" = ( +/obj/structure/table, +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.01; + pixel_x = -2; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.02; + pixel_x = 3; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + layer = 3.03; + pixel_x = 8; + pixel_y = -5 + }, +/obj/item/grenade/barrier{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.01; + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.02; + pixel_x = -1; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.03; + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + layer = 3.04; + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"iqT" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/locker) +"iqZ" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall, +/area/engineering/atmos/upper) +"iry" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"irC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"irE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"irL" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"irV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"isb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ise" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"isg" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ish" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"isk" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"iss" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"isC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"isY" = ( +/obj/machinery/camera{ + c_tag = "Permabrig - Workroom"; + dir = 4; + network = list("ss13","prison") + }, +/obj/item/radio/intercom/directional/west{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"itf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"itn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"itq" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/chair/comfy, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"itE" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/ai_all, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"itL" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/east, +/obj/item/coin/adamantine{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_tele, +/obj/item/melee/chainofcommand, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"itM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"itR" = ( +/obj/machinery/light/small/directional/south, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"itU" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"iuh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iuk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"iul" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"iuz" = ( +/obj/structure/chair{ + dir = 8; + name = "Judge" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"iuE" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iuG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"iuI" = ( +/obj/effect/turf_decal/arrows{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/service/kitchen) +"iuO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"iuP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iuR" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iuV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"ivo" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ivD" = ( +/obj/structure/closet/secure_closet/freezer/fridge/open, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/blood/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/reagent_containers/blood/random{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ivL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ivX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"ivY" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"iwr" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"iwK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ixj" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + req_one_access_txt = "5;12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ixm" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/main) +"ixI" = ( +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ixL" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"ixS" = ( +/turf/open/space/basic, +/area/engineering/atmos/upper) +"iyg" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"iyB" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"iyX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"izl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"izq" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Permabrig - Hall"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"izG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"izY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"iAa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"iAe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"iAh" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"iAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"iAK" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Chapel Maintenance"; + req_access_txt = "27" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/chapel/office) +"iAL" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Cell 2"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"iAN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iAO" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Restroom" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"iAP" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Auxiliary Restroom"; + name = "restroom camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/auxiliary) +"iAW" = ( +/obj/machinery/light/directional/east, +/obj/item/storage/pod{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iBa" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iBb" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iBM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/landmark/start/exploration, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"iBT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"iBZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/morgue) +"iCf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"iCm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Pure" + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"iCs" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"iCu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iCE" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"iCN" = ( +/obj/structure/table, +/obj/structure/window{ + dir = 8 + }, +/obj/structure/reagent_dispensers/servingdish, +/obj/structure/reagent_dispensers/servingdish, +/obj/item/clothing/head/chefhat, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"iCO" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"iDa" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"iDb" = ( +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"iDf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iDn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"iDp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"iDt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/qm) +"iDB" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iDK" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library) +"iEi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iED" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"iEE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"iEF" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Aft Port"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/item/clipboard, +/obj/item/healthanalyzer, +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iEZ" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iFr" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms) +"iFs" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"iFA" = ( +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"iFD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iGk" = ( +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"iGq" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"iGx" = ( +/obj/machinery/air_sensor/carbon_tank, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"iGC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"iGF" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/service/library) +"iGJ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iGK" = ( +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iGN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"iGQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iGT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"iGY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"iHq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iHr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"iHs" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering{ + name = "Smoking Room"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"iHJ" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/clothing/head/collectable/hop, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"iHV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/prison) +"iIt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"iJf" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"iJo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"iJD" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iJF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iKd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"iKi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iKo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"iKu" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plating, +/area/service/library/abandoned) +"iKB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iKP" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/service/bar/atrium) +"iKS" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"iLh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"iLt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iLD" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iLM" = ( +/obj/structure/table, +/obj/item/storage/photo_album, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iLS" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"iLT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"iLY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"iMp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"iMu" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transitlock"; + name = "Transit Tube Lockdown Door" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/storage_shared) +"iMz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"iMC" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"iMF" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/purple, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/item/clothing/under/costume/geisha, +/obj/item/clothing/head/fedora{ + icon_state = "curator" + }, +/obj/item/clothing/suit/jacket{ + desc = "This looks awfully familiar..."; + icon_state = "curator" + }, +/obj/item/clothing/under/rank/civilian/curator/treasure_hunter, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet, +/area/commons/dorms) +"iMR" = ( +/obj/structure/table, +/obj/effect/spawner/random/contraband/prison, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/storage/crayons, +/turf/open/floor/plasteel, +/area/security/prison) +"iMT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"iNf" = ( +/obj/machinery/light/directional/south, +/obj/structure/dresser, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"iNm" = ( +/obj/machinery/door/window/brigdoor/westright{ + name = "Shooting Range"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/range) +"iNs" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Cargo - Mining Office"; + dir = 8; + name = "cargo camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"iNS" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"iOi" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/machinery/status_display/ai/directional/north, +/obj/item/stock_parts/cell/high, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/rcl/pre_loaded, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"iOm" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"iOo" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iOz" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"iOJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"iPc" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"iPh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"iPj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iPv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"iPI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iPN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"iPP" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iQa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"iQb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"iQf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"iQh" = ( +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"iQj" = ( +/obj/structure/cable, +/obj/machinery/button/flasher{ + id = "Cell 4"; + name = "Prisoner Flash"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "permashut4"; + name = "Cell Lockdown Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"iQv" = ( +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"iQC" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"iQH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"iQJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"iQK" = ( +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random{ + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"iQN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"iQO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"iQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"iQT" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"iRf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iRw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iRV" = ( +/obj/machinery/door/airlock{ + name = "Medbay Auxiliary Storage"; + req_access_txt = "5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"iSa" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/locker) +"iSG" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"iSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"iTb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iTd" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iTh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"iTp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iTy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"iTz" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"iTF" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"iTI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"iUx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"iUE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"iVb" = ( +/obj/machinery/meter, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"iVA" = ( +/obj/structure/chair/comfy/black, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"iVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"iVI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"iWa" = ( +/obj/structure/easel, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"iWi" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/main) +"iWG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"iWR" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"iXe" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"iXt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northleft, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"iXT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iYy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"iYA" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"iYC" = ( +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iYN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"iYT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iZy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"iZC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"iZF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iZH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"iZQ" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Storage Closet" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"iZY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iZZ" = ( +/turf/closed/wall, +/area/cargo/sorting) +"jah" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"jam" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"jaL" = ( +/obj/machinery/camera{ + c_tag = "Library"; + name = "library camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"jaV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jaW" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"jaZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"jbb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jbk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jbu" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"jbx" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"jbH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jbI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"jbX" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"jcj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jck" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"jcC" = ( +/obj/machinery/button/door{ + id = "brigwindows"; + name = "Cell Window Control"; + pixel_x = -32; + pixel_y = -26; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigfront"; + name = "Brig Access Control"; + pixel_x = -26; + pixel_y = -36; + req_access_txt = "63" + }, +/obj/machinery/button/door{ + id = "brigprison"; + name = "Prison Lockdown"; + pixel_x = -38; + pixel_y = -36; + req_access_txt = "63" + }, +/obj/effect/landmark/start/warden, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"jcD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jcE" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jcG" = ( +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"jcX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"jdj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/abandoned) +"jdv" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"jdJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"jdL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"jdO" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jeb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jew" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 28 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"jfc" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jfp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"jfz" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"jfG" = ( +/obj/effect/landmark/start/quartermaster, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"jfU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jfV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"jgb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/port/aft) +"jgh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"jgn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jgo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jgH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"jgK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"jgO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jgR" = ( +/obj/item/wrench, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/machinery/light/directional/south, +/obj/structure/closet, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jhd" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jho" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"jhq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jhC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jhN" = ( +/obj/structure/table/reinforced, +/obj/item/bodypart/chest/robot, +/obj/item/mmi, +/obj/item/mmi, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"jhY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jio" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"jip" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"jir" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"jiy" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"jiB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos/upper) +"jiK" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/service/hydroponics) +"jiM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "AuxToilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"jiW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Mix to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jiX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"jjf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"jjm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"jjt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"jju" = ( +/obj/item/beacon, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jjx" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"jjB" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jjI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"jjM" = ( +/obj/effect/spawner/xmastree, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"jjN" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera{ + c_tag = "Science - Experimentation Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jkf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jkj" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"jkp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jkz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"jkE" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/requests_console/directional/south{ + department = "Law Office"; + name = "Law Office Requests Console" + }, +/turf/open/floor/wood, +/area/lawoffice) +"jkF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"jkO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin/carbon, +/obj/item/stamp/hop, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel's Requests Console" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"jli" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"jlX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"jmq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jmr" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jmz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"jmG" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"jmH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"jmU" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"jnc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jnj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jny" = ( +/obj/structure/table/wood, +/obj/item/instrument/eguitar, +/obj/item/toy/crayon/spraycan/lubecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"jnE" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"joJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"joN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"jpd" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain's Requests Console" + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"jpf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jpo" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"jpr" = ( +/obj/machinery/copytech_platform, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"jpS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/fitness/recreation) +"jpY" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"jqd" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"jqh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"jqu" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"jqx" = ( +/obj/structure/table_frame/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/library/abandoned) +"jqI" = ( +/obj/machinery/door/airlock/external{ + name = "Observatory"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"jqO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"jqY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"jrh" = ( +/obj/structure/window, +/obj/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"jrm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jrt" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"jrC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"jrR" = ( +/obj/structure/sign/poster/ripped{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"jse" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/atmos) +"jsg" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jsh" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"jsj" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jsr" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"jsB" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/cargo/warehouse) +"jsQ" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jtm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"jts" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"jtJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"jtM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"jtO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"jtP" = ( +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"jtR" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "Atmospherics - Turbine Access"; + dir = 1; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"juf" = ( +/obj/machinery/button/ignition/incinerator/ordmix, +/obj/machinery/button/door/incinerator_vent_ordmix, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Science - Toxins Mixing Lab Burn Chamber"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"jug" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"jup" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jus" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jvd" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"jvy" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/break_room) +"jvK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"jvO" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_guide, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jvP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jvS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"jwc" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/item/stack/package_wrap, +/obj/item/crowbar, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/service/janitor) +"jwg" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jwE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"jwH" = ( +/mob/living/simple_animal/mouse/brown/tom, +/turf/open/floor/plasteel, +/area/security/prison) +"jwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jxd" = ( +/obj/structure/table, +/obj/item/clothing/suit/apron/overalls, +/obj/item/cultivator, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"jxf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"jxm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "Toilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"jxA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"jxD" = ( +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"jxH" = ( +/turf/closed/wall, +/area/cargo/storage) +"jxO" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/limbgrower, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"jya" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jyg" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "27" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jyi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"jyl" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"jzg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"jzh" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jzA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jzT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"jAg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/station{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/aisat) +"jAh" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solars/starboard/fore) +"jAr" = ( +/obj/structure/chair/stool, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"jAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jAB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"jAK" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt3"; + name = "Cell 4" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permashut4" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"jAM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"jAQ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jAZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jBo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Kitchen Delivery"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jBB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"jBI" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"jBK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"jBO" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"jCf" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"jCg" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/button/door/directional/north{ + id = "ceblast"; + name = "Lockdown Control"; + pixel_x = 24; + req_access_txt = "56" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jCj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen Coldroom"; + req_access_txt = "28" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jCw" = ( +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jCE" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/camera{ + c_tag = "Security - Office Aft"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jCF" = ( +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access_txt = "19" + }, +/obj/machinery/bluespace_beacon, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"jCR" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"jDc" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/restrooms) +"jDv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jDJ" = ( +/obj/structure/cable, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"jDK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"jDV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"jEi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"jEz" = ( +/obj/machinery/camera{ + c_tag = "Science - Firing Range"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"jEG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/service/library/abandoned) +"jEH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"jEN" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"jEQ" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"jES" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 32 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/cargo/qm) +"jEU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"jEV" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"jFf" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"jFj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jFk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"jFs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"jFQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"jFZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jGc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"jGf" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/effect/decal/cleanable/dirt, +/obj/item/hand_labeler, +/obj/item/food/grown/tea, +/obj/item/food/grown/grapes, +/obj/item/food/grown/cherries, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"jGi" = ( +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"jGr" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jGJ" = ( +/obj/machinery/door/window{ + name = "Secure Art Exhibition"; + req_access_txt = "37" + }, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/library) +"jGK" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"jGY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jHc" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/commons/fitness/recreation) +"jHu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"jHv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jHF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jHI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #2" + }, +/obj/effect/turf_decal/delivery, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #3"; + suffix = "#3" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jHY" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/command) +"jId" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"jIn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jIs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"jIv" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"jIO" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "Atmospherics - Port"; + dir = 4; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jIP" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/camera{ + c_tag = "Permabrig - Isolation"; + network = list("ss13","prison") + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"jJc" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jJq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jJB" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/food/donut/jelly/choco, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jJG" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: PRESSURIZED DOORS" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"jJJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"jJW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/closed/wall/r_wall, +/area/engineering/storage_shared) +"jJY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jKg" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"jKs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"jKt" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"jKw" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/obj/item/camera, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"jLb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"jLf" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"jLq" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"jLJ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jLK" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jLY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jMn" = ( +/obj/machinery/camera{ + c_tag = "Telecomms - Cooling Room"; + dir = 8; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"jMo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"jMu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"jMK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/commons/locker) +"jMT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/highsecurity{ + name = "Engineering Auxiliary Storage"; + req_access_txt = "32" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jMX" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jNc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + name = "Kitchen Desk"; + req_access_txt = "28" + }, +/obj/item/storage/bag/tray, +/obj/machinery/door/window/westleft, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jNq" = ( +/obj/structure/dresser, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"jNP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jNQ" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"jNZ" = ( +/obj/structure/table/wood/poker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"jOq" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"jOF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"jOJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jOW" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/engineering/atmos) +"jPc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/library) +"jPm" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jPq" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"jPy" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jPM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jQa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"jQj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/maintenance/starboard/fore) +"jQl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"jQA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"jQC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"jQH" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/service_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"jQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jQO" = ( +/turf/open/floor/engine/air, +/area/engineering/atmos) +"jQS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jQV" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jQW" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jQY" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/hydroponics) +"jRm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 21 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"jRs" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"jRA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"jRF" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"jSd" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"jSe" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/turf/open/floor/plating, +/area/science/mixing) +"jSw" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jSK" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"jSR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/mining{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"jSZ" = ( +/obj/structure/chair/stool/bar, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"jTf" = ( +/obj/structure/closet/masks, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jTi" = ( +/turf/closed/wall, +/area/engineering/break_room) +"jTl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/exoscanner_control{ + dir = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"jTr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"jTz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"jTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"jTW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"jUc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"jUh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/janitor) +"jUo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"jUV" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank In" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"jVf" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"jVn" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jVx" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"jVy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jVC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"jVX" = ( +/obj/structure/fireaxecabinet/directional/south, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"jWa" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/security/prison) +"jWj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command) +"jWk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"jWl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"jWm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jWo" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/main) +"jWq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jWB" = ( +/turf/closed/wall, +/area/service/theater/abandoned) +"jWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jWO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"jWS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jXe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jXl" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/granter/action/spell/smoke/lesser, +/obj/item/nullrod, +/obj/item/organ/heart, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"jXt" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"jXU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"jYB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"jYD" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jYG" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"jYL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"jZj" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"jZK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"jZR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"jZS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"jZU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"kag" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"kaB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kaN" = ( +/obj/structure/rack, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe/multiver, +/obj/machinery/vending/wallmed/directional/west, +/obj/machinery/camera{ + c_tag = "Bridge - Gateway Atrium"; + dir = 4; + name = "command camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"kaQ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"kbi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"kbs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/maintenance/solars/port/fore) +"kbv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"kbz" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"kbC" = ( +/obj/machinery/holopad, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"kbD" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"kbL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"kbN" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/five, +/obj/item/circuitboard/machine/paystand, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/vacant_room/commissary) +"kci" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kct" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"kcu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"kcH" = ( +/obj/machinery/status_display/ai/directional/west, +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"kcK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kcZ" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"kdz" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kdD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"kdI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kdJ" = ( +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"kdN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"kdP" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kdQ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"kdV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kdW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"kdX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"kdY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"keh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"ken" = ( +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Chapel Crematorium"; + dir = 8; + name = "chapel camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kep" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_one_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"keR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"keW" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"kfa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kfc" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/electronic_marketing_den) +"kfh" = ( +/obj/structure/table/wood, +/obj/item/clothing/glasses/regular/hipster, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"kfv" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"kfz" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"kfD" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"kfO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"kfU" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"kgo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"kgL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"kgR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kha" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"khl" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm6"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"khr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"khD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"khK" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"khP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"khQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridgewindows"; + name = "Bridge View Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command) +"khU" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/wood, +/area/commons/dorms) +"kip" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"kiw" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"kiz" = ( +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 4; + network = list("vault") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"kiB" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console/directional/south{ + department = "Engineering"; + departmentType = 3; + name = "Engineering Requests Console" + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"kiK" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kiO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kiV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"kjh" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north{ + pixel_x = -26 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kjm" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"kjD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kjE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"kjL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kjN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/office) +"kjS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"kjX" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/wallet/random, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"kkW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"kld" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"kle" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"kly" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"klB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kmg" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"kms" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/button/door/directional/south{ + id = "idquarters"; + name = "Privacy Control"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"kmR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"kmS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kmT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"kmX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"knd" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"kne" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"knk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ore_box, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"knt" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"knJ" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Locker Room - Fore"; + name = "dormitories camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"knS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input{ + dir = 8 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"koD" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"koH" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"koI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/meter/layer4, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"koU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"koZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kpk" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/light_switch/directional/west{ + pixel_x = -38; + pixel_y = 8 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = -38; + pixel_y = -7; + req_access_txt = "28" + }, +/obj/machinery/button/ticket_machine{ + pixel_y = 22 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north{ + pixel_y = 30 + }, +/obj/machinery/button/door/directional/west{ + id = "hopblast"; + name = "Lockdown Blast Doors"; + pixel_y = 6; + req_access_txt = "57" + }, +/obj/machinery/button/door/directional/west{ + id = "hopline"; + name = "Queue Shutters Control"; + pixel_y = -6; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"kpm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"kpr" = ( +/obj/structure/table, +/obj/item/storage/box/masks{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/gloves, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"kpA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kpF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kpO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"kqg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kqi" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"kqn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2O to Pure" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engineering/atmos) +"kqC" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"kqD" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Prisoner Workroom" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kqG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"kqH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"kry" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"krF" = ( +/obj/effect/landmark/start/bartender, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"krH" = ( +/obj/structure/table, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"krI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"ksa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"ksh" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"ksk" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/stack/rods{ + amount = 23 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"ksq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"ksr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"ksz" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ksL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"ksV" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"ksX" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ktb" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Distro Loop"; + dir = 1; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ktc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ktn" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ktw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/carpet, +/area/service/chapel/office) +"ktB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ktN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"ktR" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ktT" = ( +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer's Requests Console" + }, +/obj/machinery/camera{ + c_tag = "Engineering - Chief Engineer's Office"; + dir = 4; + name = "engineering camera" + }, +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ktU" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/captain, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"ktW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"kuc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/security/detectives_office/private_investigators_office) +"kue" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"kup" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kuv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"kvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"kvi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kvl" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/cargotech, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/cargo/office) +"kvn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"kvv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"kvx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"kvy" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/wood, +/area/commons/dorms) +"kvK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"kvX" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space/basic, +/area/space/nearstation) +"kwB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"kwH" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"kwQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/library/abandoned) +"kwV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"kwW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kxk" = ( +/obj/machinery/door/airlock/atmos{ + name = "Turbine Generator Access"; + req_one_access_txt = "24;10" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kxn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kxv" = ( +/obj/structure/chair/stool, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"kxN" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/command) +"kxR" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"kxU" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"kxX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space/basic, +/area/space) +"kyf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"kyg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kyQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures Lounge" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kyR" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/window/reinforced, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kyT" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"kyY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"kzh" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"kzj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_one_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kzl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"kzm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"kzp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kzH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kAa" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"kAc" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kAj" = ( +/obj/structure/table/wood, +/obj/item/soap/nanotrasen, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"kAl" = ( +/obj/machinery/light_switch/directional/west{ + pixel_x = -38 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Construction"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/west{ + id = "construction"; + name = "Auxiliary Construction Shutters"; + req_access_txt = "72" + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"kAm" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/machinery/button/flasher{ + id = "Cell 1"; + name = "Prisoner Flash"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "permashut1"; + name = "Cell Lockdown Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kAu" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kAx" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"kAJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kAO" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"kBn" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"kBt" = ( +/turf/open/floor/carpet, +/area/service/library) +"kBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"kBN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kBX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"kCh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"kCj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kCw" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/curator, +/obj/item/radio/intercom/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"kCz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"kCA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kCI" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/gloves, +/obj/effect/turf_decal/delivery, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/science/research) +"kCS" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kDg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom"; + req_access_txt = "42" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"kDv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"kDx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"kDK" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kDP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"kDZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"kEi" = ( +/turf/closed/wall, +/area/service/kitchen) +"kEj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"kEo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kEq" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kEH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + name = "Education Chamber"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"kER" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"kET" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kFi" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"kFs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"kFH" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"kGs" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"kGC" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"kGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"kGO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"kGR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"kGW" = ( +/turf/closed/wall, +/area/command/heads_quarters/captain/private) +"kHa" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"kHb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kHv" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"kHw" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/wood, +/obj/item/grown/log, +/obj/item/grown/log, +/obj/item/grown/log, +/obj/item/grown/log, +/obj/item/grown/log, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"kHB" = ( +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"kHF" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"kHI" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"kIc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kIj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"kIw" = ( +/obj/machinery/computer/atmos_control{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the Engine."; + dir = 4; + layer = 4; + name = "Engine Monitor"; + network = list("engine"); + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"kIA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/fitness/recreation) +"kIC" = ( +/obj/structure/table/wood, +/obj/item/instrument/guitar, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"kIE" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"kIH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kJd" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"kJo" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kJx" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"kJB" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kJE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"kJJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"kJW" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"kKa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kKg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Quarters"; + req_access_txt = "27" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kKi" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kKu" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kKF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"kKW" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"kLb" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"kLl" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kLq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kLt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kLJ" = ( +/obj/machinery/meter, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kLO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"kLZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kMl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"kMn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kMv" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"kMC" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/gateway) +"kMN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kMR" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"kNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker, +/obj/item/reagent_containers/dropper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kOD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"kOK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kOP" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"kPa" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kPB" = ( +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"kPH" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"kPQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"kPY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/table/greyscale, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"kQc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/engineering/storage_shared) +"kQd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kQh" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons and the AI's satellite from the safety of his office."; + name = "Research Monitor"; + network = list("rd","minisat"); + pixel_y = 2 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/command) +"kQi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kQl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kQs" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kQt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/main) +"kQA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kQF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"kQI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kQS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"kRf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kRh" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kRj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"kRl" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"kRn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"kRs" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"kRu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "evashutters"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kRC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"kRL" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"kRO" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kRV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"kSb" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"kSw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"kSD" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"kSO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kSQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"kTj" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/medical_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"kTl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"kTo" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/titanium{ + amount = 10 + }, +/obj/item/stack/rods/ten{ + pixel_y = 4 + }, +/obj/item/wallframe/camera, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"kTp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kTD" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kTQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"kUc" = ( +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"kUs" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/north, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/glass/rag, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "Bar"; + name = "Bar Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kUu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Hydroponics Maintenance"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kUE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"kUH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/open/space/basic, +/area/space/nearstation) +"kUO" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"kUP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"kUT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kUV" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"kVg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"kVi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"kVk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"kVz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/girder, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"kVJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"kVK" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"kVP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kWd" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"kWe" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"kWr" = ( +/obj/machinery/air_sensor/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"kWt" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"kWA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kWC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kWN" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"kWO" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"kWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"kWT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"kWW" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kWY" = ( +/obj/structure/bed/dogbed/runtime, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/mob/living/simple_animal/pet/cat/runtime, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"kXk" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kXn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"kXq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"kXs" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kXx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"kXP" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"kYd" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"kYk" = ( +/obj/structure/table/wood, +/obj/item/food/cheesiehonkers, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"kYo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kYC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"kYN" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/library/abandoned) +"kYQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kYS" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/aisat) +"kYV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"kZf" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"kZx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"kZE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"kZV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"laa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"lac" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"laj" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"lak" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/science/server) +"laE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"laF" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Distro to Waste" + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"laY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lbh" = ( +/obj/machinery/door/window/westleft{ + name = "Hydroponics Delivery"; + req_access_txt = "35" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lbt" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lbz" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"lbJ" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel, +/area/command/gateway) +"lbK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lbR" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"lbV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"lce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lcm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"lcu" = ( +/obj/machinery/light/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/button/door/directional/east{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters"; + pixel_y = 6; + req_access_txt = "28" + }, +/obj/machinery/button/door/directional/east{ + id = "kitchenside"; + name = "Kitchen Side Shutters"; + pixel_y = -6; + req_access_txt = "28" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lcv" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = -2 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"lcz" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"lcB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"lcG" = ( +/obj/structure/urinal/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"lcH" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lcU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ldr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"ldB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ldU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ldY" = ( +/turf/closed/wall, +/area/commons/vacant_room/office) +"lef" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos/upper) +"leh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"lep" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"leq" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"let" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"leC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Quarters"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"leH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"leI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"leK" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"leM" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"leS" = ( +/obj/structure/disposalpipe/sorting/mail{ + name = "Atmospherics Junction"; + sortType = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"leW" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxCabinA"; + name = "Cabin A"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"lfq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lfw" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lfH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/storage) +"lga" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lgs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"lgt" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"lgw" = ( +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/item/toy/figure/syndie, +/obj/machinery/light/directional/east, +/turf/open/floor/plating, +/area/security/prison) +"lgA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/fore) +"lgC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lgR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"lhi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Telecomms Foyer"; + req_access_txt = "61" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"lhr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"lhy" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lhK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"lhS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"lhY" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"lia" = ( +/obj/machinery/telecomms/message_server/preset, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"lib" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lii" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"lir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"lis" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"liT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/electronic_marketing_den) +"liX" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/commons/dorms) +"ljl" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"ljm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"ljt" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"lke" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lkh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"lkl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lkt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"lkw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"lkC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"lkG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lkI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"lkV" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"llc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"llo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"lls" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"llu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plating, +/area/science/xenobiology) +"lly" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"llC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"llD" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"llZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"lmb" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Command Chair"; + dir = 1; + name = "command camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "bridgewindows"; + name = "Bridge View Blast Doors"; + pixel_x = -6; + req_access_txt = "19" + }, +/obj/machinery/button/door/directional/south{ + id = "bridgedoors"; + name = "Bridge Access Blast Doors"; + pixel_x = 6; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/command) +"lmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"lml" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lmt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Desk"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"lmu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lmD" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/crowbar, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/teleporter) +"lmL" = ( +/turf/closed/wall, +/area/engineering/engine_room/external) +"lmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lmX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lnd" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lne" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/turf_decal/arrows/white{ + color = "#800080"; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lnp" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"lnw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard) +"lny" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/main) +"lnB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"lnI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lnM" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall7"; + location = "hall6" + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"loc" = ( +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"lom" = ( +/obj/item/kirbyplants/random, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"loE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"loI" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rndlab1"; + name = "Research and Development Shutter" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"loK" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"loN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"loW" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"loX" = ( +/obj/structure/table/reinforced, +/obj/item/storage/fancy/donut_box{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/inspector, +/obj/item/inspector{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"loY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"lpc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"lpN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/medical/virology) +"lpV" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lpW" = ( +/obj/structure/closet/crate, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/effect/spawner/random/contraband/prison, +/obj/item/instrument/harmonica, +/obj/item/storage/pill_bottle/dice, +/obj/item/toy/cards/deck/tarot, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"lqq" = ( +/turf/open/floor/wood, +/area/service/library/abandoned) +"lqK" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"lqN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lqR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lqS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/training_toolbox, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lrc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"lrk" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/camera{ + c_tag = "Recreation - Center"; + dir = 4; + name = "recreation camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lrw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Break Room"; + req_access_txt = "39" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"lrZ" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"lsd" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lsG" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"lsL" = ( +/obj/machinery/camera{ + c_tag = "Hydroponics Backroom"; + dir = 1; + name = "service camera" + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lsT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"lsV" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lsY" = ( +/obj/structure/table/reinforced, +/obj/item/plant_analyzer, +/obj/item/plant_analyzer, +/obj/item/radio, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"lte" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"lti" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/mixer/flipped, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"ltm" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"ltx" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"ltH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"luf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"lun" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"luw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"luH" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Office" + }, +/obj/structure/bed/dogbed/lia, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"lvk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/commons/dorms) +"lvo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"lvG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lvY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"lwc" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"lwm" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lwu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"lwv" = ( +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lwB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lwI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"lwN" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/service/library) +"lwZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lxe" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/item/stamp/captain, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Captain's Desk"; + req_access_txt = "20" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"lxf" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/item/shovel/spade, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"lxk" = ( +/turf/open/floor/plasteel/dark, +/area/service/library) +"lxn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"lxr" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/photo_album/library, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"lxv" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"lxC" = ( +/obj/structure/chair/office, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"lxM" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"lxQ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"lya" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"lyd" = ( +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"lyp" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"lyA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lyE" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lyK" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"lyN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/structure/plasticflaps, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"lyS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"lyU" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_ordmix, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"lyV" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"lzb" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"lze" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/security/main) +"lzr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Shooting Range"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"lzx" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library) +"lzB" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"lzI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/maintenance/starboard/fore) +"lAe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lAg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lAo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lAw" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"lAD" = ( +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"lAJ" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lAK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"lAM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"lAQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"lAR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Telecomms Control Room"; + req_access_txt = "19; 61" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"lAU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lAV" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/dsquad, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"lBd" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lBf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"lBm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Center"; + dir = 1; + name = "dormitories camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"lBr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lBw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"lBH" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/requests_console/directional/south{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console" + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"lBN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"lBR" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"lBT" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/pods{ + pixel_x = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"lCh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"lCm" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lDh" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"lDm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lDw" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lEd" = ( +/obj/structure/table/wood/poker, +/obj/item/storage/fancy/cigarettes/dromedaryco{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/dromedaryco, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"lEl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"lEu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/storage) +"lEK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lEN" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"lEQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"lET" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"lEU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"lFd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"lFz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "teleporterhubshutters"; + name = "Teleporter Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"lFV" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/command/heads_quarters/hop) +"lGt" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lGy" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"lGO" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lHa" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/cola, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"lHx" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"lHI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 8; + name = "engineering camera" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"lHS" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"lHU" = ( +/obj/machinery/seed_extractor, +/obj/machinery/status_display/evac/directional/south, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"lHW" = ( +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"lIa" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/qm) +"lIc" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"lIi" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"lIk" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen/fourcolor, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"lIF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lIG" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/costume/geisha, +/obj/item/clothing/shoes/sandal, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"lIP" = ( +/obj/machinery/camera{ + c_tag = "Holodeck Control"; + name = "holodeck camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"lIU" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lJj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lJt" = ( +/obj/machinery/recharger, +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"lJI" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/service/chapel/main) +"lJZ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutters"; + name = "E.V.A. Storage Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lKe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"lKp" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"lKs" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lKV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lLl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"lLn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lLo" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"lLA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lLW" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"lLY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/secure/safe{ + pixel_x = -27; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"lLZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"lMl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lMm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"lMG" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southright, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"lMJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"lMM" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"lMO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"lNF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"lNK" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/entry) +"lNO" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/turf/open/floor/wood, +/area/service/library/abandoned) +"lNR" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lNS" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"lOa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"lOb" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/pen, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"lOi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lOj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"lOl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"lOA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"lOE" = ( +/obj/structure/mirror/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"lON" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"lOV" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"lPc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lPn" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"lPy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lPG" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lPY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lQb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"lQc" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"lQk" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lQC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"lQF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"lQJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"lQO" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 16 + }, +/obj/item/watertank, +/obj/item/grenade/chem_grenade/antiweed, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/east{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lQQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lQX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"lQY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/command/gateway) +"lRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"lRq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lRJ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"lRK" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"lRN" = ( +/turf/closed/wall/r_wall, +/area/command/meeting_room/council) +"lSu" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"lSv" = ( +/obj/item/shovel/spade, +/obj/item/crowbar, +/obj/item/cultivator, +/obj/structure/table/glass, +/obj/item/seeds/wheat{ + pixel_x = 6 + }, +/obj/item/seeds/potato, +/obj/item/seeds/pumpkin{ + pixel_x = -6 + }, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/grapes, +/obj/item/food/grown/tomato, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lSw" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"lSL" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"lSZ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lTf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lTi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"lTm" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"lTo" = ( +/obj/docking_port/stationary{ + dheight = 4; + dir = 4; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"lTu" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Shared Storage"; + dir = 1; + name = "engineering camera" + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"lTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lTK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"lTR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Technology Storage"; + req_access_txt = "23" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"lUe" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/security/prison) +"lUo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"lUD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"lUP" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"lUW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/trimline/blue/filled/line, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"lUX" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lUY" = ( +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"lVl" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/south, +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"lVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"lVD" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"lVM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lVN" = ( +/obj/machinery/door/airlock/research{ + name = "Research Testing Range"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"lVS" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plating, +/area/service/library/abandoned) +"lWc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lWS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"lWW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"lXe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/button/door/directional/north{ + id = "engdoor"; + name = "Engineering Cell Control"; + normaldoorcontrol = 1; + pixel_y = 36 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"lXf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"lXC" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lXF" = ( +/obj/machinery/light/directional/east, +/obj/machinery/computer/atmos_control/ordnancemix, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"lXG" = ( +/obj/structure/table/wood, +/obj/item/coin/antagtoken, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"lXL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"lXM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"lYa" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"lYb" = ( +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"lYc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/space, +/area/space/nearstation) +"lYg" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"lYo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"lYp" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/medical/storage) +"lYD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lYM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"lYQ" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"lYR" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter"; + dir = 8; + name = "engineering camera" + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lZd" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/engineering/supermatter) +"lZe" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/machinery/requests_console/directional/south{ + department = "Chapel"; + departmentType = 2; + name = "Chapel Requests Console" + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 1; + name = "chapel camera" + }, +/turf/open/floor/carpet, +/area/service/chapel/office) +"lZj" = ( +/obj/structure/disposalpipe/junction, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lZk" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/camera{ + c_tag = "Engineering - Power Monitoring"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"lZn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lZo" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lZt" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"lZv" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"lZC" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/assembly/infra, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"lZN" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/ai/directional/north, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/dark, +/area/command) +"maf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mat" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/service/library/abandoned) +"mau" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"max" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "6" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"maF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"maI" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"maO" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"maY" = ( +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"mbc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"mbo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"mbE" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall14"; + location = "hall13" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mbH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/dark, +/area/service/library) +"mbI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"mbS" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space) +"mbT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mbW" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Central Hallway - Security Hallway"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mcl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"mcn" = ( +/obj/machinery/blackbox_recorder, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"mcx" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/item/clothing/glasses/welding, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/science/lab) +"mcD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mcF" = ( +/obj/machinery/light/directional/north, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"mcZ" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/toy/crayon/spraycan{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/crayon/spraycan, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/chisel{ + pixel_y = 7 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"mda" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"mdd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"mdm" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/paper/pamphlet/gateway, +/obj/item/paper/pamphlet/gateway, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"mdn" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/engineering_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"mdC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"mdD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mdG" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"mdV" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/port/aft) +"mef" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 29 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"meA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"mfb" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mfC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mfP" = ( +/obj/machinery/vending/autodrobe, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"mfQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/xenobiology) +"mga" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"mgt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"mgF" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 5 + }, +/obj/item/toy/figure/clown, +/obj/item/clipboard, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/service/theater) +"mgQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"mgU" = ( +/obj/structure/closet/secure_closet/security, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"mgW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mgY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"mhh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mhj" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"mhv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"mhy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mhI" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west{ + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"mhQ" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"mhX" = ( +/obj/machinery/camera{ + c_tag = "Art Gallery"; + name = "library camera" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/wood, +/area/service/library) +"mif" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/lightreplacer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/service/janitor) +"mio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"mit" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mix" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"miV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mjA" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"mjD" = ( +/obj/machinery/door/window{ + dir = 8; + name = "Theater Stage" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"mjZ" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - n2o Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"mkl" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/layer_manifold/green/visible, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mkm" = ( +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"mkz" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS" + }, +/turf/closed/wall/r_wall, +/area/command/gateway) +"mkL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"mkO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"mkY" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mlc" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"mlg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"mlq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"mlu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"mlw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "brigflashdoor"; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mlx" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/primary/central/south) +"mlz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"mlC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mlD" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"mlE" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"mlQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"mme" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"mmo" = ( +/obj/structure/plaque/static_plaque/golden{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/security/main) +"mms" = ( +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"mmy" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"mmR" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"mnn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mnr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps/opaque, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Tool Storage" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mny" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/cargo, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mnC" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"mnM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"mnN" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/poppy, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"mnS" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/carpet, +/area/service/library/abandoned) +"mnX" = ( +/obj/structure/cable, +/obj/machinery/computer/rdconsole, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"mnY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mow" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"moD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"moJ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"moQ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/item/clothing/suit/toggle/lawyer, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/head/kitty, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/commons/dorms) +"moT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/cargo/warehouse) +"moY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mpu" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/highsecurity{ + name = "MiniSat Chamber"; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "aicoredoor"; + name = "AI Core Access" + }, +/obj/machinery/flasher/directional/west{ + id = "AI" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mpy" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/security/prison) +"mpA" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"mpK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"mpQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mpS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall2"; + location = "hall1" + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mqj" = ( +/obj/structure/chair/wood, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"mqu" = ( +/obj/machinery/smartfridge/organ, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"mqx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"mqy" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/light_switch/directional/east{ + pixel_x = 38 + }, +/obj/machinery/keycard_auth/directional/north{ + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/button/door/directional/east{ + id = "hosprivacy"; + name = "Privacy Control"; + pixel_y = 6; + req_access_txt = "58" + }, +/obj/machinery/button/door/directional/east{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_y = -6; + req_access_txt = "58" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mqA" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"mqC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mqO" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"mqR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"mrc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"mrl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mrr" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"mru" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"mrx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"mrC" = ( +/obj/structure/toilet/greyscale, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"mrD" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"mrI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"mrK" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"mrN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"mrY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"msh" = ( +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/command/teleporter) +"msG" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"msO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mtd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"mtf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"mtj" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mtm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"mtn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"mtp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mtv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mtH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mtO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mtX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"mue" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"mui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"muI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"muW" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"mve" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Security's Quarters"; + req_access_txt = "58" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mvi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mvj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"mvD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mvE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mvJ" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/carpet, +/area/service/library/abandoned) +"mvK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 5 + }, +/turf/open/space, +/area/space/nearstation) +"mvL" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mvM" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mwk" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"mwB" = ( +/obj/machinery/teleport/hub, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"mwI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mxb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"mxt" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"mxu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Transferring Control"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"mxv" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mxL" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"mxS" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"myk" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"myF" = ( +/obj/structure/dresser, +/turf/open/floor/carpet, +/area/commons/dorms) +"myM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"myP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"myU" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"myW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"mzf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "HoP Junction"; + sortType = 15 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"mzj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/library) +"mzs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mzv" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"mzB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"mzQ" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"mzR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"mzX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"mAq" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mAt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"mAC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mAP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"mBg" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Magboot Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/rack, +/obj/item/clothing/shoes/magboots{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"mBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"mBi" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"mBn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mBp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mBt" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"mBA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"mBF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mBW" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mCn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"mCz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"mCA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mCW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mCX" = ( +/obj/structure/closet/secure_closet/injection, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"mCY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/three, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mDk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mDs" = ( +/obj/structure/table, +/obj/item/pai_card, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"mDy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mDE" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mDX" = ( +/obj/structure/chair/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"mEh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"mFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"mFb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/virology) +"mFe" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mFg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research) +"mFj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"mFt" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/main) +"mFB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"mFE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"mGk" = ( +/obj/machinery/power/emitter{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"mHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mHx" = ( +/obj/structure/bookcase, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/wood, +/area/service/library/abandoned) +"mHH" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_dock) +"mHJ" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"mHW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mHY" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"mIc" = ( +/turf/open/space/basic, +/area/space/nearstation) +"mIj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mIm" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"mIv" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt3"; + name = "Cell 5" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permashut5" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"mIK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"mIW" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"mIX" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"mJf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mJl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"mJr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"mJw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mJE" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"mJI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"mJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"mKe" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"mKf" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"mKn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"mKq" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"mKr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"mKA" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/command/teleporter) +"mKM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/library) +"mKV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"mLh" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mLk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"mLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/spawner/random/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"mLw" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage_shared) +"mLx" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"mLO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"mLS" = ( +/obj/structure/table, +/obj/item/storage/secure/safe/directional/north, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/button/door/directional/east{ + id = "commissaryshutters"; + name = "Commissary Shutters Control" + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"mMg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"mMy" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"mMF" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mMH" = ( +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/captain/private) +"mMQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"mMT" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"mNh" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/service/library) +"mNl" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Power Tools"; + dir = 1; + name = "engineering camera" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"mNo" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mNs" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/restrooms) +"mNP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"mNQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mNS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"mNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"mNX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"mNY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"mOg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"mOB" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mOE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"mOI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"mPp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"mPw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mPB" = ( +/obj/machinery/computer/communications, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"mPH" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mPM" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"mPZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"mQn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mQp" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"mQK" = ( +/obj/machinery/door/airlock{ + name = "Jury"; + req_access_txt = "42" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"mQN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/lawoffice) +"mQO" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet, +/area/commons/dorms) +"mQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mQW" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"mQX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"mRh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"mRw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"mRz" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"mRF" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mRI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"mRQ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mSa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Council Chambers"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"mSy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mSA" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/aisat) +"mSD" = ( +/obj/machinery/pdapainter, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"mST" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"mSW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"mTb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"mTf" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"mTl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"mTP" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/chair/comfy{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"mTZ" = ( +/obj/item/flashlight{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"mUD" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mVa" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mVf" = ( +/obj/structure/bed, +/obj/item/bedsheet/hos, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Quarters" + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"mVk" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"mVs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"mVv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + id_tag = "Toilet2"; + name = "Toilet Unit 2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"mVC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "justicechamber"; + name = "Justice Chamber Blast door" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution/education) +"mVI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"mVK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"mVN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"mVY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mWc" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"mWd" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "xeno3"; + name = "Containment Control"; + req_access_txt = "55" + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"mWu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"mWz" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"mWI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"mWO" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay Requests Console" + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"mWW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"mXc" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/multitool, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"mXI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mXM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mXX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"mYb" = ( +/obj/item/clothing/gloves/color/black, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/meson/engine/tray, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mYk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"mYA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"mZd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"mZk" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"mZl" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Security Maintenance"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"mZs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"mZD" = ( +/turf/closed/wall, +/area/engineering/atmos) +"mZW" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nad" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/locker) +"naj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"naq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"nav" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"naF" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore"; + dir = 1; + name = "hallway camera" + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"naG" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"naO" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"naR" = ( +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"nbc" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"nbq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nbs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"nbt" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"nbv" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/food/chococoin{ + pixel_y = 6 + }, +/obj/item/food/chococoin{ + pixel_x = 6 + }, +/obj/item/food/chococoin{ + pixel_x = -6 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nbw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/structure/displaycase/forsale/kitchen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nbF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nbH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"nbI" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nbO" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"nbQ" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"nbX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitories" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nca" = ( +/obj/machinery/disposal/bin, +/obj/machinery/requests_console/directional/north{ + department = "Tool Storage"; + name = "Tool Storage Requests Console" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"nce" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall10"; + location = "hall9" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ncp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ncv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"ncE" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/brig) +"ncF" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ncM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"ncP" = ( +/obj/machinery/camera{ + c_tag = "Genetics Lab"; + dir = 1; + name = "genetics lab camera" + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"ncV" = ( +/turf/closed/wall, +/area/service/bar/atrium) +"ncY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/mug/tea{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ndg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"ndi" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ndr" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ndz" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"ndE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"ndF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"ndO" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"ndP" = ( +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ndS" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ndT" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ndV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ndW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"neh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno8"; + name = "Creature Cell #8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"ner" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"neu" = ( +/obj/structure/dresser, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"nev" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"neD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"nfl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nfp" = ( +/obj/machinery/meter, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nfs" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"nfv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"nfE" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nfI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"nfS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Pure to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nfX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"nfZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ngg" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/razor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ngz" = ( +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ngC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Miscellaneous Storage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"ngT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"nhf" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/gloves/color/fyellow, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"nhi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/random{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/vacant_room/commissary) +"nhj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nhp" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"nhx" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"nib" = ( +/obj/structure/table/wood, +/obj/item/toy/plush/carpplushie{ + name = "Nemo" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nih" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nik" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 26 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nil" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"niz" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/atmos{ + name = "Port Bow Solar Access"; + req_one_access_txt = "24;10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"niL" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"niR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"niW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nja" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"njj" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"njv" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"njy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"njR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nkb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nkd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"nkf" = ( +/obj/machinery/photocopier, +/obj/machinery/light/directional/north, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security's Requests Console" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"nkz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"nkB" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"nkD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"nkL" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"nkU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"nkY" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"nlj" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/command/teleporter) +"nlw" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/purple, +/obj/item/radio/intercom/directional/east, +/obj/machinery/newscaster/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"nlA" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nlB" = ( +/turf/closed/wall, +/area/service/chapel/main) +"nlJ" = ( +/obj/machinery/camera{ + c_tag = "Virology - Hallway"; + dir = 8; + name = "virology camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"nlX" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"nme" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"nmC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nmO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nmR" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nnf" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/port/aft) +"nnn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nnp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"nny" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/fireaxecabinet/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nof" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/computer/warrant{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"noj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"noE" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"noK" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"noM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"noY" = ( +/obj/machinery/computer/med_data/laptop, +/obj/structure/table/glass, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"npf" = ( +/turf/closed/wall, +/area/engineering/storage_shared) +"npH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"npO" = ( +/obj/machinery/camera/motion{ + c_tag = "E.V.A. Storage"; + dir = 8; + name = "motion-sensitive command camera" + }, +/obj/machinery/requests_console/directional/east{ + department = "EVA"; + name = "EVA Requests Console" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"npX" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"npZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nqe" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"nqg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"nqQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"nqS" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nqU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"nqX" = ( +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"nre" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Bridge Starboard"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nrg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"nru" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"nry" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Science - Waiting Room"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/item/gps, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"nsh" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nsj" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/electronics/apc, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"nsp" = ( +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/security/prison/safe) +"nsF" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nsK" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/quartermaster, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nsR" = ( +/obj/structure/table, +/obj/item/camera, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"nsS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"ntf" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Fore Port"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ntg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ntj" = ( +/obj/structure/sign/directions/science, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = -8 + }, +/turf/closed/wall, +/area/commons/storage/primary) +"ntl" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Fore"; + dir = 1; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"ntm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nty" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"ntC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ntH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"ntJ" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ntL" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ntS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ntV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nuh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nuA" = ( +/obj/structure/table/wood, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"nuU" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nuW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nvf" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/lawyer, +/turf/open/floor/wood, +/area/lawoffice) +"nvt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"nvw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"nvW" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"nwa" = ( +/turf/closed/wall, +/area/command/heads_quarters/rd) +"nwi" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/starboard/aft) +"nwo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Theater"; + req_access_txt = "45" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"nwt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nwD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nwG" = ( +/obj/item/beacon, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"nwK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nwU" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"nwW" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"nxf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel, +/area/security/main) +"nxi" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nxr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nxt" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"nxv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nxy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"nxA" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"nxG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"nxJ" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"nyA" = ( +/obj/structure/table/wood, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 7 + }, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"nyB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nyC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"nyF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"nyI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nyQ" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"nyV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"nzc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"nzf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nzh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"nzn" = ( +/obj/machinery/light/directional/west, +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library) +"nzq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"nzz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nzN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/departments/court{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nzX" = ( +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/service/library) +"nAl" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"nAo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"nAG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nAL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nAV" = ( +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"nAZ" = ( +/obj/structure/table/wood, +/obj/item/food/baguette, +/obj/item/toy/crayon/spraycan/mimecan{ + charges = 5 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"nBn" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library/abandoned) +"nBD" = ( +/obj/machinery/icecream_vat, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nBQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/theater/abandoned) +"nBR" = ( +/obj/structure/chair/stool, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"nCf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"nCg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"nCn" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/engineering/storage/tech) +"nCp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nCA" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"nCC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nCJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nCS" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"nDa" = ( +/obj/effect/landmark/start/clown, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"nDe" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"nDl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nDr" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library) +"nDx" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"nDy" = ( +/obj/structure/table, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nDA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"nDB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"nDC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nDF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivacy"; + name = "Chief's Privacy Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"nDH" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"nDJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nDO" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"nDV" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"nDW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nDZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"nEf" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/papersack/smiley, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"nEh" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"nEr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nEv" = ( +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/service/library) +"nEK" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"nEL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nEX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nFf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/white, +/area/science/research) +"nFm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"nFn" = ( +/obj/machinery/gulag_teleporter, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"nFv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/research) +"nFE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/color_adapter{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nFI" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/ambrosia_vulgaris{ + pixel_x = -30 + }, +/obj/machinery/light/directional/west, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"nFS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nGn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nGs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"nGu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"nGy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"nGD" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + name = "service camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nGP" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"nGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"nGZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nHa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/highsecurity{ + name = "Emergency Access"; + req_one_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nHf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"nHt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"nHT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/seeds/lime{ + pixel_x = 6 + }, +/obj/item/seeds/watermelon, +/obj/item/seeds/grape{ + pixel_x = -6 + }, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/banana, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nHZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/table/greyscale, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"nIa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"nIb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/hostile/lizard/wags_his_tail, +/turf/open/floor/plating, +/area/service/janitor) +"nIj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"nIl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nIm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"nIx" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nIF" = ( +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Recreation - Fore"; + name = "recreation camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nIK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nIQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"nIT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"nIV" = ( +/turf/closed/wall, +/area/service/janitor) +"nJb" = ( +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"nJc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/engineering/storage_shared) +"nJh" = ( +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"nJo" = ( +/turf/closed/wall, +/area/service/library) +"nJq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"nJA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nKj" = ( +/obj/machinery/camera{ + c_tag = "Science - Center"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"nKm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nKv" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Cell 3"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"nKw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/lab) +"nKE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"nKF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nKI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nKJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"nKN" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stock_parts/cell/high, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"nLa" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"nLn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"nLq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/item/reagent_containers/hypospray/medipen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nLs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"nLQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"nLZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nMv" = ( +/obj/structure/frame/computer, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"nMS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nNm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nNn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nNw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"nNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nND" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/break_room) +"nNI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"nNO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nNX" = ( +/obj/machinery/door/window/northright, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"nOc" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"nOf" = ( +/obj/structure/table/glass, +/obj/machinery/camera{ + c_tag = "Medbay - Treatment Center"; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/stack/medical/suture/medicated, +/obj/item/stack/medical/suture/medicated, +/obj/item/stack/medical/mesh/advanced, +/obj/item/stack/medical/mesh/advanced, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"nOg" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space) +"nOA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nOD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"nOH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"nOL" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"nOS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"nOX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"nPk" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/range) +"nPB" = ( +/turf/closed/wall, +/area/service/chapel/office) +"nPC" = ( +/obj/machinery/light_switch/directional/south, +/obj/machinery/camera{ + c_tag = "Bridge - Teleporter"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"nPG" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/flasher/directional/north{ + id = "AI"; + pixel_x = -26 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"nPM" = ( +/turf/closed/wall, +/area/service/abandoned_gambling_den) +"nPY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"nQm" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"nQv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"nQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"nQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/four, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"nRq" = ( +/obj/machinery/washing_machine, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/dorms) +"nRx" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/qm, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"nRI" = ( +/obj/item/exodrone, +/obj/machinery/exodrone_launcher, +/obj/effect/turf_decal/box, +/obj/effect/decal/cleanable/oil/slippery, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nRM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nRT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"nRW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"nSi" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/button/door/directional/west{ + id = "Dorm1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"nSn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"nSp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/dorms) +"nSr" = ( +/obj/structure/rack, +/obj/item/stack/cable_coil/five, +/obj/item/wrench, +/obj/item/screwdriver, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/east, +/obj/machinery/button/door/directional/south{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"nSt" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nSD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nSJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nTb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nTc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nTg" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"nTq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"nTx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"nTB" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"nTI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"nTL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nTO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"nTT" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/turf/closed/wall, +/area/hallway/primary/central/south) +"nTX" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Supermatter Emitters"; + name = "engineering camera" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"nUb" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"nUd" = ( +/obj/machinery/light/directional/west, +/obj/structure/reflector/single, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"nUg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"nUj" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"nUr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"nUv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nUx" = ( +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"nUB" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nUD" = ( +/obj/structure/table, +/obj/item/stack/sheet/cloth/ten, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nUH" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"nUI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"nUZ" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/surgery) +"nVc" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"nVk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nVl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/library/abandoned) +"nVB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"nVI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"nVW" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"nVY" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"nWg" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"nWl" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"nWu" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nWI" = ( +/obj/structure/chair/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"nXp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"nXv" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"nXy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"nXD" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/firealarm/directional/south{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nXJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall, +/area/engineering/break_room) +"nYb" = ( +/obj/machinery/hydroponics/soil, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"nYd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"nYj" = ( +/turf/open/floor/wood, +/area/command/meeting_room/council) +"nYk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"nYU" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"nYZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"nZc" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"nZf" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"nZh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"nZi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"nZn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"nZv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nZB" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"nZN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"nZO" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/chapel{ + pixel_y = -27 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"oak" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oan" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"oas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"oat" = ( +/turf/open/floor/plating, +/area/cargo/warehouse) +"oay" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"oaQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"obg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/theater) +"obh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"obk" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"obm" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"obn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"obt" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_x = 27 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"obu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"obx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"obG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"obY" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ocb" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/port) +"ocn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Auxiliary Tool Storage"; + req_access_txt = "12" + }, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ocp" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"ocu" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ocw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ocA" = ( +/obj/machinery/door/airlock/external{ + name = "MiniSat Exterior Access"; + req_one_access_txt = "13;32" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"ocC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ocD" = ( +/obj/machinery/photocopier, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"ocG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Psychology Maintenance"; + req_access_txt = "70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ocQ" = ( +/obj/item/storage/pod{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ocW" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"odf" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"odp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"ods" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"odz" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"odF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"odR" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"odU" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/button/door/directional/north{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"oej" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"oel" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"oer" = ( +/obj/machinery/door/poddoor/preopen{ + id = "rdxeno"; + name = "Xenobiology Containment Door" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"oeE" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/machinery/camera{ + c_tag = "Vacant Office"; + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"oft" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/service/hydroponics) +"ofJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ofO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"ofT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ogi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"ogs" = ( +/obj/item/kirbyplants/random, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ogt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ogz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ogB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ogE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ogH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ogK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"ogT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"oha" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"ohb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ohn" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ohq" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"ohy" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/cultivator, +/obj/item/hatchet, +/obj/item/wirecutters, +/obj/item/shovel/spade, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ohC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ohN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"ohQ" = ( +/turf/open/floor/plasteel, +/area/security/main) +"ohW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 5 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"oid" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"oiq" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"oiC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm6"; + name = "Cabin 6" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"oiZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/space, +/area/space/nearstation) +"ojg" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"ojk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"ojo" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ojz" = ( +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"ojF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ojI" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/cargo/qm) +"ojK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/button/door/directional/west{ + id = "Dorm5"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"ojO" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"ojS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ojT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"okc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south{ + pixel_x = -32 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -20 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"okj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"okm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"okn" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"oks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"okB" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"okK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"okL" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"okN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"okV" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"okW" = ( +/obj/effect/decal/cleanable/blood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/security/prison/safe) +"ole" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"olf" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oli" = ( +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"olj" = ( +/obj/structure/table, +/obj/item/plant_analyzer, +/obj/item/hatchet, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"olk" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"olC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"olF" = ( +/obj/structure/table, +/obj/item/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"olH" = ( +/obj/machinery/light/directional/south, +/obj/machinery/processor, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"olN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/item/trash/sosjerky, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"olS" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"olW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"olY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"omp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"omx" = ( +/obj/machinery/door/airlock/mining{ + name = "Drone Bay"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"omF" = ( +/obj/machinery/food_cart, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"omM" = ( +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"onc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"oni" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"onk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"onI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/off/dark/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"onJ" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"onR" = ( +/obj/item/kirbyplants/random, +/obj/machinery/door_timer{ + id = "brig1"; + name = "Cell 1"; + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Security - Brig Center"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"onU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oof" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"oog" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ooj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ooH" = ( +/obj/machinery/camera{ + c_tag = "Engineering Hallway - Starboard"; + name = "hallway camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"ooJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ooT" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"opg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"opi" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"opn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"opA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"opE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"opF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"opX" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"oqm" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/service/library/abandoned) +"oqq" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oqI" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"oqN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"orw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"orG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"orN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"orZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"osc" = ( +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"osi" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"osj" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"osF" = ( +/obj/machinery/keycard_auth/directional/south{ + pixel_y = -38 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + pixel_x = -6; + req_access_txt = "19" + }, +/obj/machinery/button/door/directional/south{ + id = "evastorage"; + name = "E.V.A. Shutters"; + pixel_x = 6; + req_access_txt = "19" + }, +/turf/open/floor/carpet, +/area/command) +"osN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"osV" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ota" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space, +/area/solars/port/fore) +"ote" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"oth" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"otq" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"otC" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"otJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"otK" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"otP" = ( +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"oub" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"oum" = ( +/obj/effect/landmark/start/exploration, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"ouA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ouD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"ouO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"ouP" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet2"; + name = "Toilet Unit 2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"ouR" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ovo" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ovA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/main) +"ovE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"ovG" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/structure/transit_tube/station/reverse/flipped, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"ovU" = ( +/turf/closed/wall, +/area/medical/paramedic) +"owj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"owk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"owl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ows" = ( +/obj/structure/table/wood, +/obj/item/poster/random_contraband{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/poster/random_contraband{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/poster/random_contraband, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"owx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"owE" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"owI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"owY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"oxd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Bar Delivery"; + req_access_txt = "25" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"oxk" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/vending/boozeomat/all_access, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"oxn" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"oxD" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Bar"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oxI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"oxS" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"oyd" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/computer_disk/atmos, +/obj/item/computer_disk/atmos, +/obj/item/computer_disk/atmos, +/obj/item/stamp/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"oyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"oyj" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"oyx" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"ozg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"ozp" = ( +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/crowbar, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"ozq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ozv" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"ozy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ozH" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_guide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"ozI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/science/research) +"ozO" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"ozQ" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "Library Junction"; + sortType = 16 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"ozS" = ( +/obj/machinery/door/airlock{ + id_tag = "Toilet3"; + name = "Toilet Unit" + }, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"ozU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"oAe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oAo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"oAw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oAx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/hallway/primary/aft) +"oAN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"oAS" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"oAX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_mission) +"oBn" = ( +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"oBs" = ( +/turf/closed/wall, +/area/cargo/qm) +"oBt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"oBu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oBv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"oBO" = ( +/obj/structure/chair/stool/bar, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"oBU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oCe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"oCh" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"oCs" = ( +/obj/structure/bed, +/obj/item/bedsheet/hop, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"oCQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"oCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"oCU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"oCX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/main) +"oCZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oDi" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"oDC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oDH" = ( +/obj/structure/rack, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/book/manual/wiki/engineering_guide, +/obj/item/book/manual/wiki/engineering_construction{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oEr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/construction) +"oEu" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oEw" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"oEH" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/airalarm, +/obj/item/electronics/apc, +/obj/machinery/camera{ + c_tag = "Technology Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"oEL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oEW" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"oFd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"oFe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"oFo" = ( +/obj/item/chair/stool/bar{ + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"oFE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"oFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oFV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Delivery Office"; + dir = 1; + name = "cargo camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"oFY" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"oGa" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"oGt" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"oGA" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"oGB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"oGK" = ( +/obj/machinery/light/directional/south, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"oGL" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Kitchen" + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"oGN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"oGQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oGR" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/yellow, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"oHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oHg" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"oHl" = ( +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"oHv" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/engineering/storage) +"oHx" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - HFR Main Room"; + name = "atmospherics camera" + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oHy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oHB" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oHH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 4 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"oHK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oIf" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"oIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"oIl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"oIv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"oIE" = ( +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"oIJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"oIN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"oIQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oIR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oIS" = ( +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"oIT" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/meeting_room/council) +"oIX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"oJh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oJi" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"oJq" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"oJz" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/glass/bowl, +/obj/effect/turf_decal/bot, +/obj/item/food/dough, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/plasteel, +/area/service/kitchen) +"oJG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"oJI" = ( +/obj/structure/window/reinforced, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore"; + dir = 1; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"oJS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"oJU" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oKg" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"oKw" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/item/pai_card, +/turf/open/floor/wood, +/area/commons/dorms) +"oKG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"oKN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"oKZ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"oLa" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"oLd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"oLg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"oLh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"oLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"oLo" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/electronics/airlock, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"oLs" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/locker) +"oLy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/insectguts, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"oLE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"oLJ" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"oMa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"oMh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"oMw" = ( +/obj/docking_port/stationary/public_mining_dock{ + dir = 4 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"oMA" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"oMH" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"oMW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oNa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"oNd" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"oNe" = ( +/obj/effect/turf_decal/arrows/white, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oNl" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oNH" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"oNM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oNR" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"oNS" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oOe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"oOl" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"oOD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"oOH" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmospherics Requests Console" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"oOU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oPu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"oPv" = ( +/obj/item/kirbyplants/random, +/obj/machinery/door_timer{ + id = "brig2"; + name = "Cell 2"; + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"oPz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"oPC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"oPF" = ( +/obj/structure/table/reinforced, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oPH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"oPN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/sorting) +"oQf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"oQn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"oQt" = ( +/obj/structure/lattice, +/turf/open/space, +/area/engineering/atmos) +"oQz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 9 + }, +/turf/open/space, +/area/space/nearstation) +"oQC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oQN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oQR" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"oRe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"oRk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oRn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"oRo" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"oRC" = ( +/obj/structure/table, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oRG" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"oRI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"oSc" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oSd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"oSi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"oSl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"oSm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oSn" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/teleporter) +"oSM" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oSQ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"oTb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"oTk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"oTt" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Permabrig - Fitness"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"oTF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"oTT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"oUf" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transitlock"; + name = "Transit Tube Lockdown Door" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/storage_shared) +"oUq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cooling to Filters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"oUA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics) +"oUE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"oUW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"oUZ" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/service/janitor) +"oVk" = ( +/obj/structure/sign/warning/nosmoking/circle{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"oVm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"oVs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oVN" = ( +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"oVQ" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/syndicate{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"oWe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"oWj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"oWK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"oWN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"oWP" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oWX" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"oWZ" = ( +/obj/machinery/light_switch/directional/south, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/wrench, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"oXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"oXn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oXw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Security Hallway - Fore"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"oXG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"oXH" = ( +/obj/machinery/light/directional/south, +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Library - Aft"; + dir = 1; + name = "library camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/wood, +/area/service/library) +"oXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oXW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"oXX" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"oYb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"oYc" = ( +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"oYf" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/fifty, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/engineering/storage) +"oYv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"oYy" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/cargo/office) +"oYB" = ( +/obj/machinery/airalarm/directional/south, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/chococoin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"oYG" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"oYI" = ( +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"oYK" = ( +/obj/machinery/door/airlock{ + name = "Auxiliary Office" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/vacant_room/office) +"oYL" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"oYU" = ( +/obj/structure/table, +/obj/item/shovel/spade, +/obj/item/reagent_containers/glass/bottle/nutrient/rh{ + pixel_x = 5 + }, +/obj/item/reagent_containers/glass/bottle/nutrient/ez{ + pixel_x = -5 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"oZa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"oZo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"oZO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"oZT" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"oZW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oZY" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"pal" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"paw" = ( +/obj/machinery/door/airlock/security{ + name = "Isolation Cell"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/security/prison) +"paR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"pbd" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"pbi" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pbj" = ( +/obj/structure/table/wood, +/obj/item/staff/broom, +/obj/item/clothing/head/witchwig, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = -26 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"pbl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"pbn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + name = "Cargo Office Delivery"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"pbu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pbx" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"pbC" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"pbM" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pcN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/wood, +/area/lawoffice) +"pcP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"pcV" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/checker, +/area/engineering/engine_room/external) +"pdo" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pdr" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/medical, +/obj/structure/sign/directions/security{ + pixel_y = 8 + }, +/turf/closed/wall, +/area/service/library) +"pdv" = ( +/obj/structure/bed, +/obj/item/bedsheet/ce, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/ce) +"pdK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ped" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/table/reinforced, +/obj/machinery/requests_console/directional/north{ + department = "Robotics"; + departmentType = 2; + name = "Robotics Requests Console"; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"pek" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pel" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"peo" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"peu" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"peM" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plating, +/area/maintenance/department/electrical) +"peT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"peY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"pfb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"pff" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/turf/open/floor/plating, +/area/security/prison) +"pft" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel, +/area/security/brig) +"pfD" = ( +/obj/structure/noticeboard/directional/south{ + name = "memorial board" + }, +/obj/machinery/holopad, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Chapel - Aft"; + dir = 1; + name = "chapel camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"pfI" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pfQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"pfR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitory Hallway"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pfY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"pgz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"pgK" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pgZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pho" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"phw" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plasteel/dark, +/area/service/library) +"phx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"phH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"phR" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/airlock_painter, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"pij" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"pir" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"piZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pje" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"pjK" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"pjU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"pkx" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pkB" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"pkM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"pkQ" = ( +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"pkT" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pkY" = ( +/obj/structure/sign/poster/official/help_others{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"plf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"plg" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"plo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"plq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Recreational Area" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"plu" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutters"; + name = "Vacant Commissary Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"plD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"plN" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"plV" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"plY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"pmb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pmi" = ( +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"pms" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pmI" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/aisat) +"pmL" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/space) +"pmQ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"pmV" = ( +/obj/structure/closet/crate/trashcart/laundry, +/obj/effect/spawner/random/contraband/prison, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pnj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"pnk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Cargo Maintenance"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pny" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"pnH" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/trimline/yellow/filled/corner, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pnL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pnR" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"pnS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"pnW" = ( +/obj/machinery/computer/med_data, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"poe" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"poj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pok" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"poX" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"ppn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/pharmacy) +"ppo" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 3 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -3 + }, +/obj/item/wrench, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ppt" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ppU" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"pqa" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pqg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/engineering/storage_shared) +"pqs" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pqt" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"prq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"prD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/lawoffice) +"prF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"prK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"prO" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"prP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"prZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/spawner/random/medical/memeorgans, +/turf/open/floor/plating, +/area/service/library/abandoned) +"psw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"pta" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"ptk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"ptv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ptA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"ptD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"ptG" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/oven{ + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"ptO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"ptS" = ( +/obj/machinery/computer/prisoner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"pun" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"puA" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"puL" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"puN" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"pvd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"pvg" = ( +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/port/fore) +"pvh" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"pvo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pvA" = ( +/obj/structure/sign/directions/command{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/command/gateway) +"pvW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"pwm" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pwB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison) +"pwP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pwR" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pwX" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"pwZ" = ( +/turf/closed/wall, +/area/service/theater) +"pxc" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/fore) +"pxd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"pxg" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"pxk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"pxq" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"pxA" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/cmo, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"pxF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"pxG" = ( +/turf/closed/wall, +/area/medical/pharmacy) +"pxP" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"pxU" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"pyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"pyO" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"pza" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"pzf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pzg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/space) +"pzj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"pzk" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/service/library) +"pzl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"pzs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"pzz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"pzC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"pzM" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"pAm" = ( +/obj/structure/filingcabinet, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"pAs" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"pAC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/service/library) +"pAG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"pAJ" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"pAO" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"pBz" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"pBK" = ( +/obj/machinery/flasher/directional/north{ + id = "AI" + }, +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"pBT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pBU" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"pCe" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/office) +"pCj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"pCn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"pCr" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/mining_voucher, +/turf/open/floor/plasteel/dark, +/area/command) +"pCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"pCG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"pCQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/space/basic, +/area/space/nearstation) +"pDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"pDj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"pDr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pDs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"pDA" = ( +/turf/closed/wall, +/area/cargo/miningoffice) +"pDG" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "CO2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pDT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pDW" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pDX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pEs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"pEH" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"pES" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"pEZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"pFe" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pFk" = ( +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"pFl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"pFL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pFR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pGb" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/rd, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"pGi" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/radiation{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pGB" = ( +/obj/structure/bed/dogbed/renault, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/pet/fox/renault, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"pGD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"pGM" = ( +/obj/structure/window{ + dir = 8 + }, +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = null + }, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/ripped{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"pGU" = ( +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/science/research) +"pHb" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pHc" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet, +/area/service/chapel/office) +"pHg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"pHy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pHV" = ( +/obj/structure/table/glass, +/obj/item/folder/yellow, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"pHW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pHZ" = ( +/obj/machinery/door/airlock/virology{ + name = "Virology Cabin"; + req_access_txt = "39" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"pIj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"pIy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pIG" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"pIM" = ( +/turf/open/floor/plating, +/area/service/theater/abandoned) +"pIO" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/cargo/qm) +"pIR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"pIZ" = ( +/turf/closed/wall/r_wall, +/area/engineering/transit_tube) +"pJb" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/security/prison) +"pJd" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"pJu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pJD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"pJJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space, +/area/space/nearstation) +"pJR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"pJU" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"pJV" = ( +/obj/item/storage/pod{ + pixel_x = 32 + }, +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"pKe" = ( +/obj/structure/table/wood, +/obj/item/instrument/guitar, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"pKK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pKR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"pKW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"pLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"pLf" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"pLr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"pLD" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/camera{ + c_tag = "Atmospherics - Desk"; + dir = 8; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pLZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"pMb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/qm) +"pMc" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pMn" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"pMz" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"pMB" = ( +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"pMO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"pNm" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"pNu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pNB" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plating, +/area/maintenance/port) +"pNE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"pNJ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/engineering/atmos) +"pNL" = ( +/obj/machinery/light/directional/west, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pNO" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/captain, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pOb" = ( +/obj/structure/table/glass, +/obj/machinery/light/directional/east, +/obj/item/stack/package_wrap, +/obj/item/book/manual/hydroponics_pod_people, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pOd" = ( +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/button/door/directional/south{ + id = "custodialshutters"; + name = "Custodial Shutters"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"pOh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft Starboard"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pOl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"pOm" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"pOw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"pOI" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pOJ" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/item/storage/backpack/satchel/explorer, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"pPr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 8 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"pPs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"pPZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"pQf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pQg" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/ce) +"pQj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"pQq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"pQQ" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"pQR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"pQV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pRa" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"pRb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen Coldroom"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/kitchen) +"pRf" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pRt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 4; + pixel_x = -11 + }, +/obj/structure/mirror/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/morgue) +"pRv" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"pRW" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"pRX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"pSd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"pSs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"pSt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"pSE" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"pSK" = ( +/obj/structure/table/reinforced, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"pSM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"pSX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"pTc" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/whiskey, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"pTl" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"pTo" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"pUe" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"pUl" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pUp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"pUx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage"; + req_access_txt = "24" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pUA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pUO" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pUQ" = ( +/obj/structure/cable, +/obj/structure/sign/departments/psychology{ + pixel_x = 32 + }, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"pUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"pUT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"pUY" = ( +/obj/structure/kitchenspike, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/west, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/service/kitchen) +"pVf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/space, +/area/engineering/atmos) +"pVn" = ( +/obj/machinery/vending/games, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"pVq" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"pVu" = ( +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"pVx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pVH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"pVS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"pWb" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"pWf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/storage/box/bodybags, +/obj/effect/spawner/random/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"pWi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"pWn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pWr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"pWC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pWT" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"pWU" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"pWW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"pXd" = ( +/obj/structure/filingcabinet/security, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"pXj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"pXL" = ( +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"pYc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "12;47" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"pYf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"pYj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"pYw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall1"; + location = "hall15" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"pYz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"pYK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pYM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"pZc" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pZn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"pZp" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"pZt" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"pZu" = ( +/turf/closed/wall, +/area/commons/toilet/restrooms) +"pZv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"pZy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Quarters"; + req_access_txt = "56" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"pZH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"pZY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qaa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qak" = ( +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Bridge Port"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"qal" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qaq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"qat" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/departments/botany{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qaI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"qaJ" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Technology Storage - Secure"; + dir = 8; + name = "engineering camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"qaK" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/disposal) +"qaL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"qaM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Mix" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qaR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"qaW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"qba" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"qbv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "Toilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"qbV" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"qbZ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qcg" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"qcr" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/north, +/obj/item/clipboard, +/obj/item/toy/figure/janitor, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qcZ" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"qdh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"qdq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"qdu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"qdH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"qdJ" = ( +/obj/machinery/nanite_programmer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"qdO" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qdQ" = ( +/obj/machinery/shower{ + pixel_y = 16 + }, +/obj/effect/turf_decal/trimline/blue/end, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"qes" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"qew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qfd" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"qfn" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"qfq" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft"; + dir = 1; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"qfr" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/storage/secure/briefcase, +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/vending/wallmed/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"qfw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qfA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"qfL" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"qfP" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qfT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qgk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"qgC" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"qgI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qhc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"qhd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"qhm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qhn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/chef_order{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"qhD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"qhE" = ( +/obj/structure/weightmachine/stacklifter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qhK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qhN" = ( +/obj/machinery/door/window/southleft, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"qhQ" = ( +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qiu" = ( +/obj/machinery/camera{ + c_tag = "Security - Gear Room" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/security/brig) +"qiG" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"qiJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"qiW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"qjc" = ( +/obj/structure/table, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -8; + pixel_y = 17 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -10 + }, +/obj/item/reagent_containers/glass/bottle/formaldehyde{ + pixel_x = -1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"qjm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"qjn" = ( +/turf/open/floor/carpet, +/area/service/chapel/office) +"qjo" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qjp" = ( +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/machinery/door/airlock{ + id_tag = "commissarydoor"; + name = "Commissary" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"qjs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Warden's Office"; + req_access_txt = "3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"qju" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qjG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qjM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"qjN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qkc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qkr" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"qkD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/preopen{ + id = "hopblast"; + name = "HoP Blast door" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"qkG" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qkN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qkQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library) +"qle" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"qll" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qlx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "Cell 5" + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"qlz" = ( +/obj/machinery/light/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/sign/warning/bodysposal{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qlP" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Bar" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"qlW" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qmP" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"qnd" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qnf" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qnr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qnx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"qnF" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/disks{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"qnO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"qnQ" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"qnU" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/sign/poster/official/random{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"qnX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"qob" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"qoe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"qoh" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/head/kitty, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"qos" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"qoK" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"qoM" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/three, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qoX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qpc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qpf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qpo" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qpq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qpB" = ( +/obj/structure/table, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qpC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"qpF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"qqf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qqj" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"qqB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/chapel/main) +"qrd" = ( +/obj/machinery/airalarm/directional/north, +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qrf" = ( +/obj/structure/table/optable, +/obj/machinery/button/door/directional/east{ + id = "surgeryb"; + name = "Privacy Shutters Control" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"qrg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/soda_cans/thirteenloko, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qrt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"qrv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"qrD" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qrM" = ( +/turf/closed/wall, +/area/command/teleporter) +"qrO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qrQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/griddle, +/turf/open/floor/plasteel, +/area/service/kitchen) +"qrR" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"qrS" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/pai_card, +/turf/open/floor/carpet, +/area/service/library/abandoned) +"qsh" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/tcomms_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"qsi" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/science/research) +"qsr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qss" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qst" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/command) +"qsP" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"qsR" = ( +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qtg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"qtt" = ( +/turf/open/floor/plasteel/grimy, +/area/service/library) +"qtB" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"qtR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"qtW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/taperecorder, +/turf/open/floor/plasteel/grimy, +/area/command) +"qub" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"quh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"qum" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"quS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"qvd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"qvB" = ( +/obj/structure/table/wood, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"qvC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"qvW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"qvX" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"qwg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/defibrillator_mount/directional/east, +/obj/structure/table/greyscale, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"qwx" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qwA" = ( +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qwF" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"qwM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"qxg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qxi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"qxA" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"qxC" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"qxG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qxI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"qxS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qxX" = ( +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qya" = ( +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qyh" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutters"; + name = "Vacant Commissary Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"qyj" = ( +/obj/machinery/power/smes/engineering{ + charge = 2e+006 + }, +/obj/structure/cable, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/circuit/green, +/area/engineering/main) +"qyu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"qyB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"qyU" = ( +/obj/structure/table, +/obj/item/clothing/under/suit/black_really, +/obj/item/cane, +/obj/item/clothing/head/bowler{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qzb" = ( +/obj/structure/table/wood, +/obj/item/storage/box/beanbag, +/obj/item/gun/ballistic/shotgun/doublebarrel, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qzf" = ( +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"qzj" = ( +/obj/structure/table/wood, +/obj/item/food/grown/harebell{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/food/grown/harebell, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"qzr" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"qzt" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/surgery) +"qzE" = ( +/turf/open/floor/engine, +/area/engineering/supermatter) +"qzP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"qzS" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qzU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qAe" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qAm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"qAn" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qAu" = ( +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/clothing/suit/hazardvest{ + desc = "A high-visibility lifejacket complete with whistle and slot for oxygen tanks."; + name = "emergency lifejacket" + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/breath{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 9 + }, +/obj/structure/closet/crate/internals, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qAF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/service/kitchen) +"qAO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"qAS" = ( +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qAU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qBh" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qBj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/science/storage) +"qBp" = ( +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "Cell 3" + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"qBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"qBR" = ( +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"qBW" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"qCl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"qCn" = ( +/obj/machinery/status_display/supply, +/turf/closed/wall, +/area/cargo/storage) +"qCs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"qCt" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"qCz" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/service/library) +"qCF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"qCG" = ( +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"qCH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qCY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qCZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Construction Zone"; + req_one_access_txt = "72" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"qDf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qDD" = ( +/turf/open/floor/wood, +/area/lawoffice) +"qDK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"qDN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/mirror/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"qDR" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemisttop"; + name = "Chemistry Lobby Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/pharmacy) +"qDZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qEu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qEv" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"qEM" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"qET" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"qFk" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"qFn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/security/prison) +"qFt" = ( +/obj/structure/closet/l3closet/janitor, +/obj/machinery/requests_console/directional/north{ + department = "Janitorial"; + departmentType = 1; + name = "Janitorial Requests Console" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + name = "service camera" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qFy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qFI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/storage) +"qFR" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"qFS" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"qFT" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qFV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"qGb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"qGc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"qGf" = ( +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qGj" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle - Aft Starboard"; + dir = 4; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qGs" = ( +/obj/machinery/light/directional/west, +/obj/machinery/camera{ + c_tag = "Central Hallway - Port"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"qGA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"qGH" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"qGI" = ( +/obj/structure/chair/wood, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"qGJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"qGK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 0 + }, +/obj/item/pen{ + pixel_x = -7 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"qGO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/north) +"qGZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"qHe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"qHt" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"qHH" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: BLAST DOORS"; + pixel_y = 32 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"qHZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"qIi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qIL" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/library/abandoned) +"qIO" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/cargo/qm) +"qIS" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"qJk" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"qJp" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"qJA" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"qKj" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialshutters"; + name = "Custodial Closet Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qKp" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"qKr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qKx" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"qKC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"qKF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"qKI" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/machinery/door/poddoor{ + id = "cargounload"; + name = "supply dock unloading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"qKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qKN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qLa" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"qLe" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qLr" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qLu" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qLB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/noticeboard/directional/south, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qLC" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"qLS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"qMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qMh" = ( +/obj/structure/table, +/obj/item/seeds/poppy/lily{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/seeds/poppy/geranium, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/grown/wheat, +/obj/item/food/grown/corn, +/obj/item/food/grown/apple, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"qMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qMG" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/library/abandoned) +"qMR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qMY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"qNc" = ( +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qNl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"qNC" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"qNI" = ( +/obj/machinery/vending/autodrobe/all_access, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qNK" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Corporate Lounge"; + name = "command camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom/one{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/two{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"qNM" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"qNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qOd" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"qOe" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = 8; + pixel_y = -38 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's Requests Console" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/obj/machinery/button/door/directional/south{ + id = "cmoshutter"; + name = "CMO Office Shutters"; + pixel_x = 6; + pixel_y = -26; + req_access_txt = "40" + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"qOp" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"qOr" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/meeting_room/council) +"qOw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell #5" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"qOO" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"qOU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"qOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "Toilet2"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"qPd" = ( +/obj/machinery/light/directional/east, +/obj/structure/bed, +/obj/item/bedsheet/rd, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"qPf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"qPp" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"qPq" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"qPs" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qPu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"qPx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qPM" = ( +/obj/structure/table, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qPN" = ( +/obj/structure/rack, +/obj/item/airlock_painter, +/obj/item/toner, +/obj/machinery/status_display/evac/directional/west, +/obj/item/storage/box/shipping, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qPR" = ( +/obj/item/kirbyplants/random, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"qPZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qQb" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck/cas{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/toy/cards/deck/cas/black{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/carpet, +/area/service/library/abandoned) +"qQv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"qQH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"qQO" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"qRO" = ( +/obj/machinery/door/window/brigdoor{ + id = "medcell"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"qRY" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"qSc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"qSf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"qSj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"qSI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/delivery_chute{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"qSL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/prisoner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qSO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"qSS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/service/theater/abandoned) +"qST" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qSW" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/pai_card, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"qTt" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/item/circuitboard/aicore, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"qTG" = ( +/obj/structure/mirror/directional/west, +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/orange, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qTO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Foyer"; + req_access_txt = "10" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"qTW" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/service/kitchen) +"qUa" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"qUb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stamp/denied{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/stamp{ + pixel_x = -7; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qUc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"qUh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qUi" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"qUo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"qUs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qUA" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"qUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qUN" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qUV" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/head_of_personnel, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"qVq" = ( +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"qVr" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/xeno_spawn, +/turf/open/space, +/area/solars/port/fore) +"qVt" = ( +/obj/effect/landmark/secequipment, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"qVz" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"qVA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"qVC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qVD" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"qVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage) +"qVI" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qVM" = ( +/obj/structure/table, +/obj/item/folder/yellow, +/obj/item/storage/box/shipping{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qVS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qVV" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"qVX" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/service/electronic_marketing_den) +"qVY" = ( +/obj/machinery/light/directional/south, +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"qWc" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"qWn" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera{ + c_tag = "Dormitories - Port"; + dir = 4; + name = "dormitories camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/dorms) +"qWq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"qWy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"qWD" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"qWL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"qWP" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"qXE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"qXG" = ( +/obj/structure/destructible/cult/tome, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/service/library/abandoned) +"qXO" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Aft"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"qYe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"qYi" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"qYo" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"qYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"qYu" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"qYx" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"qYD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"qYZ" = ( +/obj/machinery/computer/turbine_computer{ + id = "incineratorturbine" + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -8; + pixel_y = 24 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = -8; + pixel_y = 36 + }, +/obj/machinery/button/ignition/incinerator/atmos{ + pixel_x = 8; + pixel_y = 36 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/disposal/incinerator) +"qZb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"qZr" = ( +/turf/closed/wall, +/area/service/hydroponics) +"qZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"qZI" = ( +/obj/structure/chair/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"qZL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"qZQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ral" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"raB" = ( +/obj/machinery/door/airlock{ + name = "Medbay Auxiliary Storage"; + req_access_txt = "5" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"raM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"raT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rbb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"rbg" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"rbu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"rbT" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rca" = ( +/turf/closed/wall, +/area/command/gateway) +"rcf" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rch" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"rcu" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rcv" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rcz" = ( +/obj/machinery/light/directional/east, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rcA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"rcK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rcM" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/chapel{ + pixel_y = -27 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"rcU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Plasma Cell"; + name = "atmospherics camera" + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"rdj" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rdl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cargo - Warehouse"; + name = "cargo camera" + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rdm" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rdz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rdH" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Cooling" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rdI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rdJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "teleportershutters"; + name = "Teleporter Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"rdM" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rea" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"reb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"ren" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"reB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"reI" = ( +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"reP" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"reS" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/hop{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/toy/figure/ian, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"reX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"rfb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"rfe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/port) +"rfm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"rfq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"rfA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rfF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rfO" = ( +/obj/machinery/vending/assist, +/obj/machinery/camera{ + c_tag = "Primary Tool Storage"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rfR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rga" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rge" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"rgv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rgx" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"rgz" = ( +/obj/machinery/keycard_auth/directional/south{ + pixel_x = 6 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"rgA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/science/research) +"rgE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"rgG" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rgL" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"rgQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer4, +/turf/open/floor/engine, +/area/engineering/supermatter) +"rgR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"rgU" = ( +/obj/machinery/disposal/bin, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rhm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"rhn" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rhs" = ( +/obj/machinery/camera{ + c_tag = "Permabrig - Central"; + dir = 4; + network = list("ss13","prison") + }, +/obj/item/radio/intercom/directional/west{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rhF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rhH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"rhJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/wood/fancy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/service/library) +"rhY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"rhZ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"rib" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/bed, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain/private) +"rio" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rip" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/service/library) +"riv" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/wood, +/area/service/library) +"rix" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"riP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"riX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/paramedic) +"rjq" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rjs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"rjB" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rjE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"rjJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central/south) +"rjP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rjU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rka" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rkv" = ( +/obj/machinery/door/morgue{ + name = "Curator's Study"; + req_access_txt = "37" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rkD" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rkL" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"rlh" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"rlu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"rlV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rlW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rlZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"rmm" = ( +/obj/structure/table_frame/wood, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plating, +/area/commons/dorms) +"rmn" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rmu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o, +/turf/open/floor/plasteel/cafeteria, +/area/engineering/atmos) +"rmy" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/command/gateway) +"rmA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rmG" = ( +/turf/closed/wall, +/area/command/heads_quarters/hos) +"rmH" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"rmR" = ( +/obj/machinery/status_display/ai/directional/east, +/obj/structure/frame/computer, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"rmX" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"rnn" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/button/door/directional/east{ + id = "hosroom"; + name = "Privacy Control"; + req_access_txt = "58" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"rnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"rob" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"roo" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Testing Room"; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rou" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"row" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"roK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rpi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"rps" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"rpu" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/clothing/under/misc/burial, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"rpy" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/structure/noticeboard/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"rpC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rpX" = ( +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/donkpockets, +/obj/item/stack/package_wrap, +/obj/effect/turf_decal/bot, +/obj/item/kitchen/knife, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rqh" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"rqk" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"rqC" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"rqG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rqJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"rqM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rrp" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/aisat) +"rrq" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rru" = ( +/obj/structure/table, +/obj/machinery/light/directional/east, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"rrD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rrJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rrN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"rrT" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rsa" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"rsf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rsm" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"rsL" = ( +/obj/structure/plaque/static_plaque/atmos, +/turf/closed/wall, +/area/engineering/atmos) +"rsY" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"rsZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"rtI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"rtJ" = ( +/obj/structure/easel, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rtM" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rtP" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/engineering/storage_shared) +"rum" = ( +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_one_access_txt = "13; 24; 10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"run" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"ruy" = ( +/obj/machinery/power/smes, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ruK" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ruZ" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/aisat) +"rvr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rvL" = ( +/obj/structure/cable, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"rvO" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"rvP" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/window{ + dir = 8; + name = "Fitness Ring" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rvX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"rwr" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"rwE" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rwG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"rwU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Hydroponics Backroom"; + req_access_txt = "35" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"rwY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rxb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/lab) +"rxf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"rxm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rxt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/dorms) +"ryr" = ( +/obj/machinery/door/airlock/security{ + name = "Security Post - Medbay"; + req_access_txt = "63" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"ryt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"ryw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"ryM" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/start/librarian, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ryS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"rzc" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/storage) +"rzE" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/cargo/warehouse) +"rzM" = ( +/obj/structure/table/wood, +/obj/item/food/grown/poppy/lily, +/obj/item/food/grown/poppy/lily, +/obj/item/food/grown/poppy/lily, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"rzQ" = ( +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rzS" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"rzT" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/secure_closet/personal/patient, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"rzU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rAe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rAf" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rAg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"rAp" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"rAt" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rAw" = ( +/obj/machinery/airalarm/directional/west, +/turf/closed/wall, +/area/service/bar) +"rAE" = ( +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/dead, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"rAL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rAZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rBJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rBV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/vomit, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "AuxToilet1"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"rCa" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/wood, +/area/lawoffice) +"rCd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"rCn" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"rCt" = ( +/obj/effect/spawner/random/trash/mess, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/service/library/abandoned) +"rCv" = ( +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"rCA" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rCO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Recreational Area" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rCY" = ( +/obj/structure/table/wood, +/obj/item/toy/talking/codex_gigas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"rDh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"rDl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"rDp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"rDv" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"rDG" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rDI" = ( +/obj/machinery/flasher/directional/south{ + id = "Cell 6" + }, +/obj/machinery/light/small/broken/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"rDR" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"rDX" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"rEc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"rEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"rEm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rEC" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"rEU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rFd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rFD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"rFT" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"rFW" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Jetpack Storage"; + pixel_x = -1; + req_access_txt = "18" + }, +/obj/structure/window/reinforced, +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rGe" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rGw" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"rGx" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/atmospherics{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"rGy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery) +"rGA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"rGD" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"rGJ" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"rGR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rGU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/turf/open/space, +/area/engineering/atmos) +"rHt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rHy" = ( +/obj/structure/sign/directions/science{ + pixel_y = -8 + }, +/obj/structure/sign/directions/command{ + dir = 1 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 8 + }, +/turf/closed/wall, +/area/commons/storage/tools) +"rHM" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rIu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rIB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"rID" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/microwave{ + desc = "Cooks and boils stuff, somehow."; + pixel_x = -3; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rIE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"rIG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/library) +"rIR" = ( +/obj/machinery/keycard_auth/directional/west, +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "engstorage"; + name = "Engineering Secure Storage Control"; + pixel_y = 10; + req_access_txt = "11" + }, +/obj/machinery/button/door/directional/west{ + id = "transitlock"; + name = "Transit Tube Lockdown Control"; + pixel_y = -10; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"rIW" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"rIY" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rJj" = ( +/obj/machinery/hydroponics/soil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"rJq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"rJI" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"rJO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"rJU" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"rKb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/science/research) +"rKh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rKo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"rKr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rKA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"rKF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"rKG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"rKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 6; + id = "cargodeliver" + }, +/turf/open/floor/plating, +/area/cargo/sorting) +"rKN" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Docking Port"; + safety_mode = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"rKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"rLn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rLD" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Surgery B"; + dir = 8; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/structure/closet/secure_closet/medical2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"rLL" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/space, +/area/engineering/atmos) +"rLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/tank_holder/emergency_oxygen, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"rLT" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"rLV" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"rLY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"rMd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"rMk" = ( +/obj/machinery/portable_atmospherics/canister/bz, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"rMo" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rMx" = ( +/obj/structure/chair/office, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"rMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"rMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rMW" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"rMZ" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"rNb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"rNd" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Observatory"; + req_access_txt = "13" + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"rNh" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rNq" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"rNz" = ( +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"rOc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/engineering/engine_room/external) +"rOx" = ( +/obj/structure/rack, +/obj/item/storage/belt/utility, +/obj/item/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"rOI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/storage/tools) +"rOM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rPb" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Starboard Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rPg" = ( +/obj/machinery/photocopier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/library/abandoned) +"rPv" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/warning, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"rPJ" = ( +/obj/structure/chair/wood, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"rPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "External Waste Ports to Filter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rPL" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/toy/dummy, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"rPO" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rPX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"rQi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rQB" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"rQN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"rRc" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rRd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/service/kitchen) +"rRk" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rRu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"rRw" = ( +/obj/machinery/autolathe, +/obj/machinery/light/directional/west, +/obj/machinery/light_switch/directional/south{ + pixel_x = -20 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/office) +"rRG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"rRR" = ( +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"rRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"rRW" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rSw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rSB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rSG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rSJ" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Research Junction"; + sortType = 12 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rSK" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"rTk" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"rTE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/break_room) +"rTN" = ( +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"rTO" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"rTT" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rTU" = ( +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rUg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall3"; + location = "hall2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rUl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rUy" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/aft) +"rUZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"rVn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rVo" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rVp" = ( +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"rVu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rVw" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"rVz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"rVD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"rVE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/hallway/secondary/entry) +"rVG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"rVN" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/service/chapel/main) +"rWa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rWh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rWl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/civilian, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rWm" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"rWs" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"rWL" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"rWM" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain/private) +"rWP" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/command_all, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"rXh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"rXs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rXu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_holder/oxygen, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"rXD" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rYg" = ( +/obj/machinery/bookbinder, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rYm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"rYt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) +"rYG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/nuke_storage) +"rYJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/table, +/obj/item/fuel_pellet{ + pixel_x = 8 + }, +/obj/item/wrench{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rYU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"rYV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"rYX" = ( +/obj/structure/chair, +/obj/effect/decal/cleanable/blood/splatter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"rZb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"rZh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"rZo" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/solars/starboard/fore) +"rZz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/range) +"rZH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"rZP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"rZS" = ( +/obj/structure/table/reinforced, +/obj/item/lightreplacer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"saw" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"say" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Chapel Quarters"; + name = "chapel camera" + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"saB" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Aft Starboard"; + dir = 4; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"saQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"saS" = ( +/obj/structure/rack, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"sba" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sbf" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sbI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/rack, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"scj" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Office Maintenance"; + req_access_txt = "32" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/commons/vacant_room/office) +"scE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"scF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"scS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"scY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"scZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Primary Tool Storage" + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"sdh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"sdn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sdx" = ( +/obj/structure/table/wood, +/obj/effect/spawner/random/techstorage/arcade_boards, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"sdF" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"sdG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"sdN" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"sdO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"sdP" = ( +/obj/effect/landmark/start/prisoner, +/turf/open/floor/plating, +/area/security/prison) +"sdU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"seu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sev" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/turf/open/floor/plating, +/area/service/library/abandoned) +"sez" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"seS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"seV" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"seW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + name = "Atmospherics Delivery"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"sfd" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Science Aft"; + name = "hallway camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sfo" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"sfp" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"sfF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"sfG" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"sfH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"sfI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/service/hydroponics/garden/abandoned) +"sfK" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"sfP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"sfZ" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"sgE" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ + dir = 10 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos/upper) +"sgI" = ( +/obj/structure/easel, +/turf/open/floor/plasteel, +/area/security/prison) +"sgL" = ( +/obj/structure/table/glass, +/obj/item/folder/blue{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/folder/white, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"sgR" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"sgW" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 8 + }, +/turf/closed/wall, +/area/service/kitchen) +"sgY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sha" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"she" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"shl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) +"shn" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"shD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"shH" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"shN" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"sin" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"sip" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"sis" = ( +/obj/effect/spawner/random/entertainment/arcade, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/dim/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"siG" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"siU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sjo" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sjC" = ( +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"sjE" = ( +/obj/machinery/light/directional/north, +/obj/machinery/vending/modularpc, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"sjF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"sjP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sjT" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ski" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"skj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command) +"skk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"skH" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"skJ" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"skT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"slf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"slk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"slt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"slG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Office"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"slQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"slU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"slY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"sme" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridgedoors"; + name = "Bridge Access Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"smq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"sms" = ( +/obj/machinery/chem_master/condimaster{ + name = "HoochMaster 2000" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"smD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"smF" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"smW" = ( +/obj/structure/table/wood, +/obj/item/clothing/suit/syndicatefake, +/obj/item/clothing/head/syndicatefake, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"smX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"snh" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"sni" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"snk" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/lawyer, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"snm" = ( +/obj/machinery/computer/shuttle_flight/mining{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"snA" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"snL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"snN" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"snR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sob" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"soc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Robotics Lab Maintenance"; + req_access_txt = "29" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"soj" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"sop" = ( +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"soN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"soS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/virology{ + autoclose = 0; + frequency = 1449; + id_tag = "virology_airlock_exterior"; + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/machinery/door_buttons/access_button{ + dir = 1; + idDoor = "virology_airlock_exterior"; + idSelf = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -24; + pixel_y = -2; + req_access_txt = "39" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"spo" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Service Hallway Maintenance Hatch"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"sps" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"spx" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"spB" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"spD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + name = "Incoming Mail"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"sqg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/storage) +"sqw" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sqI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sqY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"srd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/command{ + name = "Auxiliary E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"sre" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"srq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"srs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdoffice"; + name = "Research Director's Shutters" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"srw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"srL" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"srM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Containment Cell"; + req_access_txt = "39" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"srN" = ( +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"srX" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"srY" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleportershutters"; + name = "Teleporter Shutters" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ssb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ssp" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"ssB" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"ssC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"ssD" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ssL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"stb" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"stn" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"stp" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"stE" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"stH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"stM" = ( +/obj/structure/table/glass, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"stR" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"sub" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"suj" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"suk" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"suu" = ( +/obj/machinery/computer/security/mining{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"suE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/research/abandoned) +"suJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"suL" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"suN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"suR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"svs" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/bodycontainer/morgue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"svv" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"svG" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/gateway) +"svM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"swj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"swl" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/execution) +"swm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sws" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"swM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sxb" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"sxr" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sxw" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/service/library) +"sxA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/prison) +"sxD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"sxF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/storage) +"sxQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sxV" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sxX" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"syi" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"sym" = ( +/obj/item/storage/book/bible, +/obj/structure/altar_of_gods, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"syn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"syo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"syr" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"syy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"syP" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/fore) +"syV" = ( +/obj/structure/closet/toolcloset, +/obj/machinery/light/small/directional/south, +/obj/machinery/camera{ + c_tag = "Engineering - Engine Foyer"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"syY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"szg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"szn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva) +"szq" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"szF" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Theater Stage"; + name = "service camera" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"szL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/south{ + id = "AuxToilet3"; + name = "Lock Control"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"sAj" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/item/electronics/apc, +/obj/item/electronics/airlock, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sAk" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sAm" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/psychologist, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"sAn" = ( +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sAv" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"sAx" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"sAB" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"sAD" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sAG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Maintenance"; + req_access_txt = "16" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"sAL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sAP" = ( +/obj/structure/table/wood, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/obj/item/wrench, +/obj/item/clothing/under/suit/waiter, +/obj/item/clothing/accessory/waistcoat, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"sAQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sAX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sBb" = ( +/obj/machinery/vending/assist, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"sBv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"sBx" = ( +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"sBz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"sBC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"sBH" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sBM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"sBQ" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/paramedic) +"sBX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"sBY" = ( +/obj/machinery/camera/motion{ + c_tag = "Bridge - Captain's Emergency Escape"; + dir = 4; + name = "motion-sensitive command camera" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/central/secondary) +"sCg" = ( +/turf/open/floor/carpet, +/area/command) +"sCo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sCL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"sCQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sCR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/detectives_office) +"sDc" = ( +/obj/structure/dresser, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"sDg" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sDl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"sDp" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sDu" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"sDw" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"sDz" = ( +/turf/closed/wall, +/area/command/heads_quarters/hop) +"sDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 9; + id = "cargounload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"sDK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"sDO" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/flashlight/lamp, +/turf/open/floor/plating, +/area/service/library/abandoned) +"sDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/computer/shuttle_flight/mining/common{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"sEb" = ( +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sEd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"sEo" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall15"; + location = "hall14" + }, +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sEE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"sEJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sEL" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"sEN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"sES" = ( +/obj/machinery/porta_turret/ai, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"sFf" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"sFr" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/chair/office/light, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sFw" = ( +/obj/item/kirbyplants/random, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"sFD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "rdxeno"; + name = "Xenobiology Containment Control"; + pixel_x = -7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdtoxins"; + name = "Toxins Containment Control"; + pixel_x = -7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdrnd"; + name = "Research and Development Containment Control"; + pixel_x = 7; + pixel_y = 7; + req_access_txt = "30" + }, +/obj/machinery/button/door{ + id = "rdoffice"; + name = "Privacy Control"; + pixel_x = 7; + pixel_y = -4; + req_access_txt = "30" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"sFP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/break_room) +"sGh" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sGj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "aiuploadwindow"; + name = "AI Upload Lockdown Door" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"sGn" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"sGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"sGF" = ( +/obj/structure/table, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sGJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sGK" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/south, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom{ + pixel_x = -26; + pixel_y = -26 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"sGN" = ( +/obj/machinery/door/airlock/medical/glass{ + name = "Sanitarium"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/security/prison) +"sGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sGU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"sGW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/department/electrical) +"sGY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"sGZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"sHe" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Plasma to Pure" + }, +/obj/machinery/atmospherics/pipe/color_adapter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sHo" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"sHr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/service/library) +"sHL" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"sHV" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"sIe" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sIg" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/security/main) +"sIl" = ( +/obj/machinery/chem_master/condimaster{ + name = "BrewMaster 3000" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sIy" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sIA" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"sIM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"sIP" = ( +/obj/structure/chair/wood, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/service/chapel/main) +"sIY" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"sJv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/command) +"sJx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"sJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sKa" = ( +/obj/machinery/photocopier, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"sKn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"sKr" = ( +/obj/structure/chair/office, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/service/library/abandoned) +"sKy" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/syringes, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sKJ" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"sKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"sKL" = ( +/obj/structure/cable, +/obj/machinery/button/flasher{ + id = "Cell 3"; + name = "Prisoner Flash"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "permashut3"; + name = "Cell Lockdown Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sKN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"sKP" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"sKS" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"sKY" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/hallway/secondary/service) +"sKZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sLi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters" + }, +/turf/open/floor/plating, +/area/command/corporate_showroom) +"sLl" = ( +/turf/closed/wall/r_wall, +/area/construction/mining/aux_base) +"sLr" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"sLw" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sLR" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sMg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sMk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sMC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sMH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sMO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/library) +"sMV" = ( +/obj/machinery/light/directional/north, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"sNj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"sNs" = ( +/obj/structure/table, +/obj/item/computer_disk/ordnance, +/obj/item/computer_disk/ordnance, +/obj/item/computer_disk/ordnance, +/obj/machinery/camera{ + c_tag = "Science - Research Director's Office"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"sNC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"sOk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sOG" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/security/detectives_office/private_investigators_office) +"sOH" = ( +/obj/structure/table/wood, +/obj/item/storage/bag/books, +/obj/item/taperecorder, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"sPf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sPq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Access"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"sPv" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/camera{ + c_tag = "Permabrig - Cell 3"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"sPw" = ( +/turf/closed/wall, +/area/engineering/storage/tech) +"sPE" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/command/gateway) +"sPI" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"sPQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sQk" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sQr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "Cell 2" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"sQV" = ( +/obj/structure/closet/radiation, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/engineering/main) +"sQY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"sRg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"sRM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"sRS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"sRX" = ( +/obj/structure/mirror/directional/west, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"sRY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sSb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"sSg" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/service/library) +"sSs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"sSt" = ( +/obj/structure/closet/toolcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/engineering/storage_shared) +"sSx" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_one_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"sSJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sSO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"sTm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Primary Hallway" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sTu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"sTy" = ( +/obj/machinery/power/tesla_coil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Engineering - Secure Storage"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"sTz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"sTA" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"sTC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"sTE" = ( +/obj/structure/cable, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"sTF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to Distro" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"sTI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"sUa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/medbay/alt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"sUc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"sUf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"sUC" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"sUE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell #4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"sUG" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/end{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"sUH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"sUU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sUV" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/structure/sign/poster/official/ian{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"sVj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"sVm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/office) +"sVD" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"sVJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/library) +"sVP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sWc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"sWf" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/storage/secure/briefcase, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"sWu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Cargo Bay - Aft Port"; + dir = 4; + name = "cargo camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sWw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sWA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/xenobiology) +"sWE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"sWF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"sWJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"sXa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"sXh" = ( +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"sXl" = ( +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/service/library/abandoned) +"sXr" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/west, +/obj/item/flashlight/lamp/green, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Office"; + dir = 4; + name = "command camera" + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"sXx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"sXy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"sXI" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"sXL" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"sXO" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"sXR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"sYb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"sYn" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"sYu" = ( +/obj/machinery/door/airlock/public/glass{ + id_tag = "permabolt2"; + name = "Cell 2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "permashut2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"sYF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"sYJ" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sYO" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Council Chamber"; + dir = 1; + name = "command camera" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"sYS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/spawner/random/food_or_drink/donkpockets, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sYU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"sYV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"sYW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sYX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"sZn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"sZs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"sZD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"sZJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"sZO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"sZS" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"sZX" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/computer/security/telescreen/entertainment/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"sZY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"tab" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"taj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tak" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"tar" = ( +/obj/machinery/door/poddoor{ + id = "engstorage"; + name = "Engineering Secure Storage Lockdown" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tax" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/item/clothing/suit/apron/chef, +/obj/item/clothing/head/chefhat, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"taC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tbi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"tbj" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"tbk" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"tbn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port) +"tbr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"tbw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"tbE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"tce" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tcg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tci" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"tcl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"tcF" = ( +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"tcO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"tdb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"tdh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"tdj" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tdq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"tdE" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"teo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"tew" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"teB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"teC" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"teD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"teL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"teP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/library/abandoned) +"tfa" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/command/gateway) +"tfh" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"tfi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tfn" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/research_director, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"tfy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"tfD" = ( +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/starboard/aft) +"tfO" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Head of Personnel's Office"; + dir = 8; + name = "command camera" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"tfS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tfT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tgb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "Cell 1" + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"tgh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"tgu" = ( +/obj/structure/table/glass, +/obj/item/food/pizzaslice/vegetable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/space_hut/observatory) +"tgL" = ( +/obj/machinery/light_switch/directional/east{ + pixel_x = 22 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tgZ" = ( +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"tha" = ( +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"thc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"thf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"thj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tho" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"thq" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/yellow, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"tht" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"thA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"thX" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"tic" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"tii" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tim" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Port"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/aisat) +"tis" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tiF" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"tju" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"tjw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"tjD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"tjK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"tjO" = ( +/obj/machinery/gibber, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tkb" = ( +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"tkj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/security/main) +"tku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/button/door/directional/south{ + id = "evashutters2"; + name = "E.V.A. Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"tkH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"tkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tlv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"tlw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tlA" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tlE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tlM" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"tme" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/easel, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"tmk" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tmn" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"tmu" = ( +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"tmA" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Access" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tmP" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"tmW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"tnc" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/wrench, +/obj/item/gps, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tni" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"tnm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tno" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tnv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tnG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tnH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"toa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"toe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"tof" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Cargo - Quartermaster's Quarters"; + dir = 8; + name = "cargo camera" + }, +/obj/machinery/computer/security/qm{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"toi" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"too" = ( +/turf/closed/wall, +/area/command) +"tov" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"tow" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"toG" = ( +/obj/structure/chair{ + dir = 1; + name = "Jury" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"tpa" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tpf" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood, +/area/service/library) +"tpD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/medical/morgue) +"tpS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tqi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"tqz" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"tqL" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/stamp/qm, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tqM" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tqN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tqQ" = ( +/obj/structure/cable, +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Prisoner Telescreen"; + network = list("prison"); + pixel_x = 27 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison) +"tqX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"tro" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"trF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/stock_parts/cell/hyper, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"trH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"trM" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"trT" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"tsd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tsl" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"tst" = ( +/turf/closed/wall, +/area/commons/storage/primary) +"tsx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tsA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"tsB" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/camera{ + c_tag = "Atmospherics - Pumps"; + dir = 1; + name = "atmospherics camera" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"tsY" = ( +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"ttd" = ( +/obj/effect/landmark/start/librarian, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"tte" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"ttg" = ( +/obj/structure/table/reinforced, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"ttx" = ( +/obj/effect/turf_decal/trimline/yellow/filled/warning{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ttR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"ttZ" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"tui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tuR" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"tuZ" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"tvp" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"tvt" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"tvA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tvB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tvL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison) +"tvS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"twf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"twt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"txh" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/space, +/area/engineering/atmos) +"txN" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"txO" = ( +/obj/machinery/power/shieldwallgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/command/teleporter) +"txZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tyl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"tyw" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"tyx" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"tyy" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tyz" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/taperecorder, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"tyD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/pods{ + name = "MINING POD" + }, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"tyN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"tyR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"tyX" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"tyZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tzb" = ( +/obj/machinery/meter{ + name = "Mixed Air Tank Out" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"tzf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tzj" = ( +/obj/machinery/door/airlock/external{ + name = "Security External Airlock"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/security/prison) +"tzl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"tzq" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tzu" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"tzw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/teleporter) +"tzz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tzA" = ( +/obj/structure/table/wood, +/obj/item/electronics/firelock, +/obj/item/electronics/airlock, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"tzF" = ( +/obj/machinery/door/poddoor/shutters{ + id = "construction"; + name = "Construction Shutters" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"tzS" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tAu" = ( +/obj/machinery/computer/atmos_control/air_tank{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"tAv" = ( +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tAz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"tBg" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"tBm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"tBp" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tBF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"tBR" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall5"; + location = "hall4" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tCh" = ( +/turf/closed/wall, +/area/science/misc_lab) +"tCy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"tCG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tCL" = ( +/turf/open/floor/plasteel/dark, +/area/space) +"tCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tCT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/suit/apron/chef, +/obj/item/kitchen/rollingpin, +/obj/effect/turf_decal/bot, +/obj/item/kitchen/knife, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"tCX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Plasma to Turbine" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tDa" = ( +/obj/structure/table, +/obj/item/rcl/pre_loaded, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tDj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno7"; + name = "Creature Cell #7" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"tDp" = ( +/turf/open/floor/plasteel/white/side, +/area/maintenance/starboard/fore) +"tDt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tDI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"tDM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Hallway - Starboard"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tDT" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tDV" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"tDX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"tEe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"tEh" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tEw" = ( +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/fore) +"tEy" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/camera{ + c_tag = "Lawyer's Office"; + dir = 8 + }, +/turf/open/floor/wood, +/area/lawoffice) +"tEE" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/security_all, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"tEM" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/east, +/obj/item/book/manual/wiki/engineering_hacking, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"tFz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tFA" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"tFH" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfront"; + name = "Brig Blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tFK" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage) +"tFO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tFS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"tFT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tGf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"tGh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tGj" = ( +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"tGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"tGC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/teleporter) +"tGP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"tGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bodycontainer/morgue{ + dir = 2 + }, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"tHb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"tHf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tHl" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"tHC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"tHV" = ( +/obj/structure/bookcase, +/turf/open/floor/wood, +/area/service/library/abandoned) +"tHW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"tHX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tIe" = ( +/obj/structure/table/reinforced, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"tIE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"tII" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tIP" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tIQ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tIV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"tIW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"tIZ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/command/heads_quarters/cmo) +"tJr" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Quarters"; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tJu" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Aft"; + dir = 1; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"tJv" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"tJA" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/dorms) +"tJH" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tJL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"tKa" = ( +/obj/structure/chair/stool, +/obj/structure/window{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"tKi" = ( +/obj/structure/chair/sofa/left{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/library) +"tKj" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"tKk" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"tKr" = ( +/turf/closed/wall, +/area/maintenance/space_hut/observatory) +"tKt" = ( +/obj/machinery/door/poddoor/shutters/radiation/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/turf/open/floor/plating, +/area/engineering/supermatter) +"tKD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"tKJ" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tKN" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"tKQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tKS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "HoS Space Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"tLa" = ( +/obj/machinery/camera{ + c_tag = "Detective's Interrogation"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"tLg" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/office) +"tLk" = ( +/obj/structure/table/reinforced, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tLl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/engineering/main) +"tLs" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"tLy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tLO" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"tLP" = ( +/obj/structure/window/plasma/reinforced/spawner/west{ + dir = 1 + }, +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tLT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"tLY" = ( +/obj/machinery/status_display/evac/directional/south, +/obj/machinery/lapvend, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"tMk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab/range) +"tMm" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"tMt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"tMz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Hall" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/chapel/main) +"tME" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tMF" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tMG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"tML" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tMQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tMS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/off/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tMW" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"tMX" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Engineering Maintenance"; + req_access_txt = "10" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"tNn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tNx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tNO" = ( +/obj/structure/table/wood, +/obj/item/taperecorder, +/obj/item/camera, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tNQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"tNU" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"tOg" = ( +/obj/structure/showcase/cyborg/old{ + dir = 4; + pixel_x = -9; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat_interior) +"tOj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tOq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"tOs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"tOv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"tOQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"tOT" = ( +/obj/item/kirbyplants/random, +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"tOW" = ( +/obj/structure/table/reinforced, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/tank/jetpack/carbondioxide, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tPB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tPJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"tPM" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"tQi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"tQl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"tQq" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"tQX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"tRu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"tRN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"tRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"tRR" = ( +/obj/structure/table/wood, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/silver_ids, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tRX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"tSb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"tSf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/break_room) +"tSn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/tcommsat/computer) +"tSv" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"tSz" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"tSG" = ( +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/item/clothing/head/cone, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"tSQ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tSS" = ( +/obj/machinery/light/directional/north, +/obj/structure/tank_holder/extinguisher, +/turf/open/floor/wood, +/area/service/library) +"tSY" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"tTd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"tTu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"tTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"tTz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tTW" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"tTZ" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Transit Tube Access"; + req_one_access_txt = "32;19" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"tUe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/picture_frame/showroom/three{ + pixel_x = -8; + pixel_y = 32 + }, +/obj/structure/sign/picture_frame/showroom/four{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"tUm" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/toy/figure/scientist, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"tUy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"tUC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"tUK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command) +"tUN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"tUR" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/pai_card, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"tUW" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"tVf" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"tVn" = ( +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"tVu" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"tVw" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"tVz" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tVL" = ( +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Recreation - Aft"; + dir = 1; + name = "recreation camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tVO" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"tVP" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/requests_console/directional/north{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay Requests Console" + }, +/obj/machinery/camera{ + c_tag = "Cargo - Office"; + name = "cargo camera" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"tWu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tWF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tWP" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"tXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tXj" = ( +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"tXm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Waste to Filter" + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"tXr" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer, +/obj/item/assembly/timer, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tXx" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/structure/sign/poster/official/obey{ + pixel_x = 30 + }, +/obj/machinery/camera{ + c_tag = "Permabrig - Cell 5"; + dir = 8; + network = list("ss13","prison") + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plating, +/area/security/prison/safe) +"tXA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"tXE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"tXR" = ( +/turf/closed/wall, +/area/service/electronic_marketing_den) +"tXV" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"tYc" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research) +"tYf" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/stock_parts/scanning_module{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"tYr" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"tYJ" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"tYX" = ( +/obj/structure/chair/stool/bar, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"tZP" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = -3 + }, +/obj/item/clothing/mask/cigarette/cigar, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"uai" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ual" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/departments/court{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"uao" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"uaz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/stasis, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"uaD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research) +"uaP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"uaS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ubd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"ubv" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"ubA" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"ubH" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/potato, +/obj/item/seeds/tomato, +/obj/item/seeds/carrot, +/obj/item/seeds/grass, +/obj/item/seeds/ambrosia, +/obj/item/seeds/wheat, +/obj/item/seeds/pumpkin, +/obj/effect/spawner/random/contraband/prison, +/obj/structure/window, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/tower, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ucc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ucd" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/paramedic) +"uco" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ucq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"ucu" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"ucz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ucJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Science"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/science/research) +"ucR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"uda" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ude" = ( +/obj/structure/table/wood, +/obj/machinery/status_display/evac/directional/north, +/obj/item/clipboard, +/obj/item/toy/figure/bartender, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"udg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Science - Aft Center"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"udk" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Desk"; + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"udD" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"udO" = ( +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"udX" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Head of Personnel Line"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ueh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ueo" = ( +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/camera/directional/west, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"uer" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ueD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ueP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"uft" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"ufw" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/entry) +"ufA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ufP" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ugs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ugG" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"ugT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"uhr" = ( +/obj/machinery/photocopier, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/service/library) +"uhs" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"uhy" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"uhD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"uhH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uhI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uhJ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"uhW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"uim" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"uip" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"uiA" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"uiP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uiU" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uiX" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"uiZ" = ( +/obj/structure/sign/poster/official/report_crimes{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ujH" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"ujL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"ujM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"ujO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Warehouse"; + req_access_txt = "31" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ujV" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/chaplain, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ukj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uku" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uky" = ( +/obj/machinery/door/airlock/silver{ + name = "Bathroom" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/captain/private) +"ukD" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"ukQ" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/locker) +"ukV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"uld" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ulh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"ulk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "AI Satellite - Transit Tube"; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/item/clipboard, +/obj/item/folder/blue, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"ulm" = ( +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"uly" = ( +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"umc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Bar Door"; + req_one_access_txt = "25;28" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"ume" = ( +/obj/machinery/door/window/brigdoor{ + dir = 1; + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell #2" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"umz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"umF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"umL" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargoload" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor{ + id = "cargoload"; + name = "supply dock loading door" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"umQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"umU" = ( +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/commons/dorms) +"unj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"unk" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/service/library/abandoned) +"unv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"unx" = ( +/turf/closed/wall, +/area/cargo/office) +"unQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"unZ" = ( +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"uot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uoy" = ( +/obj/machinery/plate_press, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/security/prison) +"uoV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"uoX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"upg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"uph" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"upr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"upw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/maintenance/department/science) +"upx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"upH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"upI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south{ + frequency = 1423; + name = "Interrogation Intercom" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"upL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uqa" = ( +/obj/machinery/power/supermatter_crystal/engine, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/engine, +/area/engineering/supermatter) +"uqc" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"uqe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"uqh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"uqr" = ( +/obj/structure/table/wood, +/obj/item/newspaper{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/newspaper, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"uqv" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/science/mixing) +"uqx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"uqz" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uqH" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uqQ" = ( +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"urh" = ( +/obj/item/radio/intercom{ + pixel_y = 26 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/computer/med_data, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"urn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ury" = ( +/obj/structure/table/wood, +/obj/item/stack/package_wrap{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/stack/wrapping_paper, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/fitness/recreation) +"urA" = ( +/obj/effect/decal/cleanable/dirt/dust, +/obj/structure/closet/crate/bin, +/obj/effect/spawner/random/contraband/prison, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/security/prison) +"urZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"usb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"ush" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"utc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"uth" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"uti" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"utn" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"utp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/mining/eva, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"utt" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/engineer, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"uty" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"utE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"utJ" = ( +/obj/item/instrument/violin, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"utK" = ( +/obj/machinery/camera{ + c_tag = "Permabrig - Kitchen Entrance"; + dir = 8; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"utT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison) +"uua" = ( +/obj/machinery/door/airlock/glass, +/turf/open/floor/plasteel/dark, +/area/space) +"uuh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"uup" = ( +/obj/structure/table, +/obj/item/toy/gun, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"uur" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uuA" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + desc = "It looks really dirty."; + name = "maintenance microwave"; + pixel_y = 5 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uuE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"uuM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"uuR" = ( +/obj/effect/landmark/start/cook, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/freezer, +/area/service/kitchen) +"uvh" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"uvi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uvr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engine Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uvL" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"uwg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Port"; + dir = 8; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"uwx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uwy" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uwB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"uwE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "HoS Privacy Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"uwH" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Aft Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uwX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"uxd" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/exodrone{ + pixel_y = 8 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"uxo" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"uxB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"uxO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"uyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uym" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uyv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"uyH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uyJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uyM" = ( +/turf/open/floor/plasteel/grimy, +/area/service/theater/abandoned) +"uyO" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/clothing/head/hos/beret, +/obj/item/clothing/suit/armor/hos/trenchcoat, +/obj/item/clothing/under/rank/security/head_of_security/grey, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"uyP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"uyS" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uyT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Corporate Lounge"; + req_access_txt = "19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"uyV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"uzi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/departments/lawyer{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uzn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"uzE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"uzW" = ( +/obj/machinery/door/window/brigdoor/security/holding/westright{ + name = "Holding Cell" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"uzY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/hallway/secondary/service) +"uAm" = ( +/obj/structure/dresser, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uAo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/commons/dorms) +"uAt" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"uAx" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"uAA" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/toy/figure/ce, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"uAU" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Teleporter Maintenance"; + req_access_txt = "17" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central/secondary) +"uAX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uBc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Primary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"uBh" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Arrivals Dock - Fore"; + dir = 8; + name = "arrivals camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uBn" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/light_switch/directional/north{ + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"uBs" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/lockbox/medal, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"uBx" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uBF" = ( +/obj/item/stack/cable_coil, +/obj/item/multitool, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"uBG" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "idquarters"; + name = "Director's Quarters Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"uBK" = ( +/obj/machinery/door/morgue{ + name = "Confession Booth"; + req_access_txt = "27" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uBM" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"uCu" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"uCv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"uCT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/drinks/britcup, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uDb" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"uDc" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "27" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"uDf" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"uDg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uDo" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Aft Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"uDF" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uDI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/surgery) +"uDL" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uDP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"uDX" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uEd" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uEl" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/directional/east, +/obj/item/wrench, +/obj/item/assembly/timer, +/obj/item/assembly/signaler, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = 37; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"uEr" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/bookcase/random, +/turf/open/floor/plating, +/area/service/library/abandoned) +"uEx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"uEE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"uEO" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"uEX" = ( +/obj/structure/table/wood, +/obj/item/food/chips, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"uEZ" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/command/meeting_room/council) +"uFe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uFl" = ( +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"uFq" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"uFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"uFv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uFL" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/fire, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"uGa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"uGj" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uGv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"uGw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"uGy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uGB" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"uGM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"uGU" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet3"; + name = "Toilet Unit 3" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"uHd" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"uHf" = ( +/obj/structure/table/reinforced, +/obj/item/aicard, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"uHH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"uHV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"uIe" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxCabinB"; + name = "Cabin B"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/wood, +/area/hallway/secondary/service) +"uIn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"uIr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"uIx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"uID" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"uIT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uIV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"uJe" = ( +/obj/effect/turf_decal/stripes/white/line, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"uJw" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"uJx" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uJH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"uJK" = ( +/obj/machinery/button/crematorium{ + id = "cremawheat"; + pixel_x = -26; + req_access_txt = "27" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uJL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"uJM" = ( +/obj/structure/table/reinforced, +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/machinery/light_switch/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"uJX" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"uKa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"uKt" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"uKx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Port Mix to Port Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uKR" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"uLk" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"uLp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"uLs" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white/corner, +/area/hallway/primary/port) +"uLz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"uLL" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "CMO's Junction"; + sortType = 10 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"uLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/detective, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"uLP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"uMi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"uMp" = ( +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uMv" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/mechanical, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uNj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uNt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"uNO" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"uNS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"uOw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"uOy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"uOP" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"uOU" = ( +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"uOW" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uPe" = ( +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"uPA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uQf" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno8"; + name = "Creature Cell #8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"uQj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uQr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"uQK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"uQY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"uRh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"uRC" = ( +/obj/structure/bonfire, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; + name = "Carton of Estus" + }, +/obj/item/melee/moonlight_greatsword, +/obj/effect/decal/remains/human, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"uRT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uSa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"uSi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"uSp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"uSA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "ceblast"; + name = "Chief's Lockdown Shutters" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uSH" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southleft, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"uSJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/office) +"uSL" = ( +/obj/structure/table/wood, +/obj/item/dice/d20, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"uSU" = ( +/obj/machinery/door/airlock/grunge{ + name = "Chapel Morgue"; + req_access_txt = "27" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"uTc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Primary Restroom" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"uTf" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"uTq" = ( +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uTr" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small/directional/north, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/turf_decal/bot, +/obj/item/stack/sheet/rglass{ + amount = 30; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"uTK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uTQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"uUh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"uUq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/storage) +"uUy" = ( +/obj/structure/table/reinforced, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/bot, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uUC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"uVk" = ( +/obj/machinery/holopad, +/obj/effect/landmark/start/lawyer, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"uVp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"uVq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uVu" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/bot, +/obj/machinery/grill, +/turf/open/floor/plasteel, +/area/service/kitchen) +"uVx" = ( +/obj/machinery/light/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Security - Office Fore" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"uVV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"uWg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"uWl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"uWq" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/mapping_helpers/airalarm/engine_access, +/turf/open/floor/engine, +/area/engineering/supermatter) +"uWy" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uWH" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"uWQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"uWU" = ( +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"uXz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"uXJ" = ( +/obj/structure/table/wood/poker, +/obj/item/reagent_containers/food/drinks/shaker, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"uXM" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"uXS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Security Post - Engineering"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"uYa" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"uYe" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/main) +"uYo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"uYQ" = ( +/obj/structure/displaycase/captain{ + req_access = null; + req_access_txt = "20" + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"uZm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uZA" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"uZD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"uZJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/bar/atrium) +"vag" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"van" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vat" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/west, +/obj/machinery/computer/security/telescreen/ce{ + dir = 4; + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/parrot/poly, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"vav" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"vaH" = ( +/obj/structure/bed, +/obj/item/bedsheet/cmo, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"vaR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/white, +/area/science/research) +"vaW" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"vbb" = ( +/turf/closed/wall, +/area/commons/dorms) +"vbE" = ( +/obj/structure/table/reinforced, +/obj/item/kirbyplants/photosynthetic{ + pixel_y = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"vbX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "cargodisposals" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"vct" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vcu" = ( +/obj/structure/table/reinforced, +/obj/item/folder, +/obj/item/stamp/denied{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stamp, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vcC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"vcI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vcU" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "sink"; + pixel_y = 28 + }, +/obj/machinery/camera{ + c_tag = "Bar Backroom"; + name = "service camera" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vcW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"vcZ" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"vdb" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Fore"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vdc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/medical/morgue) +"vdB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"vdP" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "atmoslock"; + name = "Atmospherics Lockdown Control"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vdR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space, +/area/space/nearstation) +"vdU" = ( +/obj/machinery/air_sensor/plasma_tank, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"vdX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vdY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/emergency_oxygen, +/turf/open/floor/plating, +/area/maintenance/port) +"vef" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosroom"; + name = "HoS Room Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"vej" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"vem" = ( +/obj/structure/table/reinforced, +/obj/item/folder/yellow, +/obj/item/lightreplacer, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vep" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/sign/poster/random{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"veA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"veG" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"veW" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/storage/box/prisoner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/transfer) +"vfd" = ( +/obj/structure/table, +/obj/item/folder, +/obj/item/pen, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"vfg" = ( +/obj/machinery/camera{ + c_tag = "Bridge - Starboard"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"vfD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"vfU" = ( +/obj/machinery/field/generator, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"vgb" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"vgh" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"vgr" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/closet/crate/silvercrate, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"vgy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vgB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/command/gateway) +"vgF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vgL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/iannewyear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"vgM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"vgX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vgY" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"vhb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vhj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Gravity Generator Chamber"; + req_access_txt = "19; 61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"vhl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vhn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"vhr" = ( +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"vhK" = ( +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/light/directional/south, +/obj/structure/table/reinforced, +/obj/item/gps, +/obj/item/gps, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"vhQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/food/grown/apple, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vhT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vhY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vic" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vih" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"viJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/qm) +"vja" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"vje" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"vjk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vjn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"vjp" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Auxiliary Port"; + req_access_txt = "24" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"vjr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vjv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/break_room) +"vjC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"vka" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space, +/area/space/nearstation) +"vkd" = ( +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"vko" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"vkv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"vkA" = ( +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Central Hallway - Medbay Aft"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vkF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vkS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vlm" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command) +"vlo" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/aisat) +"vlp" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"vlu" = ( +/obj/machinery/door/poddoor/atmos_test_room_mainvent_2, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"vlI" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"vlO" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vma" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vmj" = ( +/obj/structure/sign/painting/library{ + pixel_y = -32 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/wood, +/area/service/library) +"vmn" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"vmo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/storage/box/matches{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/lighter{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"vmK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"vnd" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"vne" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"vnj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/genetics) +"vnk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "O2 to Airmix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vno" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vnq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"vnC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Science Maintenance"; + req_access_txt = "47" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"vnN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"vnW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"voq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vox" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "cargodeliver"; + name = "delivery conveyor"; + pixel_x = -12 + }, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"voI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/gravity_generator) +"voU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"vpj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vpk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vpC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vpN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vpT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"vqd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Gravity Generator Room"; + req_access_txt = "19;23" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"vqp" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"vqG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vqH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vqQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/port) +"vrt" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"vru" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"vrR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"vrZ" = ( +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"vsj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"vsk" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/twenty, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engineering/atmos) +"vso" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vsy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing/horizontal, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/space, +/area/space/nearstation) +"vsF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vsK" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vsO" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vsQ" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"vsR" = ( +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vsT" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"vtq" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"vtx" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai_upload) +"vtF" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"vtP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vtW" = ( +/obj/structure/table/glass, +/obj/item/wrench, +/obj/item/clothing/suit/apron, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vuc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"vuZ" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vva" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"vvc" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vvf" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"vvn" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder, +/obj/item/pen, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"vvu" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vvC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vvJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/computer/prisoner/management, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"vwa" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vwg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input{ + dir = 8 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"vwn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/yellow/filled/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"vwQ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vwT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vwU" = ( +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"vxa" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"vxf" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"vxk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/east, +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"vxq" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"vxr" = ( +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"vxx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"vxF" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "5;6" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/morgue) +"vxT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vyd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vyf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vyo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vyv" = ( +/obj/machinery/plate_press, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"vyz" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Chief Medical Officer's Quarters"; + dir = 1; + name = "medbay camera"; + network = list("ss13","medbay") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"vyB" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"vyP" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"vyQ" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"vyR" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vzm" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"vzu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vzF" = ( +/obj/item/kirbyplants/random, +/obj/item/toy/plush/snakeplushie{ + name = "Quetzie" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vzJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vzL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + id_tag = "meddoor"; + name = "Medical Cell"; + req_access_txt = "63" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"vAb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"vAo" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"vAq" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vAu" = ( +/obj/effect/decal/cleanable/oil, +/obj/structure/reflector/double, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vAv" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vBh" = ( +/obj/structure/rack, +/obj/item/crowbar, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"vBj" = ( +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vBN" = ( +/obj/structure/urinal/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"vBR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library) +"vCj" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vCl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/space, +/area/space/nearstation) +"vCo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vCr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/virology) +"vCy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vCI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"vCJ" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"vDp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Customs Desk"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs/auxiliary) +"vDu" = ( +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vDy" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"vDG" = ( +/obj/machinery/meter, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vDL" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vEk" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/light/small/directional/south, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"vEA" = ( +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vEE" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"vEI" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Office"; + req_one_access_txt = "31;48" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vEK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vEY" = ( +/obj/effect/landmark/start/virologist, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"vFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"vFc" = ( +/turf/closed/wall, +/area/medical/surgery/room_b) +"vFd" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"vFD" = ( +/obj/vehicle/ridden/janicart, +/obj/item/storage/bag/trash, +/obj/item/key/janitor, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/service/janitor) +"vFE" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"vFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"vFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/flasher/directional/south{ + id = "Cell 4" + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"vGx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/closed/wall, +/area/commons/fitness/recreation) +"vGD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vGJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Cabin 1" + }, +/obj/effect/decal/cleanable/dirt/dust, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/dorms) +"vGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Chapel Morgue"; + dir = 8; + name = "chapel camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"vGQ" = ( +/obj/machinery/light_switch/directional/south{ + pixel_x = 6 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/south, +/obj/machinery/button/door/directional/south{ + id = "corporatelounge"; + name = "Corporate Lounge Shutters"; + pixel_x = -6 + }, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"vHf" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"vHh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vHp" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/toy/figure/botanist, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vHC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"vHF" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"vHM" = ( +/obj/structure/table, +/obj/item/stack/cable_coil, +/obj/item/assembly/igniter, +/obj/item/assembly/timer{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"vHS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/item/storage/bag/plants/portaseeder, +/obj/machinery/door/window/eastright, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vHV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/engineering/storage_shared) +"vHW" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vHY" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/wood, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/syringe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den/secondary) +"vHZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vIw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"vIy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"vIB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vIC" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/gps/engineering{ + gpstag = "CE0" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"vIE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"vIJ" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"vIQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vJc" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/space, +/area/engineering/atmos) +"vJj" = ( +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"vJu" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Nanite Lab Maintenance"; + req_access_txt = "47" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"vJB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/morgue{ + name = "Occult Study" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"vJF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vJL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/commons/storage/tools) +"vJW" = ( +/obj/structure/bookcase/random, +/obj/item/radio/intercom/directional/south{ + pixel_y = -38 + }, +/obj/machinery/button/door/directional/south{ + id = "councilblast"; + name = "Council Blast Doors" + }, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"vKa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Theater Backstage"; + req_access_txt = "46" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vKj" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/ai_monitored/turret_protected/aisat_interior) +"vKq" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"vKx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"vKD" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/east, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"vKE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"vKF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vKK" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vKM" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"vKU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/cockroach, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"vKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"vLa" = ( +/obj/structure/table/reinforced, +/obj/item/tank/internals/plasma, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"vLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vLj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vLl" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/service/library/abandoned) +"vLs" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"vLt" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "cargounload" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo/storage) +"vLu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vMb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"vMg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vMA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/checkpoint/customs) +"vME" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/flashlight/pen, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/cmo) +"vMF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"vMG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vMT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"vMV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vNm" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"vNp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"vNC" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"vND" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vNK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vNO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vNR" = ( +/turf/closed/wall, +/area/service/abandoned_gambling_den/secondary) +"vNS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"vOc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/hidden, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"vOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vOG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vOM" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vPe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 5; + id = "cargoload" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"vPg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vPq" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"vPs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"vPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/auxiliary) +"vPM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vQq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Warehouse Maintenance"; + req_access_txt = "31" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"vQD" = ( +/obj/structure/table, +/obj/item/toy/sword, +/obj/item/gun/ballistic/shotgun/toy/crossbow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vQE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"vQK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command) +"vQS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vRc" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vRV" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods{ + amount = 25 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/command/gateway) +"vSa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vSe" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vSm" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"vSn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"vSp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"vSw" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/camera{ + c_tag = "Engineering - Chief Engineer's Quarters"; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/button/door/directional/east{ + id = "ceprivacy"; + name = "Privacy Control"; + req_access_txt = "56" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"vSA" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/lighter, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"vSC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vSW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Testing Room"; + name = "atmospherics camera" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/dorms) +"vTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vTj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"vTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vTv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"vTw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vTy" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Atmospherics - Engine Access"; + name = "atmospherics camera" + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"vTC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"vTE" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/stamp/hos, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"vTH" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/newscaster/directional/south, +/obj/machinery/computer/bounty{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"vTW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Starboard Auxiliary Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"vUf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/circuit/green, +/area/ai_monitored/command/nuke_storage) +"vUp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell #3" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"vUq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vUy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"vVc" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"vVv" = ( +/obj/structure/table/wood, +/obj/item/clothing/under/rank/civilian/curator, +/obj/effect/spawner/random/maintenance/two, +/turf/open/floor/wood, +/area/service/library/abandoned) +"vVy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"vVz" = ( +/obj/machinery/meter, +/obj/machinery/door/window/westright, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"vVD" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Starboard"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vVF" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"vVO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"vWc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "AI Satellite - Fore Starboard"; + dir = 4; + name = "ai camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"vWi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"vWk" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/trash/mess, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"vWl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/theater/abandoned) +"vWo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vWE" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vWJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"vWL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"vXh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vXq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Cooling Bypass" + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"vXy" = ( +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"vXz" = ( +/turf/closed/wall, +/area/security/prison/safe) +"vXB" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vXE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vYd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"vYj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vYl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vYr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/hunter, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vYt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vYG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"vYO" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/dirt, +/obj/item/food/chococoin, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vYY" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"vZj" = ( +/turf/closed/wall/r_wall, +/area/command/gateway) +"vZl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vZt" = ( +/obj/machinery/mecha_part_fabricator/engi, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"vZy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"vZG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"vZJ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vZQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"wae" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"wao" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 10 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"wav" = ( +/obj/machinery/door/airlock/external{ + name = "External Docking Port" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"waK" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_one_access_txt = "13; 24; 10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/fore) +"waV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wbb" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"wbt" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/structure/sign/nanotrasen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner, +/area/commons/fitness/recreation) +"wbv" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Fore"; + name = "engineering camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"wbD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wbE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wbH" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/carpet, +/area/service/chapel/office) +"wcg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"wcj" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wcq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plating, +/area/cargo/sorting) +"wcu" = ( +/obj/item/assembly/timer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/assembly/timer, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"wcz" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/bar) +"wcE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"wcL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"wcX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wde" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"wdi" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell #6" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"wdC" = ( +/obj/item/kirbyplants/random, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"wdO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"wei" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/white, +/area/science/misc_lab/range) +"wel" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"wew" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"weH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"weP" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"weV" = ( +/obj/machinery/computer/security, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"weZ" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/item/storage/box/papersack{ + icon_state = "paperbag_NanotrasenStandard_closed" + }, +/obj/effect/turf_decal/bot, +/obj/item/book/manual/wiki/cooking_to_serve_man, +/obj/item/reagent_containers/food/condiment/flour, +/turf/open/floor/plasteel, +/area/service/kitchen) +"wfe" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"wfi" = ( +/obj/machinery/door/window/brigdoor/security/cell/westright{ + id = "brig1"; + name = "Cell 1" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"wfI" = ( +/obj/structure/table/wood, +/obj/item/electronics/airalarm, +/obj/item/circuitboard/computer/med_data, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/electronic_marketing_den) +"wfK" = ( +/obj/structure/table/wood, +/obj/machinery/requests_console/directional/west{ + department = "Theater"; + name = "Theater Requests Console" + }, +/obj/item/lipstick/random{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/lipstick/random, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/service/theater) +"wfN" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/morgue) +"wfX" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"wgo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Departures Hallway - Center"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"wgv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"whb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"who" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"whq" = ( +/obj/structure/table/wood, +/obj/item/lighter, +/turf/open/floor/carpet, +/area/command/corporate_showroom) +"whP" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "foreport"; + name = "Port Bow Solar Control" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"whY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wic" = ( +/obj/structure/closet/radiation, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wii" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Fore Primary Hallway" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wip" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"wiy" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/item/crowbar/red, +/obj/item/stack/sheet/mineral/plasma{ + amount = 20 + }, +/obj/item/gps/engineering, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"wiF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Lockerroom" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wiP" = ( +/obj/structure/bookcase/random, +/turf/open/floor/wood, +/area/command/meeting_room/council) +"wjc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wji" = ( +/obj/structure/table, +/obj/item/clothing/under/suit/sl, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wjr" = ( +/obj/machinery/door/airlock/hatch{ + name = "MiniSat Exterior Access"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"wjz" = ( +/obj/effect/landmark/blobstart, +/obj/item/beacon, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/misc_lab) +"wjF" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"wjG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wjL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wjN" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"wjP" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"wjS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/effect/spawner/random/maintenance/two, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wjV" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wjX" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wka" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north{ + broadcasting = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wkd" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wke" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"wkv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/structure/closet/crate/freezer/blood, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/iv_drip_item, +/obj/item/iv_drip_item, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"wkG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"wkR" = ( +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"wlf" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/service/chapel/office) +"wlp" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/white, +/area/service/kitchen) +"wlq" = ( +/turf/closed/wall/r_wall, +/area/lawoffice) +"wlE" = ( +/obj/structure/table/wood/poker, +/obj/effect/spawner/random/maintenance, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den) +"wlV" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wmq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Bridge - Gateway Chamber"; + dir = 8; + name = "command camera" + }, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"wmt" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"wmw" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wmA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wmI" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wmL" = ( +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"wnb" = ( +/obj/machinery/field/generator, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wnk" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wnm" = ( +/obj/effect/spawner/random/vending/colavend, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"wnJ" = ( +/obj/structure/table/reinforced, +/obj/item/ai_module/reset, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"wnQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/price_controller{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"wnT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"wnW" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"wof" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"woh" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wow" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/service/janitor) +"woz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"woF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"woL" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"woP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wpt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"wpu" = ( +/obj/machinery/light/directional/east, +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"wpW" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"wqc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wqf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wqo" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wqv" = ( +/obj/structure/table/wood, +/obj/machinery/keycard_auth/directional/west, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"wqK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"wqW" = ( +/obj/machinery/button/flasher{ + id = "Cell 6"; + name = "Prisoner Flash"; + pixel_x = -25 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wra" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wrg" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wrv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"wrw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"wrG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"wrL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"wrV" = ( +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_x = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Air to External Air Ports" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wrY" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos/upper) +"wsg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/aft) +"wss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wsA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wsK" = ( +/obj/machinery/vendor/exploration, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"wsL" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/main) +"wsM" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wsZ" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/service/abandoned_gambling_den/secondary) +"wtc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/service/library/abandoned) +"wtm" = ( +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wtr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wtv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/directional/south, +/turf/open/space, +/area/aisat) +"wtx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"wtA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"wtC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wub" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"wuy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wuB" = ( +/obj/structure/safe, +/obj/item/clothing/neck/stethoscope, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "\improper A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/item/stack/spacecash/c500, +/obj/machinery/light/small/directional/south, +/obj/item/gun/ballistic/automatic/pistol/deagle, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/ammo_box/magazine/m50, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"wuK" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/toggle/lawyer/purple, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/item/clothing/under/rank/civilian/lawyer/female, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet, +/area/commons/dorms) +"wuN" = ( +/obj/structure/table/reinforced, +/obj/item/flashlight/lamp, +/obj/machinery/camera{ + c_tag = "Security - Interrogation"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1423; + listening = 0; + name = "Interrogation Intercom" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"wuX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"wva" = ( +/obj/structure/table/reinforced, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"wve" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"wvg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/hostile/lizard{ + name = "Eats-The-Roaches"; + real_name = "Wags-His-Tail" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"wvs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"wvA" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Observatory"; + req_access_txt = "13" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"wvB" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/commons/dorms) +"wvE" = ( +/obj/machinery/door/airlock/medical{ + name = "Psychology"; + req_access_txt = "70" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/psychology) +"wvG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"wvH" = ( +/obj/machinery/light/directional/west, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #3" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wvM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + id_tag = "Toilet1"; + name = "Toilet Unit 1" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"wvP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wvR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage) +"wvS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wvX" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"wwH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wwY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wxb" = ( +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"wxi" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/wiki/tcomms, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"wxO" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Fore Port"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wxQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/qm, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"wxV" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"wyv" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance, +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/tools) +"wyK" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door/directional/east{ + id = "brigprison"; + name = "Prison Lockdown"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wyU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wyW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/science/research) +"wzi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wzs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wzw" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"wzO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/spawner/random/entertainment/arcade, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wzP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"wzU" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket/letterman_nanotrasen, +/obj/item/clothing/suit/toggle/lawyer, +/obj/item/clothing/under/costume/kilt, +/obj/item/clothing/head/beret, +/obj/machinery/airalarm/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/wood, +/area/commons/dorms) +"wzW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wzY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Xenobiology Maintenance"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"wAa" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den/secondary) +"wAi" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wAj" = ( +/obj/structure/table, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + layer = 3.01; + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"wAt" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wAy" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"wAA" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/science/misc_lab/range) +"wAZ" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wBp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/wood, +/area/commons/dorms) +"wBS" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"wBW" = ( +/obj/structure/closet/secure_closet/freezer/kitchen/maintenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wCh" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wCk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wCo" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"wCM" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/commons/vacant_room/office) +"wCO" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"wCU" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 21 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"wDe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wDi" = ( +/obj/structure/table, +/obj/item/book/manual/chef_recipes, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/storage/fancy/egg_box, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"wDl" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wDB" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/prison) +"wDH" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"wEb" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"wEc" = ( +/obj/structure/bookcase, +/obj/machinery/light/directional/north, +/obj/structure/sign/plaques/kiddie/badger{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"wEj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"wEl" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"wEm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Surgery Observation" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/medical/surgery) +"wEq" = ( +/obj/item/retractor, +/obj/item/hemostat, +/obj/item/cautery, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"wEA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "councilblast"; + name = "Council Chambers Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/meeting_room/council) +"wEL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window{ + name = "Deliveries"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wER" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchencounter"; + name = "Kitchen Counter Shutters" + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"wFe" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/security/prison) +"wFi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"wFy" = ( +/obj/structure/chair/sofa/right{ + dir = 8 + }, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/library) +"wFK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"wFR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"wGx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Atmospherics" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wGJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wGN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library/abandoned) +"wGS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wGU" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_access_txt = "47" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/research) +"wGX" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"wHb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/brown/visible, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/engine_room/external) +"wHh" = ( +/obj/structure/rack, +/obj/item/electronics/apc, +/obj/item/electronics/airalarm, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"wHk" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/corporate_showroom) +"wHq" = ( +/obj/machinery/hydroponics/constructable, +/obj/structure/sign/nanotrasen{ + pixel_y = -32 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wHB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wHT" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"wIn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage_shared) +"wIs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wII" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/hallway/primary/aft) +"wIM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"wIR" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/sunflower, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"wIU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/obj/item/toy/plush/lizardplushie/space{ + name = "Meets-the-Ore" + }, +/turf/open/space/basic, +/area/space/nearstation) +"wJa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wJe" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/medigel/aiuri{ + pixel_x = 6 + }, +/obj/item/reagent_containers/medigel/libital, +/obj/item/reagent_containers/medigel/sterilizine{ + pixel_x = -6 + }, +/obj/item/reagent_containers/hypospray/medipen/blood_boost{ + pixel_y = 10 + }, +/obj/item/reagent_containers/hypospray/medipen/blood_boost{ + pixel_y = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/main/sb_med) +"wJk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Courtroom" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"wJo" = ( +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wJz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wJU" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wJW" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"wKj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"wKs" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"wKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wLb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"wLv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"wLB" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/bomj, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den) +"wLP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"wLV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"wLZ" = ( +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wMd" = ( +/obj/machinery/camera{ + c_tag = "Arrivals Hallway - Aft"; + dir = 8; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"wMD" = ( +/obj/item/kirbyplants/random, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"wMG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"wMU" = ( +/obj/machinery/button/flasher{ + id = "Cell 5"; + name = "Prisoner Flash"; + pixel_x = 25; + pixel_y = 7 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/button/door/directional/east{ + id = "permashut5"; + name = "Cell Lockdown Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wNc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Turbine" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wNi" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"wNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"wNu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"wNw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "MedbayFoyer"; + name = "Medbay Doors Control"; + normaldoorcontrol = 1; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/aft) +"wNz" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics - Mix Cell"; + dir = 1; + name = "atmospherics camera" + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"wNK" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"wNO" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"wNS" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"wNY" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"wOm" = ( +/obj/structure/chair/stool/bar, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wOu" = ( +/turf/closed/wall, +/area/hallway/primary/central/north) +"wOD" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/space, +/area/space/nearstation) +"wOH" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wPe" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/machinery/camera{ + c_tag = "Permabrig - Cell 4"; + dir = 8; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"wPF" = ( +/turf/open/floor/plasteel/grimy, +/area/service/bar/atrium) +"wPH" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"wPJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "8" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "rdtoxins"; + name = "Toxins Lab Shutters" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"wPK" = ( +/obj/machinery/door/airlock{ + id_tag = "AuxToilet1"; + name = "Toilet Unit 1" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/toilet/auxiliary) +"wPL" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=hall6"; + location = "hall5" + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"wPU" = ( +/obj/machinery/photocopier, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"wQc" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/carpet, +/area/command/heads_quarters/captain) +"wQf" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/item/toy/figure/miner, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/west{ + pixel_x = -42 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wQo" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/port) +"wQx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/flasher/directional/south{ + id = "AI"; + pixel_x = -26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"wQC" = ( +/obj/machinery/door/window/southleft, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"wQI" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/shoes/magboots, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/storage) +"wQK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"wQY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wRg" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"wRt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wRv" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/theater/abandoned) +"wRw" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"wSb" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"wSu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wSx" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"wSz" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"wSB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wSK" = ( +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wSL" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plasteel/solarpanel, +/area/solars/starboard/aft) +"wSM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wTa" = ( +/obj/machinery/computer/nanite_cloud_controller, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"wTb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/turntable, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"wTf" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/disposal/incinerator) +"wTm" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"wTo" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/work_for_a_future{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"wTq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"wTr" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"wTx" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"wTy" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"wTL" = ( +/obj/structure/table, +/obj/item/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light_switch/directional/south{ + pixel_x = -20 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"wTN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wTY" = ( +/obj/structure/table/wood, +/obj/item/folder/blue, +/obj/item/pen, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"wUj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy"; + req_access_txt = "5; 69" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/pharmacy) +"wUo" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"wUz" = ( +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/electrical, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/bot, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/storage_shared) +"wUF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wUH" = ( +/obj/machinery/camera{ + c_tag = "Vacant Commissary"; + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"wUY" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/service/kitchen) +"wVf" = ( +/obj/structure/table/wood, +/obj/machinery/light/directional/south, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/computer/security/telescreen/vault{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"wVj" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"wVo" = ( +/obj/structure/bed/dogbed/ian, +/obj/machinery/airalarm/directional/east, +/mob/living/simple_animal/pet/dog/corgi/ian, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"wVB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"wVG" = ( +/obj/structure/table/reinforced, +/obj/item/stack/rods/fifty, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/storage) +"wVN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"wWb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/stool/bar, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"wWd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"wWh" = ( +/obj/structure/chair/wood, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/service/chapel/main) +"wWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"wWo" = ( +/turf/closed/wall, +/area/space) +"wWp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"wWB" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"wWN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"wWP" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"wXg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/atmospheric_technician, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wXj" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"wXw" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"wXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"wXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wXV" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wXX" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/brig) +"wXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"wYe" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wYk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"wYm" = ( +/obj/structure/sign/poster/random, +/turf/closed/wall, +/area/service/bar/atrium) +"wYC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "cargodeliver" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/cargo/sorting) +"wYE" = ( +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"wYI" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/solars/port/aft) +"wZs" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"wZS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"wZU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"wZX" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"xac" = ( +/obj/structure/sign/directions/evac{ + pixel_y = -8 + }, +/obj/structure/sign/directions/science, +/obj/structure/sign/directions/engineering{ + pixel_y = 8 + }, +/turf/closed/wall, +/area/commons/toilet/auxiliary) +"xaj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor_switch/oneway{ + id = "cargodisposals"; + name = "Trash Filter Switch"; + pixel_x = -1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xao" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/atmos) +"xaw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"xax" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xaC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"xaG" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"xaJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"xaP" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xaQ" = ( +/obj/machinery/air_sensor/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"xbc" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xbm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"xbp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 1; + req_access_txt = "48" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xbK" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xbZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xck" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"xcp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"xcq" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"xcs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engineering/atmos) +"xcA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"xcD" = ( +/obj/structure/table/wood, +/obj/item/folder/yellow{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"xcM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xcQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"xcV" = ( +/obj/item/kirbyplants/random, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"xdx" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"xdD" = ( +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"xdM" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet, +/area/command) +"xdX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"xek" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Theater Backstage"; + req_access_txt = "46" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"xem" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"xeo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"xeq" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plating, +/area/security/range) +"xev" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"xeB" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"xeC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"xeE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/execution/transfer) +"xeK" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/white, +/area/medical/storage) +"xeL" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"xeU" = ( +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine, +/area/engineering/supermatter) +"xfl" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xgq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xgR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xha" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"xhe" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xhr" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/space, +/area/engineering/atmos) +"xhG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"xie" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"xih" = ( +/obj/structure/table/reinforced, +/obj/item/folder/white, +/obj/item/stamp/rd, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/command/heads_quarters/rd) +"xim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + id = "cargodisposals" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/cargo/sorting) +"xio" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engineering/atmos/upper) +"xiu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xiD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plating, +/area/engineering/engine_room/external) +"xiH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plating, +/area/commons/toilet/auxiliary) +"xiK" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/showcase/machinery/implanter{ + layer = 2.7; + pixel_y = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"xiQ" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=engi1"; + location = "hall3" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"xiV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/space, +/area/engineering/atmos) +"xiY" = ( +/obj/item/kirbyplants/random, +/obj/structure/sign/poster/official/report_crimes{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/lawoffice) +"xjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xjd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"xji" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xjq" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/red, +/obj/item/stamp/law, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"xjy" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xjz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Break Room"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"xjI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xjJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"xjT" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xjZ" = ( +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"xkU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xle" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xlj" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xlt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/morgue) +"xly" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"xlE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/dorms) +"xlG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"xmf" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xmi" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/abandoned_gambling_den/secondary) +"xmt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"xmP" = ( +/turf/open/floor/wood, +/area/commons/dorms) +"xmR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xmS" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/showcase/mecha/marauder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/corporate_showroom) +"xmT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"xnj" = ( +/obj/machinery/light/directional/south, +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xno" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xnH" = ( +/obj/machinery/light/directional/west, +/obj/machinery/disposal/bin, +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Library Backroom"; + dir = 4; + name = "library camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"xnL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/main) +"xnP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"xnT" = ( +/turf/closed/wall/r_wall, +/area/security/main/sb_med) +"xog" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/space, +/area/space/nearstation) +"xon" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xot" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"xox" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"xoQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"xpb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/gateway) +"xpg" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xpj" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"xpm" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/brig) +"xps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard) +"xpx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xpD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xpP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"xpQ" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xpW" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/engineering/storage/tech) +"xqe" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "Theater" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/theater) +"xqi" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/lawoffice) +"xqx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xqL" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"xqS" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"xqV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/obj/machinery/button/door/atmos_test_room_mainvent_1, +/turf/closed/wall/r_wall, +/area/engineering/atmos/upper) +"xra" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xre" = ( +/obj/structure/table/wood, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xrw" = ( +/obj/machinery/exodrone_launcher, +/obj/effect/turf_decal/box, +/turf/open/floor/plating, +/area/cargo/warehouse) +"xrz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xrC" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"xsl" = ( +/obj/structure/closet/secure_closet/exile, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/gateway) +"xsm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/chapel/office) +"xsO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"xsP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xsQ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Permabrig Visitation"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xtf" = ( +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/service/library/abandoned) +"xtg" = ( +/obj/structure/table/reinforced, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/engineering/storage) +"xth" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xtt" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xty" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"xtC" = ( +/obj/item/radio/intercom/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xtH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xub" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xud" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/port/fore) +"xue" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"xuj" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xul" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"xuC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xuD" = ( +/obj/structure/bed, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet, +/area/commons/dorms) +"xuO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"xuZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xvf" = ( +/turf/closed/wall/r_wall, +/area/medical/chemistry) +"xvk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xvm" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/service/library) +"xvp" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/item/pai_card, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"xvC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xvI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xvO" = ( +/obj/structure/table, +/obj/item/toy/cards/deck, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xvS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xvZ" = ( +/obj/structure/table, +/obj/item/storage/photo_album/prison, +/obj/item/camera, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"xwx" = ( +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"xwz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/port) +"xwC" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xwQ" = ( +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xwV" = ( +/obj/effect/spawner/xmastree, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet, +/area/service/bar/atrium) +"xwZ" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"xxb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/service/library/abandoned) +"xxj" = ( +/obj/structure/table, +/obj/item/trash/raisins, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"xxn" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library/abandoned) +"xxr" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Engineering - Foyer"; + dir = 4; + name = "engineering camera" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xxt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/brig) +"xxI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xyb" = ( +/obj/machinery/camera{ + c_tag = "Cargo - Quartermaster's Office"; + dir = 1; + name = "cargo camera" + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xyp" = ( +/obj/machinery/computer/upload/borg{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"xyI" = ( +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "gatewayshutters"; + name = "Gateway Shutters" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"xzc" = ( +/obj/structure/table, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xzd" = ( +/obj/machinery/rnd/server, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden{ + dir = 9 + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"xze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research/abandoned) +"xzt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xzu" = ( +/obj/machinery/piratepad/civilian, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xzy" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/command/teleporter) +"xzz" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/office) +"xzK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"xzY" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/surgical_drapes, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xzZ" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"xAi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"xAE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/paper_bin/carbon, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"xAW" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/shuttle_flight/mining/common, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xAZ" = ( +/obj/effect/landmark/start/paramedic, +/obj/structure/cable, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"xBa" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"xBb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"xBe" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/service/kitchen) +"xBf" = ( +/obj/item/beacon, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xBo" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"xBA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"xCb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"xCc" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xCi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"xCx" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"xCD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/port/aft) +"xCG" = ( +/mob/living/simple_animal/hostile/cockroach, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xDc" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xDn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Shared Engineering Storage"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"xDq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics Storage"; + req_access_txt = "24" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xDw" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "Medbay Junction"; + sortType = 9 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"xDI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/transit_tube) +"xDZ" = ( +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"xEm" = ( +/obj/item/chair/plastic, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"xEt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/aft) +"xEC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/corner, +/area/maintenance/department/electrical) +"xED" = ( +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/transit_tube) +"xEG" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Engine Cooling Bypass" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible/layer4, +/turf/open/floor/plasteel, +/area/engineering/engine_room/external) +"xET" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"xFa" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"xFk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/kitchen) +"xFl" = ( +/obj/machinery/vendor/mining, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xFo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xFt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"xFD" = ( +/obj/effect/spawner/random/vending/snackvend, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xFF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoshutter"; + name = "CMO Office Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"xFP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"xGe" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"xGl" = ( +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"xGs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library) +"xGJ" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "Hydroponics Junction"; + sortType = 21 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xHb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xHn" = ( +/turf/closed/wall, +/area/commons/storage/tools) +"xHD" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"xHN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xHT" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"xHZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"xIn" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"xIG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_one_access_txt = "72" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"xIW" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"xJd" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Aft Port"; + dir = 4; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/south) +"xJg" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/grimy, +/area/commons/vacant_room/office) +"xJi" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xJA" = ( +/obj/machinery/atmospherics/miner/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"xJD" = ( +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/structure/table, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xJI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/obj/item/mop, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = -32 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel, +/area/service/janitor) +"xJN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"xKd" = ( +/obj/effect/landmark/start/research_director, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/rd) +"xKt" = ( +/obj/structure/filingcabinet/employment, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/wood, +/area/lawoffice) +"xKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/electrical) +"xKD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port) +"xKG" = ( +/turf/closed/wall, +/area/engineering/transit_tube) +"xKL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xKQ" = ( +/obj/item/kirbyplants/random, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 6 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"xKY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"xLd" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"xLf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xLk" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmoslock"; + name = "Atmospherics Lockdown Blast door" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xLu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"xMc" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"xMe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port/fore) +"xMf" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchenside"; + name = "Kitchen Hall Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/kitchen) +"xMl" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/main) +"xMn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port) +"xMD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"xNd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xNh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/maintenance/port) +"xNl" = ( +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/vacant_room/office) +"xNn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/toilet/auxiliary) +"xNr" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/surgery/room_b) +"xNJ" = ( +/obj/machinery/light/directional/south, +/obj/structure/table/wood, +/obj/item/folder, +/obj/item/laser_pointer{ + pixel_x = 3 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"xNR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xNT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"xNU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xOc" = ( +/obj/machinery/door/window/brigdoor{ + name = "Creature Pen"; + req_access_txt = "47" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "xeno7"; + name = "Creature Cell #7" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"xOe" = ( +/obj/structure/rack, +/obj/item/stack/sheet/iron{ + amount = 30 + }, +/obj/item/stack/package_wrap, +/obj/item/stack/sheet/glass{ + amount = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/construction) +"xOf" = ( +/obj/structure/table/wood, +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 4.5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"xOo" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/science/research) +"xOr" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xOx" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/toy/figure/hos, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xOD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xOF" = ( +/obj/structure/fireplace, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/corporate_showroom) +"xOM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"xOV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"xPp" = ( +/obj/structure/punching_bag, +/turf/open/floor/plating, +/area/security/prison) +"xPy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/glass, +/area/maintenance/space_hut/observatory) +"xPC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"xPF" = ( +/turf/closed/wall/r_wall, +/area/engineering/engine_room/external) +"xPI" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/fancy/candle_box, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/service/theater/abandoned) +"xPJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/white, +/area/medical/pharmacy) +"xPL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"xPP" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/starboard/aft) +"xPU" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"xQg" = ( +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/lightreplacer, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xQh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Recovery Room" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery) +"xQz" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xQH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"xRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xRN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/theater) +"xRQ" = ( +/obj/item/kirbyplants/random, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/storage/tech) +"xRS" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel, +/area/engineering/gravity_generator) +"xRY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xSk" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"xSu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Warden Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"xSB" = ( +/obj/item/kirbyplants/random, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Quarters"; + dir = 1; + name = "command camera" + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain/private) +"xSG" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xSY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xTa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xTi" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command) +"xTw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"xTx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"xTD" = ( +/obj/structure/chair/stool/bar, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/abandoned_gambling_den/secondary) +"xTK" = ( +/obj/structure/grille, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"xTN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xUm" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"xUH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/service/bar/atrium) +"xUM" = ( +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xUO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/library) +"xVh" = ( +/obj/machinery/sparker/directional/west{ + id = "justicespark" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"xVm" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xVo" = ( +/turf/open/floor/carpet, +/area/commons/dorms) +"xVy" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xVL" = ( +/obj/effect/turf_decal/trimline/blue/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/paramedic) +"xVN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"xVU" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"xVV" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft 2"; + dir = 1; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"xWn" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hop) +"xWq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xWB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xWJ" = ( +/obj/structure/frame/computer, +/obj/item/stack/cable_coil, +/turf/open/floor/wood, +/area/service/electronic_marketing_den) +"xWM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"xXn" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"xXo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"xXs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"xXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/locker) +"xXy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 4 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"xXB" = ( +/obj/structure/table/wood, +/obj/item/clothing/mask/fakemoustache, +/obj/item/cane, +/obj/structure/sign/poster/random{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"xXC" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"xXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xYc" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/commons/dorms) +"xYd" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain) +"xYr" = ( +/obj/machinery/light_switch/directional/west, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/storage_shared) +"xYt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/syndicatebomb/training, +/obj/structure/table, +/obj/item/wirecutters, +/obj/item/screwdriver, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/main) +"xYA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xYM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/research) +"xYN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/hallway/primary/central/south) +"xYP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xZb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/binary/pump, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"xZn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"xZy" = ( +/obj/structure/table/reinforced, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/southright{ + dir = 1; + name = "Security Desk"; + pixel_y = 8; + req_access_txt = "63" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/checkpoint/escape) +"xZz" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/corporate_showroom) +"xZJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xZM" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"xZR" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xZT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"xZZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"yaC" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/briefcase, +/obj/item/cane, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet, +/area/commons/dorms) +"yaE" = ( +/obj/item/kirbyplants/random, +/turf/open/floor/wood, +/area/commons/dorms) +"yaL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"ybg" = ( +/obj/machinery/camera{ + c_tag = "Central Hallway - Center"; + name = "hallway camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/command) +"ybh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/nanite) +"ybi" = ( +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/hos) +"ybl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ybr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/closet/crate, +/turf/open/space/basic, +/area/space/nearstation) +"ybK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/preopen{ + id = "xeno7"; + name = "Creature Cell #7" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"ybP" = ( +/obj/structure/table/reinforced, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ybZ" = ( +/turf/open/floor/wood, +/area/service/library) +"ycd" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ycm" = ( +/obj/item/kirbyplants/random, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"yct" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/engineering/atmos/upper) +"ycz" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/service/library) +"ycA" = ( +/obj/structure/sign/directions/engineering{ + desc = "A sign that shows there are doors here. There are doors everywhere!"; + icon_state = "doors"; + name = "WARNING: EXTERNAL AIRLOCK"; + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Solar - Fore Port"; + name = "solar camera" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ycB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Auxilliary Surgical Theatres"; + req_access_txt = "45" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/surgery/room_b) +"ycC" = ( +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ycI" = ( +/obj/structure/table/reinforced, +/obj/machinery/status_display/evac/directional/north, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/command) +"ycK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"ycM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"ycV" = ( +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ydd" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/science/misc_lab) +"ydg" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigprison"; + name = "Prison Blast door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ydq" = ( +/obj/structure/frame/machine, +/obj/machinery/light/directional/north, +/turf/open/floor/engine, +/area/engineering/engine_room/external) +"yds" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ydF" = ( +/obj/structure/dresser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater/abandoned) +"ydQ" = ( +/obj/machinery/door/window/brigdoor/westleft{ + name = "Captain's Bedroom"; + req_access_txt = "20" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/command/heads_quarters/captain/private) +"ydT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/medical) +"yec" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/cargo/warehouse) +"yek" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/kirbyplants/random, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"yew" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel{ + heat_capacity = 1e+006 + }, +/area/commons/fitness/recreation) +"yeH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "MiniSat Antechamber"; + req_access_txt = "16" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"yeR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"yfc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"yfe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"yfl" = ( +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel, +/area/security/prison) +"yfF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"yfH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"yfL" = ( +/obj/machinery/door/window/eastleft, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"yge" = ( +/obj/structure/table/reinforced, +/obj/item/folder/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"ygs" = ( +/obj/effect/landmark/start/bartender, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/service/bar) +"ygx" = ( +/obj/structure/table/wood, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/maintenance/two, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"ygI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"yhE" = ( +/obj/structure/table/wood, +/obj/item/instrument/violin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"yhJ" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"yhN" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"yhU" = ( +/obj/structure/table/wood, +/obj/item/taperecorder{ + pixel_x = 3 + }, +/obj/item/storage/box/deputy, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"yhV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"yhZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"yif" = ( +/obj/item/stack/cable_coil, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/solars/port/aft) +"yin" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/toilet/restrooms) +"yiv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"yiD" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"yiE" = ( +/obj/item/kirbyplants/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/service/hydroponics/garden/abandoned) +"yiM" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plating, +/area/service/library/abandoned) +"yiY" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/aisat) +"yjc" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/science/research/abandoned) +"yjg" = ( +/obj/machinery/computer/piratepad_control/civilian{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central/north) +"yjE" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"yjF" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner, +/area/engineering/atmos) +"yjN" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine Room"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engineering/main) +"yjY" = ( +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ykf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ykg" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/cmo) +"ykY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/visible, +/turf/open/floor/plasteel/dark/corner, +/area/engineering/atmos) +"yli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants/random, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library/abandoned) +"yll" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ylo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos/upper) +"ylr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution) +"yls" = ( +/obj/structure/table/wood, +/obj/item/camera_film{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/camera_film, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/wood, +/area/commons/vacant_room/office) +"ylt" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ylX" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/engineering/main) +"ylY" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"yma" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ymb" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"yme" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +bmD +bpF +bmD +bpF +bmD +bpF +bmD +bpF +bmD +bpF +bmD +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +bkE +glT +qfd +tim +qfd +iXt +sXy +ljl +qfd +qfd +qfd +uzn +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +aad +rSK +rSK +rSK +rSK +bkF +vgh +bNu +bmH +bRx +pmI +wae +hwU +brL +bmH +boj +vgh +brM +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +bpF +bmD +bmD +bpF +bmD +bmD +bpF +bmD +bmD +bpF +bmD +bpF +boe +vgh +brO +bPC +bPC +bPC +sAG +bXU +bPC +bPC +bRO +vgh +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkF +uSH +hzd +hzd +hzd +hzd +uwg +auY +qfd +qfd +qfd +qfd +qfd +qfd +tsA +brN +bPC +bRy +tOg +dVq +bXV +tte +bPC +bkE +vgh +brM +rSK +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brL +btF +bmH +bmH +bmH +btF +bmH +bmH +btF +bmH +bmH +btF +bLw +aaa +bPC +bRz +koI +mlC +bXW +caa +bPC +bkE +vgh +chh +bmD +bpF +bmD +bmD +bpF +bmD +bpF +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brM +aad +aad +aad +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +bPC +bRA +bTq +wmL +caf +cab +bPC +bRO +nUj +qfd +qfd +iMp +hzd +agX +hzd +hzd +hod +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +bkF +gUo +brN +aad +aad +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +bPC +bRB +bTq +xqL +caf +cac +bPC +aaa +btF +bmH +bmH +btF +bmH +bmH +bpN +cqj +gUo +brM +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brN +aaa +btH +btH +btH +byS +rgx +btH +bEf +btH +nhp +bAG +bLx +btH +bPC +bRC +bTs +isg +bXY +cad +bPC +cdt +cdt +chi +chi +cdt +cdt +aad +aad +bkF +gUo +brN +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +bkF +gUo +brO +aad +btH +btH +bxv +byT +bAz +bCq +bEg +bCq +bCq +bJF +bCq +bxv +bPC +bRD +bPC +yeH +bPC +bPC +bPC +cdt +cfs +chj +cdv +ckn +cdt +cdt +aad +bkE +gUo +brM +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +bmD +boe +gUo +brN +aaa +btH +btH +bxw +bCu +mFB +bCu +bEl +abJ +abJ +bcG +abJ +bNA +bPC +bKJ +bYa +nAo +bYa +bRE +bRD +eWf +cft +cho +ciR +cft +clM +cdt +cdt +bkE +gUo +bNB +bpF +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +hXG +mSA +kYS +oiZ +sSb +sSb +fZp +hqR +aBN +xaC +jHu +oGN +jCf +jHu +jHu +abJ +bNw +bPC +bRF +bTu +sRS +bYe +cae +bPC +cdw +cfu +ckp +gna +ckp +clN +cnu +cdt +bRO +nvW +mvj +drB +brM +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkF +nvW +lDh +vvf +brN +btH +btH +bwo +bCq +abJ +xaC +btH +aby +btH +btH +wnT +abJ +bNx +bPC +bRG +bYe +eFb +bYe +caf +bPC +cft +cfu +cho +gih +cfu +cft +cnv +cdt +bkE +nvW +fiP +vvf +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +bkE +nvW +upg +oJI +wtv +btH +btH +bwp +bxz +kag +xaC +bCt +abz +bFT +btH +pBK +trT +nQm +mpu +xue +bhn +qYD +pFl +bvF +gnv +mru +mru +gLm +bkJ +vtx +kmX +vbE +sGj +vCl +rrp +rFT +vvf +brM +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkF +nvW +lDh +vvf +brN +btH +btH +bwq +bxy +bCu +xaC +btH +abA +btH +btH +brB +bCu +oYv +bPC +wka +bYe +eFb +bYe +cah +bPC +cdz +cfu +cho +xyp +cfu +cft +cnx +cdt +bkE +nvW +rLT +vvf +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +yiY +iLT +sYn +wOD +uJH +uJH +uJH +nav +hGF +xaC +nav +nav +aRF +nav +nav +bCu +bCq +bPH +bRF +bYe +vKj +bYf +cai +bPC +cdw +cfu +ckp +ggn +cfu +clP +cny +cdt +bRO +nvW +lMm +wHT +brM +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +bmH +boj +gUo +brN +aaa +btH +btH +bxw +bCu +nnp +bCu +bEl +bCu +bCu +orN +bCu +bNA +bPC +sES +bYg +nAo +bYg +caj +bPC +cdA +cft +cho +ciX +cft +clQ +cdt +cdt +bkE +gUo +bNu +bpN +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +bkF +gUo +brO +aad +btH +btH +bxv +bzb +bAF +bCq +bEg +bCq +bCq +bJM +bCq +bxv +bPC +bRD +bPC +qQH +bPC +bPC +bPC +cdt +cfz +chq +cdv +ckt +cdt +cdt +aad +bkE +gUo +brM +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brN +aaa +btH +btH +btH +bzc +tbk +btH +bEm +btH +bHM +bJN +bAy +btH +bPC +bRF +bTB +isg +bYh +cak +bPC +cdt +cdt +chi +chi +cdt +cdt +aad +aad +bkF +gUo +brN +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +bkE +gUo +brN +aad +aad +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +bPC +bRK +bTC +tyN +caf +cal +bPC +aaa +btJ +bmD +bmD +btJ +bmD +bmD +bpF +cqn +gUo +brM +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brM +aad +aad +aad +btH +btH +btH +btH +btH +btH +btH +btH +btH +btH +bPC +bRL +caf +vxr +caf +cam +bPC +bRO +glT +qfd +qfd +iMp +hzd +uDo +hzd +hzd +wjN +brN +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkE +gUo +brS +btJ +bmD +bmD +bmD +btJ +bmD +bmD +btJ +bmD +bmD +btJ +bmD +aaa +bPC +bRM +caf +mJI +aXh +can +bPC +bkE +vgh +chs +bmH +bpN +bmH +bmH +bpN +bmH +bmH +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +bkF +lMG +hzd +hzd +hzd +hzd +vWc +auY +qfd +qfd +qfd +cdH +qfd +qfd +uzn +brN +bPC +bRF +bYg +nAo +bYg +cao +bPC +bkE +vgh +brM +rSK +rSK +aad +rSK +rSK +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +bpN +bmH +bmH +bpN +bmH +bmH +bpN +bmH +bmH +bpN +bmH +bpN +boj +vgh +brO +bPC +bPC +bPC +sPq +bPC +bPC +bPC +bRO +vgh +brN +rSK +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +bkF +vgh +bNB +bmD +bRN +ruZ +jLb +eWx +brS +bmD +boe +vgh +brM +rSK +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +rSK +bkE +nUj +gBM +leh +gVL +nNX +nzh +qhN +qfd +qfd +qfd +tsA +cht +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aad +aaa +boj +hPw +bNu +bRx +pCn +brj +vvf +brL +bmH +bpN +bmH +aaa +rSK +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +rSK +rSK +bkF +wjr +brM +bRO +pCn +hMZ +vvf +brO +rSK +rSK +rSK +aad +rSK +aad +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aad +aaa +ciZ +aaa +bRO +pCn +ocp +vvf +brO +aaa +aad +aaa +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aaa +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +aad +aaa +ciZ +aaa +bRO +pCn +hPw +vvf +brO +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGX +dGW +dGX +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +aad +aad +ciZ +aad +bRP +fIt +pok +vlo +aJD +aad +aad +aad +aad +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGW +dGX +dLC +dGX +dGW +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aaa +aad +aaa +ciZ +aaa +bkF +qfn +jAg +xty +brM +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGX +dGX +dKw +dLD +dNo +dGX +dGX +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +aad +aaa +ciZ +aaa +bRQ +bmH +cas +bmH +cap +aaa +aad +aaa +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aad +aad +dGW +dGW +dJG +dNp +dLE +vmK +dNY +dGW +dGW +aad +aad +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +aad +aad +ciZ +aad +bRR +aad +hqK +aad +bRR +aad +aad +aad +aad +aad +rSK +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dGX +dIi +dJH +dJH +dLF +dNq +dLE +dOL +dGX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aad +aaa +ciZ +aaa +bRS +aaa +hqK +aaa +caq +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aad +aad +dGW +dGW +dJI +dKy +dJH +dNr +dNZ +dGW +dGW +aad +aad +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aaa +aad +aaa +ciZ +aaa +aad +bTJ +hqK +bYm +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGX +dGX +dKz +dLE +dNs +dGX +dGX +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +aad +aaa +ciZ +aaa +aad +aaa +sZO +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGW +dGX +dLG +dGX +dGW +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +aad +aad +ciZ +ciZ +ciZ +aad +vsy +aad +aad +aad +aad +aad +aad +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +dGX +dLH +dGX +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aad +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aaa +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +aad +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aad +aad +aad +aad +aad +ciZ +aad +cWs +aad +aad +aad +aad +aad +aad +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aaa +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +qYo +qYo +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +aaa +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +aad +aad +aad +aad +ciZ +aad +vsy +aad +aad +aad +aad +aad +aad +aad +rSK +aad +rSK +qYo +rSK +rSK +rSK +rSK +qYo +rSK +rSK +rSK +rSK +qYo +rSK +rSK +rSK +rSK +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +aad +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +qYo +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +aad +rSK +rSK +rSK +rSK +aad +aaa +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +rSK +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aac +aad +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +ciZ +aad +cWs +aad +aad +aad +aad +aad +aad +aad +rSK +aad +rSK +rSK +rSK +rSK +qYo +rSK +rSK +rSK +qYo +rSK +rSK +rSK +rSK +qYo +qYo +qYo +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aaa +aad +aaa +aad +aaa +aac +aac +aad +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +let +let +let +let +let +let +let +aaa +aad +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +rSK +aaa +qYo +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +aaa +qYo +aaa +aaa +qYo +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aaa +aad +aaa +pvg +ota +pvg +aaa +aad +aaa +aad +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +aad +let +xaJ +xaJ +pGi +xaJ +xaJ +let +rSK +aad +aad +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aaa +aaa +rSK +aaa +qYo +aaa +qYo +aaa +aaa +qYo +aaa +aaa +aaa +qYo +qYo +qYo +qYo +rSK +aaa +abj +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aad +let +xaJ +iEZ +xIW +hHR +xaJ +let +aad +aaa +aaa +ciZ +aad +vsy +aad +aad +aad +aad +aad +aad +aad +aad +aaa +qYo +uKa +rxf +rxf +rxf +rxf +rxf +rxf +rxf +rxf +fBG +aaa +aaa +rSK +aad +abj +aad +aad +rSK +rSK +rSK +rSK +qYo +rSK +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aad +let +xaJ +xIW +hCT +qPq +xaJ +let +rSK +rSK +aad +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aad +qYo +qYo +qYo +qYo +ksq +kXq +kvX +frC +kvX +frC +kvX +frC +kvX +tGf +aaa +aaa +rSK +aaa +abj +aaa +aad +aaa +aad +aaa +aad +qYo +aad +aaa +aad +aaa +aad +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +pvg +ota +pvg +aad +pvg +ota +pvg +aad +pvg +ota +pvg +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +let +xaJ +hHR +xIW +iEZ +xaJ +let +aad +rSK +aaa +ciZ +aaa +cWs +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +aaa +qYo +ksq +hIH +kvX +frC +kvX +frC +kvX +frC +kvX +fBG +qYo +qYo +qYo +aad +abj +aad +rSK +rSK +rSK +aad +rSK +wQo +rSK +aad +rSK +aad +rSK +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aad +let +xaJ +vkv +vMT +iTb +xaJ +let +aad +aad +aad +ciZ +aad +cWs +aad +aad +aad +rSK +rSK +rSK +qYo +qYo +qYo +qYo +ksq +kXq +kvX +frC +kvX +frC +kvX +frC +kvX +tGf +qYo +aaa +rSK +aaa +abj +aaa +aad +aaa +aad +aad +aad +rfe +aad +aad +aad +aaa +aad +rSK +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aac +aac +aaa +pvg +ota +pvg +aaa +aad +ota +aad +aaa +pvg +ota +pvg +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aaa +aad +let +qVA +voI +vhj +voI +iQO +let +aad +rSK +aaa +ciZ +aaa +cWs +aaa +aaa +aad +aaa +aad +aaa +qYo +aaa +aaa +aaa +ksq +hIH +kvX +frC +kvX +frC +kvX +frC +kvX +fBG +qYo +aaa +rSK +aad +abj +caE +caE +cOj +caE +caE +caE +oQn +caE +caE +caE +cOj +caE +aad +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aad +aad +aad +ota +aad +aad +aad +goR +aad +aad +aad +ota +aad +aad +aad +aaa +aaa +aaa +aaa +qYo +qYo +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +rSK +aaa +aad +aad +let +vMb +jir +iqH +jMu +gjl +let +aad +rSK +aaa +ciZ +aaa +cWs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +ksq +vVc +vVc +vVc +vVc +vVc +vVc +vVc +vVc +ksq +rOc +aaa +cnI +caE +cJI +caE +cme +cOk +cQc +caE +cTj +cVl +cWH +caE +dal +dbM +ddB +caE +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +hDg +ota +ota +goR +goR +goR +qVr +goR +goR +goR +goR +syP +goR +goR +goR +goR +ota +xud +xud +xud +xud +kbs +kbs +kbs +kbs +aad +qYo +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +aad +let +qjM +uMi +tkb +uMi +kQF +let +aad +aad +aad +ciZ +aad +vsy +aad +aaa +aaa +aaa +aaa +aaa +aaa +qYo +xPF +wTm +lVD +wTm +xPF +xPF +wTm +wTm +xPF +xPF +wTm +lVD +cmq +xPF +cnI +cIp +cqI +caE +cMM +toe +cQd +caE +cTk +cVm +cfT +caE +dam +kQl +ddC +caE +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aad +aad +aad +ota +aad +aad +aad +goR +aad +aad +aad +ota +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aad +aad +aad +kbs +aad +aaa +aaa +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aad +let +igW +qBO +nYZ +lkh +ssC +let +aad +rSK +aaa +ciZ +aaa +cWs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +xPF +qAm +rdH +ogB +hgA +rdm +kzh +jGi +cPU +jGi +ogB +oUq +tmW +xPF +dBD +cnI +cJJ +caE +caE +ign +caE +caE +caE +kwW +caE +caE +caE +ign +caE +caE +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aad +aaa +pvg +ota +pvg +aaa +aad +ota +aad +aaa +pvg +ota +pvg +aaa +aad +aaa +aaa +aRm +aMt +aNO +aMt +mIc +aFp +waK +aFp +qYo +aad +rSK +aad +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +aad +aad +aad +let +xeo +nGS +eZu +gDQ +oWZ +eCo +vka +vka +kxX +pJJ +kxX +vdR +kxX +oLh +oLh +wZs +oLh +wZs +oLh +oLh +oLh +eKA +glz +ulh +ulh +uao +wqK +vXq +wWd +hxm +wWd +iAa +sHo +xPF +qpq +ceb +uwX +cjb +mrI +jWq +dBm +gGT +kpA +hDK +gXj +gXj +hiu +nIl +ddD +caE +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +rSK +aaa +eCP +hZA +aFr +aIk +aFr +mIc +aFp +aNP +aFp +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +aad +aaa +nOg +let +let +let +nTg +vqd +nTg +let +ttR +aad +ciZ +ciZ +ciZ +aad +cWs +aad +xPF +fWC +fWC +nUd +fWC +otP +cpr +hfi +iJo +lAe +gep +vIw +pIR +uda +lSL +lGt +trH +trH +ijR +wnE +xPF +ceb +qpq +cCO +yfF +tSF +cOn +cjq +ced +ced +cea +ceb +cjq +dan +aSy +cea +caE +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +pvg +ota +pvg +aad +pvg +ota +pvg +aad +pvg +ota +pvg +aad +rSK +aad +jjm +aFr +aFr +aIl +aFr +aFr +aFp +aNQ +aFp +aFp +abj +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +abj +let +lAK +xeB +feM +czw +maY +nyQ +ttR +aad +ciZ +aad +aad +aad +cWs +aad +xPF +bQG +gCD +vAu +fWC +otP +vNO +vzm +rNb +idx +qzf +tKt +inC +tKt +qzf +wHb +nLn +dqi +mKr +wnE +xPF +cHb +xMn +ceb +yfF +cMO +cMO +cMO +cMO +cMO +cMO +cMO +cMO +cMO +xNh +tSF +caE +aad +aad +aaa +ish +ish +nPM +ish +nPM +ish +ish +aaa +aaa +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +rSK +aaa +jjm +aRo +aMu +aIm +aPx +aFr +nxG +aNR +whP +aFq +aad +aad +aad +aaa +aad +aad +aad +aaa +aad +aad +aad +aaa +aad +aad +aad +aaa +aad +aad +oMH +ojo +fqY +bnZ +pRa +ktR +pRa +uJL +gTJ +pIZ +gIX +pIZ +pIZ +aad +cWs +aad +xPF +bQG +gCD +gCD +fWC +otP +sfZ +xPF +uGa +lAe +qzf +qzE +vyP +xeU +qzf +iuk +iuk +mef +cvh +wnE +xPF +qpq +qpq +cIu +dJu +cMO +cOo +cQe +oqI +cTm +vlp +cWI +cYx +cMO +syi +ddE +caE +aad +aad +aad +ish +pRv +ole +uJw +sDw +fET +ish +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +pvg +ota +pvg +aaa +aad +aaa +jjm +aFr +mVI +aIn +qiG +aFr +ruy +aNS +aJF +aFq +abj +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +aRx +let +lYg +xeB +qoK +eZu +haW +xRS +let +xED +ptk +hXe +pIZ +bTK +bFX +bTK +xPF +mGk +mGk +mGk +mGk +otP +vNO +aTe +rNb +ezC +qzf +hVW +hVW +hVW +qzf +qzf +qzf +htS +mKr +lhy +xPF +uwX +ceb +cJK +nNC +cMP +cOp +cQf +eiq +cTn +hxu +gXn +cYy +cMO +vIE +ddF +caE +nPM +ish +nPM +ish +ahe +sBx +wlE +rGJ +lsT +ish +nPM +ish +nPM +nPM +aad +rSK +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aad +aaa +pvg +ota +pvg +aaa +aad +aaa +aad +aaa +rSK +aad +jjm +mPp +tBg +aIo +ueo +qOU +ycA +wLb +aPz +aFq +aad +vFd +uWU +gPC +uWU +vFd +tcF +tWP +tcF +vFd +gmN +sin +gmN +vFd +tDV +wEb +tDV +vFd +mOB +mLw +npf +npf +npf +qTO +npf +mLw +pIZ +xKG +ocA +xKG +pIZ +ulk +xmT +qdh +xPF +otP +otP +otP +otP +otP +vNO +eyE +vZy +tGP +qzf +rgQ +tii +wrL +tLP +lBd +lZd +hnW +ijR +sHo +xPF +qpq +uwX +ceb +nSD +kYd +kqC +lcB +oRG +cTo +sGW +oBv +gBo +vjp +rcu +ddE +caE +gxd +kSD +sBb +xHT +iQv +gAD +eYJ +rGJ +lsT +mDX +ygx +xcq +xzZ +nPM +aad +rSK +rSK +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +rSK +rSK +aad +rSK +aad +aaa +aad +aaa +aad +aaa +aad +rSK +aad +rSK +rSK +aad +jjm +aFr +mVI +aIp +qiG +aFr +aFq +niz +aJH +aFq +abj +vFd +gse +ikU +uWU +vFd +rcU +xJA +tcF +vFd +mjZ +wYE +gmN +vFd +tDV +tDV +wNz +vFd +mOB +mLw +uTr +tak +uJe +rGw +eLv +oUf +pIZ +hbO +ptk +wQx +xDI +nPG +oRe +sXh +xPF +nTX +otP +otP +otP +otP +vNO +wTm +rKr +hhS +hWu +rgQ +uqa +wrL +tLP +vyP +eZx +pDs +hpb +wnE +xPF +tXV +tXV +tSF +bmc +cMO +tbj +iUP +lir +pDj +cVr +xEC +xKu +cMP +oOe +cea +caE +igc +gXC +vTj +xLu +mCz +mCz +mZd +mCz +pzz +kBX +sQY +vKW +uxo +ish +aad +aad +aad +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +qYo +rSK +rSK +rSK +rSK +rSK +rSK +rSK +rSK +rSK +aad +aad +aad +aad +xog +aFr +qYZ +aIq +czL +aLd +aMy +jKt +aPA +aFr +aad +vFd +orZ +iGx +oHH +vFd +ozg +vdU +nUg +vFd +xXy +xaQ +pje +vFd +sUH +rwr +pfb +vFd +mOB +mLw +wUz +jSZ +uJe +nzq +jdL +iMu +stR +hVY +tMW +opg +tTZ +opg +rbu +ovG +xPF +otP +otP +cif +otP +otP +vNO +eyE +iDn +cGf +qzf +rgQ +tii +wrL +tLP +lYR +tKt +jBK +ijR +wnE +eyE +fqV +hnN +cJM +eCZ +cMO +cOs +cQi +cRD +cTq +cVs +dXI +peM +cMO +jIv +ddH +caE +xHT +fcw +hgo +ogi +ahe +rCn +lOV +uxo +fET +lsT +jgK +wFi +kqi +nPM +aad +aaa +aaa +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aad +aaa +eqU +aaa +eqU +aaa +aaa +eqU +aaa +aaa +aaa +aaa +lYc +pcP +aGQ +aIr +hZo +aLe +aMz +hTt +aPB +aFs +abj +vFd +aUp +jEV +iVb +vFd +aUp +jEV +iVb +vFd +aUp +jEV +iVb +vFd +nZf +jEV +gLS +vFd +mOB +mLw +htv +vHV +uJe +pJd +rch +oUf +pIZ +odU +uFq +sJx +xDI +uZA +xCx +oCQ +xPF +otP +otP +vyR +cwh +otP +lON +lgs +oZO +ezC +qzf +qzf +tSQ +qzf +qzf +qzf +qzf +hdp +miV +ren +iev +byf +kep +cJN +jJY +cMO +cMO +cQj +cMO +cQj +cMO +cQj +cMO +cMO +gPx +cjp +caE +ipD +dkX +obm +oWX +jho +jho +jho +jho +jho +naG +jgK +heL +uAx +ish +ish +ish +aaa +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +qYo +aad +vsT +anJ +anJ +anJ +vsT +ixS +vsT +vlu +vlu +vlu +vsT +aad +aFr +aGR +aIs +baL +pCj +bsj +qwM +aPC +aFr +aad +oQt +gCw +oQt +xiV +oQt +gCw +oQt +xiV +rGU +rLL +xhr +hII +xhr +vJc +xhr +pVf +xhr +pQj +mLw +vmo +jSZ +uJe +gLM +mNl +uEO +uEO +uEO +uEO +uEO +uEO +uEO +uEO +uEO +xPF +vSm +otP +jpr +otP +otP +izl +vzm +uGa +idx +qzf +uWq +hdi +xeU +qzf +pEZ +pEZ +cNX +ijR +kDP +eyE +apH +hnN +cea +lKe +cMO +cOt +cQk +cRF +cTr +cVt +cWL +cYC +cMO +moY +ddI +caE +fXi +uLz +lBN +inK +wFi +wFi +nCS +nCS +fET +pSE +iah +lsT +lsT +ahe +fET +ish +aaa +aad +rSK +aad +aad +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +mIc +vsT +fph +fph +fph +vsT +ixS +vsT +fph +fph +fph +vsT +qYo +aFr +aGS +aIt +ooj +pPs +xXs +xXs +xXs +kPH +kPH +kPH +rgE +xXs +dwE +kPH +rgE +xXs +dwE +raM +rgE +xXs +dwE +kPH +rFD +xXs +czV +kPH +kPH +mLw +wBS +ima +uJe +pJd +otK +uEO +kYC +odR +jQW +ktT +rIR +fLT +vat +wfX +xPF +vDL +xiD +vMG +vMG +vMG +sbI +xPF +aCW +lAe +qzf +vDy +lZo +qzf +qzf +axV +axV +rBJ +mtp +cqW +xPF +xPF +xPF +xsO +uZD +cMO +cOu +cQl +cRG +cTs +cRG +cWM +cYD +cMO +qSf +ddI +caE +ksk +fKe +lsT +uvL +lgR +lgR +fET +vKW +wFi +pSE +iga +hfn +jfz +ogi +fSA +nPM +aad +abj +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +mIc +hfC +fph +fph +fph +qvW +ixS +qvW +fph +fph +fph +qvW +qYo +aFr +aGT +tCX +eDo +wTf +xXs +ipq +ipq +mhy +bgH +fVZ +qaa +olW +aDu +jIO +woP +bgH +uDg +uiP +woP +bgH +aDu +jwE +oVs +kQs +tMQ +cDC +nYd +mLw +mLw +mLw +mLw +iHs +mLw +uEO +tFA +ewl +uUh +eys +eys +eys +wLP +oyd +xPF +imZ +xPF +nLQ +nLQ +nLQ +xPF +xPF +uGa +oni +mkl +iMT +xEG +bQA +vJj +mJf +mJf +tQl +lmL +uWl +lmL +dai +xPF +cJK +eCZ +cMO +cOv +cQm +cRH +cTt +cVu +cWN +cYE +cMO +qSf +ddF +caE +xzZ +kfO +qZI +nhx +pyO +lgR +vWk +pyO +ahe +pSE +aAv +hfn +hak +fET +uty +ish +aaa +abj +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +aad +vsT +cYq +fph +qWc +vsT +ixS +vsT +cYq +fph +qWc +vsT +qYo +aFs +aGU +aIt +wNc +who +kxk +pQf +tjD +jZK +kfU +cED +pDG +qGf +fYc +fnZ +sHe +eRQ +ogE +fAf +kqn +hWy +rmu +kzl +hgE +nCC +exw +kdz +ldU +kQc +bCl +njj +fFv +nfX +xYr +uEO +iOi +kZE +cxC +fjr +ksX +dwO +mIK +fAl +xPF +qUa +xPF +fip +sha +fkA +xZb +bXn +mtv +lAe +jGi +sBC +jGi +sBC +lGt +sBC +jGi +sBC +wTm +brk +pcV +sBC +xPF +cCO +vyo +cMS +cOw +cQn +ehu +cTt +cVv +cWO +cYF +cMO +jRA +cea +caE +iVI +kfO +mDX +nhx +pyO +ahe +hqS +wFi +lgR +pSE +uFt +hfn +kAa +lsT +oxk +nPM +aad +abj +aad +aad +aad +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(90,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +mIc +vsT +hLW +wrY +hLW +vsT +ixS +vsT +hLW +wrY +hLW +vsT +qYo +aFs +aGV +aIv +cGj +czo +xXs +ipq +cdV +uyH +ush +mrl +eSr +eSr +eSr +eSr +htZ +eSr +eSr +xji +sVP +mXI +bcm +kne +ujL +vvu +cKJ +qVS +sTF +pqg +xUm +qKC +sdU +jiX +rtP +uEO +vIC +kZE +tov +yge +uAA +pSK +foe +vSn +xPF +sXO +xPF +ydq +fbr +jmU +rTk +vzm +xzK +xhG +wip +gbB +wip +wip +ntC +wip +gbB +wip +wTm +dVe +aOl +kIE +xPF +cJX +rZP +bve +eVn +eoC +xHD +cTu +cVw +cWP +cYG +dap +xwz +ceb +caE +ahe +kfO +bOv +nhx +ahe +fET +fET +wFi +nCS +pSE +jgK +wLB +fJD +ahe +uXJ +ish +aaa +abj +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(91,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aaa +aaa +aad +aaa +aad +aaa +aad +aad +fOP +hLW +qHt +hLW +ixS +ixS +ixS +hLW +qHt +hLW +ixS +qYo +aFr +aGW +aIs +aJP +tjK +xXs +ipq +ohn +slk +vzJ +lYD +sGS +qLr +ftA +ftA +hkO +ccM +ccM +jHv +ccM +sBH +oCZ +kEj +qaM +vOG +vOM +ilU +ktb +mLw +vZt +hZN +gOQ +fnx +sSt +uEO +sZX +ehq +fQL +pQg +pQg +oFe +ibr +tMm +xPF +qUa +pIG +xLf +oKN +lLZ +eMM +bXn +kQS +sre +jGi +lGt +lGt +slt +lGt +jGi +dYO +jGi +wTm +wNO +gwo +dkr +xPF +cxO +jJY +cMO +cOy +cQq +lbV +cTt +cVv +cWQ +cWK +cMS +qSf +ddL +deU +wNK +mSW +kjX +soj +dJf +dJf +dJf +siG +yfL +sUG +vZQ +rVz +lEd +ish +ish +ish +aaa +aad +aad +aad +aad +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(92,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +rSK +rSK +rSK +rSK +aad +vsT +vsT +vsT +xqV +kfz +hLW +cJl +vsT +cJl +ilK +kfz +hLW +cJl +cJl +vsT +aFr +aIx +xZZ +tjK +eVv +owj +fbu +qFy +onI +nTL +jvP +obG +ele +hHP +obG +obG +uKx +cCn +nfS +hnF +aet +kne +hSK +elR +aoe +glp +ykY +jJW +exW +fJI +nJc +avC +lTu +uEO +jCg +vja +xpP +ycC +xpP +syn +nbs +vVF +xPF +uLk +xPF +qtg +eJC +eJC +xul +xPF +dSm +jYB +jYB +hdG +jYB +eTO +tBF +kFs +loE +jYB +jvK +jYB +eOZ +oLa +xPF +cxO +vic +cMO +cOz +cQq +cRL +cTv +cVy +cWR +cYH +cMO +kLZ +gmc +xra +uOy +hPD +fmE +jNZ +fBp +uAx +iCE +ogi +lsT +jAr +hgo +wFi +pAO +nPM +hKR +hCJ +aaa +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aad +aFo +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(93,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +aad +aad +aad +aad +fbQ +rTO +rum +kIc +wLZ +kIc +uUy +cFL +cWJ +kIc +wLZ +kIc +mCA +wLZ +cHk +tmu +aIy +fqt +gcW +mZD +hbW +sDl +qkN +vzJ +lYD +nFE +qjG +vgX +oFI +qjG +qjG +mHs +cxU +eMa +xZR +hIN +wcX +hSK +jiW +ccM +qLr +laF +mLw +npf +npf +wIn +xDn +npf +uEO +thf +plo +oAN +vrt +mVk +pZy +mVk +uEO +xPF +rio +kRL +eCG +okn +bcd +xPF +xPF +xPF +eyE +wTm +pAs +wTm +eyE +xPF +xPF +xPF +wTm +xPF +qaq +lLn +xPF +xPF +cxN +gWm +cMO +cOA +cQr +cRM +cRM +cVz +cWS +cYI +cMO +oOe +cxN +caE +hrt +orG +iGT +wFi +wFi +wFi +wFi +lgR +ina +wFi +wFi +lgR +nTO +ish +aad +aad +aad +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aFo +aac +aac +aaa +aaa +aad +aaa +aaa +aac +aac +aad +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(94,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aad +vsT +vsT +cJl +cJl +cJl +vsT +vsT +aPS +mCA +mCA +mCA +aPS +mCA +aPS +mCA +aPS +aPS +wLZ +wLZ +tmu +tmu +foG +tmu +mZD +aWE +rMZ +hSV +tMS +hBf +aqT +epH +nfp +dVM +iDB +cCn +rPb +cCn +rgv +jya +sCQ +xOM +hHe +cuM +tXm +aCo +tSv +mbo +uRC +nXJ +rfF +tHX +uAX +gBh +gDB +uSA +tzq +uEO +swj +xVU +jyl +vrt +uFL +wLV +oXW +iHq +hVZ +nGZ +nKE +vBh +tXV +oFY +uEd +xbm +uEd +snh +tXV +odf +nKE +oXW +oXW +ipn +ebp +nnn +tXV +cJX +mLv +cMO +cOB +cQs +cRN +cTw +cVA +cWT +cYJ +cMO +oOe +ddN +caE +xzZ +mhQ +nTO +kjm +nTO +ina +pRv +vKD +tEM +aFu +xBo +fET +pRv +nPM +aad +aaa +aaa +aad +rSK +aad +aad +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aad +aaa +aaa +mdV +jgb +mdV +aaa +aaa +aad +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(95,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aad +vsT +fXn +kET +rZh +kET +qdO +awb +kHb +wLZ +wLZ +fhO +wLZ +wLZ +cMa +xNR +wLZ +xNR +wLZ +wLZ +qLC +iqZ +nyB +jtR +awb +gpG +iZY +qkN +vzJ +uuh +mZD +vem +kKi +kKi +kKi +iBb +mZD +fYs +xgR +vSa +kEq +kne +tdb +xXs +kPH +kPH +kPH +pFk +jTi +jTi +qfT +prq +oEL +jTi +npZ +prq +rXD +uEO +gLe +fsy +lHW +nDF +fOs +mJE +aix +jbk +rjU +uMp +oMh +ubv +yjN +lQX +byf +kAx +byf +wxV +yjN +ubv +mAC +oMh +ovA +nZi +pKK +vlI +tXV +cJV +eCZ +cMO +cMO +cMO +cMS +cTx +cMO +cMO +cMO +cMO +pxk +kMv +caE +nPM +nPM +nPM +nPM +saw +saw +saw +saw +saw +dhQ +dhQ +dhQ +dhQ +dhQ +dhQ +dhQ +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aFo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(96,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +cJl +fuB +mdD +lLl +mdD +mdD +tIW +slU +nMS +mdD +oQC +nMS +nMS +nMS +nMS +nMS +nMS +nMS +mdD +fbV +jiy +mSy +fKs +sSx +vIB +qLr +qkN +vzJ +ntl +mZD +gbL +xXs +mZD +xXs +pxd +mZD +eJp +owx +vYj +nmO +stp +mYb +sez +fvN +qOp +kPH +uuA +jGr +fUK +pDT +lDm +ekS +xxr +gag +shn +nAL +uEO +pdv +eFj +paR +nDF +wfe +iAA +luf +xPC +iit +ozH +aix +wsL +tXV +xpQ +mUD +eWR +mUD +eqe +tXV +rOx +oMh +lEK +ovA +nCJ +msO +hgz +tXV +cJX +qCY +gmc +exk +sJI +qZL +oWN +sJI +tGz +qZL +iaA +iuP +exk +swm +pfQ +caE +djn +dle +saw +dog +nDZ +drz +saw +dul +dvZ +dxH +qiJ +dAp +dBT +dDg +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(97,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +cJl +aQx +xNR +xNR +uqz +wLZ +ndP +aEd +wLZ +wLZ +nEr +xPL +wLZ +xNR +wLZ +xNR +wLZ +xNR +wLZ +jVC +aKF +ihB +ftB +awb +gpG +iZY +qkN +vzJ +xox +xXs +fbt +oIX +nny +wMG +qew +xXs +iWG +owx +gGz +gLB +jzA +qUh +wGJ +tHf +tsB +kPH +vXB +oog +rXD +kzH +gKg +nDW +aOZ +aOZ +mwI +oDH +uEO +jNq +fsy +lHW +nDF +wfe +vne +oMh +hlI +iit +gzu +oMh +tvp +tXV +hnN +oKZ +wGX +oKZ +hnN +tXV +jRF +oMh +oMh +ovA +qCt +hpn +guk +xaw +ddL +hUe +fdc +cOC +cea +cjq +cea +ced +ced +ced +bSp +cjq +ced +wXQ +moY +caE +jjN +hNZ +saw +qhc +dpX +pmQ +saw +djs +dlf +dxI +dms +dpZ +dBU +djo +dhQ +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +mdV +jgb +mdV +aad +mdV +jgb +mdV +aad +mdV +jgb +mdV +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(98,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +aaa +cJl +weP +xPL +osi +wLZ +fEZ +awb +aEd +wLZ +xNR +aQx +rAZ +grO +rZS +guF +mTf +grO +guF +wLZ +bAT +awb +eyY +awb +awb +pFe +rGx +qkN +vzJ +kqH +pUx +mqc +lVM +gFj +hBE +vkS +xDq +ugT +icm +vYj +bUP +qhK +bHn +qhK +glG +yjF +kPH +iiI +dCh +ooT +kzH +jnE +dXF +xVy +thj +nQy +oPF +xBa +vSw +uIx +fdT +vrt +dvg +vne +lAU +eMt +lls +jCw +hJe +muW +jCR +utt +sPf +qYe +xZT +vLa +rbb +lyV +hJe +jCw +xJi +jKs +tzz +tJu +tXV +cJX +hJu +hLr +lUX +cMY +cMY +cMY +cMY +cMY +cMY +cMY +cMY +cMY +aWH +eHB +caE +djp +qpq +saw +doh +rCv +pmQ +saw +dlg +dli +xwx +dpZ +uTQ +dpY +dxL +dhQ +aad +aad +abj +aaa +abj +aad +abj +aad +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(99,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +rSK +aad +qYo +aaa +vsT +fZA +mBn +xpD +mBn +qVY +awb +svM +wLZ +xNR +aQx +pkM +awb +awb +bOc +awb +awb +roo +wLZ +ykf +awb +vTy +wic +awb +gpG +hYA +qkN +vzJ +xox +xXs +eSo +eNt +vlO +qpo +seV +xXs +qUF +tlw +vYj +slQ +gnR +iGK +hwK +vKK +oNR +kPH +pFk +pFk +pFk +goy +pBT +bMK +kSb +qAn +qhm +xQg +uEO +uEO +nDF +uEO +uEO +hMk +wbv +oMh +cIh +wwY +wwY +wwY +wwY +wwY +wwY +sSJ +rTN +eph +oXW +oXW +oXW +oXW +oXW +nGZ +vdB +hUE +fbY +tMX +llZ +jcj +mJl +wjS +cMY +cNd +cNd +cNd +cWV +cNd +cNd +cNd +cMY +cea +kEw +caE +qpq +qpq +saw +qhc +rCv +drA +saw +dum +dli +dpZ +dzf +dAq +dpY +dDh +dhQ +aad +aaa +abj +aad +aad +aaa +aad +aaa +abj +aad +aad +aad +abj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +aaa +rSK +rSK +aaa +aac +aaa +mdV +jgb +mdV +aaa +aad +jgb +aad +aaa +mdV +jgb +mdV +aaa +aad +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(100,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +qYo +aaa +vsT +jiB +iqZ +faJ +iqZ +awb +awb +awb +awb +tdE +aQx +rAZ +fsH +awb +awb +awb +wCO +guF +xNR +gsX +yct +uTq +kPa +iqZ +gpG +iZY +tNn +vzJ +xox +jOW +mZD +xXs +xXs +xXs +rsL +mZD +qXO +tlw +wUF +iJF +xqx +aiY +igV +wyU +wKG +nDe +kjh +mQW +xLk +pvd +pBT +qrg +gQi +bJv +qhm +hAc +hax +sQV +nGZ +jnj +syV +ixm +kUE +xqz +pbM +ptD +azr +lQJ +azr +lQJ +ioN +lwB +xSG +iTh +azr +lQJ +gVw +ptD +gVw +hwL +ejL +nTb +tSG +tXV +wJz +cea +cMV +jvO +cMY +cRQ +cTz +cON +cON +cON +cON +dcb +cMY +cea +laE +kTQ +iYN +uuM +saw +qhc +tMk +pmQ +saw +yjc +lEl +dxJ +gKr +dxJ +dBV +dlg +dhQ +aad +aad +abj +aaa +abj +aad +abj +aad +abj +aaa +aaa +aaa +abj +aad +aad +aad +abj +aaa +aaa +aad +aad +aad +rSK +aad +aad +aad +aad +aad +aad +aaa +aaa +jgb +aad +aad +aad +tgZ +aad +aad +aad +jgb +aad +aaa +aaa +aad +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(101,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +rSK +qYo +vsT +hGh +adZ +fAY +fAY +uVq +mkY +bEW +awb +vSW +aQx +rAZ +awb +awb +xfl +awb +awb +hly +irL +hAm +rTT +fUP +uwx +oSQ +qxS +iYd +hQJ +byL +ibS +mZD +utn +xqx +wAZ +xqx +jLK +mZD +xcs +pMc +bnz +tNx +owl +gsa +tNx +xZJ +pWC +gYQ +eAp +hHJ +uoX +sFP +ndW +lun +qss +vsF +pbu +lAg +uvr +qdq +bED +ctY +twt +okV +hWD +she +lfw +evr +mqC +hBy +evr +bzS +evr +sAL +unj +tsd +hBy +ado +oXG +mqC +mqC +woh +mqC +idL +qfP +tXV +wCk +cGe +cMW +gzC +cMY +cNd +cNd +cNd +rIE +sBz +sBz +xtH +cMY +deX +aiu +caE +qpq +sTI +saw +doj +eYc +lXM +saw +dun +lEl +dxK +suE +dAr +doi +don +dhQ +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +abj +aad +aad +aad +abj +aaa +aaa +aaa +abj +aad +aad +abj +aaa +aaa +rSK +aad +tgZ +tgZ +tgZ +tgZ +tgZ +tgZ +tgZ +tgZ +tgZ +tgZ +yif +hBY +tgZ +tgZ +tgZ +tgZ +tgZ +jgb +jgb +nnf +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(102,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aad +aaa +rSK +aaa +cJl +eEQ +xNR +xNR +mBW +wLZ +xNR +wLZ +faJ +kHb +eOG +qCH +vBj +guW +hCj +kWt +dzx +lnI +xNR +rfA +iqZ +sFf +tha +hvD +yds +xlj +iEi +fGt +hTk +oHB +llc +opF +opF +opF +sKZ +oHB +odF +iDf +sxr +vMg +avY +wrV +rPK +rvr +xpx +csm +dDD +qWP +vdP +fBM +vjv +khr +pBT +brc +rka +hAc +jvy +rDG +wYk +sUC +mFe +fIz +xhe +oBt +coy +gVf +tGh +njR +sKS +hMk +phR +sGJ +noM +cTa +hoW +tFK +tFK +lfH +lfH +ndE +lfH +lfH +tFK +tFK +rwG +cea +ceb +vhl +cMY +cMY +cTA +cNd +cNd +cYK +cTA +lvo +cMY +deX +joJ +caE +xMn +dok +saw +jEz +eJF +drC +saw +duo +dmu +eMD +sBM +dxM +doi +dun +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +abj +aad +aad +aad +abj +aaa +aaa +abj +aad +aad +aad +aad +tgZ +aad +aad +aad +aad +aaa +aaa +jgb +aad +aad +aad +tgZ +aad +aad +aad +jgb +aad +aaa +aaa +aad +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(103,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aad +rSK +qYo +cJl +eEQ +wLZ +gfI +rwE +wSz +wLZ +qFT +iqZ +kHb +wLZ +xNR +wLZ +irL +tGj +irL +eVM +irL +wLZ +toa +awb +vsK +oNl +awb +ndT +fzv +hSV +cDA +vhb +oSm +uIT +lBr +wXg +lBr +bTR +lBr +lBr +kLJ +xDc +fIl +kPH +lMl +xjJ +cnM +jse +kPH +kPH +kPH +kPH +kPH +kPH +ifZ +pBT +rka +rka +oNS +jTi +hMk +tLT +upx +upx +hMk +oCX +niW +wxV +rsf +oMh +rRc +ylX +tXV +hnN +tar +lsV +naO +hnN +tFK +oHv +tmk +unZ +wvR +vFa +mhI +iCO +tFK +rwG +cLH +cMX +nfl +cMY +cRR +cTB +cTB +cWW +cYL +cTB +xXC +cMY +deY +oAw +caE +cea +djr +saw +dol +myW +drD +saw +dup +dlg +dxL +sBM +dAs +dpY +dDi +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +abj +aad +aad +abj +aaa +aaa +rSK +aad +jgb +aad +aaa +aaa +aac +aaa +mdV +jgb +mdV +aaa +aad +jgb +aad +aaa +mdV +jgb +mdV +aaa +aFo +aac +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(104,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aaa +qYo +aaa +vsT +oHx +oNe +eJS +pxU +bjh +xNR +wLZ +xio +kHb +wLZ +wLZ +wLZ +irL +hEB +wLZ +nXp +wLZ +wLZ +vPM +awb +awb +awb +awb +uhH +nVY +qkN +vzJ +lYD +rdM +tHf +uyJ +tHf +tHf +hTx +cpa +ccM +ccM +wbD +tEh +kPH +maO +woL +nTc +hjx +tJH +lbR +fMb +kIw +lyp +kPH +hra +owk +fDt +gxL +rVn +tMF +bOf +bto +qpC +okc +uXS +wra +kdI +hgz +kAx +xMl +tLl +kiB +tXV +wiy +jAt +uQj +cUy +ltH +tFK +toi +gTa +tQX +foL +pQq +ezu +frl +tFK +wCk +cMY +cMY +wzY +cMY +cXa +cTC +cVD +cWX +cYM +dar +enx +cMY +cjp +hST +caE +cea +cea +saw +wei +fQl +drE +saw +duq +dlh +dxM +wcg +dzh +dBW +dDj +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aad +aad +aad +rSK +aad +jgb +aad +aaa +aaa +aac +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(105,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +rSK +aad +rSK +aaa +cJl +eEQ +wLZ +wSz +apU +gfI +xNR +qFT +iqZ +kHb +xNR +wLZ +xNR +fpK +wLZ +wLZ +nXp +xNR +awb +jiB +awb +suL +suL +awb +ipq +vsk +qkN +tqM +hAq +cFj +vjk +cFj +bhh +bhh +vxT +rqM +fZv +swM +hyV +rzQ +kbD +ndi +ibV +fuJ +tis +rFd +olf +mRF +hCH +bUl +kPH +nND +tBp +jvy +bMa +bOf +bOf +bMa +lXe +bWv +bYE +bQg +upx +ccn +upx +upx +tXV +tXV +tXV +tXV +iki +pek +ryt +sDu +knt +tFK +fwB +qVG +uUq +tIP +bYL +nyC +rpy +tFK +wJz +cMY +cMZ +djh +cMY +cRT +tCG +cZa +cVE +cVE +das +dcd +cMY +deZ +joJ +caE +djv +ceb +saw +doo +fQl +drF +saw +dur +xze +dxN +sGY +don +doi +dDk +dhQ +aad +rSK +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +rSK +rSK +rSK +aad +aad +aad +aad +jgb +aad +aad +aaa +aac +aad +mdV +jgb +mdV +aad +mdV +jgb +mdV +aad +mdV +jgb +mdV +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(106,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +aad +rSK +aaa +cJl +eEQ +xNR +wLZ +fkq +wLZ +wLZ +xNR +faJ +aEd +wLZ +wLZ +xNR +irL +wLZ +wLZ +nXp +twf +awb +hWj +owI +vwT +nuU +awb +ipq +fsB +ooJ +iCm +tAu +reX +fEX +vnk +qsR +scF +kQI +evy +cdg +wwH +fqp +enO +kPH +rtM +xSY +lyE +pWn +mQQ +xuC +trM +eES +uvh +kPH +mOI +prq +xVm +bOf +bOg +bQd +bOf +jtM +bWw +bYF +bQg +gOY +hfP +fwe +lZk +tXV +ckJ +cme +tXV +skJ +pek +ryt +qKx +sTy +tFK +rWm +gTa +mFj +htK +pQq +ezu +fVy +tFK +wJz +cMY +cNa +bnC +rLY +hJb +bLU +enI +vSp +gqB +mVY +rMk +cMY +deX +joJ +caE +caE +caE +saw +wAA +lVN +saw +saw +dus +dwa +dom +jQC +dmy +dAt +djs +dhQ +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +eak +ebD +eak +aad +aaa +aac +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(107,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aaa +rSK +aad +rSK +qYo +vsT +ioU +wLZ +wLZ +xNR +wLZ +ylo +rcv +aPa +qxG +cyD +uXM +wLZ +irL +wLZ +wLZ +nXp +twf +faJ +sdO +oMW +bEW +qNT +awb +iZY +ipq +mnY +bgH +ipq +ooJ +bGZ +mDy +gOp +fgn +qwx +bIM +uvq +fgn +cPj +txZ +kPH +iem +vgF +ndV +jmq +szg +yeR +ccm +xRn +gqE +kPH +uqQ +vXh +vLj +bMc +bOh +bQe +bSn +bUh +bWx +bYG +bOf +gOY +leM +maI +xnj +tXV +ckK +cmf +tXV +vfU +wnb +onJ +puN +uly +tFK +tLk +xtg +wQI +fVF +tOW +oYf +wVG +tFK +wCk +cMY +cNb +fyY +cMY +cRV +ddT +ftI +cXa +cYQ +dau +dce +cMY +dfa +eRd +baW +ewR +itq +fQZ +mTP +mPZ +gnF +gCK +ojg +dwb +dxO +iPv +dAt +dBX +dDl +dhQ +aad +aad +aad +aad +abj +aaa +abj +aad +aad +aad +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +aad +aad +eak +ebE +eak +aad +aad +aFo +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +mdV +jgb +mdV +aaa +aFo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(108,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aad +qYo +aaa +vsT +vsT +cJl +cJl +cJl +cJl +cJl +vsT +vsT +xwC +wLZ +xNR +xNR +irL +hYs +wLZ +nXp +twf +awb +mBn +mBn +xpD +xpD +tyw +kPH +kPH +kPH +kne +xXs +kne +kPH +rgE +xXs +dwE +kPH +rgE +xXs +dwE +kPH +wel +kPH +aDn +jVn +pLD +okK +seW +oCU +lxM +fgq +oOH +kPH +syY +uai +eae +bOf +bOi +bQf +bOf +bUi +bWy +bYH +bQg +qyj +eHv +lIU +oVk +tXV +ckL +sqY +tXV +vfU +bin +fcG +fdk +uly +tFK +tFK +tFK +tFK +tFK +tFK +tFK +tFK +tFK +otJ +cMY +cMY +cMY +cMY +cMY +cMY +jSw +cXb +cYP +cMY +cMY +cMY +dfb +dgq +cMY +djx +eCM +dmA +epU +nty +drG +gCK +dhQ +dhS +dhQ +ihd +dhQ +dhQ +dhQ +dhQ +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aad +eak +eak +ebF +eak +eak +aad +aac +aaa +aaa +aad +aaa +aaa +mdV +jgb +mdV +aaa +aaa +aad +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(109,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +qYo +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +aaa +vsT +lJj +evk +gsr +xpD +nSJ +tiF +wLZ +qLu +wLZ +awb +xjT +rcz +xbc +xbc +vsT +aad +aad +oQt +txh +oQt +txh +oQt +gCw +oQt +xiV +oQt +gCw +oQt +xiV +pNJ +aRx +kPH +kPH +ndO +kPH +xao +wGx +eqa +gxo +eqa +kPH +kPH +rTE +hEN +tSf +bMe +bOj +bQg +bQg +bQg +bQg +bQg +bQg +tXV +tXV +tXV +tXV +tXV +caE +ign +cnI +cnI +cnI +cnI +cnI +cnI +cnI +cxN +cxN +cxO +cCC +cxN +cFZ +cxN +xKD +wJz +cMY +cNd +cNd +cNd +sUE +cTH +ftI +cXa +cYQ +cTG +neh +cNd +cNd +cNd +cMY +djy +bIj +iFA +doq +qaW +upw +gCK +jup +whY +anF +fdx +pfQ +caE +aaa +aad +aad +aad +aad +aad +abj +aaa +abj +abj +abj +aad +aaa +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +aaa +aad +eal +eaR +ebG +eck +eal +aad +aac +aac +aac +aFo +aac +aaa +aaa +aad +aaa +aaa +aFo +aac +aac +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(110,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aad +aad +rSK +rSK +rSK +rSK +rSK +aaa +aaa +vsT +lUP +lUP +vsT +vsT +kzj +gSs +vsT +vsT +vsT +vsT +vsT +vsT +vsT +vsT +vsT +aaa +aad +vFd +tzb +jEV +jUV +vFd +aUp +jEV +iVb +vFd +aUp +jEV +iVb +vFd +aRx +alf +bqm +bug +eiK +bvs +fiE +bug +rjE +bug +bug +bug +bvs +gxe +bYI +bYI +bYI +bQh +bYI +bYI +bWz +bYI +caB +caE +cdY +cfR +chI +ceb +cfU +wjG +cnI +cpm +cqH +csa +ctE +cvd +cnI +cxO +caE +caE +caE +caE +caE +caE +caE +xFt +cMY +xmf +cON +cNd +cRW +cTI +ylt +cVE +cYR +daw +uQf +cNd +cOM +gJq +cMY +djz +dln +faI +iyX +cau +mWW +beo +idk +dwc +kMv +cxO +mbI +caE +aad +gSi +dEn +dEn +gSi +dEn +gSi +dLI +gSi +dOa +dOM +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +eal +eaS +ebH +ecl +eal +aad +aaa +aaa +aaa +aad +aac +aac +aac +aad +aac +aac +aFo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(111,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +aad +aaa +hgm +hgm +vsT +lef +rMV +sgE +vOc +cIj +vka +cIj +vka +cIj +vka +cIj +mvK +aad +aad +vFd +pPr +itU +oNa +vFd +jUc +kWr +vwg +vFd +eNE +oDi +knS +vFd +ozv +alf +bqn +bsq +bEQ +isk +leS +hjt +eFX +chG +bEQ +bEQ +pKW +bAM +bYJ +bYJ +bOk +bQi +bYJ +bYJ +eWj +bYJ +sUU +nVW +iiR +sCo +exk +sCo +gmc +jWJ +cnI +cpn +cpn +csb +ctF +sAj +cnI +cxP +caE +cAW +cCD +cEj +cGa +cHv +caE +xjb +cMY +cNd +cNd +cQv +cRY +cTJ +tUy +rvL +cYU +xGe +dch +ddR +cNd +cNd +cMY +djA +djA +djA +vnj +djA +djA +djA +djA +djA +djA +kMv +uzE +cOj +aaa +dEn +dFz +dGY +dIj +dJJ +dEn +dLJ +gSi +dOb +ert +ert +ert +ert +ert +ert +ert +ert +ert +ert +ert +ert +ert +aad +eal +eaT +ebI +ecm +eal +aad +aad +aad +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(112,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tXR +tXR +kfc +kfc +kfc +tXR +tXR +alf +alf +aqV +aqV +vsT +dAd +nHa +wDH +vsT +alf +alf +alf +alf +alf +alf +alf +aRx +aaa +aad +vFd +gXk +gKN +jQO +vFd +epE +mrK +pkQ +vFd +gGU +jVx +nqX +vFd +aRx +alf +bqo +bsr +bui +bvu +bvu +rru +ocb +uLs +opA +opA +opA +sQk +aDl +aDl +aDl +vfD +cgO +lAo +enk +flZ +xpg +caE +cea +cfT +chK +cea +cjq +moY +cnI +cpo +cqI +hoZ +ctG +cvf +cnI +cxN +caE +cAX +ceb +cEk +cGb +cHw +caE +wCk +cMY +vHZ +vHZ +vHZ +vUp +mWd +tab +cXc +cYU +dax +tDj +vHZ +vHZ +vHZ +cMY +djB +dlo +dmB +kER +dqj +drI +lWS +dte +dwd +djA +cxO +oFE +cOj +aad +dEn +dFA +dGZ +dIk +dJK +dKA +dLK +gSi +dOc +ert +yiM +jqx +unk +mHx +nfK +tHV +xxb +uEr +rCt +gyd +sDO +ert +dOM +eal +eaU +wYI +ecn +eal +dOM +dOM +aad +rSK +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(113,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tXR +sAP +nVB +mqO +sdx +fjo +tXR +alg +alg +avm +alg +arG +ayS +lWW +alg +arB +arB +aug +alg +kWd +aAd +aKg +alf +ozv +aad +aad +vFd +jQO +qFS +jQO +vFd +pkQ +sTA +pkQ +vFd +nqX +gxm +nqX +vFd +ozv +alf +bqp +sPw +sPw +sPw +iuV +sPw +sPw +sPw +sPw +sPw +sPw +sPw +sPw +sPw +sPw +sPw +nCn +sVj +bWC +bWC +caE +caE +ceb +cea +caE +cjp +cea +moY +cnI +cpp +cqJ +pZY +ctH +cvg +cnI +cxO +caE +cAY +cCE +bVj +cGc +cHx +caE +wJz +cMY +cNg +cON +cNd +rzS +cTI +jkf +cXd +cYV +daw +xOc +cNd +cON +eAA +cMY +djC +dlp +dmC +qfE +vHC +drJ +drK +drK +dwe +djA +dzo +mbI +caE +aaa +gSi +dFB +dHa +kJJ +oVN +dEn +dLL +gSi +dOd +ert +iKu +ewQ +onk +nBn +lVb +etN +lqq +mHx +iwr +kYN +vvn +ert +wWk +dvc +mVs +fGF +ebR +dLW +ecQ +edl +aad +rSK +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(114,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tXR +loK +gKZ +dqV +gKZ +lQc +tXR +alg +aub +avn +alg +axH +ary +etu +etu +etu +etu +etu +etu +etu +arB +aKh +alf +aRx +aaa +aad +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +vFd +aRx +alf +bqq +sPw +aaa +aad +aaa +aad +vqp +lsY +fGz +wdC +cFH +oLo +oEH +gho +uNO +vva +sPw +hWc +bWD +bYO +caE +cck +cea +cfU +chL +ceb +cea +oAw +cnI +cnI +cqK +jMT +cnI +cnI +cnI +cxR +caE +cAZ +cCF +veA +cHy +vec +caE +jQA +cMY +cNd +cNd +cQv +dcm +cTJ +tab +cXd +cYU +xGe +ybK +ddR +cNd +cNd +cMY +djD +hrT +drK +laa +drK +drK +drK +drK +ncP +djA +dzp +wJa +cOj +aad +dEn +dFC +ubd +leq +dJM +dKB +dLM +gSi +dOe +hmH +yli +gTm +iwr +jEG +fbh +sXl +onk +flq +lqq +flu +gWX +ert +nbF +dTv +dSD +dZg +dLW +ecv +edf +edl +aad +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(115,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +nuA +eOV +jxA +wfI +ows +tXR +asD +ary +avo +awm +arC +ayT +etu +wIR +kmT +rQB +qsP +yiE +etu +aIH +aoY +alf +kDx +cIj +vka +cIj +vka +cIj +vka +cIj +vka +cIj +vka +cIj +vka +cIj +vka +cIj +oQz +alf +bqr +sPw +aad +veG +iqz +vqp +vqp +ocW +pho +pho +pho +jFQ +pho +pho +pho +erV +sPw +lZn +bWD +bYO +caF +cea +cGe +cea +cea +cea +ckN +oAw +vnN +cea +cea +aSy +ctI +cfU +cea +cxN +caE +caE +caE +ign +caE +caE +caE +wJz +cMY +vHZ +vHZ +vHZ +dcl +hGb +tab +cXd +cYU +dTL +dck +vHZ +vHZ +vHZ +hTO +djE +dlr +dmE +wmt +dqm +drL +qnF +oyx +hFX +djA +dzq +mbI +cOj +aaa +dEn +dFD +dHc +tjw +dJN +dEn +dLN +gSi +dLW +fTa +elW +uFl +uFl +rDp +uiX +uFl +uFl +elW +elW +wub +vVv +ert +mEh +dTv +dLY +dLY +dLY +dLY +dLY +dLY +dLY +dLY +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(116,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tXR +lZt +cXR +gdO +aKU +aKU +tXR +arG +arC +avp +awn +axI +ayU +etu +oJi +qsP +qsP +kmT +gBt +sfI +aIH +ary +alf +alf +alf +alf +alf +aqV +aqV +aqV +alf +aqV +aqV +aqV +alf +aqV +aqV +aqV +alf +alf +alf +bqs +sPw +aaa +iqz +rWP +mzQ +iqz +kOP +aIu +jQH +tEE +iLY +wHh +agh +aIu +iED +sPw +lZn +bWD +uxO +caE +cNj +ced +cea +ced +cjq +cea +pSM +vTC +thA +exk +azs +thA +exk +gmc +mzB +wRV +gmc +hlc +iuG +erm +eMZ +exk +rKW +cMY +xmf +cON +cNd +ume +cTI +jkf +cXd +cYV +daw +wdi +cNd +cOM +dgt +cMY +djF +djF +djF +nTq +djF +djF +djF +djF +djF +djF +cxO +oFE +caE +aad +gSi +dFE +eGN +jEi +dJO +dKC +dLO +gSi +qHZ +kwQ +bce +fWG +bce +edt +bce +nZh +nZh +nZh +nZh +qIL +qMG +ert +nbF +eao +eaW +ebL +eco +ecJ +edg +lgt +een +eaW +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(117,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +kmg +iGk +gdO +cXR +iGk +qVX +asF +alg +avq +awo +axJ +aoY +etu +jxd +qsP +qsP +lRn +oYU +etu +arB +alg +rGA +arB +arB +aPW +avm +alg +arB +arB +arB +aug +aug +avm +alg +alg +avm +aug +bla +ary +tDI +bqt +iuV +aad +iqz +itE +hCg +bWT +krI +eyw +eyw +eyw +bkv +jTz +jTz +jTz +kVg +lTR +eXA +bWF +bYP +nJo +nJo +nJo +nJo +nJo +nJo +nJo +xtt +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +cea +ceb +wss +cMY +cNd +cNd +cQv +dcj +cTJ +tab +cXf +cYU +xGe +cSe +ddR +cNd +cNd +cMY +djG +dlt +dmG +ybh +dqo +drM +gFZ +duz +wTa +djF +wXZ +pxk +caE +caE +gSi +gSi +gSi +ayL +gSi +gSi +gSi +gSi +uSp +hmH +etl +mkL +etN +lqq +tHV +iwr +vLl +wGN +flq +jdj +nVl +ert +lkI +eap +eaX +dLW +ecp +ecK +dYu +edK +eeo +eff +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(118,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +vje +mWc +ipZ +oEW +ibw +liT +arC +alf +alf +alf +alf +alf +etu +jBI +kmT +qsP +kGR +lHU +etu +alg +ary +vNR +vNR +vNR +vNR +ikq +xmi +vNR +vNR +ayT +ban +arB +bdo +arB +bgi +bgi +alg +blb +alg +czi +bqu +sPw +aaa +iqz +hFp +qaJ +iqz +kOP +fvd +kTj +haV +dBw +mdn +qsh +aIu +xRQ +sPw +lZn +bWD +bYO +nJo +lyK +vEA +eTQ +uhr +riv +hmD +rYt +lzx +xvm +nzn +nEv +mNh +nJo +rPO +ekn +xnH +ogs +uqr +mbH +nJo +ceb +cjp +wJz +cMY +vHZ +vHZ +vHZ +dci +cTO +fdH +cXg +cYU +dav +qOw +vHZ +vHZ +vHZ +cMY +djH +dlu +dmH +pLc +drN +vwU +dtg +dtg +dtg +vJu +cxN +wJa +dBY +cea +dEo +tCh +dHe +dze +dJQ +tCh +dLP +dNt +cGi +ert +uSL +gTm +iwr +lqq +lqq +flq +flu +flq +sXl +wEj +xtf +ert +fCD +dTv +eaY +ebM +ecq +ecL +ecL +edL +eep +eff +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(119,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +kHv +hkj +gzM +geA +wof +qVX +asH +alf +avr +awp +axK +qxX +etu +qMh +kmT +qsP +kGR +olj +etu +arA +aKi +vNR +fkU +ltx +lMM +nNw +eEH +prO +vNR +ary +aKj +bbQ +alg +beK +bgj +alf +bbQ +ary +alf +alf +bqv +sPw +aad +veG +iqz +vqp +vqp +wnJ +lOl +lOl +lOl +fPu +lOl +lOl +lOl +qSW +sPw +lZn +bWD +bYO +sVJ +sdN +jPc +qkQ +nzX +hmD +rip +rYt +lzx +nDr +lzx +ybZ +mNh +sVJ +rYg +qtt +kUV +ppU +qtt +gSw +nJo +cCO +cea +wJz +cMY +cNe +cOM +cNd +cSd +cTI +jZR +cXh +cYW +daw +dcn +cNd +cON +eAA +cMY +djI +wjF +dmI +wVN +eAB +imL +drN +duD +qUc +djF +dzo +oks +iaA +sCo +oWN +pDd +pUp +wjz +fQf +pYc +ucq +dWh +ioz +ert +uFl +aFC +xxn +wtc +nUx +tHV +lqq +nBn +mat +teP +lNO +ert +cdL +eap +eaZ +ebN +dYu +ecM +edh +edM +eeq +dLY +aad +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(120,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +tzA +oIf +kxR +dza +vej +hMv +obk +alf +arB +arB +axL +ayV +etu +cFK +qsP +jcX +rRV +mZk +ozU +idU +aKj +vNR +kle +euz +qnQ +gbd +rDh +cLK +vNR +aYr +bao +alf +ary +bbQ +alf +alf +bjo +alg +bne +bbQ +bqu +sPw +aaa +aad +aaa +aad +vqp +jhN +uHf +hia +eTS +tYf +nKN +eVC +ttg +lqK +sPw +hWc +bWD +bYO +hZU +qtt +qtt +hcc +qtt +qtt +qtt +nil +jFf +jFf +qtt +qtt +qtt +gdV +qtt +giV +rAp +hwH +kFi +row +nJo +cea +ceb +wJz +cMY +cNd +cNd +cQv +dcg +cTJ +ftI +cXa +cYQ +xGe +cSb +ddR +cNd +cNd +cMY +djJ +dlv +dmJ +xot +dqr +drO +djJ +duE +qdJ +djF +tbn +cjq +dBZ +cjq +dEp +tCh +dHg +ydd +dJS +tCh +dLS +dQE +agR +ert +lxC +qrS +qQb +uFl +jXU +oqm +iVH +etN +fTf +uIr +sev +ert +nbF +tku +dLY +ebO +ecr +ecN +edi +edN +dOM +dLY +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(121,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +kmg +pNE +pGD +wPH +cXR +qVX +mBF +ukD +kmS +sYV +axM +ayW +etu +ucu +apL +sDK +itM +ncM +xWM +iry +aKj +vNR +wsZ +jGK +oVQ +rDh +gGp +shN +vNR +aAe +alg +alg +alg +avm +aug +alg +avm +alg +aug +aug +bqw +xpW +sPw +sPw +iuV +sPw +vqp +vqp +vqp +vqp +vqp +vqp +vqp +vqp +vqp +vqp +vqp +gMy +ipi +unv +htp +iiE +gkv +gdf +sxX +sop +jIs +ibJ +iiE +gkv +iiE +iiE +iiE +cco +iiE +nlX +iDK +eka +sIY +uph +nJo +cea +cIu +wCk +cMY +cNc +cNc +cNc +cNc +cTP +jSw +cXb +cYP +cTP +cNc +cNc +cMY +cMY +dhU +djK +djK +dmF +fuF +dmF +djF +djF +djF +djF +djF +drP +drP +drP +drP +drP +gSi +gSi +wPJ +gSi +gSi +dLS +dNw +fGR +ert +sKr +mnS +mvJ +sHV +rPg +ert +ert +ert +ert +vJB +ert +ert +xax +xTa +srd +aAR +pSd +dYu +edj +edO +eer +dLY +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(122,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tXR +fWi +tht +gpr +ibw +qPR +tXR +kgR +alf +alg +awr +alg +ayX +etu +jGf +gcT +qsP +qsP +kBn +etu +gvd +arB +vNR +sEL +vYd +lOA +lhK +opX +nGP +vNR +kJo +fAp +fAp +qCF +shD +fAp +qCF +qCF +aaK +roK +qCF +sPQ +vkF +loY +roK +fAp +eCl +mBt +qSO +sgY +iXT +iXT +vvC +sgY +iXT +rCd +xmR +kWT +glS +bWD +bYO +sVJ +gAy +sGU +nJo +nJo +jaL +hcc +tpf +tQq +plY +tQq +ybZ +mNh +sVJ +iWa +bmA +vgb +xdx +qtt +iNf +nJo +cea +cjp +wCk +cMY +cNh +cNh +cNh +cNc +cTQ +ftI +mfC +vso +daB +dcp +ddS +dfc +dgu +dhV +djL +dfp +bAI +nTx +xOo +drQ +dti +duF +fFT +dxP +dzt +dAw +dCa +dDn +dEq +dFI +dHh +bpL +dJT +drP +dLT +dQA +fGR +ert +xqS +pNm +lVS +elW +fHw +ert +qXG +oof +ewK +reb +eZX +ert +lkI +eas +ebb +ebM +ecq +ecL +ecL +edP +ees +eff +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(123,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +kfc +nsj +xWJ +hFt +nMv +jXt +tXR +gFf +alf +avt +alg +axN +ayY +etu +oJi +kmT +qsP +kmT +hTo +sfI +gvd +aKk +vNR +lxv +tPM +xTD +chr +xRY +vHY +vNR +rIu +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +qZr +rIu +tst +tst +tst +tst +tst +tst +tst +tst +tst +tst +ooH +bWD +aam +nJo +tSS +qtt +vmj +nJo +xUO +hcc +tpf +tQq +plY +tQq +ybZ +mNh +nJo +rtJ +uyv +nDV +tVz +lxk +pVn +nJo +ceb +cjp +wss +cMY +cNh +cOO +sWA +llu +tfT +kgo +pKR +rvX +daC +dcq +cTT +dfd +dgv +cQM +djM +cNq +dmL +qYs +dqu +jSe +dtj +xmt +wkG +dxQ +dzu +dAx +bfC +wcu +qKp +ePP +mrY +uwB +dJU +drP +dLU +xCD +vpj +ert +ert +ert +ert +ert +esF +ert +tkH +wtc +prZ +tSb +tyz +ert +nbF +eap +eaX +dYu +ect +ecO +dYu +dLW +eet +eff +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(124,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +aad +vVy +aea +vVy +aad +aaa +aaa +aad +vVy +aea +vVy +aad +aad +aad +aad +aad +vVy +vVy +vVy +vVy +aaa +kfc +kfc +kfc +kfc +tXR +tXR +tXR +bvm +alf +alf +aub +alf +alf +etu +gEA +qsP +stb +kmT +yiE +etu +uQK +aKl +vNR +ftj +nfs +pRW +rDh +lNF +prO +vNR +dHX +qZr +fYK +kyR +ohy +qZr +uiU +qIi +hUq +xuj +qat +rga +pNB +lQk +cfX +lSv +qZr +dHX +tst +myU +ntJ +qPN +rfO +hoS +dLb +qLe +tXr +tst +cBV +bWC +bWC +nJo +iGF +qtt +lwN +nJo +hvp +hcc +ybZ +eSd +sHr +hzg +ybZ +oXH +nJo +mcZ +ocw +lOk +gJL +pAC +ffk +nJo +cJK +caE +qnd +cMY +cNi +cOP +fnc +cSg +cXa +vTv +eHs +kPQ +gMz +dGx +ikf +oer +rdz +jew +gax +ejR +wcL +tYc +uGM +cCk +ote +qzP +dwi +huK +rMd +uqv +hEu +qkc +hCm +rMd +uqv +cwB +dJV +dKE +dQE +dQE +qoX +dOR +dOe +dLW +dRx +ert +ert +ert +ert +ert +ert +ert +ert +ert +esG +brP +ebc +ebQ +ecu +ecP +edk +edR +eeu +eaW +aad +rSK +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(125,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +aad +aad +aaa +aaa +aad +aaa +aaa +aad +aaa +vVy +ehy +vVy +vVy +vVy +vVy +vVy +vVy +ehy +vVy +aaa +aad +aaa +aaa +aaa +vVy +ajs +ajR +vVy +aad +aad +aad +aad +aad +aad +aqV +arx +mlu +alf +avu +avw +axO +ayZ +etu +etu +etu +etu +etu +etu +etu +iQH +czi +vNR +vNR +vNR +vNR +ikq +wAa +vNR +vNR +xGJ +oft +nEL +pZc +sYU +jiK +fZx +rSG +mNQ +mNQ +mNQ +mNQ +mNQ +mNQ +iPI +lQk +qZr +kjL +tst +hgH +uEx +qVC +qVC +qVC +qVC +rHt +hpM +fVr +lZn +bWI +bYO +nJo +iGF +qtt +lwN +nJo +xUO +hcc +tpf +lzx +plY +qvX +ybZ +qvX +nJo +phw +jBO +hdj +ljt +lxk +tHi +mKM +vqQ +mJX +ozQ +cMY +cNh +cOQ +mfQ +cSh +saS +cVR +cXk +cYZ +cXk +dcs +hBB +dfd +oay +cQM +djO +cNq +dmN +doG +dqw +drR +dtl +lMO +dtl +tew +dtl +dtl +bcD +dDq +dDq +dDq +dDq +gRQ +dJW +drP +dLW +dNz +nme +oXQ +pzf +nKI +sws +onc +qKK +van +wew +lBw +lQb +pUA +lQb +kbL +hTu +eao +dLY +dLY +dLY +dLY +dLY +dLY +dLY +dLY +aad +rSK +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(126,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +vVy +vVy +vVy +abf +vVy +vVy +abf +vVy +vVy +abf +adq +vVy +aec +vVy +ndS +pfI +sDV +hiA +vVy +aej +vVy +ads +abf +vVy +vVy +abf +abf +ajt +ajS +abf +alf +alf +alf +alf +alf +alf +alf +ary +bvm +aub +avv +awu +axP +alf +alf +pHb +fAp +lAQ +roK +fAp +moD +xjI +roK +vTw +fAp +roK +shD +bdL +iAe +roK +kVP +vYG +kUu +scY +onU +rQi +qZr +vZJ +pZc +xon +lwv +xon +ghJ +rxm +xon +mDk +lQk +qZr +dHX +tst +nca +oBu +kDZ +kDZ +kDZ +vsO +dmx +vyQ +fVr +lZn +bWD +bYO +nJo +iGF +qtt +lwN +nJo +xUO +hcc +tpf +sxw +plY +qvX +qkQ +qvX +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +sfG +fCh +wJz +cMY +cNh +cNh +cNh +cNc +cTU +cVS +cXl +cZa +daE +dct +ddU +cMY +qrO +dhX +gPv +dlz +dmO +iaF +xOo +drT +dtm +iQK +lXF +nGy +vAb +vAb +nkD +xKY +dEu +dFL +hJS +bpL +dJX +drP +dLX +dUY +dUh +thc +dTv +dQA +gKO +ygI +dTv +dUh +dUY +dQE +dWJ +dLW +dYu +rHM +dYu +dYu +dZg +ebR +dLW +eKq +edl +aad +aaa +aaa +aad +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(127,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uYa +hjC +wav +abe +abp +tyZ +tyZ +gIH +tyZ +tyZ +acV +tyZ +tyZ +tyZ +tyZ +tyZ +tyZ +tyZ +tyZ +agB +tyZ +tyZ +tyZ +qzS +tyZ +tyZ +aiQ +gIH +qxi +ajV +abf +alg +alW +amW +alg +aoW +alg +alf +arz +lCh +auf +arB +awv +axQ +alf +sTz +jFZ +aDI +aDI +aDI +aDI +aDI +aDI +aDI +aDI +pwZ +pwZ +pwZ +vKa +pwZ +pwZ +pwZ +wBb +qZr +sjo +kLl +uKt +qfw +jZU +ceG +rrT +haE +uwy +mDE +gpC +wJU +mDk +xaP +qZr +dHX +bBs +hEX +lep +ksz +ybP +gXU +qEu +bhf +oJh +pgZ +sMC +bWD +bYO +nJo +mhX +qtt +ycz +nJo +etU +hcc +ybZ +vcW +gxv +lxr +fVp +qGH +nJo +ssD +nbt +pAm +nJo +tHl +dhg +tDX +jSd +sfG +qrt +cMY +cMY +cMY +cMY +cMY +cTV +cVT +cXm +cZb +cXm +dcu +ddV +cMY +drW +cQM +vaR +cOR +cOR +xdD +xdD +xdD +xdD +qGJ +xdD +fno +eTv +kdX +oIl +drP +drP +drP +drQ +ccL +dJY +drP +dLY +dLY +dLY +dLY +dPI +sEJ +vYt +nPB +nPB +nPB +nPB +nPB +nPB +nPB +nPB +nPB +dLX +dLW +dLW +dLW +ecv +sxV +edl +aad +aad +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(128,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +vVy +vVy +xAW +abq +abD +abD +abZ +abD +abD +uBh +qzU +qzU +qzU +qzU +qzU +qzU +qzU +qzU +lis +skT +skT +skT +gOL +skT +rXs +xTx +lYa +snL +kIj +iZQ +bIc +eYj +kry +kry +qnr +nUI +pBz +vMV +fMK +alf +avw +lhr +axR +alf +aAe +jFZ +aDI +aDD +aEH +aFT +aDI +aIN +aKm +aLC +pwZ +fiJ +gvH +xRN +fKX +wfK +pwZ +ehX +qZr +vND +pUO +lsL +qZr +sKy +bym +lQk +xon +oYG +qju +xon +sLR +mDk +wHq +qZr +seu +mnr +fxY +mMy +kDZ +gXU +nhf +kDZ +ncF +eUy +fNT +lZn +bWD +aaI +nJo +rhJ +qtt +ybZ +lxk +xUO +hcc +ybZ +vHf +lii +kBt +xGs +gta +nJo +tAv +ime +gKR +nJo +kbN +jhd +vFR +wUH +sfG +jQA +pND +cNj +cOR +cQz +cMY +cMY +cMY +cMY +cMY +cMY +cMY +cMY +cMY +oay +cQL +gPv +cOR +qYo +svv +sfo +qnx +efb +hSn +efb +mkm +lyd +lti +xDZ +drQ +dEv +qBj +fnS +lwu +dJZ +dKF +dLZ +dLZ +olS +dOT +dPJ +dQC +gKO +nPB +rMW +olF +rMW +rpu +rMW +bnW +hED +nPB +pCe +pCe +pCe +pCe +pCe +nPB +nPB +nPB +nPB +hCR +nPB +nPB +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(129,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +vVy +vVy +abf +vVy +vVy +abf +vVy +vVy +abf +vVy +vVy +vVy +vVy +aeS +afu +afx +agk +vVy +vVy +vVy +vVy +abf +vVy +vVy +abf +abf +tbi +ajV +abf +ali +alY +amY +anY +aoY +aqa +alf +arA +gvd +alf +avx +goP +axS +alf +arB +teL +aDI +aDE +aEI +aFU +aDI +aIO +aKn +aLD +pwZ +jny +nDa +rEC +fqn +nAZ +pwZ +jWS +qZr +tro +pUO +rGe +qZr +qAS +jOJ +wsA +oDC +puL +xon +xon +lwv +mDk +lQk +qZr +xgq +tst +qAu +pYf +vsO +kdJ +kDZ +kDZ +dmx +vyQ +fVr +kDv +cNT +bYO +nJo +jGJ +ttd +qtt +tqz +xUO +fbn +vBR +iQT +qCz +ejr +rIG +iiE +rkv +tnH +ryM +xNJ +nJo +nhi +hfg +hfr +qxI +qjp +wJz +cLM +cNk +cOR +ozI +nFf +iTI +lEQ +eRZ +mHY +eRZ +eRZ +eRZ +fpo +eRZ +cQM +bza +cNp +qYo +svv +oYI +exE +oIE +lyU +fpQ +scS +eMJ +yiv +gNS +dDt +dEw +dFN +dHm +sqg +dKa +dKF +dLZ +dLZ +dOo +dOT +dPK +pCB +gDT +cGJ +tLL +ipa +wjX +tSz +ipa +kTD +giT +nPB +ekH +uJK +sAx +jQV +jfc +nPB +jXl +nPB +fhW +hbp +uAm +nPB +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(130,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +aad +aad +aaa +aaa +aad +aaa +aaa +aad +aaa +aaa +aad +vVy +vVy +vVy +vVy +vVy +vVy +aad +aaa +aaa +aad +aaa +aaa +aaa +abf +iQJ +ajW +ldY +ldY +ldY +ldY +ldY +ldY +ldY +ldY +czi +ebS +alf +alf +iCs +alf +ary +aAf +kjL +aDI +aDF +aEJ +aFV +aDI +aIP +aKo +aLE +pwZ +eUH +obg +hVv +lIc +jKg +pwZ +nIm +qZr +nIx +qDZ +xKL +qZr +vHp +fms +jpf +jpf +jpf +jpf +jpf +jpf +kYQ +lQk +qZr +bvm +tst +ihg +jxf +nUb +hko +ncF +nUb +xcA +mxv +fVr +lZn +bWD +bYO +nJo +fCQ +ybZ +ybZ +lxk +xUO +hcc +ybZ +iMC +kBt +tIV +kBt +hQk +nJo +vzF +eTH +tNO +nJo +mLS +eie +ohN +nSr +sfG +oHb +pCG +gmc +gnc +qSj +cSj +pMO +cVU +cQQ +cZd +cQQ +cQP +cQQ +cNt +sps +dhZ +oUW +cOR +qYo +svv +ixL +xXn +hsh +lkV +hsh +juf +vDG +mOE +oNd +drP +dEx +dFO +fnk +eCw +lEu +lEu +lEu +dNB +dOp +dOT +dPL +dQE +vYt +nPB +faE +afs +ofJ +jHF +vGL +eFq +xCb +awf +xCb +rfm +ken +tFz +ipa +jyg +rhm +jyg +rhm +vhr +hAD +hCR +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(131,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +aad +vVy +tbi +ajX +ldY +oLJ +gNW +vAo +gQS +xJg +oLJ +ldY +alg +gvd +tDI +aug +wqc +arB +avm +alg +dHX +aDI +aDG +mNP +aFW +aDI +aIQ +gYZ +aLF +pwZ +nwW +nDa +gqQ +fqn +gUR +pwZ +wBb +qZr +vtW +pUO +pwm +qZr +kYo +rcK +tVf +gkn +qPM +sGh +sGh +pOb +jbH +lQO +qZr +gvd +tst +oSc +tnc +vyQ +fbj +eUy +vyQ +tho +uJM +tst +hWc +bWD +uxO +nJo +gNK +wFy +tKi +dgr +xUO +hcc +pzk +pij +lKp +ftc +sOH +kCw +nJo +nEh +eAP +sSg +nJo +sfG +qyh +plu +sfG +sfG +wJz +mTZ +cNl +cOR +cQC +cPf +vNC +cPf +cXn +cPf +cPf +cPf +ddW +cNt +kYV +cQM +oUW +sdF +rsY +rsY +rsY +rsY +rsY +gHl +rsY +rsY +rsY +rsY +rsY +rsY +dEy +dFP +dHo +dID +dKc +dKG +dMa +dNC +dNC +dOT +dPM +dOb +qoe +dOM +nlB +nlB +uSU +uSU +nlB +nlB +nlB +nlB +nlB +nlB +nlB +nlB +nlB +nlB +nlB +nPB +kHw +wxb +iKS +hCR +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(132,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +vVy +abf +pQQ +ajV +ldY +kdQ +pMB +qNM +ewj +pMB +kfv +ldY +arC +bBf +oJU +nGu +nIT +aXx +iXT +rDl +uPA +aDI +aDH +uzY +aFX +aDI +aDI +uIe +aDI +pwZ +mgF +fxz +jah +fUl +cVG +pwZ +qvC +qZr +sIl +vwQ +lbh +qZr +jQY +gJO +vHS +qZr +qZr +vhQ +nHT +jiK +oUA +qZr +qZr +wWP +tst +tst +fVr +fVr +scZ +jhq +fVr +fVr +tst +ntj +sTm +bWK +bWK +pdr +nJo +nJo +nJo +sVJ +mzj +sMO +sVJ +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +nJo +srL +tdj +pgK +lSZ +sfG +ngC +caE +caE +cOV +cQD +cSl +ucJ +cSl +cQD +cQD +cSl +cSl +cQD +dfi +fvP +dib +djS +rsY +tUR +qTt +fJg +rAE +qwF +pGb +sGK +nwa +ndz +fqj +tMt +rsY +dEz +dFQ +dHp +dIE +dKd +dKH +dMa +dMa +rzc +dOT +dLX +emM +gKO +dLW +nlB +mHJ +hPv +hPv +eht +ieh +qGI +wWh +rVN +mhj +qEv +ojz +pnS +lSw +rcM +nPB +say +kKF +ibv +hCR +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(133,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +adq +agk +tbi +ajY +wCM +pVq +qGb +jmG +hfp +kXP +wTo +ldY +hza +mRw +nIV +nIV +nIV +nIV +nIV +nIV +dHX +aDI +aDI +leW +aDI +aDI +ehG +pJR +ehI +pwZ +pwZ +xqe +xek +pwZ +pwZ +pwZ +spo +aDI +aDI +rwU +beV +aDI +bhH +eil +blm +bnn +rCA +bhT +bhT +bnv +bhT +bhT +poj +lPY +bhT +hsR +hfl +hfl +tvS +hfl +hfl +hfl +qGs +bnv +lPY +xiQ +wSu +wSu +mBp +wSu +lUY +wSu +uqh +pDX +wSu +nWu +wSu +taj +ayd +ayd +ayd +ayd +xJd +ayd +hVE +ayd +nUr +ayd +ayd +rqG +wcj +lTm +vuZ +cOV +cQE +cSm +tbw +mzR +cXo +cSl +daG +dcv +cSl +kCI +kYV +dic +jdO +srs +pZv +kLO +tic +ksh +ioP +kHF +hVo +uGB +sjF +uEE +kms +rsY +dEA +dEA +dEA +dEA +dEA +cOR +cOR +cOR +cOR +cOR +dfm +dfm +bdx +dSD +nlB +wEc +hPv +eDl +lny +sIP +iWi +sIP +jWo +oli +lny +rrN +coa +nlB +qqB +nPB +uco +uRT +jJc +nPB +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(134,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +vVy +vVy +tbi +ajV +ldY +rRR +nvw +xNl +xNl +pMB +mxL +ldY +arE +ozq +nIV +eiZ +qTG +mif +xJI +nIV +ogH +aCD +aDJ +tni +abV +aHq +aIS +bBO +guf +crr +dBp +aAU +rqJ +kcK +emc +wVB +rYV +emJ +xMD +vIy +aAU +kVi +xcM +kdP +xjy +aIR +ifQ +rUg +aAq +vAq +aAq +aAq +vWo +tvB +aAq +lNR +tDt +mzs +oOU +tDt +tDt +tDt +tDt +fSi +oIQ +tBR +tDt +tDt +ukV +tDt +tDt +tDt +ueD +oOU +tDt +tDt +tDt +weH +maf +jWk +maf +maf +maf +csM +maf +maf +aRT +maf +maf +aRT +wPL +gSn +fzO +cOV +cQF +cSn +cUb +cVY +cXp +cZf +daH +dcw +cSl +dFg +cCP +cQL +cUe +lRJ +eHx +azX +khP +keW +sFD +sTE +hKQ +leC +rjs +xKd +eZl +rsY +dEB +dFR +dHq +dIF +emG +cOR +dMb +nFv +dOq +dOU +dPN +dfm +oAo +dSE +nlB +mnN +hPv +byB +kbz +ieh +rbg +ieh +mKn +mhj +jtP +gDg +hPM +nlB +nZO +nPB +nPB +kKg +nPB +nPB +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(135,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aid +aiA +aeb +ajf +tbi +hxG +ldY +pBU +nvw +pMB +pMB +xJg +oeE +ldY +arE +oBU +nIV +tsY +fsZ +wow +mrN +jUh +gHb +sBX +gmh +slY +oFd +goY +mqA +syy +rJO +aMZ +prP +iyg +jqh +aTB +aVm +aWU +aYB +bax +bcb +jqh +beX +aDI +bhJ +sKY +blo +bnp +olY +sba +uJX +jWO +pVx +pVx +pVx +qak +nLZ +dxc +eLA +kfa +cdN +kup +kup +kup +kup +vSC +mXM +gSY +kdV +kdV +nNn +kdV +kdV +qKF +udX +cdN +xQH +kup +kup +uft +jaV +dXt +fbT +mLh +fbT +jus +fbT +fbT +rrJ +fbT +fbT +fbT +maf +aGf +sLw +cOV +cQG +cSo +cUc +cVZ +cXq +cZg +daI +dcx +cSl +pGU +oay +cQM +cUe +eui +kXn +iQN +nIj +tUW +xih +tfn +kRs +uGB +sjF +qcg +hVF +uBG +dEC +jEH +jvS +clR +pOm +cOR +dfm +qGZ +dfm +dfm +dfm +dfm +hsx +dSF +nlB +eNI +hPv +byB +lny +sIP +iWi +oli +jWo +oli +jtP +hPv +vnd +nlB +uBK +nPB +tDT +uRT +ujV +nPB +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(136,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +vVy +vVy +tbi +akc +ldY +xcV +uQY +wkR +ndF +wkR +rhZ +ldY +arC +mMF +nIV +vFD +nIb +pTl +nXv +nIV +aBz +tcl +aXI +aXI +qlP +vrR +aXI +mIW +iJf +ncV +ncV +ncV +mlg +ncV +wYm +ncV +kEi +kEi +kEi +jCj +oGL +kEi +xIn +xFk +jNc +qAF +hjl +rAe +wSK +bdN +afR +wqo +wqo +fFy +jWj +qtB +snA +vQK +lRN +lRN +wEA +wEA +wEA +lRN +wpW +bdN +bOF +bfk +bfk +bfk +bfk +aPg +bdN +wpW +wpW +wpW +wpW +xFa +eCE +ctR +glh +mlE +mlE +mlE +lBR +mlE +mlE +mlE +jJG +aGp +dCA +haf +fSy +cOV +cOV +cSl +cSl +cSl +cOV +cOV +cSl +dcy +cQD +dfm +nKj +did +cUe +eui +ugG +tuR +llo +sNs +gGK +fyh +fXW +nwa +ifj +qPd +nlw +vaW +jRm +kHa +lak +dIH +xzd +cOR +dMc +qsi +dOs +dOV +dPO +cOR +uDX +tRP +kkW +run +bLF +jjM +bLF +bLF +bLF +bLF +bLF +kRC +sym +lLW +pfD +nlB +eXN +vXy +mVN +cIo +ouR +hCR +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(137,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +ads +hiA +rfq +kIj +oYK +cHS +abt +vKU +nrg +qCl +oSl +ldY +arF +qoM +nIV +qFt +smD +wvg +pWb +qnf +aBA +gvd +aXI +qya +oxd +wcz +rAw +aXI +aXI +ncV +kIC +khK +imN +qvB +yhE +pbj +kEi +pUY +eJR +oJG +jBo +kEi +jsg +bEh +edH +kEi +hjl +rAe +kBN +bdN +bvJ +bvJ +bvJ +fFy +qHH +nwK +oOD +ikJ +lRN +uKR +tZP +sKa +pTo +kcH +wpW +odz +bdU +bdT +lgC +rSw +kCA +bok +sUV +wpW +cgY +oCs +lvY +wpW +lpc +oaQ +mlE +uBF +ozp +mBg +nqe +rFW +tVn +vhK +mlE +ead +maf +gSn +rjJ +bsk +lZC +gnd +joN +suk +fPj +cOR +daK +dcz +ddY +dfm +qrO +die +cUe +eui +eui +eui +aOw +rsY +rsY +eui +rsY +sdF +rsY +rsY +bwe +rsY +dEE +pmi +dEA +dEA +dEA +cOR +dMd +mFg +oGB +uaD +orw +vnC +rEi +dSH +nlB +kWN +hPv +hPM +qEv +ieh +rbg +mhj +qEv +mhj +jtP +hPv +gsq +nlB +ixI +iGq +xsm +eKd +bwT +uSJ +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(138,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +vVy +abf +hoN +ajV +ldY +fIF +oGR +wSb +baD +ndF +rhZ +ldY +arC +wNu +nIV +qcr +ptA +ihk +mYA +qKj +aBB +bvm +aXI +ioR +xEX +eXr +gUH +jgR +aXI +kAj +wPF +syr +uNt +wPF +wPF +xXB +kEi +eKo +sGZ +pLf +rmH +kEi +aAA +nHt +omF +kEi +hjl +rAe +kOK +bfk +aaa +aad +aaa +fFy +fpZ +jbx +mzf +sme +lRN +wiP +hvt +oIT +hvt +vJW +wpW +wpW +erd +iIt +wpW +iIt +nDx +iIt +wpW +wpW +wNi +hnn +ihC +wpW +lpc +jgH +mlE +sMV +rKF +uQr +ntL +hgT +dZW +asr +mlE +iPN +maf +vTf +gQs +iul +duG +tvA +lne +cre +cJw +wGU +mxS +eSK +fiM +tVw +uHH +dif +cUe +cUe +cUe +cUe +uID +dsc +cUe +cUe +cUe +cNt +cUe +cUe +jAB +dDw +cUe +kdY +cUe +dII +dKh +cOR +dMe +kZx +dOu +dOX +dPQ +cOR +oWj +dSI +nlB +qzj +hPv +qSc +lny +sIP +iWi +sIP +lny +iAh +jtP +gDg +gSp +nlB +oqN +xeL +wlf +tLg +qjn +uSJ +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(139,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +aad +vVy +lcU +vVy +aad +aad +aad +aad +vVy +aON +vVy +aad +aad +aad +aad +aad +vVy +tbi +jrC +ldY +eLb +xNl +ewj +baD +wkR +wbb +ldY +arC +ozq +nIV +jwc +jzT +oUZ +pOd +nIV +aBC +kgR +aXI +vcU +cFc +ygs +kmR +sYJ +aXI +szF +bGX +xwV +hUs +pza +kSw +tTW +kEi +tjO +bgY +uuR +hXs +pRb +cJu +kgL +gQQ +kEi +hjl +rAe +kOK +bfk +aaa +aad +aaa +fFy +jWj +uNS +for +jWj +lRN +fAd +uim +pnR +mdd +euP +wpW +kpk +qUV +gDO +gWG +mlD +iTz +vcZ +wqv +sDz +sDz +tJr +lFV +wpW +lpc +oaQ +sYF +lOi +pVS +lpV +lpV +lpV +nXy +ptO +mlE +sfd +maf +hEa +pZp +obh +voq +xrC +ivL +ucR +joN +cZi +daM +jkj +dea +cPi +jmr +dhY +cQJ +cQI +cQJ +doT +smF +duR +dtv +duR +dwt +dya +dwt +duR +qdH +duR +dEF +hVB +dHt +dIJ +mtm +ghq +okm +blB +fZN +dOY +dPR +dfm +gKO +dYu +nlB +noK +xnL +oyj +nqU +rPJ +nWI +rPJ +nqU +dqz +nqU +hRj +gsC +uDc +xeC +gDE +aQK +wbH +qjn +uSJ +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(140,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aaa +aaa +aad +aaa +aaa +aad +aaa +vVy +ehy +vVy +vVy +vVy +vVy +vVy +vVy +ehy +vVy +aaa +aad +aaa +aaa +aaa +abf +eWE +aka +ldY +hNT +rmR +hDb +mui +yls +nkz +ldY +qMd +jfU +nIV +nIV +nIV +nIV +nIV +nIV +aBD +qxA +aXI +pkT +lyS +odp +gUH +mvD +hpD +wPF +eXt +dqC +qrR +eKH +eXt +tYX +kEi +nGD +qVq +qGc +rRd +kEi +laj +lVm +nBD +kEi +hjl +rAe +kOK +bfk +aaa +aad +aaa +fFy +iLS +nzz +qyB +thX +hML +oZY +iWR +exf +lPn +nYj +wpW +jkO +ods +nEK +ods +nEK +ods +eXb +wTY +fcB +eUp +lte +hhG +wpW +lpc +ctU +mlE +sZY +xjd +umQ +umQ +umQ +iQQ +pUR +hPs +rWa +maf +rSJ +pZp +obh +tNU +wjP +uqe +voq +vNm +cZj +daN +dcC +deb +dfo +tyR +kHI +oIJ +jSK +oIJ +qgC +rgA +rJq +bSl +wyW +udg +rKb +wyW +wyW +nkb +hRO +oIJ +kWW +fkP +aXB +xYM +cOR +dMg +dNI +dOw +dOZ +dPS +dfm +vcI +dSJ +nlB +yjE +eFU +hPv +lJI +dTS +iWi +mqj +fNp +oli +lny +ijk +hvd +nlB +kaB +wCU +ktw +pHc +lZe +nPB +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(141,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaP +abf +abf +abf +abf +abf +vVy +vVy +abf +ads +vVy +qkG +vVy +aeV +afw +afT +agk +vVy +eAM +vVy +adq +abf +vVy +vVy +abf +abf +hTb +cUw +ldY +ldY +ldY +ldY +scj +ldY +ldY +ldY +arC +xNd +vUq +obx +dWw +oWe +hOU +eBe +wWN +iXT +aXI +qzb +wtr +oJq +sms +xre +aXI +tme +qNl +suR +suR +bOY +suR +enj +kEi +nlA +xBe +fAz +qRY +kEi +eQB +jTU +gmi +kEi +wxO +rAe +owE +bdN +aad +aad +aad +fFy +uCu +nzz +qyB +rsZ +hML +boH +uEZ +pjK +gjL +sYO +wpW +xKQ +dZh +xck +tXA +xck +lya +xck +cDk +rps +vgL +ogK +dwU +iIt +bez +ctV +mlE +lml +xjd +jju +mNo +eTD +eze +sKP +hPs +rWa +maf +gSn +rjJ +lzb +ePs +wzP +ivL +haA +qes +cZk +daO +dcD +dec +dfp +kYV +dih +djW +dlM +dlM +dlO +dlM +aFk +dlM +dlO +dlM +dyc +dyc +dyc +dEG +qPu +dEG +dyc +dyc +dyc +dyg +cOR +dfm +dfm +dfm +dfm +dfm +dfm +bfH +dOM +nlB +qqB +tMz +goQ +qqB +nlB +qqB +nlB +nlB +qqB +nlB +nlB +nlB +nlB +iAK +nPB +nPB +nPB +nPB +nPB +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(142,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xZM +abE +qPf +aca +abC +abC +acX +adt +abC +abC +kpF +dSp +dSp +dSp +dSp +kIH +vEK +vEK +vEK +rIY +vEK +vEK +dYo +xbZ +izG +iBT +sjT +xmR +iXT +sgY +xGl +xFo +sgY +wCQ +wXJ +cbR +ffo +ffo +ffo +ffo +ffo +ffo +ffo +xMe +aXI +heA +gje +heA +aXI +aXI +aXI +wTb +hzj +qJk +qJk +qJk +cqu +vWL +kEi +kEi +kEi +kEi +kEi +kEi +wlp +ryS +qhn +gRl +hjl +rAe +kOK +bfk +aaa +aad +aaa +fFy +fiz +iDp +bfw +sJv +hML +nOc +iVA +ksV +oGa +qXE +sEN +pZH +tYr +xWn +xWn +xWn +sfK +xWn +ujH +xWn +tYr +dtu +kJd +wpW +lpc +ctW +mlE +sZY +oTk +lkG +lkG +lkG +oIv +scE +lJZ +vtP +csM +gSn +rjJ +xvp +rjP +wzP +ivL +pFR +nry +cZl +daP +cZm +cZm +cZm +hRz +dii +djX +dlN +dmZ +doW +dqL +quh +dtw +duU +aaG +dyc +ped +dAJ +dCp +hoQ +dEH +dFY +dHu +dIL +dyg +dKJ +dMh +rHM +dNt +ebR +dPT +dYu +dDp +dST +dTJ +dUB +dVl +dVl +dWS +tpS +dVl +dZn +dZV +eaE +ebk +eca +ecF +dVl +dVl +edX +eeG +eft +egg +egD +abj +abj +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(143,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aas +aaa +aaa +aaa +abs +abF +abP +acb +aco +aco +aco +aco +aco +aco +aex +aco +aco +aco +aco +agE +aco +aco +aco +aco +aco +aco +aiT +abZ +tRN +ajV +akE +akE +akE +akE +akE +akE +akE +akE +hza +wLv +ffo +aXM +kWS +kWS +wPK +rBV +ffo +gvd +ncV +hFM +wtr +vsR +guN +xUH +pqt +ofO +ofO +ofO +ofO +ofO +ofO +ofO +cnV +sRg +qhd +iuI +qTW +nFS +ftf +edy +wUY +gRl +tsx +nih +kOK +bfk +aaa +aad +aaa +fFy +too +qst +tvt +lrc +mSa +iQb +nyA +dWX +gqJ +jWl +wpW +hhG +sjC +sjC +sjC +tfO +sjC +sjC +sjC +sjC +sjC +wJW +vhT +qkD +bZN +nqg +jeb +mZs +ifX +lpV +lpV +lpV +fgO +gwr +mlE +kRu +plg +gSn +dMY +sjE +lke +wzP +ivL +ucR +tLY +cZm +daQ +dcE +ded +dfq +vuc +dij +djY +dlN +dna +duV +dqM +ycM +bCi +duV +dww +dyd +dzG +dAK +dCq +mFa +tVu +cdT +lQC +hFa +soc +tRP +jJq +rWh +eMj +lLo +rUZ +jjf +kRV +biU +sCL +vHW +vHW +oLg +jWm +gzW +gzW +gzW +chM +gzW +gzW +gzW +gzW +chM +nDJ +edY +edY +edY +edY +egE +aad +aad +aaa +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(144,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xZM +abG +vVy +acc +abD +abD +acY +abD +abD +abD +abD +abD +abD +abD +abD +abD +abD +abD +ahz +ahS +abD +abD +aiU +abZ +tRN +akc +akF +alu +amj +ani +aoh +ape +aqj +akE +arC +mdC +ffo +mjA +gPf +ffh +ffo +ffo +ffo +bvm +ncV +vWE +xXQ +hXi +jvd +cqy +ofO +qUo +osj +her +ofO +fSq +pkB +ofO +tLs +hiK +jTr +uIn +reI +uIn +reI +ryS +gCu +gRl +hjl +rAe +kOK +bfk +aaa +aad +aaa +khQ +bTD +qJA +oOD +hZw +hML +qrD +nYj +gqP +nYj +nYj +wpW +tRR +dCF +mSD +wVf +sDz +fOk +xwZ +ocD +wVo +iYA +reS +vCj +wpW +lpc +oaQ +mlE +kcZ +nru +gvc +npO +mvL +umz +mfb +mlE +hwV +maf +gSn +rjJ +vHM +hHj +ovE +lYo +voq +pAJ +cZn +daR +dcF +nKw +rxb +qyu +dcH +djZ +dlO +dnb +doY +teo +rIB +xnP +duW +dwx +dyd +dzH +dAL +aaz +lcm +aaz +oPu +dHw +dIN +dyg +wsg +lyA +dNL +dNL +dNL +dNL +dNL +dNL +dNL +dTE +dUx +dUx +dVY +dWU +dUx +dUx +dUx +vIQ +dUx +dUx +dUx +dUx +ecX +gER +edZ +eeH +efu +egh +egE +aad +rSK +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(145,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaP +abf +abf +abf +abf +abf +vVy +vVy +abf +adq +vVy +aee +vVy +aeX +afx +afx +agl +vVy +aee +vVy +ads +abf +vVy +vVy +abf +ajh +xoQ +cUw +akG +alv +tfh +hxZ +iNS +nev +vMA +gxR +xmR +iKd +ffo +tsl +xNn +ktW +ouP +jiM +ffo +gvd +ncV +wrg +euO +vsR +yhN +cqy +ofO +fSq +dNe +sub +ofO +qFk +uEX +fSq +ofO +hiK +nbw +reI +lwm +fGQ +qrQ +jTU +olH +kEi +xha +pRf +djc +bdN +aad +aad +aad +khQ +fIk +xTi +pYj +pXj +hML +rDv +mtj +nYj +dhf +lRN +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +wpW +lpc +ctZ +mlE +gvx +lly +tKj +fot +tKj +kJx +cMf +mlE +faw +maf +gSn +rjJ +tUC +pFR +wzP +ivL +ucR +kaQ +cZm +daS +dcG +def +dfs +tUm +dcH +dka +dlN +dnb +doZ +dqO +dsi +dtx +duX +dwy +dye +dzI +dAM +aar +tfy +aaA +ljm +dHx +dIO +dKk +dOd +qoe +dNL +dOz +dPc +dPV +dQK +dRP +dNL +dTF +dUx +dUx +dVZ +ecY +dXK +dYD +dXK +aGY +ecY +dXK +dYD +dXK +ecY +hDE +cvX +fjV +efv +egi +eeb +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(146,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aad +aaa +aaa +aad +aaa +vVy +ehy +vVy +vVy +vVy +vVy +vVy +vVy +ehy +vVy +aaa +aad +aaa +aaa +aaa +abf +tRN +ajV +akE +alw +aml +ank +aoj +apg +aql +akE +arK +dHX +ffo +oGA +sxD +sXL +ffo +ffo +ffo +bvm +ncV +kUs +iJD +mvD +bSd +eMI +ofO +fSq +fGm +kYk +ofO +nLa +kOD +fSq +ofO +rfb +fjP +uIn +hKw +oJz +qrQ +iQf +tCT +gRl +hjl +ekM +kOK +bfk +aaa +khQ +khQ +fFy +pCr +nzz +oOD +jVX +hML +lRN +msG +fTP +qOr +lRN +rXu +bWW +bUF +bUF +ccD +cet +bUF +bUF +bWW +bUF +bUG +aaa +aaa +cqY +dJz +oaQ +mlE +mlE +szn +mlE +mlE +mlE +mlE +mlE +mlE +pQV +maf +aGf +pZp +pny +duG +vVO +xVN +voq +iuE +cZo +daT +dcH +deg +dft +fuN +dik +dkb +dlP +dnc +dpa +dqO +dsj +dtx +dpa +dwz +dyd +dzH +dAM +aav +aay +aaB +aaF +dHy +dIP +dyg +dKN +gDT +vDp +oCe +eVs +rVD +rVD +cMR +dPg +dTF +dUx +dUx +dVZ +dUx +dXL +dYE +dZo +vIQ +dUx +dXL +dYE +dZo +dUx +gER +eeb +eeJ +efw +egj +eeb +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(147,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +vVy +azI +vVy +aad +aaa +aaa +aad +vVy +aYA +vVy +aad +aad +aad +aad +aad +vVy +tRN +ajV +akE +akE +amm +akG +aok +akG +akE +akF +alf +cok +ffo +ffo +iAP +eAI +uGU +szL +ffo +wNq +ncV +ude +euO +vsR +yhN +cqy +ofO +fSq +lHa +mnC +ofO +chH +fpi +fSq +ofO +oOl +fjP +reI +lwm +uVu +weZ +awl +ptG +gRl +hjl +rAe +kOK +bfk +aaa +khQ +nTB +nmR +lLY +nzz +oOD +gdT +qzr +bKH +bKH +bKH +bKH +bKH +bUG +bUF +bUF +bUF +ccH +bUF +bUF +bWX +bWX +ccH +cmD +aad +aad +cqZ +hxO +oaQ +cqZ +aad +aad +eBv +xmS +kJW +lAV +ePQ +eBv +iPN +maf +gSn +taj +sfP +pFR +wzP +ivL +ucR +fnz +cZp +daU +dcI +deh +dcH +dgO +dcH +dkc +dlN +dnc +dpb +dqO +dsh +dty +duY +dwz +dyf +dzJ +dAM +aaw +dEL +aaC +dGc +dHz +dIQ +dyg +dKO +qoe +dNL +dOB +dPe +dPX +dQM +dRR +dPg +dTF +dUx +dUx +dVZ +dUx +dXM +dST +kRh +vIQ +dUx +ebl +dST +ecG +dUx +kQA +hXM +xZy +bmJ +egk +eeb +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(148,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abf +lET +anm +lAM +abZ +anm +anm +aol +api +bia +abZ +arL +tXb +auk +ffo +vPC +xiH +ffo +ffo +ffo +bvm +ncV +dZu +jNP +krF +yhN +ffv +ofO +tLs +fSq +rJI +opE +gsZ +gsZ +faY +ofO +kPB +wER +gVj +fMv +gVj +fMv +peo +nfE +gRl +hjl +nmC +kOK +bfk +aaa +khQ +rGD +eOM +wQK +nzz +vKE +ldr +jam +bKH +bMx +bOG +bQH +bSD +bUH +bWX +bZf +caT +ccH +rWL +bUF +cid +cjE +cla +bUG +aaa +aaa +cqY +lpc +cub +cqY +cqZ +cqZ +vkd +hbl +ltm +pXL +uWH +wHk +iPN +bMR +gSn +rjJ +olk +ucR +nfZ +mvE +pFR +fnz +loI +daV +dcJ +dei +dfu +dgP +dil +dkd +dlN +dne +dpc +dqP +dpc +dpc +dpc +dwB +dyd +dzK +dAO +dCv +dDF +dEN +dGd +dHA +dIR +dyg +dKP +eFA +dNL +dOC +dPf +dPY +dQN +dRS +dSO +dTF +dUx +dVk +dVZ +dUx +dXL +dYG +dZo +vIQ +dVk +dXL +dYG +dZo +dUx +gER +eeb +eeL +efy +egl +egE +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(149,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +mlq +nkd +nkd +lYa +nkd +nkd +nkd +raT +nkd +lYa +nkd +oTT +aul +iAO +iaa +hjY +tlv +fMD +ffo +lCh +ncV +mvi +qMY +snN +umc +fqv +mMT +ofO +ofO +ffB +ofO +ofO +ofO +ofO +vIJ +utc +kEi +lcu +gVj +fMv +gVj +qET +lCm +qAF +hjl +iZF +gdb +bfk +aaa +khQ +pnW +xTi +fec +skj +vxf +doR +too +bKH +bMy +bOH +bQI +bSE +bUI +bWX +bZg +caU +ccH +bUF +bUF +cie +cjF +ccH +bUG +coe +coe +cqY +mAP +cuc +udD +oaQ +cyt +tOs +tmP +qUi +tmP +tmP +kCz +hUA +iuh +gSn +rjJ +kxU +gjg +jMo +ofT +oth +bIf +cZm +mcx +dcK +dej +cZm +dgQ +dim +dgQ +dlN +dnf +dpd +dqQ +dsk +dqQ +duZ +dwC +dyg +dyd +dAP +dyd +dyg +dEO +dGe +dHB +dIS +dyg +dNO +mlz +dNL +dNL +dPg +dPZ +dPg +dNL +dNL +dTG +ecY +ecY +dVZ +dUx +dXN +dST +dZp +vIQ +dUx +ebm +dST +ecH +dUx +gER +edY +eeM +efz +egm +egE +aad +rSK +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(150,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +qQv +akf +akJ +abf +amo +ann +aom +ufw +aqm +abf +arM +fcn +aum +xac +ffo +ffo +ffo +ffo +ffo +fPb +ncV +ncV +ncV +ncV +iKP +ncV +ncV +uZJ +uZJ +aVA +vih +vih +uZJ +uZJ +ncV +ncV +qAF +kEi +qVz +qVz +qVz +xMf +kEi +sgW +hjl +cAE +sEo +bdN +aad +fFy +lZN +wQK +wQK +gYt +gKG +qtW +lBH +bKH +bMz +bOI +bQJ +bSF +bUI +bWY +bUF +bUF +dtf +lia +rZb +ait +ait +ait +had +pzj +cpI +cqY +eTr +cud +cvt +cwL +oaQ +eBv +pXL +qYi +fwF +iiL +vkd +mpQ +kCj +qfq +nTT +fSy +rjJ +sYW +lKs +rjJ +fSy +cZq +cZo +cZm +cZo +cZl +dgR +din +sDg +dlN +dlN +dlN +dqR +dsl +dsl +dsf +dlN +dyg +dgR +din +dke +dyg +dyg +dyg +dyg +dyg +dyg +dKR +vwa +dNO +dOD +dPh +dQa +dQP +dRT +dSP +dTF +dUx +dUx +dWc +dUx +dXL +dYE +dZo +vIQ +dUx +dXL +dYE +dZo +dUx +gXX +edY +eek +efA +eek +egE +aad +rSK +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(151,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +tRN +aco +akK +vVy +amp +ano +aon +rVE +aqn +abf +arN +tlE +aun +bnt +awP +qpc +irV +qpc +qpc +xzt +aDM +aFb +sUf +sUf +aJd +sUf +sUf +sUf +sUf +hnu +sUf +sUf +sUf +sUf +oxD +baG +wkd +sUf +sUf +sUf +sUf +dtp +sUf +avN +hjl +mpS +ctr +bfk +aaa +khQ +lRK +hRa +wQK +eFk +hye +sCg +lmb +bKH +bMA +jAM +bQJ +bSH +bUI +bUI +bUI +caY +sUc +bUF +bUF +cig +bUI +bUI +bUI +cog +jxD +cra +lpc +cue +cvu +cwM +cyt +vkd +qNK +pTc +gTt +mue +sLi +gic +iPj +vTf +oKG +dwD +dwD +hQG +sbf +dwD +dwD +cZr +daX +daX +daX +daX +daX +daX +daX +dlQ +cZr +dpe +dsm +dsm +dsm +dva +dwD +dlQ +dzL +daX +daX +cZr +dwD +dwD +dwD +dwD +dwD +dwD +sni +dNP +dOE +dPi +dPi +kKa +dRU +dSQ +dTH +dUz +dUz +dWd +dWV +dXM +dST +dZq +vIQ +dUx +igB +dST +ecG +dUx +gER +eeb +eeN +efB +egn +egE +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(152,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aad +aad +aaa +acF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +tRN +aco +akL +vVy +amq +anp +nVc +apm +aqo +abf +arO +pYw +aco +avN +mtf +bfo +bfo +bfo +nxJ +mhv +jgh +jgh +tHC +tHC +aJe +tHC +tHC +tHC +tHC +xHb +aSd +aTN +aVv +aXd +aYH +tHC +bcn +tHC +rdI +kLb +tHC +bjN +tHC +bnt +iGQ +sEv +laY +bfk +aaa +khQ +weV +nzz +xBf +gYt +mPB +xdM +dut +lAR +tSn +qos +bQJ +bQJ +bUK +bWZ +bZi +bUF +pHV +fZt +cgm +ccH +cjG +xHZ +cmF +pal +kMl +lhi +mNX +nwG +kUO +cwN +cyu +vkd +xOF +iss +nDO +vav +sLi +iOo +lnM +rEU +bbA +cPk +cPk +kyg +utE +cPk +cXD +cPk +daY +cPk +cPk +cPk +cPk +cPk +cPk +dlR +cPk +cPk +dqT +cPk +cXD +cPk +cPk +dlR +cPk +cPk +dKS +dKS +dEP +dKS +dKS +dIT +dKS +dKS +ptv +dNQ +dOF +cPk +dQb +ivo +dRV +dSR +dTF +dUx +dUx +dWe +dWc +dXL +dYG +dZo +vIQ +dUx +dXL +dYG +dZo +dUx +gER +eeb +eeO +sZn +ego +eeb +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(153,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +tRN +aco +akM +vVy +amr +ojT +ano +ano +aqp +abf +arP +fBq +cwC +oZo +vdb +teB +tno +tno +tno +amy +and +ueP +xvS +sfF +aiy +xvS +wAt +iZH +tno +nAl +cve +tno +xIT +eqJ +jEU +tno +nfv +cve +qjN +nCg +qjN +qjN +wMd +oZo +nOA +aRA +nZv +bfk +aaa +khQ +oZT +hRa +myk +gYt +bof +kxN +osF +bKH +bQJ +iQa +bQM +bSH +bUI +bUI +bUI +caY +sUc +bUF +bUF +cig +bUI +bUI +bUI +coi +cpL +cqY +ybg +cug +pjU +qOd +cyv +vkd +tUe +qYx +whq +nxt +sLi +mAq +bvi +eBN +kSO +qDf +qDf +qDf +cAf +cDn +kUT +vpN +qqf +rEm +gij +gij +fqb +gij +gij +lwZ +gEG +kUT +nKm +wuX +nKF +rRW +rRW +lwZ +rRW +vvc +yfH +vpN +wgo +kUT +kUT +kUT +kUT +iim +vct +kyQ +gom +kvi +xWB +eZa +dRW +dSQ +dTH +dUz +dUz +dWf +qPx +nIK +nIK +nIK +jAZ +dUx +dUx +ecb +dUx +edb +gBQ +iGY +tci +tJL +egp +eeb +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(154,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +tRN +aco +akN +abf +ams +mIm +aom +apn +aqq +abf +arQ +fcn +aup +aRn +ssB +ssB +ssB +ssB +ssB +hOg +ssB +iZZ +wYC +fmd +fmd +wsM +fmd +iZZ +iZZ +iZZ +iZZ +unx +kjN +xzz +sNC +unx +unx +wOu +qGO +lHS +bhW +qGO +blE +bnu +pdo +ncp +naF +bdN +aad +fFy +ycI +wQK +wQK +gYt +vlm +jHY +inm +bKH +bMD +bOM +bQJ +bSI +bUI +bXa +bUF +bUF +iOJ +mcn +ait +ait +ait +ait +had +jMn +wxi +gEh +mMQ +cuh +gqq +cwP +jlX +eBv +pXL +jug +nZB +vGQ +vkd +nbQ +rrD +mPM +fcr +wII +dPl +uwH +mcD +mBA +wII +pxG +dba +pxG +dba +dfv +dgT +dio +dkf +xvf +xvf +dpg +inw +xvf +xvf +dpg +xvf +xvf +inw +emj +xvf +xvf +xvf +xvf +dHD +dHD +heQ +koZ +dMt +dNO +dOH +dPk +dQd +dPk +dRX +dSS +dTI +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +dUA +edD +eeb +eeQ +efy +ego +eeb +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(155,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVy +mlq +nkd +nkd +lYa +lKV +oak +nkd +nkd +nkd +lYa +nkd +dmU +tFO +ssB +xrw +oMa +qGK +hwx +yek +uVV +uxd +iZZ +oPN +fmd +teC +qal +gaE +eKl +imA +wTL +iZZ +oYy +pUe +pbn +lPc +rRw +unx +bdO +bfl +oAe +bhX +yjg +xzu +qGO +pdo +vdX +tfi +bfk +aaa +khQ +mnX +xTi +iDp +bIW +tLO +gYD +too +bKH +bME +bON +bQN +bSJ +bUI +bWX +bZj +caZ +ccH +bUF +ccH +cih +cjH +ccH +bUG +coe +coe +cqY +gFn +lYQ +rJU +rRG +xNT +okN +xZz +sKn +kiV +kiV +uyT +qle +sYX +xCi +rjJ +hun +nPY +umF +bfW +hNm +hiD +pxG +dbb +dcN +del +pxG +dgU +dip +dba +xvf +dng +dph +dph +dph +hpY +dph +dph +ntV +rPv +dzR +lcz +dDI +dER +xvf +dHD +jcE +dNO +nIa +dNO +dNO +dNO +dPl +dPl +dPl +dNO +dST +vWJ +dUB +dVl +dWg +dVl +dVl +dVl +dVl +dVl +dVl +dVl +dWg +dVl +dVl +dVl +eeb +eeR +efF +egr +egE +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(156,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abf +vtF +aki +akO +abZ +stE +ant +aeb +api +api +abZ +arR +xNU +auq +ssB +oat +wmI +caQ +uyP +xaG +isb +hut +iZZ +rKM +wEL +vox +fdd +ssp +kjE +jqd +qVM +fmd +aZp +kJB +kVJ +llC +hGg +sVm +bdP +tHC +mlc +bfo +bfo +blH +qGO +pdo +kQd +lIF +bfk +aaa +khQ +kUc +hCS +wQK +nzz +ctu +uti +nxi +bKH +bMF +bOO +bQO +bSK +bUG +bWX +bZk +cba +ccH +wRg +ccH +cii +cjI +cla +bUG +aaa +aaa +cqY +pbl +cuj +cqY +cqZ +cqZ +vkd +hbl +qmP +pXL +uOP +wHk +lLA +pFL +xCi +rjJ +uip +iLt +tfS +oas +rjP +wSx +mOg +dbc +lYb +dem +dfw +dgV +diq +dkg +dcM +dnh +nAG +oRI +oRI +oRI +oRI +kpm +goX +mWu +dGl +fYL +tXj +dES +inw +dHD +qUN +dNO +pnj +dMv +dNS +aaa +aad +aaa +aad +aaa +dSU +dSU +dSU +dSU +dSU +dSU +dSU +eJt +dZr +rKN +dSU +dSU +ecc +dSU +dSU +dYI +eej +eeS +eeb +eeb +eeb +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(157,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +vVy +lcU +vVy +aad +aaa +aaa +aad +vVy +lcU +vVy +aad +aad +aad +aad +aad +vVy +tRN +hxG +akP +akP +lXL +akQ +aoq +akQ +akP +akR +aig +tXE +aig +ssB +oat +wmI +jTl +pWi +hOZ +aYs +rYJ +fHd +nCf +spD +wvP +vUy +lYM +hEm +hoY +opn +fxx +cxY +vJF +fJo +fNC +fNx +ePT +jDK +mKV +sfF +hAN +kyf +rqk +rlV +oXn +tDt +lIF +bfk +aaa +khQ +fny +uEl +wQK +nzz +oOD +gdT +wnQ +bKH +bKH +bKH +bKH +bKH +bUG +bUF +bUF +bUF +ccH +bUF +ccH +bWX +bWX +ccH +cmD +aad +aad +cqZ +vcC +jlX +cqZ +aad +aad +eBv +xiK +jDJ +lNS +gyL +eBv +lLA +maf +xCi +taj +eyt +ucR +xYN +rlu +gdw +iuE +qDR +dbd +dcP +den +den +dgW +dir +dkh +dcM +vwn +dpi +dcO +dcO +dcO +dcO +jFk +dsA +dCB +dGl +fYL +oiq +pnH +xvf +dHE +dIV +dNO +cMm +pWf +dNS +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +aaa +dSU +ehM +dSU +ehM +dSU +aad +aad +aad +dSU +ehM +eek +eeT +eek +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(158,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aad +aaa +aaa +aad +aaa +vVy +ehy +vVy +vVy +vVy +vVy +vVy +vVy +ehy +vVy +aaa +aad +aaa +aaa +aaa +abf +rMD +ajY +akP +pXd +jzg +anv +aor +app +xSk +akP +arS +vAv +aus +ssB +nRI +rix +imx +kwB +vep +tow +eRY +koD +wRw +vLs +wjV +uhJ +kuv +ujM +flz +hyF +fmd +mTb +nzc +fZr +llC +kDK +sNC +bdR +bfo +fUx +gRr +bfo +blH +wii +pdo +tDt +lIF +bfk +aaa +khQ +khQ +fFy +kQh +nzz +oOD +gdT +glH +glH +jLq +qqj +pGB +glH +sfH +bXb +bUF +bUF +ccH +ceD +cgq +bUF +bXb +bUF +bUG +aaa +aaa +cqY +sVD +jlX +vZj +vZj +xpb +vZj +vZj +vZj +vZj +vZj +vZj +rVu +maf +xCi +taj +eyt +iLt +cpv +gPk +ucR +sSs +gaP +dbe +dcQ +deo +dfx +dgX +dis +mCn +dlU +fYL +dpi +dcO +dcO +dcO +dcO +jFk +dsA +dCB +dGl +fYL +hTS +okB +dGi +noj +dIV +dNO +dKY +uDb +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dSU +jMX +dSU +jMX +dSU +aaa +aaa +aaa +dSU +dYJ +eek +eeU +eek +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(159,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaP +abf +abf +abf +abf +abf +vVy +vVy +abf +ads +vVy +eAM +vVy +afb +afz +afV +agk +vVy +gJw +vVy +adq +abf +vVy +vVy +abf +ajh +xoQ +cUw +akQ +alA +pir +dDZ +tJv +apq +aqs +aqZ +aij +fmH +sGo +ssB +ssB +ssB +ssB +omx +ssB +ssB +ssB +iZZ +xub +jtJ +xuZ +xaj +oFV +iZZ +vbX +iZZ +iZZ +wPU +vTt +rqC +llC +kvl +unx +bdS +bfo +iUE +bfo +bfo +blJ +wOu +xha +bkA +djc +bdN +aad +aad +aad +khQ +xQz +xTi +oOD +iUx +glH +pNO +wvX +gaN +xtC +glH +glH +glH +rWM +rWM +rWM +rWM +rWM +rWM +tYJ +tYJ +tYJ +tYJ +tYJ +tYJ +mJr +cum +vZj +xsl +bAs +kMC +kaN +iog +fWV +peu +vZj +lLA +maf +xCi +rjJ +bqZ +haA +xYN +mga +tML +osc +ppn +dbf +dcR +dep +cbi +hGr +sXR +stM +dcM +nNI +dpi +dcO +dqW +dqW +dqW +etr +dsA +dCB +gqD +pJU +dDJ +aaH +xvf +dHH +qlz +dNO +dKZ +bjK +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(160,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xZM +abE +vVy +aca +abC +abC +adb +abC +abC +abC +kpF +dSp +qAU +dSp +dSp +dSp +kIH +vEK +vEK +qGj +vEK +vEK +dYo +lYa +kvx +akj +akR +alB +amx +anx +fiW +apr +mgU +akP +arU +azn +icb +vQq +rLn +tqi +sWE +yma +oLy +sTu +yec +fHd +fNP +oTb +wcq +oTb +oTb +xim +oTb +qSI +aLv +tVP +vTt +bWl +pfY +ewg +sNC +gRr +bfp +tcg +bbw +hNq +ssL +tlA +gNl +tDt +lIF +bfk +aaa +aad +aaa +khQ +oxn +xTi +oOD +vfg +glH +otq +rAf +gaN +gaN +sXr +jpd +wQc +rWM +lEN +vtq +lIk +hft +rWM +txO +txO +mKA +lmD +eyu +tYJ +pbl +jlX +vZj +lQY +jfV +eyc +irC +irC +jmz +lbJ +vZj +vkA +maf +xCi +rjJ +eVj +iLt +xYN +pzC +ucR +eCr +pxG +dbg +dgZ +dgZ +dgZ +dgZ +dgZ +xPJ +dlW +rKo +dpi +dcO +dqW +dcO +dcO +etr +dsA +dCB +dAV +dCy +dCy +dCy +dCy +max +dCy +dCy +dLa +moJ +dNT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(161,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aat +aaa +aaa +aaa +abs +abF +abQ +acb +aco +aco +aco +aco +aco +aco +aex +aco +iCf +aco +aco +aaq +bbB +aco +aco +aco +aco +wbE +aiT +abZ +eqC +lNK +akP +akP +akP +akP +akP +akP +akP +akP +hei +hHU +auv +ssB +kzp +kBu +wrv +kee +rzE +fKh +jsB +aFi +aFi +aHL +aHL +aHL +aFi +aFi +aHL +aHL +aSh +gqy +vgy +jYL +llC +lZv +sNC +gRr +bfo +fUx +gRr +bfo +blH +wii +lbt +jqO +lIF +bfk +aaa +aad +aaa +fFy +too +qst +tTd +tUK +vdY +qbZ +cCe +dta +fUn +lxe +cqC +pSs +aVP +hmb +dKL +ktU +wCo +rWM +txO +txO +msh +tFS +tzw +hMA +woF +rRG +fwk +jyi +kSQ +owY +uDf +usb +svG +eEK +kqG +tnm +plg +lmO +dMY +eLz +jPm +xYN +pzC +iLt +pMz +mOg +dbh +dcT +deq +dfz +dha +dit +hDe +dcM +dnl +dpi +dcO +dpn +dcO +dcO +pJu +dsA +dCB +dpm +wfN +dDN +pRt +tpD +uIV +dIU +dCy +bMb +qGA +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(162,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xZM +abG +vVy +acc +abD +abD +adc +abD +abD +abD +cOm +abD +lQQ +abD +abD +cOm +kjD +abD +ahz +adc +abD +ldB +aiU +aji +aju +bOP +aig +maF +vno +bIt +cCh +cCh +ojF +ioj +tgh +qWL +auv +ssB +muI +rUl +moT +dvF +djw +gXL +mNT +aFi +aGu +aHM +aJm +aKK +aLT +aHL +aOS +aQG +aSi +kLq +vTt +jJJ +llC +ise +sNC +gRr +bfo +tpa +bfo +bfo +blL +qGO +pdo +tDt +lIF +bfk +aaa +aad +aaa +fFy +nqS +fec +pzs +stn +glH +mcF +gaN +qPs +gaN +sxb +uAt +rgz +rWM +uBn +wvs +pUT +wMD +rWM +qrM +qrM +nlj +bqb +nPC +tYJ +rdJ +jlX +vZj +rmy +naq +pLr +gnV +qNb +hkl +tfa +vZj +lLA +maf +xCi +rjJ +fBo +iLt +xYN +pzC +ucR +ici +pxG +pxG +pxG +pxG +pxG +dhb +diu +wUj +dcM +xFP +dpi +dcO +tcO +dcO +dcO +oZa +dsA +dGh +isC +dCy +ide +dEW +dGn +sWF +dIY +dCy +bMb +aEi +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(163,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaS +abi +abi +abi +abi +abi +abi +abi +abi +abi +abi +abi +abi +afc +tzF +abi +abi +abi +qCZ +aht +abi +abi +aig +aiB +aig +aig +ajJ +akm +aig +nCp +wlV +kRO +iRw +exB +unQ +wXj +aij +exB +ojS +ssB +rdl +ssb +eKZ +nbH +naR +nQX +oyh +aFi +gDC +aHN +aJn +aKL +aLU +bGS +vKq +uoV +ahL +ffA +wWp +kVJ +llC +oHg +gfN +hAN +bfo +iUE +bfo +bfo +blM +qGO +pdo +tDt +kAc +bdN +aad +aad +aad +fFy +jqu +nzz +oOD +rsZ +glH +vDu +gaN +oha +gaN +jEQ +mms +tSY +rWM +ewa +hQn +ijb +hmb +aBU +sBY +qrM +fxe +faH +oSn +srY +oSi +cup +vZj +vRV +mdm +eNa +sPE +skk +tKN +xyI +vZj +kXx +csM +xCi +rjJ +kRl +ucR +xYN +jsr +iLt +oan +dPl +kWe +bHL +ife +cPy +dhc +div +sob +dcM +dnn +dpo +dcO +tcO +tcO +tcO +oZa +dsA +dqW +sLr +dCy +gRN +sWF +kvv +dEV +dIZ +dCy +dKZ +nAV +dNT +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(164,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +abi +abR +abi +acp +acG +add +adx +adO +abi +aeC +tUN +wZS +kAl +jsQ +wZS +oRn +wZS +nkU +abi +aih +ktB +aiC +aig +ajK +dsw +aig +kqg +hei +aig +aig +aig +pcq +aig +aig +aig +xOV +ssB +kxn +hov +kvh +ylY +jtm +wIM +sXx +aFi +fyM +hHx +aJo +aKM +aLV +aHL +aOU +aQI +aSi +hJA +ohb +qum +vcu +vTH +unx +qLa +hAN +vFE +gRr +bjR +blN +wOu +vVD +tDt +lIF +bfk +aaa +aad +aaa +fFy +iLS +nzz +oOD +thX +glH +omM +xYd +mrD +gaN +uBs +itL +uYQ +ozO +mMH +ndg +qAO +xSB +rWM +mYk +qrM +idQ +yme +oSn +srY +nDA +cuq +vZj +vZj +xpb +xpb +rca +xpb +jOq +xpb +vZj +wuy +maf +uLL +pZp +ouA +tML +hgK +obY +ucR +fCW +nLq +ePX +daY +pvW +cNz +cPo +diM +xvk +dlW +dno +qob +dcO +dcO +dcO +dcO +jFk +dsA +dqW +dAR +dCy +dDP +dEX +eKC +oCS +dIW +dCy +bMb +qGA +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(165,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abH +abS +acd +acq +sTC +eyT +eyT +okj +dUo +ada +cWn +afF +afX +agn +agN +ahb +ahu +jts +xIG +pEs +jLY +fvG +aig +aig +aig +aig +hHU +geW +aig +nib +rrq +tAz +rrq +vYO +aig +jQJ +ssB +ssB +ujO +mUw +ssB +mLx +ssB +ssB +aFi +aFi +ePm +aHL +aKN +aFi +aFi +aHL +aHL +aSh +unx +kci +pHg +unx +unx +unx +mFE +fIe +nxy +vEI +mFE +pDA +pDA +lWc +tDt +lIF +bfk +aaa +aad +aaa +fFy +jWj +rge +snA +jWj +glH +pbx +jZj +pbd +sXI +glH +rWM +rWM +rWM +kGW +mmy +ydQ +qfL +rWM +qiW +uAU +eZV +uiA +ruK +tYJ +eLZ +cur +cvC +vZj +cjl +nuW +eND +myM +nOD +mLk +wnW +rWa +maf +xCi +taj +gfc +ucR +xYN +rlu +iLt +fCW +gUN +wNw +eqs +cCY +eZh +uVp +meA +xkU +fxp +dnp +qob +dcO +dcO +dcO +dcO +jFk +dsA +dqW +uXz +dCy +dDM +dEY +wKj +oPC +iQh +dCy +dKY +rPX +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(166,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +abi +abT +abi +acr +fUZ +adf +ady +adQ +abi +aeE +aff +afG +afY +ago +ago +ieW +ahv +ahF +abi +aij +xCG +lgA +fAk +evJ +leI +cNY +nxr +jnN +aig +pWU +tzu +nxr +gzt +nYk +aig +gVP +jxH +xJD +oNM +ntm +ohC +jHI +wvH +hrU +niR +fHm +kNM +srw +srw +eLY +nSt +qpf +kTp +sWu +xwQ +vSe +jgn +nXD +pDA +iOm +nbI +eIe +aiw +sXa +uMv +gmP +pDA +tnv +tDt +lIF +bfk +aaa +aad +aaa +fFy +fpZ +rVw +sfp +fpZ +glH +vgM +hcO +hcO +gaN +jKw +rWM +kZf +pxF +uky +oTF +imy +emw +rWM +cjP +qrM +jCF +myP +jjI +tGC +pbl +jlX +cvD +vZj +nWl +ioc +pAG +vgB +nxA +fUc +wnW +rWa +maf +xCi +rjJ +vEE +iLt +tfS +oas +ucR +fCW +uCT +kFH +utE +uGv +cNz +cPo +diM +xvk +dlW +dnq +ttx +goX +goX +goX +goX +wde +oRI +foK +dAR +dCy +tGU +xlt +lUD +oPC +dIX +dCy +dLc +jyF +dNT +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(167,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +abi +abi +ace +acs +rZo +adg +ace +adR +abi +adR +adR +adR +adR +agp +adR +adR +adR +adR +abi +aik +pEs +oPz +ajk +ajM +akp +tce +kvK +woz +aig +sis +mWz +quS +tzu +aEN +aig +nVk +jxH +qrd +oZW +hXn +wzi +iGJ +vLe +nRM +ffZ +vPg +klB +qZQ +ffH +vPg +vPg +uld +eDP +vPg +hJN +rhn +wXV +wzW +mFE +vZl +vjr +gZh +xWq +gZh +lcH +vqG +mFE +pdo +nUB +gub +bdN +bvJ +bvJ +bvJ +fFy +qHH +nzz +oOD +vEk +glH +pUl +qYu +ngz +xUM +kue +rWM +fxS +ikG +kGW +tOT +rib +lzB +rWM +cjQ +qrM +mwB +ulm +kWO +tYJ +pbl +jlX +cvE +vZj +gzY +nuW +wmq +skk +mBh +iYy +lwc +rWa +maf +xCi +rjJ +qBW +nZn +nyV +fWq +hLq +acy +dPl +jjx +jQa +lVl +cPy +cPo +diz +xvk +dcM +dnr +dpr +drf +drf +jpo +mgW +gvf +fvf +jpo +dBc +dCy +dDR +dEW +wKj +oPC +dJc +dCy +dLd +tVO +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(168,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aad +aad +ace +act +acK +adh +ace +aad +abi +aeF +aeF +aeF +aeF +oMw +aeF +aeF +aeF +aeF +abi +ner +qFV +sYb +ner +aig +ner +uhD +ner +aig +aig +lXG +apw +quS +guB +rCY +aig +nVk +jxH +nNm +kMN +lfq +njy +ffH +vPg +qPZ +lRq +vPg +vQS +tOj +vPg +ffH +ffH +uld +sWw +vPg +oWP +lvG +bGr +xxI +slG +pIy +jnc +gqw +jsj +gZh +gZh +gkR +xbp +rfR +tDt +rjq +bdN +wqo +wqo +afR +fFy +jWj +vYY +mKe +jWj +glH +glH +glH +glH +glH +glH +rWM +rWM +rWM +rWM +rWM +rWM +rWM +rWM +tYJ +tYJ +lFz +tYJ +tYJ +xzy +eCE +ctR +pvA +vZj +vZj +vZj +vZj +vZj +vZj +vZj +mkz +aGp +dCA +haf +cND +cPy +cNz +teD +bKd +cNz +cND +cPy +cNz +dcY +cNz +cPy +cPo +diB +eTx +dlX +dcM +dlW +dlW +dcM +dcM +dlW +itf +dlW +dcM +dcM +dCy +dDS +dEW +ral +oCS +dJd +dCy +dLe +tVO +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(169,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aad +acf +acu +acL +adi +ace +aaa +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +abi +mzv +yhZ +tPB +gju +aig +aiC +jbb +tax +iSG +bkU +wzO +apw +wHB +kRj +kRj +bcv +nVk +jxH +iKi +iBa +vPg +wQY +sDp +ffH +ffH +vPg +sxQ +klB +gsx +vPg +rgG +vPg +uld +eJd +vPg +hJN +vXE +vPg +skH +mFE +tIe +idM +uDF +geT +vRc +uot +cut +hdt +iql +kQi +lIF +bnv +wSu +wSu +wSu +nWu +tqN +pvo +koU +tqN +wSu +wTN +wSu +wSu +wSu +bnv +wSu +mbW +wSu +wSu +wSu +wSu +wSu +wTN +wSu +sAn +lIF +wSu +wSu +taj +lLA +rYm +qba +pqs +qba +eKR +wIs +qba +qba +qba +qba +lLA +maf +pOI +pbi +cPy +cQZ +xle +ifa +cPo +cPo +cZA +cPo +cPo +cPo +hQM +cPo +diB +xvk +cNA +lac +dpt +cXI +uiZ +dtG +cXI +xvk +cXI +nJb +dBe +dCy +dDT +dEW +ouO +oPC +dEZ +dCy +dLf +tbr +dNT +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(170,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +ace +acv +acM +adj +ace +aad +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +abi +wnm +aiI +tkQ +oFo +hfE +aiC +rcf +ivD +aig +nuh +oBO +hjX +plf +apw +kfh +mBi +nyI +pnk +mPw +qxg +tCS +bHZ +tTz +idi +qub +mVa +mCY +xvI +eGt +wSB +dew +xiu +bmI +vqH +bGr +blQ +nsK +vPg +tzS +pDA +gBY +wCh +uyh +sKK +ecI +ukj +iNs +pDA +fwo +mbE +rAe +fSi +tDt +tDt +tDt +tDt +tDt +tDt +oIQ +mzs +tDt +tDt +nUB +tDt +tDt +fSi +tDt +bkY +tDt +tDt +ukV +tDt +tDt +tDt +tDt +tDt +rAe +nUB +tDt +weH +aRT +jWk +maf +maf +maf +maf +maf +maf +maf +maf +maf +jhC +nce +pdK +tME +cPy +cRa +ybl +fek +cQX +cXQ +cQX +cXQ +cQX +dex +dfC +dfC +diC +czJ +dlY +dnt +rYU +dri +rYU +dri +rYU +jGc +dyw +dri +poe +vxF +vdc +ePK +nGs +iBZ +vdc +tRu +bBI +cbg +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(171,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +acf +acf +acN +acf +acf +aad +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +abi +vCI +aiI +tPB +wOm +fTh +uSa +lzI +wBW +aig +qFR +aiC +kRj +kRj +tzu +wzO +atw +iil +jxH +ogt +kEo +vPg +vPg +ffH +qMw +ffH +ffH +vPg +vPg +ffH +hkY +vPg +iuR +uld +mny +vPg +rMo +tII +ffH +kAu +pDA +pDA +mFE +hKA +mFE +bhR +mFE +pDA +pDA +gum +hsd +rwY +jWO +itn +itn +oIR +lnd +itn +nre +iPP +vLu +aVi +sMg +itn +itn +iLD +jWO +qEM +bPV +jVf +pVx +kWA +pVx +pVx +eVI +pVx +tWF +ihi +tDM +pVx +baj +eQE +vpC +aQc +dah +kCS +oUE +iCu +oUE +oUE +mIj +oUE +pOh +xDw +sIe +txN +cPy +cRb +cDW +mnn +aGe +aGe +ntf +aGe +aGe +bqG +aGe +aGe +eVy +bmh +qZb +eYo +bmh +bmh +bmh +uym +bmh +eEY +gLo +iEF +kvc +dCy +dDV +dFd +dGv +dHQ +dJg +dCy +dKY +qGA +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(172,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +acf +acO +acf +aad +aad +abi +aeF +aeF +aeF +aeF +lTo +aeF +aeF +aeF +aeF +abi +cGO +yhZ +pqa +ovo +ehS +wAi +bTF +rpX +aig +eHO +rPL +nbv +apw +mWz +aMM +atw +cyr +jxH +uWy +niR +ufP +ffH +mRQ +tOj +iYC +vPg +kXs +vPg +mRQ +sMH +kXs +vPg +hXn +rWl +jPM +hJN +sMk +vma +eHP +pDA +wQf +uku +vnW +haT +nJA +urn +oRo +aig +tIQ +aig +bdN +bdN +pQR +pQR +cHR +pQR +pQR +bdN +bdN +bHq +bJa +bHq +xHn +xHn +xHn +rHy +bUS +bXm +uBc +cbj +cbk +cbk +cbk +cbk +cbn +nUv +cbn +cbk +cbk +cbk +cbk +cuu +mtH +jrm +vTW +pZu +pZu +pZu +pZu +pZu +cHU +cHU +sSO +cHU +cHU +cHU +cRc +cRc +cUG +cUG +cUG +cRc +cRc +cUG +cUG +dfD +dbr +diE +oGK +cPy +cNz +dbr +dbr +cNz +vru +xFF +oIS +xFF +ivY +rXh +ivY +ivY +ivY +ivY +ivY +ivY +ivY +dKY +cpN +dNT +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(173,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acf +acP +acf +aad +aad +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +abi +cHY +aiI +tui +ajp +hIa +uSa +jQj +naj +aig +bEx +rdj +yhZ +gPA +apw +oYB +atw +qaL +jxH +lsd +niR +lXC +vPg +kXs +tOj +vGD +vPg +mRQ +ffH +qll +hkY +kXs +ffH +uld +qUb +ncY +snR +fQy +oQN +sYS +mFE +eID +vZl +kfD +hSl +vRc +lqR +eID +aig +bxe +aig +aaa +aad +aaa +rYG +iEE +rYG +aaa +aad +aaa +bHq +bJb +bHq +tIE +mXc +wyv +xHn +bUV +bXx +rzU +cbk +ccU +ceM +cgz +ccX +ccW +tdq +ccW +cot +cpV +crh +csK +cbk +wqf +ucR +pdK +pZu +jsh +hVi +ksa +pZu +cHV +cIV +hzs +cIW +cNG +cPz +cRd +cSM +cUH +cWp +cXS +cZC +cUG +ddb +dey +cUG +cPv +diJ +mWI +cNz +dnv +dpv +dpv +dsC +ivY +loW +neD +oQf +kWY +rou +pxA +qfr +htJ +deC +mmR +ykg +ivY +dKY +uDb +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(174,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aad +aac +aaa +aad +aad +aad +fqA +aad +aad +aaa +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +abi +bBw +aiI +aiI +ajp +fTh +tDp +bTF +rID +iSG +smW +wDl +iHJ +qFR +cAR +cOG +atw +nwD +jxH +vNK +ffZ +kXs +ffH +rgG +tOj +uKz +vPg +qjo +ffH +sxQ +sMH +mRQ +vPg +pHy +nEX +rOM +euG +jkp +nhj +ocQ +ibh +jAQ +vhY +piZ +qKN +sNj +uJx +jBB +jSR +jgO +aig +aaa +lhY +lhY +lhY +suj +lhY +lhY +lhY +aaa +bHq +bJc +bHq +tbE +hon +nbc +vJL +bUU +bXx +rzU +cbn +ccW +ccW +ccW +ccW +eYa +tdq +qCs +qCs +qCs +qCs +fSO +cbn +wqf +haA +pdK +pZu +jDc +jip +mqR +pZu +cHW +cIW +cfk +dAh +cIW +cPA +cRd +cSN +cUI +pMn +poX +urZ +qRO +nQv +tKD +vzL +lPy +pPZ +bmh +cPy +dnw +iGC +axx +dsD +ojk +hYe +kha +qgk +qnO +kdN +qgk +qgk +kct +qgk +wTq +szq +ivY +dLa +lxQ +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(175,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aaa +aaa +aad +aaa +aaa +aac +aac +aad +aac +aad +fqA +aad +aac +aad +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +sLl +mHH +mHH +xuA +mHH +cSw +cSw +cuQ +cSw +cSw +cSw +cSw +aiJ +aiJ +aig +aoF +atx +prK +aoF +hIq +ffZ +tnG +vPg +prF +vCy +eIo +vPg +tnG +sDp +prF +jwO +tnG +vPg +gzU +lIa +viJ +pMb +aNl +viJ +viJ +oBs +xOr +wTy +qMR +srN +ebB +aak +pOJ +aig +aiC +aig +aad +lhY +qaI +kiz +nKJ +qaI +qaI +lhY +aad +bHq +bJd +bKW +vxa +dXR +qIS +ocn +rpC +dtr +eRu +wJk +aod +nsh +kMR +nsh +bWq +kGO +cmR +ceO +ccW +ccW +bbT +nwt +bIA +iwK +cIt +pZu +vgY +ivX +rIW +pZu +cHX +cIX +hiG +cMi +cNH +cPB +cRd +cSO +cXU +cWr +cXU +ydT +cUG +ddd +deA +cUG +cPv +diG +cbX +cNz +dnx +rVp +ehQ +voU +euq +vME +kpO +pZt +nJh +rWs +inR +sZJ +gKX +cts +asQ +vyz +ivY +dLa +yaL +dNT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(176,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aad +aaa +aaa +tEw +fqA +tEw +aaa +aaa +aad +aaa +aaa +aad +fqA +aaa +aac +aad +abi +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +aeF +sLl +oAX +iBM +wcE +qVV +bDU +nkY +niL +jaW +uhW +kTo +cSw +abj +abj +aad +aoE +dIx +wvG +aoF +gxD +ufA +sRY +sRY +hZL +sRY +sRY +sRY +sRY +sRY +sRY +sRY +sRY +sRY +jhY +viJ +aKc +sWJ +rEc +uOw +nYU +oBs +jjB +wTy +wnk +eID +vYr +fGb +pDA +aig +apw +aig +aaa +lhY +vgr +kld +fbp +mVK +eJG +lhY +aaa +bHq +bJb +bHq +gpp +azH +lib +rOI +bUV +bXx +rzU +cbn +ccX +ceO +cgC +ceO +tdq +ceO +cmS +ceO +ccX +ccW +rhH +cbn +wDe +ucR +mJw +pZu +pZu +gqj +pZu +pZu +pZu +pZu +gzD +cMj +cHW +cPC +cRd +cRc +cUG +cUG +cUG +ryr +cRc +cUG +cUG +dfD +dhm +diM +xvk +cPy +dny +hnl +eml +dsF +ojk +qVD +eWF +nTI +aJh +sgL +grl +fuv +kct +qgk +oLE +ubA +ivY +dLh +xlG +dNS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(177,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aad +fqA +aad +aac +aad +abi +abi +abi +abi +abi +abi +abi +abi +abi +sLl +sLl +cfm +aLl +jaZ +jfp +bDU +bDN +lTK +lTK +cvP +qLB +cSw +aoE +aoE +aoF +aoF +rkL +kvn +aoF +iAN +gBz +heR +gHX +yfc +yfc +enF +enF +yfc +mQn +enF +enF +sxF +wvS +tLy +viJ +nRx +rnB +tNQ +yiD +xAE +viJ +lDw +tdh +uqH +eID +lTG +aak +rgU +aig +bpa +aig +aaa +lhY +aMa +vUf +hpq +nOS +pWT +lhY +aaa +bHq +bJe +bHq +rlh +lHI +ohq +xHn +bUV +bXx +nzN +cbk +ccY +ceO +ceO +ceO +tdq +ceO +ceO +ceO +ceO +crj +rhH +cbk +ual +ucR +pdK +pZu +kip +hsG +sRX +qDN +khD +pZu +hiG +dAh +cNI +cHW +ovU +kPY +uaz +ene +iQC +ucd +mxt +eDj +nHZ +ovU +cPv +diz +xvk +cNz +dnv +dpv +dpv +dsG +ivY +ekR +mtd +tIZ +eIs +noY +iXe +qOe +htJ +fcl +vaH +nZN +ivY +dLi +pnj +dNS +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(178,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aad +fqA +aaa +aad +aad +aad +aad +aaa +aad +aad +aad +aaa +aad +aaa +mHH +wsK +smq +oum +fAB +imC +hIj +qWq +uaS +hop +noE +qAe +cSw +apB +aqD +oVm +vWi +obn +gVE +aoF +ayR +eAa +eAa +eAa +sDD +tnG +fFU +tnG +vPe +rqh +rqh +rqh +vxk +wvS +suJ +viJ +pxq +ekq +uGy +lhS +qIO +oBs +xFl +wgv +gZh +eID +uDF +vYl +rmA +aig +bpb +aig +aaa +lhY +koH +eQr +rgL +eQr +wuB +lhY +aaa +bHq +bJe +bHq +xHn +xHn +xHn +xHn +bUW +bXq +gHK +cbk +ccZ +ccZ +ccZ +ccZ +kDg +ccZ +ccZ +ccZ +ccZ +crk +mQK +cbk +pfR +ucR +pdK +nZc +nVI +dfA +nIQ +uUC +mOU +spB +fCx +dAh +cNJ +cHW +ovU +hSu +xAZ +gSL +ipL +iKo +gZK +wZX +mRh +ovU +dho +diM +uGj +cPy +cNz +dbr +dbr +cNz +vru +xFF +gsn +xFF +ivY +xFF +ivY +ivY +ivY +ivY +ivY +ivY +ivY +cPy +fus +cPy +cPy +dPm +dPq +dPq +dPq +dPq +aaa +dPr +dPr +dPq +dPr +dPq +dPr +dPr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(179,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +tEw +fqA +tEw +aad +tEw +fqA +tEw +aad +tEw +fqA +tEw +aad +aad +fqA +aaa +aac +aac +aad +aac +aac +aac +aad +aac +aac +aac +aac +mHH +pxP +wWB +wWB +fAB +trF +eRg +mxb +lmi +lmi +lmi +akI +cSw +qaK +aAS +aqE +ase +atB +kyY +aoF +qCn +qFI +qFI +qFI +qKI +ozy +hMg +vyf +umL +qFI +qFI +qFI +qFI +qFI +qFI +oBs +epP +bsl +fFl +xbK +xyb +oBs +qpB +hqz +ouD +gZh +gZh +eNW +suu +aig +aig +aig +aad +lhY +sHL +qaI +uRh +qaI +rNq +lhY +aad +bHq +bJf +bJc +bMW +bPc +bRd +bMW +bUX +bXr +pwP +cbk +cda +ceP +cgD +clm +cmO +clm +cmT +cov +cpX +crl +rhH +cbk +enp +jgo +lOj +pZu +gni +hxv +ekw +pZu +pZu +pZu +hzs +cIW +cHW +dJp +ovU +vCJ +pbC +jxO +lcv +fqW +jbI +beP +jdv +riX +cPv +diJ +bLm +rtI +lQF +xkU +xkU +xkU +oMA +vMF +eGI +xkU +xkU +xkU +saB +xkU +pDW +lQF +xkU +leK +cPy +eYi +sRM +rVG +itR +dPm +dQe +dQU +dRZ +dPq +aad +dPr +dVt +dWm +dXa +dXU +dYP +dPr +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(180,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aad +fqA +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +uHd +abj +aad +aad +mHH +vyB +vyB +lHx +fAB +lIi +eRg +kdW +kdW +ayx +jcG +mix +cSw +apE +aoF +aoF +czv +atC +pZn +aoF +aad +aad +aad +hbT +vLt +mbT +qCn +mbT +lyN +hbT +aad +aad +aad +aad +aad +iDt +vNS +gZR +tqL +eVw +iKB +iDt +otC +oPH +srq +luw +afJ +thq +rNh +pYM +aad +aaa +aaa +lhY +lhY +lhY +lhY +lhY +lhY +lhY +aaa +bHr +bHr +bKY +bHr +bPd +bRe +bMW +bUY +bXx +tTw +cbk +cdb +ceQ +cgE +coz +uVk +coz +cmU +cow +cpY +crm +pvh +cbk +wDe +ucR +ewf +pZu +lcG +pSt +gyl +wvM +qbv +pZu +rlW +cNK +cNK +cNK +cRe +cSS +cSS +cRe +cRe +nOf +jbI +seS +ifF +riX +cPv +diM +gjx +dfI +dnA +diM +diJ +diM +diJ +hGG +dxg +diM +diJ +dde +diJ +diM +gjx +dGA +diJ +sAQ +saQ +hQq +nyF +dNV +bwi +soS +fSB +jjt +dSa +dPq +aaa +dPq +dVu +dWn +dXb +dXV +dYQ +dPq +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(181,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aac +aac +aad +tEw +fqA +tEw +aaa +aad +fqA +aad +aaa +tEw +fqA +tEw +aaa +aad +pxc +aaa +aac +aaa +aaa +aaa +aaa +abj +aad +aac +abj +qYo +qYo +mHH +tnS +tnS +mHH +nCA +mHH +cSw +qVI +qVI +cSw +cSw +cSw +cSw +ntS +aqF +arf +asf +atD +ggg +aoF +aaa +aaa +aaa +qFI +eYE +ibQ +qFI +ibQ +ezU +qFI +aaa +aaa +aaa +aaa +aad +iDt +ntg +tFT +qxC +tFT +hlw +iDt +pYM +pYM +tyD +ePO +mFE +pYM +pYM +pYM +aad +aaa +aaa +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +bHr +bJg +bKZ +bMX +bPe +bRf +bHr +bVc +bXx +rzU +cbk +cdc +ceR +cgF +bfs +bfU +leH +kly +cox +bib +crn +toG +cbk +eCf +ucR +ewf +pZu +lcG +tyX +mNs +pZu +pZu +pZu +cfk +cNK +cNL +cPD +cRf +cST +cUM +cWu +cRe +vPq +qLS +gTI +qDK +eFD +kzm +diJ +agv +cNA +cXO +dpA +uvi +cXO +cXO +sAk +cXO +cXO +dAg +cXO +cXO +cXO +sAk +cXO +cXO +dJo +cPy +hyz +vHh +lGO +oqq +dPp +dQg +dQW +dSb +dPq +aad +dPr +dVv +dWo +dXc +dXW +dYR +dPr +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(182,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aaa +aaa +aad +fqA +aad +aad +aad +pxc +aad +aad +aad +fqA +aad +aad +aad +pxc +aad +aac +aad +abj +aad +aad +abj +aaa +uHd +abj +aad +aaa +aaa +aaa +aaa +aaa +pEH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +hDh +apE +aqG +arg +asg +atE +ggg +aoE +aaa +aaa +aaa +aaa +aaa +aDi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +iDt +jES +wXw +riP +tgL +mWO +iDt +aad +pYM +knk +ycK +vCo +pYM +aad +aad +aad +aad +aad +aad +aac +aac +aac +aac +aac +aad +aad +bHs +bJh +bLa +bMY +bPe +bRg +bHr +bVc +bXx +rzU +cbk +cdd +qWy +cgG +cir +xcD +clp +cmW +coz +bib +cro +toG +cbk +gcu +gFG +mlx +pZu +idv +yin +mgQ +mVv +qOV +pZu +hzs +cNK +cNM +cPE +ehL +cRg +cRg +cWv +cXY +qPp +gup +lkw +ifF +riX +cPv +diM +mWI +dma +dma +dma +dma +dma +dro +xQh +dro +dsI +dma +dEb +dEb +dEb +ycB +dEb +dEb +dEb +vFc +cPy +kGG +cPy +cPy +dPm +dPq +dQX +dPq +dPq +aaa +dPr +dVw +dWp +dXd +dXX +dYS +dPr +aaa +aad +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(183,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +hVc +fqA +fqA +pxc +pxc +pxc +pxc +jAh +pxc +pxc +pxc +hdP +pxc +pxc +pxc +pxc +pxc +aaa +aad +aaa +abj +aaa +aaa +abj +aad +aac +abj +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoF +apE +aqH +arh +ash +atF +auN +aoE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +oBs +oBs +ojI +ifv +oBs +oBs +oBs +aaa +jkF +hJH +tMG +vKF +jkF +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +aaa +aaa +bHs +bJi +azV +bMZ +bPg +gWQ +bHs +bVc +bXx +pYK +czq +hDA +waV +pzM +fpn +iuz +clq +cmX +coz +bib +crm +hzC +cbk +wDe +ucR +ewf +pZu +sKJ +uLp +vrZ +pZu +pZu +pZu +cfk +cNK +cNN +jUo +cRh +cSU +cRh +fIN +cSS +jbu +sEE +eXa +xVL +riX +cPv +diJ +iPh +dma +dnC +dpB +dmd +dsJ +dtN +jkz +dxi +dyD +dma +dBo +dEd +dEc +xET +rmX +rmX +mIX +vFc +dLm +xEt +cHU +aaa +aaa +dPq +dQY +dPq +aaa +aaa +dPq +dVx +dWq +dXe +dXY +dYT +dPq +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(184,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aaa +aaa +aad +fqA +aad +aad +aad +pxc +aad +aad +aad +fqA +aad +aad +aad +aad +aad +aac +aad +abj +aad +aad +abj +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoF +apF +aqI +ari +asi +atG +auO +aoF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +iDt +pIO +uOw +rEc +fjp +iDt +aad +aaa +pYM +mFE +nfI +mFE +pYM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHr +bJj +stH +uhy +uhy +pRX +sCR +qfA +nxv +mtO +cbk +cdf +xZn +cmY +cit +ckd +clr +cmY +coA +cqb +crp +csR +cbk +uFe +gQI +oAx +pZu +jli +eEf +pLZ +ozS +jxm +pZu +qrv +cNK +cNO +uqx +pWr +pWr +cUN +xeK +cRe +qdQ +aUK +sgR +mRh +ovU +cPv +diM +mWI +dma +pgz +dnD +drn +dsK +dtO +qzt +dxj +dtR +dyE +vko +loc +vko +jqY +vko +loc +vko +iZy +dLn +rVo +dfX +aad +aad +dQh +dQZ +dPr +aad +aad +dPr +dVy +idS +ogz +mMg +dYU +dPr +aaa +rSK +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(185,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aac +aac +aad +tEw +fqA +tEw +aaa +aad +fqA +aad +aaa +tEw +fqA +tEw +aad +aac +aad +aac +aac +aaa +abj +aaa +aaa +aaa +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aoF +apG +aoF +aoF +aoE +aoE +aoF +aoF +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +iDt +wxQ +imp +jfG +shH +iDt +aad +aaa +aaa +aaa +bgU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHs +bJk +hGq +bNb +bPi +bRj +bHs +bVc +bXx +aWe +fof +fof +prD +fof +fof +fof +fof +cbk +cbk +cbk +cbk +cbk +cbk +wiF +aJl +pJD +pZu +pZu +pZu +uTc +pZu +pZu +pZu +oej +cNK +cNP +lYp +cRj +cSW +cUO +cWy +cRe +rzT +lUW +qwg +hUr +ovU +cPv +diz +fNX +dma +dnE +dnD +dmd +dsL +dtP +cxF +dxk +dyF +dma +dBq +iDa +dEe +mqu +dEe +iDa +icz +vFc +cIW +xAi +cHU +aaa +aaa +dPr +dRa +dPr +aaa +aaa +dPq +dVz +dWs +fBC +dYa +dYV +dPq +aad +aad +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(186,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aac +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +abj +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +iDt +vxq +tof +snm +utp +iDt +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHs +bJl +wrG +bNc +bPj +bRk +bSZ +bVd +bXx +uzi +fof +kyT +ntH +iOz +snk +mKq +fof +cmZ +coB +cqc +xTw +nad +eLK +fan +oGQ +xXv +hNd +gPw +gPw +dYM +vKM +fAX +cJa +qrv +cNK +cNK +iRV +cRk +cNK +cNK +cRe +cRe +ovU +ovU +ovU +ovU +sBQ +cPv +diL +esn +dma +dnF +dpC +dnF +dma +dma +nwo +dma +dma +dma +dBr +dCO +nWg +mda +xrz +nJq +xzY +vFc +dLo +rGR +cHU +aaa +dPq +dPq +dRb +dPq +dPq +dPq +dPq +dTY +dPr +ilM +dPr +dQl +dPq +dPq +dPq +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(187,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +tEw +fqA +tEw +aad +tEw +fqA +tEw +aad +tEw +fqA +tEw +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aad +aaa +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +iDt +iDt +oBs +oBs +iDt +iDt +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bHr +bJm +ryw +bNd +bPk +bRl +bHr +bVf +bXw +sOk +gYz +nvf +cHI +mme +xjq +jkE +fof +cna +coC +fAX +egw +xJN +yfe +jXe +yfe +gxg +yfe +jIn +yfe +sBv +tmn +fAX +cJb +mPH +cMn +cNQ +mtn +cRl +cPy +cUP +cPy +cYa +cZL +dbv +ddh +deG +cPy +dhq +diJ +mWI +dma +uTf +dnG +dro +dsN +dtQ +rGy +dxl +dyG +dma +dBs +qrf +dEg +rLD +xNr +dCP +wEq +vFc +dLp +xAi +cHU +aad +dPq +dQi +dRc +dSd +dSY +dTR +dUO +dVA +dWu +wzw +dYb +dYW +dYb +eaf +dPq +plD +ecg +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(188,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aaa +aaa +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bAc +aaa +aaa +aaa +bHr +bHr +gXi +bHr +bHr +bHr +bHr +bVf +bXx +ocC +bQr +mQN +mrr +mpA +mow +xiY +fof +cnb +clw +fAX +egw +xJN +yfe +nDH +dgf +olC +fJy +nBR +yfe +sBv +aEq +fAX +cJc +cwR +cIW +cNR +rGR +cIW +cPy +iPc +cPy +cYb +aDx +dbw +ddi +sZS +dfL +cPv +diM +nDl +uDI +dnH +dnG +dro +dsO +dtR +aBM +bot +dyH +dma +vFc +vFc +vFc +vFc +vFc +vFc +vFc +vFc +wOH +kjS +dfX +aaa +dPr +dQj +dUP +dSe +dSZ +dSe +dUP +dSe +dUP +xly +dYc +dYX +dZz +sEb +lpN +bzO +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(189,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +tEw +fqA +tEw +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +uHd +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +qYo +aaa +aaa +aaa +aaa +aaa +aaa +abj +abj +abj +abj +abj +abj +abj +abj +abj +aaa +aaa +aaa +aad +aaa +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnD +buz +bnD +aaa +bnD +bAd +bnD +aaa +aaa +bHr +bJn +aRj +bNf +bPl +bRm +bHr +bVf +aTM +fUj +gYz +qDD +bdg +xqi +gHm +dxS +eGP +mew +coE +fAX +egw +xJN +oEu +nbO +rkD +pun +tDa +vfd +oEu +sBv +qNI +fAX +cJd +kOv +fwj +nGn +heo +cHW +cPy +vBN +cPy +cYc +rcA +qQO +sZs +vPs +xjz +aGe +meA +bmh +dmd +dnD +dnG +dro +dsP +dtS +lbz +dxn +dyI +dma +dBt +cHW +dEh +cIW +dGB +dHW +dJp +dmf +cHW +xAi +cHU +aad +dPq +dQk +dWq +aDy +cBR +fbe +jLf +nlJ +qnX +rDR +pkx +dqE +qlW +kpr +eaL +ebu +ech +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(190,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aaa +aad +aaa +aaa +tEw +fqA +tEw +aaa +aaa +aad +aaa +aaa +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aac +aad +aad +aaa +aaa +aad +aaa +aaa +aaa +abj +abj +abj +abj +abj +aaa +aad +aad +aad +btb +buA +bnD +aad +bnD +xeE +btb +aad +aad +bHr +bJo +tLa +oGt +uLM +bRn +bHr +bVc +bXx +hUH +fof +fjU +xKt +pcN +tEy +rCa +fof +plV +coK +fAX +fAX +knJ +yfe +oRC +iFs +pun +ffY +mDs +oEu +bqz +fAX +fAX +vbb +vbb +vbb +vbb +fKA +bOV +raB +jDV +osV +fmC +qHe +jQl +ddj +deJ +dfL +cPv +diM +xXo +wEm +tyl +dnG +dro +dsQ +dtT +nUZ +dxo +dyJ +dma +dBu +tyy +heo +hqi +gIm +sPI +uSi +vxx +gnq +omp +cHU +aaa +dPq +dQl +dTb +lrw +dTb +dQl +dQl +dQl +dPr +dXl +dPr +uYo +dPr +dQl +dPq +dPq +dPq +dPq +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(191,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aaa +aaa +aad +aaa +aaa +aac +aac +aad +aac +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aac +aaa +aad +aaa +aaa +aad +aaa +aaa +aad +xnT +fBy +fBy +fBy +fBy +xnT +bnG +bnD +bnG +bnD +buB +bnD +bnG +bnD +bAf +bnD +bDV +bDV +bHr +bHr +bHr +bHr +bHr +bHr +bHr +bVg +bXr +mZW +fof +wlq +wlq +wlq +wlq +wlq +fof +mHW +coG +fAX +oLs +xvC +iqT +nsR +xvO +pun +sGF +uup +rvO +lmu +nwU +fAX +qWn +wvB +nRq +vbb +fjX +cRp +cPy +cUT +cPy +cYe +cZP +dbz +ddk +deK +cPy +iAW +nDC +fYO +dma +dnK +dpD +dro +dsR +dtU +qjm +dxp +dyK +dma +kVz +hoA +jWB +jWB +izY +jWB +vWl +jWB +jWB +jWB +jWB +aad +dPq +dQm +dRg +wFR +eFP +dTU +dQl +dVD +dWx +dQl +dYe +pHW +dZC +dPr +eaM +ebv +eci +dPq +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(192,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aac +aac +aad +aac +aac +aad +aac +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +qYo +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +qYo +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aac +aaa +aac +aad +aad +aad +aad +aad +aad +fBy +hrC +qjc +qBR +rsm +svs +bnG +bpd +bre +btd +buC +bvX +bnG +byD +gPt +gPt +bDW +bFG +bHt +oXw +hpN +iTp +hpN +hpN +aCR +rSB +tHb +eQK +nof +bHw +cfb +cgP +ciz +bgZ +clu +oSM +coH +fAX +iSa +xHN +yfe +mgt +iqT +pun +jIn +okL +jIn +fCd +aOR +oYb +lMJ +tOQ +rDX +vbb +tCy +cHU +cPy +cPy +cPy +cPy +cPy +cPy +cPy +cPy +cPy +cPy +wUo +cPy +dma +dma +dma +dma +dma +dma +eok +dma +dma +dma +upH +qUs +jWB +qoh +mtX +cKc +wRv +gRT +fOX +fTV +jWB +aaa +dPr +dQn +dRh +rlZ +wke +dTV +dQl +dVE +dWy +dPr +dYf +syo +ejm +srM +pSX +fOJ +ecj +dPr +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(193,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aad +aaa +aad +aaa +aaa +aac +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aad +aaa +aaa +aaa +fBy +wJe +ajr +udO +udO +bmf +bnG +bpe +brf +bte +buD +bvY +bxm +byE +bAg +buD +bDX +bFH +bHu +bJq +bHu +bHu +bHu +bHu +bHu +bHu +bXz +bZI +aSZ +cdm +cfc +xpm +udk +bgZ +clv +nbq +coK +fAX +ukQ +lTf +sdG +kRn +fHu +lZj +sAX +jQS +jQS +eJg +tmn +aJl +keh +pDr +knd +vbb +mnM +cRq +cSZ +cSZ +cWA +dkO +cZQ +cIX +ddl +deL +cHU +dht +hTA +dkG +cHU +dnL +dpE +dpE +dBE +dtV +xEt +dtV +dpE +rTU +dAh +rNz +jWB +mfP +gRT +qkr +sIA +gRT +pIM +fVM +fjt +aaa +dPr +dQo +dRi +kUP +kwV +dTW +dPr +mpK +vCr +srM +rQN +kbC +dZE +dQl +eaO +dQl +dQl +dPq +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(194,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +uHd +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aad +aad +aac +aac +aad +aad +aaa +aaa +aaa +aFm +aFm +aFm +aFm +aFm +aFm +aFn +aFn +aFm +xnT +vvJ +ajr +wEl +bkk +cAy +bnG +bpf +brg +veW +buE +bvZ +bnD +byF +tQi +bBZ +bDY +bFI +bHv +bJr +bJr +bNi +bJr +bJr +bJr +bNi +bXA +bZJ +mlw +bHw +cfd +cgR +dnB +bgZ +clw +mHW +coI +fAX +ukQ +hGA +jMK +mgY +crQ +uaP +fAy +uaP +uaP +wKs +jZS +mXX +gTs +oHy +vTa +vbb +mvM +cjc +uFv +lAJ +uTK +ueh +peT +gnq +qKr +heo +ixj +jOF +lkl +pUQ +eOc +hEq +cjc +jFs +rAg +xdX +wve +rAg +fcA +uTK +heo +ueh +jWB +kVK +nkL +kKW +fdo +rRu +vpT +hKg +fjt +aad +dPq +dQp +dRj +tTu +ttZ +dTX +dQl +dVG +dXY +dPr +dWq +xie +qnX +srM +sKN +sFr +ecj +dPr +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(195,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +aaa +aad +aaa +aaa +aad +xjZ +xjZ +xjZ +xjZ +aQW +aSC +kbv +mRz +aFn +aZk +kiO +bcJ +xnT +urh +ajr +biz +bkk +bmd +bnG +bpg +brh +nFn +buF +bwa +bnG +byG +hJT +bCa +bDZ +bnG +bHw +bHw +bHw +bgZ +bHw +bHw +bHw +bgZ +bXB +bHw +pwX +bgZ +bgZ +biy +lmt +bgZ +clx +jtO +coJ +fAX +fAX +csZ +bHq +fZW +wpu +gBU +fAX +bjc +uuE +gqi +fxw +fAX +nbX +tJA +mzX +vbb +vbb +vbb +vbb +vbb +vbb +wOH +soN +wOH +ddm +ddm +ddm +ddm +wvE +ddm +dmh +dmh +dmh +dmh +dmh +qZD +dmh +dmh +dmh +dmh +rTU +oLi +jWB +hlW +pIM +pIM +mNY +gRT +pIM +qbV +jWB +aad +dPq +dQl +dRk +pHZ +dQl +dTY +dQl +dVH +dWB +dQl +dYi +dZe +dZG +dPr +eaQ +ebz +eci +dPq +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(196,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +abj +aad +aad +aad +qYo +qYo +xjZ +jIP +rDI +xjZ +aQX +aSD +eDz +pwB +sGN +oCh +siU +bcK +xnT +gMZ +ajr +biA +bkk +bme +bnG +bph +bri +kHB +buF +bwb +bnD +byH +cHq +bCb +bEa +bnG +bHx +oid +bLl +bNj +bPo +jcD +bLl +bNj +bXC +bZL +kGs +bNj +cfe +cgS +tPJ +bgZ +cly +rhF +coK +bHq +crw +cta +bHq +bHq +bHq +bHq +vbb +vbb +vbb +vbb +vbb +vbb +oRk +ocu +xlE +vbb +igq +yaE +liX +vZG +vbb +dLp +bde +dbC +ddm +deN +dfP +dhv +fSp +dkI +dmh +dnN +dpF +xOe +dsT +nDB +dvM +dxr +dyN +dmh +dBA +gSx +jWB +oSd +hJG +wNY +vsQ +lSu +nEf +jpY +jWB +aad +aad +dPq +dRl +phH +fjO +dTZ +dPq +dPq +dPq +dPq +dPq +dPr +dPq +dPq +dPq +dPq +dPq +dPq +aad +aaa +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(197,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aaa +aaa +aad +aaa +aaa +qYo +aaa +aaa +xjZ +nsp +uPe +xjZ +aQY +aSE +sIM +jck +sUa +eHh +pVu +aFm +xnT +wkv +ajr +biB +biA +bmf +bnG +bpi +bAj +peY +bAj +lom +bnG +byI +vjC +bCc +bEb +bnG +bHy +iFD +bTb +bNj +bPp +iFD +bTb +bNj +bXD +bZM +tFH +bNj +cff +fVN +oAS +bgZ +rLP +jzh +kLt +xps +wSM +xno +kLt +fFf +xsP +coI +vbb +sDc +khU +gaO +nSi +vGJ +pnL +rxt +aHk +lvk +gPM +xmP +umU +oKw +vbb +cYi +cfk +cIW +ddm +deO +dfQ +dhw +diS +dkJ +dmh +dnO +dpG +dpG +dpG +mrx +dpG +dpG +dvM +dmh +dBu +awO +jWB +mjD +foM +foM +nBQ +foM +qSS +hdq +jWB +aad +aad +dPr +dRm +vEY +mFb +dUa +dPr +aaa +aad +aad +aad +aaa +aad +aad +aad +aad +aad +aad +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(198,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abj +aad +aFm +aFm +pff +pff +pff +pff +aFm +aFm +aFm +paw +aFm +aFm +aFm +aFm +aFm +aFm +aZn +whb +aFm +xnT +xnT +xnT +fBy +njv +bmg +bnG +bnD +bnD +mxu +bnD +bnD +bnG +bnG +eeW +bnG +bnG +bnG +biy +wfi +biy +bNj +biy +hBz +biy +bNj +bXE +biy +nUH +bNj +biy +uzW +biy +bgZ +clA +mZl +clA +clA +clw +gkW +bHq +bHq +mHW +cyY +nSp +rmm +ffV +fWz +fMP +vbb +oRk +jVy +eOt +vbb +jYG +iFr +xmP +moQ +vbb +cIW +cfk +eHJ +ddm +deP +dfQ +dhx +vNp +dkK +dmh +nSn +dpG +dpG +dpG +oEr +dpG +dxs +dyO +dAi +dBB +uxB +izY +sFw +uyM +uyM +hTF +uyM +uyM +wWb +fjt +aaa +aad +dPq +dRn +dSo +dTj +dUb +dPq +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +aaa +rSK +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(199,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +efQ +qYo +qYo +qYo +aaa +pff +epN +reP +reP +npH +reP +wtm +reP +wqW +wzs +reP +wJo +uOU +shl +reP +sxA +wNS +mCW +nFm +lBT +jNQ +sEd +bEy +rea +pOw +aZN +pOw +mcl +iRf +pOw +pOw +cbr +xxt +pOw +nkB +bNj +acg +ucz +fKp +qdu +onR +tOq +fKp +wXX +oPv +ktN +mcl +ngT +ncE +pOl +pxg +jPy +biy +adG +bYB +coN +cqg +cry +tzf +cuF +cwc +mHW +cyZ +vbb +vbb +vbb +vbb +vbb +vbb +nNO +rKG +lBm +vbb +vbb +vbb +vbb +vbb +vbb +cYj +aVB +tfD +ddm +oEw +dfS +dhy +diT +dkL +dmh +dnQ +dpH +kwH +dsU +dub +dpG +dxt +dyP +dmh +dBE +vsj +izY +ydF +pIM +gNF +mlQ +mtX +qkr +jId +fjt +aaa +aad +dPq +dPq +dPq +dPq +dPq +dPq +aaa +aad +aaa +aaa +aaa +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(200,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +efQ +aaa +aaa +uHd +aaa +pff +tqQ +kZV +wMU +obt +lbK +iQj +bcI +lbK +sKL +bcI +lbK +eoZ +bcI +spx +kAm +lxn +rZH +aFn +beq +wmA +bhb +biE +bnI +bnI +bnI +bnI +acA +btl +buK +bTe +bTe +bTe +eXl +dWQ +efK +suN +mqx +bTe +bLo +bTe +bPr +bTe +bTe +bTe +bXG +sGn +bnI +cdo +uer +bnI +lkC +lzr +rZz +enG +coO +cqh +bJc +kRf +cuG +bHq +rhF +cza +vbb +vZG +eLV +yaE +eSH +vbb +oRk +gko +mRI +vbb +ojK +yaC +idG +myF +vbb +cYk +aVB +cIW +ddm +deQ +gAm +dhz +dhw +dkM +dmh +dnR +dpG +dpG +dpG +dpG +dpG +dxu +dyQ +dAj +dBC +awO +jWB +pKe +gIf +xPI +lOE +lIG +ghk +utJ +jWB +aad +aad +aad +aaa +aaa +aaa +aad +aad +aad +rSK +rSK +aad +aad +aad +rSK +rSK +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(201,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +qYo +qYo +uHd +qYo +xjZ +xjZ +gkK +xjZ +xjZ +gUy +xjZ +xjZ +nKv +xjZ +xjZ +iAL +xjZ +xjZ +gCc +xjZ +aZo +whb +bcN +wyK +oLd +bhc +biF +bnJ +bnJ +bnJ +bnJ +ibz +btm +bnJ +bnJ +bxp +byK +vag +bCg +bNj +bFK +loN +bJy +bNl +bNl +bNl +bNl +bNl +bNl +bXH +bkw +cgX +cdp +bkw +xcQ +mLO +ckl +clD +nPk +coP +clA +crA +ctf +cuH +bHq +lnw +czb +vbb +kvy +mTl +xmP +wBp +fuK +mAt +rxt +oHK +cBM +eWr +uhs +xVo +xuD +vbb +cYj +aVB +dbC +ddm +deR +iTy +sAB +sAm +dkN +dmh +dnS +dpG +dpG +dpG +dpG +dvN +dxv +dyR +dmh +dBu +gBp +dEk +dEk +dEk +dEk +dEk +dEk +dEk +dEk +dEk +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(202,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +aaa +uHd +aaa +xjZ +gWz +cJq +vXz +mrC +jZX +vXz +mrC +rhY +vXz +mrC +jrR +vXz +gWz +hEk +xjZ +aZq +whb +aFm +aFm +bKv +tuZ +tuZ +eMy +eMy +tuZ +eMy +vQE +tOv +eMy +tuZ +guL +aML +iMz +aML +guL +bFL +kbi +bFL +bFL +bFP +bPs +bFP +bFL +bFL +bXI +qjs +bFP +bFL +bKr +biy +bgZ +bgZ +coQ +iNm +coQ +clA +clz +bJe +cuI +bHq +lnw +czc +vbb +wzU +xmP +iFr +neu +vbb +ski +jVy +uAo +vbb +ycm +xVo +xVo +wuK +vbb +cYl +cfk +cHW +ddm +ddm +ocG +ddm +ddm +ddm +dmh +dnT +dpI +drq +dsV +duc +dvO +dxw +dyS +dmh +rTU +oLi +dEk +dFt +dGL +dId +dIf +dKs +dLw +dNi +dEk +aad +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(203,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +aaa +uHd +qYo +xjZ +mdG +qlx +vXz +sfb +vFU +vXz +sfb +qBp +vXz +mdG +sQr +vXz +aUv +tgb +xjZ +aZo +whb +aFm +bes +bfR +tuZ +tkj +uYe +nRT +ils +ktc +oIg +oXg +mau +xYt +guL +blt +ylr +qhD +guL +tyx +jio +bJz +bFP +bNm +bPt +bRq +bTf +bVl +bXJ +irE +cbD +bFP +jTW +cgZ +ciI +bgZ +clF +eLw +coR +clA +crB +ctg +crB +bHq +qNc +czd +vbb +vbb +vbb +vbb +vbb +vbb +eIk +jVy +uAo +vbb +vbb +vbb +vbb +vbb +vbb +cYm +eRS +cIW +vOp +cHW +hwT +cHW +cIW +jPq +dmh +dmh +dmh +dmh +dmh +dud +dmh +dmh +dmh +dmh +dBu +vnq +sOG +kuc +aag +dIe +dJC +dKt +dLx +dNj +dGQ +aad +aad +rSK +rSK +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(204,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +qYo +aaa +xjZ +tXx +lEU +vXz +wPe +hDc +vXz +sPv +oHl +vXz +aPi +bll +vXz +aUw +hDc +xjZ +aZr +aSY +aFm +bet +bfS +eMy +tHW +kQt +xMc +xMc +wFK +wTr +sAv +uyV +sIg +guL +qhD +rob +iyB +guL +bFM +jio +bHH +bLr +bNn +bPu +uth +uth +uth +kVk +jcC +cbE +cdq +iZC +chc +ciJ +bgZ +clG +eLw +coS +clA +crC +cth +cuK +bHq +rhF +coK +vbb +myF +idG +mQO +gnW +vbb +ski +jVy +pES +vbb +khl +qcZ +lAD +fPH +vbb +cYn +hzs +dbD +tfD +cIW +rAL +dbD +lnB +cHW +wOH +dnU +dbD +cNH +lnB +due +dbD +dbD +dyT +slf +dBE +oxI +dEk +dFv +dGN +dIf +dJD +dKu +dLy +dNk +dGQ +aad +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(205,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +vVc +vVc +qYo +aaa +xjZ +vXz +mIv +vXz +vXz +jAK +vXz +vXz +aMf +vXz +vXz +sYu +vXz +vXz +aWf +xjZ +aZo +whb +aFm +aFm +aFn +tuZ +lze +rMx +ick +wva +vKx +qNC +sWf +nOL +ohQ +fWZ +qhD +oKg +wuN +guL +bFN +bHG +bFM +bFP +cxr +bPv +bRs +bTh +bVn +bXL +oYL +cbF +bFP +cjt +chb +ciK +bgZ +clH +xeq +coT +clA +bHq +cti +bHq +bHq +lnw +coI +vbb +ekx +xVo +uhs +jmH +hpH +lmX +rxt +eqo +oiC +wrw +lAD +lAD +eIy +vbb +dLp +dzz +ueh +nsS +cjc +uWg +jFs +cjc +fOo +uTK +pyF +kiK +rAg +jFs +jFs +nOH +hjE +rAg +xuO +nOX +iYT +dEk +dFw +dGO +dGN +dJE +dGN +dIf +dNl +dGQ +aad +rSK +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(206,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +qYo +aFm +aFm +xPp +aJA +rhs +aGH +pWW +aJy +aNJ +yfl +aNC +aPk +lUo +bbt +sZD +oTt +aFm +aZo +whb +bcO +aFm +aaa +tuZ +uVx +rMx +loX +kcu +jGY +ucc +oQR +nOL +mmo +guL +xLd +uqc +bFj +guL +bFO +bHH +bJB +bLs +bLs +bPw +bPw +bLs +bPw +bXM +pzl +cbG +bLs +qiu +chc +ciL +bgZ +clI +cnp +clK +clA +aaa +aaa +aad +cti +qvd +cze +vbb +iMF +xVo +xVo +tKk +vbb +ski +oXX +uAo +vbb +xYc +mKf +hUv +rzM +vbb +cYp +qrv +cIX +ddu +cHU +dfX +cHU +cHU +lOa +cHU +lOa +cHU +oub +rNd +cHU +cHU +lOa +dyU +dAk +rUy +dDb +dyU +dFx +dGP +dIg +dJF +dKv +dLA +dNm +dEk +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(207,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +aFm +aFm +aFm +aFm +hAI +gsB +aJA +puA +rgR +utT +lBf +lkt +qnU +izq +ddg +npX +xcp +ieL +aWg +pff +aZu +smX +bcP +aFn +aad +tuZ +mFt +mau +iHr +jFj +oYc +mau +lTi +jFj +jCE +guL +qhD +qhD +qhD +guL +bFP +bHI +bFP +bLs +iqM +wAj +bNp +bTi +bVp +bXN +aDU +cbH +bLs +bGo +chd +ciM +biy +clJ +cnq +coU +clA +aad +aad +oNH +oNH +ice +oNH +vbb +vbb +vbb +vbb +vbb +vbb +plq +tJA +rCO +vbb +vbb +vbb +vbb +vbb +vbb +oNH +qLO +oNH +oNH +oNH +aad +cHU +diX +dkR +cHU +rpi +dpK +cHU +cIW +cHU +dvQ +rAL +dyU +dAl +dBH +dDc +dyU +dEk +dGQ +dEk +dEk +dEk +dGQ +dEk +dEk +aad +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(208,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +pff +lGy +nFI +lxf +fiN +reP +ibY +fcK +lsG +aIf +vXz +cAe +vXz +vXz +vXz +aKV +aSG +rKh +aMi +pff +aZo +whb +bcQ +aFm +aaa +eMy +bki +hrI +uWQ +vSA +jJB +oel +gPc +nxf +qUA +guL +swl +swl +swl +guL +bFQ +bHJ +bJD +bLs +bNq +bPx +bRt +bRt +xSu +bXO +aDU +cbI +cdr +lXf +chc +ciN +bgZ +clK +cnr +cnp +cns +aaa +aaa +oNH +sqI +upL +uDL +uZm +pNL +yll +nDy +tWu +wjc +keR +lrk +kMn +ogT +nsF +xFD +iaz +bua +ymb +kWC +nik +uOW +uBx +oNH +aaa +dhC +diY +dkS +cHU +dnX +dpL +dfX +wvA +dfX +dvR +dxz +dyU +dAm +dBI +dDd +dyV +aad +aad +aad +aad +aad +aad +aad +aad +aad +aaa +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(209,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +qYo +uHd +aaa +pff +mio +fBg +kCh +bYw +qaR +ccu +lOb +lsG +aIg +vXz +okW +avz +iGN +aPn +aKV +eMd +osN +lgw +aFm +aZo +whb +aKV +aFm +aad +tuZ +lJt +xBb +xBb +ppt +hBn +fWW +hSS +xBb +mau +swl +llD +hRH +opi +guL +bFR +bHK +bJE +bLs +bNr +bPy +fZK +bEr +tlM +blw +jrt +cbJ +cds +bsa +che +ciO +biy +clL +cnp +coW +clA +aad +aad +wZU +sqI +gTH +uhI +vyd +uhI +uhI +uhI +uhI +uhI +uhI +kXk +xCc +uhI +uhI +uhI +uhI +uhI +uhI +uhI +eVR +wRt +tEe +wZU +aad +dhC +diZ +dkT +cHU +dnY +dpM +dfX +abj +dfX +dvS +dxA +dyU +dAn +dBJ +dDe +dyU +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(210,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +uHd +aaa +pff +vjn +mNS +kAJ +ilu +lsG +xvZ +xzc +aGL +aIh +vXz +olN +vXz +aNG +aPo +aKV +aKV +xsQ +aKV +aFm +aZo +whb +bcR +aFm +aaa +tuZ +ycd +nqQ +nqQ +nqQ +uBM +ksL +kTl +hZg +amg +lnp +vhn +dRo +upI +guL +bFL +bFP +bFL +bLs +bNs +bPz +bRv +bRv +bRv +bRv +bZX +cbK +bLs +cfq +bnI +ciP +bgZ +clA +cns +clA +clA +aaa +aaa +wZU +sqI +wRt +ktn +iLh +mkO +qhE +wRt +sjP +hLN +nvt +nvt +sWc +rvP +uNj +wRt +qBh +qBh +nzf +qsr +geR +qBh +tEe +wZU +aaa +dhC +dhC +cHU +cHU +cHU +dfX +dfX +vVc +dfX +dfX +cHU +dyV +dyV +dBK +dyV +dyV +aad +aaa +aaa +aad +aaa +aaa +aad +aad +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(211,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +xTK +aaa +qYo +aaa +pff +lce +mNS +mit +jrh +aNJ +kxv +hQe +lsG +lpW +vXz +vXz +vXz +vXz +vXz +aKV +iDb +osN +aWi +aFm +aZo +obu +bcS +aFn +aad +tuZ +mQp +jRs +wTx +etJ +iSX +kAO +kAO +qVt +pJV +swl +hhH +eQk +fZP +guL +aad +aaa +aad +bLs +bNt +bPA +bRw +bTk +bVr +bXR +bZY +cbL +bLs +pft +chg +cfr +bgZ +aaa +aad +aaa +aaa +crD +aaa +wZU +nUD +wRt +mrc +iuO +xev +sjP +wRt +lqS +mwk +xev +xev +pta +kJE +sIy +wRt +ngg +tKJ +qBh +wRt +qyU +iLM +tEe +wZU +aad +aad +eqU +eqU +eqU +aad +eqU +aad +abj +aad +aad +eqU +aad +dyV +dBL +dyV +aad +aaa +aaa +rSK +rSK +aad +rSK +rSK +rSK +rSK +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(212,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +uHd +aaa +pff +ihX +pWW +qSL +wQC +upr +yfl +hml +lsG +pJb +tKa +wAy +aMm +aNH +aPq +aKV +aSH +osN +lsG +pff +aZo +whb +bcT +aFm +aaa +tuZ +frV +frV +uwE +uwE +bzp +uwE +uwE +frV +frV +guL +guL +guL +guL +guL +aad +aaa +aad +bLs +bLs +bLs +bLs +bLs +bLs +bLs +bLs +bLs +bLs +bgZ +biy +bgZ +bgZ +aaa +aad +aad +rSK +aad +aad +wZU +nIF +wRt +mrc +ojO +xev +sjP +wRt +haH +mwk +xev +xev +xev +kJE +sIy +wRt +wji +uyS +wRt +wRt +lga +qCG +tVL +wZU +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVc +aaa +aaa +aaa +aad +dyV +dBM +dyV +aad +aad +rSK +rSK +aaa +aaa +aad +aaa +aaa +aad +aad +rSK +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(213,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +qYo +uHd +aaa +pff +nYb +rJj +adw +fiN +sgI +bbt +mST +aDT +xcp +hXT +oWK +dzF +bbt +aPr +aKV +eEX +qwA +aWk +oBn +aZo +wFe +aFm +aFm +aad +aad +frV +luH +ybi +ybi +fUR +ybi +ybi +hCK +frV +aaa +aaa +aad +aaa +aaa +aad +aaa +aad +aad +aad +aad +aad +bTl +aad +aaa +aaa +aad +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +wZU +rbT +wRt +mrc +iuO +xev +wmw +wRt +lqS +mwk +mbc +xev +xev +kJE +sIy +wRt +rRk +lPG +uur +qBh +vQD +krH +sjP +wZU +aad +qYo +aaa +aaa +aaa +aaa +aaa +rSK +vVc +aaa +aaa +aaa +aad +qYo +nwi +aad +aad +aaa +aad +aaa +aaa +gTB +nwi +gTB +aaa +aaa +aad +aaa +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(214,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +aFm +aFm +aFm +aFm +ubH +iMR +srX +pIj +utK +urA +tKa +xxj +qOO +tju +aPs +aKV +geJ +aKV +geJ +aFm +qFn +baM +aFn +aaa +aad +aaa +tKS +jEN +iTF +gQp +qpF +gQp +iTF +xOx +tKS +aad +rSK +rSK +aad +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +aad +aad +rSK +rSK +aad +aad +wZU +xTN +wRt +qhE +ugs +jDv +ktn +wRt +sjP +hSx +bmw +wdO +wdO +jLJ +uNj +wRt +qBh +qBh +xOD +qgI +jYD +qBh +sAD +wZU +aad +rSK +qYo +aaa +aaa +aaa +aaa +rSK +vVc +aaa +aaa +aaa +aaa +aad +nwi +aad +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(215,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aFm +aFm +aKV +aKV +kqD +aKV +aKV +aKV +fxd +wpt +aNK +aPt +aKV +rjB +lsG +rjB +aFm +aZC +obu +aFn +aad +aad +aad +tKS +yhU +uCv +nja +vTE +xOf +ksr +rsa +tKS +aaa +aad +aaa +aaa +aad +aad +aaa +aad +aad +aad +aaa +aad +aad +aaa +aad +aaa +aad +aaa +aaa +aad +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +wZU +xTN +wRt +wRt +wtC +icG +icG +icG +icG +icG +icG +icG +icG +icG +wjL +icG +icG +icG +icG +icG +btW +tKQ +fXp +wZU +aad +rSK +aaa +qYo +qYo +qYo +qYo +qYo +vVc +qYo +qYo +qYo +aad +aaa +nwi +aad +aad +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(216,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVc +qYo +uHd +uHd +uHd +uHd +qYo +qYo +pff +fDA +sdP +lqN +isY +vyv +aKV +pGM +tvL +nLs +iCN +aKV +aSJ +aUE +aWm +aXR +pms +xYA +aFn +aaa +aad +aaa +tKS +rLV +ybi +equ +bwc +ftP +ybi +qWD +tKS +aad +aad +rSK +rSK +rSK +aad +aad +aad +aad +aad +aad +rSK +rSK +rSK +rSK +aad +aad +aad +rSK +rSK +rSK +rSK +aad +rSK +aad +aad +rSK +aad +wZU +xTN +xTN +xTN +xTN +fYW +cmA +hOx +hOx +xTN +fez +pNu +pNu +sAD +taC +sdn +sdn +aer +sdn +sAD +yhV +sAD +yjY +wZU +aad +qYo +qYo +aaa +aaa +aaa +aaa +aaa +vVc +aaa +aaa +aaa +aaa +aad +nwi +aad +aaa +gTB +nwi +gTB +aad +gTB +nwi +gTB +aad +gTB +nwi +gTB +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(217,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +agO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +pff +bzW +wDB +ddq +bbt +gRM +aKV +jWa +wtx +aNK +aPu +aKZ +aKZ +aKZ +aKZ +aKZ +lwI +bbn +aFm +aad +aad +aad +frV +nkf +ybi +ybi +gjC +oIN +oIN +kiw +frV +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wZU +yew +yew +yew +wZU +wZU +wZU +wZU +wZU +wZU +ifw +wZU +wZU +sqw +tqX +wZU +wZU +wZU +wZU +wZU +jpS +kIA +ury +wZU +aad +mIc +aaa +qYo +aaa +aaa +aaa +aaa +vVc +aaa +aaa +aaa +aaa +aaa +bhQ +aad +aad +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(218,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wVj +aaa +uHd +aaa +aaa +aaa +pff +fCE +jwH +pmV +lsG +uoy +aKV +wDi +plN +aNM +aPv +aKZ +aSI +aUD +aWl +aKZ +mhh +aFn +aFm +aad +aaa +aad +frV +frV +mqy +lrZ +xth +ptS +dmt +frV +frV +aad +aad +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wZU +jTf +fSE +evg +wZU +aaa +aaa +aad +aaa +wZU +iTd +oNH +jHc +fpv +tqX +aaa +aad +aaa +aaa +wZU +flF +eqQ +wbt +wZU +aad +mIc +aaa +aaa +rSK +aaa +hUm +vpk +vVc +wIU +aaa +aaa +aaa +aad +bhQ +aad +aaa +gTB +nwi +gTB +aaa +aad +nwi +aad +aaa +gTB +nwi +gTB +aaa +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(219,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +qYo +uHd +qYo +aFm +aFm +pff +pff +pff +aFm +aFm +aKZ +aKZ +aKZ +aKZ +aKZ +aSM +qJp +vHF +kEH +uHV +bbp +aFm +aFm +aFm +aad +aaa +frV +rmG +pel +mve +pel +rmG +frV +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +oNH +wZU +wZU +wZU +oNH +aad +hQZ +lFd +lFd +lFd +pmb +wZU +wZU +tmA +tBm +sip +sip +tzl +aad +oNH +pzg +uua +ijH +wWo +aad +qYo +qYo +qYo +qYo +qYo +kUH +yhJ +yhJ +nHf +aaa +aaa +eqU +qYo +bhQ +aad +aaa +aad +nwi +aad +aad +aad +bhQ +aad +aad +aad +nwi +aad +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(220,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aLa +aMq +xVh +aMr +fDa +qtR +oJS +uGw +aKZ +ydg +beq +mpy +lUe +tzj +abj +aaa +frV +cCv +ybi +xPU +ybi +uyO +frV +aad +aad +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +aad +aad +aad +aad +wZU +aaa +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aaa +wZU +uDP +tCL +gjd +sdh +aad +mIc +rSK +rSK +aaa +aaa +kUH +jwg +yhJ +vVc +vVc +vVc +vVc +abj +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +bhQ +xPP +bhQ +bhQ +nwi +nwi +wSL +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(221,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +uHd +qYo +vVc +vVc +vVc +qYo +qYo +aaa +aaa +aLa +aMr +rYX +hYG +bNM +gDw +tRX +ohW +aKZ +xYP +aFn +aFm +aKV +aFm +aad +aad +frV +mVf +uCv +beY +phx +kGC +frV +aaa +aad +aaa +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +wZU +aaa +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aaa +oNH +tCL +tCL +gjd +sdh +mIc +mIc +aaa +aaa +aaa +aaa +pCQ +xBA +vVc +ybr +aaa +aaa +rSK +aaa +aaa +aad +aaa +aad +nwi +aad +aad +aad +bhQ +aad +aad +aad +nwi +aad +aaa +aaa +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(222,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aLa +aMs +hWw +pkY +mVC +mCX +reB +fbc +aKZ +qST +bbr +bcU +aKV +aaa +aad +aaa +frV +gqN +dix +jbX +fTU +rnn +frV +aad +aad +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aad +aad +wZU +aad +kdD +cFG +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cTi +vGx +aad +wZU +tCL +pmL +xem +sdh +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +vVc +aaa +aaa +qYo +rSK +rSK +aad +aad +aaa +gTB +nwi +gTB +aaa +aad +nwi +aad +aaa +gTB +nwi +gTB +aaa +rSK +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(223,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +uHd +uHd +uHd +qYo +aFo +aad +aad +aad +aKZ +aKZ +aKZ +aKZ +aKZ +aSN +vVz +aWq +aKZ +iHV +bbs +bcV +aFn +aaa +aad +aaa +frV +frV +vef +vef +vef +frV +frV +aaa +aad +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aad +wZU +aaa +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aaa +wZU +sdh +sdh +sdh +sdh +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +vVc +aaa +qYo +rSK +aaa +aaa +aaa +aad +aad +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(224,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +rSK +aaa +qYo +qYo +qYo +aaa +aKZ +aSO +ppo +xpj +aKZ +aZK +bbt +aNJ +aKV +aaa +aad +aaa +aaa +aad +aaa +aad +aaa +aad +aaa +aaa +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +wZU +aaa +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aaa +wZU +aad +rSK +aaa +qYo +aaa +qYo +aaa +aaa +aaa +aaa +qYo +rSK +vVc +rSK +qYo +aaa +aaa +aaa +aaa +rSK +aaa +gTB +nwi +gTB +aad +gTB +nwi +gTB +aad +gTB +nwi +gTB +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(225,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +qYo +rSK +rSK +rSK +aaa +aKZ +aKZ +aKZ +aKZ +aKZ +aZL +bbu +aZL +aKV +aad +rSK +rSK +rSK +aad +rSK +rSK +rSK +rSK +rSK +rSK +aad +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +oNH +aad +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aad +oNH +aad +rSK +qYo +rSK +rSK +rSK +qYo +qYo +aaa +qYo +rSK +aaa +vVc +aaa +rSK +aaa +aaa +aaa +aaa +rSK +aad +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(226,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVc +vVc +aaa +aaa +qYo +qYo +qYo +aaa +aaa +aad +aKV +aZM +aZM +bcW +aKV +aaa +aaa +aaa +aaa +aad +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +mbS +aad +wZU +aaa +kdD +bnS +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +xVV +vGx +aaa +wZU +aad +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +qYo +aaa +qYo +vVc +aaa +qYo +aaa +aaa +aaa +gCX +rSK +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +gTB +nwi +gTB +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(227,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vVc +vVc +vVc +aaa +rSK +aad +aKV +xZM +bbv +xZM +aKV +aad +aad +rSK +rSK +rSK +rSK +rSK +aad +rSK +rSK +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +mbS +aad +wZU +aaa +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aaa +wZU +aad +rSK +aaa +aaa +aaa +aaa +aab +aaa +qYo +mIc +aaa +aaa +vVc +aaa +qYo +aaa +aaa +aaa +gCX +rSK +aaa +aaa +aaa +aaa +aaa +gTB +nwi +gTB +aaa +aaa +aaa +aaa +aaa +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(228,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +aad +aKV +aaa +aaa +aaa +aKV +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +mbS +aad +wZU +aad +eoX +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +cFF +tqX +aad +wZU +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +aaa +qhQ +vVc +qhQ +qYo +aaa +aaa +gCX +gCX +rSK +rSK +aad +rSK +rSK +aaa +aaa +aaa +aaa +aaa +rSK +aad +rSK +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(229,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aXU +aaa +aaa +aaa +aXU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +mbS +nOg +wZU +aaa +nRW +lFd +lFd +lFd +kKu +wZU +wZU +oxS +sip +sip +sip +wtA +aaa +wZU +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qYo +tKr +fsE +jqI +fsE +tKr +aaa +gCX +mbS +aaa +aaa +aaa +aaa +aaa +rSK +rSK +aad +rSK +rSK +aad +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(230,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nOg +wZU +aaa +aaa +aad +aaa +wZU +rmn +jHc +oNH +ycV +wZU +aaa +aad +aaa +aaa +wZU +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tKr +tKr +tgu +mQX +hos +tKr +tKr +gCX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(231,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bbz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +mbS +nOg +wZU +wZU +wZU +wZU +wZU +wZU +pVH +wZU +wZU +rAt +wZU +wZU +wZU +wZU +wZU +wZU +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dNn +fsE +lAw +ncv +hij +dwv +wao +fsE +dNn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(232,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +nOg +aad +aad +aad +aad +aad +wZU +uLP +psw +vmn +eSl +wZU +aad +aad +aad +aad +aad +aad +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +fsE +pYz +rKA +rKA +rKA +xEm +fsE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(233,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +rSK +rSK +aaa +rSK +aad +oNH +lIP +pwR +gtA +fWe +oNH +aad +aaa +rSK +rSK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dNn +fsE +fRu +fEm +xPy +eTV +aSk +fsE +dNn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(234,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wZU +wGS +ndr +wYe +vzu +wZU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tKr +tKr +acR +jdJ +acR +tKr +tKr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(235,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +wZU +wZU +wZU +wZU +wZU +wZU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tKr +fsE +fsE +fsE +tKr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(236,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +dNn +aaa +dNn +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(237,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(238,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(239,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aab +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(240,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(241,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(242,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(243,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(244,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(245,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(246,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(247,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(248,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(249,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(250,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(251,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(252,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(253,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(254,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(255,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} diff --git a/_maps/stations/fortress.dmm b/_maps/stations/fortress.dmm new file mode 100644 index 000000000000..ccae779658f1 --- /dev/null +++ b/_maps/stations/fortress.dmm @@ -0,0 +1,250201 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/closed/mineral/random/labormineral, +/area/space) +"f" = ( +/turf/open/floor/wood/parquet, +/area/space) +"k" = ( +/turf/open/floor/plating/dirt/dark, +/area/space) +"l" = ( +/turf/open/floor/plasteel/grimy, +/area/space) +"m" = ( +/turf/open/floor/plating, +/area/space) +"p" = ( +/turf/closed/wall/mineral/wood/nonmetal, +/area/space) +"r" = ( +/turf/closed/wall/r_wall/rust, +/area/space) +"y" = ( +/turf/open/openspace, +/area/space) +"z" = ( +/turf/closed/wall/r_wall, +/area/space) +"H" = ( +/turf/open/floor/plasteel, +/area/space) +"J" = ( +/turf/open/floor/plasteel/dark, +/area/space) +"R" = ( +/turf/open/floor/wood/large, +/area/space) +"T" = ( +/turf/open/floor/plating/is12/wood, +/area/space) +"V" = ( +/turf/open/floor/wood, +/area/space) + +(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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +a +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(5,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(6,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(7,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(8,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(9,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(10,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(11,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(12,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(13,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(14,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(15,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(16,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(17,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(18,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(20,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(21,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +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 +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 +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(24,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(25,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(26,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(27,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(28,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(29,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(30,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(31,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(32,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(33,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +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 +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 +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(38,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(39,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(40,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(41,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(42,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(43,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(44,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(45,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(46,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(47,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(48,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(49,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(50,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(51,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(52,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(53,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(54,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(55,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(56,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(57,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(58,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(59,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(60,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(61,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(62,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(63,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(64,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(65,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(66,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(67,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(68,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(69,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(70,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(71,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(72,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(73,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(74,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(75,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(76,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(77,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(78,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(79,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(80,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(81,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(82,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(83,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(84,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(85,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(86,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(87,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(88,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(89,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(90,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(91,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(92,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(93,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(94,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(95,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(96,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(97,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 +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 +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(98,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 +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 +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(99,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 +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 +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(100,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 +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 +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(101,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 +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 +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(102,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 +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 +k +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(103,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 +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 +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(104,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 +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 +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(105,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 +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 +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(106,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 +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 +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(107,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 +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 +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(108,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 +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 +k +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(109,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 +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 +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(110,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 +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 +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(111,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 +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 +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(112,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 +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 +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(113,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 +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 +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(114,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 +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 +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(115,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 +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 +k +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(116,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 +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 +k +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(117,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 +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 +k +k +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 +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(118,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(119,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(120,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(121,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(122,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(123,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(124,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(125,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(126,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(127,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(128,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(129,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(130,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(131,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(132,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(133,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(134,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(135,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(136,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(137,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(138,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(139,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(140,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(141,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(142,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(143,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(144,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(145,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(146,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(147,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(148,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(149,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(150,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(151,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(152,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(153,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(154,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(155,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(156,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(157,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(158,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(159,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(160,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(161,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(162,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(163,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(164,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(165,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(166,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(167,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(168,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(169,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(170,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(171,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(172,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(173,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(174,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(175,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(176,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(177,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(178,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(179,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(180,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(181,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(182,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(183,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(184,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(185,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(186,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(187,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(188,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(189,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(190,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(191,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(192,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(193,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(194,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(195,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(196,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(197,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(198,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(199,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(200,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(201,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(202,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(203,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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(204,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 +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(205,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 +r +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(206,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 +r +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(207,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 +r +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(208,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 +r +k +k +k +k +k +k +k +k +k +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +a +a +a +"} +(209,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 +r +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +"} +(210,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 +r +k +k +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +"} +(211,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 +r +k +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +"} +(212,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(213,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(214,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(215,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(216,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(217,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(218,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(219,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(220,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(221,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(222,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(223,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(224,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(225,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(226,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(227,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(228,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(229,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(230,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(231,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(232,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(233,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(234,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(235,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(236,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(237,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(238,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(239,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(240,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(241,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(242,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(243,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(244,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(245,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(246,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(247,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(248,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(249,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(250,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(251,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(252,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(253,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(254,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(255,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 +r +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} + +(1,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(2,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(3,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(4,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(5,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(6,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(7,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(8,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(9,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(10,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(11,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(12,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(13,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(14,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(15,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(16,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(17,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(18,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(19,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(20,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(21,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(22,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(23,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(24,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(25,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(26,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(27,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(28,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(29,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(30,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(31,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(32,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(33,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(34,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(35,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(36,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(37,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(38,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(39,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(40,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(41,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(42,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(43,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(44,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(45,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(46,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(47,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(48,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(49,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(50,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(51,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(52,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(53,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(54,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(55,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(56,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(57,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(58,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(59,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(60,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(61,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(62,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(63,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(64,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(65,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(66,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(67,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(68,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(69,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(70,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(71,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(72,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(73,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(74,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(75,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(76,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(77,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(78,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(79,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(80,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(81,1,2) = {" +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 +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 +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(82,1,2) = {" +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 +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 +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(83,1,2) = {" +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 +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 +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(84,1,2) = {" +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 +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 +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(85,1,2) = {" +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 +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 +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(86,1,2) = {" +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 +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 +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(87,1,2) = {" +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 +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 +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(88,1,2) = {" +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 +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 +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(89,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(90,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(91,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(92,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(93,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(94,1,2) = {" +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 +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 +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(95,1,2) = {" +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 +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 +k +k +k +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 +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(96,1,2) = {" +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 +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 +k +k +k +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 +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(97,1,2) = {" +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 +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 +k +k +y +y +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 +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(98,1,2) = {" +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 +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 +k +k +y +y +y +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 +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(99,1,2) = {" +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 +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 +k +k +k +y +y +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 +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(100,1,2) = {" +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 +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 +k +k +k +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(101,1,2) = {" +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 +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 +k +k +k +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(102,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(103,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(104,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(105,1,2) = {" +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 +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 +k +k +k +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(106,1,2) = {" +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 +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 +k +k +k +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(107,1,2) = {" +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 +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 +k +k +k +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(108,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +y +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(109,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +z +z +z +z +z +z +z +z +z +z +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(110,1,2) = {" +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 +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 +k +k +k +k +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +z +m +m +m +m +m +m +m +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(111,1,2) = {" +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 +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 +k +k +k +k +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +z +m +z +z +z +z +z +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(112,1,2) = {" +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 +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 +k +k +k +k +y +y +y +y +y +y +z +z +z +z +z +z +z +z +z +z +m +z +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(113,1,2) = {" +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 +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 +k +k +k +k +y +y +y +y +y +y +z +m +m +m +m +m +m +m +m +m +m +z +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(114,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +y +y +y +y +y +y +y +z +m +z +z +z +z +z +z +z +z +z +z +T +T +T +T +z +m +z +a +z +m +z +y +y +y +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(115,1,2) = {" +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 +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 +k +k +k +y +y +y +y +z +m +m +z +m +z +H +H +H +z +J +J +J +J +J +T +T +T +T +z +m +z +z +z +m +z +y +y +y +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(116,1,2) = {" +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 +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 +k +k +k +y +y +y +a +z +m +m +m +m +z +H +H +H +z +J +J +J +J +J +T +T +T +T +z +m +m +m +m +m +z +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(117,1,2) = {" +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 +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 +k +k +k +y +y +a +a +z +m +z +z +z +z +H +H +H +z +J +J +J +J +J +T +T +T +T +z +z +z +z +z +m +z +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(118,1,2) = {" +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 +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 +k +k +k +a +a +a +a +z +m +z +H +H +H +H +H +H +z +J +J +J +J +J +T +T +T +T +z +l +l +l +l +l +m +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(119,1,2) = {" +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 +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 +k +k +k +a +a +a +a +z +m +z +H +H +H +H +H +H +z +J +J +J +J +J +T +T +T +T +z +l +l +l +l +l +m +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(120,1,2) = {" +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 +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 +k +k +k +a +a +a +a +z +m +z +H +H +H +H +H +z +z +z +z +z +z +z +T +T +T +T +z +l +l +l +l +l +m +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(121,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +z +z +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +z +k +k +k +k +k +z +T +T +T +T +z +l +l +l +l +l +m +y +y +y +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(122,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +m +k +k +k +k +k +k +k +k +k +k +k +k +k +z +z +z +k +k +k +k +k +z +z +J +J +z +z +l +l +l +l +l +m +y +y +y +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(123,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +z +z +z +z +z +z +z +z +m +z +k +H +H +z +k +k +H +H +k +k +k +k +H +H +H +H +z +l +z +z +m +m +z +y +y +y +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(124,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +m +m +m +m +m +m +m +m +m +m +z +k +H +H +z +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +k +k +k +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 +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 +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 +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 +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 +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 +"} +(125,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +z +z +z +z +z +z +z +z +z +z +m +m +k +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(126,1,2) = {" +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 +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 +z +m +z +k +H +H +z +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(127,1,2) = {" +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 +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 +z +m +z +k +H +k +z +k +k +H +H +H +k +k +k +k +k +k +k +z +z +J +z +z +J +z +y +y +y +k +k +k +k +k +H +H +H +k +k +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 +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 +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 +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 +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 +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 +"} +(128,1,2) = {" +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 +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 +z +m +z +H +H +k +p +p +p +m +m +p +p +p +p +p +z +z +z +z +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +k +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 +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 +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 +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 +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 +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 +"} +(129,1,2) = {" +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 +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 +z +m +z +H +H +k +p +V +V +V +V +V +V +R +R +p +m +m +z +T +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +k +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 +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 +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 +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 +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 +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 +"} +(130,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +z +z +z +z +z +z +z +z +z +m +z +H +H +k +p +V +f +f +f +f +V +R +R +m +m +m +z +T +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(131,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +m +m +m +m +m +m +m +m +m +z +H +H +H +p +V +f +f +f +f +V +p +p +p +z +m +z +T +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(132,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +a +a +a +z +z +z +z +z +m +z +H +H +H +p +V +f +f +f +f +V +p +H +H +z +m +z +T +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(133,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +a +a +a +z +J +J +J +z +m +z +H +H +H +p +V +f +f +f +f +V +p +H +H +z +m +z +T +T +T +T +z +m +z +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(134,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +a +a +a +z +J +J +J +z +m +z +k +H +H +p +V +f +f +f +f +V +p +H +H +z +m +z +T +T +T +T +z +m +r +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(135,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +a +a +a +z +J +J +J +z +m +z +k +H +H +p +V +V +V +V +V +V +p +H +H +z +m +z +T +T +T +T +z +m +r +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(136,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +a +a +a +z +J +J +J +z +m +z +k +H +H +p +p +p +V +m +p +p +p +H +H +z +m +z +T +T +T +T +z +m +r +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(137,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +z +z +z +J +J +J +z +m +z +k +H +H +H +H +H +H +H +H +H +H +H +H +z +m +z +z +z +z +z +z +m +r +y +y +y +k +k +k +k +k +H +H +H +k +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 +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 +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 +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 +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 +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 +"} +(138,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +H +H +H +H +H +H +H +H +H +H +m +m +m +m +m +m +m +m +m +r +y +y +y +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(139,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +z +z +z +z +z +z +z +z +z +z +z +z +z +m +z +z +z +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(140,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +m +m +z +k +H +H +z +J +J +z +J +J +J +J +J +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(141,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +J +J +J +J +J +J +J +J +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(142,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +J +J +z +J +J +J +J +J +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(143,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +J +J +z +z +z +z +z +z +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(144,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +T +T +T +T +T +T +T +z +T +T +T +T +z +m +z +a +r +m +r +y +y +y +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(145,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +z +m +z +J +J +J +J +J +J +z +m +z +k +H +H +z +T +T +T +T +T +T +T +z +z +z +z +z +z +m +z +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(146,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +a +a +a +a +a +z +m +z +J +J +J +J +z +z +z +m +z +k +H +H +z +T +T +T +T +T +T +T +z +m +m +m +m +m +m +z +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(147,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +a +a +a +a +z +m +z +J +J +J +J +z +m +m +m +z +H +H +H +z +T +T +T +T +T +T +T +z +m +z +m +z +z +z +z +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(148,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +a +z +m +z +J +J +J +J +z +m +z +z +z +H +H +H +z +T +T +T +T +T +T +T +z +m +z +m +z +a +a +a +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(149,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +a +z +m +z +J +J +J +J +z +m +z +m +z +H +H +H +z +T +T +T +T +T +T +T +z +m +z +m +z +a +a +a +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(150,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +z +m +z +z +z +z +z +z +m +z +z +z +H +H +H +z +z +z +z +z +J +z +z +z +m +z +m +z +a +a +a +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(151,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +z +m +z +a +a +a +a +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(152,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +H +z +m +z +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(153,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +k +H +H +H +H +H +H +H +H +H +H +H +H +k +k +k +k +H +H +H +z +m +z +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(154,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +k +k +a +a +z +z +z +m +p +p +p +p +p +p +J +J +p +p +z +z +z +H +H +z +z +m +z +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(155,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +a +a +a +a +a +a +z +m +p +R +R +R +R +R +R +R +R +p +a +a +z +H +H +z +m +m +z +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(156,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +a +a +a +a +a +a +a +a +z +m +p +R +R +R +R +R +R +R +R +p +p +z +z +z +z +z +m +z +z +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(157,1,2) = {" +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +a +a +a +a +a +a +a +a +a +a +z +m +p +R +R +R +R +R +R +R +R +f +p +m +m +m +m +m +m +z +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(158,1,2) = {" +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 +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 +z +m +p +R +R +R +R +R +R +R +R +f +p +m +z +z +z +z +z +z +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(159,1,2) = {" +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 +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 +z +m +p +R +R +R +R +R +R +R +R +f +p +m +z +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(160,1,2) = {" +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 +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 +z +m +p +R +R +R +R +R +R +R +R +p +p +m +z +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(161,1,2) = {" +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 +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 +z +m +p +p +f +f +f +f +f +p +p +p +m +m +z +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(162,1,2) = {" +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 +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 +z +m +m +p +p +p +m +p +p +p +m +m +m +z +z +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(163,1,2) = {" +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 +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 +z +z +m +m +m +m +m +m +m +m +m +m +m +z +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(164,1,2) = {" +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 +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 +z +z +z +z +z +z +z +z +z +z +z +z +z +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(165,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(166,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(167,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(168,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +a +k +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 +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 +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 +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 +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 +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 +"} +(169,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(170,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(171,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(172,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(173,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(174,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(175,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(176,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +"} +(177,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(178,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(179,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(180,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(181,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(182,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(183,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(184,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +a +k +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 +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 +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 +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 +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 +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 +a +"} +(185,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(186,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(187,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(188,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(189,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(190,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +a +k +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 +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 +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 +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 +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 +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 +a +"} +(191,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(192,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(193,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +"} +(194,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(195,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(196,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(197,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(198,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(199,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(200,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(201,1,2) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(202,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +m +r +y +y +y +k +k +k +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 +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 +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 +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 +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 +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 +a +a +"} +(203,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(204,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +y +y +y +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(205,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(206,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(207,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(208,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +y +y +y +y +y +y +k +k +k +k +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 +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +y +y +y +y +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(209,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +y +y +y +y +k +k +k +k +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +"} +(210,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +y +y +k +k +k +k +k +k +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +k +k +k +k +k +k +k +k +k +k +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 +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 +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 +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 +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 +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 +a +a +a +a +"} +(211,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +y +k +k +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +"} +(212,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +k +k +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 +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 +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 +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 +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 +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 +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 +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 +"} +(213,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +k +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 +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 +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 +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 +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 +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 +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 +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 +"} +(214,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +k +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 +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 +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 +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 +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 +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 +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 +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 +a +"} +(215,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(216,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(217,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(218,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(219,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(220,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(221,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(222,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(223,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(224,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(225,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(226,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(227,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(228,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(229,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(230,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(231,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(232,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(233,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(234,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(235,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(236,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(237,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(238,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(239,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(240,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(241,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(242,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(243,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(244,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(245,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(246,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(247,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(248,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(249,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(250,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(251,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(252,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(253,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(254,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +m +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(255,1,2) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +r +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} + +(1,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(2,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(3,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(4,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(5,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(6,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(7,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(8,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(9,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(10,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(11,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(12,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(13,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(14,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(15,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(16,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(17,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(18,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(19,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(20,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(21,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(22,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(23,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(24,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(25,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(26,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(27,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(28,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(29,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(30,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(31,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(32,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(33,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(34,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(35,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(36,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(37,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(38,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(39,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(40,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(41,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(42,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(43,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(44,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(45,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(46,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(47,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(48,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(49,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(50,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(51,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(52,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(53,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(54,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(55,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(56,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(57,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(58,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(59,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(60,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(61,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(62,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(63,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(64,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(65,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(66,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(67,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(68,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(69,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(70,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(71,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(72,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(73,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(74,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(75,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(76,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(77,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(78,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(79,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(80,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(81,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(82,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(83,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(84,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(85,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(86,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(87,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(88,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(89,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(90,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(91,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(92,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(93,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(94,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(95,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(96,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(97,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(98,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(99,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(100,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(101,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(102,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(103,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(104,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(105,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(106,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(107,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(108,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(109,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(110,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(111,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(112,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(113,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(114,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(115,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(116,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(117,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(118,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(119,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(120,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(121,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(122,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(123,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(124,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(125,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(126,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(127,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(128,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(129,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(130,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(131,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(132,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(133,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(134,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(135,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(136,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(137,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(138,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(139,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(140,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(141,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(142,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(143,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(144,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(145,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(146,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(147,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(148,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(149,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(150,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(151,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(152,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(153,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(154,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(155,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(156,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(157,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(158,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(159,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(160,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(161,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(162,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(163,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(164,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(165,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(166,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(167,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(168,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(169,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(170,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(171,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(172,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(173,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(174,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(175,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(176,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(177,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(178,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(179,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(180,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(181,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(182,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(183,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(184,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(185,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(186,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(187,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(188,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(189,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(190,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(191,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(192,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(193,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(194,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(195,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(196,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(197,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(198,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(199,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(200,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(201,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(202,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(203,1,3) = {" +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(204,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +y +y +y +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 +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 +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 +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 +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 +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 +a +a +a +a +a +"} +(205,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +a +a +a +a +a +a +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 +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 +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 +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 +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 +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 +"} +(206,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +a +a +a +a +a +a +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 +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 +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 +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 +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 +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 +"} +(207,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +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 +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 +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +y +a +a +a +a +a +a +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 +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 +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 +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 +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 +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 +"} +(208,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +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 +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +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 +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 +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 +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 +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 +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 +"} +(209,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +y +y +y +y +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +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 +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 +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 +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 +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 +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 +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 +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(210,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +"} +(211,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +"} +(212,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(213,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(214,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(215,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(216,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(217,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(218,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(219,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(220,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(221,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(222,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(223,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(224,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(225,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(226,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(227,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(228,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(229,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(230,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(231,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(232,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(233,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(234,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(235,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(236,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(237,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(238,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(239,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(240,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(241,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(242,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(243,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(244,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(245,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(246,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(247,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(248,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(249,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(250,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(251,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(252,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(253,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(254,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} +(255,1,3) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +r +y +y +y +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 +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 +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 +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 +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 +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 +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 +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 +a +a +"} diff --git a/_maps/stations/icefall.dmm b/_maps/stations/icefall.dmm new file mode 100644 index 000000000000..6f0a3c6f6d00 --- /dev/null +++ b/_maps/stations/icefall.dmm @@ -0,0 +1,339323 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/open/space/basic, +/area/space) +"ab" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/space) +"ac" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"ae" = ( +/turf/closed/wall/r_wall, +/area/service/library/private) +"ag" = ( +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"ah" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"ai" = ( +/obj/structure/sign/departments/engineering, +/turf/open/floor/plasteel/dark, +/area/space) +"aj" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"ak" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"al" = ( +/obj/machinery/light/directional/west, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/commons/locker) +"am" = ( +/turf/closed/wall, +/area/commons/dorms/four) +"an" = ( +/obj/structure/table, +/obj/item/crowbar{ + pixel_x = -3; + pixel_y = 11 + }, +/obj/item/weldingtool{ + pixel_y = -10 + }, +/obj/item/wirecutters{ + pixel_y = 6; + pixel_x = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"ap" = ( +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"aq" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/turf/open/floor/wood, +/area/space) +"as" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"au" = ( +/obj/structure/table/wood/poker, +/obj/item/toy/cards/deck{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"av" = ( +/turf/open/floor/carpet, +/area/commons/dorms/two) +"ay" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/commons/dorms) +"az" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"aA" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"aC" = ( +/turf/open/floor/wood, +/area/commons/dorms/five) +"aE" = ( +/obj/effect/turf_decal/siding/green/corner, +/obj/effect/turf_decal/siding/green/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"aF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"aJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/syringe/epinephrine{ + pixel_x = -12 + }, +/obj/item/reagent_containers/pill/happy{ + pixel_y = 6; + pixel_x = 2 + }, +/obj/item/reagent_containers/pill/happinesspsych{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"aK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"aL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"aQ" = ( +/turf/closed/wall/r_wall, +/area/service/cafeteria) +"aR" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"aT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"aU" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"aW" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/carpet, +/area/commons/dorms/two) +"aZ" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"bb" = ( +/obj/structure/musician/piano{ + icon_state = "piano" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"be" = ( +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/glass, +/area/service/library/upper) +"bg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"bh" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/trophy/gold_cup{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"bj" = ( +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"bm" = ( +/turf/open/floor/mineral/titanium, +/area/space) +"bp" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"br" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"bt" = ( +/turf/closed/wall/r_wall, +/area/commons/locker) +"bu" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement{ + pixel_y = 7 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"bv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/junglebush/c{ + pixel_y = -1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"bw" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/three) +"bx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"by" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plating, +/area/space) +"bz" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/wood/tile, +/area/service/library) +"bB" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"bC" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/space) +"bD" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"bE" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/one) +"bF" = ( +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Камера 2"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"bG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/white, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"bH" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"bI" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"bJ" = ( +/obj/structure/table, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"bM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/space) +"bO" = ( +/obj/structure/altar_of_gods, +/turf/open/floor/plasteel/monofloor/dark, +/area/service/chapel/main) +"bP" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space) +"bR" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"bS" = ( +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"bT" = ( +/obj/structure/table/wood, +/obj/item/coin/silver, +/turf/open/floor/carpet, +/area/commons/dorms) +"bU" = ( +/obj/structure/chair/sofa/corp/right{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"bV" = ( +/obj/structure/flora/ausbushes/leafybush{ + pixel_y = -6; + pixel_x = 3 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"bW" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"bX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/structure/railing{ + dir = 6 + }, +/obj/structure/flora/ausbushes/sunnybush{ + pixel_y = 9; + pixel_x = -4 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"bY" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"bZ" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"cb" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/commons/dorms/five) +"cg" = ( +/obj/item/clothing/suit/hooded/wintercoat/hop, +/turf/open/floor/plasteel, +/area/space) +"ch" = ( +/turf/open/floor/carpet/red, +/area/commons/dorms/cabin/one) +"ci" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/plasteel/dark, +/area/space) +"cj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/space) +"cm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/space) +"co" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"cp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"cq" = ( +/obj/structure/pool_ladder, +/turf/open/indestructible/pool/end, +/area/commons/locker) +"cs" = ( +/obj/machinery/vending/snack, +/turf/open/floor/plasteel/dark, +/area/space) +"ct" = ( +/obj/item/clothing/suit/hooded/wintercoat/eva, +/turf/open/floor/plasteel, +/area/space) +"cu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple/half{ + dir = 1 + }, +/turf/open/floor/plasteel/white/side{ + dir = 9 + }, +/area/space) +"cz" = ( +/obj/structure/chair/sofa/bench/left{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"cB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"cC" = ( +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"cE" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"cF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/openspace, +/area/space) +"cI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"cK" = ( +/obj/structure/table/glass, +/obj/item/folder/white{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/folder/white{ + pixel_y = -1; + layer = 3.01 + }, +/obj/item/pen/blue{ + layer = 3.02; + pixel_y = 6; + pixel_x = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"cL" = ( +/obj/machinery/porta_turret/armory, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/monofloor, +/area/space) +"cM" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"cO" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/space) +"cP" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood/parquet, +/area/service/library) +"cR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"cU" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"cV" = ( +/obj/structure/sign/directions/command{ + dir = 8 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 6 + }, +/turf/closed/wall/r_wall, +/area/space) +"cW" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/structure/curtain/bounty, +/turf/open/floor/carpet, +/area/service/library) +"cX" = ( +/obj/structure/fireplace, +/turf/open/floor/plasteel/dark, +/area/space) +"cY" = ( +/obj/structure/chair/sofa{ + dir = 8; + pixel_x = 5 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"cZ" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"da" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"db" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/commons/dorms) +"dd" = ( +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plating, +/area/space) +"de" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"df" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"dg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"dh" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/space) +"di" = ( +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"dj" = ( +/obj/effect/turf_decal/tile/yellow/half, +/turf/open/floor/plasteel/dark/side, +/area/space) +"dk" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/structure/table/reinforced, +/obj/item/stack/sheet/plasteel/x10, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = -4; + layer = 3.01 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"dl" = ( +/obj/structure/flora/junglebush/large{ + pixel_x = 0 + }, +/turf/open/floor/grass, +/area/space) +"dm" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/donk, +/area/commons/dorms/four) +"dn" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/flora/junglebush/large{ + pixel_y = -4 + }, +/turf/open/floor/plating/grass, +/area/space) +"do" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/cabin/three) +"dq" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"ds" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/holy, +/turf/open/floor/plating, +/area/space) +"dt" = ( +/turf/open/floor/plasteel, +/area/space) +"du" = ( +/obj/structure/grille, +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/shuttle, +/turf/open/floor/plating, +/area/space) +"dv" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"dw" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 1"; + name = "Камера 1" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"dx" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/space) +"dz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"dB" = ( +/obj/machinery/computer/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"dC" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers{ + pixel_x = 2 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"dD" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"dF" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -16 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"dH" = ( +/obj/structure/bed, +/obj/item/bedsheet, +/turf/open/floor/resin, +/area/space) +"dJ" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"dL" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"dN" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"dQ" = ( +/obj/machinery/computer/holodeck, +/turf/open/floor/plasteel, +/area/space) +"dR" = ( +/turf/closed/wall/r_wall/syndicate, +/area/space) +"dT" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"dU" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"dV" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel, +/area/commons/locker) +"dW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics) +"dY" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"dZ" = ( +/obj/structure/lattice/catwalk, +/turf/open/openspace, +/area/space) +"ea" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"ee" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/easel, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"ef" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"eg" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical/cmo, +/turf/open/floor/plasteel, +/area/space) +"ei" = ( +/obj/machinery/shower/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"ek" = ( +/turf/open/floor/plasteel/dark, +/area/space) +"el" = ( +/obj/item/clothing/suit/jacket/puffer, +/turf/open/floor/plasteel, +/area/space) +"em" = ( +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/wood, +/area/space) +"en" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/space) +"eo" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"er" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + dir = 4; + id = "barmanpriv"; + name = "bar shutters" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/light, +/area/service/bar) +"es" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/commons/cryopods) +"et" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"eu" = ( +/obj/effect/overlay/palmtree_l{ + pixel_x = -11 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"ew" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"ex" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/food/pie/cream, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 8 + }, +/turf/open/floor/light, +/area/service/kitchen) +"ey" = ( +/obj/structure/railing/right{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"eA" = ( +/turf/open/indestructible/pool, +/area/commons/locker) +"eC" = ( +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel, +/area/space) +"eD" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"eE" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"eF" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"eG" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"eH" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"eI" = ( +/obj/structure/chair/sofa{ + dir = 4; + pixel_x = -5 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"eJ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/space) +"eL" = ( +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"eM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"eN" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"eQ" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/four) +"eR" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical/paramedic, +/turf/open/floor/plasteel, +/area/space) +"eS" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"eT" = ( +/turf/open/floor/carpet, +/area/service/bar) +"eU" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/commons/locker) +"eX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/commons/dorms/five) +"eZ" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"fb" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"fc" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"fe" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plating/snowed, +/area/space) +"fg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"fh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/disposal/bin{ + pixel_x = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"fj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"fm" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"fn" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/chair/wood{ + dir = 4; + layer = 2.8 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"fo" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"fp" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/space) +"fs" = ( +/turf/closed/wall, +/area/service/kitchen/coldroom) +"fu" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft 1"; + dir = 1; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"fw" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"fx" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"fy" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/space) +"fz" = ( +/obj/machinery/vending/wallmed/directional/south, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"fB" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"fD" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"fE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"fF" = ( +/turf/closed/wall/r_wall, +/area/service/kitchen) +"fG" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"fH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"fJ" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"fK" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = -13; + pixel_x = -15 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"fL" = ( +/obj/structure/holosign/barrier/medical, +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plasteel/white, +/area/space) +"fN" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"fO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line"; + dir = 6 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9" + }, +/turf/open/floor/plating, +/area/space) +"fP" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_y = 7; + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"fQ" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/space) +"fR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"fT" = ( +/turf/closed/wall, +/area/service/hydroponics) +"fV" = ( +/turf/open/floor/plating/grass, +/area/service/chapel/main) +"fW" = ( +/obj/machinery/button/door{ + id = "brig_isolation_2"; + name = "Изоляция камеры 2"; + pixel_x = -7; + pixel_y = -26 + }, +/obj/machinery/button/door{ + id = "brig_isolation_1"; + name = "Изоляция камеры 1"; + pixel_x = 7; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"fY" = ( +/obj/structure/railing/left{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"fZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"gc" = ( +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria{ + dir = 0 + }, +/area/service/kitchen) +"gd" = ( +/obj/machinery/vending/wardrobe/bar_wardrobe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/service/bar) +"ge" = ( +/obj/machinery/modular_computer/console/preset/id, +/turf/open/floor/plasteel/dark, +/area/space) +"gf" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 3"; + name = "Камера 3" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"gi" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/two) +"gk" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"gl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"gm" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"go" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/space) +"gq" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"gr" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"gs" = ( +/obj/structure/flora/ausbushes/fernybush{ + pixel_y = -10; + pixel_x = -6 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"gt" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"gu" = ( +/obj/structure/fluff/beach_umbrella/security{ + pixel_x = -21 + }, +/turf/open/floor/carpet/red, +/area/commons/locker) +"gv" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"gw" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/space) +"gx" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"gz" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet/donk, +/area/commons/dorms/four) +"gA" = ( +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/space) +"gD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"gE" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 10 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel, +/area/space) +"gF" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"gG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"gJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plasteel/dark, +/area/space) +"gN" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/black, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"gO" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/plasteel/dark, +/area/space) +"gQ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"gR" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"gT" = ( +/obj/structure/stairs/north, +/turf/open/floor/plasteel, +/area/space) +"gU" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"gV" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"gX" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"gZ" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"hc" = ( +/obj/structure/stairs/east, +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/space) +"hd" = ( +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"hg" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"hh" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"hi" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/stasis, +/obj/machinery/defibrillator_mount/loaded/directional/north, +/turf/open/floor/plasteel/white, +/area/space) +"hk" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom3"; + name = "Unit 3" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"hl" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"hm" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 8 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/space) +"hn" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/shuttle{ + name = "Arrival Shuttle Airlock" + }, +/turf/open/floor/mineral/titanium, +/area/space) +"hr" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"hs" = ( +/obj/structure/closet/secure_closet/bar, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"ht" = ( +/obj/structure/railing, +/obj/structure/chair/sofa{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/space) +"hu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/turf/open/floor/plating, +/area/space) +"hv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/space) +"hw" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"hx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"hy" = ( +/obj/machinery/computer/slot_machine{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"hz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/library/private) +"hA" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"hB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/openspace, +/area/space) +"hD" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"hE" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"hF" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/sign/departments/security, +/turf/open/floor/plating, +/area/space) +"hG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"hI" = ( +/obj/structure/chair/office{ + dir = 1; + name = "Command Station" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"hK" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel, +/area/commons/dorms) +"hL" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/space) +"hM" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"hN" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/glass/reinforced, +/area/space) +"hO" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/turf/open/floor/plating, +/area/space) +"hP" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"hQ" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/mineral/titanium, +/area/space) +"hR" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/cabin/four) +"hT" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"hX" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/two) +"hY" = ( +/obj/machinery/door/airlock/public/glass{ + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"hZ" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"ib" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers{ + pixel_y = -12; + pixel_x = 9 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"ic" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end, +/turf/open/floor/glass/reinforced, +/area/space) +"id" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"ie" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"if" = ( +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"ig" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/service/library/private) +"ih" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/space) +"ii" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating, +/area/space) +"il" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"im" = ( +/turf/open/floor/glass/reinforced, +/area/commons/dorms) +"in" = ( +/turf/open/openspace, +/area/service/hydroponics/upper) +"ir" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/space) +"is" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + layer = 3.01 + }, +/obj/item/reagent_containers/food/drinks/beer{ + pixel_y = 10; + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"it" = ( +/obj/structure/table, +/obj/machinery/plantgenes{ + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"iv" = ( +/obj/machinery/computer/prisoner/management, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"iw" = ( +/turf/open/floor/wood, +/area/service/library) +"ix" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/obj/structure/flora/junglebush{ + pixel_y = -2 + }, +/turf/open/floor/plating/grass, +/area/space) +"iz" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"iC" = ( +/turf/open/openspace, +/area/space) +"iE" = ( +/obj/item/clothing/suit/hooded/wintercoat/miner, +/turf/open/floor/plasteel, +/area/space) +"iG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"iH" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/space) +"iI" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"iJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"iM" = ( +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"iP" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 1 + }, +/obj/machinery/camera/autoname, +/turf/open/floor/plasteel/white, +/area/space) +"iQ" = ( +/obj/structure/chair/sofa/left{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness/locker_room) +"iU" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/space) +"iZ" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"ja" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"jc" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"jd" = ( +/turf/closed/wall, +/area/space) +"jg" = ( +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/commons/locker) +"jh" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/space) +"ji" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jk" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"jm" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/space) +"jn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plating/grass, +/area/service/chapel/main) +"jo" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"jp" = ( +/obj/structure/transit_tube/curved/flipped, +/turf/open/openspace, +/area/space) +"jq" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom4"; + name = "Unit 4" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"js" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jt" = ( +/obj/structure/flora/tree/pine{ + pixel_x = -8 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"ju" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"jv" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom3"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"jw" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"jy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"jz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/locker) +"jA" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"jB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line"; + dir = 9 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"jD" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/three) +"jF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"jG" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_4" + }, +/turf/open/floor/plating, +/area/space) +"jI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"jK" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"jL" = ( +/obj/structure/chair/wood/wings{ + dir = 8 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"jM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"jN" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"jR" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/commons/locker) +"jS" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/grass, +/area/space) +"jU" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"jW" = ( +/obj/structure/table/glass, +/obj/item/watertank{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"jX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/pointybush{ + pixel_y = 8; + pixel_x = 3 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"jY" = ( +/obj/structure/rack, +/obj/item/reagent_containers/food/drinks/waterbottle{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/clothing/gloves/boxing/green{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"jZ" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms/cabin/one) +"ka" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"kb" = ( +/turf/open/indestructible/pool/end, +/area/commons/locker) +"kc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/junglebush/b{ + pixel_x = 3 + }, +/turf/open/floor/plating/grass, +/area/space) +"ke" = ( +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"kg" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/commons/dorms) +"kh" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/space) +"ki" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"kj" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"kk" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"km" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/service/chapel/main) +"kn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"kp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/space) +"kq" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/one) +"kr" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"ks" = ( +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"ku" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/space) +"kv" = ( +/obj/structure/statue/gold/rd, +/turf/open/floor/plasteel, +/area/space) +"kw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"kx" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/space) +"kA" = ( +/turf/open/floor/plasteel, +/area/commons/locker) +"kC" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"kE" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/space) +"kF" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/open/floor/plating/snowed/dug, +/area/space) +"kG" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"kH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"kI" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"kJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"kL" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"kM" = ( +/obj/structure/railing/left, +/turf/open/floor/plasteel/stairs/left{ + dir = 4 + }, +/area/commons/locker) +"kN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/plating/grass, +/area/commons/locker) +"kO" = ( +/obj/machinery/button/door{ + id = "brig_isolation_3"; + name = "Изоляция камеры 3"; + pixel_x = 7; + pixel_y = -26 + }, +/obj/machinery/button/door{ + id = "brig_isolation_4"; + name = "Изоляция камеры 4"; + pixel_x = -7; + pixel_y = -26 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"kP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/turf/open/floor/plating, +/area/space) +"kS" = ( +/obj/structure/sign/departments/custodian/directional/north, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"kT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"kU" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/locker_room) +"kV" = ( +/obj/machinery/light, +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"kW" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"kX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"kY" = ( +/obj/structure/bookcase/random/religion, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"la" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"lb" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"lc" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"lf" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/cafeteria) +"lg" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"li" = ( +/obj/item/clothing/suit/hooded/wintercoat/engineering/atmos, +/turf/open/floor/plasteel, +/area/space) +"lk" = ( +/obj/machinery/hydroponics/soil, +/turf/open/floor/plating/grass, +/area/space) +"lm" = ( +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"ln" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"lp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/vending/boozeomat, +/turf/open/floor/wood, +/area/service/bar) +"lq" = ( +/obj/structure/holosign/barrier/engineering, +/turf/open/floor/plasteel, +/area/space) +"lt" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"lu" = ( +/obj/machinery/light/floor/directional/east, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"lw" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/space) +"lx" = ( +/obj/structure/table/glass, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 9 + }, +/obj/item/healthanalyzer{ + pixel_y = -2; + pixel_x = -3 + }, +/turf/open/floor/plasteel/white, +/area/space) +"ly" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/library/upper) +"lz" = ( +/obj/structure/flora/tree/jungle/small{ + pixel_x = -16 + }, +/obj/effect/turf_decal/siding/wood/end{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers{ + pixel_x = 2 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"lA" = ( +/obj/structure/closet/wardrobe/green, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"lC" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"lF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/ladder, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"lG" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"lH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/space) +"lJ" = ( +/obj/item/bedsheet/blue, +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/space) +"lK" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/glass, +/area/service/library/upper) +"lL" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"lM" = ( +/obj/machinery/button/door{ + id = "Cab1"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 25 + }, +/turf/open/floor/carpet/red, +/area/commons/dorms/cabin/one) +"lN" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall, +/area/service/library) +"lU" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"lV" = ( +/obj/structure/table/wood/fancy/red, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"lX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"ma" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"mc" = ( +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 25 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/cable, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"md" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"mi" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 14 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"mj" = ( +/turf/open/openspace, +/area/service/hydroponics) +"mk" = ( +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"mm" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"mn" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/item/storage/cans/sixsoda, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"mq" = ( +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"ms" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"mt" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"mu" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets/donkpockethonk{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"mv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"mw" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/space) +"mx" = ( +/obj/structure/flora/junglebush/large{ + pixel_x = -27; + pixel_y = -1 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"my" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"mA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"mC" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mF" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 2"; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"mG" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood/parquet, +/area/service/library) +"mI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"mJ" = ( +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/space) +"mK" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/cafeteria) +"mL" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"mP" = ( +/obj/machinery/photocopier, +/turf/open/floor/wood/parquet, +/area/service/library) +"mQ" = ( +/obj/machinery/vending/snack/green, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"mR" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"mT" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"mU" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"mW" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"mX" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/structure/flora/ausbushes/fernybush{ + pixel_x = -9 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/grass, +/area/commons/locker) +"mZ" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"na" = ( +/obj/structure/table/wood, +/obj/item/toy/crayon/spraycan{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/toy/crayon/spraycan{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/toy/crayon/spraycan{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"ne" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"nf" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/space) +"ng" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical/viro, +/turf/open/floor/plasteel, +/area/space) +"nj" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Dorm 4" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/dorms/four) +"nm" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"nn" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"no" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/chair/wood{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"np" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/commons/fitness/locker_room) +"nr" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"ns" = ( +/turf/open/floor/plasteel/dark/corner, +/area/commons/locker) +"ny" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"nz" = ( +/obj/effect/turf_decal/tile/blue/half{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/space) +"nC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"nE" = ( +/obj/structure/chair/comfy/shuttle, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"nG" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"nH" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"nK" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"nL" = ( +/turf/open/floor/goonplaque{ + desc = "In loving memory of Giacommand; the original creator of ministation. Rest in peace you magnificent spaceman." + }, +/area/space) +"nM" = ( +/obj/machinery/computer/communications, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"nN" = ( +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/turf/open/floor/plasteel, +/area/space) +"nO" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/library) +"nP" = ( +/turf/closed/wall, +/area/commons/fitness/locker_room) +"nS" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"nT" = ( +/obj/machinery/computer/security, +/turf/open/floor/plasteel/dark, +/area/space) +"nV" = ( +/obj/structure/girder, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating, +/area/space) +"nX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"nY" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"nZ" = ( +/turf/closed/wall, +/area/service/library) +"oe" = ( +/obj/structure/railing/corner{ + dir = 4; + pixel_x = 3 + }, +/turf/open/openspace, +/area/space) +"of" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/service/library/private) +"og" = ( +/turf/closed/wall, +/area/service/kitchen) +"oh" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"oi" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"ok" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"ol" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"om" = ( +/turf/closed/wall, +/area/commons/dorms/three) +"on" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"oo" = ( +/obj/item/clothing/suit/jacket/puffer/vest, +/turf/open/floor/plasteel, +/area/space) +"op" = ( +/obj/structure/flora/grass/green, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"oq" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"or" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"os" = ( +/obj/structure/cable, +/turf/open/floor/resin, +/area/space) +"ot" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"ou" = ( +/turf/open/floor/wood, +/area/service/library/private) +"ov" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"ow" = ( +/obj/effect/spawner/random/structure/crate, +/turf/open/floor/plasteel, +/area/space) +"oz" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9" + }, +/turf/open/floor/plating, +/area/space) +"oA" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 3 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"oC" = ( +/obj/machinery/vending/security, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"oE" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"oF" = ( +/obj/structure/railing, +/turf/open/floor/plasteel, +/area/space) +"oG" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"oH" = ( +/obj/structure/flora/junglebush{ + pixel_y = 12 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"oI" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"oJ" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/space) +"oK" = ( +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"oL" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"oM" = ( +/obj/machinery/door/airlock{ + id_tag = "toiletbolt_lockerroom1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"oN" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/turf/open/floor/wood/tile, +/area/service/library/private) +"oP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/space) +"oQ" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"oR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"oS" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"oV" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"oW" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"oX" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer/fullupgrade{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"oY" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"oZ" = ( +/obj/machinery/button/door{ + id = "Cab3"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 25 + }, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/cabin/three) +"pb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"pc" = ( +/obj/machinery/door/window/brigdoor/security/holding{ + id = "Holding Cell"; + name = "Holding Cell"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"pe" = ( +/obj/structure/flora/junglebush{ + pixel_y = 1; + pixel_x = -1 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"pg" = ( +/obj/structure/chair/plastic{ + dir = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"ph" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"pk" = ( +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"pl" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood, +/area/service/library/upper) +"pn" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"pr" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark/corner, +/area/service/hydroponics) +"ps" = ( +/obj/structure/chair/stool/bar{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/service/cafeteria) +"pt" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"pu" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space) +"pv" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"pw" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/space) +"px" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"pz" = ( +/turf/open/floor/plasteel, +/area/commons/dorms) +"pA" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"pD" = ( +/obj/effect/landmark/secequipment, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"pE" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/kitchen) +"pF" = ( +/obj/effect/turf_decal/pool{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"pG" = ( +/obj/effect/turf_decal/siding/green/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/green/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"pJ" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"pM" = ( +/obj/structure/girder, +/turf/closed/wall, +/area/space) +"pN" = ( +/obj/structure/table/wood, +/obj/item/storage/pill_bottle/dice, +/turf/open/floor/carpet, +/area/commons/dorms) +"pO" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"pP" = ( +/obj/structure/holosign/barrier/medical, +/turf/open/floor/plasteel/white, +/area/space) +"pQ" = ( +/obj/structure/sign/departments/restroom/directional/east, +/turf/open/floor/plasteel, +/area/commons/locker) +"pT" = ( +/obj/structure/chair/sofa/corp{ + color = "#DE3A3A"; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"pU" = ( +/obj/machinery/restaurant_portal/restaurant, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"pW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/space) +"pY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/space) +"pZ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"qb" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/plating/grass, +/area/commons/locker) +"qc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"qd" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/turf/open/floor/plasteel, +/area/space) +"qe" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/turf/open/floor/carpet, +/area/commons/dorms) +"qf" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"qg" = ( +/obj/effect/turf_decal/siding/wood/corner, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/cafeteria) +"qh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"qk" = ( +/obj/machinery/door/window/brigdoor/security/holding/westright, +/turf/open/floor/plasteel/dark, +/area/space) +"ql" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/trimline/yellow, +/obj/machinery/field/generator, +/turf/open/floor/plating, +/area/space) +"qp" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"qr" = ( +/obj/structure/fluff/hedge, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qu" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/camera/autoname{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/space) +"qw" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/space) +"qx" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qy" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"qB" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/disposal/bin{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"qC" = ( +/obj/structure/flora/tree/pine, +/turf/open/space/basic, +/area/space) +"qD" = ( +/obj/structure/flora/ausbushes/grassybush{ + pixel_y = -3; + pixel_x = -13 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"qF" = ( +/obj/machinery/light/directional/east, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"qG" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security{ + name = "Law Office"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/space) +"qI" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"qJ" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed, +/area/space) +"qK" = ( +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"qL" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"qM" = ( +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qN" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/cargo_tech, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"qO" = ( +/obj/structure/transit_tube/crossing, +/turf/open/floor/glass/reinforced, +/area/space) +"qQ" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/space) +"qR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"qS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"qV" = ( +/turf/open/openspace, +/area/commons/dorms) +"qW" = ( +/obj/structure/chair/wood{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"qY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/snowed, +/area/space) +"ra" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 7 + }, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"rc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/cryopods) +"rd" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"re" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/plasteel, +/area/service/library/upper) +"rf" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"rh" = ( +/obj/machinery/airalarm/directional/west, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"rj" = ( +/obj/effect/turf_decal/trimline/brown/filled/line, +/turf/open/floor/plasteel, +/area/space) +"rk" = ( +/obj/structure/sink/directional/south, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"rl" = ( +/turf/open/floor/plating/grass, +/area/space) +"rm" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical, +/turf/open/floor/plasteel, +/area/space) +"ro" = ( +/obj/structure/stairs/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"rr" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/library/upper) +"ru" = ( +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"rv" = ( +/turf/open/floor/carpet/blue, +/area/service/cafeteria) +"rx" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/service/library/upper) +"ry" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"rz" = ( +/obj/effect/turf_decal/pool{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"rA" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/four) +"rB" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"rF" = ( +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"rG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/cafeteria) +"rI" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/openspace, +/area/space) +"rK" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"rM" = ( +/obj/structure/cable, +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/cabin/three) +"rN" = ( +/turf/closed/wall/r_wall, +/area/service/chapel/main) +"rP" = ( +/obj/structure/chair/office{ + dir = 1; + name = "Command Station" + }, +/turf/open/floor/carpet/red, +/area/space) +"rR" = ( +/obj/effect/turf_decal/siding/wood/end, +/obj/structure/flora/junglebush/large{ + pixel_y = -4 + }, +/turf/open/floor/plating/grass, +/area/space) +"rT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"rX" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/dark, +/area/space) +"rY" = ( +/obj/effect/turf_decal/pool, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"sa" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"sb" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"sc" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"sd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner, +/turf/open/openspace, +/area/space) +"se" = ( +/obj/structure/mopbucket, +/obj/item/mop, +/turf/open/floor/plating, +/area/space) +"sf" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"sg" = ( +/obj/structure/flora/tree/pine, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"si" = ( +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"sj" = ( +/obj/machinery/restaurant_portal/bar, +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"sl" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"sn" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"so" = ( +/turf/open/floor/plasteel/monofloor/white, +/area/space) +"sq" = ( +/turf/closed/wall/ice, +/area/space) +"sr" = ( +/turf/open/floor/plasteel/dark/side, +/area/commons/dorms) +"st" = ( +/obj/effect/spawner/structure/window, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/service/library) +"su" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/cafeteria) +"sw" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"sy" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/service/library/upper) +"sz" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"sB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/commons/dorms) +"sC" = ( +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"sD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/openspace, +/area/service/hydroponics/upper) +"sG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/science, +/turf/open/floor/plating, +/area/space) +"sJ" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"sK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"sM" = ( +/obj/effect/turf_decal/weather/sand, +/turf/open/floor/plasteel, +/area/commons/locker) +"sN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"sO" = ( +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = -4; + pixel_x = -10 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"sQ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/corner, +/area/space) +"sR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating/grass, +/area/service/chapel/main) +"sU" = ( +/obj/structure/sign/painting/library_private, +/turf/closed/wall/r_wall, +/area/service/library/upper) +"sV" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"sW" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"sZ" = ( +/obj/structure/chair/stool{ + dir = 4; + pixel_x = -3 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"ta" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"tb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"td" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"tf" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab1"; + name = "Cabin 1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms/cabin/one) +"tg" = ( +/turf/closed/wall, +/area/service/bar) +"th" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/cabin/one) +"tj" = ( +/obj/structure/bookcase, +/turf/open/floor/carpet, +/area/service/library/private) +"tk" = ( +/turf/closed/wall/r_wall, +/area/commons/toilet/locker) +"tn" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 8 + }, +/turf/open/floor/grass, +/area/space) +"to" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"tp" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/mineral/titanium, +/area/space) +"tr" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel, +/area/service/janitor) +"ts" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"tt" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel, +/area/space) +"tu" = ( +/turf/open/floor/plating/snowed, +/area/space) +"tx" = ( +/obj/structure/flora/ausbushes/fullgrass{ + pixel_x = -13 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"ty" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"tB" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"tC" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"tD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/space) +"tF" = ( +/turf/open/floor/engine/hull{ + initial_gas_mix = "TEMP=2.7" + }, +/area/space) +"tH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"tJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/space) +"tL" = ( +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating, +/area/space) +"tO" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/space) +"tP" = ( +/obj/structure/fluff/beach_umbrella/cap{ + pixel_x = -19 + }, +/turf/open/floor/carpet/blue, +/area/commons/locker) +"tQ" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/open/floor/plasteel, +/area/space) +"tR" = ( +/turf/open/floor/carpet, +/area/service/chapel/main) +"tT" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/floor/directional/north{ + pixel_y = -3 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"tU" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/grass, +/area/space) +"tV" = ( +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/floor/glass/reinforced, +/area/space) +"tW" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"tY" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"tZ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/pointybush{ + pixel_y = -6; + pixel_x = -4 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"ua" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/machinery/cell_charger{ + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"ub" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -31; + pixel_x = -9 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"ud" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/space) +"uf" = ( +/obj/structure/table/wood, +/obj/machinery/fax{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"ug" = ( +/obj/structure/ladder, +/turf/open/floor/plating, +/area/space) +"uh" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"uj" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/grass, +/area/space) +"uk" = ( +/obj/structure/rack, +/obj/item/vending_refill/hydroseeds, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/dinnerware, +/obj/item/vending_refill/wardrobe/hydro_wardrobe, +/obj/item/vending_refill/wardrobe/bar_wardrobe, +/obj/item/vending_refill/wardrobe/chef_wardrobe, +/obj/item/vending_refill/wardrobe/jani_wardrobe, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"ul" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/security{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"uo" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"up" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/four) +"uq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"ur" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Шкафчик камеры 3" + }, +/turf/open/floor/resin, +/area/space) +"ut" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/commons/locker) +"uw" = ( +/turf/closed/wall, +/area/commons/dorms/one) +"ux" = ( +/obj/item/clothing/suit/jacket/oversized, +/turf/open/floor/plasteel, +/area/space) +"uy" = ( +/obj/effect/overlay/palmtree_r{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"uA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/space) +"uB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"uC" = ( +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel/monofloor, +/area/space) +"uD" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/space) +"uE" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"uF" = ( +/obj/structure/closet/crate/freezer{ + name = "Cooler" + }, +/obj/item/reagent_containers/food/drinks/ice, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "Beer advertised to be the best in space."; + name = "Masterbrand Beer" + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "Beer advertised to be the best in space."; + name = "Masterbrand Beer" + }, +/obj/item/reagent_containers/food/drinks/beer{ + desc = "Beer advertised to be the best in space."; + name = "Masterbrand Beer" + }, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/item/reagent_containers/food/drinks/beer/light, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"uI" = ( +/obj/item/phone{ + desc = "Supposedly a direct line to Nanotrasen Central Command. It's not even plugged in."; + pixel_x = 8; + pixel_y = 3 + }, +/obj/structure/table/wood, +/obj/item/computer_disk/security{ + pixel_x = 7; + pixel_y = -11 + }, +/obj/item/computer_disk/security{ + pixel_y = -7; + layer = 3.01; + pixel_x = 5 + }, +/turf/open/floor/carpet/red, +/area/space) +"uJ" = ( +/turf/open/floor/wood, +/area/service/cafeteria) +"uL" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"uN" = ( +/obj/structure/closet/masks, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"uO" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"uP" = ( +/obj/structure/cable, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"uQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/wood, +/area/service/library/private) +"uR" = ( +/obj/structure/sign/departments/botany/directional/west, +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark, +/area/space) +"uS" = ( +/obj/structure/flora/ausbushes{ + pixel_x = -7; + pixel_y = 12 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"uU" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "lockerspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/space) +"uV" = ( +/turf/open/floor/plating/snowed/temperatre, +/area/space) +"uW" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"uX" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/service/hydroponics) +"vb" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"vd" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"ve" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"vf" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"vg" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"vj" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"vk" = ( +/obj/machinery/light, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/yellow, +/area/space) +"vm" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/wood, +/area/space) +"vp" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"vr" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vs" = ( +/turf/closed/wall/r_wall, +/area/service/hydroponics) +"vt" = ( +/obj/structure/flora/bush{ + pixel_y = -11; + pixel_x = 12 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass, +/area/commons/locker) +"vu" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"vv" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Шкафчик камеры 4" + }, +/turf/open/floor/resin, +/area/space) +"vw" = ( +/obj/structure/closet/wardrobe/yellow, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"vx" = ( +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel/stairs/right{ + dir = 4 + }, +/area/commons/locker) +"vy" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"vz" = ( +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"vA" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"vB" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm5"; + name = "Dorm 5" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/dorms/five) +"vD" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Dorm 2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/dorms/two) +"vE" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"vJ" = ( +/obj/structure/stairs/south, +/turf/open/floor/plasteel, +/area/space) +"vK" = ( +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"vL" = ( +/obj/structure/stairs/north, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"vM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/space) +"vO" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/service/abandoned_gambling_den) +"vR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"vS" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/plasteel/dark, +/area/space) +"vT" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 9; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core{ + pixel_y = -9 + }, +/turf/open/floor/plasteel, +/area/space) +"vU" = ( +/obj/effect/turf_decal/siding/wood/end{ + dir = 1 + }, +/turf/open/floor/plating/grass, +/area/space) +"vV" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"vX" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"vY" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "SapMaster XP" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"wc" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/space) +"wd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/glass, +/area/service/library/upper) +"wg" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"wh" = ( +/obj/effect/turf_decal/tile/brown/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"wi" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"wj" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"wk" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"wl" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"wm" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"wn" = ( +/obj/machinery/chem_dispenser/botany, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"wo" = ( +/obj/structure/sign/painting/library{ + pixel_x = -32 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"wp" = ( +/obj/effect/landmark/secequipment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"wq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/machinery/door/poddoor/preopen{ + id = "hosprivacy"; + name = "privacy shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/space) +"wr" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"ws" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"wt" = ( +/turf/closed/wall/r_wall, +/area/space) +"wv" = ( +/obj/machinery/button/door{ + id = "Cab4"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = -25 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"ww" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"wx" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"wy" = ( +/obj/structure/table, +/obj/item/megaphone, +/turf/open/floor/plasteel/dark, +/area/space) +"wB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side, +/area/space) +"wE" = ( +/turf/closed/wall/r_wall, +/area/commons/cryopods) +"wF" = ( +/obj/structure/railing, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/space) +"wG" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/cabin/three) +"wH" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"wI" = ( +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/space) +"wK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"wN" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/space) +"wO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/engineering, +/turf/open/floor/plating, +/area/space) +"wP" = ( +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"wR" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"wS" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"wU" = ( +/obj/structure/rack, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/cigarette, +/obj/item/vending_refill/sovietsoda, +/obj/item/vending_refill/boozeomat, +/obj/item/vending_refill/boozeomat, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"wV" = ( +/obj/item/clothing/suit/hooded/wintercoat/janitor, +/turf/open/floor/plasteel, +/area/space) +"wZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"xa" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/wood, +/area/service/cafeteria) +"xb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"xd" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"xg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/turf/open/floor/plating, +/area/space) +"xi" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/table/wood, +/obj/item/stack/arcadeticket/thirty{ + pixel_y = 4 + }, +/obj/item/stack/arcadeticket/thirty, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"xj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/rospilovo, +/turf/open/floor/grass, +/area/service/hydroponics) +"xk" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/wood, +/area/service/library/private) +"xo" = ( +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"xp" = ( +/obj/structure/chair/sofa/corp/right{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"xq" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"xt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/openspace, +/area/service/hydroponics/upper) +"xw" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"xx" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"xy" = ( +/obj/effect/overlay/palmtree_r{ + pixel_x = 9; + pixel_y = -12 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"xz" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/plating/grass, +/area/commons/locker) +"xA" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab4"; + name = "Cabin 4" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms/cabin/four) +"xB" = ( +/obj/effect/turf_decal/stripes/end, +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plating, +/area/space) +"xD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"xE" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/junglebush{ + pixel_x = 4; + pixel_y = -5; + layer = 2.91 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"xG" = ( +/obj/structure/table/wood, +/turf/open/floor/wood/parquet, +/area/service/library) +"xI" = ( +/turf/open/floor/engine/hull/reinforced, +/area/space) +"xJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/machinery/turntable, +/turf/open/floor/wood, +/area/service/cafeteria) +"xN" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/space) +"xP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/chapel/main) +"xT" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"xV" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xW" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"xY" = ( +/obj/machinery/vending/games, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"xZ" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"ya" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"yb" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"yc" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"yd" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/right{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/space) +"ye" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"yg" = ( +/obj/effect/overlay/palmtree_l, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"yi" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"yj" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/space) +"yl" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"yn" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"yp" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/space) +"yq" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"yr" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"ys" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"yt" = ( +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = -3 + }, +/obj/structure/sign/directions/medical{ + pixel_y = -10; + dir = 1 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 11 + }, +/turf/closed/wall, +/area/space) +"yu" = ( +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"yv" = ( +/obj/item/clothing/suit/hooded/wintercoat/science, +/turf/open/floor/plasteel, +/area/space) +"yx" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/space) +"yA" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"yB" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/item/storage/cans/sixbeer, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"yF" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"yJ" = ( +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/space) +"yK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/cargo, +/turf/open/floor/plating, +/area/space) +"yL" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/commons/dorms/two) +"yM" = ( +/obj/structure/table/wood, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"yN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"yO" = ( +/obj/structure/cable, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"yP" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"yQ" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -3 + }, +/turf/closed/wall/r_wall, +/area/space) +"yR" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/dorms) +"yS" = ( +/obj/structure/stairs/north, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"yT" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/service) +"yU" = ( +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dorm Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_y = 25 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/turf/open/floor/carpet, +/area/commons/dorms/two) +"yV" = ( +/turf/open/floor/plasteel/white/side{ + dir = 1 + }, +/area/space) +"yW" = ( +/obj/structure/closet/secure_closet/detective, +/turf/open/floor/wood, +/area/space) +"yX" = ( +/obj/structure/railing{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"yZ" = ( +/obj/structure/stairs/south, +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"za" = ( +/obj/structure/railing/left, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"zb" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/fluff/beach_umbrella/engine, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"zc" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms) +"ze" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"zg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_1" + }, +/turf/open/floor/plating, +/area/space) +"zi" = ( +/obj/machinery/light/floor/directional/west, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"zj" = ( +/obj/structure/sign/directions/command{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 6 + }, +/turf/closed/wall/r_wall, +/area/space) +"zk" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"zl" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"zm" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/openspace, +/area/space) +"zo" = ( +/obj/item/instrument/guitar, +/turf/open/floor/carpet/blue, +/area/commons/locker) +"zp" = ( +/obj/structure/bonfire/prelit, +/turf/open/floor/plating/snowed, +/area/space) +"zq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/junglebush/large{ + pixel_x = 0; + pixel_y = -6 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"zr" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"zs" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x4, +/turf/open/floor/plating, +/area/space) +"zt" = ( +/obj/structure/bookcase/random, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/wood, +/area/service/bar) +"zv" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"zw" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"zy" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/public/glass{ + name = "Лазарет"; + security_level = 6; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/space) +"zz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"zA" = ( +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/space) +"zB" = ( +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/dark, +/area/space) +"zC" = ( +/obj/structure/stairs/east, +/obj/structure/railing/right, +/turf/open/floor/plasteel, +/area/space) +"zD" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"zE" = ( +/obj/structure/rack, +/obj/item/vending_refill/clothing, +/obj/item/vending_refill/robotics, +/obj/item/vending_refill/modularpc, +/obj/item/vending_refill/medical, +/obj/item/vending_refill/engivend, +/obj/item/vending_refill/engineering, +/obj/item/vending_refill/drugs, +/obj/item/vending_refill/games, +/turf/open/floor/plasteel/dark/side, +/area/hallway/secondary/service) +"zH" = ( +/turf/open/floor/plasteel/dark/corner, +/area/space) +"zI" = ( +/obj/structure/chair/sofa/bench, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"zK" = ( +/obj/structure/flora/bush, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"zM" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 10 + }, +/obj/structure/table/glass, +/obj/item/storage/box/masks{ + pixel_x = -7; + pixel_y = 8 + }, +/obj/item/storage/box/gloves{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/plasteel/white, +/area/space) +"zN" = ( +/obj/structure/statue/gold/hos{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"zP" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plasteel, +/area/space) +"zQ" = ( +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"zT" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"zW" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/five) +"zX" = ( +/obj/structure/cable, +/turf/open/floor/carpet/blue, +/area/commons/dorms/cabin/two) +"zZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/siding/thinplating/corner{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/structure/desk_bell{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/machinery/door/window/westright{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Aa" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -23 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Ab" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Ac" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Ad" = ( +/obj/machinery/vending/cigarette{ + pixel_x = 11 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/bar) +"Ae" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/service/hydroponics) +"Af" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/carpet/donk, +/area/commons/dorms/four) +"Ag" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + dir = 1; + name = "blue line" + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/turf/open/floor/plating, +/area/space) +"Ah" = ( +/obj/structure/closet/wardrobe/pink, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"Ai" = ( +/turf/open/floor/carpet/blue, +/area/commons/dorms/cabin/two) +"Aj" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/openspace, +/area/service/hydroponics/upper) +"Ak" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/monofloor, +/area/space) +"An" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Ap" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/rock/jungle{ + pixel_x = -4 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"Ar" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/railing/right{ + dir = 4 + }, +/obj/structure/chair/plastic{ + dir = 8; + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"At" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/library) +"Av" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/miner, +/turf/open/floor/plasteel/dark, +/area/space) +"Aw" = ( +/obj/structure/destructible/cult/tome, +/obj/item/book/codex_gigas, +/turf/open/floor/carpet, +/area/service/library/private) +"Ax" = ( +/obj/structure/sign/poster/official/corporate_perks_vacation, +/turf/closed/wall/mineral/wood/nonmetal, +/area/commons/locker) +"Az" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/service/hydroponics/upper) +"AA" = ( +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/commons/dorms/cabin/one) +"AB" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/commons/locker) +"AC" = ( +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + pixel_y = 7 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"AD" = ( +/obj/effect/landmark/secequipment, +/obj/machinery/button/door{ + id = "lockerspace"; + name = "Блокировка окон"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"AE" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"AF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line"; + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"AJ" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"AK" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"AM" = ( +/turf/open/openspace, +/area/service/library/upper) +"AN" = ( +/turf/open/floor/plating/ice/smooth, +/area/space) +"AO" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel, +/area/space) +"AP" = ( +/obj/structure/statue/gold/hop{ + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"AR" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"AS" = ( +/obj/structure/chair/stool/bar{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"AT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/hydroponics/upper) +"AU" = ( +/turf/open/floor/carpet/donk, +/area/commons/dorms/four) +"AV" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"AW" = ( +/turf/open/floor/plating/asteroid/snow, +/area/space) +"AZ" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Ba" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Bb" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"Bc" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Bd" = ( +/obj/structure/displaycase/trophy, +/turf/open/floor/wood/tile, +/area/service/library) +"Be" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_y = 9; + pixel_x = -10 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"Bf" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"Bg" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/commons/dorms/two) +"Bh" = ( +/obj/effect/turf_decal/siding/wood/end, +/turf/open/floor/plating/grass, +/area/space) +"Bk" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Bl" = ( +/obj/structure/stairs/east, +/turf/open/floor/plasteel, +/area/space) +"Bn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"Bo" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"Bp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/openspace, +/area/space) +"Bs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Bt" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Bu" = ( +/obj/structure/table/glass, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/grenade/chem_grenade/antiweed{ + pixel_y = 4; + pixel_x = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"Bv" = ( +/obj/item/clothing/suit/hooded/wintercoat/science/genetics, +/turf/open/floor/plasteel, +/area/space) +"Bw" = ( +/obj/machinery/door/airlock/material/glass, +/turf/open/floor/plasteel, +/area/space) +"BA" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"BB" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/junglebush/b{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"BC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"BD" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -3 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = 3 + }, +/turf/closed/wall/r_wall, +/area/space) +"BE" = ( +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel, +/area/space) +"BH" = ( +/obj/effect/spawner/structure/window/ice, +/turf/open/floor/plating, +/area/space) +"BJ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel/dark, +/area/space) +"BK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"BN" = ( +/turf/closed/wall, +/area/service/cafeteria) +"BO" = ( +/obj/effect/turf_decal/siding/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"BP" = ( +/obj/structure/flora/ausbushes/pointybush{ + pixel_y = 7; + pixel_x = -9 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"BQ" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"BT" = ( +/obj/structure/closet/secure_closet/security/field_med, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"BV" = ( +/obj/structure/chair/wood/wings, +/turf/open/floor/wood/tile, +/area/service/library) +"BW" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -6 + }, +/turf/open/floor/grass, +/area/service/library) +"BX" = ( +/obj/structure/chair/sofa/right{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"BY" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/space) +"BZ" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"Ce" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"Cg" = ( +/turf/open/floor/plasteel/dark/side, +/area/space) +"Ch" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/space) +"Ci" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"Cj" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/grass, +/area/service/chapel/main) +"Ck" = ( +/turf/closed/wall, +/area/commons/toilet/locker) +"Cm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/space) +"Cn" = ( +/turf/open/floor/mineral/titanium/blue, +/area/space) +"Co" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Cp" = ( +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Cs" = ( +/obj/structure/table, +/obj/item/storage/belt/champion{ + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Ct" = ( +/obj/item/clothing/suit/hooded/wintercoat/captain, +/turf/open/floor/plasteel, +/area/space) +"Cu" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Cv" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Cx" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"CF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"CG" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"CH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"CI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"CK" = ( +/turf/open/floor/grass, +/area/space) +"CN" = ( +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks/beer, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"CP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/service/hydroponics) +"CR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/service/bar) +"CS" = ( +/obj/structure/closet/crate/maint, +/turf/open/floor/plasteel/dark, +/area/space) +"CV" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"CW" = ( +/obj/structure/transit_tube/horizontal, +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"CZ" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"Da" = ( +/turf/open/floor/carpet/red, +/area/commons/locker) +"Dc" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/open/floor/wood, +/area/service/library/private) +"Dd" = ( +/obj/structure/chair/sofa/left{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/commons/fitness/locker_room) +"De" = ( +/obj/structure/railing, +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"Df" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 8; + icon_state = "right"; + layer = 3 + }, +/turf/open/floor/plasteel, +/area/space) +"Dg" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Aft 2"; + dir = 1; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"Dh" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Dj" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/service/hydroponics/upper) +"Dk" = ( +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"Dl" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Dm" = ( +/obj/structure/railing/left, +/turf/open/floor/plasteel, +/area/space) +"Do" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"Dq" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Du" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Dv" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"Dw" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/space) +"Dx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"Dy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"DB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"DC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"DD" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"DE" = ( +/turf/closed/wall/r_wall, +/area/service/abandoned_gambling_den) +"DF" = ( +/turf/open/floor/carpet, +/area/service/library/private) +"DG" = ( +/obj/structure/flora/ausbushes/fullgrass{ + pixel_x = 14; + pixel_y = -7 + }, +/obj/effect/overlay/coconut{ + pixel_y = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"DJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/openspace, +/area/space) +"DK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 8 + }, +/turf/open/floor/light, +/area/service/kitchen) +"DO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/openspace, +/area/service/hydroponics/upper) +"DP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/ladder, +/turf/open/openspace, +/area/space) +"DQ" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"DS" = ( +/obj/machinery/recharge_station, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom4"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"DT" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/service/bar) +"DU" = ( +/obj/item/clothing/suit/hooded/wintercoat/cargo/qm, +/turf/open/floor/plasteel, +/area/space) +"DW" = ( +/obj/structure/railing, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/space) +"DX" = ( +/obj/structure/table/wood, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"DY" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"DZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/cafeteria) +"Ea" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"Eb" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/service/hydroponics/upper) +"Ed" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 6 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Ee" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Eg" = ( +/obj/structure/transit_tube/diagonal, +/turf/open/openspace, +/area/space) +"Eh" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Ei" = ( +/obj/structure/flora/ausbushes/palebush{ + pixel_y = -11; + pixel_x = -11 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Ej" = ( +/obj/effect/turf_decal/tile/green/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/service/hydroponics) +"Ek" = ( +/obj/structure/sign/painting/library, +/turf/closed/wall/r_wall, +/area/service/library/upper) +"El" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"En" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Eq" = ( +/obj/item/stack/spacecash/c10, +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"Er" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"Es" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/lavendergrass{ + pixel_x = 23 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Et" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Ev" = ( +/obj/machinery/light/directional/west, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Ey" = ( +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/dark, +/area/space) +"Ez" = ( +/obj/structure/sign/painting/library{ + pixel_y = 32 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"EA" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"EB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"ED" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/obj/structure/railing{ + dir = 9 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/pointybush{ + pixel_y = -6; + pixel_x = 4 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"EH" = ( +/obj/machinery/camera{ + c_tag = "Holodeck - Fore 1"; + name = "holodeck camera" + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"EI" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"EJ" = ( +/obj/effect/turf_decal/siding/wood/corner, +/turf/open/floor/plasteel/dark/corner, +/area/space) +"EK" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/wood, +/area/space) +"EM" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/obj/structure/fluff/beach_umbrella, +/obj/item/reagent_containers/food/drinks/beer/light{ + pixel_x = -6; + pixel_y = -14 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"EN" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ER" = ( +/obj/effect/landmark/secequipment, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"EU" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"EV" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"EY" = ( +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Камера 3"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"EZ" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/three) +"Fa" = ( +/obj/structure/chair/wood, +/turf/open/floor/wood/tile, +/area/service/library) +"Fc" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"Fd" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/space) +"Fe" = ( +/obj/structure/closet/boxinggloves, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"Fg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Fh" = ( +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"Fj" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/service/hydroponics) +"Fk" = ( +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/space) +"Fl" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"Fm" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 10 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Fn" = ( +/obj/machinery/light, +/turf/open/openspace, +/area/space) +"Fp" = ( +/obj/item/storage/toolbox/emergency, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Fr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/space) +"Ft" = ( +/turf/closed/wall/r_wall, +/area/service/kitchen/coldroom) +"Fv" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/effect/mob_spawn/human/corpse/engineer, +/obj/effect/decal/cleanable/blood/footprints{ + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plasteel/white, +/area/space) +"Fw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"Fy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/space) +"Fz" = ( +/obj/machinery/modular_computer/console/preset/curator{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"FA" = ( +/obj/structure/sign/directions/command{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 6 + }, +/turf/closed/wall/r_wall/syndicate/nodiagonal, +/area/space) +"FC" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/machinery/chem_dispenser/drinks{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"FG" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/turf/open/floor/mineral/titanium/yellow, +/area/space) +"FH" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"FI" = ( +/obj/item/clothing/suit/hooded/wintercoat/medical/chemistry, +/turf/open/floor/plasteel, +/area/space) +"FJ" = ( +/obj/machinery/light, +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"FK" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"FL" = ( +/obj/effect/turf_decal/pool{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/fluff/beach_umbrella/cap{ + pixel_x = -19 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"FM" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing, +/turf/open/openspace, +/area/space) +"FN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"FO" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"FP" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"FT" = ( +/obj/machinery/vending/cola/red, +/turf/open/floor/plasteel/dark, +/area/space) +"FU" = ( +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"FW" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/plasteel/dark, +/area/space) +"FX" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/cabin/two) +"FY" = ( +/turf/open/floor/carpet, +/area/commons/dorms) +"FZ" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/tile/green/fourcorners, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"Gb" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Gc" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"Gd" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/commons/dorms/cabin/three) +"Gf" = ( +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas, +/obj/item/radio/intercom/directional/north, +/obj/structure/table/wood, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"Gh" = ( +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"Gi" = ( +/obj/machinery/door/airlock/public/glass, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/space) +"Gk" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"Gl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/openspace, +/area/commons/dorms) +"Gm" = ( +/obj/structure/chair/comfy/shuttle, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"Gn" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"Gp" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/space) +"Gr" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"Gs" = ( +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"Gu" = ( +/obj/structure/railing, +/obj/structure/chair/sofa/left{ + pixel_y = 9 + }, +/turf/open/floor/plasteel, +/area/space) +"Gv" = ( +/turf/open/floor/carpet, +/area/service/library/upper) +"Gw" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall/mineral/wood/nonmetal, +/area/commons/locker) +"GA" = ( +/obj/machinery/mecha_part_fabricator/service, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"GB" = ( +/turf/closed/wall, +/area/commons/dorms/two) +"GF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"GG" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom1"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"GJ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/two) +"GK" = ( +/obj/effect/turf_decal/siding/green, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"GL" = ( +/obj/structure/table, +/obj/structure/railing, +/obj/effect/turf_decal/tile/green/half/contrasted, +/obj/item/vending_refill/wardrobe/hydro_wardrobe, +/obj/item/vending_refill/hydronutrients, +/obj/item/vending_refill/hydroseeds, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"GN" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel, +/area/space) +"GP" = ( +/obj/structure/transit_tube/diagonal{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"GQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/space) +"GR" = ( +/obj/machinery/space_heater, +/turf/open/floor/plasteel, +/area/space) +"GS" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"GU" = ( +/obj/structure/flora/ausbushes/lavendergrass{ + pixel_y = -11; + pixel_x = 5 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"GX" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Ha" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/space) +"Hb" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"Hc" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"Hd" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/space) +"Hf" = ( +/obj/structure/closet/secure_closet/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"Hg" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 10 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Hh" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"Hj" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/floor/plating, +/area/space) +"Hk" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Hl" = ( +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"Hm" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"Ho" = ( +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"Hp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"Hq" = ( +/obj/item/clothing/suit/hooded/wintercoat/hydro, +/turf/open/floor/plasteel, +/area/space) +"Hr" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/service/hydroponics) +"Ht" = ( +/turf/open/floor/wood, +/area/space) +"Hu" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9" + }, +/turf/open/floor/plating, +/area/space) +"Hv" = ( +/obj/structure/railing/left{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"Hw" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"Hx" = ( +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"Hy" = ( +/obj/structure/stairs/north, +/obj/structure/railing/right{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"Hz" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/dorms) +"HA" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/dorms/five) +"HC" = ( +/obj/structure/girder, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"HG" = ( +/obj/machinery/paystand{ + pixel_y = 6 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"HH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/space) +"HJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + color = "#52B4E9"; + name = "blue line" + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"HK" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/space) +"HL" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 4"; + name = "Камера 4" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"HM" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"HO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"HP" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 13; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"HQ" = ( +/obj/structure/curtain, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"HR" = ( +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/tile/green/anticorner/contrasted, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"HS" = ( +/obj/machinery/door/airlock, +/turf/open/floor/plasteel, +/area/space) +"HT" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/junglebush/c{ + pixel_x = -26; + pixel_y = -2 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"HV" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"HW" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"HZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/lavendergrass{ + pixel_y = -6 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"Id" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"Ie" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"If" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/space) +"Ig" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/cryopods) +"Ii" = ( +/obj/structure/railing, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"Ij" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x3, +/turf/open/floor/plating, +/area/space) +"Ik" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"Il" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"In" = ( +/turf/open/floor/plating/grass, +/area/commons/locker) +"Iq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Is" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/service/hydroponics) +"It" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"Iu" = ( +/turf/closed/wall, +/area/commons/dorms/five) +"Iv" = ( +/obj/structure/sink/directional/east, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"Iw" = ( +/obj/machinery/light/floor/directional/south, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Iz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/rock/pile{ + pixel_x = -5 + }, +/obj/structure/flora/ausbushes/palebush{ + pixel_y = 12 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"IC" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"ID" = ( +/obj/structure/closet/body_bag, +/obj/effect/mob_spawn/human/corpse/engineer, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"IF" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/openspace, +/area/space) +"IH" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/sign/departments/lawyer, +/obj/structure/cable, +/turf/open/floor/plating, +/area/space) +"IJ" = ( +/obj/structure/stairs/west, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"IK" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/space) +"IL" = ( +/obj/structure/chair/sofa/corp/corner{ + color = "#DE3A3A"; + dir = 4; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"IN" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"IO" = ( +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/carpet, +/area/service/library/private) +"IP" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"IR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/junglebush/c{ + pixel_x = -10; + pixel_y = -5 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"IT" = ( +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"IV" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"IX" = ( +/obj/structure/railing/corner, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/space) +"IY" = ( +/turf/open/floor/plating/asteroid/snow/ice, +/area/space) +"IZ" = ( +/obj/structure/fluff/hedge, +/turf/open/floor/plasteel/dark, +/area/space) +"Jb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/openspace, +/area/space) +"Je" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"Jf" = ( +/obj/structure/flora/ausbushes/lavendergrass{ + pixel_y = 8; + pixel_x = 10 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Jg" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/service/hydroponics) +"Jh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Jj" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"Jl" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Jm" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/openspace, +/area/space) +"Jp" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/space) +"Jq" = ( +/turf/closed/wall/r_wall, +/area/commons/fitness/locker_room) +"Js" = ( +/obj/structure/table, +/obj/machinery/smartfridge/disks, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"Ju" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Dorm 3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/dorms/three) +"Jv" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"Jw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"Jx" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"Jy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"Jz" = ( +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"JA" = ( +/obj/structure/sign/barsign, +/turf/closed/wall/r_wall, +/area/service/cafeteria) +"JC" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"JD" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/one) +"JE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/commons/dorms) +"JF" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/plating/grass, +/area/commons/locker) +"JG" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"JJ" = ( +/turf/closed/wall, +/area/service/library/private) +"JL" = ( +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"JM" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/three) +"JN" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"JQ" = ( +/obj/machinery/door/airlock{ + name = "Kitchen cold room"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/monofloor, +/area/service/kitchen/coldroom) +"JX" = ( +/mob/living/simple_animal/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/turf/open/floor/grass, +/area/space) +"Ka" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"Kb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"Kc" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"Ke" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/cloth/fancy, +/turf/open/floor/plating, +/area/service/cafeteria) +"Kf" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet, +/area/commons/dorms/two) +"Kg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Kh" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Kk" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Kl" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/open/floor/grass, +/area/space) +"Kn" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/space) +"Ko" = ( +/obj/machinery/smartfridge, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"Kp" = ( +/obj/effect/turf_decal/trimline/red/warning{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/red/warning{ + dir = 8 + }, +/obj/machinery/door/poddoor/multi_tile/two_tile_ver, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Kq" = ( +/obj/structure/chair/plastic{ + dir = 4 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Kr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Kt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush/large{ + pixel_x = -14 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"Ku" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Ky" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"Kz" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"KB" = ( +/turf/open/floor/wood/parquet, +/area/service/library) +"KC" = ( +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics/upper) +"KE" = ( +/obj/item/stack/spacecash/c100{ + pixel_y = 5 + }, +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"KF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/service/hydroponics) +"KH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"KJ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Diner" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/cafeteria) +"KL" = ( +/obj/item/extinguisher, +/turf/open/floor/plating/snowed, +/area/space) +"KP" = ( +/obj/structure/chair/sofa/left{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"KT" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 6 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"KU" = ( +/obj/effect/turf_decal/siding/thinplating/dark/end{ + dir = 8 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"KV" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Dorm 1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/dorms/one) +"KW" = ( +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"KX" = ( +/turf/open/floor/wood, +/area/service/bar) +"KY" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/carpet/green, +/area/commons/dorms/five) +"Ld" = ( +/turf/closed/wall, +/area/service/janitor) +"Le" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Lf" = ( +/obj/effect/landmark/stationroom/maintenance/rdm3x5, +/turf/open/floor/plating, +/area/space) +"Lg" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 11; + pixel_x = 1 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Lh" = ( +/obj/machinery/door/poddoor/multi_tile/three_tile_hor/preopen, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Li" = ( +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_y = 14; + pixel_x = -7 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Lj" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/space) +"Lk" = ( +/obj/item/clothing/suit/hooded/wintercoat/cargo, +/turf/open/floor/plasteel, +/area/space) +"Ll" = ( +/obj/structure/cable, +/obj/machinery/door/window/brigdoor/security/cell{ + id = "Cell 2"; + name = "Камера 2" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Lo" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"Lp" = ( +/obj/structure/flora/ausbushes/stalkybush, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/space) +"Lq" = ( +/obj/item/toy/seashell, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Lr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"Ls" = ( +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 3 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -3 + }, +/turf/closed/wall/r_wall, +/area/space) +"Lv" = ( +/obj/item/radio/intercom{ + name = "Match Broadcasting Station"; + pixel_y = -4 + }, +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/space) +"Lw" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Ly" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/grass, +/area/commons/locker) +"LB" = ( +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/monofloor, +/area/service/kitchen) +"LC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"LE" = ( +/obj/structure/stairs/east, +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"LG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"LI" = ( +/obj/structure/stairs/west, +/turf/open/floor/plasteel, +/area/space) +"LJ" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 4 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_y = 5; + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/hydroponics) +"LM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/space) +"LN" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"LP" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"LR" = ( +/obj/structure/chair/sofa/bench/right, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"LU" = ( +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/orange, +/area/commons/dorms/cabin/four) +"LV" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 6 + }, +/turf/open/floor/wood, +/area/space) +"LX" = ( +/obj/structure/statue/gold/cmo, +/turf/open/floor/plasteel/white, +/area/space) +"LZ" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/wood/parquet, +/area/service/library) +"Ma" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"Mb" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Mc" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"Md" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"Mg" = ( +/obj/structure/table, +/obj/item/wrench{ + pixel_y = -10; + pixel_x = -2 + }, +/obj/item/multitool{ + pixel_y = -10; + pixel_x = 4 + }, +/obj/item/storage/belt/utility{ + pixel_y = 9 + }, +/obj/item/screwdriver{ + pixel_y = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/space) +"Mi" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/space) +"Mk" = ( +/obj/structure/statue/gold/ce, +/turf/open/floor/plating, +/area/space) +"Ml" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Шкафчик камеры 1" + }, +/turf/open/floor/resin, +/area/space) +"Mm" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/openspace, +/area/space) +"Mo" = ( +/obj/structure/lattice, +/obj/effect/turf_decal/stripes/box, +/turf/open/openspace, +/area/space) +"Mr" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"Mt" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Mu" = ( +/obj/structure/table/reinforced, +/obj/item/storage/firstaid/regular{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Mv" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"Mw" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Mz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"MA" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/space) +"MB" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"MD" = ( +/obj/structure/flora/ausbushes/rospilovo, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"ME" = ( +/obj/item/food/donut/choco{ + pixel_y = 11; + pixel_x = 5 + }, +/obj/item/toy/figure/hos{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/space) +"MF" = ( +/obj/machinery/effector, +/turf/open/floor/plating, +/area/space) +"MI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"ML" = ( +/obj/structure/chair/sofa/right{ + dir = 4; + pixel_x = -5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/commons/fitness/locker_room) +"MM" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"MN" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"MO" = ( +/obj/structure/flora/rock/pile{ + pixel_y = 6; + pixel_x = -8 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"MP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"MQ" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"MR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "kitchen shutters"; + dir = 8 + }, +/turf/open/floor/light, +/area/service/kitchen) +"MS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/girder, +/turf/open/floor/plating, +/area/space) +"MT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = -17 + }, +/obj/structure/flora/ausbushes/leafybush{ + pixel_x = -6 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"MW" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"MX" = ( +/turf/open/floor/glass/reinforced, +/area/service/hydroponics/upper) +"Nd" = ( +/obj/structure/flora/junglebush/b{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/structure/flora/rock/jungle{ + pixel_y = -16; + pixel_x = -10 + }, +/turf/open/floor/grass, +/area/space) +"Ne" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/cafeteria) +"Nf" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa/left{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"Ng" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"Nk" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/structure/railing/corner, +/turf/open/floor/plasteel, +/area/space) +"Nl" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab2"; + name = "Cabin 2" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms/cabin/two) +"Nm" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 1 + }, +/turf/open/floor/carpet, +/area/service/library/private) +"Nn" = ( +/obj/structure/fluff/hedge, +/obj/structure/sign/departments/botany/directional/north, +/turf/open/floor/plasteel/dark, +/area/space) +"No" = ( +/obj/structure/stairs/north, +/obj/structure/railing/left{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Np" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Nq" = ( +/obj/machinery/pool_filter, +/turf/open/indestructible/pool/end, +/area/commons/locker) +"Ns" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Nu" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Nv" = ( +/obj/item/clothing/suit/hooded/wintercoat, +/turf/open/floor/plasteel, +/area/space) +"Nw" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/obj/machinery/smartfridge/drying_rack, +/turf/open/floor/plasteel/dark/side, +/area/service/hydroponics) +"Nx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/space) +"Ny" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"Nz" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side, +/area/space) +"NB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"NE" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Maintenance Hatch"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/space) +"NF" = ( +/obj/machinery/door/airlock{ + id_tag = "Cab3"; + name = "Cabin 3" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/dorms/cabin/three) +"NH" = ( +/obj/structure/stairs/west, +/obj/structure/railing/left, +/turf/open/floor/plasteel, +/area/space) +"NI" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"NJ" = ( +/obj/structure/chair/sofa/bench/left, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"NK" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plating/snowed, +/area/space) +"NL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/space) +"NM" = ( +/obj/structure/closet/secure_closet/security/specialist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"NN" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"NO" = ( +/obj/item/flashlight/lamp/green{ + pixel_y = 10 + }, +/obj/item/clothing/mask/cigarette/cigar/havana{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = -2; + pixel_y = -6 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/space) +"NP" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"NQ" = ( +/obj/structure/chair/comfy/shuttle{ + dir = 1 + }, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"NS" = ( +/obj/structure/flora/stump, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"NT" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/openspace, +/area/space) +"NU" = ( +/turf/closed/wall, +/area/service/hydroponics/upper) +"NV" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark, +/area/space) +"NX" = ( +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/pickaxe{ + pixel_x = 5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/shovel{ + pixel_x = -5 + }, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow{ + pixel_y = 21 + }, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/space) +"NY" = ( +/turf/open/floor/carpet/red, +/area/space) +"Oa" = ( +/obj/structure/lattice, +/turf/open/openspace, +/area/service/hydroponics/upper) +"Oc" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"Od" = ( +/obj/structure/chair/office, +/turf/open/floor/wood/parquet, +/area/service/library) +"Oe" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/dorms) +"Of" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/commons/locker) +"Og" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/openspace, +/area/space) +"Oh" = ( +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/turf/open/floor/wood, +/area/service/bar) +"Oi" = ( +/obj/structure/closet/secure_closet/hos, +/turf/open/floor/plasteel/dark, +/area/space) +"Ok" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"Ol" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"Om" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"On" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Oo" = ( +/obj/machinery/food_cart, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Oq" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall/r_wall, +/area/space) +"Ot" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/two) +"Ov" = ( +/obj/structure/table/wood, +/obj/item/pen/red{ + pixel_x = 3 + }, +/obj/item/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/flashlight/lamp/green{ + pixel_x = -10; + pixel_y = 5 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"Ow" = ( +/obj/structure/flora/grass/brown, +/turf/open/floor/grass, +/area/space) +"Ox" = ( +/turf/open/floor/plating/grass, +/area/commons/dorms) +"OA" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"OB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/monofloor, +/area/space) +"OG" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"OI" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + name = "Armory Desk"; + req_access_txt = "3" + }, +/obj/machinery/door/window/southleft{ + name = "Reception Desk"; + req_access_txt = "63"; + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"OK" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/melee/flyswatter, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/queen_bee/bought, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/suit/beekeeper_suit, +/turf/open/floor/grass, +/area/space) +"OL" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"OM" = ( +/obj/structure/flora/ausbushes/sunnybush{ + pixel_y = 5; + pixel_x = 1 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"OQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/computer/rdconsole, +/turf/open/floor/plasteel/dark, +/area/space) +"OS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"OV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"OW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown/half, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"OX" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"OY" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"OZ" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Pa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Pc" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/service/hydroponics) +"Pd" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ppflowers{ + pixel_x = -11; + pixel_y = -3 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"Pe" = ( +/obj/structure/flora/rock/jungle{ + pixel_y = -18 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Pg" = ( +/obj/structure/chair/sofa/right{ + dir = 8; + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/commons/fitness/locker_room) +"Ph" = ( +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Камера 1"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Pi" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Pk" = ( +/obj/machinery/vending/wallmed/directional/north, +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"Pm" = ( +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/pen/fountain{ + pixel_y = 8 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/space) +"Pn" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/service/cafeteria) +"Po" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/girder, +/turf/open/floor/plating, +/area/space) +"Pp" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/commons/fitness/locker_room) +"Pq" = ( +/obj/structure/girder, +/obj/machinery/effector, +/turf/open/floor/plating, +/area/space) +"Pr" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 4 + }, +/turf/open/floor/light/colour_cycle/dancefloor_b, +/area/service/abandoned_gambling_den) +"Ps" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/space) +"Pt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/commons/dorms/two) +"Pu" = ( +/obj/effect/turf_decal/tile/green/fourcorners, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Pw" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Px" = ( +/turf/closed/wall, +/area/commons/locker) +"Pz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"PF" = ( +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark/side, +/area/space) +"PH" = ( +/obj/effect/light_emitter{ + light_range = 3; + set_cap = 1; + set_luminosity = 4 + }, +/turf/open/floor/mineral/titanium, +/area/space) +"PJ" = ( +/obj/structure/filingcabinet{ + pixel_x = 6 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"PK" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 6 + }, +/turf/open/openspace, +/area/space) +"PM" = ( +/turf/closed/wall/r_wall, +/area/service/bar) +"PQ" = ( +/obj/effect/spawner/structure/window/ice, +/turf/open/openspace, +/area/space) +"PR" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/thinplating/dark/corner{ + dir = 1 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"PS" = ( +/obj/structure/chair/wood{ + dir = 8; + layer = 2.8 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"PU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/hydroponics/constructable, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/service/hydroponics) +"PW" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/four) +"PX" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/splatter{ + pixel_y = -12; + pixel_x = -12 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"PZ" = ( +/obj/machinery/door/airlock{ + name = "Bar Service Hall"; + req_one_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Qa" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/openspace, +/area/space) +"Qe" = ( +/obj/effect/landmark/stationroom/maintenance/rdm5x3, +/turf/open/floor/plating, +/area/space) +"Qg" = ( +/obj/structure/railing{ + dir = 5 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Qh" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Qi" = ( +/obj/item/clothing/suit/hooded/wintercoat/security, +/turf/open/floor/plasteel, +/area/space) +"Qj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 9 + }, +/turf/open/openspace, +/area/space) +"Qk" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"Ql" = ( +/obj/effect/turf_decal/tile/blue/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/space) +"Qn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Qp" = ( +/turf/closed/wall/mineral/titanium, +/area/space) +"Qq" = ( +/obj/structure/chair/comfy/brown{ + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Qr" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Qs" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Qu" = ( +/turf/closed/wall/r_wall, +/area/service/library) +"Qv" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/commons/dorms) +"Qy" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"QA" = ( +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"QB" = ( +/obj/machinery/airalarm/directional/south, +/turf/open/floor/wood, +/area/commons/dorms/cabin/one) +"QC" = ( +/obj/structure/table/wood, +/obj/item/pai_card, +/turf/open/floor/carpet, +/area/commons/dorms) +"QG" = ( +/obj/structure/chair/wood/wings{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"QH" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/maint, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/space) +"QI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"QK" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/service/hydroponics) +"QL" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"QN" = ( +/obj/structure/beebox, +/turf/open/floor/grass, +/area/space) +"QO" = ( +/obj/effect/turf_decal/siding/thinplating/dark/corner, +/turf/open/floor/glass/reinforced, +/area/space) +"QP" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 1 + }, +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/glass/reinforced, +/area/space) +"QS" = ( +/obj/item/clothing/suit/hooded/wintercoat/science/rd, +/turf/open/floor/plasteel, +/area/space) +"QV" = ( +/obj/structure/table/wood, +/obj/item/newspaper, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"QW" = ( +/obj/effect/turf_decal/siding/thinplating/dark, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"QX" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/regular{ + pixel_y = 3 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"QY" = ( +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/space) +"QZ" = ( +/turf/closed/wall, +/area/service/abandoned_gambling_den) +"Rd" = ( +/obj/effect/decal/cleanable/blood/footprints{ + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/monofloor/white, +/area/space) +"Re" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 5 + }, +/turf/open/openspace, +/area/space) +"Rf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/junglebush{ + pixel_y = -7 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"Rh" = ( +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Rk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Rm" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/space) +"Ro" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access_txt = "57" + }, +/turf/open/floor/plasteel, +/area/space) +"Rp" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/space) +"Rq" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Rr" = ( +/turf/closed/wall/r_wall, +/area/service/janitor) +"Ru" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/palebush{ + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/grass, +/area/space) +"Rv" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Ry" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"RB" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/openspace, +/area/space) +"RD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"RF" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 3 + }, +/turf/open/floor/carpet/cyan, +/area/commons/dorms/one) +"RG" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"RH" = ( +/obj/structure/chair/sofa/corp{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"RK" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"RL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/service/hydroponics) +"RM" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "toiletbolt_lockerroom2"; + name = "Privacy Toggle"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = 24; + pixel_y = 0 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"RN" = ( +/obj/structure/chair/comfy/shuttle, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"RO" = ( +/obj/structure/chair/pew{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"RP" = ( +/obj/structure/sign/calendar/directional/east, +/obj/effect/turf_decal/siding/green{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"RT" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall/r_wall, +/area/space) +"RW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"RX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/space) +"RY" = ( +/obj/effect/turf_decal/tile/yellow/half{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"Sa" = ( +/obj/structure/flora/ausbushes/leafybush{ + pixel_y = -10; + pixel_x = -11 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Sb" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"Sc" = ( +/obj/machinery/computer/prisoner/management{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Sd" = ( +/obj/structure/sign/departments/restroom/directional/east, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/locker) +"Sh" = ( +/obj/effect/turf_decal/trimline/blue/filled/line, +/obj/structure/bed/roller, +/turf/open/floor/plasteel/white, +/area/space) +"Sj" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"Sl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/space) +"Sm" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Sn" = ( +/turf/open/floor/resin, +/area/space) +"So" = ( +/obj/machinery/door/airlock{ + name = "Service Hall"; + req_one_access_txt = "22;25;26;28;35;37;38;46;70" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"Sq" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/service/hydroponics) +"Sr" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Su" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"Sv" = ( +/obj/structure/table/wood, +/obj/item/toy/cards/deck{ + pixel_x = 2 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"Sx" = ( +/obj/structure/table/glass, +/obj/item/flashlight/lamp{ + pixel_x = -5; + pixel_y = 3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"Sy" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/commons/locker) +"Sz" = ( +/obj/machinery/pdapainter/security, +/turf/open/floor/plasteel/dark, +/area/space) +"SC" = ( +/obj/effect/turf_decal/tile/purple/half/contrasted, +/turf/open/floor/plasteel/white, +/area/space) +"SE" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/one) +"SH" = ( +/obj/structure/table/wood/poker, +/obj/item/flashlight/lamp/green{ + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor/plasteel/dark, +/area/service/abandoned_gambling_den) +"SI" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"SJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"SL" = ( +/obj/machinery/camera/autoname/directional/south, +/turf/open/floor/plating/snowed, +/area/space) +"SO" = ( +/obj/structure/fence/door{ + req_access_txt = "42" + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"SP" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"SQ" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/glass/reinforced, +/area/service/hydroponics/upper) +"SR" = ( +/turf/closed/wall, +/area/commons/dorms/cabin/three) +"ST" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"SX" = ( +/obj/structure/table/wood, +/obj/item/gun/energy/e_gun/mini{ + layer = 3.01; + pixel_y = 14 + }, +/obj/item/book/manual/wiki/security_space_law{ + pixel_x = 5; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"SZ" = ( +/obj/machinery/space_heater, +/turf/open/floor/mineral/titanium/yellow, +/area/space) +"Ta" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"Tb" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"Td" = ( +/turf/open/floor/wood/tile, +/area/service/library) +"Tf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "space shutters" + }, +/turf/open/floor/plating, +/area/space) +"Tg" = ( +/obj/structure/railing, +/obj/effect/turf_decal/tile/green/half/contrasted, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"Th" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 5 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"Ti" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"Tl" = ( +/obj/structure/stairs/west, +/obj/structure/railing/right{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"Tm" = ( +/turf/open/floor/carpet/black, +/area/commons/dorms) +"Tn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/medbay/alt, +/turf/open/floor/plating, +/area/space) +"To" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"Tp" = ( +/obj/structure/sink/directional/south, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"Tq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/curtain/red, +/turf/open/floor/plating, +/area/commons/dorms/one) +"Tr" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/library) +"Ts" = ( +/obj/structure/railing{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Tv" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"Ty" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Tz" = ( +/obj/structure/flora/rock/jungle{ + pixel_y = 11; + pixel_x = -3 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"TA" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/sign/painting/library{ + pixel_x = 32 + }, +/turf/open/floor/wood/parquet, +/area/service/library) +"TC" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"TE" = ( +/obj/structure/chair/sofa/corp/corner{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"TF" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/structure/railing{ + dir = 10 + }, +/obj/structure/flora/junglebush/c{ + pixel_y = 6 + }, +/turf/open/floor/plating/grass, +/area/space) +"TG" = ( +/obj/structure/sign/directions/command{ + dir = 4 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 6 + }, +/turf/closed/wall/r_wall, +/area/space) +"TI" = ( +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"TJ" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/space) +"TK" = ( +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 1 + }, +/obj/machinery/cell_charger, +/obj/structure/table, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel, +/area/space) +"TP" = ( +/obj/effect/turf_decal/weather/sand{ + dir = 6 + }, +/obj/structure/flora/junglebush/c{ + pixel_y = 11; + pixel_x = 5 + }, +/turf/open/floor/plating/grass, +/area/commons/locker) +"TQ" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/landmark/start/captain, +/turf/open/floor/plating/asteroid/snow/temperatre, +/area/space) +"TR" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"TS" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 4 + }, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"TW" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"TX" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Brig Desk"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"TZ" = ( +/obj/structure/rack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/snack, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/cola, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/coffee, +/obj/item/vending_refill/coffee, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/secondary/service) +"Ua" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"Uc" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"Ue" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/space) +"Uf" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Ug" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 1 + }, +/turf/open/openspace, +/area/space) +"Uh" = ( +/obj/machinery/shieldgen, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Uj" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Uk" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/space) +"Un" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/chair/sofa{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/space) +"Up" = ( +/obj/effect/turf_decal/box, +/obj/machinery/the_singularitygen/tesla, +/turf/open/floor/plating, +/area/space) +"Uq" = ( +/turf/open/floor/plasteel, +/area/service/janitor) +"Ur" = ( +/obj/effect/turf_decal/tile/green/anticorner/contrasted{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Us" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Ut" = ( +/turf/closed/wall/r_wall, +/area/service/library/upper) +"Uv" = ( +/obj/structure/chair/sofa/corp/corner{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"UD" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating/snowed, +/area/space) +"UE" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"UF" = ( +/obj/structure/railing{ + dir = 9 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"UH" = ( +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"UK" = ( +/obj/structure/chair/sofa/corp/left{ + dir = 8; + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"UL" = ( +/obj/machinery/vending/snack/green, +/turf/open/floor/plasteel/dark, +/area/space) +"UM" = ( +/obj/structure/mirror/directional/north{ + pixel_y = 33 + }, +/obj/structure/sink/directional/south{ + pixel_y = 12 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/toilet/locker) +"UN" = ( +/turf/open/floor/plating, +/area/space) +"UO" = ( +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/space) +"UP" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/open/floor/plasteel/white, +/area/space) +"UQ" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 9 + }, +/turf/open/floor/glass/reinforced, +/area/space) +"UR" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/wood, +/area/service/library/private) +"US" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"UT" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"UV" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/openspace, +/area/space) +"UW" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/open/openspace, +/area/space) +"UY" = ( +/obj/item/clothing/suit/hooded/wintercoat/engineering/ce, +/turf/open/floor/plasteel, +/area/space) +"Vc" = ( +/obj/structure/cable, +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"Vf" = ( +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Камера 4"; + pixel_y = -31 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Vg" = ( +/turf/closed/wall/r_wall, +/area/commons/dorms/one) +"Vh" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Vi" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"Vj" = ( +/obj/item/folder/red{ + pixel_x = 21; + pixel_y = 5 + }, +/obj/item/folder/blue{ + pixel_y = 3; + pixel_x = 16; + layer = 3.01 + }, +/obj/item/stamp/hos{ + pixel_x = 14; + pixel_y = 4; + layer = 3.02 + }, +/obj/structure/table/wood, +/turf/open/floor/carpet/red, +/area/space) +"Vk" = ( +/turf/closed/wall, +/area/service/chapel/main) +"Vm" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/donk, +/area/commons/dorms/four) +"Vp" = ( +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"Vq" = ( +/obj/item/clothing/suit/hooded/wintercoat/science/robotics, +/turf/open/floor/plasteel, +/area/space) +"Vr" = ( +/obj/effect/turf_decal/pool/corner, +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Vs" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9" + }, +/obj/effect/turf_decal/stripes/white/corner{ + color = "#52B4E9"; + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"Vt" = ( +/obj/structure/table/reinforced, +/turf/open/floor/plasteel, +/area/space) +"Vx" = ( +/obj/machinery/shower/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"Vz" = ( +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"VC" = ( +/obj/effect/decal/cleanable/blood/tracks{ + dir = 8 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"VE" = ( +/obj/effect/turf_decal/tile/yellow/half/contrasted, +/turf/open/floor/plasteel/dark, +/area/space) +"VF" = ( +/obj/machinery/skill_station, +/turf/open/floor/wood/parquet, +/area/service/library) +"VG" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/open/floor/grass, +/area/space) +"VI" = ( +/turf/open/floor/plating/ice, +/area/space) +"VJ" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/space) +"VL" = ( +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"VM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/space) +"VO" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/executive, +/area/commons/dorms/three) +"VQ" = ( +/obj/structure/table/wood/fancy/blue, +/obj/effect/turf_decal/siding/wood{ + dir = 4 + }, +/obj/structure/displaycase/forsale/kitchen{ + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/service/cafeteria) +"VR" = ( +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -10 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -3 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/sign/directions/vault{ + dir = 1; + pixel_y = 11 + }, +/turf/closed/wall, +/area/space) +"VS" = ( +/obj/structure/chair/sofa{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"VT" = ( +/obj/structure/chair/wood/wings{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/main) +"VU" = ( +/turf/open/floor/plasteel/white, +/area/space) +"VV" = ( +/obj/machinery/button/door{ + id = "Cab2"; + name = "Cabin Bolt Control"; + normaldoorcontrol = 1; + specialfunctions = 4; + pixel_x = -25 + }, +/obj/structure/chair/wood{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/commons/dorms/cabin/two) +"VW" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/space) +"VY" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/hatch, +/obj/effect/decal/cleanable/blood/tracks, +/turf/open/floor/plasteel/dark, +/area/space) +"VZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/wardrobe/grey, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/locker_room) +"Wa" = ( +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"Wb" = ( +/obj/structure/flora/grass/both, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Wd" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Looks like a knock-off chem-master. Perhaps useful for separating liquids when mixing drinks precisely. Also dispenses condiments."; + name = "HoochMaster Deluxe" + }, +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/turf/open/floor/wood, +/area/service/bar) +"We" = ( +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"Wf" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/two) +"Wg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_3" + }, +/turf/open/floor/plating, +/area/space) +"Wi" = ( +/turf/open/floor/plasteel/white/side{ + dir = 4 + }, +/area/space) +"Wj" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/space) +"Wk" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/space) +"Wl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/openspace, +/area/space) +"Wn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/station/dispenser, +/turf/open/openspace, +/area/space) +"Wq" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ywflowers{ + pixel_y = -4; + pixel_x = 8; + layer = 2.91 + }, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"Wr" = ( +/obj/structure/rack, +/turf/open/floor/plasteel/dark, +/area/space) +"Ws" = ( +/obj/structure/chair/wood{ + dir = 8 + }, +/obj/effect/turf_decal/siding/wood, +/turf/open/floor/wood, +/area/service/cafeteria) +"Wt" = ( +/obj/effect/decal/cleanable/blood/splatter{ + pixel_y = 15 + }, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"Wu" = ( +/obj/structure/chair/sofa/corp{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/carpet/green, +/area/service/cafeteria) +"Ww" = ( +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/commons/fitness/locker_room) +"Wz" = ( +/obj/structure/chair/stool{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/service/cafeteria) +"WA" = ( +/obj/structure/window/shuttle, +/obj/structure/grille, +/turf/open/floor/plating, +/area/space) +"WB" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/airlock/hatch, +/turf/open/floor/plating, +/area/space) +"WC" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/space) +"WE" = ( +/obj/machinery/gibber, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"WG" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/dorms/four) +"WH" = ( +/obj/structure/table, +/obj/item/folder/red, +/obj/item/taperecorder, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"WI" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/service/cafeteria) +"WJ" = ( +/obj/structure/chair/comfy/shuttle, +/obj/effect/landmark/latejoin, +/turf/open/floor/mineral/titanium/blue, +/area/space) +"WK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"WL" = ( +/obj/effect/overlay/coconut{ + pixel_y = 8 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"WM" = ( +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/clothing/glasses/meson{ + pixel_y = 16 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = 8 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/radio{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/structure/table, +/obj/effect/turf_decal/trimline/brown/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/space) +"WN" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar, +/obj/item/extinguisher, +/turf/open/floor/mineral/titanium/yellow, +/area/space) +"WO" = ( +/obj/effect/decal/cleanable/blood/gibs, +/obj/item/extinguisher, +/turf/open/floor/plating/asteroid/snow, +/area/space) +"WQ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/weather/sand{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + layer = 3.01 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -3; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"WR" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"WS" = ( +/obj/effect/spawner/structure/window/plasma/reinforced/plastitanium, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "brig_isolation_2" + }, +/turf/open/floor/plating, +/area/space) +"WX" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/effect/turf_decal/stripes/line, +/turf/open/openspace, +/area/space) +"WZ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/space) +"Xa" = ( +/obj/structure/chair/comfy/black, +/obj/machinery/button/door{ + id = "hosspace"; + name = "Space Shutters Control"; + pixel_x = 26; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "hosprivacy"; + name = "Privacy Shutters Control"; + pixel_x = 26; + pixel_y = -6 + }, +/turf/open/floor/carpet/red, +/area/space) +"Xb" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"Xc" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4 + }, +/obj/item/pen{ + pixel_x = -3 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"Xd" = ( +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/commons/locker) +"Xf" = ( +/obj/structure/chair/sofa/corp/left{ + color = "#DE3A3A"; + pixel_y = 4; + pixel_x = -6 + }, +/turf/open/floor/carpet/royalblack, +/area/service/cafeteria) +"Xh" = ( +/obj/effect/turf_decal/siding/wood, +/obj/structure/bookcase/random/adult, +/turf/open/floor/wood, +/area/service/library) +"Xi" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/rock/pile, +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/service/hydroponics) +"Xk" = ( +/obj/machinery/light/broken/directional/north, +/obj/structure/table/reinforced, +/turf/open/floor/mineral/titanium/yellow, +/area/space) +"Xn" = ( +/obj/structure/chair/sofa/corp/right{ + color = "#DE3A3A"; + dir = 4; + pixel_x = -6; + pixel_y = 4 + }, +/turf/open/floor/carpet, +/area/commons/dorms) +"Xr" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/space) +"Xs" = ( +/turf/open/floor/plating/snowed/dug, +/area/space) +"Xt" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/space) +"Xu" = ( +/obj/structure/table/wood, +/obj/item/toy/crayon/red{ + pixel_x = 12; + pixel_y = 3 + }, +/obj/item/toy/crayon/orange{ + pixel_y = 6; + pixel_x = 10 + }, +/obj/item/toy/crayon/green{ + pixel_y = 4; + pixel_x = 3 + }, +/obj/item/toy/crayon/blue{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/toy/crayon/purple{ + pixel_y = 7; + pixel_x = -2 + }, +/obj/item/toy/crayon/yellow{ + pixel_y = 5; + pixel_x = -7 + }, +/obj/item/toy/crayon/white{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/item/toy/crayon/black{ + pixel_y = -3; + pixel_x = 2 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"Xx" = ( +/obj/structure/stairs/west, +/obj/structure/railing, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Xy" = ( +/obj/effect/turf_decal/pool/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"Xz" = ( +/obj/effect/turf_decal/siding/green{ + dir = 8 + }, +/obj/effect/turf_decal/siding/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/commons/cryopods) +"XC" = ( +/obj/structure/transit_tube/curved, +/turf/open/openspace, +/area/space) +"XD" = ( +/obj/effect/overlay/palmtree_l{ + pixel_y = 11; + pixel_x = -6 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"XE" = ( +/turf/open/floor/carpet/royalblack, +/area/commons/dorms/cabin/three) +"XG" = ( +/obj/structure/railing/corner, +/turf/open/floor/plasteel/dark/corner, +/area/space) +"XK" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"XL" = ( +/obj/structure/statue/sandstone/venus, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"XO" = ( +/turf/open/floor/glass/reinforced, +/area/space) +"XP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"XS" = ( +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/engine/hull/reinforced, +/area/space) +"XT" = ( +/obj/machinery/computer/crew, +/turf/open/floor/plasteel/showroomfloor, +/area/space) +"XW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/dorms) +"XX" = ( +/obj/machinery/disposal/bin, +/turf/open/floor/plasteel/dark, +/area/space) +"XY" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/space) +"XZ" = ( +/obj/effect/turf_decal/siding/wood/corner{ + dir = 1 + }, +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/structure/flora/rock/jungle, +/obj/structure/flora/junglebush/c, +/turf/open/floor/plating/grass, +/area/commons/dorms) +"Yb" = ( +/obj/structure/railing/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + pixel_y = 0 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Yc" = ( +/obj/structure/table/wood/poker, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"Yd" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_y = 7; + pixel_x = -3 + }, +/obj/item/food/donut/caramel{ + pixel_x = 5; + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/commons/dorms) +"Ye" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood/parquet, +/area/service/library/upper) +"Yh" = ( +/turf/open/floor/plasteel/white/side{ + dir = 10 + }, +/area/space) +"Yl" = ( +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Ym" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/obj/effect/turf_decal/siding/wood{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Yo" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/openspace, +/area/service/hydroponics/upper) +"Yq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/bar) +"Yt" = ( +/turf/open/floor/plasteel/monofloor, +/area/space) +"Yv" = ( +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = 28; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/keycard_auth{ + pixel_x = 29; + pixel_y = 8 + }, +/obj/structure/chair/office{ + dir = 1; + name = "Command Station" + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"Yw" = ( +/obj/machinery/libraryscanner, +/turf/open/floor/wood/parquet, +/area/service/library) +"Yy" = ( +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -3 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 3 + }, +/turf/closed/wall/r_wall, +/area/space) +"Yz" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/mineral/titanium, +/area/space) +"YB" = ( +/obj/structure/table/wood/fancy/green, +/turf/open/floor/wood/tile, +/area/service/library) +"YD" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/locker_room) +"YE" = ( +/turf/closed/wall/r_wall, +/area/service/hydroponics/upper) +"YG" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/space) +"YH" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/security/armory"; + name = "Контролер турели брига"; + req_access = null; + req_access_txt = "1"; + pixel_y = 28 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/space) +"YK" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 5 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -5; + pixel_y = 12 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -7; + pixel_y = -1 + }, +/turf/open/floor/plasteel/white, +/area/space) +"YL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/space) +"YM" = ( +/obj/effect/turf_decal/siding/thinplating/dark{ + dir = 5 + }, +/turf/open/floor/light/colour_cycle/dancefloor_a, +/area/service/abandoned_gambling_den) +"YR" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/freezer, +/area/commons/locker) +"YS" = ( +/obj/structure/bed, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/dorms/cabin/four) +"YT" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/space) +"YW" = ( +/obj/structure/railing{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/space) +"YX" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/wood, +/area/service/bar) +"Za" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/space) +"Zd" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 8; + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/plasteel/monofloor/white, +/area/space) +"Ze" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/obj/structure/sign/poster/contraband/wildcat, +/turf/open/floor/plating, +/area/service/abandoned_gambling_den) +"Zg" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/monofloor/dark, +/area/commons/cryopods) +"Zh" = ( +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plating, +/area/space) +"Zi" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 5 + }, +/obj/effect/turf_decal/siding/wood/corner{ + dir = 8 + }, +/obj/structure/sink/kitchen/directional/west, +/obj/structure/mirror/directional/east, +/turf/open/floor/wood, +/area/service/bar) +"Zk" = ( +/obj/structure/railing/left{ + dir = 1 + }, +/turf/open/floor/wood/tile, +/area/service/library) +"Zl" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/space) +"Zm" = ( +/obj/structure/railing/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/space) +"Zq" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen/coldroom) +"Zr" = ( +/obj/effect/turf_decal/tile/neutral/opposingcorners, +/turf/open/floor/plasteel/dark, +/area/service/cafeteria) +"Zs" = ( +/obj/effect/turf_decal/siding/wood{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/space) +"Zt" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/hallway/secondary/service) +"Zy" = ( +/obj/machinery/computer/security/hos, +/obj/structure/cable, +/obj/machinery/light/floor/directional/north, +/turf/open/floor/plasteel/dark, +/area/space) +"Zz" = ( +/obj/structure/table/wood/poker, +/obj/effect/turf_decal/siding/wood{ + dir = 8 + }, +/turf/open/floor/wood, +/area/space) +"ZA" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Шкафчик камеры 2" + }, +/turf/open/floor/resin, +/area/space) +"ZD" = ( +/obj/structure/table/wood, +/obj/machinery/fax{ + pixel_y = 6 + }, +/turf/open/floor/carpet, +/area/service/library/private) +"ZE" = ( +/obj/structure/table/wood, +/turf/open/floor/plasteel/dark, +/area/space) +"ZG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green/half/contrasted{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics/upper) +"ZI" = ( +/obj/machinery/door/airlock/public, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/space) +"ZK" = ( +/obj/effect/decal/cleanable/blood/tracks, +/obj/effect/decal/cleanable/blood/bubblegum, +/turf/open/floor/plating, +/area/space) +"ZL" = ( +/obj/structure/stairs/south, +/obj/structure/railing/right{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/space) +"ZM" = ( +/obj/structure/chair/sofa/corp{ + pixel_y = 4; + pixel_x = 6; + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/commons/dorms) +"ZN" = ( +/obj/machinery/door/airlock/public, +/turf/open/floor/plasteel, +/area/commons/toilet/locker) +"ZO" = ( +/obj/structure/flora/junglebush/large{ + pixel_y = -5; + pixel_x = -8 + }, +/turf/open/floor/plating/beach/sand, +/area/commons/locker) +"ZP" = ( +/obj/structure/chair/sofa/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/space) +"ZR" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/space) +"ZS" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -4 + }, +/obj/effect/turf_decal/siding/wood{ + dir = 9 + }, +/turf/open/floor/wood, +/area/service/bar) +"ZT" = ( +/obj/machinery/turntable, +/turf/open/floor/plasteel, +/area/space) +"ZU" = ( +/obj/effect/turf_decal/trimline/blue/filled/line{ + dir = 6 + }, +/obj/structure/closet/crate/freezer/blood, +/turf/open/floor/plasteel/white, +/area/space) +"ZV" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/wood, +/area/commons/dorms/cabin/two) +"ZW" = ( +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"ZY" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/space) +"ZZ" = ( +/obj/structure/table/reinforced, +/obj/item/training_toolbox{ + pixel_y = 8 + }, +/obj/item/training_toolbox, +/turf/open/floor/plasteel/dark, +/area/space) + +(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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +aa +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +uV +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +zA +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +wt +uV +zA +uV +wt +uV +uV +uV +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +wt +en +en +wt +uV +uV +uV +wt +en +en +wt +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +en +UN +UN +en +uV +zA +uV +en +UN +UN +en +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +en +UN +UN +en +uV +zA +uV +en +UN +UN +en +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +wt +en +en +wt +uV +uV +uV +wt +en +en +wt +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +uV +uV +uV +uV +uV +zA +uV +uV +uV +uV +uV +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +uV +uV +uV +uV +uV +zA +uV +uV +uV +uV +uV +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +wt +en +en +wt +uV +uV +uV +wt +en +en +wt +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +en +UN +UN +en +uV +zA +uV +en +UN +UN +en +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +uV +en +UN +UN +en +uV +zA +uV +en +UN +UN +en +uV +zA +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,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 +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 +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 +aa +aa +aa +aa +aa +uV +uV +uV +aa +aa +aa +uV +uV +uV +uV +wt +uV +wt +en +en +wt +uV +uV +uV +wt +en +en +wt +uV +wt +uV +uV +uV +uV +aa +aa +aa +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +"} +(94,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 +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 +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 +aa +aa +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +wt +uV +uV +uV +uV +uV +uV +uV +wt +uV +zA +uV +wt +uV +uV +uV +uV +uV +uV +uV +wt +uV +aa +aa +aa +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +"} +(95,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 +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 +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 +uV +uV +uV +uV +uV +uV +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +uV +uV +zA +zA +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(96,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 +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 +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 +uV +wt +en +en +wt +uV +zA +zA +uV +uV +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +uV +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +wt +en +en +wt +uV +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 +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 +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 +"} +(97,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 +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 +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 +uV +en +UN +UN +en +uV +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +uV +uV +zA +uV +uV +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +en +UN +UN +en +uV +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 +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 +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 +"} +(98,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 +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 +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 +uV +en +UN +UN +en +uV +zA +zA +uV +wt +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +en +UN +UN +en +uV +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 +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 +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 +"} +(99,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 +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 +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 +uV +wt +en +en +wt +uV +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +uV +wt +en +en +wt +uV +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 +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 +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 +"} +(100,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(101,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +VI +VI +VI +VI +VI +zA +zA +zA +VI +VI +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(102,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +VI +VI +VI +zA +VI +VI +VI +VI +VI +VI +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(103,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +VI +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(104,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 +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 +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 +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +VI +zA +zA +zA +zA +VI +VI +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +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 +"} +(105,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(106,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(107,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(108,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +mJ +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(109,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +dt +dt +dt +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(110,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(111,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +uV +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 +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 +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 +"} +(115,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +mJ +dR +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +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 +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 +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 +"} +(116,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +mJ +uV +zA +zA +zA +zA +VI +VI +VI +VI +VI +VI +zA +zA +zA +zA +uV +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 +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 +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 +"} +(117,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +mJ +dR +uV +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +dR +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ZL +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +dR +uV +zA +zA +zA +VI +zA +VI +VI +VI +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +vJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +uV +wt +zA +zA +wt +uV +uV +wt +uV +zA +zA +zA +zA +zA +VI +zA +VI +VI +zA +zA +zA +zA +zA +uV +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +wi +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +zA +zA +zA +VI +zA +VI +VI +zA +zA +zA +zA +zA +zA +uV +wt +zA +zA +wt +zA +zA +wt +zA +zA +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +VI +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +en +en +wt +uV +uV +wt +en +en +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +VI +VI +VI +zA +AN +zA +zA +zA +zA +zA +zA +uV +wt +en +en +wt +uV +uV +wt +en +en +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +uV +uV +uV +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +dt +dt +dt +mJ +dR +uV +zA +zA +zA +zA +IY +zA +zA +zA +zA +zA +uV +uV +uV +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +en +en +wt +uV +uV +wt +en +en +wt +wt +wt +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +dt +dt +dt +dt +dt +mJ +dR +uV +zA +zA +IY +VI +IY +zA +zA +zA +zA +uV +wt +wt +wt +wt +en +en +wt +uV +uV +wt +en +en +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +IY +VI +VI +VI +IY +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +zA +zA +zA +zA +uV +zA +zA +uV +zA +zA +zA +zA +uV +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +IY +VI +VI +VI +IY +zA +zA +zA +zA +uV +zA +zA +uV +zA +zA +uV +zA +zA +uV +zA +zA +uV +zA +zA +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +dt +dt +dt +dt +mJ +uV +zA +IY +IY +VI +VI +VI +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +en +en +wt +uV +uV +wt +en +en +wt +wt +wt +wt +uV +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +dt +dt +dt +dt +dt +mJ +dR +uV +zA +IY +IY +IY +IY +IY +zA +zA +zA +uV +wt +wt +wt +wt +en +en +wt +uV +uV +wt +en +en +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +dt +dt +dt +mJ +dR +uV +zA +zA +IY +VI +VI +zA +zA +zA +zA +zA +uV +uV +uV +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +en +UN +UN +en +uV +uV +en +UN +UN +en +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +en +en +wt +uV +uV +wt +en +en +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +uV +wt +en +en +wt +uV +uV +wt +en +en +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +uV +wt +zA +zA +wt +uV +uV +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +zA +zA +wt +zA +zA +wt +zA +zA +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +uV +mJ +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 +dt +dt +dt +mJ +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +uV +dR +mJ +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 +dt +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +VI +zA +VI +zA +zA +zA +zA +uV +mJ +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 +dt +mJ +uV +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +dR +mJ +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 +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +uV +mJ +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 +mJ +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +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 +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 +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 +"} +(141,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +uV +dR +mJ +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 +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +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 +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 +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 +"} +(142,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +zA +uV +dR +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +dR +uV +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +uV +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 +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 +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 +"} +(143,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +mJ +mJ +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +dR +mJ +mJ +dt +dt +dt +dt +dt +mJ +mJ +dR +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(147,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +dR +mJ +dt +dt +dt +mJ +dR +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(148,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +dR +mJ +mJ +mJ +dR +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(149,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(150,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(151,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(152,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 +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 +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 +uV +wt +wt +wt +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +wt +wt +wt +wt +uV +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 +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 +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 +"} +(153,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +zA +VI +VI +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(154,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +zA +zA +VI +VI +VI +zA +zA +zA +zA +zA +zA +zA +VI +zA +zA +VI +zA +zA +VI +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(155,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 +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 +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 +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +VI +VI +VI +VI +VI +zA +VI +VI +VI +zA +VI +zA +VI +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +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 +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 +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 +"} +(156,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 +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 +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 +uV +uV +uV +uV +uV +uV +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(157,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 +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 +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 +uV +wt +en +en +wt +uV +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +uV +wt +en +en +wt +uV +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 +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 +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 +"} +(158,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 +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 +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 +uV +en +UN +UN +en +uV +zA +zA +uV +wt +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +uV +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +en +UN +UN +en +uV +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 +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 +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 +"} +(159,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 +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 +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 +uV +en +UN +UN +en +uV +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +uV +uV +zA +uV +uV +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +en +UN +UN +en +uV +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 +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 +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 +"} +(160,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 +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 +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 +uV +wt +en +en +wt +uV +zA +zA +uV +aa +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +zA +uV +wt +uV +zA +zA +uV +wt +en +en +wt +uV +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 +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 +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 +"} +(161,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 +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 +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 +uV +uV +uV +uV +uV +uV +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +zA +uV +wt +uV +zA +zA +zA +zA +zA +uV +wt +uV +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +uV +uV +aa +aa +uV +uV +uV +uV +uV +uV +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 +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 +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 +"} +(162,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 +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 +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 +aa +aa +aa +aa +aa +uV +wt +uV +aa +aa +aa +uV +wt +uV +aa +aa +uV +uV +uV +uV +wt +uV +aa +uV +wt +uV +uV +uV +uV +aa +aa +uV +wt +uV +aa +aa +aa +uV +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +"} +(163,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 +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 +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 +aa +aa +aa +aa +aa +uV +uV +uV +aa +aa +aa +uV +uV +uV +aa +aa +uV +wt +en +en +wt +uV +aa +uV +wt +en +en +wt +uV +aa +aa +uV +uV +uV +aa +aa +aa +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +"} +(164,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +aa +uV +en +UN +UN +en +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(165,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +aa +uV +en +UN +UN +en +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(166,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +en +en +wt +uV +aa +uV +wt +en +en +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +aa +uV +uV +uV +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +uV +uV +aa +uV +uV +uV +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +en +en +wt +uV +aa +uV +wt +en +en +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +aa +uV +en +UN +UN +en +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +en +UN +UN +en +uV +aa +uV +en +UN +UN +en +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +wt +en +en +wt +uV +aa +uV +wt +en +en +wt +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +uV +uV +uV +uV +wt +uV +aa +uV +wt +uV +uV +uV +uV +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +aa +aa +aa +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +aa +aa +aa +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} + +(1,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +rN +eH +Vk +Vk +Vk +rN +rN +wt +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +kY +wP +kY +kY +kY +kY +rN +UN +UN +UN +UN +UN +UN +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +wP +wP +wP +wP +wP +wP +eH +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +VT +wP +wm +iZ +jA +wP +rN +rN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +tR +tR +tR +tR +Ci +rN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +tR +tR +tR +tR +yZ +rN +rN +rN +UN +UN +UN +UN +UN +UN +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +wm +iZ +jA +wP +KW +jn +fV +rN +rN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +wt +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 +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 +aa +aa +aa +"} +(85,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +wm +iZ +jA +wP +VT +sR +Cj +fV +rN +UN +UN +UN +UN +UN +dt +dt +wt +aa +aa +wt +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 +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 +aa +aa +aa +"} +(86,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +wm +iZ +jA +wP +VT +wP +sR +km +rN +rN +rN +UN +UN +wt +dt +dt +wt +wt +wt +wt +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 +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 +aa +aa +aa +"} +(87,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +tR +tR +tR +tR +tR +fG +fG +za +Tl +IN +rN +eH +rN +rN +dt +dt +wt +lG +NH +wt +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 +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 +aa +aa +aa +"} +(88,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +tR +tR +tR +tR +tR +tR +tR +wP +wP +wP +tR +tR +wP +wP +kY +rN +dt +dt +dt +dt +dt +wt +UN +UN +UN +aa +aa +aa +aa +aa +aa +UN +UN +UN +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 +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 +"} +(89,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +ek +jd +Vk +Vk +wP +wP +bO +tR +tR +gq +gq +gq +tR +tR +gq +wP +kY +Vk +dt +dt +dt +dt +dt +wt +UN +UN +UN +aa +wt +wt +wt +wt +aa +UN +UN +UN +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 +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 +"} +(90,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +Cg +wt +wt +wt +en +en +wt +aa +aa +aa +wt +en +en +wt +wt +wt +Vp +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +jd +jd +rl +xP +wP +wP +wP +tR +tR +RO +RO +RO +tR +tR +RO +wP +kY +Vk +dt +dt +wt +ek +ek +wt +UN +UN +UN +wt +wt +lG +NH +wt +wt +UN +UN +UN +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 +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 +"} +(91,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +ZL +wt +en +Jp +Jp +en +aa +aa +aa +en +Jp +Jp +en +wt +vL +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +jd +rl +rl +xP +xP +wP +wP +tR +tR +Ie +Ie +Ie +tR +tR +Ie +wP +kY +Vk +dt +dt +wt +wt +wt +wt +wt +Ch +wt +wt +ek +dt +dt +ek +wt +wt +Ch +wt +wt +wt +wt +wt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wi +wt +en +Jp +Jp +en +aa +aa +aa +en +Jp +Jp +en +wt +yS +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +ek +rl +rl +rl +xP +xP +Vk +tR +tR +tR +tR +tR +tR +tR +wP +wP +wP +eH +dt +dt +jd +fx +Cu +Cu +Cu +dt +Cu +Cu +Dw +dt +dt +Zl +Cu +Cu +Cu +Cu +Cu +Cu +Cu +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +Uj +wt +wt +wt +en +en +wt +BK +iC +BK +wt +en +en +wt +wt +wt +cp +dt +aa +aa +aa +aa +aa +iC +iC +iC +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +jd +rl +rl +rl +rl +rl +Vk +tR +tR +tR +tR +tR +tR +tR +fG +wP +kY +rN +dt +dt +WZ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,2) = {" +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 +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 +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 +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +dt +wB +zm +iC +iC +iC +iC +wt +BK +iC +BK +wt +iC +iC +iC +iC +iJ +MI +dt +wt +aa +aa +aa +aa +iC +wt +iC +iC +iC +wt +wt +wt +Sl +Sl +Sl +Sl +wt +wt +wt +wt +wt +wt +rl +rl +rl +jd +nZ +st +st +cW +cW +st +st +nZ +nZ +nZ +Qu +wt +dt +dt +jd +Yc +dt +Nz +BA +BA +BA +eL +dt +Hv +eL +dt +Hv +BA +BA +BA +JG +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +px +GF +zm +iC +iC +iC +iC +wt +BK +iC +BK +wt +iC +iC +iC +iC +iJ +br +px +wt +aa +aa +aa +aa +iC +wt +iC +iC +iC +iC +iC +Jp +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +Qu +nZ +nZ +nZ +nZ +Bd +Td +Td +Td +Td +Td +Bd +Tr +gR +gR +dD +wt +dt +dt +Sl +BX +dt +Rh +Sl +Sl +Sl +Sl +Le +Sl +Sl +Le +Sl +Sl +Sl +Sl +sw +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,2) = {" +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 +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 +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 +wt +en +en +wt +iC +iC +iC +iC +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +qc +qc +PK +iC +iC +iC +iC +xI +BK +iC +BK +xI +iC +iC +iC +iC +UV +qc +qc +wt +iC +iC +iC +iC +iC +wt +Jp +Jp +Jp +Jp +Jp +xI +Jp +Jp +Jp +Jp +wt +en +en +wt +Jp +Qu +LZ +KB +KB +wo +Td +Td +VL +oW +VL +Td +Td +nO +iw +iw +At +jd +dt +dt +Sl +VS +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +sw +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,2) = {" +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 +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 +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 +en +Jp +Jp +en +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +en +Jp +Jp +en +iC +Qu +cP +KB +KB +AC +Td +Fa +YB +YB +YB +ak +Td +nO +iw +iw +At +jd +dt +dt +Sl +KP +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +ey +dt +dt +lU +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,2) = {" +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 +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 +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 +en +Jp +Jp +en +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +en +Jp +Jp +en +iC +Qu +mP +KB +KB +Ov +Td +BV +YB +BW +YB +QG +Td +Tr +gR +gR +dD +jd +dt +dt +jd +Yc +dt +Rh +wt +EH +NP +NP +NP +NP +NP +NP +NP +NP +fu +wt +Sl +Bw +Bw +Sl +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,2) = {" +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 +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 +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 +wt +en +en +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +Jp +Jp +Jp +Jp +wt +en +en +wt +Jp +Qu +bu +KB +Od +xG +Td +Fa +YB +YB +YB +ak +Td +nO +iw +iw +At +jd +dt +dt +Sl +BX +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +Lv +dt +dt +Cs +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +Qu +xG +KB +KB +TA +Td +Td +PS +jL +PS +Td +Td +nO +iw +iw +At +jd +dt +dt +Sl +VS +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +dQ +dt +dt +bh +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +Qu +Yw +KB +Fz +nZ +kW +bz +Zk +Td +Td +Td +Bd +hD +hg +hg +Xh +jd +dt +dt +Sl +KP +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +ZT +dt +dt +wy +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +ae +JJ +oN +JJ +JJ +JJ +JJ +lN +PJ +KB +KB +mG +jd +jd +jd +jd +jd +dt +dt +jd +Yc +dt +Rh +wt +mF +NP +NP +NP +NP +NP +NP +NP +NP +Dg +wt +Sl +Bw +Bw +Sl +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +ae +UR +ou +ou +ou +ou +xk +nZ +VF +KB +KB +mG +jd +UN +UN +UN +NV +dt +dt +Sl +BX +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +fY +dt +dt +wr +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +xI +Jp +ae +ZD +DF +DF +of +uQ +Dc +nZ +xY +KB +Fh +mG +jd +UN +UN +UN +ek +dt +dt +Sl +VS +dt +Rh +Sl +NP +NP +NP +NP +NP +NP +NP +NP +NP +NP +Sl +sw +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +hz +ig +DF +DF +JJ +JJ +JJ +nZ +nZ +vr +nZ +nZ +jd +BA +BA +ek +ek +dt +dt +Sl +KP +dt +Rh +Sl +Sl +Sl +Sl +Le +Sl +Sl +Le +Sl +Sl +Sl +Sl +sw +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +hz +Nm +DF +DF +JJ +UN +UN +NV +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +jd +Yc +dt +Zm +gl +gl +gl +mq +dt +oY +mq +dt +oY +gl +gl +gl +my +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +hz +DF +DF +DF +JJ +UN +UN +NV +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +WZ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +hO +hO +hO +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +hz +DF +DF +DF +JJ +UN +UN +NV +dt +dt +jd +jd +Ch +jd +jd +ek +dt +dt +dt +jd +Jj +kj +kj +kj +kj +kj +kj +qI +dt +dt +zH +kj +kj +kj +kj +kj +kj +kj +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +dt +dt +dt +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +ae +IO +Aw +tj +JJ +UN +UN +NV +dt +dt +jd +UN +UN +Ij +wt +wt +dt +dt +dt +wt +wt +ek +ek +ek +ek +ek +ek +ek +dt +dt +ek +fQ +Zz +Zz +Zz +Zz +Zz +wN +ek +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +tQ +dt +dt +dt +tQ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +ae +ae +JJ +JJ +JJ +UN +UN +ek +dt +dt +Ch +UN +UN +UN +wt +HC +ZI +ZI +ZI +HC +wt +Mu +ek +ek +ab +ab +ZZ +wt +wH +zC +wt +xN +pu +Ht +Ht +Ht +vm +LV +wt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +hO +hO +mJ +ek +mJ +tQ +dt +dt +dt +tQ +mJ +Wr +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +gA +UN +UN +UN +NE +ek +ek +ek +dt +dt +jd +UN +UN +UN +wt +wt +pO +dt +EJ +wt +wt +wt +jd +Ch +jd +wt +wt +wt +wt +wt +wt +wt +bP +EK +EK +wc +LV +wt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +ek +ek +ek +ek +mJ +tQ +dt +dt +dt +tQ +mJ +ek +Hk +mJ +em +mJ +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +wt +jd +jd +jd +jd +jd +jd +dt +dt +jd +jd +Ch +jd +wt +rl +Zs +dt +PF +rl +wt +UN +UN +UN +UN +Lf +wt +UN +UN +UN +en +bt +bt +bt +bt +bt +bt +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +mJ +ek +ek +ek +ek +ek +mJ +mJ +Rm +mJ +mJ +mJ +mJ +pc +Pa +mJ +Ht +Ht +Ht +hO +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +jd +dt +dt +jd +UN +UN +Qe +jd +rl +Zs +dt +PF +rl +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +bt +bt +In +In +In +In +In +bt +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +VU +VU +mJ +ek +ek +ek +ek +ek +mJ +dt +dt +dt +mJ +ek +Cu +dt +nY +mJ +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +jd +UN +UN +UN +wt +rl +Zs +dt +PF +rl +wt +UN +UN +UN +UN +UN +wt +UN +UN +UN +bt +ts +il +il +il +il +il +qf +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +VU +VU +VU +mJ +ek +ek +ek +ek +ek +mJ +dt +dt +dt +mJ +ek +dt +dt +Cg +hO +Ht +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +Ch +UN +UN +UN +wt +wt +ta +dt +eE +wt +wt +wt +jd +jd +jd +wt +wt +wt +UN +wt +bt +ut +kA +kA +kA +kA +kA +Xd +bt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +VU +VU +VU +VU +mJ +ek +ek +ek +ek +mJ +mJ +dt +dt +dt +mJ +ek +dt +dt +dt +rX +Ht +Ht +Ht +Ht +Ht +Ht +Ht +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +jd +UN +UN +UN +wt +rl +Zs +dt +PF +rl +wt +rl +lk +lk +lk +rl +wt +UN +UN +UN +bt +eU +js +eU +js +kA +kA +kA +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +VU +VU +VU +VU +mJ +mJ +ek +mJ +mJ +mJ +dt +dt +dt +dt +cC +dt +dt +dt +Cg +hO +Ht +Ht +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +jd +dt +dt +jd +UN +UN +UN +jd +rl +Zs +dt +PF +rl +jd +lk +rl +rl +rl +lk +jd +UN +UN +UN +bt +bt +vx +kM +bt +LE +dV +bt +bt +bt +bt +bt +bt +bt +bt +bt +bt +bt +bt +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +VU +VU +VU +VU +VU +mJ +dt +dt +dt +dt +mJ +dt +dt +dt +mJ +mJ +BA +pJ +dt +Cg +dR +mJ +Ht +Ht +Ht +Ht +Ht +Ht +yW +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +Sl +ZI +ZI +Sl +wt +wt +wt +ZI +ZI +wt +wt +wt +wt +wt +rl +Zs +dt +PF +rl +wt +lk +rl +rl +rl +lk +wt +UN +UN +UN +en +bt +kA +kA +bt +bt +bt +bt +jw +lm +uS +Lq +Ty +ib +ub +Hg +bV +Lq +MD +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +wB +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +VU +VU +VU +VU +VU +hO +dt +dt +dt +dt +hO +dt +dt +dt +mJ +iC +iC +GS +dt +dt +nY +dR +hO +hO +hO +hO +mJ +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +MI +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +Zl +ek +wt +wt +HK +dt +gU +wt +wt +wt +tJ +Df +Ta +wt +wt +wt +UN +Px +Px +bt +kA +kA +al +xo +FK +Px +hY +Px +Sa +Vz +lC +pe +Ac +Ei +Hg +yg +Lg +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +px +px +tH +dt +dt +kj +dt +dt +gr +px +GF +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +hO +VU +VU +VU +VU +VU +VU +zy +dt +dt +dt +dt +ul +dt +dt +dt +mJ +iC +iC +dt +dt +dt +dt +Cu +Cu +Cu +Cu +nY +hO +vv +Sn +dH +jG +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +br +px +tH +dt +dt +kj +dt +dt +gr +px +px +tH +dt +dt +ek +wt +HC +pO +dt +dt +HC +wt +HC +dt +dt +EJ +HC +wt +UN +UN +Px +lA +Sy +kA +kA +kA +kA +kA +kA +lm +Px +mX +gV +BP +Tz +In +Nu +sO +Hg +Lq +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +dZ +dZ +wt +Vp +Cg +wt +wH +zC +wt +qc +qc +PK +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +hO +VU +VU +VU +VU +VU +VU +hO +dt +dt +dt +dt +hO +dt +dt +dt +mJ +iC +iC +mT +kj +kj +kj +kj +kj +dt +dt +dt +HL +os +os +os +jG +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UV +qc +qc +wt +wH +zC +wt +Vp +Cg +wt +dZ +dZ +wt +Vp +dt +ek +wt +rl +Za +dt +dt +Zl +HC +Dw +dt +dt +Bo +rl +wt +UN +Px +Px +vw +Of +cU +cU +cU +cU +kA +kA +Gc +Px +Px +jz +jz +jz +jz +Px +Px +gs +Hg +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +wt +wt +Vp +Cg +wt +wt +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +hO +VU +VU +VU +VU +VU +VU +mJ +dt +dt +dt +dt +mJ +mJ +oq +Kp +mJ +mJ +mJ +hO +hO +hO +hO +hO +mJ +Vp +dt +Cg +hO +mJ +mJ +mJ +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +wt +wt +Vp +Cg +wt +wt +wt +wt +Vp +dt +ek +jd +rl +UT +dt +dt +dt +dt +dt +dt +dt +MQ +rl +jd +UN +Px +Qk +Of +fJ +mx +Vz +Vz +Vz +NN +kA +ac +rK +yA +et +eG +eG +eG +YR +Px +Rv +qD +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +hO +ul +hO +mJ +mJ +Cp +qR +Ak +Cp +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +dt +gf +os +os +os +Wg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Vp +dt +ek +jd +rl +UT +dt +vU +pw +pw +pw +Bh +dt +MQ +rl +jd +UN +Px +Qk +sM +eu +Vz +gu +Da +Vz +Li +MW +fo +Vr +zb +mR +FL +mR +EM +dL +jz +Aa +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +zB +Oi +If +SX +ZE +mJ +Lj +Lj +ek +ek +Lj +mJ +Cp +LG +RD +uA +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +Cg +hO +ur +Sn +dH +Wg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Vp +dt +ek +wt +rl +xs +dt +dt +dt +dt +dt +dt +dt +dq +rl +wt +UN +bt +Qk +sM +Vz +Vz +Vz +Vz +Vz +Lq +MW +AZ +rY +Nq +eA +eA +eA +eA +rz +jz +In +kN +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +dZ +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Tf +ek +NY +NY +NY +ZE +wq +Fk +ek +ek +ek +Lj +mJ +Cp +LG +Yt +VJ +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +Vf +mJ +mJ +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +dZ +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Vp +dt +wt +wt +HC +HK +dt +MA +vp +HC +vp +pJ +dt +gU +HC +wt +UN +bt +Qk +sM +fK +qF +Kq +Vz +Kq +Vz +MW +Eh +rY +kb +eA +eA +eA +eA +rz +jz +JF +OM +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +en +en +wt +Vp +Cg +wt +en +en +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Tf +Sz +NY +NY +NY +NY +dh +mJ +ek +ek +ek +ek +ek +mJ +Cp +LG +Yt +VJ +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +EY +mJ +Cp +Cp +Cp +Cp +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Vp +dt +nY +wt +fx +dt +MA +Fc +Kl +CK +CK +DQ +pJ +dt +nY +wt +oP +bt +qr +kA +dT +Ax +WQ +qx +mn +EV +kA +Eh +rY +cq +eA +eA +eA +eA +rz +jz +Pe +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Kr +Kr +Kr +Kr +da +da +Kr +Kr +Kr +Kr +fE +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +ge +ek +NY +NO +ME +NY +ek +wq +ek +ek +Lj +ek +ek +mJ +Cp +vM +JC +gG +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +kO +mJ +Cp +EU +EU +Cp +Cp +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +RX +Kr +Kr +Kr +Kr +da +da +Kr +Kr +Kr +Kr +Pz +dt +dt +ZI +dt +dt +Rh +rl +VG +yp +yp +rl +Hw +dt +dt +ZI +kA +kA +kA +kA +kA +CN +Of +kA +AB +hZ +kA +lL +rY +kb +eA +eA +eA +eA +rz +Px +In +qb +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +ih +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Zy +Ey +NY +Xa +Vj +rP +ek +kI +ek +ek +Lj +ek +ek +mJ +YH +Do +cL +on +OB +ol +IC +IC +IC +IC +IC +AK +ek +ek +ek +zQ +Cp +oV +WH +Cp +Cp +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +ys +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +LG +dt +dt +ZI +dt +dt +HC +rl +CK +wt +Kn +rl +HC +dt +dt +ZI +kA +kA +kA +kA +kA +lm +kA +kA +kA +Be +kA +tT +rY +kb +eA +eA +eA +eA +nS +Px +Rv +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +eM +eM +eM +eM +DC +DC +eM +eM +eM +eM +MP +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Fk +ek +NY +uI +Pm +NY +ek +wq +ek +ek +Lj +ek +ek +mJ +Cp +OS +FN +pb +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +fW +mJ +Cp +cE +cE +Cp +Cp +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +hx +eM +eM +eM +eM +DC +DC +eM +eM +eM +eM +xb +dt +dt +ZI +dt +dt +Rh +rl +Ru +Ow +Nd +rl +Hw +dt +dt +ZI +kA +kA +kA +kA +kA +md +jR +kA +ns +mu +kA +AZ +rY +kb +eA +eA +eA +eA +rz +Px +In +Jf +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +en +en +wt +Vp +Cg +wt +en +en +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Tf +uf +NY +NY +NY +NY +dh +mJ +ek +ek +ek +ek +ek +mJ +Cp +LG +Yt +VJ +Cp +mJ +IC +IC +IC +IC +IC +hO +Vp +dt +bF +mJ +Cp +Cp +Cp +Cp +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Vp +dt +gx +wt +Jj +dt +SI +Mr +rl +rl +rl +FP +GS +dt +gx +wt +oP +bt +qr +kA +hT +Gw +is +hT +yB +TS +kA +Eh +rY +cq +eA +eA +eA +eA +rz +jz +GU +Es +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +dZ +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Tf +ek +cO +NY +NY +ek +wq +nT +ek +ek +ek +Lj +mJ +Cp +LG +Yt +VJ +Cp +mJ +Hf +IC +IC +IC +IC +hO +Vp +dt +Ph +mJ +mJ +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +dZ +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Vp +dt +wt +wt +HC +pO +dt +SI +jN +HC +jN +GS +dt +EJ +HC +wt +UN +bt +Qk +sM +Vz +uF +pg +Vz +pg +mi +MW +Eh +rY +kb +eA +eA +eA +eA +rz +jz +Ns +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Tf +Sc +Vi +vV +ud +XX +mJ +Lj +Lj +ek +ek +Lj +mJ +Cp +LG +ZY +Cm +Cp +mJ +IT +IC +IC +IC +uE +hO +Vp +dt +Cg +hO +ZA +Sn +dH +WS +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +en +Jp +Jp +en +Vp +Cg +en +Jp +Jp +en +Vp +dt +ek +wt +rl +Za +dt +dt +dt +dt +dt +dt +dt +Bo +rl +wt +UN +bt +Qk +sM +Lq +Vz +Vz +Vz +Vz +Vz +MW +lL +rY +Nq +eA +eA +eA +eA +rz +jz +xz +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +hO +ul +hO +mJ +mJ +Cp +qR +Ak +Cp +Cp +mJ +XT +IC +pt +IC +gX +hO +Vp +dt +dt +Ll +os +os +os +WS +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +en +en +wt +Vp +Cg +wt +en +en +wt +Vp +dt +ek +jd +rl +UT +dt +vU +pw +pw +pw +Bh +dt +MQ +rl +jd +UN +Px +Qk +sM +xy +WL +tP +zo +Vz +Vz +MW +fo +Xy +pF +pF +pF +pF +pF +En +jz +In +In +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +wt +wt +Vp +Cg +wt +wt +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +uU +TR +TR +TR +TR +TR +Tv +mJ +dt +dt +dt +dt +mJ +mJ +oq +Kp +mJ +mJ +mJ +hO +hO +OI +hO +hO +mJ +Vp +dt +Cg +hO +mJ +mJ +mJ +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +wt +wt +Vp +Cg +wt +wt +wt +wt +Vp +dt +ek +jd +rl +UT +dt +dt +dt +dt +dt +dt +dt +MQ +rl +jd +UN +Px +Qk +jR +sb +ZO +Vz +Vz +Vz +It +kA +MN +Jl +Ar +co +co +co +co +KT +Px +vt +HT +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +dZ +dZ +wt +Vp +Cg +wt +lG +NH +wt +ja +ja +cF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +uU +CZ +CZ +CZ +CZ +CZ +CZ +hO +dt +dt +dt +dt +dt +dt +dt +dt +mJ +ek +Cu +Cu +Cu +Cu +Cu +Cu +Cu +dt +dt +dt +dw +os +os +os +zg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +hB +ja +ja +wt +lG +NH +wt +Vp +Cg +wt +dZ +dZ +wt +Vp +dt +ek +wt +rl +xs +dt +dt +zH +HC +qI +dt +dt +dq +rl +wt +UN +Px +Px +Ah +jR +ji +ji +ji +ji +kA +kA +pk +Px +Px +jz +jz +jz +jz +Px +Px +wx +Lq +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sK +Rk +Rk +lX +dt +dt +Cu +dt +dt +sK +Rk +zz +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +uU +AD +pD +IC +IC +IC +CZ +mm +dt +dt +dt +dt +dt +dt +dt +dt +mJ +vL +dt +dt +dt +dt +dt +kj +kj +kj +kj +gx +hO +Ml +Sn +dH +zg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +RW +Rk +lX +dt +dt +Cu +dt +dt +sK +Rk +Rk +lX +dt +dt +ek +wt +HC +HK +dt +dt +HC +wt +HC +dt +dt +gU +HC +wt +UN +UN +Px +Fl +Sd +kA +kA +jg +kA +pQ +kA +pk +Px +DG +Th +xz +oH +TP +Ev +Vz +uy +Rq +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +wB +zm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +BT +IC +IC +IC +wp +hO +dt +dt +dt +dt +dt +dt +dt +dt +mJ +gT +dt +dt +dt +dt +gx +dR +hO +hO +hO +hO +mJ +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +MI +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +zH +ek +wt +wt +pO +dt +EJ +wt +wt +wt +Ka +ru +ir +wt +wt +wt +UN +jd +Ck +Ck +ZN +Ck +Ck +Ck +Ck +cM +Jq +nP +Vz +XD +Ly +wx +Xb +tx +Vz +xw +MO +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +NM +IC +IC +IC +ER +mJ +dt +dt +dt +dt +dt +dt +dt +dt +mJ +yS +dt +dt +dt +Cg +dR +mJ +Ht +Ht +Ht +Ht +Ht +Ht +Ht +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +Sl +ZI +ZI +Sl +wt +wt +wt +ZI +ZI +wt +wt +wt +wt +wt +rl +Zs +dt +PF +rl +wt +lk +rl +rl +rl +lk +wt +UN +UN +UN +Ck +dY +kC +FU +oM +GG +Ck +bj +Ua +Jq +Jq +Jq +Jq +Jq +Jq +Jq +bt +bt +bt +bt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +Gn +IC +IC +pD +hO +dt +dt +dt +dt +dt +dt +dt +dt +mJ +ek +dt +dt +dt +Cg +IH +Ht +Ht +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +jd +dt +dt +jd +UN +UN +Qe +jd +rl +Zs +dt +PF +rl +jd +lk +rl +rl +rl +lk +jd +UN +UN +UN +Ck +UM +kC +kC +Ck +Ck +Ck +yu +Dd +eI +ML +nP +ei +ei +ei +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +Bb +IC +IC +pD +hO +dt +dt +dt +dt +dt +dt +dt +dt +ul +dt +dt +dt +dt +dt +qG +Ht +Ht +Ht +Ht +Ht +Ht +Ht +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +jd +UN +UN +UN +wt +rl +Zs +dt +PF +rl +wt +rl +lk +lk +lk +rl +wt +UN +UN +UN +Ck +LP +kC +kC +oi +RM +Ck +YD +uo +uo +Pp +HQ +TI +TI +TI +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(141,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +dk +IC +IC +hO +dt +dt +dt +dt +dt +dt +dt +dt +mJ +ek +dt +dt +dt +gx +hO +Ht +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +Ch +UN +UN +UN +wt +wt +ta +dt +eE +wt +wt +wt +jd +jd +jd +wt +wt +wt +UN +UN +Ck +UM +kC +kC +Ck +Ck +Ck +ph +bG +VZ +gN +nP +Tp +Ww +yb +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(142,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +AV +oC +mJ +dt +dt +dt +dt +dt +mJ +mJ +Rm +mJ +mJ +mJ +mJ +qk +yN +mJ +Ht +Ht +Ht +Ht +Ht +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +Sl +dt +dt +jd +UN +UN +UN +wt +rl +Zs +dt +PF +rl +wt +UN +UN +UN +UN +UN +wt +UN +UN +UN +Ck +kC +kC +kC +hk +jv +Ck +ag +id +id +kU +HQ +TI +TI +TI +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(143,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +mJ +dt +dt +dt +dt +dt +mJ +tt +dt +dt +dt +dt +mJ +ek +Hk +mJ +Ht +Ht +Ht +hO +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +dt +dt +dt +dt +dt +dt +dt +dt +jd +dt +dt +jd +UN +UN +UN +jd +rl +Zs +dt +PF +rl +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +Ck +UM +kC +kC +Ck +Ck +tk +uo +Pg +cY +iQ +nP +Vx +Vx +Vx +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +dt +dt +dt +dt +mJ +tt +dt +dt +dt +dt +mJ +ek +Hk +mJ +aq +mJ +hO +hO +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +wt +jd +jd +jd +jd +jd +jd +dt +dt +jd +jd +Ch +jd +wt +rl +Zs +dt +PF +rl +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +Ck +BQ +oK +DD +jq +DS +tk +np +Jq +Jq +Jq +Jq +Jq +Jq +Jq +Jq +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +hO +hO +mJ +dt +mJ +tt +dt +dt +dt +dt +mJ +Wr +mJ +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +gA +UN +UN +UN +NE +ek +ek +ek +dt +dt +jd +UN +UN +Ij +wt +wt +HK +dt +gU +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +Ck +Ck +Ck +Ck +tk +tk +tk +UN +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +mJ +dt +dt +dt +dt +dt +mJ +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +wt +wt +jd +jd +jd +UN +UN +ek +dt +dt +Ch +UN +UN +UN +wt +HC +ZI +ZI +ZI +HC +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(147,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +dt +dt +dt +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +jd +UN +UN +UN +wt +wt +dt +dt +dt +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +hO +hO +hO +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +jd +jd +Ch +jd +jd +ek +dt +dt +dt +Cu +Cu +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(149,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +kj +kj +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +EJ +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(151,1,2) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(152,1,2) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +xI +Jp +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(153,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(154,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +gU +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(155,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +dt +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(156,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +EJ +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(157,1,2) = {" +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 +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 +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 +wt +en +en +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +Jp +Jp +Jp +Jp +wt +en +en +wt +Jp +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(158,1,2) = {" +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 +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 +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 +en +Jp +Jp +en +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +en +Jp +Jp +en +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +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 +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 +"} +(159,1,2) = {" +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 +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 +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 +en +Jp +Jp +en +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +Jp +BK +iC +BK +Jp +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +pM +Jp +Jp +en +iC +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +PF +rl +wt +ek +ek +dt +ek +ek +wt +wt +UN +UN +UN +UN +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 +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 +"} +(160,1,2) = {" +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 +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 +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 +wt +en +en +wt +iC +iC +iC +iC +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +ja +ja +cF +iC +iC +iC +iC +xI +BK +iC +BK +xI +iC +iC +iC +iC +hB +ja +ja +wt +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +xI +Jp +Jp +Jp +Jp +wt +en +en +wt +Jp +wt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +dt +gU +rT +fj +Cu +Cu +dt +Cu +Cu +ZL +wt +UN +UN +UN +UN +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 +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 +"} +(161,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +Rk +zz +zm +iC +iC +iC +iC +wt +BK +iC +BK +wt +iC +iC +iC +iC +iJ +RW +Rk +wt +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +Jp +iC +wt +wt +jd +jd +Sl +Sl +Sl +jd +jd +jd +aa +aa +aa +aa +aa +aa +aa +aa +EJ +Ue +Sb +kj +kj +dt +kj +kj +wi +wt +UN +UN +UN +UN +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 +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 +"} +(162,1,2) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +aa +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +dt +wB +zm +iC +iC +iC +iC +wt +BK +iC +BK +wt +iC +iC +iC +iC +iJ +MI +dt +wt +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +wt +wt +wt +wt +wt +wt +qQ +uj +tn +jS +jS +jS +Xr +qQ +jd +aa +aa +aa +aa +aa +aa +aa +aa +PF +rl +wt +ek +ek +dt +ek +ek +wt +wt +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 +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 +"} +(163,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +Kg +wt +wt +wt +en +en +wt +BK +iC +BK +wt +en +en +wt +wt +wt +fg +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +qQ +CK +CK +CK +JX +Kl +CK +Xt +OK +jd +aa +aa +aa +aa +aa +aa +aa +aa +PF +rl +wt +UN +UN +UN +UN +UN +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 +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 +"} +(164,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +ZL +wt +en +Jp +Jp +en +aa +aa +aa +en +Jp +Jp +en +wt +vL +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +mw +Xt +Kn +dx +yp +CK +Ha +Lp +qQ +jd +aa +aa +aa +aa +aa +aa +aa +aa +PF +rl +wt +UN +UN +UN +UN +UN +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 +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 +"} +(165,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wi +wt +en +Jp +Jp +en +aa +aa +aa +en +Jp +Jp +en +wt +yS +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +QN +Fd +CK +jd +Sl +vS +Sl +wt +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +gU +wt +wt +UN +UN +UN +UN +UN +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 +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 +"} +(166,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +Cg +wt +wt +wt +en +en +wt +aa +aa +aa +wt +en +en +wt +wt +wt +Vp +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dl +Kl +CK +Sl +On +rB +Ur +ZL +wt +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +CK +Xr +CK +Sl +la +HV +FW +wi +wt +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +QN +CK +iU +jd +Sl +vS +Sl +wt +wt +wt +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +tU +Kn +CK +CK +Xt +CK +CK +Kn +qQ +jd +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +qQ +CK +uj +Xr +JX +Kl +Fd +CK +OK +jd +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +qQ +VG +tn +jS +jS +jS +uj +qQ +jd +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,1,2) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +jd +jd +Sl +Sl +Sl +jd +jd +jd +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jy +Cp +gZ +Cp +qh +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(204,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +Jp +Jp +hB +ja +wt +Cp +Cp +Cp +wt +ja +cF +Jp +Jp +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(205,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +hB +ja +ja +ja +ja +kX +SJ +oL +Cu +dt +Cu +Np +wK +ww +ja +ja +ja +ja +cF +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(206,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +hB +ja +kX +SJ +Jh +Jh +Rk +Rk +lX +dt +dt +dt +dt +dt +sK +Rk +Rk +Jh +Jh +wK +ww +ja +cF +Jp +Jp +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(207,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +Jp +hB +ja +kX +SJ +Jw +Fr +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +Kb +Rk +wK +ww +ja +cF +Jp +iC +iC +iC +iC +iC +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 +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 +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 +"} +(208,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +Jp +hB +kX +SJ +Jw +Fr +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +Kb +KH +wK +ww +cF +Jp +iC +iC +iC +iC +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 +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 +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 +"} +(209,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +Jp +iJ +SJ +Fw +dt +dt +dt +dt +kj +kj +ek +ek +ek +kj +dt +dt +dt +kj +ek +ek +ek +kj +kj +dt +dt +dt +dt +ot +wK +zm +Jp +iC +iC +iC +iC +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 +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 +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 +"} +(210,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +Jp +hB +kX +nC +dt +dt +dt +kj +ek +ek +ek +dR +mJ +mJ +aF +Cp +Cp +Cp +aF +mJ +mJ +dR +ek +ek +ek +kj +dt +dt +dt +YG +ww +cF +Jp +iC +iC +iC +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 +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 +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 +"} +(211,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +Jp +iJ +SJ +Fr +dt +dt +gx +ek +ek +ek +dR +mJ +ek +ek +ek +dt +dt +dt +ek +ek +ek +mJ +dR +ek +ek +ek +Jj +dt +dt +Kb +wK +zm +Jp +iC +iC +iC +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 +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 +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 +"} +(212,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +hB +kX +nC +dt +dt +Cg +ek +dR +aF +aF +mJ +ek +ek +ek +ek +dt +dt +dt +ek +ek +ek +ek +mJ +aF +aF +dR +ek +Vp +dt +dt +wB +ww +cF +Jp +iC +iC +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 +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 +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 +"} +(213,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +SJ +Fr +dt +dt +ek +ek +aF +fx +Cu +nY +ek +ek +ek +ek +dt +dt +dt +ek +ek +ek +ek +ek +ek +ek +aF +ek +ek +dt +dt +Kb +wK +zm +Jp +iC +iC +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 +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 +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 +"} +(214,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +ek +aF +Vp +dt +dt +Cu +Cu +dt +dt +dt +dt +dt +dt +dt +dt +nY +ek +ek +ek +aF +ek +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +aa +aa +aa +aa +aa +px +px +tH +dt +dt +dt +dt +dt +gr +jy +Us +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +dR +mJ +Jj +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +nY +ek +ek +mJ +dR +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +aa +aa +aa +aa +aa +qc +DB +sN +Sm +kj +dt +kj +Qn +Us +sd +qc +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +dR +mJ +ek +ek +Vp +dt +dt +gx +aF +qw +pJ +dt +MA +JG +aF +Jj +dt +dt +nY +ek +ek +mJ +dR +ek +dt +dt +wB +zm +Jp +iC +iC +aa +aa +aa +aa +aa +Jp +UV +qc +wt +Cp +Cp +Cp +wt +qc +PK +Jp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +mJ +ek +ek +fx +dt +dt +gx +ek +mJ +lt +iC +iC +iC +dU +mJ +ek +Jj +dt +dt +nY +ek +ek +mJ +ek +dt +dt +wB +zm +Jp +iC +iC +aa +aa +aa +aa +aa +iC +Jp +Jp +mv +Cp +KU +Cp +Hp +Jp +Jp +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +Jp +hB +kX +MI +dt +dt +ek +mJ +mJ +aF +aF +dt +aF +aF +aF +mJ +iC +iC +iC +iC +iC +mJ +mJ +aF +aF +dt +aF +aF +mJ +mJ +UH +dt +dt +wB +ww +cF +Jp +iC +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +Jp +Jp +Jp +Jp +iJ +SJ +fg +dt +dt +ek +mJ +ek +fx +dt +dt +dt +nY +ek +dR +mJ +Jp +Qa +Jp +mJ +dR +ek +fx +dt +dt +dt +nY +ek +mJ +ek +dt +dt +Kg +wK +zm +Jp +Jp +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +ja +ja +ja +DJ +wt +Bc +dt +dt +dt +Cg +aF +fx +dt +dt +kj +dt +dt +nY +dh +mJ +mJ +mJ +mJ +mJ +UH +fx +dt +dt +kj +dt +dt +nY +aF +Vp +dt +qI +dt +tC +wt +HH +ja +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +zi +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +Lh +dt +dt +gx +Cp +Jj +dt +dt +dt +ZL +mJ +aK +mJ +vL +dt +dt +dt +gx +Cp +Jj +dt +dt +Lh +dt +Cg +ek +dt +Cg +Cp +Cp +Cp +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +ef +ef +ef +ic +Cp +dt +dt +dt +dt +dt +Cp +dt +Cg +Cp +Yt +Cp +Vp +dt +dt +vJ +mJ +Jp +mJ +gT +dt +dt +Cg +Cp +Yt +Cp +Vp +dt +Cp +dt +ek +Cg +Vp +dt +Cp +Id +ef +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +lu +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +Cp +dt +dt +nY +Cp +fx +dt +dt +dt +wi +mJ +gD +mJ +yS +dt +dt +dt +nY +Cp +fx +dt +dt +Cp +dt +Cg +ek +dt +Cg +Cp +Cp +Cp +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +qc +qc +qc +Bp +wt +Qs +dt +dt +dt +Cg +aF +Jj +dt +dt +Cu +dt +dt +gx +dh +mJ +mJ +mJ +mJ +mJ +UH +Jj +dt +dt +Cu +dt +dt +gx +aF +Vp +dt +Dw +dt +LN +wt +Wl +qc +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +Jp +Jp +Jp +Jp +iJ +sN +cp +dt +dt +ek +mJ +ek +Jj +dt +dt +dt +gx +ek +dR +mJ +dt +aK +dt +mJ +dR +ek +Jj +dt +dt +dt +gx +ek +mJ +ek +dt +dt +Uj +Us +zm +Jp +Jp +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +Jp +UV +DB +MI +dt +dt +ek +mJ +mJ +aF +aF +dt +aF +aF +aF +mJ +iC +iC +iC +iC +iC +mJ +mJ +aF +aF +dt +aF +aF +mJ +mJ +UH +dt +dt +wB +sd +PK +Jp +iC +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +mJ +ek +ek +Jj +dt +dt +nY +ek +mJ +dt +dt +dt +dt +dt +dt +mJ +dt +dt +dt +gx +ek +ek +mJ +ek +dt +dt +wB +zm +Jp +iC +iC +aa +aa +aa +aa +aa +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +dR +mJ +ek +ek +Jj +dt +dt +nY +aF +dt +dt +dt +dt +dt +dt +mJ +dt +dt +dt +ek +ek +mJ +dR +ek +dt +dt +wB +zm +Jp +iC +iC +aa +aa +aa +aa +aa +iC +Jp +Jp +Jy +Cp +gZ +Cp +qh +Jp +Jp +iC +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +dR +mJ +ek +ek +dt +dt +dt +dt +dt +dt +dt +dt +iC +iC +mJ +dt +dt +dt +ek +mJ +dR +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +aa +aa +aa +aa +aa +Jp +hB +ja +wt +Cp +Cp +Cp +wt +ja +cF +Jp +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +ek +aF +ek +ek +Jj +ek +dt +dt +dt +dt +dt +dt +iC +iC +mJ +dt +dt +dt +ek +aF +ek +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +aa +aa +aa +aa +aa +ja +kX +SJ +oL +Cu +dt +Cu +Np +wK +ww +ja +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +iJ +sN +aT +dt +dt +ek +ek +aF +ek +ek +ek +ek +ek +ek +dt +dt +dt +dt +iC +iC +mJ +dt +dt +dt +ek +aF +ek +ek +dt +dt +sQ +Us +zm +Jp +iC +iC +aa +aa +aa +aa +aa +Rk +Rk +lX +dt +dt +dt +dt +dt +sK +Rk +Rk +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +Jp +UV +DB +MI +dt +dt +Cg +ek +dR +aF +aF +mJ +ek +ek +ek +dt +dt +dt +dt +dt +dt +mJ +dt +mJ +aF +aF +dR +ek +Vp +dt +dt +hr +sd +PK +Jp +iC +iC +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 +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 +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 +"} +(233,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +Jp +iJ +sN +aT +dt +dt +nY +ek +ek +ek +dR +mJ +ek +ek +dt +dt +dt +dt +dt +dt +mJ +mJ +dR +ek +ek +ek +fx +dt +dt +sQ +Us +zm +Jp +iC +iC +iC +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 +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 +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 +"} +(234,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +Jp +UV +DB +vR +dt +dt +dt +Cu +ek +ek +ek +dR +mJ +mJ +aF +aF +aF +aF +aF +mJ +mJ +dR +ek +ek +ek +Cu +dt +dt +dt +hr +sd +PK +Jp +iC +iC +iC +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 +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 +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 +"} +(235,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +Jp +iJ +sN +CG +dt +dt +dt +dt +Cu +Cu +ek +ek +ek +Cu +dt +dt +dt +Cu +ek +ek +ek +Cu +Cu +dt +dt +dt +dt +Md +Us +zm +Jp +iC +iC +iC +iC +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 +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 +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 +"} +(236,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +Jp +UV +DB +sN +wZ +aT +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +sQ +ye +Us +sd +PK +Jp +iC +iC +iC +iC +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 +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 +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 +"} +(237,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +Jp +UV +qc +DB +sN +px +aT +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +sQ +ye +Us +sd +qc +PK +Jp +iC +iC +iC +iC +iC +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 +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 +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 +"} +(238,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +UV +qc +DB +sN +jy +jy +px +px +tH +dt +dt +dt +dt +dt +gr +px +px +jy +jy +Us +sd +qc +PK +Jp +Jp +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(239,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +UV +qc +qc +qc +qc +DB +sN +Sm +kj +dt +kj +Qn +Us +sd +qc +qc +qc +qc +PK +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(240,1,2) = {" +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 +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 +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 +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +Jp +Jp +UV +qc +wt +Cp +Cp +Cp +wt +qc +PK +Jp +Jp +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +"} +(241,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,1,2) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} + +(1,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,3) = {" +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 +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 +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 +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 +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +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 +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 +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 +"} +(54,1,3) = {" +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 +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 +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 +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 +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +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 +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 +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 +"} +(55,1,3) = {" +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 +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 +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 +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 +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(56,1,3) = {" +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 +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 +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 +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 +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(57,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(58,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +VU +VU +VU +VU +LX +VU +VU +VU +dt +dt +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 +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 +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 +"} +(59,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(60,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(61,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +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 +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 +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 +"} +(62,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +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 +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 +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 +"} +(63,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +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 +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 +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 +"} +(64,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +ek +dt +dt +dt +ek +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +IK +dt +dt +dt +TJ +wt +aa +aa +aa +Sl +Sl +aa +wt +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +VU +Sl +dt +dt +dt +Sl +VU +VU +VU +VU +VU +VU +VU +VU +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +kv +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +VU +SC +dt +dt +dt +Ql +VU +VU +VU +VU +VU +VU +VU +VU +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +VU +SC +dt +dt +dt +Ql +VU +VU +VU +VU +VU +VU +VU +VU +Sl +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +VU +SC +dt +dt +dt +Ql +VU +VU +VU +VU +VU +VU +VU +VU +Sl +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +VU +sG +dt +dt +dt +Tn +VU +VU +VU +VU +VU +VU +VU +VU +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +VU +jm +cu +dt +dt +dt +nz +YL +VU +VU +VU +VU +VU +VU +VU +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +VU +VU +VU +VU +VU +VU +jm +cu +dt +dt +dt +dt +dt +nz +YL +VU +VU +VU +VU +VU +VU +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +VU +VU +VU +VU +VU +jm +cu +dt +MA +vp +oI +vp +pJ +dt +nz +YL +VU +VU +VU +VU +VU +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +wt +wt +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +IK +Sl +nf +nf +nf +sG +cu +dt +MA +Fc +iC +iC +iC +DQ +pJ +dt +nz +Tn +kh +kh +kh +Sl +TJ +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +IZ +IZ +IZ +wt +wt +jd +jd +jd +jd +Ch +jd +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +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 +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 +aa +aa +aa +aa +aa +"} +(76,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +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 +dt +dt +dt +ZI +dt +Cu +Cu +Cu +ek +ek +ek +jd +jd +jd +aa +dt +dt +dt +dt +dt +dt +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 +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 +aa +aa +aa +aa +aa +"} +(77,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +or +iC +iC +TG +iC +iC +Du +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 +dt +dt +dt +ZI +dt +dt +dt +dt +dt +dt +Zl +Cu +nY +ek +dt +ek +dt +dt +dt +dt +dt +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 +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 +aa +aa +aa +aa +aa +"} +(78,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +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 +dt +dt +dt +ZI +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +dt +dt +dt +gx +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 +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 +aa +aa +aa +aa +aa +"} +(79,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +TJ +Sl +Cu +Cu +Cu +Sl +RY +dt +SI +Mr +iC +iC +iC +FP +GS +dt +gx +Sl +Cu +Cu +Cu +Sl +IK +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +kE +wt +XX +Jj +kj +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +dt +gx +jd +jd +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 +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 +aa +aa +aa +aa +"} +(80,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +aa +aa +aa +aa +aa +XP +RY +dt +SI +jN +Lw +jN +GS +dt +gx +Dw +aa +aa +aa +aa +aa +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +jd +wt +Sl +wt +wt +Sl +Sl +ds +Cp +kj +dt +kj +kj +dt +dt +dt +dt +dt +dt +gx +jd +jd +UN +aa +aa +aa +aa +wt +wt +wt +wt +wt +wt +aa +aa +aa +wt +wt +wt +wt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +aa +aa +aa +aa +aa +aa +XP +RY +dt +dt +dt +dt +dt +gx +Dw +aa +aa +aa +aa +aa +aa +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +Sl +Sl +Sl +qd +Sl +Sl +Jj +dt +dt +dt +dt +Cg +jd +jd +UN +UN +wt +wt +UN +wt +wt +UN +UN +UN +zs +wt +wt +UN +wt +wt +UN +UN +Qe +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +XP +RY +dt +dt +dt +gx +Dw +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +HM +dt +nY +Sl +Sl +Jj +dt +dt +dt +ek +jd +UN +UN +UN +wt +UN +UN +Qe +wt +UN +UN +UN +UN +wt +UN +UN +Qe +wt +UN +UN +UN +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +aa +Sl +dt +dt +dt +Sl +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +ry +Ti +dt +nY +Sl +Sl +Vp +dt +dt +Cg +jd +jd +dt +UN +wt +UN +UN +UN +wt +UN +UN +UN +UN +wt +UN +UN +UN +wt +UN +UN +UN +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +aa +dj +dt +dt +dt +Vp +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +iC +Hl +Ti +dt +nY +Sl +Vp +dt +dt +Zl +ek +jd +dt +dt +Ch +UN +UN +UN +Ch +UN +UN +UN +UN +Ch +UN +UN +UN +Ch +UN +UN +UN +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ai +ek +ek +aa +aa +dj +dt +dt +dt +Vp +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +iC +iC +Hl +Ti +dt +qd +dt +dt +dt +dt +ek +WZ +dt +dt +wt +UN +UN +UN +wt +UN +UN +UN +UN +wt +UN +UN +UN +wt +UN +UN +UN +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +aa +dj +dt +dt +dt +Vp +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +iC +iC +iC +HO +Nz +Sl +Vp +dt +dt +dt +ek +jd +pJ +MA +wt +UN +UN +UN +wt +wt +wt +wt +wt +wt +UN +UN +UN +wt +wt +Ch +wt +wt +aa +aa +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +aa +dj +dt +dt +dt +Vp +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +Sl +Cp +dt +dt +dt +Cg +jd +iC +iC +wt +wt +Ch +wt +wt +fx +dt +dt +nY +wt +wt +Ch +wt +wt +UN +UN +UN +wt +tu +jt +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +ek +ek +ek +ek +ek +ek +aa +aa +dj +dt +dt +dt +Vp +aa +aa +dt +dt +dt +dt +dt +dt +jd +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +Jp +iC +iC +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +Sl +ds +Vp +dt +dt +Cg +jd +iC +iC +wt +XX +Cu +Cu +Cu +dt +dt +dt +dt +Cu +Cu +Cu +XX +wt +UN +UN +UN +BH +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +wt +wt +jd +dt +jd +wt +wt +wt +Sl +Sl +Sl +Sl +Sl +wt +Sl +ZI +ZI +ZI +Sl +wt +Sl +Sl +Sl +Sl +Sl +wt +wt +wt +jd +dt +jd +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +RK +yX +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Sl +Jj +dt +dt +Cg +jd +iC +iC +wt +Vp +dt +kj +kj +Hm +pJ +MA +Hd +kj +kj +dt +Cg +wt +UN +UN +UN +BH +tu +AW +AW +sg +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +wt +dt +dt +dt +dt +dt +wt +yP +yP +yP +Hc +Cp +Cp +Cp +Cu +dt +dt +dt +Cu +Cp +Cp +Cp +oE +yP +yP +yP +wt +dt +dt +dt +dt +dt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +jd +wt +Cp +zw +yX +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Sl +XX +dt +dt +dt +wt +Jp +Jp +wt +Vp +Cg +Sl +wt +lt +iC +iC +dU +wt +Sl +Vp +Cg +wt +UN +UN +UN +BH +tu +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +Sl +iC +iC +iC +GS +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +SI +iC +iC +iC +Sl +dt +dt +dt +dt +dt +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +jd +ek +Cp +zw +yX +Jp +Jp +Jp +Jp +Jp +Jp +yM +Gf +oA +Ut +wt +ZI +ZI +ZI +wt +wt +Pq +wt +Vp +dt +nY +Sl +Jp +iC +iC +Jp +Sl +fx +dt +Cg +wt +UN +UN +UN +sq +tu +AW +AW +AW +AW +sg +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +UN +dt +dt +dt +dt +dt +Sl +iC +iC +iC +pJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +MA +iC +iC +iC +Sl +dt +dt +dt +dt +dt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +Ch +ek +ek +Cp +zw +yX +iC +iC +iC +iC +iC +ee +qW +JL +sU +kE +dt +dt +dt +IZ +wt +wt +wt +Vp +dt +Cg +Sl +Jp +iC +iC +Jp +Sl +Vp +dt +Cg +wt +wt +wt +gA +sq +tu +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +Sl +iC +iC +oR +jM +jy +jy +tH +dt +dt +dt +dt +dt +gr +jy +jy +mI +bg +iC +iC +Sl +dt +dt +dt +dt +dt +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +jd +ek +ek +ek +Cp +DW +iC +iC +iC +iC +iC +Xu +JL +JL +ly +IZ +dt +dt +dt +IZ +wt +Lj +Cu +Dw +dt +Cg +Sl +Jp +iC +iC +Jp +Sl +Vp +dt +Zl +Cu +TW +wt +UN +sq +tu +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +wt +dt +dt +dt +dt +dt +wt +iC +iC +UV +qc +qc +DB +sN +Sm +kj +dt +kj +Qn +Us +sd +qc +qc +PK +iC +iC +wt +dt +dt +dt +dt +dt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +jd +wt +jd +Ch +jd +wt +jd +lK +wd +wd +wd +be +na +Qy +JL +sU +IZ +dt +dt +dt +IZ +wt +Vp +dt +dt +dt +gx +Sl +Jp +Jp +Jp +Jp +Sl +Jj +dt +dt +dt +Cg +wt +Hu +sq +tu +AW +sg +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +wt +wt +Sl +Sl +Sl +Sl +Sl +wt +iC +iC +Jp +Jp +Jp +UV +qc +Ls +Cp +Cp +Cp +Yy +qc +PK +Jp +Jp +Jp +iC +iC +wt +Sl +Sl +Sl +Sl +Sl +wt +wt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +jd +UN +UN +UN +jd +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +IZ +dt +dt +dt +nY +Sl +Vp +dt +MA +ZR +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +ZR +pJ +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +sg +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,3) = {" +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 +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 +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 +iC +iC +iC +jd +jd +jd +jd +NE +jd +wt +aa +iC +wt +wt +wt +xI +tF +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +Jp +Jp +mv +Cp +KU +Cp +Hp +Jp +Jp +iC +iC +iC +iC +iC +xI +tF +tF +tF +tF +tF +xI +wt +wt +wt +UN +UN +wt +jd +NE +jd +wt +wt +wt +UN +UN +UN +UN +UN +UN +UN +Sl +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +LR +dt +dt +dt +Cg +Sl +Vp +dt +yd +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Nf +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,3) = {" +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 +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 +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 +iC +iC +iC +jd +jd +UN +UN +UN +UN +UN +wt +wt +wt +wt +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +wt +wt +wt +wt +UN +UN +UN +UN +UN +wt +wt +UN +UN +UN +UN +UN +UN +Sl +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +zI +dt +dt +dt +Cg +Sl +Vp +dt +ht +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Un +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +jd +UN +UN +UN +sd +qc +qc +wt +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +wt +qc +qc +DB +UN +UN +ug +wt +wt +UN +UN +UN +UN +UN +Sl +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +NJ +dt +dt +dt +Cg +Sl +Vp +dt +ht +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Un +dt +Cg +Sl +kP +BH +tu +AW +AW +sg +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +UN +UN +UN +sd +PK +Jp +Jp +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +Jp +Jp +UV +DB +UN +UN +UN +wt +UN +UN +UN +UN +UN +Sl +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +IZ +dt +dt +dt +gx +Sl +Vp +dt +Gu +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +nn +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +UN +UN +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +UN +UN +wt +UN +UN +UN +UN +UN +jd +AM +AM +AM +AM +AM +AM +AM +Ye +JL +Ek +IZ +dt +dt +dt +XX +wt +Vp +dt +oF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +zl +dt +Cg +wt +Vs +sq +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +UN +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +UN +jd +UN +UN +UN +UN +jd +wt +AM +AM +AM +AM +AM +AM +AM +Ye +JL +ly +IZ +dt +dt +dt +nY +Sl +Vp +dt +yd +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Nf +dt +Cg +Sl +kP +BH +tu +AW +sg +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +NE +UN +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +UN +NE +UN +UN +UN +UN +UN +jd +tY +Sj +DX +DX +pZ +DX +pZ +Tb +JL +ly +Dw +dt +dt +dt +Cg +Sl +Vp +dt +ht +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Un +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +jd +UN +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +UN +jd +UN +UN +UN +UN +UN +Ch +JL +Gv +Gv +sy +Gv +sy +Gv +Gv +JL +re +dt +dt +dt +dt +Cg +Sl +Vp +dt +ht +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Un +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +UN +UN +UN +UN +UN +jd +Ez +Gv +Gv +Gv +Gv +Gv +Gv +Gv +JL +ly +qI +dt +dt +dt +Cg +Sl +Vp +dt +Gu +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +nn +dt +Cg +Sl +kP +BH +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +aa +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +wt +rx +rx +rx +rx +pl +rr +rr +rr +rr +ly +IZ +dt +dt +dt +gx +Sl +Vp +dt +SI +bx +Sl +Sl +Sl +Sl +Sl +Sl +Sl +Sl +bx +GS +dt +Cg +Sl +kP +BH +tu +AW +AW +sg +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +wt +DE +DE +QZ +QZ +QZ +QZ +QZ +QZ +DE +vO +IZ +dt +dt +dt +ek +wt +WK +dt +dt +gx +Lj +Sl +Jp +Jp +Jp +Jp +Sl +Lj +Jj +dt +dt +xD +wt +jI +sq +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jy +Cp +gZ +Cp +qh +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +UN +DE +fP +oQ +SH +hy +Gh +sa +sa +SH +DE +Sl +dt +dt +dt +Sl +wt +Sl +Gi +Gi +Sl +wt +wt +Jp +iC +iC +Jp +wt +wt +Sl +Gi +Gi +Sl +wt +UN +sq +tu +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +hB +ja +BD +Cp +Cp +Cp +Yy +ja +cF +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +UN +UN +UN +UN +UN +UN +QZ +oQ +oQ +Eq +AS +OA +xx +xd +ki +aZ +ek +dt +dt +dt +Cu +Cu +Cu +dt +dt +Cu +Kk +wt +Jp +iC +iC +Jp +wt +No +Cu +dt +dt +FT +wt +Hu +sq +tu +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +aa +aa +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +hB +ja +kX +SJ +dz +Cu +dt +Cu +Np +wK +ww +ja +cF +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +Mc +oQ +oQ +au +AS +pv +si +ap +QW +OX +ek +dt +dt +dt +dt +dt +dt +dt +dt +dt +vJ +wt +Jp +iC +iC +Jp +wt +gT +dt +dt +dt +ZE +Sl +Ag +BH +tu +AW +AW +AW +sg +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +hB +ja +ja +kX +SJ +Jh +lX +dt +dt +dt +dt +dt +sK +Jh +wK +ww +ja +ja +cF +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +se +QZ +oQ +oQ +KE +AS +YM +Pr +Ea +Dv +Ze +ek +dt +dt +dt +kj +kj +kj +kj +kj +kj +ws +wt +fw +iC +iC +bZ +wt +Hy +kj +kj +kj +ZE +Sl +Ag +BH +tu +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +hB +ja +kX +SJ +Jh +Rk +Fr +dt +dt +dt +dt +dt +dt +dt +dt +dt +Kb +Rk +Jh +wK +ww +ja +cF +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +Hj +Hj +UN +UN +eJ +DE +xi +Ma +HG +hy +Gh +Kz +Kz +ny +DE +Sl +dt +dt +MA +Sl +wt +jd +jd +jd +jd +wt +wt +vu +GS +SI +my +wt +wt +XX +ZP +cz +cs +wt +Dx +sq +tu +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +ja +kX +SJ +Rk +Fr +dt +dt +dt +dt +dt +dt +dt +kj +dt +dt +dt +dt +dt +dt +dt +Kb +Rk +wK +ww +ja +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +jd +jd +PZ +wt +DE +DE +QZ +QZ +QZ +QZ +DE +DE +DE +DE +IZ +dt +dt +oF +iC +wt +ci +fx +sZ +jY +jd +uD +ek +dt +dt +ek +wt +wt +wt +wt +wt +wt +wt +UN +WB +tu +AW +sg +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +SJ +Rk +xb +dt +dt +dt +dt +dt +dt +zH +kj +ek +ek +ek +kj +qI +dt +dt +dt +dt +dt +dt +RD +Rk +wK +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +Yq +ZS +DT +hs +AJ +zt +PM +lp +FC +oX +CR +CR +WR +tg +XX +pW +IZ +dt +dt +oF +iC +wt +gO +dt +dt +dt +HS +dt +dt +dt +dt +ek +wt +iC +iC +iC +iC +iC +wt +wt +wt +aa +AW +AW +AW +AW +AW +OZ +AW +tu +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +SJ +Fr +dt +dt +dt +dt +zH +kj +gx +ek +ek +dR +xg +xg +xg +dR +ek +ek +Jj +kj +qI +dt +dt +dt +dt +Kb +wK +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +Yq +jc +eT +eT +eT +kL +tg +nG +To +To +To +To +BO +tg +dt +Zl +ek +dt +dt +oF +iC +wt +wt +Fe +uN +mL +jd +ek +ek +dt +dt +Zl +NV +iC +iC +iC +iC +iC +iC +wt +aa +aa +aa +AW +AW +AW +AW +SO +AW +tu +xT +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +SJ +Fr +dt +dt +dt +kj +ek +ek +ek +ek +dR +mJ +mJ +ek +ek +ek +mJ +mJ +dR +ek +ek +ek +ek +kj +dt +dt +dt +Kb +wK +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +Yq +jc +eT +eT +eT +KX +Oh +nG +To +qM +qM +To +BO +mC +dt +dt +dt +dt +dt +Nk +yn +Uf +wt +wt +wt +wt +wt +Wk +ek +qI +dt +dt +Lo +fw +iC +iC +iC +iC +iC +wt +aa +aa +aa +aa +aa +AW +AW +OZ +AW +tu +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +MI +dt +dt +zH +ek +ek +ek +dR +gJ +gJ +mJ +ek +ek +ek +ek +ek +ek +ek +mJ +xg +xg +dR +ek +ek +ek +qI +dt +dt +wB +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +Yq +YX +eT +eT +eT +Ad +tg +nG +To +To +To +To +BO +tg +dt +zH +ek +dt +dt +oF +iC +wt +wt +IJ +LI +Xx +wt +wt +kc +ek +qI +dt +dt +vu +fw +iC +iC +iC +iC +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +SJ +xb +dt +dt +ek +dR +xg +xg +mJ +ek +ek +ek +ek +ek +dt +dt +dt +ek +ek +ek +ek +ek +mJ +xg +xg +dR +ek +dt +dt +RD +wK +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +Yq +Wd +Lr +Lr +Lr +gd +PM +Zi +cR +cR +cR +cR +Hh +tg +ek +ek +IZ +dt +dt +oF +iC +wt +iC +Hw +XO +Rh +iC +wt +dn +TF +ek +dt +dt +ek +wt +rR +iC +iC +ix +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +Xs +AW +Xs +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 +aa +aa +aa +aa +aa +"} +(118,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sl +Sl +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +EB +dt +dt +Cg +ek +xg +ek +ek +ek +ek +ek +ek +ek +dt +dt +dt +dt +ek +ek +ek +ek +ek +ek +ek +ek +xg +ek +Vp +dt +dt +wB +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +PM +PM +Yq +Yq +Yq +PM +PM +PM +er +er +er +er +er +PM +aQ +aQ +IZ +dt +dt +oF +iC +wt +iC +Hw +XO +Rh +iC +wt +wt +wt +Sl +go +go +Sl +wt +Sl +GS +SI +Sl +wt +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +Xs +AW +Xs +AW +AW +Xs +AW +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 +aa +aa +"} +(119,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +YT +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +SJ +Fr +dt +dt +gx +ek +xg +ek +ek +ek +ek +ek +dt +dt +dt +dt +dt +dt +dt +dt +ek +ek +ek +ek +ek +ek +xg +ek +ek +dt +dt +Kg +wK +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dv +aQ +sj +ps +ps +ps +ps +ps +lV +bb +aQ +Sl +dt +dt +SI +Sl +wt +Sl +jh +dt +Lo +Sl +wt +Cp +Cp +Cu +dt +dt +Cu +Cp +Cu +dt +dt +Cu +ek +ek +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +kF +kF +Xs +Xs +kF +AW +Xs +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 +aa +"} +(120,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +dt +ek +dR +mJ +ek +ek +ek +ek +ek +dt +dt +dt +dt +dt +dt +dt +dt +ek +nY +ek +ek +ek +ek +mJ +dR +ek +dt +dt +dt +mW +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dv +Ke +IL +ne +vz +fn +eF +fn +Ym +Ws +aQ +US +pJ +dt +dt +nY +BD +fx +dt +dt +MA +qB +wt +Cp +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ux +ek +wt +wt +wt +wt +wt +wt +aa +aa +aa +AW +PX +Xs +en +du +du +Qp +du +du +Qp +AW +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 +aa +"} +(121,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +mJ +ek +ek +ek +ek +ek +ek +dt +dt +dt +dt +dt +dt +dt +dt +ek +dt +nY +ek +ek +ek +ek +xg +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +tb +iC +iC +dv +Ke +pT +UE +vz +Kh +no +Kh +GX +mK +Ke +iC +Hw +dt +dt +Zl +Cp +Dw +dt +dt +Rh +iC +Sl +Vp +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +el +ek +jd +lx +lJ +lJ +zM +wt +tu +aa +aa +AW +VC +AW +Qp +Xk +FG +SZ +WN +vk +Qp +AW +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 +aa +"} +(122,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +GS +SI +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +Cg +dR +mJ +ek +ek +ek +Vp +mJ +vL +dt +dt +dt +dt +dt +dt +dt +ek +ek +dt +dt +nY +ek +ek +ek +xg +ek +Vp +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +kJ +GS +SI +Rp +Ke +pT +UE +vz +Zr +Zr +nK +Qr +mK +Ke +iC +Du +dt +dt +dt +dt +dt +dt +dt +or +iC +Sl +dt +dt +dt +XG +GQ +GQ +GQ +GQ +GQ +Uk +dt +oo +ek +jd +hi +so +so +Sh +wt +tu +aa +AW +AW +VC +AW +Qp +Pk +PH +bm +PH +fz +Qp +Xs +AW +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 +"} +(123,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +xg +ek +ek +ek +fx +dt +mJ +yS +dt +dt +dt +dt +dt +dt +dt +mJ +ek +Jj +dt +dt +nY +ek +ek +mJ +dR +ek +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cp +Ke +Xf +UE +vz +dJ +Zr +dJ +Qr +mK +Ke +iC +Du +dt +XO +XO +XO +XO +XO +dt +or +iC +Sl +dt +dt +dt +wF +iC +iC +iC +iC +iC +fy +dt +dt +ek +jd +iP +Zd +Rd +Fv +wt +tu +AW +AW +AW +Ku +Xs +WA +WJ +bm +Cn +bm +NQ +WA +Xs +AW +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 +"} +(124,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wB +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +MI +dt +dt +ek +xg +ek +ek +ek +ek +ek +mJ +mJ +ek +ek +Cp +Cp +Cp +Cp +Cp +mJ +mJ +mJ +ek +dt +ek +mJ +mJ +mJ +oJ +UH +dt +dt +wB +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +EB +dt +dt +Cp +Ke +vz +vz +vz +Kh +no +Kh +GX +mK +Ke +iC +Hw +dt +dt +dt +dt +dt +dt +dt +Rh +iC +Sl +Vp +dt +dt +wF +iC +iC +iC +iC +iC +fy +ct +Nv +ek +wt +YK +Zd +so +ZU +wt +tu +AW +AW +sg +AW +Xs +WA +WJ +bm +Cn +bm +NQ +WA +Xs +AW +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 +"} +(125,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +Kg +kT +zm +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +iJ +SJ +fg +dt +dt +dh +oJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +Cp +Cp +Cp +mJ +mJ +ek +dR +xg +dt +xg +dR +ek +ek +FA +ek +dt +dt +Kg +wK +zm +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +iJ +SJ +Fw +dt +dt +Cp +aQ +xa +NI +bI +bW +bI +bW +xZ +mK +JA +yr +GS +dt +MA +vp +oI +vp +pJ +dt +SI +yr +wt +hw +dt +dt +wF +iC +iC +iC +iC +iC +fy +cg +Ct +ek +wt +wt +fL +pP +wt +wt +tu +AW +AW +AW +AW +AW +WA +WJ +PH +Cn +PH +NQ +WA +Xs +AW +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 +"} +(126,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +tC +wt +HH +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +DJ +Gp +Bc +dt +dt +dt +Cg +xg +ek +fx +dt +dt +dt +dt +dt +dt +rb +mJ +mJ +Cp +mJ +mJ +UH +fx +dt +dt +dt +dt +dt +nY +ek +xg +Vp +dt +dt +dt +tC +wt +HH +ja +ja +ja +ja +ja +ja +ja +ja +ja +ja +DJ +zj +Bc +dt +dt +dt +Cg +rG +gt +uJ +uJ +uJ +uJ +uJ +uJ +mK +BN +Vp +dt +MA +Fc +iC +iC +iC +DQ +pJ +dt +dt +wt +Vp +dt +dt +Lo +tD +tD +tD +tD +tD +jh +DU +Lk +ek +QY +GR +zP +UN +eC +wt +SL +AW +AW +ID +AW +AW +Qp +Uc +Yz +bm +Yz +kV +Qp +AW +AW +AW +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 +"} +(127,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Cg +Cp +Cp +Cp +Cp +zi +Cp +Cp +Cp +Cp +zi +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +Lh +dt +dt +dt +gx +Cp +Jj +dt +dt +dt +ZL +mJ +Cp +mJ +vL +dt +dt +dt +gx +Cp +Jj +dt +dt +dt +Lh +dt +dt +dt +dt +Cg +Cp +Cp +Cp +Cp +zi +Cp +Cp +Cp +Cp +zi +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +DZ +Pn +Pn +Pn +Pn +Pn +Pn +Pn +Pn +KJ +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +dt +dt +XY +dt +dt +dt +dt +dt +dt +dt +dt +dt +UY +li +nN +dt +yt +kx +by +hL +UN +nV +AW +rF +AW +AW +AW +Xs +en +Qp +Qp +hn +Qp +Qp +Qp +AW +AW +AW +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 +"} +(128,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +dt +Cp +Id +ef +ef +ef +ef +ef +ef +ef +ef +ef +ef +ic +Cp +dt +dt +dt +dt +dt +Cp +dt +dt +Cg +Cp +zN +Cp +Vp +dt +dt +vJ +mJ +Cp +mJ +gT +dt +dt +Cg +Cp +AP +Cp +Vp +dt +dt +Cp +dt +dt +dt +dt +dt +Cp +Id +ef +ef +ef +ef +ef +ef +ef +ef +ef +ef +ic +Cp +dt +dt +dt +dt +dt +su +Zr +Zr +Zr +Zr +Zr +Zr +Zr +Zr +su +dt +dt +or +iC +iC +zj +iC +iC +Du +dt +dt +go +dt +dt +dt +dt +dt +dt +dt +eg +ng +eR +FI +rm +vT +VY +GN +ZK +TQ +gw +ii +QA +QA +aA +Wt +AW +Fp +Zh +RN +Cn +bm +Cn +sf +WA +AW +AW +AW +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 +"} +(129,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +Cg +Cp +Cp +Cp +Cp +lu +Cp +Cp +Cp +Cp +lu +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +Cp +dt +dt +dt +nY +Cp +fx +dt +dt +dt +wi +mJ +Cp +mJ +yS +dt +dt +dt +nY +Cp +fx +dt +dt +dt +Cp +dt +dt +dt +dt +Cg +Cp +Cp +Cp +Cp +lu +Cp +Cp +Cp +Cp +lu +Cp +Cp +Cp +Cp +Vp +dt +dt +dt +dt +qg +Ne +Ne +Ne +Ne +Ne +Ne +Ne +Ne +lf +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +dt +dt +EI +dt +dt +dt +dt +dt +dt +dt +dt +QS +Vq +Bv +yv +ka +VR +ow +BE +lq +dt +bC +AW +AW +AW +tu +AW +AW +Zh +nE +bm +bm +bm +tW +WA +AW +AW +AW +AW +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 +"} +(130,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +dt +LN +wt +Wl +qc +qc +qc +qc +qc +qc +qc +qc +qc +qc +Bp +Gp +Qs +dt +dt +dt +Cg +xg +ek +Jj +dt +dt +dt +dt +dt +dt +as +mJ +mJ +Cp +mJ +mJ +UH +Jj +dt +dt +dt +dt +dt +gx +ek +xg +Vp +dt +dt +dt +LN +wt +Wl +qc +qc +qc +qc +qc +qc +qc +qc +qc +qc +Bp +wt +Qs +dt +dt +dt +Cg +rG +gt +uJ +uJ +uJ +uJ +uJ +uJ +mK +rG +Vp +dt +SI +Mr +iC +iC +iC +FP +GS +dt +dt +wt +Vp +dt +dt +XG +GQ +GQ +GQ +GQ +GQ +Uk +dt +Hq +Av +QY +ow +UN +dt +UN +bC +AW +AW +tu +zp +tu +AW +Xs +nE +bm +Cn +bm +qN +Qp +AW +AW +AW +AW +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 +"} +(131,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +Uj +fR +zm +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +iJ +sN +cp +dt +dt +dh +lw +xg +xg +mZ +mZ +xg +df +hF +df +mJ +mJ +Cp +Cp +Cp +mJ +mJ +Cp +xg +xg +xg +xg +xg +dt +ek +mJ +ek +dt +dt +Uj +Us +zm +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +Jp +iJ +sN +CG +dt +dt +Cp +aQ +WI +Dh +eF +fn +eF +fn +Ym +mK +aQ +US +pJ +dt +SI +jN +Lw +jN +GS +dt +MA +US +wt +hw +dt +dt +wF +iC +iC +iC +iC +iC +fy +dt +wV +ek +wt +wt +dt +dt +en +tL +Uh +AW +AW +tu +AW +AW +Xs +bm +bm +Cn +hQ +bm +Cn +AW +AW +AW +AW +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 +"} +(132,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wB +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +MI +dt +dt +ek +xg +ab +ek +ek +ek +mZ +dt +ek +dt +mJ +Cp +Cp +Cp +Cp +Cp +mJ +Cp +Cp +Cp +Cp +Cp +Cp +dt +ek +lw +UH +dt +dt +wB +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +EB +dt +dt +Cp +Ke +Jz +Jz +Jz +Kh +no +Kh +GX +mK +Ke +iC +Hw +dt +dt +dt +dt +dt +dt +dt +Rh +iC +Sl +Vp +dt +dt +wF +iC +iC +iC +iC +iC +fy +dt +iE +ek +wt +WM +Yt +Yt +gE +nV +AW +AW +AW +AW +AW +AW +Qp +Gm +bm +Cn +bm +tW +Qp +AW +AW +Xs +AW +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 +"} +(133,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +ek +xg +ab +ek +ek +ek +mZ +dt +ek +dt +mJ +Cp +Cp +Cp +Cp +Cp +mJ +xg +Vt +xg +mJ +xg +mJ +Ro +mJ +dR +ek +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cp +Ke +xp +Jx +Jz +nK +Zr +nK +Qr +mK +Ke +iC +Du +dt +XO +XO +XO +XO +XO +dt +or +iC +Sl +dt +dt +dt +wF +iC +iC +iC +iC +iC +fy +dt +Qi +ek +jd +TK +Yt +UN +rj +wt +KL +AW +AW +AW +AW +AW +WA +nE +bm +bm +tp +tW +WA +AW +AW +Xs +AW +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 +"} +(134,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +pJ +MA +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +MI +dt +dt +Cg +dR +mJ +ek +ek +ek +xg +az +xg +az +mJ +Cp +Cp +Cp +Cp +Cp +mJ +dt +dt +dt +dt +dt +dt +dt +xg +ek +Vp +dt +dt +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +aL +pJ +MA +Hc +Ke +Wu +Jx +Jz +dJ +Zr +dJ +Qr +mK +Ke +iC +Du +dt +dt +dt +dt +dt +dt +dt +or +iC +Sl +dt +dt +dt +Lo +tD +tD +tD +tD +tD +jh +dt +dt +ek +jd +BY +uC +Yt +rj +wt +tu +AW +AW +AW +AW +AW +WA +IP +bm +Xs +Xs +tW +Xs +AW +AW +Xs +AW +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 +"} +(135,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +Cg +ek +mJ +ek +ek +ek +mJ +dt +dt +dt +mJ +xg +ek +xg +mJ +mJ +mJ +dt +dt +dt +dt +dt +dt +dt +xg +ek +Vp +dt +dt +mW +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UV +hG +iC +iC +dv +Ke +Wu +Jx +Jz +Kh +no +Kh +GX +mK +Ke +iC +Hw +dt +dt +zH +Cp +qI +dt +dt +Rh +iC +Sl +Vp +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +jd +Mg +an +hm +NX +wt +tu +AW +sg +AW +AW +AW +Qp +Qp +UN +Xs +WO +AW +Xs +AW +AW +en +AW +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 +"} +(136,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wB +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +EB +dt +dt +dt +ek +dR +mJ +mJ +TX +mJ +dt +dt +dt +dt +dt +dt +dt +iC +iC +mJ +dt +dt +dt +dt +dt +dt +mJ +dR +ek +dt +dt +dt +mW +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dv +Ke +Uv +UK +Jz +bW +bI +bW +xZ +mK +aQ +yr +GS +dt +dt +gx +Yy +Jj +dt +dt +SI +fh +wt +Cp +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +ek +wt +wt +wt +wt +wt +wt +tu +AW +AW +AW +AW +AW +AW +Xs +Xs +AW +Xs +AW +AW +Xs +AW +AW +AW +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 +"} +(137,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +YT +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +sN +aT +dt +dt +nY +ek +xg +ab +ek +ek +dt +dt +dt +dt +dt +dt +dt +iC +iC +mJ +dt +dt +dt +dt +dt +dt +xg +ek +ek +dt +dt +Uj +Us +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dv +aQ +pU +Wz +Wz +Wz +Wz +rv +VQ +xJ +aQ +Sl +dt +dt +MA +Sl +wt +Sl +Uk +dt +XG +Sl +wt +Cp +Cp +kj +dt +dt +kj +Cp +kj +dt +dt +kj +ek +ek +wt +aa +aa +aa +tu +tu +tu +AW +AW +AW +AW +AW +AW +en +Xs +AW +Xs +Zh +AW +AW +AW +AW +AW +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 +"} +(138,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Sl +Sl +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +MI +dt +dt +Cg +ek +xg +ab +ek +ek +Jj +dt +dt +dt +dt +dt +MA +iC +iC +mJ +dt +dt +dt +dt +dt +dt +xg +ek +Vp +dt +dt +wB +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +fF +fF +pE +pE +pE +fF +fF +fF +MR +DK +DK +ex +SP +fF +aQ +aQ +IZ +dt +dt +oF +iC +wt +iC +Hw +XO +Rh +iC +wt +zc +zc +XW +JE +JE +XW +zc +XW +JE +JE +XW +wt +wt +wt +aa +aa +aa +aa +aa +AW +AW +AW +AW +Xs +AW +Xs +AW +AW +AW +Zh +Xs +AW +AW +AW +AW +AW +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 +"} +(139,1,3) = {" +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 +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 +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 +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +sN +Pz +dt +dt +ek +dR +xg +xg +mJ +ek +ek +ek +ek +ek +ek +vu +gl +gl +mJ +mJ +dt +dt +mJ +xg +xg +dR +ek +dt +dt +ZY +Us +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +pE +gc +di +di +di +gc +gc +gc +di +di +di +di +di +og +ek +ek +IZ +dt +dt +oF +iC +wt +iC +Hw +XO +Rh +iC +wt +Gk +aR +Xn +pz +pz +to +zc +mk +pz +pz +mk +wt +MF +wt +aa +aa +aa +aa +aa +aa +AW +AW +AW +Xs +AW +AW +AW +AW +Xs +AW +Xs +AW +AW +AW +AW +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 +"} +(140,1,3) = {" +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 +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 +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 +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +MI +dt +dt +Zl +ek +ek +ek +dR +xg +xg +mJ +Ps +UL +ek +ek +ek +ek +XX +mJ +xg +xg +dR +ek +ek +ek +Dw +dt +dt +wB +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +pE +gc +di +di +di +di +di +di +di +di +di +di +di +og +dt +Zl +ek +dt +dt +oF +iC +wt +wt +ro +Bl +hc +wt +wt +lg +pN +qe +pz +pz +hP +zc +mk +pz +pz +mk +wt +wt +wt +wt +wt +aa +aa +aa +aa +aa +AW +AW +Xs +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(141,1,3) = {" +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 +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 +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 +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +sN +qI +dt +dt +dt +Cu +ek +ek +ek +ek +dR +mJ +mJ +UO +ab +Vh +mJ +mJ +dR +ek +ek +ek +ek +Cu +dt +dt +dt +sQ +Us +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +pE +gc +di +di +di +di +di +di +di +di +di +di +di +LB +dt +dt +dt +dt +dt +Nk +yn +Uf +wt +wt +wt +wt +wt +XL +lg +Sv +QX +pz +pz +mk +zc +zc +jU +hK +wG +wG +vj +fD +gF +wG +wG +aa +aa +aa +aa +AW +AW +Xs +AW +AW +Xs +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(142,1,3) = {" +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 +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 +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 +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +sN +qI +dt +dt +dt +dt +Zl +Cu +nY +ek +ek +dR +xg +xg +xg +dR +ek +ek +fx +Cu +Dw +dt +dt +dt +dt +sQ +Us +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +pE +gc +di +di +di +di +di +di +di +di +di +di +di +SP +dt +zH +ek +dt +dt +oF +iC +th +th +sV +ze +fm +th +th +Wa +QC +bT +pz +pz +mk +Qq +zc +zc +zc +wG +Gd +do +XE +XE +ok +wG +aa +aa +aa +aa +aa +AW +en +AW +AW +AW +AW +AW +AW +AW +Xs +AW +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 +aa +"} +(143,1,3) = {" +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 +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 +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 +dt +Sl +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +DB +sN +px +Pz +dt +dt +dt +dt +dt +dt +Zl +Cu +ek +ek +ek +Cu +Dw +dt +dt +dt +dt +dt +dt +ZY +px +Us +sd +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +pE +gc +di +di +di +di +di +di +di +di +di +di +di +og +XX +pW +IZ +dt +dt +oF +iC +th +iI +jZ +ch +ch +QB +th +FY +FY +FY +pz +pz +mk +Yd +XW +Ox +dF +SR +eD +oZ +rM +rM +kG +wG +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +Xs +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 +aa +aa +"} +(144,1,3) = {" +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 +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 +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 +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +UV +qc +DB +sN +px +aT +dt +dt +dt +dt +dt +dt +dt +Cu +dt +dt +dt +dt +dt +dt +dt +sQ +px +Us +sd +qc +PK +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +fF +fF +og +bR +og +fF +fF +fF +og +og +JQ +og +og +fF +wt +wt +IZ +dt +dt +oF +iC +th +fc +lM +AA +AA +cZ +th +mQ +yi +QI +pz +pz +mk +Mt +XW +Ox +Ox +SR +SR +SR +NF +SR +SR +wG +zc +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +en +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 +aa +aa +"} +(145,1,3) = {" +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 +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 +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 +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +UV +qc +DB +sN +jy +px +aT +dt +dt +dt +dt +dt +dt +dt +dt +dt +sQ +px +jy +Us +sd +qc +PK +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +UN +UN +UN +UN +UN +Ft +HW +ST +ST +ST +Oo +Zq +ST +vd +Ft +Sl +dt +dt +SI +Sl +th +JD +JD +tf +JD +JD +th +XW +XW +XW +JE +JE +XW +XW +XW +IR +MT +bX +mk +kg +pz +yR +tZ +fZ +zc +aa +aa +aa +aa +aa +Xs +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +"} +(146,1,3) = {" +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 +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 +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 +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +UV +qc +qc +DB +sN +jy +tH +dt +dt +dt +dt +dt +gr +jy +Us +sd +qc +qc +PK +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +fs +tB +ST +WE +ST +ST +ST +ST +eo +Ft +ek +dt +dt +dt +ek +XW +mk +kg +pz +yR +mk +mk +mk +mk +kg +pz +pz +yR +mk +mk +mk +mk +mk +kg +pz +pz +pz +yR +CI +zc +aa +aa +aa +aa +aa +Xs +Xs +AW +AW +AW +Xs +AW +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 +aa +aa +aa +aa +"} +(147,1,3) = {" +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 +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 +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 +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +UV +qc +DB +sN +Sm +kj +dt +kj +Qn +Us +sd +qc +PK +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +fs +ju +ST +ST +ST +Qh +ST +ST +Yl +fs +ek +dt +dt +dt +dt +JE +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +lz +pz +sr +zq +zc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,1,3) = {" +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 +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 +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 +iC +wt +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +UV +qc +BD +Cp +Cp +Cp +Yy +qc +PK +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +wt +UN +UN +UN +UN +UN +UN +fs +Mb +ST +An +An +An +An +ST +sJ +fs +ek +dt +dt +dt +dt +JE +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +dC +pz +sr +qp +zc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(149,1,3) = {" +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 +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 +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 +iC +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +mv +Cp +KU +Cp +Hp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +UN +fs +fs +fs +fs +fs +fs +fs +Ft +Ft +Ft +ek +dt +dt +dt +ek +XW +mk +Qv +pz +Hz +mk +mk +mk +mk +Qv +pz +pz +Hz +mk +mk +mk +mk +mk +Qv +pz +pz +pz +Hz +Pd +zc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,1,3) = {" +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 +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 +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 +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +UN +rf +wU +Kc +uk +Ld +Uq +Uq +Uq +Uq +Rr +Sl +dt +dt +MA +Sl +FX +Ot +Ot +Nl +Ot +Ot +FX +Ig +Ig +Ig +rc +rc +Ig +Ig +Ig +xE +Wq +BB +mk +Qv +pz +Hz +ED +XZ +zc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(151,1,3) = {" +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 +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 +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 +iC +wt +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +wt +UN +UN +UN +UN +UN +UN +UN +rf +TZ +Kc +zE +Ld +Uq +Uq +Uq +Uq +Rr +fx +dt +dt +oF +iC +FX +QV +VV +zX +zX +AE +FX +vX +vX +vX +Gs +GK +Xc +Sx +Ig +Ox +dF +PW +PW +PW +xA +PW +PW +hR +zc +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(152,1,3) = {" +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 +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 +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 +wt +wt +wt +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +en +jd +UN +UN +jd +en +rf +Kc +Kc +Kc +ZW +Uq +Uq +Uq +Uq +ZW +dt +dt +dt +oF +iC +FX +wS +Ai +Ai +Ai +JN +FX +Xz +Xz +Xz +pG +GK +iM +cK +Ig +Ox +Ox +PW +ty +wv +yO +yO +lc +hR +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(153,1,3) = {" +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 +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 +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 +jd +UN +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +OV +jd +UN +UN +UN +UN +UN +UN +So +Kc +Kc +Zt +Ld +Uq +Uq +Uq +Uq +Ld +kS +dt +dt +oF +iC +FX +FX +Ol +ve +ZV +FX +FX +Er +Er +Er +Gs +GK +hA +aJ +wE +wE +wE +hR +zT +LU +sC +sC +bY +hR +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(154,1,3) = {" +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 +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 +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 +NE +UN +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +OV +NE +UN +IX +Bf +Bf +Wj +UN +rf +cI +Kc +Zt +Rr +tr +Uq +Uq +Uq +Rr +XX +dt +dt +SI +bx +bB +wt +wt +wt +wt +wE +Zg +vX +vX +vX +Gs +GK +vX +vX +vX +vX +wE +hR +hR +yF +YS +oG +hR +hR +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(155,1,3) = {" +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 +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 +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 +jd +UN +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +OV +jd +UN +wI +iC +iC +nX +UN +rf +rf +jk +yT +Rr +Rr +Ld +Ld +Rr +Rr +IZ +dt +dt +dt +dt +dt +Ch +UN +UN +UN +es +Xz +Xz +Xz +Xz +pG +aE +Xz +Xz +Xz +Xz +wE +aa +wt +wt +wt +wt +wt +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(156,1,3) = {" +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 +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 +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 +jd +UN +UN +ww +cF +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +hB +kX +Fy +BC +jd +UN +wI +iC +iC +nX +UN +rf +Kc +Kc +Kc +Kc +GA +Kc +Kc +Kc +yT +IZ +dt +dt +MA +ZR +sn +wt +UN +en +UN +wE +ks +Er +Er +Er +RP +ie +Er +Er +Er +Er +wE +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(157,1,3) = {" +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 +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 +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 +jd +UN +UN +UN +ww +cF +Jp +Jp +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +qK +uL +Iw +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +Jp +Jp +hB +kX +Fy +BC +UN +jd +UN +wI +iC +iC +nX +UN +rf +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +rf +fx +dt +dt +oF +iC +wt +wt +UN +UN +UN +wE +wE +wE +wE +wE +wE +wE +wE +wE +wE +wE +wE +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(158,1,3) = {" +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 +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 +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 +jd +jd +UN +UN +UN +ww +ja +ja +wt +Jp +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +Jp +wt +ja +ja +kX +Fy +BC +ug +jd +jd +UN +wI +iC +iC +nX +UN +rf +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +jk +dt +dt +dt +oF +iC +jd +iG +iG +iG +iG +iG +UN +UN +UN +wt +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 +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 +"} +(159,1,3) = {" +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 +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 +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 +jd +jd +UN +UN +UN +UN +UN +wt +wt +wt +wt +Jp +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iJ +Cp +uL +Cp +zm +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Jp +wt +wt +wt +wt +Ry +Ry +Ry +BC +UN +jd +jd +UN +UN +VW +jo +jo +kr +UN +rf +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +rf +Jj +dt +dt +oF +iC +wt +qc +qc +qc +qc +qc +Mv +Oc +UN +wt +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 +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 +"} +(160,1,3) = {" +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 +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 +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 +iC +iC +jd +jd +jd +jd +NE +jd +wt +UN +UN +wt +wt +wt +xI +tF +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +Jp +Jp +Jy +Cp +gZ +Cp +qh +Jp +Jp +iC +iC +iC +iC +iC +xI +tF +tF +tF +tF +tF +xI +wt +wt +wt +UN +UN +wt +jd +NE +jd +jd +jd +jd +UN +UN +UN +UN +UN +UN +UN +UN +rf +Kc +Kc +Kc +Kc +Kc +Kc +Kc +Kc +yT +IZ +dt +dt +SI +gl +jd +iC +Jp +iC +Jp +iC +iC +WC +UN +UN +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 +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 +"} +(161,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +wt +wt +Sl +Sl +Sl +Sl +Sl +wt +iC +iC +Jp +Jp +Jp +hB +ja +BD +Cp +Cp +Cp +yQ +ja +cF +Jp +Jp +Jp +iC +iC +wt +Sl +Sl +Sl +Sl +Sl +wt +wt +UN +UN +UN +UN +en +UN +UN +UN +UN +UN +UN +UN +UN +jd +en +UN +UN +jd +jd +rf +So +fT +NB +NB +fT +CH +CH +vs +vs +Nn +dt +dt +MA +BA +jd +iC +Jp +iC +Jp +iC +iC +Oc +UN +UN +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 +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 +"} +(162,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +UN +wt +dt +dt +dt +dt +dt +wt +iC +iC +hB +ja +ja +kX +SJ +oL +Cu +dt +Cu +Np +wK +ww +ja +ja +cF +iC +iC +wt +dt +dt +dt +dt +dt +wt +UN +UN +UN +UN +UN +jd +UN +UN +UN +UN +UN +UN +UN +UN +en +UN +UN +UN +UN +UN +UN +UN +fT +Dk +de +Iv +Ab +Ab +EA +dW +fx +dt +dt +oF +iC +wt +ja +ja +ja +ja +ja +Cx +WC +UN +wt +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 +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 +"} +(163,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +UN +jd +dt +dt +dt +dt +dt +Sl +iC +iC +kH +Ng +Jh +Jh +lX +dt +dt +dt +dt +dt +sK +Jh +Jh +Je +Iq +iC +iC +Sl +dt +dt +dt +dt +dt +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +fT +mt +FH +FH +We +Ab +Ho +ra +Vp +dt +dt +oF +iC +jd +NL +jF +uq +wt +UN +UN +UN +aa +wt +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 +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 +"} +(164,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +UN +UN +dt +dt +dt +dt +dt +Sl +iC +iC +iC +GS +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +SI +iC +iC +iC +Sl +dt +dt +dt +dt +dt +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +fT +Js +it +bJ +Ab +Ab +ya +Ko +Jj +dt +dt +Dm +oe +wt +wt +gA +wt +sq +sq +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 +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 +"} +(165,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +UN +jd +dt +dt +dt +dt +dt +Sl +iC +iC +iC +pJ +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +MA +iC +iC +iC +Sl +dt +dt +dt +dt +dt +jd +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +UN +jd +UN +UN +UN +fT +fT +fT +fT +fT +HZ +bv +fT +Ab +Ab +vs +vs +Yy +ZI +ZI +ZI +wt +wt +UN +UN +UN +sq +AW +AW +AW +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 +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 +"} +(166,1,3) = {" +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 +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 +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 +UN +UN +UN +UN +UN +UN +UN +UN +wt +dt +dt +dt +dt +dt +wt +aU +aU +aU +Rp +Cp +Cp +Cp +kj +dt +dt +dt +kj +Cp +Cp +Cp +qL +aU +aU +aU +wt +dt +dt +dt +dt +dt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UN +en +UN +UN +UN +fT +mj +Fj +mj +mj +Pu +Ab +Ab +Ab +Ab +Bt +vs +XX +dt +dt +dt +wt +UN +UN +UN +UN +BH +AW +AW +AW +AW +AW +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 +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 +"} +(167,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +wt +wt +wt +jd +dt +jd +wt +wt +wt +Sl +Sl +Sl +Sl +Sl +wt +Sl +ZI +ZI +ZI +Sl +wt +Sl +Sl +Sl +Sl +Sl +wt +wt +wt +jd +dt +jd +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UN +en +UN +UN +UN +fT +mj +Fj +mj +mj +xq +Ab +Ab +Ab +Ab +pr +vs +fx +dt +dt +Cg +wt +UN +UN +UN +UN +BH +AW +AW +AW +AW +AW +AW +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 +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 +"} +(168,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Cg +dt +dt +dt +yV +VU +VU +VU +VU +VU +VU +VU +VU +wt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UN +jd +UN +UN +UN +fT +fT +fT +fT +fT +vg +EN +Sq +Ab +Ab +pn +oS +Vp +dt +dt +Cg +wt +gA +sq +BH +BH +BH +AW +Pi +AW +AW +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 +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 +"} +(169,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Cg +dt +dt +dt +yV +VU +VU +VU +VU +VU +VU +VU +VU +wt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +UN +fT +fT +fT +fT +fT +Cv +qu +fT +Kt +jX +Jg +Pc +Ab +Ej +PU +mA +Vp +dt +dt +Cg +wt +oz +sq +tu +AW +AW +AW +AW +AW +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 +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 +"} +(170,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Cg +dt +dt +dt +yV +VU +VU +VU +VU +VU +VU +VU +VU +jd +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Il +Ny +LJ +vY +Hr +FH +FH +kw +RL +EN +Pc +Ab +Ab +pn +Rf +fH +Vp +dt +dt +ek +wt +HJ +BH +tu +AW +AW +sg +AW +AW +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 +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 +"} +(171,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Cg +dt +dt +dt +yV +VU +VU +VU +VU +UP +VU +VU +VU +jd +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +Il +uX +FH +wn +Xi +Ab +Ab +EN +Jg +Pc +Ab +Ab +Ej +PU +xj +Cp +Dw +dt +dt +ek +Sl +hu +BH +tu +Wb +AW +AW +AW +AW +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 +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 +"} +(172,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Cg +dt +dt +dt +yV +VU +VU +VU +VU +VU +VU +VU +VU +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fT +rk +FH +Nw +fT +Ab +Ab +Sq +Pc +Ab +Ab +Ej +CP +Bn +jX +fx +dt +dt +zH +ek +Sl +hu +BH +tu +AW +AW +AW +AW +AW +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 +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 +"} +(173,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +Sl +dt +dt +dt +Sl +Yh +VU +VU +VU +VU +VU +VU +VU +jd +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +CH +Ab +xV +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ej +KF +Kt +Is +Cp +Dw +dt +dt +Cg +Sl +Sl +hu +BH +tu +sg +kk +AW +AW +AW +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 +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 +"} +(174,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +jd +dt +dt +dt +dt +dt +dt +dt +aa +fx +dt +dt +dt +nz +LM +Yh +VU +VU +VU +VU +VU +VU +jd +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +CH +Ab +Ab +Ab +Ab +Ab +Ab +Ab +Ej +FO +PU +uB +Iz +Cp +Dw +dt +dt +zH +Cp +Sl +fO +jB +BH +tu +AW +AW +AW +AW +AW +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 +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 +"} +(175,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +dt +dt +dt +dt +dt +dt +aa +fx +dt +dt +dt +dt +dt +nz +LM +Yh +VU +VU +VU +VU +VU +wt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +fT +vA +QK +eZ +vs +Bt +pr +FO +PU +ea +Ae +Ap +Cp +Dw +dt +dt +dt +gx +Sl +Sl +hu +BH +BH +tu +AW +AW +sg +AW +AW +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 +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 +"} +(176,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +aa +aa +aa +aa +aa +aa +fx +dt +MA +vp +oI +vp +pJ +dt +nz +LM +Yh +VU +VU +VU +VU +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +vs +dW +zZ +Ko +vs +vs +vs +xW +dg +RL +Cp +fx +Dw +dt +dt +dt +zH +Cp +Sl +fO +jB +BH +tu +tu +AW +AW +AW +AW +AW +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 +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 +"} +(177,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +Oq +Sl +kj +kj +kj +kj +Sl +dt +MA +Fc +iC +iC +iC +DQ +pJ +dt +nz +Sl +Wi +Wi +Wi +Sl +RT +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +IZ +uR +fx +Cu +nY +wt +XX +fx +Cu +Cu +Cu +Dw +dt +dt +dt +dt +zH +Cp +Sl +Sl +hu +BH +BH +tu +AW +AW +sg +AW +AW +AW +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 +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 +"} +(178,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +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 +dt +dt +dt +ZI +dt +dt +dt +dt +dt +dt +dt +dt +zH +gx +Cp +Sl +Sl +fO +jB +BH +tu +tu +op +AW +AW +Pi +AW +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 +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 +"} +(179,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +or +iC +iC +cV +iC +iC +Du +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 +dt +dt +dt +ZI +dt +dt +dt +dt +dt +dt +zH +kj +Cp +Sl +Sl +Sl +fO +jB +BH +BH +tu +AW +AW +AW +AW +AW +AW +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 +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 +"} +(180,1,3) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +ZI +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 +dt +dt +dt +Rh +iC +iC +iC +iC +iC +Hw +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 +dt +dt +dt +ZI +dt +kj +kj +kj +ek +ek +ek +Sl +Sl +Sl +fO +AF +jB +BH +BH +tu +tu +AW +sg +AW +AW +sg +AW +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 +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 +"} +(181,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +RT +Sl +Pw +Pw +Pw +wO +RY +dt +SI +Mr +iC +iC +iC +FP +GS +dt +OW +yK +wh +wh +wh +Sl +Oq +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +IZ +IZ +IZ +wt +wt +wt +wt +wt +wt +Sl +Sl +Sl +fO +AF +jB +BH +BH +BH +tu +tu +zK +AW +AW +Wb +AW +AW +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 +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 +"} +(182,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +ek +ek +ek +ek +ek +Mz +RY +dt +SI +jN +Lw +jN +GS +dt +OW +qS +ek +ek +ek +ek +ek +wt +wt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +wt +Ch +wt +wt +wt +wt +wt +wt +UN +UN +gA +oz +Dy +AF +AF +AF +jB +BH +BH +BH +tu +tu +tu +AW +AW +sg +AW +AW +AW +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 +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 +aa +"} +(183,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +Mz +RY +dt +dt +dt +dt +dt +OW +qS +ek +ek +ek +ek +ek +ek +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +UN +UN +UN +sq +sq +BH +BH +BH +BH +BH +BH +tu +tu +tu +AW +AW +sg +AW +AW +AW +AW +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 +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 +aa +aa +"} +(184,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +ek +ek +ek +Mz +RY +dt +dt +dt +OW +qS +ek +ek +ek +ek +ek +ek +ek +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +dt +aa +aa +gA +UN +UN +UN +BH +tu +tu +tu +tu +tu +tu +tu +tu +op +AW +AW +AW +AW +AW +AW +sg +AW +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 +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 +aa +aa +"} +(185,1,3) = {" +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 +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 +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 +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +wO +dt +dt +dt +yK +ek +ek +ek +ek +ek +ek +ek +ek +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +UN +UN +UN +BH +AW +AW +AW +AW +AW +Wb +AW +AW +sg +AW +kk +AW +AW +AW +AW +AW +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 +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 +aa +aa +aa +"} +(186,1,3) = {" +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 +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 +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 +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +VE +dt +dt +dt +hE +ek +ek +ek +ek +ek +ek +ek +ek +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sq +sq +BH +BH +BH +AW +Pi +AW +AW +sg +AW +AW +AW +AW +AW +AW +AW +AW +sg +AW +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 +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 +aa +aa +aa +aa +"} +(187,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +UN +yx +UN +UN +Mk +dt +dt +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +VE +dt +dt +dt +hE +ek +ek +ek +ek +ek +ek +ek +ek +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +sq +aa +aa +aa +AW +AW +AW +sg +AW +AW +AW +Pi +AW +AW +AW +sg +AW +AW +AW +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 +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 +aa +aa +aa +aa +aa +"} +(188,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +ek +ek +ek +ek +ek +ek +ek +ek +VE +dt +dt +dt +hE +ek +ek +ek +ek +ek +ek +ek +ek +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 +AW +AW +AW +AW +AW +AW +AW +sg +AW +AW +AW +AW +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +lH +Ry +pY +UN +UN +dt +dt +aa +wt +ek +ek +ek +ek +ek +ek +ek +ek +Sl +dt +dt +dt +Sl +ek +ek +ek +ek +ek +ek +ek +ek +wt +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 +AW +AW +AW +AW +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +OV +Up +tO +UN +UN +dt +dt +aa +wt +wt +aa +aa +aa +aa +aa +aa +wt +wt +dt +dt +dt +wt +wt +aa +aa +aa +aa +aa +aa +wt +wt +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +ql +iG +kp +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +wt +ek +dt +dt +dt +ek +wt +aa +aa +aa +aa +aa +aa +aa +ek +ek +ek +ek +yJ +yJ +yJ +yJ +yJ +yJ +dt +dt +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 +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 +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 +"} +(192,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +UN +UN +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +CS +ek +yJ +yJ +yJ +yJ +yJ +yJ +dt +yJ +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 +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 +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 +"} +(193,1,3) = {" +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 +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 +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 +dt +dt +dt +UN +UN +UN +yx +UN +UN +UN +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +CS +ek +dt +dt +ku +qv +dt +dt +yJ +yJ +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 +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 +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 +"} +(194,1,3) = {" +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 +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 +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 +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +aa +aa +aa +aa +aa +aa +aa +aa +ek +ek +CS +ek +dt +dt +cm +cm +dt +dt +yJ +yJ +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 +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 +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 +"} +(195,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +yJ +dt +dt +dt +cm +QH +dt +dt +yJ +dt +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 +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 +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 +"} +(196,1,3) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ek +dt +dt +dt +ek +aa +aa +aa +aa +aa +aa +aa +aa +dt +dt +yJ +dt +dt +dt +VM +AO +dt +dt +dt +dt +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 +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 +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 +"} +(197,1,3) = {" +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 +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 +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 +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 +dt +dt +dt +dt +dt +dt +dt +dt +dt +yJ +dt +dt +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 +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 +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 +"} +(198,1,3) = {" +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 +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 +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 +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 +dt +dt +dt +yJ +yJ +yJ +yJ +dt +dt +dt +dt +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 +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 +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 +aa +"} +(199,1,3) = {" +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 +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 +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 +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 +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +dt +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 +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 +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 +"} +(200,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,1,3) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} + +(1,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(67,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(68,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(69,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(70,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(71,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(72,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(73,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +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 +aa +aa +aa +aa +aa +aa +"} +(74,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +fN +fN +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(75,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +wt +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +AW +AW +AW +AW +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 +aa +"} +(76,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +XO +iC +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +AW +AW +AW +AW +AW +AW +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 +aa +"} +(77,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +TG +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Hb +FM +Hb +Hb +qO +Hb +FM +Hb +aj +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +"} +(78,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +XO +iC +Jp +iC +iC +jp +Hb +aj +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +iC +iC +wt +iC +Jp +iC +iC +iC +iC +iC +jp +Hb +aj +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +sl +sl +wt +sl +wt +sW +iC +iC +iC +iC +iC +iC +iC +GP +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +tF +tF +yq +sl +sl +sl +sl +sW +iC +iC +iC +Hx +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +yq +sW +iC +iC +NT +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +UQ +Fm +yq +sW +iC +Mm +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +tF +tF +tF +tF +tF +UQ +XO +Ed +tF +Ii +iC +iC +Hx +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +UQ +Fm +tF +tF +tF +UQ +XO +Ed +tF +tF +Ii +iC +iC +NT +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +OG +XO +Fm +tF +UQ +XO +Ed +tF +tF +tF +Ii +iC +iC +Mm +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +xI +xI +wt +wt +iC +iC +iC +iC +iC +iC +wt +wt +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +OG +ov +sc +IV +Ed +tF +tF +tF +tF +Ii +iC +iC +iC +Hx +iC +iC +iC +iC +wt +wt +xI +xI +wt +UQ +sc +sc +Fm +wt +xI +xI +wt +wt +iC +iC +iC +sq +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +tF +tF +tF +tF +tF +zv +PR +hN +tF +tF +tF +tF +tF +yq +sW +iC +iC +NT +iC +iC +iC +iC +wt +UQ +sc +sc +sc +nm +XO +XO +lb +sc +sc +sc +Fm +wt +iC +iC +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +jd +tF +tF +tF +UQ +IV +Co +ov +Fm +tF +tF +tF +tF +tF +wt +Jp +Jp +IF +Jp +wt +iC +iC +Om +zv +QO +Co +Co +Ee +XO +XO +QO +Co +Co +Ee +hN +wt +iC +iC +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +xI +jd +wt +tF +tF +UQ +QO +Ed +tF +OG +XO +Fm +tF +tF +tF +tF +Ii +iC +iC +NT +iC +wt +wt +sl +wt +zv +hN +tF +tF +OG +Co +Co +Ed +tF +tF +zv +hN +wt +iC +iC +iC +PQ +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +UN +UN +jd +sl +sW +OG +Ed +tF +tF +tF +OG +Ed +tF +tF +tF +tF +wt +wt +XO +tV +XO +wt +XS +dZ +Om +OG +Ed +tF +tF +tF +tF +tF +tF +tF +tF +OG +Ed +wt +iC +iC +iC +sq +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +UN +UN +Ch +UN +yq +sW +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +iC +NT +iC +iC +Om +ek +iz +fN +fN +fN +fN +fN +fN +fN +fN +fN +fN +fN +fN +wt +wt +wt +wt +sq +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +UN +UN +jd +UN +UN +Ii +tF +tF +tF +Id +Gb +Gb +Gb +Gb +yl +tF +Ii +iC +iC +NT +iC +iC +Om +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +ek +wt +Jp +sq +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +UN +UN +wt +jd +Ch +jd +wt +jd +tF +tF +tF +tF +tF +tF +QP +tF +wt +Jp +Jp +IF +Jp +Jp +wt +ek +fx +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +nY +ek +wt +iC +sq +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +Jp +Ug +Jp +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +jd +NE +jd +wt +wt +wt +wt +UN +UN +UN +UN +UN +UN +jd +tF +tF +UQ +sc +Fm +tF +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +dt +kj +kj +kj +kj +kj +kj +kj +kj +kj +kj +dt +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +wt +iG +iG +iG +iG +iG +UN +wt +wt +UN +UN +UN +UN +UN +Ii +tF +UQ +nm +XO +lb +Fm +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +sd +qc +qc +qc +qc +qc +qc +qc +qc +DB +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +wt +qc +qc +qc +qc +DB +Nx +UN +wt +wt +UN +UN +UN +UN +Ii +tF +zv +XO +XO +XO +hN +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +UV +lF +Nx +UN +wt +UN +UN +UN +UN +jd +tF +zv +XO +XO +XO +hN +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UV +DB +OV +wt +jd +jd +Ch +jd +wt +jd +zv +XO +XO +XO +hN +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +wt +fp +iG +iG +iG +LC +jd +OG +Ee +XO +QO +Ed +tF +QP +tF +wt +Jp +Jp +IF +Jp +Jp +wt +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +wt +Jp +sq +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +jd +tO +dZ +dZ +dZ +OV +jd +tF +OG +Co +Ed +tF +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +NE +tO +dZ +Mo +dZ +OV +Ch +tF +tF +tF +tF +tF +tF +QP +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +jd +tO +dZ +dZ +dZ +OV +jd +tF +Id +Gb +Gb +Gb +Gb +wR +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +zm +iC +iC +iC +iC +iC +iC +iC +iC +iJ +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +iC +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +ms +CF +CF +CF +cB +jd +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +iC +NT +iC +iC +Om +ek +Vp +Cg +ww +ja +ja +ja +ja +ja +ja +ja +ja +kX +Vp +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +dZ +dZ +dZ +dZ +dZ +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +NT +iC +iC +Om +ek +Vp +dt +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +Cu +dt +Cg +ek +Sl +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +wt +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +Og +dN +dN +rI +dZ +wt +wt +Ky +Ky +Ky +Ky +Ky +Ky +wt +wt +Jp +Jp +IF +Jp +Jp +wt +ek +Jj +kj +kj +kj +kj +dt +XO +XO +dt +kj +kj +kj +kj +gx +ek +wt +iC +sq +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +TC +iC +iC +WX +dZ +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +wt +fN +fN +fN +fN +wt +wt +Vp +XO +XO +Cg +wt +wt +fN +fN +fN +fN +wt +Jp +sq +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +xg +oh +xg +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +XS +dZ +TC +iC +iC +WX +dZ +xI +tF +UQ +sc +sc +sc +sc +Fm +tF +Ii +iC +iC +NT +iC +iC +iC +iC +iC +iC +iC +iC +HM +dt +XO +XO +dt +Su +iC +iC +iC +iC +iC +wt +iC +sq +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +sg +iC +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +ek +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +dZ +Jm +uh +iC +WX +dZ +xI +tF +zv +XO +XO +XO +XO +hN +tF +Ii +iC +iC +NT +iC +iC +iC +iC +iC +iC +iC +iC +dt +dt +XO +XO +dt +dt +iC +iC +iC +iC +iC +wt +iC +PQ +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +iC +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 +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +dt +dt +dt +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +dZ +dZ +Jm +BZ +RB +dZ +xI +tF +OG +Co +Co +Co +Co +Ed +tF +Ii +iC +iC +NT +iC +iC +iC +iC +iC +iC +iC +iC +mT +kj +kj +kj +kj +Ok +iC +iC +iC +iC +iC +wt +iC +PQ +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +"} +(111,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iz +XS +dZ +dZ +dZ +dZ +dZ +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +BD +sl +sl +sl +sl +wt +wt +Sl +Sl +Sl +Sl +wt +wt +ja +ja +ja +ja +wt +iC +sq +iC +iC +iC +iC +iC +AW +AW +sg +AW +AW +AW +AW +NS +AW +AW +AW +AW +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 +aa +aa +aa +aa +"} +(112,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +xI +xI +xI +wt +wt +wt +Ky +Ky +Ky +Ky +wt +wt +wt +BD +Jp +Jp +IF +Jp +iJ +Cp +Cp +Cp +Cp +Cp +Cp +Sl +xI +xI +xI +xI +xI +xI +wt +xI +xI +wt +wt +Jp +wt +iC +iC +iC +iC +iC +iC +AW +AW +sq +DY +AW +AW +AW +AW +AW +AW +AW +iC +iC +iC +iC +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 +"} +(113,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +Jp +iC +iC +CW +iC +iJ +dt +dt +dt +dt +dt +Cp +Sl +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +NK +qY +AW +AW +AW +NS +AW +AW +AW +AW +iC +iC +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 +"} +(114,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +UQ +sc +sc +Fm +tF +tF +UQ +sc +sc +Fm +tF +Ii +iC +Jp +iC +iC +CW +Qj +kX +dt +dt +dt +dt +dt +Cp +Sl +tF +UQ +sc +sc +Fm +tF +xI +tF +UQ +Fm +tF +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UD +tu +AW +AW +AW +AW +AW +AW +AW +AW +iC +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 +"} +(115,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +ek +ek +dt +dt +dt +ek +ek +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +tF +zv +XO +XO +hN +tF +Ii +iC +Jp +Jp +Jp +Wn +dZ +dZ +Cp +Ba +pJ +dt +MA +nr +Sl +tF +zv +XO +XO +hN +tF +xI +tF +zv +hN +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +fe +qJ +AW +AW +AW +Xs +AW +AW +Xs +NS +AW +AW +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 +"} +(116,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +xg +xg +mJ +mJ +ek +ek +ek +ek +ek +mJ +mJ +xg +xg +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +OG +Co +Co +Ed +tF +tF +OG +Co +Co +Ed +tF +Ii +iC +Jp +iC +iC +CW +Re +DB +Yy +Ts +iC +iC +iC +Qg +wt +tF +OG +Co +Co +Ed +tF +xI +tF +OG +Ed +tF +xI +iC +iC +iC +iC +iC +iC +iC +AW +AW +sq +QL +NS +AW +Xs +AW +Xs +AW +AW +AW +Xs +AW +AW +AW +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 +"} +(117,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +xg +xg +mJ +ek +ek +ek +mJ +mJ +xg +Dq +xg +mJ +mJ +ek +ek +ek +mJ +xg +xg +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +Jp +iC +iC +CW +iC +iJ +or +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +wt +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +Xs +iC +iC +iC +iC +Xs +AW +Xs +AW +AW +AW +AW +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 +"} +(118,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +ek +ek +ek +ek +ek +mJ +ek +fx +dt +nY +ek +mJ +ek +ek +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +fN +fN +fN +wt +wt +tF +tF +tF +tF +tF +tF +wt +wt +Yy +Jp +Jp +IF +Jp +iJ +or +iC +iC +iC +iC +iC +wt +wt +wt +xI +xI +xI +wt +wt +wt +xI +xI +xI +wt +wt +wt +iC +iC +iC +iC +iC +iC +AW +AW +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +Xs +AW +AW +AW +AW +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 +"} +(119,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +ek +ek +ek +ek +ek +xg +fx +zH +Cp +qI +nY +mJ +Ht +Ht +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +tF +UQ +sc +sc +Fm +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +wt +Jb +iC +iC +iC +Jb +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +iC +iC +AW +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(120,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +ek +fx +dt +dt +dt +Dq +dt +Cp +Yt +Cp +dt +Cp +Ht +Ht +ek +ek +ek +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +KU +tF +wt +wg +Jp +IF +Jp +UW +BD +wg +Jp +Jp +Jp +UW +wt +tF +UQ +sc +sc +Fm +tF +xI +tF +UQ +sc +sc +Fm +tF +wt +xI +xI +xI +xI +xI +iC +AW +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +NS +AW +AW +AW +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 +"} +(121,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +ek +ek +fx +dt +zk +BA +BA +xg +Jj +Zl +Cp +Dw +gx +mJ +gQ +Ht +ek +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +uL +tF +Ii +iC +iC +Mm +iC +iC +bH +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +xI +tF +zv +XO +XO +hN +tF +xI +tF +tF +tF +tF +xI +iC +AW +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(122,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +fx +dt +gx +vu +iC +iC +mJ +ek +Jj +dt +gx +ek +mJ +cX +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +uL +tF +Ii +iC +iC +iC +GP +iC +Jp +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +xI +tF +zv +XO +XO +hN +tF +wt +tF +tF +tF +tF +xI +iC +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +sg +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 +"} +(123,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ab +ab +dt +gx +ek +qw +iC +iC +mJ +mJ +xg +Dq +xg +mJ +mJ +Bs +Ht +Ht +Ht +Ht +Ht +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +OG +Co +Co +Ed +tF +gZ +tF +Ii +iC +iC +iC +iC +jp +FM +aj +iC +iC +iC +iC +Om +tF +OG +Co +Co +Ed +tF +xI +tF +OG +Co +Co +Ed +tF +xI +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(124,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +iv +ek +dt +ek +ek +vu +BJ +mJ +mJ +ek +fx +ek +nY +ek +mJ +mJ +Ht +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +Jp +iC +GP +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(125,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +dB +hI +dt +ek +fx +ek +mJ +mJ +BA +MB +dt +ek +dt +MM +BA +mJ +dR +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +xI +xI +xI +xI +xI +xI +wt +wt +nH +iC +iC +iC +iC +Jp +iC +iC +GP +iC +Fn +wt +wt +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +wt +wt +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(126,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xg +hl +ek +dt +ek +dt +ab +xg +Jp +iC +Mi +pJ +ek +MA +iH +iC +Jp +xg +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +Jp +iC +iC +iC +Hx +iC +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +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 +"} +(127,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +hv +Fg +Jj +ek +gx +ab +xg +Jp +iC +iC +GS +dt +SI +iC +iC +Jp +xg +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +UQ +sc +sc +sc +sc +Fm +tF +Ii +iC +iC +iC +iC +iC +kn +iC +iC +iC +NT +iC +Om +tF +UQ +sc +sc +Fm +tF +xI +tF +UQ +sc +sc +Fm +tF +xI +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +sg +AW +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 +"} +(128,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +nM +Yv +dt +dt +dt +ab +xg +Jp +iC +iC +dt +nL +dt +iC +iC +Jp +xg +Ht +Ht +Ht +Ht +ek +mU +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +XO +XO +hN +tF +Ii +Jp +Jp +Jp +Jp +FJ +zj +td +Jp +Jp +IF +Jp +Om +tF +zv +XO +XO +hN +tF +xI +tF +zv +XO +XO +hN +tF +wt +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +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 +"} +(129,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +bM +bD +fx +ek +nY +ab +xg +Jp +iC +iC +pJ +dt +MA +iC +iC +Jp +xg +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +OG +Co +Co +Co +Co +Ed +tF +Ii +iC +iC +iC +iC +iC +bH +iC +iC +iC +NT +iC +Om +tF +OG +Co +Co +Ed +tF +xI +tF +OG +Co +Co +Ed +tF +xI +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(130,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +xg +OQ +ek +dt +ek +dt +ab +xg +Jp +iC +yj +GS +ek +SI +YW +iC +Jp +xg +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +Jp +iC +iC +iC +wk +iC +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(131,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +pA +hI +dt +ek +Jj +ek +mJ +mJ +gl +XK +dt +ek +dt +hM +gl +mJ +dR +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +xI +xI +xI +xI +xI +xI +wt +wt +nH +iC +iC +iC +iC +Jp +iC +iC +Eg +iC +Fn +wt +wt +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +xI +wt +wt +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +qC +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 +"} +(132,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +qy +ek +dt +nY +ek +ek +ab +mJ +mJ +ek +Jj +ek +gx +ek +mJ +mJ +Ht +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +Jp +iC +Eg +iC +iC +iC +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +tF +tF +tF +tF +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(133,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ab +ab +Jj +dt +nY +ek +ek +ek +mJ +mJ +xg +Dq +xg +mJ +mJ +gQ +Ht +Ht +Ht +Ht +Ht +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +UQ +sc +sc +Fm +tF +KU +tF +Ii +iC +iC +iC +iC +XC +FM +fB +iC +iC +iC +iC +Om +tF +UQ +sc +sc +Fm +tF +xI +tF +UQ +sc +sc +Fm +tF +xI +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(134,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ab +ek +Jj +dt +nY +ek +ek +mJ +ek +fx +dt +nY +ek +mJ +cX +Ht +Ht +Ht +Ht +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +uL +tF +Ii +iC +iC +iC +Eg +iC +Jp +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +xI +tF +zv +XO +XO +hN +tF +wt +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(135,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +ek +ek +ek +Jj +dt +nY +ek +xg +fx +zH +Cp +qI +nY +mJ +Bs +Ht +ek +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +uL +tF +Ii +iC +iC +CV +iC +iC +kn +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +xI +tF +zv +XO +XO +hN +tF +xI +tF +tF +tF +tF +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(136,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +ek +ek +Jj +dt +dt +Dq +dt +Cp +Yt +Cp +dt +Cp +Ht +Ht +ek +ek +ek +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +hN +tF +gZ +tF +wt +wg +Jp +IF +Jp +UW +Yy +wg +Jp +Jp +Jp +UW +wt +tF +OG +Co +Co +Ed +tF +xI +tF +OG +Co +Co +Ed +tF +wt +xI +xI +xI +xI +xI +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(137,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +ek +ek +ek +ek +ek +xg +Jj +Zl +Cp +Dw +gx +mJ +Ht +Ht +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +tF +OG +Co +Co +Ed +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +wt +Jb +iC +iC +iC +Jb +wt +tF +tF +tF +tF +tF +tF +xI +tF +tF +tF +tF +tF +tF +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +sg +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 +"} +(138,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +ek +ek +ek +ek +ek +mJ +ek +Jj +dt +gx +ek +mJ +ek +ek +ek +ek +ek +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +sl +sl +sl +wt +wt +tF +tF +tF +tF +tF +tF +wt +wt +BD +Jp +Jp +IF +Jp +iJ +or +iC +iC +iC +iC +iC +wt +wt +wt +xI +xI +xI +wt +wt +wt +fN +fN +fN +wt +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(139,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +xg +xg +mJ +ek +ek +ek +mJ +mJ +xg +Dq +xg +mJ +mJ +ek +ek +ek +mJ +xg +xg +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +Jp +iC +iC +CW +iC +iJ +or +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +Ii +qV +qV +qV +qV +Om +Jp +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +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 +"} +(140,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +xg +xg +mJ +mJ +ek +ek +dt +ek +ek +mJ +mJ +xg +xg +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +UQ +sc +sc +sc +sc +sc +sc +sc +sc +Fm +tF +Ii +iC +Jp +iC +iC +CW +Qj +kX +BD +gk +iC +iC +iC +jK +wt +tF +UQ +sc +sc +Fm +tF +wt +db +qV +qV +qV +Vg +Vg +Vg +Vg +Vg +Vg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +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 +"} +(141,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +mJ +ek +ek +dt +dt +dt +ek +ek +mJ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +zv +XO +XO +XO +XO +XO +XO +XO +XO +hN +tF +Ii +iC +Jp +Jp +Jp +Wn +dZ +dZ +Cp +Dl +GS +dt +SI +Mw +Sl +tF +zv +XO +XO +hN +tF +Sl +Et +qV +qV +OL +uw +mc +rh +ke +kq +Vg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +sg +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 +"} +(142,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +OG +Co +Co +Co +Co +Co +Co +Co +Co +Ed +tF +Ii +iC +Jp +iC +iC +CW +Re +DB +dt +dt +dt +dt +dt +Cp +Sl +tF +zv +XO +XO +hN +tF +Sl +Sr +Oe +gv +Bk +KV +uP +ke +ke +SE +Vg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +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 +"} +(143,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +Jp +iC +iC +CW +iC +iJ +dt +dt +dt +dt +dt +Cp +Sl +tF +OG +Co +Co +Ed +tF +Sl +mk +im +im +eN +uw +RF +zr +ke +bE +Vg +iC +iC +iC +iC +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +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 +"} +(144,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +xI +xI +xI +wt +wt +wt +Ky +Ky +Ky +Ky +Ky +wt +wt +Yy +Jp +Jp +IF +Jp +iJ +Cp +Cp +Cp +Cp +Cp +Cp +Sl +tF +tF +tF +tF +tF +tF +Sl +mk +im +im +vb +Vg +Tq +Tq +Tq +Tq +Vg +zc +iC +iC +iC +AW +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +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 +"} +(145,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xg +ek +dt +dt +dt +dt +dt +ek +xg +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UF +vE +dZ +dZ +dZ +dZ +dZ +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +Yy +fN +fN +fN +fN +fN +wt +fN +fN +fN +fN +fN +fN +wt +uO +im +im +AR +sB +qV +qV +qV +qV +sB +zc +iC +iC +iC +AW +AW +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +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 +"} +(146,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +dt +dt +dt +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +dZ +dZ +Og +dN +rI +dZ +xI +tF +tF +tF +tF +tF +tF +tF +tF +wt +Jp +Jp +IF +Jp +Jp +Gl +qV +qV +qV +qV +qV +sB +qV +qV +qV +qV +qV +qV +sB +ew +im +im +AR +qV +qV +qV +qV +qV +qV +zc +iC +iC +iC +iC +AW +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(147,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +mJ +ek +ek +ek +mJ +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +dZ +Og +El +iC +WX +dZ +xI +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +iC +NT +iC +iC +Gl +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +ew +im +im +AR +qV +qV +qV +qV +qV +qV +zc +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(148,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dR +aF +uW +aF +dR +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +vE +dZ +TC +iC +iC +WX +dZ +xI +tF +tF +tF +tF +tF +tF +tF +tF +Ii +iC +iC +NT +iC +iC +Gl +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +qV +ew +im +im +AR +qV +qV +qV +qV +qV +qV +zc +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(149,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +TC +iC +iC +WX +dZ +xI +xI +xI +xI +xI +xI +xI +wt +wt +wt +Jp +Jp +IF +Jp +Jp +Gl +qV +qV +qV +qV +qV +ay +qV +qV +qV +qV +qV +qV +ay +ew +im +im +AR +qV +qV +qV +qV +qV +qV +zc +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(150,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +wt +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +Jm +BZ +BZ +RB +dZ +xI +tF +tF +tF +xI +tF +tF +tF +tF +wt +Jb +iC +NT +iC +Jb +zc +wj +wj +wj +wj +wj +zc +wj +wj +wj +wj +wj +wj +zc +Yb +im +im +AR +ay +qV +qV +qV +qV +ay +zc +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(151,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Om +UN +dZ +dZ +dZ +dZ +dZ +dZ +wt +tF +KU +tF +xI +tF +UQ +Fm +tF +wt +iC +iC +NT +iC +iC +ew +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +pz +im +im +Sr +hX +Pt +Pt +Pt +Pt +hX +zc +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(152,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +wt +wt +wt +xI +xI +xI +xI +wt +wt +tF +uL +tF +xI +tF +zv +hN +tF +Ii +iC +iC +NT +iC +iC +ew +yc +pz +pz +pz +pz +yc +pz +pz +pz +pz +pz +pz +yc +pz +im +im +eN +GB +Bg +Kf +av +gi +hX +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(153,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +jd +dZ +dZ +dZ +dZ +dZ +wt +tF +gZ +tF +xI +tF +OG +Ed +tF +Ii +iC +iC +NT +iC +iC +zW +Iu +Iu +vB +Iu +am +eQ +am +nj +om +om +Ju +om +bw +mk +mk +mk +mk +vD +yL +av +av +Wf +hX +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(154,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +NE +dZ +Og +dN +rI +dZ +wt +tF +tF +tF +wt +tF +tF +tF +tF +wt +iC +iC +NT +iC +iC +eX +aC +if +vK +vy +am +Vm +AU +dm +om +VO +Vc +sz +om +bU +Gr +Gr +Tm +GB +yU +aW +av +GJ +hX +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(155,1,4) = {" +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +jd +dZ +TC +iC +WX +dZ +wt +wt +xI +wt +wt +wt +xI +xI +wt +wt +Jp +Jp +IF +Jp +Jp +eX +HA +if +if +vf +am +gz +AU +Af +om +eS +hd +rd +om +RH +Gr +Gr +Tm +hX +hX +hX +hX +hX +hX +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(156,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iJ +OV +jd +dZ +TC +iC +WX +dZ +wt +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +NT +iC +iC +eX +cb +wl +KY +Jv +am +WG +rA +up +om +EZ +jD +JM +om +TE +ZM +Ik +Tm +zc +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(157,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +hB +kX +OV +jd +dZ +TC +iC +WX +dZ +xI +tF +UQ +sc +sc +sc +sc +Fm +tF +Ii +iC +iC +NT +iC +iC +zW +Iu +Iu +Iu +Iu +am +eQ +eQ +eQ +bw +bw +bw +bw +bw +zc +zc +zc +zc +zc +iC +iC +iC +iC +iC +iC +iC +iC +iC +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(158,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +iC +iC +iC +iC +hB +DP +Fy +BC +jd +dZ +TC +iC +WX +dZ +xI +tF +zv +XO +XO +XO +XO +hN +tF +Ii +iC +iC +NT +iC +iC +ln +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(159,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +wt +ja +ja +ja +ja +kX +Fy +BC +jd +jd +dZ +TC +iC +WX +dZ +xI +tF +OG +Co +Co +Co +Co +Ed +tF +Ii +iC +iC +NT +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(160,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +Jp +Ug +Jp +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +wt +Ry +Ry +Ry +Ry +Ry +BC +jd +jd +dZ +dZ +TC +iC +WX +dZ +xI +tF +tF +tF +tF +tF +tF +tF +tF +wt +iC +iC +NT +iC +iC +ln +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(161,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +Jp +Ug +Jp +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +jd +NE +jd +jd +jd +jd +jd +dZ +cj +dd +TC +iC +MS +xB +xI +xI +NU +DO +DO +NU +NU +NU +YE +YE +Jp +Jp +IF +Jp +Jp +ln +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +"} +(162,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +dZ +dZ +dZ +dZ +dZ +dZ +dZ +dZ +RG +Og +El +iC +RG +NU +NU +NU +NU +KC +KC +GL +Oa +in +in +SQ +iC +iC +NT +iC +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +"} +(163,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +xI +dZ +Og +dN +dN +dN +dN +dN +dN +dN +El +iC +Jp +NU +NU +AT +HP +Bu +MX +MX +De +Oa +in +in +SQ +iC +iC +NT +iC +iC +ln +iC +iC +iC +wt +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +"} +(164,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dZ +TC +iC +iC +iC +iC +iC +iC +iC +iC +Jp +NU +NU +AT +bS +bS +bS +MX +MX +Tg +Oa +in +in +SQ +iC +iC +NT +iC +iC +wt +wt +wt +wt +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +"} +(165,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +dZ +TC +iC +iC +iC +iC +iC +iC +Po +dd +NU +NU +Ce +bS +bS +bS +bS +bS +ma +HR +Oa +Oa +YE +YE +wt +XO +tV +XO +wt +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +"} +(166,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +RG +NU +NU +AT +bS +bS +bS +bS +bS +ma +HR +in +Oa +in +in +YE +iC +iC +NT +iC +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +"} +(167,1,4) = {" +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 +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 +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 +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +NU +AT +bS +Eb +OY +OY +Dj +bS +Tg +in +in +Oa +in +in +YE +Jp +Jp +IF +Jp +wt +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +"} +(168,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +UN +NU +bp +bS +ma +gm +FZ +ah +bS +Tg +Oa +Oa +Oa +Oa +Oa +Aj +iC +iC +NT +iC +wt +iC +sq +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +"} +(169,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +NU +NU +jW +bS +Tg +in +in +ZG +ma +HR +in +in +Oa +in +in +Aj +iC +iC +wk +iC +wt +iC +sq +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Aj +KC +MX +MX +Tg +in +in +zD +HR +in +in +in +Oa +in +xt +Yo +iC +CV +iC +iC +wt +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +Aj +KC +MX +MX +Tg +in +in +Oa +in +in +in +in +Oa +in +Aj +iC +iC +NT +iC +iC +Jb +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +AW +AW +AW +AW +AW +AW +AW +AW +AW +AW +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 +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +NU +ua +fb +hh +HR +in +in +Oa +in +in +in +in +Oa +xt +Yo +iC +iC +wk +iC +iC +Jb +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(173,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +NU +Oa +Oa +Oa +Oa +Oa +Oa +Oa +Oa +Oa +Oa +Oa +sD +Yo +iC +iC +CV +iC +iC +Jb +Jb +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(174,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +NU +in +in +in +Oa +in +in +Oa +in +in +in +sD +Yo +iC +iC +iC +wk +iC +iC +Jb +iC +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(175,1,4) = {" +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 +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 +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 +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +NU +in +in +in +YE +in +in +Oa +in +sD +DO +Yo +iC +iC +iC +Eg +iC +iC +Jb +Jb +iC +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(176,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +YE +Az +Az +Az +YE +YE +YE +DO +DO +Yo +iC +iC +iC +iC +Eg +iC +iC +iC +Jb +iC +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(177,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +iC +Jp +iC +iC +iC +iC +iC +XC +fB +iC +iC +iC +Jb +Jb +iC +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(178,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +XO +iC +Jp +iC +iC +XC +Hb +fB +iC +iC +iC +iC +Jb +Jb +iC +iC +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(179,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +Hb +Hb +Hb +Hb +qO +Hb +FM +Hb +fB +iC +iC +iC +iC +iC +Jb +Jb +Jb +iC +iC +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(180,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +XO +iC +Jp +iC +iC +iC +iC +iC +Jb +Jb +Jb +iC +iC +iC +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(181,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +wt +wt +wt +wt +wt +wt +Jb +Jb +Jb +iC +iC +iC +PQ +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(182,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +PQ +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(183,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +sq +sq +PQ +PQ +PQ +PQ +PQ +PQ +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(184,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(185,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(186,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(187,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(188,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(189,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(190,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(191,1,4) = {" +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +iC +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 +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 +"} +(192,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,1,4) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} + +(1,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(141,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(142,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(143,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(144,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(145,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(146,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(147,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(148,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(149,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(150,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(151,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(152,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(153,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(154,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(155,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(156,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(157,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(158,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(159,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(160,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(161,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(162,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(163,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(164,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(165,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(166,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(167,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(168,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(169,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(170,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(171,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(172,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(173,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(174,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(175,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(176,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(177,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(178,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(179,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(180,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(181,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(182,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(183,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(184,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(185,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(186,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(187,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(188,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(189,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(190,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(191,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(198,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(199,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(200,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(201,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(202,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(203,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(204,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(205,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(206,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(207,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(208,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(209,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(210,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(211,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(212,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(213,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(214,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(215,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(216,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(217,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(218,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(219,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(220,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(221,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(222,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(223,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(224,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(225,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(226,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(227,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(228,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(229,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(230,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(231,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(232,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(233,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(234,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(235,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(236,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(237,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(238,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(239,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(240,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(241,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(242,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(243,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(244,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(245,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(246,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(247,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(248,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(249,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(250,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(251,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(252,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(253,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(254,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(255,1,5) = {" +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 +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 +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 +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 +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 +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 +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 +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/_maps/stations/kilo.dmm b/_maps/stations/kilo.dmm new file mode 100644 index 000000000000..5b246aaa864b --- /dev/null +++ b/_maps/stations/kilo.dmm @@ -0,0 +1,147715 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aac" = ( +/obj/machinery/power/smes{ + charge = 5e+006; + name = "ai power storage unit" + }, +/obj/structure/cable, +/turf/open/floor/circuit/green, +/area/ai_monitored/turret_protected/ai) +"aad" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aae" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"aaf" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"aaj" = ( +/turf/closed/wall, +/area/security/brig) +"aak" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/atmos) +"aam" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/assembly/flash/handheld, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aao" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aap" = ( +/turf/closed/mineral/random/low_chance, +/area/space/nearstation) +"aar" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aat" = ( +/turf/closed/wall/r_wall/rust, +/area/security/prison) +"aau" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"aav" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aaw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aax" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"aay" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaz" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaB" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"aaD" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aaF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"aaI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"aaK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -4 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aaO" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"aaP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaQ" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"aaT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/warden) +"aaV" = ( +/obj/structure/table/wood, +/obj/item/radio/intercom, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aaW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 4"; + name = "Cell 4"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aaY" = ( +/turf/closed/wall, +/area/security/detectives_office) +"abc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 3"; + name = "Cell 3"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"abg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"abi" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abk" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abp" = ( +/turf/closed/wall, +/area/security/prison) +"abr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 1"; + name = "Cell 1"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"abs" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/pickaxe, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"abD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abE" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"abF" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"abJ" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"abK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"abM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"abN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/fore) +"abO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"abS" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"abT" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/detectives_office) +"abU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/filingcabinet/security, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"abY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"abZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aca" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"acb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"ace" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "bible locker" + }, +/obj/item/storage/book/bible{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/storage/book/bible, +/obj/item/storage/book/bible{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aci" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/item/storage/box/evidence{ + pixel_y = 5 + }, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/flashlight/seclite, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"acm" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"acr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"acu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"acv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/scientist{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"acx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"acy" = ( +/obj/docking_port/stationary/random{ + id = "pod_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"acG" = ( +/obj/structure/cable, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat_interior) +"acH" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/warden) +"acK" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"acM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"acN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"acS" = ( +/obj/machinery/computer/atmos_alert{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"acT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"acW" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"acY" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"acZ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"ada" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"add" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"ade" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"adf" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"adg" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"adq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ads" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ady" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"adA" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/item/bedsheet/brown, +/turf/open/floor/plating, +/area/maintenance/fore) +"adB" = ( +/obj/machinery/computer/telecomms/monitor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"adH" = ( +/turf/closed/wall, +/area/maintenance/fore) +"adI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adQ" = ( +/turf/closed/wall/rust, +/area/maintenance/fore) +"adR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"adW" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"adZ" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"aea" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aec" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"aed" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"aee" = ( +/obj/machinery/door/airlock/external{ + name = "Satellite External Airlock"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"aef" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/item/iv_drip_item{ + pixel_y = -2; + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"aeg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aei" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"ael" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/security/warden) +"aeo" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"aeq" = ( +/obj/structure/transit_tube/station{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"aer" = ( +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"aes" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Brig Cells"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aet" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aeu" = ( +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"aex" = ( +/obj/structure/lattice/catwalk, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"aez" = ( +/turf/closed/wall, +/area/security/execution/education) +"aeC" = ( +/turf/closed/wall/r_wall, +/area/security/execution/education) +"aeD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"aeK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/fore) +"aeM" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aeO" = ( +/obj/structure/bonfire, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "For the weary spacemen on their quest to rekindle the first plasma fire."; + name = "Carton of Estus" + }, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/item/melee/moonlight_greatsword, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aeP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"aeQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"aeR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aeS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aeU" = ( +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"aeV" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"aeX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno5"; + name = "Creature Cell 5" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"aeY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"aeZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"afa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/southleft{ + name = "Maximum Security Test Chamber"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"afc" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/brig) +"afe" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"afg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno6"; + name = "Creature Cell 6" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"afj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"afl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/port/aft) +"afq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/scientist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afs" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/machinery/door/window/brigdoor/northleft{ + dir = 2; + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/turf/open/floor/plating, +/area/security/warden) +"aft" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"afu" = ( +/obj/structure/transit_tube/station/reverse{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/transit_tube_pod{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"afv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"afw" = ( +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"afx" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"afy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"afz" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/port/aft) +"afA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"afE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"afF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Gas to Chamber" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"afL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"afM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afR" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"afS" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"afU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"afW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"afX" = ( +/obj/machinery/door/airlock/external{ + name = "Science Escape Pod" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"afY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"afZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aga" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"agb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"agd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"age" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"agg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"agl" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"agm" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"ago" = ( +/turf/closed/wall, +/area/hallway/primary/fore) +"agq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 6"; + name = "Cell 6"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"agr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ags" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 5"; + name = "Cell 5"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"agt" = ( +/turf/closed/wall/rust, +/area/space/nearstation) +"agw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"agy" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"agA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/fore) +"agB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"agC" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/obj/item/cardboard_cutout{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/cardboard_cutout, +/turf/open/floor/plating, +/area/maintenance/fore) +"agD" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"agG" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"agL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"agM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell 2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"agQ" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 2"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/science/xenobiology) +"agU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell 4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"agV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"agX" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"agY" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"agZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aha" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno2"; + name = "Creature Cell 2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy"; + name = "Office Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/storage) +"ahe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/northleft{ + name = "Justice Windoor" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ahh" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"ahi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ahn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"aho" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ahr" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"ahs" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno4"; + name = "Creature Cell 4" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ahv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ahx" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/hallway/primary/fore) +"ahz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"ahD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ahF" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ahH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahJ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ahK" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/structure/cable, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"ahL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"ahO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ahQ" = ( +/turf/closed/wall, +/area/cargo/exploration_prep) +"ahS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/central) +"ahT" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ahU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ahV" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port) +"ahY" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aid" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"aih" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell 1" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"aik" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell 3" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"ail" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aiw" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "construction zone"; + req_access_txt = "12" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"aix" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aiA" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aiC" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aiD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aiM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "chapel locker" + }, +/obj/item/clothing/shoes/sandal, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/fancy/candle_box, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiO" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/table, +/obj/item/door_seal/sb{ + pixel_y = 3; + pixel_x = -2 + }, +/obj/item/door_seal/sb{ + pixel_y = -1; + pixel_x = 2 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/key/security, +/obj/item/key/security, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiQ" = ( +/obj/structure/table, +/obj/item/flasher_portable_item{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/flasher_portable_item{ + pixel_x = -2; + pixel_y = -5; + layer = 3.01 + }, +/obj/item/flasher_portable_item{ + pixel_x = 3; + pixel_y = -5; + layer = 3.02 + }, +/obj/item/flasher_portable_item{ + pixel_x = 8; + pixel_y = -5; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/grenade/barrier{ + pixel_x = -5; + pixel_y = 9; + layer = 3.01 + }, +/obj/item/grenade/barrier{ + pixel_x = -1; + pixel_y = 9; + layer = 3.02 + }, +/obj/item/grenade/barrier{ + pixel_x = 3; + pixel_y = 9; + layer = 3.03 + }, +/obj/item/grenade/barrier{ + pixel_x = 7; + pixel_y = 9; + layer = 3.04 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiT" = ( +/obj/structure/table, +/obj/item/storage/briefcase{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/secure/briefcase, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aiX" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno1"; + name = "Creature Cell 1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aiZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/brigdoor/northright{ + id = "Cell 2"; + name = "Cell 2"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"aja" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ajd" = ( +/turf/closed/wall, +/area/maintenance/port/aft) +"aje" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ajh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aji" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ajj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ajl" = ( +/obj/machinery/door/poddoor/preopen{ + id = "xeno3"; + name = "Creature Cell 3" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Creature Cell"; + req_access_txt = "55" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ajn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ajq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"ajr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/storage/crayons, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/maintenance/fore) +"ajs" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"aju" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"ajx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"ajA" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ajC" = ( +/turf/closed/wall/r_wall/rust, +/area/tcommsat/server) +"ajE" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ajG" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/gauze, +/turf/open/floor/plating, +/area/maintenance/fore) +"ajI" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/window/northleft{ + name = "cage door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ajJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ajL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Biohazard"; + name = "Emergency Research Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/research) +"ajP" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"ajT" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/aft) +"ajW" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aka" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"ake" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"akh" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/maintenance/port/aft) +"akm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akq" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/medical/psychology) +"aky" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"akA" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/starboard) +"akC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"akG" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/evidence, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"akI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"akK" = ( +/turf/closed/wall, +/area/security/processing) +"akL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Courtroom"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"akM" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"akO" = ( +/obj/machinery/door/airlock/external{ + name = "Abandoned External Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"akP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"akR" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"akS" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"akU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"akW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"akY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ala" = ( +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"alc" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ale" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"alg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"all" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"alm" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/space/nearstation) +"alv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/shield/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/shield/riot, +/obj/item/shield/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"alx" = ( +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/e_gun, +/obj/item/gun/energy/e_gun{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"aly" = ( +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"alz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"alB" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"alC" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/computer/bounty, +/turf/open/floor/plasteel, +/area/cargo/storage) +"alD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/brown, +/obj/item/clothing/under/misc/overalls, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"alG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"alI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"alK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"alP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack{ + color = "#999999" + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/rubbershot{ + pixel_x = -8; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/beanbag{ + pixel_x = 9; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"alQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"alR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/light/directional/south, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/newscaster/directional/south{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"alS" = ( +/obj/structure/rack, +/obj/item/gun/energy/disabler{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/disabler, +/obj/item/gun/energy/disabler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"alU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"alV" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat_interior) +"alW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"alX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/button/door/directional/south{ + id = "freight_port"; + name = "Freight Bay Control" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"ama" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"amc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ame" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"amf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/camera{ + c_tag = "Port Bow Solar"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"amg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"amh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ami" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aml" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"amm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"amo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"amq" = ( +/mob/living/simple_animal/hostile/asteroid/basilisk{ + environment_smash = 0 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"amr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ams" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"amx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"amz" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/port) +"amA" = ( +/turf/closed/wall, +/area/maintenance/port) +"amB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/space_heater, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard) +"amI" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/poddoor/preopen{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"amN" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"amO" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"amP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"amQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"amR" = ( +/turf/closed/wall/rust, +/area/maintenance/port) +"amY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"ana" = ( +/obj/structure/table, +/obj/item/storage/box/hug{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/razor{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"anb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"ang" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"anh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/processing) +"ani" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anj" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anq" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"anr" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/space/nearstation) +"anu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison/safe) +"anv" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"anw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"anx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"any" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"anD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/folder, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"anF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera/motion{ + c_tag = "Armoury Internal"; + dir = 8 + }, +/obj/structure/rack{ + color = "#999999" + }, +/obj/item/gun/ballistic/shotgun/automatic/combat{ + layer = 3.01 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"anG" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"anH" = ( +/turf/closed/wall, +/area/space/nearstation) +"anS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"anT" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/camera, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"anX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"anY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"anZ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/port/aft) +"aoa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aob" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aoc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aod" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aoe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aof" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/space/nearstation) +"aol" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/easel, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aos" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aow" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aox" = ( +/turf/closed/wall, +/area/maintenance/central) +"aoy" = ( +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"aoz" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"aoD" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/tcommsat/computer) +"aoE" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"aoF" = ( +/obj/machinery/telecomms/receiver/preset_right, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Telecomms Server SMES"; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"aoH" = ( +/turf/closed/wall/r_wall/rust, +/area/medical/virology) +"aoI" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aoJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aoO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aoT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aoV" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/virology) +"aph" = ( +/obj/machinery/camera{ + c_tag = "Satellite Antechamber"; + dir = 1; + name = "satellite camera"; + network = list("minisat") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"api" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apm" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"apn" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"apo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "science locker" + }, +/obj/item/clothing/under/rank/rnd/scientist{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/toggle/labcoat/science, +/obj/item/clothing/shoes/sneakers/white, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"apu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"apx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"apB" = ( +/obj/machinery/power/smes, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"apC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apF" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/popcorn, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"apG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"apH" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/clothing/mask/russian_balaclava, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"apI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/computer/operating, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"apJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"apP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"apR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/turf/open/floor/engine, +/area/science/xenobiology) +"apU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apX" = ( +/turf/closed/wall/rust, +/area/maintenance/central) +"aqd" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"aqh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/restraints/handcuffs, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/revolver{ + pixel_y = 32 + }, +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aqo" = ( +/obj/effect/landmark/start/psychologist, +/turf/open/floor/carpet, +/area/medical/psychology) +"aqq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/camera{ + c_tag = "Genetics Monkey Pen"; + dir = 4; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/grass, +/area/science/genetics) +"aqs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqt" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aqv" = ( +/obj/structure/transit_tube/junction, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"aqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aqA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aqD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"aqG" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aqP" = ( +/obj/structure/cable, +/obj/structure/chair/sofa/left, +/obj/item/toy/plush/moth{ + name = "Big Moffer" + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/carpet, +/area/medical/psychology) +"aqQ" = ( +/obj/effect/turf_decal/sand/plating, +/obj/item/stack/sheet/glass, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aqR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "morgue maintenance"; + req_access_txt = "6" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aqT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aqU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"arc" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"arh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"arl" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"arm" = ( +/obj/machinery/telecomms/receiver/preset_left, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"arn" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"aro" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"arq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Security Doors"; + dir = 4; + name = "aft camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"arr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"art" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/backpack/cultpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/color/black, +/obj/structure/closet{ + name = "chapel locker" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"arv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"ary" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"arz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/tank/internals/emergency_oxygen/empty, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"arB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"arG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/wardrobe/gene_wardrobe, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"arH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"arJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"arK" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"arL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"asd" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"asg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"asi" = ( +/turf/closed/wall/r_wall, +/area/medical/morgue) +"asj" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/middle, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ask" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"asl" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asm" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asn" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aso" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"asr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ass" = ( +/obj/structure/cable, +/turf/open/floor/carpet, +/area/medical/psychology) +"ast" = ( +/obj/structure/chair/pew/left{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asw" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"asC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"asD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"asF" = ( +/turf/closed/wall, +/area/security/courtroom) +"asG" = ( +/turf/closed/wall/rust, +/area/security/courtroom) +"asO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/prison) +"asP" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asQ" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"asZ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"atc" = ( +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/security/courtroom) +"atd" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"atf" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/courtroom) +"atg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ati" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen/red, +/obj/item/stack/package_wrap, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/fore) +"atk" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"atm" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"atn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"ato" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"atp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"atq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "telelab"; + name = "Test Chamber Blast Door" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"att" = ( +/obj/machinery/computer/rdservercontrol, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/server) +"atz" = ( +/obj/machinery/power/smes, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/status_display/shuttle{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"atB" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"atF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atG" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"atH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "genetics sorting disposal pipe"; + sortType = 23 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"atL" = ( +/obj/machinery/door/airlock/maintenance{ + name = "psychology maintenance"; + req_access_txt = "70" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"atM" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/psychology) +"atN" = ( +/obj/structure/flora/tree/jungle/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/psychology) +"atO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"atQ" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/psychology) +"atR" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/psychology) +"atS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"atV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"aua" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"aub" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"auf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"auk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aum" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"auo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"auq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aur" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"auu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology{ + name = "Operating Theater B"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"auz" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"auA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/stasis{ + dir = 4 + }, +/obj/machinery/defibrillator_mount/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"auB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"auC" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"auD" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"auH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/fore) +"auI" = ( +/obj/structure/table/wood, +/obj/item/gavelblock, +/turf/open/floor/plasteel, +/area/security/courtroom) +"auJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"auK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"auO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Division Server Room"; + req_access_txt = "30" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/server) +"auP" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/courtroom) +"auQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"auU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"ava" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard) +"avc" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/security/courtroom) +"ave" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 11; + height = 22; + id = "whiteship_home"; + name = "SS13: Auxiliary Dock, Station-Port"; + width = 35 + }, +/turf/open/space/basic, +/area/space) +"avk" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"avm" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avq" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/aft) +"avr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avu" = ( +/obj/structure/sign/warning/explosives/alt, +/turf/closed/wall, +/area/security/courtroom) +"avy" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avz" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/blue, +/turf/open/floor/plasteel, +/area/security/courtroom) +"avA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard) +"avE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"avO" = ( +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"avS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"avU" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/turf/open/floor/plasteel, +/area/security/courtroom) +"awb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"awd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"awe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/stack/package_wrap, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awf" = ( +/obj/structure/falsewall{ + name = "suspicious wall" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"awk" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/mask/russian_balaclava, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aws" = ( +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"aww" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"awH" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/engineering) +"awQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/med, +/obj/item/assembly/health, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awS" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/security/processing) +"awU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"awY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Psychology"; + req_access_txt = "70" + }, +/turf/open/floor/plasteel/dark, +/area/medical/psychology) +"awZ" = ( +/turf/closed/wall/rust, +/area/security/checkpoint/engineering) +"axf" = ( +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"axj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"axk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"axo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axr" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Mech Bay"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"axu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"axv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"axw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"axx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"axz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"axC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axD" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"axF" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"axG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"axH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"axK" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"axL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"axN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"axR" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"axZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aya" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aye" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"ayj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/tank/internals/oxygen, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ayl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/l3closet/virology, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ayn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ayp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ayv" = ( +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/science/xenobiology) +"ayx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ayy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ayA" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ayB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"ayL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Xenolab"; + name = "Containment Chamber Blast Door" + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/engine, +/area/science/xenobiology) +"ayR" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ayU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/destructive_scanner, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"azd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/crate, +/obj/item/vending_refill/snack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/vending_refill/cola, +/obj/item/screwdriver, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard) +"azf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"azh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"azi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"azo" = ( +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"azv" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat_interior) +"azA" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"azI" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"azL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"azM" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"azS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"azV" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"azW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"azZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aAc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/item/folder/white, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"aAf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"aAg" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/ai) +"aAj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aAk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aAl" = ( +/obj/effect/landmark/start/roboticist, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aAm" = ( +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aAo" = ( +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "47, 9" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"aAy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"aAz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aAB" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aAC" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aAE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aAF" = ( +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aAI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aAL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"aAS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"aAT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/caution, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"aAV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/server) +"aBd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/tcommsat/server) +"aBe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/box, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aBg" = ( +/obj/machinery/door/airlock/grunge{ + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"aBh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aBi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/table/wood, +/obj/item/folder/white{ + pixel_y = 3 + }, +/obj/item/pen, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aBt" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"aBu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aBy" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/mech_bay_recharge_floor, +/area/science/robotics/mechbay) +"aBC" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"aBJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Autopsy"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"aBK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/white, +/area/security/prison) +"aBV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"aCc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"aCh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aCn" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aCq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aCu" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aCv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aCz" = ( +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"aCD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aCE" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aCM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aCO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aCV" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"aCY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/mechpad, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"aDa" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aDc" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aDf" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/hallway/primary/fore) +"aDj" = ( +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aDq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDF" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/auxbase{ + dir = 4; + pixel_x = -28 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/assault_pod/mining, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"aDI" = ( +/turf/closed/wall, +/area/science/lab) +"aDK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/gibs/up, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"aDM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aDQ" = ( +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"aDR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aDS" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aDT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aDU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aDV" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aDX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aDY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aDZ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aEa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/space, +/area/space/nearstation) +"aEc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aEd" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEe" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEf" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEg" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEi" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEj" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/space, +/area/space/nearstation) +"aEk" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEl" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEm" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"aEo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/space, +/area/space/nearstation) +"aEq" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/space, +/area/space/nearstation) +"aEr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"aEs" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEt" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEu" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEv" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEw" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port) +"aEx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aEy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aEB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aEG" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aEH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aEK" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"aEL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aEO" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"aEP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aER" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aEX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/suit/armor/vest{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aEZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aFa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aFe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"aFp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aFq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aFr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aFv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"aFC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aFF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aFI" = ( +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFJ" = ( +/turf/closed/wall/rust, +/area/maintenance/disposal/incinerator) +"aFN" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"aFO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"aFX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"aFY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aGb" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aGc" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"aGm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Medical Officer's Office"; + req_access_txt = "40" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aGI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aGN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"aHe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aHr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"aHz" = ( +/obj/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aHE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aHF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aHG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aHN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aHQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aHV" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"aHZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aIa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aIc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aIv" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 10; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/kilo; + width = 7 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aIA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aIN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"aIQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aIR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"aIS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aIX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aIY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aJb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"aJA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"aJB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/departments/science{ + name = "ROBOTICS"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/autodrobe, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"aJD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"aJK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aJU" = ( +/turf/closed/wall, +/area/medical/paramedic) +"aJW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aKb" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aKf" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aKg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKi" = ( +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"aKl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aKn" = ( +/obj/machinery/door/airlock/external{ + name = "Cargo Escape Pod" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"aKp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve, +/obj/machinery/door/window/northright{ + name = "Justice Windoor" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"aKr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aKw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"aKx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aKC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aKD" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall, +/area/security/checkpoint/engineering) +"aKI" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"aKJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "library sorting disposal pipe"; + sortType = 16 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "bar sorting disposal pipe"; + sortType = 19 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aKV" = ( +/obj/structure/flora/junglebush/c, +/turf/open/floor/grass, +/area/medical/psychology) +"aKY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aKZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aLb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLd" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aLh" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"aLi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"aLk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aLl" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aLn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aLr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"aLy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLA" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"aLB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"aLD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/easel, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"aLJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aLM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aLN" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"aLO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"aLQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"aLT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/clothing/suit/apron/purple_bartender, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"aLV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aLW" = ( +/obj/machinery/camera{ + c_tag = "AI Upload Garden"; + dir = 4; + name = "upload camera"; + network = list("aiupload") + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aLX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"aLZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMd" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aMf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMi" = ( +/obj/structure/table, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aMl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aMC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aMM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "12;63" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"aMN" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_ordmix, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aMP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"aNk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aNn" = ( +/turf/closed/wall, +/area/medical/medbay/lobby) +"aNs" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNt" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"aNu" = ( +/turf/closed/wall, +/area/medical/morgue) +"aNw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNB" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNC" = ( +/turf/closed/wall/rust, +/area/medical/morgue) +"aNE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"aNN" = ( +/turf/closed/wall/r_wall/rust, +/area/medical/morgue) +"aNP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"aNS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/computer/operating, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"aNU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Upload"; + location = "Science"; + name = "science navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aNV" = ( +/obj/structure/sign/departments/psychology{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/cable, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aOa" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/medical/psychology) +"aOb" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/grass, +/area/medical/psychology) +"aOd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aOe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aOf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"aOh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aOk" = ( +/obj/machinery/camera{ + c_tag = "AI Upload Transit Exterior"; + dir = 8; + name = "upload camera"; + network = list("aiupload") + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aOl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/closet/secure_closet/psychology, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aOm" = ( +/obj/item/toy/beach_ball{ + pixel_y = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/grass, +/area/medical/psychology) +"aOp" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/b_minus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/b_plus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/chem_pack{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"aOx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aOy" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bar maintenance"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aOz" = ( +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/belt/medical, +/obj/item/crowbar, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aOC" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/turf/open/floor/grass, +/area/medical/psychology) +"aOE" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/medical/psychology) +"aOH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/paramedic) +"aOI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"aOK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"aOO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aOP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aOY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"aOZ" = ( +/turf/closed/wall, +/area/medical/storage) +"aPe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aPf" = ( +/turf/closed/wall/rust, +/area/medical/virology) +"aPh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"aPo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aPv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/storage) +"aPC" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/storage) +"aPE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/defibrillator_mount/directional/west, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery{ + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 6 + }, +/obj/item/reagent_containers/syringe, +/obj/item/iv_drip_item{ + pixel_y = -2; + pixel_x = -9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"aPI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPJ" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aPP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Medical"; + location = "Upload"; + name = "Upload navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aPR" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aPW" = ( +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aQc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aQq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aQt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aQw" = ( +/turf/closed/wall/r_wall, +/area/medical/exam_room) +"aQz" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aQD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aQF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aQJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery) +"aQL" = ( +/turf/closed/wall/rust, +/area/medical/surgery) +"aQN" = ( +/turf/closed/wall, +/area/medical/surgery/room_b) +"aQP" = ( +/turf/closed/wall/rust, +/area/medical/surgery/room_b) +"aQQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"aQT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aQV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/pharmacy) +"aQW" = ( +/turf/closed/wall, +/area/medical/pharmacy) +"aRa" = ( +/obj/structure/closet/secure_closet/security/med, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/crowbar, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aRg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "medical sorting disposal pipe"; + sortType = 9 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aRi" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aRj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRl" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 40 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRn" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/pharmacy) +"aRo" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRp" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/camera{ + c_tag = "Research Division"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aRr" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Centre"; + name = "fore camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRs" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/structure/curtain, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aRt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aRv" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 40 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRx" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/mecha_part_fabricator/med, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aRy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"aRz" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aRB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aRD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aRF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/glass/bottle/epinephrine{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/reagent_containers/glass/bottle/multiver{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"aRG" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aRH" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"aRJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/soap/nanotrasen, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aRL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"aRN" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aRO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aRP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "medical locker" + }, +/obj/structure/grille/broken, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/under/rank/medical/doctor, +/turf/open/floor/plating, +/area/maintenance/port) +"aRQ" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"aRR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"aRS" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "cmo sorting disposal pipe"; + sortType = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aRU" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/storage/pill_bottle/epinephrine, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aRV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aRX" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aRY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aSa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/cryo_cell, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"aSe" = ( +/obj/structure/sign/departments/medbay/alt{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aSf" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/port/fore) +"aSg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "Chemistry Hall Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"aSh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aSi" = ( +/obj/structure/table/glass, +/obj/item/clipboard{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/toy/figure/chemist, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aSl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aSn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"aSq" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aSv" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = null; + req_one_access_txt = "12;22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aSw" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aSy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/machinery/stasis, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"aSz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"aSB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"aSG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/surgery/room_b) +"aSJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"aSK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aSO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aST" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"aSW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy"; + name = "Office Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"aSY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/mesh, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/suture, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aTf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "crematorium maintenance"; + req_one_access_txt = "27" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"aTh" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/grass, +/area/medical/virology) +"aTi" = ( +/obj/structure/flora/junglebush/large, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/medical/virology) +"aTk" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port) +"aTp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aTr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"aTw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"aTx" = ( +/turf/closed/wall/r_wall, +/area/medical/surgery/room_b) +"aTF" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"aTG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"aTI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aTJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aTO" = ( +/turf/closed/wall, +/area/security/checkpoint/medical) +"aTP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"aTR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"aTT" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/barricade/wooden/crude, +/obj/machinery/door/window/southleft{ + name = "cage door" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"aTU" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/obj/structure/sign/warning/explosives/alt{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aTV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aTW" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper{ + pixel_y = 6 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma/five, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aTX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aTZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"aUe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"aUi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"aUk" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"aUl" = ( +/obj/machinery/door/airlock/maintenance{ + name = "backstage maintenance"; + req_access_txt = "46" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aUx" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"aUz" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"aUE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aUG" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/port) +"aUJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"aUP" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/r_wall/rust, +/area/medical/virology) +"aUR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"aUS" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/tcommsat/computer) +"aUV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "virologysurgery"; + name = "Virology Privacy Shutters" + }, +/turf/open/floor/plating, +/area/medical/virology) +"aUY" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab Storage"; + req_access_txt = "8" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"aUZ" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"aVc" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"aVd" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/multitool, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool{ + pixel_x = 4 + }, +/obj/item/reagent_containers/glass/beaker/large, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aVg" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"aVk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"aVm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aVw" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"aVz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"aVC" = ( +/turf/closed/wall, +/area/medical/surgery) +"aVD" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/virology, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"aVL" = ( +/obj/machinery/camera{ + c_tag = "Medical Operating Theater B"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aVQ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"aVU" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/paramedic) +"aVY" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWa" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"aWc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/security/prison) +"aWf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/machinery/camera{ + c_tag = "Medbay Psychology Office"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"aWg" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWh" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/medical) +"aWm" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/psychology) +"aWp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aWq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"aWr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"aWs" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"aWv" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWw" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"aWx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"aWy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"aWI" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"aWJ" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"aWK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/westright{ + name = "Armoury Desk"; + req_access_txt = "3" + }, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"aWN" = ( +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"aWO" = ( +/obj/structure/table/wood, +/obj/item/paper/guides/jobs/security/courtroom, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aWP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"aWR" = ( +/turf/closed/wall, +/area/science/xenobiology) +"aWU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server) +"aWV" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/grass, +/area/science/genetics) +"aWW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/dna_scannernew, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"aWY" = ( +/turf/closed/wall/r_wall, +/area/science/genetics) +"aXa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"aXb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"aXe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXj" = ( +/turf/closed/wall/rust, +/area/science/robotics/lab) +"aXn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aXo" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/science/genetics) +"aXt" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aXy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aXA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/tank_dispenser, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"aXH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aXI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aXK" = ( +/obj/effect/decal/remains/human, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aXM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"aXN" = ( +/mob/living/simple_animal/chicken{ + atmos_requirements = list("min_oxy"=0,"max_oxy"=0,"min_tox"=0,"max_tox"=1,"min_co2"=0,"max_co2"=0,"min_n2"=0,"max_n2"=0); + desc = "A timeless classic."; + name = "Kentucky" + }, +/obj/machinery/igniter/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"aXO" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/grass, +/area/science/genetics) +"aXQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/stock_parts/matter_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/scanning_module{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aXR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'SERVER ROOM'."; + name = "SERVER ROOM"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/science/server) +"aXU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"aXW" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"aXY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aYb" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/scrubber{ + name = "scrubber ducky" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"aYd" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"aYe" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/lab) +"aYf" = ( +/turf/closed/wall/r_wall/rust, +/area/science/lab) +"aYg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"aYk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Access"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"aYn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"aYo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"aYs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aYt" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/obj/machinery/airlock_sensor/incinerator_ordmix, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"aYx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"aYB" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"aYH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"aYJ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "bar maintenance"; + req_access_txt = "25" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"aYK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/turf/open/floor/plating, +/area/science/lab) +"aYO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"aYY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"aYZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"aZa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/disk/tech_disk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/disk/tech_disk{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/capacitor{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stock_parts/capacitor{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"aZe" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"aZg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/science_wardrobe, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZi" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/rust, +/area/science/lab) +"aZn" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aZo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"aZp" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/package_wrap{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/hand_labeler, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"aZr" = ( +/turf/closed/wall/r_wall, +/area/science/research) +"aZs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"aZu" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"aZv" = ( +/turf/closed/wall, +/area/science/genetics) +"aZw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"aZy" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/obj/machinery/door/window/northleft{ + name = "Robotics Desk"; + req_access_txt = "29" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"aZB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/science/research) +"aZF" = ( +/turf/closed/wall/r_wall, +/area/science/server) +"aZG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"aZH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Upload Access"; + pixel_x = 6; + req_access_txt = "16" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"aZJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/purple{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"aZL" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/obj/machinery/door/window/eastright{ + name = "Research Lab Desk"; + req_one_access_txt = "7;29" + }, +/turf/open/floor/plating, +/area/science/lab) +"aZM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Server Room"; + req_access_txt = "61" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"aZQ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload) +"aZS" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"aZT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"aZU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/surgical_drapes, +/obj/item/retractor, +/obj/item/cautery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bae" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters_2"; + name = "Chemistry Hall Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/window/northleft{ + dir = 8; + name = "Chemistry Desk"; + req_access_txt = "5; 69" + }, +/turf/open/floor/plating, +/area/medical/pharmacy) +"bah" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"bai" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/robotics/lab) +"baj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/circular_saw, +/obj/item/scalpel{ + pixel_y = 16 + }, +/obj/item/hemostat, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"ban" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"baq" = ( +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bas" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Upload Access"; + pixel_x = 6; + req_access_txt = "16" + }, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bat" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = null; + req_one_access_txt = "12;25" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bau" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload) +"bav" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Control Room"; + req_access_txt = "19; 61" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bay" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"baz" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/loading_area{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"baA" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"baB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"baD" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/transfer_valve{ + pixel_x = -4 + }, +/obj/item/transfer_valve{ + pixel_x = -4 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = 4 + }, +/obj/item/transfer_valve{ + pixel_x = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baE" = ( +/obj/structure/table/reinforced, +/obj/item/wirecutters{ + pixel_y = 5 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/item/assembly/igniter{ + desc = "A small electronic device able to ignite combustible substances. This one goes slightly to the right."; + pixel_x = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"baG" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"baH" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"baJ" = ( +/obj/machinery/rnd/server, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"baK" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"baQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"baR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"baS" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"baU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/science/research) +"baW" = ( +/obj/machinery/door/poddoor/shutters{ + id = "Skynet_launch"; + name = "Mech Bay" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"baX" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"baY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/storage) +"bba" = ( +/turf/closed/wall, +/area/science/storage) +"bbe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bbh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay Central"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"bbi" = ( +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bbl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bbm" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbn" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Ordnance Lab Mixers"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbt" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/air_sensor/ordnance_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bbu" = ( +/turf/closed/wall/r_wall/rust, +/area/science/mixing/chamber) +"bbw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"bbx" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bby" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbD" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bbE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bbH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bbL" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"bbN" = ( +/turf/closed/wall, +/area/science/mixing) +"bbP" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bbQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics_shutters"; + name = "Robotics Privacy Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bbS" = ( +/obj/machinery/atmospherics/components/trinary/mixer/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bbV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"bbW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bbX" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bbY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"bca" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_exterior, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"bcc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bce" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcf" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/mixing/chamber) +"bcg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"bch" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "research_shutters"; + name = "Research Privacy Shutter" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab"; + req_one_access_txt = "7;29;9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bck" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcl" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"bco" = ( +/obj/structure/filingcabinet, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"bcr" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Toxins Pumps"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bct" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcu" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"bcw" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bcx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Server Access"; + req_access_txt = "30" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/science/server) +"bcz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"bcD" = ( +/turf/closed/wall/rust, +/area/science/mixing) +"bcE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"bcG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bcH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1; + external_pressure_bound = 120; + name = "server vent" + }, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/science/server) +"bcI" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcK" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bcL" = ( +/obj/structure/table/reinforced, +/obj/item/wrench, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"bcV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"bda" = ( +/obj/structure/transit_tube/crossing, +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bdb" = ( +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Monkey Pen"; + req_access_txt = "9, 7" + }, +/turf/open/floor/grass, +/area/science/genetics) +"bdd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bde" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/science/genetics) +"bdf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bdg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bdh" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"bdl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"bdm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"bdo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bdp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"bdq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"bdz" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/clothing/head/chefhat{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/kitchen/rollingpin{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"bdD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine, +/area/science/xenobiology) +"bdF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"bdG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bdK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/full_armor_upgrade, +/obj/item/stack/sheet/armor_plate/plasteel/three, +/obj/item/stack/sheet/armor_plate/ceramic/three, +/obj/item/stack/sheet/armor_plate/ablative/three, +/obj/item/full_armor_upgrade, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bdN" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bdO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"bdQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload) +"bdR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"bdT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "toxins sorting disposal pipe"; + sortType = 25 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"bdU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bdW" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bdY" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bdZ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"beb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/science, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"bed" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bej" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/aft) +"bep" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"ber" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"beu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = -32; + pixel_y = 8 + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"bev" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bey" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"beB" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"beC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"beD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/research) +"beI" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"beJ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"beK" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"beM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"beN" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance"; + req_access_txt = "33" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port) +"beO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"beR" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"beS" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1; + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"beT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/loading_area{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"beV" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"beX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"beY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bfd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bff" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bfh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bfi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfj" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfk" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bfl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"bfo" = ( +/obj/machinery/light/floor, +/obj/effect/turf_decal/box, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfq" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfr" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/mixing) +"bfs" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bft" = ( +/obj/effect/turf_decal/box/corners, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"bfx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bfF" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bfK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfN" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/door{ + id = "Xenolab"; + name = "Containment Chamber Toggle"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bfO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Research Lab"; + req_one_access_txt = "7;29;9" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"bfU" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/engine, +/area/science/xenobiology) +"bfY" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Test Chamber"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bgf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/space/nearstation) +"bgi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bgj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"bgo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bgr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "science sorting disposal pipe"; + sortType = 12 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bgw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/scientist, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/extinguisher, +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/microscope{ + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bgB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/mmi, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bgF" = ( +/obj/machinery/smartfridge/extract/preloaded, +/turf/closed/wall, +/area/science/xenobiology) +"bgO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Xenobiology Computers"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bgP" = ( +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bgR" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bgT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bha" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/ai_upload) +"bhj" = ( +/obj/effect/turf_decal/box/corners, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bhn" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/science/xenobiology) +"bhq" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/starboard) +"bhu" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"bhA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"bhB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bhC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bhN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bhT" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"bhV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bia" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"big" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"biA" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"biB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Research Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/siding/red/corner, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"biD" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/sunnybush, +/obj/item/food/grown/banana, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"biF" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"biG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"biN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"biU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "47, 9" + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"biW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bjh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bjm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bjp" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"bjq" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen maintenance"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bjr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bjs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bjt" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mining dock maintenance"; + req_access_txt = "48" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"bjL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bjM" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"bjT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bjY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bkd" = ( +/turf/closed/wall, +/area/maintenance/starboard) +"bkj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cola/red, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bko" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/port) +"bkx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/secure_data, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bkG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bkJ" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bkQ" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"blc" = ( +/obj/machinery/door/airlock/maintenance{ + name = "kitchen maintenance"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"blf" = ( +/turf/closed/wall, +/area/security/checkpoint/supply) +"blg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"blt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/security/qm{ + dir = 1; + network = list("mine","auxbase","vault","qm") + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"blv" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bly" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"blB" = ( +/obj/structure/flora/junglebush/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/camera{ + c_tag = "Virology Monkey Pen"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"blC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"blJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/poster/official/the_owl{ + pixel_x = 32 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"blM" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"blP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bmj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bmt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bmz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bmE" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "xenobiology sorting disposal pipe"; + sortType = 28 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"bmI" = ( +/obj/machinery/door/airlock/external{ + name = "Medical Escape Pod" + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bmJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"bmQ" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bmT" = ( +/obj/structure/table, +/obj/machinery/light_switch/directional/north{ + pixel_x = -8 + }, +/obj/item/clothing/gloves/color/orange, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "custodialwagon"; + name = "Custodial Bay Toggle"; + pixel_x = 8; + req_access_txt = "26" + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"bmU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/suit/fire/firefighter{ + pixel_y = 5 + }, +/obj/item/clothing/mask/breath, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bnb" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 4; + height = 7; + id = "supply_home"; + name = "Cargo Bay"; + width = 12 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bnf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"bnr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south{ + pixel_x = -32 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bnt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bnv" = ( +/turf/closed/wall, +/area/hallway/primary/starboard) +"bnz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"bnK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"bnM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/sign/departments/science{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bnU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bok" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bon" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bop" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/firstaid/o2, +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bos" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/port) +"bov" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"boy" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/cola{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/candle/infinite{ + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"boC" = ( +/turf/closed/wall, +/area/hallway/primary/port) +"boF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard) +"boM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/port) +"boN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/item/multitool, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + pixel_x = -24; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"boR" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"boX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"boZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port) +"bpd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bpk" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"bpl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bpm" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 11; + id = "ferry_home"; + name = "port bay 2"; + width = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bpn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/duffelbag/med{ + pixel_y = 5 + }, +/obj/item/reagent_containers/blood/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/random, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bpq" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/central) +"bpt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bpC" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpD" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bpF" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/hallway/primary/starboard) +"bpH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bpI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bpJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bpL" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bpM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bpN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bpP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bpS" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bpV" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/hallway/primary/starboard) +"bpZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bqb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bqe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Restrooms" + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"bqf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"bqx" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bqE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bqT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bqZ" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bre" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"brr" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"brF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/button/door/directional/north{ + id = "greylair"; + name = "Lair Privacy Toggle" + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"brJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"brL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"brR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "kitchen sorting disposal pipe"; + sortType = 20 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"brV" = ( +/obj/structure/janitorialcart, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"bsf" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall, +/area/maintenance/fore) +"bsq" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bsr" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bsw" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/status_display/supply{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bsy" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bsA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bsC" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall, +/area/maintenance/port) +"bsD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Hazard Closet"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bsF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"bsI" = ( +/obj/machinery/door/window/brigdoor{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/supplied/protect_station{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/zeroth/onehuman, +/obj/item/ai_module/reset/purge{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bsK" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bth" = ( +/obj/structure/table, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/clothing/shoes/sneakers/orange{ + pixel_x = -6; + pixel_y = -8 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/machinery/camera{ + c_tag = "Prison Visitation"; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"btC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"btF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"btR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"btV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"btY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"buc" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/storage/belt/utility, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Engineering Desk"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"buj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"bux" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"buB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"buD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"buF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"bve" = ( +/obj/structure/table, +/obj/structure/sign/departments/medbay/alt{ + pixel_x = 32 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_y = -32 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/clothing/glasses/eyepatch{ + pixel_y = 4 + }, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plating, +/area/maintenance/central) +"bvi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"bvo" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bvB" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bvD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bvF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"bvQ" = ( +/obj/machinery/mecha_part_fabricator/service, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bvZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bwe" = ( +/turf/closed/wall/r_wall/rust, +/area/science/xenobiology) +"bwk" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bwn" = ( +/turf/closed/wall/rust, +/area/science/xenobiology) +"bws" = ( +/turf/closed/wall/rust, +/area/security/detectives_office) +"bwu" = ( +/turf/closed/wall/rust, +/area/security/processing) +"bwz" = ( +/turf/closed/wall/rust, +/area/security/checkpoint/supply) +"bwD" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bwL" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"bwO" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"bxc" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bxl" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bxn" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/science/storage) +"bxp" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/maintenance/port) +"bxq" = ( +/obj/structure/girder, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bxD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bxG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"bxI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bxN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/belt/janitor, +/obj/item/storage/bag/trash, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"bxP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/east, +/obj/structure/cable, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"bxS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"bxU" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/starboard) +"byf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"byh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"byj" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"byo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"byr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"byy" = ( +/obj/machinery/modular_computer/console/preset/cargochat/service{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"byA" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"byB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"byC" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube_ai"; + name = "Transit Tube Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"byD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"byJ" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"byK" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/holopad/secure, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"byL" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"byO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/paper/crumpled{ + info = "The safes have been locked and scrambled. Three thousand space dollars, a bandolier, a custom shotgun, and a lazarus injector have been safely deposited."; + name = "bank statement" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"byS" = ( +/obj/machinery/computer/upload/borg{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + dir = 1; + layer = 3.1; + name = "Cyborg Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai_upload) +"byU" = ( +/obj/machinery/computer/upload/ai{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + base_state = "right"; + dir = 1; + icon_state = "right"; + layer = 3.1; + name = "Upload Console Window"; + req_access_txt = "16" + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"byV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + name = "hydroponics sorting disposal pipe"; + sortType = 21 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bzb" = ( +/obj/structure/table, +/obj/item/ai_module/supplied/freeform, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzd" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload) +"bze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bzf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bzg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"bzk" = ( +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"bzl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bzv" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bzB" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera{ + c_tag = "Server Room"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/server) +"bzE" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port) +"bzH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"bzM" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "chemistry_shutters"; + name = "Lobby Shutters Toggle"; + pixel_x = 24; + req_access_txt = "5; 69" + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"bzO" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bzS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/turf/open/space/basic, +/area/space/nearstation) +"bzT" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"bzW" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bzX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/stock_parts/capacitor, +/turf/open/floor/plating, +/area/maintenance/port) +"bzY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bAa" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bAb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/seeds/tower, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bAd" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"bAe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bAf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bAj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bAm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/central) +"bAp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bAq" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Cold Loop to Gas" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"bAt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/plant_analyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/cultivator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bAu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bAv" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bAx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bAz" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bAM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bAN" = ( +/turf/closed/wall, +/area/medical/virology) +"bAQ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "hydroponics maintenance"; + req_access_txt = "35" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bAW" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bAX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "cargo sorting disposal pipe"; + sortType = 2 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bBj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bBk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "detective_shutters"; + name = "Detective's Office Shutter" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"bBm" = ( +/obj/machinery/door/airlock/vault{ + id_tag = "bank"; + name = "Bank Vault" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bBo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bBp" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBs" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bBy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/hallway/primary/aft) +"bBA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bBB" = ( +/turf/closed/wall/rust, +/area/hallway/primary/aft) +"bBD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + name = "lawyer sorting disposal pipe"; + sortType = 29 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bBJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bBK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lazarus_injector, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bBS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = 8 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bCd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"bCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bCh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"bCm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bCt" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bCw" = ( +/obj/structure/sign/poster/official/the_owl{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/clothing/head/helmet/justice, +/turf/open/floor/plating, +/area/maintenance/aft) +"bCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bCD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/item/clothing/mask/russian_balaclava, +/obj/structure/closet/secure_closet/security/specialist, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bCH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"bCK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bCL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bCS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/research{ + name = "Genetics Lab"; + req_access_txt = "47, 9" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bCY" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"bDi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bDj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"bDk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bDn" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bDo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bDs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bDZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"bEa" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bEf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bEg" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"bEk" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bEq" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"bEt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bEA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bED" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bEH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"bEI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bEJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bEL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bEM" = ( +/obj/machinery/status_display/evac/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bER" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"bES" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"bET" = ( +/turf/closed/wall/rust, +/area/maintenance/aft) +"bEV" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/aft) +"bEY" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bEZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bFa" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bFc" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/aft) +"bFf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bFg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + name = "disposal supplies" + }, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/shovel, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bFj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"bFp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + name = "Council Chamber"; + req_one_access_txt = "38;63" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bFs" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"bFt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bFw" = ( +/obj/structure/table/reinforced, +/obj/item/storage/secure/briefcase{ + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"bFz" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/aft) +"bFD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bFF" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/maintenance/port) +"bFG" = ( +/obj/structure/window/reinforced, +/obj/machinery/light/small/directional/east, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bFH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"bFI" = ( +/obj/effect/turf_decal/sand/plating, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bFL" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bFM" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bFQ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/maintenance/port) +"bFS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFT" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bFY" = ( +/obj/structure/girder, +/obj/structure/grille, +/obj/structure/barricade/wooden, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFZ" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/aft) +"bGa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bGc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"bGf" = ( +/obj/structure/closet/cardboard, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bGh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"bGl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bGr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bGw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bGx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGy" = ( +/obj/structure/table, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bGB" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/departments/cargo{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"bGG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGL" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bGN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/west, +/obj/structure/cable, +/obj/machinery/computer/rdconsole{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"bGP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/processing) +"bGU" = ( +/obj/effect/turf_decal/bot, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/aft) +"bGW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bGX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"bGY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bHb" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/folder/red, +/obj/item/circuitboard/machine/paystand, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bHf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bHh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bHk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bHl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bHm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHo" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHp" = ( +/obj/structure/chair/pew/right{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bHs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/crowbar, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bHI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bHO" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/taperecorder, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"bHS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bHX" = ( +/turf/closed/wall/rust, +/area/hallway/primary/port) +"bIc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bIi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bIp" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bIr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bIu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bIv" = ( +/obj/structure/chair, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bIx" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bIA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bIB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bIE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bIF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Security Post"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"bIM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Hydroponics Counter"; + dir = 8; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bIR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/port) +"bIS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bJv" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"bJy" = ( +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"bJz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bJE" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/hallway/primary/central) +"bJJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bJL" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"bJP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Engineering Security Post"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"bJX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bJZ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/frame/machine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/plating, +/area/cargo/warehouse) +"bKi" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bKl" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"bKK" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bKN" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bKO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/closed/wall/rust, +/area/maintenance/disposal/incinerator) +"bKQ" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"bKR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bLa" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bLc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/obj/effect/spawner/xmastree, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"bLg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bLq" = ( +/obj/machinery/door/airlock/maintenance{ + id_tag = "bankvault"; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"bLy" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bLA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel, +/area/cargo/storage) +"bLH" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/orange, +/obj/item/restraints/handcuffs, +/obj/item/reagent_containers/spray/pepper, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/security/prison) +"bLS" = ( +/obj/effect/turf_decal/caution{ + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLU" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/bowler{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"bMm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/pods{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"bMn" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"bMy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bMC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bMJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/washing_machine, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"bML" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/maintenance/aft) +"bMM" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bMR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bMX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/mech_bay_recharge_floor, +/area/maintenance/port/aft) +"bNe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "sparemech"; + name = "Abandoned Mech Bay" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNj" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bNl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/stack/rods/ten, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bNm" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall, +/area/maintenance/port/aft) +"bNo" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;101" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bNq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bNF" = ( +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "4" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bNH" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/southleft{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bNP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bOb" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bOc" = ( +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bOi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bOp" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bOB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"bOC" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"bOM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bOQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bOR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"bOT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"bOU" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"bOV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bOZ" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance"; + req_one_access_txt = "17;19" + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bPa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bPf" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bPr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bPu" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bPz" = ( +/obj/item/storage/toolbox/electrical{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/flashlight, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bPA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bPB" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance"; + req_one_access_txt = "31;48" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bPD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/fancy/donut_box, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Courtroom Jury"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bPI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"bPJ" = ( +/turf/closed/mineral/random/labormineral, +/area/hallway/secondary/entry) +"bPK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bPN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bPP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle/b, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bPR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bPV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bPX" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bPZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bQa" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bQb" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/service/chapel) +"bQg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"bQq" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"bQs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bQy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Prison Access"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"bQF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/starboard) +"bQG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bQN" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/item/pickaxe, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"bQU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bQV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bQW" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/roboticist, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"bRb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"bRd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"bRg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"bRs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bRv" = ( +/obj/machinery/door/poddoor{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating/airless, +/area/hallway/secondary/entry) +"bRw" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"bRy" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"bRz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bRB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bRD" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"bRE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRF" = ( +/turf/closed/wall/rust, +/area/hallway/secondary/exit/departure_lounge) +"bRH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Holding Area"; + req_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bRJ" = ( +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bRQ" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 11; + height = 18; + id = "emergency_home"; + name = "KiloStation emergency evac bay"; + width = 30 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bRY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"bSa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"bSj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"bSn" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"bSp" = ( +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"bSr" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"bSx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bSA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bSH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bSI" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"bSL" = ( +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE" + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bSM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + req_one_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bSN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bSR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTg" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/clothing/shoes/jackboots{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/cowboy/black, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"bTl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bTp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bTq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTt" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTx" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bTA" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bTG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bTH" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bTL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "security locker" + }, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/shoes/jackboots, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bTO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bTR" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bTS" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bTT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bTU" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bTY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bUb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bUd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/grass/jungle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bUh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bUj" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bUk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUo" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/hallway/secondary/entry) +"bUp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bUw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bUx" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bUy" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/gulag_item_reclaimer{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bUA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUE" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUF" = ( +/obj/structure/flora/rock/pile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"bUI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bUN" = ( +/turf/open/floor/plating/airless, +/area/space) +"bUO" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space) +"bUP" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"bUR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"bUU" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/kilo; + width = 9 + }, +/turf/open/space, +/area/space) +"bVb" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bVn" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/security/processing) +"bVo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bVq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"bVt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVu" = ( +/obj/structure/sign/warning/securearea{ + name = "WARNING: Station Limits" + }, +/turf/closed/wall/rust, +/area/space/nearstation) +"bVv" = ( +/turf/closed/mineral/random/high_chance, +/area/space/nearstation) +"bVx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bVz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"bVB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bVE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet/hydroponics, +/turf/open/floor/plating, +/area/maintenance/central) +"bVH" = ( +/turf/closed/wall/r_wall/rust, +/area/science/test_area) +"bVI" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall/rust, +/area/science/test_area) +"bVL" = ( +/obj/structure/sign/warning/explosives, +/turf/closed/wall/r_wall/rust, +/area/science/test_area) +"bVO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bVR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"bVZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWh" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"bWn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bWp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 6"; + name = "Cell 6"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 6"; + name = "Cell 6 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bWr" = ( +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/turf/closed/wall/r_wall/rust, +/area/security/prison) +"bWs" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"bWu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 5"; + name = "Cell 5"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 5"; + name = "Cell 5 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 4"; + name = "Cell 4"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 4"; + name = "Cell 4 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bWz" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bWA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"bWB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/door_timer{ + id = "Cell 3"; + name = "Cell 3"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 3"; + name = "Cell 3 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bWF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bWG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 2"; + name = "Cell 2"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 2"; + name = "Cell 2 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door_timer{ + id = "Cell 1"; + name = "Cell 1"; + pixel_x = -32 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bWJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Captain's Tactical Relocation"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bWK" = ( +/obj/structure/girder/displaced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bWL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bWM" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bWR" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "detective closet" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat"; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bWT" = ( +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"bWY" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bXd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"bXe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bXg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/turf/open/floor/plating, +/area/security/execution/education) +"bXi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"bXn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXp" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"bXr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel, +/area/security/warden) +"bXs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXx" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall, +/area/hallway/secondary/exit/departure_lounge) +"bXy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXE" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bXK" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = null; + req_one_access_txt = "12;35" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"bXN" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/pen, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"bXQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"bXS" = ( +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXV" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + name = "Security Desk"; + req_one_access_txt = "63" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bXW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bXZ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bYf" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bYg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arrivals Dock" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"bYh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = 4 + }, +/obj/item/tank/internals/oxygen/red{ + pixel_x = -4 + }, +/obj/item/wrench, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"bYm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"bYo" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"bYu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil/slippery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bYy" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bYG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bYH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"bYN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bYP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bYW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"bZh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZm" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZs" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZv" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bZx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Planters"; + dir = 4; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"bZB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bZD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Security"; + location = "Courtroom"; + name = "courtroom navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=EVA"; + location = "HOP"; + name = "hop navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"bZL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Departures Cargo Dock"; + dir = 1; + name = "shuttle camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"bZR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/observer_start, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"bZX" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/clothing/under/rank/security/officer, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"bZY" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cac" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cad" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cag" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cah" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Engineering"; + location = "EVA"; + name = "eva navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cai" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cam" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"can" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Custodial"; + location = "Tools"; + name = "tools navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cao" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cap" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"car" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cas" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"cav" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/hallway/secondary/entry) +"caA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"caJ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/medical/psychology) +"caN" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"caO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"caT" = ( +/turf/closed/wall/r_wall, +/area/science/test_area) +"caV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/gloves/color/black, +/obj/item/wrench, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cbi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbj" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cbk" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard) +"cbl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbm" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/starboard) +"cbn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/security{ + pixel_y = -40 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cbq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cby" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbz" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/engineering{ + pixel_y = -40 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -24 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbB" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cbC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbN" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Tech Storage"; + dir = 8; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cbU" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/science/test_area) +"cbV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/vomit/old, +/mob/living/simple_animal/hostile/retaliate/goose/vomit, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cbX" = ( +/obj/item/target/clown, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cbY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cce" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ccf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"ccg" = ( +/obj/docking_port/stationary/random{ + dir = 8; + id = "pod2_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cci" = ( +/obj/structure/sign/warning/explosives, +/turf/closed/wall/r_wall, +/area/science/test_area) +"ccj" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cck" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccn" = ( +/obj/structure/chair, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cco" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall/r_wall, +/area/science/test_area) +"ccp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccr" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"ccs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ccw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Cargo"; + location = "Arrivals"; + name = "arrivals navigation beacon" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ccx" = ( +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccy" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccz" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"ccA" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccB" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccE" = ( +/obj/item/beacon, +/obj/effect/turf_decal/box, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccF" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccG" = ( +/obj/item/target/clown, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccH" = ( +/turf/closed/indestructible/opshuttle, +/area/science/test_area) +"ccI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ccJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccL" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ccM" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccN" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccO" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ccP" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ccR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ccU" = ( +/obj/machinery/telecomms/processor/preset_four, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"ccV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ccX" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ccY" = ( +/obj/structure/transit_tube/curved, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ccZ" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cdc" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/ai_upload) +"cdd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"cde" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdl" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdn" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdo" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdq" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cds" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/securearea{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"cdt" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdu" = ( +/obj/structure/transit_tube/curved{ + dir = 1 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cdA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"cdB" = ( +/obj/machinery/telecomms/server/presets/science, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdC" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cdG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cdK" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdL" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdM" = ( +/obj/machinery/telecomms/server/presets/service, +/obj/structure/cable, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cdN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cdO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cdP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cdR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cdT" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cdU" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cdV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"cdX" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cdY" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/ai) +"cdZ" = ( +/turf/closed/wall/rust, +/area/ai_monitored/turret_protected/ai) +"ced" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ceg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cem" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"cen" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ceq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"cer" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ces" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cet" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"ceu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cev" = ( +/obj/structure/transit_tube/diagonal/topleft, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"cez" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ceA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"ceD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"ceE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ceF" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"ceG" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/turret_protected/aisat/atmos) +"ceN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"ceO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ceP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ceQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ceR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ceS" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ceY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cfc" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfd" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfe" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfg" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfh" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cfn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cfo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/camera{ + c_tag = "Departures Lounge"; + name = "shuttle camera" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cfq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"cfs" = ( +/obj/structure/cable, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/solar_assembly, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/engineering/electrical, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cft" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "AI Chamber Door"; + dir = 1; + name = "core camera"; + network = list("aicore") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cfA" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfB" = ( +/obj/machinery/telecomms/message_server/preset, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cfF" = ( +/obj/machinery/blackbox_recorder, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfG" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"cfH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"cfM" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cfU" = ( +/turf/closed/wall/r_wall/rust, +/area/tcommsat/computer) +"cfZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"cgg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"cgi" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cgk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgm" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "hopflash"; + pixel_x = 36; + pixel_y = 6 + }, +/obj/machinery/light_switch/directional/east{ + pixel_x = 36; + pixel_y = -6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/button/ticket_machine{ + name = "Increment Ticket Counter"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/item/paper/fluff/ids_for_dummies, +/obj/machinery/button/door/directional/east{ + id = "hopqueue"; + name = "Queue Shutters Toggle"; + pixel_y = -6; + req_access_txt = "57" + }, +/obj/machinery/button/door/directional/east{ + id = "hop"; + name = "Privacy Shutters Toggle"; + pixel_y = 6; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"cgp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"cgu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/computer) +"cgw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"cgz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cgF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"cgI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cgJ" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"cgL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/machinery/button/door{ + id = "emmd"; + name = "Medical Lockdown Toggle"; + pixel_x = -17; + pixel_y = 25 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"cgN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/bot/medbot{ + auto_patrol = 1; + desc = "A little medical robot, officially part of the Nanotrasen medical inspectorate. He looks somewhat underwhelmed."; + name = "Inspector Johnson" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"cgO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/blood/old, +/obj/item/weldingtool{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/clothing/head/welding{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cgP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cgX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cgZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Tools"; + location = "Engineering"; + name = "engineering navigation beacon" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary"; + req_one_access_txt = "12;63;48;50" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"chg" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"chj" = ( +/obj/structure/sign/warning/xeno_mining, +/turf/closed/wall, +/area/maintenance/fore) +"chk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"chl" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"chn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"cho" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"chq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chr" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"chD" = ( +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chI" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chL" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"chM" = ( +/obj/structure/transit_tube/diagonal, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"chN" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"chO" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/atmos) +"chR" = ( +/turf/open/floor/plating, +/area/security/prison) +"chU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"chV" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/engineering/atmos) +"chX" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/aisat_interior) +"chZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cia" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cic" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cig" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cij" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"cim" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"cin" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cio" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"cir" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 28; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"cit" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Satellite Foyer"; + dir = 8; + name = "satellite camera"; + network = list("minisat") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"civ" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"ciw" = ( +/obj/structure/transit_tube/curved/flipped{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciy" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ciI" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ciJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ciL" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"ciM" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/ai_monitored/turret_protected/aisat/foyer) +"ciO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ciP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ciQ" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/space/nearstation) +"ciT" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/wrench, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/obj/item/tank/internals/oxygen, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"ciY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"ciZ" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cjh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cji" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cjj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cjD" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cjE" = ( +/obj/structure/table, +/obj/item/food/energybar, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cjG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/destructible/cult/tome, +/obj/effect/decal/cleanable/cobweb, +/obj/item/book/codex_gigas{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight/lantern{ + pixel_x = 4 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/fancy/candle_box{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"cjL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"ckd" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"cke" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/space/nearstation) +"ckf" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ckg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"ckh" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"ckk" = ( +/obj/structure/lattice, +/turf/open/space, +/area/space/nearstation) +"ckm" = ( +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"ckn" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/space/nearstation) +"cko" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ckp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ckq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckr" = ( +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cks" = ( +/obj/machinery/door/airlock/maintenance{ + name = "e.v.a. maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"ckw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ckz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"ckC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ckI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"ckJ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ckK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"ckR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ckS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ckU" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/aft) +"ckY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"clb" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/aft) +"cld" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"clh" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"clj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cll" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 14; + id = "arrivals_stationary"; + name = "kilo arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/kilo; + width = 7 + }, +/turf/open/floor/plating/airless, +/area/space) +"clm" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"cln" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"clo" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"clp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"clq" = ( +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"clz" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"clD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"clO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"clS" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"clX" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clY" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cma" = ( +/obj/structure/closet/crate/solarpanel_small, +/obj/effect/turf_decal/delivery, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cme" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cmf" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cmg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/cargochat/science{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"cmh" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"cmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cmm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cmo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"cmp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cmt" = ( +/turf/closed/wall/mineral/plastitanium, +/area/maintenance/port/aft) +"cmy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/closet/cardboard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"cmB" = ( +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"cmC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/goonplaque, +/area/security/brig) +"cmD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cmF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cmG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cmJ" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"cmR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmS" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Fore"; + dir = 1; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cmU" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cmV" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Port"; + dir = 8; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cmW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/lights/mixed, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cmY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cnd" = ( +/turf/closed/wall/rust, +/area/maintenance/disposal) +"cne" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cnf" = ( +/obj/structure/grille, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cni" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/port) +"cnm" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"cno" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/security/processing) +"cnp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/processing) +"cnr" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port) +"cnu" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"cnw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cny" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnA" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cnC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cnF" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnJ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cnL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cnM" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cnN" = ( +/turf/closed/wall, +/area/maintenance/solars/port/aft) +"cnO" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/port/aft) +"cnP" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port/aft) +"cnQ" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cnR" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cnS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cnU" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cnV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "detective sorting disposal pipe"; + sortType = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cnZ" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cog" = ( +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cok" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"cop" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cos" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space) +"cou" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"cov" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/box, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cow" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"coy" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"coB" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/port/aft) +"coD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coE" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"coF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coG" = ( +/obj/structure/bed/dogbed/renault, +/mob/living/simple_animal/pet/fox/renault, +/obj/machinery/button/door/directional/south{ + id = "captain_escape"; + name = "Tactical Relocation Toggle" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"coH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"coO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=HOP"; + location = "Security"; + name = "security navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"coV" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"coW" = ( +/obj/machinery/mech_bay_recharge_port{ + dir = 2 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/ore_box, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"coY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"coZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/structure/grille/broken, +/obj/item/analyzer, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cpc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"cpd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cps" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"cpu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cpx" = ( +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"cpI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cpN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/beacon, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cpU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"cpW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/enlist{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpX" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cpY" = ( +/obj/item/pickaxe, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cqa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqd" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqi" = ( +/turf/closed/mineral/random/labormineral, +/area/space) +"cql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cqq" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqr" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqs" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/port) +"cqt" = ( +/obj/structure/sign/warning, +/turf/closed/wall, +/area/maintenance/port/aft) +"cqu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "hos sorting disposal pipe"; + sortType = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cqw" = ( +/obj/structure/sign/warning/deathsposal{ + layer = 4 + }, +/turf/closed/wall, +/area/science/xenobiology) +"cqx" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cqy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cqC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/stack/package_wrap, +/obj/item/storage/box, +/turf/open/floor/plating, +/area/maintenance/port) +"cqD" = ( +/obj/structure/girder, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqI" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/maintenance/port/aft) +"cqL" = ( +/obj/structure/girder, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cqN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"cqT" = ( +/obj/structure/sign/warning/pods, +/turf/closed/wall/rust, +/area/maintenance/port) +"cqU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/space_heater, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/south, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cqX" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"crb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"crc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"crd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"crl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cro" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"crp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"crq" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/rust, +/area/maintenance/port) +"crs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"crv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"crx" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cry" = ( +/turf/open/space/basic, +/area/space/nearstation) +"crz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"crB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/coin/twoheaded{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"crD" = ( +/obj/machinery/door/airlock/external{ + name = "Security Escape Pod" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"crG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"crI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"crK" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/space) +"crL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/warden, +/obj/structure/chair/office, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"crN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"crP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"crS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/food/pie_smudge, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"crV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"crW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"crY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Brig Control Desk"; + req_access_txt = "3" + }, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/obj/item/poster/random_official, +/turf/open/floor/plating, +/area/security/warden) +"csc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cse" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"csf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"csi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"csk" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csl" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/screwdriver{ + pixel_y = 16 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"csp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway Security Firelock"; + dir = 1; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"csG" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/southright{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"csN" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"csS" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"csX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Armoury"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"csY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ctb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"ctf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cti" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"ctj" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet{ + name = "suit closet" + }, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctn" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ctu" = ( +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"ctw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"ctx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"ctz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"ctA" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/port/fore) +"ctB" = ( +/turf/closed/wall, +/area/maintenance/solars/port/fore) +"ctF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Transferring Centre"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"ctH" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"ctI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ctN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint/engineering) +"ctU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ctV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cuf" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cui" = ( +/mob/living/simple_animal/hostile/asteroid/goliath, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cuj" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"cul" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"cum" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/stack/rods/ten, +/obj/item/stock_parts/matter_bin, +/turf/open/floor/plating, +/area/maintenance/port) +"cup" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cur" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cuw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cuy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/poster/random_official{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/poster/random_official, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port) +"cuE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/wallframe/airalarm, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"cuF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/port/aft) +"cuK" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"cuL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cuM" = ( +/obj/structure/table, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -4 + }, +/obj/machinery/portable_atmospherics/canister/air{ + pixel_x = 4 + }, +/obj/item/clothing/mask/breath{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/breath, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cuU" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cuZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cvd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cvf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cvg" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cvk" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cvo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cvq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cvv" = ( +/obj/effect/spawner/structure/window/hollow/reinforced/directional{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cvz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cvC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/item/stack/sheet/mineral/plasma, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cvE" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/table, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/grenades, +/obj/item/book/manual/wiki/plumbing{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cvX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/dresser, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cvY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/item/toy/katana, +/obj/item/clothing/shoes/sandal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cwd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot{ + arrest_type = 1; + health = 45; + icon_state = "secbot1"; + idcheck = 1; + name = "Warden Armsky"; + weaponscheck = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cwe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cwf" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cwp" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"cwq" = ( +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cww" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cwy" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/port/fore) +"cwH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cwM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"cwN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cwO" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cwP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cwQ" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cwR" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cwS" = ( +/obj/structure/girder, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cwT" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cwX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/bed, +/obj/item/bedsheet/brown, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"cxa" = ( +/obj/effect/decal/remains/human, +/obj/effect/decal/cleanable/blood/old, +/obj/item/clothing/head/that{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxb" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxc" = ( +/mob/living/simple_animal/hostile/bear{ + desc = "Once a trained show bear, this creature has been left abandoned and unfed."; + environment_smash = 0; + health = 160; + maxHealth = 160; + melee_damage_upper = 25; + name = "hungry show bear" + }, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxf" = ( +/obj/structure/barricade/wooden, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxn" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxo" = ( +/obj/structure/closet/cardboard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cxp" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster/directional/north, +/obj/structure/spider/stickyweb, +/obj/machinery/button/door/directional/east{ + id = "bankvault"; + name = "Bank Door Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "bankshutter"; + name = "Bank Shutter Toggle"; + pixel_y = -8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxr" = ( +/obj/structure/sign/poster/contraband/clown, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxs" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cxt" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxw" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cxy" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxz" = ( +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + shuttledocked = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cxC" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxE" = ( +/obj/machinery/camera/motion{ + c_tag = "Armoury External" + }, +/obj/structure/lattice/catwalk, +/turf/open/space, +/area/space/nearstation) +"cxG" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/item/clothing/mask/fakemoustache, +/obj/item/clothing/mask/cigarette/pipe, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cxH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cxI" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"cxK" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cxL" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet{ + name = "engineering locker" + }, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/shoes/workboots, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/under/rank/engineering/engineer, +/turf/open/floor/plating, +/area/maintenance/aft) +"cxN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cxS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"cxU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Transferring Centre"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/unres, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cxW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cxX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cxY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cya" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "greylair"; + name = "Lair Privacy Shutter" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port) +"cyd" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cyf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/obj/effect/landmark/start/depsec/engineering, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"cyl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cyu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyy" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/port/aft) +"cyz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cyE" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyG" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/crowbar, +/obj/item/flashlight{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Storage"; + dir = 4; + name = "shuttle camera" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cyH" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cyI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cyJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cyL" = ( +/obj/structure/table, +/obj/item/candle/infinite{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/food/spaghetti/meatballspaghetti{ + pixel_y = 5 + }, +/obj/item/kitchen/fork, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cyQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"cyR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cyZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/jungle/mook{ + environment_smash = 0; + name = "deformed creature" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/restraints/legcuffs/beartrap, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"czj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"czw" = ( +/obj/machinery/vending/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"czx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"czz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"czA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"czE" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/backpack, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/extinguisher, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"czF" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 5 + }, +/turf/closed/wall, +/area/engineering/atmos) +"czG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"czI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"czJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"czK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"czL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"czP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/wardrobe/green, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"czR" = ( +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/pen, +/obj/item/storage/box/prisoner, +/obj/machinery/camera{ + c_tag = "Prison Hallway Port"; + dir = 1; + network = list("ss13","prison") + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"czZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/wardrobe/mixed, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cAr" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cAs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cAv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_y = 32 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cAB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Council Chamber"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"cAE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cAF" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cAH" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/maintenance/fore) +"cAU" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall, +/area/maintenance/fore) +"cAY" = ( +/obj/docking_port/stationary{ + dheight = 1; + dir = 8; + dwidth = 12; + height = 17; + id = "syndicate_nw"; + name = "northwest of station"; + width = 23 + }, +/turf/open/space/basic, +/area/space) +"cAZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cBc" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/fore) +"cBf" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"cBg" = ( +/obj/structure/closet/crate, +/obj/item/clothing/suit/hooded/chaplain_hoodie, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"cBk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cBm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cBn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/prison{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"cBo" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"cBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cBv" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"cBw" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"cBx" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"cBy" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"cBC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/closet/secure_closet{ + name = "contraband locker"; + req_access_txt = "3" + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/spawner/random/contraband/armory, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"cBD" = ( +/obj/structure/flora/grass/jungle, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cBI" = ( +/turf/open/floor/plating/asteroid, +/area/maintenance/port/aft) +"cBK" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cBN" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"cCi" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cCj" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cCk" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cCm" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock"; + safety_mode = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"cCr" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"cCB" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cCF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCH" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + dir = 1; + name = "Security Desk"; + req_one_access_txt = "63" + }, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cCP" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cCR" = ( +/obj/structure/table, +/obj/item/storage/secure/briefcase, +/obj/item/taperecorder, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"cCT" = ( +/obj/machinery/door/poddoor/shutters{ + id = "maidbay"; + name = "Maid Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cCU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cCV" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cCW" = ( +/obj/structure/chair/office, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cDa" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDb" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/maintenance/fore) +"cDh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDl" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDq" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cDv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cDx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDE" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"cDO" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/fore) +"cDP" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/fore) +"cDR" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cDV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"cDW" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cDY" = ( +/obj/structure/chair/sofa/corner{ + color = "#c45c57" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cEb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEf" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cEg" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"cEj" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEk" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEo" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cEp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEw" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEx" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cEz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEB" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEI" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/cat_butcherer, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEJ" = ( +/obj/structure/table/optable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/surgical_drapes, +/obj/item/clothing/mask/surgical, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/reagent_containers/blood/random{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cEN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEO" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"cET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cEX" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/rust, +/area/maintenance/fore) +"cEY" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plating, +/area/security/prison) +"cFa" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cFc" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cFg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFk" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cFl" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cFq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cFy" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cFC" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"cFE" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Cargo Delivery Access"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"cFK" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/port) +"cFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/port) +"cFN" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"cFP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cFR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/book/manual/wiki/engineering_hacking, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cFT" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cFU" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"cFV" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"cFX" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"cFY" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cGa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"cGb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cGd" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cGi" = ( +/obj/structure/flora/grass/jungle/b, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGj" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGl" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGp" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGr" = ( +/obj/structure/flora/grass/jungle/b, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"cGx" = ( +/obj/structure/transit_tube/curved/flipped, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"cGy" = ( +/obj/item/target/clown, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine/vacuum, +/area/science/test_area) +"cGz" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit/departure_lounge) +"cGA" = ( +/obj/docking_port/stationary/random{ + dir = 2; + id = "pod3_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cGD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/turf/open/floor/plating, +/area/security/prison) +"cGF" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cGH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"cGI" = ( +/obj/machinery/camera{ + c_tag = "Satellite External Starboard"; + dir = 4; + name = "exterior camera"; + network = list("minisat"); + start_active = 1 + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cGK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cGS" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"cGV" = ( +/obj/machinery/power/solar_control{ + dir = 8; + id = "aftstarboard"; + name = "Starboard Quarter Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cHb" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"cHc" = ( +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/fore) +"cHu" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cHx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cHF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/storage/box/monkeycubes{ + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cHL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"cHN" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cHT" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 6 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -6 + }, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/syringe, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cIb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/flasher/directional/north{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"cIc" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIi" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/sign/plaques/kiddie/library{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"cIm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"cIp" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cIv" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"cIA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cIB" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"cIK" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/item/paper/crumpled{ + info = "This isn't funny, I'm trapped on the least fun room on the station."; + name = "poorly written complaint" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cIL" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cIU" = ( +/turf/closed/wall/rust, +/area/construction/mining/aux_base) +"cIV" = ( +/turf/closed/wall, +/area/construction/mining/aux_base) +"cIW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cIX" = ( +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cIY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cJh" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cJi" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/camera_advanced/base_construction/aux{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJm" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"cJo" = ( +/obj/docking_port/stationary{ + dheight = 4; + dir = 8; + dwidth = 4; + height = 9; + id = "aux_base_zone"; + name = "aux base zone"; + roundstart_template = /datum/map_template/shuttle/aux_base/default; + width = 9 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cJv" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"cJw" = ( +/obj/machinery/door/poddoor/shutters{ + id = "aux_base_shutters"; + name = "Auxillary Base Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"cJx" = ( +/obj/structure/girder, +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cJB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cJD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"cJG" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cJH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"cJI" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJJ" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbay_front_door"; + name = "Medbay"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"cJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cJR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/construction/mining/aux_base) +"cJV" = ( +/obj/machinery/gulag_teleporter, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cJX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cKc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cKd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"cKe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"cKg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"cKi" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Transferring Centre Dock"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/processing) +"cKv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/dark/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"cKI" = ( +/obj/structure/dresser, +/obj/machinery/airalarm/directional/east, +/obj/machinery/button/door/directional/north{ + id = "Cabin_1"; + name = "Cabin 1 Privacy Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/locker) +"cKV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/grille/broken, +/obj/item/clothing/suit/hazardvest{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLd" = ( +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cLg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cLh" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/oxygen, +/obj/item/pickaxe, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLk" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cLr" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_prep) +"cLs" = ( +/turf/closed/wall/r_wall, +/area/cargo/exploration_dock) +"cLt" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"cLF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"cLH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cLJ" = ( +/obj/structure/table, +/obj/item/clothing/suit/armor/vest/justice, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/aft) +"cLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cLM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"cLN" = ( +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cLR" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 1; + height = 4; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"cLZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/chem_wardrobe, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cMd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cMe" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cMh" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cMk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cMl" = ( +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"cMs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmospherics Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"cMt" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"cMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cMF" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"cMG" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cMJ" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/gravity_generator) +"cNg" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/starboard) +"cNi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNx" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/detective, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"cNy" = ( +/obj/machinery/computer/security/telescreen{ + dir = 8; + name = "Station Monitor"; + network = list("ss13"); + pixel_x = 24 + }, +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/hand_labeler, +/obj/item/taperecorder, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"cNz" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"cNA" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"cNC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNN" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"cNO" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"cNR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNT" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"cNY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "Director's Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cNZ" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"cOb" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/maintenance/starboard) +"cOd" = ( +/obj/docking_port/stationary/random{ + dir = 4; + id = "pod4_lavaland"; + name = "lavaland" + }, +/turf/open/space, +/area/space/nearstation) +"cOg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Cabin_3Privacy"; + name = "Cabin 3 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cOn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOp" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/space/nearstation) +"cOs" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"cOv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"cOx" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"cOz" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"cPg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"cPk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"cPx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/assist, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"cPA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"cPE" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/flora/grass/jungle, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"cPH" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port) +"cPY" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"cQM" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cQP" = ( +/obj/structure/sign/poster/official/fruit_bowl, +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"cRp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/mecha_part_fabricator/sb, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plasteel/dark, +/area/security/main) +"cRB" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cRM" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"cSy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cSJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"cSP" = ( +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"cSR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 4 + }, +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cSS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/item/wirecutters, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"cST" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/security/prison) +"cSU" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/rust, +/area/security/prison) +"cSZ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"cTl" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"cTG" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "justiceblast"; + name = "Justice Blast door" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"cTI" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cTP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"cUt" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"cUH" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 40 + }, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"cVb" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"cVj" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/item/storage/backpack/satchel, +/obj/item/analyzer, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"cVz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"cVA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/virologist, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"cVJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater A"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"cVO" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fernybush, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"cVW" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"cWg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"cWw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"cWK" = ( +/turf/closed/wall, +/area/commons/storage/primary) +"cWX" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/requests_console/directional/south{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console" + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"cXz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "50" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"cXD" = ( +/obj/structure/sign/poster/contraband/red_rum, +/turf/closed/wall/rust, +/area/maintenance/port) +"cXH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"cXK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"cYn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"cYo" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8; + filter_type = "n2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"cYQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/warden) +"cZi" = ( +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"cZn" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"cZo" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/service/chapel) +"cZV" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"cZY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"dab" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dac" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"daF" = ( +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/extinguisher{ + pixel_y = 4 + }, +/obj/item/extinguisher{ + pixel_x = -4 + }, +/obj/machinery/button/door/directional/south{ + id = "xeno6"; + name = "Creature Cell 6 Toggle"; + pixel_x = 24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"daG" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"daT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"daZ" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"dbl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"dbz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"dbG" = ( +/turf/closed/wall, +/area/command/bridge) +"dcf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dcK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/brig) +"dcO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/machinery/button/door{ + id = "briggateteh"; + name = "Бронешторы"; + pixel_y = -26; + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"dcT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/bedsheetbin, +/obj/structure/table/glass, +/obj/machinery/airalarm/directional/north, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"ddk" = ( +/obj/structure/cable, +/obj/structure/flora/ausbushes/sparsegrass{ + pixel_x = 7; + pixel_y = 3 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/security/prison) +"ddv" = ( +/obj/machinery/door/airlock/grunge{ + name = "Prison Forestry" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison) +"ddA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"ddM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ddN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"deb" = ( +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"deq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"deD" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"deI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"deP" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"deQ" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"deT" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Biogenerator"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"dfq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/grille/broken, +/obj/item/wallframe/apc, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"dfF" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/camera_film{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/camera, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"dgk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"dhc" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"dho" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dhp" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialwagon"; + name = "Custodial Bay" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"dht" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"dhv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher/directional/west{ + id = "Cell 6"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"dhz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dhF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"dhG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/storage/backup) +"dhL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"dhR" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"dif" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"dik" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"dim" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/chem_master/condimaster{ + name = "CondiMaster Neo" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"dix" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Traffic Control"; + dir = 4; + name = "shuttle camera" + }, +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"diL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"diR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"djf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"djK" = ( +/obj/machinery/door/airlock/security{ + id_tag = "IsolationCell"; + name = "Isolation Cell"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"djP" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"djY" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/hydroponics) +"dkE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "hosspace"; + name = "Space Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"dkL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/camera{ + c_tag = "Testing Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/module_duplicator, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"dkX" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/cargo/warehouse) +"dlF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"dmd" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel's Requests Console" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"dmf" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"dmh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"dms" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dmx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Evidence"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"dmB" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"dnf" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dns" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Upload Access"; + req_one_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dny" = ( +/obj/machinery/light/directional/north, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"dnD" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"dnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dnZ" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"doj" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"doG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/warehouse) +"doL" = ( +/obj/machinery/power/emitter/welded{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"doP" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/obj/item/stack/license_plates/empty/fifty, +/turf/open/floor/plating, +/area/security/prison) +"dpy" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"dpC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"dpN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"dpS" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"dqc" = ( +/obj/machinery/door/poddoor/preopen{ + id = "brigfrontdoor"; + name = "Front Security Blast door" + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dqk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"dqz" = ( +/obj/structure/closet{ + name = "beekeeping wardrobe" + }, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/clothing/head/beekeeper_head, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/item/melee/flyswatter, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"dqT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"drb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"drk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/service/library) +"drN" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 30 + }, +/obj/item/gps, +/obj/effect/turf_decal/bot, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dsc" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"dsd" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"dsf" = ( +/turf/open/floor/carpet/green, +/area/cargo/warehouse) +"dsp" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/west{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console"; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/button/door/directional/west{ + id = "brigcelldoor"; + name = "Cell Blast Door Toggle"; + pixel_y = -6 + }, +/obj/machinery/button/door/directional/west{ + id = "brigfrontdoor"; + name = "Front Blast Door Toggle"; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"dsr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"dsG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"dsQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"dtb" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/item/integrated_circuit/loaded/speech_relay, +/obj/item/integrated_circuit/loaded/hello_world, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"dtq" = ( +/turf/closed/wall/rust, +/area/engineering/gravity_generator) +"dtA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"duf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dun" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"duH" = ( +/turf/closed/wall/rust, +/area/cargo/warehouse) +"duZ" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/food/grown/poppy{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/food/grown/poppy{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/food/grown/poppy, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"dvb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dvn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/keycard_auth, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dvu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"dvN" = ( +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"dwc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"dwf" = ( +/obj/structure/reflector/single/anchored{ + dir = 10 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dwk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"dwl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dwr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table_frame, +/obj/machinery/camera{ + c_tag = "Incinerator"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"dws" = ( +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"dwU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"dxn" = ( +/obj/machinery/air_sensor/nitrous_tank, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"dxK" = ( +/turf/closed/wall, +/area/command/heads_quarters/cmo) +"dyi" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/wood, +/area/service/bar) +"dyu" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "bushb1" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"dyx" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/folder/white{ + pixel_x = 6 + }, +/obj/item/storage/firstaid/regular, +/obj/machinery/door/window/northleft{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/obj/machinery/camera{ + c_tag = "Bridge Emergency Supplies"; + dir = 1; + name = "command camera" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dyM" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/storage/fancy/cigarettes/cigars/cohiba{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/obj/item/holosign_creator/robot_seat/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dyT" = ( +/obj/structure/cable, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"dzk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"dzB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"dAr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dAx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner, +/mob/living/simple_animal/bot/cleanbot{ + auto_patrol = 1; + icon_state = "cleanbot1"; + name = "Mopficcer Sweepsky" + }, +/obj/machinery/button/door/directional/south{ + id = "custodialwagon"; + name = "Custodial Bay Toggle"; + req_access_txt = "26'" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dAD" = ( +/obj/structure/sign/warning/securearea{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"dAH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dAV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/security/processing) +"dBP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/mixer/airmix, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dBT" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Research Lab"; + departmentType = 5; + name = "Research Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"dCE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"dDv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"dDS" = ( +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/west, +/obj/structure/sign/plaques/kiddie{ + pixel_y = 30 + }, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"dEf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dEq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dEO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder{ + pixel_x = -4 + }, +/obj/item/pai_card, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"dEV" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/vacuum{ + pixel_x = -32 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"dFw" = ( +/obj/structure/table, +/obj/item/kitchen/fork/plastic, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"dFR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"dFU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-17"; + pixel_x = 8; + pixel_y = 3 + }, +/mob/living/carbon/human/species/monkey/punpun, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dGa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Filter" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/supermatter) +"dGx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dGE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"dGI" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dGL" = ( +/obj/structure/table/reinforced, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"dGN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/east, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"dHr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"dHw" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/status_display/evac/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"dHC" = ( +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dHI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"dHK" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/carpet/green, +/area/service/library) +"dHM" = ( +/obj/structure/table, +/obj/item/wallframe/airalarm, +/obj/item/screwdriver{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"dHO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/science/misc_lab) +"dIq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dIT" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/directional/east{ + id = "QMLoaddoor"; + layer = 4; + name = "Off Ramp Toggle"; + pixel_y = 6; + req_access_txt = "31" + }, +/obj/machinery/button/door/directional/east{ + id = "QMLoaddoor2"; + layer = 4; + name = "On Ramp Toggle"; + pixel_y = -6; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dIV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/pill/patch/aiuri, +/obj/item/clothing/glasses/meson/engine, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"dJB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"dJI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dJU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Locker Room" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"dJZ" = ( +/obj/structure/bookcase/random/reference, +/obj/machinery/camera{ + c_tag = "Bar Shelves"; + name = "bar camera" + }, +/turf/open/floor/wood, +/area/service/bar) +"dKg" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/light/directional/east, +/mob/living/carbon/human/species/monkey{ + name = "mankey" + }, +/turf/open/floor/grass, +/area/medical/virology) +"dKp" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"dKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dKD" = ( +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"dKV" = ( +/obj/structure/table, +/obj/item/folder/white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm/directional/south, +/obj/item/toy/figure/virologist{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/restraints/handcuffs, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"dLf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"dLG" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"dLT" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab Storage"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"dMg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/curator{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"dMx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"dMI" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dML" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_2Privacy"; + name = "Unit 2 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dNb" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dNg" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"dNs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"dNv" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/airless, +/area/space) +"dNJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard) +"dNK" = ( +/obj/structure/bed, +/obj/machinery/airalarm/directional/west, +/obj/effect/landmark/start/assistant, +/obj/item/bedsheet/dorms, +/obj/machinery/button/door/directional/north{ + id = "Cabin_3"; + name = "Cabin 3 Privacy Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/locker) +"dNT" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"dOh" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"dOn" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"dOq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/ticket_machine/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"dON" = ( +/turf/closed/wall/rust, +/area/service/theater) +"dPh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"dPy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"dPF" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"dQb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"dQj" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/chair/sofa{ + color = "#c45c57" + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"dQu" = ( +/turf/open/floor/grass, +/area/service/chapel) +"dQJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"dQN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dQV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"dRe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"dRs" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/pipedispenser/disposal, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"dRy" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/west, +/obj/structure/noticeboard/directional/west, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/britcup{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"dRQ" = ( +/obj/structure/rack, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/bruise_pack, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"dTq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/engineering/main) +"dTz" = ( +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"dTC" = ( +/obj/machinery/door/airlock/atmos{ + name = "Filter Chamber" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"dTM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"dUd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"dUk" = ( +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"dUp" = ( +/turf/closed/wall, +/area/command/heads_quarters/hos) +"dUE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/table, +/obj/item/restraints/handcuffs, +/obj/item/radio{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"dUK" = ( +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"dUM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"dUR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"dUZ" = ( +/obj/structure/table, +/obj/item/storage/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/rice, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"dVc" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel) +"dVt" = ( +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"dVw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/security/courtroom) +"dVC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"dVE" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"dVS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"dWe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"dWo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"dWK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"dWL" = ( +/obj/structure/transit_tube/horizontal{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"dXa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"dXx" = ( +/obj/structure/bookcase/random/adult, +/turf/open/floor/plasteel/dark, +/area/service/library) +"dXW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dXX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"dYo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"dZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/turf/open/floor/plating, +/area/maintenance/port) +"dZv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"dZD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"dZN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/button/door/directional/north{ + id = "prisonblast"; + name = "Prison Lockdown"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"dZP" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/engineering/gravity_generator) +"dZU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"eaD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/bookbinder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/service/library) +"eaR" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/science/robotics/mechbay) +"eaV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/beacon, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ebd" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ebj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ebP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ecc" = ( +/obj/effect/landmark/start/exploration, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"ecj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ecp" = ( +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"ecF" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating, +/area/space/nearstation) +"ecO" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ecX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"edb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"edr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"eee" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eej" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/bedsheetbin, +/obj/machinery/status_display/evac/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"eeq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"eeu" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/bridge) +"eev" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/item/radio/intercom/directional/north, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"eeL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/east, +/turf/open/floor/carpet/green, +/area/lawoffice) +"eeN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"eeV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/oven, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"eff" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"efC" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"efZ" = ( +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/locker) +"ega" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"egh" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"egt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/sheet/cardboard/fifty, +/obj/item/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/lights/mixed{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"egB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"egH" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command/bridge) +"ehe" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/ore_box, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ehf" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"ehj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ehz" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ehK" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"eih" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Research Desk"; + dir = 4; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eiB" = ( +/obj/structure/closet/secure_closet/detective, +/obj/structure/reagent_dispensers/peppertank/directional/north, +/obj/structure/cable, +/obj/item/book/manual/wiki/detective, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/wood, +/area/security/detectives_office) +"eiS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engineering/main) +"eiW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"eiX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ejk" = ( +/mob/living/simple_animal/hostile/russian{ + environment_smash = 0; + loot = list(/obj/effect/mob_spawn/human/corpse/russian); + name = "Russian Mobster" + }, +/turf/open/floor/wood, +/area/maintenance/port) +"ejz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light/small/directional/north, +/obj/machinery/button/crematorium{ + id = "crematoriumChapel"; + pixel_y = 24; + req_access_txt = "27" + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ejU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo, +/obj/machinery/firealarm/directional/north, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"ekn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"ekq" = ( +/obj/machinery/button/massdriver{ + id = "trash"; + pixel_x = -26; + pixel_y = -6 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/button/door/directional/west{ + id = "Disposal Exit"; + name = "Disposal Vent Control"; + pixel_y = 4; + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ekw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ekZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"elp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"els" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/modular_computer/console/preset/cargochat/medical{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"ely" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"elR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"elW" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"emc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"emv" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"emC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"emV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"emY" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/box/lights/mixed{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"enf" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"enl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ent" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"enE" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/analyzer{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"enJ" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"enL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"enM" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/flora/ausbushes/grassybush, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"enR" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Prison Botany"; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"enY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"enZ" = ( +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"eoe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"eoj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/locker) +"eox" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/warden) +"eoB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eoL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Cargo Ramps"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eoS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"epi" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"epE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"eqk" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/cmo) +"eqm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eqH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"erd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ere" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"erq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"erx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"erO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"erP" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/west{ + id = "Cabin_3Privacy"; + name = "Cabin 3 Privacy Toggle"; + pixel_y = -24 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/locker) +"esc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"esf" = ( +/obj/machinery/mech_bay_recharge_port, +/obj/machinery/airalarm/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/robotics/mechbay) +"esg" = ( +/obj/structure/table/wood/fancy, +/obj/item/storage/crayons, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + name = "chapel camera" + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"esi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Shower_2Privacy"; + name = "Shower 2 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"etE" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"etH" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"eug" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"euk" = ( +/turf/open/floor/plasteel, +/area/engineering/break_room) +"eum" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "East Ports to West Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eux" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"euy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"euE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -2 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/command/bridge) +"euG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"euH" = ( +/obj/structure/table/glass, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"evT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ewf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ewl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Fore Hallway Robotics Bay"; + dir = 1; + name = "fore camera" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"ewE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"ewJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"exk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"exF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"eyb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eyc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/crate/trashcart/laundry, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner, +/obj/item/clothing/under/rank/prisoner/skirt, +/obj/item/clothing/under/rank/prisoner/skirt, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"eyj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"eys" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"eyw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"eyz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"ezd" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"ezi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"ezv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ezG" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/chapel) +"ezM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eAv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"eAU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"eAV" = ( +/turf/closed/wall/r_wall/rust, +/area/engineering/supermatter) +"eAY" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = null; + req_one_access_txt = "12;25" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"eBa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + name = "atmospherics maintenance"; + req_access_txt = "24" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"eBf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"eBk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light/directional/south, +/obj/machinery/requests_console/directional/south{ + department = "Janitorial"; + departmentType = 1; + name = "Janitorial Requests Console" + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/service/janitor) +"eBZ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/silvercrate, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/screwdriver/power, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"eCd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eCi" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor2"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"eCK" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"eDq" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/inspector, +/turf/open/floor/plasteel/dark, +/area/security/main) +"eDs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"eDI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/pen/fourcolor, +/obj/item/stamp/hop{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"eEc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"eEP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"eEU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"eEW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"eFe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eFy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"eFF" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"eFH" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 8; + freq = 1400; + location = "Bar" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Bar Delivery Access"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"eFJ" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"eGd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"eGO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"eHf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"eHD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"eIb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eIc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"eIs" = ( +/obj/structure/table, +/obj/machinery/light/directional/west, +/obj/item/clipboard, +/obj/item/airlock_painter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/airlock_painter, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"eIR" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"eJz" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eJC" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eJD" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"eJQ" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"eJV" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"eKg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"eKh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/pai_card, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"eKm" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/cargo/office) +"eLd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"eLL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"eLO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"eLX" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"eMc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"eMl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"eMx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"eML" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research Hallway"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"eNm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"eNx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eNB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/door/window{ + dir = 8; + name = "Mass Driver"; + req_access_txt = "22" + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/button/massdriver{ + id = "chapelgun"; + name = "Chapel Mass Driver"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"eNS" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/newscaster/directional/south, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"eNX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"eOe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/machinery/requests_console/directional/west{ + department = "Security"; + departmentType = 5; + name = "Security Requests Console" + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/computer/security/telescreen/engine, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"eOk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"eOQ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30; + pixel_y = -32 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"eOS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/food/mint, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/sugar{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/reagent_containers/glass/beaker, +/obj/item/holosign_creator/robot_seat/restaurant, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"eOX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ePc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ePs" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Locker Room" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"ePG" = ( +/obj/structure/cable, +/obj/machinery/power/tracker, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/aft) +"ePI" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/fancy/donut_box, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"ePM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"eQf" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/space/basic, +/area/space/nearstation) +"eQt" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"eQB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/button/door/directional/south{ + id = "engsm"; + name = "Radiation Shutters Toggle"; + req_access_txt = "10" + }, +/turf/open/floor/engine, +/area/engineering/main) +"eQS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/main) +"eRj" = ( +/obj/docking_port/stationary{ + dwidth = 3; + height = 5; + id = "commonmining_home"; + name = "SS13: Common Mining Dock"; + roundstart_template = /datum/map_template/shuttle/mining_common/kilo; + width = 7 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"eRk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eRm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/structure/table, +/obj/machinery/firealarm/directional/east, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"eRo" = ( +/obj/machinery/computer/apc_control, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 3; + name = "Chief Engineer's Requests Console" + }, +/obj/machinery/button/door/directional/north{ + id = "ceprivate"; + name = "Privacy Shutters Toggle"; + pixel_x = -6; + req_access_txt = "56" + }, +/obj/machinery/button/door/directional/north{ + id = "Secure Storage"; + name = "Secure Storage Toggle"; + pixel_x = 6; + req_access_txt = "11" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"eRp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eRr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plating, +/area/cargo/warehouse) +"eRK" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay Storage"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"eRV" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"eSe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"eSG" = ( +/obj/machinery/computer/mecha{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"eSQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"eTc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/item/stack/medical/gauze, +/obj/item/stack/medical/mesh/advanced, +/obj/item/stack/medical/suture/medicated, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"eTq" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"eTr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eTN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/meter, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"eUe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eUm" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"eUu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "qm sorting disposal pipe"; + sortType = 3 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"eUz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/locker) +"eUB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"eVf" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/wood, +/area/service/bar) +"eVk" = ( +/obj/structure/table/wood, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/red, +/obj/item/clothing/glasses/sunglasses/big{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/big, +/turf/open/floor/carpet/green, +/area/lawoffice) +"eVu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to West Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"eVL" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"eVR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "atmospherics sorting disposal pipe"; + sortType = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eWh" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"eWs" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"eWw" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/obj/item/folder/white, +/obj/item/clothing/head/soft/paramedic{ + pixel_x = 3; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"eWy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"eWI" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/aft) +"eWJ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"eWM" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"eWO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "cmoprivacy"; + name = "Office Privacy Shutters" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/cmo) +"eWZ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/turf/open/floor/grass, +/area/service/chapel) +"eXt" = ( +/obj/machinery/plate_press, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/security/prison) +"eXx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"eXA" = ( +/obj/machinery/button/flasher{ + id = "visitorflash"; + pixel_x = -6; + pixel_y = 24; + req_access_txt = "2" + }, +/obj/machinery/holopad, +/obj/machinery/button/door/directional/north{ + id = "visitation"; + name = "Visitation Shutters"; + pixel_x = 8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"eXC" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"eXK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"eXS" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"eYL" = ( +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"eYU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/warning/fire{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"eZr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"eZy" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"eZB" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 4; + freq = 1400; + location = "Atmospherics"; + name = "navigation beacon (Atmospherics Delivery)" + }, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Atmospherics Delivery Access"; + req_one_access_txt = "24;10" + }, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"eZR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"eZS" = ( +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch/directional/north{ + pixel_x = 8 + }, +/obj/machinery/requests_console/directional/south{ + department = "AI"; + departmentType = 5; + name = "AI Requests Console" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"eZT" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fal" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"faE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"faV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fbc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fbn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/obj/machinery/chem_mass_spec, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"fbH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fcd" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"fco" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fdJ" = ( +/turf/open/floor/plasteel/white, +/area/security/prison) +"fdS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/closet/boxinggloves, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fen" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fet" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"feu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"ffq" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/emergency, +/obj/item/flashlight, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"ffO" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Atmos to Loop" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"ffY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"ffZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fgj" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"fgq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"fgO" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fgP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fhl" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"fhq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/camera{ + c_tag = "Fore Hallway Chapel"; + name = "fore camera" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"fhA" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/atmos) +"fhH" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar_1"; + name = "Bar Shutter" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/bar) +"fii" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/security/courtroom) +"fiu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fiH" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel) +"fjg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fjj" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"fkn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fkB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/sheet/plasteel/fifty{ + amount = 10; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/stack/sheet/rglass{ + amount = 50 + }, +/obj/item/clothing/shoes/magboots{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"fkT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"flc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/tool, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"flj" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_3"; + name = "Unit 3" + }, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"fls" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/office/light, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"flI" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"flP" = ( +/turf/closed/wall/rust, +/area/commons/vacant_room/commissary) +"flW" = ( +/turf/closed/wall/rust, +/area/service/chapel) +"fma" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plating, +/area/cargo/warehouse) +"fmk" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_control, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"fmB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/noticeboard/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fmD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"fmM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/main) +"fnj" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/beacon, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/command/teleporter) +"fno" = ( +/turf/closed/wall/r_wall/rust, +/area/command/bridge) +"fnr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"fod" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"fog" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"foo" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/port/aft) +"foM" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/south, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"foT" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/depsec/science, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"fpa" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"fpk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"fpm" = ( +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"fpz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/wrench/medical, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/evac/directional/west, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"fpC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"fpL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"fqr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"fqD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fqF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/item/stack/package_wrap, +/obj/item/storage/secure/briefcase{ + pixel_y = 4 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"fqI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fqL" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "transit intersection"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"frc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"frk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"fro" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"frw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"frK" = ( +/obj/structure/table/wood/fancy, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/toy/figure/chaplain{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/turf/open/floor/wood, +/area/service/chapel/office) +"fsh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fsn" = ( +/obj/effect/landmark/blobstart, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/tlv_no_checks, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark/telecomms, +/area/science/server) +"fsC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"fsJ" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"fsQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"fsS" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/machinery/door/poddoor{ + id = "freight_port"; + name = "Freight Bay Blast door" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"fsU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fsW" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/maintenance/starboard) +"ftN" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fut" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"fuy" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-11" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"fuC" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/engineering/break_room) +"fuK" = ( +/turf/closed/wall, +/area/commons/toilet/restrooms) +"fuN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"fuO" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/port/fore) +"fvj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/machinery/camera{ + c_tag = "Incinerator Entrance"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/item/hfr_box/body/fuel_input, +/obj/item/hfr_box/body/interface, +/obj/item/hfr_box/body/moderator_input, +/obj/item/hfr_box/body/waste_output, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fvl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fvt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"fvu" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fvw" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/requests_console/directional/south{ + department = "Ordnance Lab"; + departmentType = 2; + name = "Ordnance Lab Requests Console"; + receive_ore_updates = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/gloves{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 11 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"fvI" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/grass, +/area/service/chapel) +"fvV" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Shower_1"; + name = "Shower 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"fwx" = ( +/turf/closed/wall, +/area/engineering/storage/tech) +"fxf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/ash/large, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fxq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"fxE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "mech bay maintenance"; + req_access_txt = "29" + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"fxH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"fxL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/item/toy/plush/plasmamanplushie{ + name = "Dianion XV" + }, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"fya" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/northleft{ + name = "Hydroponics Lockers"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fyl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/service/chapel) +"fyu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/item/clothing/neck/tie/detective, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"fyv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement{ + pixel_y = 5 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"fyC" = ( +/obj/structure/chair/office/light, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/chief_engineer, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"fyH" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"fyV" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"fzh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"fzm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall, +/area/security/checkpoint/engineering) +"fzA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"fzE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fAE" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/hydroponics) +"fAF" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Satellite Maintenance"; + dir = 4; + name = "satellite camera"; + network = list("minisat") + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"fAV" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"fAZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fBn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation B"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"fBA" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/button/door/directional/south{ + id = "chemistry_shutters_2"; + name = "Hall Shutters Toggle"; + pixel_x = 24; + req_access_txt = "5; 33" + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"fBN" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/service/janitor) +"fBX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/toolbox/drone, +/obj/machinery/light/directional/north, +/obj/item/flashlight/flare, +/obj/item/flashlight/flare, +/obj/machinery/newscaster/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"fBZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fCd" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"fCg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/monkey_recycler, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"fCj" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/glasses/welding, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"fCm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/qm{ + pixel_x = 8; + pixel_y = 10 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"fCI" = ( +/turf/closed/wall, +/area/command/gateway) +"fCS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"fDo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199" + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"fDz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"fDD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Entertainment Backstage"; + req_access_txt = "46" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"fDL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fDS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel, +/area/command/bridge) +"fEB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fEH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/xeno_mining{ + pixel_y = 32 + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Freight Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"fEJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"fER" = ( +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/fore) +"fES" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"fEX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fFA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Secure Storage"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"fFD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"fFH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/item/flashlight/lantern, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"fGe" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"fGg" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"fGp" = ( +/obj/machinery/telecomms/server/presets/common, +/obj/machinery/light/directional/west, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"fGB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/food/cheesiehonkers{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/food/chips, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"fGN" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"fGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"fHr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"fHS" = ( +/obj/structure/closet/radiation, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"fIh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"fIm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "CO2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fIr" = ( +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"fIY" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/bikehorn/rubberducky, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/start/assistant, +/obj/machinery/button/door/directional/east{ + id = "Shower_1"; + name = "Shower 1 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "Shower_1Privacy"; + name = "Shower 1 Privacy Toggle"; + pixel_y = -8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"fJx" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"fJz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"fJK" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"fKd" = ( +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"fKi" = ( +/obj/structure/table/glass, +/obj/item/book/manual/wiki/infections{ + pixel_y = 6 + }, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/clothing/glasses/hud/health, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Virology"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/requests_console/directional/east{ + department = "Virology"; + name = "Virology Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"fKl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"fKo" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/clothing/head/welding{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"fKt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"fKu" = ( +/obj/structure/closet/secure_closet/security/engine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"fKw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"fKE" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"fKK" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"fLf" = ( +/turf/closed/wall/rust, +/area/engineering/main) +"fLj" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/service/chapel) +"fLJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/brown/filled/end{ + dir = 8 + }, +/obj/machinery/modular_computer/console/preset/cargochat/cargo{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fLV" = ( +/obj/machinery/biogenerator, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/security/prison) +"fMq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/head/welding{ + pixel_y = 4 + }, +/obj/machinery/camera{ + c_tag = "Tool Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/item/clothing/gloves/color/fyellow, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"fMz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"fNk" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fOh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -4 + }, +/obj/machinery/button/door/directional/west{ + id = "research_shutters"; + name = "Research Shuttle Toggle"; + pixel_y = 6; + req_access_txt = "7" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"fOi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fOz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"fOP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher/directional/west{ + id = "Cell 3"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fOZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Bridge Council Door"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"fPq" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fPw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"fPR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fQc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"fQX" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"fQZ" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + id = "NTMSLoad2"; + name = "on ramp" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"fRs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/break_room) +"fRH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"fSa" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fSk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"fSq" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "permaouter"; + name = "Permabrig Transfer"; + req_access_txt = "2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"fSw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"fSI" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"fSW" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"fSX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Desk"; + req_one_access_txt = "10;24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"fSZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"fUt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"fVf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Brig Warden's Office"; + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"fVk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"fVr" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"fVv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"fVy" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/fancy/candle_box{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"fWe" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/command/heads_quarters/hop) +"fWh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"fXb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"fXp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "AI Upload Transit Access"; + dir = 1; + name = "command camera" + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fXF" = ( +/obj/structure/rack, +/obj/item/wirecutters{ + pixel_y = 5 + }, +/obj/item/wirerod, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"fXK" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"fYs" = ( +/obj/structure/chair/office, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"fYy" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/mineral/random/labormineral, +/area/space/nearstation) +"fYD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"fZF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"fZM" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"fZO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gaa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"gai" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gat" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"gaJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"gaZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/exile, +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"gbt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Secure Tech Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"gbF" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/service/chapel/office) +"gcd" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"gdo" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"gds" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/storage/backup) +"gdS" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/green, +/area/cargo/warehouse) +"geg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gek" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ges" = ( +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"get" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/razor, +/turf/open/floor/plasteel, +/area/commons/locker) +"gew" = ( +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"geJ" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/item/trash/cheesie, +/obj/item/trash/syndi_cakes, +/turf/open/floor/plasteel/white, +/area/security/prison) +"gfH" = ( +/obj/structure/rack, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gfK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ggd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"gge" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/storage/tech) +"ggo" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ggt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ggv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"ggL" = ( +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"ggR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/west, +/obj/machinery/recharger, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"ghj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/item/pipe_dispenser, +/obj/item/holosign_creator/atmos, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ghl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Infirmary"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ghs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ghx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ghK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"gik" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"giw" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"giB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"gjG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"gkb" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"gkx" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gkD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/status_display/ai/directional/north, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"gkN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/security/prison) +"gkX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/sign/poster/official/anniversary_vintage_reprint{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Chemistry North"; + network = list("ss13","medbay") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"glp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"gls" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"glv" = ( +/obj/structure/sign/poster/official/random, +/turf/closed/wall, +/area/service/bar/atrium) +"glI" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"gmb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"gmg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Freight Power Control" + }, +/obj/structure/cable, +/obj/structure/barricade/wooden/crude, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"gml" = ( +/obj/structure/rack, +/obj/item/storage/briefcase{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/briefcase, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"gmy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"gmK" = ( +/obj/structure/chair/sofa/corner{ + color = "#c45c57"; + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"gmS" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/wall/r_wall, +/area/security/prison) +"gmW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gno" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/button/door/directional/south{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gnr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"gny" = ( +/obj/structure/cable, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gnH" = ( +/obj/structure/sign/poster/official/wtf_is_co2, +/turf/closed/wall, +/area/engineering/atmos) +"gnZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"goJ" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/field_medic, +/turf/open/floor/plasteel, +/area/security/main) +"goP" = ( +/obj/structure/chair/comfy/brown{ + color = "#596479"; + dir = 1 + }, +/obj/effect/landmark/start/captain, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"gps" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"gpw" = ( +/turf/closed/wall/rust, +/area/maintenance/space_hut/plasmaman) +"gpA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"gpB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"gpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tank_holder/extinguisher, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gqh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"gqz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/processor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"gqQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/engine, +/area/engineering/main) +"gqR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"grn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "rd sorting disposal pipe"; + sortType = 13 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"grD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"grJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/secure_closet/chief_medical, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"gsn" = ( +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"gss" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"gsY" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engineering/supermatter) +"gtd" = ( +/obj/structure/flora/ausbushes/palebush{ + icon_state = "fullgrass_2" + }, +/obj/structure/flora/grass/jungle{ + icon_state = "bushc2" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"gtm" = ( +/obj/machinery/computer/security/telescreen/interrogation{ + name = "isolation room monitor"; + network = list("isolation"); + pixel_y = 31 + }, +/obj/machinery/button/flasher{ + id = "IsolationFlash"; + pixel_x = -23; + pixel_y = 8; + req_access_txt = "2" + }, +/obj/machinery/button/door/directional/west{ + id = "Isolation"; + name = "Isolation Shutter Button"; + pixel_y = -6; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"gtw" = ( +/obj/machinery/door/airlock/grunge{ + name = "Morgue"; + req_one_access_txt = "5;6;22" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"gtL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/structure/mirror/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"gui" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"guq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"gur" = ( +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"guv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"guZ" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/toy/figure/hop{ + pixel_x = -8 + }, +/obj/item/toy/figure/ian{ + pixel_x = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"gvk" = ( +/turf/open/floor/engine, +/area/engineering/storage/tech) +"gvD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gvK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/chapel/office) +"gvR" = ( +/obj/machinery/chem_dispenser/drinks/beer{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/table, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/camera{ + c_tag = "Bar Counter"; + dir = 8; + name = "bar camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gvU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gwc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gwk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/departments/engineering{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Rotunda"; + dir = 1; + name = "starboard camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"gwo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"gws" = ( +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/radio{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"gwu" = ( +/obj/structure/toilet, +/obj/machinery/light/small/directional/north, +/turf/open/floor/vault, +/area/security/prison) +"gwx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"gwE" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gwX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos/glass{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gxe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"gxs" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gxu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/lawoffice) +"gxA" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"gyE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"gyT" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"gzy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"gzJ" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard/aft) +"gzW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Suit Closet"; + req_access_txt = "1" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/main) +"gAh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gAm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gAE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"gAM" = ( +/obj/machinery/air_sensor/air_tank, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"gAW" = ( +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/button/door/directional/north{ + id = "gravity"; + name = "Gravity Generator Lockdown"; + req_one_access_txt = "19;23" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"gBk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"gBn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"gBt" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"gBM" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"gCp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"gCq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"gCv" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gCw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"gCJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"gCO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/purple/filled/line{ + dir = 1 + }, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"gCQ" = ( +/obj/machinery/computer/robotics{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"gCU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"gDl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"gDA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"gDI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gEk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"gEl" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"gEK" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"gEN" = ( +/obj/structure/table/reinforced, +/obj/structure/reagent_dispensers/servingdish, +/turf/open/floor/plasteel/white, +/area/security/prison) +"gEQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"gFu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"gGi" = ( +/obj/effect/turf_decal/sand/plating, +/obj/structure/grille/broken, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"gGA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"gGG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"gHj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"gHG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"gIh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/folder/yellow, +/obj/item/stack/package_wrap, +/obj/item/gps{ + gpstag = "QM0"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/west, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"gIv" = ( +/obj/machinery/air_sensor/oxygen_tank, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"gIy" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"gJh" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gJp" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/item/circuitboard/machine/telecomms/bus{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/machinery/camera{ + c_tag = "Telecomms Storage"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"gJJ" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/science/misc_lab) +"gJT" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"gKl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"gKr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Ordnance Lab Burn Chamber"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/west, +/obj/effect/mapping_helpers/airalarm/mixingchamber_access, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"gKG" = ( +/obj/structure/sign/departments/engineering{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"gKO" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gLm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall, +/area/science/storage) +"gLq" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"gLE" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gLF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/beakers{ + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/button/door/directional/south{ + id = "xeno2"; + name = "Creature Cell 2 Toggle"; + pixel_x = -24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"gLG" = ( +/obj/machinery/modular_computer/console/preset/command, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"gLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gLT" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"gMi" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"gMj" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"gMy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"gNg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gNO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"gNR" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;101" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"gOd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"gOl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/trimline/purple/filled/line, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"gOv" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"gOw" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"gOB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gOH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"gON" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/item/radio/intercom/directional/north, +/obj/machinery/restaurant_portal/bar, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"gPh" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/cargo/storage) +"gPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"gPY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"gQs" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - CO2"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"gQu" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/obj/item/computer_disk/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/qm) +"gQN" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/security/main) +"gQQ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Bow Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/fore) +"gQR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"gQU" = ( +/obj/structure/table/wood, +/obj/structure/mirror/directional/east, +/obj/item/clipboard, +/obj/item/toy/figure/mime{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/dummy{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/clown, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"gRd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pinpointer/nuke, +/obj/item/disk/nuclear/fake, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"gRl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"gRF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gRL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/silver_ids{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/ids, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"gRN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"gSi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gSP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"gTc" = ( +/obj/structure/cable, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_x = 24; + pixel_y = -7 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 5 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"gTr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/computer/operating{ + name = "Forensics Operating Computer" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"gTC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"gTO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"gTX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/airalarm/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"gUd" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/service/bar) +"gUz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Ordnance Lab Maintenance"; + req_access_txt = "8" + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"gUC" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"gUI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"gUM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"gVy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"gVG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"gVM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"gVO" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Atmospherics Lockers"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"gVT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"gVV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"gWG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/central) +"gWN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"gWQ" = ( +/obj/structure/closet/l3closet/janitor, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/west, +/obj/item/grenade/clusterbuster/cleaner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"gWV" = ( +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"gXh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"gXy" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/supplied/oxygen{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"gXK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"gYq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"gYB" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/locker) +"gYM" = ( +/turf/open/floor/engine, +/area/engineering/supermatter) +"gYW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/warehouse) +"gZo" = ( +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_y = 4 + }, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel" + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel"; + pixel_y = 4 + }, +/obj/effect/landmark/start/ai, +/obj/machinery/button/door/directional/north{ + id = "AI Core shutters"; + name = "AI Core Shutters Toggle"; + pixel_x = 24; + req_access_txt = "16" + }, +/obj/machinery/button/door/directional/north{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Lockdown"; + pixel_x = -24; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"gZv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"gZR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "O2 to Airmix" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"haD" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"haI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"haP" = ( +/obj/machinery/power/smes, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"hbf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"hbn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"hbJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"hbL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hbO" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/rust, +/area/engineering/atmos) +"hbZ" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/hidden, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"hca" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"hce" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"hci" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"hck" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/airalarm/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"hcl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Courtroom"; + location = "Lockers"; + name = "lockers navigation beacon" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hct" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"hcD" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hcG" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/cargo/warehouse) +"hcO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hcX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"hdc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"hdN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"hdT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/machinery/camera{ + c_tag = "Bar Storage"; + dir = 5; + name = "bar camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hdX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/noticeboard/directional/east, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/under/color/grey, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"hea" = ( +/obj/structure/closet/secure_closet/research_director, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Research Director's Office"; + name = "science camera"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"hek" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"hel" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/decal/cleanable/insectguts, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"het" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"heS" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"hfb" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"hfo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"hfA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hfQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/status_display/ai/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Recreation Fitness Ring"; + dir = 1; + name = "recreation camera" + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hgh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"hgl" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hgI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/turf/closed/wall, +/area/engineering/atmos) +"hgL" = ( +/obj/structure/cable, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"hgQ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"hgW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/machinery/door/window/westright{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"hha" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"hhe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"hht" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "East Ports to Engine" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hhG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hhR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engineering/main) +"hhT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hiz" = ( +/obj/structure/sign/departments/custodian, +/turf/closed/wall/rust, +/area/service/janitor) +"hiG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"hjc" = ( +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/door/airlock/research/glass/incinerator/ordmix_interior, +/obj/machinery/button/ignition/incinerator/ordmix, +/obj/machinery/button/door/incinerator_vent_ordmix, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"hjk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"hjD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/ai/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"hjE" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"hjU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"hjX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"hjY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"hkd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"hkx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hkT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/xeno_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hlc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"hlh" = ( +/obj/structure/cable, +/obj/machinery/air_sensor/incinerator_tank{ + pixel_x = 32; + pixel_y = -23 + }, +/obj/machinery/igniter{ + id = "Incinerator" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"hlo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/machinery/camera{ + c_tag = "Delivery Office"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"hms" = ( +/obj/structure/flora/rock, +/turf/open/floor/plating/asteroid/airless, +/area/space) +"hmJ" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"hmK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"hmT" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_atmos{ + pixel_x = -8; + pixel_y = 40 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"hnt" = ( +/obj/machinery/door/poddoor/shutters{ + id = "teleshutter"; + name = "Teleporter Access Shutter" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"hnz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow, +/turf/open/floor/plasteel, +/area/engineering/main) +"hnJ" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/engineering/main) +"hnW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"hoE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/secure_closet/bar{ + req_access_txt = "25" + }, +/obj/item/flashlight/lantern, +/obj/machinery/firealarm/directional/east, +/obj/structure/mirror/directional/south, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"hoG" = ( +/obj/machinery/air_sensor/plasma_tank, +/obj/machinery/portable_atmospherics/canister/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"hoL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/mob/living/simple_animal/sloth/citrus, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"hoZ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"hpd" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"hpp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Justice Windoor"; + req_access_txt = "3" + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Justice Windoor"; + req_access_txt = "3" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"hpt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hpx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"hpC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hpX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Aft Hallway Transfer Centre Doors"; + dir = 8; + name = "aft camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hqd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"hqe" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/newscaster/directional/south{ + pixel_x = -28 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door/directional/east{ + id = "Unit_3Privacy"; + name = "Unit 3 Privacy Toggle"; + pixel_y = -8 + }, +/obj/machinery/button/door/directional/east{ + id = "Unit_3"; + name = "Unit 3 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"hqu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hqz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"hqC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hqK" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Testing Lab Maintainance"; + req_access_txt = "8" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hqN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Apiary"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"hqR" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hrh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Distro to Waste" + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hrk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"hse" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard) +"hsn" = ( +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/aft) +"hsu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/closed/wall/rust, +/area/engineering/atmos) +"hsv" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt2" + }, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"hsE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Central Hallway Courtroom"; + name = "central camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"hsS" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating/rust, +/area/security/prison) +"htX" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/bodycontainer/crematorium{ + dir = 8; + id = "crematoriumChapel" + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hub" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"huC" = ( +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"hva" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"hwo" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/toxin, +/obj/item/storage/firstaid/toxin{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"hwx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/drinks/mug/coco, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"hwF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"hwI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hxb" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"hxk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hxp" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper/guides/jobs/engi/gravity_gen, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"hxR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"hyj" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"hym" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"hyv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hyB" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/cmo{ + dir = 1; + name = "Chief Medical Officer's telescreen"; + network = list("medical") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"hyK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hyP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"hyV" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hzc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash/large, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hzt" = ( +/turf/closed/wall, +/area/cargo/storage) +"hzw" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 1 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"hzC" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt2" + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"hzN" = ( +/obj/structure/chair/pew/left{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel) +"hzQ" = ( +/obj/item/clipboard, +/obj/item/folder/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue, +/obj/item/melee/chainofcommand, +/obj/item/toy/figure/captain, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"hzW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Security Secways"; + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/vehicle/ridden/secway, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"hBo" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/grass, +/area/medical/psychology) +"hBN" = ( +/turf/closed/wall, +/area/commons/fitness/recreation) +"hCi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"hCy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/machinery/stasis, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"hCz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"hCA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"hCG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hCY" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"hDk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"hDo" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall, +/area/engineering/atmos) +"hDz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"hEa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"hEn" = ( +/obj/machinery/light/small/directional/east, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"hEu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hEM" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hES" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"hFx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"hFy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"hFA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/courtroom, +/obj/item/gavelhammer, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Courtroom Judge"; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"hFM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"hFU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hGq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"hGH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/meter/atmos/layer2{ + name = "gas flow meter" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"hGR" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/briefcase, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/head/bowler{ + pixel_y = 8 + }, +/obj/item/cane, +/turf/open/floor/plasteel, +/area/commons/locker) +"hGS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/engineering/main) +"hHK" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"hIk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"hIH" = ( +/obj/structure/sign/warning/securearea, +/obj/item/multitool, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"hIP" = ( +/obj/structure/closet/cardboard, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"hIT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"hJc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"hJi" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"hJD" = ( +/obj/machinery/door/poddoor/incinerator_ordmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing/chamber) +"hJN" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"hJQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hKf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"hKn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"hKF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"hKK" = ( +/obj/structure/cable, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad/secure, +/turf/open/floor/plasteel, +/area/security/main) +"hKY" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/wheat, +/turf/open/floor/grass, +/area/service/chapel) +"hLl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"hLR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"hLU" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/shieldgen, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"hMl" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"hMr" = ( +/obj/structure/displaycase/captain, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"hMH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"hMK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/janitor, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"hMN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"hNf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/south{ + id = "medbay_front_door"; + name = "Medbay Doors Toggle"; + normaldoorcontrol = 1; + req_access_txt = "5" + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"hNl" = ( +/obj/structure/sign/warning/vacuum, +/turf/closed/wall/rust, +/area/cargo/warehouse) +"hNz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/reagent_containers/glass/bucket, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"hNF" = ( +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"hNK" = ( +/turf/closed/wall, +/area/service/janitor) +"hNM" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/machinery/camera{ + c_tag = "Security Office Computers"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"hNW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"hNX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"hOw" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"hOB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"hOZ" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/shower{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"hPm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"hPo" = ( +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"hPy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"hPF" = ( +/obj/structure/bed/dogbed/runtime, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/mob/living/simple_animal/pet/cat/runtime, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"hPI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/atmos{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"hQc" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter, +/turf/open/floor/wood, +/area/commons/locker) +"hQe" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/turf/closed/wall/rust, +/area/engineering/atmos) +"hQf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"hQr" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"hQE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/lapvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"hQK" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/security/main) +"hQM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"hQO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departure Lounge" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"hQY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"hRq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"hRZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"hSn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"hSp" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Research and Development" + }, +/obj/machinery/door/window/eastleft{ + dir = 1; + name = "Research and Development Delivery Access"; + req_one_access_txt = "7;29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"hSE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"hSN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/science/genetics) +"hST" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"hTg" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/cargo/warehouse) +"hTj" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"hTo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"hTt" = ( +/obj/machinery/computer/bank_machine, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"hTv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"hTF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"hTK" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/syringe, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Infirmary"; + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"hTQ" = ( +/obj/machinery/computer/bookmanagement, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"hTY" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"hTZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"hUi" = ( +/turf/open/floor/wood, +/area/service/library) +"hUq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/botanist, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"hUK" = ( +/obj/item/radio{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/radio{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/radio, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/camera{ + c_tag = "Security Equipment Room"; + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"hVl" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/port/aft) +"hVG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"hVI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"hWd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"hWn" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"hWC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"hWZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"hXq" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"hXD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"hYb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/cargo/storage) +"hYd" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"hYj" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the RD's goons from the safety of his office."; + dir = 1; + name = "Research Monitor"; + network = list("rd") + }, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"hYC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Lockers"; + location = "Medical"; + name = "medical navigation beacon" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"hYT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/storage/firstaid/regular{ + pixel_y = -4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"hZO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"hZR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iaH" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/supply{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iaL" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iba" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"ibe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating/rust, +/area/security/prison) +"ibn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ibv" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ibJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"ica" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"ich" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"icj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"icn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/vault{ + name = "Vault"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ico" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ict" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"icF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/vending/chetverochka/pharma, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"icI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/seed_extractor, +/obj/machinery/camera{ + c_tag = "Apiary"; + dir = 4; + name = "chapel camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"icK" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"icM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "virology maintenance"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"icT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"icX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/chapel/office) +"idD" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"idN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"ieq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/command/gateway) +"ieu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"iez" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;37" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ieC" = ( +/obj/machinery/air_sensor/carbon_tank, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"ifo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/food_cart, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"ifu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/item/book{ + desc = "An undeniably handy book."; + icon_state = "bookknock"; + name = "A Simpleton's Guide to Safe-cracking with Stethoscopes" + }, +/obj/item/stack/spacecash/c500{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/spacecash/c1000, +/obj/item/gun/ballistic/automatic/pistol/deagle/gold, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"ifx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ifJ" = ( +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"ifO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ige" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"igh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder, +/obj/item/multitool, +/obj/item/pen/red, +/obj/machinery/airalarm/directional/north, +/obj/item/toy/figure/cargotech{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/toy/figure/miner{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"igk" = ( +/obj/structure/rack, +/obj/machinery/light/small/directional/south, +/obj/machinery/status_display/shuttle{ + pixel_y = -32 + }, +/obj/effect/spawner/random/techstorage/ai_all, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/storage/tech) +"igH" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/vending_refill/cigarette, +/obj/item/hand_labeler, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"igQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"igV" = ( +/obj/structure/closet/secure_closet/personal{ + name = "Commissary Locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"ihg" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"ihn" = ( +/obj/structure/grille, +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/security/prison) +"iho" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Plasma to Pure" + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Aft Tanks"; + dir = 1; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ihC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/exodrone_launcher, +/obj/item/exodrone, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iig" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating/rust, +/area/security/prison) +"iio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/main) +"iiU" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iji" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/west, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"ijE" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"ijV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ikv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ikz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel, +/area/commons/locker) +"ikV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"ill" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"ilo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/noticeboard/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ily" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Starboard Bow Solar"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ilE" = ( +/obj/structure/sign/warning/deathsposal, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"ilG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/box/donkpockets{ + pixel_y = 5 + }, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel/dark, +/area/security/main) +"imu" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"imD" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"imG" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"imQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"imV" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"ind" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ins" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"inL" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Pure to Fuel Pipe" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"inX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"inZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ioc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"iod" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance"; + req_one_access_txt = "31;48" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"iom" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"ioF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/departments/holy{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"ioN" = ( +/obj/item/radio/intercom/directional/east, +/turf/closed/wall, +/area/maintenance/disposal) +"ioT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"ioU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ips" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ipQ" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/rods/fifty, +/obj/item/storage/box/lights/mixed, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"iqu" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iqM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port Mix to East Ports" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iqS" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"ira" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"irz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/engineering{ + pixel_y = 5 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + desc = "Used to remotely activate devices. Allows for syncing when using a secure signaler on another. Slightly scooted."; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"irE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/station, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"irF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/bedsheetbin, +/obj/structure/table, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"isi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"ism" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ist" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Surgery Maintenance"; + req_access_txt = "45" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"isG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Chemistry West"; + dir = 4; + network = list("ss13","medbay") + }, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"isJ" = ( +/obj/machinery/door/airlock/engineering{ + name = "Emergency Storage" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ito" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"itH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"itL" = ( +/obj/structure/closet{ + name = "beekeeping supplies" + }, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"itQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"iuC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iuD" = ( +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iuQ" = ( +/obj/machinery/modular_computer/console/preset/cargochat/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"ivb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"ivj" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/security/prison/safe) +"ivp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"ivI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"iwg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/siding/yellow{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iwy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"iwD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"iwV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"iwW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/bookcase{ + name = "Forbidden Knowledge" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/library) +"ixf" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/box/red, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"ixs" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/effect/spawner/random/techstorage/medical_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"ixF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"ixU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"ixZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"iyc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"iyi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"iyz" = ( +/obj/effect/landmark/start/exploration, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"iyQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/loading_area, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iyV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/tank/internals/emergency_oxygen{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"izd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"izm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/west, +/obj/machinery/vending/wardrobe/det_wardrobe, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"izw" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"izy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"izS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/engineering/main) +"izW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iAd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Waste to Filter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iAk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"iAn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"iAG" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/chapel) +"iBa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"iBe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"iBB" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"iBD" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"iBR" = ( +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"iBX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/radio/intercom/directional/south, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/gun/ballistic/shotgun/doublebarrel{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"iCg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iCj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"iDw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"iDD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"iDK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"iEb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"iEm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"iEH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iEO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"iEW" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iFf" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 1"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/science/xenobiology) +"iFi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/cargo/qm) +"iFr" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/package_wrap, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters Toggle"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"iFu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"iFw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"iFL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"iFY" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"iGn" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/hyper, +/obj/item/stack/cable_coil, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"iGo" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shieldgen, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"iGz" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iGA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Evidence Closet"; + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"iGD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"iHp" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = 8 + }, +/obj/item/radio/intercom/directional/east{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = 8 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + layer = 4.1; + name = "Tertiary AI Core Access"; + obj_integrity = 300; + pixel_x = -3; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"iHu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iHI" = ( +/turf/closed/wall/rust, +/area/cargo/storage) +"iHO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/exploration_dock) +"iHR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"iIi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iII" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iIT" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"iJd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"iJe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"iJm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"iJp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"iJq" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/grass, +/area/medical/virology) +"iJF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"iJP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"iJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/chair/office, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"iKb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/meter/atmos/layer2{ + name = "gas flow meter" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iKf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"iKn" = ( +/turf/closed/wall/r_wall/rust, +/area/engineering/gravity_generator) +"iKo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"iLc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"iLk" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"iLo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"iMe" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iMg" = ( +/obj/effect/turf_decal/bot/left, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"iMj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/item/t_scanner, +/turf/open/floor/plating, +/area/cargo/warehouse) +"iME" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"iMV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/commons/locker) +"iNb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iNC" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"iNG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"iNK" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iNO" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("ordnance"); + pixel_x = 30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"iNS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"iOj" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/rd) +"iOu" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/watermelon, +/turf/open/floor/grass, +/area/security/prison) +"iPb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/door_assembly/door_assembly_eng{ + anchored = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"iPk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Apiary"; + req_one_access_txt = "22;35" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"iPo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"iPx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"iPQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor_2"; + name = "Justice Chamber"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/machinery/button/door/directional/north{ + id = "justicedoor_2"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + req_access_txt = "3"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"iPY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"iQk" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"iQm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/storage/backpack/duffelbag{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iQr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"iQO" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"iQR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"iQY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"iQZ" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"iRb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"iRg" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"iRt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"iRv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"iRD" = ( +/obj/machinery/computer/telecomms/server, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"iRY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"iRZ" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iSk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"iSz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Starboard Quarter Solar"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"iSA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"iSG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 8 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_y = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"iTb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/kitchenspike, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"iTh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"iTj" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/fore) +"iTp" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"iTC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"iTK" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iTW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"iUa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"iUd" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"iUi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/micro_laser{ + desc = "A tiny laser used in certain devices. A lil left."; + pixel_x = -6 + }, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/capacitor{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"iUr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"iUt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/controller, +/obj/machinery/light/directional/west, +/obj/item/compact_remote, +/obj/item/compact_remote, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"iUx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"iUF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/head/helmet/justice/escape{ + name = "justice helmet" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"iUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset{ + name = "plasmaperson emergency closet" + }, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/under/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/clothing/head/helmet/space/plasmaman, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"iVb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"iVw" = ( +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"iVS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"iWc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"iWH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"iWN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"iWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"iXv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/processor/slime, +/obj/machinery/button/door/directional/south{ + id = "xeno4"; + name = "Creature Cell 4 Toggle"; + pixel_x = 24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"iYc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/west, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/book/manual/wiki/tcomms, +/obj/item/radio, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"iYx" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"iYJ" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/box, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"iYL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm/directional/south, +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE"; + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"iYM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"iYQ" = ( +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"iYW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"iYZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/kirbyplants/potty, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"iZc" = ( +/obj/structure/chair/sofa{ + color = "#c45c57" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"iZr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"iZE" = ( +/obj/structure/window/reinforced, +/obj/item/food/grown/banana, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/science/genetics) +"iZU" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/gravity_generator) +"iZW" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"iZY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jan" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jaA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Shuttle Airlock" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"jaC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/rdconsole{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"jaD" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to External Air Ports" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jbj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"jbw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jbD" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/cyan, +/turf/closed/wall/r_wall/rust, +/area/maintenance/aft) +"jbR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/depsec/medical, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"jcx" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jcL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"jcM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"jcQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"jdg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"jdj" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"jdN" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jdX" = ( +/turf/closed/wall, +/area/medical/exam_room) +"jec" = ( +/obj/effect/turf_decal/stripes/box, +/obj/item/stack/rods/ten, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"jej" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 1; + id = "NTMSLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"jeE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"jeQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/package_wrap, +/obj/item/crowbar, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/electronics/airlock{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/electronics/airlock{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"jeS" = ( +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Unfiltered & Air to Mix" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"jfl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/button/door/directional/west{ + id = "Secure Storage"; + name = "Secure Storage Toggle"; + req_access_txt = "11" + }, +/turf/open/floor/engine, +/area/engineering/main) +"jft" = ( +/obj/effect/turf_decal/arrows, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jfE" = ( +/obj/machinery/vending/sustenance, +/turf/open/floor/plasteel/white, +/area/security/prison) +"jfH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"jfJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/security/detectives_office) +"jgr" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jgw" = ( +/obj/effect/decal/cleanable/chem_pile, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"jho" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jhu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"jhL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/west, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/clothing/under/color/grey, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jin" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/locker) +"jiA" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"jiV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/analyzer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/analyzer, +/obj/item/flashlight, +/obj/item/flashlight, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"jjj" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"jjR" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/item/restraints/handcuffs/cable/red, +/obj/item/clothing/suit/apron/surgical, +/obj/item/weldingtool/mini, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"jjS" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jkb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jkk" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"jkY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"jlg" = ( +/obj/structure/displaycase/trophy, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/poster/official/pda_ad{ + pixel_y = -32 + }, +/turf/open/floor/carpet/green, +/area/service/library) +"jlA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"jmf" = ( +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"jmh" = ( +/obj/structure/bookcase/random, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"jmm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"jmy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"jmS" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "chapel sorting disposal pipe"; + sortType = 17 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"jnz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jnE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/chaplain, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/chapel/office) +"jnT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"jnU" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"joj" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"jou" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"joA" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"joJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"joL" = ( +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"joR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"joU" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"jpb" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"jpf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jpm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor{ + id = "Secure Storage"; + name = "Secure Storage" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jpD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jpG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jpH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = null; + req_one_access_txt = "1;4"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"jpL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jqu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"jqv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jqD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"jrp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydronutrients, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"jrx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jrA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"jrK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Storage"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jrN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jsb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jsj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"jsk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate/engineering, +/obj/item/hand_tele, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"jsw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"jsI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/item/clipboard, +/obj/item/folder, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jsL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jts" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/engineering/main) +"jtJ" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/service/chapel) +"jtY" = ( +/turf/closed/wall/rust, +/area/medical/psychology) +"jtZ" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 2; + name = "virology sorting disposal pipe"; + sortType = 27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"jun" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"jux" = ( +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/camera{ + c_tag = "Chapel"; + dir = 4; + name = "chapel camera" + }, +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel) +"juQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"juR" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Laser Room Starboard"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"juT" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jvp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"jvE" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"jvV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jwd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera{ + c_tag = "Cryogenics"; + dir = 8; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/machinery/vending/medical, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"jwo" = ( +/obj/machinery/airalarm/directional/east, +/turf/open/floor/engine, +/area/science/xenobiology) +"jwJ" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "aftport"; + name = "Port Quarter Solar Control" + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"jwL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"jwZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/rack, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"jxm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"jyh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"jyp" = ( +/obj/structure/table/wood/fancy, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/flashlight/lantern, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"jyr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jyz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/box/pdas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/ids, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"jyL" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/commons/fitness/recreation) +"jzK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"jzQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jzS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jzU" = ( +/obj/structure/table, +/obj/item/storage/box/deputy, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/machinery/camera{ + c_tag = "Warden's Office"; + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"jzZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/sign/poster/official/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"jAe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jAp" = ( +/turf/open/space, +/area/space) +"jAE" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jAJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"jAW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/food/dough, +/obj/item/food/dough, +/obj/item/kitchen/rollingpin, +/obj/item/kitchen/rollingpin, +/obj/item/paper/crumpled{ + info = "Hey whoever designed this shithole didn't give us space to install the produce computer so it's in maintenance near the theatre."; + name = "hastily written note" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"jBp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"jBG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"jBT" = ( +/obj/machinery/light_switch/directional/east, +/obj/item/radio/intercom/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"jCj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"jCZ" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jDu" = ( +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = -5 + }, +/obj/item/tank/internals/emergency_oxygen/engi{ + pixel_x = 5 + }, +/obj/item/geiger_counter, +/obj/item/geiger_counter, +/obj/structure/table, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jDT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_input{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"jEo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Mix to Filter" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jEr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jEB" = ( +/obj/item/storage/fancy/donut_box, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"jFh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/chapel/office) +"jFI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"jFR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics"; + name = "hydroponics camera" + }, +/obj/machinery/light/directional/north, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"jGh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jGv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jGy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/landmark/blobstart, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"jGP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/security{ + pixel_y = 32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jHj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_output{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"jHu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera{ + c_tag = "Teleporter Access"; + dir = 4; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"jHA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"jId" = ( +/obj/structure/easel, +/obj/effect/turf_decal/bot, +/obj/item/airlock_painter, +/turf/open/floor/plasteel/dark, +/area/service/library) +"jIo" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"jIQ" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/wirecutters, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Recreation Arcade"; + name = "recreation camera" + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"jJh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"jJi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"jJt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"jJA" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"jJF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jJJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/red/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jJS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jKf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/teleporter) +"jKx" = ( +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"jLe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jLU" = ( +/obj/structure/table/wood, +/obj/machinery/newscaster/directional/east, +/obj/item/paper_bin{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"jMb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"jMf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/food/grown/corn{ + pixel_y = 6 + }, +/obj/item/food/grown/pumpkin{ + pixel_y = 6 + }, +/obj/item/food/grown/carrot, +/obj/item/food/grown/tomato, +/obj/machinery/door/window/eastleft{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/service/hydroponics) +"jMo" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/machinery/door/window/eastleft{ + name = "Engineering Desk"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"jMt" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"jMx" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/obj/machinery/camera{ + c_tag = "Chief Medical Officer's Office"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"jMz" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jMR" = ( +/turf/closed/wall, +/area/cargo/qm) +"jNa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"jNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jNq" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"jNB" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jNN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Drone Control"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"jOd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"jOe" = ( +/obj/machinery/power/solar{ + id = "aftport"; + name = "Aft-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/port/aft) +"jOf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"jOI" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"jOO" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"jOT" = ( +/turf/open/floor/plasteel, +/area/service/hydroponics) +"jPc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jPk" = ( +/obj/structure/table/glass, +/obj/item/storage/box/rxglasses{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/item/gun/syringe{ + pixel_y = 5 + }, +/obj/item/reagent_containers/spray/cleaner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/obj/item/stack/sheet/plastic/fifty, +/obj/item/gun/syringe{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"jPA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/chair/office, +/turf/open/floor/wood, +/area/service/library) +"jPF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jPN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"jPO" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"jQf" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - N2O"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"jQk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"jQo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"jQQ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/starboard) +"jQW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"jRb" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"jRd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jRt" = ( +/obj/structure/closet/radiation, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"jRu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"jRP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/frame/computer{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"jRQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/ore_silo, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"jSc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/requests_console/directional/east{ + department = "Robotics"; + departmentType = 2; + name = "Robotics Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"jSw" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"jSV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/cargo/warehouse) +"jSW" = ( +/obj/structure/table/wood, +/obj/effect/decal/cleanable/cobweb, +/obj/item/storage/secure/briefcase{ + pixel_y = 4 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/button/door/directional/north{ + id = "Cabin_4"; + name = "Cabin 4 Privacy Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/wood, +/area/commons/locker) +"jTh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"jTH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"jTJ" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/seeds/onion, +/obj/item/seeds/garlic, +/obj/item/seeds/potato, +/obj/item/seeds/tomato, +/obj/item/seeds/carrot, +/obj/item/seeds/grass, +/obj/item/seeds/ambrosia, +/obj/item/seeds/wheat, +/obj/item/seeds/pumpkin, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"jTL" = ( +/obj/structure/grille/broken, +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jTR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/tank/jetpack/carbondioxide{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/tank/jetpack/carbondioxide{ + pixel_y = 2 + }, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"jUv" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/service/chapel) +"jVg" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"jVm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"jWm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jWq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/toy/plush/pkplush{ + desc = "Give HUG-E a hug!"; + name = "TH3R4PY-X09" + }, +/obj/machinery/flasher/directional/north{ + id = "IsolationFlash" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"jWx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"jWU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"jWX" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/engineer{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"jXa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"jXf" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/camera_film{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/camera_film, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Library"; + dir = 8; + name = "bar camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"jXh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/newscaster/directional/south, +/obj/machinery/recharger, +/obj/machinery/camera{ + c_tag = "Engineering Security Post"; + dir = 1; + name = "engineering camera" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"jXi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"jXM" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/turf/open/space/basic, +/area/maintenance/disposal/incinerator) +"jXU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"jXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"jXY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"jYm" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/potato, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/grass, +/area/service/chapel) +"jYU" = ( +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"jZh" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"jZl" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"jZo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Ordnance Lab Storage"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"jZA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/door/airlock/research{ + glass = 1; + name = "Slime Euthanization Chamber"; + opacity = 0; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"jZE" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_input, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"jZF" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"jZU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"kbd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kbf" = ( +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"kbi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kbq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/qm) +"kbu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"kbw" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = null; + req_one_access_txt = "12;22;25;26;28;35;37;38;46;70" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"kbG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"kbZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kcq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/locker) +"kcG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kcR" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/fireaxecabinet/directional/south, +/obj/machinery/door/window/northright{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kdd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"kdn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kdG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Recreation Area" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"kdP" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"keb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/northright{ + name = "Hydroponics Lockers"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"kec" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/storage/tech) +"ken" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"keq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"key" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"keH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/power/shieldwallgen, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"keP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/wrench, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"keT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"keV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/gps{ + gpstag = "TP0" + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"kfj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/aft) +"kfm" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kfu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/door_assembly/door_assembly_min{ + anchored = 1 + }, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"kfE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/obj/structure/plaque/static_plaque/golden{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"kfF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kfK" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kga" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kgn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kgs" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/keycard_auth/directional/north{ + pixel_x = -6 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = 12 + }, +/obj/item/radio/intercom/directional/east, +/mob/living/simple_animal/parrot/poly, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"kgu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"kho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"khw" = ( +/obj/machinery/gravity_generator/main, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"kig" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"kik" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Medbay Security Post"; + req_access_txt = "63" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"kiu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kiH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"kiK" = ( +/obj/machinery/computer/monitor{ + dir = 4; + name = "Bridge Power Monitoring Console" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kiM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/plasma_output, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"kiT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"kje" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kjn" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kjy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kjI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"kjL" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kjN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/deathsposal{ + layer = 4 + }, +/turf/open/floor/plating, +/area/medical/virology) +"kkf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "maidbay"; + name = "Maid Bay Toggle" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"kki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kkp" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"kkr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"kkt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"kkD" = ( +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel, +/area/security/brig) +"kkI" = ( +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + dir = 4; + name = "old sink"; + pixel_x = -12 + }, +/turf/open/floor/plating, +/area/security/prison) +"kkL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kkY" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"klb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"kli" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "8" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"klu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"kly" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access"; + req_one_access_txt = "19;23" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"klG" = ( +/turf/closed/wall, +/area/service/bar/atrium) +"kmj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + name = "dormitories sorting disposal pipe"; + sortType = 26 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kmC" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/belt/utility, +/obj/item/weldingtool/largetank, +/obj/item/clothing/head/welding, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"kmK" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt" + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"knq" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "greydet"; + name = "trenchcoat" + }, +/obj/item/clothing/suit/jacket{ + desc = "All the class of a trenchcoat without the security fibers."; + icon_state = "detective"; + name = "trenchcoat" + }, +/obj/item/clothing/head/fedora, +/obj/item/clothing/head/fedora{ + icon_state = "detective" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"knN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 30 + }, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"knR" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - O2"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"kot" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kpd" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"kpf" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"kpg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/head/welding, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"kpm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"kpt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"kpw" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/engineering/atmos) +"kpE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kpJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"kpP" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kqL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"kqR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison) +"krd" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"krv" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"krA" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/closet, +/obj/item/stack/package_wrap, +/obj/item/storage/bag/trash, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"krL" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"ksb" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"ksw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + aiControlDisabled = 1; + id_tag = "justicedoor"; + name = "Justice Chamber"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable, +/obj/machinery/button/door/directional/west{ + id = "justicedoor"; + name = "Justice Door Lock"; + normaldoorcontrol = 1; + req_access_txt = "3"; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ksx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ksR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"ksT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ktj" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ktk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Port to Filter" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ktq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"ktG" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ktX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/locker) +"kuu" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/cargo/warehouse) +"kuv" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"kuw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"kux" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"kuz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"kuB" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"kuI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Central Hallway Personnel Queue"; + dir = 1; + name = "central camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"kuL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/supply/visible{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kuW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/xeno_mining{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Port Quarter Solar"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/landmark/xeno_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"kuZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kvc" = ( +/obj/item/radio/intercom/directional/north, +/turf/open/floor/engine, +/area/science/xenobiology) +"kvx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"kvy" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"kvI" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard/directional/west, +/obj/item/clothing/gloves/color/latex, +/obj/item/hemostat, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"kvO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kwv" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/suit_storage_unit/engine, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kwO" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/storage/box/monkeycubes, +/obj/item/reagent_containers/syringe/antiviral, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/reagent_dispensers/virusfood/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"kwT" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/atmos) +"kxi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/bridge_pipe/supply/hidden, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"kxy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/library) +"kxF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/canister_frame/machine/unfinished_frame, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"kxY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"kyk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kym" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"kyv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"kyx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Checkpoint"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kyz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/directional/south, +/turf/open/floor/engine, +/area/engineering/main) +"kyC" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kyD" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp/hos, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"kyH" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kyS" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/tcommsat/computer) +"kyT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway Firelock"; + dir = 4; + name = "port camera" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"kzk" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"kzO" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"kzS" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/white, +/area/security/prison) +"kzU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"kzW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/bag/trash, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"kAn" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/security/prison) +"kAC" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"kAF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"kAX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"kBa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kBH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"kBU" = ( +/obj/machinery/light_switch/directional/south, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"kCc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kCl" = ( +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = 6 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/turf/open/floor/plasteel, +/area/commons/locker) +"kCt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"kCA" = ( +/obj/effect/turf_decal/box/white{ + color = "#52B4E9" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"kCW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/turf/open/floor/engine, +/area/engineering/main) +"kDm" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/drugs, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"kDn" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kDo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"kDq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"kDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"kDD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"kEg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 2 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"kEu" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"kFe" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"kFf" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"kFu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"kFz" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/south, +/obj/machinery/camera{ + c_tag = "Recovery Room"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"kFE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kFL" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"kFW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/warden) +"kGa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_1Privacy"; + name = "Unit 1 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kGg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kGl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Gas to Chamber" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/supermatter) +"kGr" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"kGR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"kGS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"kGY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"kHx" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/east, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"kHJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/ai_slipper{ + uses = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"kHY" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/drinks/bottle/orangejuice{ + desc = "An emerald flask, from the Keeper's soul. High in vitamins!"; + name = "estus flask"; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"kIn" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/reagent_containers/glass/bowl, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/kitchen/fork/plastic, +/obj/item/storage/box/drinkingglasses, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/spoon/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/kitchen/knife/plastic, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/bag/tray/cafeteria, +/obj/item/storage/box/drinkingglasses, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"kIo" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"kIr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/crate/freezer/surplus_limbs, +/turf/open/floor/plasteel/dark, +/area/medical/exam_room) +"kIs" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/help_others{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"kII" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"kIU" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/hydroponics) +"kIW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"kJD" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"kJM" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/stamp{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Cargo Office"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"kKk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kKu" = ( +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kKw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/wrench, +/obj/item/crowbar, +/obj/item/analyzer, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"kKR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"kLe" = ( +/obj/structure/table/wood, +/obj/machinery/computer/bookmanagement{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/noticeboard/directional/west, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"kLm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/grass, +/area/service/chapel) +"kLn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/games, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"kLr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"kLy" = ( +/obj/structure/flora/ausbushes/palebush{ + icon_state = "fernybush_3" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"kLB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/engine, +/area/engineering/main) +"kLI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/book/manual/wiki/barman_recipes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/requests_console/directional/east{ + department = "Bar"; + departmentType = 2; + name = "Bar Requests Console"; + receive_ore_updates = 1 + }, +/obj/machinery/button/door/directional/north{ + id = "bar_1"; + name = "Bar Shutters Toggle"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kLL" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kMH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"kNl" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/simple/supply/hidden{ + dir = 10 + }, +/turf/closed/wall/rust, +/area/maintenance/disposal/incinerator) +"kNx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/engine, +/area/engineering/main) +"kNA" = ( +/obj/machinery/computer/cargo{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"kNH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"kNN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"kNZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"kOu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"kOw" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/food/sausage, +/turf/open/floor/plasteel/white, +/area/security/prison) +"kOH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"kOP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"kPg" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"kPB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"kPC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"kPG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library) +"kPV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"kPX" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"kQf" = ( +/turf/closed/wall, +/area/engineering/storage/backup) +"kQp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fireaxecabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Atmospherics Scrubbers"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"kQw" = ( +/turf/open/floor/wood, +/area/service/bar) +"kQx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + name = "Trash Chute"; + req_one_access_txt = "26" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 4; + id = "garbage"; + name = "trash chute" + }, +/obj/effect/turf_decal/loading_area, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/janitor) +"kQU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"kRb" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/command/bridge) +"kRc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"kRu" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"kRv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kRE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kRH" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plating, +/area/security/prison) +"kRX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"kSb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"kSi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"kSk" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kSl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"kTl" = ( +/obj/machinery/power/port_gen/pacman, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kTq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva) +"kTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"kTz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/chemist, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"kTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/carpet/green, +/area/service/bar) +"kUs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"kUK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock/command{ + name = "Transit Access"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kUM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Locker Room"; + name = "recreation camera" + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/commons/locker) +"kUP" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/matches{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"kVj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"kVo" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/window/plasma/reinforced/spawner/east, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/supermatter) +"kVv" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kVN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"kVS" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"kVW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kWc" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/medical, +/obj/item/computer_disk/chemistry, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"kWQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_input{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"kWT" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"kWU" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/mineral/ore_redemption{ + dir = 8; + input_dir = 4; + output_dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/office) +"kXq" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"kXs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kXA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"kXB" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"kYi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"kYL" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/caution, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/obj/machinery/camera{ + c_tag = "Crematorium"; + dir = 1; + name = "chapel camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"kYM" = ( +/obj/machinery/pdapainter, +/obj/structure/sign/poster/official/ian{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"kYX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/turf/open/floor/plating, +/area/cargo/warehouse) +"kZp" = ( +/obj/machinery/light/directional/north, +/obj/structure/table/wood, +/obj/machinery/computer/libraryconsole{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"kZq" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"kZv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"kZA" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/carpet/green, +/area/service/bar) +"kZM" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"laA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"laN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"laT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/button/door/directional/south{ + id = "prisonblast"; + name = "Prison Lockdown"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"lbb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"lbi" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/cargo/storage) +"lbl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lbF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"lbJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining/glass{ + name = "Exploration Dock"; + req_access_txt = "49" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"lbY" = ( +/obj/structure/cable, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating, +/area/maintenance/port) +"lcM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ldD" = ( +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/warehouse) +"ldP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"lea" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"leq" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/qm) +"ley" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"leY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"lfm" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = 11; + pixel_y = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/window/southright{ + name = "Trash Chute"; + req_one_access_txt = "26" + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/janitor) +"lfG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"lfM" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/box, +/obj/machinery/mecha_part_fabricator/engi, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lgc" = ( +/obj/machinery/door/window/westleft{ + name = "Waste Door" + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "garbage"; + name = "disposal conveyor" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"lgq" = ( +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/science/xenobiology) +"lgH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"lgZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"lhe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"lhh" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57"; + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"lhj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"lhH" = ( +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"lib" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"lih" = ( +/turf/closed/wall/r_wall, +/area/command/teleporter) +"liA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"liP" = ( +/obj/machinery/door/airlock/mining{ + name = "Auxiliary Base"; + req_one_access_txt = "32;47;48" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"liS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"liW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4; + pixel_x = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ljj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"ljH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ljK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 9 + }, +/obj/effect/landmark/start/depsec/supply, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ljM" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch/directional/north{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"ljS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"ljT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"lkk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + name = "medbay maintenance"; + req_access_txt = "5" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"lkx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"llp" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"llt" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"llv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"llz" = ( +/obj/machinery/suit_storage_unit/engine, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"llN" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"llT" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"llU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"lmF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/red{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"lmH" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lmK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"lmP" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/locker) +"lnA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"lnH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"lnS" = ( +/obj/structure/closet/secure_closet/hos, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"lnV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"lnZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"los" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on/coldroom, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"lov" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"loB" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/wrench/medical, +/obj/item/toy/figure/cmo, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"loE" = ( +/obj/machinery/computer/security/mining{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"loX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"lpg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lpk" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"lpp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/crowbar{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/machinery/light/directional/east, +/obj/item/roller{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/roller, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"lpH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"lpO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"lpT" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard/fore) +"lpU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"lpY" = ( +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plastic, +/area/security/prison) +"lqm" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"lqs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/food/salt{ + desc = "A sizable pile of concentrated salt left behind by the previous occupant." + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"lqA" = ( +/obj/structure/table_frame, +/turf/open/floor/plating, +/area/cargo/warehouse) +"lrD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/mirror/directional/north, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/glasses/eyepatch{ + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"lrG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lrL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + desc = "After his promotion, he was transferred to Kilo Station to serve as the gateway's protector."; + icon_state = "plant-21"; + name = "rodger" + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/command/gateway) +"lrS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"lsp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"lsu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/labor, +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"lsw" = ( +/turf/closed/wall, +/area/engineering/gravity_generator) +"lsT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ltg" = ( +/turf/closed/wall/r_wall, +/area/security/brig/upper) +"ltB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"ltR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/rnd/bepis, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"lum" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/storage/box/evidence{ + pixel_y = 4 + }, +/obj/item/taperecorder{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/grenade/flashbang, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"lur" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Mix to Engine" + }, +/turf/open/floor/engine, +/area/engineering/main) +"luw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/cargo/storage) +"luB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Atrium Vendors"; + dir = 8; + name = "diner camera" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"luW" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/bar) +"lve" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/spawner/xmastree/rdrod, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"lvo" = ( +/obj/machinery/vending/cola/red, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"lvu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"lvU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating, +/area/cargo/warehouse) +"lvV" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/structure/disposalpipe/junction/flip, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"lvY" = ( +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"lwa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"lwv" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/holodeck{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"lwE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"lxf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"lxl" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lxq" = ( +/obj/machinery/computer/exodrone_control_console{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"lxB" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"lxO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lxQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/camera, +/obj/item/pen{ + pixel_x = -7; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"lxS" = ( +/turf/open/floor/plating, +/area/cargo/warehouse) +"lyF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lyG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lyT" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lzj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Science"; + location = "Cargo"; + name = "cargo navigation beacon" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lzk" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/button/door/directional/south{ + id = "robotics_shutters"; + name = "Robotics Shutter Toggle"; + pixel_x = 24; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"lzo" = ( +/obj/machinery/door/poddoor{ + id = "trash"; + name = "disposal bay door" + }, +/obj/structure/fans/tiny, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"lAf" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/hunter, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"lAy" = ( +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"lAJ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"lBj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"lBn" = ( +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/structure/table, +/obj/item/toy/figure/qm, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"lBw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"lBG" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/cargo/warehouse) +"lBX" = ( +/obj/structure/cable, +/turf/open/floor/plating/rust, +/area/security/prison) +"lCl" = ( +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"lCr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lCS" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"lCZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/airalarm/directional/north, +/obj/effect/mapping_helpers/airalarm/engine_access, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lDK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"lDM" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"lDT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"lDV" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Satellite Atmospherics"; + dir = 8; + name = "satellite camera"; + network = list("minisat") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"lEF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/bag/tray, +/obj/item/food/sausage, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"lEG" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"lEI" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lEK" = ( +/obj/machinery/bluespace_beacon, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"lFh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to Mix" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"lFt" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"lGd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Supermatter Engine"; + dir = 1; + name = "supermatter camera"; + network = list("engine") + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lGe" = ( +/obj/machinery/power/supermatter_crystal/engine, +/turf/open/floor/engine, +/area/engineering/supermatter) +"lGj" = ( +/obj/structure/flora/junglebush/b, +/obj/machinery/airalarm/directional/east, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"lGk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lGn" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/microwave, +/turf/open/floor/plasteel/white, +/area/security/prison) +"lGH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 8 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 4 + }, +/obj/item/toy/plush/plasmamanplushie{ + name = "Lithium II" + }, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"lGO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"lGV" = ( +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"lHc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"lHr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"lHG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrogen_input{ + dir = 4 + }, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"lHK" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/bombcloset, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"lIe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lIv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"lIw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"lIQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lIY" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lJw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lJH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"lJQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"lKt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"lKu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hos) +"lKR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lLf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"lLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"lLS" = ( +/obj/machinery/light/small/directional/south, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"lLY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"lMR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"lNt" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/gloves/color/yellow, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/head/hardhat/orange{ + name = "protective hat"; + pixel_y = 6 + }, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/item/clothing/glasses/meson/engine, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"lNB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"lNT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "External Waste Ports to Filter" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"lOa" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/lawoffice) +"lOh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"lOr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"lOL" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/ce{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/west{ + id = "atmos"; + name = "Atmospherics Lockdown"; + pixel_y = 6; + req_access_txt = "24" + }, +/obj/machinery/button/door/directional/west{ + id = "Engineering"; + name = "Engineering Lockdown"; + pixel_y = -6; + req_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"lPu" = ( +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/camera{ + c_tag = "Captain's Office"; + name = "command camera" + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"lPE" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"lPU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lPX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"lQg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lQl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel, +/area/command/gateway) +"lQG" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;101" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"lQT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"lRf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/obj/machinery/light, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"lRx" = ( +/obj/structure/table, +/obj/machinery/cell_charger{ + pixel_y = 5 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/item/stock_parts/cell/high{ + pixel_x = 8; + pixel_y = -2 + }, +/obj/item/stock_parts/cell/high{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"lRG" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"lSd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + id_tag = "outerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"lSf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/paramedic, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"lSk" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/command/gateway) +"lSn" = ( +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"lSB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lSH" = ( +/turf/closed/wall/rust, +/area/commons/toilet/restrooms) +"lSR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"lSW" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"lTc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/item/pickaxe, +/obj/item/shovel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"lTp" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/east, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Quartermaster's Desk"; + departmentType = 2; + name = "Quartermaster's Requests Console" + }, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"lTs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"lTM" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"lTS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"lTW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"lUc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"lUB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/meat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"lUN" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"lUO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"lUP" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/cargo/storage) +"lUX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"lVq" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"lVx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"lVA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"lWh" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"lWu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"lWx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"lWY" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too."; + health = 45; + maxHealth = 45; + name = "Officer Beepsky" + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"lXd" = ( +/obj/structure/table, +/obj/item/stack/cable_coil/five, +/turf/open/floor/plating, +/area/cargo/warehouse) +"lXn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_y = 5 + }, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"lXq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/service/library) +"lXt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"lXv" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"lXC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"lXQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_y = 6; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"lYd" = ( +/obj/effect/turf_decal/box/white, +/obj/effect/turf_decal/arrows/white{ + color = "#0000FF"; + pixel_y = 15 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"lYi" = ( +/obj/machinery/door/poddoor/shutters{ + id = "evashutter"; + name = "E.V.A. Storage Shutter" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"lYm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"lYs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"lYu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"lYE" = ( +/obj/machinery/space_heater, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"lYT" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"lZB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"lZI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"lZL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"lZY" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/figure/secofficer, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"lZZ" = ( +/obj/structure/noticeboard/directional/north, +/obj/item/kirbyplants{ + icon_state = "plant-17"; + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"maN" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"maU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/mmi, +/obj/item/bodypart/chest/robot{ + pixel_y = 4 + }, +/obj/item/bodypart/r_leg/robot{ + pixel_x = 6 + }, +/obj/item/bodypart/r_arm/robot{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/bodypart/l_leg/robot{ + pixel_x = -6 + }, +/obj/item/bodypart/l_arm/robot{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/bodypart/head/robot, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"mbo" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/blood, +/obj/item/reagent_containers/blood{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/reagent_containers/blood/a_minus, +/obj/item/reagent_containers/blood/b_minus{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/blood/b_plus{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/reagent_containers/blood/o_minus, +/obj/item/reagent_containers/blood/o_plus{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/item/reagent_containers/blood/random, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"mbO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mailroom"; + req_access_txt = "50" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"mbU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/pen, +/obj/item/flashlight/pen, +/obj/item/reagent_containers/syringe, +/obj/item/reagent_containers/dropper, +/obj/item/storage/box/rxglasses{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/bodybags, +/obj/machinery/requests_console/directional/north{ + department = "Genetics"; + name = "Genetics Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"mch" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"mcx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/contraband/random{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mdR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mfe" = ( +/obj/machinery/door/airlock/external{ + name = "Solar Maintenance"; + req_access_txt = "10; 13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"mfi" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"mfl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"mfz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mfD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"mfS" = ( +/obj/machinery/power/shieldwallgen/xenobiologyaccess, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/box, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/science/xenobiology) +"mfT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"mfV" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"mfY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/meter/atmos/layer2{ + name = "gas flow meter" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mgL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"mha" = ( +/obj/machinery/porta_turret/ai, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/box/red, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/aisat_interior) +"mhH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mhK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"mhU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"mij" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mio" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard/directional/east, +/obj/item/wallframe/apc, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"miC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"miO" = ( +/obj/structure/sign/departments/restroom, +/turf/closed/wall, +/area/commons/locker) +"mjr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/circuitboard/aicore{ + pixel_y = 5 + }, +/obj/item/hand_labeler, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/obj/item/pai_card{ + pixel_x = 6 + }, +/obj/item/aicard, +/obj/item/taperecorder{ + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"mjM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/closet/crate/bin, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mkz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mkA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"mkB" = ( +/obj/structure/grille/broken, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/button/door/directional/east{ + id = "coldroom"; + name = "Coldroom Shutter Toggle"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"mkR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security/glass{ + id_tag = "Abandoned Cell"; + name = "Abandoned Cell" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"mkS" = ( +/obj/structure/sign/departments/security{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"mkY" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/port/fore) +"mld" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cyborg, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"mlj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mll" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mlm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/autodrobe/all_access, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"mlu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/noticeboard/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"mlE" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mlF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mlI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"mmf" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"mmt" = ( +/obj/machinery/conveyor{ + id = "NTMSLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"mmw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"mmA" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 2" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"mmM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plating, +/area/cargo/warehouse) +"mmP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "emmd"; + name = "Medical Lockdown Toggle" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"mnc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mnt" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/command/bridge) +"mnv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "engineering sorting disposal pipe"; + sortType = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mnA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mok" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/cargo/warehouse) +"moD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"moH" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"moM" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/structure/displaycase/forsale, +/turf/open/floor/plating, +/area/service/kitchen) +"moO" = ( +/obj/machinery/door/window/northright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/service/library) +"mpm" = ( +/obj/structure/sign/poster/contraband/random, +/turf/closed/wall/rust, +/area/engineering/storage/backup) +"mpx" = ( +/turf/closed/wall, +/area/engineering/main) +"mpG" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"mpM" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"mpY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mqu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"mqF" = ( +/obj/effect/turf_decal/arrows/red{ + dir = 4; + pixel_x = -15 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mqV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"mra" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/dinnerware, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/requests_console/directional/west{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"mrr" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"mrF" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Air"; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"mrN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/command/gateway) +"mrO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Central Hallway Teleporter Access"; + name = "central camera" + }, +/obj/machinery/button/door/directional/north{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"msc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"msd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"mse" = ( +/obj/machinery/light_switch/directional/west, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"msw" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"msx" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"msA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"msI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"msW" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"mtp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/maintenance/port) +"mtw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/item/crowbar/red, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mtA" = ( +/obj/machinery/porta_turret/ai{ + dir = 4 + }, +/obj/effect/turf_decal/box/red, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"mtP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mtR" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/package_wrap, +/obj/item/storage/secure/briefcase, +/obj/item/hand_labeler, +/obj/item/reagent_containers/spray/cleaner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"mua" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo, +/obj/machinery/requests_console/directional/north{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo Bay Requests Console" + }, +/obj/item/radio/intercom/directional/north{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"muA" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"muD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"muE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"muH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/service/library) +"muT" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mvi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"mvk" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"mwc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"mwd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"mwh" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"mwi" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"mwM" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mwW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/assistant{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/east{ + id = "commissaryshutter"; + name = "Commissary Shutter Toggle"; + pixel_y = 6 + }, +/obj/machinery/button/door/directional/east{ + id = "commissarydoor"; + name = "Commissary Door Lock"; + normaldoorcontrol = 1; + pixel_y = -6; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"mwZ" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"mxD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"mxG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/break_room) +"myb" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/toolbox/electrical, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"myo" = ( +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"myp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/siding/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"myD" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/plastic/five, +/turf/open/floor/plating, +/area/cargo/warehouse) +"myP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/blue/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"myQ" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"myU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Gravity Generator"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"myY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"myZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/service/chapel/office) +"mzi" = ( +/obj/effect/turf_decal/loading_area, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "Queue Shutters" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"mzt" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "grassb2" + }, +/obj/structure/flora/ausbushes/palebush{ + icon_state = "brflowers_3" + }, +/obj/structure/flora/ausbushes/palebush{ + icon_state = "fernybush_1" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"mzw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible, +/turf/closed/wall, +/area/engineering/atmos) +"mzF" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_1"; + name = "Unit 1" + }, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"mzP" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"mzU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/healthanalyzer, +/obj/item/hand_labeler, +/obj/item/storage/secure/safe/caps_spare{ + pixel_x = 5; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mzV" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"mAa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"mAj" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"mAl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"mAn" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 8 + }, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/wood, +/area/cargo/warehouse) +"mAz" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Arrivals Drydock Canisters"; + dir = 1; + name = "shuttle camera" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"mAE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"mAI" = ( +/obj/machinery/door/airlock{ + name = "Cleaning Closet" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison/safe) +"mAW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Storage"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"mBn" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mBt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mBN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"mBV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/surgery, +/obj/item/razor, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"mCh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/pai_card{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"mCS" = ( +/obj/effect/turf_decal/stripes/end, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mCW" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mDG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"mDO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/circular_saw, +/obj/item/surgicaldrill{ + pixel_y = 5 + }, +/obj/item/healthanalyzer, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"mEr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mEy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"mEU" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"mFz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/button/door/directional/west{ + id = "coldroom"; + name = "Coldroom Shutter Toggle"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"mFC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"mFX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"mGg" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"mGw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"mGx" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/machinery/flasher/directional/north{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_x = 26 + }, +/obj/machinery/camera{ + c_tag = "AI Chamber Core"; + dir = 1; + name = "core camera"; + network = list("aicore") + }, +/obj/machinery/light/floor, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"mGE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"mGQ" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/rust, +/area/maintenance/port) +"mGR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"mGX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/spider/stickyweb, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"mHd" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"mHg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mHi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"mHk" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/air_tank{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"mHn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"mHq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"mHQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Armoury"; + req_access_txt = "58" + }, +/obj/machinery/door/poddoor/shutters{ + id = "frontarmory"; + name = "Front Armoury Shutter" + }, +/obj/machinery/button/door/directional/north{ + id = "frontarmory"; + name = "Armoury Shutter Toggle"; + req_access_txt = "58" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"mHW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/open/floor/plating, +/area/cargo/warehouse) +"mIa" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 4; + name = "service camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"mId" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mIs" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"mIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"mIK" = ( +/obj/structure/table, +/obj/structure/cable, +/obj/item/food/spiderleg, +/turf/open/floor/plasteel/white, +/area/security/prison) +"mIX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/mob/living/simple_animal/bot/secbot/pingsky, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"mJz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"mJE" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/scientist, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/firealarm/directional/north, +/obj/item/extinguisher, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Room" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"mJM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mJV" = ( +/obj/machinery/power/smes{ + charge = 5e+006 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/structure/cable, +/turf/open/floor/circuit/red/telecomms, +/area/tcommsat/server) +"mKE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mLa" = ( +/obj/structure/extinguisher_cabinet/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mLc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mLf" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Security"; + name = "navigation beacon (Security Delivery)" + }, +/obj/machinery/door/window/northright{ + name = "Security Delivery Access"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "briggateteh"; + name = "security blast door" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"mLl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"mLo" = ( +/obj/machinery/hydroponics/soil, +/obj/item/shovel/spade, +/obj/item/cultivator{ + pixel_x = 9 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/grass, +/area/security/prison) +"mLF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"mLZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mMe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"mMV" = ( +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"mNe" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"mNf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"mNi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"mNx" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mNy" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/plaque/static_plaque/golden/captain{ + pixel_y = -32 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"mNE" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/obj/effect/spawner/random/techstorage/service_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"mNL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"mNY" = ( +/turf/closed/wall, +/area/commons/vacant_room/commissary) +"mOh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"mOB" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/poppy, +/turf/open/floor/grass, +/area/service/chapel) +"mOD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"mPm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 4; + name = "diner camera" + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"mPo" = ( +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/mineral/plasma{ + amount = 5 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"mPs" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"mPB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"mPG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"mPH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mPI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mQc" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/yellow, +/obj/item/flashlight, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/cargo/office) +"mQh" = ( +/obj/structure/table, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = -13; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner/skirt{ + pixel_x = 9; + pixel_y = 5 + }, +/obj/item/clothing/under/rank/prisoner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"mQv" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/aft) +"mQM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering"; + req_access_txt = "10" + }, +/obj/effect/turf_decal/siding/yellow/corner, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mQS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"mQV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/dead_body_placer, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"mRa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"mRh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"mRi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"mRu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/structure/closet/crate/freezer{ + name = "organ storage" + }, +/obj/item/organ/tail/cat, +/obj/item/organ/tail/cat, +/obj/item/organ/ears/cat, +/obj/item/organ/ears/cat, +/obj/item/organ/heart, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"mRD" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/wood, +/area/service/bar) +"mRK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"mRL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"mSv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"mSA" = ( +/turf/closed/wall, +/area/lawoffice) +"mSI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"mSK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom{ + dir = 8; + freerange = 1; + name = "Station Intercom (Command)"; + pixel_x = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"mTb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/engineering/main) +"mTf" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Gateway"; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"mTD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"mTI" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"mTS" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/obj/item/fuel_pellet, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"mTW" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/box/corners, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mTX" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/securearea{ + pixel_x = 32 + }, +/obj/effect/spawner/random/techstorage/rnd_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"mUC" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"mUI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel" + }, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"mUS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/item/kirbyplants, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/courtroom) +"mUT" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"mVC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"mVT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/north, +/obj/structure/closet/secure_closet/personal/patient, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"mVX" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"mWo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"mWr" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mWt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "HoP sorting disposal pipe"; + sortType = 15 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"mWF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/bed/dogbed/cayenne{ + name = "Lia's bed" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/mob/living/simple_animal/hostile/carp/lia, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"mWJ" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"mWM" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/cargo/warehouse) +"mWQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"mXn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/glass, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"mXt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box/corners, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"mXv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/teleport/hub, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"mXB" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"mYk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"mYN" = ( +/obj/machinery/atmospherics/pipe/smart/simple/brown/visible{ + dir = 8 + }, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"mZc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/poster/official/space_cops{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"mZB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"mZC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"mZT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/closed/wall/rust, +/area/space/nearstation) +"mZV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"naT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"nbd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"ncr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/main) +"ncv" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ncR" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"ncT" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"ndg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ndn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"ndE" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/tower, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/service/chapel) +"nev" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ney" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nez" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Shower_1Privacy"; + name = "Shower 1 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/commons/toilet/restrooms) +"nfn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/captains, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"nfu" = ( +/obj/structure/table, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/quikdeploy/cade/plasteel{ + pixel_x = 6; + pixel_y = 1; + layer = 3.01 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"nfw" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nfI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Distro" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"ngn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ngt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"ngy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"ngz" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ngG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/hydroponics, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/crowbar/red, +/obj/item/cultivator, +/obj/item/wirecutters, +/obj/item/reagent_containers/glass/bucket, +/obj/item/circuitboard/machine/biogenerator, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"ngH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Office"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"nhd" = ( +/obj/machinery/flasher/directional/north{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai) +"nhj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"nhB" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nhS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"nhV" = ( +/obj/structure/holohoop{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"niM" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall/rust, +/area/maintenance/fore) +"njj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"njm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"njs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"nju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"njw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"njW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"nkn" = ( +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nlh" = ( +/obj/structure/frame/machine, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nlo" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nlU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"nlV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nmo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"nmp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"nnN" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nnU" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/directional/west, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"nod" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/main) +"nof" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/meter, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"nom" = ( +/obj/effect/mapping_helpers/iannewyear, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"noq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/processing) +"noC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/cargo/warehouse) +"noM" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"noN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Lockdown Toggle"; + pixel_x = 6; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "transittube"; + name = "Transit Tube Lockdown Toggle"; + pixel_x = 6; + pixel_y = -2; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + pixel_x = -6; + pixel_y = 8; + req_access_txt = "19" + }, +/obj/machinery/button/door{ + id = "evashutter"; + name = "E.V.A. Storage Shutter Toggle"; + pixel_x = -6; + pixel_y = -2; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"noY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"npd" = ( +/obj/machinery/power/compressor{ + comp_id = "incineratorturbine"; + dir = 8; + luminosity = 2 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Turbine Chamber"; + dir = 1; + network = list("turbine") + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"npH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"nqj" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/brflowers, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/grass, +/area/medical/psychology) +"nqr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Teleporter Access"; + req_one_access_txt = "17;19" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"nqA" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/curator, +/turf/open/floor/carpet/green, +/area/service/library) +"nqY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"nrB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nrI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nrY" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/law{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"nsn" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/clothing/mask/gas/sechailer/swat, +/obj/item/screwdriver, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"nsr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/directional/north, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"nsR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/layer_manifold/supply, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nto" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ntr" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"ntS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ntU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"nuc" = ( +/turf/closed/wall/r_wall/rust, +/area/engineering/storage/tech) +"nvc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Medbay Lobby"; + dir = 4; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"nvo" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"nvS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"nwa" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nwk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"nwx" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/library) +"nwC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"nxT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"nxZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"nyd" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"nyh" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"nyI" = ( +/obj/machinery/door/airlock/engineering{ + name = "Port Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/port/aft) +"nyP" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northright{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. This one is blue."; + helmet_type = /obj/item/clothing/head/helmet/space/syndicate/blue; + suit_type = /obj/item/clothing/suit/space/syndicate/blue + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nyV" = ( +/obj/item/kirbyplants, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"nzj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Brig Shuttle Airlock"; + req_one_access_txt = "63" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"nzm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"nzp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"nzu" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/item/clothing/suit/hooded/wintercoat/miner, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"nzw" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/extinguisher/mini, +/obj/item/tank/internals/oxygen/yellow, +/obj/item/clothing/mask/gas, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"nzQ" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 1" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"nAe" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"nAW" = ( +/obj/structure/bookcase/random, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"nAY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nBk" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Research Division" + }, +/obj/machinery/door/window/westleft{ + dir = 2; + name = "Research Division Delivery Access"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"nBl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"nBm" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solars/port/fore) +"nBC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nBJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/obj/machinery/light/directional/north, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light_switch/directional/north{ + pixel_x = 8 + }, +/obj/machinery/button/door/directional/north{ + pixel_x = -8 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"nCo" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"nCs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/south{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel" + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"nCO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"nCW" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"nDe" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"nDy" = ( +/obj/effect/turf_decal/bot/left, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"nDz" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/sign/warning/electricshock{ + pixel_x = 32 + }, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/engineering/main) +"nDE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 8; + pixel_x = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/siding/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/engineering) +"nDK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/south, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"nDP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"nEl" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/tank/internals/oxygen{ + pixel_x = 5 + }, +/obj/item/tank/internals/oxygen{ + pixel_x = -5 + }, +/obj/item/wrench, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas, +/obj/machinery/door/window/northleft{ + name = "Emergency Storage"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nEu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nEE" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"nFj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"nFo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/break_room) +"nFQ" = ( +/obj/item/canvas/nineteen_nineteen, +/obj/structure/easel, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"nGB" = ( +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"nHA" = ( +/obj/structure/sign/warning/fire, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"nHL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nIo" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/clipboard, +/obj/item/food/grown/wheat, +/obj/item/food/grown/watermelon, +/obj/item/food/grown/citrus/orange, +/obj/item/food/grown/grapes, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plating, +/area/service/hydroponics) +"nIq" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"nIv" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"nIy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"nIM" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"nIV" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/turf/closed/wall, +/area/engineering/atmos) +"nIX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad/secure, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"nJn" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nJS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nJY" = ( +/turf/closed/wall/rust, +/area/lawoffice) +"nKl" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"nKz" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/command/bridge) +"nKH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Prison Wing Lockers"; + dir = 1; + name = "prison camera"; + network = list("ss13","prison") + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"nKT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nKW" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"nLl" = ( +/obj/structure/reflector/single/anchored{ + dir = 5 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"nLu" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"nLC" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"nLV" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/autolathe, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nLY" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 14; + pixel_y = 13 + }, +/turf/open/floor/plating/rust, +/area/security/prison) +"nMm" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"nMw" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/command/heads_quarters/hop) +"nMC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"nMI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nNi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/ducts/fifty, +/obj/item/stack/ducts/fifty, +/obj/item/plunger, +/obj/item/plunger, +/obj/structure/sign/departments/chemistry{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Chemistry East"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/button/door/directional/north{ + id = "chem_lockdown"; + name = "chemistry lockdown control"; + req_access_txt = "5; 69" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"nNp" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"nNw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/flasher/directional/north{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera{ + c_tag = "AI Chamber SMES"; + name = "core camera"; + network = list("aicore") + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"nNB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"nNU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"nON" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"nOQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"nOZ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/starboard/fore) +"nPa" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/noticeboard/directional/east, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 8; + name = "detective camera" + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"nPb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/status_display/ai/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"nPE" = ( +/obj/structure/chair/sofa/right{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"nPY" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel/dark, +/area/security/main) +"nQa" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/machinery/camera{ + c_tag = "Science Security Post"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/button/door/directional/south{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = 24; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"nQl" = ( +/obj/machinery/atmospherics/miner/n2o, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"nQy" = ( +/obj/structure/sign/poster/official/pda_ad, +/turf/closed/wall, +/area/command/heads_quarters/hop) +"nRg" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"nRi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"nRl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reflector/double/anchored{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"nRr" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/aft) +"nRA" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"nRG" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/light/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/grass, +/area/service/chapel) +"nSd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"nSg" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + name = "Security Desk"; + req_one_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nSm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;47" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"nSq" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/goldcrate, +/obj/machinery/firealarm/directional/west, +/obj/item/crowbar/power, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/nuke_storage) +"nTo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/janitor, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 2; + pixel_x = 64 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"nTA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/surgical_drapes, +/obj/item/scalpel{ + pixel_y = 5 + }, +/obj/item/cautery, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"nTL" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"nUa" = ( +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"nUq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"nUt" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"nUx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"nUA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nUE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "N2O to Pure" + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"nVD" = ( +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"nVM" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3"; + security_level = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"nVV" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMLoad"; + name = "off ramp"; + pixel_y = 5 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"nWd" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/service/chapel) +"nWh" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"nWj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"nWo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"nWB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"nWN" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/chapel/office) +"nXe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"nXj" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"nXm" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"nXt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/right{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"nXv" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"nXD" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/atmos) +"nYc" = ( +/obj/machinery/mass_driver{ + id = "trash" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"nYd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/computer/security/telescreen/prison{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/main) +"nYK" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"nYL" = ( +/obj/structure/table, +/obj/item/instrument/harmonica, +/obj/item/camera{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"nYV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/structure/sign/barsign{ + pixel_y = 32; + req_access = null; + req_access_txt = "25" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"nYW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical{ + name = "Kitchen"; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"nZo" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"nZQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/engineering/main) +"nZU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"oaA" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"oaK" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"oaT" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical/glass{ + name = "Recovery Ward"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"oaW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"obm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"obH" = ( +/obj/structure/table/wood, +/obj/item/folder/red, +/obj/item/lighter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/mask/cigarette/cigar/cohiba{ + pixel_x = 6 + }, +/obj/item/clothing/mask/cigarette/cigar, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"obS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"obU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"oca" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"och" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"oct" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ocw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_output{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"ocN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/ten, +/obj/item/stack/cable_coil, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/wirecutters, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"ocP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"ocW" = ( +/obj/machinery/air_sensor/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"odt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"odG" = ( +/turf/closed/wall/rust, +/area/medical/paramedic) +"oep" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oeA" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"oeB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"ofB" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Departures Checkpoint"; + dir = 8; + name = "shuttle camera" + }, +/obj/machinery/button/door/directional/east{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"ofH" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/cargo/storage) +"ogc" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"ogA" = ( +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"ogO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"ogX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ohr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port) +"ohC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Restrooms"; + dir = 1; + name = "recreation camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"ohD" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ohH" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/security/warden) +"ohN" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/obj/effect/spawner/random/techstorage/tcomms_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"ohU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/light/directional/west, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/engine, +/area/engineering/main) +"oij" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ois" = ( +/obj/machinery/door/airlock/external{ + name = "Common Mining Dock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"oiP" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/warehouse) +"oiW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/blue, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor{ + base_state = "rightsecure"; + dir = 1; + icon_state = "rightsecure"; + name = "Head of Personnel's Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/window/southright{ + name = "Reception Desk" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"oiX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ojw" = ( +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"ojE" = ( +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"okh" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"okk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"okm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/firealarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"okq" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel, +/area/command/bridge) +"okw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"okF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"okQ" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security's Requests Console" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"okR" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "exploration_home"; + name = "NT SS13: Док Рейнджеров"; + roundstart_template = /datum/map_template/shuttle/exploration; + width = 13 + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"okT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/bed/roller, +/obj/machinery/light/small/directional/south, +/obj/machinery/iv_drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/central) +"okV" = ( +/obj/structure/table/glass, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/box/bodybags, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"okY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"olb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"old" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"olK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -28 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"olM" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hop"; + name = "Privacy Shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/hop) +"olX" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"omv" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "NTMSLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"omA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"omJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"omR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"onb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"onf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ont" = ( +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"onN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/libraryscanner, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/library) +"onY" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"ood" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ooA" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/firstaid/o2, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"ooM" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/space_heater, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"opx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/punching_bag, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plating, +/area/maintenance/fore) +"opS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"opV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"opW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/westleft{ + name = "Soothing Nature Exhibit"; + req_access_txt = "70" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/psychology) +"opX" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/mousetraps{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/flashlight, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"opY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Supermatter Terminal"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"oqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"oqx" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"orb" = ( +/obj/effect/turf_decal/bot/right, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"orA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"orI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"orK" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"orN" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"osm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oss" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port) +"osw" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"osy" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Plasma"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"osF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"ota" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"oth" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"otr" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"otx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"otz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/crowbar/red, +/obj/item/toy/figure/roboticist{ + pixel_x = 6 + }, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"otZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/storage/box/lights/mixed, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oub" = ( +/obj/structure/curtain, +/turf/open/floor/plating, +/area/security/prison) +"ovc" = ( +/obj/machinery/camera{ + c_tag = "Supermatter Waste Line"; + dir = 8; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/east{ + id = "engineaccess"; + name = "Engine Access Lockdown"; + req_access_txt = "10" + }, +/turf/open/floor/engine, +/area/engineering/main) +"ovn" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/turf/open/floor/plasteel, +/area/cargo/storage) +"ovp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/flasher/directional/east{ + id = "hopflash"; + name = "Crowd Pacifier" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"owO" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"owR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"oxL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"oxP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"oys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port) +"oyx" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"oyC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"oyF" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"oyM" = ( +/obj/machinery/light_switch/directional/south{ + pixel_x = 26 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/security/main) +"oyS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"ozk" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ozv" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"ozA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"ozQ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"oAc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"oAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison) +"oAl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"oAm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/nuclearbomb/beer, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"oAn" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"oAB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Fore Hallway Diner"; + name = "fore camera" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oAH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/turf_decal/delivery, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = -1 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"oAK" = ( +/obj/structure/grille, +/obj/structure/barricade/wooden, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"oAZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"oBp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sink{ + dir = 8; + pixel_x = 11 + }, +/obj/structure/mirror/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"oBv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oBx" = ( +/obj/machinery/door/window/northleft{ + dir = 2; + name = "Cargo Delivery Access"; + req_access_txt = "50" + }, +/obj/structure/plasticflaps/opaque, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"oBA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"oBI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"oBJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"oBN" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing/chamber) +"oBY" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/glass, +/obj/structure/barricade/wooden/crude, +/turf/open/floor/plating/rust, +/area/security/prison) +"oCh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/locker) +"oCH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboad Hallway Custodial Bay"; + name = "starboard camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"oCO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"oDs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"oDt" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"oDC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"oDF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"oDR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"oDT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/closed/wall/rust, +/area/science/storage) +"oEh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port) +"oEk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oEv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Restrooms" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"oEx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters{ + id = "visitation"; + name = "Visitation Shutters" + }, +/obj/machinery/flasher/directional/east{ + id = "visitorflash" + }, +/turf/open/floor/plating, +/area/security/prison) +"oEU" = ( +/turf/closed/wall/rust, +/area/commons/storage/primary) +"oEW" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/cargo/storage) +"oEX" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"oFe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/west, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"oFh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/fore) +"oFk" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 4"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine, +/area/science/xenobiology) +"oFp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"oFr" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/hidden, +/turf/closed/wall, +/area/science/storage) +"oFA" = ( +/obj/machinery/firealarm/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"oFH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/button/door/directional/south{ + id = "kitchen_2"; + name = "Hallway Hatch Toggle"; + pixel_x = 24; + req_access_txt = "28" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"oFL" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/vomit/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"oGc" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"oGM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oHb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"oHJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"oHM" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Quartermaster's Office"; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"oHO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "custodial sorting disposal pipe"; + sortType = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"oHY" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/matches{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/lighter{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/lighter, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"oIk" = ( +/obj/machinery/light/directional/west, +/obj/machinery/power/emitter/welded{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/main) +"oIr" = ( +/obj/structure/bookcase/random/adult, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/library) +"oIw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access_txt = "23;30" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"oIH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"oJe" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/obj/effect/turf_decal/siding/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"oJA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"oJL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"oJY" = ( +/obj/structure/table/wood/fancy, +/obj/item/book/granter/action/spell/smoke/lesser{ + pixel_y = 4 + }, +/obj/item/nullrod{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"oKa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"oKf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oKk" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"oKy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/west, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"oKA" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"oKO" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"oKX" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/engineering/main) +"oLl" = ( +/turf/closed/wall/rust, +/area/service/chapel/office) +"oLp" = ( +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"oLw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"oLY" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/obj/machinery/requests_console/directional/west{ + department = "Engineering"; + departmentType = 4; + name = "Engineering Requests Console" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"oMj" = ( +/obj/machinery/photocopier, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console/directional/south{ + department = "Law Office"; + name = "Law Office Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"oNc" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy, +/obj/item/trash/chips, +/obj/item/weldingtool/mini, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"oNe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"oNg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"oNw" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/engineering/main) +"oNQ" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"oNT" = ( +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"oOf" = ( +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"oOL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/table, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/clipboard{ + pixel_y = -16; + pixel_x = -7 + }, +/obj/item/pen{ + pixel_y = -15 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"oPj" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"oPn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"oPo" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"oPB" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "AI Chamber"; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Chamber entrance shutters"; + name = "AI Chamber Lockdown Shutter" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/flasher/directional/west{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"oPH" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/maintenance/port) +"oPT" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"oQw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"oQC" = ( +/obj/structure/table, +/obj/item/ai_module/reset, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/flasher/directional/east{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = 26 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"oQI" = ( +/obj/structure/sign/warning, +/turf/closed/wall/r_wall, +/area/maintenance/port/aft) +"oRa" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"oRo" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #2" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/small/directional/north, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"oRw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"oRG" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"oRL" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"oRZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/fore) +"oSw" = ( +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"oTh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "NTMSLoad"; + name = "off ramp"; + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"oTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/closet/cabinet, +/obj/item/stack/sheet/glass{ + amount = 10 + }, +/obj/item/stack/rods/ten, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"oTV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"oTZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door/directional/west{ + id = "Abandoned Cell"; + name = "Abandoned Door Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"oUl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"oUy" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"oUz" = ( +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/temperature/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/south, +/obj/item/clothing/suit/hooded/ablative, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"oUO" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/service/hydroponics) +"oUZ" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/cargo/warehouse) +"oVl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/fore) +"oVx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/clothing, +/obj/item/radio/intercom/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"oVB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"oWf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"oWi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"oWm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oWv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"oWW" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"oXB" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"oYa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"oYg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"oYi" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"oYn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"oYo" = ( +/obj/machinery/mecha_part_fabricator/sci, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Research Lab"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"oYG" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/plasma_tank, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"oYL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/obj/item/clothing/mask/russian_balaclava, +/obj/structure/closet/secure_closet/security/field_med, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"oZs" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher/directional/west{ + id = "Cell 5"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"oZA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"oZM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pan" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/east, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pat" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"paz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/machinery/light/directional/east, +/obj/machinery/light_switch/directional/east, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"paK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/sign/warning/fire{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"paL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"paR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/closed/wall/r_wall, +/area/science/mixing/chamber) +"paX" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/research{ + name = "Testing Lab"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"paZ" = ( +/obj/machinery/light/small/directional/west, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"pbl" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 6 + }, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/item/experi_scanner{ + pixel_x = -4 + }, +/obj/item/experi_scanner, +/obj/item/experi_scanner{ + pixel_x = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"pbn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"pbw" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"pbW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pcu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Departure Checkpoint"; + dir = 4; + name = "starboard camera" + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pcE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pcL" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/newscaster/directional/west, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"pcX" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/transit_tube/horizontal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/command/bridge) +"pdd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pdg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera{ + c_tag = "Atmospherics Entrance"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pdi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pdA" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"pdM" = ( +/obj/machinery/computer/atmos_control/mix_tank{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"pef" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"peg" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"pen" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"peq" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/machinery/airalarm/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"pes" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"peu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"peB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/bridge) +"peP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"peU" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"peV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/sorting) +"pfL" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/grass, +/area/service/chapel) +"pfM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/chair/office{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"pfS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"pgf" = ( +/obj/machinery/firealarm/directional/west, +/obj/item/reagent_containers/glass/bottle/ammonia, +/obj/structure/rack, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/watertank/janitor, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"pgr" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"pgy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"pgF" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/rd{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/keycard_auth/directional/east{ + pixel_y = 26 + }, +/obj/machinery/button/door/directional/north{ + id = "rdprivacy"; + name = "Director's Privacy Toggle"; + pixel_x = -8; + pixel_y = 38 + }, +/obj/machinery/button/door/directional/north{ + id = "Biohazard"; + name = "Emergency Research Lockdown"; + pixel_x = -8; + req_access_txt = "47" + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = 6 + }, +/obj/machinery/button/door/directional/north{ + id = "xeno_blastdoor"; + name = "Xenobiology Containment"; + pixel_x = 6; + pixel_y = 38; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"pgJ" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"pgN" = ( +/obj/machinery/computer/security/qm{ + dir = 8; + network = list("mine","auxbase","vault","qm") + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/qm) +"phI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"pie" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/structure/cable/layer3, +/obj/effect/mapping_helpers/burnt_floor, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/satellite) +"pim" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating/airless, +/area/engineering/main) +"piF" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"piK" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"piT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/aicard, +/obj/item/ai_module/reset, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"piV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/griddle, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"piY" = ( +/obj/effect/mob_spawn/human/corpse/charredskeleton, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"pjy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Transit Access"; + req_access_txt = "19" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"pjz" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Unit_2"; + name = "Unit 2" + }, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"pkn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"pkC" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Disposal Exit"; + name = "disposal exit vent" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pkU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/library) +"pkY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/carbon_output{ + dir = 1 + }, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"plj" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/lockbox/medal, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"pls" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"plP" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"plU" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pmd" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/bar) +"pmk" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Euthanization Chamber"; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"pmu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/closet/secure_closet/hop, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"pmy" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"pmJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/command/bridge) +"pnb" = ( +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"pnt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engineering/main) +"pnx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"pnQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/piratepad/civilian, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"poh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pol" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Pure to Mix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pot" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"poD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"poL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"poR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/grille/broken, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"poT" = ( +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"poZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/flasher/directional/east{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"ppf" = ( +/obj/structure/bed, +/obj/effect/landmark/start/assistant, +/obj/item/bedsheet/dorms, +/turf/open/floor/wood, +/area/commons/locker) +"ppC" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"pqb" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"pqg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"pqo" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"pqp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Service Door"; + req_one_access_txt = "35;28" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"pqt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"pqE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"prk" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"prC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"prF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"prS" = ( +/turf/closed/wall/r_wall, +/area/command/bridge) +"psj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"psn" = ( +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/item/flashlight/seclite, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/airalarm/directional/west, +/obj/structure/table, +/obj/item/gun/energy/e_gun/dragnet, +/obj/item/gun/energy/e_gun/dragnet, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"psB" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"psO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/atmos_control/carbon_tank{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/orange/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pta" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/greenglow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"pth" = ( +/obj/structure/closet{ + name = "maid locker" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/white, +/obj/item/clothing/accessory/maidapron{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/shoes/laceup, +/obj/structure/mirror/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"ptl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel, +/area/command/gateway) +"ptA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"ptQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"ptV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"put" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/nanotrasen{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"puG" = ( +/obj/structure/table/wood, +/obj/item/stack/package_wrap, +/obj/item/storage/lockbox/loyalty, +/obj/item/hand_labeler, +/obj/machinery/keycard_auth/directional/north, +/turf/open/floor/carpet/blue, +/area/command/heads_quarters/hop) +"puH" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"puJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"puW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/main) +"pve" = ( +/obj/structure/table/wood, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/hand_tele, +/obj/structure/mirror/directional/west, +/obj/machinery/light/directional/south, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pvi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"pvu" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/recharger{ + pixel_x = -3 + }, +/obj/structure/cable, +/obj/item/toy/figure/rd{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp/rd{ + pixel_x = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"pvR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"pwa" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"pwg" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel, +/area/command/bridge) +"pwv" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plastic, +/area/security/prison) +"pwz" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pwC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"pwM" = ( +/obj/structure/table, +/obj/machinery/computer/security/telescreen/turbine{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pwS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/machinery/light/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"pwX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"pxv" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"pxE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/fancy/donut_box, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"pxR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"pyi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/office) +"pyo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"pyt" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pyE" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/mop, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pyF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"pyM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/main) +"pzX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"pAH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"pAP" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pBc" = ( +/obj/structure/table, +/obj/item/paper_bin/construction{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/machinery/light/small/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/library) +"pBd" = ( +/obj/structure/displaycase/trophy, +/obj/structure/window/reinforced, +/turf/open/floor/carpet/green, +/area/service/library) +"pBr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"pBs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"pBO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"pBQ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/transit_tube/station/reverse, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/command/bridge) +"pCa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pCq" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"pCB" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_4"; + name = "Cabin 4" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"pCL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_input{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"pCV" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"pDe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/central) +"pDf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"pDk" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/starboard/fore) +"pDn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Atrium" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"pDt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pDu" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"pDF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"pDR" = ( +/turf/closed/wall/rust, +/area/cargo/miningoffice) +"pDW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pDX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Cabin_4Privacy"; + name = "Cabin 4 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pEg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pEs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"pEt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"pEM" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"pES" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel, +/area/command/bridge) +"pET" = ( +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel) +"pEX" = ( +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_one_access_txt = "47" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/science/research) +"pFa" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/detective, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/carpet/green, +/area/security/detectives_office) +"pFx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Foyer" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"pFC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holosign/barrier/atmos, +/turf/open/floor/plating/airless, +/area/maintenance/space_hut/plasmaman) +"pFG" = ( +/obj/machinery/light/small/directional/east, +/obj/structure/dresser, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"pGA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"pGM" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Tech Storage"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/spawner/random/techstorage/security_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"pGW" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"pHm" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"pHG" = ( +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"pHJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/tank/air, +/turf/open/floor/plating, +/area/cargo/warehouse) +"pHM" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/ore_box, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"pHZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/library) +"pIj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"pIm" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"pIq" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"pIy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/machinery/status_display/ai/directional/south, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"pIU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"pJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"pJt" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"pJG" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"pJH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pJN" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light_switch/directional/south, +/obj/structure/reagent_dispensers/peppertank/directional/west, +/obj/machinery/camera{ + c_tag = "Cargo Checkpoint Post"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"pKa" = ( +/turf/closed/wall/r_wall/rust, +/area/command/heads_quarters/cmo) +"pKb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"pKd" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"pKi" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/engineering/atmos) +"pKt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"pKx" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"pLA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"pLV" = ( +/obj/structure/cable, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/storage/box/lights/bulbs, +/obj/machinery/firealarm/directional/south, +/obj/item/tank/internals/oxygen/red, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pLX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"pLY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"pMi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"pMx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Plasma to Incinerator" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"pMy" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/office) +"pMS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"pNq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/meter, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/execution/education) +"pNx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"pNI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"pOl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"pOr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pOu" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/exoscanner, +/turf/open/space/basic, +/area/space/nearstation) +"pOK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"pPi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch/directional/south, +/obj/machinery/camera{ + c_tag = "Xenobiology Closet"; + dir = 1; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"pPr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"pPA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"pPX" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"pQa" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"pQg" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/obj/item/circuitboard/computer/advanced_camera, +/obj/item/gun/energy/e_gun/mini, +/turf/open/floor/wood, +/area/cargo/warehouse) +"pQs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"pQz" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/locker) +"pQG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"pQO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pQY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pRu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"pRA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + pressure_checks = 0 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"pRJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"pRU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"pRW" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/oil, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"pSf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/machinery/door/airlock/atmos/glass{ + name = "Distribution Loop"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pSl" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"pSo" = ( +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_x = 32 + }, +/obj/machinery/power/smes/engineering, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/engineering/main) +"pSE" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"pSH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"pSS" = ( +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/break_room) +"pTf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"pTm" = ( +/obj/machinery/power/smes, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"pTt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/bar) +"pTz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/machinery/camera{ + c_tag = "Supermatter Cooler"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/firealarm/directional/east, +/obj/structure/cable, +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pTF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + pressure_checks = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"pTY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"pUp" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"pUA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel) +"pUD" = ( +/obj/machinery/flasher/directional/north{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Turrets"; + name = "upload camera"; + network = list("aiupload") + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"pUK" = ( +/obj/machinery/turretid{ + icon_state = "control_stun"; + name = "AI Chamber turret control"; + pixel_x = 3; + pixel_y = 28 + }, +/obj/machinery/door/window{ + base_state = "leftsecure"; + dir = 8; + icon_state = "leftsecure"; + name = "Primary AI Core Access"; + obj_integrity = 300; + req_access_txt = "16" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AI Core shutters"; + name = "AI Core Shutter" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"pUN" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/gravity_generator) +"pUO" = ( +/obj/item/stack/sheet/cardboard{ + amount = 14 + }, +/obj/item/stack/package_wrap, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"pUR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"pUY" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"pVp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"pVL" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/machinery/stasis{ + handbeltsmod = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"pVQ" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"pWF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/closet/secure_closet/injection{ + name = "Justice Injections" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/light_switch/directional/north, +/obj/machinery/button/door/directional/west{ + id = "justiceblast"; + name = "Justice Vent Toggle"; + pixel_y = 8; + req_access_txt = "3" + }, +/obj/machinery/button/door/directional/west{ + id = "justiceshutter"; + name = "Justice Shutter Control"; + pixel_y = -8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"pWJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"pWK" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/restraints/handcuffs/cable/zipties, +/obj/item/crowbar/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"pXb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"pXm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"pXO" = ( +/obj/structure/rack, +/obj/item/storage/bag/ore, +/obj/item/tank/internals/emergency_oxygen, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"pXV" = ( +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"pYz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"pYF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Mining Dock"; + dir = 1; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"pYO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"pYV" = ( +/obj/structure/rack, +/obj/item/clothing/gloves/color/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/storage/belt/utility, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/binoculars, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"pZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/electrolyzer, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"pZn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pZw" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engineaccess"; + name = "Engine Access Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"pZN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qab" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/wood, +/area/commons/locker) +"qag" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1447; + name = "Private AI Channel"; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/minisat{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"qaj" = ( +/obj/item/reagent_containers/food/drinks/flask/gold{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"qav" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"qax" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"qaA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/processing) +"qaG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qaY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Hallway" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"qbn" = ( +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/item/exodrone{ + pixel_y = 8 + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qbv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"qbM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/nitrous_input{ + dir = 1 + }, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"qcg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/grunge{ + name = "Recreation Area" + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qci" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qcF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qdo" = ( +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qdK" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall, +/area/maintenance/aft) +"qea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/cargo/warehouse) +"qek" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"qeX" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/newscaster/directional/south, +/obj/item/clipboard, +/obj/item/circuitboard/machine/paystand, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"qeZ" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qfj" = ( +/obj/effect/turf_decal/caution{ + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qfo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qfq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"qfL" = ( +/obj/machinery/light/small/directional/east, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"qfR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qgh" = ( +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/colocup{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/cigarette/rollie/cannabis{ + pixel_y = -3 + }, +/turf/open/floor/plating/rust, +/area/maintenance/port/aft) +"qgx" = ( +/obj/structure/grille, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"qgO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"qgP" = ( +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = -4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qgQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"qgX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qhd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/megaphone{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qhk" = ( +/obj/machinery/door/airlock/external{ + req_access_txt = "49" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4{ + dir = 4 + }, +/obj/structure/fans/tiny, +/obj/structure/cable, +/turf/open/floor/plasteel/monofloor/dark, +/area/cargo/exploration_dock) +"qho" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qhp" = ( +/obj/structure/table, +/obj/item/toy/cards/deck{ + pixel_x = -9 + }, +/obj/item/storage/photo_album/prison{ + pixel_x = 8; + pixel_y = -3 + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"qhB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"qhO" = ( +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/security/prison) +"qhT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"qhU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qif" = ( +/obj/structure/chair, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"qil" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/janitor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/janitor) +"qin" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"qip" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light/directional/west, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qiu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qiQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/mining{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"qiT" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/research/explosive_compressor, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"qjj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/key/atv, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"qjw" = ( +/obj/structure/filingcabinet/employment, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/button/door/directional/east{ + id = "lawyer_shutters"; + name = "Law Office Shutters Toggle"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"qku" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"qkL" = ( +/turf/closed/wall/r_wall, +/area/engineering/supermatter) +"qkT" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/cable, +/turf/open/floor/circuit/red, +/area/engineering/main) +"qld" = ( +/obj/machinery/door/airlock/grunge{ + name = "Art Cabinet" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"qlf" = ( +/obj/machinery/firealarm/directional/east, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/closet/crate{ + name = "spare parts" + }, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"qlh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"qlk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"qlH" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"qlI" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qlU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/package_wrap, +/obj/item/stack/wrapping_paper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/stack/wrapping_paper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/light_switch/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"qmV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qmX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/binary/pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/hallway/primary/fore) +"qnf" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/contraband/smoke{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"qnv" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"qoa" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"qov" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qoB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"qoD" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/oxygen/yellow, +/obj/machinery/light/directional/south, +/obj/machinery/requests_console/directional/south{ + department = "Mining"; + name = "Mining Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"qoJ" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"qpf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"qpi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qps" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/atmospherics/components/binary/pump/on/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"qpy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qpz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qqe" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_1"; + name = "Cabin 1" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"qqu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"qra" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"qre" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"qsb" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/storage/eva) +"qsi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"qsj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qsn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/smartfridge/organ, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"qsG" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"qsI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"qtb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"qtG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"qtT" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"quq" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/camera{ + c_tag = "Autopsy Room"; + dir = 1; + name = "detective camera" + }, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/start/detective, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"qur" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table/glass, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/hydroponics, +/obj/item/reagent_containers/dropper, +/obj/item/pen, +/obj/machinery/smartfridge/disks, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"quv" = ( +/obj/item/trash/candy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"quw" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"quC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"quF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"quQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "prisonblast"; + name = "Prison Blast Door" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"qvb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/item/storage/backpack/satchel/eng, +/obj/item/wirecutters, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qvp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qvq" = ( +/obj/structure/flora/rock, +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"qvt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"qvw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"qvG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/light_switch/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"qvH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater Secondary"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"qvM" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"qvZ" = ( +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"qwd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"qwx" = ( +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"qwV" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/obj/machinery/airalarm/directional/south, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"qxd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/engine, +/area/engineering/main) +"qxe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qxq" = ( +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"qxr" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/window/southleft{ + name = "Cargo Disposal"; + req_access_txt = "50" + }, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort2"; + name = "mail belt"; + pixel_y = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"qxV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Freight Mining Airlock" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"qye" = ( +/obj/machinery/conveyor{ + id = "garbage" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"qys" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"qyy" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 5"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/engine, +/area/science/xenobiology) +"qyZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/newscaster/directional/east, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/lawoffice) +"qzL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"qAn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Captain's Tactical Relocation"; + req_access_txt = "20" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters{ + id = "captain_escape" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"qAu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qAG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/office) +"qCa" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qCn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qCr" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"qCt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"qCw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/brig) +"qCF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"qDp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qDM" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/newscaster/directional/south{ + pixel_x = -28 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/blobstart, +/obj/machinery/button/door/directional/east{ + id = "Unit_1Privacy"; + name = "Unit 1 Privacy Toggle"; + pixel_y = -8 + }, +/obj/machinery/button/door/directional/east{ + id = "Unit_1"; + name = "Unit 1 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"qEo" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/service/chapel) +"qES" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"qEU" = ( +/obj/structure/janitorialcart, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"qEV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Trash Chute"; + dir = 1; + name = "service camera" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"qEW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/stasis{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/machinery/defibrillator_mount/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"qFo" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"qFp" = ( +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Incinerator Construction Area"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"qFu" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qFx" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"qFC" = ( +/obj/structure/rack, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qFL" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qFQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qFX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qGh" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2 + }, +/obj/machinery/requests_console/directional/north{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer's Requests Console" + }, +/obj/item/healthanalyzer/advanced, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"qGi" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qGy" = ( +/turf/closed/wall/r_wall, +/area/engineering/main) +"qGC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"qGO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/aicard{ + pixel_x = 4 + }, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/machinery/light/directional/north, +/obj/machinery/camera{ + c_tag = "Bridge Control Pit"; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qGP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"qGU" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"qHd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"qHe" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/command/storage/eva) +"qHv" = ( +/obj/machinery/chem_master/condimaster{ + desc = "Used to separate out liquids - useful for purifying botanical extracts. Also dispenses condiments."; + name = "BrewMaster 2199" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qHD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Ports" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qHG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"qIt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Atmospherics Port Tanks"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qIv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qIF" = ( +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/structure/table/rolling, +/obj/item/storage/crayons{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/storage/crayons{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/paper_bin{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/item/pen{ + pixel_x = 13; + pixel_y = 9 + }, +/obj/item/pen{ + pixel_x = 11; + pixel_y = 6 + }, +/obj/item/pen{ + pixel_x = 11; + pixel_y = 4 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"qJc" = ( +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qJj" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qJk" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"qJq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel, +/area/security/warden) +"qJs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/space/basic, +/area/space/nearstation) +"qJD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"qKa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/security/prison) +"qKf" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/holopad/secure, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"qKy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"qKB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"qKO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump/off{ + dir = 4; + name = "O2 To Pure" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qKT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "lawyer_shutters"; + name = "Law Office Shutters" + }, +/turf/open/floor/plating, +/area/lawoffice) +"qKY" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qLt" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"qLu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qLv" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/ce) +"qLE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"qLN" = ( +/obj/structure/sign/departments/botany, +/turf/closed/wall, +/area/service/hydroponics) +"qLP" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"qLV" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"qMa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qMy" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/machinery/camera{ + c_tag = "Arrivals Dock"; + name = "shuttle camera" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"qMJ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"qMR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Art Cabinet" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"qMS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"qNw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"qNE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"qOj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/displaycase/labcage, +/obj/effect/turf_decal/box, +/obj/machinery/light/directional/south, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"qOk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"qPt" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/light/directional/north, +/obj/machinery/requests_console/directional/north{ + department = "Xenobiology"; + departmentType = 2; + name = "Xenobiology Requests Console"; + pixel_x = -32; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qPF" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"qPH" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/command/nuke_storage) +"qPK" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"qPV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"qQr" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qQu" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qQw" = ( +/obj/machinery/newscaster/directional/west, +/obj/machinery/computer/prisoner/management{ + dir = 4 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"qQz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light_switch/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"qQN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qQP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = 23; + pixel_y = 7 + }, +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = 23; + pixel_y = -6 + }, +/obj/machinery/atmospherics/components/trinary/filter/flipped{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"qQQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/security/courtroom) +"qRl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/science/research) +"qRs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 9; + id = "QMLoad"; + name = "off ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"qRu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"qRF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"qRS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qSu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/engineering/main) +"qSw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"qSA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qSF" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/gravity_generator) +"qSI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"qTq" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"qUA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"qUF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"qUM" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engineering/storage/tech) +"qUO" = ( +/obj/machinery/airalarm/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"qVB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"qVM" = ( +/obj/structure/lattice, +/obj/structure/girder/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"qVS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"qWr" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"qXt" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/sign/poster/contraband/random{ + pixel_x = 32 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"qXH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Gravity Generator Foyer"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/structure/cable, +/obj/machinery/button/door/directional/west{ + id = "gravity"; + name = "Gravity Generator Lockdown"; + req_one_access_txt = "19;23" + }, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"qYi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "Bridge Access"; + dir = 8; + name = "command camera" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"qYS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"qYZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"qZb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/commons/locker) +"qZi" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"qZU" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"rai" = ( +/obj/structure/chair/sofa/right, +/obj/structure/sign/poster/official/love_ian{ + pixel_y = 32 + }, +/turf/open/floor/carpet, +/area/medical/psychology) +"rar" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + name = "Cooling Loop Bypass" + }, +/obj/machinery/light/directional/east, +/turf/open/floor/engine, +/area/engineering/main) +"raA" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"raL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"raM" = ( +/obj/machinery/light/directional/west, +/obj/machinery/status_display/ai/directional/west, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"rbd" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"rbt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/south, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/warden) +"rbu" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/grass, +/area/service/hydroponics) +"rbD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"rbF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/space_heater, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"rbR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"rbY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"rcj" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/newscaster/directional/south{ + pixel_x = 32 + }, +/obj/machinery/rnd/bepis, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rcm" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"rcu" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"rcx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/transit_tube/crossing, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"rcA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"rcC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"rdj" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + desc = "A sink used for washing one's hands and face. It looks rusty and home-made"; + name = "old sink"; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"rdu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"rdC" = ( +/obj/structure/table/glass, +/obj/item/folder/white, +/obj/item/folder/white, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/storage/box/syringes{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/beakers{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/noticeboard/directional/south, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"rdH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/hidden, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"rdK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/lawyer, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"rdO" = ( +/obj/structure/sign/poster/contraband/missing_gloves, +/turf/closed/wall/rust, +/area/maintenance/port) +"ref" = ( +/obj/machinery/door/poddoor/shutters{ + id = "coldroom"; + name = "Coldroom Shutters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"rel" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rex" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Storage"; + req_one_access_txt = "32;19" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"rez" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"reE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/crowbar, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 6 + }, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = -2 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"reJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rfl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rfq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/trash/chips, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"rfJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table_frame, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"rfL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 5 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rfS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"rfZ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"rgb" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/box/hug/medical{ + pixel_y = 4 + }, +/obj/item/crowbar, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"rgj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rgn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"rgQ" = ( +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"rgX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/radio/intercom/directional/north{ + desc = "A station intercom. It looks like it has been modified to not broadcast."; + name = "prison intercom"; + prison_radio = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"rhk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"rhC" = ( +/obj/structure/lattice/catwalk, +/obj/item/stack/sheet/glass, +/turf/open/space/basic, +/area/solars/port/aft) +"rhG" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/backpack/duffelbag/sec/surgery{ + pixel_y = 5 + }, +/obj/item/clothing/mask/surgical, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/east, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"rhW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"rhY" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rhZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ria" = ( +/turf/closed/wall, +/area/cargo/warehouse) +"rif" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"riq" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/warehouse) +"riz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"riB" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/engine, +/area/engineering/main) +"riE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"riF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/main) +"riG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/command/teleporter) +"rjm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rjx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Satellite Transit Access"; + dir = 4; + name = "satellite camera"; + network = list("minisat") + }, +/obj/machinery/button/door/directional/west{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rjK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering/glass{ + name = "Laser Room"; + req_access_txt = "10" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rkm" = ( +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"rkn" = ( +/obj/item/stack/cable_coil, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"rko" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"rkz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rkU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rld" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall/rust, +/area/maintenance/port/fore) +"rlr" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 8; + name = "emergency shower" + }, +/obj/structure/mirror/directional/east, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/landmark/start/geneticist, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"rlv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/engineering/main) +"rlW" = ( +/obj/structure/rack, +/obj/effect/spawner/random/techstorage/rnd_secure_all, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/storage/tech) +"rmc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/stripes/line, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"rmd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/explosives/alt{ + pixel_x = -32 + }, +/obj/structure/table, +/obj/item/raw_anomaly_core/random{ + pixel_x = 7; + pixel_y = 9 + }, +/obj/item/raw_anomaly_core/random{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/raw_anomaly_core/random, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"rmr" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/yellow/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rmu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"rmx" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"rmH" = ( +/obj/structure/table/wood, +/obj/item/storage/crayons, +/obj/item/storage/crayons, +/obj/item/bikehorn/rubberducky, +/obj/structure/sign/poster/contraband/clown{ + pixel_x = -30 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"rmJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"rmQ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/structure/grille/broken, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/flashlight, +/obj/item/flashlight/flare, +/obj/machinery/light/small/directional/west, +/obj/item/relic, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rmW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rmY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/command/teleporter) +"rnf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"rnk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/service/library) +"rnA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/cargo/warehouse) +"rnG" = ( +/obj/machinery/seed_extractor, +/obj/effect/turf_decal/trimline/green/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"rnV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rnW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solars/port/aft) +"rnY" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/item/screwdriver{ + pixel_y = 18 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"rob" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"roj" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"rok" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/table, +/obj/item/hfr_box/core, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/obj/item/hfr_box/corner, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"rou" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Kitchen" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/eastright{ + dir = 1; + name = "Kitchen Delivery Access"; + req_access_txt = "28" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"row" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"roG" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"rph" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rpo" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet{ + name = "supply locker" + }, +/obj/item/clothing/shoes/sneakers/brown, +/obj/item/clothing/under/rank/cargo/tech, +/turf/open/floor/plating, +/area/maintenance/starboard) +"rpq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"rps" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"rpx" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/camera{ + c_tag = "Morgue"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"rpS" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/gibber, +/obj/machinery/camera{ + c_tag = "Kitchen Cold Room"; + name = "diner camera" + }, +/obj/machinery/airalarm/directional/north, +/obj/effect/decal/cleanable/blood/gibs/old, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"rqT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"rqY" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/command/heads_quarters/hop) +"rra" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/north, +/obj/effect/landmark/start/chaplain, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"rrC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"rrF" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/girder/displaced, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rrR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rrS" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"rrU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"rsa" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"rsg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "ce sorting disposal pipe"; + sortType = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rsm" = ( +/obj/structure/closet/crate, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/breadslice/plain, +/obj/item/food/grown/potato, +/obj/item/food/grown/potato, +/obj/item/food/grown/onion, +/obj/item/food/grown/onion, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"rsC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"rtp" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Port Hallway Chemistry Desk"; + dir = 8; + name = "port camera" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"rtr" = ( +/obj/structure/flora/rock/pile, +/obj/effect/turf_decal/sand/plating/lite_2, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"rtO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rtR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"rtZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "medbay_front_door"; + name = "Medbay Doors Toggle"; + normaldoorcontrol = 1; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"ruk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ruM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ruR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"rvw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rvF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/structure/railing/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"rwk" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/satellite) +"rwo" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engineering/atmos) +"rwI" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/central) +"rwJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/research) +"ryM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"ryU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"rzi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rzv" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"rzN" = ( +/obj/machinery/power/rad_collector/anchored, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/structure/window/plasma/reinforced/spawner/west, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/supermatter) +"rAp" = ( +/obj/structure/weightmachine/weightlifter, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/item/photo/old, +/turf/open/floor/plasteel, +/area/security/prison) +"rAr" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/obj/machinery/firealarm/directional/west, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rAF" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Auxiliary Base Construction"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/construction/mining/aux_base) +"rAN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/arrows, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rAS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=Arrivals"; + location = "Custodial"; + name = "custodial navigation beacon" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/starboard) +"rAU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"rBi" = ( +/obj/structure/cable, +/obj/effect/turf_decal/trimline/red/warning, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"rBq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"rBu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/science/xenobiology) +"rBK" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the test chamber."; + dir = 8; + layer = 4; + name = "Test Chamber Telescreen"; + network = list("ordnance"); + pixel_x = 30 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"rBR" = ( +/obj/structure/sink{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/firealarm/directional/north{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"rBS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/camera{ + c_tag = "AI Upload Transit"; + dir = 8; + name = "command camera" + }, +/obj/machinery/button/door/directional/east{ + id = "transittube"; + name = "Transit Tube Lockdown Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"rCb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rCp" = ( +/obj/structure/girder/displaced, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "aux_base_shutters"; + name = "Auxiliary Base Shutters Toggle"; + req_one_access_txt = "32;47;48" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"rCA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes/cigars/havana{ + pixel_y = 5 + }, +/obj/item/crowbar/red, +/obj/item/lighter{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/light/directional/east, +/obj/item/storage/secure/safe/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"rDe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stack/rods/fifty{ + pixel_y = 5 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/requests_console/directional/east{ + department = "EVA"; + name = "EVA Requests Console" + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rDh" = ( +/obj/machinery/suit_storage_unit/security, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/main) +"rDl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rDB" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"rDC" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/engineering/atmos) +"rDL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"rEc" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rEl" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/tank/internals/emergency_oxygen/engi, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/item/pipe_dispenser, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rEG" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + desc = "Used to grind things up into raw materials and liquids."; + pixel_y = 5 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/button/door/directional/west{ + id = "virologysurgery"; + name = "Virology Privacy Toggle"; + pixel_y = 6; + req_access_txt = "39" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"rES" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_3"; + name = "Cabin 3" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"rET" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"rFa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"rFc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_y = 2 + }, +/obj/item/flashlight/flare, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"rFe" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"rFg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rFk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/light/directional/west, +/turf/open/floor/engine, +/area/engineering/main) +"rFl" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"rFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/stack/sheet/iron/fifty, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"rFD" = ( +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/structure/flora/ausbushes/palebush, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rGo" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard) +"rHd" = ( +/obj/machinery/power/tracker, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/aft) +"rHe" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"rHf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"rHj" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/security/prison) +"rHn" = ( +/obj/structure/chair/pew{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"rHZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/sign/warning/securearea{ + name = "EMERGENCY STORAGE"; + pixel_y = -32 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"rIf" = ( +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Core Modules"; + req_access_txt = "20" + }, +/obj/item/ai_module/core/freeformcore{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ai_module/core/full/custom, +/obj/item/ai_module/core/full/asimov{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/flasher/directional/west{ + id = "AI"; + name = "Meatbag Pacifier" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"rIt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"rIH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rIN" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"rJb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/power/emitter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rJf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"rJn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"rJz" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"rJG" = ( +/turf/closed/wall, +/area/command/heads_quarters/rd) +"rJI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"rJU" = ( +/turf/closed/wall/rust, +/area/engineering/atmos) +"rKb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rKf" = ( +/obj/item/target, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target/clown, +/obj/structure/closet/crate/secure{ + desc = "A secure crate containing various materials for building a customised test-site."; + name = "Test Site Materials Crate"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"rKo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"rKr" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"rKt" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"rKN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"rLk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/radio/intercom/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"rLA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rLF" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/warehouse) +"rLN" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/smes{ + charge = 5e+006; + name = "ai power storage unit" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"rLU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plating, +/area/maintenance/port) +"rMc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"rMv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/wood, +/area/service/library) +"rMG" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"rMN" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/librarian, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/service/library) +"rMX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rNg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rNC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rOe" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/east, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"rOO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/south, +/obj/machinery/vending/medical, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"rPb" = ( +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"rPu" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"rPI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"rQf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"rQj" = ( +/obj/effect/turf_decal/arrows/white{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"rQn" = ( +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"rQB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light_switch/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"rQX" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"rRw" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"rRC" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/south, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"rRF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/detective, +/obj/structure/cable, +/turf/open/floor/wood, +/area/security/detectives_office) +"rRG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"rSs" = ( +/obj/machinery/holopad, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"rSK" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/obj/machinery/airalarm/directional/south, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/wrench, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Vacant Commissary"; + dir = 8; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"rSS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/built/directional/north, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"rTw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rTA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"rTB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"rTV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"rUc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rUg" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/supermatter) +"rUy" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"rUR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"rVr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"rVQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"rWe" = ( +/obj/structure/table/wood/fancy, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/machinery/requests_console/directional/south{ + department = "Chapel"; + departmentType = 2; + name = "Chapel Requests Console" + }, +/turf/open/floor/wood, +/area/service/chapel/office) +"rWj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"rWq" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rWz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"rWU" = ( +/turf/closed/wall, +/area/service/theater) +"rWZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/mining{ + name = "Exploration Bay"; + req_one_access_txt = "31;49" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"rXb" = ( +/obj/machinery/recharger{ + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/toy/figure/warden, +/obj/structure/table, +/obj/item/radio/intercom/directional/north{ + pixel_x = 32 + }, +/obj/machinery/button/door/directional/north{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + pixel_x = -8; + req_access_txt = "3" + }, +/obj/machinery/button/door/directional/north{ + id = "prisonblast"; + name = "Prison Lockdown"; + pixel_x = 8; + req_access_txt = "2" + }, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"rXk" = ( +/obj/machinery/modular_computer/console/preset/civilian, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"rXs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rXt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "disposals sorting disposal pipe"; + sortType = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"rYu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"rYN" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Genetics"; + dir = 8; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"rZe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/library) +"rZn" = ( +/obj/structure/bed/dogbed/ian, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/mob/living/simple_animal/pet/dog/corgi/ian{ + dir = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"rZr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/starboard) +"rZF" = ( +/obj/machinery/door/airlock/external{ + name = "External Airlock"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"rZL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"rZN" = ( +/turf/closed/wall/r_wall/rust, +/area/ai_monitored/storage/satellite) +"sai" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/warden) +"sar" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/flasher/directional/west{ + id = "Cell 1"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sav" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering"; + name = "navigation beacon (Engineering Delivery)" + }, +/obj/machinery/door/window/northright{ + dir = 4; + name = "Engineering Delivery Access"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/poddoor/preopen{ + id = "Engineering"; + name = "Engineering Blast Doors" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"saK" = ( +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating, +/area/cargo/warehouse) +"sbe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"sbk" = ( +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"sbs" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/cook, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"sbB" = ( +/obj/machinery/computer/mech_bay_power_console{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sbC" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel, +/area/cargo/storage) +"sbG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"sbL" = ( +/obj/effect/turf_decal/sand/plating/lite_1, +/turf/open/floor/plating/lowpressure, +/area/space/nearstation) +"sbN" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sbR" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall, +/area/maintenance/port) +"scf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"scm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Starboard Hallway Kitchen Counter"; + dir = 4; + name = "starboard camera" + }, +/obj/structure/sign/directions/evac{ + pixel_y = 24 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"sco" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"scq" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"scy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"scA" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"scJ" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;101" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"scK" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"scR" = ( +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"scV" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/color/black, +/obj/item/crowbar/red, +/obj/item/flashlight/seclite, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"sdw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/melee/baseball_bat{ + desc = "A staple of security force interrogations."; + icon_state = "baseball_bat_metal"; + name = "kneecapper" + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"sdE" = ( +/obj/machinery/chem_heater/withbuffer{ + pixel_x = 6 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"sdL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/structure/chair/office, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sdO" = ( +/obj/structure/table, +/obj/machinery/light/small/directional/east, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/neck/stethoscope, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"sdR" = ( +/obj/item/beacon, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sdU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Hydroponics Pen"; + dir = 4; + name = "hydroponics camera" + }, +/obj/machinery/chem_dispenser/botany, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"sdY" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "packageSort2"; + name = "mail belt" + }, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"sdZ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"seh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"sei" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"sej" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"sel" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = -5 + }, +/obj/item/tank/internals/anesthetic{ + pixel_x = -5 + }, +/obj/machinery/vending/wallmed/directional/north{ + pixel_x = -32 + }, +/obj/machinery/light/directional/north, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"sen" = ( +/obj/structure/grille, +/obj/item/shard, +/turf/open/floor/plating, +/area/cargo/warehouse) +"set" = ( +/obj/machinery/computer/station_alert, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"seL" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/north, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"seQ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/pill_bottle/mutadone{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mannitol, +/obj/item/toy/figure/geneticist{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/turf_decal/siding/purple/corner, +/obj/machinery/light_switch/directional/south, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"sfh" = ( +/obj/machinery/porta_turret/ai{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/box/red, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"sfp" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/mime, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"sfI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"sfT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"sfY" = ( +/turf/closed/wall/rust, +/area/engineering/storage/backup) +"sgc" = ( +/obj/machinery/vending/cart{ + req_access_txt = "57" + }, +/obj/structure/noticeboard/directional/north, +/obj/machinery/camera{ + c_tag = "Head of Personnel's Office"; + name = "command camera" + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"sgh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Operating Theatre Secondary"; + dir = 1; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"sgm" = ( +/obj/structure/dresser, +/turf/open/floor/wood, +/area/commons/locker) +"sgE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sgT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"she" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"shg" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/locker) +"shz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/main) +"sia" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northleft{ + dir = 4; + name = "Inner Pipe Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"sim" = ( +/turf/closed/wall, +/area/service/library) +"siC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"siG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/obj/machinery/computer/atmos_control/nitrogen_tank{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"siT" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"sjJ" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"sjL" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/stamp/cmo{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/machinery/light_switch/directional/south{ + pixel_x = -8 + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"sjS" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/engine, +/area/engineering/main) +"ski" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"sko" = ( +/obj/machinery/air_sensor/nitrogen_tank, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"sky" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"skB" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"skO" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"sln" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"slz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"slK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"smG" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"smV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/siding/purple, +/turf/open/floor/plasteel/showroomfloor, +/area/science/genetics) +"sns" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/requests_console/directional/north{ + department = "Medbay"; + departmentType = 1; + name = "Medbay Requests Console" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/stasis{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery) +"snB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"snF" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "cmoprivacy"; + name = "Privacy Shutters Toggle"; + pixel_x = -24; + pixel_y = -24 + }, +/obj/machinery/button/door{ + id = "emmd"; + name = "Medical Lockdown Toggle"; + pixel_x = -40; + pixel_y = -24 + }, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/cmo) +"snK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"snP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/gateway) +"soq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"sox" = ( +/turf/closed/wall/rust, +/area/service/kitchen) +"soP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"spr" = ( +/obj/machinery/light/directional/south, +/turf/open/space, +/area/space/nearstation) +"spN" = ( +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sqr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/power/shieldwallgen, +/obj/effect/turf_decal/bot, +/obj/machinery/light/directional/west, +/obj/machinery/airalarm/directional/west, +/obj/machinery/power/shieldwallgen, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"sqC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"sqO" = ( +/obj/structure/rack, +/obj/machinery/firealarm/directional/south, +/obj/effect/spawner/random/techstorage/command_all, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/storage/tech) +"sqU" = ( +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/security/prison) +"sra" = ( +/obj/effect/mapping_helpers/airlock/unres{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + id_tag = "medbay_front_door"; + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/landmark/navigate_destination, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"srf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/virology{ + name = "Virology Access"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"srN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ssb" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"ssy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"ssU" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"stp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"stx" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/commons/storage/primary) +"stL" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"stO" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"suc" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"suu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/item/clothing/under/rank/civilian/lawyer/black{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/rank/civilian/lawyer/black, +/obj/item/clothing/neck/tie/black{ + pixel_x = 6 + }, +/obj/item/clothing/neck/tie/red, +/obj/item/clothing/mask/animal/rat/jackal{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/animal/rat/jackal, +/obj/structure/spider/stickyweb, +/obj/machinery/button/door/directional/west{ + id = "bank"; + name = "Bank Vault Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"suN" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"svc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"svh" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/storage/fancy/donut_box, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_2"; + name = "Hallway Hatch" + }, +/turf/open/floor/plating, +/area/service/kitchen) +"svC" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"svG" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos, +/obj/machinery/airlock_sensor/incinerator_atmos{ + pixel_x = -23; + pixel_y = 24 + }, +/turf/open/floor/engine, +/area/maintenance/disposal/incinerator) +"svR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/purple/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"svU" = ( +/obj/structure/bookcase/random/reference, +/turf/open/floor/wood, +/area/service/bar) +"svX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"swc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/book/bible{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/book/bible{ + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/altar_of_gods, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"swd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"swx" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"sxA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sxI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/siding/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"sxJ" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"syg" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"syk" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/carrot, +/turf/open/floor/grass, +/area/security/prison) +"syw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"syD" = ( +/obj/machinery/door/airlock/medical{ + id_tag = "Shower_2"; + name = "Shower 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/commons/toilet/restrooms) +"syK" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/main) +"szb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "brigcelldoor"; + name = "Cell Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"szy" = ( +/obj/effect/turf_decal/box/white{ + color = "#EFB341" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"szA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"szD" = ( +/obj/structure/cable, +/obj/machinery/space_heater, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"szN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/firealarm/directional/west, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"szW" = ( +/obj/machinery/door/airlock/external{ + name = "Prison External Airlock"; + req_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"sAD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/security{ + name = "Equipment Room"; + req_access_txt = "1"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sAP" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"sBa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/chair/office{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"sBj" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/structure/reagent_dispensers/servingdish, +/turf/open/floor/plasteel/white, +/area/security/prison) +"sBB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"sBG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/office) +"sBZ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"sCf" = ( +/obj/machinery/camera{ + c_tag = "Atmospherics Tank - Mix"; + dir = 4; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"sCo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door/directional/east{ + id = "teleshutter"; + name = "Teleporter Shutter Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"sCu" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"sCP" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/cargo/miningoffice) +"sDb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/stock_parts/subspace/analyzer{ + desc = "A sophisticated analyzer capable of analyzing cryptic subspace wavelengths. Shifted slightly right."; + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"sDs" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/toolbox/emergency, +/obj/item/wirerod, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"sDH" = ( +/obj/structure/table, +/obj/item/storage/box/prisoner, +/obj/item/restraints/handcuffs, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel, +/area/security/processing) +"sEg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"sEp" = ( +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sEt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/simple_animal/hostile/retaliate/ghost, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"sEI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"sEM" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"sET" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sGb" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"sGg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Xenobiology Labs"; + dir = 4; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/structure/closet/secure_closet/cytology, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"sGl" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"sGH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/rack, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/electropack, +/obj/item/assembly/signaler{ + pixel_x = 6 + }, +/obj/effect/turf_decal/bot, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/execution/education) +"sGL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot_white, +/obj/machinery/light/small/directional/west, +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_y = 5 + }, +/obj/item/clothing/under/color/grey, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sHb" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"sHA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/oxygen_output{ + dir = 4 + }, +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"sIq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sIM" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/dresser, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"sIP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/main) +"sJG" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=8"; + dir = 8; + freq = 1400; + location = "QM #1" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/oil, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/the_griffin{ + pixel_y = 32 + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"sJL" = ( +/obj/effect/turf_decal/loading_area{ + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"sKj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"sKy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"sKH" = ( +/obj/effect/turf_decal/arrows/white, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"sKK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"sKY" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"sLg" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/delivery, +/obj/machinery/newscaster/directional/north, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"sLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"sLz" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"sLF" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "garbage"; + name = "trash belt" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/recycler, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"sLL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"sLT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/mob/living/simple_animal/bot/cleanbot/medbay, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"sMk" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sMr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher/directional/west{ + id = "Cell 2"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"sMz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sMB" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"sMD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"sMR" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Filter" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"sNr" = ( +/obj/machinery/firealarm/directional/west, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"sNR" = ( +/obj/machinery/power/turbine{ + dir = 4; + luminosity = 2 + }, +/obj/structure/cable, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"sNV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/warden) +"sNY" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/toy/figure/bartender{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/rag, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"sOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plasteel, +/area/security/prison) +"sOv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"sOO" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/medical/virology) +"sPa" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"sPO" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/radio/intercom/directional/west, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"sQs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"sQD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/door/airlock{ + name = "Prison Kitchen" + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"sQQ" = ( +/turf/closed/wall/rust, +/area/engineering/storage/tech) +"sRa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/stock_parts/cell/hyper, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"sRc" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/departments/restroom{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"sRi" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/scrubbers/visible, +/turf/open/space/basic, +/area/space/nearstation) +"sRj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/cargo/warehouse) +"sRn" = ( +/obj/machinery/light/directional/east, +/obj/structure/cable, +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"sRp" = ( +/obj/effect/turf_decal/box/white{ + color = "#9FED58" + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"sRz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/remains/human, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/mob/living/simple_animal/hostile/jungle/mook{ + environment_smash = 0; + name = "deformed creature" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"sRA" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/engineering, +/obj/item/computer_disk/atmos, +/obj/item/folder, +/obj/item/stamp/ce, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"sRM" = ( +/obj/machinery/gateway/centerstation, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/command/gateway) +"sSc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sSi" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/computer/security/telescreen/entertainment/directional/south, +/obj/structure/reagent_dispensers/peppertank/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"sSm" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/north, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/server) +"sSC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"sSF" = ( +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"sTh" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"sTQ" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"sTS" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/north, +/obj/item/clothing/mask/russian_balaclava, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sUc" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/timer{ + desc = "Used to time things. Works well with contraptions which has to count down. Tick tock. But slightly shifted to the left."; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/screwdriver{ + pixel_y = 5 + }, +/obj/item/stack/cable_coil, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/pharmacy) +"sUu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"sUB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/engine_waste{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating/airless, +/area/engineering/main) +"sVj" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/atmos) +"sVn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"sVH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"sWe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"sWr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"sWY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"sXv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"sYg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/computer/price_controller, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"sYQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/main) +"sZj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"sZk" = ( +/obj/item/radio/intercom/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"sZq" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"sZQ" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"sZW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"taq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"tas" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"taL" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"taM" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"taQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tbg" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tbw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tbB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/security{ + name = "Prison Wing"; + req_access_txt = "2"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"tbJ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/multitool, +/obj/machinery/camera{ + c_tag = "Telecomms Monitoring"; + dir = 4; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/obj/machinery/requests_console/directional/west{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"tbU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tci" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tcq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tcG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tdH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tdW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"tdY" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/item/stack/rods, +/turf/open/floor/carpet/green, +/area/cargo/warehouse) +"tea" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"tef" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"tew" = ( +/obj/machinery/disposal/bin{ + desc = "A pneumatic waste disposal unit. This one leads into space!"; + name = "deathsposal unit" + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"teL" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tfm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/external{ + name = "Mining Dock Airlock"; + req_access_txt = "48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"tfu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"tfC" = ( +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/commons/fitness/recreation) +"tfL" = ( +/obj/structure/sign/departments/xenobio, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"tfR" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tfS" = ( +/obj/item/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/mirror/directional/south, +/obj/item/storage/box/donkpockets/donkpockethonk, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"tgp" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/wall, +/area/command/bridge) +"tgv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Mix to Ports" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tgK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tgU" = ( +/obj/structure/flora/rock/pile{ + icon_state = "lavarocks2" + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"thp" = ( +/turf/closed/wall/rust, +/area/service/library) +"thr" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/cargo/warehouse) +"thz" = ( +/obj/machinery/door/airlock/maintenance{ + name = "research lab maintenance"; + req_one_access_txt = "7;29" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"thE" = ( +/turf/open/floor/engine/o2, +/area/engineering/atmos) +"thU" = ( +/mob/living/simple_animal/hostile/asteroid/goliath, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"tik" = ( +/obj/structure/flora/grass/jungle, +/turf/open/floor/grass, +/area/service/chapel) +"tiq" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57" + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"tiN" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/structure/noticeboard/directional/east, +/obj/item/paper/monitorkey, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 8; + name = "engineering camera"; + network = list("ss13","engine") + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"tiX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"tje" = ( +/obj/structure/sign/warning/enginesafety, +/turf/closed/wall/r_wall, +/area/engineering/main) +"tjl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"tjp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/turf/open/floor/plating, +/area/engineering/break_room) +"tjq" = ( +/obj/machinery/suit_storage_unit/exploration, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"tkg" = ( +/obj/structure/weightmachine/weightlifter, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"tkl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research/glass{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"tkp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tky" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"tkH" = ( +/obj/machinery/vending/engivend, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tkL" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"tlv" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"tlS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"tlV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/radio/intercom/directional/north, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"tmg" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "emmd"; + name = "Emergency Medical Lockdown Shutters" + }, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/item/toy/figure/md{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"tmn" = ( +/obj/machinery/door/window/westright{ + name = "Waste Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"tmu" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tnh" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"tnC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/service/bar) +"tnH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/ai_monitored/security/armory) +"tnI" = ( +/obj/structure/table, +/obj/item/storage/bag/tray/cafeteria, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"tnS" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Chemistry South"; + dir = 1; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"tof" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"tog" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/office) +"toh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"ton" = ( +/obj/machinery/light/small/directional/north, +/obj/structure/table/optable{ + name = "Forensics Operating Table" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"toC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"toK" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security Office Lockers" + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/main) +"toU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"toV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Hydroponics Lockers"; + dir = 8; + name = "hydroponics camera" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/obj/machinery/requests_console/directional/east{ + department = "Hydroponics"; + departmentType = 2; + name = "Hydroponics Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"toZ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/tank_dispenser/oxygen{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"tpk" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/security/main) +"tpr" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"tpx" = ( +/obj/machinery/computer/security/labor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light_switch/directional/north{ + pixel_x = -7 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"tpU" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/storage/crayons, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"tqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tqQ" = ( +/obj/item/radio/intercom/directional/west, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat_interior) +"tqT" = ( +/obj/structure/flora/junglebush, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/machinery/light/directional/west, +/turf/open/floor/grass, +/area/medical/psychology) +"tsd" = ( +/obj/machinery/door/poddoor/shutters{ + id = "custodialwagon"; + name = "Custodial Bay" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"tsf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tsk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"tsn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"tsy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"tsP" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"tsV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"tsW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/obj/machinery/light/directional/west, +/obj/item/radio/intercom/directional/west, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tth" = ( +/turf/closed/wall, +/area/engineering/atmos) +"tto" = ( +/obj/machinery/door/poddoor/atmos_test_room_mainvent_1, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"ttz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"ttO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"ttR" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"ttY" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"tuj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"tuo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/noticeboard/directional/south, +/obj/machinery/power/port_gen/pacman, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"tuA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"tuD" = ( +/obj/machinery/chem_dispenser{ + layer = 2.7 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/machinery/requests_console/directional/east{ + department = "Pharmacy"; + departmentType = 2; + name = "Pharmacy Requests Console"; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"tuH" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/backpack{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/backpack, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tuL" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/chapel{ + dir = 1 + }, +/area/service/chapel) +"tvd" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tvf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/directional/south, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"tvj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/engineering/atmos) +"tvl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/port) +"tvx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"tvC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tvH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon{ + dir = 1 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/engineering/atmos) +"tvJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/structure/noticeboard/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"tvO" = ( +/obj/structure/chair/sofa/left{ + color = "#c45c57"; + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch/directional/west, +/obj/machinery/camera{ + c_tag = "Atrium Booths"; + dir = 4; + name = "diner camera" + }, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"tvT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tvU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"twl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"txm" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"txu" = ( +/obj/structure/chair/pew/right{ + dir = 1 + }, +/turf/open/floor/plasteel/chapel{ + dir = 8 + }, +/area/service/chapel) +"txC" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"txI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"txL" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/belt/utility{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tyk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tyC" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"tyE" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/crowbar/red, +/obj/item/gps/mining, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/north, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"tyQ" = ( +/obj/machinery/atmospherics/miner/plasma, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"tzf" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/fore) +"tzn" = ( +/obj/machinery/door/airlock/maintenance{ + name = "supermatter maintenance"; + req_one_access_txt = "10" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"tzx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/air_input{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"tzO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"tzU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/remains/human, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"tzV" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/structure/extinguisher_cabinet/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"tAe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"tAI" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"tBc" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "commissaryshutter"; + name = "Vacant Commissary Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/noticeboard/directional/east, +/turf/open/floor/plating, +/area/commons/vacant_room/commissary) +"tBQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "bar_1"; + name = "Bar Shutter" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/grass, +/area/service/bar) +"tBY" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Prison Cafeteria"; + dir = 1; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"tCd" = ( +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt/dust, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"tCf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"tCi" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"tCl" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"tCu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"tCz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"tDf" = ( +/obj/machinery/shower{ + dir = 4 + }, +/turf/open/floor/plastic, +/area/security/prison) +"tDn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"tDw" = ( +/obj/machinery/firealarm/directional/south, +/obj/machinery/smartfridge/organ, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"tEb" = ( +/turf/closed/wall/r_wall, +/area/command/heads_quarters/captain) +"tEd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tEA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"tEB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/portables_connector/visible/layer2{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/break_room) +"tER" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"tFc" = ( +/turf/open/floor/plasteel, +/area/security/prison) +"tFu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/structure/sink{ + dir = 4; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "maidbay"; + name = "Maid Bay Toggle" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"tFy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"tFL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/structure/noticeboard/directional/north, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/under/syndicate/tacticool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"tFY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"tGj" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/computer/chef_order, +/turf/open/floor/plasteel/showroomfloor, +/area/maintenance/central) +"tGO" = ( +/obj/machinery/suit_storage_unit/rd, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"tHi" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + name = "security disposal pipe"; + sortType = 7 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"tHB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tHI" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/solars/port/fore) +"tHP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tHT" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"tIc" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/rust, +/area/cargo/miningoffice) +"tIl" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/simple_animal/hostile/russian{ + environment_smash = 0; + loot = list(/obj/effect/mob_spawn/human/corpse/russian); + name = "Russian Mobster" + }, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"tID" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"tIK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tIM" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/storage/box/disks{ + pixel_y = 5 + }, +/obj/structure/noticeboard/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/genetics) +"tIV" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"tIY" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/engine, +/area/engineering/main) +"tJb" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/latex, +/obj/item/paper/guides/jobs/medical/morgue, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/pen, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"tJc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tJe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/supermatter) +"tJA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"tJB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/security/warden) +"tJH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"tJP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"tJV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced, +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/obj/machinery/button/door/directional/north{ + id = "xeno3"; + name = "Creature Cell 3 Toggle"; + pixel_x = 24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"tKe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tKm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tKx" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/wardrobe/mixed, +/obj/machinery/light/small/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"tKT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/curator_wardrobe, +/obj/machinery/firealarm/directional/east, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/north, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tKZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/commons/storage/primary) +"tLz" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"tLS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tMa" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/cargo/storage) +"tMj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stock_parts/cell/high, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"tMH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/computer/atmos_control/nitrous_tank{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"tMM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"tNa" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/item/pen, +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Security Desk"; + req_one_access_txt = "63" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"tNt" = ( +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"tNu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"tNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"tNL" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"tNO" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"tNT" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4; + pixel_x = 5 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tNZ" = ( +/turf/closed/wall, +/area/commons/locker) +"tOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tOm" = ( +/obj/machinery/disposal/delivery_chute{ + desc = "Only the worthy may claim the belt"; + dir = 8; + name = "PubbyStation Memorial Trash Chute" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"tON" = ( +/obj/machinery/modular_computer/console/preset/cargochat/engineering, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tOS" = ( +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engineering/atmos) +"tPt" = ( +/obj/structure/bookcase/random/fiction, +/turf/open/floor/wood, +/area/service/bar) +"tPL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"tPZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/bridge) +"tQi" = ( +/obj/machinery/doppler_array/research/science{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"tQw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"tQX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"tQY" = ( +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel, +/area/security/main) +"tRf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Closet"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"tRg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/structure/spider/stickyweb, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"tRk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"tRS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tSd" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"tSg" = ( +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/obj/item/stamp/captain{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen/fountain/captain, +/obj/item/radio/intercom/directional/south, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"tSu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/librarian, +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/library) +"tSA" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"tSE" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port) +"tSH" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/plasma, +/area/engineering/atmos) +"tSJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/reflector/box/anchored{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"tSY" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/machinery/light/directional/east, +/turf/open/floor/circuit/green/telecomms/mainframe, +/area/tcommsat/server) +"tTi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Freight Mining Airlock" + }, +/obj/structure/barricade/wooden/crude, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"tTn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tTB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/bz, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/button/door/directional/south{ + id = "xeno5"; + name = "Creature Cell 5 Toggle"; + pixel_x = -24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"tUc" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"tUl" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/ai/directional/north, +/obj/effect/spawner/random/techstorage/engineering_all, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"tUU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/security/detectives_office) +"tVe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/radio/intercom/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tVl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"tVB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/button/door/directional/north{ + id = "transittube_ai"; + name = "Transit Tube Lockdown Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"tVI" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/cargo/warehouse) +"tVR" = ( +/obj/item/shrapnel/bullet, +/turf/open/floor/plating, +/area/security/prison) +"tVX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Teleporter Access"; + req_one_access_txt = "17;19" + }, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"tWd" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/turf/open/floor/grass, +/area/service/chapel) +"tWl" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"tWy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tXc" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"tXk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/storage/briefcase, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"tXn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/machinery/light/directional/west, +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/fore) +"tXA" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm/directional/west, +/obj/machinery/newscaster/directional/north, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/under/costume/lobster, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"tXD" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + color = "#c45c57"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment/directional/west, +/obj/effect/landmark/start/chaplain, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"tXI" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/effect/mapping_helpers/airlock/abandoned, +/obj/structure/barricade/wooden/crude, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"tXO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"tXW" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"tYm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"tYw" = ( +/turf/closed/wall, +/area/tcommsat/computer) +"tYF" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/landmark/start/exploration, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_mission) +"tYM" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology Entrance"; + dir = 1; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"tYN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = 3 + }, +/obj/item/circuitboard/machine/exoscanner, +/obj/item/circuitboard/machine/exoscanner{ + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"tYO" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"tYW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"tZe" = ( +/turf/closed/wall, +/area/service/chapel) +"tZH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"uab" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/directions/supply{ + dir = 1; + pixel_y = 24 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"uaj" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uar" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uay" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"uaH" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 3"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine, +/area/science/xenobiology) +"uaJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"uaL" = ( +/obj/machinery/light/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Arrivals Shuttle Dock"; + dir = 4; + name = "shuttle camera" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uaP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/chair/office{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uaW" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/service/kitchen) +"uaZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ubr" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ubx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 2; + name = "robotics sorting disposal pipe"; + sortType = 14 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"ucc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/central) +"ucC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"ucO" = ( +/turf/closed/wall/r_wall/rust, +/area/engineering/main) +"ucW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"udi" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped/critical{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"udj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"udp" = ( +/obj/structure/closet/secure_closet/security/science, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = 26 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/science/research) +"udv" = ( +/obj/machinery/door/poddoor/preopen{ + id = "gravity"; + name = "Gravity Generator Blast Door" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"udx" = ( +/obj/structure/table/wood, +/obj/structure/mirror/directional/west, +/obj/item/food/pie/cream, +/obj/item/clothing/head/lobsterhat, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"uef" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/analyzer{ + pixel_y = 4 + }, +/obj/item/analyzer{ + pixel_x = 2 + }, +/obj/machinery/requests_console/directional/west{ + department = "Tool Storage"; + name = "Tool Storage Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"uen" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"ueE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"ueM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"ufi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/item/radio/intercom/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"ufq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/storage) +"ufz" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai_upload"; + icon_state = "control_stun"; + name = "AI Upload turret control"; + pixel_y = -24 + }, +/obj/machinery/camera/motion{ + c_tag = "AI Upload Foyer"; + dir = 4; + name = "upload camera"; + network = list("aiupload") + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used for watching the AI Upload."; + dir = 4; + name = "AI Upload Monitor"; + network = list("aiupload"); + pixel_x = -28 + }, +/obj/effect/landmark/start/cyborg, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"ufN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Freight Airlock" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"ufQ" = ( +/obj/structure/sign/departments/cargo, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"ugA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/pipe_dispenser, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"ugB" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"ugS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"uhd" = ( +/obj/structure/table, +/obj/item/radio{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/radio{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uhf" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uhj" = ( +/obj/machinery/power/smes{ + capacity = 9e+006; + charge = 10000 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"uhy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uhC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 1 + }, +/obj/machinery/door/window{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"uhO" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"uie" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"uik" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/computer/security/telescreen{ + desc = "Used for monitoring medbay to ensure patient safety."; + dir = 1; + name = "Medbay Monitor"; + network = list("medical") + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/medical) +"uiT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/taperecorder{ + pixel_x = 5 + }, +/obj/structure/table, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"uiX" = ( +/obj/structure/flora/rock/pile{ + icon_state = "basalt" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"ujx" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Telecomms Server Room"; + dir = 8; + name = "telecomms camera"; + network = list("ss13","tcomms") + }, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"ujD" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"ujR" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"ujW" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/button/door/atmos_test_room_mainvent_1{ + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"ujY" = ( +/obj/machinery/light_switch/directional/east, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/main) +"ukq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/wood, +/turf/open/floor/plating, +/area/cargo/warehouse) +"uku" = ( +/turf/open/floor/plating/asteroid/airless, +/area/space) +"ukv" = ( +/obj/machinery/power/apc/auto_name/directional/south, +/obj/structure/cable, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/book/manual/wiki/atmospherics, +/obj/item/stack/sheet/rglass{ + amount = 20; + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"ukD" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/book/manual/chef_recipes, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"ukN" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Gas to Mix" + }, +/turf/open/floor/engine, +/area/engineering/main) +"ulw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"ulN" = ( +/obj/machinery/door/airlock/grunge{ + name = "Cell 3" + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"umb" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch/directional/west{ + pixel_y = -26 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"umc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"ums" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"uns" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/incinerator_input{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"unM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"unY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Tool Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"uou" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"uox" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue, +/obj/item/clipboard, +/obj/item/folder/white{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/blue, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"uoN" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Prisoner Locker" + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/prison) +"uoT" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"upa" = ( +/obj/structure/table, +/obj/item/multitool/circuit{ + pixel_x = -8 + }, +/obj/item/multitool/circuit{ + pixel_x = -4 + }, +/obj/item/multitool/circuit, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm/directional/south, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"upp" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plating/asteroid, +/area/maintenance/fore) +"upx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/siding/red, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/science/research) +"uqb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/courtroom) +"uqd" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/structure/cable, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/locked, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"uqv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"uqO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"uqP" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/grass, +/area/service/chapel) +"urc" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"urC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/turf/open/floor/plating, +/area/maintenance/port) +"urX" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/dark/visible, +/turf/open/floor/engine, +/area/engineering/main) +"usk" = ( +/obj/structure/dresser, +/obj/machinery/light/small/directional/north, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"usm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"usn" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"usI" = ( +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"usM" = ( +/turf/closed/wall/rust, +/area/command/bridge) +"ute" = ( +/obj/machinery/computer/turbine_computer{ + dir = 4; + id = "incineratorturbine" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"utw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/security/prison) +"utB" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall, +/area/maintenance/disposal/incinerator) +"utD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"utE" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"utH" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/directional/north, +/obj/machinery/light_switch/directional/north, +/obj/item/pickaxe/mini, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uui" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"uuH" = ( +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uuQ" = ( +/turf/closed/wall, +/area/service/kitchen) +"uvb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"uvi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/command/storage/eva) +"uvl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/gateway) +"uvz" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"uvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"uwh" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/engineering) +"uwB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm/directional/west, +/obj/effect/spawner/random/vending/snackvend, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"uwD" = ( +/obj/machinery/vending/boozeomat, +/turf/closed/wall, +/area/service/bar) +"uwS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/library) +"uxA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"uxD" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"uxJ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/structure/chair/wood{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"uxN" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"uxR" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 11 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 10; + pixel_y = 5 + }, +/obj/item/storage/box/beakers/large_beakers{ + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/storage/box/beakers{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"uyk" = ( +/obj/machinery/door/airlock/atmos/glass{ + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"uyz" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"uyR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/kirbyplants, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uyZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Air to Distro" + }, +/obj/structure/sign/warning/fire{ + pixel_x = 32 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics Distribution Loop"; + dir = 8; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uzc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Pharmacy"; + req_access_txt = "5; 69" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"uzl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/engineering{ + name = "Telecomms Storage"; + req_access_txt = "61" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"uzC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/camera{ + c_tag = "Laser Room Port"; + dir = 1; + name = "laser room camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"uzL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Unit_3Privacy"; + name = "Unit 3 Privacy Shutter" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uAg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"uAj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"uAo" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"uAx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"uAR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"uAU" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/siding/purple/corner, +/turf/open/floor/plasteel/showroomfloor, +/area/science/lab) +"uBb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/conveyor_switch/oneway{ + id = "NTMSLoad2"; + name = "on ramp"; + pixel_x = 8; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"uBc" = ( +/obj/structure/frame/computer{ + anchored = 1; + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"uBm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/library) +"uBI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"uBP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"uBZ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"uCh" = ( +/obj/structure/table, +/obj/item/ai_module/supplied/quarantine, +/obj/machinery/flasher/directional/east{ + id = "AI"; + name = "Meatbag Pacifier"; + pixel_y = -26 + }, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east{ + broadcasting = 1; + frequency = 1447; + name = "Private Channel" + }, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/turret_protected/ai_upload) +"uCt" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/service/chapel/office) +"uCw" = ( +/obj/structure/plaque/static_plaque/atmos, +/turf/closed/wall/rust, +/area/engineering/atmos) +"uCH" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/computer/piratepad_control/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"uCQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/light/small/directional/east, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/obj/machinery/computer/operating{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"uCR" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"uDs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + name = "virology sorting disposal pipe"; + sortType = 27 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"uDJ" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"uDO" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/lab) +"uDV" = ( +/obj/structure/water_source/puddle, +/obj/structure/flora/ausbushes/reedbush{ + pixel_y = 5 + }, +/turf/open/floor/grass, +/area/security/prison) +"uEa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uEG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light/directional/east, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/warden) +"uEH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"uEI" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/potato, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"uEM" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"uFB" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/locker) +"uFR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uFU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"uGe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uGr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uGx" = ( +/turf/closed/wall/rust, +/area/service/hydroponics) +"uGP" = ( +/obj/structure/sign/departments/security{ + pixel_y = -32 + }, +/obj/structure/flora/grass/jungle/b, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uGZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"uHe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uHl" = ( +/turf/closed/wall/r_wall, +/area/engineering/break_room) +"uHN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/main) +"uHR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery) +"uHZ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"uIj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"uIp" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/radio{ + desc = "An old handheld radio. You could use it, if you really wanted to."; + icon_state = "radio"; + name = "old radio" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"uIs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"uJh" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"uJr" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"uJt" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/firealarm/directional/east, +/obj/machinery/camera{ + c_tag = "Aft Hallway Engineering Venders"; + dir = 8; + name = "aft camera" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"uJW" = ( +/obj/item/bedsheet/red, +/obj/structure/bed, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/prisoner, +/turf/open/floor/plasteel, +/area/security/prison/safe) +"uKm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"uKy" = ( +/turf/open/floor/engine, +/area/engineering/main) +"uKH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"uKX" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem_lockdown"; + name = "Chemistry shutters" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port) +"uLD" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/suit_storage_unit/engine, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uLH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"uLI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/dest_tagger, +/obj/item/dest_tagger, +/obj/machinery/airalarm/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/cargo/sorting) +"uLL" = ( +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/caution/stand_clear, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/science/mixing/chamber) +"uLS" = ( +/obj/machinery/door/airlock/external{ + name = "Engineering External Airlock"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uMr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/firealarm/directional/south, +/obj/machinery/light/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"uNl" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"uNr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"uNu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"uNA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/engineering/atmos) +"uNB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/light/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark/corner{ + dir = 4 + }, +/area/hallway/primary/port) +"uNP" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uNQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"uOs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uOG" = ( +/obj/machinery/door/window/southleft{ + name = "Mass Driver Door"; + req_access_txt = "8" + }, +/obj/effect/turf_decal/loading_area, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"uOP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"uOW" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high, +/obj/item/screwdriver{ + pixel_y = 18 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/radio/intercom/directional/south, +/obj/machinery/firealarm/directional/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"uPV" = ( +/obj/structure/table/reinforced, +/obj/machinery/syndicatebomb/training, +/obj/item/wirecutters, +/turf/open/floor/plasteel/dark, +/area/security/main) +"uQa" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"uQc" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uQn" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uQs" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/rust, +/area/maintenance/disposal) +"uQv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"uQB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"uQY" = ( +/obj/structure/closet/crate/medical, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plating, +/area/maintenance/port) +"uRx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"uRK" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/east, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"uRP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible, +/turf/open/floor/plating, +/area/engineering/atmos) +"uSp" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -24 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard) +"uSL" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"uTl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/machinery/skill_station, +/turf/open/floor/plasteel/dark, +/area/service/library) +"uTp" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/newscaster/directional/west, +/obj/machinery/button/door/directional/west{ + id = "Cabin_4Privacy"; + name = "Cabin 4 Privacy Toggle"; + pixel_y = -24 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/locker) +"uTL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/structure/grille/broken, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"uTO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"uTP" = ( +/obj/machinery/camera{ + c_tag = "Xenobiology Cell 6"; + dir = 8; + name = "xenobiology camera"; + network = list("ss13","rd","xeno") + }, +/obj/machinery/light/small/directional/east, +/turf/open/floor/engine, +/area/science/xenobiology) +"uUx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/box, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"uVc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/safe{ + pixel_x = 3 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/stack/spacecash/c500{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/storage/belt/bandolier, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"uVC" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"uWd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"uWx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"uXa" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/rust, +/area/commons/fitness/recreation) +"uXc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/washing_machine, +/obj/structure/cable, +/turf/open/floor/plasteel/cafeteria, +/area/security/prison) +"uXE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"uXO" = ( +/obj/structure/table, +/obj/item/crowbar/red, +/obj/item/wrench, +/obj/item/restraints/handcuffs, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Departures Holding Area"; + name = "shuttle camera" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"uYe" = ( +/obj/machinery/door/morgue{ + name = "Private Study"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/library) +"uZa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"uZg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/clothing/head/welding, +/obj/item/clothing/glasses/welding, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"uZu" = ( +/obj/machinery/announcement_system, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"uZY" = ( +/obj/machinery/light/small/directional/north, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/aft) +"vad" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"vaK" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/photocopier, +/obj/item/newspaper{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/newspaper, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port) +"vaP" = ( +/obj/item/storage/box/chemimp{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/storage/box/trackimp{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/south, +/obj/structure/reagent_dispensers/peppertank/directional/south, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"vaU" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hos) +"vbp" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/chef_wardrobe, +/obj/structure/extinguisher_cabinet/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"vbD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tank/internals/plasmaman/belt/full, +/obj/structure/table, +/obj/structure/sign/poster/contraband/rebels_unite{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner{ + dir = 1 + }, +/obj/effect/turf_decal/trimline/purple/filled/corner, +/obj/item/flashlight/lamp, +/turf/open/floor/plating/plasma/rust, +/area/maintenance/space_hut/plasmaman) +"vbK" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"vbL" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom/directional/north, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vbP" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"vbU" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"vcb" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"vcc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vce" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vcs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/recharger, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"vcA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"vcO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/flasher/directional/west{ + id = "Cell 4"; + name = "Prisoner Pacifier" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"vdd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vdu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vdA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/wood, +/area/service/library) +"vdJ" = ( +/obj/machinery/door/poddoor/shutters{ + id = "gatewayshutters"; + name = "Gateway Chamber Shutters" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door/directional/west{ + id = "gatewayshutters"; + name = "Gateway Shutters"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"vdK" = ( +/obj/structure/flora/ausbushes/palebush{ + icon_state = "fullgrass_2" + }, +/obj/structure/flora/grass/jungle{ + icon_state = "grassb5" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"vdS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vea" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/science/misc_lab) +"vee" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"ver" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"veJ" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vfe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vfn" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/machinery/exodrone_launcher, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vfG" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/seeds/random{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/seeds/wheat{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/seeds/sugarcane{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/seeds/potato{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"vfO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"vfQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"vgr" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chemistry_shutters"; + name = "Chemistry Lobby Shutters" + }, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 69" + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/pharmacy) +"vgz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"vgH" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/monitored/mix_output{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"vgP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Departure Shuttle Airlock" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"vgT" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "hopqueue"; + name = "Queue Shutters" + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"vhc" = ( +/obj/structure/closet/secure_closet/security/cargo, +/obj/effect/turf_decal/delivery, +/obj/item/crowbar, +/obj/item/book/manual/wiki/security_space_law, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm/directional/north{ + pixel_x = 32 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/supply) +"vhk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/engineering/main) +"vhM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/window/eastleft{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"vhR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Bar Storage"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/navigate_destination, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vij" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"viq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing, +/turf/open/space/basic, +/area/space/nearstation) +"viF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/food/donut, +/obj/item/inspector, +/turf/open/floor/plasteel/dark, +/area/security/main) +"viN" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"vjc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"vjk" = ( +/obj/machinery/door/airlock/command{ + name = "Gateway"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"vjp" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Gas to Cold Loop" + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"vju" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"vjy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vki" = ( +/obj/structure/bed, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/right, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/bedsheet/medical, +/obj/machinery/light/directional/east, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/structure/curtain, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"vkJ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"vkN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/main) +"vkY" = ( +/obj/structure/girder/reinforced, +/turf/open/space/basic, +/area/space/nearstation) +"vlS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "rdprivacy"; + name = "Director's Privacy Blast Door" + }, +/turf/open/floor/plating, +/area/command/heads_quarters/rd) +"vmb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vmf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"vmo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"vmq" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/start/clown, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"vmE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"vmU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"vnd" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"vnk" = ( +/obj/machinery/door/airlock/engineering/glass/critical{ + heat_proof = 1; + name = "Supermatter Chamber"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engineering/supermatter) +"vnq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/light/small/directional/west, +/obj/machinery/meter/atmos/layer4{ + name = "gas flow meter" + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"vnv" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"vnx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vnA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"vnK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/hop) +"vnQ" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/west, +/obj/machinery/mass_driver{ + dir = 4; + id = "toxinsdriver" + }, +/turf/open/floor/plating, +/area/science/misc_lab) +"vnR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"vnS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table, +/obj/item/stack/sheet/iron/fifty, +/obj/item/stack/sheet/iron/fifty, +/obj/item/construction/plumbing, +/obj/item/construction/plumbing, +/obj/machinery/light_switch/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"voc" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/chemistry) +"voi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 11 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"voS" = ( +/obj/effect/decal/cleanable/blood/gibs/old, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"vpg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"vpn" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/light_switch/directional/east{ + pixel_y = -6 + }, +/obj/machinery/requests_console/directional/north{ + department = "Detective's Office"; + name = "Detective Requests Console" + }, +/obj/machinery/button/door/directional/east{ + id = "detective_shutters"; + name = "Detective's Privacy Toggle"; + pixel_y = 6; + req_access_txt = "4" + }, +/turf/open/floor/wood, +/area/security/detectives_office) +"vqb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vqk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"vqR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vqW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vqZ" = ( +/obj/machinery/rnd/production/circuit_imprinter, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vrv" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"vrw" = ( +/obj/machinery/vendor/exploration, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"vrU" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/status_display/evac/directional/north, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"vsF" = ( +/obj/machinery/light/directional/north, +/obj/effect/spawner/structure/window/hollow/reinforced/middle{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"vsH" = ( +/obj/structure/bodycontainer/morgue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot_white, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"vte" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/brute{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastleft{ + name = "First-Aid Supplies"; + req_access_txt = "5" + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"vtp" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"vtw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"vtN" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/barsign{ + pixel_y = 32; + req_access = null; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vtT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"vtW" = ( +/obj/machinery/chem_heater/withbuffer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/button/door/directional/north{ + id = "xeno1"; + name = "Creature Cell 1 Toggle"; + pixel_x = -24; + req_access_txt = "55" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"vup" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/components/trinary/mixer{ + name = "plasma mixer" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/disposal/incinerator) +"vuR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vuX" = ( +/obj/effect/turf_decal/box/corners, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"vvq" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/lawyer, +/turf/open/floor/carpet/green, +/area/lawoffice) +"vvU" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Hallway" + }, +/obj/structure/sign/departments/engineering{ + pixel_x = 32 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"vwk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink{ + pixel_y = 29 + }, +/obj/machinery/camera{ + c_tag = "Prison Maintenance"; + dir = 4; + network = list("ss13","prison") + }, +/mob/living/simple_animal/mouse/brown/tom{ + name = "Jerm" + }, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"vwn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vwG" = ( +/turf/closed/wall/r_wall/rust, +/area/command/heads_quarters/ce) +"vwN" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"vwP" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/machinery/camera{ + c_tag = "Aft Hallway Engineering Doors"; + dir = 1; + name = "aft camera" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vxg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"vxw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vxD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/box, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vxT" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/mousetraps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/toy/figure/janitor{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 8 + }, +/obj/item/restraints/legcuffs/beartrap{ + pixel_y = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"vxV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"vyr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vyw" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"vyI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/light/small/directional/north, +/obj/item/clothing/suit/toggle/suspenders, +/obj/item/clothing/head/papersack/smiley, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"vyL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/restaurant_portal/restaurant, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"vyM" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"vzc" = ( +/obj/machinery/atmospherics/components/trinary/filter{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/small/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/maintenance/aft) +"vzF" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden, +/turf/open/floor/engine, +/area/science/mixing/chamber) +"vzX" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/stack/package_wrap, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/item/healthanalyzer, +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + name = "science camera"; + network = list("ss13","rd") + }, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"vAx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab) +"vAB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"vAL" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vAM" = ( +/obj/effect/turf_decal/trimline/red/filled/line, +/turf/open/floor/plasteel/white, +/area/security/prison) +"vAO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"vAY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"vBf" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vBt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"vBv" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/machinery/airalarm/directional/north, +/turf/open/floor/plasteel/dark, +/area/construction/mining/aux_base) +"vBy" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"vBT" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;101" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"vCk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/structure/rack{ + color = "#999999" + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/item/storage/belt/shotgun/buckshot{ + pixel_x = -7; + pixel_y = -5 + }, +/obj/item/storage/belt/shotgun/bullet{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"vCS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vDb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 5 + }, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vDc" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/prison) +"vDm" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/carpet/green, +/area/lawoffice) +"vDn" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Council Chamber"; + dir = 8; + name = "command camera" + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"vDw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/flora/grass/jungle, +/obj/machinery/light/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"vDB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vDH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/south, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"vEj" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "engsm"; + name = "Radiation Chamber Shutters" + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engineering/supermatter) +"vEl" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"vEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"vEF" = ( +/obj/effect/turf_decal/loading_area{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "External Gas to Loop" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"vEU" = ( +/obj/machinery/door/airlock/command/glass{ + name = "Bridge"; + req_access_txt = "19" + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vFo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"vFw" = ( +/obj/structure/table/wood, +/obj/item/storage/box/seccarts{ + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/whiskey{ + desc = "A bottle of whiskey. There's a label that reads 'tears' taped to the front."; + name = "Bottle of Tears"; + pixel_x = 3; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_y = 2 + }, +/obj/machinery/keycard_auth/directional/south{ + pixel_x = -6 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/machinery/button/door/directional/south{ + id = "hosspace"; + name = "Space Blast Door Toggle"; + pixel_x = 8 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"vFz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engineering/main) +"vFR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/execution/education) +"vGa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/clothing/under/color/grey{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/under/color/grey, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"vGl" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/box, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"vGA" = ( +/obj/machinery/camera{ + c_tag = "Prison Recreation"; + dir = 4; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"vHh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"vHK" = ( +/obj/structure/table, +/obj/item/clothing/gloves/color/yellow, +/obj/item/electronics/apc, +/obj/item/electronics/airlock{ + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/engine, +/area/engineering/storage/tech) +"vIb" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/item/stack/sheet/iron/ten{ + amount = 5 + }, +/obj/item/assembly/prox_sensor, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door/directional/west{ + id = "sparemech"; + name = "Abandoned Mech Bay Toggle" + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vIc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"vIe" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"vIj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/machinery/camera{ + c_tag = "Prison Labor"; + network = list("ss13","prison") + }, +/turf/open/floor/plating, +/area/security/prison) +"vIn" = ( +/obj/effect/landmark/event_spawn, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/service/chapel/office) +"vIz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/north, +/obj/structure/cable, +/obj/machinery/medical_kiosk{ + pixel_y = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"vJk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"vJH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"vJI" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/displaycase/forsale, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"vJJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"vJY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"vKb" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/purple/visible{ + dir = 8 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vKc" = ( +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/table, +/obj/item/clipboard, +/obj/item/geiger_counter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/toy/figure/ninja{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/pen, +/obj/item/radio/intercom/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"vKh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/camera{ + c_tag = "Prison Isolation Cell"; + dir = 4; + network = list("ss13","prison","isolation") + }, +/obj/structure/toilet/greyscale{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"vKw" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"vKz" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_y = 4 + }, +/obj/machinery/status_display/evac/directional/north, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/carpet, +/area/medical/psychology) +"vKC" = ( +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Hydroponics" + }, +/obj/structure/plasticflaps/opaque, +/obj/machinery/door/window/eastright{ + name = "Hydroponics Delivery Access"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"vLb" = ( +/obj/machinery/deepfryer, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"vLz" = ( +/obj/machinery/door/airlock/maintenance{ + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"vMt" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/airalarm/directional/west, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"vMJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vMP" = ( +/obj/machinery/airalarm/directional/south, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/turf/open/floor/engine, +/area/tcommsat/computer) +"vNn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 4; + name = "emergency shower" + }, +/obj/structure/mirror/directional/north, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"vNE" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/bot_white/left, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/central) +"vOg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"vOt" = ( +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"vOv" = ( +/obj/machinery/hydroponics/soil, +/obj/item/seeds/ambrosia, +/turf/open/floor/grass, +/area/security/prison) +"vOE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/port/aft) +"vPi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library" + }, +/turf/open/floor/plasteel/dark, +/area/service/library) +"vPm" = ( +/obj/effect/landmark/start/ai/secondary, +/obj/item/radio/intercom/directional/north{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -8 + }, +/obj/item/radio/intercom/directional/west{ + freerange = 1; + listening = 0; + name = "Common Channel" + }, +/obj/item/radio/intercom/directional/south{ + freerange = 1; + frequency = 1447; + listening = 0; + name = "Private Channel"; + pixel_x = -8 + }, +/obj/machinery/door/window{ + base_state = "rightsecure"; + dir = 4; + icon_state = "rightsecure"; + layer = 4.1; + name = "Secondary AI Core Access"; + obj_integrity = 300; + pixel_x = 4; + req_access_txt = "16" + }, +/turf/open/floor/circuit/red, +/area/ai_monitored/turret_protected/ai) +"vPL" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"vQh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/food/flour, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"vQB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"vQF" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"vRa" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/solars/port/aft) +"vRn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"vRt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/door/airlock/security/glass{ + id_tag = "innerbrig"; + name = "Brig"; + req_access_txt = "63"; + security_level = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"vRA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"vRC" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"vRY" = ( +/obj/item/kirbyplants{ + icon_state = "plant-18" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"vSd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "Isolation"; + name = "Isolation Shutters" + }, +/turf/open/floor/plating, +/area/security/prison/safe) +"vSe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"vSu" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small/directional/north, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"vSx" = ( +/turf/closed/wall/rust, +/area/service/bar) +"vSH" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vSW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/storage/box/lights/mixed{ + pixel_y = 6 + }, +/obj/machinery/door/window/westright{ + dir = 4; + name = "Cargo Desk"; + req_access_txt = "50" + }, +/turf/open/floor/plating, +/area/cargo/office) +"vTb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/fore) +"vTi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Fore Hallway Vault"; + dir = 1; + name = "fore camera" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"vTl" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible, +/turf/closed/wall, +/area/engineering/atmos) +"vTz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/cargo/storage) +"vTF" = ( +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/lipstick/random{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/lipstick/random{ + pixel_x = 6 + }, +/obj/item/pen, +/obj/structure/sign/poster/official/do_not_question{ + pixel_x = 30 + }, +/obj/machinery/camera{ + c_tag = "Backstage"; + name = "diner camera" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/theater) +"vTI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vTQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/mechbay) +"vTT" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "E.V.A. Storage"; + dir = 8; + name = "command camera" + }, +/obj/machinery/light/directional/east, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/obj/machinery/status_display/ai/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"vUd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/extinguisher_cabinet/directional/south{ + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"vUn" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"vUt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/directional/north, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"vVq" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/bar/atrium) +"vVu" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"vVX" = ( +/obj/structure/flora/ausbushes/palebush{ + icon_state = "fullgrass_2" + }, +/obj/structure/flora/ausbushes/palebush{ + icon_state = "genericbush_1" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"vVZ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"vWa" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/siding/blue/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"vWq" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/bodybags{ + pixel_y = 5 + }, +/obj/item/shovel, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"vWz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"vWK" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel) +"vWN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"vWP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"vWR" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"vXv" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/ywflowers, +/obj/item/plant_analyzer, +/turf/open/floor/grass, +/area/security/prison) +"vXC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/plasteel/dark, +/area/security/main) +"vXS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"vYa" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/obj/machinery/newscaster/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"vYn" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"vZl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wad" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/cargo/storage) +"waA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"waQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"waX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wbd" = ( +/obj/machinery/computer/med_data, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/wood, +/area/security/detectives_office) +"wbe" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/quartermaster, +/obj/structure/chair/office, +/turf/open/floor/plasteel, +/area/cargo/qm) +"wbm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wbL" = ( +/obj/effect/turf_decal/loading_area{ + pixel_y = -5 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/storage) +"wbW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + name = "Theater sorting disposal pipe"; + sortType = 18 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"wcd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"wct" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"wcH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"wdd" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wdi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/stack/sheet/plasteel/fifty{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/sheet/rglass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/item/stock_parts/cell/high, +/obj/item/stock_parts/cell/high, +/obj/machinery/camera{ + c_tag = "Engineering Storage"; + dir = 1; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/machinery/light_switch/directional/east, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/stock_parts/cell/emproof/empty{ + pixel_x = -6; + pixel_y = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wdE" = ( +/obj/structure/bookcase/random/fiction, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/wood, +/area/service/bar) +"wdH" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"wei" = ( +/turf/closed/wall/rust, +/area/cargo/sorting) +"wev" = ( +/turf/open/floor/plating, +/area/engineering/atmos) +"weD" = ( +/obj/machinery/modular_computer/console/preset/engineering{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"weX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/assistant, +/obj/structure/cable, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel) +"wfg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/west, +/obj/machinery/computer/mechpad{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/button/door/directional/south{ + id = "Skynet_launch"; + name = "Mech Bay Door Control" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"wfj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2"; + name = "on ramp" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/supply{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wfB" = ( +/obj/structure/plasticflaps/opaque, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Robotics" + }, +/obj/machinery/door/window/eastleft{ + name = "Robotics Delivery Access"; + req_access_txt = "29" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wfH" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/grass, +/area/service/chapel) +"wfK" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/item/stack/sheet/iron/fifty{ + pixel_y = 5; + pixel_x = -3 + }, +/obj/item/stack/sheet/mineral/wood/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/structure/closet/crate/decorations, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wgo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "justiceshutter"; + name = "Justice Shutter" + }, +/turf/open/floor/plating, +/area/security/execution/education) +"wgI" = ( +/obj/machinery/conveyor{ + id = "NTMSLoad2"; + name = "on ramp" + }, +/obj/machinery/door/poddoor{ + id = "freight_port"; + name = "Freight Bay Blast door" + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wgL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/teleporter) +"wgQ" = ( +/obj/effect/decal/cleanable/ash, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) +"whc" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/east, +/obj/item/radio/intercom/directional/east, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"whm" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"why" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/light_switch/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera/motion{ + c_tag = "Vault"; + dir = 1; + name = "vault camera"; + network = list("vault") + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"wig" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/box/lights/mixed{ + pixel_y = 5 + }, +/obj/item/stack/package_wrap, +/obj/item/hand_labeler, +/obj/item/storage/box/shipping{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"wir" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"wje" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/vending/wallmed/directional/east, +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"wjm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/command/storage/eva) +"wjn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/toolbox/electrical{ + pixel_y = 5 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"wjq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Chamber"; + req_one_access_txt = "19; 61" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/gravity_generator) +"wjs" = ( +/obj/machinery/ai_slipper{ + uses = 10 + }, +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"wjw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/atmos_control/oxygen_tank{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/engineering/atmos) +"wjU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-02"; + pixel_y = 3 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"wjW" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/pen{ + pixel_x = 8; + pixel_y = 5 + }, +/obj/item/pen/red{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/toy/figure/hos, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"wkw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + name = "Crematorium"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wkB" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen"; + name = "Serving Hatch" + }, +/obj/item/toy/figure/chef, +/turf/open/floor/plating, +/area/service/kitchen) +"wkC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "kitchen_2"; + name = "Hallway Hatch" + }, +/obj/structure/window/reinforced, +/obj/item/food/pie/cream, +/turf/open/floor/plating, +/area/service/kitchen) +"wkN" = ( +/turf/closed/wall, +/area/cargo/miningoffice) +"wle" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/qm) +"wlt" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/turf/open/floor/wood, +/area/lawoffice) +"wlK" = ( +/obj/machinery/atmospherics/pipe/layer_manifold/supply/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"wlP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/item/storage/photo_album/captain, +/obj/machinery/newscaster/directional/east, +/obj/item/disk/nuclear{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/camera, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"wlV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/medical/medbay/lobby) +"wmi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/table/wood, +/obj/item/clipboard{ + pixel_x = 4 + }, +/obj/item/stack/spacecash/c50{ + pixel_y = 8 + }, +/obj/item/stack/spacecash/c50, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"wmz" = ( +/obj/machinery/door/airlock/external{ + name = "Supply Dock Airlock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wmA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"wmG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"wmK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"wnR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/command/heads_quarters/ce) +"wnU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/machinery/newscaster/directional/west, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/port) +"wog" = ( +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/main) +"woi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"wol" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"woB" = ( +/obj/machinery/door/poddoor/shutters/preopen{ + id = "ceprivate"; + name = "Chief Engineer's Privacy Shutters" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"woH" = ( +/mob/living/simple_animal/hostile/carp{ + environment_smash = 0; + name = "Tuna"; + real_name = "Tuna" + }, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"woP" = ( +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wpg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai_upload) +"wpn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engineering/atmos) +"wpD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"wpH" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wqn" = ( +/obj/machinery/suit_storage_unit/hos, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/obj/item/storage/secure/safe/hos{ + pixel_x = 36; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hos) +"wqt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/security/warden) +"wqH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/port/fore) +"wrb" = ( +/turf/open/floor/engine/vacuum, +/area/engineering/atmos) +"wrf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"wrp" = ( +/obj/structure/chair/office{ + dir = 4 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"wrr" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor/shutters{ + id = "bankshutter"; + name = "Bank Shutter" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/south, +/turf/open/floor/plating, +/area/maintenance/port) +"wrz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wrD" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"wrH" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wrV" = ( +/turf/open/floor/plating, +/area/maintenance/port) +"wsc" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/main) +"wsf" = ( +/obj/effect/turf_decal/stripes/corner, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wsn" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm/directional/west, +/obj/machinery/camera{ + c_tag = "Cargo Lockers"; + dir = 4; + name = "cargo camera"; + network = list("ss13","qm") + }, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"wtb" = ( +/obj/structure/extinguisher_cabinet/directional/east, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"wtf" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"wtq" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/paper/fluff/holodeck/disclaimer, +/obj/item/pen, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"wtC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"wtH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"wtS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_dock) +"wua" = ( +/obj/effect/turf_decal/bot, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb, +/obj/item/poster/random_contraband{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/poster/random_contraband, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plating, +/area/maintenance/port) +"wuY" = ( +/obj/effect/decal/cleanable/blood/footprints{ + dir = 4; + pixel_x = 24; + pixel_y = 8 + }, +/obj/structure/urinal/directional/north, +/turf/open/floor/plating/rust, +/area/security/prison) +"wwa" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/command/heads_quarters/hop) +"wwj" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/service/bar) +"wxd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"wxt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wyf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wyV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"wzc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"wzn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/south, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wzx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"wzF" = ( +/obj/machinery/light/small/directional/west, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"wzL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"wAE" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"wAO" = ( +/turf/closed/wall, +/area/service/bar) +"wAW" = ( +/obj/effect/turf_decal/box, +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/item/soap/nanotrasen, +/obj/machinery/newscaster/directional/west, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/button/door/directional/east{ + id = "Shower_2"; + name = "Shower 2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/obj/machinery/button/door/directional/east{ + id = "Shower_2Privacy"; + name = "Shower 2 Privacy Toggle"; + pixel_y = -8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"wBr" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"wBG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot_white, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"wBQ" = ( +/obj/structure/sign/warning/fire, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"wCc" = ( +/obj/machinery/door/morgue{ + name = "Relic Closet"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wCe" = ( +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"wCg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Supermatter Engine"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/orange/visible, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wCn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold/green/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wCr" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "chapelgun" + }, +/obj/item/gps, +/obj/effect/turf_decal/stripes/end, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/service/chapel/office) +"wCs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/lawoffice) +"wCu" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"wDi" = ( +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/engineering/gravity_generator) +"wDo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/north, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/showroomfloor, +/area/security/brig) +"wDF" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"wDG" = ( +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wDI" = ( +/obj/structure/flora/rock/pile, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"wDK" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Connector"; + req_one_access_txt = "10;24;5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/airlock/abandoned, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"wEf" = ( +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 9 + }, +/turf/closed/wall, +/area/engineering/atmos) +"wET" = ( +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"wEY" = ( +/turf/closed/wall/rust, +/area/commons/locker) +"wFb" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/corner, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wFj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"wFD" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wFL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"wFO" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"wGn" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"wGr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/newscaster/directional/east, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/port) +"wGv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance/external{ + name = "mass driver intersection"; + req_access_txt = "12" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"wGT" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/fernybush, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/service/chapel) +"wGZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"wHa" = ( +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/research{ + name = "Ordnance Lab"; + req_access_txt = "8" + }, +/turf/open/floor/plasteel/dark, +/area/science/mixing) +"wHi" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wHq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"wHt" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wHU" = ( +/obj/machinery/holopad, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison) +"wHX" = ( +/turf/closed/wall/rust, +/area/security/checkpoint/medical) +"wIl" = ( +/obj/machinery/modular_computer/console/preset/id, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/security/telescreen/ce{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"wIJ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"wJc" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"wJd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"wJf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/cargo/miningoffice) +"wJx" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate, +/obj/item/circuitboard/machine/chem_dispenser, +/obj/item/circuitboard/machine/chem_heater, +/obj/item/circuitboard/machine/chem_master, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wJF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"wJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/maintenance/starboard) +"wJN" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"wJO" = ( +/obj/machinery/door/airlock/maintenance{ + name = "chapel maintenance"; + req_one_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/fore) +"wKH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wKO" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;37" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wLn" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/noticeboard/directional/east, +/obj/machinery/light/small/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wLo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/light/small/directional/south, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"wLB" = ( +/obj/machinery/requests_console/directional/north{ + department = "Security"; + departmentType = 3; + name = "Security Requests Console" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/filingcabinet, +/turf/open/floor/plasteel/showroomfloor, +/area/security/checkpoint/medical) +"wLF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wLR" = ( +/obj/machinery/door/airlock/maintenance{ + name = "command maintenance"; + req_one_access_txt = "19;63" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/central) +"wMo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/grunge{ + id_tag = "commissarydoor"; + name = "Vacant Commissary"; + req_one_access_txt = "12;63;48;50" + }, +/turf/open/floor/plasteel/dark, +/area/commons/vacant_room/commissary) +"wMA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/landmark/event_spawn, +/mob/living/simple_animal/hostile/russian{ + environment_smash = 0; + loot = list(/obj/effect/mob_spawn/human/corpse/russian); + name = "Russian Mobster" + }, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"wMF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"wMK" = ( +/obj/structure/table, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/documents, +/obj/item/clothing/neck/stethoscope{ + pixel_y = 5 + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/circuit/green{ + luminosity = 2 + }, +/area/ai_monitored/command/nuke_storage) +"wMM" = ( +/obj/item/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/storage/firstaid/fire, +/obj/item/storage/firstaid/fire{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/west, +/obj/structure/sign/warning/nosmoking{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/medical/storage) +"wMQ" = ( +/turf/closed/wall, +/area/cargo/sorting) +"wNq" = ( +/obj/machinery/door/poddoor{ + id = "QMLoaddoor"; + name = "Supply Dock Loading Door" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMLoad"; + name = "off ramp" + }, +/turf/open/floor/plating, +/area/cargo/storage) +"wNu" = ( +/obj/machinery/hydroponics/soil, +/obj/item/shovel/spade, +/obj/item/cultivator{ + pixel_x = 8 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"wNy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"wNV" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/light/small/directional/west, +/obj/machinery/status_display/ai/directional/north, +/obj/machinery/light_switch/directional/west, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/backup) +"wNZ" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wOm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/east, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"wOv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/security/processing) +"wOC" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3; + pixel_y = 15 + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light/directional/east, +/obj/structure/extinguisher_cabinet/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"wOF" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"wOG" = ( +/obj/effect/turf_decal/siding/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"wOO" = ( +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"wOP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/virology) +"wOQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wOZ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"wPb" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"wPt" = ( +/obj/machinery/computer/slot_machine, +/obj/machinery/light/small/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/blood/old, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"wPI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"wPR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"wPT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/firealarm/directional/east, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/engine, +/area/engineering/gravity_generator) +"wPV" = ( +/obj/machinery/door/airlock/maintenance{ + name = "cargo maintenance"; + req_one_access_txt = "31;48" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"wQn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/siding/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/east, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"wRj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/item/tank/internals/oxygen/empty, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"wRx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/masks, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"wRB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/directional/south, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"wRO" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"wRX" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/aft) +"wSs" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/service/janitor) +"wSA" = ( +/obj/item/food/grown/banana, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/grass, +/area/medical/virology) +"wSC" = ( +/obj/structure/cable, +/obj/machinery/holopad/secure, +/turf/open/floor/carpet/red, +/area/command/heads_quarters/hos) +"wSW" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/food/fishfingers, +/turf/open/floor/plasteel/dark, +/area/service/bar/atrium) +"wTc" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "Bridge Blast door" + }, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wTg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"wTh" = ( +/obj/machinery/door/poddoor/preopen{ + id = "transittube"; + name = "Transit Tube Blast door" + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/caution/stand_clear, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"wTq" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engineering/supermatter) +"wTC" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/closet/emcloset/anchored, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/light/small/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"wTT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/turf/open/floor/plasteel/chapel{ + dir = 4 + }, +/area/service/chapel) +"wUe" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/aft) +"wUf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"wUj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/command{ + name = "Captain's Office"; + req_access_txt = "20" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"wUq" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wUz" = ( +/obj/structure/mirror/directional/north, +/obj/structure/sink{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"wUE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/computer/exoscanner_control{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"wUN" = ( +/obj/structure/lattice/catwalk, +/obj/effect/landmark/carpspawn, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solars/starboard/fore) +"wVb" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/airalarm/directional/north, +/obj/machinery/camera{ + c_tag = "Brig Entrance" + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"wVh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wVq" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wVw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"wVz" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/security/processing) +"wVF" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wVJ" = ( +/obj/machinery/airalarm/directional/east, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/obj/structure/reagent_dispensers/water_cooler, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/psychology) +"wVS" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"wWh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"wWo" = ( +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port) +"wWu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wWx" = ( +/obj/machinery/computer/message_monitor, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/east, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"wWz" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/status_display/evac/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"wWK" = ( +/turf/closed/wall, +/area/service/chapel/office) +"wWN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/siding/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"wWT" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard/aft) +"wWX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"wWY" = ( +/obj/structure/girder/displaced, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port) +"wXo" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"wXD" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/monitored/air_output{ + dir = 4 + }, +/turf/open/floor/engine/air, +/area/engineering/atmos) +"wXE" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/item/storage/briefcase, +/obj/machinery/status_display/evac/directional/west, +/turf/open/floor/plasteel, +/area/security/courtroom) +"wXT" = ( +/obj/machinery/chem_dispenser/drinks{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/machinery/airalarm/directional/south, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"wXW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/bridge_pipe/purple/visible, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Air to Mix" + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"wXY" = ( +/obj/structure/sign/departments/holy, +/turf/closed/wall, +/area/maintenance/port/fore) +"wYz" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/solars/port/aft) +"wYL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/table, +/obj/item/folder/white, +/obj/item/retractor, +/obj/item/hemostat, +/obj/machinery/vending/wallmed/directional/north, +/obj/machinery/camera{ + c_tag = "Medical Operating Theater B"; + name = "medical camera"; + network = list("ss13","medical") + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"wYN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/directional/south, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"wZj" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/general/visible, +/turf/open/floor/plasteel/showroomfloor, +/area/science/xenobiology) +"wZs" = ( +/obj/structure/lattice/catwalk, +/obj/structure/railing/left{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"wZv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"wZx" = ( +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating/airless, +/area/maintenance/starboard/fore) +"wZN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xad" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/sand/plating, +/turf/open/floor/plating, +/area/space/nearstation) +"xaf" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"xaH" = ( +/obj/structure/punching_bag, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/grimy, +/area/security/prison) +"xaM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"xaQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + icon_state = "left"; + name = "Fitness Ring" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"xaS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/shieldgen, +/obj/machinery/light/small/directional/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xaV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_access_txt = "58" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xbm" = ( +/obj/effect/turf_decal/box, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/command/heads_quarters/hop) +"xbn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/bot, +/obj/structure/extinguisher_cabinet/directional/east, +/obj/structure/sign/warning/fire{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/command/teleporter) +"xbq" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/structure/table/wood, +/turf/open/floor/carpet/royalblue, +/area/command/heads_quarters/captain) +"xbr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"xbK" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Pure to Ports" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xbU" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"xbZ" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/obj/effect/turf_decal/delivery, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/status_display/ai/directional/north, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/atmos) +"xcd" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/red, +/obj/item/restraints/handcuffs, +/obj/item/assembly/flash/handheld, +/obj/machinery/airalarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"xch" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"xcx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/sign/departments/chemistry{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"xcO" = ( +/turf/open/floor/engine/air, +/area/engineering/atmos) +"xcR" = ( +/obj/structure/flora/grass/jungle{ + icon_state = "bushc2" + }, +/turf/open/floor/plating/asteroid, +/area/space/nearstation) +"xdf" = ( +/obj/machinery/hydroponics/constructable, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"xdz" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"xdS" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xdW" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/autolathe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/cargo/office) +"xee" = ( +/obj/machinery/light/small/directional/west, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"xen" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/security/prison) +"xeu" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xeC" = ( +/obj/machinery/status_display/shuttle, +/turf/closed/wall, +/area/engineering/storage/tech) +"xfH" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/requests_console/directional/east{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge Requests Console" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xfN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xfU" = ( +/obj/item/circuitboard/computer/solar_control, +/turf/open/floor/plating/asteroid/airless, +/area/space/nearstation) +"xfX" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"xgx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"xhX" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/closed/wall/r_wall, +/area/science/genetics) +"xio" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xiK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"xiX" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/flora/ausbushes/ywflowers, +/obj/structure/flora/ausbushes/leafybush, +/obj/structure/cable, +/turf/open/floor/grass, +/area/security/prison) +"xjd" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port/fore) +"xjp" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/turf/open/floor/engine, +/area/engineering/main) +"xjq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63"; + security_level = 6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xjs" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/cmo) +"xju" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall, +/area/engineering/break_room) +"xjz" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm/directional/north, +/obj/structure/extinguisher_cabinet/directional/north{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/warden) +"xjT" = ( +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/storage/box/syringes{ + pixel_y = 2 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/hand_labeler, +/obj/machinery/airalarm/directional/south, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"xjV" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/specialist, +/turf/open/floor/plasteel, +/area/security/main) +"xki" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xkq" = ( +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Access"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/solars/starboard/fore) +"xku" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"xkx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/blood/old, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xlm" = ( +/obj/machinery/atmospherics/pipe/bridge_pipe/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/bridge_pipe/cyan/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engineering/atmos) +"xmc" = ( +/obj/machinery/modular_computer/console/preset/id{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/keycard_auth/directional/west, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console/directional/south{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain's Requests Console" + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/captain) +"xmd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xmr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/turf_decal/box, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xmx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/hatch{ + name = "Satellite Antechamber"; + req_one_access_txt = "32;19" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat_interior) +"xmB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/ai) +"xmW" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xmZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/newscaster/directional/west, +/obj/item/shovel/spade, +/obj/item/plant_analyzer, +/obj/item/cultivator{ + pixel_x = 6 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"xnp" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/n2, +/area/engineering/atmos) +"xnJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Desk"; + req_access_txt = "24" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xnQ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"xnR" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xof" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Nitrogen Outlet" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xoq" = ( +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/rd) +"xoD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/turf/open/floor/grass, +/area/medical/psychology) +"xoK" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Atmospherics Desk"; + dir = 1; + name = "atmospherics camera"; + network = list("ss13","engine") + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xoR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xpk" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/airalarm/directional/east, +/obj/machinery/light/directional/east, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"xpL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet/directional/north, +/obj/machinery/component_printer, +/obj/structure/cable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab) +"xpP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"xqi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/paramedic, +/obj/structure/chair/office/light, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/paramedic) +"xqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/east, +/obj/structure/noticeboard/directional/east, +/obj/machinery/computer/gateway_control{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/command/gateway) +"xqy" = ( +/obj/vehicle/ridden/janicart, +/obj/item/key/janitor, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"xqE" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/service/hydroponics) +"xqF" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/folder/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/pen/blue, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xqJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/storage/tech) +"xqK" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xrj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical{ + name = "Kitchen Cold Room"; + req_access_txt = "28" + }, +/obj/structure/fans/tiny/invisible, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"xrO" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + desc = "Salt. From space oceans, presumably. A staple of modern medicine."; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"xrW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/light/directional/east, +/obj/structure/marker_beacon/burgundy{ + name = "landing marker" + }, +/obj/machinery/button/door/directional/east{ + id = "Arrival Shuttle Bay"; + name = "Arrival Shuttle Bay Toggle"; + req_access_txt = "19" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"xrZ" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/office) +"xsb" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engineering/main) +"xsg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/sign/departments/evac{ + pixel_y = 32 + }, +/obj/effect/turf_decal/caution/stand_clear, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"xsj" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Docking Hallway" + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = -40 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/starboard) +"xsk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xsm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/cable, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"xsr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Port Hallway Vendors"; + dir = 4; + name = "port camera" + }, +/obj/machinery/status_display/ai/directional/west, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/port) +"xsz" = ( +/obj/structure/cable, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"xsK" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/machinery/light_switch/directional/west, +/obj/item/food/grown/harebell{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/food/grown/harebell{ + pixel_x = 12; + pixel_y = 9 + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel/office) +"xsR" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xsS" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/disposal) +"xsU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xta" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel/dark, +/area/service/chapel) +"xtj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator Access"; + req_one_access_txt = "10" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/aft) +"xtt" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/sign/warning/xeno_mining{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xtG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/mecha_part_fabricator/cargo, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xtT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/door/airlock/atmos{ + name = "Incinerator"; + req_access_txt = "24" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xuh" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xuj" = ( +/obj/structure/table_frame/wood, +/turf/open/floor/carpet/green, +/area/cargo/warehouse) +"xuo" = ( +/obj/machinery/door/airlock/research{ + id_tag = "ResearchInt"; + name = "Research Division"; + req_one_access_txt = "47, 9" + }, +/obj/effect/mapping_helpers/airlock/unres{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"xuw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clipboard{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clipboard, +/obj/item/folder/yellow, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/storage/box/shipping, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"xuS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xvd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xvk" = ( +/obj/machinery/firealarm/directional/east, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/turf/open/floor/plasteel/dark, +/area/cargo/storage) +"xvm" = ( +/obj/structure/table/wood, +/obj/item/storage/box/deputy{ + pixel_y = 5 + }, +/obj/item/taperecorder{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/flashlight/seclite, +/obj/machinery/firealarm/directional/east, +/obj/machinery/light_switch/directional/north{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xvA" = ( +/obj/machinery/computer/security/telescreen/entertainment/directional/east, +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"xvD" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"xwf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster"; + req_access_txt = "41" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/qm) +"xwo" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel/dark, +/area/security/courtroom) +"xwp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/exam_room) +"xwt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/central) +"xwy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/airalarm/directional/east, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"xwQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"xwT" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xxn" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/showroomfloor, +/area/science/mixing) +"xxv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"xxD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/extinguisher_cabinet/directional/west, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/command/bridge) +"xxH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xxU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/green/visible, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/main) +"xyc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"xyd" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/l3closet/virology, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/obj/machinery/camera{ + c_tag = "Virology Airlock"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/machinery/firealarm/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/virology) +"xyt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/extinguisher_cabinet/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"xyK" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xyM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xyY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"xza" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall/rust, +/area/engineering/main) +"xzg" = ( +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/aisat_interior"; + name = "Antechamber Turret Control"; + pixel_y = 28; + req_access_txt = "65" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/ai_monitored/turret_protected/aisat/foyer) +"xzv" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"xzA" = ( +/obj/machinery/light_switch/directional/west, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/filingcabinet, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/south, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"xzI" = ( +/obj/machinery/camera{ + c_tag = "Prison Cells"; + dir = 4; + network = list("ss13","prison") + }, +/turf/open/floor/plasteel, +/area/security/prison) +"xzO" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/vending/autodrobe/all_access, +/obj/structure/noticeboard/directional/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"xzV" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/science/research) +"xzX" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/simple/yellow/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xAk" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/commons/locker) +"xAo" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/security/brig/upper) +"xAw" = ( +/obj/item/radio/intercom/directional/west, +/obj/structure/table, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/titanium{ + amount = 10 + }, +/obj/item/stack/rods/ten{ + pixel_y = 4 + }, +/obj/item/wallframe/camera, +/obj/item/assembly/prox_sensor{ + desc = "Used for scanning and alerting when someone enters a certain proximity. This one is slightly shifted to the left."; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stack/cable_coil{ + pixel_y = 8 + }, +/obj/item/stack/sheet/mineral/plasma{ + amount = 35 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/exploration_prep) +"xAA" = ( +/obj/machinery/portable_atmospherics/canister/plasma, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/small/directional/east, +/obj/item/radio/intercom/directional/east, +/turf/open/floor/plasteel/dark, +/area/science/storage) +"xAK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"xBk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plating, +/area/maintenance/aft) +"xBo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold/cyan/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"xBM" = ( +/obj/machinery/door/airlock/maintenance{ + name = "xenobiology maintenance"; + req_access_txt = "55" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"xBR" = ( +/obj/effect/turf_decal/tile/red, +/obj/machinery/airalarm/directional/east, +/obj/machinery/camera{ + c_tag = "Transferring Centre"; + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/processing) +"xCm" = ( +/obj/machinery/door/airlock/maintenance, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"xCt" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/service/bar/atrium) +"xCv" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/turf/open/floor/wood, +/area/service/bar) +"xDG" = ( +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Engineering Lockers"; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xDO" = ( +/obj/structure/table/reinforced, +/obj/item/crowbar/red, +/obj/item/radio/headset/headset_sec, +/obj/item/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/lighter, +/turf/open/floor/plasteel/dark, +/area/security/main) +"xDW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/cargo/miningoffice) +"xEu" = ( +/turf/closed/wall, +/area/science/misc_lab) +"xEE" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"xFp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"xFs" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/showroomfloor, +/area/science/robotics/lab) +"xFx" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch/directional/west, +/obj/structure/mirror/directional/north, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"xFU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/stack/rods/twentyfive, +/obj/item/wrench, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/intercom/directional/south, +/obj/machinery/light/directional/south, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"xGi" = ( +/obj/machinery/computer/security/hos{ + dir = 1 + }, +/turf/open/floor/wood, +/area/command/heads_quarters/hos) +"xGB" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small/directional/south, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/item/wrench, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"xGF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/security/prison) +"xHf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/light/small/directional/east, +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/machinery/airalarm/directional/north, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/white, +/area/security/prison/safe) +"xHo" = ( +/obj/effect/turf_decal/box/corners{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xHX" = ( +/obj/machinery/atmospherics/pipe/smart/simple/green/visible{ + dir = 4 + }, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engineering/atmos) +"xIo" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/shovel, +/obj/item/shovel, +/obj/item/pickaxe, +/obj/item/pickaxe, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/cargo/miningoffice) +"xIs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit/departure_lounge) +"xIB" = ( +/obj/effect/landmark/start/captain, +/obj/structure/cable, +/turf/open/floor/wood, +/area/command/heads_quarters/captain) +"xIH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/effect/turf_decal/bot_white, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/bodybag{ + pixel_y = 5 + }, +/obj/item/shovel, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/newscaster/directional/north, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/fore) +"xIW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/camera{ + c_tag = "Head of Security's Office" + }, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hos) +"xJo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"xJP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/port) +"xJS" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xJT" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel/dark, +/area/engineering/atmos) +"xKJ" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/backpack, +/obj/item/storage/backpack/satchel, +/obj/item/clothing/suit/hooded/wintercoat, +/obj/item/clothing/shoes/winterboots, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/light/small/directional/north, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"xKR" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xKS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/delivery_chute{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small/directional/east, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/janitor) +"xKT" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/directional/east, +/obj/machinery/newscaster/directional/east, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"xKX" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/camera{ + c_tag = "Medbay Aux Storage"; + name = "medical camera"; + network = list("ss13","medical") + }, +/obj/effect/turf_decal/bot, +/obj/item/toy/figure/paramedic, +/obj/machinery/newscaster/directional/east, +/turf/open/floor/plasteel/dark, +/area/medical/paramedic) +"xLk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/turf/open/floor/plating, +/area/cargo/warehouse) +"xLJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"xLT" = ( +/obj/effect/turf_decal/box, +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solars/starboard/fore) +"xLY" = ( +/obj/effect/turf_decal/box, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/mirror/directional/west, +/obj/machinery/newscaster/directional/south{ + pixel_x = -28 + }, +/obj/machinery/light/small/directional/east, +/obj/effect/landmark/start/assistant, +/obj/machinery/button/door/directional/east{ + id = "Unit_2Privacy"; + name = "Unit 2 Privacy Toggle"; + pixel_y = -8 + }, +/obj/machinery/button/door/directional/east{ + id = "Unit_2"; + name = "Unit2 Privacy Lock"; + normaldoorcontrol = 1; + pixel_y = 8; + specialfunctions = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/commons/toilet/restrooms) +"xMA" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engineering/main) +"xMG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/obj/effect/landmark/xeno_spawn, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xNd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/door/airlock/mining/glass{ + name = "Mining Dock"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel/dark, +/area/cargo/warehouse) +"xNf" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/saltshaker{ + layer = 3.1; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + desc = "Often used to flavor food or make people sneeze. Fashionably moved to the left side of the table."; + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/plasteel/white, +/area/security/prison) +"xNl" = ( +/obj/machinery/door/airlock/grunge{ + id_tag = "Cabin_2"; + name = "Cabin 2" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"xND" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/south, +/obj/machinery/status_display/evac/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"xNQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/end, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/engineering/main) +"xOe" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom/directional/west, +/turf/open/floor/engine/telecomms, +/area/tcommsat/server) +"xOg" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit/departure_lounge) +"xOh" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solars/starboard/aft) +"xOs" = ( +/turf/closed/wall/rust, +/area/service/janitor) +"xOv" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/light/directional/north, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/security/prison) +"xOC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/landmark/event_spawn, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/surgery/room_b) +"xPm" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"xPr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"xPt" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/emitter, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"xQj" = ( +/turf/open/floor/plating/rust, +/area/security/prison) +"xQq" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/beebox, +/turf/open/floor/grass, +/area/service/chapel) +"xQt" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;5;39" + }, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"xQT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light/small/directional/south, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/entry) +"xQW" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/showroomfloor, +/area/service/theater) +"xRx" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/filingcabinet, +/obj/effect/turf_decal/bot_white, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"xRE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/engine, +/area/ai_monitored/command/nuke_storage) +"xRV" = ( +/obj/structure/flora/grass/jungle/b, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/open/floor/grass, +/area/security/prison) +"xRY" = ( +/obj/item/radio/intercom/directional/north, +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/wood, +/area/maintenance/port) +"xSr" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating/airless, +/area/maintenance/disposal/incinerator) +"xSP" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2"; + name = "on ramp"; + pixel_y = 6 + }, +/obj/effect/turf_decal/box/corners{ + dir = 1 + }, +/obj/effect/turf_decal/box/corners{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/storage) +"xTe" = ( +/obj/structure/urinal/directional/north, +/turf/open/floor/plating/rust, +/area/security/prison) +"xTk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/hop) +"xTm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/plasteel/showroomfloor, +/area/command/heads_quarters/rd) +"xTr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"xTu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/decal/cleanable/cobweb, +/obj/item/kirbyplants{ + icon_state = "plant-05" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/machinery/power/apc/auto_name/directional/north, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"xTA" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/west, +/obj/machinery/status_display/supply{ + pixel_x = -32 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/exit/departure_lounge) +"xTK" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/lobby) +"xTP" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/machinery/suit_storage_unit/standard_unit{ + desc = "An industrial suit storage device carrying retro space suits. Neat!"; + helmet_type = /obj/item/clothing/head/helmet/space; + suit_type = /obj/item/clothing/suit/space + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/command/storage/eva) +"xTQ" = ( +/obj/structure/flora/grass/jungle, +/obj/structure/flora/ausbushes/grassybush, +/obj/structure/flora/ausbushes/genericbush, +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sunnybush, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/grass, +/area/service/chapel) +"xTR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/engine, +/area/engineering/main) +"xTX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/chemistry) +"xUf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engineering/supermatter) +"xUo" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/item/storage/belt/utility, +/obj/item/crowbar/red, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/dark, +/area/commons/storage/primary) +"xUy" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/starboard) +"xUD" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/folder/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/folder/yellow, +/obj/item/lighter, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/plasteel/dark, +/area/command/heads_quarters/ce) +"xUW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm/directional/north, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/fore) +"xVk" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/chair/office{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"xVo" = ( +/obj/effect/decal/cleanable/blood/old, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/aft) +"xWb" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/firealarm/directional/south, +/turf/open/floor/plasteel, +/area/hallway/primary/fore) +"xWc" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Security Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/hallway/primary/aft) +"xWk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/command/bridge) +"xWP" = ( +/obj/structure/chair{ + name = "Judge" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/noticeboard/directional/north, +/turf/open/floor/plasteel, +/area/security/courtroom) +"xXa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/rust, +/area/maintenance/starboard) +"xXg" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/locker) +"xXt" = ( +/obj/effect/turf_decal/trimline/red/filled/line{ + dir = 8 + }, +/obj/machinery/newscaster/directional/west, +/turf/open/floor/plasteel/white, +/area/security/prison) +"xXS" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/command/bridge) +"xYa" = ( +/obj/machinery/computer/monitor{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/status_display/shuttle{ + pixel_x = 32 + }, +/obj/machinery/computer/security/telescreen/minisat{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/storage/satellite) +"xYg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xYt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/prison) +"xYI" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/service/bar) +"xYR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/research) +"xYU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall, +/area/maintenance/starboard/aft) +"xYZ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/port) +"xZe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/medical{ + name = "Operating Theater B"; + req_access_txt = "45" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/medical/surgery/room_b) +"xZv" = ( +/obj/structure/table/wood, +/obj/item/folder{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/maintenance/starboard/fore) +"xZy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 8 + }, +/obj/machinery/light/directional/south, +/obj/machinery/newscaster/directional/south, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/storage) +"xZB" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/door/airlock/maintenance{ + name = "security maintenance"; + req_access_txt = "1;4"; + security_level = 6 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/port/aft) +"yag" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/simple/dark/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/maintenance/disposal/incinerator) +"yah" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/engine, +/area/ai_monitored/storage/satellite) +"yan" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"yau" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/grimy, +/area/security/prison/safe) +"yaD" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/commons/storage/primary) +"ybl" = ( +/obj/structure/sign/poster/contraband/random{ + pixel_x = -32 + }, +/turf/open/floor/carpet/green, +/area/cargo/warehouse) +"ybC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/item/book/manual/wiki/detective{ + pixel_y = 4 + }, +/obj/item/camera, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/dark, +/area/maintenance/port) +"ybW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/fitness/recreation) +"ybY" = ( +/obj/structure/sign/warning/fire, +/obj/structure/grille, +/turf/closed/wall/r_wall/rust, +/area/engineering/atmos) +"ycp" = ( +/mob/living/simple_animal/hostile/asteroid/hivelord, +/turf/open/floor/plating/asteroid/lowpressure, +/area/space/nearstation) +"ycs" = ( +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/turf/open/floor/plasteel/white, +/area/security/prison) +"ycI" = ( +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/lattice/catwalk, +/obj/machinery/light/small/directional/south, +/obj/effect/turf_decal/sand/plating, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/aft) +"ycO" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall, +/area/cargo/warehouse) +"ycU" = ( +/obj/machinery/recharger{ + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch/directional/east, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ycW" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"ydd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate{ + icon_state = "crateopen" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plating, +/area/maintenance/port) +"ydo" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4{ + dir = 4 + }, +/obj/effect/turf_decal/siding/yellow/corner{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ydI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"yed" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer2{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"yei" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/service/hydroponics) +"yey" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Cargo Requests"; + req_access_txt = "32" + }, +/turf/open/floor/plasteel/dark, +/area/engineering/main) +"yeV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible, +/turf/open/floor/engine, +/area/engineering/main) +"yeY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on/layer4, +/turf/open/floor/plasteel/showroomfloor, +/area/science/misc_lab) +"yfj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/primary/fore) +"yfP" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/showroomfloor, +/area/service/kitchen) +"yfT" = ( +/obj/structure/plasticflaps/opaque, +/turf/open/floor/plating, +/area/security/prison) +"yfW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "atmos"; + name = "Atmospherics Blast Door" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engineering/break_room) +"ygq" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"ygt" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm/directional/west, +/obj/machinery/light/directional/west, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ygu" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engineering/break_room) +"ygU" = ( +/obj/machinery/atmospherics/pipe/smart/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"yhd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/command/bridge) +"yhK" = ( +/obj/structure/sign/poster/official/twelve_gauge, +/turf/closed/wall, +/area/maintenance/starboard/fore) +"yid" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/shutters{ + id = "sidearmory"; + name = "Side Armoury Shutter" + }, +/obj/machinery/button/door/directional/south{ + id = "sidearmory"; + name = "Armoury Shutter Toggle"; + req_access_txt = "3" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"yio" = ( +/turf/closed/wall, +/area/medical/psychology) +"yir" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"yiy" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/siding/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/command/heads_quarters/ce) +"yiF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/airalarm/directional/west, +/obj/item/toy/figure/borg{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/aisat/foyer) +"yiQ" = ( +/obj/machinery/light/floor, +/turf/open/floor/engine/n2o, +/area/engineering/atmos) +"yjd" = ( +/obj/structure/sign/departments/security, +/turf/closed/wall/r_wall, +/area/ai_monitored/command/nuke_storage) +"yjg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/storage/bag/tray, +/obj/item/book/manual/chef_recipes{ + pixel_y = 2 + }, +/obj/item/book/manual/chef_recipes{ + pixel_y = 2 + }, +/turf/open/floor/plasteel/dark, +/area/service/kitchen) +"yjr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"yjw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/commons/vacant_room/commissary) +"yjz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/turf/open/floor/carpet/green, +/area/maintenance/port) +"yjC" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/structure/window/reinforced, +/obj/machinery/door/window/southright{ + dir = 4; + name = "Mail Chute"; + req_access_txt = "50" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/cargo/sorting) +"yjH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light/directional/east, +/obj/machinery/status_display/ai/directional/east, +/obj/item/kirbyplants{ + icon_state = "plant-21" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"yjT" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/service/chapel) +"yke" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/smart/manifold/violet/visible, +/turf/open/floor/plasteel, +/area/engineering/atmos) +"yki" = ( +/obj/effect/turf_decal/bot, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/machinery/light/directional/south, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/commons/locker) +"yko" = ( +/obj/machinery/door/airlock/maintenance{ + req_one_access_txt = "12;37;47" + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/maintenance/starboard/fore) +"ykt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ykB" = ( +/obj/structure/girder, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/effect/mapping_helpers/burnt_floor, +/turf/open/floor/plating, +/area/maintenance/starboard) +"ykN" = ( +/obj/structure/sign/poster/contraband/revolver, +/turf/closed/wall, +/area/commons/locker) +"ykS" = ( +/turf/closed/wall, +/area/service/hydroponics) +"ykU" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/commons/fitness/recreation) +"ylc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/water_source/puddle, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/mob/living/carbon/human/species/monkey, +/turf/open/floor/grass, +/area/science/genetics) +"yll" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/visible, +/obj/machinery/camera{ + c_tag = "Engineering Foyer"; + dir = 4; + name = "engineering camera"; + network = list("ss13","engine") + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/cyan/visible/layer2, +/turf/open/floor/plasteel, +/area/engineering/break_room) +"ylI" = ( +/obj/machinery/atmospherics/pipe/smart/manifold4w/supply/hidden/layer4, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ylV" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/smart/manifold4w/scrubbers/hidden/layer2, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/starboard) +"ylW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/line{ + dir = 8 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/medical/morgue) +"ymb" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/machinery/airalarm/directional/east, +/obj/effect/landmark/start/assistant, +/obj/item/bedsheet/dorms, +/obj/machinery/button/door/directional/north{ + id = "Cabin_2"; + name = "Cabin 2 Privacy Lock"; + normaldoorcontrol = 1; + specialfunctions = 4 + }, +/obj/effect/mapping_helpers/broken_floor, +/turf/open/floor/wood, +/area/commons/locker) +"yme" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light/broken/directional/west, +/turf/open/floor/plating, +/area/maintenance/disposal/incinerator) + +(1,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(2,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(3,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(4,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(5,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(6,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(7,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(8,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(9,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(10,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(11,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(12,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qJs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(13,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +bVu +aeu +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(14,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(15,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(16,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aaa +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(17,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(18,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeU +aau +aau +aau +aau +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(19,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +cpx +cQP +cpx +ivj +aau +nFQ +lAy +aau +asO +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(20,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeU +aeU +aeU +aeu +ivj +anu +anu +cpx +jWq +vKh +vSd +hTQ +vcb +lAy +qIF +aav +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(21,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeU +amq +aeU +aeu +cpx +sZQ +cjL +cpx +xHf +pxR +vSd +jmh +jpb +xaH +eFJ +aau +aeU +coy +aeU +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(22,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeU +aeu +aeu +aeU +aeU +aeU +aeu +aaa +aaa +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeU +aeu +aeu +cpx +uJW +rHe +cpx +cpx +djK +cpx +nAW +aBV +kJD +qhp +aav +aUz +aeU +aeU +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(23,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cAY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeU +cpx +cpx +ulN +cpx +gtm +oYa +aav +lAy +aBV +kJD +nYL +aav +aau +aau +aau +aav +aav +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(24,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aeU +aeU +aeU +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +aeU +anu +xzI +oDs +chR +chR +xen +tFc +chR +eUB +kAn +chR +vGA +tFc +chR +hsS +tkg +aau +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(25,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeU +aeU +anu +cTl +qKa +iig +qKa +qKa +vDc +qKa +gkN +jgw +qKa +oDs +vDc +oDs +qKa +usI +aau +aeu +aUz +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(26,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeU +cpx +cpx +mmA +cpx +cpx +nzQ +cpx +aav +aav +lBX +xQj +xQj +aav +qhO +kqR +rAp +aau +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(27,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +cpx +sIM +rHe +cpx +sIM +rHe +cpx +aaa +aau +xGF +qGP +qGP +oBY +cTl +qKa +aav +aav +aeU +asO +aau +aav +aav +aau +aau +asO +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(28,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aeu +aeu +aUz +aeu +cpx +chl +cFN +cpx +chl +cFN +cpx +aaa +aau +kLr +xFp +xFp +aau +uNu +qKa +aav +aeU +aeU +aav +jTJ +fLV +rnG +wNu +mLo +aav +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(29,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +ivj +anu +anu +ivj +anu +anu +ivj +qJs +aav +kLr +xFp +xFp +aau +sqU +qKa +aav +aau +aau +aav +iqS +syk +xiX +qzL +uEI +aau +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(30,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +acm +acm +acK +acm +acm +acm +acm +acm +aav +pJg +sOk +xFp +ihn +tFc +ibe +ddv +qKa +qKa +ddv +oPT +vbU +ddk +uDV +xRV +aau +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(31,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +acK +aaa +aaa +aaa +aaa +aaa +aau +jHA +nhV +xFp +aav +chR +qKa +aav +aau +aau +aav +qoJ +vOv +pGW +vXv +iOu +aau +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(32,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aaa +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +acK +aaa +aaa +aaa +aaa +aaa +aav +aat +aav +aav +aav +eys +vDc +aav +hms +uku +aav +enR +oeA +rkm +kXq +fGe +aav +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(33,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aaa +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aUz +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +gmS +gwu +tDf +pwv +aav +tFc +jou +aav +aav +aav +aav +aau +aav +bMJ +gCJ +irF +aav +aeU +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(34,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeU +aeU +aaa +aaa +aaa +acm +aaa +aaa +qJs +aaa +aaa +aaa +aaa +aaa +aav +xTe +nLY +chR +oub +chR +qKa +doP +eXt +aav +aeU +aeU +aau +uXc +uIs +eyc +aav +cui +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(35,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeU +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aav +wuY +lpY +lpY +aav +uNu +ibe +xYt +pUO +aau +aeU +aUz +asO +aav +aau +aau +aav +aeU +aeu +aeu +aeu +aeo +acm +acm +aeo +aeU +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(36,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +aeu +ahV +ahV +amz +amz +ahV +aeu +aeu +aeu +cry +acm +cry +cry +acK +aaa +aaa +aaa +aaa +aaa +aav +yfT +aav +aat +aav +vIj +qKa +doP +eXt +aav +aeU +aeU +aeU +aeU +cmU +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(37,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aeU +aeU +cuj +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +aeu +ahV +bBK +byO +uVc +ahV +aeu +aeu +cqi +cqi +alm +dNv +aaa +acK +aaa +aaa +aaa +aaa +aaa +aau +tVR +aWc +pWJ +lNB +lTW +gBM +aav +aav +aav +aeU +aeU +aeU +aeU +cmU +aeu +aeu +aeu +ckn +aeo +aeo +acm +aeo +aeo +acm +vQF +ckn +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(38,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aaQ +aeo +aeo +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aeU +aeu +aeu +amz +oAm +bzY +bFf +amz +aeu +aeu +ajd +akh +ajd +aer +ajd +acK +aaa +aaa +aaa +aaa +aaa +aau +eEc +qKa +kXB +uNu +chR +qKa +aav +kkI +aav +aav +asO +cmU +cmU +cmU +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +ckn +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(39,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qJs +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aaa +acm +aaa +aaa +aaa +aeu +alm +acm +aaQ +aeo +aeo +acm +amA +amA +amA +amR +amA +amA +acm +alm +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aeu +aeu +aeu +ahV +ahV +bBm +bFF +amz +aeu +aeu +aer +seL +cvo +jbw +hVl +acm +aaa +aaa +aaa +aaa +aaa +ivj +cpx +mAI +cpx +cpx +fdJ +qKa +sQD +jBG +utw +rsm +aau +aeU +cmU +aeu +aeu +aeU +aeU +aaa +ePG +aaa +aaa +aaa +aaa +aaa +aaa +aaa +vQF +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(40,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +acm +aeo +aeo +aeo +aeo +aaQ +alm +aeu +aeu +aeu +aaa +aaa +aaa +aaa +amA +knq +aHe +mlu +lum +amR +aaa +aeU +aeu +aeu +aeu +aeu +aeu +alm +aeo +aeo +aeu +aeu +aeu +amA +suu +bDC +bGa +amA +amA +amA +ajd +ctb +bsq +onf +ajd +qJs +aaa +aaa +aaa +aaa +aaa +cpx +vwk +yau +pgf +anu +chR +oAg +aav +rgX +rHj +kIn +aau +aeU +cmU +coy +aeU +aeU +aeU +aeU +rnW +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(41,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +acm +aaa +aaa +acm +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +amR +xRY +ioT +fyu +ybC +amA +aaa +aUz +aeU +aeu +aeu +aeu +aeu +aaQ +aaa +aaa +aaa +alm +aeu +amR +scV +ckR +peP +bGY +bLq +nlo +ajd +aer +ajd +oRL +aer +acm +aaa +aaa +bpm +aaa +aaa +cpx +hel +yau +kzW +anu +fdJ +ycs +aau +dUZ +rHj +lGn +aav +cmU +cmU +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +aaa +aaa +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(42,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aaQ +aeo +aeo +aeo +acm +aaQ +anr +acm +acm +coy +aUz +aeU +aeU +aeu +aeu +aeu +aeu +alm +acm +amA +vaK +tIl +hEn +xRx +amA +aeU +aeU +alm +aeu +aeu +aeu +aeu +acm +aaa +aaa +aaa +acm +aeu +amA +cxp +bDi +bFD +bHb +cni +wWY +ajd +ctj +aer +bCe +ajd +acm +acm +cIA +cqN +cIA +cov +cpx +cuK +yau +oNc +anu +fdJ +ycs +aau +ukD +rHj +uJr +aau +aeU +cmU +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(43,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +acm +aaa +acm +aaa +ixU +cmU +cmU +cmU +cmU +cmU +cmU +aeU +aeu +aeu +aeu +aeu +aaa +amA +cXD +nCo +amA +mGQ +amA +aeU +aeu +aeu +aeu +wDI +aeu +aeu +qJs +acK +acm +acK +qJs +aeu +amR +amA +bzE +wrr +amA +cnr +tNI +gxA +ewJ +hhT +eqm +ajd +cqt +cIA +cIA +wLo +cIA +coD +oQI +cpx +fSq +cpx +cpx +jfE +ycs +aav +xNf +sBj +gEN +aau +aeU +cmU +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(44,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +fER +fER +fER +ala +fER +ixU +fER +fER +fER +fER +fER +cmU +aeU +aeu +aeu +amA +amA +amR +amR +qMJ +yjz +gur +jOI +amA +amR +amA +amA +amR +amA +amA +aeu +aDT +agw +ccg +agw +aoc +aeu +amA +knN +mvi +bCB +amA +hoZ +jBp +amR +pTY +qRu +kki +rUR +ajd +bmU +cqI +jaA +afm +bVx +ajx +bmQ +fhl +qFC +aau +fVr +onY +xXt +wJc +ehK +tBY +asO +cmU +cmU +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(45,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aeo +aeo +aaa +ixU +ixU +ixU +ixU +ixU +nBm +ixU +ixU +ixU +ixU +ixU +cmU +aeU +aof +aeu +amR +cPH +mlI +amA +ugS +wMA +oss +oPH +kDo +fut +wDK +qps +vnq +sHb +rdO +aeu +aDU +aaa +aaa +aaa +aod +aeu +amA +anD +mGX +tRg +amR +cnL +cBh +amR +ajd +aer +ajd +iWH +aer +crp +qFu +mlF +jWU +mnc +ajx +xOv +mZV +czR +aau +geJ +ycs +dFw +mIK +sLz +oUy +aau +aUz +cmU +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(46,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +fER +fER +fER +fER +fER +nBm +fER +fER +fER +fER +fER +cmU +aeU +aeU +aeU +amA +dRQ +nON +dmf +jSw +jSw +ejk +kUP +amA +nBC +bxp +jGI +dJI +eff +amA +aeu +aUG +aaa +aaa +aaa +aUG +aeu +amA +aEw +ohD +amA +amA +bMm +vee +amA +jWm +asC +eZR +tvd +vBT +qJj +xMG +qaG +gLe +atG +ajx +eJQ +mZV +bLH +aav +lvo +ycs +cJG +cJG +cJG +vAM +aau +aeU +cmU +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(47,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +acm +acm +aaa +nBm +ckk +aaa +aaa +ckk +nBm +ckk +aaa +aaa +ckk +nBm +cmU +cmU +aeU +aeU +amA +uQY +mNi +amR +emv +wPt +qnf +dNg +amR +wFj +amR +amA +rmx +sbR +amR +amA +cqs +aaa +aaa +aaa +bFQ +amA +amA +mWo +kNH +ujD +cpT +fal +bfb +amA +dac +rhZ +cvq +gVT +ajd +ajd +cqL +xkx +bZX +bVB +ajx +bJz +mZV +rBi +cGD +cSZ +ycs +cjD +cjD +cjD +vAM +aav +cmU +cmU +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +foo +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(48,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +aeo +aaa +cmU +fER +fER +fER +fER +fER +tHI +nBm +fuO +fER +fER +fER +fER +fER +cmU +aeU +aeU +amR +cnr +tLz +amA +amA +amR +amA +amA +amA +qHd +wFO +aTP +lLY +aUi +bQg +qHd +amA +agy +crx +agy +amR +ydd +tNI +tof +amA +tLz +amR +cpX +beO +amA +aer +ajd +ajd +gVT +qRu +aer +ajd +lQG +ajd +aer +ajx +eXA +cam +rBi +bNH +cSZ +wHU +cjE +kOw +tnI +oUy +aau +aeU +aqQ +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(49,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaQ +aaa +aeo +aaa +cmU +ixU +ixU +ixU +ixU +ixU +nBm +nBm +nBm +ixU +ixU +ixU +ixU +ixU +cmU +aeU +aeU +cni +vYn +eKg +tCi +tSE +tSE +tSE +pUp +ncT +tSE +ahV +ahV +ahV +ahV +ahV +bQg +amR +kbG +bmt +cGH +amA +amR +jBp +amA +bzX +ryM +amA +amA +beO +cqC +cuy +aer +xsR +qvb +rkz +cqD +ajd +vRA +cul +ajd +ajx +bth +cam +rBi +oEx +cIp +cIL +aBK +xvA +kzS +cQM +aau +aeU +cmU +jOe +jOe +jOe +jOe +jOe +foo +jOe +jOe +jOe +jOe +jOe +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(50,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaQ +aeU +cmU +fER +fER +fER +fER +fER +fuO +nBm +fuO +fER +fER +fER +fER +fER +cmU +aeU +aeu +amA +tSE +beX +amz +crP +rFn +urC +ahV +ahV +ahV +ahV +bQq +nXm +voc +amz +wFO +amA +csr +bmI +csr +amR +nXe +iJP +amR +cum +rLU +bIR +amR +bdo +bdo +bgi +cqd +bpP +cqq +qRu +ezv +gNR +aky +cuE +ajx +ajx +mQh +olb +nmp +aav +aau +aau +aav +aav +aav +aav +asO +cmU +cmU +foo +rhC +foo +foo +foo +foo +foo +foo +foo +foo +foo +aaa +aaa +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(51,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +acm +alm +aeU +cmU +cmU +nBm +ckk +aaa +aaa +ckk +nBm +ckk +aaa +aaa +ckk +nBm +cmU +cmU +aUz +aeu +amA +tSE +ahV +ahV +uKX +uKX +uKX +amz +oJA +isG +tVl +tFy +wyV +sEI +ahV +bQg +amR +bop +bmJ +wVF +oEh +tof +mNL +amA +amA +amR +amA +amA +amR +amA +amA +ajd +cql +cou +rkz +nev +aer +keP +cuF +ajx +ana +cam +cam +fhl +aav +acK +acK +acK +acK +acm +aeo +aeU +aeU +cmU +cmU +cmU +cmU +cmU +cmU +vRa +cmU +cmU +cmU +cmU +cmU +aaa +aaa +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(52,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aaa +aeu +aeU +aeU +cmU +fER +fER +fER +fER +fER +nBm +fER +fER +fER +fER +fER +cmU +aeU +aeU +aeu +amR +ncT +ahV +ctV +sbe +tFy +sbe +tFy +rHf +cMe +cwP +cMe +cwP +qwV +ahV +qHd +amA +bos +crP +cBh +ohr +cpX +beX +cnL +amA +jIQ +gQR +gQR +qci +gQR +uOW +aer +cJB +ooM +cqr +ajd +ajd +ajd +ajd +ajx +ajx +ajx +cEY +kRH +ajx +cyN +cyN +ajx +acm +acm +aeo +aeU +aeU +aeU +aeU +aeU +aeU +aeU +cmU +vRa +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeo +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(53,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeu +aof +aUz +cmU +ixU +ixU +ixU +ixU +ixU +nBm +ixU +ixU +ixU +ixU +ixU +cmU +aeU +bsC +amA +amA +sPa +ahV +vUt +cMd +cvz +cMd +cvz +cvz +pwX +cMd +cvz +cvz +mXn +amz +wFO +amA +amA +cqT +dmB +amA +amA +mtp +crP +cnJ +iNS +sWe +ePM +oKO +lZI +eMl +scJ +cJB +bMR +cuw +bRJ +bRJ +bRJ +bRJ +bRJ +kjL +ajx +chR +qKa +ajx +dNT +nnN +ajx +ajx +ajx +jIo +ajx +aeU +aeu +aeu +aeu +aeU +aeU +cmU +vRa +cmU +aeU +aeU +aeU +aeU +aeu +aeu +acm +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(54,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +cmU +fER +fER +fER +fER +fER +nBm +fER +fER +fER +fER +fER +cmU +aeu +amR +xJP +cnr +jjj +beN +oKa +baQ +vmE +dzB +cwP +cwP +tsy +cMe +cMe +cvz +tnS +ahV +kkp +bko +amA +gMj +vFo +boM +bpc +amA +amR +amA +ich +kPB +ich +ich +kPB +ich +ajd +aer +ajd +nlV +ikv +cyN +kGg +cyN +cyN +nnN +poT +cTl +qKa +nhB +nnN +nnN +lbY +nnN +nnN +cyN +cmU +aeU +aeU +aeu +aeu +aeu +rkn +aDS +vRa +bFI +aeU +coy +aeU +aeU +aeu +aeu +acm +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(55,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +cmU +cmU +cmU +cmU +cmU +aDS +nBm +bFI +cmU +cmU +cmU +cmU +cmU +aeu +amA +uAg +cFL +rIN +ahV +mqV +cMd +faE +oqx +sXv +oqx +sXv +sXv +dzB +baQ +bdl +beN +wWo +wLF +vbK +hFM +rPI +crV +crP +amA +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +ajd +cFR +cuw +cyN +xad +adf +ajx +jIo +ajx +cEY +kRH +ajx +qgh +bRJ +sTQ +mNe +mNe +cyN +cmU +aeU +coy +aeU +aeu +aeU +aeU +aDS +vOE +bFI +aeU +aeU +aeU +aeu +aeu +aeU +acm +cry +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(56,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +coy +woH +aDS +nBm +bFI +rkn +aeU +aeU +aeu +aeu +aeu +amA +cnL +amR +ncT +ahV +gkX +cvz +cMe +sXv +cwP +cMe +cwP +cMe +cwP +pSH +crv +ahV +amA +pyF +cpX +amA +jdj +aEw +bxq +amA +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aer +bJX +ikv +cyN +xad +cnQ +coE +aav +abp +mSv +hIk +ajd +ajx +iPQ +dnf +ajx +ajx +ajd +cmU +cmU +cmU +aeU +aeU +aeU +aeU +aDS +vOE +bFI +aUz +aeU +aeu +aeu +aeu +aeu +ckn +aeu +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(57,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +bVv +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +coy +aDS +ixU +bFI +aeU +aeu +aeu +aeu +aeu +aeu +amA +amA +amA +pUp +amz +mqV +cMd +cMe +owR +cMe +cwP +cwP +cMe +cMe +cvz +crv +ahV +crP +laA +wRx +lcd +crP +crP +urC +amR +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +ajd +inZ +hEM +aer +aeu +acW +xad +aau +ame +ces +hdN +cRB +aeC +jyh +cGS +iKf +cTG +cTI +aeo +acK +cmU +aeU +aUz +xfU +aeU +cnS +cuU +cnS +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(58,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aDS +ixU +bFI +aeu +aeu +aeu +aeu +aeu +aeu +aeu +amR +cnL +tSE +ahV +vUt +cvz +cMd +dwk +cvz +cvz +cvz +cvz +cMd +cvz +xyY +ahV +amA +vbP +aEw +amA +iUR +crP +urC +amA +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +ajd +xCm +aer +ajd +aeu +aeu +xad +aau +bNj +bYr +kym +cSS +aeC +aDK +vFR +iRv +cTG +cnU +aeo +acK +cmU +aeU +aeU +aeu +aeu +cnS +wYz +cnS +aeu +aeu +aeu +aeu +aeu +aeu +ckn +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(59,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +ctH +any +ctH +aeu +aeu +aeu +aeu +aeu +aeu +aeu +amA +oys +pUp +ahV +xTX +cvd +cMe +owR +cwP +cMe +cwP +cwP +cMe +cMe +crv +amz +wua +hVG +cCR +amA +csr +csr +amA +amA +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aer +ikv +bCt +ajd +aeu +add +cnQ +aav +abp +cet +gnr +aav +aeC +wgo +hpp +bXh +aeC +aez +cJx +aer +bNe +bNe +bNe +ajd +ajd +cnN +giw +cnO +cnN +aeu +aeu +aeu +aeu +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(60,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +cui +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aUz +aap +aeu +aeu +aeu +aeu +aeu +aeU +ctH +vJY +ctH +aeu +aeu +aeu +aeu +aeu +aeu +aeu +amA +cwp +xQt +vEl +vEl +gOH +cMl +uvb +cMk +mRL +uXE +iEm +rLk +crd +cpI +ahV +cAv +rJf +csk +cyb +aaO +ecF +kLy +ich +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +cIA +ikv +crp +cyN +xad +aDQ +cBD +asO +bRD +coH +fuy +aav +pWF +eBf +deI +bWo +paK +ajx +aer +ajd +coW +bMX +sbB +vIb +aer +kuW +cuZ +dWe +cnN +aeu +aeU +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(61,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +bVv +aeU +aeU +aeU +aeU +aeU +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +ctA +ctB +kzO +ctB +ctB +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +tCf +bze +vEl +cLZ +cMk +uvb +cvC +ahV +ahV +amz +ahV +ahV +ahV +ahV +brF +iJZ +cxK +cyb +abJ +hsv +gtd +ich +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +cIA +ikv +cyL +cyN +xad +cnM +xad +aau +cdT +ceu +cCy +ksw +chk +jmy +pNq +ahe +bYk +ajx +bBs +ccL +coY +cqa +crb +bNl +ajd +ere +lJQ +cse +coB +aeU +aaa +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(62,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aap +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aUz +cui +aeu +aeu +aeu +aeu +aeu +aeu +ctB +jwJ +xjd +eJV +ctA +aeu +aeu +cwp +cwq +cwp +cwq +cwp +cwp +fqD +aNk +mkY +kpg +kzk +ioc +aRF +ahV +beX +cnr +dGI +qsi +lVq +sAP +vJk +nAY +csk +cyb +bKl +ecF +vVX +ich +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +cIA +inZ +bMR +cyN +xad +cnQ +aeu +aav +uoN +cig +qku +cST +aDM +aGN +lfG +aKp +cqU +ajx +bMy +ajd +ajd +ceR +cJB +aer +ajd +haP +cBo +gDl +cnP +aUz +acm +acm +acm +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(63,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aap +aeU +aeU +aeu +aeu +aeu +aeu +aeu +ctA +fAV +sKj +eWs +ctB +aeu +aeu +cwp +hLU +ayy +rKo +azi +cwf +aRY +aEZ +vEl +vnS +cMl +raL +cvE +ahV +crP +beX +beX +mfY +poR +amA +sDs +hdX +csl +cyb +mzt +ecF +vdK +hBN +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +bJv +aer +ikv +bDn +ajd +aeu +cnR +aeu +aav +pWK +cwH +nKH +cSU +ocN +sdw +sGH +ajx +ajx +ajx +bMR +bWK +ajd +oAK +ajT +ajd +ajx +jIo +nyI +ajx +coB +aeU +coy +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(64,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aUz +aeu +aeu +cwp +cwq +cwp +vEl +amf +fcd +apB +mkY +cwp +cwp +cwp +aPJ +aNk +mGE +aAz +aCn +aDq +cwy +vEl +nNi +cvp +jNa +eGO +amz +beX +bxq +crq +bCK +cnr +amR +amR +amA +amA +amA +csr +csr +amA +amA +amA +ich +ich +waA +ich +ich +waA +ich +ich +ajd +ajd +llt +ajd +ajd +aeu +cog +cBN +aav +bWr +hRZ +laT +ajx +ajx +ajx +ajx +ajx +bTL +bEJ +czZ +bMR +aqt +aLu +crc +cgi +ctn +ctU +aLu +ajd +aeu +aeu +aeU +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(65,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeu +aeu +aaa +aaa +aeU +aeU +aeU +aeu +aeU +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvY +xzO +mkY +vEl +gQQ +rld +vEl +apU +cAs +cwq +aQz +aNk +cgP +mio +aSf +qgO +cwS +vEl +ahV +bGX +oaT +bGX +ahV +qre +aRP +aTk +nJS +tiX +ksR +skO +rbF +amA +wrV +wrV +wrV +wrV +wrV +amA +jyL +dEO +nzm +lwv +wtq +nzm +vGa +uXa +ajd +bKN +ikv +bEk +aer +aeu +aeu +cBD +add +ajx +fKw +tbB +ajx +rKb +bPN +lCr +cdU +clj +clO +cne +clO +uhy +ceR +bMR +bNm +clh +clq +bzO +ajd +aer +ajd +anZ +cmt +agw +aoc +qJs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(66,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwq +lrD +eIR +cyd +cxt +toC +apC +cyu +cxS +aNk +cwq +cwy +cwp +cti +cwq +cxy +iAn +aFa +ips +aKx +glp +mIv +aRL +tuj +aVk +aST +aZc +dZr +cnL +beX +asg +szD +amA +wrV +wrV +wrV +wrV +wrV +amA +xTu +gNO +veJ +hbL +uaJ +vdd +faV +vpg +ajd +aer +inZ +eJC +ajd +ajd +aer +cyN +ajd +ajd +jmf +kAX +iPo +lIQ +xwT +hGH +ajx +ajx +ajx +ajx +ajx +xZB +ajx +ajx +ajx +ajx +iiU +cJX +cIA +iTK +agy +aaa +aaa +aaa +aod +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(67,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvX +voS +qfL +cwQ +cxq +apD +cwp +aso +atF +oFp +awU +azd +azS +aAB +aCq +awU +jFI +vEl +amz +ahV +hxR +ahV +ahV +amz +amA +amA +lkk +amA +amA +jlA +bdo +csr +wrV +wrV +wrV +wrV +wrV +csr +jzS +iNC +mXt +qhd +pNx +vmb +kGr +cfH +ajd +bzO +nZU +bUq +brJ +vwn +bzO +slK +xPr +iPo +seh +idN +aer +cIA +bsD +cIA +ajx +qPK +hOB +gHG +kfE +euG +sYQ +wjU +dcO +ajx +bqx +cmf +crD +cGK +agG +aaa +aaa +aaa +cGA +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(68,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +cwp +cwQ +cwp +cwp +cxC +uFU +cwp +cxt +cxy +nrB +awe +cyl +vEl +vEl +vEl +vEl +vEl +mkY +wMM +vte +sLT +eRK +dsd +pgJ +aPC +euH +uBI +tfS +amR +jlA +jwZ +amA +wrV +wrV +wrV +wrV +eRj +ois +hcO +iNC +jan +ybW +pLY +tYO +mTI +tMM +bNo +bOp +gOB +lJH +ajT +tqo +bZY +uaZ +rMX +ajx +fKw +feu +ajx +bpS +mkS +bMA +ajx +oyF +lwE +kuw +syK +vXC +iYx +xsm +fmM +mLf +bMR +gAh +cIA +cmf +agy +aaa +aaa +aaa +aod +acK +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(69,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +cwp +aol +ade +iRY +cxr +tas +aNk +xTr +aqO +asr +atH +pan +awQ +vEl +mkY +gTX +qCr +kvy +grJ +aOZ +jPk +aOO +iNG +oJe +hkd +aVm +aYo +aZf +oJL +aPW +amA +nMI +csi +csr +wrV +wrV +wrV +wrV +wrV +csr +fxH +ney +vqR +qlh +hWZ +sbG +lEI +hfQ +ajd +afm +szW +akh +ajx +ajx +ajx +ajx +ajx +ajx +dZN +quQ +ajx +ajx +ajx +ajx +ajx +toK +iTC +ezi +nsn +eDq +bFw +xjV +cRp +ajx +ajx +ajx +ajx +ajx +ajx +anZ +cmt +aob +aoe +qJs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(70,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qJs +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +vyI +cxa +cxc +cxf +cxw +aar +pdi +cwp +cwp +atL +cwq +cwp +vEl +mtR +mRa +qsI +lPX +sKY +aGm +aKC +mHn +wGZ +aRS +xiK +mrr +aPC +bnf +xZy +aOZ +amA +ist +amR +amA +wrV +wrV +wrV +wrV +wrV +amA +fdS +iNC +vnx +dUR +ucW +xaQ +lEI +jzZ +ajd +afy +kRc +mCS +ajx +dhv +ngn +aaT +bWp +sPO +bTp +mwc +bQy +vnR +qKy +gls +oYg +hce +iTC +lsp +lFt +xDO +egh +xsm +uBZ +hNM +nYd +hQK +wog +gQN +ygq +aUz +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(71,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwq +tFL +cxb +cxn +cxf +cxw +cxN +pot +cwp +tqT +atM +hBo +aKV +pKa +jMx +lvu +lYs +ggv +jVm +ahc +aOz +aQq +aQT +aRg +fsC +hpd +aPC +aPI +lTs +aOZ +qsn +mwd +eNm +amA +wrV +wrV +wrV +wrV +wrV +amA +gvU +rpq +edb +ykt +ykU +wBr +mZB +jsb +aer +afz +bRw +aer +ajx +cwN +ddN +agq +bWs +abO +kFW +aeY +aeY +cYQ +aeY +aeY +gCp +pyM +mAa +sIP +lWY +uPV +pVQ +hQM +hKK +ujY +ujR +gzW +iio +rDh +ygq +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(72,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +cuj +aeU +aap +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aUz +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +cwp +cvX +cwT +cxo +cwp +bLU +cxG +twl +cwq +aOa +atN +aOC +aOm +eWO +hPF +rif +kWc +uox +sjL +aOZ +hwo +aPR +aRx +aSO +mGR +aVC +aVC +aQL +aVC +aVC +wYL +rDL +tsP +amA +amA +csr +csr +csr +csr +amA +xKT +fZM +sRc +aum +hjY +kmj +tuH +rOe +ajd +csN +bRB +ycI +ajx +agX +agX +agX +agX +bXm +ueM +uEG +afE +ahn +szA +afE +jpH +hbn +eQS +sIP +vwN +iUF +heS +tQY +hOw +rMG +xaV +rMG +rMG +rMG +rMG +acm +acm +acm +acm +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(73,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +cwp +cwp +cwq +cwq +cwp +cwp +cwq +cwy +rcu +cwp +aOb +atQ +aOE +nqj +eWO +loB +nwk +vWP +xjs +hyB +ahc +aPx +aPx +aOZ +viN +tQX +aQJ +gUM +plP +mBV +aVC +mDO +xOC +mwh +ksb +aQN +aDQ +ecF +xcR +uiX +hBN +hBN +hBN +hBN +qcg +tfC +kdG +hBN +hBN +aer +csS +cBI +bUv +szb +oZs +ngn +aaT +bWu +abY +ady +ael +aaT +agX +agX +agX +hOw +ilG +wzc +sIP +viF +iuQ +dGL +goJ +hOw +lnS +oHJ +obH +okQ +qQw +rMG +rMG +aaa +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(74,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +aeu +aeu +cwp +cwq +alc +cyR +cyY +cWg +czj +cvg +cwq +cwp +fDL +eWy +cwp +akq +atR +xoD +caJ +eqk +qGh +deq +pdA +snF +eWO +aSW +axH +vGl +aOZ +aWp +iSA +aVC +sns +aZu +aVL +aVC +nTA +rDL +bhA +kUs +aSG +add +ecF +acW +aaO +aDQ +esi +wAW +syD +kvx +oSw +hub +flj +hqe +uzL +cBv +cBy +bUv +szb +cwR +lqs +ags +bWs +abO +ady +agX +vNn +dZv +agd +jMt +tpk +kOP +wzc +sIP +wsc +nPY +taq +hXD +ygq +vcs +npH +dyT +pXV +pXV +vFw +rMG +aeU +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(75,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +cwp +jhL +aRi +cyS +cyZ +czl +czk +cvk +sGL +cwp +pls +ail +mkY +aWm +aWm +opW +yio +eqk +eWO +eWO +eWO +dxK +eWO +aSa +axN +aye +fpz +aHZ +hCA +aQJ +aQQ +oVB +qvG +aQL +wzL +mqu +oBp +uCQ +aSG +aaO +ecF +dyu +bKl +add +lSH +fuK +fuK +deQ +fJK +uMr +fuK +lSH +ajd +cBw +csN +rFD +ajx +agX +agX +agX +agX +bXp +oBI +aCv +edr +aad +cnB +crz +ghl +mIs +aOY +mZc +pvi +eCd +tHi +eWJ +hOw +wqn +bre +dyT +wjW +pXV +pIq +dkE +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(76,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aUz +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +cwq +cwp +cyH +aTT +cyT +bES +sRz +czx +ajI +gai +cwq +ylI +vEl +vEl +aOl +aPe +fzh +yio +aef +kIr +eTc +aOp +aPE +jdX +aFp +aQF +aRt +aSz +dhF +guq +aVC +aVC +mmP +tDw +aVC +aQN +xZe +aQP +aQN +aTx +aUJ +aUJ +afe +acZ +adf +nez +fIY +fvV +jQo +osw +jXa +pjz +xLY +dML +cBx +cBv +bUv +szb +vcO +ngn +aaT +bWv +abY +ady +aaT +wje +pVL +okV +hTK +oYg +sfT +jzK +oyM +hOw +hOw +emC +jpH +hOw +dUp +xIW +wSC +rET +hzw +xGi +dkE +aeU +aUz +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(77,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aap +aeU +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +aeu +cwq +cyE +cyQ +bAa +cyU +czb +czh +czm +cvv +pSl +amh +soP +vEl +vKz +pHm +aBi +mJz +yio +auA +aOe +aJW +aOh +qEW +jdX +aFC +ict +aHG +aHG +uDs +pYz +uHR +aQL +cVJ +aQJ +aVC +dPF +eLL +uQa +vNE +gik +sel +sgh +afe +aUJ +aUJ +afe +lSH +fuK +wUz +fJK +ohC +fuK +fuK +ajd +cBy +cBI +bUv +szb +cwR +fRH +aaW +bWA +acb +aes +agX +agX +agX +agX +agX +hOw +oYg +gCp +oYg +hOw +eev +cac +cai +bAd +lKu +bre +dyT +kyD +pXV +uen +dkE +aeU +aeU +aeu +cke +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(78,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +crB +cyJ +aRi +cme +cme +cme +cme +cvk +klu +cwy +quw +vEl +rai +aqo +aMd +qax +jtY +aNS +aOd +kpm +aPh +rcC +jdX +rtZ +mfl +uxD +cSy +dUM +aTI +ixF +erq +toU +bbV +bdp +gwo +lZB +njm +gnZ +qvH +vAO +dpy +aUV +aVc +dKV +afe +peq +gFu +nNU +nRA +piK +mzF +qDM +kGa +csN +cBw +cPE +ajx +agX +agX +agX +agX +ani +jrA +agX +xjz +jzU +cBn +dsp +aei +clm +clp +tpr +aKZ +qjj +cqu +crs +vQB +wtH +ueE +tef +vjc +orI +cSJ +vaU +aeU +aeU +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(79,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +cwq +cyE +rQX +rfq +alg +ang +apF +ang +wqH +svC +czL +anX +vEl +aqP +ass +atS +dOn +awY +azf +azV +aAI +aCE +aDR +aeP +aQc +myP +els +fuN +lKt +cHT +wQn +txI +vfQ +bey +mAW +wHq +bsF +wPb +kFz +gik +rBR +vUd +aUV +hhe +foM +aoH +dpN +kvx +mGw +msd +eej +tNZ +wEY +ajd +ajd +csS +bUv +szb +fOP +mhK +aaT +bWB +bSR +hjk +cfZ +cgC +cnZ +wqt +crL +crY +akm +cmz +bYm +ama +aiP +cqx +aBh +aLi +lKu +xvm +whc +nhS +mWF +sSi +rMG +aeu +aeU +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(80,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +aeu +aeu +cwp +cwq +oTv +iRY +cmm +cop +cvf +cvf +quv +wmi +cwp +fEB +vEl +vEl +aOx +wVJ +aWf +yio +aNV +aFr +aPh +drb +aDX +fGg +ayB +jvp +aTO +aWl +kik +aWl +aTO +bbh +agZ +aWq +akP +aRs +vki +hnW +aRJ +gik +aUV +auw +bAN +fBn +aoV +afe +tNZ +bqe +pQz +oEv +miO +tNZ +jSW +uTp +pDX +cBv +bUv +szb +cwX +ddN +abc +bWs +abO +ceA +aei +axw +coF +lWx +coV +aei +cln +bCh +bVy +ama +aiQ +cqx +dGE +aka +aka +aka +aka +mHQ +aka +aka +aka +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(81,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +cwq +xIH +cyX +tMj +tvJ +czn +czu +cwp +cwq +usm +aiM +vEl +aNN +asi +aNN +asi +aQw +jwd +kDm +xwp +gBk +jdX +nwC +hEa +aTO +cgL +jbR +uik +wHX +aQV +uzc +aRn +aQW +aQW +aPf +kgu +bAN +afe +iQZ +cVA +rEG +fSW +rOO +afe +usn +kcq +eoj +lmP +riz +pCB +efZ +ppf +pDX +csS +uGP +ajx +agX +agX +agX +agX +qJq +ceA +afs +aet +syw +wdH +hPo +agX +qFo +jCj +qFo +aaj +nfu +cqx +hzW +aka +psn +azo +alv +cez +aEX +bIS +anG +aeu +aeu +aeu +aeu +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(82,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aeU +aeU +aeU +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +cwp +cwp +cwq +cwq +cwp +cwp +cxt +cwp +cyI +vqk +aiN +wXY +aVY +she +hMH +ilo +aJU +aJU +aOH +kzU +aJU +aOH +aQh +tJH +aWl +aRa +bfv +lUN +aTO +aRU +lIw +aWr +bJL +beR +bAN +dnD +pPA +aUP +mbo +wOP +aVg +bwD +agm +aoH +ski +kcq +haI +jbj +oVx +tNZ +tNZ +tNZ +aer +cBI +bUv +szb +sMr +mhK +aaT +bWG +aft +ceA +aei +anv +coU +qSI +ctf +aFv +ahp +qvt +bVz +ama +aiO +cqx +aHE +aka +akC +cHL +cbp +alQ +amr +vaP +aka +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(83,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aeU +aeU +aaa +aaa +aeU +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +alm +aeu +aeu +aeu +aeu +aeu +cwp +fBZ +dMx +ale +ami +nIy +aqh +aqR +ghK +cVz +wpD +aWv +aJU +dcT +aOI +hQY +jTh +aJU +cJJ +sra +aTO +wLB +aRH +mVX +aTO +aSi +kTz +bcn +bdq +beV +jJA +syg +aLh +srf +jtZ +ivI +biF +bwO +kwO +afe +xbU +kcq +kCl +lmP +tKx +tNZ +dNK +erP +cOg +cBv +bUv +szb +cwX +gpA +aiZ +bWs +abO +iYM +agX +rXb +bPz +ptA +hZO +aei +clo +cmz +bYm +ama +aiT +cqx +eqH +bPI +caO +tnH +alx +aCz +ams +bdK +aka +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +qJs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(84,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +acm +aUz +aeU +aeu +aeu +aeu +cwp +cwp +gEQ +cxI +cwp +fFH +ajh +cwp +rpx +aWg +iJp +aWw +odG +mVT +aOK +lSf +hNf +aJU +aYB +icK +aTO +aWl +aWl +aWl +aTO +aQW +fbn +aTw +aTF +sUc +bAN +xyd +aVD +bAN +ljj +abH +pCq +fKi +rdC +aoH +mlm +kcq +get +lmP +riz +rES +efZ +sgm +cOg +cBy +jcx +ajx +agX +agX +agX +agX +bXr +rbt +agX +aei +aei +nVM +aei +agX +wVb +cmz +dcK +aaf +wDo +cqy +nvS +csX +ctt +ibJ +aly +alS +ams +oUz +aka +aeu +aeu +aeu +cke +cxE +aaa +aaa +aaa +aaa +aaa +aaa +alm +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +tgU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(85,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +qJs +bVu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aUz +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aaa +aaa +aaa +aeU +aeu +aeu +siT +oEk +cxX +cwp +cwq +cwp +cwq +vsH +aWh +mQV +tJb +aJU +aJU +dgk +sQs +iJF +eWw +pNI +voi +nvc +oOL +hYT +aSY +xcx +vgr +enL +bdO +cPg +hck +bAN +bAN +aUJ +bAN +vhM +kjN +aoH +afe +afe +afe +tNZ +kUM +xAk +iMV +tNZ +wEY +tNZ +ykN +ajd +csN +bUv +szb +sar +mhK +aaT +bWI +sNV +ceN +cgg +cgF +chn +kyv +sai +kiT +kMH +mOh +kkD +evT +cer +qbv +nWo +aka +vCk +cup +cwd +cxP +czv +cBC +aka +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aaa +aaa +aaa +acm +qVM +aaa +aaa +aaa +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(86,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaB +aaa +aaa +acm +aaa +aaa +aaa +aaa +aaa +acK +mch +sLw +cxY +xch +hcX +wCr +aNu +eNX +ylW +hMN +iFu +azh +azZ +lea +tky +xqi +tmg +sZj +rbR +aQD +cgN +kGR +iwD +aTG +aRn +aRG +aRN +beC +aTW +uxR +aPf +biD +blB +wSA +iJq +bAN +kkt +amg +jRu +wWh +qZb +ikz +oCh +riz +xNl +jin +hQc +aer +cBw +bUv +szb +cwR +rmu +abr +ohH +oWv +eox +gTC +fVf +afE +tJB +mkA +rrC +tpr +cmz +omA +oWm +quF +qqu +crN +amN +alP +anF +cdF +ceE +ycU +scR +aka +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +vkY +acm +sEp +qVM +cok +aUz +aeu +aeu +aeu +aeU +aeU +aeU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(87,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeo +aaa +aaa +aaa +aaa +aaa +acK +vdu +gqh +axy +vdu +uxA +eNB +aNu +qXt +kFf +uhC +ced +vDH +aNu +xKX +lpp +iCj +aVU +vIz +rQf +vmo +oNg +svc +xTK +aSl +aAc +aSw +aRO +baR +aTX +bhT +aUJ +aTh +aTi +sOO +cVO +icM +nmo +bpD +tNZ +xKJ +kcq +hGR +eUz +yki +tNZ +ymb +qab +ajd +afz +kfm +ajx +ajx +ajx +ajx +agX +acH +xjq +agX +agX +acH +dmx +agX +agX +bMC +ahT +oPn +aaf +aae +amc +ndg +aka +aka +amN +aWK +yid +aka +aka +aka +aeu +aeu +aeu +cke +aeu +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aUz +acm +sEp +mZT +aUz +aeU +aeu +aeu +aeu +aeU +aeU +aeU +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(88,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaQ +aeU +aUz +aeU +aeu +aeu +aeu +adQ +wGv +cAU +adH +wWK +aBg +aNu +aNu +aNC +kRu +cAZ +kEg +aNu +aJU +odG +aJU +aJU +hCy +aQt +aQr +ijE +pnx +vRY +wlV +aWx +bzM +tuD +sdE +aUx +fBA +bAN +aTi +dKg +lGj +aPf +bAN +rdj +okT +tNZ +imG +kcq +uFB +oCh +hTZ +tNZ +wEY +tNZ +ajd +bNP +bVo +krd +tsf +bVq +ajx +hek +xAo +mOD +msA +agX +deD +eEP +pnb +agX +iYQ +aae +vRt +aaf +sTS +cdR +kuz +bCD +nKW +oYL +bGc +ceY +enf +aaf +aeu +aeu +aUz +aeU +acm +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aFJ +aFJ +lbb +bKO +lbb +bKO +lbb +aFI +aFI +aeu +aeu +aeu +aeU +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +"} +(89,1,1) = {" +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aeu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aeU +alm +aeu +wWK +wWK +wWK +oLl +wWK +adH +qin +ace +adH +iZW +rAU +tXD +ePI +wWK +tZe +gtw +tZe +flW +iAG +xTQ +tZe +tZe +aSy +aMP +sZj +bcV +aaF +icF +aNn +aQW +aWx +aQW +aSg +bae +aSg +bAN +bAN +bAN +bAN +bAN +bpo +kDD +bve +wEY +tzV +kcq +ktX +oCh +hwF +qqe +shg +ppf +ajd +ajd +aer +afm +xnR +bVt +ajx +vUn +rsC +dwU +puH +agX +anj +iQr +agY +agX +dqc +byA +cnm +afc +apH +bxS +nlU +csY +ctw +csY +cwe +pqE +czw +aae +aeU +aeU +aeU +aaa +acm +aaa +aaa +aaa +aaa +aaa +aaa +aFI +aFJ +msx +msx +yme +fen +ibv +prk +qFp +aFJ +aFJ +aeu +aeu +aeU +aeU +aeu +ciQ +qJs +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aa{"code":"deadline_exceeded","msg":"operation timed out"}